Note
Go to the end to download the full example code.
Toro shocks test in RAMSES solver#
Compare Sod tube with all slope limiters & Riemann solvers
Initial conditions from Toro “Riemann Solvers and Numerical Methods for Fluid Dynamics”
Test |
x_0 |
rho_L |
vx_L |
p_L |
rho_R |
vx_R |
p_R |
tend |
|---|---|---|---|---|---|---|---|---|
1 |
0.3 |
1.0 |
0.75 |
1.0 |
0.125 |
0.0 |
0.1 |
0.2 |
2 |
0.5 |
1.0 |
-2.0 |
0.4 |
1.0 |
2.0 |
0.4 |
0.15 |
3 |
0.5 |
1.0 |
0.0 |
1000.0 |
1.0 |
0.0 |
0.01 |
0.012 |
4 |
0.4 |
5.99924 |
19.5975 |
460.894 |
5.99242 |
-6.19633 |
46.0950 |
0.035 |
5 |
0.8 |
1.0 |
-19.59745 |
1000.0 |
1.0 |
-19.59745 |
0.01 |
0.012 |
6 |
0.5 |
1.4 |
0.0 |
1.0 |
1.0 |
0.0 |
1.0 |
2.0 |
7 |
0.5 |
1.4 |
0.1 |
1.0 |
1.0 |
0.1 |
1.0 |
2.0 |
28 import os
29
30 import matplotlib.pyplot as plt
31 import numpy as np
32
33 import shamrock
34
35 # If we use the shamrock executable to run this script instead of the python interpreter,
36 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
37 if not shamrock.sys.is_initialized():
38 shamrock.change_loglevel(1)
39 shamrock.sys.init("0:0")
-> modified loglevel to 0 enabled log types :
log status :
- Loglevel: 1, enabled log types :
[xxx] Info: xxx ( logger::info )
[xxx] : xxx ( logger::normal )
[xxx] Warning: xxx ( logger::warn )
[xxx] Error: xxx ( logger::err )
Use shamrock documentation style for matplotlib
43 shamrock.matplotlib.set_shamrock_mpl_style()
Toro IC
48 def toro_initial_conditions(test_number: int):
49 def cond(i):
50 conditions = {
51 1: (0.3, 1.0, 0.75, 1.0, 0.125, 0.0, 0.1, 0.2),
52 2: (0.5, 1.0, -2.0, 0.4, 1.0, 2.0, 0.4, 0.15),
53 3: (0.5, 1.0, 0.0, 1000.0, 1.0, 0.0, 0.01, 0.012),
54 4: (0.4, 5.99924, 19.5975, 460.894, 5.99242, -6.19633, 46.0950, 0.035),
55 5: (0.8, 1.0, -19.59745, 1000.0, 1.0, -19.59745, 0.01, 0.012),
56 6: (0.5, 1.4, 0.0, 1.0, 1.0, 0.0, 1.0, 2.0),
57 7: (0.5, 1.4, 0.1, 1.0, 1.0, 0.1, 1.0, 2.0),
58 }
59 if i not in conditions:
60 raise ValueError(f"Invalid test number: {i}")
61 return conditions[i]
62
63 x_0, rho_L, vx_L, p_L, rho_R, vx_R, p_R, tend = cond(test_number)
64
65 etot_L = p_L / (gamma - 1) + 0.5 * rho_L * vx_L**2
66 etot_R = p_R / (gamma - 1) + 0.5 * rho_R * vx_R**2
67
68 def rho(x):
69 if x < x_0:
70 return rho_L
71 else:
72 return rho_R
73
74 def rhoetot(x):
75 if x < x_0:
76 return etot_L
77 else:
78 return etot_R
79
80 def rhovel(x):
81 if x < x_0:
82 return (rho_L * vx_L, 0, 0)
83 else:
84 return (rho_R * vx_R, 0, 0)
85
86 return {
87 "x_0": x_0,
88 "lambda_rho": rho,
89 "lambda_rhoetot": rhoetot,
90 "lambda_rhovel": rhovel,
91 "tend": tend,
92 }
93
94
95 timestamps = 40
96 gamma = 1.4
97
98 output_folder = "_to_trash/toro_tests/"
99 os.makedirs(output_folder, exist_ok=True)
100
101
102 multx = 2
103 multy = 1
104 multz = 1
105
106 sz = 1 << 1
107 base = 16
108
109 rez_plot = 256
110 positions_plot = [(x, 0, 0) for x in np.linspace(0, 1, rez_plot).tolist()[:-1]]
111
112
113 def run_test(
114 test_number: int, slope_limiter: str, riemann_solver: str, only_last_step: bool = True
115 ):
116 ctx = shamrock.Context()
117 ctx.pdata_layout_new()
118
119 model = shamrock.get_Model_Ramses(context=ctx, vector_type="f64_3", grid_repr="i64_3")
120
121 cfg = model.gen_default_config()
122 scale_fact = 1 / (sz * base * multx)
123 cfg.set_scale_factor(scale_fact)
124 cfg.set_eos_gamma(gamma)
125
126 if slope_limiter == "none":
127 cfg.set_slope_lim_none()
128 elif slope_limiter == "vanleer":
129 cfg.set_slope_lim_vanleer_f()
130 elif slope_limiter == "vanleer_std":
131 cfg.set_slope_lim_vanleer_std()
132 elif slope_limiter == "vanleer_sym":
133 cfg.set_slope_lim_vanleer_sym()
134 elif slope_limiter == "minmod":
135 cfg.set_slope_lim_minmod()
136 else:
137 raise ValueError(f"Invalid slope limiter: {slope_limiter}")
138
139 if riemann_solver == "rusanov":
140 cfg.set_riemann_solver_rusanov()
141 elif riemann_solver == "hll":
142 cfg.set_riemann_solver_hll()
143 elif riemann_solver == "hllc":
144 cfg.set_riemann_solver_hllc()
145 else:
146 raise ValueError(f"Invalid Riemann solver: {riemann_solver}")
147
148 cfg.set_face_time_interpolation(True)
149 cfg.set_boundary_condition("x", "outflow")
150 cfg.set_boundary_condition("y", "outflow")
151 cfg.set_boundary_condition("z", "outflow")
152 model.set_solver_config(cfg)
153
154 model.init_scheduler(int(1e7), 1)
155 model.make_base_grid((0, 0, 0), (sz, sz, sz), (base * multx, base * multy, base * multz))
156
157 dic = toro_initial_conditions(test_number)
158 tmax = dic["tend"]
159 lambda_rho = dic["lambda_rho"]
160 lambda_rhoetot = dic["lambda_rhoetot"]
161 lambda_rhovel = dic["lambda_rhovel"]
162
163 def rho_map(rmin, rmax):
164 x, y, z = rmin
165 return lambda_rho(x)
166
167 def rhoetot_map(rmin, rmax):
168 x, y, z = rmin
169 return lambda_rhoetot(x)
170
171 def rhovel_map(rmin, rmax):
172 x, y, z = rmin
173 return lambda_rhovel(x)
174
175 model.set_field_value_lambda_f64("rho", rho_map)
176 model.set_field_value_lambda_f64("rhoetot", rhoetot_map)
177 model.set_field_value_lambda_f64_3("rhovel", rhovel_map)
178
179 results = []
180
181 def analysis(iplot: int):
182 rho_vals = model.render_slice("rho", "f64", positions_plot)
183 rhov_vals = model.render_slice("rhovel", "f64_3", positions_plot)
184 rhoetot_vals = model.render_slice("rhoetot", "f64", positions_plot)
185
186 vx = np.array(rhov_vals)[:, 0] / np.array(rho_vals)
187 P = (np.array(rhoetot_vals) - 0.5 * np.array(rho_vals) * vx**2) * (gamma - 1)
188 results_dic = {
189 "rho": np.array(rho_vals),
190 "vx": np.array(vx),
191 "P": np.array(P),
192 }
193 results.append(results_dic)
194
195 print(f"running {slope_limiter} {riemann_solver} with only_last_step={only_last_step}")
196
197 if only_last_step:
198 model.evolve_until(tmax)
199 analysis(timestamps)
200 else:
201 dt_evolve = tmax / timestamps
202
203 for i in range(timestamps + 1):
204 model.evolve_until(dt_evolve * i)
205 analysis(i)
206
207 return results, tmax
208
209
210 def plot_results(data, cases, tmax, test_number):
211
212 arr_x = [x[0] for x in positions_plot]
213
214 fig, axes = plt.subplots(3, 1, figsize=(6, 15))
215 fig.suptitle(f"Test {test_number} - t={tmax} (Last Step)", fontsize=14)
216
217 for i in range(3):
218 axes[i].set_xlabel("$x$")
219 # axes[i].set_yscale("log")
220 axes[i].grid(True, alpha=0.3)
221
222 ax1, ax2, ax3 = axes
223 ax1.set_xlabel("$x$")
224 ax1.set_ylabel("$\\rho$")
225
226 ax2.set_xlabel("$x$")
227 ax2.set_ylabel("$v_x$")
228
229 ax3.set_xlabel("$x$")
230 ax3.set_ylabel("$P$")
231
232 for limiter, solver in cases:
233 key = f"{limiter}_{solver}"
234 print(key)
235 print(data)
236 if key in data:
237 # Get the last timestep
238
239 ax1.plot(arr_x, data[key][-1]["rho"], label=f"{limiter} {solver} (rho)", linewidth=1)
240 ax2.plot(arr_x, data[key][-1]["vx"], label=f"{limiter} {solver} (vx)", linewidth=1)
241 ax3.plot(arr_x, data[key][-1]["P"], label=f"{limiter} {solver} (P)", linewidth=1)
242
243 ax1.legend()
244 ax2.legend()
245 ax3.legend()
246
247 plt.tight_layout()
248 plt.savefig(os.path.join(output_folder, f"toro_shocks_test_{test_number}.png"))
249 return fig
250
251
252 def gif_results(data, tmax, test_number, case_anim):
253
254 arr_x = [x[0] for x in positions_plot]
255
256 import matplotlib.animation as animation
257
258 fig2, axes = plt.subplots(3, 1, figsize=(8, 10))
259 fig2.suptitle(f"{case_anim} - t = {0.0:.3f} s", fontsize=14)
260
261 ax_rho, ax_vx, ax_P = axes
262
263 # Calculate global min/max across all frames for fixed y-axis limits
264 rho_min = min(np.min(frame["rho"]) for frame in data)
265 rho_max = max(np.max(frame["rho"]) for frame in data)
266 vx_min = min(np.min(frame["vx"]) for frame in data)
267 vx_max = max(np.max(frame["vx"]) for frame in data)
268 P_min = min(np.min(frame["P"]) for frame in data)
269 P_max = max(np.max(frame["P"]) for frame in data)
270
271 # Add 5% margin to y-axis limits
272 rho_margin = (rho_max - rho_min) * 0.05
273 vx_margin = (vx_max - vx_min) * 0.05
274 P_margin = (P_max - P_min) * 0.05
275
276 # Configure each axis
277 ax_rho.set_xlabel("$x$")
278 ax_rho.set_ylabel("$\\rho$")
279 ax_rho.set_ylim(rho_min - rho_margin, rho_max + rho_margin)
280 ax_rho.grid(True, alpha=0.3)
281
282 ax_vx.set_xlabel("$x$")
283 ax_vx.set_ylabel("$v_x$")
284 ax_vx.set_ylim(vx_min - vx_margin, vx_max + vx_margin)
285 ax_vx.grid(True, alpha=0.3)
286
287 ax_P.set_xlabel("$x$")
288 ax_P.set_ylabel("$P$")
289 ax_P.set_ylim(P_min - P_margin, P_max + P_margin)
290 ax_P.grid(True, alpha=0.3)
291
292 # Create lines for each variable on its own axis
293 (line_rho,) = ax_rho.plot(arr_x, data[0]["rho"], label="$\\rho$", linewidth=2, color="C0")
294 (line_vx,) = ax_vx.plot(arr_x, data[0]["vx"], label="$v_x$", linewidth=2, color="C1")
295 (line_P,) = ax_P.plot(arr_x, data[0]["P"], label="$P$", linewidth=2, color="C2")
296
297 ax_rho.legend()
298 ax_vx.legend()
299 ax_P.legend()
300
301 def animate(frame):
302 t = tmax * frame / timestamps
303 line_rho.set_ydata(data[frame]["rho"])
304 line_vx.set_ydata(data[frame]["vx"])
305 line_P.set_ydata(data[frame]["P"])
306
307 fig2.suptitle(f"{case_anim} - t = {t:.3f} s", fontsize=14)
308 return (line_rho, line_vx, line_P)
309
310 anim = animation.FuncAnimation(
311 fig2, animate, frames=timestamps + 1, interval=50, blit=False, repeat=True
312 )
313 plt.tight_layout()
314 writer = animation.PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
315 anim.save(os.path.join(output_folder, f"toro_shocks_test_{test_number}.gif"), writer=writer)
316 return anim
317
318
319 def run_and_plot(cases, test_number, case_anim):
320 data = {}
321 for slope_limiter, riemann_solver in cases:
322 print(f"running {slope_limiter} {riemann_solver}")
323 key = f"{slope_limiter}_{riemann_solver}"
324 only_last_step = not (case_anim == key)
325 data[key], tmax = run_test(
326 test_number, slope_limiter, riemann_solver, only_last_step=only_last_step
327 )
328
329 return plot_results(data, cases, tmax, test_number), gif_results(
330 data[case_anim], tmax, test_number, case_anim
331 )
337 cases = [
338 # ("none", "rusanov"),
339 ("none", "hll"),
340 # ("none", "hllc"),
341 ("minmod", "rusanov"),
342 ("minmod", "hll"),
343 ("minmod", "hllc"),
344 ]
running none hll
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 7.30 ms [DataInserterUtility][rank=0]
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 : 4.32 us (57.1%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (0.2%)
patch tree reduce : 831.00 ns (0.1%)
gen split merge : 752.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.1%)
LB compute : 901.66 us (98.7%)
LB move op cnt : 0
LB apply : 4.05 us (0.4%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running none hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.76 us (1.9%)
patch tree reduce : 1.85 us (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.2%)
LB compute : 534.54 us (95.3%)
LB move op cnt : 0
LB apply : 3.91 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (66.5%)
Info: cfl dt = 0.0024247161751115103 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0162e+05 | 65536 | 2 | 2.173e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.0024247161751115103
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.0%)
patch tree reduce : 1.49 us (0.3%)
gen split merge : 1.31 us (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.2%)
LB compute : 563.19 us (96.4%)
LB move op cnt : 0
LB apply : 4.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (66.6%)
Info: cfl dt = 0.002373509166415457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2945e+05 | 65536 | 2 | 1.989e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.881173058238986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024247161751115103, dt = 0.002373509166415457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.4%)
patch tree reduce : 1.48 us (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 418.49 us (95.3%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (65.3%)
Info: cfl dt = 0.002163174917997481 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3508e+05 | 65536 | 2 | 1.956e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.68767617113231 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004798225341526968, dt = 0.002163174917997481
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.5%)
patch tree reduce : 1.47 us (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.2%)
LB compute : 411.44 us (95.1%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (64.2%)
Info: cfl dt = 0.0020782360781164094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3473e+05 | 65536 | 2 | 1.958e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.77520574496822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006961400259524448, dt = 0.0020782360781164094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.5%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 405.39 us (95.2%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (67.0%)
Info: cfl dt = 0.0020408368122952335 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3421e+05 | 65536 | 2 | 1.961e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.15325679634688 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009039636337640858, dt = 0.0020408368122952335
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.2%)
patch tree reduce : 1.49 us (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 446.87 us (95.7%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (67.5%)
Info: cfl dt = 0.0020243033391324763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2697e+05 | 65536 | 2 | 2.004e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.65522954739759 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011080473149936092, dt = 0.0020243033391324763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.3%)
patch tree reduce : 1.43 us (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 410.30 us (95.5%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (65.6%)
Info: cfl dt = 0.0020185614322841454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2962e+05 | 65536 | 2 | 1.988e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.653602365638484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013104776489068569, dt = 0.0020185614322841454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.6%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 385.84 us (94.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (64.5%)
Info: cfl dt = 0.001977352718132415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2213e+05 | 65536 | 2 | 2.034e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.71872167704859 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015123337921352713, dt = 0.001977352718132415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.2%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 410.96 us (95.6%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (64.9%)
Info: cfl dt = 0.001945373122581301 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5038e+05 | 65536 | 2 | 1.870e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.058101750579034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01710069063948513, dt = 0.001945373122581301
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.5%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 381.97 us (94.9%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.9%)
Info: cfl dt = 0.001927026344226756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4734e+05 | 65536 | 2 | 1.887e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.117606708791136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01904606376206643, dt = 0.001927026344226756
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.4%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 361.73 us (94.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.4%)
Info: cfl dt = 0.0019172115400082504 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2052e+05 | 65536 | 2 | 2.045e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.92838564190187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020973090106293186, dt = 0.0019172115400082504
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.1%)
patch tree reduce : 1.61 us (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 445.21 us (95.7%)
LB move op cnt : 0
LB apply : 3.95 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (67.4%)
Info: cfl dt = 0.0019128570137259048 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4278e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.63184328244456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022890301646301438, dt = 0.0019128570137259048
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.7%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 353.38 us (94.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.6%)
Info: cfl dt = 0.0019120490073137747 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2691e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.85820303836437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024803158660027344, dt = 0.0019120490073137747
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 352.97 us (94.8%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.1%)
Info: cfl dt = 0.0018985564171508276 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4979e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.24181970458552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026715207667341118, dt = 0.0018985564171508276
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.4%)
patch tree reduce : 1.77 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 384.98 us (95.0%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (65.8%)
Info: cfl dt = 0.0018876672327990725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4689e+05 | 65536 | 2 | 1.889e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.177183034036176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028613764084491945, dt = 0.0018876672327990725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 349.60 us (94.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 0.0018817994012088589 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4788e+05 | 65536 | 2 | 1.884e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.07255785112521 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030501431317291015, dt = 0.0018817994012088589
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.3%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 397.85 us (95.4%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.4%)
Info: cfl dt = 0.001879394414468752 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9392e+05 | 65536 | 2 | 1.664e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.71951516030399 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03238323071849988, dt = 0.001879394414468752
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.5%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 368.69 us (94.9%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.0%)
Info: cfl dt = 0.001879375781097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6885e+05 | 65536 | 2 | 1.398e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.40367320034331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03426262513296863, dt = 0.001879375781097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.4%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 368.30 us (95.0%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.7%)
Info: cfl dt = 0.001872231371694393 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4658e+05 | 65536 | 2 | 1.891e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.779971114519654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03614200091406563, dt = 0.001872231371694393
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.5%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 350.43 us (94.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.7%)
Info: cfl dt = 0.0018653832363801836 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5074e+05 | 65536 | 2 | 1.868e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.07223442541159 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03801423228576002, dt = 0.0018653832363801836
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.3%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 371.93 us (95.2%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (62.7%)
Info: cfl dt = 0.0018619870766465889 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4448e+05 | 65536 | 2 | 1.902e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.298480882735824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.039879615522140206, dt = 0.0018619870766465889
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 333.94 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (62.5%)
Info: cfl dt = 0.001861064236379517 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5551e+05 | 65536 | 2 | 1.843e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.36228031642607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.041741602598786794, dt = 0.001861064236379517
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.4%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 366.78 us (94.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.7%)
Info: cfl dt = 0.001860619703055981 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5515e+05 | 65536 | 2 | 1.845e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.30708680468314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04360266683516631, dt = 0.001860619703055981
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 353.40 us (94.6%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (63.8%)
Info: cfl dt = 0.0018529701425980334 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5804e+05 | 65536 | 2 | 1.830e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.59371709725573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04546328653822229, dt = 0.0018529701425980334
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 368.83 us (94.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (61.6%)
Info: cfl dt = 0.001848782167804269 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5496e+05 | 65536 | 2 | 1.846e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.13037117661223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047316256680820325, dt = 0.001848782167804269
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.4%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 394.94 us (95.1%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.7%)
Info: cfl dt = 0.0018471525320599262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6034e+05 | 65536 | 2 | 1.819e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.59469039275461 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.049165038848624595, dt = 0.0018471525320599262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 357.36 us (94.8%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.1%)
Info: cfl dt = 0.0018474045774290837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4353e+05 | 65536 | 2 | 1.908e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.857287024166496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051012191380684524, dt = 0.0018474045774290837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 351.54 us (94.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.8%)
Info: cfl dt = 0.0018422808250135414 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2648e+05 | 65536 | 2 | 2.007e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.13187494513082 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.052859595958113605, dt = 0.0018422808250135414
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 376.87 us (94.9%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.2%)
Info: cfl dt = 0.001837289510892964 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4130e+05 | 65536 | 2 | 1.920e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.539816991917974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05470187678312714, dt = 0.001837289510892964
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 335.26 us (94.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.0%)
Info: cfl dt = 0.0018349269174648473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4422e+05 | 65536 | 2 | 1.904e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.740879034402965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05653916629402011, dt = 0.0018349269174648473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.3%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 367.92 us (94.9%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.4%)
Info: cfl dt = 0.0018345520796924115 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2657e+05 | 65536 | 2 | 2.007e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.916475376872654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.058374093211484956, dt = 0.0018345520796924115
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 328.59 us (94.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.7%)
Info: cfl dt = 0.0018330226411893994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3165e+05 | 65536 | 2 | 1.976e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.422435470689486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.060208645291177365, dt = 0.0018330226411893994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 296.44 us (94.0%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (60.3%)
Info: cfl dt = 0.0018271832687232598 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2471e+05 | 65536 | 2 | 2.018e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.69487605006659 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06204166793236676, dt = 0.0018271832687232598
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.4%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 350.05 us (94.8%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.4%)
Info: cfl dt = 0.0018240223435452088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4133e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.29664119519852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06386885120109002, dt = 0.0018240223435452088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 335.36 us (94.7%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.3%)
Info: cfl dt = 0.0018229320316513597 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5258e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.34675062104828 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06569287354463524, dt = 0.0018229320316513597
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 332.67 us (94.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (60.7%)
Info: cfl dt = 0.0018234373281734494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4927e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.9881523898581 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0675158055762866, dt = 0.0018234373281734494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.9%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 271.79 us (93.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.5%)
Info: cfl dt = 0.001818480617001952 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4693e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.76696510124721 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06933924290446004, dt = 0.001818480617001952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 284.58 us (93.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.4%)
Info: cfl dt = 0.0018144802714904654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5131e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.082187041746074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07115772352146199, dt = 0.0018144802714904654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 345.97 us (94.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.9%)
Info: cfl dt = 0.0018126113886511727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5696e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.54673421976049 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07297220379295245, dt = 0.0018126113886511727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 278.76 us (93.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (66.2%)
Info: cfl dt = 0.0018124176557584044 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5202e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.00763316446557 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07478481518160363, dt = 0.0018124176557584044
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 345.18 us (94.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.0%)
Info: cfl dt = 0.0018111618083248196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4186e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.99132901105747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07659723283736203, dt = 0.0018111618083248196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 300.85 us (93.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.6%)
Info: cfl dt = 0.0018063128788408575 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5194e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.963757157196035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07840839464568684, dt = 0.0018063128788408575
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 319.54 us (94.1%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.5%)
Info: cfl dt = 0.0018036363067905929 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3962e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.620276589594745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0802147075245277, dt = 0.0018036363067905929
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 308.51 us (94.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (62.6%)
Info: cfl dt = 0.001802695184841617 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6081e+05 | 65536 | 2 | 1.816e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.74788687517152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08201834383131829, dt = 0.001802695184841617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 297.29 us (88.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.1%)
Info: cfl dt = 0.001803137511896323 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1743e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.33569471874803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0838210390161599, dt = 0.001803137511896323
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.0%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 289.51 us (93.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.2%)
Info: cfl dt = 0.001799469197137841 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2822e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.4148159282079 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08562417652805623, dt = 0.001799469197137841
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.7%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 302.69 us (94.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.1%)
Info: cfl dt = 0.001795981304177961 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5596e+05 | 65536 | 2 | 1.841e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.185552596391254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08742364572519408, dt = 0.001795981304177961
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 308.09 us (93.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.8%)
Info: cfl dt = 0.0017942745437257367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5747e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.131778227888724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08921962702937204, dt = 0.0017942745437257367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.5%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 316.82 us (94.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.1%)
Info: cfl dt = 0.0017940067514837564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5550e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.89564969317418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09101390157309779, dt = 0.0017940067514837564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 340.69 us (94.4%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.9%)
Info: cfl dt = 0.0017938225778022165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6672e+05 | 65536 | 2 | 1.787e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.13903568362991 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09280790832458154, dt = 0.0017938225778022165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 339.51 us (94.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.1%)
Info: cfl dt = 0.001789568100346248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3107e+05 | 65536 | 2 | 1.980e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.62289848248599 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09460173090238376, dt = 0.001789568100346248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 317.55 us (94.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.3%)
Info: cfl dt = 0.0017871000630718 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3070e+05 | 65536 | 2 | 1.982e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.509321013834054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09639129900273001, dt = 0.0017871000630718
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.8%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.47 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 303.94 us (93.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (63.2%)
Info: cfl dt = 0.001786113881783665 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2664e+05 | 65536 | 2 | 2.006e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.06570073757389 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09817839906580181, dt = 0.001786113881783665
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 360.77 us (95.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (64.2%)
Info: cfl dt = 0.0017863382569071576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3167e+05 | 65536 | 2 | 1.976e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.54183320525144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09996451294758547, dt = 0.0017863382569071576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 313.46 us (93.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.2%)
Info: cfl dt = 0.0017842742941110575 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1692e+05 | 65536 | 2 | 2.068e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.09785450524702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10175085120449263, dt = 0.0017842742941110575
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.4%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 344.77 us (94.0%)
LB move op cnt : 0
LB apply : 5.91 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.6%)
Info: cfl dt = 0.001781083882303111 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5390e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.48810593129343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10353512549860369, dt = 0.001781083882303111
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.9%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 312.42 us (93.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.7%)
Info: cfl dt = 0.0017793887285211427 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4088e+05 | 65536 | 2 | 1.923e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.35070718983373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1053162093809068, dt = 0.0017793887285211427
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.4%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 373.44 us (94.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.3%)
Info: cfl dt = 0.0017789424783942155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4207e+05 | 65536 | 2 | 1.916e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.43581766789057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10709559810942794, dt = 0.0017789424783942155
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 331.59 us (94.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.5%)
Info: cfl dt = 0.0017795268008289752 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3735e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.73800596543712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10887454058782216, dt = 0.0017795268008289752
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.4%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 348.57 us (94.6%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.5%)
Info: cfl dt = 0.0017761084934211427 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7120e+05 | 65536 | 2 | 1.766e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.28549702208643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11065406738865113, dt = 0.0017761084934211427
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 320.19 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.0%)
Info: cfl dt = 0.00177373997782396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4116e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.04146415938333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11243017588207227, dt = 0.00177373997782396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 311.97 us (94.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.2%)
Info: cfl dt = 0.001772636754545249 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3380e+05 | 65536 | 2 | 1.963e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.52398743663036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11420391585989623, dt = 0.001772636754545249
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 334.63 us (94.7%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.2%)
Info: cfl dt = 0.0017725973559036459 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4032e+05 | 65536 | 2 | 1.926e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.13854872539841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11597655261444148, dt = 0.0017725973559036459
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 331.10 us (94.6%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (61.0%)
Info: cfl dt = 0.0017720672636864564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3395e+05 | 65536 | 2 | 1.962e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.517674641651446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11774914997034512, dt = 0.0017720672636864564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 313.80 us (94.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (65.4%)
Info: cfl dt = 0.0017690597624408129 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3342e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.190368885265805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11952121723403157, dt = 0.0017690597624408129
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 306.16 us (94.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (60.7%)
Info: cfl dt = 0.0017673317576812216 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6535e+05 | 65536 | 2 | 1.794e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.50397747063705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12129027699647238, dt = 0.0017673317576812216
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 305.64 us (93.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (73.8%)
Info: cfl dt = 0.0017666842650221255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6433e+05 | 65536 | 2 | 1.799e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.37000863783255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1230576087541536, dt = 0.0017666842650221255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 21.21 us (6.1%)
LB compute : 309.38 us (88.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.3%)
Info: cfl dt = 0.0017669511589051942 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2041e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.799563364854095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12482429301917572, dt = 0.0017669511589051942
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 302.57 us (94.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.4%)
Info: cfl dt = 0.0017652435535778796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5229e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.89993877606192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1265912441780809, dt = 0.0017652435535778796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 1.45 us (0.4%)
split / merge op : 0/0
apply split merge : 1.72 us (0.5%)
LB compute : 305.28 us (93.2%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.3%)
Info: cfl dt = 0.0017629256865728982 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5948e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.5549362349386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12835648773165878, dt = 0.0017629256865728982
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 331.37 us (94.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.2%)
Info: cfl dt = 0.0017617006464616402 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6219e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.75865894662044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1301194134182317, dt = 0.0017617006464616402
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 341.38 us (94.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (61.6%)
Info: cfl dt = 0.0017614054020814432 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5875e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.39475276226989 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13188111406469333, dt = 0.0017614054020814432
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.45 us (0.4%)
LB compute : 353.23 us (94.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.3%)
Info: cfl dt = 0.0017619021322769282 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0135e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.83357911775918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13364251946677477, dt = 0.0017619021322769282
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 304.55 us (94.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.9%)
Info: cfl dt = 0.0017593187561237003 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4994e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.54679480270522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1354044215990517, dt = 0.0017593187561237003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 338.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.2%)
Info: cfl dt = 0.0017575506703019208 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5630e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.09768474267567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1371637403551754, dt = 0.0017575506703019208
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 339.53 us (94.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.5%)
Info: cfl dt = 0.001756722854054998 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5234e+05 | 65536 | 2 | 1.860e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.01703732440932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13892129102547732, dt = 0.001756722854054998
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 322.16 us (94.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.1%)
Info: cfl dt = 0.001756700316930328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3048e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.54087351697284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14067801387953233, dt = 0.001756700316930328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (0.3%)
patch tree reduce : 1.52 us (0.1%)
gen split merge : 951.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.10 us (0.1%)
LB compute : 1.70 ms (98.8%)
LB move op cnt : 0
LB apply : 4.07 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.1%)
Info: cfl dt = 0.0017564246524487783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3103e+05 | 65536 | 2 | 1.980e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.943607807478273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14243471419646264, dt = 0.0017564246524487783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.7%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 389.73 us (94.7%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.9%)
Info: cfl dt = 0.0017541415630857454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6185e+05 | 65536 | 2 | 1.811e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.91254422210981 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1441911388489114, dt = 0.0017541415630857454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 314.16 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (61.2%)
Info: cfl dt = 0.0017528139772800587 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3348e+05 | 65536 | 2 | 1.965e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.133512513730516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14594528041199717, dt = 0.0017528139772800587
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 337.15 us (94.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.7%)
Info: cfl dt = 0.0017523005690836273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3269e+05 | 65536 | 2 | 1.970e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.032859523187746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14769809438927722, dt = 0.0017523005690836273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 328.87 us (94.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (68.6%)
Info: cfl dt = 0.0017524885061734876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3402e+05 | 65536 | 2 | 1.962e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.151527106580254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14945039495836085, dt = 0.0017524885061734876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.9%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 303.28 us (94.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.1%)
Info: cfl dt = 0.0017513918802866718 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3486e+05 | 65536 | 2 | 1.957e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.235881574724274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15120288346453434, dt = 0.0017513918802866718
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 329.69 us (94.0%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (71.9%)
Info: cfl dt = 0.001749591610450994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3587e+05 | 65536 | 2 | 1.951e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.313321489365634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.152954275344821, dt = 0.001749591610450994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.6%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 356.11 us (94.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (65.8%)
Info: cfl dt = 0.0017486185350548149 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3041e+05 | 65536 | 2 | 1.983e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.7551102136267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.154703866955272, dt = 0.0017486185350548149
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.9%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 303.15 us (93.8%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (71.4%)
Info: cfl dt = 0.0017483543546392612 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3655e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.3271416337283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1564524854903268, dt = 0.0017483543546392612
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 297.37 us (93.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.6%)
Info: cfl dt = 0.0017487039598497883 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2946e+05 | 65536 | 2 | 1.989e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.640975289722654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15820083984496608, dt = 0.0017487039598497883
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 321.79 us (94.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.3%)
Info: cfl dt = 0.0017469794958784625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3232e+05 | 65536 | 2 | 1.972e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.92273823313135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15994954380481588, dt = 0.0017469794958784625
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 323.03 us (94.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.4%)
Info: cfl dt = 0.0017455728813794461 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.7557e+05 | 65536 | 2 | 2.378e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.44516882619283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16169652330069434, dt = 0.0017455728813794461
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.6%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 1.30 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 353.21 us (94.6%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (68.9%)
Info: cfl dt = 0.001744886041224492 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2075e+05 | 65536 | 2 | 2.043e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.755500354066516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16344209618207378, dt = 0.001744886041224492
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 340.45 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.3%)
Info: cfl dt = 0.001744819398635306 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4551e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.70229119014368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16518698222329828, dt = 0.001744819398635306
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 318.59 us (94.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (63.3%)
Info: cfl dt = 0.0017449072994634403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2132e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.38142003642304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16693180162193358, dt = 0.0017449072994634403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 309.16 us (94.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.4%)
Info: cfl dt = 0.0017430927651733957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9781e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.12993714647247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16867670892139702, dt = 0.0017430927651733957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.6%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 306.86 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.1%)
Info: cfl dt = 0.0017420081863774705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4760e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.85823678710797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17041980168657042, dt = 0.0017420081863774705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 307.38 us (94.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (59.6%)
Info: cfl dt = 0.001741552731668755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3965e+05 | 65536 | 2 | 1.930e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.501533069145914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17216180987294788, dt = 0.001741552731668755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 336.08 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (61.0%)
Info: cfl dt = 0.0017416421857145692 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4927e+05 | 65536 | 2 | 1.876e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.4132461384592 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17390336260461664, dt = 0.0017416421857145692
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 331.68 us (94.7%)
LB move op cnt : 0
LB apply : 3.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.8%)
Info: cfl dt = 0.001741112847842196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4660e+05 | 65536 | 2 | 1.891e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.15952808099078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1756450047903312, dt = 0.001741112847842196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.4%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 376.69 us (95.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.4%)
Info: cfl dt = 0.0017396547645334415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5584e+05 | 65536 | 2 | 1.842e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.03294337978253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1773861176381734, dt = 0.0017396547645334415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 304.24 us (93.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (58.4%)
Info: cfl dt = 0.0017388342244888865 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6975e+05 | 65536 | 2 | 1.772e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.33368576419367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17912577240270686, dt = 0.0017388342244888865
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 349.23 us (94.8%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.2%)
Info: cfl dt = 0.0017385657769755363 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3350e+05 | 65536 | 2 | 1.965e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.855027548569673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18086460662719575, dt = 0.0017385657769755363
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 304.11 us (94.1%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (61.9%)
Info: cfl dt = 0.0017387779089120118 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7574e+05 | 65536 | 2 | 1.744e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.88443084797804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1826031724041713, dt = 0.0017387779089120118
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.5%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 314.80 us (94.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (60.6%)
Info: cfl dt = 0.0017377646553390802 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8910e+05 | 65536 | 2 | 1.684e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.16402282339175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18434195031308329, dt = 0.0017377646553390802
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 328.87 us (94.3%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.0%)
Info: cfl dt = 0.001736602090424916 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5026e+05 | 65536 | 2 | 1.871e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.43541880434066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18607971496842238, dt = 0.001736602090424916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 314.06 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.9%)
Info: cfl dt = 0.001735998436959442 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4565e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.51210836400529 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1878163170588473, dt = 0.001735998436959442
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.3%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 360.02 us (95.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.1%)
Info: cfl dt = 0.001735880998788392 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5060e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.96951825089915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18955231549580673, dt = 0.001735880998788392
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 313.73 us (94.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (61.3%)
Info: cfl dt = 0.0017361888402087457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3696e+05 | 65536 | 2 | 1.945e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.13039043716739 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1912881964945951, dt = 0.0017361888402087457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.4%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 333.92 us (94.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.5%)
Info: cfl dt = 0.001734799399116594 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4192e+05 | 65536 | 2 | 1.917e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.60978107697429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19302438533480384, dt = 0.001734799399116594
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 350.13 us (95.0%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.2%)
Info: cfl dt = 0.001733882452199539 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4608e+05 | 65536 | 2 | 1.894e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.97961904177466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19475918473392043, dt = 0.001733882452199539
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.3%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 388.84 us (95.3%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (63.4%)
Info: cfl dt = 0.001733457105242247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3342e+05 | 65536 | 2 | 1.966e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.756948709805524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19649306718611997, dt = 0.001733457105242247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.3%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 361.92 us (94.9%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.6%)
Info: cfl dt = 0.0017334613125068194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3820e+05 | 65536 | 2 | 1.938e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.20416068210689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19822652429136223, dt = 0.0017334613125068194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.4%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 348.18 us (94.7%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.5%)
Info: cfl dt = 0.0017333748516999547 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3514e+05 | 65536 | 2 | 1.955e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.912677104900276 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19995998560386904, dt = 4.0014396130966245e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.56 us (0.4%)
LB compute : 335.30 us (94.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.2%)
Info: cfl dt = 0.001733346724155697 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4198e+05 | 65536 | 2 | 1.916e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7516970360237744 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 30.737650176000002 (s) [Godunov][rank=0]
running minmod rusanov
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.02 ms [DataInserterUtility][rank=0]
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 : 4.28 us (57.9%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (0.5%)
patch tree reduce : 932.00 ns (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 359.65 us (96.9%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.73 us (2.2%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 382.69 us (94.7%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.5%)
Info: cfl dt = 0.0024247161751115103 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1308e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.0024247161751115103
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 320.41 us (94.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.0%)
Info: cfl dt = 0.002351520645183926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4671e+05 | 65536 | 2 | 1.890e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.18010307548211 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024247161751115103, dt = 0.002351520645183926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 368.61 us (95.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (62.8%)
Info: cfl dt = 0.002260292005613433 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3636e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.3656010859923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004776236820295436, dt = 0.002260292005613433
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 326.96 us (94.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.6%)
Info: cfl dt = 0.0021533711847929455 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9872e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.50602262319341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007036528825908869, dt = 0.0021533711847929455
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 346.10 us (94.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (63.5%)
Info: cfl dt = 0.002089575329838524 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2978e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.83749674044124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009189900010701815, dt = 0.002089575329838524
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 345.02 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (63.5%)
Info: cfl dt = 0.002061959453263477 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3991e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.49487745323689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01127947534054034, dt = 0.002061959453263477
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.3%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 373.03 us (95.1%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.6%)
Info: cfl dt = 0.002051926548606445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9695e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.961271181672856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013341434793803817, dt = 0.002051926548606445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 347.12 us (94.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.6%)
Info: cfl dt = 0.0019922852903495915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5307e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.06837376529153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015393361342410261, dt = 0.0019922852903495915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.6%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 358.47 us (94.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.7%)
Info: cfl dt = 0.001953511383812545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5840e+05 | 65536 | 2 | 1.829e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.222680761074905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017385646632759853, dt = 0.001953511383812545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 314.91 us (94.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.7%)
Info: cfl dt = 0.0019315363357800363 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1731e+05 | 65536 | 2 | 2.065e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.0508079179639 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0193391580165724, dt = 0.0019315363357800363
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 349.06 us (94.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.7%)
Info: cfl dt = 0.001922766239979531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5225e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.98507540554045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021270694352352435, dt = 0.001922766239979531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 293.99 us (93.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (60.5%)
Info: cfl dt = 0.0019110020962162704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5048e+05 | 65536 | 2 | 1.870e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.01760978119526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023193460592331967, dt = 0.0019110020962162704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 341.95 us (94.1%)
LB move op cnt : 0
LB apply : 5.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.4%)
Info: cfl dt = 0.0018778209476821859 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6254e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.555198216438825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025104462688548237, dt = 0.0018778209476821859
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.5%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 311.83 us (94.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.6%)
Info: cfl dt = 0.0018628096275361623 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5372e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.80242948911101 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026982283636230422, dt = 0.0018628096275361623
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.1%)
patch tree reduce : 1.76 us (0.3%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.2%)
LB compute : 498.17 us (96.0%)
LB move op cnt : 0
LB apply : 4.05 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (67.8%)
Info: cfl dt = 0.0018554754980100313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6880e+05 | 65536 | 2 | 1.398e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.971171801094386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028845093263766584, dt = 0.0018554754980100313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 303.70 us (94.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.1%)
Info: cfl dt = 0.0018535671212540935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9681e+05 | 65536 | 2 | 1.652e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.44416752282901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030700568761776615, dt = 0.0018535671212540935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 1.45 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 280.39 us (93.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.7%)
Info: cfl dt = 0.0018418600212724448 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6092e+05 | 65536 | 2 | 1.816e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.74830947301842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03255413588303071, dt = 0.0018418600212724448
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 303.02 us (93.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.2%)
Info: cfl dt = 0.0018250658910450614 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5935e+05 | 65536 | 2 | 1.824e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.35754223823561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03439599590430315, dt = 0.0018250658910450614
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 316.25 us (94.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (63.2%)
Info: cfl dt = 0.0018184210866263029 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9480e+05 | 65536 | 2 | 1.660e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.58026009691055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03622106179534822, dt = 0.0018184210866263029
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 328.54 us (94.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.6%)
Info: cfl dt = 0.0018176015720027016 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7687e+05 | 65536 | 2 | 1.739e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.64554020042695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03803948288197452, dt = 0.0018176015720027016
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 336.69 us (94.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.3%)
Info: cfl dt = 0.001818799845751024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6491e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.418645896350505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.039857084453977225, dt = 0.001818799845751024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 326.35 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.0%)
Info: cfl dt = 0.0018034901965326262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6021e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.97978907251484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.041675884299728246, dt = 0.0018034901965326262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.1%)
patch tree reduce : 1.48 us (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 478.76 us (96.2%)
LB move op cnt : 0
LB apply : 3.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.9%)
Info: cfl dt = 0.0017956047438197516 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7047e+05 | 65536 | 2 | 1.393e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.608375233856705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.043479374496260874, dt = 0.0017956047438197516
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.8%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 281.99 us (93.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (61.5%)
Info: cfl dt = 0.0017934915300478458 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6768e+05 | 65536 | 2 | 1.782e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.26618460527996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04527497924008063, dt = 0.0017934915300478458
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.9%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 288.01 us (93.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.8%)
Info: cfl dt = 0.0017948560835794073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5021e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.354158119756804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047068470770128476, dt = 0.0017948560835794073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 345.80 us (94.8%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.4%)
Info: cfl dt = 0.0017873322255620484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6151e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.50267107297603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04886332685370788, dt = 0.0017873322255620484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 287.80 us (93.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (83.0%)
Info: cfl dt = 0.0017787079640840568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5286e+05 | 65536 | 2 | 1.857e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.64440598175137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05065065907926993, dt = 0.0017787079640840568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.9%)
patch tree reduce : 1.38 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 275.96 us (93.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (61.3%)
Info: cfl dt = 0.0017757677878620824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5058e+05 | 65536 | 2 | 1.869e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.25413618079531 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05242936704335399, dt = 0.0017757677878620824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 312.68 us (88.4%)
LB move op cnt : 0
LB apply : 25.71 us (7.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (59.8%)
Info: cfl dt = 0.0017765479422788446 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2799e+05 | 65536 | 2 | 1.998e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.99390789237763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05420513483121608, dt = 0.0017765479422788446
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.4%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 362.93 us (94.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.9%)
Info: cfl dt = 0.0017746761050471413 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2131e+05 | 65536 | 2 | 2.040e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.35581224753705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05598168277349492, dt = 0.0017746761050471413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.5%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 342.22 us (94.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.8%)
Info: cfl dt = 0.0017646784797223274 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4494e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.37575576305382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05775635887854206, dt = 0.0017646784797223274
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 333.92 us (94.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (61.8%)
Info: cfl dt = 0.0017606774091432245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2860e+05 | 65536 | 2 | 1.994e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.85361969329323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05952103735826439, dt = 0.0017606774091432245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 303.34 us (94.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.2%)
Info: cfl dt = 0.0017610272789614467 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2249e+05 | 65536 | 2 | 2.032e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.190616130859212 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06128171476740761, dt = 0.0017610272789614467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.6%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 1.33 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 368.42 us (94.6%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (69.7%)
Info: cfl dt = 0.0017632056750679673 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5172e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.69752328472858 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06304274204636906, dt = 0.0017632056750679673
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 303.19 us (94.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.8%)
Info: cfl dt = 0.0017520856549966613 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5038e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.62149337823888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06480594772143702, dt = 0.0017520856549966613
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 309.65 us (94.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.8%)
Info: cfl dt = 0.0017473358215376455 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6430e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.68688553966947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06655803337643368, dt = 0.0017473358215376455
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 298.43 us (94.1%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (64.2%)
Info: cfl dt = 0.0017468674469056803 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7099e+05 | 65536 | 2 | 1.391e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.20730263008059 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06830536919797132, dt = 0.0017468674469056803
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 319.25 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.3%)
Info: cfl dt = 0.001749494503759047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6985e+05 | 65536 | 2 | 1.395e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.08630144273668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.070052236644877, dt = 0.001749494503759047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 323.48 us (94.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (60.9%)
Info: cfl dt = 0.0017408487955679745 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5097e+05 | 65536 | 2 | 1.867e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.72933524688138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07180173114863606, dt = 0.0017408487955679745
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 333.41 us (94.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.5%)
Info: cfl dt = 0.001734923350729223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8912e+05 | 65536 | 2 | 1.684e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.21048252343129 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07354257994420403, dt = 0.001734923350729223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 292.45 us (93.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (59.0%)
Info: cfl dt = 0.0017336833437348474 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4871e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.7631286165801 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07527750329493325, dt = 0.0017336833437348474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.4%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 356.60 us (94.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.0%)
Info: cfl dt = 0.001735756658289641 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2944e+05 | 65536 | 2 | 1.989e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.374114363877908 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0770111866386681, dt = 0.001735756658289641
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 313.34 us (94.0%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (61.6%)
Info: cfl dt = 0.0017315528522539134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2845e+05 | 65536 | 2 | 1.995e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.31676720529412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07874694329695774, dt = 0.0017315528522539134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 309.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (59.5%)
Info: cfl dt = 0.0017241658949628221 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1870e+05 | 65536 | 2 | 2.056e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.313646398184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08047849614921165, dt = 0.0017241658949628221
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.6%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 370.40 us (94.9%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.4%)
Info: cfl dt = 0.0017219207772036264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2491e+05 | 65536 | 2 | 2.017e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.77235544140988 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08220266204417448, dt = 0.0017219207772036264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 333.22 us (94.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.4%)
Info: cfl dt = 0.0017232382171286657 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2730e+05 | 65536 | 2 | 2.002e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.959001013935225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0839245828213781, dt = 0.0017232382171286657
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 334.84 us (94.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (65.5%)
Info: cfl dt = 0.0017248688828008837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2305e+05 | 65536 | 2 | 2.029e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.58005537899811 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08564782103850677, dt = 0.0017248688828008837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.4%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 390.27 us (95.1%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.2%)
Info: cfl dt = 0.001715809835481906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2579e+05 | 65536 | 2 | 2.012e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.868545835133254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08737268992130764, dt = 0.001715809835481906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 339.57 us (94.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.5%)
Info: cfl dt = 0.0017122267421482344 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6252e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.59313535371777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08908849975678955, dt = 0.0017122267421482344
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 292.61 us (93.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.8%)
Info: cfl dt = 0.0017123537222116056 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9707e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.34676821244906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09080072649893778, dt = 0.0017123537222116056
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.0%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 270.36 us (93.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (63.5%)
Info: cfl dt = 0.0017151889866310222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0705e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.28839258480218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09251308022114939, dt = 0.0017151889866310222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.5%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 304.46 us (94.2%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.1%)
Info: cfl dt = 0.001710476349516371 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5368e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.7449101874409 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09422826920778041, dt = 0.001710476349516371
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 273.87 us (93.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (63.9%)
Info: cfl dt = 0.0017052234795964494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5670e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.91121622881553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09593874555729678, dt = 0.0017052234795964494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 337.13 us (94.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.8%)
Info: cfl dt = 0.0017038957954208331 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6223e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.29757012172518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09764396903689324, dt = 0.0017038957954208331
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.9%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 296.45 us (93.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (60.4%)
Info: cfl dt = 0.0017054254494145726 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6157e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.20195737679341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09934786483231407, dt = 0.0017054254494145726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 323.37 us (94.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (59.4%)
Info: cfl dt = 0.0017083454641065893 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6030e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.122061473632165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10105329028172864, dt = 0.0017083454641065893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 320.53 us (94.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.1%)
Info: cfl dt = 0.0017011708017333322 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7131e+05 | 65536 | 2 | 1.391e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.228830655437285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10276163574583523, dt = 0.0017011708017333322
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 325.12 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.4%)
Info: cfl dt = 0.0016982561471839586 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5860e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.855655141587036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10446280654756857, dt = 0.0016982561471839586
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 329.67 us (94.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.8%)
Info: cfl dt = 0.0016983888813206847 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5512e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.45683208082822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10616106269475252, dt = 0.0016983888813206847
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.8%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 266.51 us (93.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.2%)
Info: cfl dt = 0.0017005310653634385 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5747e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.67963686439281 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1078594515760732, dt = 0.0017005310653634385
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.5%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 310.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.6%)
Info: cfl dt = 0.0017002262477569213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5502e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.50490316816183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10955998264143664, dt = 0.0017002262477569213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.7%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 277.59 us (93.7%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.0%)
Info: cfl dt = 0.0016955197067749705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5772e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.7494924709333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11126020888919357, dt = 0.0016955197067749705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 269.22 us (93.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (63.9%)
Info: cfl dt = 0.0016940980555360243 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7141e+05 | 65536 | 2 | 1.765e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.59186267024593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11295572859596853, dt = 0.0016940980555360243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.7%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 275.69 us (93.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.3%)
Info: cfl dt = 0.0016949635929667172 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6234e+05 | 65536 | 2 | 1.809e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.71890100133151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11464982665150455, dt = 0.0016949635929667172
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.7%)
patch tree reduce : 1.48 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 296.11 us (94.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.8%)
Info: cfl dt = 0.0016973577282177524 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4954e+05 | 65536 | 2 | 1.875e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.544914865592546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11634479024447127, dt = 0.0016973577282177524
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 299.00 us (94.0%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.8%)
Info: cfl dt = 0.0016952309878496708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4447e+05 | 65536 | 2 | 1.903e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.11771134753149 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11804214797268901, dt = 0.0016952309878496708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.5%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 328.62 us (94.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.0%)
Info: cfl dt = 0.0016922141197974834 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4936e+05 | 65536 | 2 | 1.876e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.53313589085213 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11973737896053868, dt = 0.0016922141197974834
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 314.56 us (94.2%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.9%)
Info: cfl dt = 0.001691738711574515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0555e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.69840361206236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12142959308033617, dt = 0.001691738711574515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 297.20 us (94.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (61.2%)
Info: cfl dt = 0.0016929707568785885 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8057e+05 | 65536 | 2 | 1.722e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.36656992938621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12312133179191069, dt = 0.0016929707568785885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 326.59 us (94.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 0.0016953666690558168 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7340e+05 | 65536 | 2 | 1.755e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.72519864485356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12481430254878928, dt = 0.0016953666690558168
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.4%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 351.74 us (94.9%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.4%)
Info: cfl dt = 0.0016922734783240867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5748e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.60496994179725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1265096692178451, dt = 0.0016922734783240867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 294.56 us (93.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (60.5%)
Info: cfl dt = 0.0016904658347707028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0625e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.76506893566308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1282019426961692, dt = 0.0016904658347707028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.8%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 277.57 us (93.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.5%)
Info: cfl dt = 0.0016905799585851704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2948e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.88166617389418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1298924085309399, dt = 0.0016905799585851704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 355.11 us (94.8%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.4%)
Info: cfl dt = 0.0016919808502272172 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3387e+05 | 65536 | 2 | 1.963e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.005354489894206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13158298848952507, dt = 0.0016919808502272172
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 315.49 us (94.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (60.3%)
Info: cfl dt = 0.0016939142473621316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1427e+05 | 65536 | 2 | 2.085e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.209612240732596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13327496933975227, dt = 0.0016939142473621316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.3%)
patch tree reduce : 1.78 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.3%)
LB compute : 387.18 us (95.3%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.4%)
Info: cfl dt = 0.0016907943321393536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3005e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.015767016282346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1349688835871144, dt = 0.0016907943321393536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 294.96 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.6%)
Info: cfl dt = 0.0016897843154393276 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6541e+05 | 65536 | 2 | 1.408e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.22652800922534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13665967791925376, dt = 0.0016897843154393276
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 296.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.1%)
Info: cfl dt = 0.0016902230544775542 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1790e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.79024349813885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1383494622346931, dt = 0.0016902230544775542
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 297.04 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.6%)
Info: cfl dt = 0.0016916145789440465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6508e+05 | 65536 | 2 | 1.795e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.89675196443995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14003968528917066, dt = 0.0016916145789440465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 322.31 us (94.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (61.3%)
Info: cfl dt = 0.0016925101169647887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6434e+05 | 65536 | 2 | 1.799e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.85559024374022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1417312998681147, dt = 0.0016925101169647887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 310.20 us (94.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.5%)
Info: cfl dt = 0.0016904176613256234 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5320e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.13490208761487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14342380998507948, dt = 0.0016904176613256234
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 359.97 us (94.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.5%)
Info: cfl dt = 0.0016899078404215367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5483e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.23396201212459 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1451142276464051, dt = 0.0016899078404215367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.4%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 362.08 us (94.8%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (65.6%)
Info: cfl dt = 0.0016904826519570251 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5478e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.21707368023998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14680413548682664, dt = 0.0016904826519570251
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 319.73 us (93.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.2%)
Info: cfl dt = 0.0016917533366995114 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5712e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.44838700852933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14849461813878367, dt = 0.0016917533366995114
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.5%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 372.93 us (95.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.8%)
Info: cfl dt = 0.0016923174520660402 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2630e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.61664637497304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1501863714754832, dt = 0.0016923174520660402
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 297.06 us (94.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.3%)
Info: cfl dt = 0.0016908716167066877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9452e+05 | 65536 | 2 | 1.661e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.67565693899054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15187868892754924, dt = 0.0016908716167066877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 315.17 us (94.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.6%)
Info: cfl dt = 0.001690633241596396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4291e+05 | 65536 | 2 | 1.911e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.850224620855396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15356956054425594, dt = 0.001690633241596396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 296.23 us (94.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.9%)
Info: cfl dt = 0.0016911873542640793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5381e+05 | 65536 | 2 | 1.852e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.85800205127424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15526019378585235, dt = 0.0016911873542640793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 299.82 us (93.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.6%)
Info: cfl dt = 0.0016922646637931866 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5348e+05 | 65536 | 2 | 1.854e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.83861349192082 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15695138114011642, dt = 0.0016922646637931866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.3%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 357.50 us (95.1%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.6%)
Info: cfl dt = 0.0016926837069749835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4710e+05 | 65536 | 2 | 1.888e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.26557741714234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1586436458039096, dt = 0.0016926837069749835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.3%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 361.89 us (95.1%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.8%)
Info: cfl dt = 0.001691661148613588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4857e+05 | 65536 | 2 | 1.880e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.41060267870562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16033632951088458, dt = 0.001691661148613588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 290.26 us (93.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.6%)
Info: cfl dt = 0.0016915607164140695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4819e+05 | 65536 | 2 | 1.882e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.35558372813428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16202799065949816, dt = 0.0016915607164140695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 324.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.7%)
Info: cfl dt = 0.0016920252777170154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5374e+05 | 65536 | 2 | 1.853e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.86952276174662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16371955137591224, dt = 0.0016920252777170154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 315.83 us (94.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.4%)
Info: cfl dt = 0.001692896121472443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4107e+05 | 65536 | 2 | 1.921e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.700830524065392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16541157665362924, dt = 0.001692896121472443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.5%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 333.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.4%)
Info: cfl dt = 0.0016932812243009368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0901e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.035228690053096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16710447277510168, dt = 0.0016932812243009368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 277.16 us (93.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.3%)
Info: cfl dt = 0.001692528888098055 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6208e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.98042615306419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1687977539994026, dt = 0.001692528888098055
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.8%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 278.03 us (93.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.0%)
Info: cfl dt = 0.0016924576006673556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2167e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.20383534202429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17049028288750068, dt = 0.0016924576006673556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 300.61 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.0%)
Info: cfl dt = 0.0016928132566982363 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7514e+05 | 65536 | 2 | 1.747e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.87686770521479 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17218274048816803, dt = 0.0016928132566982363
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 293.69 us (94.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.8%)
Info: cfl dt = 0.0016934792266023286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5928e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.70786136515383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17387555374486627, dt = 0.0016934792266023286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.8%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 273.11 us (93.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (64.0%)
Info: cfl dt = 0.0016940869050650785 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5531e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.35578133749939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17556903297146859, dt = 0.0016940869050650785
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.5%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 309.43 us (94.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.5%)
Info: cfl dt = 0.001693487866126987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5170e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.03497147748641 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17726311987653368, dt = 0.001693487866126987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 315.20 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.0%)
Info: cfl dt = 0.001693386693880746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5583e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.40442415607144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17895660774266067, dt = 0.001693386693880746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 295.11 us (93.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.7%)
Info: cfl dt = 0.0016936225037281001 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5985e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.77575459039295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18064999443654142, dt = 0.0016936225037281001
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.5%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 323.38 us (94.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.3%)
Info: cfl dt = 0.0016941064830647177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5269e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.11576181779468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18234361694026952, dt = 0.0016941064830647177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 334.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.7%)
Info: cfl dt = 0.0016947860401335343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5350e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.20313840877709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18403772342333424, dt = 0.0016947860401335343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.48 us (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 308.06 us (94.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (64.1%)
Info: cfl dt = 0.0016945191215457876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2471e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.539735308910146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18573250946346778, dt = 0.0016945191215457876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 308.89 us (94.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.1%)
Info: cfl dt = 0.0016943707499528626 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5775e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.608738733993945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18742702858501356, dt = 0.0016943707499528626
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 310.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.6%)
Info: cfl dt = 0.001694490404365914 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2694e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.73730401812043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1891213993349664, dt = 0.001694490404365914
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 324.76 us (94.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.9%)
Info: cfl dt = 0.0016948090796908004 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6384e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.17430645059647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19081588973933233, dt = 0.0016948090796908004
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 318.91 us (94.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.3%)
Info: cfl dt = 0.001695282738605939 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6093e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.91216773865311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19251069881902313, dt = 0.001695282738605939
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 315.23 us (94.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (63.1%)
Info: cfl dt = 0.0016955089227541137 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9915e+05 | 65536 | 2 | 1.642e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.17055980283631 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19420598155762908, dt = 0.0016955089227541137
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 324.51 us (94.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.1%)
Info: cfl dt = 0.0016953096959158632 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9809e+05 | 65536 | 2 | 1.646e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.076746857955754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1959014904803832, dt = 0.0016953096959158632
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 337.68 us (94.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.6%)
Info: cfl dt = 0.0016953201859836152 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4324e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.27759554692121 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19759680017629905, dt = 0.0016953201859836152
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 306.35 us (93.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.8%)
Info: cfl dt = 0.0016954901168427087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5993e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.832061935823035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19929212036228267, dt = 0.0007078796377173457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.5%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 376.07 us (94.5%)
LB move op cnt : 0
LB apply : 4.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.6%)
Info: cfl dt = 0.001695602751795715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6070e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.91421951520078 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 49.755464455 (s) [Godunov][rank=0]
running minmod hll
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1.94 ms [DataInserterUtility][rank=0]
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 : 4.20 us (57.7%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (0.3%)
patch tree reduce : 1.01 us (0.2%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 419.22 us (97.2%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod hll with only_last_step=False
Info: time since start : 49.944566370000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (1.9%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 346.52 us (94.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.4%)
Info: cfl dt = 0.0024247161751115103 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5094e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.0024247161751115103
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.3%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 377.71 us (95.0%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (65.5%)
Info: cfl dt = 0.002373509166415457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5197e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.198929859123226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024247161751115103, dt = 0.002373509166415457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 315.70 us (94.2%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.0%)
Info: cfl dt = 0.002149377687526953 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4069e+05 | 65536 | 2 | 1.924e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.41883260929855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004798225341526968, dt = 0.00020177465847303223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.4%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 342.61 us (94.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (65.4%)
Info: cfl dt = 0.0021366964471823805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3323e+05 | 65536 | 2 | 1.967e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6934857837543724 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 50.698870835 (s) [Godunov][rank=0]
amr::Godunov: t = 0.005, dt = 0.0021366964471823805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.10 us (1.9%)
patch tree reduce : 2.32 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 404.48 us (94.3%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (68.1%)
Info: cfl dt = 0.002042393752584492 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5279e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.14506119408607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007136696447182381, dt = 0.002042393752584492
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 344.25 us (94.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (60.8%)
Info: cfl dt = 0.0019992283821035173 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8983e+05 | 65536 | 2 | 1.681e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.73609083261319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009179090199766874, dt = 0.0008209098002331262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.9%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 275.49 us (93.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.4%)
Info: cfl dt = 0.001989469580709434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5062e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.32017641275315 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 51.230228908 (s) [Godunov][rank=0]
amr::Godunov: t = 0.01, dt = 0.001989469580709434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.8%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 344.00 us (94.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.4%)
Info: cfl dt = 0.001977154693685554 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6376e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.682355777518204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011989469580709435, dt = 0.001977154693685554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 347.81 us (94.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.7%)
Info: cfl dt = 0.0019634487422169346 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6773e+05 | 65536 | 2 | 1.401e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.799032245155345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013966624274394988, dt = 0.0010333757256050114
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 307.36 us (93.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.3%)
Info: cfl dt = 0.0019325413466954986 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6366e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.319848302707506 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 51.725884601000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.015, dt = 0.0019325413466954986
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (1.9%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 374.67 us (94.4%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.3%)
Info: cfl dt = 0.0018922105688191683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7386e+05 | 65536 | 2 | 1.753e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.68770799293335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016932541346695498, dt = 0.0018922105688191683
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 334.80 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.7%)
Info: cfl dt = 0.0018709138352807182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5643e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.44214634375818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018824751915514665, dt = 0.0011752480844853357
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.7%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 344.75 us (94.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (64.9%)
Info: cfl dt = 0.0018637304114470384 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4342e+05 | 65536 | 2 | 1.908e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.170555143594513 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 52.308877115 (s) [Godunov][rank=0]
amr::Godunov: t = 0.02, dt = 0.0018637304114470384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (1.6%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 406.94 us (95.0%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (64.9%)
Info: cfl dt = 0.0018582997523339034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5903e+05 | 65536 | 2 | 1.825e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.75620081466193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021863730411447038, dt = 0.0018582997523339034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.4%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 346.15 us (94.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.3%)
Info: cfl dt = 0.0018589869158084653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4903e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.83665038453226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023722030163780942, dt = 0.0012779698362190596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.6%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 311.40 us (94.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (62.0%)
Info: cfl dt = 0.0018618742652520084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3798e+05 | 65536 | 2 | 1.939e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.726871203893303 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 52.903780248000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.025, dt = 0.0018618742652520084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (1.6%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 389.61 us (95.0%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.4%)
Info: cfl dt = 0.0018434102985827666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5718e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.75874746729703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02686187426525201, dt = 0.0018434102985827666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 337.73 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.1%)
Info: cfl dt = 0.0018352094199683513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0754e+05 | 65536 | 2 | 1.608e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.2678929665119 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028705284563834775, dt = 0.0012947154361652238
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 317.70 us (94.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.5%)
Info: cfl dt = 0.0018341063136192858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4812e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.870408524742412 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 53.433450237 (s) [Godunov][rank=0]
amr::Godunov: t = 0.03, dt = 0.0018341063136192858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.0%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 345.12 us (94.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (62.4%)
Info: cfl dt = 0.0018359057719445368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7621e+05 | 65536 | 2 | 1.742e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.90351242121655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031834106313619284, dt = 0.0018359057719445368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 291.70 us (94.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (63.3%)
Info: cfl dt = 0.0018224461857752835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6308e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.70165578854735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03367001208556382, dt = 0.0013299879144361842
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 288.05 us (93.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.4%)
Info: cfl dt = 0.001816049736805951 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6234e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.77815188661979 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 53.97139554100001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.035, dt = 0.001816049736805951
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.8%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 331.92 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.6%)
Info: cfl dt = 0.0018130077286621184 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8733e+05 | 65536 | 2 | 1.692e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.63937551328807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03681604973680595, dt = 0.0018130077286621184
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 300.66 us (94.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (62.5%)
Info: cfl dt = 0.0018146032494795912 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6337e+05 | 65536 | 2 | 1.414e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.14753035003911 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03862905746546807, dt = 0.0013709425345319326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 308.60 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.8%)
Info: cfl dt = 0.001805832788895163 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2642e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.112939246852456 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 54.518254625000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.04, dt = 0.001805832788895163
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (1.6%)
patch tree reduce : 1.93 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 435.67 us (95.1%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (62.4%)
Info: cfl dt = 0.0017927342974056511 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3674e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.323836096212816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.041805832788895166, dt = 0.0017927342974056511
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 314.78 us (94.1%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.0%)
Info: cfl dt = 0.001788073748186579 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9119e+05 | 65536 | 2 | 1.675e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.52354445941736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04359856708630082, dt = 0.0014014329136991799
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 298.64 us (94.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.5%)
Info: cfl dt = 0.0017885814710754293 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6265e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.61625551727211 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 55.050568694000006 (s) [Godunov][rank=0]
amr::Godunov: t = 0.045, dt = 0.0017885814710754293
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (1.6%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 399.01 us (94.9%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (64.8%)
Info: cfl dt = 0.001789189120993069 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0804e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.09006483410928 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.046788581471075424, dt = 0.001789189120993069
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 319.47 us (94.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.2%)
Info: cfl dt = 0.0017721787009417824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0451e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.75679930769009 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04857777059206849, dt = 0.001422229407931512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (2.0%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 273.54 us (93.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.6%)
Info: cfl dt = 0.001766133880552604 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4583e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.83040080903975 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 55.593351486 (s) [Godunov][rank=0]
amr::Godunov: t = 0.05, dt = 0.001766133880552604
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (1.9%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 334.44 us (94.2%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.1%)
Info: cfl dt = 0.001764362650745321 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2722e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.44707466491485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05176613388055261, dt = 0.001764362650745321
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 324.57 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.2%)
Info: cfl dt = 0.0017674028113651046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5622e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.216899310641445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05353049653129793, dt = 0.0014695034687020672
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 321.68 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.1%)
Info: cfl dt = 0.0017613058098427893 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8831e+05 | 65536 | 2 | 1.688e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.345246912516117 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 56.130776232 (s) [Godunov][rank=0]
amr::Godunov: t = 0.055, dt = 0.0017613058098427893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (1.8%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 361.71 us (94.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.4%)
Info: cfl dt = 0.001749091875609621 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6482e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.97196467854047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05676130580984279, dt = 0.001749091875609621
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 278.46 us (93.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.8%)
Info: cfl dt = 0.0017446500442971473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5158e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.388339648210845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05851039768545241, dt = 0.001489602314547589
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 310.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.4%)
Info: cfl dt = 0.0017451652654214846 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3523e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.613621131455 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 56.642639602 (s) [Godunov][rank=0]
amr::Godunov: t = 0.06, dt = 0.0017451652654214846
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (1.8%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 358.94 us (94.4%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (64.7%)
Info: cfl dt = 0.0017491642670394983 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1451e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.73650623206903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06174516526542148, dt = 0.0017491642670394983
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.8%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 271.33 us (93.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (60.9%)
Info: cfl dt = 0.0017383925660327307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7984e+05 | 65536 | 2 | 1.725e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.4971569988028 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06349432953246098, dt = 0.001505670467539022
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.47 us (0.5%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 284.52 us (93.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.0%)
Info: cfl dt = 0.0017317807770450089 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4157e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.52150534508696 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 57.200807250000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.065, dt = 0.0017317807770450089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (2.0%)
patch tree reduce : 2.30 us (0.6%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 368.58 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.8%)
Info: cfl dt = 0.001729424507300354 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9644e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.71295449576748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06673178077704502, dt = 0.001729424507300354
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.8%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 269.74 us (93.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.7%)
Info: cfl dt = 0.0017310989114589033 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8571e+05 | 65536 | 2 | 1.699e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.642373557892626 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06846120528434536, dt = 0.0015387947156546428
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 335.52 us (94.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (63.6%)
Info: cfl dt = 0.001735047366276934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5820e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.7308703855354 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 57.755171639000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.07, dt = 0.001735047366276934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.6%)
patch tree reduce : 1.83 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 386.71 us (94.9%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.7%)
Info: cfl dt = 0.0017236319809287627 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6471e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.29109139081741 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07173504736627694, dt = 0.0017236319809287627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 325.93 us (94.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.5%)
Info: cfl dt = 0.0017185331350307244 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4182e+05 | 65536 | 2 | 1.917e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.36393742866809 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0734586793472057, dt = 0.0015413206527943035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 314.91 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.2%)
Info: cfl dt = 0.0017177851111772119 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4749e+05 | 65536 | 2 | 1.886e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.42106567467329 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 58.366875171000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.075, dt = 0.0017177851111772119
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.8%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 352.62 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (62.8%)
Info: cfl dt = 0.001719746638226188 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4002e+05 | 65536 | 2 | 1.927e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.084435581636384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0767177851111772, dt = 0.001719746638226188
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 304.39 us (94.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (61.6%)
Info: cfl dt = 0.0017211229825891843 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2502e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.151131991715324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07843753174940339, dt = 0.0015624682505966103
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 301.02 us (93.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.8%)
Info: cfl dt = 0.0017134759725273392 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5003e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.62531902001542 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 58.931984141 (s) [Godunov][rank=0]
amr::Godunov: t = 0.08, dt = 0.0017134759725273392
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.1%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 328.15 us (93.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.5%)
Info: cfl dt = 0.0017098744767283553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5544e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.86780253341397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08171347597252734, dt = 0.0017098744767283553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 289.26 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (60.7%)
Info: cfl dt = 0.0017097154577639148 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4780e+05 | 65536 | 2 | 1.884e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.667610351336585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0834233504492557, dt = 0.0015766495507443107
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 331.39 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.6%)
Info: cfl dt = 0.001711705784259328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4538e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.57375684579155 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 59.49843786900001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.085, dt = 0.001711705784259328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (1.9%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 372.79 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (63.2%)
Info: cfl dt = 0.0017119428114212652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8321e+05 | 65536 | 2 | 1.710e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.03169743536999 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08671170578425934, dt = 0.0017119428114212652
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 307.42 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.9%)
Info: cfl dt = 0.0017056819857417028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5656e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.934441693074575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08842364859568061, dt = 0.0015763514043193871
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 340.59 us (94.6%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.5%)
Info: cfl dt = 0.001703543388476863 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8639e+05 | 65536 | 2 | 1.696e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.45843640280129 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 60.068742406000005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.09, dt = 0.001703543388476863
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (1.9%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 370.85 us (94.4%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (67.4%)
Info: cfl dt = 0.0017036745996443256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4406e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.55437903785535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09170354338847686, dt = 0.0017036745996443256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 326.38 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.8%)
Info: cfl dt = 0.0017056606182428464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4039e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.213776201108985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09340721798812118, dt = 0.0015927820118788183
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.6%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 358.28 us (94.5%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.3%)
Info: cfl dt = 0.0017055094354247124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1327e+05 | 65536 | 2 | 2.092e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.409085599024333 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 60.647316258000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.095, dt = 0.0017055094354247124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (1.5%)
patch tree reduce : 2.15 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 431.45 us (95.1%)
LB move op cnt : 0
LB apply : 3.71 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.3%)
Info: cfl dt = 0.0017007278161867427 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3448e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.70449942950481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09670550943542472, dt = 0.0017007278161867427
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 337.39 us (94.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.5%)
Info: cfl dt = 0.0016991372917322643 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4567e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.63600706084048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09840623725161146, dt = 0.0015937627483885441
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 351.14 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (63.8%)
Info: cfl dt = 0.0016994818557473485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3869e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.406253272529725 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 61.165566171 (s) [Godunov][rank=0]
amr::Godunov: t = 0.1, dt = 0.0016994818557473485
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (1.6%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 408.06 us (94.9%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (65.9%)
Info: cfl dt = 0.0017012392646695942 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3970e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.04875640666006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10169948185574736, dt = 0.0017012392646695942
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.7%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 330.64 us (94.0%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.5%)
Info: cfl dt = 0.001701195072331194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5526e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.54520944386471 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10340072112041696, dt = 0.001599278879583041
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 315.38 us (94.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.2%)
Info: cfl dt = 0.0016978714089208506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9935e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.0835469819304 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 61.700930885000005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.105, dt = 0.0016978714089208506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.5%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 416.44 us (95.0%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (64.6%)
Info: cfl dt = 0.0016967007699610606 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1141e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.371332430646426 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10669787140892084, dt = 0.0016967007699610606
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 307.68 us (94.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.3%)
Info: cfl dt = 0.0016970844499853146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4925e+05 | 65536 | 2 | 1.876e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.55118118369265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1083945721788819, dt = 0.0016054278211180967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.8%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 315.02 us (94.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.5%)
Info: cfl dt = 0.00169853915732137 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2441e+05 | 65536 | 2 | 2.020e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.609376768475 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 62.32638209 (s) [Godunov][rank=0]
amr::Godunov: t = 0.11, dt = 0.00169853915732137
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.68 us (1.8%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 415.68 us (94.9%)
LB move op cnt : 0
LB apply : 4.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (66.0%)
Info: cfl dt = 0.0016989453569191033 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0553e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.83728349664014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11169853915732136, dt = 0.0016989453569191033
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 307.52 us (94.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.4%)
Info: cfl dt = 0.001696184494156963 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3338e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.44526458238592 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11339748451424046, dt = 0.0016025154857595425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 308.05 us (94.0%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (65.0%)
Info: cfl dt = 0.0016953802919238523 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4322e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.01584096638425 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 62.859770543 (s) [Godunov][rank=0]
amr::Godunov: t = 0.115, dt = 0.0016953802919238523
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 374.82 us (94.9%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (69.5%)
Info: cfl dt = 0.00169570554285492 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3947e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.927693439828055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11669538029192386, dt = 0.00169570554285492
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 339.34 us (94.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (63.6%)
Info: cfl dt = 0.0016969481901767088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3748e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.74988261098514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11839108583477878, dt = 0.0016089141652212147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 341.62 us (94.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.9%)
Info: cfl dt = 0.0016975221595522643 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3842e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.74791527379871 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 63.382769200000006 (s) [Godunov][rank=0]
amr::Godunov: t = 0.12, dt = 0.0016975221595522643
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.6%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.2%)
LB compute : 408.86 us (95.1%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.2%)
Info: cfl dt = 0.0016952960980918424 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7511e+05 | 65536 | 2 | 1.747e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.97798404406676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12169752215955226, dt = 0.0016952960980918424
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 340.06 us (94.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.4%)
Info: cfl dt = 0.0016945680772727303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9129e+05 | 65536 | 2 | 1.675e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.439285552749226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1233928182576441, dt = 0.0016071817423558982
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.6%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 353.59 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.9%)
Info: cfl dt = 0.0016948007453538743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4148e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.97645095130826 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 63.948451822 (s) [Godunov][rank=0]
amr::Godunov: t = 0.125, dt = 0.0016948007453538743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (1.7%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 380.59 us (94.5%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (65.6%)
Info: cfl dt = 0.0016957359742253682 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3322e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.33159911707139 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12669480074535389, dt = 0.0016957359742253682
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 305.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.8%)
Info: cfl dt = 0.0016968869331740126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3656e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.665163240744654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12839053671957926, dt = 0.0016094632804207476
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 309.66 us (93.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (61.0%)
Info: cfl dt = 0.0016951992650365729 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4323e+05 | 65536 | 2 | 1.909e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.34530626801828 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 64.514866803 (s) [Godunov][rank=0]
amr::Godunov: t = 0.13, dt = 0.0016951992650365729
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (1.5%)
patch tree reduce : 2.01 us (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 455.09 us (95.3%)
LB move op cnt : 0
LB apply : 3.86 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (66.4%)
Info: cfl dt = 0.0016945370196177426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3959e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.93420264443079 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1316951992650366, dt = 0.0016945370196177426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.8%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 325.49 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (60.0%)
Info: cfl dt = 0.0016946465597527055 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2860e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.89553976356535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13338973628465434, dt = 0.0016102637153456723
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 284.86 us (93.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.0%)
Info: cfl dt = 0.0016953036984696892 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8917e+05 | 65536 | 2 | 1.684e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.42383501286982 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 65.055986168 (s) [Godunov][rank=0]
amr::Godunov: t = 0.135, dt = 0.0016953036984696892
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (2.0%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 351.08 us (94.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (67.7%)
Info: cfl dt = 0.0016964228390942864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4766e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.68845507694252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1366953036984697, dt = 0.0016964228390942864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.7%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 284.97 us (93.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.4%)
Info: cfl dt = 0.0016957146377222666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4362e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.33953090826182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13839172653756399, dt = 0.0016082734624360273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 277.53 us (93.3%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (61.8%)
Info: cfl dt = 0.0016951690780678736 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4224e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.06958470940171 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 65.57079243300001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.14, dt = 0.0016951690780678736
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.60 us (2.0%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 361.89 us (93.9%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (63.6%)
Info: cfl dt = 0.001695176328347805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4194e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.152798120897536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1416951690780679, dt = 0.001695176328347805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 319.92 us (94.4%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.5%)
Info: cfl dt = 0.0016956366066382695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9615e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.88911334549248 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1433903454064157, dt = 0.001609654593584281
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 290.88 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (60.4%)
Info: cfl dt = 0.0016964035172934838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5158e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.929342813222256 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 66.105019289 (s) [Godunov][rank=0]
amr::Godunov: t = 0.145, dt = 0.0016964035172934838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.85 us (2.1%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 351.75 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (65.9%)
Info: cfl dt = 0.0016962833209502445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4190e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.17886614337036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14669640351729346, dt = 0.0016962833209502445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 299.23 us (87.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.8%)
Info: cfl dt = 0.0016957094211130324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3076e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.13795693590338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1483926868382437, dt = 0.001607313161756302
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 310.16 us (94.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.6%)
Info: cfl dt = 0.0016955909768465102 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9658e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.01538772850226 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 66.65165883200001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.15, dt = 0.0016955909768465102
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (1.8%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 386.45 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.9%)
Info: cfl dt = 0.0016958011293639866 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3365e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.390874366528195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1516955909768465, dt = 0.0016958011293639866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 286.96 us (93.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.9%)
Info: cfl dt = 0.001696305840548237 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3512e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.532934794909124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1533913921062105, dt = 0.0016086078937894988
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.7%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 281.53 us (93.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (59.7%)
Info: cfl dt = 0.0016970209331591069 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4572e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.385365740217054 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 67.17591444700001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.155, dt = 0.0016970209331591069
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (1.6%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 413.80 us (95.1%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (65.2%)
Info: cfl dt = 0.0016964320243581328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3967e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.98629443843189 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1566970209331591, dt = 0.0016964320243581328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 308.07 us (94.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.1%)
Info: cfl dt = 0.001696190150736349 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3167e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.22620799642481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15839345295751722, dt = 0.001606547042482781
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 332.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (63.7%)
Info: cfl dt = 0.0016962301890475688 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2844e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.80966076167069 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 67.706160993 (s) [Godunov][rank=0]
amr::Godunov: t = 0.16, dt = 0.0016962301890475688
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (1.8%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 352.48 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (61.5%)
Info: cfl dt = 0.0016964920557647899 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2455e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.5584647255434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16169623018904758, dt = 0.0016964920557647899
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 316.49 us (94.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.1%)
Info: cfl dt = 0.0016969490882670483 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3059e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.12746921280011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16339272224481238, dt = 0.001607277755187625
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 286.59 us (93.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.4%)
Info: cfl dt = 0.0016975473218523948 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2244e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.29780727137754 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 68.24168683900001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.165, dt = 0.0016975473218523948
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (1.6%)
patch tree reduce : 1.83 us (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 407.93 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (70.4%)
Info: cfl dt = 0.001697236443700041 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3205e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.28855159422036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1666975473218524, dt = 0.001697236443700041
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 316.72 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.4%)
Info: cfl dt = 0.0016971467705376073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4328e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.32813440121461 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16839478376555245, dt = 0.0016052162344475651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.4%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 333.28 us (94.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.5%)
Info: cfl dt = 0.0016972325256441438 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9634e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.947874199758004 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 68.781490436 (s) [Godunov][rank=0]
amr::Godunov: t = 0.17, dt = 0.0016972325256441438
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 337.03 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.3%)
Info: cfl dt = 0.0016974644914854499 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8724e+05 | 65536 | 2 | 1.692e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.10326748315917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17169723252564414, dt = 0.0016974644914854499
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 334.22 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.9%)
Info: cfl dt = 0.0016978346953375478 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4444e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.44120912114133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1733946970171296, dt = 0.0016053029828704268
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 311.32 us (93.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (64.0%)
Info: cfl dt = 0.0016980068029526683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3594e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.441907744831454 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 69.32126405800001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.17500000000000002, dt = 0.0016980068029526683
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (2.0%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 365.09 us (94.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (58.2%)
Info: cfl dt = 0.0016978120240687166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3847e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.898137995614995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1766980068029527, dt = 0.0016978120240687166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.3%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 357.19 us (94.8%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.6%)
Info: cfl dt = 0.0016977632304538406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3077e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.17496030714044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1783958188270214, dt = 0.001604181172978586
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 322.14 us (94.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.0%)
Info: cfl dt = 0.0016978218078181734 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3890e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.676031963960654 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 69.84883456300001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.18, dt = 0.0016978218078181734
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (1.7%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 391.59 us (94.8%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.3%)
Info: cfl dt = 0.0016979854885523097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6066e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.96297636509541 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18169782180781816, dt = 0.0016979854885523097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 289.46 us (93.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.3%)
Info: cfl dt = 0.0016982525146471265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3594e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.66113732283232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18339580729637048, dt = 0.00160419270362952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.7%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 326.54 us (94.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.3%)
Info: cfl dt = 0.001698555643860214 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2456e+05 | 65536 | 2 | 2.019e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.600277085220142 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 70.418461893 (s) [Godunov][rank=0]
amr::Godunov: t = 0.185, dt = 0.001698555643860214
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (1.8%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 373.77 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.2%)
Info: cfl dt = 0.0016984122661449941 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5310e+05 | 65536 | 2 | 1.856e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.945588279211414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1866985556438602, dt = 0.0016984122661449941
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 316.56 us (94.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.2%)
Info: cfl dt = 0.001698363230323143 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3850e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.91061593136282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1883969679100052, dt = 0.0016030320899947936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 319.56 us (94.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.0%)
Info: cfl dt = 0.0016983943924654792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4194e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.9156308168838 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 70.977344744 (s) [Godunov][rank=0]
amr::Godunov: t = 0.19, dt = 0.0016983943924654792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (1.9%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 346.73 us (94.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.0%)
Info: cfl dt = 0.0016985000357384527 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2974e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.09281850765196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19169839439246547, dt = 0.0016985000357384527
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 314.18 us (94.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.2%)
Info: cfl dt = 0.0016986917837430084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3293e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.39278763861572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19339689442820393, dt = 0.0016031055717960763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 289.94 us (93.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (61.2%)
Info: cfl dt = 0.0016989557237630849 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3303e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.13302754783695 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 71.50528233700001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.195, dt = 0.0016989557237630849
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 338.64 us (94.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.2%)
Info: cfl dt = 0.0016992348400731367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3202e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.318505014546034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19669895572376309, dt = 0.0016992348400731367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 291.55 us (93.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.1%)
Info: cfl dt = 0.0016991776895348512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5722e+05 | 65536 | 2 | 1.835e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.34326482124174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19839819056383623, dt = 0.0016018094361637814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 310.41 us (93.9%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.4%)
Info: cfl dt = 0.001699176503537386 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7655e+05 | 65536 | 2 | 1.740e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.13224555791037 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 72.08825095 (s) [Godunov][rank=0]
running minmod hllc
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.25 ms [DataInserterUtility][rank=0]
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 : 4.03 us (57.4%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (0.4%)
patch tree reduce : 1.09 us (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 352.84 us (96.9%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.01 us (2.9%)
patch tree reduce : 2.41 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 315.24 us (92.4%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (65.7%)
Info: cfl dt = 0.0024247161751115103 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1590e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.0024247161751115103
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 320.97 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.7%)
Info: cfl dt = 0.0023171614643384517 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0716e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.231320864621985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024247161751115103, dt = 0.0023171614643384517
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 284.74 us (93.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.5%)
Info: cfl dt = 0.002075017695014586 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1863e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.28563259426203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004741877639449962, dt = 0.002075017695014586
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 296.00 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.9%)
Info: cfl dt = 0.0019971385650064655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9873e+05 | 65536 | 2 | 1.644e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.449204221656665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006816895334464548, dt = 0.0019971385650064655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 328.10 us (94.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.6%)
Info: cfl dt = 0.001964895602302102 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0609e+05 | 65536 | 2 | 2.141e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.58020802396614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008814033899471014, dt = 0.001964895602302102
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.4%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 352.43 us (94.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.3%)
Info: cfl dt = 0.001953632755420684 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8441e+05 | 65536 | 2 | 1.705e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.491315154042624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010778929501773116, dt = 0.001953632755420684
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 358.61 us (94.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.4%)
Info: cfl dt = 0.001953408169055018 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3275e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.44083981299216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0127325622571938, dt = 0.001953408169055018
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 287.55 us (93.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.2%)
Info: cfl dt = 0.0019206023649325436 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2008e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.075766939714995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014685970426248819, dt = 0.0019206023649325436
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 312.19 us (94.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (60.5%)
Info: cfl dt = 0.0018848741424326908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2847e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.204572798282086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016606572791181363, dt = 0.0018848741424326908
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 320.50 us (94.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.2%)
Info: cfl dt = 0.001868973738870141 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3390e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.92565630089005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018491446933614056, dt = 0.001868973738870141
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.7%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 295.72 us (93.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (63.9%)
Info: cfl dt = 0.0018606402342983626 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2387e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.5166890369408 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020360420672484197, dt = 0.0018606402342983626
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 294.36 us (93.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (61.5%)
Info: cfl dt = 0.0018595274236405425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3759e+05 | 65536 | 2 | 1.941e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.50451945865164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02222106090678256, dt = 0.0018595274236405425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 327.63 us (94.3%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.3%)
Info: cfl dt = 0.0018634342013967191 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0066e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.92641059186659 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024080588330423102, dt = 0.0018634342013967191
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 319.69 us (94.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.1%)
Info: cfl dt = 0.0018470249392936802 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3437e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.46280989700098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02594402253181982, dt = 0.0018470249392936802
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 301.79 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.6%)
Info: cfl dt = 0.0018380986030018343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3196e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.82658285920648 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0277910474711135, dt = 0.0018380986030018343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 289.77 us (93.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.3%)
Info: cfl dt = 0.0018364522651864858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3587e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.00983606980446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029629146074115337, dt = 0.0018364522651864858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 314.94 us (94.2%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.1%)
Info: cfl dt = 0.0018308404082809989 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3559e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.94200742290116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03146559833930182, dt = 0.0018308404082809989
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.6%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 291.70 us (94.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (63.6%)
Info: cfl dt = 0.0018132058078483473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3841e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.09138944925288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03329643874758282, dt = 0.0018132058078483473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 288.61 us (93.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.3%)
Info: cfl dt = 0.0018069989569941447 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2751e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.580597444106765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03510964455543117, dt = 0.0018069989569941447
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 303.24 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (61.5%)
Info: cfl dt = 0.001807879734518125 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3992e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.66672230406011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036916643512425316, dt = 0.001807879734518125
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 275.42 us (93.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.2%)
Info: cfl dt = 0.0018048658370763166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3677e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.37527489156509 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03872452324694344, dt = 0.0018048658370763166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (2.1%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 275.51 us (93.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.3%)
Info: cfl dt = 0.0017869421115257107 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3638e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.2640901965176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.040529389084019755, dt = 0.0017869421115257107
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.4%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 343.43 us (94.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.0%)
Info: cfl dt = 0.0017801824804279472 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3942e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.13348257613259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04231633119554547, dt = 0.0017801824804279472
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 290.77 us (94.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.0%)
Info: cfl dt = 0.001780351072519294 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8670e+05 | 65536 | 2 | 1.695e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.8148400264066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04409651367597341, dt = 0.001780351072519294
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 285.65 us (93.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.6%)
Info: cfl dt = 0.001785022141096262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6529e+05 | 65536 | 2 | 1.794e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.72445627232869 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04587686474849271, dt = 0.001785022141096262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 328.19 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.2%)
Info: cfl dt = 0.0017684075018984259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8592e+05 | 65536 | 2 | 1.698e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.841390104339794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04766188688958897, dt = 0.0017684075018984259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 288.00 us (93.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.4%)
Info: cfl dt = 0.00175868551240217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5422e+05 | 65536 | 2 | 1.850e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.409467110157586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0494302943914874, dt = 0.00175868551240217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 286.41 us (93.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.4%)
Info: cfl dt = 0.0017565307361034092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1253e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.8537801716048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05118897990388957, dt = 0.0017565307361034092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 268.90 us (93.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (61.0%)
Info: cfl dt = 0.0017594862686143875 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2014e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.539063368442015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.052945510639992976, dt = 0.0017594862686143875
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 326.03 us (94.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 0.0017553973403803857 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1476e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.08711117747144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05470499690860736, dt = 0.0017553973403803857
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.9%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 299.68 us (93.3%)
LB move op cnt : 0
LB apply : 4.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.1%)
Info: cfl dt = 0.0017432187244815975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3039e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.50091516694905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.056460394248987744, dt = 0.0017432187244815975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 316.31 us (94.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.8%)
Info: cfl dt = 0.0017385942621927087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3529e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.68197790649986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05820361297346934, dt = 0.0017385942621927087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 285.78 us (84.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (70.0%)
Info: cfl dt = 0.0017391195338796969 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3621e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.65935514642757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05994220723566205, dt = 0.0017391195338796969
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 290.85 us (93.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.3%)
Info: cfl dt = 0.001743214837635062 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3438e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.497031857559485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.061681326769541744, dt = 0.001743214837635062
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 299.21 us (94.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.9%)
Info: cfl dt = 0.0017334290485509615 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3535e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.687677155102136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06342454160717681, dt = 0.0017334290485509615
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 287.93 us (93.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.8%)
Info: cfl dt = 0.001726361888794154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9097e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.227890702773486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06515797065572777, dt = 0.001726361888794154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 290.00 us (93.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.5%)
Info: cfl dt = 0.0017246230917072956 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2516e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.319193392669796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06688433254452193, dt = 0.0017246230917072956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 362.95 us (94.8%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (60.8%)
Info: cfl dt = 0.001726611284768283 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3332e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.050692943632626 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06860895563622922, dt = 0.001726611284768283
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.8%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 326.94 us (94.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.9%)
Info: cfl dt = 0.0017290879300486015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3458e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.218132392708945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0703355669209975, dt = 0.0017290879300486015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.7%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 284.42 us (93.7%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.2%)
Info: cfl dt = 0.0017191280394554377 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3141e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.97624317116246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0720646548510461, dt = 0.0017191280394554377
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.7%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 288.99 us (93.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.6%)
Info: cfl dt = 0.0017151471775685963 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2949e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.55879373719865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07378378289050154, dt = 0.0017151471775685963
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.4%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 333.21 us (94.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.0%)
Info: cfl dt = 0.0017149228309445426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2804e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.32852188152808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07549893006807014, dt = 0.0017149228309445426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 316.63 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.3%)
Info: cfl dt = 0.001717371481878813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3179e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.67617352203601 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07721385289901468, dt = 0.001717371481878813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.5%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 321.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.9%)
Info: cfl dt = 0.0017167048819835972 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4258e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.751846626013815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07893122438089349, dt = 0.0017167048819835972
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 331.44 us (94.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.8%)
Info: cfl dt = 0.0017101068125198087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4743e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.19318354759551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08064792926287709, dt = 0.0017101068125198087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 332.48 us (94.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.8%)
Info: cfl dt = 0.0017078381017851128 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3513e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.87552077974648 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08235803607539689, dt = 0.0017078381017851128
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 328.95 us (94.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.1%)
Info: cfl dt = 0.0017083438162299757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4731e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.96416769178048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.084065874177182, dt = 0.0017083438162299757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 302.68 us (93.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (61.7%)
Info: cfl dt = 0.0017108556155540943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1702e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.13431418357952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08577421799341198, dt = 0.0017108556155540943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.9%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 267.02 us (93.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.0%)
Info: cfl dt = 0.0017086170733692776 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1037e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.56677279160912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08748507360896607, dt = 0.0017086170733692776
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.9%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 276.19 us (93.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.1%)
Info: cfl dt = 0.001704148632575851 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0821e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.31317563917019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08919369068233535, dt = 0.001704148632575851
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 311.47 us (94.3%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.8%)
Info: cfl dt = 0.0017028566622987406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0997e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.37814073370638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0908978393149112, dt = 0.0017028566622987406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.7%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 281.43 us (93.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.1%)
Info: cfl dt = 0.001703642191318931 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2462e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.719200620509994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09260069597720995, dt = 0.001703642191318931
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.9%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 308.47 us (93.7%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.5%)
Info: cfl dt = 0.001705962546690105 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2520e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.79145304750095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09430433816852887, dt = 0.001705962546690105
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 308.09 us (93.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.8%)
Info: cfl dt = 0.0017034728706475893 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2852e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.15677550441225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09601030071521897, dt = 0.0017034728706475893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 283.21 us (93.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (61.6%)
Info: cfl dt = 0.0017003923869213546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2864e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.110157948616155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09771377358586657, dt = 0.0017003923869213546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 312.26 us (93.9%)
LB move op cnt : 0
LB apply : 4.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.9%)
Info: cfl dt = 0.0016996820181639789 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3126e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.28197583637129 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09941416597278792, dt = 0.0016996820181639789
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.8%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 289.38 us (93.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.6%)
Info: cfl dt = 0.001700546949989772 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7711e+05 | 65536 | 2 | 1.738e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.209816776245056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1011138479909519, dt = 0.001700546949989772
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.8%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 270.24 us (93.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.6%)
Info: cfl dt = 0.0017026162574477754 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4332e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.41260658186008 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10281439494094168, dt = 0.0017026162574477754
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 277.21 us (93.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (58.4%)
Info: cfl dt = 0.0017002768026909297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3938e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.09390669334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10451701119838945, dt = 0.0017002768026909297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 322.49 us (94.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.6%)
Info: cfl dt = 0.0016981265706875353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2942e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.107777540654844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10621728800108038, dt = 0.0016981265706875353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 292.19 us (94.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.9%)
Info: cfl dt = 0.001697736282701456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1618e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.82136097602058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10791541457176791, dt = 0.001697736282701456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 295.06 us (93.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (59.7%)
Info: cfl dt = 0.0016985555549894058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3697e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.75175230467054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10961315085446936, dt = 0.0016985555549894058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.8%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 791.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 269.68 us (93.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.3%)
Info: cfl dt = 0.0017003248485142558 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8409e+05 | 65536 | 2 | 1.706e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.8373527941341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11131170640945877, dt = 0.0017003248485142558
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.8%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 271.96 us (93.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.5%)
Info: cfl dt = 0.001698461086538937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4257e+05 | 65536 | 2 | 1.913e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.996217131762553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11301203125797303, dt = 0.001698461086538937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (2.0%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 262.95 us (93.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.2%)
Info: cfl dt = 0.0016969265772841695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2146e+05 | 65536 | 2 | 2.039e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.991924036161652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11471049234451197, dt = 0.0016969265772841695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 316.18 us (94.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.6%)
Info: cfl dt = 0.0016966973860188487 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3279e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.34227141136271 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11640741892179614, dt = 0.0016966973860188487
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (2.0%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 276.59 us (93.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.0%)
Info: cfl dt = 0.0016974085466070425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3663e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.374353048811535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11810411630781499, dt = 0.0016974085466070425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 296.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.0%)
Info: cfl dt = 0.0016988582241135434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4962e+05 | 65536 | 2 | 1.875e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.598794367432255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11980152485442204, dt = 0.0016988582241135434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 332.67 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (65.4%)
Info: cfl dt = 0.0016977464607493596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6430e+05 | 65536 | 2 | 1.799e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.996553094239985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12150038307853558, dt = 0.0016977464607493596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 302.87 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 0.0016966110639823064 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9223e+05 | 65536 | 2 | 1.671e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.579053839930346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12319812953928494, dt = 0.0016966110639823064
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.8%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 275.32 us (93.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.9%)
Info: cfl dt = 0.0016964559446988026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2596e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.69873799787194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12489474060326725, dt = 0.0016964559446988026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 300.36 us (93.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.8%)
Info: cfl dt = 0.001697040168812501 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3900e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.90974506041012 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12659119654796605, dt = 0.001697040168812501
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.8%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 271.23 us (93.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.4%)
Info: cfl dt = 0.0016981873838016466 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2084e+05 | 65536 | 2 | 2.043e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.908776024136433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12828823671677855, dt = 0.0016981873838016466
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.4%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 359.04 us (94.8%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.4%)
Info: cfl dt = 0.00169772861864138 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8394e+05 | 65536 | 2 | 1.707e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.81540847252689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1299864241005802, dt = 0.00169772861864138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 314.66 us (93.9%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.1%)
Info: cfl dt = 0.0016968477262804024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9535e+05 | 65536 | 2 | 1.658e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.86985034158938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13168415271922157, dt = 0.0016968477262804024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.5%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 310.66 us (94.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.4%)
Info: cfl dt = 0.0016967287147737486 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4426e+05 | 65536 | 2 | 1.904e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.088530218050124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13338100044550197, dt = 0.0016967287147737486
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (1.9%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 317.93 us (93.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (66.6%)
Info: cfl dt = 0.0016971546656561034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4002e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.0120356400994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13507772916027572, dt = 0.0016971546656561034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 324.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.5%)
Info: cfl dt = 0.001698018200167691 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1198e+05 | 65536 | 2 | 2.101e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.084819930006912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1367748838259318, dt = 0.001698018200167691
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.6%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 353.18 us (94.8%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.4%)
Info: cfl dt = 0.0016979543922550978 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1746e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.9389080421353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1384729020260995, dt = 0.0016979543922550978
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 319.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.7%)
Info: cfl dt = 0.0016972359111011633 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2300e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.45414498857228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14017085641835458, dt = 0.0016972359111011633
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 293.41 us (93.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (60.5%)
Info: cfl dt = 0.001697081404857013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2358e+05 | 65536 | 2 | 2.025e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.167961610448724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14186809232945574, dt = 0.001697081404857013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.4%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 338.94 us (94.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.6%)
Info: cfl dt = 0.0016973449360672378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1701e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.87538729706825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14356517373431277, dt = 0.0016973449360672378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 300.15 us (93.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.1%)
Info: cfl dt = 0.001697943269561946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8275e+05 | 65536 | 2 | 1.712e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.686397887791635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14526251867038, dt = 0.001697943269561946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (2.1%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 267.28 us (93.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (59.6%)
Info: cfl dt = 0.001698396870397288 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7653e+05 | 65536 | 2 | 1.741e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.119443394201724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14696046193994194, dt = 0.001698396870397288
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 326.55 us (94.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (62.2%)
Info: cfl dt = 0.001697755879876424 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4417e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.43898376158365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14865885881033924, dt = 0.001697755879876424
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 321.93 us (94.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (61.5%)
Info: cfl dt = 0.0016975474753640188 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3181e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.271185971382565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15035661469021566, dt = 0.0016975474753640188
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 302.07 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.7%)
Info: cfl dt = 0.0016976726358584218 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8226e+05 | 65536 | 2 | 1.714e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.64534920126535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15205416216557968, dt = 0.0016976726358584218
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 327.48 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.9%)
Info: cfl dt = 0.0016980593347007712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0734e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.98727218961008 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15375183480143811, dt = 0.0016980593347007712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 271.56 us (93.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.6%)
Info: cfl dt = 0.0016986681623133862 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.6702e+05 | 65536 | 2 | 2.454e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.906626860547068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15544989413613888, dt = 0.0016986681623133862
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.4%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 340.02 us (94.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.7%)
Info: cfl dt = 0.001698491568394623 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1972e+05 | 65536 | 2 | 2.050e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.833315494088875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15714856229845228, dt = 0.001698491568394623
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 380.12 us (95.0%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (62.9%)
Info: cfl dt = 0.0016982345701905392 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3272e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.37292768043849 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15884705386684692, dt = 0.0016982345701905392
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 309.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.1%)
Info: cfl dt = 0.0016982273186220678 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5826e+05 | 65536 | 2 | 1.829e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.4206472701057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16054528843703744, dt = 0.0016982273186220678
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 312.46 us (94.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (61.0%)
Info: cfl dt = 0.0016984266379888343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4769e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.76347711436119 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1622435157556595, dt = 0.0016984266379888343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 298.06 us (94.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.9%)
Info: cfl dt = 0.0016988025019538699 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1718e+05 | 65536 | 2 | 2.066e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.591602931464642 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16394194239364834, dt = 0.0016988025019538699
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 360.23 us (94.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (61.7%)
Info: cfl dt = 0.0016993446786721235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2427e+05 | 65536 | 2 | 2.021e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.260560270374196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1656407448956022, dt = 0.0016993446786721235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 308.59 us (94.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (62.3%)
Info: cfl dt = 0.0016991499464887646 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9982e+05 | 65536 | 2 | 2.186e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.98767227219872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16734008957427432, dt = 0.0016991499464887646
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 345.37 us (94.9%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.0%)
Info: cfl dt = 0.0016990574943381979 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1456e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.69362047668297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16903923952076308, dt = 0.0016990574943381979
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.8%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 348.04 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (64.4%)
Info: cfl dt = 0.0016991220720931736 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2604e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.763208624623424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17073829701510126, dt = 0.0016991220720931736
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 335.78 us (94.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.5%)
Info: cfl dt = 0.001699317468632058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2885e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.02720442140852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17243741908719443, dt = 0.001699317468632058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 296.98 us (93.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.2%)
Info: cfl dt = 0.0016996449187329289 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1505e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.74347588395547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17413673655582648, dt = 0.0016996449187329289
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 313.91 us (94.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.9%)
Info: cfl dt = 0.0016997294942707286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3012e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.15831237946449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1758363814745594, dt = 0.0016997294942707286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 317.01 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.5%)
Info: cfl dt = 0.0016995643511617984 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3164e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.30145026097579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17753611096883012, dt = 0.0016995643511617984
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 296.18 us (93.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (59.8%)
Info: cfl dt = 0.0016995146248371955 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3136e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.27182196623187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17923567531999193, dt = 0.0016995146248371955
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 294.60 us (93.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.9%)
Info: cfl dt = 0.0016995686921680029 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2344e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.530862403770044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18093518994482913, dt = 0.0016995686921680029
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 315.87 us (94.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.4%)
Info: cfl dt = 0.0016997202499088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7238e+05 | 65536 | 2 | 1.760e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.76555267772554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18263475863699713, dt = 0.0016997202499088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 275.34 us (93.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.9%)
Info: cfl dt = 0.0016999668711730127 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7667e+05 | 65536 | 2 | 1.740e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.16913297469596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18433447888690593, dt = 0.0016999668711730127
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 326.00 us (94.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.1%)
Info: cfl dt = 0.0017002080226618502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1782e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.01693697816799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18603444575807895, dt = 0.0017002080226618502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.9%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 272.23 us (93.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.8%)
Info: cfl dt = 0.00170009730545073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1996e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.22223620482209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1877346537807408, dt = 0.00170009730545073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 274.24 us (93.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.0%)
Info: cfl dt = 0.0017000684276781116 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9599e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.981556483974245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18943475108619154, dt = 0.0017000684276781116
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.9%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 275.69 us (93.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.6%)
Info: cfl dt = 0.0017001081816105067 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2903e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.066057757199964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19113481951386965, dt = 0.0017001081816105067
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 304.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.3%)
Info: cfl dt = 0.001700215680423498 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1856e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.08904843925237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19283492769548016, dt = 0.001700215680423498
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.9%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 294.45 us (93.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.5%)
Info: cfl dt = 0.001700394627228016 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2432e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.629625830513085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19453514337590366, dt = 0.001700394627228016
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 293.25 us (93.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (66.4%)
Info: cfl dt = 0.0017006626140353416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3547e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.67529194274887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19623553800313168, dt = 0.0017006626140353416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.4%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 367.06 us (95.1%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.5%)
Info: cfl dt = 0.0017006239404694168 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3013e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.18320610181331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19793620061716702, dt = 0.0017006239404694168
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.4%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 332.40 us (94.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (62.7%)
Info: cfl dt = 0.001700577395624883 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3099e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.26183811357935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19963682455763643, dt = 0.00036317544236358357
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.5%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 371.49 us (94.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.4%)
Info: cfl dt = 0.00170057499260955 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2749e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.528266554614063 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 91.225508992 (s) [Godunov][rank=0]
none_hll
{'none_hll': [{'rho': array([0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999942,
0.99999942, 0.99999942, 0.99999942, 0.99999778, 0.99999778,
0.99999778, 0.99999778, 0.99999202, 0.99999202, 0.99999202,
0.99999202, 0.99997316, 0.99997316, 0.99997316, 0.99997316,
0.99991602, 0.99991602, 0.99991602, 0.99991602, 0.9997563 ,
0.9997563 , 0.9997563 , 0.9997563 , 0.9993467 , 0.9993467 ,
0.9993467 , 0.9993467 , 0.99838817, 0.99838817, 0.99838817,
0.99838817, 0.99635204, 0.99635204, 0.99635204, 0.99635204,
0.99244104, 0.99244104, 0.99244104, 0.99244104, 0.9856563 ,
0.9856563 , 0.9856563 , 0.9856563 , 0.97499773, 0.97499773,
0.97499773, 0.97499773, 0.95972818, 0.95972818, 0.95972818,
0.95972818, 0.93956535, 0.93956535, 0.93956535, 0.93956535,
0.91470956, 0.91470956, 0.91470956, 0.91470956, 0.88572617,
0.88572617, 0.88572617, 0.88572617, 0.85336749, 0.85336749,
0.85336749, 0.85336749, 0.8183986 , 0.8183986 , 0.8183986 ,
0.8183986 , 0.78138933, 0.78138933, 0.78138933, 0.78138933,
0.74190427, 0.74190427, 0.74190427, 0.74190427, 0.68069561,
0.68069561, 0.68069561, 0.68069561, 0.64567578, 0.64567578,
0.64567578, 0.64567578, 0.62072799, 0.62072799, 0.62072799,
0.62072799, 0.60234245, 0.60234245, 0.60234245, 0.60234245,
0.58959115, 0.58959115, 0.58959115, 0.58959115, 0.58159638,
0.58159638, 0.58159638, 0.58159638, 0.57703206, 0.57703206,
0.57703206, 0.57703206, 0.5742342 , 0.5742342 , 0.5742342 ,
0.5742342 , 0.57154338, 0.57154338, 0.57154338, 0.57154338,
0.56752869, 0.56752869, 0.56752869, 0.56752869, 0.56100982,
0.56100982, 0.56100982, 0.56100982, 0.55104138, 0.55104138,
0.55104138, 0.55104138, 0.5369988 , 0.5369988 , 0.5369988 ,
0.5369988 , 0.51874878, 0.51874878, 0.51874878, 0.51874878,
0.49679082, 0.49679082, 0.49679082, 0.49679082, 0.4722612 ,
0.4722612 , 0.4722612 , 0.4722612 , 0.44675753, 0.44675753,
0.44675753, 0.44675753, 0.42202434, 0.42202434, 0.42202434,
0.42202434, 0.39959589, 0.39959589, 0.39959589, 0.39959589,
0.38049936, 0.38049936, 0.38049936, 0.38049936, 0.36508019,
0.36508019, 0.36508019, 0.36508019, 0.35299013, 0.35299013,
0.35299013, 0.35299013, 0.34303431, 0.34303431, 0.34303431,
0.34303431, 0.33311509, 0.33311509, 0.33311509, 0.33311509,
0.32011436, 0.32011436, 0.32011436, 0.32011436, 0.29976301,
0.29976301, 0.29976301, 0.29976301, 0.2678043 , 0.2678043 ,
0.2678043 , 0.2678043 , 0.22419984, 0.22419984, 0.22419984,
0.22419984, 0.17832614, 0.17832614, 0.17832614, 0.17832614,
0.14528472, 0.14528472, 0.14528472, 0.14528472, 0.13048361,
0.13048361, 0.13048361, 0.13048361, 0.12620226, 0.12620226,
0.12620226, 0.12620226, 0.12524229, 0.12524229, 0.12524229,
0.12524229, 0.12504738, 0.12504738, 0.12504738, 0.12504738,
0.12500914, 0.12500914, 0.12500914, 0.12500914, 0.12500174,
0.12500174, 0.12500174, 0.12500174, 0.12500033, 0.12500033,
0.12500033, 0.12500033, 0.12500006, 0.12500006, 0.12500006,
0.12500006, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000167e-01, 7.50000167e-01, 7.50000167e-01, 7.50000167e-01,
7.50000683e-01, 7.50000683e-01, 7.50000683e-01, 7.50000683e-01,
7.50002625e-01, 7.50002625e-01, 7.50002625e-01, 7.50002625e-01,
7.50009447e-01, 7.50009447e-01, 7.50009447e-01, 7.50009447e-01,
7.50031758e-01, 7.50031758e-01, 7.50031758e-01, 7.50031758e-01,
7.50099366e-01, 7.50099366e-01, 7.50099366e-01, 7.50099366e-01,
7.50288337e-01, 7.50288337e-01, 7.50288337e-01, 7.50288337e-01,
7.50772988e-01, 7.50772988e-01, 7.50772988e-01, 7.50772988e-01,
7.51907376e-01, 7.51907376e-01, 7.51907376e-01, 7.51907376e-01,
7.54318699e-01, 7.54318699e-01, 7.54318699e-01, 7.54318699e-01,
7.58958083e-01, 7.58958083e-01, 7.58958083e-01, 7.58958083e-01,
7.67034111e-01, 7.67034111e-01, 7.67034111e-01, 7.67034111e-01,
7.79799756e-01, 7.79799756e-01, 7.79799756e-01, 7.79799756e-01,
7.98268450e-01, 7.98268450e-01, 7.98268450e-01, 7.98268450e-01,
8.23003448e-01, 8.23003448e-01, 8.23003448e-01, 8.23003448e-01,
8.54075522e-01, 8.54075522e-01, 8.54075522e-01, 8.54075522e-01,
8.91170219e-01, 8.91170219e-01, 8.91170219e-01, 8.91170219e-01,
9.33761223e-01, 9.33761223e-01, 9.33761223e-01, 9.33761223e-01,
9.81292612e-01, 9.81292612e-01, 9.81292612e-01, 9.81292612e-01,
1.03344347e+00, 1.03344347e+00, 1.03344347e+00, 1.03344347e+00,
1.09134872e+00, 1.09134872e+00, 1.09134872e+00, 1.09134872e+00,
1.18628677e+00, 1.18628677e+00, 1.18628677e+00, 1.18628677e+00,
1.24355729e+00, 1.24355729e+00, 1.24355729e+00, 1.24355729e+00,
1.28577631e+00, 1.28577631e+00, 1.28577631e+00, 1.28577631e+00,
1.31763060e+00, 1.31763060e+00, 1.31763060e+00, 1.31763060e+00,
1.33994607e+00, 1.33994607e+00, 1.33994607e+00, 1.33994607e+00,
1.35366900e+00, 1.35366900e+00, 1.35366900e+00, 1.35366900e+00,
1.36065228e+00, 1.36065228e+00, 1.36065228e+00, 1.36065228e+00,
1.36330406e+00, 1.36330406e+00, 1.36330406e+00, 1.36330406e+00,
1.36377802e+00, 1.36377802e+00, 1.36377802e+00, 1.36377802e+00,
1.36346214e+00, 1.36346214e+00, 1.36346214e+00, 1.36346214e+00,
1.36300839e+00, 1.36300839e+00, 1.36300839e+00, 1.36300839e+00,
1.36262613e+00, 1.36262613e+00, 1.36262613e+00, 1.36262613e+00,
1.36234022e+00, 1.36234022e+00, 1.36234022e+00, 1.36234022e+00,
1.36212440e+00, 1.36212440e+00, 1.36212440e+00, 1.36212440e+00,
1.36194570e+00, 1.36194570e+00, 1.36194570e+00, 1.36194570e+00,
1.36176870e+00, 1.36176870e+00, 1.36176870e+00, 1.36176870e+00,
1.36154433e+00, 1.36154433e+00, 1.36154433e+00, 1.36154433e+00,
1.36118699e+00, 1.36118699e+00, 1.36118699e+00, 1.36118699e+00,
1.36053007e+00, 1.36053007e+00, 1.36053007e+00, 1.36053007e+00,
1.35923531e+00, 1.35923531e+00, 1.35923531e+00, 1.35923531e+00,
1.35660636e+00, 1.35660636e+00, 1.35660636e+00, 1.35660636e+00,
1.35121276e+00, 1.35121276e+00, 1.35121276e+00, 1.35121276e+00,
1.34015167e+00, 1.34015167e+00, 1.34015167e+00, 1.34015167e+00,
1.31767491e+00, 1.31767491e+00, 1.31767491e+00, 1.31767491e+00,
1.27285288e+00, 1.27285288e+00, 1.27285288e+00, 1.27285288e+00,
1.18653029e+00, 1.18653029e+00, 1.18653029e+00, 1.18653029e+00,
1.03082789e+00, 1.03082789e+00, 1.03082789e+00, 1.03082789e+00,
7.82059657e-01, 7.82059657e-01, 7.82059657e-01, 7.82059657e-01,
4.62795165e-01, 4.62795165e-01, 4.62795165e-01, 4.62795165e-01,
1.85035678e-01, 1.85035678e-01, 1.85035678e-01, 1.85035678e-01,
4.91064989e-02, 4.91064989e-02, 4.91064989e-02, 4.91064989e-02,
1.04300500e-02, 1.04300500e-02, 1.04300500e-02, 1.04300500e-02,
2.06834747e-03, 2.06834747e-03, 2.06834747e-03, 2.06834747e-03,
4.02159204e-04, 4.02159204e-04, 4.02159204e-04, 4.02159204e-04,
7.74241901e-05, 7.74241901e-05, 7.74241901e-05, 7.74241901e-05,
1.47732907e-05, 1.47732907e-05, 1.47732907e-05, 1.47732907e-05,
2.79133251e-06, 2.79133251e-06, 2.79133251e-06, 2.79133251e-06,
5.21558611e-07, 5.21558611e-07, 5.21558611e-07, 5.21558611e-07,
9.62314180e-08, 9.62314180e-08, 9.62314180e-08, 9.62314180e-08,
1.75063215e-08, 1.75063215e-08, 1.75063215e-08, 1.75063215e-08,
3.13525934e-09, 3.13525934e-09, 3.13525934e-09, 3.13525934e-09,
5.51945459e-10, 5.51945459e-10, 5.51945459e-10, 5.51945459e-10,
9.53728523e-11, 9.53728523e-11, 9.53728523e-11]), 'P': array([0.9999998 , 0.9999998 , 0.9999998 , 0.9999998 , 0.99999919,
0.99999919, 0.99999919, 0.99999919, 0.99999689, 0.99999689,
0.99999689, 0.99999689, 0.99998882, 0.99998882, 0.99998882,
0.99998882, 0.99996242, 0.99996242, 0.99996242, 0.99996242,
0.99988243, 0.99988243, 0.99988243, 0.99988243, 0.99965888,
0.99965888, 0.99965888, 0.99965888, 0.99908571, 0.99908571,
0.99908571, 0.99908571, 0.99774515, 0.99774515, 0.99774515,
0.99774515, 0.99490042, 0.99490042, 0.99490042, 0.99490042,
0.98944596, 0.98944596, 0.98944596, 0.98944596, 0.98001064,
0.98001064, 0.98001064, 0.98001064, 0.96525111, 0.96525111,
0.96525111, 0.96525111, 0.94423203, 0.94423203, 0.94423203,
0.94423203, 0.91669404, 0.91669404, 0.91669404, 0.91669404,
0.88307786, 0.88307786, 0.88307786, 0.88307786, 0.84433672,
0.84433672, 0.84433672, 0.84433672, 0.80166635, 0.80166635,
0.80166635, 0.80166635, 0.75625152, 0.75625152, 0.75625152,
0.75625152, 0.70899078, 0.70899078, 0.70899078, 0.70899078,
0.65951543, 0.65951543, 0.65951543, 0.65951543, 0.58481452,
0.58481452, 0.58481452, 0.58481452, 0.5433517 , 0.5433517 ,
0.5433517 , 0.5433517 , 0.51442502, 0.51442502, 0.51442502,
0.51442502, 0.49348741, 0.49348741, 0.49348741, 0.49348741,
0.47926376, 0.47926376, 0.47926376, 0.47926376, 0.4706976 ,
0.4706976 , 0.4706976 , 0.4706976 , 0.46639387, 0.46639387,
0.46639387, 0.46639387, 0.46477369, 0.46477369, 0.46477369,
0.46477369, 0.46449143, 0.46449143, 0.46449143, 0.46449143,
0.46469357, 0.46469357, 0.46469357, 0.46469357, 0.46498071,
0.46498071, 0.46498071, 0.46498071, 0.46522404, 0.46522404,
0.46522404, 0.46522404, 0.46540634, 0.46540634, 0.46540634,
0.46540634, 0.46553884, 0.46553884, 0.46553884, 0.46553884,
0.46563123, 0.46563123, 0.46563123, 0.46563123, 0.46568376,
0.46568376, 0.46568376, 0.46568376, 0.46568347, 0.46568347,
0.46568347, 0.46568347, 0.46559619, 0.46559619, 0.46559619,
0.46559619, 0.46534764, 0.46534764, 0.46534764, 0.46534764,
0.46478249, 0.46478249, 0.46478249, 0.46478249, 0.46357931,
0.46357931, 0.46357931, 0.46357931, 0.46108012, 0.46108012,
0.46108012, 0.46108012, 0.4559703 , 0.4559703 , 0.4559703 ,
0.4559703 , 0.44573327, 0.44573327, 0.44573327, 0.44573327,
0.42592481, 0.42592481, 0.42592481, 0.42592481, 0.38995176,
0.38995176, 0.38995176, 0.38995176, 0.33171722, 0.33171722,
0.33171722, 0.33171722, 0.25409808, 0.25409808, 0.25409808,
0.25409808, 0.1771826 , 0.1771826 , 0.1771826 , 0.1771826 ,
0.126735 , 0.126735 , 0.126735 , 0.126735 , 0.10663112,
0.10663112, 0.10663112, 0.10663112, 0.10138491, 0.10138491,
0.10138491, 0.10138491, 0.1002738 , 0.1002738 , 0.1002738 ,
0.1002738 , 0.10005321, 0.10005321, 0.10005321, 0.10005321,
0.10001024, 0.10001024, 0.10001024, 0.10001024, 0.10000195,
0.10000195, 0.10000195, 0.10000195, 0.10000037, 0.10000037,
0.10000037, 0.10000037, 0.10000007, 0.10000007, 0.10000007,
0.10000007, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}], 'minmod_rusanov': [{'rho': array([0.99999871, 0.99999871, 0.99999871, 0.99999871, 0.99999661,
0.99999661, 0.99999661, 0.99999661, 0.99998966, 0.99998966,
0.99998966, 0.99998966, 0.99997049, 0.99997049, 0.99997049,
0.99997049, 0.99992058, 0.99992058, 0.99992058, 0.99992058,
0.99979749, 0.99979749, 0.99979749, 0.99979749, 0.99951129,
0.99951129, 0.99951129, 0.99951129, 0.99888599, 0.99888599,
0.99888599, 0.99888599, 0.9976064 , 0.9976064 , 0.9976064 ,
0.9976064 , 0.99516153, 0.99516153, 0.99516153, 0.99516153,
0.99081297, 0.99081297, 0.99081297, 0.99081297, 0.98362904,
0.98362904, 0.98362904, 0.98362904, 0.9726153 , 0.9726153 ,
0.9726153 , 0.9726153 , 0.95692666, 0.95692666, 0.95692666,
0.95692666, 0.93608458, 0.93608458, 0.93608458, 0.93608458,
0.91009674, 0.91009674, 0.91009674, 0.91009674, 0.87942017,
0.87942017, 0.87942017, 0.87942017, 0.84480243, 0.84480243,
0.84480243, 0.84480243, 0.80717174, 0.80717174, 0.80717174,
0.80717174, 0.76833323, 0.76833323, 0.76833323, 0.76833323,
0.7317958 , 0.7317958 , 0.7317958 , 0.7317958 , 0.69866292,
0.69866292, 0.69866292, 0.69866292, 0.66877266, 0.66877266,
0.66877266, 0.66877266, 0.64250712, 0.64250712, 0.64250712,
0.64250712, 0.62085534, 0.62085534, 0.62085534, 0.62085534,
0.60473075, 0.60473075, 0.60473075, 0.60473075, 0.59427383,
0.59427383, 0.59427383, 0.59427383, 0.58874167, 0.58874167,
0.58874167, 0.58874167, 0.58661231, 0.58661231, 0.58661231,
0.58661231, 0.58586097, 0.58586097, 0.58586097, 0.58586097,
0.58476947, 0.58476947, 0.58476947, 0.58476947, 0.58158321,
0.58158321, 0.58158321, 0.58158321, 0.57471343, 0.57471343,
0.57471343, 0.57471343, 0.56327381, 0.56327381, 0.56327381,
0.56327381, 0.54639053, 0.54639053, 0.54639053, 0.54639053,
0.52240684, 0.52240684, 0.52240684, 0.52240684, 0.48899281,
0.48899281, 0.48899281, 0.48899281, 0.4463966 , 0.4463966 ,
0.4463966 , 0.4463966 , 0.40411539, 0.40411539, 0.40411539,
0.40411539, 0.37294067, 0.37294067, 0.37294067, 0.37294067,
0.35182753, 0.35182753, 0.35182753, 0.35182753, 0.33895289,
0.33895289, 0.33895289, 0.33895289, 0.33221897, 0.33221897,
0.33221897, 0.33221897, 0.3294285 , 0.3294285 , 0.3294285 ,
0.3294285 , 0.32860094, 0.32860094, 0.32860094, 0.32860094,
0.32743466, 0.32743466, 0.32743466, 0.32743466, 0.31726988,
0.31726988, 0.31726988, 0.31726988, 0.27001934, 0.27001934,
0.27001934, 0.27001934, 0.17357126, 0.17357126, 0.17357126,
0.17357126, 0.13098555, 0.13098555, 0.13098555, 0.13098555,
0.12551968, 0.12551968, 0.12551968, 0.12551968, 0.12504027,
0.12504027, 0.12504027, 0.12504027, 0.12500303, 0.12500303,
0.12500303, 0.12500303, 0.12500023, 0.12500023, 0.12500023,
0.12500023, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50001531e-01, 7.50001531e-01, 7.50001531e-01, 7.50001531e-01,
7.50004007e-01, 7.50004007e-01, 7.50004007e-01, 7.50004007e-01,
7.50012237e-01, 7.50012237e-01, 7.50012237e-01, 7.50012237e-01,
7.50034917e-01, 7.50034917e-01, 7.50034917e-01, 7.50034917e-01,
7.50093968e-01, 7.50093968e-01, 7.50093968e-01, 7.50093968e-01,
7.50239615e-01, 7.50239615e-01, 7.50239615e-01, 7.50239615e-01,
7.50578307e-01, 7.50578307e-01, 7.50578307e-01, 7.50578307e-01,
7.51318450e-01, 7.51318450e-01, 7.51318450e-01, 7.51318450e-01,
7.52833953e-01, 7.52833953e-01, 7.52833953e-01, 7.52833953e-01,
7.55733191e-01, 7.55733191e-01, 7.55733191e-01, 7.55733191e-01,
7.60902495e-01, 7.60902495e-01, 7.60902495e-01, 7.60902495e-01,
7.69479672e-01, 7.69479672e-01, 7.69479672e-01, 7.69479672e-01,
7.82724068e-01, 7.82724068e-01, 7.82724068e-01, 7.82724068e-01,
8.01796569e-01, 8.01796569e-01, 8.01796569e-01, 8.01796569e-01,
8.27525186e-01, 8.27525186e-01, 8.27525186e-01, 8.27525186e-01,
8.60261011e-01, 8.60261011e-01, 8.60261011e-01, 8.60261011e-01,
8.99894497e-01, 8.99894497e-01, 8.99894497e-01, 8.99894497e-01,
9.46030525e-01, 9.46030525e-01, 9.46030525e-01, 9.46030525e-01,
9.98277447e-01, 9.98277447e-01, 9.98277447e-01, 9.98277447e-01,
1.05334834e+00, 1.05334834e+00, 1.05334834e+00, 1.05334834e+00,
1.10804511e+00, 1.10804511e+00, 1.10804511e+00, 1.10804511e+00,
1.15927234e+00, 1.15927234e+00, 1.15927234e+00, 1.15927234e+00,
1.20602476e+00, 1.20602476e+00, 1.20602476e+00, 1.20602476e+00,
1.24734222e+00, 1.24734222e+00, 1.24734222e+00, 1.24734222e+00,
1.28248845e+00, 1.28248845e+00, 1.28248845e+00, 1.28248845e+00,
1.31052537e+00, 1.31052537e+00, 1.31052537e+00, 1.31052537e+00,
1.33076480e+00, 1.33076480e+00, 1.33076480e+00, 1.33076480e+00,
1.34415463e+00, 1.34415463e+00, 1.34415463e+00, 1.34415463e+00,
1.35305806e+00, 1.35305806e+00, 1.35305806e+00, 1.35305806e+00,
1.35894065e+00, 1.35894065e+00, 1.35894065e+00, 1.35894065e+00,
1.36185203e+00, 1.36185203e+00, 1.36185203e+00, 1.36185203e+00,
1.36239557e+00, 1.36239557e+00, 1.36239557e+00, 1.36239557e+00,
1.36215707e+00, 1.36215707e+00, 1.36215707e+00, 1.36215707e+00,
1.36194266e+00, 1.36194266e+00, 1.36194266e+00, 1.36194266e+00,
1.36206937e+00, 1.36206937e+00, 1.36206937e+00, 1.36206937e+00,
1.36246607e+00, 1.36246607e+00, 1.36246607e+00, 1.36246607e+00,
1.36297688e+00, 1.36297688e+00, 1.36297688e+00, 1.36297688e+00,
1.36312897e+00, 1.36312897e+00, 1.36312897e+00, 1.36312897e+00,
1.36298101e+00, 1.36298101e+00, 1.36298101e+00, 1.36298101e+00,
1.36246641e+00, 1.36246641e+00, 1.36246641e+00, 1.36246641e+00,
1.36157437e+00, 1.36157437e+00, 1.36157437e+00, 1.36157437e+00,
1.36070130e+00, 1.36070130e+00, 1.36070130e+00, 1.36070130e+00,
1.36003987e+00, 1.36003987e+00, 1.36003987e+00, 1.36003987e+00,
1.35919056e+00, 1.35919056e+00, 1.35919056e+00, 1.35919056e+00,
1.35638143e+00, 1.35638143e+00, 1.35638143e+00, 1.35638143e+00,
1.34281703e+00, 1.34281703e+00, 1.34281703e+00, 1.34281703e+00,
1.28083198e+00, 1.28083198e+00, 1.28083198e+00, 1.28083198e+00,
1.03437248e+00, 1.03437248e+00, 1.03437248e+00, 1.03437248e+00,
4.39845204e-01, 4.39845204e-01, 4.39845204e-01, 4.39845204e-01,
5.63702448e-02, 5.63702448e-02, 5.63702448e-02, 5.63702448e-02,
4.56728510e-03, 4.56728510e-03, 4.56728510e-03, 4.56728510e-03,
3.44109702e-04, 3.44109702e-04, 3.44109702e-04, 3.44109702e-04,
2.57117118e-05, 2.57117118e-05, 2.57117118e-05, 2.57117118e-05,
1.91493931e-06, 1.91493931e-06, 1.91493931e-06, 1.91493931e-06,
1.42183400e-07, 1.42183400e-07, 1.42183400e-07, 1.42183400e-07,
1.05285748e-08, 1.05285748e-08, 1.05285748e-08, 1.05285748e-08,
7.77701570e-10, 7.77701570e-10, 7.77701570e-10, 7.77701570e-10,
5.73011541e-11, 5.73011541e-11, 5.73011541e-11, 5.73011541e-11,
4.21117928e-12, 4.21117928e-12, 4.21117928e-12, 4.21117928e-12,
3.08654210e-13, 3.08654210e-13, 3.08654210e-13, 3.08654210e-13,
2.24724643e-14, 2.24724643e-14, 2.24724643e-14, 2.24724643e-14,
1.61702291e-15, 1.61702291e-15, 1.61702291e-15, 1.61702291e-15,
1.02454347e-16, 1.02454347e-16, 1.02454347e-16, 1.02454347e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([0.99999819, 0.99999819, 0.99999819, 0.99999819, 0.99999526,
0.99999526, 0.99999526, 0.99999526, 0.99998552, 0.99998552,
0.99998552, 0.99998552, 0.99995869, 0.99995869, 0.99995869,
0.99995869, 0.99988882, 0.99988882, 0.99988882, 0.99988882,
0.99971652, 0.99971652, 0.99971652, 0.99971652, 0.99931595,
0.99931595, 0.99931595, 0.99931595, 0.9984411 , 0.9984411 ,
0.9984411 , 0.9984411 , 0.99665195, 0.99665195, 0.99665195,
0.99665195, 0.99323734, 0.99323734, 0.99323734, 0.99323734,
0.98717551, 0.98717551, 0.98717551, 0.98717551, 0.97719106,
0.97719106, 0.97719106, 0.97719106, 0.96195133, 0.96195133,
0.96195133, 0.96195133, 0.94037646, 0.94037646, 0.94037646,
0.94037646, 0.91194761, 0.91194761, 0.91194761, 0.91194761,
0.87686269, 0.87686269, 0.87686269, 0.87686269, 0.83595614,
0.83595614, 0.83595614, 0.83595614, 0.79042203, 0.79042203,
0.79042203, 0.79042203, 0.74145147, 0.74145147, 0.74145147,
0.74145147, 0.69147779, 0.69147779, 0.69147779, 0.69147779,
0.64572403, 0.64572403, 0.64572403, 0.64572403, 0.60528213,
0.60528213, 0.60528213, 0.60528213, 0.57010763, 0.57010763,
0.57010763, 0.57010763, 0.5404967 , 0.5404967 , 0.5404967 ,
0.5404967 , 0.51678706, 0.51678706, 0.51678706, 0.51678706,
0.49867658, 0.49867658, 0.49867658, 0.49867658, 0.4853026 ,
0.4853026 , 0.4853026 , 0.4853026 , 0.47607786, 0.47607786,
0.47607786, 0.47607786, 0.47071083, 0.47071083, 0.47071083,
0.47071083, 0.46816931, 0.46816931, 0.46816931, 0.46816931,
0.46677659, 0.46677659, 0.46677659, 0.46677659, 0.46558153,
0.46558153, 0.46558153, 0.46558153, 0.4647659 , 0.4647659 ,
0.4647659 , 0.4647659 , 0.46441055, 0.46441055, 0.46441055,
0.46441055, 0.46437878, 0.46437878, 0.46437878, 0.46437878,
0.46459568, 0.46459568, 0.46459568, 0.46459568, 0.46499426,
0.46499426, 0.46499426, 0.46499426, 0.46520033, 0.46520033,
0.46520033, 0.46520033, 0.46528777, 0.46528777, 0.46528777,
0.46528777, 0.46526662, 0.46526662, 0.46526662, 0.46526662,
0.46508061, 0.46508061, 0.46508061, 0.46508061, 0.4649127 ,
0.4649127 , 0.4649127 , 0.4649127 , 0.46486127, 0.46486127,
0.46486127, 0.46486127, 0.4647071 , 0.4647071 , 0.4647071 ,
0.4647071 , 0.46356721, 0.46356721, 0.46356721, 0.46356721,
0.45731151, 0.45731151, 0.45731151, 0.45731151, 0.42928346,
0.42928346, 0.42928346, 0.42928346, 0.33578024, 0.33578024,
0.33578024, 0.33578024, 0.17249402, 0.17249402, 0.17249402,
0.17249402, 0.10769716, 0.10769716, 0.10769716, 0.10769716,
0.10060508, 0.10060508, 0.10060508, 0.10060508, 0.10004552,
0.10004552, 0.10004552, 0.10004552, 0.1000034 , 0.1000034 ,
0.1000034 , 0.1000034 , 0.10000025, 0.10000025, 0.10000025,
0.10000025, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}], 'minmod_hll': [{'rho': array([1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125]), 'vx': array([0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. ]), 'P': array([1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999477, 0.99999477,
0.99999477, 0.99999477, 0.99786485, 0.99786485, 0.99786485,
0.99786485, 0.93485786, 0.93485786, 0.93485786, 0.93485786,
0.40121931, 0.40121931, 0.40121931, 0.40121931, 0.15582104,
0.15582104, 0.15582104, 0.15582104, 0.12524217, 0.12524217,
0.12524217, 0.12524217, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75000582, 0.75000582,
0.75000582, 0.75000582, 0.75222331, 0.75222331, 0.75222331,
0.75222331, 0.81126632, 0.81126632, 0.81126632, 0.81126632,
1.02140027, 1.02140027, 1.02140027, 1.02140027, 0.31355893,
0.31355893, 0.31355893, 0.31355893, 0.0023764 , 0.0023764 ,
0.0023764 , 0.0023764 , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999312, 0.99999312,
0.99999312, 0.99999312, 0.99735755, 0.99735755, 0.99735755,
0.99735755, 0.93228381, 0.93228381, 0.93228381, 0.93228381,
0.39392227, 0.39392227, 0.39392227, 0.39392227, 0.14137148,
0.14137148, 0.14137148, 0.14137148, 0.1003091 , 0.1003091 ,
0.1003091 , 0.1003091 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999593,
0.99999593, 0.99999593, 0.99999593, 0.99976514, 0.99976514,
0.99976514, 0.99976514, 0.99350557, 0.99350557, 0.99350557,
0.99350557, 0.91229178, 0.91229178, 0.91229178, 0.91229178,
0.5439655 , 0.5439655 , 0.5439655 , 0.5439655 , 0.26096859,
0.26096859, 0.26096859, 0.26096859, 0.14372642, 0.14372642,
0.14372642, 0.14372642, 0.12576866, 0.12576866, 0.12576866,
0.12576866, 0.12501238, 0.12501238, 0.12501238, 0.12501238,
0.12500005, 0.12500005, 0.12500005, 0.12500005, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000034e-01, 7.50000034e-01, 7.50000034e-01, 7.50000034e-01,
7.50004712e-01, 7.50004712e-01, 7.50004712e-01, 7.50004712e-01,
7.50264827e-01, 7.50264827e-01, 7.50264827e-01, 7.50264827e-01,
7.56937682e-01, 7.56937682e-01, 7.56937682e-01, 7.56937682e-01,
8.39140555e-01, 8.39140555e-01, 8.39140555e-01, 8.39140555e-01,
1.20185078e+00, 1.20185078e+00, 1.20185078e+00, 1.20185078e+00,
9.09724624e-01, 9.09724624e-01, 9.09724624e-01, 9.09724624e-01,
1.82774882e-01, 1.82774882e-01, 1.82774882e-01, 1.82774882e-01,
7.06720021e-03, 7.06720021e-03, 7.06720021e-03, 7.06720021e-03,
1.07910808e-04, 1.07910808e-04, 1.07910808e-04, 1.07910808e-04,
4.52081665e-07, 4.52081665e-07, 4.52081665e-07, 4.52081665e-07,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999442,
0.99999442, 0.99999442, 0.99999442, 0.99968659, 0.99968659,
0.99968659, 0.99968659, 0.99178136, 0.99178136, 0.99178136,
0.99178136, 0.89903919, 0.89903919, 0.89903919, 0.89903919,
0.51770741, 0.51770741, 0.51770741, 0.51770741, 0.2728004 ,
0.2728004 , 0.2728004 , 0.2728004 , 0.12535917, 0.12535917,
0.12535917, 0.12535917, 0.10093445, 0.10093445, 0.10093445,
0.10093445, 0.10001427, 0.10001427, 0.10001427, 0.10001427,
0.10000006, 0.10000006, 0.10000006, 0.10000006, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999923, 0.99999923, 0.99999923, 0.99999923, 0.99996861,
0.99996861, 0.99996861, 0.99996861, 0.99921031, 0.99921031,
0.99921031, 0.99921031, 0.98796713, 0.98796713, 0.98796713,
0.98796713, 0.89633843, 0.89633843, 0.89633843, 0.89633843,
0.62495402, 0.62495402, 0.62495402, 0.62495402, 0.36745601,
0.36745601, 0.36745601, 0.36745601, 0.20859145, 0.20859145,
0.20859145, 0.20859145, 0.13495091, 0.13495091, 0.13495091,
0.13495091, 0.12554615, 0.12554615, 0.12554615, 0.12554615,
0.12501743, 0.12501743, 0.12501743, 0.12501743, 0.12500034,
0.12500034, 0.12500034, 0.12500034, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
7.50000909e-01, 7.50000909e-01, 7.50000909e-01, 7.50000909e-01,
7.50036531e-01, 7.50036531e-01, 7.50036531e-01, 7.50036531e-01,
7.50902656e-01, 7.50902656e-01, 7.50902656e-01, 7.50902656e-01,
7.63307867e-01, 7.63307867e-01, 7.63307867e-01, 7.63307867e-01,
8.65269104e-01, 8.65269104e-01, 8.65269104e-01, 8.65269104e-01,
1.24045354e+00, 1.24045354e+00, 1.24045354e+00, 1.24045354e+00,
1.21114735e+00, 1.21114735e+00, 1.21114735e+00, 1.21114735e+00,
6.72413161e-01, 6.72413161e-01, 6.72413161e-01, 6.72413161e-01,
9.49710351e-02, 9.49710351e-02, 9.49710351e-02, 9.49710351e-02,
4.89829591e-03, 4.89829591e-03, 4.89829591e-03, 4.89829591e-03,
1.50276620e-04, 1.50276620e-04, 1.50276620e-04, 1.50276620e-04,
2.85787671e-06, 2.85787671e-06, 2.85787671e-06, 2.85787671e-06,
2.86001060e-08, 2.86001060e-08, 2.86001060e-08, 2.86001060e-08,
9.82632001e-11, 9.82632001e-11, 9.82632001e-11, 9.82632001e-11,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99995678,
0.99995678, 0.99995678, 0.99995678, 0.99893195, 0.99893195,
0.99893195, 0.99893195, 0.98431021, 0.98431021, 0.98431021,
0.98431021, 0.87225606, 0.87225606, 0.87225606, 0.87225606,
0.57198082, 0.57198082, 0.57198082, 0.57198082, 0.38708981,
0.38708981, 0.38708981, 0.38708981, 0.2169621 , 0.2169621 ,
0.2169621 , 0.2169621 , 0.11307803, 0.11307803, 0.11307803,
0.11307803, 0.10064828, 0.10064828, 0.10064828, 0.10064828,
0.10001988, 0.10001988, 0.10001988, 0.10001988, 0.10000038,
0.10000038, 0.10000038, 0.10000038, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999553, 0.99999553, 0.99999553, 0.99999553, 0.99989298,
0.99989298, 0.99989298, 0.99989298, 0.99825442, 0.99825442,
0.99825442, 0.99825442, 0.98154523, 0.98154523, 0.98154523,
0.98154523, 0.88346323, 0.88346323, 0.88346323, 0.88346323,
0.66814286, 0.66814286, 0.66814286, 0.66814286, 0.450449 ,
0.450449 , 0.450449 , 0.450449 , 0.30003012, 0.30003012,
0.30003012, 0.30003012, 0.17291515, 0.17291515, 0.17291515,
0.17291515, 0.12999501, 0.12999501, 0.12999501, 0.12999501,
0.12530317, 0.12530317, 0.12530317, 0.12530317, 0.12501302,
0.12501302, 0.12501302, 0.12501302, 0.1250004 , 0.1250004 ,
0.1250004 , 0.1250004 , 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
7.50005260e-01, 7.50005260e-01, 7.50005260e-01, 7.50005260e-01,
7.50125177e-01, 7.50125177e-01, 7.50125177e-01, 7.50125177e-01,
7.52016532e-01, 7.52016532e-01, 7.52016532e-01, 7.52016532e-01,
7.70955544e-01, 7.70955544e-01, 7.70955544e-01, 7.70955544e-01,
8.87963066e-01, 8.87963066e-01, 8.87963066e-01, 8.87963066e-01,
1.23600978e+00, 1.23600978e+00, 1.23600978e+00, 1.23600978e+00,
1.32985101e+00, 1.32985101e+00, 1.32985101e+00, 1.32985101e+00,
1.08018999e+00, 1.08018999e+00, 1.08018999e+00, 1.08018999e+00,
4.31751162e-01, 4.31751162e-01, 4.31751162e-01, 4.31751162e-01,
4.67980493e-02, 4.67980493e-02, 4.67980493e-02, 4.67980493e-02,
2.66505147e-03, 2.66505147e-03, 2.66505147e-03, 2.66505147e-03,
1.11496365e-04, 1.11496365e-04, 1.11496365e-04, 1.11496365e-04,
3.41260935e-06, 3.41260935e-06, 3.41260935e-06, 3.41260935e-06,
7.27672658e-08, 7.27672658e-08, 7.27672658e-08, 7.27672658e-08,
1.00397593e-09, 1.00397593e-09, 1.00397593e-09, 1.00397593e-09,
7.70528135e-12, 7.70528135e-12, 7.70528135e-12, 7.70528135e-12,
2.25884809e-14, 2.25884809e-14, 2.25884809e-14, 2.25884809e-14,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999982, 0.99999982, 0.99999982, 0.99999982,
0.99999378, 0.99999378, 0.99999378, 0.99999378, 0.99985189,
0.99985189, 0.99985189, 0.99985189, 0.99761523, 0.99761523,
0.99761523, 0.99761523, 0.97543178, 0.97543178, 0.97543178,
0.97543178, 0.85010187, 0.85010187, 0.85010187, 0.85010187,
0.59115606, 0.59115606, 0.59115606, 0.59115606, 0.45201122,
0.45201122, 0.45201122, 0.45201122, 0.33798169, 0.33798169,
0.33798169, 0.33798169, 0.16975198, 0.16975198, 0.16975198,
0.16975198, 0.10631224, 0.10631224, 0.10631224, 0.10631224,
0.10035268, 0.10035268, 0.10035268, 0.10035268, 0.10001475,
0.10001475, 0.10001475, 0.10001475, 0.10000045, 0.10000045,
0.10000045, 0.10000045, 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999934, 0.99999934, 0.99999934, 0.99999934,
0.99998473, 0.99998473, 0.99998473, 0.99998473, 0.99973934,
0.99973934, 0.99973934, 0.99973934, 0.99684694, 0.99684694,
0.99684694, 0.99684694, 0.97449508, 0.97449508, 0.97449508,
0.97449508, 0.87259818, 0.87259818, 0.87259818, 0.87259818,
0.6864975 , 0.6864975 , 0.6864975 , 0.6864975 , 0.51289402,
0.51289402, 0.51289402, 0.51289402, 0.38247596, 0.38247596,
0.38247596, 0.38247596, 0.24627862, 0.24627862, 0.24627862,
0.24627862, 0.1506058 , 0.1506058 , 0.1506058 , 0.1506058 ,
0.12742094, 0.12742094, 0.12742094, 0.12742094, 0.12515547,
0.12515547, 0.12515547, 0.12515547, 0.12500778, 0.12500778,
0.12500778, 0.12500778, 0.12500031, 0.12500031, 0.12500031,
0.12500031, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
7.50000776e-01, 7.50000776e-01, 7.50000776e-01, 7.50000776e-01,
7.50017997e-01, 7.50017997e-01, 7.50017997e-01, 7.50017997e-01,
7.50305930e-01, 7.50305930e-01, 7.50305930e-01, 7.50305930e-01,
7.53669775e-01, 7.53669775e-01, 7.53669775e-01, 7.53669775e-01,
7.79517872e-01, 7.79517872e-01, 7.79517872e-01, 7.79517872e-01,
9.06676406e-01, 9.06676406e-01, 9.06676406e-01, 9.06676406e-01,
1.21521648e+00, 1.21521648e+00, 1.21521648e+00, 1.21521648e+00,
1.36901918e+00, 1.36901918e+00, 1.36901918e+00, 1.36901918e+00,
1.27921096e+00, 1.27921096e+00, 1.27921096e+00, 1.27921096e+00,
9.03289139e-01, 9.03289139e-01, 9.03289139e-01, 9.03289139e-01,
2.43356441e-01, 2.43356441e-01, 2.43356441e-01, 2.43356441e-01,
2.21897389e-02, 2.21897389e-02, 2.21897389e-02, 2.21897389e-02,
1.34917711e-03, 1.34917711e-03, 1.34917711e-03, 1.34917711e-03,
6.63347975e-05, 6.63347975e-05, 6.63347975e-05, 6.63347975e-05,
2.61791335e-06, 2.61791335e-06, 2.61791335e-06, 2.61791335e-06,
8.01915979e-08, 8.01915979e-08, 8.01915979e-08, 8.01915979e-08,
1.84159266e-09, 1.84159266e-09, 1.84159266e-09, 1.84159266e-09,
3.02840362e-11, 3.02840362e-11, 3.02840362e-11, 3.02840362e-11,
3.31059514e-13, 3.31059514e-13, 3.31059514e-13, 3.31059514e-13,
2.11159390e-15, 2.11159390e-15, 2.11159390e-15, 2.11159390e-15,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999908, 0.99999908, 0.99999908, 0.99999908,
0.99997871, 0.99997871, 0.99997871, 0.99997871, 0.99963804,
0.99963804, 0.99963804, 0.99963804, 0.99566401, 0.99566401,
0.99566401, 0.99566401, 0.96560299, 0.96560299, 0.96560299,
0.96560299, 0.8320416 , 0.8320416 , 0.8320416 , 0.8320416 ,
0.59163041, 0.59163041, 0.59163041, 0.59163041, 0.48324232,
0.48324232, 0.48324232, 0.48324232, 0.4189936 , 0.4189936 ,
0.4189936 , 0.4189936 , 0.28887293, 0.28887293, 0.28887293,
0.28887293, 0.13630773, 0.13630773, 0.13630773, 0.13630773,
0.1029605 , 0.1029605 , 0.1029605 , 0.1029605 , 0.10017852,
0.10017852, 0.10017852, 0.10017852, 0.10000878, 0.10000878,
0.10000878, 0.10000878, 0.10000035, 0.10000035, 0.10000035,
0.10000035, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999776, 0.99999776, 0.99999776, 0.99999776,
0.99996053, 0.99996053, 0.99996053, 0.99996053, 0.99947569,
0.99947569, 0.99947569, 0.99947569, 0.99496288, 0.99496288,
0.99496288, 0.99496288, 0.96703059, 0.96703059, 0.96703059,
0.96703059, 0.86276573, 0.86276573, 0.86276573, 0.86276573,
0.69336478, 0.69336478, 0.69336478, 0.69336478, 0.55587482,
0.55587482, 0.55587482, 0.55587482, 0.44582134, 0.44582134,
0.44582134, 0.44582134, 0.32572207, 0.32572207, 0.32572207,
0.32572207, 0.20563197, 0.20563197, 0.20563197, 0.20563197,
0.13815838, 0.13815838, 0.13815838, 0.13815838, 0.12615318,
0.12615318, 0.12615318, 0.12615318, 0.12507598, 0.12507598,
0.12507598, 0.12507598, 0.1250042 , 0.1250042 , 0.1250042 ,
0.1250042 , 0.12500019, 0.12500019, 0.12500019, 0.12500019,
0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
7.50000116e-01, 7.50000116e-01, 7.50000116e-01, 7.50000116e-01,
7.50002645e-01, 7.50002645e-01, 7.50002645e-01, 7.50002645e-01,
7.50046576e-01, 7.50046576e-01, 7.50046576e-01, 7.50046576e-01,
7.50616761e-01, 7.50616761e-01, 7.50616761e-01, 7.50616761e-01,
7.55893760e-01, 7.55893760e-01, 7.55893760e-01, 7.55893760e-01,
7.88691015e-01, 7.88691015e-01, 7.88691015e-01, 7.88691015e-01,
9.22508524e-01, 9.22508524e-01, 9.22508524e-01, 9.22508524e-01,
1.19424995e+00, 1.19424995e+00, 1.19424995e+00, 1.19424995e+00,
1.37115296e+00, 1.37115296e+00, 1.37115296e+00, 1.37115296e+00,
1.35656186e+00, 1.35656186e+00, 1.35656186e+00, 1.35656186e+00,
1.19624538e+00, 1.19624538e+00, 1.19624538e+00, 1.19624538e+00,
6.97637293e-01, 6.97637293e-01, 6.97637293e-01, 6.97637293e-01,
1.27100170e-01, 1.27100170e-01, 1.27100170e-01, 1.27100170e-01,
1.03412299e-02, 1.03412299e-02, 1.03412299e-02, 1.03412299e-02,
6.53644299e-04, 6.53644299e-04, 6.53644299e-04, 6.53644299e-04,
3.56971103e-05, 3.56971103e-05, 3.56971103e-05, 3.56971103e-05,
1.64522459e-06, 1.64522459e-06, 1.64522459e-06, 1.64522459e-06,
6.25358486e-08, 6.25358486e-08, 6.25358486e-08, 6.25358486e-08,
1.91748504e-09, 1.91748504e-09, 1.91748504e-09, 1.91748504e-09,
4.62606839e-11, 4.62606839e-11, 4.62606839e-11, 4.62606839e-11,
8.51285413e-13, 8.51285413e-13, 8.51285413e-13, 8.51285413e-13,
1.14285693e-14, 1.14285693e-14, 1.14285693e-14, 1.14285693e-14,
9.19950648e-17, 9.19950648e-17, 9.19950648e-17, 9.19950648e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999687, 0.99999687, 0.99999687, 0.99999687,
0.99994489, 0.99994489, 0.99994489, 0.99994489, 0.99927039,
0.99927039, 0.99927039, 0.99927039, 0.99304531, 0.99304531,
0.99304531, 0.99304531, 0.95519679, 0.95519679, 0.95519679,
0.95519679, 0.8168341 , 0.8168341 , 0.8168341 , 0.8168341 ,
0.58819152, 0.58819152, 0.58819152, 0.58819152, 0.49438551,
0.49438551, 0.49438551, 0.49438551, 0.45793166, 0.45793166,
0.45793166, 0.45793166, 0.39260514, 0.39260514, 0.39260514,
0.39260514, 0.23309146, 0.23309146, 0.23309146, 0.23309146,
0.11798708, 0.11798708, 0.11798708, 0.11798708, 0.1013727 ,
0.1013727 , 0.1013727 , 0.1013727 , 0.10008648, 0.10008648,
0.10008648, 0.10008648, 0.10000472, 0.10000472, 0.10000472,
0.10000472, 0.10000022, 0.10000022, 0.10000022, 0.10000022,
0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999967, 0.99999967, 0.99999967,
0.99999967, 0.99999397, 0.99999397, 0.99999397, 0.99999397,
0.99991437, 0.99991437, 0.99991437, 0.99991437, 0.99906962,
0.99906962, 0.99906962, 0.99906962, 0.992598 , 0.992598 ,
0.992598 , 0.992598 , 0.95931079, 0.95931079, 0.95931079,
0.95931079, 0.85365694, 0.85365694, 0.85365694, 0.85365694,
0.69548058, 0.69548058, 0.69548058, 0.69548058, 0.5842581 ,
0.5842581 , 0.5842581 , 0.5842581 , 0.49197492, 0.49197492,
0.49197492, 0.49197492, 0.39210102, 0.39210102, 0.39210102,
0.39210102, 0.27877468, 0.27877468, 0.27877468, 0.27877468,
0.17568186, 0.17568186, 0.17568186, 0.17568186, 0.1316077 ,
0.1316077 , 0.1316077 , 0.1316077 , 0.12553921, 0.12553921,
0.12553921, 0.12553921, 0.12503633, 0.12503633, 0.12503633,
0.12503633, 0.12500214, 0.12500214, 0.12500214, 0.12500214,
0.12500011, 0.12500011, 0.12500011, 0.12500011, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000018e-01, 7.50000018e-01, 7.50000018e-01, 7.50000018e-01,
7.50000395e-01, 7.50000395e-01, 7.50000395e-01, 7.50000395e-01,
7.50007125e-01, 7.50007125e-01, 7.50007125e-01, 7.50007125e-01,
7.50101120e-01, 7.50101120e-01, 7.50101120e-01, 7.50101120e-01,
7.51096094e-01, 7.51096094e-01, 7.51096094e-01, 7.51096094e-01,
7.58695376e-01, 7.58695376e-01, 7.58695376e-01, 7.58695376e-01,
7.98253123e-01, 7.98253123e-01, 7.98253123e-01, 7.98253123e-01,
9.36217768e-01, 9.36217768e-01, 9.36217768e-01, 9.36217768e-01,
1.17874930e+00, 1.17874930e+00, 1.17874930e+00, 1.17874930e+00,
1.35926058e+00, 1.35926058e+00, 1.35926058e+00, 1.35926058e+00,
1.37992227e+00, 1.37992227e+00, 1.37992227e+00, 1.37992227e+00,
1.31852830e+00, 1.31852830e+00, 1.31852830e+00, 1.31852830e+00,
1.09147080e+00, 1.09147080e+00, 1.09147080e+00, 1.09147080e+00,
4.80823248e-01, 4.80823248e-01, 4.80823248e-01, 4.80823248e-01,
6.29020815e-02, 6.29020815e-02, 6.29020815e-02, 6.29020815e-02,
4.74941638e-03, 4.74941638e-03, 4.74941638e-03, 4.74941638e-03,
3.10811782e-04, 3.10811782e-04, 3.10811782e-04, 3.10811782e-04,
1.81866640e-05, 1.81866640e-05, 1.81866640e-05, 1.81866640e-05,
9.31308580e-07, 9.31308580e-07, 9.31308580e-07, 9.31308580e-07,
4.09103671e-08, 4.09103671e-08, 4.09103671e-08, 4.09103671e-08,
1.51483229e-09, 1.51483229e-09, 1.51483229e-09, 1.51483229e-09,
4.65132031e-11, 4.65132031e-11, 4.65132031e-11, 4.65132031e-11,
1.16294442e-12, 1.16294442e-12, 1.16294442e-12, 1.16294442e-12,
2.31530746e-14, 2.31530746e-14, 2.31530746e-14, 2.31530746e-14,
3.45133688e-16, 3.45133688e-16, 3.45133688e-16, 3.45133688e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999953, 0.99999953, 0.99999953,
0.99999953, 0.99999157, 0.99999157, 0.99999157, 0.99999157,
0.99988036, 0.99988036, 0.99988036, 0.99988036, 0.99870367,
0.99870367, 0.99870367, 0.99870367, 0.98975672, 0.98975672,
0.98975672, 0.98975672, 0.94447806, 0.94447806, 0.94447806,
0.94447806, 0.80372375, 0.80372375, 0.80372375, 0.80372375,
0.58659611, 0.58659611, 0.58659611, 0.58659611, 0.49630691,
0.49630691, 0.49630691, 0.49630691, 0.47256565, 0.47256565,
0.47256565, 0.47256565, 0.44649608, 0.44649608, 0.44649608,
0.44649608, 0.35475085, 0.35475085, 0.35475085, 0.35475085,
0.18206373, 0.18206373, 0.18206373, 0.18206373, 0.10858619,
0.10858619, 0.10858619, 0.10858619, 0.10062915, 0.10062915,
0.10062915, 0.10062915, 0.10004112, 0.10004112, 0.10004112,
0.10004112, 0.10000241, 0.10000241, 0.10000241, 0.10000241,
0.10000012, 0.10000012, 0.10000012, 0.10000012, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999907, 0.99999907, 0.99999907,
0.99999907, 0.99998617, 0.99998617, 0.99998617, 0.99998617,
0.99983554, 0.99983554, 0.99983554, 0.99983554, 0.9984902 ,
0.9984902 , 0.9984902 , 0.9984902 , 0.9897648 , 0.9897648 ,
0.9897648 , 0.9897648 , 0.95146278, 0.95146278, 0.95146278,
0.95146278, 0.84522655, 0.84522655, 0.84522655, 0.84522655,
0.69592792, 0.69592792, 0.69592792, 0.69592792, 0.60160526,
0.60160526, 0.60160526, 0.60160526, 0.52681117, 0.52681117,
0.52681117, 0.52681117, 0.44280683, 0.44280683, 0.44280683,
0.44280683, 0.3438762 , 0.3438762 , 0.3438762 , 0.3438762 ,
0.24139758, 0.24139758, 0.24139758, 0.24139758, 0.15433653,
0.15433653, 0.15433653, 0.15433653, 0.12820419, 0.12820419,
0.12820419, 0.12820419, 0.12525101, 0.12525101, 0.12525101,
0.12525101, 0.12501713, 0.12501713, 0.12501713, 0.12501713,
0.12500106, 0.12500106, 0.12500106, 0.12500106, 0.12500006,
0.12500006, 0.12500006, 0.12500006, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000060e-01, 7.50000060e-01, 7.50000060e-01, 7.50000060e-01,
7.50001095e-01, 7.50001095e-01, 7.50001095e-01, 7.50001095e-01,
7.50016352e-01, 7.50016352e-01, 7.50016352e-01, 7.50016352e-01,
7.50194298e-01, 7.50194298e-01, 7.50194298e-01, 7.50194298e-01,
7.51780598e-01, 7.51780598e-01, 7.51780598e-01, 7.51780598e-01,
7.62062621e-01, 7.62062621e-01, 7.62062621e-01, 7.62062621e-01,
8.08036385e-01, 8.08036385e-01, 8.08036385e-01, 8.08036385e-01,
9.48280192e-01, 9.48280192e-01, 9.48280192e-01, 9.48280192e-01,
1.16919832e+00, 1.16919832e+00, 1.16919832e+00, 1.16919832e+00,
1.34151992e+00, 1.34151992e+00, 1.34151992e+00, 1.34151992e+00,
1.38408905e+00, 1.38408905e+00, 1.38408905e+00, 1.38408905e+00,
1.36212724e+00, 1.36212724e+00, 1.36212724e+00, 1.36212724e+00,
1.27575638e+00, 1.27575638e+00, 1.27575638e+00, 1.27575638e+00,
9.46706959e-01, 9.46706959e-01, 9.46706959e-01, 9.46706959e-01,
2.86961496e-01, 2.86961496e-01, 2.86961496e-01, 2.86961496e-01,
2.97471236e-02, 2.97471236e-02, 2.97471236e-02, 2.97471236e-02,
2.18276389e-03, 2.18276389e-03, 2.18276389e-03, 2.18276389e-03,
1.45981809e-04, 1.45981809e-04, 1.45981809e-04, 1.45981809e-04,
8.97326097e-06, 8.97326097e-06, 8.97326097e-06, 8.97326097e-06,
4.95542253e-07, 4.95542253e-07, 4.95542253e-07, 4.95542253e-07,
2.41369077e-08, 2.41369077e-08, 2.41369077e-08, 2.41369077e-08,
1.02173681e-09, 1.02173681e-09, 1.02173681e-09, 1.02173681e-09,
3.71041963e-11, 3.71041963e-11, 3.71041963e-11, 3.71041963e-11,
1.14134185e-12, 1.14134185e-12, 1.14134185e-12, 1.14134185e-12,
2.93180081e-14, 2.93180081e-14, 2.93180081e-14, 2.93180081e-14,
5.89861085e-16, 5.89861085e-16, 5.89861085e-16, 5.89861085e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999993, 0.99999993,
0.99999993, 0.99999993, 0.9999987 , 0.9999987 , 0.9999987 ,
0.9999987 , 0.99998065, 0.99998065, 0.99998065, 0.99998065,
0.99977012, 0.99977012, 0.99977012, 0.99977012, 0.9978949 ,
0.9978949 , 0.9978949 , 0.9978949 , 0.98581938, 0.98581938,
0.98581938, 0.98581938, 0.93364034, 0.93364034, 0.93364034,
0.93364034, 0.79223561, 0.79223561, 0.79223561, 0.79223561,
0.58787464, 0.58787464, 0.58787464, 0.58787464, 0.49421357,
0.49421357, 0.49421357, 0.49421357, 0.47736962, 0.47736962,
0.47736962, 0.47736962, 0.46789435, 0.46789435, 0.46789435,
0.46789435, 0.42797779, 0.42797779, 0.42797779, 0.42797779,
0.30606771, 0.30606771, 0.30606771, 0.30606771, 0.14410239,
0.14410239, 0.14410239, 0.14410239, 0.10398792, 0.10398792,
0.10398792, 0.10398792, 0.10028892, 0.10028892, 0.10028892,
0.10028892, 0.10001931, 0.10001931, 0.10001931, 0.10001931,
0.10000119, 0.10000119, 0.10000119, 0.10000119, 0.10000007,
0.10000007, 0.10000007, 0.10000007, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999986, 0.99999986,
0.99999986, 0.99999986, 0.99999778, 0.99999778, 0.99999778,
0.99999778, 0.99997175, 0.99997175, 0.99997175, 0.99997175,
0.99971141, 0.99971141, 0.99971141, 0.99971141, 0.99770946,
0.99770946, 0.99770946, 0.99770946, 0.98648851, 0.98648851,
0.98648851, 0.98648851, 0.94358959, 0.94358959, 0.94358959,
0.94358959, 0.83747957, 0.83747957, 0.83747957, 0.83747957,
0.69607636, 0.69607636, 0.69607636, 0.69607636, 0.61195392,
0.61195392, 0.61195392, 0.61195392, 0.5520745 , 0.5520745 ,
0.5520745 , 0.5520745 , 0.48227586, 0.48227586, 0.48227586,
0.48227586, 0.39628276, 0.39628276, 0.39628276, 0.39628276,
0.30461516, 0.30461516, 0.30461516, 0.30461516, 0.20942901,
0.20942901, 0.20942901, 0.20942901, 0.14069158, 0.14069158,
0.14069158, 0.14069158, 0.12652847, 0.12652847, 0.12652847,
0.12652847, 0.1251159 , 0.1251159 , 0.1251159 , 0.1251159 ,
0.12500801, 0.12500801, 0.12500801, 0.12500801, 0.12500051,
0.12500051, 0.12500051, 0.12500051, 0.12500003, 0.12500003,
0.12500003, 0.12500003, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000169e-01, 7.50000169e-01, 7.50000169e-01, 7.50000169e-01,
7.50002624e-01, 7.50002624e-01, 7.50002624e-01, 7.50002624e-01,
7.50033404e-01, 7.50033404e-01, 7.50033404e-01, 7.50033404e-01,
7.50341048e-01, 7.50341048e-01, 7.50341048e-01, 7.50341048e-01,
7.52703614e-01, 7.52703614e-01, 7.52703614e-01, 7.52703614e-01,
7.65969457e-01, 7.65969457e-01, 7.65969457e-01, 7.65969457e-01,
8.17910409e-01, 8.17910409e-01, 8.17910409e-01, 8.17910409e-01,
9.59019483e-01, 9.59019483e-01, 9.59019483e-01, 9.59019483e-01,
1.16435988e+00, 1.16435988e+00, 1.16435988e+00, 1.16435988e+00,
1.32431238e+00, 1.32431238e+00, 1.32431238e+00, 1.32431238e+00,
1.37819363e+00, 1.37819363e+00, 1.37819363e+00, 1.37819363e+00,
1.37548447e+00, 1.37548447e+00, 1.37548447e+00, 1.37548447e+00,
1.34495171e+00, 1.34495171e+00, 1.34495171e+00, 1.34495171e+00,
1.21521933e+00, 1.21521933e+00, 1.21521933e+00, 1.21521933e+00,
7.56439760e-01, 7.56439760e-01, 7.56439760e-01, 7.56439760e-01,
1.54532788e-01, 1.54532788e-01, 1.54532788e-01, 1.54532788e-01,
1.38332523e-02, 1.38332523e-02, 1.38332523e-02, 1.38332523e-02,
9.98607774e-04, 9.98607774e-04, 9.98607774e-04, 9.98607774e-04,
6.81041170e-05, 6.81041170e-05, 6.81041170e-05, 6.81041170e-05,
4.33839800e-06, 4.33839800e-06, 4.33839800e-06, 4.33839800e-06,
2.53281003e-07, 2.53281003e-07, 2.53281003e-07, 2.53281003e-07,
1.33255506e-08, 1.33255506e-08, 1.33255506e-08, 1.33255506e-08,
6.23193675e-10, 6.23193675e-10, 6.23193675e-10, 6.23193675e-10,
2.56186446e-11, 2.56186446e-11, 2.56186446e-11, 2.56186446e-11,
9.16383815e-13, 9.16383815e-13, 9.16383815e-13, 9.16383815e-13,
2.82273423e-14, 2.82273423e-14, 2.82273423e-14, 2.82273423e-14,
7.11936272e-16, 7.11936272e-16, 7.11936272e-16, 7.11936272e-16,
9.95777976e-18, 9.95777976e-18, 9.95777976e-18, 9.95777976e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.9999998 , 0.9999998 ,
0.9999998 , 0.9999998 , 0.9999969 , 0.9999969 , 0.9999969 ,
0.9999969 , 0.99996048, 0.99996048, 0.99996048, 0.99996048,
0.99959652, 0.99959652, 0.99959652, 0.99959652, 0.99680533,
0.99680533, 0.99680533, 0.99680533, 0.98127177, 0.98127177,
0.98127177, 0.98127177, 0.92282751, 0.92282751, 0.92282751,
0.92282751, 0.78204719, 0.78204719, 0.78204719, 0.78204719,
0.59144542, 0.59144542, 0.59144542, 0.59144542, 0.49225455,
0.49225455, 0.49225455, 0.49225455, 0.47625652, 0.47625652,
0.47625652, 0.47625652, 0.47479773, 0.47479773, 0.47479773,
0.47479773, 0.46075469, 0.46075469, 0.46075469, 0.46075469,
0.4019023 , 0.4019023 , 0.4019023 , 0.4019023 , 0.25005069,
0.25005069, 0.25005069, 0.25005069, 0.1222868 , 0.1222868 ,
0.1222868 , 0.1222868 , 0.10183971, 0.10183971, 0.10183971,
0.10183971, 0.10013213, 0.10013213, 0.10013213, 0.10013213,
0.10000901, 0.10000901, 0.10000901, 0.10000901, 0.10000057,
0.10000057, 0.10000057, 0.10000057, 0.10000003, 0.10000003,
0.10000003, 0.10000003, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999965, 0.99999965,
0.99999965, 0.99999965, 0.99999524, 0.99999524, 0.99999524,
0.99999524, 0.99994721, 0.99994721, 0.99994721, 0.99994721,
0.99952776, 0.99952776, 0.99952776, 0.99952776, 0.99670338,
0.99670338, 0.99670338, 0.99670338, 0.98280363, 0.98280363,
0.98280363, 0.98280363, 0.93577386, 0.93577386, 0.93577386,
0.93577386, 0.83041599, 0.83041599, 0.83041599, 0.83041599,
0.69625631, 0.69625631, 0.69625631, 0.69625631, 0.61829217,
0.61829217, 0.61829217, 0.61829217, 0.5699253 , 0.5699253 ,
0.5699253 , 0.5699253 , 0.51291693, 0.51291693, 0.51291693,
0.51291693, 0.43877311, 0.43877311, 0.43877311, 0.43877311,
0.35520766, 0.35520766, 0.35520766, 0.35520766, 0.27305597,
0.27305597, 0.27305597, 0.27305597, 0.18148452, 0.18148452,
0.18148452, 0.18148452, 0.13315019, 0.13315019, 0.13315019,
0.13315019, 0.12571382, 0.12571382, 0.12571382, 0.12571382,
0.12505333, 0.12505333, 0.12505333, 0.12505333, 0.12500372,
0.12500372, 0.12500372, 0.12500372, 0.12500024, 0.12500024,
0.12500024, 0.12500024, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
7.50000419e-01, 7.50000419e-01, 7.50000419e-01, 7.50000419e-01,
7.50005630e-01, 7.50005630e-01, 7.50005630e-01, 7.50005630e-01,
7.50062433e-01, 7.50062433e-01, 7.50062433e-01, 7.50062433e-01,
7.50558196e-01, 7.50558196e-01, 7.50558196e-01, 7.50558196e-01,
7.53894015e-01, 7.53894015e-01, 7.53894015e-01, 7.53894015e-01,
7.70379540e-01, 7.70379540e-01, 7.70379540e-01, 7.70379540e-01,
8.27772252e-01, 8.27772252e-01, 8.27772252e-01, 8.27772252e-01,
9.68662085e-01, 9.68662085e-01, 9.68662085e-01, 9.68662085e-01,
1.16220491e+00, 1.16220491e+00, 1.16220491e+00, 1.16220491e+00,
1.31086380e+00, 1.31086380e+00, 1.31086380e+00, 1.31086380e+00,
1.36872585e+00, 1.36872585e+00, 1.36872585e+00, 1.36872585e+00,
1.37564389e+00, 1.37564389e+00, 1.37564389e+00, 1.37564389e+00,
1.36763431e+00, 1.36763431e+00, 1.36763431e+00, 1.36763431e+00,
1.32344547e+00, 1.32344547e+00, 1.32344547e+00, 1.32344547e+00,
1.12324529e+00, 1.12324529e+00, 1.12324529e+00, 1.12324529e+00,
5.43452950e-01, 5.43452950e-01, 5.43452950e-01, 5.43452950e-01,
7.89030941e-02, 7.89030941e-02, 7.89030941e-02, 7.89030941e-02,
6.32477098e-03, 6.32477098e-03, 6.32477098e-03, 6.32477098e-03,
4.56774221e-04, 4.56774221e-04, 4.56774221e-04, 4.56774221e-04,
3.16014322e-05, 3.16014322e-05, 3.16014322e-05, 3.16014322e-05,
2.06840337e-06, 2.06840337e-06, 2.06840337e-06, 2.06840337e-06,
1.25987808e-07, 1.25987808e-07, 1.25987808e-07, 1.25987808e-07,
7.03125054e-09, 7.03125054e-09, 7.03125054e-09, 7.03125054e-09,
3.55048102e-10, 3.55048102e-10, 3.55048102e-10, 3.55048102e-10,
1.60552001e-11, 1.60552001e-11, 1.60552001e-11, 1.60552001e-11,
6.44472443e-13, 6.44472443e-13, 6.44472443e-13, 6.44472443e-13,
2.27342322e-14, 2.27342322e-14, 2.27342322e-14, 2.27342322e-14,
6.57996181e-16, 6.57996181e-16, 6.57996181e-16, 6.57996181e-16,
2.02110955e-17, 2.02110955e-17, 2.02110955e-17, 2.02110955e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.9999995 , 0.9999995 ,
0.9999995 , 0.9999995 , 0.99999334, 0.99999334, 0.99999334,
0.99999334, 0.99992613, 0.99992613, 0.99992613, 0.99992613,
0.9993397 , 0.9993397 , 0.9993397 , 0.9993397 , 0.99540189,
0.99540189, 0.99540189, 0.99540189, 0.97616471, 0.97616471,
0.97616471, 0.97616471, 0.91214742, 0.91214742, 0.91214742,
0.91214742, 0.77293438, 0.77293438, 0.77293438, 0.77293438,
0.59602991, 0.59602991, 0.59602991, 0.59602991, 0.49258015,
0.49258015, 0.49258015, 0.49258015, 0.47304087, 0.47304087,
0.47304087, 0.47304087, 0.47487876, 0.47487876, 0.47487876,
0.47487876, 0.47229223, 0.47229223, 0.47229223, 0.47229223,
0.44924829, 0.44924829, 0.44924829, 0.44924829, 0.3670158 ,
0.3670158 , 0.3670158 , 0.3670158 , 0.1964563 , 0.1964563 ,
0.1964563 , 0.1964563 , 0.11088441, 0.11088441, 0.11088441,
0.11088441, 0.10083843, 0.10083843, 0.10083843, 0.10083843,
0.10006043, 0.10006043, 0.10006043, 0.10006043, 0.10000418,
0.10000418, 0.10000418, 0.10000418, 0.10000027, 0.10000027,
0.10000027, 0.10000027, 0.10000002, 0.10000002, 0.10000002,
0.10000002, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999921, 0.99999921,
0.99999921, 0.99999921, 0.99999063, 0.99999063, 0.99999063,
0.99999063, 0.99990804, 0.99990804, 0.99990804, 0.99990804,
0.99926917, 0.99926917, 0.99926917, 0.99926917, 0.99545263,
0.99545263, 0.99545263, 0.99545263, 0.97875109, 0.97875109,
0.97875109, 0.97875109, 0.92808061, 0.92808061, 0.92808061,
0.92808061, 0.82401271, 0.82401271, 0.82401271, 0.82401271,
0.69646404, 0.69646404, 0.69646404, 0.69646404, 0.62232848,
0.62232848, 0.62232848, 0.62232848, 0.58232539, 0.58232539,
0.58232539, 0.58232539, 0.53664687, 0.53664687, 0.53664687,
0.53664687, 0.47382656, 0.47382656, 0.47382656, 0.47382656,
0.3966429 , 0.3966429 , 0.3966429 , 0.3966429 , 0.32215049,
0.32215049, 0.32215049, 0.32215049, 0.24536837, 0.24536837,
0.24536837, 0.24536837, 0.15939671, 0.15939671, 0.15939671,
0.15939671, 0.1290282 , 0.1290282 , 0.1290282 , 0.1290282 ,
0.12533162, 0.12533162, 0.12533162, 0.12533162, 0.12502449,
0.12502449, 0.12502449, 0.12502449, 0.12500172, 0.12500172,
0.12500172, 0.12500172, 0.12500012, 0.12500012, 0.12500012,
0.12500012, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
7.50000067e-01, 7.50000067e-01, 7.50000067e-01, 7.50000067e-01,
7.50000937e-01, 7.50000937e-01, 7.50000937e-01, 7.50000937e-01,
7.50011082e-01, 7.50011082e-01, 7.50011082e-01, 7.50011082e-01,
7.50108766e-01, 7.50108766e-01, 7.50108766e-01, 7.50108766e-01,
7.50863989e-01, 7.50863989e-01, 7.50863989e-01, 7.50863989e-01,
7.55375416e-01, 7.55375416e-01, 7.55375416e-01, 7.55375416e-01,
7.75249150e-01, 7.75249150e-01, 7.75249150e-01, 7.75249150e-01,
8.37539996e-01, 8.37539996e-01, 8.37539996e-01, 8.37539996e-01,
9.77371489e-01, 9.77371489e-01, 9.77371489e-01, 9.77371489e-01,
1.16096785e+00, 1.16096785e+00, 1.16096785e+00, 1.16096785e+00,
1.30163748e+00, 1.30163748e+00, 1.30163748e+00, 1.30163748e+00,
1.35906515e+00, 1.35906515e+00, 1.35906515e+00, 1.35906515e+00,
1.37165137e+00, 1.37165137e+00, 1.37165137e+00, 1.37165137e+00,
1.37159981e+00, 1.37159981e+00, 1.37159981e+00, 1.37159981e+00,
1.36020817e+00, 1.36020817e+00, 1.36020817e+00, 1.36020817e+00,
1.28954477e+00, 1.28954477e+00, 1.28954477e+00, 1.28954477e+00,
9.92965165e-01, 9.92965165e-01, 9.92965165e-01, 9.92965165e-01,
3.41054294e-01, 3.41054294e-01, 3.41054294e-01, 3.41054294e-01,
3.78450976e-02, 3.78450976e-02, 3.78450976e-02, 3.78450976e-02,
2.89520706e-03, 2.89520706e-03, 2.89520706e-03, 2.89520706e-03,
2.08927779e-04, 2.08927779e-04, 2.08927779e-04, 2.08927779e-04,
1.46114029e-05, 1.46114029e-05, 1.46114029e-05, 1.46114029e-05,
9.77146281e-07, 9.77146281e-07, 9.77146281e-07, 9.77146281e-07,
6.15180946e-08, 6.15180946e-08, 6.15180946e-08, 6.15180946e-08,
3.59623288e-09, 3.59623288e-09, 3.59623288e-09, 3.59623288e-09,
1.92933425e-10, 1.92933425e-10, 1.92933425e-10, 1.92933425e-10,
9.40773578e-12, 9.40773578e-12, 9.40773578e-12, 9.40773578e-12,
4.13570502e-13, 4.13570502e-13, 4.13570502e-13, 4.13570502e-13,
1.62288270e-14, 1.62288270e-14, 1.62288270e-14, 1.62288270e-14,
5.61211316e-16, 5.61211316e-16, 5.61211316e-16, 5.61211316e-16,
1.04414501e-17, 1.04414501e-17, 1.04414501e-17, 1.04414501e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999992,
0.99999992, 0.99999992, 0.99999992, 0.99999889, 0.99999889,
0.99999889, 0.99999889, 0.99998689, 0.99998689, 0.99998689,
0.99998689, 0.99987131, 0.99987131, 0.99987131, 0.99987131,
0.99897815, 0.99897815, 0.99897815, 0.99897815, 0.99365816,
0.99365816, 0.99365816, 0.99365816, 0.9705574 , 0.9705574 ,
0.9705574 , 0.9705574 , 0.90168105, 0.90168105, 0.90168105,
0.90168105, 0.76473302, 0.76473302, 0.76473302, 0.76473302,
0.60049273, 0.60049273, 0.60049273, 0.60049273, 0.49550855,
0.49550855, 0.49550855, 0.49550855, 0.47006662, 0.47006662,
0.47006662, 0.47006662, 0.47260804, 0.47260804, 0.47260804,
0.47260804, 0.47428975, 0.47428975, 0.47428975, 0.47428975,
0.46714499, 0.46714499, 0.46714499, 0.46714499, 0.43304518,
0.43304518, 0.43304518, 0.43304518, 0.32159783, 0.32159783,
0.32159783, 0.32159783, 0.15419082, 0.15419082, 0.15419082,
0.15419082, 0.1050973 , 0.1050973 , 0.1050973 , 0.1050973 ,
0.10038332, 0.10038332, 0.10038332, 0.10038332, 0.10002764,
0.10002764, 0.10002764, 0.10002764, 0.10000193, 0.10000193,
0.10000193, 0.10000193, 0.10000013, 0.10000013, 0.10000013,
0.10000013, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999837, 0.99999837,
0.99999837, 0.99999837, 0.9999828 , 0.9999828 , 0.9999828 ,
0.9999828 , 0.99984871, 0.99984871, 0.99984871, 0.99984871,
0.99891955, 0.99891955, 0.99891955, 0.99891955, 0.99394315,
0.99394315, 0.99394315, 0.99394315, 0.97437567, 0.97437567,
0.97437567, 0.97437567, 0.92055976, 0.92055976, 0.92055976,
0.92055976, 0.81822558, 0.81822558, 0.81822558, 0.81822558,
0.69670438, 0.69670438, 0.69670438, 0.69670438, 0.62488661,
0.62488661, 0.62488661, 0.62488661, 0.59118008, 0.59118008,
0.59118008, 0.59118008, 0.5544861 , 0.5544861 , 0.5544861 ,
0.5544861 , 0.50269605, 0.50269605, 0.50269605, 0.50269605,
0.4331649 , 0.4331649 , 0.4331649 , 0.4331649 , 0.36021979,
0.36021979, 0.36021979, 0.36021979, 0.29637809, 0.29637809,
0.29637809, 0.29637809, 0.21820395, 0.21820395, 0.21820395,
0.21820395, 0.14411847, 0.14411847, 0.14411847, 0.14411847,
0.126943 , 0.126943 , 0.126943 , 0.126943 , 0.12515306,
0.12515306, 0.12515306, 0.12515306, 0.12501123, 0.12501123,
0.12501123, 0.12501123, 0.1250008 , 0.1250008 , 0.1250008 ,
0.1250008 , 0.12500005, 0.12500005, 0.12500005, 0.12500005,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
7.50001925e-01, 7.50001925e-01, 7.50001925e-01, 7.50001925e-01,
7.50020345e-01, 7.50020345e-01, 7.50020345e-01, 7.50020345e-01,
7.50178950e-01, 7.50178950e-01, 7.50178950e-01, 7.50178950e-01,
7.51277500e-01, 7.51277500e-01, 7.51277500e-01, 7.51277500e-01,
7.57165560e-01, 7.57165560e-01, 7.57165560e-01, 7.57165560e-01,
7.80529643e-01, 7.80529643e-01, 7.80529643e-01, 7.80529643e-01,
8.47148531e-01, 8.47148531e-01, 8.47148531e-01, 8.47148531e-01,
9.85270426e-01, 9.85270426e-01, 9.85270426e-01, 9.85270426e-01,
1.15957712e+00, 1.15957712e+00, 1.15957712e+00, 1.15957712e+00,
1.29566032e+00, 1.29566032e+00, 1.29566032e+00, 1.29566032e+00,
1.35118587e+00, 1.35118587e+00, 1.35118587e+00, 1.35118587e+00,
1.36601672e+00, 1.36601672e+00, 1.36601672e+00, 1.36601672e+00,
1.36997305e+00, 1.36997305e+00, 1.36997305e+00, 1.36997305e+00,
1.36942484e+00, 1.36942484e+00, 1.36942484e+00, 1.36942484e+00,
1.34862905e+00, 1.34862905e+00, 1.34862905e+00, 1.34862905e+00,
1.23673227e+00, 1.23673227e+00, 1.23673227e+00, 1.23673227e+00,
8.18685529e-01, 8.18685529e-01, 8.18685529e-01, 8.18685529e-01,
1.89365930e-01, 1.89365930e-01, 1.89365930e-01, 1.89365930e-01,
1.77483277e-02, 1.77483277e-02, 1.77483277e-02, 1.77483277e-02,
1.32231275e-03, 1.32231275e-03, 1.32231275e-03, 1.32231275e-03,
9.55485885e-05, 9.55485885e-05, 9.55485885e-05, 9.55485885e-05,
6.74007898e-06, 6.74007898e-06, 6.74007898e-06, 6.74007898e-06,
4.58238639e-07, 4.58238639e-07, 4.58238639e-07, 4.58238639e-07,
2.96179808e-08, 2.96179808e-08, 2.96179808e-08, 2.96179808e-08,
1.79683460e-09, 1.79683460e-09, 1.79683460e-09, 1.79683460e-09,
1.01205791e-10, 1.01205791e-10, 1.01205791e-10, 1.01205791e-10,
5.24439143e-12, 5.24439143e-12, 5.24439143e-12, 5.24439143e-12,
2.48169579e-13, 2.48169579e-13, 2.48169579e-13, 2.48169579e-13,
1.06030558e-14, 1.06030558e-14, 1.06030558e-14, 1.06030558e-14,
3.88917738e-16, 3.88917738e-16, 3.88917738e-16, 3.88917738e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999982,
0.99999982, 0.99999982, 0.99999982, 0.99999772, 0.99999772,
0.99999772, 0.99999772, 0.99997593, 0.99997593, 0.99997593,
0.99997593, 0.99978828, 0.99978828, 0.99978828, 0.99978828,
0.99848943, 0.99848943, 0.99848943, 0.99848943, 0.99155515,
0.99155515, 0.99155515, 0.99155515, 0.964514 , 0.964514 ,
0.964514 , 0.964514 , 0.89148856, 0.89148856, 0.89148856,
0.89148856, 0.75731665, 0.75731665, 0.75731665, 0.75731665,
0.6041739 , 0.6041739 , 0.6041739 , 0.6041739 , 0.50038286,
0.50038286, 0.50038286, 0.50038286, 0.46850918, 0.46850918,
0.46850918, 0.46850918, 0.46942557, 0.46942557, 0.46942557,
0.46942557, 0.47328763, 0.47328763, 0.47328763, 0.47328763,
0.47194986, 0.47194986, 0.47194986, 0.47194986, 0.46019101,
0.46019101, 0.46019101, 0.46019101, 0.41012287, 0.41012287,
0.41012287, 0.41012287, 0.26737713, 0.26737713, 0.26737713,
0.26737713, 0.12780983, 0.12780983, 0.12780983, 0.12780983,
0.1023651 , 0.1023651 , 0.1023651 , 0.1023651 , 0.10017499,
0.10017499, 0.10017499, 0.10017499, 0.10001264, 0.10001264,
0.10001264, 0.10001264, 0.10000089, 0.10000089, 0.10000089,
0.10000089, 0.10000006, 0.10000006, 0.10000006, 0.10000006,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999972,
0.99999972, 0.99999972, 0.99999972, 0.99999688, 0.99999688,
0.99999688, 0.99999688, 0.99997019, 0.99997019, 0.99997019,
0.99997019, 0.99976264, 0.99976264, 0.99976264, 0.99976264,
0.99846262, 0.99846262, 0.99846262, 0.99846262, 0.9921662 ,
0.9921662 , 0.9921662 , 0.9921662 , 0.96972408, 0.96972408,
0.96972408, 0.96972408, 0.91324871, 0.91324871, 0.91324871,
0.91324871, 0.81299809, 0.81299809, 0.81299809, 0.81299809,
0.69707716, 0.69707716, 0.69707716, 0.69707716, 0.6262992 ,
0.6262992 , 0.6262992 , 0.6262992 , 0.59760474, 0.59760474,
0.59760474, 0.59760474, 0.56779664, 0.56779664, 0.56779664,
0.56779664, 0.52592744, 0.52592744, 0.52592744, 0.52592744,
0.46563753, 0.46563753, 0.46563753, 0.46563753, 0.39326426,
0.39326426, 0.39326426, 0.39326426, 0.33284785, 0.33284785,
0.33284785, 0.33284785, 0.27504145, 0.27504145, 0.27504145,
0.27504145, 0.19106843, 0.19106843, 0.19106843, 0.19106843,
0.13511522, 0.13511522, 0.13511522, 0.13511522, 0.12591513,
0.12591513, 0.12591513, 0.12591513, 0.12507031, 0.12507031,
0.12507031, 0.12507031, 0.12500515, 0.12500515, 0.12500515,
0.12500515, 0.12500037, 0.12500037, 0.12500037, 0.12500037,
0.12500003, 0.12500003, 0.12500003, 0.12500003, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
7.50000329e-01, 7.50000329e-01, 7.50000329e-01, 7.50000329e-01,
7.50003695e-01, 7.50003695e-01, 7.50003695e-01, 7.50003695e-01,
7.50035264e-01, 7.50035264e-01, 7.50035264e-01, 7.50035264e-01,
7.50280759e-01, 7.50280759e-01, 7.50280759e-01, 7.50280759e-01,
7.51818086e-01, 7.51818086e-01, 7.51818086e-01, 7.51818086e-01,
7.59276172e-01, 7.59276172e-01, 7.59276172e-01, 7.59276172e-01,
7.86169462e-01, 7.86169462e-01, 7.86169462e-01, 7.86169462e-01,
8.56546408e-01, 8.56546408e-01, 8.56546408e-01, 8.56546408e-01,
9.92456196e-01, 9.92456196e-01, 9.92456196e-01, 9.92456196e-01,
1.15763323e+00, 1.15763323e+00, 1.15763323e+00, 1.15763323e+00,
1.29146040e+00, 1.29146040e+00, 1.29146040e+00, 1.29146040e+00,
1.34573538e+00, 1.34573538e+00, 1.34573538e+00, 1.34573538e+00,
1.36098136e+00, 1.36098136e+00, 1.36098136e+00, 1.36098136e+00,
1.36604284e+00, 1.36604284e+00, 1.36604284e+00, 1.36604284e+00,
1.36966028e+00, 1.36966028e+00, 1.36966028e+00, 1.36966028e+00,
1.36622633e+00, 1.36622633e+00, 1.36622633e+00, 1.36622633e+00,
1.32998311e+00, 1.32998311e+00, 1.32998311e+00, 1.32998311e+00,
1.15597656e+00, 1.15597656e+00, 1.15597656e+00, 1.15597656e+00,
6.12942776e-01, 6.12942776e-01, 6.12942776e-01, 6.12942776e-01,
9.84564756e-02, 9.84564756e-02, 9.84564756e-02, 9.84564756e-02,
8.15622587e-03, 8.15622587e-03, 8.15622587e-03, 8.15622587e-03,
6.03159348e-04, 6.03159348e-04, 6.03159348e-04, 6.03159348e-04,
4.37065832e-05, 4.37065832e-05, 4.37065832e-05, 4.37065832e-05,
3.10316624e-06, 3.10316624e-06, 3.10316624e-06, 3.10316624e-06,
2.13754454e-07, 2.13754454e-07, 2.13754454e-07, 2.13754454e-07,
1.41094631e-08, 1.41094631e-08, 1.41094631e-08, 1.41094631e-08,
8.82092666e-10, 8.82092666e-10, 8.82092666e-10, 8.82092666e-10,
5.16973157e-11, 5.16973157e-11, 5.16973157e-11, 5.16973157e-11,
2.81588859e-12, 2.81588859e-12, 2.81588859e-12, 2.81588859e-12,
1.41485550e-13, 1.41485550e-13, 1.41485550e-13, 1.41485550e-13,
6.51607025e-15, 6.51607025e-15, 6.51607025e-15, 6.51607025e-15,
2.40152978e-16, 2.40152978e-16, 2.40152978e-16, 2.40152978e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999961,
0.99999961, 0.99999961, 0.99999961, 0.99999563, 0.99999563,
0.99999563, 0.99999563, 0.99995828, 0.99995828, 0.99995828,
0.99995828, 0.99966785, 0.99966785, 0.99966785, 0.99966785,
0.99785087, 0.99785087, 0.99785087, 0.99785087, 0.98908149,
0.98908149, 0.98908149, 0.98908149, 0.9581009 , 0.9581009 ,
0.9581009 , 0.9581009 , 0.88161392, 0.88161392, 0.88161392,
0.88161392, 0.75058451, 0.75058451, 0.75058451, 0.75058451,
0.60688233, 0.60688233, 0.60688233, 0.60688233, 0.50620558,
0.50620558, 0.50620558, 0.50620558, 0.46870616, 0.46870616,
0.46870616, 0.46870616, 0.46692176, 0.46692176, 0.46692176,
0.46692176, 0.47084207, 0.47084207, 0.47084207, 0.47084207,
0.47212989, 0.47212989, 0.47212989, 0.47212989, 0.46881527,
0.46881527, 0.46881527, 0.46881527, 0.45065004, 0.45065004,
0.45065004, 0.45065004, 0.37876151, 0.37876151, 0.37876151,
0.37876151, 0.21224192, 0.21224192, 0.21224192, 0.21224192,
0.11373333, 0.11373333, 0.11373333, 0.11373333, 0.10108205,
0.10108205, 0.10108205, 0.10108205, 0.1000798 , 0.1000798 ,
0.1000798 , 0.1000798 , 0.10000578, 0.10000578, 0.10000578,
0.10000578, 0.10000041, 0.10000041, 0.10000041, 0.10000041,
0.10000003, 0.10000003, 0.10000003, 0.10000003, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999945,
0.99999945, 0.99999945, 0.99999945, 0.99999434, 0.99999434,
0.99999434, 0.99999434, 0.99995077, 0.99995077, 0.99995077,
0.99995077, 0.99964227, 0.99964227, 0.99964227, 0.99964227,
0.99788241, 0.99788241, 0.99788241, 0.99788241, 0.99011845,
0.99011845, 0.99011845, 0.99011845, 0.96484327, 0.96484327,
0.96484327, 0.96484327, 0.90617454, 0.90617454, 0.90617454,
0.90617454, 0.80826973, 0.80826973, 0.80826973, 0.80826973,
0.69774371, 0.69774371, 0.69774371, 0.69774371, 0.62678051,
0.62678051, 0.62678051, 0.62678051, 0.60206381, 0.60206381,
0.60206381, 0.60206381, 0.57792713, 0.57792713, 0.57792713,
0.57792713, 0.54425972, 0.54425972, 0.54425972, 0.54425972,
0.49346931, 0.49346931, 0.49346931, 0.49346931, 0.42544549,
0.42544549, 0.42544549, 0.42544549, 0.36171435, 0.36171435,
0.36171435, 0.36171435, 0.31197099, 0.31197099, 0.31197099,
0.31197099, 0.25437815, 0.25437815, 0.25437815, 0.25437815,
0.16685114, 0.16685114, 0.16685114, 0.16685114, 0.13005985,
0.13005985, 0.13005985, 0.13005985, 0.1254259 , 0.1254259 ,
0.1254259 , 0.1254259 , 0.12503221, 0.12503221, 0.12503221,
0.12503221, 0.12500236, 0.12500236, 0.12500236, 0.12500236,
0.12500017, 0.12500017, 0.12500017, 0.12500017, 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
7.50000056e-01, 7.50000056e-01, 7.50000056e-01, 7.50000056e-01,
7.50000657e-01, 7.50000657e-01, 7.50000657e-01, 7.50000657e-01,
7.50006699e-01, 7.50006699e-01, 7.50006699e-01, 7.50006699e-01,
7.50058238e-01, 7.50058238e-01, 7.50058238e-01, 7.50058238e-01,
7.50423153e-01, 7.50423153e-01, 7.50423153e-01, 7.50423153e-01,
7.52504789e-01, 7.52504789e-01, 7.52504789e-01, 7.52504789e-01,
7.61712941e-01, 7.61712941e-01, 7.61712941e-01, 7.61712941e-01,
7.92115818e-01, 7.92115818e-01, 7.92115818e-01, 7.92115818e-01,
8.65693722e-01, 8.65693722e-01, 8.65693722e-01, 8.65693722e-01,
9.99009811e-01, 9.99009811e-01, 9.99009811e-01, 9.99009811e-01,
1.15520654e+00, 1.15520654e+00, 1.15520654e+00, 1.15520654e+00,
1.28768450e+00, 1.28768450e+00, 1.28768450e+00, 1.28768450e+00,
1.34268320e+00, 1.34268320e+00, 1.34268320e+00, 1.34268320e+00,
1.35715119e+00, 1.35715119e+00, 1.35715119e+00, 1.35715119e+00,
1.36145245e+00, 1.36145245e+00, 1.36145245e+00, 1.36145245e+00,
1.36744320e+00, 1.36744320e+00, 1.36744320e+00, 1.36744320e+00,
1.36938027e+00, 1.36938027e+00, 1.36938027e+00, 1.36938027e+00,
1.36032906e+00, 1.36032906e+00, 1.36032906e+00, 1.36032906e+00,
1.30083630e+00, 1.30083630e+00, 1.30083630e+00, 1.30083630e+00,
1.03904720e+00, 1.03904720e+00, 1.03904720e+00, 1.03904720e+00,
4.03867617e-01, 4.03867617e-01, 4.03867617e-01, 4.03867617e-01,
4.78324169e-02, 4.78324169e-02, 4.78324169e-02, 4.78324169e-02,
3.73133151e-03, 3.73133151e-03, 3.73133151e-03, 3.73133151e-03,
2.75051151e-04, 2.75051151e-04, 2.75051151e-04, 2.75051151e-04,
1.99786506e-05, 1.99786506e-05, 1.99786506e-05, 1.99786506e-05,
1.42705014e-06, 1.42705014e-06, 1.42705014e-06, 1.42705014e-06,
9.93370281e-08, 9.93370281e-08, 9.93370281e-08, 9.93370281e-08,
6.66943143e-09, 6.66943143e-09, 6.66943143e-09, 6.66943143e-09,
4.27344831e-10, 4.27344831e-10, 4.27344831e-10, 4.27344831e-10,
2.58814547e-11, 2.58814547e-11, 2.58814547e-11, 2.58814547e-11,
1.46936578e-12, 1.46936578e-12, 1.46936578e-12, 1.46936578e-12,
7.76106587e-14, 7.76106587e-14, 7.76106587e-14, 7.76106587e-14,
3.75314846e-15, 3.75314846e-15, 3.75314846e-15, 3.75314846e-15,
1.59879132e-16, 1.59879132e-16, 1.59879132e-16, 1.59879132e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999922,
0.99999922, 0.99999922, 0.99999922, 0.99999207, 0.99999207,
0.99999207, 0.99999207, 0.99993109, 0.99993109, 0.99993109,
0.99993109, 0.99949942, 0.99949942, 0.99949942, 0.99949942,
0.9970403 , 0.9970403 , 0.9970403 , 0.9970403 , 0.98623335,
0.98623335, 0.98623335, 0.98623335, 0.95138454, 0.95138454,
0.95138454, 0.95138454, 0.87208823, 0.87208823, 0.87208823,
0.87208823, 0.74445435, 0.74445435, 0.74445435, 0.74445435,
0.60875561, 0.60875561, 0.60875561, 0.60875561, 0.51204856,
0.51204856, 0.51204856, 0.51204856, 0.47069723, 0.47069723,
0.47069723, 0.47069723, 0.46531969, 0.46531969, 0.46531969,
0.46531969, 0.46797682, 0.46797682, 0.46797682, 0.46797682,
0.47094798, 0.47094798, 0.47094798, 0.47094798, 0.47050583,
0.47050583, 0.47050583, 0.47050583, 0.4648433 , 0.4648433 ,
0.4648433 , 0.4648433 , 0.43679273, 0.43679273, 0.43679273,
0.43679273, 0.33696764, 0.33696764, 0.33696764, 0.33696764,
0.16596212, 0.16596212, 0.16596212, 0.16596212, 0.10647712,
0.10647712, 0.10647712, 0.10647712, 0.10049417, 0.10049417,
0.10049417, 0.10049417, 0.10003639, 0.10003639, 0.10003639,
0.10003639, 0.10000264, 0.10000264, 0.10000264, 0.10000264,
0.10000019, 0.10000019, 0.10000019, 0.10000019, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999895,
0.99999895, 0.99999895, 0.99999895, 0.99999022, 0.99999022,
0.99999022, 0.99999022, 0.99992199, 0.99992199, 0.99992199,
0.99992199, 0.99947912, 0.99947912, 0.99947912, 0.99947912,
0.99716379, 0.99716379, 0.99716379, 0.99716379, 0.98780171,
0.98780171, 0.98780171, 0.98780171, 0.95977919, 0.95977919,
0.95977919, 0.95977919, 0.899356 , 0.899356 , 0.899356 ,
0.899356 , 0.80398103, 0.80398103, 0.80398103, 0.80398103,
0.69885064, 0.69885064, 0.69885064, 0.69885064, 0.62663048,
0.62663048, 0.62663048, 0.62663048, 0.60456203, 0.60456203,
0.60456203, 0.60456203, 0.58574218, 0.58574218, 0.58574218,
0.58574218, 0.55889671, 0.55889671, 0.55889671, 0.55889671,
0.51652074, 0.51652074, 0.51652074, 0.51652074, 0.45677399,
0.45677399, 0.45677399, 0.45677399, 0.38843992, 0.38843992,
0.38843992, 0.38843992, 0.33857154, 0.33857154, 0.33857154,
0.33857154, 0.2958245 , 0.2958245 , 0.2958245 , 0.2958245 ,
0.23037144, 0.23037144, 0.23037144, 0.23037144, 0.14866712,
0.14866712, 0.14866712, 0.14866712, 0.12746378, 0.12746378,
0.12746378, 0.12746378, 0.12519715, 0.12519715, 0.12519715,
0.12519715, 0.12501472, 0.12501472, 0.12501472, 0.12501472,
0.12500108, 0.12500108, 0.12500108, 0.12500108, 0.12500008,
0.12500008, 0.12500008, 0.12500008, 0.12500001, 0.12500001,
0.12500001, 0.12500001, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000115e-01, 7.50000115e-01, 7.50000115e-01, 7.50000115e-01,
7.50001238e-01, 7.50001238e-01, 7.50001238e-01, 7.50001238e-01,
7.50011569e-01, 7.50011569e-01, 7.50011569e-01, 7.50011569e-01,
7.50092289e-01, 7.50092289e-01, 7.50092289e-01, 7.50092289e-01,
7.50616160e-01, 7.50616160e-01, 7.50616160e-01, 7.50616160e-01,
7.53355737e-01, 7.53355737e-01, 7.53355737e-01, 7.53355737e-01,
7.64475707e-01, 7.64475707e-01, 7.64475707e-01, 7.64475707e-01,
7.98316114e-01, 7.98316114e-01, 7.98316114e-01, 7.98316114e-01,
8.74560291e-01, 8.74560291e-01, 8.74560291e-01, 8.74560291e-01,
1.00500047e+00, 1.00500047e+00, 1.00500047e+00, 1.00500047e+00,
1.15260232e+00, 1.15260232e+00, 1.15260232e+00, 1.15260232e+00,
1.28340256e+00, 1.28340256e+00, 1.28340256e+00, 1.28340256e+00,
1.34114330e+00, 1.34114330e+00, 1.34114330e+00, 1.34114330e+00,
1.35501138e+00, 1.35501138e+00, 1.35501138e+00, 1.35501138e+00,
1.35810478e+00, 1.35810478e+00, 1.35810478e+00, 1.35810478e+00,
1.36336774e+00, 1.36336774e+00, 1.36336774e+00, 1.36336774e+00,
1.36847879e+00, 1.36847879e+00, 1.36847879e+00, 1.36847879e+00,
1.36811377e+00, 1.36811377e+00, 1.36811377e+00, 1.36811377e+00,
1.35072599e+00, 1.35072599e+00, 1.35072599e+00, 1.35072599e+00,
1.25426560e+00, 1.25426560e+00, 1.25426560e+00, 1.25426560e+00,
8.79763139e-01, 8.79763139e-01, 8.79763139e-01, 8.79763139e-01,
2.32057473e-01, 2.32057473e-01, 2.32057473e-01, 2.32057473e-01,
2.26258785e-02, 2.26258785e-02, 2.26258785e-02, 2.26258785e-02,
1.70706147e-03, 1.70706147e-03, 1.70706147e-03, 1.70706147e-03,
1.25313284e-04, 1.25313284e-04, 1.25313284e-04, 1.25313284e-04,
9.12735833e-06, 9.12735833e-06, 9.12735833e-06, 9.12735833e-06,
6.55213907e-07, 6.55213907e-07, 6.55213907e-07, 6.55213907e-07,
4.60110799e-08, 4.60110799e-08, 4.60110799e-08, 4.60110799e-08,
3.13257583e-09, 3.13257583e-09, 3.13257583e-09, 3.13257583e-09,
2.04833966e-10, 2.04833966e-10, 2.04833966e-10, 2.04833966e-10,
1.27491473e-11, 1.27491473e-11, 1.27491473e-11, 1.27491473e-11,
7.49384168e-13, 7.49384168e-13, 7.49384168e-13, 7.49384168e-13,
4.12715433e-14, 4.12715433e-14, 4.12715433e-14, 4.12715433e-14,
2.08438071e-15, 2.08438071e-15, 2.08438071e-15, 2.08438071e-15,
6.95966513e-17, 6.95966513e-17, 6.95966513e-17, 6.95966513e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999854,
0.99999854, 0.99999854, 0.99999854, 0.99998631, 0.99998631,
0.99998631, 0.99998631, 0.99989081, 0.99989081, 0.99989081,
0.99989081, 0.99927118, 0.99927118, 0.99927118, 0.99927118,
0.99603677, 0.99603677, 0.99603677, 0.99603677, 0.98301421,
0.98301421, 0.98301421, 0.98301421, 0.94442958, 0.94442958,
0.94442958, 0.94442958, 0.86293221, 0.86293221, 0.86293221,
0.86293221, 0.73885742, 0.73885742, 0.73885742, 0.73885742,
0.61009357, 0.61009357, 0.61009357, 0.61009357, 0.51726091,
0.51726091, 0.51726091, 0.51726091, 0.47391825, 0.47391825,
0.47391825, 0.47391825, 0.46487842, 0.46487842, 0.46487842,
0.46487842, 0.46589916, 0.46589916, 0.46589916, 0.46589916,
0.46870505, 0.46870505, 0.46870505, 0.46870505, 0.47008932,
0.47008932, 0.47008932, 0.47008932, 0.4686757 , 0.4686757 ,
0.4686757 , 0.4686757 , 0.45927249, 0.45927249, 0.45927249,
0.45927249, 0.41693776, 0.41693776, 0.41693776, 0.41693776,
0.28500491, 0.28500491, 0.28500491, 0.28500491, 0.13470714,
0.13470714, 0.13470714, 0.13470714, 0.10302215, 0.10302215,
0.10302215, 0.10302215, 0.10022593, 0.10022593, 0.10022593,
0.10022593, 0.10001658, 0.10001658, 0.10001658, 0.10001658,
0.10000121, 0.10000121, 0.10000121, 0.10000121, 0.10000009,
0.10000009, 0.10000009, 0.10000009, 0.10000001, 0.10000001,
0.10000001, 0.10000001, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999981, 0.99999981, 0.99999981, 0.99999981, 0.99999812,
0.99999812, 0.99999812, 0.99999812, 0.99998381, 0.99998381,
0.99998381, 0.99998381, 0.99988072, 0.99988072, 0.99988072,
0.99988072, 0.99926394, 0.99926394, 0.99926394, 0.99926394,
0.99629293, 0.99629293, 0.99629293, 0.99629293, 0.98522251,
0.98522251, 0.98522251, 0.98522251, 0.95457584, 0.95457584,
0.95457584, 0.95457584, 0.89280503, 0.89280503, 0.89280503,
0.89280503, 0.80007672, 0.80007672, 0.80007672, 0.80007672,
0.70045666, 0.70045666, 0.70045666, 0.70045666, 0.62631673,
0.62631673, 0.62631673, 0.62631673, 0.60514204, 0.60514204,
0.60514204, 0.60514204, 0.59141774, 0.59141774, 0.59141774,
0.59141774, 0.57060546, 0.57060546, 0.57060546, 0.57060546,
0.53581477, 0.53581477, 0.53581477, 0.53581477, 0.48414835,
0.48414835, 0.48414835, 0.48414835, 0.41731063, 0.41731063,
0.41731063, 0.41731063, 0.36078704, 0.36078704, 0.36078704,
0.36078704, 0.32184882, 0.32184882, 0.32184882, 0.32184882,
0.28122767, 0.28122767, 0.28122767, 0.28122767, 0.20285998,
0.20285998, 0.20285998, 0.20285998, 0.13769277, 0.13769277,
0.13769277, 0.13769277, 0.12617394, 0.12617394, 0.12617394,
0.12617394, 0.12509074, 0.12509074, 0.12509074, 0.12509074,
0.12500673, 0.12500673, 0.12500673, 0.12500673, 0.12500049,
0.12500049, 0.12500049, 0.12500049, 0.12500004, 0.12500004,
0.12500004, 0.12500004, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000020e-01, 7.50000020e-01, 7.50000020e-01, 7.50000020e-01,
7.50000224e-01, 7.50000224e-01, 7.50000224e-01, 7.50000224e-01,
7.50002223e-01, 7.50002223e-01, 7.50002223e-01, 7.50002223e-01,
7.50019160e-01, 7.50019160e-01, 7.50019160e-01, 7.50019160e-01,
7.50141119e-01, 7.50141119e-01, 7.50141119e-01, 7.50141119e-01,
7.50870743e-01, 7.50870743e-01, 7.50870743e-01, 7.50870743e-01,
7.54387642e-01, 7.54387642e-01, 7.54387642e-01, 7.54387642e-01,
7.67558867e-01, 7.67558867e-01, 7.67558867e-01, 7.67558867e-01,
8.04718986e-01, 8.04718986e-01, 8.04718986e-01, 8.04718986e-01,
8.83124089e-01, 8.83124089e-01, 8.83124089e-01, 8.83124089e-01,
1.01048782e+00, 1.01048782e+00, 1.01048782e+00, 1.01048782e+00,
1.15015373e+00, 1.15015373e+00, 1.15015373e+00, 1.15015373e+00,
1.27828995e+00, 1.27828995e+00, 1.27828995e+00, 1.27828995e+00,
1.33996420e+00, 1.33996420e+00, 1.33996420e+00, 1.33996420e+00,
1.35434258e+00, 1.35434258e+00, 1.35434258e+00, 1.35434258e+00,
1.35651250e+00, 1.35651250e+00, 1.35651250e+00, 1.35651250e+00,
1.35943170e+00, 1.35943170e+00, 1.35943170e+00, 1.35943170e+00,
1.36562928e+00, 1.36562928e+00, 1.36562928e+00, 1.36562928e+00,
1.36871828e+00, 1.36871828e+00, 1.36871828e+00, 1.36871828e+00,
1.36559918e+00, 1.36559918e+00, 1.36559918e+00, 1.36559918e+00,
1.33410068e+00, 1.33410068e+00, 1.33410068e+00, 1.33410068e+00,
1.18316118e+00, 1.18316118e+00, 1.18316118e+00, 1.18316118e+00,
6.83501416e-01, 6.83501416e-01, 6.83501416e-01, 6.83501416e-01,
1.23082855e-01, 1.23082855e-01, 1.23082855e-01, 1.23082855e-01,
1.05135867e-02, 1.05135867e-02, 1.05135867e-02, 1.05135867e-02,
7.79480203e-04, 7.79480203e-04, 7.79480203e-04, 7.79480203e-04,
5.71875744e-05, 5.71875744e-05, 5.71875744e-05, 5.71875744e-05,
4.16908647e-06, 4.16908647e-06, 4.16908647e-06, 4.16908647e-06,
3.00491897e-07, 3.00491897e-07, 3.00491897e-07, 3.00491897e-07,
2.12578537e-08, 2.12578537e-08, 2.12578537e-08, 2.12578537e-08,
1.46423018e-09, 1.46423018e-09, 1.46423018e-09, 1.46423018e-09,
9.73781859e-11, 9.73781859e-11, 9.73781859e-11, 9.73781859e-11,
6.20162096e-12, 6.20162096e-12, 6.20162096e-12, 6.20162096e-12,
3.75332869e-13, 3.75332869e-13, 3.75332869e-13, 3.75332869e-13,
2.14560454e-14, 2.14560454e-14, 2.14560454e-14, 2.14560454e-14,
1.07221018e-15, 1.07221018e-15, 1.07221018e-15, 1.07221018e-15,
3.44235441e-17, 3.44235441e-17, 3.44235441e-17, 3.44235441e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999737,
0.99999737, 0.99999737, 0.99999737, 0.99997733, 0.99997733,
0.99997733, 0.99997733, 0.99983304, 0.99983304, 0.99983304,
0.99983304, 0.9989702 , 0.9989702 , 0.9989702 , 0.9989702 ,
0.99482119, 0.99482119, 0.99482119, 0.99482119, 0.97943416,
0.97943416, 0.97943416, 0.97943416, 0.93729763, 0.93729763,
0.93729763, 0.93729763, 0.85415822, 0.85415822, 0.85415822,
0.85415822, 0.73373529, 0.73373529, 0.73373529, 0.73373529,
0.6112099 , 0.6112099 , 0.6112099 , 0.6112099 , 0.52160141,
0.52160141, 0.52160141, 0.52160141, 0.47759878, 0.47759878,
0.47759878, 0.47759878, 0.465481 , 0.465481 , 0.465481 ,
0.465481 , 0.46501776, 0.46501776, 0.46501776, 0.46501776,
0.46641955, 0.46641955, 0.46641955, 0.46641955, 0.46863112,
0.46863112, 0.46863112, 0.46863112, 0.46903125, 0.46903125,
0.46903125, 0.46903125, 0.466292 , 0.466292 , 0.466292 ,
0.466292 , 0.45159727, 0.45159727, 0.45159727, 0.45159727,
0.38874303, 0.38874303, 0.38874303, 0.38874303, 0.22928284,
0.22928284, 0.22928284, 0.22928284, 0.11739066, 0.11739066,
0.11739066, 0.11739066, 0.10139613, 0.10139613, 0.10139613,
0.10139613, 0.10010314, 0.10010314, 0.10010314, 0.10010314,
0.10000757, 0.10000757, 0.10000757, 0.10000757, 0.10000055,
0.10000055, 0.10000055, 0.10000055, 0.10000004, 0.10000004,
0.10000004, 0.10000004, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999965, 0.99999965, 0.99999965, 0.99999965, 0.99999676,
0.99999676, 0.99999676, 0.99999676, 0.99997414, 0.99997414,
0.99997414, 0.99997414, 0.99982322, 0.99982322, 0.99982322,
0.99982322, 0.99898687, 0.99898687, 0.99898687, 0.99898687,
0.99525772, 0.99525772, 0.99525772, 0.99525772, 0.98239165,
0.98239165, 0.98239165, 0.98239165, 0.94927458, 0.94927458,
0.94927458, 0.94927458, 0.88652829, 0.88652829, 0.88652829,
0.88652829, 0.79650788, 0.79650788, 0.79650788, 0.79650788,
0.70249376, 0.70249376, 0.70249376, 0.70249376, 0.62636848,
0.62636848, 0.62636848, 0.62636848, 0.60412838, 0.60412838,
0.60412838, 0.60412838, 0.59491245, 0.59491245, 0.59491245,
0.59491245, 0.57973366, 0.57973366, 0.57973366, 0.57973366,
0.55197703, 0.55197703, 0.55197703, 0.55197703, 0.50772236,
0.50772236, 0.50772236, 0.50772236, 0.44720509, 0.44720509,
0.44720509, 0.44720509, 0.38317069, 0.38317069, 0.38317069,
0.38317069, 0.34144572, 0.34144572, 0.34144572, 0.34144572,
0.30939376, 0.30939376, 0.30939376, 0.30939376, 0.26448525,
0.26448525, 0.26448525, 0.26448525, 0.17617514, 0.17617514,
0.17617514, 0.17617514, 0.1314537 , 0.1314537 , 0.1314537 ,
0.1314537 , 0.1255488 , 0.1255488 , 0.1255488 , 0.1255488 ,
0.12504168, 0.12504168, 0.12504168, 0.12504168, 0.12500308,
0.12500308, 0.12500308, 0.12500308, 0.12500022, 0.12500022,
0.12500022, 0.12500022, 0.12500002, 0.12500002, 0.12500002,
0.12500002, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000040e-01, 7.50000040e-01, 7.50000040e-01, 7.50000040e-01,
7.50000416e-01, 7.50000416e-01, 7.50000416e-01, 7.50000416e-01,
7.50003829e-01, 7.50003829e-01, 7.50003829e-01, 7.50003829e-01,
7.50030595e-01, 7.50030595e-01, 7.50030595e-01, 7.50030595e-01,
7.50209148e-01, 7.50209148e-01, 7.50209148e-01, 7.50209148e-01,
7.51198600e-01, 7.51198600e-01, 7.51198600e-01, 7.51198600e-01,
7.55615304e-01, 7.55615304e-01, 7.55615304e-01, 7.55615304e-01,
7.70951868e-01, 7.70951868e-01, 7.70951868e-01, 7.70951868e-01,
8.11275275e-01, 8.11275275e-01, 8.11275275e-01, 8.11275275e-01,
8.91370127e-01, 8.91370127e-01, 8.91370127e-01, 8.91370127e-01,
1.01552397e+00, 1.01552397e+00, 1.01552397e+00, 1.01552397e+00,
1.14807632e+00, 1.14807632e+00, 1.14807632e+00, 1.14807632e+00,
1.27251928e+00, 1.27251928e+00, 1.27251928e+00, 1.27251928e+00,
1.33824106e+00, 1.33824106e+00, 1.33824106e+00, 1.33824106e+00,
1.35468133e+00, 1.35468133e+00, 1.35468133e+00, 1.35468133e+00,
1.35603990e+00, 1.35603990e+00, 1.35603990e+00, 1.35603990e+00,
1.35749304e+00, 1.35749304e+00, 1.35749304e+00, 1.35749304e+00,
1.36161701e+00, 1.36161701e+00, 1.36161701e+00, 1.36161701e+00,
1.36709517e+00, 1.36709517e+00, 1.36709517e+00, 1.36709517e+00,
1.36853942e+00, 1.36853942e+00, 1.36853942e+00, 1.36853942e+00,
1.35998310e+00, 1.35998310e+00, 1.35998310e+00, 1.35998310e+00,
1.30814871e+00, 1.30814871e+00, 1.30814871e+00, 1.30814871e+00,
1.07919686e+00, 1.07919686e+00, 1.07919686e+00, 1.07919686e+00,
4.71939660e-01, 4.71939660e-01, 4.71939660e-01, 4.71939660e-01,
6.10545409e-02, 6.10545409e-02, 6.10545409e-02, 6.10545409e-02,
4.82456880e-03, 4.82456880e-03, 4.82456880e-03, 4.82456880e-03,
3.56247646e-04, 3.56247646e-04, 3.56247646e-04, 3.56247646e-04,
2.61067770e-05, 2.61067770e-05, 2.61067770e-05, 2.61067770e-05,
1.90472760e-06, 1.90472760e-06, 1.90472760e-06, 1.90472760e-06,
1.37703296e-07, 1.37703296e-07, 1.37703296e-07, 1.37703296e-07,
9.80046714e-09, 9.80046714e-09, 9.80046714e-09, 9.80046714e-09,
6.81680766e-10, 6.81680766e-10, 6.81680766e-10, 6.81680766e-10,
4.59859347e-11, 4.59859347e-11, 4.59859347e-11, 4.59859347e-11,
2.98599883e-12, 2.98599883e-12, 2.98599883e-12, 2.98599883e-12,
1.85306740e-13, 1.85306740e-13, 1.85306740e-13, 1.85306740e-13,
1.08045186e-14, 1.08045186e-14, 1.08045186e-14, 1.08045186e-14,
5.92240191e-16, 5.92240191e-16, 5.92240191e-16, 5.92240191e-16,
3.36083066e-17, 3.36083066e-17, 3.36083066e-17, 3.36083066e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999995, 0.99999995, 0.99999995, 0.99999995,
0.99999951, 0.99999951, 0.99999951, 0.99999951, 0.99999547,
0.99999547, 0.99999547, 0.99999547, 0.9999638 , 0.9999638 ,
0.9999638 , 0.9999638 , 0.99975256, 0.99975256, 0.99975256,
0.99975256, 0.99858272, 0.99858272, 0.99858272, 0.99858272,
0.99337694, 0.99337694, 0.99337694, 0.99337694, 0.97550929,
0.97550929, 0.97550929, 0.97550929, 0.93004626, 0.93004626,
0.93004626, 0.93004626, 0.84577195, 0.84577195, 0.84577195,
0.84577195, 0.72903811, 0.72903811, 0.72903811, 0.72903811,
0.61232549, 0.61232549, 0.61232549, 0.61232549, 0.52517321,
0.52517321, 0.52517321, 0.52517321, 0.48111312, 0.48111312,
0.48111312, 0.48111312, 0.46690051, 0.46690051, 0.46690051,
0.46690051, 0.46488503, 0.46488503, 0.46488503, 0.46488503,
0.46527105, 0.46527105, 0.46527105, 0.46527105, 0.46650029,
0.46650029, 0.46650029, 0.46650029, 0.46823227, 0.46823227,
0.46823227, 0.46823227, 0.46775485, 0.46775485, 0.46775485,
0.46775485, 0.46346347, 0.46346347, 0.46346347, 0.46346347,
0.43993022, 0.43993022, 0.43993022, 0.43993022, 0.35059336,
0.35059336, 0.35059336, 0.35059336, 0.17933862, 0.17933862,
0.17933862, 0.17933862, 0.10832159, 0.10832159, 0.10832159,
0.10832159, 0.1006392 , 0.1006392 , 0.1006392 , 0.1006392 ,
0.10004713, 0.10004713, 0.10004713, 0.10004713, 0.10000345,
0.10000345, 0.10000345, 0.10000345, 0.10000025, 0.10000025,
0.10000025, 0.10000025, 0.10000002, 0.10000002, 0.10000002,
0.10000002, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999937, 0.99999937, 0.99999937, 0.99999937, 0.99999463,
0.99999463, 0.99999463, 0.99999463, 0.99996001, 0.99996001,
0.99996001, 0.99996001, 0.99974513, 0.99974513, 0.99974513,
0.99974513, 0.99863764, 0.99863764, 0.99863764, 0.99863764,
0.99404812, 0.99404812, 0.99404812, 0.99404812, 0.97932361,
0.97932361, 0.97932361, 0.97932361, 0.94391361, 0.94391361,
0.94391361, 0.94391361, 0.88052889, 0.88052889, 0.88052889,
0.88052889, 0.7932456 , 0.7932456 , 0.7932456 , 0.7932456 ,
0.70476828, 0.70476828, 0.70476828, 0.70476828, 0.62723661,
0.62723661, 0.62723661, 0.62723661, 0.60206706, 0.60206706,
0.60206706, 0.60206706, 0.5963246 , 0.5963246 , 0.5963246 ,
0.5963246 , 0.58637919, 0.58637919, 0.58637919, 0.58637919,
0.56513598, 0.56513598, 0.56513598, 0.56513598, 0.52823708,
0.52823708, 0.52823708, 0.52823708, 0.47484775, 0.47484775,
0.47484775, 0.47484775, 0.40888641, 0.40888641, 0.40888641,
0.40888641, 0.35916094, 0.35916094, 0.35916094, 0.35916094,
0.32770215, 0.32770215, 0.32770215, 0.32770215, 0.29918377,
0.29918377, 0.29918377, 0.29918377, 0.24277737, 0.24277737,
0.24277737, 0.24277737, 0.1544822 , 0.1544822 , 0.1544822 ,
0.1544822 , 0.12813873, 0.12813873, 0.12813873, 0.12813873,
0.12525473, 0.12525473, 0.12525473, 0.12525473, 0.12501909,
0.12501909, 0.12501909, 0.12501909, 0.12500141, 0.12500141,
0.12500141, 0.12500141, 0.1250001 , 0.1250001 , 0.1250001 ,
0.1250001 , 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
7.50000076e-01, 7.50000076e-01, 7.50000076e-01, 7.50000076e-01,
7.50000743e-01, 7.50000743e-01, 7.50000743e-01, 7.50000743e-01,
7.50006355e-01, 7.50006355e-01, 7.50006355e-01, 7.50006355e-01,
7.50047312e-01, 7.50047312e-01, 7.50047312e-01, 7.50047312e-01,
7.50301532e-01, 7.50301532e-01, 7.50301532e-01, 7.50301532e-01,
7.51611926e-01, 7.51611926e-01, 7.51611926e-01, 7.51611926e-01,
7.57051218e-01, 7.57051218e-01, 7.57051218e-01, 7.57051218e-01,
7.74639815e-01, 7.74639815e-01, 7.74639815e-01, 7.74639815e-01,
8.17938711e-01, 8.17938711e-01, 8.17938711e-01, 8.17938711e-01,
8.99300214e-01, 8.99300214e-01, 8.99300214e-01, 8.99300214e-01,
1.02004865e+00, 1.02004865e+00, 1.02004865e+00, 1.02004865e+00,
1.14652531e+00, 1.14652531e+00, 1.14652531e+00, 1.14652531e+00,
1.26652821e+00, 1.26652821e+00, 1.26652821e+00, 1.26652821e+00,
1.33548200e+00, 1.33548200e+00, 1.33548200e+00, 1.33548200e+00,
1.35534630e+00, 1.35534630e+00, 1.35534630e+00, 1.35534630e+00,
1.35643148e+00, 1.35643148e+00, 1.35643148e+00, 1.35643148e+00,
1.35688841e+00, 1.35688841e+00, 1.35688841e+00, 1.35688841e+00,
1.35905944e+00, 1.35905944e+00, 1.35905944e+00, 1.35905944e+00,
1.36376675e+00, 1.36376675e+00, 1.36376675e+00, 1.36376675e+00,
1.36790199e+00, 1.36790199e+00, 1.36790199e+00, 1.36790199e+00,
1.36676900e+00, 1.36676900e+00, 1.36676900e+00, 1.36676900e+00,
1.35107712e+00, 1.35107712e+00, 1.35107712e+00, 1.35107712e+00,
1.26776498e+00, 1.26776498e+00, 1.26776498e+00, 1.26776498e+00,
9.35091603e-01, 9.35091603e-01, 9.35091603e-01, 9.35091603e-01,
2.80578131e-01, 2.80578131e-01, 2.80578131e-01, 2.80578131e-01,
2.89234526e-02, 2.89234526e-02, 2.89234526e-02, 2.89234526e-02,
2.21034091e-03, 2.21034091e-03, 2.21034091e-03, 2.21034091e-03,
1.62586243e-04, 1.62586243e-04, 1.62586243e-04, 1.62586243e-04,
1.19199001e-05, 1.19199001e-05, 1.19199001e-05, 1.19199001e-05,
8.70329480e-07, 8.70329480e-07, 8.70329480e-07, 8.70329480e-07,
6.30649885e-08, 6.30649885e-08, 6.30649885e-08, 6.30649885e-08,
4.51037180e-09, 4.51037180e-09, 4.51037180e-09, 4.51037180e-09,
3.16293216e-10, 3.16293216e-10, 3.16293216e-10, 3.16293216e-10,
2.15961374e-11, 2.15961374e-11, 2.15961374e-11, 2.15961374e-11,
1.42561215e-12, 1.42561215e-12, 1.42561215e-12, 1.42561215e-12,
9.02795039e-14, 9.02795039e-14, 9.02795039e-14, 9.02795039e-14,
5.44358060e-15, 5.44358060e-15, 5.44358060e-15, 5.44358060e-15,
3.46618598e-16, 3.46618598e-16, 3.46618598e-16, 3.46618598e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999912, 0.99999912, 0.99999912, 0.99999912, 0.99999248,
0.99999248, 0.99999248, 0.99999248, 0.99994402, 0.99994402,
0.99994402, 0.99994402, 0.99964328, 0.99964328, 0.99964328,
0.99964328, 0.99809443, 0.99809443, 0.99809443, 0.99809443,
0.99169035, 0.99169035, 0.99169035, 0.99169035, 0.97126076,
0.97126076, 0.97126076, 0.97126076, 0.92272829, 0.92272829,
0.92272829, 0.92272829, 0.83776294, 0.83776294, 0.83776294,
0.83776294, 0.72464681, 0.72464681, 0.72464681, 0.72464681,
0.6136125 , 0.6136125 , 0.6136125 , 0.6136125 , 0.52827001,
0.52827001, 0.52827001, 0.52827001, 0.48410084, 0.48410084,
0.48410084, 0.48410084, 0.46873669, 0.46873669, 0.46873669,
0.46873669, 0.465321 , 0.465321 , 0.465321 , 0.465321 ,
0.46494758, 0.46494758, 0.46494758, 0.46494758, 0.46514031,
0.46514031, 0.46514031, 0.46514031, 0.46651691, 0.46651691,
0.46651691, 0.46651691, 0.46747205, 0.46747205, 0.46747205,
0.46747205, 0.46667036, 0.46667036, 0.46667036, 0.46667036,
0.45913733, 0.45913733, 0.45913733, 0.45913733, 0.42245963,
0.42245963, 0.42245963, 0.42245963, 0.30188464, 0.30188464,
0.30188464, 0.30188464, 0.14267451, 0.14267451, 0.14267451,
0.14267451, 0.10387503, 0.10387503, 0.10387503, 0.10387503,
0.10029258, 0.10029258, 0.10029258, 0.10029258, 0.10002151,
0.10002151, 0.10002151, 0.10002151, 0.10000158, 0.10000158,
0.10000158, 0.10000158, 0.10000012, 0.10000012, 0.10000012,
0.10000012, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99999137,
0.99999137, 0.99999137, 0.99999137, 0.9999399 , 0.9999399 ,
0.9999399 , 0.9999399 , 0.99964148, 0.99964148, 0.99964148,
0.99964148, 0.9982058 , 0.9982058 , 0.9982058 , 0.9982058 ,
0.99265642, 0.99265642, 0.99265642, 0.99265642, 0.97603583,
0.97603583, 0.97603583, 0.97603583, 0.93852726, 0.93852726,
0.93852726, 0.93852726, 0.87480059, 0.87480059, 0.87480059,
0.87480059, 0.79029824, 0.79029824, 0.79029824, 0.79029824,
0.70698986, 0.70698986, 0.70698986, 0.70698986, 0.6291912 ,
0.6291912 , 0.6291912 , 0.6291912 , 0.59965944, 0.59965944,
0.59965944, 0.59965944, 0.59596883, 0.59596883, 0.59596883,
0.59596883, 0.59053208, 0.59053208, 0.59053208, 0.59053208,
0.5754485 , 0.5754485 , 0.5754485 , 0.5754485 , 0.54568684,
0.54568684, 0.54568684, 0.54568684, 0.49942691, 0.49942691,
0.49942691, 0.49942691, 0.43715677, 0.43715677, 0.43715677,
0.43715677, 0.3785361 , 0.3785361 , 0.3785361 , 0.3785361 ,
0.34229804, 0.34229804, 0.34229804, 0.34229804, 0.31792866,
0.31792866, 0.31792866, 0.31792866, 0.28869213, 0.28869213,
0.28869213, 0.28869213, 0.21502361, 0.21502361, 0.21502361,
0.21502361, 0.14073628, 0.14073628, 0.14073628, 0.14073628,
0.12650253, 0.12650253, 0.12650253, 0.12650253, 0.12511712,
0.12511712, 0.12511712, 0.12511712, 0.12500873, 0.12500873,
0.12500873, 0.12500873, 0.12500064, 0.12500064, 0.12500064,
0.12500064, 0.12500005, 0.12500005, 0.12500005, 0.12500005,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
7.50000141e-01, 7.50000141e-01, 7.50000141e-01, 7.50000141e-01,
7.50001276e-01, 7.50001276e-01, 7.50001276e-01, 7.50001276e-01,
7.50010210e-01, 7.50010210e-01, 7.50010210e-01, 7.50010210e-01,
7.50071106e-01, 7.50071106e-01, 7.50071106e-01, 7.50071106e-01,
7.50424168e-01, 7.50424168e-01, 7.50424168e-01, 7.50424168e-01,
7.52123167e-01, 7.52123167e-01, 7.52123167e-01, 7.52123167e-01,
7.58705271e-01, 7.58705271e-01, 7.58705271e-01, 7.58705271e-01,
7.78604138e-01, 7.78604138e-01, 7.78604138e-01, 7.78604138e-01,
8.24667213e-01, 8.24667213e-01, 8.24667213e-01, 8.24667213e-01,
9.06930229e-01, 9.06930229e-01, 9.06930229e-01, 9.06930229e-01,
1.02400230e+00, 1.02400230e+00, 1.02400230e+00, 1.02400230e+00,
1.14543639e+00, 1.14543639e+00, 1.14543639e+00, 1.14543639e+00,
1.26083347e+00, 1.26083347e+00, 1.26083347e+00, 1.26083347e+00,
1.33169331e+00, 1.33169331e+00, 1.33169331e+00, 1.33169331e+00,
1.35558798e+00, 1.35558798e+00, 1.35558798e+00, 1.35558798e+00,
1.35748922e+00, 1.35748922e+00, 1.35748922e+00, 1.35748922e+00,
1.35707583e+00, 1.35707583e+00, 1.35707583e+00, 1.35707583e+00,
1.35801616e+00, 1.35801616e+00, 1.35801616e+00, 1.35801616e+00,
1.36080683e+00, 1.36080683e+00, 1.36080683e+00, 1.36080683e+00,
1.36564217e+00, 1.36564217e+00, 1.36564217e+00, 1.36564217e+00,
1.36731393e+00, 1.36731393e+00, 1.36731393e+00, 1.36731393e+00,
1.36391260e+00, 1.36391260e+00, 1.36391260e+00, 1.36391260e+00,
1.33675447e+00, 1.33675447e+00, 1.33675447e+00, 1.33675447e+00,
1.20527086e+00, 1.20527086e+00, 1.20527086e+00, 1.20527086e+00,
7.48851135e-01, 7.48851135e-01, 7.48851135e-01, 7.48851135e-01,
1.51176427e-01, 1.51176427e-01, 1.51176427e-01, 1.51176427e-01,
1.35019359e-02, 1.35019359e-02, 1.35019359e-02, 1.35019359e-02,
1.00744606e-03, 1.00744606e-03, 1.00744606e-03, 1.00744606e-03,
7.41979754e-05, 7.41979754e-05, 7.41979754e-05, 7.41979754e-05,
5.44259245e-06, 5.44259245e-06, 5.44259245e-06, 5.44259245e-06,
3.97695182e-07, 3.97695182e-07, 3.97695182e-07, 3.97695182e-07,
2.88737197e-08, 2.88737197e-08, 2.88737197e-08, 2.88737197e-08,
2.07323036e-09, 2.07323036e-09, 2.07323036e-09, 2.07323036e-09,
1.46378112e-10, 1.46378112e-10, 1.46378112e-10, 1.46378112e-10,
1.00972396e-11, 1.00972396e-11, 1.00972396e-11, 1.00972396e-11,
6.75961800e-13, 6.75961800e-13, 6.75961800e-13, 6.75961800e-13,
4.36475480e-14, 4.36475480e-14, 4.36475480e-14, 4.36475480e-14,
2.72468011e-15, 2.72468011e-15, 2.72468011e-15, 2.72468011e-15,
1.63168395e-16, 1.63168395e-16, 1.63168395e-16, 1.63168395e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999983, 0.99999983, 0.99999983, 0.99999983,
0.99999849, 0.99999849, 0.99999849, 0.99999849, 0.99998792,
0.99998792, 0.99998792, 0.99998792, 0.99991587, 0.99991587,
0.99991587, 0.99991587, 0.99949823, 0.99949823, 0.99949823,
0.99949823, 0.9974908 , 0.9974908 , 0.9974908 , 0.9974908 ,
0.98975108, 0.98975108, 0.98975108, 0.98975108, 0.96671385,
0.96671385, 0.96671385, 0.96671385, 0.91539051, 0.91539051,
0.91539051, 0.91539051, 0.83010759, 0.83010759, 0.83010759,
0.83010759, 0.72047423, 0.72047423, 0.72047423, 0.72047423,
0.61506756, 0.61506756, 0.61506756, 0.61506756, 0.53125219,
0.53125219, 0.53125219, 0.53125219, 0.48653051, 0.48653051,
0.48653051, 0.48653051, 0.47051006, 0.47051006, 0.47051006,
0.47051006, 0.46624138, 0.46624138, 0.46624138, 0.46624138,
0.46510466, 0.46510466, 0.46510466, 0.46510466, 0.46465008,
0.46465008, 0.46465008, 0.46465008, 0.4649645 , 0.4649645 ,
0.4649645 , 0.4649645 , 0.46635721, 0.46635721, 0.46635721,
0.46635721, 0.4669385 , 0.4669385 , 0.4669385 , 0.4669385 ,
0.46507386, 0.46507386, 0.46507386, 0.46507386, 0.45256509,
0.45256509, 0.45256509, 0.45256509, 0.39724826, 0.39724826,
0.39724826, 0.39724826, 0.24626608, 0.24626608, 0.24626608,
0.24626608, 0.12167041, 0.12167041, 0.12167041, 0.12167041,
0.10179518, 0.10179518, 0.10179518, 0.10179518, 0.10013331,
0.10013331, 0.10013331, 0.10013331, 0.10000982, 0.10000982,
0.10000982, 0.10000982, 0.10000072, 0.10000072, 0.10000072,
0.10000072, 0.10000005, 0.10000005, 0.10000005, 0.10000005,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999979, 0.99999979, 0.99999979, 0.99999979,
0.99999821, 0.99999821, 0.99999821, 0.99999821, 0.99998654,
0.99998654, 0.99998654, 0.99998654, 0.99991195, 0.99991195,
0.99991195, 0.99991195, 0.99950669, 0.99950669, 0.99950669,
0.99950669, 0.99768098, 0.99768098, 0.99768098, 0.99768098,
0.99107741, 0.99107741, 0.99107741, 0.99107741, 0.97254809,
0.97254809, 0.97254809, 0.97254809, 0.93314576, 0.93314576,
0.93314576, 0.93314576, 0.86931013, 0.86931013, 0.86931013,
0.86931013, 0.78745561, 0.78745561, 0.78745561, 0.78745561,
0.70912742, 0.70912742, 0.70912742, 0.70912742, 0.63224649,
0.63224649, 0.63224649, 0.63224649, 0.59761707, 0.59761707,
0.59761707, 0.59761707, 0.59438022, 0.59438022, 0.59438022,
0.59438022, 0.5922818 , 0.5922818 , 0.5922818 , 0.5922818 ,
0.58292186, 0.58292186, 0.58292186, 0.58292186, 0.56012924,
0.56012924, 0.56012924, 0.56012924, 0.52108056, 0.52108056,
0.52108056, 0.52108056, 0.46554919, 0.46554919, 0.46554919,
0.46554919, 0.40122218, 0.40122218, 0.40122218, 0.40122218,
0.35684472, 0.35684472, 0.35684472, 0.35684472, 0.33092508,
0.33092508, 0.33092508, 0.33092508, 0.3109016 , 0.3109016 ,
0.3109016 , 0.3109016 , 0.2745178 , 0.2745178 , 0.2745178 ,
0.2745178 , 0.18574868, 0.18574868, 0.18574868, 0.18574868,
0.13312446, 0.13312446, 0.13312446, 0.13312446, 0.12570243,
0.12570243, 0.12570243, 0.12570243, 0.12505374, 0.12505374,
0.12505374, 0.12505374, 0.12500399, 0.12500399, 0.12500399,
0.12500399, 0.12500029, 0.12500029, 0.12500029, 0.12500029,
0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
7.50000249e-01, 7.50000249e-01, 7.50000249e-01, 7.50000249e-01,
7.50002122e-01, 7.50002122e-01, 7.50002122e-01, 7.50002122e-01,
7.50015931e-01, 7.50015931e-01, 7.50015931e-01, 7.50015931e-01,
7.50104174e-01, 7.50104174e-01, 7.50104174e-01, 7.50104174e-01,
7.50583657e-01, 7.50583657e-01, 7.50583657e-01, 7.50583657e-01,
7.52744722e-01, 7.52744722e-01, 7.52744722e-01, 7.52744722e-01,
7.60584516e-01, 7.60584516e-01, 7.60584516e-01, 7.60584516e-01,
7.82823347e-01, 7.82823347e-01, 7.82823347e-01, 7.82823347e-01,
8.31422691e-01, 8.31422691e-01, 8.31422691e-01, 8.31422691e-01,
9.14253491e-01, 9.14253491e-01, 9.14253491e-01, 9.14253491e-01,
1.02753151e+00, 1.02753151e+00, 1.02753151e+00, 1.02753151e+00,
1.14446418e+00, 1.14446418e+00, 1.14446418e+00, 1.14446418e+00,
1.25572429e+00, 1.25572429e+00, 1.25572429e+00, 1.25572429e+00,
1.32726860e+00, 1.32726860e+00, 1.32726860e+00, 1.32726860e+00,
1.35494148e+00, 1.35494148e+00, 1.35494148e+00, 1.35494148e+00,
1.35862615e+00, 1.35862615e+00, 1.35862615e+00, 1.35862615e+00,
1.35792280e+00, 1.35792280e+00, 1.35792280e+00, 1.35792280e+00,
1.35790930e+00, 1.35790930e+00, 1.35790930e+00, 1.35790930e+00,
1.35939545e+00, 1.35939545e+00, 1.35939545e+00, 1.35939545e+00,
1.36269094e+00, 1.36269094e+00, 1.36269094e+00, 1.36269094e+00,
1.36606975e+00, 1.36606975e+00, 1.36606975e+00, 1.36606975e+00,
1.36643658e+00, 1.36643658e+00, 1.36643658e+00, 1.36643658e+00,
1.35906893e+00, 1.35906893e+00, 1.35906893e+00, 1.35906893e+00,
1.31349500e+00, 1.31349500e+00, 1.31349500e+00, 1.31349500e+00,
1.11168051e+00, 1.11168051e+00, 1.11168051e+00, 1.11168051e+00,
5.39000363e-01, 5.39000363e-01, 5.39000363e-01, 5.39000363e-01,
7.70165641e-02, 7.70165641e-02, 7.70165641e-02, 7.70165641e-02,
6.19417821e-03, 6.19417821e-03, 6.19417821e-03, 6.19417821e-03,
4.59703599e-04, 4.59703599e-04, 4.59703599e-04, 4.59703599e-04,
3.38422021e-05, 3.38422021e-05, 3.38422021e-05, 3.38422021e-05,
2.48403190e-06, 2.48403190e-06, 2.48403190e-06, 2.48403190e-06,
1.81703671e-07, 1.81703671e-07, 1.81703671e-07, 1.81703671e-07,
1.32143978e-08, 1.32143978e-08, 1.32143978e-08, 1.32143978e-08,
9.51971465e-10, 9.51971465e-10, 9.51971465e-10, 9.51971465e-10,
6.75952916e-11, 6.75952916e-11, 6.75952916e-11, 6.75952916e-11,
4.70333296e-12, 4.70333296e-12, 4.70333296e-12, 4.70333296e-12,
3.18764056e-13, 3.18764056e-13, 3.18764056e-13, 3.18764056e-13,
2.09144307e-14, 2.09144307e-14, 2.09144307e-14, 2.09144307e-14,
1.34091434e-15, 1.34091434e-15, 1.34091434e-15, 1.34091434e-15,
7.02262902e-17, 7.02262902e-17, 7.02262902e-17, 7.02262902e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
0.99999749, 0.99999749, 0.99999749, 0.99999749, 0.99998115,
0.99998115, 0.99998115, 0.99998115, 0.99987675, 0.99987675,
0.99987675, 0.99987675, 0.99930963, 0.99930963, 0.99930963,
0.99930963, 0.9967574 , 0.9967574 , 0.9967574 , 0.9967574 ,
0.98755235, 0.98755235, 0.98755235, 0.98755235, 0.961897 ,
0.961897 , 0.961897 , 0.961897 , 0.90807418, 0.90807418,
0.90807418, 0.90807418, 0.82280457, 0.82280457, 0.82280457,
0.82280457, 0.71660108, 0.71660108, 0.71660108, 0.71660108,
0.61647152, 0.61647152, 0.61647152, 0.61647152, 0.53433754,
0.53433754, 0.53433754, 0.53433754, 0.48862858, 0.48862858,
0.48862858, 0.48862858, 0.47191446, 0.47191446, 0.47191446,
0.47191446, 0.46731186, 0.46731186, 0.46731186, 0.46731186,
0.46568567, 0.46568567, 0.46568567, 0.46568567, 0.46466716,
0.46466716, 0.46466716, 0.46466716, 0.46428833, 0.46428833,
0.46428833, 0.46428833, 0.46483777, 0.46483777, 0.46483777,
0.46483777, 0.46633071, 0.46633071, 0.46633071, 0.46633071,
0.46626754, 0.46626754, 0.46626754, 0.46626754, 0.46271596,
0.46271596, 0.46271596, 0.46271596, 0.44260208, 0.44260208,
0.44260208, 0.44260208, 0.36235029, 0.36235029, 0.36235029,
0.36235029, 0.19361303, 0.19361303, 0.19361303, 0.19361303,
0.11058547, 0.11058547, 0.11058547, 0.11058547, 0.10082107,
0.10082107, 0.10082107, 0.10082107, 0.10006082, 0.10006082,
0.10006082, 0.10006082, 0.10000448, 0.10000448, 0.10000448,
0.10000448, 0.10000033, 0.10000033, 0.10000033, 0.10000033,
0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999996, 0.99999996, 0.99999996,
0.99999996, 0.99999964, 0.99999964, 0.99999964, 0.99999964,
0.99999711, 0.99999711, 0.99999711, 0.99999711, 0.99997953,
0.99997953, 0.99997953, 0.99997953, 0.99987394, 0.99987394,
0.99987394, 0.99987394, 0.99933463, 0.99933463, 0.99933463,
0.99933463, 0.99705312, 0.99705312, 0.99705312, 0.99705312,
0.98930851, 0.98930851, 0.98930851, 0.98930851, 0.96888183,
0.96888183, 0.96888183, 0.96888183, 0.92779564, 0.92779564,
0.92779564, 0.92779564, 0.86405491, 0.86405491, 0.86405491,
0.86405491, 0.78470523, 0.78470523, 0.78470523, 0.78470523,
0.71095409, 0.71095409, 0.71095409, 0.71095409, 0.63622824,
0.63622824, 0.63622824, 0.63622824, 0.59650729, 0.59650729,
0.59650729, 0.59650729, 0.59187689, 0.59187689, 0.59187689,
0.59187689, 0.59231137, 0.59231137, 0.59231137, 0.59231137,
0.58763049, 0.58763049, 0.58763049, 0.58763049, 0.57146876,
0.57146876, 0.57146876, 0.57146876, 0.53974952, 0.53974952,
0.53974952, 0.53974952, 0.49128145, 0.49128145, 0.49128145,
0.49128145, 0.4279453 , 0.4279453 , 0.4279453 , 0.4279453 ,
0.37383925, 0.37383925, 0.37383925, 0.37383925, 0.34208564,
0.34208564, 0.34208564, 0.34208564, 0.32336538, 0.32336538,
0.32336538, 0.32336538, 0.30459933, 0.30459933, 0.30459933,
0.30459933, 0.25375017, 0.25375017, 0.25375017, 0.25375017,
0.1610919 , 0.1610919 , 0.1610919 , 0.1610919 , 0.12897793,
0.12897793, 0.12897793, 0.12897793, 0.12532639, 0.12532639,
0.12532639, 0.12532639, 0.1250246 , 0.1250246 , 0.1250246 ,
0.1250246 , 0.12500182, 0.12500182, 0.12500182, 0.12500182,
0.12500013, 0.12500013, 0.12500013, 0.12500013, 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
7.50000048e-01, 7.50000048e-01, 7.50000048e-01, 7.50000048e-01,
7.50000428e-01, 7.50000428e-01, 7.50000428e-01, 7.50000428e-01,
7.50003425e-01, 7.50003425e-01, 7.50003425e-01, 7.50003425e-01,
7.50024215e-01, 7.50024215e-01, 7.50024215e-01, 7.50024215e-01,
7.50149149e-01, 7.50149149e-01, 7.50149149e-01, 7.50149149e-01,
7.50787259e-01, 7.50787259e-01, 7.50787259e-01, 7.50787259e-01,
7.53488669e-01, 7.53488669e-01, 7.53488669e-01, 7.53488669e-01,
7.62693058e-01, 7.62693058e-01, 7.62693058e-01, 7.62693058e-01,
7.87273690e-01, 7.87273690e-01, 7.87273690e-01, 7.87273690e-01,
8.38170390e-01, 8.38170390e-01, 8.38170390e-01, 8.38170390e-01,
9.21264845e-01, 9.21264845e-01, 9.21264845e-01, 9.21264845e-01,
1.03075711e+00, 1.03075711e+00, 1.03075711e+00, 1.03075711e+00,
1.14341648e+00, 1.14341648e+00, 1.14341648e+00, 1.14341648e+00,
1.25118970e+00, 1.25118970e+00, 1.25118970e+00, 1.25118970e+00,
1.32270364e+00, 1.32270364e+00, 1.32270364e+00, 1.32270364e+00,
1.35337313e+00, 1.35337313e+00, 1.35337313e+00, 1.35337313e+00,
1.35937786e+00, 1.35937786e+00, 1.35937786e+00, 1.35937786e+00,
1.35905340e+00, 1.35905340e+00, 1.35905340e+00, 1.35905340e+00,
1.35850392e+00, 1.35850392e+00, 1.35850392e+00, 1.35850392e+00,
1.35894967e+00, 1.35894967e+00, 1.35894967e+00, 1.35894967e+00,
1.36090221e+00, 1.36090221e+00, 1.36090221e+00, 1.36090221e+00,
1.36370505e+00, 1.36370505e+00, 1.36370505e+00, 1.36370505e+00,
1.36598769e+00, 1.36598769e+00, 1.36598769e+00, 1.36598769e+00,
1.36486873e+00, 1.36486873e+00, 1.36486873e+00, 1.36486873e+00,
1.35070633e+00, 1.35070633e+00, 1.35070633e+00, 1.35070633e+00,
1.27741452e+00, 1.27741452e+00, 1.27741452e+00, 1.27741452e+00,
9.81464738e-01, 9.81464738e-01, 9.81464738e-01, 9.81464738e-01,
3.36046188e-01, 3.36046188e-01, 3.36046188e-01, 3.36046188e-01,
3.68463062e-02, 3.68463062e-02, 3.68463062e-02, 3.68463062e-02,
2.83912454e-03, 2.83912454e-03, 2.83912454e-03, 2.83912454e-03,
2.09688885e-04, 2.09688885e-04, 2.09688885e-04, 2.09688885e-04,
1.54316406e-05, 1.54316406e-05, 1.54316406e-05, 1.54316406e-05,
1.13356929e-06, 1.13356929e-06, 1.13356929e-06, 1.13356929e-06,
8.29963615e-08, 8.29963615e-08, 8.29963615e-08, 8.29963615e-08,
6.04553786e-09, 6.04553786e-09, 6.04553786e-09, 6.04553786e-09,
4.36752195e-10, 4.36752195e-10, 4.36752195e-10, 4.36752195e-10,
3.11603660e-11, 3.11603660e-11, 3.11603660e-11, 3.11603660e-11,
2.18424142e-12, 2.18424142e-12, 2.18424142e-12, 2.18424142e-12,
1.49600112e-13, 1.49600112e-13, 1.49600112e-13, 1.49600112e-13,
9.91152530e-15, 9.91152530e-15, 9.91152530e-15, 9.91152530e-15,
6.43616174e-16, 6.43616174e-16, 6.43616174e-16, 6.43616174e-16,
3.40906797e-17, 3.40906797e-17, 3.40906797e-17, 3.40906797e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999994, 0.99999994, 0.99999994,
0.99999994, 0.99999949, 0.99999949, 0.99999949, 0.99999949,
0.99999595, 0.99999595, 0.99999595, 0.99999595, 0.99997135,
0.99997135, 0.99997135, 0.99997135, 0.99982354, 0.99982354,
0.99982354, 0.99982354, 0.9990689 , 0.9990689 , 0.9990689 ,
0.9990689 , 0.99588029, 0.99588029, 0.99588029, 0.99588029,
0.98509107, 0.98509107, 0.98509107, 0.98509107, 0.95684085,
0.95684085, 0.95684085, 0.95684085, 0.90081585, 0.90081585,
0.90081585, 0.90081585, 0.81585349, 0.81585349, 0.81585349,
0.81585349, 0.71306117, 0.71306117, 0.71306117, 0.71306117,
0.61770042, 0.61770042, 0.61770042, 0.61770042, 0.53754808,
0.53754808, 0.53754808, 0.53754808, 0.49069344, 0.49069344,
0.49069344, 0.49069344, 0.47291767, 0.47291767, 0.47291767,
0.47291767, 0.46823402, 0.46823402, 0.46823402, 0.46823402,
0.46647842, 0.46647842, 0.46647842, 0.46647842, 0.46510214,
0.46510214, 0.46510214, 0.46510214, 0.46413565, 0.46413565,
0.46413565, 0.46413565, 0.46395683, 0.46395683, 0.46395683,
0.46395683, 0.46511952, 0.46511952, 0.46511952, 0.46511952,
0.46605603, 0.46605603, 0.46605603, 0.46605603, 0.46541207,
0.46541207, 0.46541207, 0.46541207, 0.45926933, 0.45926933,
0.45926933, 0.45926933, 0.42726405, 0.42726405, 0.42726405,
0.42726405, 0.31664309, 0.31664309, 0.31664309, 0.31664309,
0.15234215, 0.15234215, 0.15234215, 0.15234215, 0.10495591,
0.10495591, 0.10495591, 0.10495591, 0.10037589, 0.10037589,
0.10037589, 0.10037589, 0.10002774, 0.10002774, 0.10002774,
0.10002774, 0.10000204, 0.10000204, 0.10000204, 0.10000204,
0.10000015, 0.10000015, 0.10000015, 0.10000015, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999993, 0.99999993, 0.99999993,
0.99999993, 0.9999994 , 0.9999994 , 0.9999994 , 0.9999994 ,
0.99999545, 0.99999545, 0.99999545, 0.99999545, 0.99996962,
0.99996962, 0.99996962, 0.99996962, 0.99982324, 0.99982324,
0.99982324, 0.99982324, 0.9991187 , 0.9991187 , 0.9991187 ,
0.9991187 , 0.9963127 , 0.9963127 , 0.9963127 , 0.9963127 ,
0.98734973, 0.98734973, 0.98734973, 0.98734973, 0.96505957,
0.96505957, 0.96505957, 0.96505957, 0.92250062, 0.92250062,
0.92250062, 0.92250062, 0.85904285, 0.85904285, 0.85904285,
0.85904285, 0.78210563, 0.78210563, 0.78210563, 0.78210563,
0.71214743, 0.71214743, 0.71214743, 0.71214743, 0.64091277,
0.64091277, 0.64091277, 0.64091277, 0.5967045 , 0.5967045 ,
0.5967045 , 0.5967045 , 0.58917295, 0.58917295, 0.58917295,
0.58917295, 0.59108358, 0.59108358, 0.59108358, 0.59108358,
0.58980314, 0.58980314, 0.58980314, 0.58980314, 0.57968492,
0.57968492, 0.57968492, 0.57968492, 0.5552647 , 0.5552647 ,
0.5552647 , 0.5552647 , 0.51411927, 0.51411927, 0.51411927,
0.51411927, 0.45652797, 0.45652797, 0.45652797, 0.45652797,
0.39426685, 0.39426685, 0.39426685, 0.39426685, 0.35435985,
0.35435985, 0.35435985, 0.35435985, 0.33267462, 0.33267462,
0.33267462, 0.33267462, 0.3183219 , 0.3183219 , 0.3183219 ,
0.3183219 , 0.29605972, 0.29605972, 0.29605972, 0.29605972,
0.22620934, 0.22620934, 0.22620934, 0.22620934, 0.1443368 ,
0.1443368 , 0.1443368 , 0.1443368 , 0.12690967, 0.12690967,
0.12690967, 0.12690967, 0.12515044, 0.12515044, 0.12515044,
0.12515044, 0.12501125, 0.12501125, 0.12501125, 0.12501125,
0.12500083, 0.12500083, 0.12500083, 0.12500083, 0.12500006,
0.12500006, 0.12500006, 0.12500006, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000084e-01, 7.50000084e-01, 7.50000084e-01, 7.50000084e-01,
7.50000712e-01, 7.50000712e-01, 7.50000712e-01, 7.50000712e-01,
7.50005384e-01, 7.50005384e-01, 7.50005384e-01, 7.50005384e-01,
7.50035944e-01, 7.50035944e-01, 7.50035944e-01, 7.50035944e-01,
7.50209136e-01, 7.50209136e-01, 7.50209136e-01, 7.50209136e-01,
7.51042813e-01, 7.51042813e-01, 7.51042813e-01, 7.51042813e-01,
7.54366472e-01, 7.54366472e-01, 7.54366472e-01, 7.54366472e-01,
7.65032020e-01, 7.65032020e-01, 7.65032020e-01, 7.65032020e-01,
7.91929802e-01, 7.91929802e-01, 7.91929802e-01, 7.91929802e-01,
8.44879000e-01, 8.44879000e-01, 8.44879000e-01, 8.44879000e-01,
9.27961552e-01, 9.27961552e-01, 9.27961552e-01, 9.27961552e-01,
1.03376284e+00, 1.03376284e+00, 1.03376284e+00, 1.03376284e+00,
1.14223005e+00, 1.14223005e+00, 1.14223005e+00, 1.14223005e+00,
1.24703626e+00, 1.24703626e+00, 1.24703626e+00, 1.24703626e+00,
1.31835154e+00, 1.31835154e+00, 1.31835154e+00, 1.31835154e+00,
1.35115729e+00, 1.35115729e+00, 1.35115729e+00, 1.35115729e+00,
1.35952683e+00, 1.35952683e+00, 1.35952683e+00, 1.35952683e+00,
1.36000050e+00, 1.36000050e+00, 1.36000050e+00, 1.36000050e+00,
1.35946783e+00, 1.35946783e+00, 1.35946783e+00, 1.35946783e+00,
1.35931504e+00, 1.35931504e+00, 1.35931504e+00, 1.35931504e+00,
1.36014004e+00, 1.36014004e+00, 1.36014004e+00, 1.36014004e+00,
1.36169449e+00, 1.36169449e+00, 1.36169449e+00, 1.36169449e+00,
1.36442795e+00, 1.36442795e+00, 1.36442795e+00, 1.36442795e+00,
1.36544109e+00, 1.36544109e+00, 1.36544109e+00, 1.36544109e+00,
1.36179797e+00, 1.36179797e+00, 1.36179797e+00, 1.36179797e+00,
1.33753550e+00, 1.33753550e+00, 1.33753550e+00, 1.33753550e+00,
1.22289370e+00, 1.22289370e+00, 1.22289370e+00, 1.22289370e+00,
8.07609730e-01, 8.07609730e-01, 8.07609730e-01, 8.07609730e-01,
1.84578851e-01, 1.84578851e-01, 1.84578851e-01, 1.84578851e-01,
1.72459356e-02, 1.72459356e-02, 1.72459356e-02, 1.72459356e-02,
1.29636420e-03, 1.29636420e-03, 1.29636420e-03, 1.29636420e-03,
9.56231757e-05, 9.56231757e-05, 9.56231757e-05, 9.56231757e-05,
7.03861571e-06, 7.03861571e-06, 7.03861571e-06, 7.03861571e-06,
5.17203032e-07, 5.17203032e-07, 5.17203032e-07, 5.17203032e-07,
3.79012480e-08, 3.79012480e-08, 3.79012480e-08, 3.79012480e-08,
2.76477945e-09, 2.76477945e-09, 2.76477945e-09, 2.76477945e-09,
2.00229731e-10, 2.00229731e-10, 2.00229731e-10, 2.00229731e-10,
1.43439296e-11, 1.43439296e-11, 1.43439296e-11, 1.43439296e-11,
1.01180886e-12, 1.01180886e-12, 1.01180886e-12, 1.01180886e-12,
6.98829576e-14, 6.98829576e-14, 6.98829576e-14, 6.98829576e-14,
4.66606318e-15, 4.66606318e-15, 4.66606318e-15, 4.66606318e-15,
3.37838020e-16, 3.37838020e-16, 3.37838020e-16, 3.37838020e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999916, 0.99999916, 0.99999916, 0.99999916,
0.99999363, 0.99999363, 0.99999363, 0.99999363, 0.99995747,
0.99995747, 0.99995747, 0.99995747, 0.99975257, 0.99975257,
0.99975257, 0.99975257, 0.99876684, 0.99876684, 0.99876684,
0.99876684, 0.99484634, 0.99484634, 0.99484634, 0.99484634,
0.98236786, 0.98236786, 0.98236786, 0.98236786, 0.95157745,
0.95157745, 0.95157745, 0.95157745, 0.89364753, 0.89364753,
0.89364753, 0.89364753, 0.80925164, 0.80925164, 0.80925164,
0.80925164, 0.70985244, 0.70985244, 0.70985244, 0.70985244,
0.61872344, 0.61872344, 0.61872344, 0.61872344, 0.54078556,
0.54078556, 0.54078556, 0.54078556, 0.49293771, 0.49293771,
0.49293771, 0.49293771, 0.47368455, 0.47368455, 0.47368455,
0.47368455, 0.46885678, 0.46885678, 0.46885678, 0.46885678,
0.46721006, 0.46721006, 0.46721006, 0.46721006, 0.46578019,
0.46578019, 0.46578019, 0.46578019, 0.46443757, 0.46443757,
0.46443757, 0.46443757, 0.46363693, 0.46363693, 0.46363693,
0.46363693, 0.46405796, 0.46405796, 0.46405796, 0.46405796,
0.46529802, 0.46529802, 0.46529802, 0.46529802, 0.46568405,
0.46568405, 0.46568405, 0.46568405, 0.46436586, 0.46436586,
0.46436586, 0.46436586, 0.45372193, 0.45372193, 0.45372193,
0.45372193, 0.40428218, 0.40428218, 0.40428218, 0.40428218,
0.26242895, 0.26242895, 0.26242895, 0.26242895, 0.12688139,
0.12688139, 0.12688139, 0.12688139, 0.10229679, 0.10229679,
0.10229679, 0.10229679, 0.10017155, 0.10017155, 0.10017155,
0.10017155, 0.10001265, 0.10001265, 0.10001265, 0.10001265,
0.10000093, 0.10000093, 0.10000093, 0.10000093, 0.10000007,
0.10000007, 0.10000007, 0.10000007, 0.10000001, 0.10000001,
0.10000001, 0.10000001, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999988, 0.99999988, 0.99999988,
0.99999988, 0.99999902, 0.99999902, 0.99999902, 0.99999902,
0.99999302, 0.99999302, 0.99999302, 0.99999302, 0.99995587,
0.99995587, 0.99995587, 0.99995587, 0.99975682, 0.99975682,
0.99975682, 0.99975682, 0.99885188, 0.99885188, 0.99885188,
0.99885188, 0.99545106, 0.99545106, 0.99545106, 0.99545106,
0.98520362, 0.98520362, 0.98520362, 0.98520362, 0.96110441,
0.96110441, 0.96110441, 0.96110441, 0.91728156, 0.91728156,
0.91728156, 0.91728156, 0.85427981, 0.85427981, 0.85427981,
0.85427981, 0.77971476, 0.77971476, 0.77971476, 0.77971476,
0.71287025, 0.71287025, 0.71287025, 0.71287025, 0.64564457,
0.64564457, 0.64564457, 0.64564457, 0.59826562, 0.59826562,
0.59826562, 0.59826562, 0.58691045, 0.58691045, 0.58691045,
0.58691045, 0.58906206, 0.58906206, 0.58906206, 0.58906206,
0.59003485, 0.59003485, 0.59003485, 0.59003485, 0.58486504,
0.58486504, 0.58486504, 0.58486504, 0.56744401, 0.56744401,
0.56744401, 0.56744401, 0.53390234, 0.53390234, 0.53390234,
0.53390234, 0.48345644, 0.48345644, 0.48345644, 0.48345644,
0.41935629, 0.41935629, 0.41935629, 0.41935629, 0.3694156 ,
0.3694156 , 0.3694156 , 0.3694156 , 0.34157081, 0.34157081,
0.34157081, 0.34157081, 0.3267349 , 0.3267349 , 0.3267349 ,
0.3267349 , 0.31430765, 0.31430765, 0.31430765, 0.31430765,
0.28309759, 0.28309759, 0.28309759, 0.28309759, 0.19541361,
0.19541361, 0.19541361, 0.19541361, 0.13508752, 0.13508752,
0.13508752, 0.13508752, 0.12589416, 0.12589416, 0.12589416,
0.12589416, 0.12506897, 0.12506897, 0.12506897, 0.12506897,
0.12500514, 0.12500514, 0.12500514, 0.12500514, 0.12500038,
0.12500038, 0.12500038, 0.12500038, 0.12500003, 0.12500003,
0.12500003, 0.12500003, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
7.50000144e-01, 7.50000144e-01, 7.50000144e-01, 7.50000144e-01,
7.50001154e-01, 7.50001154e-01, 7.50001154e-01, 7.50001154e-01,
7.50008260e-01, 7.50008260e-01, 7.50008260e-01, 7.50008260e-01,
7.50052218e-01, 7.50052218e-01, 7.50052218e-01, 7.50052218e-01,
7.50287727e-01, 7.50287727e-01, 7.50287727e-01, 7.50287727e-01,
7.51358635e-01, 7.51358635e-01, 7.51358635e-01, 7.51358635e-01,
7.55388706e-01, 7.55388706e-01, 7.55388706e-01, 7.55388706e-01,
7.67599601e-01, 7.67599601e-01, 7.67599601e-01, 7.67599601e-01,
7.96765297e-01, 7.96765297e-01, 7.96765297e-01, 7.96765297e-01,
8.51520678e-01, 8.51520678e-01, 8.51520678e-01, 8.51520678e-01,
9.34344216e-01, 9.34344216e-01, 9.34344216e-01, 9.34344216e-01,
1.03659724e+00, 1.03659724e+00, 1.03659724e+00, 1.03659724e+00,
1.14096365e+00, 1.14096365e+00, 1.14096365e+00, 1.14096365e+00,
1.24306837e+00, 1.24306837e+00, 1.24306837e+00, 1.24306837e+00,
1.31432670e+00, 1.31432670e+00, 1.31432670e+00, 1.31432670e+00,
1.34867754e+00, 1.34867754e+00, 1.34867754e+00, 1.34867754e+00,
1.35900751e+00, 1.35900751e+00, 1.35900751e+00, 1.35900751e+00,
1.36059408e+00, 1.36059408e+00, 1.36059408e+00, 1.36059408e+00,
1.36044668e+00, 1.36044668e+00, 1.36044668e+00, 1.36044668e+00,
1.36010596e+00, 1.36010596e+00, 1.36010596e+00, 1.36010596e+00,
1.36018463e+00, 1.36018463e+00, 1.36018463e+00, 1.36018463e+00,
1.36083030e+00, 1.36083030e+00, 1.36083030e+00, 1.36083030e+00,
1.36234837e+00, 1.36234837e+00, 1.36234837e+00, 1.36234837e+00,
1.36463009e+00, 1.36463009e+00, 1.36463009e+00, 1.36463009e+00,
1.36410988e+00, 1.36410988e+00, 1.36410988e+00, 1.36410988e+00,
1.35701598e+00, 1.35701598e+00, 1.35701598e+00, 1.35701598e+00,
1.31740523e+00, 1.31740523e+00, 1.31740523e+00, 1.31740523e+00,
1.13985851e+00, 1.13985851e+00, 1.13985851e+00, 1.13985851e+00,
6.02207928e-01, 6.02207928e-01, 6.02207928e-01, 6.02207928e-01,
9.54826887e-02, 9.54826887e-02, 9.54826887e-02, 9.54826887e-02,
7.91081899e-03, 7.91081899e-03, 7.91081899e-03, 7.91081899e-03,
5.90658670e-04, 5.90658670e-04, 5.90658670e-04, 5.90658670e-04,
4.36023608e-05, 4.36023608e-05, 4.36023608e-05, 4.36023608e-05,
3.20991156e-06, 3.20991156e-06, 3.20991156e-06, 3.20991156e-06,
2.35963719e-07, 2.35963719e-07, 2.35963719e-07, 2.35963719e-07,
1.73040175e-08, 1.73040175e-08, 1.73040175e-08, 1.73040175e-08,
1.26389111e-09, 1.26389111e-09, 1.26389111e-09, 1.26389111e-09,
9.17314216e-11, 9.17314216e-11, 9.17314216e-11, 9.17314216e-11,
6.59454231e-12, 6.59454231e-12, 6.59454231e-12, 6.59454231e-12,
4.67644782e-13, 4.67644782e-13, 4.67644782e-13, 4.67644782e-13,
3.25389011e-14, 3.25389011e-14, 3.25389011e-14, 3.25389011e-14,
2.17274114e-15, 2.17274114e-15, 2.17274114e-15, 2.17274114e-15,
1.63514197e-16, 1.63514197e-16, 1.63514197e-16, 1.63514197e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999983, 0.99999983, 0.99999983,
0.99999983, 0.99999863, 0.99999863, 0.99999863, 0.99999863,
0.99999023, 0.99999023, 0.99999023, 0.99999023, 0.99993822,
0.99993822, 0.99993822, 0.99993822, 0.99965961, 0.99965961,
0.99965961, 0.99965961, 0.99839366, 0.99839366, 0.99839366,
0.99839366, 0.99364361, 0.99364361, 0.99364361, 0.99364361,
0.9793869 , 0.9793869 , 0.9793869 , 0.9793869 , 0.94613945,
0.94613945, 0.94613945, 0.94613945, 0.88659682, 0.88659682,
0.88659682, 0.88659682, 0.80299287, 0.80299287, 0.80299287,
0.80299287, 0.70694993, 0.70694993, 0.70694993, 0.70694993,
0.61957684, 0.61957684, 0.61957684, 0.61957684, 0.54392052,
0.54392052, 0.54392052, 0.54392052, 0.49542686, 0.49542686,
0.49542686, 0.49542686, 0.47445103, 0.47445103, 0.47445103,
0.47445103, 0.46915145, 0.46915145, 0.46915145, 0.46915145,
0.46775039, 0.46775039, 0.46775039, 0.46775039, 0.4664833 ,
0.4664833 , 0.4664833 , 0.4664833 , 0.46501843, 0.46501843,
0.46501843, 0.46501843, 0.46374393, 0.46374393, 0.46374393,
0.46374393, 0.46361884, 0.46361884, 0.46361884, 0.46361884,
0.46424828, 0.46424828, 0.46424828, 0.46424828, 0.46530062,
0.46530062, 0.46530062, 0.46530062, 0.46544329, 0.46544329,
0.46544329, 0.46544329, 0.46257326, 0.46257326, 0.46257326,
0.46257326, 0.44471278, 0.44471278, 0.44471278, 0.44471278,
0.37244248, 0.37244248, 0.37244248, 0.37244248, 0.20801386,
0.20801386, 0.20801386, 0.20801386, 0.11324933, 0.11324933,
0.11324933, 0.11324933, 0.10104929, 0.10104929, 0.10104929,
0.10104929, 0.10007815, 0.10007815, 0.10007815, 0.10007815,
0.10000577, 0.10000577, 0.10000577, 0.10000577, 0.10000042,
0.10000042, 0.10000042, 0.10000042, 0.10000003, 0.10000003,
0.10000003, 0.10000003, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.9999998 , 0.9999998 , 0.9999998 ,
0.9999998 , 0.99999846, 0.99999846, 0.99999846, 0.99999846,
0.99998952, 0.99998952, 0.99998952, 0.99998952, 0.99993714,
0.99993714, 0.99993714, 0.99993714, 0.99967122, 0.99967122,
0.99967122, 0.99967122, 0.99852689, 0.99852689, 0.99852689,
0.99852689, 0.99446052, 0.99446052, 0.99446052, 0.99446052,
0.98287516, 0.98287516, 0.98287516, 0.98287516, 0.95703951,
0.95703951, 0.95703951, 0.95703951, 0.91215643, 0.91215643,
0.91215643, 0.91215643, 0.8497645 , 0.8497645 , 0.8497645 ,
0.8497645 , 0.77754676, 0.77754676, 0.77754676, 0.77754676,
0.71330927, 0.71330927, 0.71330927, 0.71330927, 0.64997203,
0.64997203, 0.64997203, 0.64997203, 0.60097098, 0.60097098,
0.60097098, 0.60097098, 0.58535154, 0.58535154, 0.58535154,
0.58535154, 0.58659819, 0.58659819, 0.58659819, 0.58659819,
0.58934885, 0.58934885, 0.58934885, 0.58934885, 0.58736059,
0.58736059, 0.58736059, 0.58736059, 0.57621724, 0.57621724,
0.57621724, 0.57621724, 0.55034135, 0.55034135, 0.55034135,
0.55034135, 0.50742676, 0.50742676, 0.50742676, 0.50742676,
0.44761191, 0.44761191, 0.44761191, 0.44761191, 0.38816796,
0.38816796, 0.38816796, 0.38816796, 0.35214391, 0.35214391,
0.35214391, 0.35214391, 0.3335225 , 0.3335225 , 0.3335225 ,
0.3335225 , 0.32286182, 0.32286182, 0.32286182, 0.32286182,
0.30990165, 0.30990165, 0.30990165, 0.30990165, 0.26354073,
0.26354073, 0.26354073, 0.26354073, 0.16798532, 0.16798532,
0.16798532, 0.16798532, 0.1299533 , 0.1299533 , 0.1299533 ,
0.1299533 , 0.12541416, 0.12541416, 0.12541416, 0.12541416,
0.12503153, 0.12503153, 0.12503153, 0.12503153, 0.12500234,
0.12500234, 0.12500234, 0.12500234, 0.12500017, 0.12500017,
0.12500017, 0.12500017, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
7.50000240e-01, 7.50000240e-01, 7.50000240e-01, 7.50000240e-01,
7.50001825e-01, 7.50001825e-01, 7.50001825e-01, 7.50001825e-01,
7.50012395e-01, 7.50012395e-01, 7.50012395e-01, 7.50012395e-01,
7.50074381e-01, 7.50074381e-01, 7.50074381e-01, 7.50074381e-01,
7.50389013e-01, 7.50389013e-01, 7.50389013e-01, 7.50389013e-01,
7.51743396e-01, 7.51743396e-01, 7.51743396e-01, 7.51743396e-01,
7.56564809e-01, 7.56564809e-01, 7.56564809e-01, 7.56564809e-01,
7.70391197e-01, 7.70391197e-01, 7.70391197e-01, 7.70391197e-01,
8.01753316e-01, 8.01753316e-01, 8.01753316e-01, 8.01753316e-01,
8.58071057e-01, 8.58071057e-01, 8.58071057e-01, 8.58071057e-01,
9.40417104e-01, 9.40417104e-01, 9.40417104e-01, 9.40417104e-01,
1.03928138e+00, 1.03928138e+00, 1.03928138e+00, 1.03928138e+00,
1.13970389e+00, 1.13970389e+00, 1.13970389e+00, 1.13970389e+00,
1.23914812e+00, 1.23914812e+00, 1.23914812e+00, 1.23914812e+00,
1.31054875e+00, 1.31054875e+00, 1.31054875e+00, 1.31054875e+00,
1.34625395e+00, 1.34625395e+00, 1.34625395e+00, 1.34625395e+00,
1.35799687e+00, 1.35799687e+00, 1.35799687e+00, 1.35799687e+00,
1.36074574e+00, 1.36074574e+00, 1.36074574e+00, 1.36074574e+00,
1.36111035e+00, 1.36111035e+00, 1.36111035e+00, 1.36111035e+00,
1.36105209e+00, 1.36105209e+00, 1.36105209e+00, 1.36105209e+00,
1.36078907e+00, 1.36078907e+00, 1.36078907e+00, 1.36078907e+00,
1.36071354e+00, 1.36071354e+00, 1.36071354e+00, 1.36071354e+00,
1.36126545e+00, 1.36126545e+00, 1.36126545e+00, 1.36126545e+00,
1.36293306e+00, 1.36293306e+00, 1.36293306e+00, 1.36293306e+00,
1.36391003e+00, 1.36391003e+00, 1.36391003e+00, 1.36391003e+00,
1.36223548e+00, 1.36223548e+00, 1.36223548e+00, 1.36223548e+00,
1.35001289e+00, 1.35001289e+00, 1.35001289e+00, 1.35001289e+00,
1.28580407e+00, 1.28580407e+00, 1.28580407e+00, 1.28580407e+00,
1.02083102e+00, 1.02083102e+00, 1.02083102e+00, 1.02083102e+00,
3.92354167e-01, 3.92354167e-01, 3.92354167e-01, 3.92354167e-01,
4.60233453e-02, 4.60233453e-02, 4.60233453e-02, 4.60233453e-02,
3.61135389e-03, 3.61135389e-03, 3.61135389e-03, 3.61135389e-03,
2.68870213e-04, 2.68870213e-04, 2.68870213e-04, 2.68870213e-04,
1.98606715e-05, 1.98606715e-05, 1.98606715e-05, 1.98606715e-05,
1.46364464e-06, 1.46364464e-06, 1.46364464e-06, 1.46364464e-06,
1.07646738e-07, 1.07646738e-07, 1.07646738e-07, 1.07646738e-07,
7.89913828e-09, 7.89913828e-09, 7.89913828e-09, 7.89913828e-09,
5.77602003e-10, 5.77602003e-10, 5.77602003e-10, 5.77602003e-10,
4.20009750e-11, 4.20009750e-11, 4.20009750e-11, 4.20009750e-11,
3.02859296e-12, 3.02859296e-12, 3.02859296e-12, 3.02859296e-12,
2.15774482e-13, 2.15774482e-13, 2.15774482e-13, 2.15774482e-13,
1.50503680e-14, 1.50503680e-14, 1.50503680e-14, 1.50503680e-14,
1.05328765e-15, 1.05328765e-15, 1.05328765e-15, 1.05328765e-15,
5.90101831e-17, 5.90101831e-17, 5.90101831e-17, 5.90101831e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999997, 0.99999997,
0.99999997, 0.99999997, 0.99999972, 0.99999972, 0.99999972,
0.99999972, 0.99999784, 0.99999784, 0.99999784, 0.99999784,
0.99998533, 0.99998533, 0.99998533, 0.99998533, 0.999912 ,
0.999912 , 0.999912 , 0.999912 , 0.99953981, 0.99953981,
0.99953981, 0.99953981, 0.99793921, 0.99793921, 0.99793921,
0.99793921, 0.99226162, 0.99226162, 0.99226162, 0.99226162,
0.97615575, 0.97615575, 0.97615575, 0.97615575, 0.94055943,
0.94055943, 0.94055943, 0.94055943, 0.87968697, 0.87968697,
0.87968697, 0.87968697, 0.7970675 , 0.7970675 , 0.7970675 ,
0.7970675 , 0.7043173 , 0.7043173 , 0.7043173 , 0.7043173 ,
0.62032421, 0.62032421, 0.62032421, 0.62032421, 0.54686006,
0.54686006, 0.54686006, 0.54686006, 0.49810099, 0.49810099,
0.49810099, 0.49810099, 0.47541418, 0.47541418, 0.47541418,
0.47541418, 0.46923871, 0.46923871, 0.46923871, 0.46923871,
0.46803173, 0.46803173, 0.46803173, 0.46803173, 0.46700788,
0.46700788, 0.46700788, 0.46700788, 0.46571924, 0.46571924,
0.46571924, 0.46571924, 0.4641767 , 0.4641767 , 0.4641767 ,
0.4641767 , 0.46358808, 0.46358808, 0.46358808, 0.46358808,
0.46369014, 0.46369014, 0.46369014, 0.46369014, 0.46447516,
0.46447516, 0.46447516, 0.46447516, 0.46535017, 0.46535017,
0.46535017, 0.46535017, 0.46498179, 0.46498179, 0.46498179,
0.46498179, 0.45937493, 0.45937493, 0.45937493, 0.45937493,
0.43093306, 0.43093306, 0.43093306, 0.43093306, 0.32993773,
0.32993773, 0.32993773, 0.32993773, 0.16285786, 0.16285786,
0.16285786, 0.16285786, 0.10621868, 0.10621868, 0.10621868,
0.10621868, 0.10047825, 0.10047825, 0.10047825, 0.10047825,
0.10003557, 0.10003557, 0.10003557, 0.10003557, 0.10000263,
0.10000263, 0.10000263, 0.10000263, 0.10000019, 0.10000019,
0.10000019, 0.10000019, 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999996, 0.99999996,
0.99999996, 0.99999996, 0.99999967, 0.99999967, 0.99999967,
0.99999967, 0.99999762, 0.99999762, 0.99999762, 0.99999762,
0.99998459, 0.99998459, 0.99998459, 0.99998459, 0.99991206,
0.99991206, 0.99991206, 0.99991206, 0.99956257, 0.99956257,
0.99956257, 0.99956257, 0.99813629, 0.99813629, 0.99813629,
0.99813629, 0.99333466, 0.99333466, 0.99333466, 0.99333466,
0.98037152, 0.98037152, 0.98037152, 0.98037152, 0.9528877 ,
0.9528877 , 0.9528877 , 0.9528877 , 0.90714025, 0.90714025,
0.90714025, 0.90714025, 0.84549133, 0.84549133, 0.84549133,
0.84549133, 0.7755971 , 0.7755971 , 0.7755971 , 0.7755971 ,
0.71345002, 0.71345002, 0.71345002, 0.71345002, 0.65381042,
0.65381042, 0.65381042, 0.65381042, 0.60449037, 0.60449037,
0.60449037, 0.60449037, 0.58459071, 0.58459071, 0.58459071,
0.58459071, 0.58451904, 0.58451904, 0.58451904, 0.58451904,
0.58778013, 0.58778013, 0.58778013, 0.58778013, 0.58801938,
0.58801938, 0.58801938, 0.58801938, 0.58183243, 0.58183243,
0.58183243, 0.58183243, 0.56319798, 0.56319798, 0.56319798,
0.56319798, 0.52817231, 0.52817231, 0.52817231, 0.52817231,
0.47570938, 0.47570938, 0.47570938, 0.47570938, 0.41147965,
0.41147965, 0.41147965, 0.41147965, 0.36562289, 0.36562289,
0.36562289, 0.36562289, 0.34085096, 0.34085096, 0.34085096,
0.34085096, 0.32857429, 0.32857429, 0.32857429, 0.32857429,
0.32046461, 0.32046461, 0.32046461, 0.32046461, 0.30277278,
0.30277278, 0.30277278, 0.30277278, 0.23628223, 0.23628223,
0.23628223, 0.23628223, 0.14837728, 0.14837728, 0.14837728,
0.14837728, 0.12738162, 0.12738162, 0.12738162, 0.12738162,
0.12519072, 0.12519072, 0.12519072, 0.12519072, 0.12501437,
0.12501437, 0.12501437, 0.12501437, 0.12500107, 0.12500107,
0.12500107, 0.12500107, 0.12500008, 0.12500008, 0.12500008,
0.12500008, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
7.50000390e-01, 7.50000390e-01, 7.50000390e-01, 7.50000390e-01,
7.50002822e-01, 7.50002822e-01, 7.50002822e-01, 7.50002822e-01,
7.50018229e-01, 7.50018229e-01, 7.50018229e-01, 7.50018229e-01,
7.50104049e-01, 7.50104049e-01, 7.50104049e-01, 7.50104049e-01,
7.50517585e-01, 7.50517585e-01, 7.50517585e-01, 7.50517585e-01,
7.52205977e-01, 7.52205977e-01, 7.52205977e-01, 7.52205977e-01,
7.57902857e-01, 7.57902857e-01, 7.57902857e-01, 7.57902857e-01,
7.73399599e-01, 7.73399599e-01, 7.73399599e-01, 7.73399599e-01,
8.06867047e-01, 8.06867047e-01, 8.06867047e-01, 8.06867047e-01,
8.64509234e-01, 8.64509234e-01, 8.64509234e-01, 8.64509234e-01,
9.46188008e-01, 9.46188008e-01, 9.46188008e-01, 9.46188008e-01,
1.04182143e+00, 1.04182143e+00, 1.04182143e+00, 1.04182143e+00,
1.13851947e+00, 1.13851947e+00, 1.13851947e+00, 1.13851947e+00,
1.23521943e+00, 1.23521943e+00, 1.23521943e+00, 1.23521943e+00,
1.30684121e+00, 1.30684121e+00, 1.30684121e+00, 1.30684121e+00,
1.34402276e+00, 1.34402276e+00, 1.34402276e+00, 1.34402276e+00,
1.35679818e+00, 1.35679818e+00, 1.35679818e+00, 1.35679818e+00,
1.36042879e+00, 1.36042879e+00, 1.36042879e+00, 1.36042879e+00,
1.36144375e+00, 1.36144375e+00, 1.36144375e+00, 1.36144375e+00,
1.36176750e+00, 1.36176750e+00, 1.36176750e+00, 1.36176750e+00,
1.36169308e+00, 1.36169308e+00, 1.36169308e+00, 1.36169308e+00,
1.36111048e+00, 1.36111048e+00, 1.36111048e+00, 1.36111048e+00,
1.36105105e+00, 1.36105105e+00, 1.36105105e+00, 1.36105105e+00,
1.36162469e+00, 1.36162469e+00, 1.36162469e+00, 1.36162469e+00,
1.36281678e+00, 1.36281678e+00, 1.36281678e+00, 1.36281678e+00,
1.36293589e+00, 1.36293589e+00, 1.36293589e+00, 1.36293589e+00,
1.35989169e+00, 1.35989169e+00, 1.35989169e+00, 1.35989169e+00,
1.33857964e+00, 1.33857964e+00, 1.33857964e+00, 1.33857964e+00,
1.23678480e+00, 1.23678480e+00, 1.23678480e+00, 1.23678480e+00,
8.59426221e-01, 8.59426221e-01, 8.59426221e-01, 8.59426221e-01,
2.22121850e-01, 2.22121850e-01, 2.22121850e-01, 2.22121850e-01,
2.16158662e-02, 2.16158662e-02, 2.16158662e-02, 2.16158662e-02,
1.64641832e-03, 1.64641832e-03, 1.64641832e-03, 1.64641832e-03,
1.22204390e-04, 1.22204390e-04, 1.22204390e-04, 1.22204390e-04,
9.04194482e-06, 9.04194482e-06, 9.04194482e-06, 9.04194482e-06,
6.67040993e-07, 6.67040993e-07, 6.67040993e-07, 6.67040993e-07,
4.90964691e-08, 4.90964691e-08, 4.90964691e-08, 4.90964691e-08,
3.60523547e-09, 3.60523547e-09, 3.60523547e-09, 3.60523547e-09,
2.63885888e-10, 2.63885888e-10, 2.63885888e-10, 2.63885888e-10,
1.92204794e-11, 1.92204794e-11, 1.92204794e-11, 1.92204794e-11,
1.38961104e-12, 1.38961104e-12, 1.38961104e-12, 1.38961104e-12,
9.92868582e-14, 9.92868582e-14, 9.92868582e-14, 9.92868582e-14,
7.03275916e-15, 7.03275916e-15, 7.03275916e-15, 7.03275916e-15,
5.17027335e-16, 5.17027335e-16, 5.17027335e-16, 5.17027335e-16,
3.42591394e-17, 3.42591394e-17, 3.42591394e-17, 3.42591394e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999994, 0.99999994,
0.99999994, 0.99999994, 0.99999954, 0.99999954, 0.99999954,
0.99999954, 0.99999666, 0.99999666, 0.99999666, 0.99999666,
0.99997843, 0.99997843, 0.99997843, 0.99997843, 0.99987689,
0.99987689, 0.99987689, 0.99987689, 0.99938776, 0.99938776,
0.99938776, 0.99938776, 0.99739311, 0.99739311, 0.99739311,
0.99739311, 0.99069162, 0.99069162, 0.99069162, 0.99069162,
0.97268505, 0.97268505, 0.97268505, 0.97268505, 0.93486932,
0.93486932, 0.93486932, 0.93486932, 0.87293717, 0.87293717,
0.87293717, 0.87293717, 0.79146304, 0.79146304, 0.79146304,
0.79146304, 0.70191535, 0.70191535, 0.70191535, 0.70191535,
0.62102876, 0.62102876, 0.62102876, 0.62102876, 0.54957627,
0.54957627, 0.54957627, 0.54957627, 0.50083599, 0.50083599,
0.50083599, 0.50083599, 0.47665599, 0.47665599, 0.47665599,
0.47665599, 0.46931339, 0.46931339, 0.46931339, 0.46931339,
0.4680499 , 0.4680499 , 0.4680499 , 0.4680499 , 0.46732564,
0.46732564, 0.46732564, 0.46732564, 0.46628964, 0.46628964,
0.46628964, 0.46628964, 0.46482191, 0.46482191, 0.46482191,
0.46482191, 0.46383924, 0.46383924, 0.46383924, 0.46383924,
0.46359009, 0.46359009, 0.46359009, 0.46359009, 0.46381923,
0.46381923, 0.46381923, 0.46381923, 0.46482679, 0.46482679,
0.46482679, 0.46482679, 0.46530733, 0.46530733, 0.46530733,
0.46530733, 0.46390266, 0.46390266, 0.46390266, 0.46390266,
0.45436119, 0.45436119, 0.45436119, 0.45436119, 0.41039534,
0.41039534, 0.41039534, 0.41039534, 0.27755879, 0.27755879,
0.27755879, 0.27755879, 0.13288495, 0.13288495, 0.13288495,
0.13288495, 0.10288468, 0.10288468, 0.10288468, 0.10288468,
0.1002179 , 0.1002179 , 0.1002179 , 0.1002179 , 0.10001617,
0.10001617, 0.10001617, 0.10001617, 0.1000012 , 0.1000012 ,
0.1000012 , 0.1000012 , 0.10000009, 0.10000009, 0.10000009,
0.10000009, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999993, 0.99999993,
0.99999993, 0.99999993, 0.99999948, 0.99999948, 0.99999948,
0.99999948, 0.99999639, 0.99999639, 0.99999639, 0.99999639,
0.99997776, 0.99997776, 0.99997776, 0.99997776, 0.99987902,
0.99987902, 0.99987902, 0.99987902, 0.99942658, 0.99942658,
0.99942658, 0.99942658, 0.99767258, 0.99767258, 0.99767258,
0.99767258, 0.99206839, 0.99206839, 0.99206839, 0.99206839,
0.97770184, 0.97770184, 0.97770184, 0.97770184, 0.94867108,
0.94867108, 0.94867108, 0.94867108, 0.90224525, 0.90224525,
0.90224525, 0.90224525, 0.84145258, 0.84145258, 0.84145258,
0.84145258, 0.77386505, 0.77386505, 0.77386505, 0.77386505,
0.71340462, 0.71340462, 0.71340462, 0.71340462, 0.65703975,
0.65703975, 0.65703975, 0.65703975, 0.60849329, 0.60849329,
0.60849329, 0.60849329, 0.58468831, 0.58468831, 0.58468831,
0.58468831, 0.58294187, 0.58294187, 0.58294187, 0.58294187,
0.58573115, 0.58573115, 0.58573115, 0.58573115, 0.58763646,
0.58763646, 0.58763646, 0.58763646, 0.58482843, 0.58482843,
0.58482843, 0.58482843, 0.57251091, 0.57251091, 0.57251091,
0.57251091, 0.54537817, 0.54537817, 0.54537817, 0.54537817,
0.50073074, 0.50073074, 0.50073074, 0.50073074, 0.4391213 ,
0.4391213 , 0.4391213 , 0.4391213 , 0.38293704, 0.38293704,
0.38293704, 0.38293704, 0.35013347, 0.35013347, 0.35013347,
0.35013347, 0.33368088, 0.33368088, 0.33368088, 0.33368088,
0.32582494, 0.32582494, 0.32582494, 0.32582494, 0.31844833,
0.31844833, 0.31844833, 0.31844833, 0.29046653, 0.29046653,
0.29046653, 0.29046653, 0.20455633, 0.20455633, 0.20455633,
0.20455633, 0.1372754 , 0.1372754 , 0.1372754 , 0.1372754 ,
0.12612182, 0.12612182, 0.12612182, 0.12612182, 0.1250873 ,
0.1250873 , 0.1250873 , 0.1250873 , 0.12500654, 0.12500654,
0.12500654, 0.12500654, 0.12500049, 0.12500049, 0.12500049,
0.12500049, 0.12500004, 0.12500004, 0.12500004, 0.12500004,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000010e-01, 7.50000010e-01, 7.50000010e-01, 7.50000010e-01,
7.50000081e-01, 7.50000081e-01, 7.50000081e-01, 7.50000081e-01,
7.50000620e-01, 7.50000620e-01, 7.50000620e-01, 7.50000620e-01,
7.50004274e-01, 7.50004274e-01, 7.50004274e-01, 7.50004274e-01,
7.50026313e-01, 7.50026313e-01, 7.50026313e-01, 7.50026313e-01,
7.50143141e-01, 7.50143141e-01, 7.50143141e-01, 7.50143141e-01,
7.50678514e-01, 7.50678514e-01, 7.50678514e-01, 7.50678514e-01,
7.52755312e-01, 7.52755312e-01, 7.52755312e-01, 7.52755312e-01,
7.59409383e-01, 7.59409383e-01, 7.59409383e-01, 7.59409383e-01,
7.76615231e-01, 7.76615231e-01, 7.76615231e-01, 7.76615231e-01,
8.12080151e-01, 8.12080151e-01, 8.12080151e-01, 8.12080151e-01,
8.70817643e-01, 8.70817643e-01, 8.70817643e-01, 8.70817643e-01,
9.51667486e-01, 9.51667486e-01, 9.51667486e-01, 9.51667486e-01,
1.04421860e+00, 1.04421860e+00, 1.04421860e+00, 1.04421860e+00,
1.13749267e+00, 1.13749267e+00, 1.13749267e+00, 1.13749267e+00,
1.23129415e+00, 1.23129415e+00, 1.23129415e+00, 1.23129415e+00,
1.30304219e+00, 1.30304219e+00, 1.30304219e+00, 1.30304219e+00,
1.34192905e+00, 1.34192905e+00, 1.34192905e+00, 1.34192905e+00,
1.35567521e+00, 1.35567521e+00, 1.35567521e+00, 1.35567521e+00,
1.35980921e+00, 1.35980921e+00, 1.35980921e+00, 1.35980921e+00,
1.36138601e+00, 1.36138601e+00, 1.36138601e+00, 1.36138601e+00,
1.36219441e+00, 1.36219441e+00, 1.36219441e+00, 1.36219441e+00,
1.36249996e+00, 1.36249996e+00, 1.36249996e+00, 1.36249996e+00,
1.36190367e+00, 1.36190367e+00, 1.36190367e+00, 1.36190367e+00,
1.36127546e+00, 1.36127546e+00, 1.36127546e+00, 1.36127546e+00,
1.36128875e+00, 1.36128875e+00, 1.36128875e+00, 1.36128875e+00,
1.36152144e+00, 1.36152144e+00, 1.36152144e+00, 1.36152144e+00,
1.36239947e+00, 1.36239947e+00, 1.36239947e+00, 1.36239947e+00,
1.36213183e+00, 1.36213183e+00, 1.36213183e+00, 1.36213183e+00,
1.35586085e+00, 1.35586085e+00, 1.35586085e+00, 1.35586085e+00,
1.32010356e+00, 1.32010356e+00, 1.32010356e+00, 1.32010356e+00,
1.16287547e+00, 1.16287547e+00, 1.16287547e+00, 1.16287547e+00,
6.61162492e-01, 6.61162492e-01, 6.61162492e-01, 6.61162492e-01,
1.16351678e-01, 1.16351678e-01, 1.16351678e-01, 1.16351678e-01,
9.97096672e-03, 9.97096672e-03, 9.97096672e-03, 9.97096672e-03,
7.48552643e-04, 7.48552643e-04, 7.48552643e-04, 7.48552643e-04,
5.55786565e-05, 5.55786565e-05, 5.55786565e-05, 5.55786565e-05,
4.11419588e-06, 4.11419588e-06, 4.11419588e-06, 4.11419588e-06,
3.03837917e-07, 3.03837917e-07, 3.03837917e-07, 3.03837917e-07,
2.23849014e-08, 2.23849014e-08, 2.23849014e-08, 2.23849014e-08,
1.64507675e-09, 1.64507675e-09, 1.64507675e-09, 1.64507675e-09,
1.20527942e-10, 1.20527942e-10, 1.20527942e-10, 1.20527942e-10,
8.79167161e-12, 8.79167161e-12, 8.79167161e-12, 8.79167161e-12,
6.36916518e-13, 6.36916518e-13, 6.36916518e-13, 6.36916518e-13,
4.58094779e-14, 4.58094779e-14, 4.58094779e-14, 4.58094779e-14,
3.28064473e-15, 3.28064473e-15, 3.28064473e-15, 3.28064473e-15,
2.21511670e-16, 2.21511670e-16, 2.21511670e-16, 2.21511670e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.9999999 , 0.9999999 ,
0.9999999 , 0.9999999 , 0.99999927, 0.99999927, 0.99999927,
0.99999927, 0.99999494, 0.99999494, 0.99999494, 0.99999494,
0.99996887, 0.99996887, 0.99996887, 0.99996887, 0.99983065,
0.99983065, 0.99983065, 0.99983065, 0.99919747, 0.99919747,
0.99919747, 0.99919747, 0.99674497, 0.99674497, 0.99674497,
0.99674497, 0.98892685, 0.98892685, 0.98892685, 0.98892685,
0.96898818, 0.96898818, 0.96898818, 0.96898818, 0.92909988,
0.92909988, 0.92909988, 0.92909988, 0.86636274, 0.86636274,
0.86636274, 0.86636274, 0.7861649 , 0.7861649 , 0.7861649 ,
0.7861649 , 0.69970743, 0.69970743, 0.69970743, 0.69970743,
0.62175522, 0.62175522, 0.62175522, 0.62175522, 0.55208192,
0.55208192, 0.55208192, 0.55208192, 0.50351395, 0.50351395,
0.50351395, 0.50351395, 0.47813801, 0.47813801, 0.47813801,
0.47813801, 0.46954374, 0.46954374, 0.46954374, 0.46954374,
0.46791496, 0.46791496, 0.46791496, 0.46791496, 0.46740496,
0.46740496, 0.46740496, 0.46740496, 0.466675 , 0.466675 ,
0.466675 , 0.466675 , 0.46544862, 0.46544862, 0.46544862,
0.46544862, 0.46432762, 0.46432762, 0.46432762, 0.46432762,
0.46372285, 0.46372285, 0.46372285, 0.46372285, 0.46365147,
0.46365147, 0.46365147, 0.46365147, 0.46418465, 0.46418465,
0.46418465, 0.46418465, 0.46505548, 0.46505548, 0.46505548,
0.46505548, 0.46493934, 0.46493934, 0.46493934, 0.46493934,
0.46223591, 0.46223591, 0.46223591, 0.46223591, 0.44656565,
0.44656565, 0.44656565, 0.44656565, 0.38108891, 0.38108891,
0.38108891, 0.38108891, 0.22238569, 0.22238569, 0.22238569,
0.22238569, 0.11633052, 0.11633052, 0.11633052, 0.11633052,
0.10132364, 0.10132364, 0.10132364, 0.10132364, 0.10009904,
0.10009904, 0.10009904, 0.10009904, 0.10000735, 0.10000735,
0.10000735, 0.10000735, 0.10000054, 0.10000054, 0.10000054,
0.10000054, 0.10000004, 0.10000004, 0.10000004, 0.10000004,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999989, 0.99999989,
0.99999989, 0.99999989, 0.99999918, 0.99999918, 0.99999918,
0.99999918, 0.99999463, 0.99999463, 0.99999463, 0.99999463,
0.99996845, 0.99996845, 0.99996845, 0.99996845, 0.99983612,
0.99983612, 0.99983612, 0.99983612, 0.9992586 , 0.9992586 ,
0.9992586 , 0.9992586 , 0.99712842, 0.99712842, 0.99712842,
0.99712842, 0.99065816, 0.99065816, 0.99065816, 0.99065816,
0.97487697, 0.97487697, 0.97487697, 0.97487697, 0.94441074,
0.94441074, 0.94441074, 0.94441074, 0.89748102, 0.89748102,
0.89748102, 0.89748102, 0.83763755, 0.83763755, 0.83763755,
0.83763755, 0.77233781, 0.77233781, 0.77233781, 0.77233781,
0.7132907 , 0.7132907 , 0.7132907 , 0.7132907 , 0.65963706,
0.65963706, 0.65963706, 0.65963706, 0.612651 , 0.612651 ,
0.612651 , 0.612651 , 0.5857125 , 0.5857125 , 0.5857125 ,
0.5857125 , 0.58169792, 0.58169792, 0.58169792, 0.58169792,
0.5836328 , 0.5836328 , 0.5836328 , 0.5836328 , 0.58674094,
0.58674094, 0.58674094, 0.58674094, 0.58596439, 0.58596439,
0.58596439, 0.58596439, 0.57862616, 0.57862616, 0.57862616,
0.57862616, 0.55885909, 0.55885909, 0.55885909, 0.55885909,
0.52235302, 0.52235302, 0.52235302, 0.52235302, 0.46790255,
0.46790255, 0.46790255, 0.46790255, 0.40461805, 0.40461805,
0.40461805, 0.40461805, 0.36237207, 0.36237207, 0.36237207,
0.36237207, 0.33984239, 0.33984239, 0.33984239, 0.33984239,
0.32970398, 0.32970398, 0.32970398, 0.32970398, 0.32449566,
0.32449566, 0.32449566, 0.32449566, 0.31491343, 0.31491343,
0.31491343, 0.31491343, 0.2715366 , 0.2715366 , 0.2715366 ,
0.2715366 , 0.17519676, 0.17519676, 0.17519676, 0.17519676,
0.13110272, 0.13110272, 0.13110272, 0.13110272, 0.12551958,
0.12551958, 0.12551958, 0.12551958, 0.12503987, 0.12503987,
0.12503987, 0.12503987, 0.12500298, 0.12500298, 0.12500298,
0.12500298, 0.12500022, 0.12500022, 0.12500022, 0.12500022,
0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
7.50000132e-01, 7.50000132e-01, 7.50000132e-01, 7.50000132e-01,
7.50000966e-01, 7.50000966e-01, 7.50000966e-01, 7.50000966e-01,
7.50006351e-01, 7.50006351e-01, 7.50006351e-01, 7.50006351e-01,
7.50037333e-01, 7.50037333e-01, 7.50037333e-01, 7.50037333e-01,
7.50193899e-01, 7.50193899e-01, 7.50193899e-01, 7.50193899e-01,
7.50877324e-01, 7.50877324e-01, 7.50877324e-01, 7.50877324e-01,
7.53400222e-01, 7.53400222e-01, 7.53400222e-01, 7.53400222e-01,
7.61089231e-01, 7.61089231e-01, 7.61089231e-01, 7.61089231e-01,
7.80026437e-01, 7.80026437e-01, 7.80026437e-01, 7.80026437e-01,
8.17367158e-01, 8.17367158e-01, 8.17367158e-01, 8.17367158e-01,
8.76981911e-01, 8.76981911e-01, 8.76981911e-01, 8.76981911e-01,
9.56868187e-01, 9.56868187e-01, 9.56868187e-01, 9.56868187e-01,
1.04646915e+00, 1.04646915e+00, 1.04646915e+00, 1.04646915e+00,
1.13664890e+00, 1.13664890e+00, 1.13664890e+00, 1.13664890e+00,
1.22747197e+00, 1.22747197e+00, 1.22747197e+00, 1.22747197e+00,
1.29906860e+00, 1.29906860e+00, 1.29906860e+00, 1.29906860e+00,
1.33980440e+00, 1.33980440e+00, 1.33980440e+00, 1.33980440e+00,
1.35473761e+00, 1.35473761e+00, 1.35473761e+00, 1.35473761e+00,
1.35912884e+00, 1.35912884e+00, 1.35912884e+00, 1.35912884e+00,
1.36103279e+00, 1.36103279e+00, 1.36103279e+00, 1.36103279e+00,
1.36224006e+00, 1.36224006e+00, 1.36224006e+00, 1.36224006e+00,
1.36307271e+00, 1.36307271e+00, 1.36307271e+00, 1.36307271e+00,
1.36277930e+00, 1.36277930e+00, 1.36277930e+00, 1.36277930e+00,
1.36186954e+00, 1.36186954e+00, 1.36186954e+00, 1.36186954e+00,
1.36140807e+00, 1.36140807e+00, 1.36140807e+00, 1.36140807e+00,
1.36104332e+00, 1.36104332e+00, 1.36104332e+00, 1.36104332e+00,
1.36139643e+00, 1.36139643e+00, 1.36139643e+00, 1.36139643e+00,
1.36210857e+00, 1.36210857e+00, 1.36210857e+00, 1.36210857e+00,
1.36065559e+00, 1.36065559e+00, 1.36065559e+00, 1.36065559e+00,
1.34903815e+00, 1.34903815e+00, 1.34903815e+00, 1.34903815e+00,
1.29211103e+00, 1.29211103e+00, 1.29211103e+00, 1.29211103e+00,
1.05539569e+00, 1.05539569e+00, 1.05539569e+00, 1.05539569e+00,
4.48123192e-01, 4.48123192e-01, 4.48123192e-01, 4.48123192e-01,
5.68576756e-02, 5.68576756e-02, 5.68576756e-02, 5.68576756e-02,
4.54568441e-03, 4.54568441e-03, 4.54568441e-03, 4.54568441e-03,
3.40320288e-04, 3.40320288e-04, 3.40320288e-04, 3.40320288e-04,
2.52658640e-05, 2.52658640e-05, 2.52658640e-05, 2.52658640e-05,
1.87162703e-06, 1.87162703e-06, 1.87162703e-06, 1.87162703e-06,
1.38344702e-07, 1.38344702e-07, 1.38344702e-07, 1.38344702e-07,
1.02018842e-08, 1.02018842e-08, 1.02018842e-08, 1.02018842e-08,
7.50419983e-10, 7.50419983e-10, 7.50419983e-10, 7.50419983e-10,
5.50338981e-11, 5.50338981e-11, 5.50338981e-11, 5.50338981e-11,
4.01951569e-12, 4.01951569e-12, 4.01951569e-12, 4.01951569e-12,
2.91936804e-13, 2.91936804e-13, 2.91936804e-13, 2.91936804e-13,
2.11199253e-14, 2.11199253e-14, 2.11199253e-14, 2.11199253e-14,
1.47398293e-15, 1.47398293e-15, 1.47398293e-15, 1.47398293e-15,
9.45362951e-17, 9.45362951e-17, 9.45362951e-17, 9.45362951e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999984, 0.99999984,
0.99999984, 0.99999984, 0.99999886, 0.99999886, 0.99999886,
0.99999886, 0.99999249, 0.99999249, 0.99999249, 0.99999249,
0.99995583, 0.99995583, 0.99995583, 0.99995583, 0.9997706 ,
0.9997706 , 0.9997706 , 0.9997706 , 0.99896245, 0.99896245,
0.99896245, 0.99896245, 0.9959846 , 0.9959846 , 0.9959846 ,
0.9959846 , 0.98696264, 0.98696264, 0.98696264, 0.98696264,
0.96508085, 0.96508085, 0.96508085, 0.96508085, 0.92328027,
0.92328027, 0.92328027, 0.92328027, 0.85997549, 0.85997549,
0.85997549, 0.85997549, 0.78115703, 0.78115703, 0.78115703,
0.78115703, 0.69766029, 0.69766029, 0.69766029, 0.69766029,
0.62252492, 0.62252492, 0.62252492, 0.62252492, 0.55444993,
0.55444993, 0.55444993, 0.55444993, 0.50606466, 0.50606466,
0.50606466, 0.50606466, 0.4797491 , 0.4797491 , 0.4797491 ,
0.4797491 , 0.47000142, 0.47000142, 0.47000142, 0.47000142,
0.46778259, 0.46778259, 0.46778259, 0.46778259, 0.46731388,
0.46731388, 0.46731388, 0.46731388, 0.46681772, 0.46681772,
0.46681772, 0.46681772, 0.46594134, 0.46594134, 0.46594134,
0.46594134, 0.46489255, 0.46489255, 0.46489255, 0.46489255,
0.46406793, 0.46406793, 0.46406793, 0.46406793, 0.46371733,
0.46371733, 0.46371733, 0.46371733, 0.46392827, 0.46392827,
0.46392827, 0.46392827, 0.46457704, 0.46457704, 0.46457704,
0.46457704, 0.4649299 , 0.4649299 , 0.4649299 , 0.4649299 ,
0.464449 , 0.464449 , 0.464449 , 0.464449 , 0.45965373,
0.45965373, 0.45965373, 0.45965373, 0.43413396, 0.43413396,
0.43413396, 0.43413396, 0.3417067 , 0.3417067 , 0.3417067 ,
0.3417067 , 0.17380695, 0.17380695, 0.17380695, 0.17380695,
0.10772404, 0.10772404, 0.10772404, 0.10772404, 0.10060218,
0.10060218, 0.10060218, 0.10060218, 0.10004502, 0.10004502,
0.10004502, 0.10004502, 0.10000334, 0.10000334, 0.10000334,
0.10000334, 0.10000025, 0.10000025, 0.10000025, 0.10000025,
0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999982, 0.99999982,
0.99999982, 0.99999982, 0.99999875, 0.99999875, 0.99999875,
0.99999875, 0.99999216, 0.99999216, 0.99999216, 0.99999216,
0.99995594, 0.99995594, 0.99995594, 0.99995594, 0.99978118,
0.99978118, 0.99978118, 0.99978118, 0.99905363, 0.99905363,
0.99905363, 0.99905363, 0.99649673, 0.99649673, 0.99649673,
0.99649673, 0.98910195, 0.98910195, 0.98910195, 0.98910195,
0.97190917, 0.97190917, 0.97190917, 0.97190917, 0.94012653,
0.94012653, 0.94012653, 0.94012653, 0.89285479, 0.89285479,
0.89285479, 0.89285479, 0.83403394, 0.83403394, 0.83403394,
0.83403394, 0.77099739, 0.77099739, 0.77099739, 0.77099739,
0.71316881, 0.71316881, 0.71316881, 0.71316881, 0.66167639,
0.66167639, 0.66167639, 0.66167639, 0.61669901, 0.61669901,
0.61669901, 0.61669901, 0.58751731, 0.58751731, 0.58751731,
0.58751731, 0.58088401, 0.58088401, 0.58088401, 0.58088401,
0.58197653, 0.58197653, 0.58197653, 0.58197653, 0.58530083,
0.58530083, 0.58530083, 0.58530083, 0.58593749, 0.58593749,
0.58593749, 0.58593749, 0.58219521, 0.58219521, 0.58219521,
0.58219521, 0.56871482, 0.56871482, 0.56871482, 0.56871482,
0.54028566, 0.54028566, 0.54028566, 0.54028566, 0.49391932,
0.49391932, 0.49391932, 0.49391932, 0.43125951, 0.43125951,
0.43125951, 0.43125951, 0.37842572, 0.37842572, 0.37842572,
0.37842572, 0.34810948, 0.34810948, 0.34810948, 0.34810948,
0.33368361, 0.33368361, 0.33368361, 0.33368361, 0.32786563,
0.32786563, 0.32786563, 0.32786563, 0.32355452, 0.32355452,
0.32355452, 0.32355452, 0.30821032, 0.30821032, 0.30821032,
0.30821032, 0.24538437, 0.24538437, 0.24538437, 0.24538437,
0.15274327, 0.15274327, 0.15274327, 0.15274327, 0.12792757,
0.12792757, 0.12792757, 0.12792757, 0.12523902, 0.12523902,
0.12523902, 0.12523902, 0.12501814, 0.12501814, 0.12501814,
0.12501814, 0.12500135, 0.12500135, 0.12500135, 0.12500135,
0.1250001 , 0.1250001 , 0.1250001 , 0.1250001 , 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
7.50000211e-01, 7.50000211e-01, 7.50000211e-01, 7.50000211e-01,
7.50001474e-01, 7.50001474e-01, 7.50001474e-01, 7.50001474e-01,
7.50009273e-01, 7.50009273e-01, 7.50009273e-01, 7.50009273e-01,
7.50052129e-01, 7.50052129e-01, 7.50052129e-01, 7.50052129e-01,
7.50258907e-01, 7.50258907e-01, 7.50258907e-01, 7.50258907e-01,
7.51119944e-01, 7.51119944e-01, 7.51119944e-01, 7.51119944e-01,
7.54149241e-01, 7.54149241e-01, 7.54149241e-01, 7.54149241e-01,
7.62945461e-01, 7.62945461e-01, 7.62945461e-01, 7.62945461e-01,
7.83619793e-01, 7.83619793e-01, 7.83619793e-01, 7.83619793e-01,
8.22703779e-01, 8.22703779e-01, 8.22703779e-01, 8.22703779e-01,
8.82990632e-01, 8.82990632e-01, 8.82990632e-01, 8.82990632e-01,
9.61803322e-01, 9.61803322e-01, 9.61803322e-01, 9.61803322e-01,
1.04857800e+00, 1.04857800e+00, 1.04857800e+00, 1.04857800e+00,
1.13591034e+00, 1.13591034e+00, 1.13591034e+00, 1.13591034e+00,
1.22389255e+00, 1.22389255e+00, 1.22389255e+00, 1.22389255e+00,
1.29496803e+00, 1.29496803e+00, 1.29496803e+00, 1.29496803e+00,
1.33747715e+00, 1.33747715e+00, 1.33747715e+00, 1.33747715e+00,
1.35392574e+00, 1.35392574e+00, 1.35392574e+00, 1.35392574e+00,
1.35857156e+00, 1.35857156e+00, 1.35857156e+00, 1.35857156e+00,
1.36055928e+00, 1.36055928e+00, 1.36055928e+00, 1.36055928e+00,
1.36197585e+00, 1.36197585e+00, 1.36197585e+00, 1.36197585e+00,
1.36328541e+00, 1.36328541e+00, 1.36328541e+00, 1.36328541e+00,
1.36343618e+00, 1.36343618e+00, 1.36343618e+00, 1.36343618e+00,
1.36275200e+00, 1.36275200e+00, 1.36275200e+00, 1.36275200e+00,
1.36185315e+00, 1.36185315e+00, 1.36185315e+00, 1.36185315e+00,
1.36106906e+00, 1.36106906e+00, 1.36106906e+00, 1.36106906e+00,
1.36076174e+00, 1.36076174e+00, 1.36076174e+00, 1.36076174e+00,
1.36153615e+00, 1.36153615e+00, 1.36153615e+00, 1.36153615e+00,
1.36145251e+00, 1.36145251e+00, 1.36145251e+00, 1.36145251e+00,
1.35798352e+00, 1.35798352e+00, 1.35798352e+00, 1.35798352e+00,
1.33896458e+00, 1.33896458e+00, 1.33896458e+00, 1.33896458e+00,
1.24901222e+00, 1.24901222e+00, 1.24901222e+00, 1.24901222e+00,
9.05845095e-01, 9.05845095e-01, 9.05845095e-01, 9.05845095e-01,
2.60939488e-01, 2.60939488e-01, 2.60939488e-01, 2.60939488e-01,
2.66949863e-02, 2.66949863e-02, 2.66949863e-02, 2.66949863e-02,
2.06759900e-03, 2.06759900e-03, 2.06759900e-03, 2.06759900e-03,
1.54404335e-04, 1.54404335e-04, 1.54404335e-04, 1.54404335e-04,
1.14811015e-05, 1.14811015e-05, 1.14811015e-05, 1.14811015e-05,
8.51232178e-07, 8.51232178e-07, 8.51232178e-07, 8.51232178e-07,
6.29700498e-08, 6.29700498e-08, 6.29700498e-08, 6.29700498e-08,
4.64771793e-09, 4.64771793e-09, 4.64771793e-09, 4.64771793e-09,
3.42187413e-10, 3.42187413e-10, 3.42187413e-10, 3.42187413e-10,
2.51200466e-11, 2.51200466e-11, 2.51200466e-11, 2.51200466e-11,
1.83703667e-12, 1.83703667e-12, 1.83703667e-12, 1.83703667e-12,
1.33855888e-13, 1.33855888e-13, 1.33855888e-13, 1.33855888e-13,
9.58591565e-15, 9.58591565e-15, 9.58591565e-15, 9.58591565e-15,
6.58015436e-16, 6.58015436e-16, 6.58015436e-16, 6.58015436e-16,
4.63362200e-17, 4.63362200e-17, 4.63362200e-17, 4.63362200e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.99999975, 0.99999975,
0.99999975, 0.99999975, 0.99999826, 0.99999826, 0.99999826,
0.99999826, 0.99998903, 0.99998903, 0.99998903, 0.99998903,
0.99993832, 0.99993832, 0.99993832, 0.99993832, 0.9996937 ,
0.9996937 , 0.9996937 , 0.9996937 , 0.9986757 , 0.9986757 ,
0.9986757 , 0.9986757 , 0.99510219, 0.99510219, 0.99510219,
0.99510219, 0.98479658, 0.98479658, 0.98479658, 0.98479658,
0.96098067, 0.96098067, 0.96098067, 0.96098067, 0.91743778,
0.91743778, 0.91743778, 0.91743778, 0.85378402, 0.85378402,
0.85378402, 0.85378402, 0.7764234 , 0.7764234 , 0.7764234 ,
0.7764234 , 0.69575388, 0.69575388, 0.69575388, 0.69575388,
0.62328396, 0.62328396, 0.62328396, 0.62328396, 0.55678008,
0.55678008, 0.55678008, 0.55678008, 0.50850264, 0.50850264,
0.50850264, 0.50850264, 0.48137473, 0.48137473, 0.48137473,
0.48137473, 0.47065375, 0.47065375, 0.47065375, 0.47065375,
0.46777062, 0.46777062, 0.46777062, 0.46777062, 0.46716399,
0.46716399, 0.46716399, 0.46716399, 0.46676886, 0.46676886,
0.46676886, 0.46676886, 0.46619345, 0.46619345, 0.46619345,
0.46619345, 0.46537137, 0.46537137, 0.46537137, 0.46537137,
0.46458172, 0.46458172, 0.46458172, 0.46458172, 0.46395933,
0.46395933, 0.46395933, 0.46395933, 0.46392493, 0.46392493,
0.46392493, 0.46392493, 0.46425901, 0.46425901, 0.46425901,
0.46425901, 0.46466477, 0.46466477, 0.46466477, 0.46466477,
0.46482226, 0.46482226, 0.46482226, 0.46482226, 0.46376334,
0.46376334, 0.46376334, 0.46376334, 0.45509168, 0.45509168,
0.45509168, 0.45509168, 0.41543057, 0.41543057, 0.41543057,
0.41543057, 0.29185634, 0.29185634, 0.29185634, 0.29185634,
0.13928365, 0.13928365, 0.13928365, 0.13928365, 0.10357133,
0.10357133, 0.10357133, 0.10357133, 0.10027368, 0.10027368,
0.10027368, 0.10027368, 0.10002043, 0.10002043, 0.10002043,
0.10002043, 0.10000152, 0.10000152, 0.10000152, 0.10000152,
0.10000011, 0.10000011, 0.10000011, 0.10000011, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999972, 0.99999972,
0.99999972, 0.99999972, 0.99999813, 0.99999813, 0.99999813,
0.99999813, 0.99998874, 0.99998874, 0.99998874, 0.99998874,
0.99993939, 0.99993939, 0.99993939, 0.99993939, 0.99971172,
0.99971172, 0.99971172, 0.99971172, 0.99880638, 0.99880638,
0.99880638, 0.99880638, 0.99577085, 0.99577085, 0.99577085,
0.99577085, 0.98739937, 0.98739937, 0.98739937, 0.98739937,
0.96881177, 0.96881177, 0.96881177, 0.96881177, 0.93583686,
0.93583686, 0.93583686, 0.93583686, 0.88837163, 0.88837163,
0.88837163, 0.88837163, 0.83062885, 0.83062885, 0.83062885,
0.83062885, 0.76981937, 0.76981937, 0.76981937, 0.76981937,
0.71310496, 0.71310496, 0.71310496, 0.71310496, 0.66323748,
0.66323748, 0.66323748, 0.66323748, 0.62045416, 0.62045416,
0.62045416, 0.62045416, 0.58992516, 0.58992516, 0.58992516,
0.58992516, 0.58052011, 0.58052011, 0.58052011, 0.58052011,
0.58080503, 0.58080503, 0.58080503, 0.58080503, 0.58354665,
0.58354665, 0.58354665, 0.58354665, 0.58540693, 0.58540693,
0.58540693, 0.58540693, 0.58382526, 0.58382526, 0.58382526,
0.58382526, 0.57540774, 0.57540774, 0.57540774, 0.57540774,
0.55436649, 0.55436649, 0.55436649, 0.55436649, 0.51638779,
0.51638779, 0.51638779, 0.51638779, 0.46017314, 0.46017314,
0.46017314, 0.46017314, 0.39863657, 0.39863657, 0.39863657,
0.39863657, 0.3593355 , 0.3593355 , 0.3593355 , 0.3593355 ,
0.33897034, 0.33897034, 0.33897034, 0.33897034, 0.33057608,
0.33057608, 0.33057608, 0.33057608, 0.32697565, 0.32697565,
0.32697565, 0.32697565, 0.32222492, 0.32222492, 0.32222492,
0.32222492, 0.29663114, 0.29663114, 0.29663114, 0.29663114,
0.21326785, 0.21326785, 0.21326785, 0.21326785, 0.13963631,
0.13963631, 0.13963631, 0.13963631, 0.12638405, 0.12638405,
0.12638405, 0.12638405, 0.12510904, 0.12510904, 0.12510904,
0.12510904, 0.12500824, 0.12500824, 0.12500824, 0.12500824,
0.12500062, 0.12500062, 0.12500062, 0.12500062, 0.12500005,
0.12500005, 0.12500005, 0.12500005, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
7.50000045e-01, 7.50000045e-01, 7.50000045e-01, 7.50000045e-01,
7.50000331e-01, 7.50000331e-01, 7.50000331e-01, 7.50000331e-01,
7.50002210e-01, 7.50002210e-01, 7.50002210e-01, 7.50002210e-01,
7.50013317e-01, 7.50013317e-01, 7.50013317e-01, 7.50013317e-01,
7.50071715e-01, 7.50071715e-01, 7.50071715e-01, 7.50071715e-01,
7.50341105e-01, 7.50341105e-01, 7.50341105e-01, 7.50341105e-01,
7.51412648e-01, 7.51412648e-01, 7.51412648e-01, 7.51412648e-01,
7.55010444e-01, 7.55010444e-01, 7.55010444e-01, 7.55010444e-01,
7.64979298e-01, 7.64979298e-01, 7.64979298e-01, 7.64979298e-01,
7.87380429e-01, 7.87380429e-01, 7.87380429e-01, 7.87380429e-01,
8.28067152e-01, 8.28067152e-01, 8.28067152e-01, 8.28067152e-01,
8.88835090e-01, 8.88835090e-01, 8.88835090e-01, 8.88835090e-01,
9.66485823e-01, 9.66485823e-01, 9.66485823e-01, 9.66485823e-01,
1.05055852e+00, 1.05055852e+00, 1.05055852e+00, 1.05055852e+00,
1.13522481e+00, 1.13522481e+00, 1.13522481e+00, 1.13522481e+00,
1.22058953e+00, 1.22058953e+00, 1.22058953e+00, 1.22058953e+00,
1.29086599e+00, 1.29086599e+00, 1.29086599e+00, 1.29086599e+00,
1.33487117e+00, 1.33487117e+00, 1.33487117e+00, 1.33487117e+00,
1.35308250e+00, 1.35308250e+00, 1.35308250e+00, 1.35308250e+00,
1.35819700e+00, 1.35819700e+00, 1.35819700e+00, 1.35819700e+00,
1.36011186e+00, 1.36011186e+00, 1.36011186e+00, 1.36011186e+00,
1.36156806e+00, 1.36156806e+00, 1.36156806e+00, 1.36156806e+00,
1.36315058e+00, 1.36315058e+00, 1.36315058e+00, 1.36315058e+00,
1.36379727e+00, 1.36379727e+00, 1.36379727e+00, 1.36379727e+00,
1.36351067e+00, 1.36351067e+00, 1.36351067e+00, 1.36351067e+00,
1.36261248e+00, 1.36261248e+00, 1.36261248e+00, 1.36261248e+00,
1.36146436e+00, 1.36146436e+00, 1.36146436e+00, 1.36146436e+00,
1.36063916e+00, 1.36063916e+00, 1.36063916e+00, 1.36063916e+00,
1.36092008e+00, 1.36092008e+00, 1.36092008e+00, 1.36092008e+00,
1.36127360e+00, 1.36127360e+00, 1.36127360e+00, 1.36127360e+00,
1.36020110e+00, 1.36020110e+00, 1.36020110e+00, 1.36020110e+00,
1.35450702e+00, 1.35450702e+00, 1.35450702e+00, 1.35450702e+00,
1.32300030e+00, 1.32300030e+00, 1.32300030e+00, 1.32300030e+00,
1.18237908e+00, 1.18237908e+00, 1.18237908e+00, 1.18237908e+00,
7.15441717e-01, 7.15441717e-01, 7.15441717e-01, 7.15441717e-01,
1.38769905e-01, 1.38769905e-01, 1.38769905e-01, 1.38769905e-01,
1.23577720e-02, 1.23577720e-02, 1.23577720e-02, 1.23577720e-02,
9.36224416e-04, 9.36224416e-04, 9.36224416e-04, 9.36224416e-04,
7.00272710e-05, 7.00272710e-05, 7.00272710e-05, 7.00272710e-05,
5.21364262e-06, 5.21364262e-06, 5.21364262e-06, 5.21364262e-06,
3.86975587e-07, 3.86975587e-07, 3.86975587e-07, 3.86975587e-07,
2.86533268e-08, 2.86533268e-08, 2.86533268e-08, 2.86533268e-08,
2.11667470e-09, 2.11667470e-09, 2.11667470e-09, 2.11667470e-09,
1.55981163e-10, 1.55981163e-10, 1.55981163e-10, 1.55981163e-10,
1.14620004e-11, 1.14620004e-11, 1.14620004e-11, 1.14620004e-11,
8.39464394e-13, 8.39464394e-13, 8.39464394e-13, 8.39464394e-13,
6.10879150e-14, 6.10879150e-14, 6.10879150e-14, 6.10879150e-14,
4.40544803e-15, 4.40544803e-15, 4.40544803e-15, 4.40544803e-15,
3.15470277e-16, 3.15470277e-16, 3.15470277e-16, 3.15470277e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.99999961, 0.99999961,
0.99999961, 0.99999961, 0.99999739, 0.99999739, 0.99999739,
0.99999739, 0.99998424, 0.99998424, 0.99998424, 0.99998424,
0.99991515, 0.99991515, 0.99991515, 0.99991515, 0.99959648,
0.99959648, 0.99959648, 0.99959648, 0.99832987, 0.99832987,
0.99832987, 0.99832987, 0.99408857, 0.99408857, 0.99408857,
0.99408857, 0.98242851, 0.98242851, 0.98242851, 0.98242851,
0.95670672, 0.95670672, 0.95670672, 0.95670672, 0.91159757,
0.91159757, 0.91159757, 0.91159757, 0.8477941 , 0.8477941 ,
0.8477941 , 0.8477941 , 0.77194869, 0.77194869, 0.77194869,
0.77194869, 0.69397675, 0.69397675, 0.69397675, 0.69397675,
0.62399737, 0.62399737, 0.62399737, 0.62399737, 0.55909955,
0.55909955, 0.55909955, 0.55909955, 0.51089525, 0.51089525,
0.51089525, 0.51089525, 0.48295725, 0.48295725, 0.48295725,
0.48295725, 0.47140761, 0.47140761, 0.47140761, 0.47140761,
0.46792021, 0.46792021, 0.46792021, 0.46792021, 0.46704157,
0.46704157, 0.46704157, 0.46704157, 0.46664044, 0.46664044,
0.46664044, 0.46664044, 0.46622055, 0.46622055, 0.46622055,
0.46622055, 0.46568048, 0.46568048, 0.46568048, 0.46568048,
0.46505167, 0.46505167, 0.46505167, 0.46505167, 0.46437416,
0.46437416, 0.46437416, 0.46437416, 0.46411629, 0.46411629,
0.46411629, 0.46411629, 0.46418296, 0.46418296, 0.46418296,
0.46418296, 0.46437517, 0.46437517, 0.46437517, 0.46437517,
0.46474262, 0.46474262, 0.46474262, 0.46474262, 0.4647905 ,
0.4647905 , 0.4647905 , 0.4647905 , 0.46219808, 0.46219808,
0.46219808, 0.46219808, 0.44788536, 0.44788536, 0.44788536,
0.44788536, 0.38869085, 0.38869085, 0.38869085, 0.38869085,
0.23647903, 0.23647903, 0.23647903, 0.23647903, 0.11972131,
0.11972131, 0.11972131, 0.11972131, 0.10164215, 0.10164215,
0.10164215, 0.10164215, 0.10012388, 0.10012388, 0.10012388,
0.10012388, 0.10000926, 0.10000926, 0.10000926, 0.10000926,
0.10000069, 0.10000069, 0.10000069, 0.10000069, 0.10000005,
0.10000005, 0.10000005, 0.10000005, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999957, 0.99999957,
0.99999957, 0.99999957, 0.99999725, 0.99999725, 0.99999725,
0.99999725, 0.99998408, 0.99998408, 0.99998408, 0.99998408,
0.99991777, 0.99991777, 0.99991777, 0.99991777, 0.99962494,
0.99962494, 0.99962494, 0.99962494, 0.99851137, 0.99851137,
0.99851137, 0.99851137, 0.99494469, 0.99494469, 0.99494469,
0.99494469, 0.98555163, 0.98555163, 0.98555163, 0.98555163,
0.96559893, 0.96559893, 0.96559893, 0.96559893, 0.93155858,
0.93155858, 0.93155858, 0.93155858, 0.88403476, 0.88403476,
0.88403476, 0.88403476, 0.8274092 , 0.8274092 , 0.8274092 ,
0.8274092 , 0.76877221, 0.76877221, 0.76877221, 0.76877221,
0.71316056, 0.71316056, 0.71316056, 0.71316056, 0.66441163,
0.66441163, 0.66441163, 0.66441163, 0.62379118, 0.62379118,
0.62379118, 0.62379118, 0.59276036, 0.59276036, 0.59276036,
0.59276036, 0.58060214, 0.58060214, 0.58060214, 0.58060214,
0.58004359, 0.58004359, 0.58004359, 0.58004359, 0.58181969,
0.58181969, 0.58181969, 0.58181969, 0.58456085, 0.58456085,
0.58456085, 0.58456085, 0.58426133, 0.58426133, 0.58426133,
0.58426133, 0.57952111, 0.57952111, 0.57952111, 0.57952111,
0.56481381, 0.56481381, 0.56481381, 0.56481381, 0.53498407,
0.53498407, 0.53498407, 0.53498407, 0.48707968, 0.48707968,
0.48707968, 0.48707968, 0.4240172 , 0.4240172 , 0.4240172 ,
0.4240172 , 0.37419742, 0.37419742, 0.37419742, 0.37419742,
0.34640254, 0.34640254, 0.34640254, 0.34640254, 0.33383188,
0.33383188, 0.33383188, 0.33383188, 0.32905424, 0.32905424,
0.32905424, 0.32905424, 0.32677563, 0.32677563, 0.32677563,
0.32677563, 0.31923078, 0.31923078, 0.31923078, 0.31923078,
0.27840167, 0.27840167, 0.27840167, 0.27840167, 0.1822785 ,
0.1822785 , 0.1822785 , 0.1822785 , 0.13240005, 0.13240005,
0.13240005, 0.13240005, 0.12564148, 0.12564148, 0.12564148,
0.12564148, 0.12504969, 0.12504969, 0.12504969, 0.12504969,
0.12500374, 0.12500374, 0.12500374, 0.12500374, 0.12500028,
0.12500028, 0.12500028, 0.12500028, 0.12500002, 0.12500002,
0.12500002, 0.12500002, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000072e-01, 7.50000072e-01, 7.50000072e-01, 7.50000072e-01,
7.50000509e-01, 7.50000509e-01, 7.50000509e-01, 7.50000509e-01,
7.50003258e-01, 7.50003258e-01, 7.50003258e-01, 7.50003258e-01,
7.50018836e-01, 7.50018836e-01, 7.50018836e-01, 7.50018836e-01,
7.50097297e-01, 7.50097297e-01, 7.50097297e-01, 7.50097297e-01,
7.50443797e-01, 7.50443797e-01, 7.50443797e-01, 7.50443797e-01,
7.51761984e-01, 7.51761984e-01, 7.51761984e-01, 7.51761984e-01,
7.55991281e-01, 7.55991281e-01, 7.55991281e-01, 7.55991281e-01,
7.67190124e-01, 7.67190124e-01, 7.67190124e-01, 7.67190124e-01,
7.91292369e-01, 7.91292369e-01, 7.91292369e-01, 7.91292369e-01,
8.33436036e-01, 8.33436036e-01, 8.33436036e-01, 8.33436036e-01,
8.94508968e-01, 8.94508968e-01, 8.94508968e-01, 8.94508968e-01,
9.70928324e-01, 9.70928324e-01, 9.70928324e-01, 9.70928324e-01,
1.05242450e+00, 1.05242450e+00, 1.05242450e+00, 1.05242450e+00,
1.13456684e+00, 1.13456684e+00, 1.13456684e+00, 1.13456684e+00,
1.21752814e+00, 1.21752814e+00, 1.21752814e+00, 1.21752814e+00,
1.28688080e+00, 1.28688080e+00, 1.28688080e+00, 1.28688080e+00,
1.33202565e+00, 1.33202565e+00, 1.33202565e+00, 1.33202565e+00,
1.35205511e+00, 1.35205511e+00, 1.35205511e+00, 1.35205511e+00,
1.35794285e+00, 1.35794285e+00, 1.35794285e+00, 1.35794285e+00,
1.35979765e+00, 1.35979765e+00, 1.35979765e+00, 1.35979765e+00,
1.36117165e+00, 1.36117165e+00, 1.36117165e+00, 1.36117165e+00,
1.36278081e+00, 1.36278081e+00, 1.36278081e+00, 1.36278081e+00,
1.36384708e+00, 1.36384708e+00, 1.36384708e+00, 1.36384708e+00,
1.36394428e+00, 1.36394428e+00, 1.36394428e+00, 1.36394428e+00,
1.36340422e+00, 1.36340422e+00, 1.36340422e+00, 1.36340422e+00,
1.36216954e+00, 1.36216954e+00, 1.36216954e+00, 1.36216954e+00,
1.36091948e+00, 1.36091948e+00, 1.36091948e+00, 1.36091948e+00,
1.36072488e+00, 1.36072488e+00, 1.36072488e+00, 1.36072488e+00,
1.36080076e+00, 1.36080076e+00, 1.36080076e+00, 1.36080076e+00,
1.36052967e+00, 1.36052967e+00, 1.36052967e+00, 1.36052967e+00,
1.35904254e+00, 1.35904254e+00, 1.35904254e+00, 1.35904254e+00,
1.34885124e+00, 1.34885124e+00, 1.34885124e+00, 1.34885124e+00,
1.29744243e+00, 1.29744243e+00, 1.29744243e+00, 1.29744243e+00,
1.08422445e+00, 1.08422445e+00, 1.08422445e+00, 1.08422445e+00,
5.02990327e-01, 5.02990327e-01, 5.02990327e-01, 5.02990327e-01,
6.93727442e-02, 6.93727442e-02, 6.93727442e-02, 6.93727442e-02,
5.63191058e-03, 5.63191058e-03, 5.63191058e-03, 5.63191058e-03,
4.24506091e-04, 4.24506091e-04, 4.24506091e-04, 4.24506091e-04,
3.17404436e-05, 3.17404436e-05, 3.17404436e-05, 3.17404436e-05,
2.36582375e-06, 2.36582375e-06, 2.36582375e-06, 2.36582375e-06,
1.75833876e-07, 1.75833876e-07, 1.75833876e-07, 1.75833876e-07,
1.30328080e-08, 1.30328080e-08, 1.30328080e-08, 1.30328080e-08,
9.63639514e-10, 9.63639514e-10, 9.63639514e-10, 9.63639514e-10,
7.10763736e-11, 7.10763736e-11, 7.10763736e-11, 7.10763736e-11,
5.22825264e-12, 5.22825264e-12, 5.22825264e-12, 5.22825264e-12,
3.83163730e-13, 3.83163730e-13, 3.83163730e-13, 3.83163730e-13,
2.79726565e-14, 2.79726565e-14, 2.79726565e-14, 2.79726565e-14,
2.02525897e-15, 2.02525897e-15, 2.02525897e-15, 2.02525897e-15,
1.51631827e-16, 1.51631827e-16, 1.51631827e-16, 1.51631827e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999991,
0.99999991, 0.99999991, 0.99999991, 0.9999994 , 0.9999994 ,
0.9999994 , 0.9999994 , 0.99999614, 0.99999614, 0.99999614,
0.99999614, 0.99997771, 0.99997771, 0.99997771, 0.99997771,
0.99988488, 0.99988488, 0.99988488, 0.99988488, 0.99947502,
0.99947502, 0.99947502, 0.99947502, 0.99791728, 0.99791728,
0.99791728, 0.99791728, 0.99293536, 0.99293536, 0.99293536,
0.99293536, 0.97986052, 0.97986052, 0.97986052, 0.97986052,
0.95227911, 0.95227911, 0.95227911, 0.95227911, 0.90578254,
0.90578254, 0.90578254, 0.90578254, 0.84200911, 0.84200911,
0.84200911, 0.84200911, 0.76771824, 0.76771824, 0.76771824,
0.76771824, 0.69232015, 0.69232015, 0.69232015, 0.69232015,
0.62465064, 0.62465064, 0.62465064, 0.62465064, 0.56138795,
0.56138795, 0.56138795, 0.56138795, 0.51330741, 0.51330741,
0.51330741, 0.51330741, 0.4845093 , 0.4845093 , 0.4845093 ,
0.4845093 , 0.47217185, 0.47217185, 0.47217185, 0.47217185,
0.46819774, 0.46819774, 0.46819774, 0.46819774, 0.46701446,
0.46701446, 0.46701446, 0.46701446, 0.46652199, 0.46652199,
0.46652199, 0.46652199, 0.46611084, 0.46611084, 0.46611084,
0.46611084, 0.46578348, 0.46578348, 0.46578348, 0.46578348,
0.46535618, 0.46535618, 0.46535618, 0.46535618, 0.46482306,
0.46482306, 0.46482306, 0.46482306, 0.46446841, 0.46446841,
0.46446841, 0.46446841, 0.46430983, 0.46430983, 0.46430983,
0.46430983, 0.46428048, 0.46428048, 0.46428048, 0.46428048,
0.46452486, 0.46452486, 0.46452486, 0.46452486, 0.4649441 ,
0.4649441 , 0.4649441 , 0.4649441 , 0.46428963, 0.46428963,
0.46428963, 0.46428963, 0.45964556, 0.45964556, 0.45964556,
0.45964556, 0.4368908 , 0.4368908 , 0.4368908 , 0.4368908 ,
0.35200209, 0.35200209, 0.35200209, 0.35200209, 0.18536524,
0.18536524, 0.18536524, 0.18536524, 0.10948877, 0.10948877,
0.10948877, 0.10948877, 0.10074638, 0.10074638, 0.10074638,
0.10074638, 0.10005616, 0.10005616, 0.10005616, 0.10005616,
0.1000042 , 0.1000042 , 0.1000042 , 0.1000042 , 0.10000031,
0.10000031, 0.10000031, 0.10000031, 0.10000002, 0.10000002,
0.10000002, 0.10000002, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.9999999 ,
0.9999999 , 0.9999999 , 0.9999999 , 0.99999935, 0.99999935,
0.99999935, 0.99999935, 0.999996 , 0.999996 , 0.999996 ,
0.999996 , 0.9999778 , 0.9999778 , 0.9999778 , 0.9999778 ,
0.99988988, 0.99988988, 0.99988988, 0.99988988, 0.99951775,
0.99951775, 0.99951775, 0.99951775, 0.99816293, 0.99816293,
0.99816293, 0.99816293, 0.99401287, 0.99401287, 0.99401287,
0.99401287, 0.98356146, 0.98356146, 0.98356146, 0.98356146,
0.9622853 , 0.9622853 , 0.9622853 , 0.9622853 , 0.92730693,
0.92730693, 0.92730693, 0.92730693, 0.87984577, 0.87984577,
0.87984577, 0.87984577, 0.82436213, 0.82436213, 0.82436213,
0.82436213, 0.76781991, 0.76781991, 0.76781991, 0.76781991,
0.71338064, 0.71338064, 0.71338064, 0.71338064, 0.66530752,
0.66530752, 0.66530752, 0.66530752, 0.62662899, 0.62662899,
0.62662899, 0.62662899, 0.59584458, 0.59584458, 0.59584458,
0.59584458, 0.58122522, 0.58122522, 0.58122522, 0.58122522,
0.57945682, 0.57945682, 0.57945682, 0.57945682, 0.58056762,
0.58056762, 0.58056762, 0.58056762, 0.58335259, 0.58335259,
0.58335259, 0.58335259, 0.5840114 , 0.5840114 , 0.5840114 ,
0.5840114 , 0.58173244, 0.58173244, 0.58173244, 0.58173244,
0.57212127, 0.57212127, 0.57212127, 0.57212127, 0.54967525,
0.54967525, 0.54967525, 0.54967525, 0.51027045, 0.51027045,
0.51027045, 0.51027045, 0.45256286, 0.45256286, 0.45256286,
0.45256286, 0.39319195, 0.39319195, 0.39319195, 0.39319195,
0.35669662, 0.35669662, 0.35669662, 0.35669662, 0.33848333,
0.33848333, 0.33848333, 0.33848333, 0.33098586, 0.33098586,
0.33098586, 0.33098586, 0.32867169, 0.32867169, 0.32867169,
0.32867169, 0.32673109, 0.32673109, 0.32673109, 0.32673109,
0.31276146, 0.31276146, 0.31276146, 0.31276146, 0.25297057,
0.25297057, 0.25297057, 0.25297057, 0.15774063, 0.15774063,
0.15774063, 0.15774063, 0.12857133, 0.12857133, 0.12857133,
0.12857133, 0.12529541, 0.12529541, 0.12529541, 0.12529541,
0.12502259, 0.12502259, 0.12502259, 0.12502259, 0.1250017 ,
0.1250017 , 0.1250017 , 0.1250017 , 0.12500013, 0.12500013,
0.12500013, 0.12500013, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000015e-01, 7.50000015e-01, 7.50000015e-01, 7.50000015e-01,
7.50000114e-01, 7.50000114e-01, 7.50000114e-01, 7.50000114e-01,
7.50000768e-01, 7.50000768e-01, 7.50000768e-01, 7.50000768e-01,
7.50004730e-01, 7.50004730e-01, 7.50004730e-01, 7.50004730e-01,
7.50026264e-01, 7.50026264e-01, 7.50026264e-01, 7.50026264e-01,
7.50130297e-01, 7.50130297e-01, 7.50130297e-01, 7.50130297e-01,
7.50570647e-01, 7.50570647e-01, 7.50570647e-01, 7.50570647e-01,
7.52174682e-01, 7.52174682e-01, 7.52174682e-01, 7.52174682e-01,
7.57098423e-01, 7.57098423e-01, 7.57098423e-01, 7.57098423e-01,
7.69575519e-01, 7.69575519e-01, 7.69575519e-01, 7.69575519e-01,
7.95338848e-01, 7.95338848e-01, 7.95338848e-01, 7.95338848e-01,
8.38790934e-01, 8.38790934e-01, 8.38790934e-01, 8.38790934e-01,
9.00008072e-01, 9.00008072e-01, 9.00008072e-01, 9.00008072e-01,
9.75143222e-01, 9.75143222e-01, 9.75143222e-01, 9.75143222e-01,
1.05418743e+00, 1.05418743e+00, 1.05418743e+00, 1.05418743e+00,
1.13392925e+00, 1.13392925e+00, 1.13392925e+00, 1.13392925e+00,
1.21464803e+00, 1.21464803e+00, 1.21464803e+00, 1.21464803e+00,
1.28307514e+00, 1.28307514e+00, 1.28307514e+00, 1.28307514e+00,
1.32905104e+00, 1.32905104e+00, 1.32905104e+00, 1.32905104e+00,
1.35077100e+00, 1.35077100e+00, 1.35077100e+00, 1.35077100e+00,
1.35767915e+00, 1.35767915e+00, 1.35767915e+00, 1.35767915e+00,
1.35963173e+00, 1.35963173e+00, 1.35963173e+00, 1.35963173e+00,
1.36086885e+00, 1.36086885e+00, 1.36086885e+00, 1.36086885e+00,
1.36233245e+00, 1.36233245e+00, 1.36233245e+00, 1.36233245e+00,
1.36365306e+00, 1.36365306e+00, 1.36365306e+00, 1.36365306e+00,
1.36410375e+00, 1.36410375e+00, 1.36410375e+00, 1.36410375e+00,
1.36392708e+00, 1.36392708e+00, 1.36392708e+00, 1.36392708e+00,
1.36298853e+00, 1.36298853e+00, 1.36298853e+00, 1.36298853e+00,
1.36152724e+00, 1.36152724e+00, 1.36152724e+00, 1.36152724e+00,
1.36088739e+00, 1.36088739e+00, 1.36088739e+00, 1.36088739e+00,
1.36059622e+00, 1.36059622e+00, 1.36059622e+00, 1.36059622e+00,
1.36030814e+00, 1.36030814e+00, 1.36030814e+00, 1.36030814e+00,
1.36008913e+00, 1.36008913e+00, 1.36008913e+00, 1.36008913e+00,
1.35711729e+00, 1.35711729e+00, 1.35711729e+00, 1.35711729e+00,
1.33931866e+00, 1.33931866e+00, 1.33931866e+00, 1.33931866e+00,
1.25869909e+00, 1.25869909e+00, 1.25869909e+00, 1.25869909e+00,
9.47391457e-01, 9.47391457e-01, 9.47391457e-01, 9.47391457e-01,
3.03306502e-01, 3.03306502e-01, 3.03306502e-01, 3.03306502e-01,
3.27779884e-02, 3.27779884e-02, 3.27779884e-02, 3.27779884e-02,
2.56194868e-03, 2.56194868e-03, 2.56194868e-03, 2.56194868e-03,
1.92341225e-04, 1.92341225e-04, 1.92341225e-04, 1.92341225e-04,
1.43841206e-05, 1.43841206e-05, 1.43841206e-05, 1.43841206e-05,
1.07319292e-06, 1.07319292e-06, 1.07319292e-06, 1.07319292e-06,
7.98515072e-08, 7.98515072e-08, 7.98515072e-08, 7.98515072e-08,
5.92527078e-09, 5.92527078e-09, 5.92527078e-09, 5.92527078e-09,
4.38545776e-10, 4.38545776e-10, 4.38545776e-10, 4.38545776e-10,
3.23766591e-11, 3.23766591e-11, 3.23766591e-11, 3.23766591e-11,
2.38365625e-12, 2.38365625e-12, 2.38365625e-12, 2.38365625e-12,
1.74984281e-13, 1.74984281e-13, 1.74984281e-13, 1.74984281e-13,
1.27988486e-14, 1.27988486e-14, 1.27988486e-14, 1.27988486e-14,
9.36619527e-16, 9.36619527e-16, 9.36619527e-16, 9.36619527e-16,
5.90078683e-17, 5.90078683e-17, 5.90078683e-17, 5.90078683e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999909, 0.99999909,
0.99999909, 0.99999909, 0.9999944 , 0.9999944 , 0.9999944 ,
0.9999944 , 0.99996892, 0.99996892, 0.99996892, 0.99996892,
0.99984584, 0.99984584, 0.99984584, 0.99984584, 0.99932502,
0.99932502, 0.99932502, 0.99932502, 0.99743007, 0.99743007,
0.99743007, 0.99743007, 0.99163522, 0.99163522, 0.99163522,
0.99163522, 0.97709688, 0.97709688, 0.97709688, 0.97709688,
0.94771858, 0.94771858, 0.94771858, 0.94771858, 0.90001323,
0.90001323, 0.90001323, 0.90001323, 0.83643028, 0.83643028,
0.83643028, 0.83643028, 0.76371797, 0.76371797, 0.76371797,
0.76371797, 0.69077552, 0.69077552, 0.69077552, 0.69077552,
0.62524441, 0.62524441, 0.62524441, 0.62524441, 0.56360708,
0.56360708, 0.56360708, 0.56360708, 0.51576884, 0.51576884,
0.51576884, 0.51576884, 0.48608775, 0.48608775, 0.48608775,
0.48608775, 0.47290348, 0.47290348, 0.47290348, 0.47290348,
0.46852795, 0.46852795, 0.46852795, 0.46852795, 0.46709417,
0.46709417, 0.46709417, 0.46709417, 0.4664615 , 0.4664615 ,
0.4664615 , 0.4664615 , 0.46595946, 0.46595946, 0.46595946,
0.46595946, 0.46573483, 0.46573483, 0.46573483, 0.46573483,
0.46549762, 0.46549762, 0.46549762, 0.46549762, 0.4651401 ,
0.4651401 , 0.4651401 , 0.4651401 , 0.4648877 , 0.4648877 ,
0.4648877 , 0.4648877 , 0.46460628, 0.46460628, 0.46460628,
0.46460628, 0.46435859, 0.46435859, 0.46435859, 0.46435859,
0.46443008, 0.46443008, 0.46443008, 0.46443008, 0.46484084,
0.46484084, 0.46484084, 0.46484084, 0.46477421, 0.46477421,
0.46477421, 0.46477421, 0.46345495, 0.46345495, 0.46345495,
0.46345495, 0.45575261, 0.45575261, 0.45575261, 0.45575261,
0.41991969, 0.41991969, 0.41991969, 0.41991969, 0.30495101,
0.30495101, 0.30495101, 0.30495101, 0.14641294, 0.14641294,
0.14641294, 0.14641294, 0.10439859, 0.10439859, 0.10439859,
0.10439859, 0.10033916, 0.10033916, 0.10033916, 0.10033916,
0.10002545, 0.10002545, 0.10002545, 0.10002545, 0.1000019 ,
0.1000019 , 0.1000019 , 0.1000019 , 0.10000014, 0.10000014,
0.10000014, 0.10000014, 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999985,
0.99999985, 0.99999985, 0.99999985, 0.99999903, 0.99999903,
0.99999903, 0.99999903, 0.99999428, 0.99999428, 0.99999428,
0.99999428, 0.99996946, 0.99996946, 0.99996946, 0.99996946,
0.99985432, 0.99985432, 0.99985432, 0.99985432, 0.99938676,
0.99938676, 0.99938676, 0.99938676, 0.99775536, 0.99775536,
0.99775536, 0.99775536, 0.99297081, 0.99297081, 0.99297081,
0.99297081, 0.98143309, 0.98143309, 0.98143309, 0.98143309,
0.95888578, 0.95888578, 0.95888578, 0.95888578, 0.9230955 ,
0.9230955 , 0.9230955 , 0.9230955 , 0.87580507, 0.87580507,
0.87580507, 0.87580507, 0.82147709, 0.82147709, 0.82147709,
0.82147709, 0.76692374, 0.76692374, 0.76692374, 0.76692374,
0.71378615, 0.71378615, 0.71378615, 0.71378615, 0.66604952,
0.66604952, 0.66604952, 0.66604952, 0.62893204, 0.62893204,
0.62893204, 0.62893204, 0.59898326, 0.59898326, 0.59898326,
0.59898326, 0.58239235, 0.58239235, 0.58239235, 0.58239235,
0.57906513, 0.57906513, 0.57906513, 0.57906513, 0.5796752 ,
0.5796752 , 0.5796752 , 0.5796752 , 0.58197407, 0.58197407,
0.58197407, 0.58197407, 0.58350893, 0.58350893, 0.58350893,
0.58350893, 0.58262487, 0.58262487, 0.58262487, 0.58262487,
0.5768568 , 0.5768568 , 0.5768568 , 0.5768568 , 0.56077107,
0.56077107, 0.56077107, 0.56077107, 0.52949915, 0.52949915,
0.52949915, 0.52949915, 0.48013846, 0.48013846, 0.48013846,
0.48013846, 0.41713955, 0.41713955, 0.41713955, 0.41713955,
0.37044721, 0.37044721, 0.37044721, 0.37044721, 0.34523075,
0.34523075, 0.34523075, 0.34523075, 0.33369594, 0.33369594,
0.33369594, 0.33369594, 0.32989191, 0.32989191, 0.32989191,
0.32989191, 0.32903442, 0.32903442, 0.32903442, 0.32903442,
0.32566179, 0.32566179, 0.32566179, 0.32566179, 0.30140914,
0.30140914, 0.30140914, 0.30140914, 0.22161536, 0.22161536,
0.22161536, 0.22161536, 0.142229 , 0.142229 , 0.142229 ,
0.142229 , 0.12669189, 0.12669189, 0.12669189, 0.12669189,
0.12513485, 0.12513485, 0.12513485, 0.12513485, 0.12501025,
0.12501025, 0.12501025, 0.12501025, 0.12500077, 0.12500077,
0.12500077, 0.12500077, 0.12500006, 0.12500006, 0.12500006,
0.12500006, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
7.50000176e-01, 7.50000176e-01, 7.50000176e-01, 7.50000176e-01,
7.50001143e-01, 7.50001143e-01, 7.50001143e-01, 7.50001143e-01,
7.50006765e-01, 7.50006765e-01, 7.50006765e-01, 7.50006765e-01,
7.50036132e-01, 7.50036132e-01, 7.50036132e-01, 7.50036132e-01,
7.50172369e-01, 7.50172369e-01, 7.50172369e-01, 7.50172369e-01,
7.50725674e-01, 7.50725674e-01, 7.50725674e-01, 7.50725674e-01,
7.52657561e-01, 7.52657561e-01, 7.52657561e-01, 7.52657561e-01,
7.58337621e-01, 7.58337621e-01, 7.58337621e-01, 7.58337621e-01,
7.72131336e-01, 7.72131336e-01, 7.72131336e-01, 7.72131336e-01,
7.99502632e-01, 7.99502632e-01, 7.99502632e-01, 7.99502632e-01,
8.44114177e-01, 8.44114177e-01, 8.44114177e-01, 8.44114177e-01,
9.05331881e-01, 9.05331881e-01, 9.05331881e-01, 9.05331881e-01,
9.79125457e-01, 9.79125457e-01, 9.79125457e-01, 9.79125457e-01,
1.05587185e+00, 1.05587185e+00, 1.05587185e+00, 1.05587185e+00,
1.13331506e+00, 1.13331506e+00, 1.13331506e+00, 1.13331506e+00,
1.21189543e+00, 1.21189543e+00, 1.21189543e+00, 1.21189543e+00,
1.27944869e+00, 1.27944869e+00, 1.27944869e+00, 1.27944869e+00,
1.32606311e+00, 1.32606311e+00, 1.32606311e+00, 1.32606311e+00,
1.34925512e+00, 1.34925512e+00, 1.34925512e+00, 1.34925512e+00,
1.35728578e+00, 1.35728578e+00, 1.35728578e+00, 1.35728578e+00,
1.35954920e+00, 1.35954920e+00, 1.35954920e+00, 1.35954920e+00,
1.36069411e+00, 1.36069411e+00, 1.36069411e+00, 1.36069411e+00,
1.36194086e+00, 1.36194086e+00, 1.36194086e+00, 1.36194086e+00,
1.36330593e+00, 1.36330593e+00, 1.36330593e+00, 1.36330593e+00,
1.36405650e+00, 1.36405650e+00, 1.36405650e+00, 1.36405650e+00,
1.36415497e+00, 1.36415497e+00, 1.36415497e+00, 1.36415497e+00,
1.36359348e+00, 1.36359348e+00, 1.36359348e+00, 1.36359348e+00,
1.36234614e+00, 1.36234614e+00, 1.36234614e+00, 1.36234614e+00,
1.36135889e+00, 1.36135889e+00, 1.36135889e+00, 1.36135889e+00,
1.36073912e+00, 1.36073912e+00, 1.36073912e+00, 1.36073912e+00,
1.36010502e+00, 1.36010502e+00, 1.36010502e+00, 1.36010502e+00,
1.36015262e+00, 1.36015262e+00, 1.36015262e+00, 1.36015262e+00,
1.35942760e+00, 1.35942760e+00, 1.35942760e+00, 1.35942760e+00,
1.35349451e+00, 1.35349451e+00, 1.35349451e+00, 1.35349451e+00,
1.32499316e+00, 1.32499316e+00, 1.32499316e+00, 1.32499316e+00,
1.19968030e+00, 1.19968030e+00, 1.19968030e+00, 1.19968030e+00,
7.65654632e-01, 7.65654632e-01, 7.65654632e-01, 7.65654632e-01,
1.63013744e-01, 1.63013744e-01, 1.63013744e-01, 1.63013744e-01,
1.51766301e-02, 1.51766301e-02, 1.51766301e-02, 1.51766301e-02,
1.15961586e-03, 1.15961586e-03, 1.15961586e-03, 1.15961586e-03,
8.71092067e-05, 8.71092067e-05, 8.71092067e-05, 8.71092067e-05,
6.51852874e-06, 6.51852874e-06, 6.51852874e-06, 6.51852874e-06,
4.86666078e-07, 4.86666078e-07, 4.86666078e-07, 4.86666078e-07,
3.62471947e-08, 3.62471947e-08, 3.62471947e-08, 3.62471947e-08,
2.69260253e-09, 2.69260253e-09, 2.69260253e-09, 2.69260253e-09,
1.99494358e-10, 1.99494358e-10, 1.99494358e-10, 1.99494358e-10,
1.47423360e-11, 1.47423360e-11, 1.47423360e-11, 1.47423360e-11,
1.08650415e-12, 1.08650415e-12, 1.08650415e-12, 1.08650415e-12,
7.98526879e-14, 7.98526879e-14, 7.98526879e-14, 7.98526879e-14,
5.91227187e-15, 5.91227187e-15, 5.91227187e-15, 5.91227187e-15,
3.97725372e-16, 3.97725372e-16, 3.97725372e-16, 3.97725372e-16,
1.14152033e-17, 1.14152033e-17, 1.14152033e-17, 1.14152033e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999979,
0.99999979, 0.99999979, 0.99999979, 0.99999865, 0.99999865,
0.99999865, 0.99999865, 0.999992 , 0.999992 , 0.999992 ,
0.999992 , 0.99995725, 0.99995725, 0.99995725, 0.99995725,
0.99979607, 0.99979607, 0.99979607, 0.99979607, 0.99914172,
0.99914172, 0.99914172, 0.99914172, 0.9968603 , 0.9968603 ,
0.9968603 , 0.9968603 , 0.99018195, 0.99018195, 0.99018195,
0.99018195, 0.97414391, 0.97414391, 0.97414391, 0.97414391,
0.94304609, 0.94304609, 0.94304609, 0.94304609, 0.89430785,
0.89430785, 0.89430785, 0.89430785, 0.83105531, 0.83105531,
0.83105531, 0.83105531, 0.75992159, 0.75992159, 0.75992159,
0.75992159, 0.68934729, 0.68934729, 0.68934729, 0.68934729,
0.62578832, 0.62578832, 0.62578832, 0.62578832, 0.56572412,
0.56572412, 0.56572412, 0.56572412, 0.51826812, 0.51826812,
0.51826812, 0.51826812, 0.48775305, 0.48775305, 0.48775305,
0.48775305, 0.47361881, 0.47361881, 0.47361881, 0.47361881,
0.46884188, 0.46884188, 0.46884188, 0.46884188, 0.46724329,
0.46724329, 0.46724329, 0.46724329, 0.46648424, 0.46648424,
0.46648424, 0.46648424, 0.46584328, 0.46584328, 0.46584328,
0.46584328, 0.46559981, 0.46559981, 0.46559981, 0.46559981,
0.46550449, 0.46550449, 0.46550449, 0.46550449, 0.46529836,
0.46529836, 0.46529836, 0.46529836, 0.46519784, 0.46519784,
0.46519784, 0.46519784, 0.46501854, 0.46501854, 0.46501854,
0.46501854, 0.4645934 , 0.4645934 , 0.4645934 , 0.4645934 ,
0.4644984 , 0.4644984 , 0.4644984 , 0.4644984 , 0.4647448 ,
0.4647448 , 0.4647448 , 0.4647448 , 0.46480417, 0.46480417,
0.46480417, 0.46480417, 0.46452695, 0.46452695, 0.46452695,
0.46452695, 0.46226705, 0.46226705, 0.46226705, 0.46226705,
0.44923987, 0.44923987, 0.44923987, 0.44923987, 0.39520123,
0.39520123, 0.39520123, 0.39520123, 0.25019732, 0.25019732,
0.25019732, 0.25019732, 0.12347913, 0.12347913, 0.12347913,
0.12347913, 0.10201923, 0.10201923, 0.10201923, 0.10201923,
0.10015345, 0.10015345, 0.10015345, 0.10015345, 0.10001152,
0.10001152, 0.10001152, 0.10001152, 0.10000086, 0.10000086,
0.10000086, 0.10000086, 0.10000006, 0.10000006, 0.10000006,
0.10000006, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999977,
0.99999977, 0.99999977, 0.99999977, 0.99999859, 0.99999859,
0.99999859, 0.99999859, 0.99999193, 0.99999193, 0.99999193,
0.99999193, 0.99995852, 0.99995852, 0.99995852, 0.99995852,
0.99980949, 0.99980949, 0.99980949, 0.99980949, 0.99922831,
0.99922831, 0.99922831, 0.99922831, 0.99728299, 0.99728299,
0.99728299, 0.99728299, 0.99181486, 0.99181486, 0.99181486,
0.99181486, 0.97917208, 0.97917208, 0.97917208, 0.97917208,
0.95541523, 0.95541523, 0.95541523, 0.95541523, 0.91893615,
0.91893615, 0.91893615, 0.91893615, 0.87190997, 0.87190997,
0.87190997, 0.87190997, 0.8187528 , 0.8187528 , 0.8187528 ,
0.8187528 , 0.76602872, 0.76602872, 0.76602872, 0.76602872,
0.7143833 , 0.7143833 , 0.7143833 , 0.7143833 , 0.66676801,
0.66676801, 0.66676801, 0.66676801, 0.6307179 , 0.6307179 ,
0.6307179 , 0.6307179 , 0.60198349, 0.60198349, 0.60198349,
0.60198349, 0.58404794, 0.58404794, 0.58404794, 0.58404794,
0.57892756, 0.57892756, 0.57892756, 0.57892756, 0.57904741,
0.57904741, 0.57904741, 0.57904741, 0.58062787, 0.58062787,
0.58062787, 0.58062787, 0.58283322, 0.58283322, 0.58283322,
0.58283322, 0.58277091, 0.58277091, 0.58277091, 0.58277091,
0.57963328, 0.57963328, 0.57963328, 0.57963328, 0.56873886,
0.56873886, 0.56873886, 0.56873886, 0.54485283, 0.54485283,
0.54485283, 0.54485283, 0.50395357, 0.50395357, 0.50395357,
0.50395357, 0.44501153, 0.44501153, 0.44501153, 0.44501153,
0.38825268, 0.38825268, 0.38825268, 0.38825268, 0.35468169,
0.35468169, 0.35468169, 0.35468169, 0.33785192, 0.33785192,
0.33785192, 0.33785192, 0.331301 , 0.331301 , 0.331301 ,
0.331301 , 0.33001344, 0.33001344, 0.33001344, 0.33001344,
0.32943388, 0.32943388, 0.32943388, 0.32943388, 0.32258242,
0.32258242, 0.32258242, 0.32258242, 0.28431554, 0.28431554,
0.28431554, 0.28431554, 0.1892955 , 0.1892955 , 0.1892955 ,
0.1892955 , 0.1338258 , 0.1338258 , 0.1338258 , 0.1338258 ,
0.12578276, 0.12578276, 0.12578276, 0.12578276, 0.1250613 ,
0.1250613 , 0.1250613 , 0.1250613 , 0.12500465, 0.12500465,
0.12500465, 0.12500465, 0.12500035, 0.12500035, 0.12500035,
0.12500035, 0.12500003, 0.12500003, 0.12500003, 0.12500003,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
7.50000039e-01, 7.50000039e-01, 7.50000039e-01, 7.50000039e-01,
7.50000267e-01, 7.50000267e-01, 7.50000267e-01, 7.50000267e-01,
7.50001674e-01, 7.50001674e-01, 7.50001674e-01, 7.50001674e-01,
7.50009545e-01, 7.50009545e-01, 7.50009545e-01, 7.50009545e-01,
7.50049084e-01, 7.50049084e-01, 7.50049084e-01, 7.50049084e-01,
7.50225416e-01, 7.50225416e-01, 7.50225416e-01, 7.50225416e-01,
7.50913227e-01, 7.50913227e-01, 7.50913227e-01, 7.50913227e-01,
7.53217421e-01, 7.53217421e-01, 7.53217421e-01, 7.53217421e-01,
7.59713585e-01, 7.59713585e-01, 7.59713585e-01, 7.59713585e-01,
7.74851816e-01, 7.74851816e-01, 7.74851816e-01, 7.74851816e-01,
8.03766307e-01, 8.03766307e-01, 8.03766307e-01, 8.03766307e-01,
8.49390171e-01, 8.49390171e-01, 8.49390171e-01, 8.49390171e-01,
9.10489184e-01, 9.10489184e-01, 9.10489184e-01, 9.10489184e-01,
9.82823141e-01, 9.82823141e-01, 9.82823141e-01, 9.82823141e-01,
1.05751085e+00, 1.05751085e+00, 1.05751085e+00, 1.05751085e+00,
1.13275935e+00, 1.13275935e+00, 1.13275935e+00, 1.13275935e+00,
1.20924075e+00, 1.20924075e+00, 1.20924075e+00, 1.20924075e+00,
1.27595955e+00, 1.27595955e+00, 1.27595955e+00, 1.27595955e+00,
1.32313321e+00, 1.32313321e+00, 1.32313321e+00, 1.32313321e+00,
1.34759687e+00, 1.34759687e+00, 1.34759687e+00, 1.34759687e+00,
1.35670899e+00, 1.35670899e+00, 1.35670899e+00, 1.35670899e+00,
1.35944955e+00, 1.35944955e+00, 1.35944955e+00, 1.35944955e+00,
1.36061079e+00, 1.36061079e+00, 1.36061079e+00, 1.36061079e+00,
1.36171079e+00, 1.36171079e+00, 1.36171079e+00, 1.36171079e+00,
1.36290556e+00, 1.36290556e+00, 1.36290556e+00, 1.36290556e+00,
1.36383904e+00, 1.36383904e+00, 1.36383904e+00, 1.36383904e+00,
1.36419289e+00, 1.36419289e+00, 1.36419289e+00, 1.36419289e+00,
1.36391125e+00, 1.36391125e+00, 1.36391125e+00, 1.36391125e+00,
1.36302760e+00, 1.36302760e+00, 1.36302760e+00, 1.36302760e+00,
1.36208548e+00, 1.36208548e+00, 1.36208548e+00, 1.36208548e+00,
1.36114875e+00, 1.36114875e+00, 1.36114875e+00, 1.36114875e+00,
1.36014308e+00, 1.36014308e+00, 1.36014308e+00, 1.36014308e+00,
1.36010184e+00, 1.36010184e+00, 1.36010184e+00, 1.36010184e+00,
1.35992178e+00, 1.35992178e+00, 1.35992178e+00, 1.35992178e+00,
1.35788212e+00, 1.35788212e+00, 1.35788212e+00, 1.35788212e+00,
1.34841935e+00, 1.34841935e+00, 1.34841935e+00, 1.34841935e+00,
1.30264541e+00, 1.30264541e+00, 1.30264541e+00, 1.30264541e+00,
1.10947676e+00, 1.10947676e+00, 1.10947676e+00, 1.10947676e+00,
5.55338397e-01, 5.55338397e-01, 5.55338397e-01, 5.55338397e-01,
8.31514874e-02, 8.31514874e-02, 8.31514874e-02, 8.31514874e-02,
6.89643013e-03, 6.89643013e-03, 6.89643013e-03, 6.89643013e-03,
5.24246789e-04, 5.24246789e-04, 5.24246789e-04, 5.24246789e-04,
3.94230246e-05, 3.94230246e-05, 3.94230246e-05, 3.94230246e-05,
2.95275452e-06, 2.95275452e-06, 2.95275452e-06, 2.95275452e-06,
2.20643830e-07, 2.20643830e-07, 2.20643830e-07, 2.20643830e-07,
1.64480940e-08, 1.64480940e-08, 1.64480940e-08, 1.64480940e-08,
1.22307279e-09, 1.22307279e-09, 1.22307279e-09, 1.22307279e-09,
9.07116089e-11, 9.07116089e-11, 9.07116089e-11, 9.07116089e-11,
6.71020267e-12, 6.71020267e-12, 6.71020267e-12, 6.71020267e-12,
4.95019676e-13, 4.95019676e-13, 4.95019676e-13, 4.95019676e-13,
3.65542843e-14, 3.65542843e-14, 3.65542843e-14, 3.65542843e-14,
2.62269446e-15, 2.62269446e-15, 2.62269446e-15, 2.62269446e-15,
1.74466545e-16, 1.74466545e-16, 1.74466545e-16, 1.74466545e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999968,
0.99999968, 0.99999968, 0.99999968, 0.99999802, 0.99999802,
0.99999802, 0.99999802, 0.99998871, 0.99998871, 0.99998871,
0.99998871, 0.99994192, 0.99994192, 0.99994192, 0.99994192,
0.99973332, 0.99973332, 0.99973332, 0.99973332, 0.99892001,
0.99892001, 0.99892001, 0.99892001, 0.99620009, 0.99620009,
0.99620009, 0.99620009, 0.98857069, 0.98857069, 0.98857069,
0.98857069, 0.97100982, 0.97100982, 0.97100982, 0.97100982,
0.93828248, 0.93828248, 0.93828248, 0.93828248, 0.88868204,
0.88868204, 0.88868204, 0.88868204, 0.82587279, 0.82587279,
0.82587279, 0.82587279, 0.75627712, 0.75627712, 0.75627712,
0.75627712, 0.68804743, 0.68804743, 0.68804743, 0.68804743,
0.62631819, 0.62631819, 0.62631819, 0.62631819, 0.56772481,
0.56772481, 0.56772481, 0.56772481, 0.52076656, 0.52076656,
0.52076656, 0.52076656, 0.48953753, 0.48953753, 0.48953753,
0.48953753, 0.47437293, 0.47437293, 0.47437293, 0.47437293,
0.46911158, 0.46911158, 0.46911158, 0.46911158, 0.46740275,
0.46740275, 0.46740275, 0.46740275, 0.46657107, 0.46657107,
0.46657107, 0.46657107, 0.46582165, 0.46582165, 0.46582165,
0.46582165, 0.46543932, 0.46543932, 0.46543932, 0.46543932,
0.4654086 , 0.4654086 , 0.4654086 , 0.4654086 , 0.46534166,
0.46534166, 0.46534166, 0.46534166, 0.46535445, 0.46535445,
0.46535445, 0.46535445, 0.4653544 , 0.4653544 , 0.4653544 ,
0.4653544 , 0.46497431, 0.46497431, 0.46497431, 0.46497431,
0.46469511, 0.46469511, 0.46469511, 0.46469511, 0.46475993,
0.46475993, 0.46475993, 0.46475993, 0.464781 , 0.464781 ,
0.464781 , 0.464781 , 0.46475951, 0.46475951, 0.46475951,
0.46475951, 0.46429906, 0.46429906, 0.46429906, 0.46429906,
0.45994624, 0.45994624, 0.45994624, 0.45994624, 0.43907961,
0.43907961, 0.43907961, 0.43907961, 0.36134325, 0.36134325,
0.36134325, 0.36134325, 0.19702827, 0.19702827, 0.19702827,
0.19702827, 0.11146119, 0.11146119, 0.11146119, 0.11146119,
0.1009144 , 0.1009144 , 0.1009144 , 0.1009144 , 0.10006936,
0.10006936, 0.10006936, 0.10006936, 0.10000522, 0.10000522,
0.10000522, 0.10000522, 0.10000039, 0.10000039, 0.10000039,
0.10000039, 0.10000003, 0.10000003, 0.10000003, 0.10000003,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999966,
0.99999966, 0.99999966, 0.99999966, 0.99999796, 0.99999796,
0.99999796, 0.99999796, 0.99998877, 0.99998877, 0.99998877,
0.99998877, 0.99994431, 0.99994431, 0.99994431, 0.99994431,
0.99975356, 0.99975356, 0.99975356, 0.99975356, 0.99903846,
0.99903846, 0.99903846, 0.99903846, 0.99674028, 0.99674028,
0.99674028, 0.99674028, 0.9905424 , 0.9905424 , 0.9905424 ,
0.9905424 , 0.97678524, 0.97678524, 0.97678524, 0.97678524,
0.95188827, 0.95188827, 0.95188827, 0.95188827, 0.91483889,
0.91483889, 0.91483889, 0.91483889, 0.86814947, 0.86814947,
0.86814947, 0.86814947, 0.81614043, 0.81614043, 0.81614043,
0.81614043, 0.76514638, 0.76514638, 0.76514638, 0.76514638,
0.71513541, 0.71513541, 0.71513541, 0.71513541, 0.66759433,
0.66759433, 0.66759433, 0.66759433, 0.63206294, 0.63206294,
0.63206294, 0.63206294, 0.60467247, 0.60467247, 0.60467247,
0.60467247, 0.58608604, 0.58608604, 0.58608604, 0.58608604,
0.57910917, 0.57910917, 0.57910917, 0.57910917, 0.57863491,
0.57863491, 0.57863491, 0.57863491, 0.57958226, 0.57958226,
0.57958226, 0.57958226, 0.58186037, 0.58186037, 0.58186037,
0.58186037, 0.58254066, 0.58254066, 0.58254066, 0.58254066,
0.58105548, 0.58105548, 0.58105548, 0.58105548, 0.5741289 ,
0.5741289 , 0.5741289 , 0.5741289 , 0.55663703, 0.55663703,
0.55663703, 0.55663703, 0.52383547, 0.52383547, 0.52383547,
0.52383547, 0.47295059, 0.47295059, 0.47295059, 0.47295059,
0.41066789, 0.41066789, 0.41066789, 0.41066789, 0.36741736,
0.36741736, 0.36741736, 0.36741736, 0.34401862, 0.34401862,
0.34401862, 0.34401862, 0.33359114, 0.33359114, 0.33359114,
0.33359114, 0.33073618, 0.33073618, 0.33073618, 0.33073618,
0.33046507, 0.33046507, 0.33046507, 0.33046507, 0.32945985,
0.32945985, 0.32945985, 0.32945985, 0.31646094, 0.31646094,
0.31646094, 0.31646094, 0.25979697, 0.25979697, 0.25979697,
0.25979697, 0.16286529, 0.16286529, 0.16286529, 0.16286529,
0.12929032, 0.12929032, 0.12929032, 0.12929032, 0.12536025,
0.12536025, 0.12536025, 0.12536025, 0.1250278 , 0.1250278 ,
0.1250278 , 0.1250278 , 0.1250021 , 0.1250021 , 0.1250021 ,
0.1250021 , 0.12500016, 0.12500016, 0.12500016, 0.12500016,
0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000008e-01, 7.50000008e-01, 7.50000008e-01, 7.50000008e-01,
7.50000061e-01, 7.50000061e-01, 7.50000061e-01, 7.50000061e-01,
7.50000400e-01, 7.50000400e-01, 7.50000400e-01, 7.50000400e-01,
7.50002418e-01, 7.50002418e-01, 7.50002418e-01, 7.50002418e-01,
7.50013293e-01, 7.50013293e-01, 7.50013293e-01, 7.50013293e-01,
7.50065892e-01, 7.50065892e-01, 7.50065892e-01, 7.50065892e-01,
7.50291602e-01, 7.50291602e-01, 7.50291602e-01, 7.50291602e-01,
7.51137963e-01, 7.51137963e-01, 7.51137963e-01, 7.51137963e-01,
7.53860931e-01, 7.53860931e-01, 7.53860931e-01, 7.53860931e-01,
7.61229895e-01, 7.61229895e-01, 7.61229895e-01, 7.61229895e-01,
7.77729726e-01, 7.77729726e-01, 7.77729726e-01, 7.77729726e-01,
8.08112566e-01, 8.08112566e-01, 8.08112566e-01, 8.08112566e-01,
8.54605431e-01, 8.54605431e-01, 8.54605431e-01, 8.54605431e-01,
9.15480064e-01, 9.15480064e-01, 9.15480064e-01, 9.15480064e-01,
9.86288872e-01, 9.86288872e-01, 9.86288872e-01, 9.86288872e-01,
1.05903455e+00, 1.05903455e+00, 1.05903455e+00, 1.05903455e+00,
1.13226352e+00, 1.13226352e+00, 1.13226352e+00, 1.13226352e+00,
1.20670021e+00, 1.20670021e+00, 1.20670021e+00, 1.20670021e+00,
1.27256005e+00, 1.27256005e+00, 1.27256005e+00, 1.27256005e+00,
1.32027206e+00, 1.32027206e+00, 1.32027206e+00, 1.32027206e+00,
1.34589382e+00, 1.34589382e+00, 1.34589382e+00, 1.34589382e+00,
1.35597341e+00, 1.35597341e+00, 1.35597341e+00, 1.35597341e+00,
1.35925362e+00, 1.35925362e+00, 1.35925362e+00, 1.35925362e+00,
1.36055940e+00, 1.36055940e+00, 1.36055940e+00, 1.36055940e+00,
1.36160216e+00, 1.36160216e+00, 1.36160216e+00, 1.36160216e+00,
1.36259868e+00, 1.36259868e+00, 1.36259868e+00, 1.36259868e+00,
1.36352978e+00, 1.36352978e+00, 1.36352978e+00, 1.36352978e+00,
1.36408956e+00, 1.36408956e+00, 1.36408956e+00, 1.36408956e+00,
1.36400563e+00, 1.36400563e+00, 1.36400563e+00, 1.36400563e+00,
1.36344216e+00, 1.36344216e+00, 1.36344216e+00, 1.36344216e+00,
1.36276431e+00, 1.36276431e+00, 1.36276431e+00, 1.36276431e+00,
1.36178307e+00, 1.36178307e+00, 1.36178307e+00, 1.36178307e+00,
1.36049076e+00, 1.36049076e+00, 1.36049076e+00, 1.36049076e+00,
1.36016799e+00, 1.36016799e+00, 1.36016799e+00, 1.36016799e+00,
1.36000464e+00, 1.36000464e+00, 1.36000464e+00, 1.36000464e+00,
1.35908609e+00, 1.35908609e+00, 1.35908609e+00, 1.35908609e+00,
1.35614599e+00, 1.35614599e+00, 1.35614599e+00, 1.35614599e+00,
1.34038610e+00, 1.34038610e+00, 1.34038610e+00, 1.34038610e+00,
1.26724046e+00, 1.26724046e+00, 1.26724046e+00, 1.26724046e+00,
9.82640800e-01, 9.82640800e-01, 9.82640800e-01, 9.82640800e-01,
3.48788395e-01, 3.48788395e-01, 3.48788395e-01, 3.48788395e-01,
3.96209590e-02, 3.96209590e-02, 3.96209590e-02, 3.96209590e-02,
3.13229418e-03, 3.13229418e-03, 3.13229418e-03, 3.13229418e-03,
2.36909021e-04, 2.36909021e-04, 2.36909021e-04, 2.36909021e-04,
1.78221789e-05, 1.78221789e-05, 1.78221789e-05, 1.78221789e-05,
1.33690626e-06, 1.33690626e-06, 1.33690626e-06, 1.33690626e-06,
9.99987457e-08, 9.99987457e-08, 9.99987457e-08, 9.99987457e-08,
7.46125178e-09, 7.46125178e-09, 7.46125178e-09, 7.46125178e-09,
5.55345318e-10, 5.55345318e-10, 5.55345318e-10, 5.55345318e-10,
4.12297396e-11, 4.12297396e-11, 4.12297396e-11, 4.12297396e-11,
3.05298490e-12, 3.05298490e-12, 3.05298490e-12, 3.05298490e-12,
2.25630808e-13, 2.25630808e-13, 2.25630808e-13, 2.25630808e-13,
1.65496825e-14, 1.65496825e-14, 1.65496825e-14, 1.65496825e-14,
1.18089382e-15, 1.18089382e-15, 1.18089382e-15, 1.18089382e-15,
7.03960128e-17, 7.03960128e-17, 7.03960128e-17, 7.03960128e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999953,
0.99999953, 0.99999953, 0.99999953, 0.99999714, 0.99999714,
0.99999714, 0.99999714, 0.99998427, 0.99998427, 0.99998427,
0.99998427, 0.99992204, 0.99992204, 0.99992204, 0.99992204,
0.99965503, 0.99965503, 0.99965503, 0.99965503, 0.99865441,
0.99865441, 0.99865441, 0.99865441, 0.99544177, 0.99544177,
0.99544177, 0.99544177, 0.98679799, 0.98679799, 0.98679799,
0.98679799, 0.96770449, 0.96770449, 0.96770449, 0.96770449,
0.93344814, 0.93344814, 0.93344814, 0.93344814, 0.88314892,
0.88314892, 0.88314892, 0.88314892, 0.82088008, 0.82088008,
0.82088008, 0.82088008, 0.75281451, 0.75281451, 0.75281451,
0.75281451, 0.68680422, 0.68680422, 0.68680422, 0.68680422,
0.62684396, 0.62684396, 0.62684396, 0.62684396, 0.56962935,
0.56962935, 0.56962935, 0.56962935, 0.5232226 , 0.5232226 ,
0.5232226 , 0.5232226 , 0.49143435, 0.49143435, 0.49143435,
0.49143435, 0.47522501, 0.47522501, 0.47522501, 0.47522501,
0.46935729, 0.46935729, 0.46935729, 0.46935729, 0.46752687,
0.46752687, 0.46752687, 0.46752687, 0.46668373, 0.46668373,
0.46668373, 0.46668373, 0.46587781, 0.46587781, 0.46587781,
0.46587781, 0.46533792, 0.46533792, 0.46533792, 0.46533792,
0.46526321, 0.46526321, 0.46526321, 0.46526321, 0.46529401,
0.46529401, 0.46529401, 0.46529401, 0.46538814, 0.46538814,
0.46538814, 0.46538814, 0.46554165, 0.46554165, 0.46554165,
0.46554165, 0.4653427 , 0.4653427 , 0.4653427 , 0.4653427 ,
0.46500494, 0.46500494, 0.46500494, 0.46500494, 0.4649203 ,
0.4649203 , 0.4649203 , 0.4649203 , 0.46481236, 0.46481236,
0.46481236, 0.46481236, 0.4648016 , 0.4648016 , 0.4648016 ,
0.4648016 , 0.46486006, 0.46486006, 0.46486006, 0.46486006,
0.46351591, 0.46351591, 0.46351591, 0.46351591, 0.45617693,
0.45617693, 0.45617693, 0.45617693, 0.42387417, 0.42387417,
0.42387417, 0.42387417, 0.31662409, 0.31662409, 0.31662409,
0.31662409, 0.15467947, 0.15467947, 0.15467947, 0.15467947,
0.10533579, 0.10533579, 0.10533579, 0.10533579, 0.10041475,
0.10041475, 0.10041475, 0.10041475, 0.10003134, 0.10003134,
0.10003134, 0.10003134, 0.10000236, 0.10000236, 0.10000236,
0.10000236, 0.10000018, 0.10000018, 0.10000018, 0.10000018,
0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.9999995 ,
0.9999995 , 0.9999995 , 0.9999995 , 0.99999709, 0.99999709,
0.99999709, 0.99999709, 0.99998454, 0.99998454, 0.99998454,
0.99998454, 0.99992608, 0.99992608, 0.99992608, 0.99992608,
0.99968447, 0.99968447, 0.99968447, 0.99968447, 0.99881309,
0.99881309, 0.99881309, 0.99881309, 0.9961219 , 0.9961219 ,
0.9961219 , 0.9961219 , 0.98915182, 0.98915182, 0.98915182,
0.98915182, 0.9742804 , 0.9742804 , 0.9742804 , 0.9742804 ,
0.94831908, 0.94831908, 0.94831908, 0.94831908, 0.91081218,
0.91081218, 0.91081218, 0.91081218, 0.86452304, 0.86452304,
0.86452304, 0.86452304, 0.81364869, 0.81364869, 0.81364869,
0.81364869, 0.76425007, 0.76425007, 0.76425007, 0.76425007,
0.71596964, 0.71596964, 0.71596964, 0.71596964, 0.66862165,
0.66862165, 0.66862165, 0.66862165, 0.63309882, 0.63309882,
0.63309882, 0.63309882, 0.60692411, 0.60692411, 0.60692411,
0.60692411, 0.58834503, 0.58834503, 0.58834503, 0.58834503,
0.5797179 , 0.5797179 , 0.5797179 , 0.5797179 , 0.57833736,
0.57833736, 0.57833736, 0.57833736, 0.57885427, 0.57885427,
0.57885427, 0.57885427, 0.58070829, 0.58070829, 0.58070829,
0.58070829, 0.5821418 , 0.5821418 , 0.5821418 , 0.5821418 ,
0.58161437, 0.58161437, 0.58161437, 0.58161437, 0.57752342,
0.57752342, 0.57752342, 0.57752342, 0.56529572, 0.56529572,
0.56529572, 0.56529572, 0.53988046, 0.53988046, 0.53988046,
0.53988046, 0.49734652, 0.49734652, 0.49734652, 0.49734652,
0.43756408, 0.43756408, 0.43756408, 0.43756408, 0.38405097,
0.38405097, 0.38405097, 0.38405097, 0.35274026, 0.35274026,
0.35274026, 0.35274026, 0.33729664, 0.33729664, 0.33729664,
0.33729664, 0.33184586, 0.33184586, 0.33184586, 0.33184586,
0.3308689 , 0.3308689 , 0.3308689 , 0.3308689 , 0.33116014,
0.33116014, 0.33116014, 0.33116014, 0.3284959 , 0.3284959 ,
0.3284959 , 0.3284959 , 0.305514 , 0.305514 , 0.305514 ,
0.305514 , 0.22909354, 0.22909354, 0.22909354, 0.22909354,
0.14525793, 0.14525793, 0.14525793, 0.14525793, 0.12704227,
0.12704227, 0.12704227, 0.12704227, 0.12516466, 0.12516466,
0.12516466, 0.12516466, 0.12501259, 0.12501259, 0.12501259,
0.12501259, 0.12500095, 0.12500095, 0.12500095, 0.12500095,
0.12500007, 0.12500007, 0.12500007, 0.12500007, 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
7.50000093e-01, 7.50000093e-01, 7.50000093e-01, 7.50000093e-01,
7.50000591e-01, 7.50000591e-01, 7.50000591e-01, 7.50000591e-01,
7.50003448e-01, 7.50003448e-01, 7.50003448e-01, 7.50003448e-01,
7.50018287e-01, 7.50018287e-01, 7.50018287e-01, 7.50018287e-01,
7.50087467e-01, 7.50087467e-01, 7.50087467e-01, 7.50087467e-01,
7.50373360e-01, 7.50373360e-01, 7.50373360e-01, 7.50373360e-01,
7.51404804e-01, 7.51404804e-01, 7.51404804e-01, 7.51404804e-01,
7.54594512e-01, 7.54594512e-01, 7.54594512e-01, 7.54594512e-01,
7.62888923e-01, 7.62888923e-01, 7.62888923e-01, 7.62888923e-01,
7.80756528e-01, 7.80756528e-01, 7.80756528e-01, 7.80756528e-01,
8.12524446e-01, 8.12524446e-01, 8.12524446e-01, 8.12524446e-01,
8.59748156e-01, 8.59748156e-01, 8.59748156e-01, 8.59748156e-01,
9.20303317e-01, 9.20303317e-01, 9.20303317e-01, 9.20303317e-01,
9.89569875e-01, 9.89569875e-01, 9.89569875e-01, 9.89569875e-01,
1.06043656e+00, 1.06043656e+00, 1.06043656e+00, 1.06043656e+00,
1.13178235e+00, 1.13178235e+00, 1.13178235e+00, 1.13178235e+00,
1.20428722e+00, 1.20428722e+00, 1.20428722e+00, 1.20428722e+00,
1.26922681e+00, 1.26922681e+00, 1.26922681e+00, 1.26922681e+00,
1.31744793e+00, 1.31744793e+00, 1.31744793e+00, 1.31744793e+00,
1.34420543e+00, 1.34420543e+00, 1.34420543e+00, 1.34420543e+00,
1.35515354e+00, 1.35515354e+00, 1.35515354e+00, 1.35515354e+00,
1.35893569e+00, 1.35893569e+00, 1.35893569e+00, 1.35893569e+00,
1.36047087e+00, 1.36047087e+00, 1.36047087e+00, 1.36047087e+00,
1.36156372e+00, 1.36156372e+00, 1.36156372e+00, 1.36156372e+00,
1.36242402e+00, 1.36242402e+00, 1.36242402e+00, 1.36242402e+00,
1.36322740e+00, 1.36322740e+00, 1.36322740e+00, 1.36322740e+00,
1.36389115e+00, 1.36389115e+00, 1.36389115e+00, 1.36389115e+00,
1.36394778e+00, 1.36394778e+00, 1.36394778e+00, 1.36394778e+00,
1.36363338e+00, 1.36363338e+00, 1.36363338e+00, 1.36363338e+00,
1.36317823e+00, 1.36317823e+00, 1.36317823e+00, 1.36317823e+00,
1.36245466e+00, 1.36245466e+00, 1.36245466e+00, 1.36245466e+00,
1.36111329e+00, 1.36111329e+00, 1.36111329e+00, 1.36111329e+00,
1.36045029e+00, 1.36045029e+00, 1.36045029e+00, 1.36045029e+00,
1.36011173e+00, 1.36011173e+00, 1.36011173e+00, 1.36011173e+00,
1.35943008e+00, 1.35943008e+00, 1.35943008e+00, 1.35943008e+00,
1.35849429e+00, 1.35849429e+00, 1.35849429e+00, 1.35849429e+00,
1.35337432e+00, 1.35337432e+00, 1.35337432e+00, 1.35337432e+00,
1.32699322e+00, 1.32699322e+00, 1.32699322e+00, 1.32699322e+00,
1.21392814e+00, 1.21392814e+00, 1.21392814e+00, 1.21392814e+00,
8.11305629e-01, 8.11305629e-01, 8.11305629e-01, 8.11305629e-01,
1.91993018e-01, 1.91993018e-01, 1.91993018e-01, 1.91993018e-01,
1.84260657e-02, 1.84260657e-02, 1.84260657e-02, 1.84260657e-02,
1.41864065e-03, 1.41864065e-03, 1.41864065e-03, 1.41864065e-03,
1.07039498e-04, 1.07039498e-04, 1.07039498e-04, 1.07039498e-04,
8.05698302e-06, 8.05698302e-06, 8.05698302e-06, 8.05698302e-06,
6.04942296e-07, 6.04942296e-07, 6.04942296e-07, 6.04942296e-07,
4.53003318e-08, 4.53003318e-08, 4.53003318e-08, 4.53003318e-08,
3.38340676e-09, 3.38340676e-09, 3.38340676e-09, 3.38340676e-09,
2.52067618e-10, 2.52067618e-10, 2.52067618e-10, 2.52067618e-10,
1.87321914e-11, 1.87321914e-11, 1.87321914e-11, 1.87321914e-11,
1.38872868e-12, 1.38872868e-12, 1.38872868e-12, 1.38872868e-12,
1.02623229e-13, 1.02623229e-13, 1.02623229e-13, 1.02623229e-13,
7.45434898e-15, 7.45434898e-15, 7.45434898e-15, 7.45434898e-15,
5.62547042e-16, 5.62547042e-16, 5.62547042e-16, 5.62547042e-16,
3.42190912e-17, 3.42190912e-17, 3.42190912e-17, 3.42190912e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999989, 0.99999989, 0.99999989, 0.99999989, 0.9999993 ,
0.9999993 , 0.9999993 , 0.9999993 , 0.99999592, 0.99999592,
0.99999592, 0.99999592, 0.99997836, 0.99997836, 0.99997836,
0.99997836, 0.99989651, 0.99989651, 0.99989651, 0.99989651,
0.99955833, 0.99955833, 0.99955833, 0.99955833, 0.99833914,
0.99833914, 0.99833914, 0.99833914, 0.994578 , 0.994578 ,
0.994578 , 0.994578 , 0.98486191, 0.98486191, 0.98486191,
0.98486191, 0.96423927, 0.96423927, 0.96423927, 0.96423927,
0.92856276, 0.92856276, 0.92856276, 0.92856276, 0.87771963,
0.87771963, 0.87771963, 0.87771963, 0.81607625, 0.81607625,
0.81607625, 0.81607625, 0.74954761, 0.74954761, 0.74954761,
0.74954761, 0.68560013, 0.68560013, 0.68560013, 0.68560013,
0.62733728, 0.62733728, 0.62733728, 0.62733728, 0.57145736,
0.57145736, 0.57145736, 0.57145736, 0.52561297, 0.52561297,
0.52561297, 0.52561297, 0.4934087 , 0.4934087 , 0.4934087 ,
0.4934087 , 0.4762095 , 0.4762095 , 0.4762095 , 0.4762095 ,
0.46962957, 0.46962957, 0.46962957, 0.46962957, 0.46760322,
0.46760322, 0.46760322, 0.46760322, 0.46677931, 0.46677931,
0.46677931, 0.46677931, 0.46598101, 0.46598101, 0.46598101,
0.46598101, 0.4653201 , 0.4653201 , 0.4653201 , 0.4653201 ,
0.46512805, 0.46512805, 0.46512805, 0.46512805, 0.46518516,
0.46518516, 0.46518516, 0.46518516, 0.46533628, 0.46533628,
0.46533628, 0.46533628, 0.46560697, 0.46560697, 0.46560697,
0.46560697, 0.46556363, 0.46556363, 0.46556363, 0.46556363,
0.46534283, 0.46534283, 0.46534283, 0.46534283, 0.46521233,
0.46521233, 0.46521233, 0.46521233, 0.46494555, 0.46494555,
0.46494555, 0.46494555, 0.46485571, 0.46485571, 0.46485571,
0.46485571, 0.46502167, 0.46502167, 0.46502167, 0.46502167,
0.46460407, 0.46460407, 0.46460407, 0.46460407, 0.46217056,
0.46217056, 0.46217056, 0.46217056, 0.4504888 , 0.4504888 ,
0.4504888 , 0.4504888 , 0.40110266, 0.40110266, 0.40110266,
0.40110266, 0.26313779, 0.26313779, 0.26313779, 0.26313779,
0.12803042, 0.12803042, 0.12803042, 0.12803042, 0.1024553 ,
0.1024553 , 0.1024553 , 0.1024553 , 0.10018774, 0.10018774,
0.10018774, 0.10018774, 0.10001416, 0.10001416, 0.10001416,
0.10001416, 0.10000107, 0.10000107, 0.10000107, 0.10000107,
0.10000008, 0.10000008, 0.10000008, 0.10000008, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999988, 0.99999988, 0.99999988, 0.99999988, 0.99999927,
0.99999927, 0.99999927, 0.99999927, 0.9999959 , 0.9999959 ,
0.9999959 , 0.9999959 , 0.99997898, 0.99997898, 0.99997898,
0.99997898, 0.99990291, 0.99990291, 0.99990291, 0.99990291,
0.99959993, 0.99959993, 0.99959993, 0.99959993, 0.99854785,
0.99854785, 0.99854785, 0.99854785, 0.99542289, 0.99542289,
0.99542289, 0.99542289, 0.98764264, 0.98764264, 0.98764264,
0.98764264, 0.97166631, 0.97166631, 0.97166631, 0.97166631,
0.94472122, 0.94472122, 0.94472122, 0.94472122, 0.90686323,
0.90686323, 0.90686323, 0.90686323, 0.86103104, 0.86103104,
0.86103104, 0.86103104, 0.81128459, 0.81128459, 0.81128459,
0.81128459, 0.76333114, 0.76333114, 0.76333114, 0.76333114,
0.71681296, 0.71681296, 0.71681296, 0.71681296, 0.66988534,
0.66988534, 0.66988534, 0.66988534, 0.63398635, 0.63398635,
0.63398635, 0.63398635, 0.60868419, 0.60868419, 0.60868419,
0.60868419, 0.59062344, 0.59062344, 0.59062344, 0.59062344,
0.58075915, 0.58075915, 0.58075915, 0.58075915, 0.57821989,
0.57821989, 0.57821989, 0.57821989, 0.57834671, 0.57834671,
0.57834671, 0.57834671, 0.57958969, 0.57958969, 0.57958969,
0.57958969, 0.58156325, 0.58156325, 0.58156325, 0.58156325,
0.58167402, 0.58167402, 0.58167402, 0.58167402, 0.57949654,
0.57949654, 0.57949654, 0.57949654, 0.57136665, 0.57136665,
0.57136665, 0.57136665, 0.55237715, 0.55237715, 0.55237715,
0.55237715, 0.5178861 , 0.5178861 , 0.5178861 , 0.5178861 ,
0.46556784, 0.46556784, 0.46556784, 0.46556784, 0.40490108,
0.40490108, 0.40490108, 0.40490108, 0.36456809, 0.36456809,
0.36456809, 0.36456809, 0.34291316, 0.34291316, 0.34291316,
0.34291316, 0.33384449, 0.33384449, 0.33384449, 0.33384449,
0.33130867, 0.33130867, 0.33130867, 0.33130867, 0.33149943,
0.33149943, 0.33149943, 0.33149943, 0.33184294, 0.33184294,
0.33184294, 0.33184294, 0.32533092, 0.32533092, 0.32533092,
0.32533092, 0.28902333, 0.28902333, 0.28902333, 0.28902333,
0.1964541 , 0.1964541 , 0.1964541 , 0.1964541 , 0.13545621,
0.13545621, 0.13545621, 0.13545621, 0.12594954, 0.12594954,
0.12594954, 0.12594954, 0.12507487, 0.12507487, 0.12507487,
0.12507487, 0.1250057 , 0.1250057 , 0.1250057 , 0.1250057 ,
0.12500043, 0.12500043, 0.12500043, 0.12500043, 0.12500003,
0.12500003, 0.12500003, 0.12500003, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000021e-01, 7.50000021e-01, 7.50000021e-01, 7.50000021e-01,
7.50000140e-01, 7.50000140e-01, 7.50000140e-01, 7.50000140e-01,
7.50000861e-01, 7.50000861e-01, 7.50000861e-01, 7.50000861e-01,
7.50004854e-01, 7.50004854e-01, 7.50004854e-01, 7.50004854e-01,
7.50024870e-01, 7.50024870e-01, 7.50024870e-01, 7.50024870e-01,
7.50114879e-01, 7.50114879e-01, 7.50114879e-01, 7.50114879e-01,
7.50473401e-01, 7.50473401e-01, 7.50473401e-01, 7.50473401e-01,
7.51718892e-01, 7.51718892e-01, 7.51718892e-01, 7.51718892e-01,
7.55424229e-01, 7.55424229e-01, 7.55424229e-01, 7.55424229e-01,
7.64691790e-01, 7.64691790e-01, 7.64691790e-01, 7.64691790e-01,
7.83922560e-01, 7.83922560e-01, 7.83922560e-01, 7.83922560e-01,
8.16985524e-01, 8.16985524e-01, 8.16985524e-01, 8.16985524e-01,
8.64808121e-01, 8.64808121e-01, 8.64808121e-01, 8.64808121e-01,
9.24958686e-01, 9.24958686e-01, 9.24958686e-01, 9.24958686e-01,
9.92693337e-01, 9.92693337e-01, 9.92693337e-01, 9.92693337e-01,
1.06173967e+00, 1.06173967e+00, 1.06173967e+00, 1.06173967e+00,
1.13129021e+00, 1.13129021e+00, 1.13129021e+00, 1.13129021e+00,
1.20198744e+00, 1.20198744e+00, 1.20198744e+00, 1.20198744e+00,
1.26595672e+00, 1.26595672e+00, 1.26595672e+00, 1.26595672e+00,
1.31461852e+00, 1.31461852e+00, 1.31461852e+00, 1.31461852e+00,
1.34253734e+00, 1.34253734e+00, 1.34253734e+00, 1.34253734e+00,
1.35432704e+00, 1.35432704e+00, 1.35432704e+00, 1.35432704e+00,
1.35852967e+00, 1.35852967e+00, 1.35852967e+00, 1.35852967e+00,
1.36029446e+00, 1.36029446e+00, 1.36029446e+00, 1.36029446e+00,
1.36153027e+00, 1.36153027e+00, 1.36153027e+00, 1.36153027e+00,
1.36236269e+00, 1.36236269e+00, 1.36236269e+00, 1.36236269e+00,
1.36299920e+00, 1.36299920e+00, 1.36299920e+00, 1.36299920e+00,
1.36365952e+00, 1.36365952e+00, 1.36365952e+00, 1.36365952e+00,
1.36380842e+00, 1.36380842e+00, 1.36380842e+00, 1.36380842e+00,
1.36364674e+00, 1.36364674e+00, 1.36364674e+00, 1.36364674e+00,
1.36337979e+00, 1.36337979e+00, 1.36337979e+00, 1.36337979e+00,
1.36291780e+00, 1.36291780e+00, 1.36291780e+00, 1.36291780e+00,
1.36179759e+00, 1.36179759e+00, 1.36179759e+00, 1.36179759e+00,
1.36099880e+00, 1.36099880e+00, 1.36099880e+00, 1.36099880e+00,
1.36037766e+00, 1.36037766e+00, 1.36037766e+00, 1.36037766e+00,
1.35961227e+00, 1.35961227e+00, 1.35961227e+00, 1.35961227e+00,
1.35921926e+00, 1.35921926e+00, 1.35921926e+00, 1.35921926e+00,
1.35759675e+00, 1.35759675e+00, 1.35759675e+00, 1.35759675e+00,
1.34828922e+00, 1.34828922e+00, 1.34828922e+00, 1.34828922e+00,
1.30681890e+00, 1.30681890e+00, 1.30681890e+00, 1.30681890e+00,
1.13247598e+00, 1.13247598e+00, 1.13247598e+00, 1.13247598e+00,
6.05650926e-01, 6.05650926e-01, 6.05650926e-01, 6.05650926e-01,
9.87277152e-02, 9.87277152e-02, 9.87277152e-02, 9.87277152e-02,
8.39794778e-03, 8.39794778e-03, 8.39794778e-03, 8.39794778e-03,
6.41036738e-04, 6.41036738e-04, 6.41036738e-04, 6.41036738e-04,
4.83799215e-05, 4.83799215e-05, 4.83799215e-05, 4.83799215e-05,
3.64189070e-06, 3.64189070e-06, 3.64189070e-06, 3.64189070e-06,
2.73646970e-07, 2.73646970e-07, 2.73646970e-07, 2.73646970e-07,
2.05122779e-08, 2.05122779e-08, 2.05122779e-08, 2.05122779e-08,
1.53361037e-09, 1.53361037e-09, 1.53361037e-09, 1.53361037e-09,
1.14368647e-10, 1.14368647e-10, 1.14368647e-10, 1.14368647e-10,
8.50778657e-12, 8.50778657e-12, 8.50778657e-12, 8.50778657e-12,
6.31241749e-13, 6.31241749e-13, 6.31241749e-13, 6.31241749e-13,
4.65959457e-14, 4.65959457e-14, 4.65959457e-14, 4.65959457e-14,
3.44111781e-15, 3.44111781e-15, 3.44111781e-15, 3.44111781e-15,
2.44715227e-16, 2.44715227e-16, 2.44715227e-16, 2.44715227e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999983, 0.99999983, 0.99999983, 0.99999983, 0.99999898,
0.99999898, 0.99999898, 0.99999898, 0.99999426, 0.99999426,
0.99999426, 0.99999426, 0.99997057, 0.99997057, 0.99997057,
0.99997057, 0.99986408, 0.99986408, 0.99986408, 0.99986408,
0.99944001, 0.99944001, 0.99944001, 0.99944001, 0.99796817,
0.99796817, 0.99796817, 0.99796817, 0.99360189, 0.99360189,
0.99360189, 0.99360189, 0.98276203, 0.98276203, 0.98276203,
0.98276203, 0.96062669, 0.96062669, 0.96062669, 0.96062669,
0.92364506, 0.92364506, 0.92364506, 0.92364506, 0.87240348,
0.87240348, 0.87240348, 0.87240348, 0.81145937, 0.81145937,
0.81145937, 0.81145937, 0.74647243, 0.74647243, 0.74647243,
0.74647243, 0.68444299, 0.68444299, 0.68444299, 0.68444299,
0.62778294, 0.62778294, 0.62778294, 0.62778294, 0.5732094 ,
0.5732094 , 0.5732094 , 0.5732094 , 0.52793038, 0.52793038,
0.52793038, 0.52793038, 0.49541854, 0.49541854, 0.49541854,
0.49541854, 0.47732601, 0.47732601, 0.47732601, 0.47732601,
0.46998067, 0.46998067, 0.46998067, 0.46998067, 0.46765631,
0.46765631, 0.46765631, 0.46765631, 0.46682798, 0.46682798,
0.46682798, 0.46682798, 0.46608977, 0.46608977, 0.46608977,
0.46608977, 0.4653755 , 0.4653755 , 0.4653755 , 0.4653755 ,
0.46504229, 0.46504229, 0.46504229, 0.46504229, 0.46505976,
0.46505976, 0.46505976, 0.46505976, 0.46523378, 0.46523378,
0.46523378, 0.46523378, 0.46557421, 0.46557421, 0.46557421,
0.46557421, 0.4656599 , 0.4656599 , 0.4656599 , 0.4656599 ,
0.46558172, 0.46558172, 0.46558172, 0.46558172, 0.46553439,
0.46553439, 0.46553439, 0.46553439, 0.46520836, 0.46520836,
0.46520836, 0.46520836, 0.46498438, 0.46498438, 0.46498438,
0.46498438, 0.46510742, 0.46510742, 0.46510742, 0.46510742,
0.46494014, 0.46494014, 0.46494014, 0.46494014, 0.46413174,
0.46413174, 0.46413174, 0.46413174, 0.46026772, 0.46026772,
0.46026772, 0.46026772, 0.44125804, 0.44125804, 0.44125804,
0.44125804, 0.36962649, 0.36962649, 0.36962649, 0.36962649,
0.20878392, 0.20878392, 0.20878392, 0.20878392, 0.11372397,
0.11372397, 0.11372397, 0.11372397, 0.10111414, 0.10111414,
0.10111414, 0.10111414, 0.10008482, 0.10008482, 0.10008482,
0.10008482, 0.1000064 , 0.1000064 , 0.1000064 , 0.1000064 ,
0.10000048, 0.10000048, 0.10000048, 0.10000048, 0.10000004,
0.10000004, 0.10000004, 0.10000004, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999895,
0.99999895, 0.99999895, 0.99999895, 0.99999429, 0.99999429,
0.99999429, 0.99999429, 0.99997173, 0.99997173, 0.99997173,
0.99997173, 0.99987376, 0.99987376, 0.99987376, 0.99987376,
0.99949743, 0.99949743, 0.99949743, 0.99949743, 0.99823832,
0.99823832, 0.99823832, 0.99823832, 0.99463867, 0.99463867,
0.99463867, 0.99463867, 0.98601545, 0.98601545, 0.98601545,
0.98601545, 0.96895243, 0.96895243, 0.96895243, 0.96895243,
0.94110753, 0.94110753, 0.94110753, 0.94110753, 0.90299803,
0.90299803, 0.90299803, 0.90299803, 0.85767273, 0.85767273,
0.85767273, 0.85767273, 0.80904917, 0.80904917, 0.80904917,
0.80904917, 0.76239648, 0.76239648, 0.76239648, 0.76239648,
0.71749093, 0.71749093, 0.71749093, 0.71749093, 0.67147851,
0.67147851, 0.67147851, 0.67147851, 0.63489 , 0.63489 ,
0.63489 , 0.63489 , 0.60997929, 0.60997929, 0.60997929,
0.60997929, 0.59272294, 0.59272294, 0.59272294, 0.59272294,
0.58215958, 0.58215958, 0.58215958, 0.58215958, 0.57835617,
0.57835617, 0.57835617, 0.57835617, 0.57803304, 0.57803304,
0.57803304, 0.57803304, 0.57873351, 0.57873351, 0.57873351,
0.57873351, 0.58068604, 0.58068604, 0.58068604, 0.58068604,
0.58148766, 0.58148766, 0.58148766, 0.58148766, 0.58048792,
0.58048792, 0.58048792, 0.58048792, 0.57541107, 0.57541107,
0.57541107, 0.57541107, 0.56176436, 0.56176436, 0.56176436,
0.56176436, 0.53464163, 0.53464163, 0.53464163, 0.53464163,
0.49054306, 0.49054306, 0.49054306, 0.49054306, 0.43056034,
0.43056034, 0.43056034, 0.43056034, 0.38004005, 0.38004005,
0.38004005, 0.38004005, 0.35093816, 0.35093816, 0.35093816,
0.35093816, 0.33716902, 0.33716902, 0.33716902, 0.33716902,
0.33218768, 0.33218768, 0.33218768, 0.33218768, 0.33163645,
0.33163645, 0.33163645, 0.33163645, 0.33249535, 0.33249535,
0.33249535, 0.33249535, 0.33172011, 0.33172011, 0.33172011,
0.33172011, 0.3191431 , 0.3191431 , 0.3191431 , 0.3191431 ,
0.2660949 , 0.2660949 , 0.2660949 , 0.2660949 , 0.16817172,
0.16817172, 0.16817172, 0.16817172, 0.13009983, 0.13009983,
0.13009983, 0.13009983, 0.12543611, 0.12543611, 0.12543611,
0.12543611, 0.12503393, 0.12503393, 0.12503393, 0.12503393,
0.12500258, 0.12500258, 0.12500258, 0.12500258, 0.12500019,
0.12500019, 0.12500019, 0.12500019, 0.12500001, 0.12500001,
0.12500001, 0.12500001, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
7.50000032e-01, 7.50000032e-01, 7.50000032e-01, 7.50000032e-01,
7.50000208e-01, 7.50000208e-01, 7.50000208e-01, 7.50000208e-01,
7.50001239e-01, 7.50001239e-01, 7.50001239e-01, 7.50001239e-01,
7.50006753e-01, 7.50006753e-01, 7.50006753e-01, 7.50006753e-01,
7.50033455e-01, 7.50033455e-01, 7.50033455e-01, 7.50033455e-01,
7.50149366e-01, 7.50149366e-01, 7.50149366e-01, 7.50149366e-01,
7.50594713e-01, 7.50594713e-01, 7.50594713e-01, 7.50594713e-01,
7.52085532e-01, 7.52085532e-01, 7.52085532e-01, 7.52085532e-01,
7.56355674e-01, 7.56355674e-01, 7.56355674e-01, 7.56355674e-01,
7.66638355e-01, 7.66638355e-01, 7.66638355e-01, 7.66638355e-01,
7.87217230e-01, 7.87217230e-01, 7.87217230e-01, 7.87217230e-01,
8.21480083e-01, 8.21480083e-01, 8.21480083e-01, 8.21480083e-01,
8.69776615e-01, 8.69776615e-01, 8.69776615e-01, 8.69776615e-01,
9.29447294e-01, 9.29447294e-01, 9.29447294e-01, 9.29447294e-01,
9.95674208e-01, 9.95674208e-01, 9.95674208e-01, 9.95674208e-01,
1.06296792e+00, 1.06296792e+00, 1.06296792e+00, 1.06296792e+00,
1.13078254e+00, 1.13078254e+00, 1.13078254e+00, 1.13078254e+00,
1.19977119e+00, 1.19977119e+00, 1.19977119e+00, 1.19977119e+00,
1.26275299e+00, 1.26275299e+00, 1.26275299e+00, 1.26275299e+00,
1.31175348e+00, 1.31175348e+00, 1.31175348e+00, 1.31175348e+00,
1.34085462e+00, 1.34085462e+00, 1.34085462e+00, 1.34085462e+00,
1.35353646e+00, 1.35353646e+00, 1.35353646e+00, 1.35353646e+00,
1.35810343e+00, 1.35810343e+00, 1.35810343e+00, 1.35810343e+00,
1.36003123e+00, 1.36003123e+00, 1.36003123e+00, 1.36003123e+00,
1.36143326e+00, 1.36143326e+00, 1.36143326e+00, 1.36143326e+00,
1.36236200e+00, 1.36236200e+00, 1.36236200e+00, 1.36236200e+00,
1.36287773e+00, 1.36287773e+00, 1.36287773e+00, 1.36287773e+00,
1.36345264e+00, 1.36345264e+00, 1.36345264e+00, 1.36345264e+00,
1.36363732e+00, 1.36363732e+00, 1.36363732e+00, 1.36363732e+00,
1.36353697e+00, 1.36353697e+00, 1.36353697e+00, 1.36353697e+00,
1.36343404e+00, 1.36343404e+00, 1.36343404e+00, 1.36343404e+00,
1.36315760e+00, 1.36315760e+00, 1.36315760e+00, 1.36315760e+00,
1.36232473e+00, 1.36232473e+00, 1.36232473e+00, 1.36232473e+00,
1.36166019e+00, 1.36166019e+00, 1.36166019e+00, 1.36166019e+00,
1.36084564e+00, 1.36084564e+00, 1.36084564e+00, 1.36084564e+00,
1.35984618e+00, 1.35984618e+00, 1.35984618e+00, 1.35984618e+00,
1.35955179e+00, 1.35955179e+00, 1.35955179e+00, 1.35955179e+00,
1.35897144e+00, 1.35897144e+00, 1.35897144e+00, 1.35897144e+00,
1.35552174e+00, 1.35552174e+00, 1.35552174e+00, 1.35552174e+00,
1.34102919e+00, 1.34102919e+00, 1.34102919e+00, 1.34102919e+00,
1.27545330e+00, 1.27545330e+00, 1.27545330e+00, 1.27545330e+00,
1.01455011e+00, 1.01455011e+00, 1.01455011e+00, 1.01455011e+00,
3.94082610e-01, 3.94082610e-01, 3.94082610e-01, 3.94082610e-01,
4.73339439e-02, 4.73339439e-02, 4.73339439e-02, 4.73339439e-02,
3.80163833e-03, 3.80163833e-03, 3.80163833e-03, 3.80163833e-03,
2.89378256e-04, 2.89378256e-04, 2.89378256e-04, 2.89378256e-04,
2.18495362e-05, 2.18495362e-05, 2.18495362e-05, 2.18495362e-05,
1.64610353e-06, 1.64610353e-06, 1.64610353e-06, 1.64610353e-06,
1.23761362e-07, 1.23761362e-07, 1.23761362e-07, 1.23761362e-07,
9.28475911e-09, 9.28475911e-09, 9.28475911e-09, 9.28475911e-09,
6.94864466e-10, 6.94864466e-10, 6.94864466e-10, 6.94864466e-10,
5.18715247e-11, 5.18715247e-11, 5.18715247e-11, 5.18715247e-11,
3.86232749e-12, 3.86232749e-12, 3.86232749e-12, 3.86232749e-12,
2.86798402e-13, 2.86798402e-13, 2.86798402e-13, 2.86798402e-13,
2.12511563e-14, 2.12511563e-14, 2.12511563e-14, 2.12511563e-14,
1.51978465e-15, 1.51978465e-15, 1.51978465e-15, 1.51978465e-15,
8.24527483e-17, 8.24527483e-17, 8.24527483e-17, 8.24527483e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999975, 0.99999975, 0.99999975, 0.99999975, 0.99999853,
0.99999853, 0.99999853, 0.99999853, 0.99999201, 0.99999201,
0.99999201, 0.99999201, 0.99996042, 0.99996042, 0.99996042,
0.99996042, 0.99982328, 0.99982328, 0.99982328, 0.99982328,
0.99929656, 0.99929656, 0.99929656, 0.99929656, 0.9975353 ,
0.9975353 , 0.9975353 , 0.9975353 , 0.99250721, 0.99250721,
0.99250721, 0.99250721, 0.98049952, 0.98049952, 0.98049952,
0.98049952, 0.95688026, 0.95688026, 0.95688026, 0.95688026,
0.91871272, 0.91871272, 0.91871272, 0.91871272, 0.86720806,
0.86720806, 0.86720806, 0.86720806, 0.80702616, 0.80702616,
0.80702616, 0.80702616, 0.74357673, 0.74357673, 0.74357673,
0.74357673, 0.68334214, 0.68334214, 0.68334214, 0.68334214,
0.62818486, 0.62818486, 0.62818486, 0.62818486, 0.57487936,
0.57487936, 0.57487936, 0.57487936, 0.53017432, 0.53017432,
0.53017432, 0.53017432, 0.49742975, 0.49742975, 0.49742975,
0.49742975, 0.47854702, 0.47854702, 0.47854702, 0.47854702,
0.47044075, 0.47044075, 0.47044075, 0.47044075, 0.46773171,
0.46773171, 0.46773171, 0.46773171, 0.46683192, 0.46683192,
0.46683192, 0.46683192, 0.46616185, 0.46616185, 0.46616185,
0.46616185, 0.4654718 , 0.4654718 , 0.4654718 , 0.4654718 ,
0.46502244, 0.46502244, 0.46502244, 0.46502244, 0.46495839,
0.46495839, 0.46495839, 0.46495839, 0.46511062, 0.46511062,
0.46511062, 0.46511062, 0.46546668, 0.46546668, 0.46546668,
0.46546668, 0.46567427, 0.46567427, 0.46567427, 0.46567427,
0.4656998 , 0.4656998 , 0.4656998 , 0.4656998 , 0.46577701,
0.46577701, 0.46577701, 0.46577701, 0.46553312, 0.46553312,
0.46553312, 0.46553312, 0.46520841, 0.46520841, 0.46520841,
0.46520841, 0.46521622, 0.46521622, 0.46521622, 0.46521622,
0.46509428, 0.46509428, 0.46509428, 0.46509428, 0.46477283,
0.46477283, 0.46477283, 0.46477283, 0.46362484, 0.46362484,
0.46362484, 0.46362484, 0.45682453, 0.45682453, 0.45682453,
0.45682453, 0.42721627, 0.42721627, 0.42721627, 0.42721627,
0.32761038, 0.32761038, 0.32761038, 0.32761038, 0.16329323,
0.16329323, 0.16329323, 0.16329323, 0.1064006 , 0.1064006 ,
0.1064006 , 0.1064006 , 0.10050349, 0.10050349, 0.10050349,
0.10050349, 0.10003828, 0.10003828, 0.10003828, 0.10003828,
0.10000289, 0.10000289, 0.10000289, 0.10000289, 0.10000022,
0.10000022, 0.10000022, 0.10000022, 0.10000002, 0.10000002,
0.10000002, 0.10000002, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999851,
0.99999851, 0.99999851, 0.99999851, 0.99999215, 0.99999215,
0.99999215, 0.99999215, 0.99996236, 0.99996236, 0.99996236,
0.99996236, 0.99983743, 0.99983743, 0.99983743, 0.99983743,
0.99937421, 0.99937421, 0.99937421, 0.99937421, 0.99787995,
0.99787995, 0.99787995, 0.99787995, 0.99376522, 0.99376522,
0.99376522, 0.99376522, 0.98427193, 0.98427193, 0.98427193,
0.98427193, 0.96614873, 0.96614873, 0.96614873, 0.96614873,
0.93749002, 0.93749002, 0.93749002, 0.93749002, 0.89922146,
0.89922146, 0.89922146, 0.89922146, 0.85444615, 0.85444615,
0.85444615, 0.85444615, 0.80694026, 0.80694026, 0.80694026,
0.80694026, 0.76147336, 0.76147336, 0.76147336, 0.76147336,
0.71798649, 0.71798649, 0.71798649, 0.71798649, 0.67328624,
0.67328624, 0.67328624, 0.67328624, 0.63596237, 0.63596237,
0.63596237, 0.63596237, 0.61090962, 0.61090962, 0.61090962,
0.61090962, 0.59448665, 0.59448665, 0.59448665, 0.59448665,
0.58377912, 0.58377912, 0.58377912, 0.58377912, 0.57884073,
0.57884073, 0.57884073, 0.57884073, 0.57784159, 0.57784159,
0.57784159, 0.57784159, 0.57814677, 0.57814677, 0.57814677,
0.57814677, 0.57965393, 0.57965393, 0.57965393, 0.57965393,
0.58114142, 0.58114142, 0.58114142, 0.58114142, 0.58086906,
0.58086906, 0.58086906, 0.58086906, 0.57793383, 0.57793383,
0.57793383, 0.57793383, 0.56855027, 0.56855027, 0.56855027,
0.56855027, 0.54788997, 0.54788997, 0.54788997, 0.54788997,
0.51173387, 0.51173387, 0.51173387, 0.51173387, 0.45826092,
0.45826092, 0.45826092, 0.45826092, 0.39944332, 0.39944332,
0.39944332, 0.39944332, 0.36188141, 0.36188141, 0.36188141,
0.36188141, 0.34228638, 0.34228638, 0.34228638, 0.34228638,
0.33391914, 0.33391914, 0.33391914, 0.33391914, 0.33194109,
0.33194109, 0.33194109, 0.33194109, 0.33247925, 0.33247925,
0.33247925, 0.33247925, 0.33319907, 0.33319907, 0.33319907,
0.33319907, 0.33042192, 0.33042192, 0.33042192, 0.33042192,
0.30893759, 0.30893759, 0.30893759, 0.30893759, 0.23627498,
0.23627498, 0.23627498, 0.23627498, 0.14849035, 0.14849035,
0.14849035, 0.14849035, 0.12743542, 0.12743542, 0.12743542,
0.12743542, 0.12519919, 0.12519919, 0.12519919, 0.12519919,
0.12501533, 0.12501533, 0.12501533, 0.12501533, 0.12500116,
0.12500116, 0.12500116, 0.12500116, 0.12500009, 0.12500009,
0.12500009, 0.12500009, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
7.50000306e-01, 7.50000306e-01, 7.50000306e-01, 7.50000306e-01,
7.50001762e-01, 7.50001762e-01, 7.50001762e-01, 7.50001762e-01,
7.50009291e-01, 7.50009291e-01, 7.50009291e-01, 7.50009291e-01,
7.50044538e-01, 7.50044538e-01, 7.50044538e-01, 7.50044538e-01,
7.50192354e-01, 7.50192354e-01, 7.50192354e-01, 7.50192354e-01,
7.50740552e-01, 7.50740552e-01, 7.50740552e-01, 7.50740552e-01,
7.52510129e-01, 7.52510129e-01, 7.52510129e-01, 7.52510129e-01,
7.57393863e-01, 7.57393863e-01, 7.57393863e-01, 7.57393863e-01,
7.68727220e-01, 7.68727220e-01, 7.68727220e-01, 7.68727220e-01,
7.90629207e-01, 7.90629207e-01, 7.90629207e-01, 7.90629207e-01,
8.25993244e-01, 8.25993244e-01, 8.25993244e-01, 8.25993244e-01,
8.74646375e-01, 8.74646375e-01, 8.74646375e-01, 8.74646375e-01,
9.33771553e-01, 9.33771553e-01, 9.33771553e-01, 9.33771553e-01,
9.98521665e-01, 9.98521665e-01, 9.98521665e-01, 9.98521665e-01,
1.06413782e+00, 1.06413782e+00, 1.06413782e+00, 1.06413782e+00,
1.13027656e+00, 1.13027656e+00, 1.13027656e+00, 1.13027656e+00,
1.19762442e+00, 1.19762442e+00, 1.19762442e+00, 1.19762442e+00,
1.25961704e+00, 1.25961704e+00, 1.25961704e+00, 1.25961704e+00,
1.30884188e+00, 1.30884188e+00, 1.30884188e+00, 1.30884188e+00,
1.33910827e+00, 1.33910827e+00, 1.33910827e+00, 1.33910827e+00,
1.35277568e+00, 1.35277568e+00, 1.35277568e+00, 1.35277568e+00,
1.35771893e+00, 1.35771893e+00, 1.35771893e+00, 1.35771893e+00,
1.35973017e+00, 1.35973017e+00, 1.35973017e+00, 1.35973017e+00,
1.36124410e+00, 1.36124410e+00, 1.36124410e+00, 1.36124410e+00,
1.36234589e+00, 1.36234589e+00, 1.36234589e+00, 1.36234589e+00,
1.36284576e+00, 1.36284576e+00, 1.36284576e+00, 1.36284576e+00,
1.36330700e+00, 1.36330700e+00, 1.36330700e+00, 1.36330700e+00,
1.36348314e+00, 1.36348314e+00, 1.36348314e+00, 1.36348314e+00,
1.36337493e+00, 1.36337493e+00, 1.36337493e+00, 1.36337493e+00,
1.36336149e+00, 1.36336149e+00, 1.36336149e+00, 1.36336149e+00,
1.36324405e+00, 1.36324405e+00, 1.36324405e+00, 1.36324405e+00,
1.36265870e+00, 1.36265870e+00, 1.36265870e+00, 1.36265870e+00,
1.36215849e+00, 1.36215849e+00, 1.36215849e+00, 1.36215849e+00,
1.36145357e+00, 1.36145357e+00, 1.36145357e+00, 1.36145357e+00,
1.36027737e+00, 1.36027737e+00, 1.36027737e+00, 1.36027737e+00,
1.35985957e+00, 1.35985957e+00, 1.35985957e+00, 1.35985957e+00,
1.35950146e+00, 1.35950146e+00, 1.35950146e+00, 1.35950146e+00,
1.35794105e+00, 1.35794105e+00, 1.35794105e+00, 1.35794105e+00,
1.35302786e+00, 1.35302786e+00, 1.35302786e+00, 1.35302786e+00,
1.32948395e+00, 1.32948395e+00, 1.32948395e+00, 1.32948395e+00,
1.22656804e+00, 1.22656804e+00, 1.22656804e+00, 1.22656804e+00,
8.53469650e-01, 8.53469650e-01, 8.53469650e-01, 8.53469650e-01,
2.22591142e-01, 2.22591142e-01, 2.22591142e-01, 2.22591142e-01,
2.20888528e-02, 2.20888528e-02, 2.20888528e-02, 2.20888528e-02,
1.71922272e-03, 1.71922272e-03, 1.71922272e-03, 1.71922272e-03,
1.30417470e-04, 1.30417470e-04, 1.30417470e-04, 1.30417470e-04,
9.86300289e-06, 9.86300289e-06, 9.86300289e-06, 9.86300289e-06,
7.43754125e-07, 7.43754125e-07, 7.43754125e-07, 7.43754125e-07,
5.59602796e-08, 5.59602796e-08, 5.59602796e-08, 5.59602796e-08,
4.20149858e-09, 4.20149858e-09, 4.20149858e-09, 4.20149858e-09,
3.14719729e-10, 3.14719729e-10, 3.14719729e-10, 3.14719729e-10,
2.35165721e-11, 2.35165721e-11, 2.35165721e-11, 2.35165721e-11,
1.75282978e-12, 1.75282978e-12, 1.75282978e-12, 1.75282978e-12,
1.30293969e-13, 1.30293969e-13, 1.30293969e-13, 1.30293969e-13,
9.55439487e-15, 9.55439487e-15, 9.55439487e-15, 9.55439487e-15,
6.56847280e-16, 6.56847280e-16, 6.56847280e-16, 6.56847280e-16,
3.41706842e-17, 3.41706842e-17, 3.41706842e-17, 3.41706842e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999964, 0.99999964, 0.99999964, 0.99999964, 0.99999792,
0.99999792, 0.99999792, 0.99999792, 0.99998901, 0.99998901,
0.99998901, 0.99998901, 0.9999473 , 0.9999473 , 0.9999473 ,
0.9999473 , 0.99977243, 0.99977243, 0.99977243, 0.99977243,
0.99912413, 0.99912413, 0.99912413, 0.99912413, 0.99703423,
0.99703423, 0.99703423, 0.99703423, 0.99128845, 0.99128845,
0.99128845, 0.99128845, 0.97807702, 0.97807702, 0.97807702,
0.97807702, 0.95301417, 0.95301417, 0.95301417, 0.95301417,
0.91378216, 0.91378216, 0.91378216, 0.91378216, 0.86213936,
0.86213936, 0.86213936, 0.86213936, 0.80277216, 0.80277216,
0.80277216, 0.80277216, 0.7408459 , 0.7408459 , 0.7408459 ,
0.7408459 , 0.68230078, 0.68230078, 0.68230078, 0.68230078,
0.62855672, 0.62855672, 0.62855672, 0.62855672, 0.5764662 ,
0.5764662 , 0.5764662 , 0.5764662 , 0.53234585, 0.53234585,
0.53234585, 0.53234585, 0.49942183, 0.49942183, 0.49942183,
0.49942183, 0.47983443, 0.47983443, 0.47983443, 0.47983443,
0.47100923, 0.47100923, 0.47100923, 0.47100923, 0.46787142,
0.46787142, 0.46787142, 0.46787142, 0.46682295, 0.46682295,
0.46682295, 0.46682295, 0.46618014, 0.46618014, 0.46618014,
0.46618014, 0.46556219, 0.46556219, 0.46556219, 0.46556219,
0.46506118, 0.46506118, 0.46506118, 0.46506118, 0.46489673,
0.46489673, 0.46489673, 0.46489673, 0.46500213, 0.46500213,
0.46500213, 0.46500213, 0.46532374, 0.46532374, 0.46532374,
0.46532374, 0.46561466, 0.46561466, 0.46561466, 0.46561466,
0.46573189, 0.46573189, 0.46573189, 0.46573189, 0.46592128,
0.46592128, 0.46592128, 0.46592128, 0.46578294, 0.46578294,
0.46578294, 0.46578294, 0.46549998, 0.46549998, 0.46549998,
0.46549998, 0.46541691, 0.46541691, 0.46541691, 0.46541691,
0.46523714, 0.46523714, 0.46523714, 0.46523714, 0.46502176,
0.46502176, 0.46502176, 0.46502176, 0.46475263, 0.46475263,
0.46475263, 0.46475263, 0.46237713, 0.46237713, 0.46237713,
0.46237713, 0.45142205, 0.45142205, 0.45142205, 0.45142205,
0.40654284, 0.40654284, 0.40654284, 0.40654284, 0.27563326,
0.27563326, 0.27563326, 0.27563326, 0.13295938, 0.13295938,
0.13295938, 0.13295938, 0.1029486 , 0.1029486 , 0.1029486 ,
0.1029486 , 0.10022754, 0.10022754, 0.10022754, 0.10022754,
0.10001725, 0.10001725, 0.10001725, 0.10001725, 0.1000013 ,
0.1000013 , 0.1000013 , 0.1000013 , 0.1000001 , 0.1000001 ,
0.1000001 , 0.1000001 , 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999962, 0.99999962, 0.99999962, 0.99999962, 0.99999791,
0.99999791, 0.99999791, 0.99999791, 0.99998931, 0.99998931,
0.99998931, 0.99998931, 0.99995038, 0.99995038, 0.99995038,
0.99995038, 0.99979255, 0.99979255, 0.99979255, 0.99979255,
0.99922731, 0.99922731, 0.99922731, 0.99922731, 0.99746821,
0.99746821, 0.99746821, 0.99746821, 0.99279908, 0.99279908,
0.99279908, 0.99279908, 0.98241481, 0.98241481, 0.98241481,
0.98241481, 0.96326558, 0.96326558, 0.96326558, 0.96326558,
0.93387982, 0.93387982, 0.93387982, 0.93387982, 0.89553728,
0.89553728, 0.89553728, 0.89553728, 0.85134817, 0.85134817,
0.85134817, 0.85134817, 0.80495162, 0.80495162, 0.80495162,
0.80495162, 0.76058273, 0.76058273, 0.76058273, 0.76058273,
0.71835604, 0.71835604, 0.71835604, 0.71835604, 0.67514463,
0.67514463, 0.67514463, 0.67514463, 0.63729119, 0.63729119,
0.63729119, 0.63729119, 0.61162641, 0.61162641, 0.61162641,
0.61162641, 0.59582875, 0.59582875, 0.59582875, 0.59582875,
0.58543448, 0.58543448, 0.58543448, 0.58543448, 0.57967261,
0.57967261, 0.57967261, 0.57967261, 0.57782428, 0.57782428,
0.57782428, 0.57782428, 0.57777383, 0.57777383, 0.57777383,
0.57777383, 0.57870314, 0.57870314, 0.57870314, 0.57870314,
0.58056833, 0.58056833, 0.58056833, 0.58056833, 0.58087553,
0.58087553, 0.58087553, 0.58087553, 0.57939156, 0.57939156,
0.57939156, 0.57939156, 0.57325442, 0.57325442, 0.57325442,
0.57325442, 0.55803941, 0.55803941, 0.55803941, 0.55803941,
0.52921033, 0.52921033, 0.52921033, 0.52921033, 0.4837152 ,
0.4837152 , 0.4837152 , 0.4837152 , 0.42371397, 0.42371397,
0.42371397, 0.42371397, 0.376212 , 0.376212 , 0.376212 ,
0.376212 , 0.34965307, 0.34965307, 0.34965307, 0.34965307,
0.33690123, 0.33690123, 0.33690123, 0.33690123, 0.33265682,
0.33265682, 0.33265682, 0.33265682, 0.33246875, 0.33246875,
0.33246875, 0.33246875, 0.33332651, 0.33332651, 0.33332651,
0.33332651, 0.33357826, 0.33357826, 0.33357826, 0.33357826,
0.32736337, 0.32736337, 0.32736337, 0.32736337, 0.29324759,
0.29324759, 0.29324759, 0.29324759, 0.20348887, 0.20348887,
0.20348887, 0.20348887, 0.13723772, 0.13723772, 0.13723772,
0.13723772, 0.12613944, 0.12613944, 0.12613944, 0.12613944,
0.12509047, 0.12509047, 0.12509047, 0.12509047, 0.12500693,
0.12500693, 0.12500693, 0.12500693, 0.12500053, 0.12500053,
0.12500053, 0.12500053, 0.12500004, 0.12500004, 0.12500004,
0.12500004, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
7.50000073e-01, 7.50000073e-01, 7.50000073e-01, 7.50000073e-01,
7.50000444e-01, 7.50000444e-01, 7.50000444e-01, 7.50000444e-01,
7.50002476e-01, 7.50002476e-01, 7.50002476e-01, 7.50002476e-01,
7.50012648e-01, 7.50012648e-01, 7.50012648e-01, 7.50012648e-01,
7.50058710e-01, 7.50058710e-01, 7.50058710e-01, 7.50058710e-01,
7.50245463e-01, 7.50245463e-01, 7.50245463e-01, 7.50245463e-01,
7.50914434e-01, 7.50914434e-01, 7.50914434e-01, 7.50914434e-01,
7.52998113e-01, 7.52998113e-01, 7.52998113e-01, 7.52998113e-01,
7.58543146e-01, 7.58543146e-01, 7.58543146e-01, 7.58543146e-01,
7.70955766e-01, 7.70955766e-01, 7.70955766e-01, 7.70955766e-01,
7.94146625e-01, 7.94146625e-01, 7.94146625e-01, 7.94146625e-01,
8.30511067e-01, 8.30511067e-01, 8.30511067e-01, 8.30511067e-01,
8.79411509e-01, 8.79411509e-01, 8.79411509e-01, 8.79411509e-01,
9.37934877e-01, 9.37934877e-01, 9.37934877e-01, 9.37934877e-01,
1.00124282e+00, 1.00124282e+00, 1.00124282e+00, 1.00124282e+00,
1.06525741e+00, 1.06525741e+00, 1.06525741e+00, 1.06525741e+00,
1.12978836e+00, 1.12978836e+00, 1.12978836e+00, 1.12978836e+00,
1.19554873e+00, 1.19554873e+00, 1.19554873e+00, 1.19554873e+00,
1.25655219e+00, 1.25655219e+00, 1.25655219e+00, 1.25655219e+00,
1.30588997e+00, 1.30588997e+00, 1.30588997e+00, 1.30588997e+00,
1.33725902e+00, 1.33725902e+00, 1.33725902e+00, 1.33725902e+00,
1.35200167e+00, 1.35200167e+00, 1.35200167e+00, 1.35200167e+00,
1.35740137e+00, 1.35740137e+00, 1.35740137e+00, 1.35740137e+00,
1.35945680e+00, 1.35945680e+00, 1.35945680e+00, 1.35945680e+00,
1.36098916e+00, 1.36098916e+00, 1.36098916e+00, 1.36098916e+00,
1.36225665e+00, 1.36225665e+00, 1.36225665e+00, 1.36225665e+00,
1.36284870e+00, 1.36284870e+00, 1.36284870e+00, 1.36284870e+00,
1.36323230e+00, 1.36323230e+00, 1.36323230e+00, 1.36323230e+00,
1.36337379e+00, 1.36337379e+00, 1.36337379e+00, 1.36337379e+00,
1.36322082e+00, 1.36322082e+00, 1.36322082e+00, 1.36322082e+00,
1.36321667e+00, 1.36321667e+00, 1.36321667e+00, 1.36321667e+00,
1.36320442e+00, 1.36320442e+00, 1.36320442e+00, 1.36320442e+00,
1.36283306e+00, 1.36283306e+00, 1.36283306e+00, 1.36283306e+00,
1.36246959e+00, 1.36246959e+00, 1.36246959e+00, 1.36246959e+00,
1.36197500e+00, 1.36197500e+00, 1.36197500e+00, 1.36197500e+00,
1.36085259e+00, 1.36085259e+00, 1.36085259e+00, 1.36085259e+00,
1.36028892e+00, 1.36028892e+00, 1.36028892e+00, 1.36028892e+00,
1.35984919e+00, 1.35984919e+00, 1.35984919e+00, 1.35984919e+00,
1.35883540e+00, 1.35883540e+00, 1.35883540e+00, 1.35883540e+00,
1.35714143e+00, 1.35714143e+00, 1.35714143e+00, 1.35714143e+00,
1.34894991e+00, 1.34894991e+00, 1.34894991e+00, 1.34894991e+00,
1.31073945e+00, 1.31073945e+00, 1.31073945e+00, 1.31073945e+00,
1.15250494e+00, 1.15250494e+00, 1.15250494e+00, 1.15250494e+00,
6.53937892e-01, 6.53937892e-01, 6.53937892e-01, 6.53937892e-01,
1.15935794e-01, 1.15935794e-01, 1.15935794e-01, 1.15935794e-01,
1.01224064e-02, 1.01224064e-02, 1.01224064e-02, 1.01224064e-02,
7.75605173e-04, 7.75605173e-04, 7.75605173e-04, 7.75605173e-04,
5.88223629e-05, 5.88223629e-05, 5.88223629e-05, 5.88223629e-05,
4.44985365e-06, 4.44985365e-06, 4.44985365e-06, 4.44985365e-06,
3.35889504e-07, 3.35889504e-07, 3.35889504e-07, 3.35889504e-07,
2.52955860e-08, 2.52955860e-08, 2.52955860e-08, 2.52955860e-08,
1.90071378e-09, 1.90071378e-09, 1.90071378e-09, 1.90071378e-09,
1.42497338e-10, 1.42497338e-10, 1.42497338e-10, 1.42497338e-10,
1.06576856e-11, 1.06576856e-11, 1.06576856e-11, 1.06576856e-11,
7.95109096e-13, 7.95109096e-13, 7.95109096e-13, 7.95109096e-13,
5.90704393e-14, 5.90704393e-14, 5.90704393e-14, 5.90704393e-14,
4.31701064e-15, 4.31701064e-15, 4.31701064e-15, 4.31701064e-15,
3.15002440e-16, 3.15002440e-16, 3.15002440e-16, 3.15002440e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999947, 0.99999947, 0.99999947, 0.99999947, 0.99999707,
0.99999707, 0.99999707, 0.99999707, 0.99998504, 0.99998504,
0.99998504, 0.99998504, 0.99993054, 0.99993054, 0.99993054,
0.99993054, 0.9997096 , 0.9997096 , 0.9997096 , 0.9997096 ,
0.99891859, 0.99891859, 0.99891859, 0.99891859, 0.99645866,
0.99645866, 0.99645866, 0.99645866, 0.98994093, 0.98994093,
0.98994093, 0.98994093, 0.97549864, 0.97549864, 0.97549864,
0.97549864, 0.94904306, 0.94904306, 0.94904306, 0.94904306,
0.90886853, 0.90886853, 0.90886853, 0.90886853, 0.85720188,
0.85720188, 0.85720188, 0.85720188, 0.79869209, 0.79869209,
0.79869209, 0.79869209, 0.73826586, 0.73826586, 0.73826586,
0.73826586, 0.68131655, 0.68131655, 0.68131655, 0.68131655,
0.62890962, 0.62890962, 0.62890962, 0.62890962, 0.57797733,
0.57797733, 0.57797733, 0.57797733, 0.53444855, 0.53444855,
0.53444855, 0.53444855, 0.5013871 , 0.5013871 , 0.5013871 ,
0.5013871 , 0.48115492, 0.48115492, 0.48115492, 0.48115492,
0.47166155, 0.47166155, 0.47166155, 0.47166155, 0.468095 ,
0.468095 , 0.468095 , 0.468095 , 0.46684318, 0.46684318,
0.46684318, 0.46684318, 0.46616211, 0.46616211, 0.46616211,
0.46616211, 0.46561043, 0.46561043, 0.46561043, 0.46561043,
0.46512576, 0.46512576, 0.46512576, 0.46512576, 0.46487872,
0.46487872, 0.46487872, 0.46487872, 0.46492772, 0.46492772,
0.46492772, 0.46492772, 0.4651844 , 0.4651844 , 0.4651844 ,
0.4651844 , 0.4655066 , 0.4655066 , 0.4655066 , 0.4655066 ,
0.46569201, 0.46569201, 0.46569201, 0.46569201, 0.46598138,
0.46598138, 0.46598138, 0.46598138, 0.46594011, 0.46594011,
0.46594011, 0.46594011, 0.4657527 , 0.4657527 , 0.4657527 ,
0.4657527 , 0.4656862 , 0.4656862 , 0.4656862 , 0.4656862 ,
0.46543641, 0.46543641, 0.46543641, 0.46543641, 0.46518651,
0.46518651, 0.46518651, 0.46518651, 0.46517111, 0.46517111,
0.46517111, 0.46517111, 0.46429022, 0.46429022, 0.46429022,
0.46429022, 0.46039234, 0.46039234, 0.46039234, 0.46039234,
0.44325735, 0.44325735, 0.44325735, 0.44325735, 0.37715612,
0.37715612, 0.37715612, 0.37715612, 0.22068217, 0.22068217,
0.22068217, 0.22068217, 0.11627314, 0.11627314, 0.11627314,
0.11627314, 0.10134388, 0.10134388, 0.10134388, 0.10134388,
0.10010262, 0.10010262, 0.10010262, 0.10010262, 0.10000778,
0.10000778, 0.10000778, 0.10000778, 0.10000059, 0.10000059,
0.10000059, 0.10000059, 0.10000004, 0.10000004, 0.10000004,
0.10000004, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999946, 0.99999946, 0.99999946, 0.99999946, 0.99999709,
0.99999709, 0.99999709, 0.99999709, 0.9999856 , 0.9999856 ,
0.9999856 , 0.9999856 , 0.9999352 , 0.9999352 , 0.9999352 ,
0.9999352 , 0.99973758, 0.99973758, 0.99973758, 0.99973758,
0.99905358, 0.99905358, 0.99905358, 0.99905358, 0.99699862,
0.99699862, 0.99699862, 0.99699862, 0.99173748, 0.99173748,
0.99173748, 0.99173748, 0.98044778, 0.98044778, 0.98044778,
0.98044778, 0.96031352, 0.96031352, 0.96031352, 0.96031352,
0.93028712, 0.93028712, 0.93028712, 0.93028712, 0.89194825,
0.89194825, 0.89194825, 0.89194825, 0.84837482, 0.84837482,
0.84837482, 0.84837482, 0.80307475, 0.80307475, 0.80307475,
0.80307475, 0.75973657, 0.75973657, 0.75973657, 0.75973657,
0.71864049, 0.71864049, 0.71864049, 0.71864049, 0.6769383 ,
0.6769383 , 0.6769383 , 0.6769383 , 0.63889909, 0.63889909,
0.63889909, 0.63889909, 0.61229773, 0.61229773, 0.61229773,
0.61229773, 0.59674677, 0.59674677, 0.59674677, 0.59674677,
0.58694413, 0.58694413, 0.58694413, 0.58694413, 0.58077655,
0.58077655, 0.58077655, 0.58077655, 0.57805601, 0.57805601,
0.57805601, 0.57805601, 0.57755678, 0.57755678, 0.57755678,
0.57755678, 0.57803073, 0.57803073, 0.57803073, 0.57803073,
0.57971225, 0.57971225, 0.57971225, 0.57971225, 0.5806943 ,
0.5806943 , 0.5806943 , 0.5806943 , 0.58009671, 0.58009671,
0.58009671, 0.58009671, 0.57636073, 0.57636073, 0.57636073,
0.57636073, 0.5655678 , 0.5655678 , 0.5655678 , 0.5655678 ,
0.54322304, 0.54322304, 0.54322304, 0.54322304, 0.50551025,
0.50551025, 0.50551025, 0.50551025, 0.45076947, 0.45076947,
0.45076947, 0.45076947, 0.39435096, 0.39435096, 0.39435096,
0.39435096, 0.3597402 , 0.3597402 , 0.3597402 , 0.3597402 ,
0.34154439, 0.34154439, 0.34154439, 0.34154439, 0.33413329,
0.33413329, 0.33413329, 0.33413329, 0.33272707, 0.33272707,
0.33272707, 0.33272707, 0.33306897, 0.33306897, 0.33306897,
0.33306897, 0.33417837, 0.33417837, 0.33417837, 0.33417837,
0.33342156, 0.33342156, 0.33342156, 0.33342156, 0.32134726,
0.32134726, 0.32134726, 0.32134726, 0.27151457, 0.27151457,
0.27151457, 0.27151457, 0.17391339, 0.17391339, 0.17391339,
0.17391339, 0.131043 , 0.131043 , 0.131043 , 0.131043 ,
0.12552415, 0.12552415, 0.12552415, 0.12552415, 0.12504101,
0.12504101, 0.12504101, 0.12504101, 0.12500313, 0.12500313,
0.12500313, 0.12500313, 0.12500024, 0.12500024, 0.12500024,
0.12500024, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000017e-01, 7.50000017e-01, 7.50000017e-01, 7.50000017e-01,
7.50000108e-01, 7.50000108e-01, 7.50000108e-01, 7.50000108e-01,
7.50000636e-01, 7.50000636e-01, 7.50000636e-01, 7.50000636e-01,
7.50003442e-01, 7.50003442e-01, 7.50003442e-01, 7.50003442e-01,
7.50017043e-01, 7.50017043e-01, 7.50017043e-01, 7.50017043e-01,
7.50076668e-01, 7.50076668e-01, 7.50076668e-01, 7.50076668e-01,
7.50310517e-01, 7.50310517e-01, 7.50310517e-01, 7.50310517e-01,
7.51120114e-01, 7.51120114e-01, 7.51120114e-01, 7.51120114e-01,
7.53554867e-01, 7.53554867e-01, 7.53554867e-01, 7.53554867e-01,
7.59807118e-01, 7.59807118e-01, 7.59807118e-01, 7.59807118e-01,
7.73320214e-01, 7.73320214e-01, 7.73320214e-01, 7.73320214e-01,
7.97757265e-01, 7.97757265e-01, 7.97757265e-01, 7.97757265e-01,
8.35020634e-01, 8.35020634e-01, 8.35020634e-01, 8.35020634e-01,
8.84067394e-01, 8.84067394e-01, 8.84067394e-01, 8.84067394e-01,
9.41941415e-01, 9.41941415e-01, 9.41941415e-01, 9.41941415e-01,
1.00384428e+00, 1.00384428e+00, 1.00384428e+00, 1.00384428e+00,
1.06633018e+00, 1.06633018e+00, 1.06633018e+00, 1.06633018e+00,
1.12932515e+00, 1.12932515e+00, 1.12932515e+00, 1.12932515e+00,
1.19354968e+00, 1.19354968e+00, 1.19354968e+00, 1.19354968e+00,
1.25356360e+00, 1.25356360e+00, 1.25356360e+00, 1.25356360e+00,
1.30291531e+00, 1.30291531e+00, 1.30291531e+00, 1.30291531e+00,
1.33529031e+00, 1.33529031e+00, 1.33529031e+00, 1.33529031e+00,
1.35115947e+00, 1.35115947e+00, 1.35115947e+00, 1.35115947e+00,
1.35713174e+00, 1.35713174e+00, 1.35713174e+00, 1.35713174e+00,
1.35925965e+00, 1.35925965e+00, 1.35925965e+00, 1.35925965e+00,
1.36072477e+00, 1.36072477e+00, 1.36072477e+00, 1.36072477e+00,
1.36208351e+00, 1.36208351e+00, 1.36208351e+00, 1.36208351e+00,
1.36283213e+00, 1.36283213e+00, 1.36283213e+00, 1.36283213e+00,
1.36320426e+00, 1.36320426e+00, 1.36320426e+00, 1.36320426e+00,
1.36331504e+00, 1.36331504e+00, 1.36331504e+00, 1.36331504e+00,
1.36312690e+00, 1.36312690e+00, 1.36312690e+00, 1.36312690e+00,
1.36305072e+00, 1.36305072e+00, 1.36305072e+00, 1.36305072e+00,
1.36308238e+00, 1.36308238e+00, 1.36308238e+00, 1.36308238e+00,
1.36286521e+00, 1.36286521e+00, 1.36286521e+00, 1.36286521e+00,
1.36262787e+00, 1.36262787e+00, 1.36262787e+00, 1.36262787e+00,
1.36231759e+00, 1.36231759e+00, 1.36231759e+00, 1.36231759e+00,
1.36138818e+00, 1.36138818e+00, 1.36138818e+00, 1.36138818e+00,
1.36084001e+00, 1.36084001e+00, 1.36084001e+00, 1.36084001e+00,
1.36024205e+00, 1.36024205e+00, 1.36024205e+00, 1.36024205e+00,
1.35931961e+00, 1.35931961e+00, 1.35931961e+00, 1.35931961e+00,
1.35862778e+00, 1.35862778e+00, 1.35862778e+00, 1.35862778e+00,
1.35576681e+00, 1.35576681e+00, 1.35576681e+00, 1.35576681e+00,
1.34188087e+00, 1.34188087e+00, 1.34188087e+00, 1.34188087e+00,
1.28237194e+00, 1.28237194e+00, 1.28237194e+00, 1.28237194e+00,
1.04403836e+00, 1.04403836e+00, 1.04403836e+00, 1.04403836e+00,
4.40023066e-01, 4.40023066e-01, 4.40023066e-01, 4.40023066e-01,
5.63022869e-02, 5.63022869e-02, 5.63022869e-02, 5.63022869e-02,
4.58333546e-03, 4.58333546e-03, 4.58333546e-03, 4.58333546e-03,
3.49968099e-04, 3.49968099e-04, 3.49968099e-04, 3.49968099e-04,
2.65258651e-05, 2.65258651e-05, 2.65258651e-05, 2.65258651e-05,
2.00742922e-06, 2.00742922e-06, 2.00742922e-06, 2.00742922e-06,
1.51640690e-07, 1.51640690e-07, 1.51640690e-07, 1.51640690e-07,
1.14299111e-08, 1.14299111e-08, 1.14299111e-08, 1.14299111e-08,
8.59588993e-10, 8.59588993e-10, 8.59588993e-10, 8.59588993e-10,
6.44987274e-11, 6.44987274e-11, 6.44987274e-11, 6.44987274e-11,
4.82824703e-12, 4.82824703e-12, 4.82824703e-12, 4.82824703e-12,
3.60377106e-13, 3.60377106e-13, 3.60377106e-13, 3.60377106e-13,
2.67995136e-14, 2.67995136e-14, 2.67995136e-14, 2.67995136e-14,
1.97682800e-15, 1.97682800e-15, 1.97682800e-15, 1.97682800e-15,
1.51415324e-16, 1.51415324e-16, 1.51415324e-16, 1.51415324e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999925, 0.99999925, 0.99999925, 0.99999925, 0.99999593,
0.99999593, 0.99999593, 0.99999593, 0.99997983, 0.99997983,
0.99997983, 0.99997983, 0.99990929, 0.99990929, 0.99990929,
0.99990929, 0.99963266, 0.99963266, 0.99963266, 0.99963266,
0.99867551, 0.99867551, 0.99867551, 0.99867551, 0.99580237,
0.99580237, 0.99580237, 0.99580237, 0.98846096, 0.98846096,
0.98846096, 0.98846096, 0.97276987, 0.97276987, 0.97276987,
0.97276987, 0.94498179, 0.94498179, 0.94498179, 0.94498179,
0.90398561, 0.90398561, 0.90398561, 0.90398561, 0.85239877,
0.85239877, 0.85239877, 0.85239877, 0.79478009, 0.79478009,
0.79478009, 0.79478009, 0.73582397, 0.73582397, 0.73582397,
0.73582397, 0.68038471, 0.68038471, 0.68038471, 0.68038471,
0.62924921, 0.62924921, 0.62924921, 0.62924921, 0.57942336,
0.57942336, 0.57942336, 0.57942336, 0.53648813, 0.53648813,
0.53648813, 0.53648813, 0.50332705, 0.50332705, 0.50332705,
0.50332705, 0.48248881, 0.48248881, 0.48248881, 0.48248881,
0.47236439, 0.47236439, 0.47236439, 0.47236439, 0.46839479,
0.46839479, 0.46839479, 0.46839479, 0.46692446, 0.46692446,
0.46692446, 0.46692446, 0.46614238, 0.46614238, 0.46614238,
0.46614238, 0.46561056, 0.46561056, 0.46561056, 0.46561056,
0.4651818 , 0.4651818 , 0.4651818 , 0.4651818 , 0.46489012,
0.46489012, 0.46489012, 0.46489012, 0.46489108, 0.46489108,
0.46489108, 0.46489108, 0.4650843 , 0.4650843 , 0.4650843 ,
0.4650843 , 0.46537787, 0.46537787, 0.46537787, 0.46537787,
0.46560331, 0.46560331, 0.46560331, 0.46560331, 0.46596369,
0.46596369, 0.46596369, 0.46596369, 0.46601669, 0.46601669,
0.46601669, 0.46601669, 0.46592137, 0.46592137, 0.46592137,
0.46592137, 0.46593666, 0.46593666, 0.46593666, 0.46593666,
0.46569284, 0.46569284, 0.46569284, 0.46569284, 0.46537354,
0.46537354, 0.46537354, 0.46537354, 0.46539853, 0.46539853,
0.46539853, 0.46539853, 0.46498145, 0.46498145, 0.46498145,
0.46498145, 0.46356472, 0.46356472, 0.46356472, 0.46356472,
0.45748027, 0.45748027, 0.45748027, 0.45748027, 0.43042442,
0.43042442, 0.43042442, 0.43042442, 0.33773594, 0.33773594,
0.33773594, 0.33773594, 0.1723474 , 0.1723474 , 0.1723474 ,
0.1723474 , 0.10764844, 0.10764844, 0.10764844, 0.10764844,
0.10060719, 0.10060719, 0.10060719, 0.10060719, 0.1000463 ,
0.1000463 , 0.1000463 , 0.1000463 , 0.10000351, 0.10000351,
0.10000351, 0.10000351, 0.10000027, 0.10000027, 0.10000027,
0.10000027, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}], 'minmod_hllc': [{'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999993, 0.99999993, 0.99999993, 0.99999993,
0.99999956, 0.99999956, 0.99999956, 0.99999956, 0.99999758,
0.99999758, 0.99999758, 0.99999758, 0.99998782, 0.99998782,
0.99998782, 0.99998782, 0.99994422, 0.99994422, 0.99994422,
0.99994422, 0.99977003, 0.99977003, 0.99977003, 0.99977003,
0.99915542, 0.99915542, 0.99915542, 0.99915542, 0.99727188,
0.99727188, 0.99727188, 0.99727188, 0.99234954, 0.99234954,
0.99234954, 0.99234954, 0.98156538, 0.98156538, 0.98156538,
0.98156538, 0.96194746, 0.96194746, 0.96194746, 0.96194746,
0.93218276, 0.93218276, 0.93218276, 0.93218276, 0.8936786 ,
0.8936786 , 0.8936786 , 0.8936786 , 0.84954127, 0.84954127,
0.84954127, 0.84954127, 0.80317128, 0.80317128, 0.80317128,
0.80317128, 0.75830147, 0.75830147, 0.75830147, 0.75830147,
0.71601042, 0.71601042, 0.71601042, 0.71601042, 0.67327991,
0.67327991, 0.67327991, 0.67327991, 0.63607874, 0.63607874,
0.63607874, 0.63607874, 0.61091745, 0.61091745, 0.61091745,
0.61091745, 0.59673414, 0.59673414, 0.59673414, 0.59673414,
0.58738935, 0.58738935, 0.58738935, 0.58738935, 0.58067077,
0.58067077, 0.58067077, 0.58067077, 0.57738951, 0.57738951,
0.57738951, 0.57738951, 0.57684123, 0.57684123, 0.57684123,
0.57684123, 0.57741731, 0.57741731, 0.57741731, 0.57741731,
0.57933199, 0.57933199, 0.57933199, 0.57933199, 0.5807667 ,
0.5807667 , 0.5807667 , 0.5807667 , 0.58038131, 0.58038131,
0.58038131, 0.58038131, 0.57694171, 0.57694171, 0.57694171,
0.57694171, 0.56652927, 0.56652927, 0.56652927, 0.56652927,
0.54427792, 0.54427792, 0.54427792, 0.54427792, 0.50574245,
0.50574245, 0.50574245, 0.50574245, 0.44917162, 0.44917162,
0.44917162, 0.44917162, 0.39267489, 0.39267489, 0.39267489,
0.39267489, 0.35904482, 0.35904482, 0.35904482, 0.35904482,
0.34183176, 0.34183176, 0.34183176, 0.34183176, 0.33519947,
0.33519947, 0.33519947, 0.33519947, 0.33392488, 0.33392488,
0.33392488, 0.33392488, 0.33443666, 0.33443666, 0.33443666,
0.33443666, 0.33522049, 0.33522049, 0.33522049, 0.33522049,
0.33404885, 0.33404885, 0.33404885, 0.33404885, 0.32180389,
0.32180389, 0.32180389, 0.32180389, 0.27211543, 0.27211543,
0.27211543, 0.27211543, 0.17353096, 0.17353096, 0.17353096,
0.17353096, 0.13090219, 0.13090219, 0.13090219, 0.13090219,
0.12548944, 0.12548944, 0.12548944, 0.12548944, 0.12503725,
0.12503725, 0.12503725, 0.12503725, 0.12500281, 0.12500281,
0.12500281, 0.12500281, 0.12500021, 0.12500021, 0.12500021,
0.12500021, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
7.50000087e-01, 7.50000087e-01, 7.50000087e-01, 7.50000087e-01,
7.50000519e-01, 7.50000519e-01, 7.50000519e-01, 7.50000519e-01,
7.50002860e-01, 7.50002860e-01, 7.50002860e-01, 7.50002860e-01,
7.50014413e-01, 7.50014413e-01, 7.50014413e-01, 7.50014413e-01,
7.50065997e-01, 7.50065997e-01, 7.50065997e-01, 7.50065997e-01,
7.50272133e-01, 7.50272133e-01, 7.50272133e-01, 7.50272133e-01,
7.50999658e-01, 7.50999658e-01, 7.50999658e-01, 7.50999658e-01,
7.53231583e-01, 7.53231583e-01, 7.53231583e-01, 7.53231583e-01,
7.59081507e-01, 7.59081507e-01, 7.59081507e-01, 7.59081507e-01,
7.71986731e-01, 7.71986731e-01, 7.71986731e-01, 7.71986731e-01,
7.95781524e-01, 7.95781524e-01, 7.95781524e-01, 7.95781524e-01,
8.32680719e-01, 8.32680719e-01, 8.32680719e-01, 8.32680719e-01,
8.81876321e-01, 8.81876321e-01, 8.81876321e-01, 8.81876321e-01,
9.40397529e-01, 9.40397529e-01, 9.40397529e-01, 9.40397529e-01,
1.00383705e+00, 1.00383705e+00, 1.00383705e+00, 1.00383705e+00,
1.06846436e+00, 1.06846436e+00, 1.06846436e+00, 1.06846436e+00,
1.13364194e+00, 1.13364194e+00, 1.13364194e+00, 1.13364194e+00,
1.19966388e+00, 1.19966388e+00, 1.19966388e+00, 1.19966388e+00,
1.25823577e+00, 1.25823577e+00, 1.25823577e+00, 1.25823577e+00,
1.30460285e+00, 1.30460285e+00, 1.30460285e+00, 1.30460285e+00,
1.33510884e+00, 1.33510884e+00, 1.33510884e+00, 1.33510884e+00,
1.35096608e+00, 1.35096608e+00, 1.35096608e+00, 1.35096608e+00,
1.35752911e+00, 1.35752911e+00, 1.35752911e+00, 1.35752911e+00,
1.36008887e+00, 1.36008887e+00, 1.36008887e+00, 1.36008887e+00,
1.36168158e+00, 1.36168158e+00, 1.36168158e+00, 1.36168158e+00,
1.36273536e+00, 1.36273536e+00, 1.36273536e+00, 1.36273536e+00,
1.36310325e+00, 1.36310325e+00, 1.36310325e+00, 1.36310325e+00,
1.36308266e+00, 1.36308266e+00, 1.36308266e+00, 1.36308266e+00,
1.36292459e+00, 1.36292459e+00, 1.36292459e+00, 1.36292459e+00,
1.36276796e+00, 1.36276796e+00, 1.36276796e+00, 1.36276796e+00,
1.36261137e+00, 1.36261137e+00, 1.36261137e+00, 1.36261137e+00,
1.36242480e+00, 1.36242480e+00, 1.36242480e+00, 1.36242480e+00,
1.36240105e+00, 1.36240105e+00, 1.36240105e+00, 1.36240105e+00,
1.36236978e+00, 1.36236978e+00, 1.36236978e+00, 1.36236978e+00,
1.36206049e+00, 1.36206049e+00, 1.36206049e+00, 1.36206049e+00,
1.36120137e+00, 1.36120137e+00, 1.36120137e+00, 1.36120137e+00,
1.36080070e+00, 1.36080070e+00, 1.36080070e+00, 1.36080070e+00,
1.36024607e+00, 1.36024607e+00, 1.36024607e+00, 1.36024607e+00,
1.35960979e+00, 1.35960979e+00, 1.35960979e+00, 1.35960979e+00,
1.35845878e+00, 1.35845878e+00, 1.35845878e+00, 1.35845878e+00,
1.35582525e+00, 1.35582525e+00, 1.35582525e+00, 1.35582525e+00,
1.34268743e+00, 1.34268743e+00, 1.34268743e+00, 1.34268743e+00,
1.28409176e+00, 1.28409176e+00, 1.28409176e+00, 1.28409176e+00,
1.04736551e+00, 1.04736551e+00, 1.04736551e+00, 1.04736551e+00,
4.29328817e-01, 4.29328817e-01, 4.29328817e-01, 4.29328817e-01,
5.19371545e-02, 5.19371545e-02, 5.19371545e-02, 5.19371545e-02,
4.15794051e-03, 4.15794051e-03, 4.15794051e-03, 4.15794051e-03,
3.15435852e-04, 3.15435852e-04, 3.15435852e-04, 3.15435852e-04,
2.37540443e-05, 2.37540443e-05, 2.37540443e-05, 2.37540443e-05,
1.78468394e-06, 1.78468394e-06, 1.78468394e-06, 1.78468394e-06,
1.33840550e-07, 1.33840550e-07, 1.33840550e-07, 1.33840550e-07,
1.00204015e-08, 1.00204015e-08, 1.00204015e-08, 1.00204015e-08,
7.48783638e-10, 7.48783638e-10, 7.48783638e-10, 7.48783638e-10,
5.58269795e-11, 5.58269795e-11, 5.58269795e-11, 5.58269795e-11,
4.15162222e-12, 4.15162222e-12, 4.15162222e-12, 4.15162222e-12,
3.07872093e-13, 3.07872093e-13, 3.07872093e-13, 3.07872093e-13,
2.27463383e-14, 2.27463383e-14, 2.27463383e-14, 2.27463383e-14,
1.62261633e-15, 1.62261633e-15, 1.62261633e-15, 1.62261633e-15,
1.00069544e-16, 1.00069544e-16, 1.00069544e-16, 1.00069544e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 ,
0.99999939, 0.99999939, 0.99999939, 0.99999939, 0.99999662,
0.99999662, 0.99999662, 0.99999662, 0.99998295, 0.99998295,
0.99998295, 0.99998295, 0.99992191, 0.99992191, 0.99992191,
0.99992191, 0.99967806, 0.99967806, 0.99967806, 0.99967806,
0.9988179 , 0.9988179 , 0.9988179 , 0.9988179 , 0.99618367,
0.99618367, 0.99618367, 0.99618367, 0.9893114 , 0.9893114 ,
0.9893114 , 0.9893114 , 0.97431068, 0.97431068, 0.97431068,
0.97431068, 0.94720653, 0.94720653, 0.94720653, 0.94720653,
0.90652171, 0.90652171, 0.90652171, 0.90652171, 0.85466372,
0.85466372, 0.85466372, 0.85466372, 0.79629842, 0.79629842,
0.79629842, 0.79629842, 0.73604968, 0.73604968, 0.73604968,
0.73604968, 0.67878231, 0.67878231, 0.67878231, 0.67878231,
0.6256561 , 0.6256561 , 0.6256561 , 0.6256561 , 0.57494258,
0.57494258, 0.57494258, 0.57494258, 0.533212 , 0.533212 ,
0.533212 , 0.533212 , 0.50207587, 0.50207587, 0.50207587,
0.50207587, 0.48250309, 0.48250309, 0.48250309, 0.48250309,
0.47250947, 0.47250947, 0.47250947, 0.47250947, 0.46817049,
0.46817049, 0.46817049, 0.46817049, 0.46640112, 0.46640112,
0.46640112, 0.46640112, 0.46567017, 0.46567017, 0.46567017,
0.46567017, 0.46537494, 0.46537494, 0.46537494, 0.46537494,
0.4652207 , 0.4652207 , 0.4652207 , 0.4652207 , 0.46520697,
0.46520697, 0.46520697, 0.46520697, 0.46526117, 0.46526117,
0.46526117, 0.46526117, 0.46535935, 0.46535935, 0.46535935,
0.46535935, 0.46554981, 0.46554981, 0.46554981, 0.46554981,
0.46588653, 0.46588653, 0.46588653, 0.46588653, 0.46609435,
0.46609435, 0.46609435, 0.46609435, 0.46609123, 0.46609123,
0.46609123, 0.46609123, 0.46609313, 0.46609313, 0.46609313,
0.46609313, 0.4660888 , 0.4660888 , 0.4660888 , 0.4660888 ,
0.46579135, 0.46579135, 0.46579135, 0.46579135, 0.46552363,
0.46552363, 0.46552363, 0.46552363, 0.46536737, 0.46536737,
0.46536737, 0.46536737, 0.46516396, 0.46516396, 0.46516396,
0.46516396, 0.46370822, 0.46370822, 0.46370822, 0.46370822,
0.45758086, 0.45758086, 0.45758086, 0.45758086, 0.43124529,
0.43124529, 0.43124529, 0.43124529, 0.33859453, 0.33859453,
0.33859453, 0.33859453, 0.17013955, 0.17013955, 0.17013955,
0.17013955, 0.10699674, 0.10699674, 0.10699674, 0.10699674,
0.10055056, 0.10055056, 0.10055056, 0.10055056, 0.10004173,
0.10004173, 0.10004173, 0.10004173, 0.10000314, 0.10000314,
0.10000314, 0.10000314, 0.10000024, 0.10000024, 0.10000024,
0.10000024, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}]}
minmod_rusanov
{'none_hll': [{'rho': array([0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999942,
0.99999942, 0.99999942, 0.99999942, 0.99999778, 0.99999778,
0.99999778, 0.99999778, 0.99999202, 0.99999202, 0.99999202,
0.99999202, 0.99997316, 0.99997316, 0.99997316, 0.99997316,
0.99991602, 0.99991602, 0.99991602, 0.99991602, 0.9997563 ,
0.9997563 , 0.9997563 , 0.9997563 , 0.9993467 , 0.9993467 ,
0.9993467 , 0.9993467 , 0.99838817, 0.99838817, 0.99838817,
0.99838817, 0.99635204, 0.99635204, 0.99635204, 0.99635204,
0.99244104, 0.99244104, 0.99244104, 0.99244104, 0.9856563 ,
0.9856563 , 0.9856563 , 0.9856563 , 0.97499773, 0.97499773,
0.97499773, 0.97499773, 0.95972818, 0.95972818, 0.95972818,
0.95972818, 0.93956535, 0.93956535, 0.93956535, 0.93956535,
0.91470956, 0.91470956, 0.91470956, 0.91470956, 0.88572617,
0.88572617, 0.88572617, 0.88572617, 0.85336749, 0.85336749,
0.85336749, 0.85336749, 0.8183986 , 0.8183986 , 0.8183986 ,
0.8183986 , 0.78138933, 0.78138933, 0.78138933, 0.78138933,
0.74190427, 0.74190427, 0.74190427, 0.74190427, 0.68069561,
0.68069561, 0.68069561, 0.68069561, 0.64567578, 0.64567578,
0.64567578, 0.64567578, 0.62072799, 0.62072799, 0.62072799,
0.62072799, 0.60234245, 0.60234245, 0.60234245, 0.60234245,
0.58959115, 0.58959115, 0.58959115, 0.58959115, 0.58159638,
0.58159638, 0.58159638, 0.58159638, 0.57703206, 0.57703206,
0.57703206, 0.57703206, 0.5742342 , 0.5742342 , 0.5742342 ,
0.5742342 , 0.57154338, 0.57154338, 0.57154338, 0.57154338,
0.56752869, 0.56752869, 0.56752869, 0.56752869, 0.56100982,
0.56100982, 0.56100982, 0.56100982, 0.55104138, 0.55104138,
0.55104138, 0.55104138, 0.5369988 , 0.5369988 , 0.5369988 ,
0.5369988 , 0.51874878, 0.51874878, 0.51874878, 0.51874878,
0.49679082, 0.49679082, 0.49679082, 0.49679082, 0.4722612 ,
0.4722612 , 0.4722612 , 0.4722612 , 0.44675753, 0.44675753,
0.44675753, 0.44675753, 0.42202434, 0.42202434, 0.42202434,
0.42202434, 0.39959589, 0.39959589, 0.39959589, 0.39959589,
0.38049936, 0.38049936, 0.38049936, 0.38049936, 0.36508019,
0.36508019, 0.36508019, 0.36508019, 0.35299013, 0.35299013,
0.35299013, 0.35299013, 0.34303431, 0.34303431, 0.34303431,
0.34303431, 0.33311509, 0.33311509, 0.33311509, 0.33311509,
0.32011436, 0.32011436, 0.32011436, 0.32011436, 0.29976301,
0.29976301, 0.29976301, 0.29976301, 0.2678043 , 0.2678043 ,
0.2678043 , 0.2678043 , 0.22419984, 0.22419984, 0.22419984,
0.22419984, 0.17832614, 0.17832614, 0.17832614, 0.17832614,
0.14528472, 0.14528472, 0.14528472, 0.14528472, 0.13048361,
0.13048361, 0.13048361, 0.13048361, 0.12620226, 0.12620226,
0.12620226, 0.12620226, 0.12524229, 0.12524229, 0.12524229,
0.12524229, 0.12504738, 0.12504738, 0.12504738, 0.12504738,
0.12500914, 0.12500914, 0.12500914, 0.12500914, 0.12500174,
0.12500174, 0.12500174, 0.12500174, 0.12500033, 0.12500033,
0.12500033, 0.12500033, 0.12500006, 0.12500006, 0.12500006,
0.12500006, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000167e-01, 7.50000167e-01, 7.50000167e-01, 7.50000167e-01,
7.50000683e-01, 7.50000683e-01, 7.50000683e-01, 7.50000683e-01,
7.50002625e-01, 7.50002625e-01, 7.50002625e-01, 7.50002625e-01,
7.50009447e-01, 7.50009447e-01, 7.50009447e-01, 7.50009447e-01,
7.50031758e-01, 7.50031758e-01, 7.50031758e-01, 7.50031758e-01,
7.50099366e-01, 7.50099366e-01, 7.50099366e-01, 7.50099366e-01,
7.50288337e-01, 7.50288337e-01, 7.50288337e-01, 7.50288337e-01,
7.50772988e-01, 7.50772988e-01, 7.50772988e-01, 7.50772988e-01,
7.51907376e-01, 7.51907376e-01, 7.51907376e-01, 7.51907376e-01,
7.54318699e-01, 7.54318699e-01, 7.54318699e-01, 7.54318699e-01,
7.58958083e-01, 7.58958083e-01, 7.58958083e-01, 7.58958083e-01,
7.67034111e-01, 7.67034111e-01, 7.67034111e-01, 7.67034111e-01,
7.79799756e-01, 7.79799756e-01, 7.79799756e-01, 7.79799756e-01,
7.98268450e-01, 7.98268450e-01, 7.98268450e-01, 7.98268450e-01,
8.23003448e-01, 8.23003448e-01, 8.23003448e-01, 8.23003448e-01,
8.54075522e-01, 8.54075522e-01, 8.54075522e-01, 8.54075522e-01,
8.91170219e-01, 8.91170219e-01, 8.91170219e-01, 8.91170219e-01,
9.33761223e-01, 9.33761223e-01, 9.33761223e-01, 9.33761223e-01,
9.81292612e-01, 9.81292612e-01, 9.81292612e-01, 9.81292612e-01,
1.03344347e+00, 1.03344347e+00, 1.03344347e+00, 1.03344347e+00,
1.09134872e+00, 1.09134872e+00, 1.09134872e+00, 1.09134872e+00,
1.18628677e+00, 1.18628677e+00, 1.18628677e+00, 1.18628677e+00,
1.24355729e+00, 1.24355729e+00, 1.24355729e+00, 1.24355729e+00,
1.28577631e+00, 1.28577631e+00, 1.28577631e+00, 1.28577631e+00,
1.31763060e+00, 1.31763060e+00, 1.31763060e+00, 1.31763060e+00,
1.33994607e+00, 1.33994607e+00, 1.33994607e+00, 1.33994607e+00,
1.35366900e+00, 1.35366900e+00, 1.35366900e+00, 1.35366900e+00,
1.36065228e+00, 1.36065228e+00, 1.36065228e+00, 1.36065228e+00,
1.36330406e+00, 1.36330406e+00, 1.36330406e+00, 1.36330406e+00,
1.36377802e+00, 1.36377802e+00, 1.36377802e+00, 1.36377802e+00,
1.36346214e+00, 1.36346214e+00, 1.36346214e+00, 1.36346214e+00,
1.36300839e+00, 1.36300839e+00, 1.36300839e+00, 1.36300839e+00,
1.36262613e+00, 1.36262613e+00, 1.36262613e+00, 1.36262613e+00,
1.36234022e+00, 1.36234022e+00, 1.36234022e+00, 1.36234022e+00,
1.36212440e+00, 1.36212440e+00, 1.36212440e+00, 1.36212440e+00,
1.36194570e+00, 1.36194570e+00, 1.36194570e+00, 1.36194570e+00,
1.36176870e+00, 1.36176870e+00, 1.36176870e+00, 1.36176870e+00,
1.36154433e+00, 1.36154433e+00, 1.36154433e+00, 1.36154433e+00,
1.36118699e+00, 1.36118699e+00, 1.36118699e+00, 1.36118699e+00,
1.36053007e+00, 1.36053007e+00, 1.36053007e+00, 1.36053007e+00,
1.35923531e+00, 1.35923531e+00, 1.35923531e+00, 1.35923531e+00,
1.35660636e+00, 1.35660636e+00, 1.35660636e+00, 1.35660636e+00,
1.35121276e+00, 1.35121276e+00, 1.35121276e+00, 1.35121276e+00,
1.34015167e+00, 1.34015167e+00, 1.34015167e+00, 1.34015167e+00,
1.31767491e+00, 1.31767491e+00, 1.31767491e+00, 1.31767491e+00,
1.27285288e+00, 1.27285288e+00, 1.27285288e+00, 1.27285288e+00,
1.18653029e+00, 1.18653029e+00, 1.18653029e+00, 1.18653029e+00,
1.03082789e+00, 1.03082789e+00, 1.03082789e+00, 1.03082789e+00,
7.82059657e-01, 7.82059657e-01, 7.82059657e-01, 7.82059657e-01,
4.62795165e-01, 4.62795165e-01, 4.62795165e-01, 4.62795165e-01,
1.85035678e-01, 1.85035678e-01, 1.85035678e-01, 1.85035678e-01,
4.91064989e-02, 4.91064989e-02, 4.91064989e-02, 4.91064989e-02,
1.04300500e-02, 1.04300500e-02, 1.04300500e-02, 1.04300500e-02,
2.06834747e-03, 2.06834747e-03, 2.06834747e-03, 2.06834747e-03,
4.02159204e-04, 4.02159204e-04, 4.02159204e-04, 4.02159204e-04,
7.74241901e-05, 7.74241901e-05, 7.74241901e-05, 7.74241901e-05,
1.47732907e-05, 1.47732907e-05, 1.47732907e-05, 1.47732907e-05,
2.79133251e-06, 2.79133251e-06, 2.79133251e-06, 2.79133251e-06,
5.21558611e-07, 5.21558611e-07, 5.21558611e-07, 5.21558611e-07,
9.62314180e-08, 9.62314180e-08, 9.62314180e-08, 9.62314180e-08,
1.75063215e-08, 1.75063215e-08, 1.75063215e-08, 1.75063215e-08,
3.13525934e-09, 3.13525934e-09, 3.13525934e-09, 3.13525934e-09,
5.51945459e-10, 5.51945459e-10, 5.51945459e-10, 5.51945459e-10,
9.53728523e-11, 9.53728523e-11, 9.53728523e-11]), 'P': array([0.9999998 , 0.9999998 , 0.9999998 , 0.9999998 , 0.99999919,
0.99999919, 0.99999919, 0.99999919, 0.99999689, 0.99999689,
0.99999689, 0.99999689, 0.99998882, 0.99998882, 0.99998882,
0.99998882, 0.99996242, 0.99996242, 0.99996242, 0.99996242,
0.99988243, 0.99988243, 0.99988243, 0.99988243, 0.99965888,
0.99965888, 0.99965888, 0.99965888, 0.99908571, 0.99908571,
0.99908571, 0.99908571, 0.99774515, 0.99774515, 0.99774515,
0.99774515, 0.99490042, 0.99490042, 0.99490042, 0.99490042,
0.98944596, 0.98944596, 0.98944596, 0.98944596, 0.98001064,
0.98001064, 0.98001064, 0.98001064, 0.96525111, 0.96525111,
0.96525111, 0.96525111, 0.94423203, 0.94423203, 0.94423203,
0.94423203, 0.91669404, 0.91669404, 0.91669404, 0.91669404,
0.88307786, 0.88307786, 0.88307786, 0.88307786, 0.84433672,
0.84433672, 0.84433672, 0.84433672, 0.80166635, 0.80166635,
0.80166635, 0.80166635, 0.75625152, 0.75625152, 0.75625152,
0.75625152, 0.70899078, 0.70899078, 0.70899078, 0.70899078,
0.65951543, 0.65951543, 0.65951543, 0.65951543, 0.58481452,
0.58481452, 0.58481452, 0.58481452, 0.5433517 , 0.5433517 ,
0.5433517 , 0.5433517 , 0.51442502, 0.51442502, 0.51442502,
0.51442502, 0.49348741, 0.49348741, 0.49348741, 0.49348741,
0.47926376, 0.47926376, 0.47926376, 0.47926376, 0.4706976 ,
0.4706976 , 0.4706976 , 0.4706976 , 0.46639387, 0.46639387,
0.46639387, 0.46639387, 0.46477369, 0.46477369, 0.46477369,
0.46477369, 0.46449143, 0.46449143, 0.46449143, 0.46449143,
0.46469357, 0.46469357, 0.46469357, 0.46469357, 0.46498071,
0.46498071, 0.46498071, 0.46498071, 0.46522404, 0.46522404,
0.46522404, 0.46522404, 0.46540634, 0.46540634, 0.46540634,
0.46540634, 0.46553884, 0.46553884, 0.46553884, 0.46553884,
0.46563123, 0.46563123, 0.46563123, 0.46563123, 0.46568376,
0.46568376, 0.46568376, 0.46568376, 0.46568347, 0.46568347,
0.46568347, 0.46568347, 0.46559619, 0.46559619, 0.46559619,
0.46559619, 0.46534764, 0.46534764, 0.46534764, 0.46534764,
0.46478249, 0.46478249, 0.46478249, 0.46478249, 0.46357931,
0.46357931, 0.46357931, 0.46357931, 0.46108012, 0.46108012,
0.46108012, 0.46108012, 0.4559703 , 0.4559703 , 0.4559703 ,
0.4559703 , 0.44573327, 0.44573327, 0.44573327, 0.44573327,
0.42592481, 0.42592481, 0.42592481, 0.42592481, 0.38995176,
0.38995176, 0.38995176, 0.38995176, 0.33171722, 0.33171722,
0.33171722, 0.33171722, 0.25409808, 0.25409808, 0.25409808,
0.25409808, 0.1771826 , 0.1771826 , 0.1771826 , 0.1771826 ,
0.126735 , 0.126735 , 0.126735 , 0.126735 , 0.10663112,
0.10663112, 0.10663112, 0.10663112, 0.10138491, 0.10138491,
0.10138491, 0.10138491, 0.1002738 , 0.1002738 , 0.1002738 ,
0.1002738 , 0.10005321, 0.10005321, 0.10005321, 0.10005321,
0.10001024, 0.10001024, 0.10001024, 0.10001024, 0.10000195,
0.10000195, 0.10000195, 0.10000195, 0.10000037, 0.10000037,
0.10000037, 0.10000037, 0.10000007, 0.10000007, 0.10000007,
0.10000007, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}], 'minmod_rusanov': [{'rho': array([0.99999871, 0.99999871, 0.99999871, 0.99999871, 0.99999661,
0.99999661, 0.99999661, 0.99999661, 0.99998966, 0.99998966,
0.99998966, 0.99998966, 0.99997049, 0.99997049, 0.99997049,
0.99997049, 0.99992058, 0.99992058, 0.99992058, 0.99992058,
0.99979749, 0.99979749, 0.99979749, 0.99979749, 0.99951129,
0.99951129, 0.99951129, 0.99951129, 0.99888599, 0.99888599,
0.99888599, 0.99888599, 0.9976064 , 0.9976064 , 0.9976064 ,
0.9976064 , 0.99516153, 0.99516153, 0.99516153, 0.99516153,
0.99081297, 0.99081297, 0.99081297, 0.99081297, 0.98362904,
0.98362904, 0.98362904, 0.98362904, 0.9726153 , 0.9726153 ,
0.9726153 , 0.9726153 , 0.95692666, 0.95692666, 0.95692666,
0.95692666, 0.93608458, 0.93608458, 0.93608458, 0.93608458,
0.91009674, 0.91009674, 0.91009674, 0.91009674, 0.87942017,
0.87942017, 0.87942017, 0.87942017, 0.84480243, 0.84480243,
0.84480243, 0.84480243, 0.80717174, 0.80717174, 0.80717174,
0.80717174, 0.76833323, 0.76833323, 0.76833323, 0.76833323,
0.7317958 , 0.7317958 , 0.7317958 , 0.7317958 , 0.69866292,
0.69866292, 0.69866292, 0.69866292, 0.66877266, 0.66877266,
0.66877266, 0.66877266, 0.64250712, 0.64250712, 0.64250712,
0.64250712, 0.62085534, 0.62085534, 0.62085534, 0.62085534,
0.60473075, 0.60473075, 0.60473075, 0.60473075, 0.59427383,
0.59427383, 0.59427383, 0.59427383, 0.58874167, 0.58874167,
0.58874167, 0.58874167, 0.58661231, 0.58661231, 0.58661231,
0.58661231, 0.58586097, 0.58586097, 0.58586097, 0.58586097,
0.58476947, 0.58476947, 0.58476947, 0.58476947, 0.58158321,
0.58158321, 0.58158321, 0.58158321, 0.57471343, 0.57471343,
0.57471343, 0.57471343, 0.56327381, 0.56327381, 0.56327381,
0.56327381, 0.54639053, 0.54639053, 0.54639053, 0.54639053,
0.52240684, 0.52240684, 0.52240684, 0.52240684, 0.48899281,
0.48899281, 0.48899281, 0.48899281, 0.4463966 , 0.4463966 ,
0.4463966 , 0.4463966 , 0.40411539, 0.40411539, 0.40411539,
0.40411539, 0.37294067, 0.37294067, 0.37294067, 0.37294067,
0.35182753, 0.35182753, 0.35182753, 0.35182753, 0.33895289,
0.33895289, 0.33895289, 0.33895289, 0.33221897, 0.33221897,
0.33221897, 0.33221897, 0.3294285 , 0.3294285 , 0.3294285 ,
0.3294285 , 0.32860094, 0.32860094, 0.32860094, 0.32860094,
0.32743466, 0.32743466, 0.32743466, 0.32743466, 0.31726988,
0.31726988, 0.31726988, 0.31726988, 0.27001934, 0.27001934,
0.27001934, 0.27001934, 0.17357126, 0.17357126, 0.17357126,
0.17357126, 0.13098555, 0.13098555, 0.13098555, 0.13098555,
0.12551968, 0.12551968, 0.12551968, 0.12551968, 0.12504027,
0.12504027, 0.12504027, 0.12504027, 0.12500303, 0.12500303,
0.12500303, 0.12500303, 0.12500023, 0.12500023, 0.12500023,
0.12500023, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50001531e-01, 7.50001531e-01, 7.50001531e-01, 7.50001531e-01,
7.50004007e-01, 7.50004007e-01, 7.50004007e-01, 7.50004007e-01,
7.50012237e-01, 7.50012237e-01, 7.50012237e-01, 7.50012237e-01,
7.50034917e-01, 7.50034917e-01, 7.50034917e-01, 7.50034917e-01,
7.50093968e-01, 7.50093968e-01, 7.50093968e-01, 7.50093968e-01,
7.50239615e-01, 7.50239615e-01, 7.50239615e-01, 7.50239615e-01,
7.50578307e-01, 7.50578307e-01, 7.50578307e-01, 7.50578307e-01,
7.51318450e-01, 7.51318450e-01, 7.51318450e-01, 7.51318450e-01,
7.52833953e-01, 7.52833953e-01, 7.52833953e-01, 7.52833953e-01,
7.55733191e-01, 7.55733191e-01, 7.55733191e-01, 7.55733191e-01,
7.60902495e-01, 7.60902495e-01, 7.60902495e-01, 7.60902495e-01,
7.69479672e-01, 7.69479672e-01, 7.69479672e-01, 7.69479672e-01,
7.82724068e-01, 7.82724068e-01, 7.82724068e-01, 7.82724068e-01,
8.01796569e-01, 8.01796569e-01, 8.01796569e-01, 8.01796569e-01,
8.27525186e-01, 8.27525186e-01, 8.27525186e-01, 8.27525186e-01,
8.60261011e-01, 8.60261011e-01, 8.60261011e-01, 8.60261011e-01,
8.99894497e-01, 8.99894497e-01, 8.99894497e-01, 8.99894497e-01,
9.46030525e-01, 9.46030525e-01, 9.46030525e-01, 9.46030525e-01,
9.98277447e-01, 9.98277447e-01, 9.98277447e-01, 9.98277447e-01,
1.05334834e+00, 1.05334834e+00, 1.05334834e+00, 1.05334834e+00,
1.10804511e+00, 1.10804511e+00, 1.10804511e+00, 1.10804511e+00,
1.15927234e+00, 1.15927234e+00, 1.15927234e+00, 1.15927234e+00,
1.20602476e+00, 1.20602476e+00, 1.20602476e+00, 1.20602476e+00,
1.24734222e+00, 1.24734222e+00, 1.24734222e+00, 1.24734222e+00,
1.28248845e+00, 1.28248845e+00, 1.28248845e+00, 1.28248845e+00,
1.31052537e+00, 1.31052537e+00, 1.31052537e+00, 1.31052537e+00,
1.33076480e+00, 1.33076480e+00, 1.33076480e+00, 1.33076480e+00,
1.34415463e+00, 1.34415463e+00, 1.34415463e+00, 1.34415463e+00,
1.35305806e+00, 1.35305806e+00, 1.35305806e+00, 1.35305806e+00,
1.35894065e+00, 1.35894065e+00, 1.35894065e+00, 1.35894065e+00,
1.36185203e+00, 1.36185203e+00, 1.36185203e+00, 1.36185203e+00,
1.36239557e+00, 1.36239557e+00, 1.36239557e+00, 1.36239557e+00,
1.36215707e+00, 1.36215707e+00, 1.36215707e+00, 1.36215707e+00,
1.36194266e+00, 1.36194266e+00, 1.36194266e+00, 1.36194266e+00,
1.36206937e+00, 1.36206937e+00, 1.36206937e+00, 1.36206937e+00,
1.36246607e+00, 1.36246607e+00, 1.36246607e+00, 1.36246607e+00,
1.36297688e+00, 1.36297688e+00, 1.36297688e+00, 1.36297688e+00,
1.36312897e+00, 1.36312897e+00, 1.36312897e+00, 1.36312897e+00,
1.36298101e+00, 1.36298101e+00, 1.36298101e+00, 1.36298101e+00,
1.36246641e+00, 1.36246641e+00, 1.36246641e+00, 1.36246641e+00,
1.36157437e+00, 1.36157437e+00, 1.36157437e+00, 1.36157437e+00,
1.36070130e+00, 1.36070130e+00, 1.36070130e+00, 1.36070130e+00,
1.36003987e+00, 1.36003987e+00, 1.36003987e+00, 1.36003987e+00,
1.35919056e+00, 1.35919056e+00, 1.35919056e+00, 1.35919056e+00,
1.35638143e+00, 1.35638143e+00, 1.35638143e+00, 1.35638143e+00,
1.34281703e+00, 1.34281703e+00, 1.34281703e+00, 1.34281703e+00,
1.28083198e+00, 1.28083198e+00, 1.28083198e+00, 1.28083198e+00,
1.03437248e+00, 1.03437248e+00, 1.03437248e+00, 1.03437248e+00,
4.39845204e-01, 4.39845204e-01, 4.39845204e-01, 4.39845204e-01,
5.63702448e-02, 5.63702448e-02, 5.63702448e-02, 5.63702448e-02,
4.56728510e-03, 4.56728510e-03, 4.56728510e-03, 4.56728510e-03,
3.44109702e-04, 3.44109702e-04, 3.44109702e-04, 3.44109702e-04,
2.57117118e-05, 2.57117118e-05, 2.57117118e-05, 2.57117118e-05,
1.91493931e-06, 1.91493931e-06, 1.91493931e-06, 1.91493931e-06,
1.42183400e-07, 1.42183400e-07, 1.42183400e-07, 1.42183400e-07,
1.05285748e-08, 1.05285748e-08, 1.05285748e-08, 1.05285748e-08,
7.77701570e-10, 7.77701570e-10, 7.77701570e-10, 7.77701570e-10,
5.73011541e-11, 5.73011541e-11, 5.73011541e-11, 5.73011541e-11,
4.21117928e-12, 4.21117928e-12, 4.21117928e-12, 4.21117928e-12,
3.08654210e-13, 3.08654210e-13, 3.08654210e-13, 3.08654210e-13,
2.24724643e-14, 2.24724643e-14, 2.24724643e-14, 2.24724643e-14,
1.61702291e-15, 1.61702291e-15, 1.61702291e-15, 1.61702291e-15,
1.02454347e-16, 1.02454347e-16, 1.02454347e-16, 1.02454347e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([0.99999819, 0.99999819, 0.99999819, 0.99999819, 0.99999526,
0.99999526, 0.99999526, 0.99999526, 0.99998552, 0.99998552,
0.99998552, 0.99998552, 0.99995869, 0.99995869, 0.99995869,
0.99995869, 0.99988882, 0.99988882, 0.99988882, 0.99988882,
0.99971652, 0.99971652, 0.99971652, 0.99971652, 0.99931595,
0.99931595, 0.99931595, 0.99931595, 0.9984411 , 0.9984411 ,
0.9984411 , 0.9984411 , 0.99665195, 0.99665195, 0.99665195,
0.99665195, 0.99323734, 0.99323734, 0.99323734, 0.99323734,
0.98717551, 0.98717551, 0.98717551, 0.98717551, 0.97719106,
0.97719106, 0.97719106, 0.97719106, 0.96195133, 0.96195133,
0.96195133, 0.96195133, 0.94037646, 0.94037646, 0.94037646,
0.94037646, 0.91194761, 0.91194761, 0.91194761, 0.91194761,
0.87686269, 0.87686269, 0.87686269, 0.87686269, 0.83595614,
0.83595614, 0.83595614, 0.83595614, 0.79042203, 0.79042203,
0.79042203, 0.79042203, 0.74145147, 0.74145147, 0.74145147,
0.74145147, 0.69147779, 0.69147779, 0.69147779, 0.69147779,
0.64572403, 0.64572403, 0.64572403, 0.64572403, 0.60528213,
0.60528213, 0.60528213, 0.60528213, 0.57010763, 0.57010763,
0.57010763, 0.57010763, 0.5404967 , 0.5404967 , 0.5404967 ,
0.5404967 , 0.51678706, 0.51678706, 0.51678706, 0.51678706,
0.49867658, 0.49867658, 0.49867658, 0.49867658, 0.4853026 ,
0.4853026 , 0.4853026 , 0.4853026 , 0.47607786, 0.47607786,
0.47607786, 0.47607786, 0.47071083, 0.47071083, 0.47071083,
0.47071083, 0.46816931, 0.46816931, 0.46816931, 0.46816931,
0.46677659, 0.46677659, 0.46677659, 0.46677659, 0.46558153,
0.46558153, 0.46558153, 0.46558153, 0.4647659 , 0.4647659 ,
0.4647659 , 0.4647659 , 0.46441055, 0.46441055, 0.46441055,
0.46441055, 0.46437878, 0.46437878, 0.46437878, 0.46437878,
0.46459568, 0.46459568, 0.46459568, 0.46459568, 0.46499426,
0.46499426, 0.46499426, 0.46499426, 0.46520033, 0.46520033,
0.46520033, 0.46520033, 0.46528777, 0.46528777, 0.46528777,
0.46528777, 0.46526662, 0.46526662, 0.46526662, 0.46526662,
0.46508061, 0.46508061, 0.46508061, 0.46508061, 0.4649127 ,
0.4649127 , 0.4649127 , 0.4649127 , 0.46486127, 0.46486127,
0.46486127, 0.46486127, 0.4647071 , 0.4647071 , 0.4647071 ,
0.4647071 , 0.46356721, 0.46356721, 0.46356721, 0.46356721,
0.45731151, 0.45731151, 0.45731151, 0.45731151, 0.42928346,
0.42928346, 0.42928346, 0.42928346, 0.33578024, 0.33578024,
0.33578024, 0.33578024, 0.17249402, 0.17249402, 0.17249402,
0.17249402, 0.10769716, 0.10769716, 0.10769716, 0.10769716,
0.10060508, 0.10060508, 0.10060508, 0.10060508, 0.10004552,
0.10004552, 0.10004552, 0.10004552, 0.1000034 , 0.1000034 ,
0.1000034 , 0.1000034 , 0.10000025, 0.10000025, 0.10000025,
0.10000025, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}], 'minmod_hll': [{'rho': array([1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125]), 'vx': array([0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. ]), 'P': array([1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999477, 0.99999477,
0.99999477, 0.99999477, 0.99786485, 0.99786485, 0.99786485,
0.99786485, 0.93485786, 0.93485786, 0.93485786, 0.93485786,
0.40121931, 0.40121931, 0.40121931, 0.40121931, 0.15582104,
0.15582104, 0.15582104, 0.15582104, 0.12524217, 0.12524217,
0.12524217, 0.12524217, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75000582, 0.75000582,
0.75000582, 0.75000582, 0.75222331, 0.75222331, 0.75222331,
0.75222331, 0.81126632, 0.81126632, 0.81126632, 0.81126632,
1.02140027, 1.02140027, 1.02140027, 1.02140027, 0.31355893,
0.31355893, 0.31355893, 0.31355893, 0.0023764 , 0.0023764 ,
0.0023764 , 0.0023764 , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999312, 0.99999312,
0.99999312, 0.99999312, 0.99735755, 0.99735755, 0.99735755,
0.99735755, 0.93228381, 0.93228381, 0.93228381, 0.93228381,
0.39392227, 0.39392227, 0.39392227, 0.39392227, 0.14137148,
0.14137148, 0.14137148, 0.14137148, 0.1003091 , 0.1003091 ,
0.1003091 , 0.1003091 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999593,
0.99999593, 0.99999593, 0.99999593, 0.99976514, 0.99976514,
0.99976514, 0.99976514, 0.99350557, 0.99350557, 0.99350557,
0.99350557, 0.91229178, 0.91229178, 0.91229178, 0.91229178,
0.5439655 , 0.5439655 , 0.5439655 , 0.5439655 , 0.26096859,
0.26096859, 0.26096859, 0.26096859, 0.14372642, 0.14372642,
0.14372642, 0.14372642, 0.12576866, 0.12576866, 0.12576866,
0.12576866, 0.12501238, 0.12501238, 0.12501238, 0.12501238,
0.12500005, 0.12500005, 0.12500005, 0.12500005, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000034e-01, 7.50000034e-01, 7.50000034e-01, 7.50000034e-01,
7.50004712e-01, 7.50004712e-01, 7.50004712e-01, 7.50004712e-01,
7.50264827e-01, 7.50264827e-01, 7.50264827e-01, 7.50264827e-01,
7.56937682e-01, 7.56937682e-01, 7.56937682e-01, 7.56937682e-01,
8.39140555e-01, 8.39140555e-01, 8.39140555e-01, 8.39140555e-01,
1.20185078e+00, 1.20185078e+00, 1.20185078e+00, 1.20185078e+00,
9.09724624e-01, 9.09724624e-01, 9.09724624e-01, 9.09724624e-01,
1.82774882e-01, 1.82774882e-01, 1.82774882e-01, 1.82774882e-01,
7.06720021e-03, 7.06720021e-03, 7.06720021e-03, 7.06720021e-03,
1.07910808e-04, 1.07910808e-04, 1.07910808e-04, 1.07910808e-04,
4.52081665e-07, 4.52081665e-07, 4.52081665e-07, 4.52081665e-07,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999442,
0.99999442, 0.99999442, 0.99999442, 0.99968659, 0.99968659,
0.99968659, 0.99968659, 0.99178136, 0.99178136, 0.99178136,
0.99178136, 0.89903919, 0.89903919, 0.89903919, 0.89903919,
0.51770741, 0.51770741, 0.51770741, 0.51770741, 0.2728004 ,
0.2728004 , 0.2728004 , 0.2728004 , 0.12535917, 0.12535917,
0.12535917, 0.12535917, 0.10093445, 0.10093445, 0.10093445,
0.10093445, 0.10001427, 0.10001427, 0.10001427, 0.10001427,
0.10000006, 0.10000006, 0.10000006, 0.10000006, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999923, 0.99999923, 0.99999923, 0.99999923, 0.99996861,
0.99996861, 0.99996861, 0.99996861, 0.99921031, 0.99921031,
0.99921031, 0.99921031, 0.98796713, 0.98796713, 0.98796713,
0.98796713, 0.89633843, 0.89633843, 0.89633843, 0.89633843,
0.62495402, 0.62495402, 0.62495402, 0.62495402, 0.36745601,
0.36745601, 0.36745601, 0.36745601, 0.20859145, 0.20859145,
0.20859145, 0.20859145, 0.13495091, 0.13495091, 0.13495091,
0.13495091, 0.12554615, 0.12554615, 0.12554615, 0.12554615,
0.12501743, 0.12501743, 0.12501743, 0.12501743, 0.12500034,
0.12500034, 0.12500034, 0.12500034, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
7.50000909e-01, 7.50000909e-01, 7.50000909e-01, 7.50000909e-01,
7.50036531e-01, 7.50036531e-01, 7.50036531e-01, 7.50036531e-01,
7.50902656e-01, 7.50902656e-01, 7.50902656e-01, 7.50902656e-01,
7.63307867e-01, 7.63307867e-01, 7.63307867e-01, 7.63307867e-01,
8.65269104e-01, 8.65269104e-01, 8.65269104e-01, 8.65269104e-01,
1.24045354e+00, 1.24045354e+00, 1.24045354e+00, 1.24045354e+00,
1.21114735e+00, 1.21114735e+00, 1.21114735e+00, 1.21114735e+00,
6.72413161e-01, 6.72413161e-01, 6.72413161e-01, 6.72413161e-01,
9.49710351e-02, 9.49710351e-02, 9.49710351e-02, 9.49710351e-02,
4.89829591e-03, 4.89829591e-03, 4.89829591e-03, 4.89829591e-03,
1.50276620e-04, 1.50276620e-04, 1.50276620e-04, 1.50276620e-04,
2.85787671e-06, 2.85787671e-06, 2.85787671e-06, 2.85787671e-06,
2.86001060e-08, 2.86001060e-08, 2.86001060e-08, 2.86001060e-08,
9.82632001e-11, 9.82632001e-11, 9.82632001e-11, 9.82632001e-11,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99995678,
0.99995678, 0.99995678, 0.99995678, 0.99893195, 0.99893195,
0.99893195, 0.99893195, 0.98431021, 0.98431021, 0.98431021,
0.98431021, 0.87225606, 0.87225606, 0.87225606, 0.87225606,
0.57198082, 0.57198082, 0.57198082, 0.57198082, 0.38708981,
0.38708981, 0.38708981, 0.38708981, 0.2169621 , 0.2169621 ,
0.2169621 , 0.2169621 , 0.11307803, 0.11307803, 0.11307803,
0.11307803, 0.10064828, 0.10064828, 0.10064828, 0.10064828,
0.10001988, 0.10001988, 0.10001988, 0.10001988, 0.10000038,
0.10000038, 0.10000038, 0.10000038, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999553, 0.99999553, 0.99999553, 0.99999553, 0.99989298,
0.99989298, 0.99989298, 0.99989298, 0.99825442, 0.99825442,
0.99825442, 0.99825442, 0.98154523, 0.98154523, 0.98154523,
0.98154523, 0.88346323, 0.88346323, 0.88346323, 0.88346323,
0.66814286, 0.66814286, 0.66814286, 0.66814286, 0.450449 ,
0.450449 , 0.450449 , 0.450449 , 0.30003012, 0.30003012,
0.30003012, 0.30003012, 0.17291515, 0.17291515, 0.17291515,
0.17291515, 0.12999501, 0.12999501, 0.12999501, 0.12999501,
0.12530317, 0.12530317, 0.12530317, 0.12530317, 0.12501302,
0.12501302, 0.12501302, 0.12501302, 0.1250004 , 0.1250004 ,
0.1250004 , 0.1250004 , 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
7.50005260e-01, 7.50005260e-01, 7.50005260e-01, 7.50005260e-01,
7.50125177e-01, 7.50125177e-01, 7.50125177e-01, 7.50125177e-01,
7.52016532e-01, 7.52016532e-01, 7.52016532e-01, 7.52016532e-01,
7.70955544e-01, 7.70955544e-01, 7.70955544e-01, 7.70955544e-01,
8.87963066e-01, 8.87963066e-01, 8.87963066e-01, 8.87963066e-01,
1.23600978e+00, 1.23600978e+00, 1.23600978e+00, 1.23600978e+00,
1.32985101e+00, 1.32985101e+00, 1.32985101e+00, 1.32985101e+00,
1.08018999e+00, 1.08018999e+00, 1.08018999e+00, 1.08018999e+00,
4.31751162e-01, 4.31751162e-01, 4.31751162e-01, 4.31751162e-01,
4.67980493e-02, 4.67980493e-02, 4.67980493e-02, 4.67980493e-02,
2.66505147e-03, 2.66505147e-03, 2.66505147e-03, 2.66505147e-03,
1.11496365e-04, 1.11496365e-04, 1.11496365e-04, 1.11496365e-04,
3.41260935e-06, 3.41260935e-06, 3.41260935e-06, 3.41260935e-06,
7.27672658e-08, 7.27672658e-08, 7.27672658e-08, 7.27672658e-08,
1.00397593e-09, 1.00397593e-09, 1.00397593e-09, 1.00397593e-09,
7.70528135e-12, 7.70528135e-12, 7.70528135e-12, 7.70528135e-12,
2.25884809e-14, 2.25884809e-14, 2.25884809e-14, 2.25884809e-14,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999982, 0.99999982, 0.99999982, 0.99999982,
0.99999378, 0.99999378, 0.99999378, 0.99999378, 0.99985189,
0.99985189, 0.99985189, 0.99985189, 0.99761523, 0.99761523,
0.99761523, 0.99761523, 0.97543178, 0.97543178, 0.97543178,
0.97543178, 0.85010187, 0.85010187, 0.85010187, 0.85010187,
0.59115606, 0.59115606, 0.59115606, 0.59115606, 0.45201122,
0.45201122, 0.45201122, 0.45201122, 0.33798169, 0.33798169,
0.33798169, 0.33798169, 0.16975198, 0.16975198, 0.16975198,
0.16975198, 0.10631224, 0.10631224, 0.10631224, 0.10631224,
0.10035268, 0.10035268, 0.10035268, 0.10035268, 0.10001475,
0.10001475, 0.10001475, 0.10001475, 0.10000045, 0.10000045,
0.10000045, 0.10000045, 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999934, 0.99999934, 0.99999934, 0.99999934,
0.99998473, 0.99998473, 0.99998473, 0.99998473, 0.99973934,
0.99973934, 0.99973934, 0.99973934, 0.99684694, 0.99684694,
0.99684694, 0.99684694, 0.97449508, 0.97449508, 0.97449508,
0.97449508, 0.87259818, 0.87259818, 0.87259818, 0.87259818,
0.6864975 , 0.6864975 , 0.6864975 , 0.6864975 , 0.51289402,
0.51289402, 0.51289402, 0.51289402, 0.38247596, 0.38247596,
0.38247596, 0.38247596, 0.24627862, 0.24627862, 0.24627862,
0.24627862, 0.1506058 , 0.1506058 , 0.1506058 , 0.1506058 ,
0.12742094, 0.12742094, 0.12742094, 0.12742094, 0.12515547,
0.12515547, 0.12515547, 0.12515547, 0.12500778, 0.12500778,
0.12500778, 0.12500778, 0.12500031, 0.12500031, 0.12500031,
0.12500031, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
7.50000776e-01, 7.50000776e-01, 7.50000776e-01, 7.50000776e-01,
7.50017997e-01, 7.50017997e-01, 7.50017997e-01, 7.50017997e-01,
7.50305930e-01, 7.50305930e-01, 7.50305930e-01, 7.50305930e-01,
7.53669775e-01, 7.53669775e-01, 7.53669775e-01, 7.53669775e-01,
7.79517872e-01, 7.79517872e-01, 7.79517872e-01, 7.79517872e-01,
9.06676406e-01, 9.06676406e-01, 9.06676406e-01, 9.06676406e-01,
1.21521648e+00, 1.21521648e+00, 1.21521648e+00, 1.21521648e+00,
1.36901918e+00, 1.36901918e+00, 1.36901918e+00, 1.36901918e+00,
1.27921096e+00, 1.27921096e+00, 1.27921096e+00, 1.27921096e+00,
9.03289139e-01, 9.03289139e-01, 9.03289139e-01, 9.03289139e-01,
2.43356441e-01, 2.43356441e-01, 2.43356441e-01, 2.43356441e-01,
2.21897389e-02, 2.21897389e-02, 2.21897389e-02, 2.21897389e-02,
1.34917711e-03, 1.34917711e-03, 1.34917711e-03, 1.34917711e-03,
6.63347975e-05, 6.63347975e-05, 6.63347975e-05, 6.63347975e-05,
2.61791335e-06, 2.61791335e-06, 2.61791335e-06, 2.61791335e-06,
8.01915979e-08, 8.01915979e-08, 8.01915979e-08, 8.01915979e-08,
1.84159266e-09, 1.84159266e-09, 1.84159266e-09, 1.84159266e-09,
3.02840362e-11, 3.02840362e-11, 3.02840362e-11, 3.02840362e-11,
3.31059514e-13, 3.31059514e-13, 3.31059514e-13, 3.31059514e-13,
2.11159390e-15, 2.11159390e-15, 2.11159390e-15, 2.11159390e-15,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999908, 0.99999908, 0.99999908, 0.99999908,
0.99997871, 0.99997871, 0.99997871, 0.99997871, 0.99963804,
0.99963804, 0.99963804, 0.99963804, 0.99566401, 0.99566401,
0.99566401, 0.99566401, 0.96560299, 0.96560299, 0.96560299,
0.96560299, 0.8320416 , 0.8320416 , 0.8320416 , 0.8320416 ,
0.59163041, 0.59163041, 0.59163041, 0.59163041, 0.48324232,
0.48324232, 0.48324232, 0.48324232, 0.4189936 , 0.4189936 ,
0.4189936 , 0.4189936 , 0.28887293, 0.28887293, 0.28887293,
0.28887293, 0.13630773, 0.13630773, 0.13630773, 0.13630773,
0.1029605 , 0.1029605 , 0.1029605 , 0.1029605 , 0.10017852,
0.10017852, 0.10017852, 0.10017852, 0.10000878, 0.10000878,
0.10000878, 0.10000878, 0.10000035, 0.10000035, 0.10000035,
0.10000035, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999776, 0.99999776, 0.99999776, 0.99999776,
0.99996053, 0.99996053, 0.99996053, 0.99996053, 0.99947569,
0.99947569, 0.99947569, 0.99947569, 0.99496288, 0.99496288,
0.99496288, 0.99496288, 0.96703059, 0.96703059, 0.96703059,
0.96703059, 0.86276573, 0.86276573, 0.86276573, 0.86276573,
0.69336478, 0.69336478, 0.69336478, 0.69336478, 0.55587482,
0.55587482, 0.55587482, 0.55587482, 0.44582134, 0.44582134,
0.44582134, 0.44582134, 0.32572207, 0.32572207, 0.32572207,
0.32572207, 0.20563197, 0.20563197, 0.20563197, 0.20563197,
0.13815838, 0.13815838, 0.13815838, 0.13815838, 0.12615318,
0.12615318, 0.12615318, 0.12615318, 0.12507598, 0.12507598,
0.12507598, 0.12507598, 0.1250042 , 0.1250042 , 0.1250042 ,
0.1250042 , 0.12500019, 0.12500019, 0.12500019, 0.12500019,
0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
7.50000116e-01, 7.50000116e-01, 7.50000116e-01, 7.50000116e-01,
7.50002645e-01, 7.50002645e-01, 7.50002645e-01, 7.50002645e-01,
7.50046576e-01, 7.50046576e-01, 7.50046576e-01, 7.50046576e-01,
7.50616761e-01, 7.50616761e-01, 7.50616761e-01, 7.50616761e-01,
7.55893760e-01, 7.55893760e-01, 7.55893760e-01, 7.55893760e-01,
7.88691015e-01, 7.88691015e-01, 7.88691015e-01, 7.88691015e-01,
9.22508524e-01, 9.22508524e-01, 9.22508524e-01, 9.22508524e-01,
1.19424995e+00, 1.19424995e+00, 1.19424995e+00, 1.19424995e+00,
1.37115296e+00, 1.37115296e+00, 1.37115296e+00, 1.37115296e+00,
1.35656186e+00, 1.35656186e+00, 1.35656186e+00, 1.35656186e+00,
1.19624538e+00, 1.19624538e+00, 1.19624538e+00, 1.19624538e+00,
6.97637293e-01, 6.97637293e-01, 6.97637293e-01, 6.97637293e-01,
1.27100170e-01, 1.27100170e-01, 1.27100170e-01, 1.27100170e-01,
1.03412299e-02, 1.03412299e-02, 1.03412299e-02, 1.03412299e-02,
6.53644299e-04, 6.53644299e-04, 6.53644299e-04, 6.53644299e-04,
3.56971103e-05, 3.56971103e-05, 3.56971103e-05, 3.56971103e-05,
1.64522459e-06, 1.64522459e-06, 1.64522459e-06, 1.64522459e-06,
6.25358486e-08, 6.25358486e-08, 6.25358486e-08, 6.25358486e-08,
1.91748504e-09, 1.91748504e-09, 1.91748504e-09, 1.91748504e-09,
4.62606839e-11, 4.62606839e-11, 4.62606839e-11, 4.62606839e-11,
8.51285413e-13, 8.51285413e-13, 8.51285413e-13, 8.51285413e-13,
1.14285693e-14, 1.14285693e-14, 1.14285693e-14, 1.14285693e-14,
9.19950648e-17, 9.19950648e-17, 9.19950648e-17, 9.19950648e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999687, 0.99999687, 0.99999687, 0.99999687,
0.99994489, 0.99994489, 0.99994489, 0.99994489, 0.99927039,
0.99927039, 0.99927039, 0.99927039, 0.99304531, 0.99304531,
0.99304531, 0.99304531, 0.95519679, 0.95519679, 0.95519679,
0.95519679, 0.8168341 , 0.8168341 , 0.8168341 , 0.8168341 ,
0.58819152, 0.58819152, 0.58819152, 0.58819152, 0.49438551,
0.49438551, 0.49438551, 0.49438551, 0.45793166, 0.45793166,
0.45793166, 0.45793166, 0.39260514, 0.39260514, 0.39260514,
0.39260514, 0.23309146, 0.23309146, 0.23309146, 0.23309146,
0.11798708, 0.11798708, 0.11798708, 0.11798708, 0.1013727 ,
0.1013727 , 0.1013727 , 0.1013727 , 0.10008648, 0.10008648,
0.10008648, 0.10008648, 0.10000472, 0.10000472, 0.10000472,
0.10000472, 0.10000022, 0.10000022, 0.10000022, 0.10000022,
0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999967, 0.99999967, 0.99999967,
0.99999967, 0.99999397, 0.99999397, 0.99999397, 0.99999397,
0.99991437, 0.99991437, 0.99991437, 0.99991437, 0.99906962,
0.99906962, 0.99906962, 0.99906962, 0.992598 , 0.992598 ,
0.992598 , 0.992598 , 0.95931079, 0.95931079, 0.95931079,
0.95931079, 0.85365694, 0.85365694, 0.85365694, 0.85365694,
0.69548058, 0.69548058, 0.69548058, 0.69548058, 0.5842581 ,
0.5842581 , 0.5842581 , 0.5842581 , 0.49197492, 0.49197492,
0.49197492, 0.49197492, 0.39210102, 0.39210102, 0.39210102,
0.39210102, 0.27877468, 0.27877468, 0.27877468, 0.27877468,
0.17568186, 0.17568186, 0.17568186, 0.17568186, 0.1316077 ,
0.1316077 , 0.1316077 , 0.1316077 , 0.12553921, 0.12553921,
0.12553921, 0.12553921, 0.12503633, 0.12503633, 0.12503633,
0.12503633, 0.12500214, 0.12500214, 0.12500214, 0.12500214,
0.12500011, 0.12500011, 0.12500011, 0.12500011, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000018e-01, 7.50000018e-01, 7.50000018e-01, 7.50000018e-01,
7.50000395e-01, 7.50000395e-01, 7.50000395e-01, 7.50000395e-01,
7.50007125e-01, 7.50007125e-01, 7.50007125e-01, 7.50007125e-01,
7.50101120e-01, 7.50101120e-01, 7.50101120e-01, 7.50101120e-01,
7.51096094e-01, 7.51096094e-01, 7.51096094e-01, 7.51096094e-01,
7.58695376e-01, 7.58695376e-01, 7.58695376e-01, 7.58695376e-01,
7.98253123e-01, 7.98253123e-01, 7.98253123e-01, 7.98253123e-01,
9.36217768e-01, 9.36217768e-01, 9.36217768e-01, 9.36217768e-01,
1.17874930e+00, 1.17874930e+00, 1.17874930e+00, 1.17874930e+00,
1.35926058e+00, 1.35926058e+00, 1.35926058e+00, 1.35926058e+00,
1.37992227e+00, 1.37992227e+00, 1.37992227e+00, 1.37992227e+00,
1.31852830e+00, 1.31852830e+00, 1.31852830e+00, 1.31852830e+00,
1.09147080e+00, 1.09147080e+00, 1.09147080e+00, 1.09147080e+00,
4.80823248e-01, 4.80823248e-01, 4.80823248e-01, 4.80823248e-01,
6.29020815e-02, 6.29020815e-02, 6.29020815e-02, 6.29020815e-02,
4.74941638e-03, 4.74941638e-03, 4.74941638e-03, 4.74941638e-03,
3.10811782e-04, 3.10811782e-04, 3.10811782e-04, 3.10811782e-04,
1.81866640e-05, 1.81866640e-05, 1.81866640e-05, 1.81866640e-05,
9.31308580e-07, 9.31308580e-07, 9.31308580e-07, 9.31308580e-07,
4.09103671e-08, 4.09103671e-08, 4.09103671e-08, 4.09103671e-08,
1.51483229e-09, 1.51483229e-09, 1.51483229e-09, 1.51483229e-09,
4.65132031e-11, 4.65132031e-11, 4.65132031e-11, 4.65132031e-11,
1.16294442e-12, 1.16294442e-12, 1.16294442e-12, 1.16294442e-12,
2.31530746e-14, 2.31530746e-14, 2.31530746e-14, 2.31530746e-14,
3.45133688e-16, 3.45133688e-16, 3.45133688e-16, 3.45133688e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999953, 0.99999953, 0.99999953,
0.99999953, 0.99999157, 0.99999157, 0.99999157, 0.99999157,
0.99988036, 0.99988036, 0.99988036, 0.99988036, 0.99870367,
0.99870367, 0.99870367, 0.99870367, 0.98975672, 0.98975672,
0.98975672, 0.98975672, 0.94447806, 0.94447806, 0.94447806,
0.94447806, 0.80372375, 0.80372375, 0.80372375, 0.80372375,
0.58659611, 0.58659611, 0.58659611, 0.58659611, 0.49630691,
0.49630691, 0.49630691, 0.49630691, 0.47256565, 0.47256565,
0.47256565, 0.47256565, 0.44649608, 0.44649608, 0.44649608,
0.44649608, 0.35475085, 0.35475085, 0.35475085, 0.35475085,
0.18206373, 0.18206373, 0.18206373, 0.18206373, 0.10858619,
0.10858619, 0.10858619, 0.10858619, 0.10062915, 0.10062915,
0.10062915, 0.10062915, 0.10004112, 0.10004112, 0.10004112,
0.10004112, 0.10000241, 0.10000241, 0.10000241, 0.10000241,
0.10000012, 0.10000012, 0.10000012, 0.10000012, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999907, 0.99999907, 0.99999907,
0.99999907, 0.99998617, 0.99998617, 0.99998617, 0.99998617,
0.99983554, 0.99983554, 0.99983554, 0.99983554, 0.9984902 ,
0.9984902 , 0.9984902 , 0.9984902 , 0.9897648 , 0.9897648 ,
0.9897648 , 0.9897648 , 0.95146278, 0.95146278, 0.95146278,
0.95146278, 0.84522655, 0.84522655, 0.84522655, 0.84522655,
0.69592792, 0.69592792, 0.69592792, 0.69592792, 0.60160526,
0.60160526, 0.60160526, 0.60160526, 0.52681117, 0.52681117,
0.52681117, 0.52681117, 0.44280683, 0.44280683, 0.44280683,
0.44280683, 0.3438762 , 0.3438762 , 0.3438762 , 0.3438762 ,
0.24139758, 0.24139758, 0.24139758, 0.24139758, 0.15433653,
0.15433653, 0.15433653, 0.15433653, 0.12820419, 0.12820419,
0.12820419, 0.12820419, 0.12525101, 0.12525101, 0.12525101,
0.12525101, 0.12501713, 0.12501713, 0.12501713, 0.12501713,
0.12500106, 0.12500106, 0.12500106, 0.12500106, 0.12500006,
0.12500006, 0.12500006, 0.12500006, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000060e-01, 7.50000060e-01, 7.50000060e-01, 7.50000060e-01,
7.50001095e-01, 7.50001095e-01, 7.50001095e-01, 7.50001095e-01,
7.50016352e-01, 7.50016352e-01, 7.50016352e-01, 7.50016352e-01,
7.50194298e-01, 7.50194298e-01, 7.50194298e-01, 7.50194298e-01,
7.51780598e-01, 7.51780598e-01, 7.51780598e-01, 7.51780598e-01,
7.62062621e-01, 7.62062621e-01, 7.62062621e-01, 7.62062621e-01,
8.08036385e-01, 8.08036385e-01, 8.08036385e-01, 8.08036385e-01,
9.48280192e-01, 9.48280192e-01, 9.48280192e-01, 9.48280192e-01,
1.16919832e+00, 1.16919832e+00, 1.16919832e+00, 1.16919832e+00,
1.34151992e+00, 1.34151992e+00, 1.34151992e+00, 1.34151992e+00,
1.38408905e+00, 1.38408905e+00, 1.38408905e+00, 1.38408905e+00,
1.36212724e+00, 1.36212724e+00, 1.36212724e+00, 1.36212724e+00,
1.27575638e+00, 1.27575638e+00, 1.27575638e+00, 1.27575638e+00,
9.46706959e-01, 9.46706959e-01, 9.46706959e-01, 9.46706959e-01,
2.86961496e-01, 2.86961496e-01, 2.86961496e-01, 2.86961496e-01,
2.97471236e-02, 2.97471236e-02, 2.97471236e-02, 2.97471236e-02,
2.18276389e-03, 2.18276389e-03, 2.18276389e-03, 2.18276389e-03,
1.45981809e-04, 1.45981809e-04, 1.45981809e-04, 1.45981809e-04,
8.97326097e-06, 8.97326097e-06, 8.97326097e-06, 8.97326097e-06,
4.95542253e-07, 4.95542253e-07, 4.95542253e-07, 4.95542253e-07,
2.41369077e-08, 2.41369077e-08, 2.41369077e-08, 2.41369077e-08,
1.02173681e-09, 1.02173681e-09, 1.02173681e-09, 1.02173681e-09,
3.71041963e-11, 3.71041963e-11, 3.71041963e-11, 3.71041963e-11,
1.14134185e-12, 1.14134185e-12, 1.14134185e-12, 1.14134185e-12,
2.93180081e-14, 2.93180081e-14, 2.93180081e-14, 2.93180081e-14,
5.89861085e-16, 5.89861085e-16, 5.89861085e-16, 5.89861085e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999993, 0.99999993,
0.99999993, 0.99999993, 0.9999987 , 0.9999987 , 0.9999987 ,
0.9999987 , 0.99998065, 0.99998065, 0.99998065, 0.99998065,
0.99977012, 0.99977012, 0.99977012, 0.99977012, 0.9978949 ,
0.9978949 , 0.9978949 , 0.9978949 , 0.98581938, 0.98581938,
0.98581938, 0.98581938, 0.93364034, 0.93364034, 0.93364034,
0.93364034, 0.79223561, 0.79223561, 0.79223561, 0.79223561,
0.58787464, 0.58787464, 0.58787464, 0.58787464, 0.49421357,
0.49421357, 0.49421357, 0.49421357, 0.47736962, 0.47736962,
0.47736962, 0.47736962, 0.46789435, 0.46789435, 0.46789435,
0.46789435, 0.42797779, 0.42797779, 0.42797779, 0.42797779,
0.30606771, 0.30606771, 0.30606771, 0.30606771, 0.14410239,
0.14410239, 0.14410239, 0.14410239, 0.10398792, 0.10398792,
0.10398792, 0.10398792, 0.10028892, 0.10028892, 0.10028892,
0.10028892, 0.10001931, 0.10001931, 0.10001931, 0.10001931,
0.10000119, 0.10000119, 0.10000119, 0.10000119, 0.10000007,
0.10000007, 0.10000007, 0.10000007, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999986, 0.99999986,
0.99999986, 0.99999986, 0.99999778, 0.99999778, 0.99999778,
0.99999778, 0.99997175, 0.99997175, 0.99997175, 0.99997175,
0.99971141, 0.99971141, 0.99971141, 0.99971141, 0.99770946,
0.99770946, 0.99770946, 0.99770946, 0.98648851, 0.98648851,
0.98648851, 0.98648851, 0.94358959, 0.94358959, 0.94358959,
0.94358959, 0.83747957, 0.83747957, 0.83747957, 0.83747957,
0.69607636, 0.69607636, 0.69607636, 0.69607636, 0.61195392,
0.61195392, 0.61195392, 0.61195392, 0.5520745 , 0.5520745 ,
0.5520745 , 0.5520745 , 0.48227586, 0.48227586, 0.48227586,
0.48227586, 0.39628276, 0.39628276, 0.39628276, 0.39628276,
0.30461516, 0.30461516, 0.30461516, 0.30461516, 0.20942901,
0.20942901, 0.20942901, 0.20942901, 0.14069158, 0.14069158,
0.14069158, 0.14069158, 0.12652847, 0.12652847, 0.12652847,
0.12652847, 0.1251159 , 0.1251159 , 0.1251159 , 0.1251159 ,
0.12500801, 0.12500801, 0.12500801, 0.12500801, 0.12500051,
0.12500051, 0.12500051, 0.12500051, 0.12500003, 0.12500003,
0.12500003, 0.12500003, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000169e-01, 7.50000169e-01, 7.50000169e-01, 7.50000169e-01,
7.50002624e-01, 7.50002624e-01, 7.50002624e-01, 7.50002624e-01,
7.50033404e-01, 7.50033404e-01, 7.50033404e-01, 7.50033404e-01,
7.50341048e-01, 7.50341048e-01, 7.50341048e-01, 7.50341048e-01,
7.52703614e-01, 7.52703614e-01, 7.52703614e-01, 7.52703614e-01,
7.65969457e-01, 7.65969457e-01, 7.65969457e-01, 7.65969457e-01,
8.17910409e-01, 8.17910409e-01, 8.17910409e-01, 8.17910409e-01,
9.59019483e-01, 9.59019483e-01, 9.59019483e-01, 9.59019483e-01,
1.16435988e+00, 1.16435988e+00, 1.16435988e+00, 1.16435988e+00,
1.32431238e+00, 1.32431238e+00, 1.32431238e+00, 1.32431238e+00,
1.37819363e+00, 1.37819363e+00, 1.37819363e+00, 1.37819363e+00,
1.37548447e+00, 1.37548447e+00, 1.37548447e+00, 1.37548447e+00,
1.34495171e+00, 1.34495171e+00, 1.34495171e+00, 1.34495171e+00,
1.21521933e+00, 1.21521933e+00, 1.21521933e+00, 1.21521933e+00,
7.56439760e-01, 7.56439760e-01, 7.56439760e-01, 7.56439760e-01,
1.54532788e-01, 1.54532788e-01, 1.54532788e-01, 1.54532788e-01,
1.38332523e-02, 1.38332523e-02, 1.38332523e-02, 1.38332523e-02,
9.98607774e-04, 9.98607774e-04, 9.98607774e-04, 9.98607774e-04,
6.81041170e-05, 6.81041170e-05, 6.81041170e-05, 6.81041170e-05,
4.33839800e-06, 4.33839800e-06, 4.33839800e-06, 4.33839800e-06,
2.53281003e-07, 2.53281003e-07, 2.53281003e-07, 2.53281003e-07,
1.33255506e-08, 1.33255506e-08, 1.33255506e-08, 1.33255506e-08,
6.23193675e-10, 6.23193675e-10, 6.23193675e-10, 6.23193675e-10,
2.56186446e-11, 2.56186446e-11, 2.56186446e-11, 2.56186446e-11,
9.16383815e-13, 9.16383815e-13, 9.16383815e-13, 9.16383815e-13,
2.82273423e-14, 2.82273423e-14, 2.82273423e-14, 2.82273423e-14,
7.11936272e-16, 7.11936272e-16, 7.11936272e-16, 7.11936272e-16,
9.95777976e-18, 9.95777976e-18, 9.95777976e-18, 9.95777976e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.9999998 , 0.9999998 ,
0.9999998 , 0.9999998 , 0.9999969 , 0.9999969 , 0.9999969 ,
0.9999969 , 0.99996048, 0.99996048, 0.99996048, 0.99996048,
0.99959652, 0.99959652, 0.99959652, 0.99959652, 0.99680533,
0.99680533, 0.99680533, 0.99680533, 0.98127177, 0.98127177,
0.98127177, 0.98127177, 0.92282751, 0.92282751, 0.92282751,
0.92282751, 0.78204719, 0.78204719, 0.78204719, 0.78204719,
0.59144542, 0.59144542, 0.59144542, 0.59144542, 0.49225455,
0.49225455, 0.49225455, 0.49225455, 0.47625652, 0.47625652,
0.47625652, 0.47625652, 0.47479773, 0.47479773, 0.47479773,
0.47479773, 0.46075469, 0.46075469, 0.46075469, 0.46075469,
0.4019023 , 0.4019023 , 0.4019023 , 0.4019023 , 0.25005069,
0.25005069, 0.25005069, 0.25005069, 0.1222868 , 0.1222868 ,
0.1222868 , 0.1222868 , 0.10183971, 0.10183971, 0.10183971,
0.10183971, 0.10013213, 0.10013213, 0.10013213, 0.10013213,
0.10000901, 0.10000901, 0.10000901, 0.10000901, 0.10000057,
0.10000057, 0.10000057, 0.10000057, 0.10000003, 0.10000003,
0.10000003, 0.10000003, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999965, 0.99999965,
0.99999965, 0.99999965, 0.99999524, 0.99999524, 0.99999524,
0.99999524, 0.99994721, 0.99994721, 0.99994721, 0.99994721,
0.99952776, 0.99952776, 0.99952776, 0.99952776, 0.99670338,
0.99670338, 0.99670338, 0.99670338, 0.98280363, 0.98280363,
0.98280363, 0.98280363, 0.93577386, 0.93577386, 0.93577386,
0.93577386, 0.83041599, 0.83041599, 0.83041599, 0.83041599,
0.69625631, 0.69625631, 0.69625631, 0.69625631, 0.61829217,
0.61829217, 0.61829217, 0.61829217, 0.5699253 , 0.5699253 ,
0.5699253 , 0.5699253 , 0.51291693, 0.51291693, 0.51291693,
0.51291693, 0.43877311, 0.43877311, 0.43877311, 0.43877311,
0.35520766, 0.35520766, 0.35520766, 0.35520766, 0.27305597,
0.27305597, 0.27305597, 0.27305597, 0.18148452, 0.18148452,
0.18148452, 0.18148452, 0.13315019, 0.13315019, 0.13315019,
0.13315019, 0.12571382, 0.12571382, 0.12571382, 0.12571382,
0.12505333, 0.12505333, 0.12505333, 0.12505333, 0.12500372,
0.12500372, 0.12500372, 0.12500372, 0.12500024, 0.12500024,
0.12500024, 0.12500024, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
7.50000419e-01, 7.50000419e-01, 7.50000419e-01, 7.50000419e-01,
7.50005630e-01, 7.50005630e-01, 7.50005630e-01, 7.50005630e-01,
7.50062433e-01, 7.50062433e-01, 7.50062433e-01, 7.50062433e-01,
7.50558196e-01, 7.50558196e-01, 7.50558196e-01, 7.50558196e-01,
7.53894015e-01, 7.53894015e-01, 7.53894015e-01, 7.53894015e-01,
7.70379540e-01, 7.70379540e-01, 7.70379540e-01, 7.70379540e-01,
8.27772252e-01, 8.27772252e-01, 8.27772252e-01, 8.27772252e-01,
9.68662085e-01, 9.68662085e-01, 9.68662085e-01, 9.68662085e-01,
1.16220491e+00, 1.16220491e+00, 1.16220491e+00, 1.16220491e+00,
1.31086380e+00, 1.31086380e+00, 1.31086380e+00, 1.31086380e+00,
1.36872585e+00, 1.36872585e+00, 1.36872585e+00, 1.36872585e+00,
1.37564389e+00, 1.37564389e+00, 1.37564389e+00, 1.37564389e+00,
1.36763431e+00, 1.36763431e+00, 1.36763431e+00, 1.36763431e+00,
1.32344547e+00, 1.32344547e+00, 1.32344547e+00, 1.32344547e+00,
1.12324529e+00, 1.12324529e+00, 1.12324529e+00, 1.12324529e+00,
5.43452950e-01, 5.43452950e-01, 5.43452950e-01, 5.43452950e-01,
7.89030941e-02, 7.89030941e-02, 7.89030941e-02, 7.89030941e-02,
6.32477098e-03, 6.32477098e-03, 6.32477098e-03, 6.32477098e-03,
4.56774221e-04, 4.56774221e-04, 4.56774221e-04, 4.56774221e-04,
3.16014322e-05, 3.16014322e-05, 3.16014322e-05, 3.16014322e-05,
2.06840337e-06, 2.06840337e-06, 2.06840337e-06, 2.06840337e-06,
1.25987808e-07, 1.25987808e-07, 1.25987808e-07, 1.25987808e-07,
7.03125054e-09, 7.03125054e-09, 7.03125054e-09, 7.03125054e-09,
3.55048102e-10, 3.55048102e-10, 3.55048102e-10, 3.55048102e-10,
1.60552001e-11, 1.60552001e-11, 1.60552001e-11, 1.60552001e-11,
6.44472443e-13, 6.44472443e-13, 6.44472443e-13, 6.44472443e-13,
2.27342322e-14, 2.27342322e-14, 2.27342322e-14, 2.27342322e-14,
6.57996181e-16, 6.57996181e-16, 6.57996181e-16, 6.57996181e-16,
2.02110955e-17, 2.02110955e-17, 2.02110955e-17, 2.02110955e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.9999995 , 0.9999995 ,
0.9999995 , 0.9999995 , 0.99999334, 0.99999334, 0.99999334,
0.99999334, 0.99992613, 0.99992613, 0.99992613, 0.99992613,
0.9993397 , 0.9993397 , 0.9993397 , 0.9993397 , 0.99540189,
0.99540189, 0.99540189, 0.99540189, 0.97616471, 0.97616471,
0.97616471, 0.97616471, 0.91214742, 0.91214742, 0.91214742,
0.91214742, 0.77293438, 0.77293438, 0.77293438, 0.77293438,
0.59602991, 0.59602991, 0.59602991, 0.59602991, 0.49258015,
0.49258015, 0.49258015, 0.49258015, 0.47304087, 0.47304087,
0.47304087, 0.47304087, 0.47487876, 0.47487876, 0.47487876,
0.47487876, 0.47229223, 0.47229223, 0.47229223, 0.47229223,
0.44924829, 0.44924829, 0.44924829, 0.44924829, 0.3670158 ,
0.3670158 , 0.3670158 , 0.3670158 , 0.1964563 , 0.1964563 ,
0.1964563 , 0.1964563 , 0.11088441, 0.11088441, 0.11088441,
0.11088441, 0.10083843, 0.10083843, 0.10083843, 0.10083843,
0.10006043, 0.10006043, 0.10006043, 0.10006043, 0.10000418,
0.10000418, 0.10000418, 0.10000418, 0.10000027, 0.10000027,
0.10000027, 0.10000027, 0.10000002, 0.10000002, 0.10000002,
0.10000002, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999921, 0.99999921,
0.99999921, 0.99999921, 0.99999063, 0.99999063, 0.99999063,
0.99999063, 0.99990804, 0.99990804, 0.99990804, 0.99990804,
0.99926917, 0.99926917, 0.99926917, 0.99926917, 0.99545263,
0.99545263, 0.99545263, 0.99545263, 0.97875109, 0.97875109,
0.97875109, 0.97875109, 0.92808061, 0.92808061, 0.92808061,
0.92808061, 0.82401271, 0.82401271, 0.82401271, 0.82401271,
0.69646404, 0.69646404, 0.69646404, 0.69646404, 0.62232848,
0.62232848, 0.62232848, 0.62232848, 0.58232539, 0.58232539,
0.58232539, 0.58232539, 0.53664687, 0.53664687, 0.53664687,
0.53664687, 0.47382656, 0.47382656, 0.47382656, 0.47382656,
0.3966429 , 0.3966429 , 0.3966429 , 0.3966429 , 0.32215049,
0.32215049, 0.32215049, 0.32215049, 0.24536837, 0.24536837,
0.24536837, 0.24536837, 0.15939671, 0.15939671, 0.15939671,
0.15939671, 0.1290282 , 0.1290282 , 0.1290282 , 0.1290282 ,
0.12533162, 0.12533162, 0.12533162, 0.12533162, 0.12502449,
0.12502449, 0.12502449, 0.12502449, 0.12500172, 0.12500172,
0.12500172, 0.12500172, 0.12500012, 0.12500012, 0.12500012,
0.12500012, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
7.50000067e-01, 7.50000067e-01, 7.50000067e-01, 7.50000067e-01,
7.50000937e-01, 7.50000937e-01, 7.50000937e-01, 7.50000937e-01,
7.50011082e-01, 7.50011082e-01, 7.50011082e-01, 7.50011082e-01,
7.50108766e-01, 7.50108766e-01, 7.50108766e-01, 7.50108766e-01,
7.50863989e-01, 7.50863989e-01, 7.50863989e-01, 7.50863989e-01,
7.55375416e-01, 7.55375416e-01, 7.55375416e-01, 7.55375416e-01,
7.75249150e-01, 7.75249150e-01, 7.75249150e-01, 7.75249150e-01,
8.37539996e-01, 8.37539996e-01, 8.37539996e-01, 8.37539996e-01,
9.77371489e-01, 9.77371489e-01, 9.77371489e-01, 9.77371489e-01,
1.16096785e+00, 1.16096785e+00, 1.16096785e+00, 1.16096785e+00,
1.30163748e+00, 1.30163748e+00, 1.30163748e+00, 1.30163748e+00,
1.35906515e+00, 1.35906515e+00, 1.35906515e+00, 1.35906515e+00,
1.37165137e+00, 1.37165137e+00, 1.37165137e+00, 1.37165137e+00,
1.37159981e+00, 1.37159981e+00, 1.37159981e+00, 1.37159981e+00,
1.36020817e+00, 1.36020817e+00, 1.36020817e+00, 1.36020817e+00,
1.28954477e+00, 1.28954477e+00, 1.28954477e+00, 1.28954477e+00,
9.92965165e-01, 9.92965165e-01, 9.92965165e-01, 9.92965165e-01,
3.41054294e-01, 3.41054294e-01, 3.41054294e-01, 3.41054294e-01,
3.78450976e-02, 3.78450976e-02, 3.78450976e-02, 3.78450976e-02,
2.89520706e-03, 2.89520706e-03, 2.89520706e-03, 2.89520706e-03,
2.08927779e-04, 2.08927779e-04, 2.08927779e-04, 2.08927779e-04,
1.46114029e-05, 1.46114029e-05, 1.46114029e-05, 1.46114029e-05,
9.77146281e-07, 9.77146281e-07, 9.77146281e-07, 9.77146281e-07,
6.15180946e-08, 6.15180946e-08, 6.15180946e-08, 6.15180946e-08,
3.59623288e-09, 3.59623288e-09, 3.59623288e-09, 3.59623288e-09,
1.92933425e-10, 1.92933425e-10, 1.92933425e-10, 1.92933425e-10,
9.40773578e-12, 9.40773578e-12, 9.40773578e-12, 9.40773578e-12,
4.13570502e-13, 4.13570502e-13, 4.13570502e-13, 4.13570502e-13,
1.62288270e-14, 1.62288270e-14, 1.62288270e-14, 1.62288270e-14,
5.61211316e-16, 5.61211316e-16, 5.61211316e-16, 5.61211316e-16,
1.04414501e-17, 1.04414501e-17, 1.04414501e-17, 1.04414501e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999992,
0.99999992, 0.99999992, 0.99999992, 0.99999889, 0.99999889,
0.99999889, 0.99999889, 0.99998689, 0.99998689, 0.99998689,
0.99998689, 0.99987131, 0.99987131, 0.99987131, 0.99987131,
0.99897815, 0.99897815, 0.99897815, 0.99897815, 0.99365816,
0.99365816, 0.99365816, 0.99365816, 0.9705574 , 0.9705574 ,
0.9705574 , 0.9705574 , 0.90168105, 0.90168105, 0.90168105,
0.90168105, 0.76473302, 0.76473302, 0.76473302, 0.76473302,
0.60049273, 0.60049273, 0.60049273, 0.60049273, 0.49550855,
0.49550855, 0.49550855, 0.49550855, 0.47006662, 0.47006662,
0.47006662, 0.47006662, 0.47260804, 0.47260804, 0.47260804,
0.47260804, 0.47428975, 0.47428975, 0.47428975, 0.47428975,
0.46714499, 0.46714499, 0.46714499, 0.46714499, 0.43304518,
0.43304518, 0.43304518, 0.43304518, 0.32159783, 0.32159783,
0.32159783, 0.32159783, 0.15419082, 0.15419082, 0.15419082,
0.15419082, 0.1050973 , 0.1050973 , 0.1050973 , 0.1050973 ,
0.10038332, 0.10038332, 0.10038332, 0.10038332, 0.10002764,
0.10002764, 0.10002764, 0.10002764, 0.10000193, 0.10000193,
0.10000193, 0.10000193, 0.10000013, 0.10000013, 0.10000013,
0.10000013, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999837, 0.99999837,
0.99999837, 0.99999837, 0.9999828 , 0.9999828 , 0.9999828 ,
0.9999828 , 0.99984871, 0.99984871, 0.99984871, 0.99984871,
0.99891955, 0.99891955, 0.99891955, 0.99891955, 0.99394315,
0.99394315, 0.99394315, 0.99394315, 0.97437567, 0.97437567,
0.97437567, 0.97437567, 0.92055976, 0.92055976, 0.92055976,
0.92055976, 0.81822558, 0.81822558, 0.81822558, 0.81822558,
0.69670438, 0.69670438, 0.69670438, 0.69670438, 0.62488661,
0.62488661, 0.62488661, 0.62488661, 0.59118008, 0.59118008,
0.59118008, 0.59118008, 0.5544861 , 0.5544861 , 0.5544861 ,
0.5544861 , 0.50269605, 0.50269605, 0.50269605, 0.50269605,
0.4331649 , 0.4331649 , 0.4331649 , 0.4331649 , 0.36021979,
0.36021979, 0.36021979, 0.36021979, 0.29637809, 0.29637809,
0.29637809, 0.29637809, 0.21820395, 0.21820395, 0.21820395,
0.21820395, 0.14411847, 0.14411847, 0.14411847, 0.14411847,
0.126943 , 0.126943 , 0.126943 , 0.126943 , 0.12515306,
0.12515306, 0.12515306, 0.12515306, 0.12501123, 0.12501123,
0.12501123, 0.12501123, 0.1250008 , 0.1250008 , 0.1250008 ,
0.1250008 , 0.12500005, 0.12500005, 0.12500005, 0.12500005,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
7.50001925e-01, 7.50001925e-01, 7.50001925e-01, 7.50001925e-01,
7.50020345e-01, 7.50020345e-01, 7.50020345e-01, 7.50020345e-01,
7.50178950e-01, 7.50178950e-01, 7.50178950e-01, 7.50178950e-01,
7.51277500e-01, 7.51277500e-01, 7.51277500e-01, 7.51277500e-01,
7.57165560e-01, 7.57165560e-01, 7.57165560e-01, 7.57165560e-01,
7.80529643e-01, 7.80529643e-01, 7.80529643e-01, 7.80529643e-01,
8.47148531e-01, 8.47148531e-01, 8.47148531e-01, 8.47148531e-01,
9.85270426e-01, 9.85270426e-01, 9.85270426e-01, 9.85270426e-01,
1.15957712e+00, 1.15957712e+00, 1.15957712e+00, 1.15957712e+00,
1.29566032e+00, 1.29566032e+00, 1.29566032e+00, 1.29566032e+00,
1.35118587e+00, 1.35118587e+00, 1.35118587e+00, 1.35118587e+00,
1.36601672e+00, 1.36601672e+00, 1.36601672e+00, 1.36601672e+00,
1.36997305e+00, 1.36997305e+00, 1.36997305e+00, 1.36997305e+00,
1.36942484e+00, 1.36942484e+00, 1.36942484e+00, 1.36942484e+00,
1.34862905e+00, 1.34862905e+00, 1.34862905e+00, 1.34862905e+00,
1.23673227e+00, 1.23673227e+00, 1.23673227e+00, 1.23673227e+00,
8.18685529e-01, 8.18685529e-01, 8.18685529e-01, 8.18685529e-01,
1.89365930e-01, 1.89365930e-01, 1.89365930e-01, 1.89365930e-01,
1.77483277e-02, 1.77483277e-02, 1.77483277e-02, 1.77483277e-02,
1.32231275e-03, 1.32231275e-03, 1.32231275e-03, 1.32231275e-03,
9.55485885e-05, 9.55485885e-05, 9.55485885e-05, 9.55485885e-05,
6.74007898e-06, 6.74007898e-06, 6.74007898e-06, 6.74007898e-06,
4.58238639e-07, 4.58238639e-07, 4.58238639e-07, 4.58238639e-07,
2.96179808e-08, 2.96179808e-08, 2.96179808e-08, 2.96179808e-08,
1.79683460e-09, 1.79683460e-09, 1.79683460e-09, 1.79683460e-09,
1.01205791e-10, 1.01205791e-10, 1.01205791e-10, 1.01205791e-10,
5.24439143e-12, 5.24439143e-12, 5.24439143e-12, 5.24439143e-12,
2.48169579e-13, 2.48169579e-13, 2.48169579e-13, 2.48169579e-13,
1.06030558e-14, 1.06030558e-14, 1.06030558e-14, 1.06030558e-14,
3.88917738e-16, 3.88917738e-16, 3.88917738e-16, 3.88917738e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999982,
0.99999982, 0.99999982, 0.99999982, 0.99999772, 0.99999772,
0.99999772, 0.99999772, 0.99997593, 0.99997593, 0.99997593,
0.99997593, 0.99978828, 0.99978828, 0.99978828, 0.99978828,
0.99848943, 0.99848943, 0.99848943, 0.99848943, 0.99155515,
0.99155515, 0.99155515, 0.99155515, 0.964514 , 0.964514 ,
0.964514 , 0.964514 , 0.89148856, 0.89148856, 0.89148856,
0.89148856, 0.75731665, 0.75731665, 0.75731665, 0.75731665,
0.6041739 , 0.6041739 , 0.6041739 , 0.6041739 , 0.50038286,
0.50038286, 0.50038286, 0.50038286, 0.46850918, 0.46850918,
0.46850918, 0.46850918, 0.46942557, 0.46942557, 0.46942557,
0.46942557, 0.47328763, 0.47328763, 0.47328763, 0.47328763,
0.47194986, 0.47194986, 0.47194986, 0.47194986, 0.46019101,
0.46019101, 0.46019101, 0.46019101, 0.41012287, 0.41012287,
0.41012287, 0.41012287, 0.26737713, 0.26737713, 0.26737713,
0.26737713, 0.12780983, 0.12780983, 0.12780983, 0.12780983,
0.1023651 , 0.1023651 , 0.1023651 , 0.1023651 , 0.10017499,
0.10017499, 0.10017499, 0.10017499, 0.10001264, 0.10001264,
0.10001264, 0.10001264, 0.10000089, 0.10000089, 0.10000089,
0.10000089, 0.10000006, 0.10000006, 0.10000006, 0.10000006,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999972,
0.99999972, 0.99999972, 0.99999972, 0.99999688, 0.99999688,
0.99999688, 0.99999688, 0.99997019, 0.99997019, 0.99997019,
0.99997019, 0.99976264, 0.99976264, 0.99976264, 0.99976264,
0.99846262, 0.99846262, 0.99846262, 0.99846262, 0.9921662 ,
0.9921662 , 0.9921662 , 0.9921662 , 0.96972408, 0.96972408,
0.96972408, 0.96972408, 0.91324871, 0.91324871, 0.91324871,
0.91324871, 0.81299809, 0.81299809, 0.81299809, 0.81299809,
0.69707716, 0.69707716, 0.69707716, 0.69707716, 0.6262992 ,
0.6262992 , 0.6262992 , 0.6262992 , 0.59760474, 0.59760474,
0.59760474, 0.59760474, 0.56779664, 0.56779664, 0.56779664,
0.56779664, 0.52592744, 0.52592744, 0.52592744, 0.52592744,
0.46563753, 0.46563753, 0.46563753, 0.46563753, 0.39326426,
0.39326426, 0.39326426, 0.39326426, 0.33284785, 0.33284785,
0.33284785, 0.33284785, 0.27504145, 0.27504145, 0.27504145,
0.27504145, 0.19106843, 0.19106843, 0.19106843, 0.19106843,
0.13511522, 0.13511522, 0.13511522, 0.13511522, 0.12591513,
0.12591513, 0.12591513, 0.12591513, 0.12507031, 0.12507031,
0.12507031, 0.12507031, 0.12500515, 0.12500515, 0.12500515,
0.12500515, 0.12500037, 0.12500037, 0.12500037, 0.12500037,
0.12500003, 0.12500003, 0.12500003, 0.12500003, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
7.50000329e-01, 7.50000329e-01, 7.50000329e-01, 7.50000329e-01,
7.50003695e-01, 7.50003695e-01, 7.50003695e-01, 7.50003695e-01,
7.50035264e-01, 7.50035264e-01, 7.50035264e-01, 7.50035264e-01,
7.50280759e-01, 7.50280759e-01, 7.50280759e-01, 7.50280759e-01,
7.51818086e-01, 7.51818086e-01, 7.51818086e-01, 7.51818086e-01,
7.59276172e-01, 7.59276172e-01, 7.59276172e-01, 7.59276172e-01,
7.86169462e-01, 7.86169462e-01, 7.86169462e-01, 7.86169462e-01,
8.56546408e-01, 8.56546408e-01, 8.56546408e-01, 8.56546408e-01,
9.92456196e-01, 9.92456196e-01, 9.92456196e-01, 9.92456196e-01,
1.15763323e+00, 1.15763323e+00, 1.15763323e+00, 1.15763323e+00,
1.29146040e+00, 1.29146040e+00, 1.29146040e+00, 1.29146040e+00,
1.34573538e+00, 1.34573538e+00, 1.34573538e+00, 1.34573538e+00,
1.36098136e+00, 1.36098136e+00, 1.36098136e+00, 1.36098136e+00,
1.36604284e+00, 1.36604284e+00, 1.36604284e+00, 1.36604284e+00,
1.36966028e+00, 1.36966028e+00, 1.36966028e+00, 1.36966028e+00,
1.36622633e+00, 1.36622633e+00, 1.36622633e+00, 1.36622633e+00,
1.32998311e+00, 1.32998311e+00, 1.32998311e+00, 1.32998311e+00,
1.15597656e+00, 1.15597656e+00, 1.15597656e+00, 1.15597656e+00,
6.12942776e-01, 6.12942776e-01, 6.12942776e-01, 6.12942776e-01,
9.84564756e-02, 9.84564756e-02, 9.84564756e-02, 9.84564756e-02,
8.15622587e-03, 8.15622587e-03, 8.15622587e-03, 8.15622587e-03,
6.03159348e-04, 6.03159348e-04, 6.03159348e-04, 6.03159348e-04,
4.37065832e-05, 4.37065832e-05, 4.37065832e-05, 4.37065832e-05,
3.10316624e-06, 3.10316624e-06, 3.10316624e-06, 3.10316624e-06,
2.13754454e-07, 2.13754454e-07, 2.13754454e-07, 2.13754454e-07,
1.41094631e-08, 1.41094631e-08, 1.41094631e-08, 1.41094631e-08,
8.82092666e-10, 8.82092666e-10, 8.82092666e-10, 8.82092666e-10,
5.16973157e-11, 5.16973157e-11, 5.16973157e-11, 5.16973157e-11,
2.81588859e-12, 2.81588859e-12, 2.81588859e-12, 2.81588859e-12,
1.41485550e-13, 1.41485550e-13, 1.41485550e-13, 1.41485550e-13,
6.51607025e-15, 6.51607025e-15, 6.51607025e-15, 6.51607025e-15,
2.40152978e-16, 2.40152978e-16, 2.40152978e-16, 2.40152978e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999961,
0.99999961, 0.99999961, 0.99999961, 0.99999563, 0.99999563,
0.99999563, 0.99999563, 0.99995828, 0.99995828, 0.99995828,
0.99995828, 0.99966785, 0.99966785, 0.99966785, 0.99966785,
0.99785087, 0.99785087, 0.99785087, 0.99785087, 0.98908149,
0.98908149, 0.98908149, 0.98908149, 0.9581009 , 0.9581009 ,
0.9581009 , 0.9581009 , 0.88161392, 0.88161392, 0.88161392,
0.88161392, 0.75058451, 0.75058451, 0.75058451, 0.75058451,
0.60688233, 0.60688233, 0.60688233, 0.60688233, 0.50620558,
0.50620558, 0.50620558, 0.50620558, 0.46870616, 0.46870616,
0.46870616, 0.46870616, 0.46692176, 0.46692176, 0.46692176,
0.46692176, 0.47084207, 0.47084207, 0.47084207, 0.47084207,
0.47212989, 0.47212989, 0.47212989, 0.47212989, 0.46881527,
0.46881527, 0.46881527, 0.46881527, 0.45065004, 0.45065004,
0.45065004, 0.45065004, 0.37876151, 0.37876151, 0.37876151,
0.37876151, 0.21224192, 0.21224192, 0.21224192, 0.21224192,
0.11373333, 0.11373333, 0.11373333, 0.11373333, 0.10108205,
0.10108205, 0.10108205, 0.10108205, 0.1000798 , 0.1000798 ,
0.1000798 , 0.1000798 , 0.10000578, 0.10000578, 0.10000578,
0.10000578, 0.10000041, 0.10000041, 0.10000041, 0.10000041,
0.10000003, 0.10000003, 0.10000003, 0.10000003, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999945,
0.99999945, 0.99999945, 0.99999945, 0.99999434, 0.99999434,
0.99999434, 0.99999434, 0.99995077, 0.99995077, 0.99995077,
0.99995077, 0.99964227, 0.99964227, 0.99964227, 0.99964227,
0.99788241, 0.99788241, 0.99788241, 0.99788241, 0.99011845,
0.99011845, 0.99011845, 0.99011845, 0.96484327, 0.96484327,
0.96484327, 0.96484327, 0.90617454, 0.90617454, 0.90617454,
0.90617454, 0.80826973, 0.80826973, 0.80826973, 0.80826973,
0.69774371, 0.69774371, 0.69774371, 0.69774371, 0.62678051,
0.62678051, 0.62678051, 0.62678051, 0.60206381, 0.60206381,
0.60206381, 0.60206381, 0.57792713, 0.57792713, 0.57792713,
0.57792713, 0.54425972, 0.54425972, 0.54425972, 0.54425972,
0.49346931, 0.49346931, 0.49346931, 0.49346931, 0.42544549,
0.42544549, 0.42544549, 0.42544549, 0.36171435, 0.36171435,
0.36171435, 0.36171435, 0.31197099, 0.31197099, 0.31197099,
0.31197099, 0.25437815, 0.25437815, 0.25437815, 0.25437815,
0.16685114, 0.16685114, 0.16685114, 0.16685114, 0.13005985,
0.13005985, 0.13005985, 0.13005985, 0.1254259 , 0.1254259 ,
0.1254259 , 0.1254259 , 0.12503221, 0.12503221, 0.12503221,
0.12503221, 0.12500236, 0.12500236, 0.12500236, 0.12500236,
0.12500017, 0.12500017, 0.12500017, 0.12500017, 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
7.50000056e-01, 7.50000056e-01, 7.50000056e-01, 7.50000056e-01,
7.50000657e-01, 7.50000657e-01, 7.50000657e-01, 7.50000657e-01,
7.50006699e-01, 7.50006699e-01, 7.50006699e-01, 7.50006699e-01,
7.50058238e-01, 7.50058238e-01, 7.50058238e-01, 7.50058238e-01,
7.50423153e-01, 7.50423153e-01, 7.50423153e-01, 7.50423153e-01,
7.52504789e-01, 7.52504789e-01, 7.52504789e-01, 7.52504789e-01,
7.61712941e-01, 7.61712941e-01, 7.61712941e-01, 7.61712941e-01,
7.92115818e-01, 7.92115818e-01, 7.92115818e-01, 7.92115818e-01,
8.65693722e-01, 8.65693722e-01, 8.65693722e-01, 8.65693722e-01,
9.99009811e-01, 9.99009811e-01, 9.99009811e-01, 9.99009811e-01,
1.15520654e+00, 1.15520654e+00, 1.15520654e+00, 1.15520654e+00,
1.28768450e+00, 1.28768450e+00, 1.28768450e+00, 1.28768450e+00,
1.34268320e+00, 1.34268320e+00, 1.34268320e+00, 1.34268320e+00,
1.35715119e+00, 1.35715119e+00, 1.35715119e+00, 1.35715119e+00,
1.36145245e+00, 1.36145245e+00, 1.36145245e+00, 1.36145245e+00,
1.36744320e+00, 1.36744320e+00, 1.36744320e+00, 1.36744320e+00,
1.36938027e+00, 1.36938027e+00, 1.36938027e+00, 1.36938027e+00,
1.36032906e+00, 1.36032906e+00, 1.36032906e+00, 1.36032906e+00,
1.30083630e+00, 1.30083630e+00, 1.30083630e+00, 1.30083630e+00,
1.03904720e+00, 1.03904720e+00, 1.03904720e+00, 1.03904720e+00,
4.03867617e-01, 4.03867617e-01, 4.03867617e-01, 4.03867617e-01,
4.78324169e-02, 4.78324169e-02, 4.78324169e-02, 4.78324169e-02,
3.73133151e-03, 3.73133151e-03, 3.73133151e-03, 3.73133151e-03,
2.75051151e-04, 2.75051151e-04, 2.75051151e-04, 2.75051151e-04,
1.99786506e-05, 1.99786506e-05, 1.99786506e-05, 1.99786506e-05,
1.42705014e-06, 1.42705014e-06, 1.42705014e-06, 1.42705014e-06,
9.93370281e-08, 9.93370281e-08, 9.93370281e-08, 9.93370281e-08,
6.66943143e-09, 6.66943143e-09, 6.66943143e-09, 6.66943143e-09,
4.27344831e-10, 4.27344831e-10, 4.27344831e-10, 4.27344831e-10,
2.58814547e-11, 2.58814547e-11, 2.58814547e-11, 2.58814547e-11,
1.46936578e-12, 1.46936578e-12, 1.46936578e-12, 1.46936578e-12,
7.76106587e-14, 7.76106587e-14, 7.76106587e-14, 7.76106587e-14,
3.75314846e-15, 3.75314846e-15, 3.75314846e-15, 3.75314846e-15,
1.59879132e-16, 1.59879132e-16, 1.59879132e-16, 1.59879132e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999922,
0.99999922, 0.99999922, 0.99999922, 0.99999207, 0.99999207,
0.99999207, 0.99999207, 0.99993109, 0.99993109, 0.99993109,
0.99993109, 0.99949942, 0.99949942, 0.99949942, 0.99949942,
0.9970403 , 0.9970403 , 0.9970403 , 0.9970403 , 0.98623335,
0.98623335, 0.98623335, 0.98623335, 0.95138454, 0.95138454,
0.95138454, 0.95138454, 0.87208823, 0.87208823, 0.87208823,
0.87208823, 0.74445435, 0.74445435, 0.74445435, 0.74445435,
0.60875561, 0.60875561, 0.60875561, 0.60875561, 0.51204856,
0.51204856, 0.51204856, 0.51204856, 0.47069723, 0.47069723,
0.47069723, 0.47069723, 0.46531969, 0.46531969, 0.46531969,
0.46531969, 0.46797682, 0.46797682, 0.46797682, 0.46797682,
0.47094798, 0.47094798, 0.47094798, 0.47094798, 0.47050583,
0.47050583, 0.47050583, 0.47050583, 0.4648433 , 0.4648433 ,
0.4648433 , 0.4648433 , 0.43679273, 0.43679273, 0.43679273,
0.43679273, 0.33696764, 0.33696764, 0.33696764, 0.33696764,
0.16596212, 0.16596212, 0.16596212, 0.16596212, 0.10647712,
0.10647712, 0.10647712, 0.10647712, 0.10049417, 0.10049417,
0.10049417, 0.10049417, 0.10003639, 0.10003639, 0.10003639,
0.10003639, 0.10000264, 0.10000264, 0.10000264, 0.10000264,
0.10000019, 0.10000019, 0.10000019, 0.10000019, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999895,
0.99999895, 0.99999895, 0.99999895, 0.99999022, 0.99999022,
0.99999022, 0.99999022, 0.99992199, 0.99992199, 0.99992199,
0.99992199, 0.99947912, 0.99947912, 0.99947912, 0.99947912,
0.99716379, 0.99716379, 0.99716379, 0.99716379, 0.98780171,
0.98780171, 0.98780171, 0.98780171, 0.95977919, 0.95977919,
0.95977919, 0.95977919, 0.899356 , 0.899356 , 0.899356 ,
0.899356 , 0.80398103, 0.80398103, 0.80398103, 0.80398103,
0.69885064, 0.69885064, 0.69885064, 0.69885064, 0.62663048,
0.62663048, 0.62663048, 0.62663048, 0.60456203, 0.60456203,
0.60456203, 0.60456203, 0.58574218, 0.58574218, 0.58574218,
0.58574218, 0.55889671, 0.55889671, 0.55889671, 0.55889671,
0.51652074, 0.51652074, 0.51652074, 0.51652074, 0.45677399,
0.45677399, 0.45677399, 0.45677399, 0.38843992, 0.38843992,
0.38843992, 0.38843992, 0.33857154, 0.33857154, 0.33857154,
0.33857154, 0.2958245 , 0.2958245 , 0.2958245 , 0.2958245 ,
0.23037144, 0.23037144, 0.23037144, 0.23037144, 0.14866712,
0.14866712, 0.14866712, 0.14866712, 0.12746378, 0.12746378,
0.12746378, 0.12746378, 0.12519715, 0.12519715, 0.12519715,
0.12519715, 0.12501472, 0.12501472, 0.12501472, 0.12501472,
0.12500108, 0.12500108, 0.12500108, 0.12500108, 0.12500008,
0.12500008, 0.12500008, 0.12500008, 0.12500001, 0.12500001,
0.12500001, 0.12500001, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000115e-01, 7.50000115e-01, 7.50000115e-01, 7.50000115e-01,
7.50001238e-01, 7.50001238e-01, 7.50001238e-01, 7.50001238e-01,
7.50011569e-01, 7.50011569e-01, 7.50011569e-01, 7.50011569e-01,
7.50092289e-01, 7.50092289e-01, 7.50092289e-01, 7.50092289e-01,
7.50616160e-01, 7.50616160e-01, 7.50616160e-01, 7.50616160e-01,
7.53355737e-01, 7.53355737e-01, 7.53355737e-01, 7.53355737e-01,
7.64475707e-01, 7.64475707e-01, 7.64475707e-01, 7.64475707e-01,
7.98316114e-01, 7.98316114e-01, 7.98316114e-01, 7.98316114e-01,
8.74560291e-01, 8.74560291e-01, 8.74560291e-01, 8.74560291e-01,
1.00500047e+00, 1.00500047e+00, 1.00500047e+00, 1.00500047e+00,
1.15260232e+00, 1.15260232e+00, 1.15260232e+00, 1.15260232e+00,
1.28340256e+00, 1.28340256e+00, 1.28340256e+00, 1.28340256e+00,
1.34114330e+00, 1.34114330e+00, 1.34114330e+00, 1.34114330e+00,
1.35501138e+00, 1.35501138e+00, 1.35501138e+00, 1.35501138e+00,
1.35810478e+00, 1.35810478e+00, 1.35810478e+00, 1.35810478e+00,
1.36336774e+00, 1.36336774e+00, 1.36336774e+00, 1.36336774e+00,
1.36847879e+00, 1.36847879e+00, 1.36847879e+00, 1.36847879e+00,
1.36811377e+00, 1.36811377e+00, 1.36811377e+00, 1.36811377e+00,
1.35072599e+00, 1.35072599e+00, 1.35072599e+00, 1.35072599e+00,
1.25426560e+00, 1.25426560e+00, 1.25426560e+00, 1.25426560e+00,
8.79763139e-01, 8.79763139e-01, 8.79763139e-01, 8.79763139e-01,
2.32057473e-01, 2.32057473e-01, 2.32057473e-01, 2.32057473e-01,
2.26258785e-02, 2.26258785e-02, 2.26258785e-02, 2.26258785e-02,
1.70706147e-03, 1.70706147e-03, 1.70706147e-03, 1.70706147e-03,
1.25313284e-04, 1.25313284e-04, 1.25313284e-04, 1.25313284e-04,
9.12735833e-06, 9.12735833e-06, 9.12735833e-06, 9.12735833e-06,
6.55213907e-07, 6.55213907e-07, 6.55213907e-07, 6.55213907e-07,
4.60110799e-08, 4.60110799e-08, 4.60110799e-08, 4.60110799e-08,
3.13257583e-09, 3.13257583e-09, 3.13257583e-09, 3.13257583e-09,
2.04833966e-10, 2.04833966e-10, 2.04833966e-10, 2.04833966e-10,
1.27491473e-11, 1.27491473e-11, 1.27491473e-11, 1.27491473e-11,
7.49384168e-13, 7.49384168e-13, 7.49384168e-13, 7.49384168e-13,
4.12715433e-14, 4.12715433e-14, 4.12715433e-14, 4.12715433e-14,
2.08438071e-15, 2.08438071e-15, 2.08438071e-15, 2.08438071e-15,
6.95966513e-17, 6.95966513e-17, 6.95966513e-17, 6.95966513e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999854,
0.99999854, 0.99999854, 0.99999854, 0.99998631, 0.99998631,
0.99998631, 0.99998631, 0.99989081, 0.99989081, 0.99989081,
0.99989081, 0.99927118, 0.99927118, 0.99927118, 0.99927118,
0.99603677, 0.99603677, 0.99603677, 0.99603677, 0.98301421,
0.98301421, 0.98301421, 0.98301421, 0.94442958, 0.94442958,
0.94442958, 0.94442958, 0.86293221, 0.86293221, 0.86293221,
0.86293221, 0.73885742, 0.73885742, 0.73885742, 0.73885742,
0.61009357, 0.61009357, 0.61009357, 0.61009357, 0.51726091,
0.51726091, 0.51726091, 0.51726091, 0.47391825, 0.47391825,
0.47391825, 0.47391825, 0.46487842, 0.46487842, 0.46487842,
0.46487842, 0.46589916, 0.46589916, 0.46589916, 0.46589916,
0.46870505, 0.46870505, 0.46870505, 0.46870505, 0.47008932,
0.47008932, 0.47008932, 0.47008932, 0.4686757 , 0.4686757 ,
0.4686757 , 0.4686757 , 0.45927249, 0.45927249, 0.45927249,
0.45927249, 0.41693776, 0.41693776, 0.41693776, 0.41693776,
0.28500491, 0.28500491, 0.28500491, 0.28500491, 0.13470714,
0.13470714, 0.13470714, 0.13470714, 0.10302215, 0.10302215,
0.10302215, 0.10302215, 0.10022593, 0.10022593, 0.10022593,
0.10022593, 0.10001658, 0.10001658, 0.10001658, 0.10001658,
0.10000121, 0.10000121, 0.10000121, 0.10000121, 0.10000009,
0.10000009, 0.10000009, 0.10000009, 0.10000001, 0.10000001,
0.10000001, 0.10000001, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999981, 0.99999981, 0.99999981, 0.99999981, 0.99999812,
0.99999812, 0.99999812, 0.99999812, 0.99998381, 0.99998381,
0.99998381, 0.99998381, 0.99988072, 0.99988072, 0.99988072,
0.99988072, 0.99926394, 0.99926394, 0.99926394, 0.99926394,
0.99629293, 0.99629293, 0.99629293, 0.99629293, 0.98522251,
0.98522251, 0.98522251, 0.98522251, 0.95457584, 0.95457584,
0.95457584, 0.95457584, 0.89280503, 0.89280503, 0.89280503,
0.89280503, 0.80007672, 0.80007672, 0.80007672, 0.80007672,
0.70045666, 0.70045666, 0.70045666, 0.70045666, 0.62631673,
0.62631673, 0.62631673, 0.62631673, 0.60514204, 0.60514204,
0.60514204, 0.60514204, 0.59141774, 0.59141774, 0.59141774,
0.59141774, 0.57060546, 0.57060546, 0.57060546, 0.57060546,
0.53581477, 0.53581477, 0.53581477, 0.53581477, 0.48414835,
0.48414835, 0.48414835, 0.48414835, 0.41731063, 0.41731063,
0.41731063, 0.41731063, 0.36078704, 0.36078704, 0.36078704,
0.36078704, 0.32184882, 0.32184882, 0.32184882, 0.32184882,
0.28122767, 0.28122767, 0.28122767, 0.28122767, 0.20285998,
0.20285998, 0.20285998, 0.20285998, 0.13769277, 0.13769277,
0.13769277, 0.13769277, 0.12617394, 0.12617394, 0.12617394,
0.12617394, 0.12509074, 0.12509074, 0.12509074, 0.12509074,
0.12500673, 0.12500673, 0.12500673, 0.12500673, 0.12500049,
0.12500049, 0.12500049, 0.12500049, 0.12500004, 0.12500004,
0.12500004, 0.12500004, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000020e-01, 7.50000020e-01, 7.50000020e-01, 7.50000020e-01,
7.50000224e-01, 7.50000224e-01, 7.50000224e-01, 7.50000224e-01,
7.50002223e-01, 7.50002223e-01, 7.50002223e-01, 7.50002223e-01,
7.50019160e-01, 7.50019160e-01, 7.50019160e-01, 7.50019160e-01,
7.50141119e-01, 7.50141119e-01, 7.50141119e-01, 7.50141119e-01,
7.50870743e-01, 7.50870743e-01, 7.50870743e-01, 7.50870743e-01,
7.54387642e-01, 7.54387642e-01, 7.54387642e-01, 7.54387642e-01,
7.67558867e-01, 7.67558867e-01, 7.67558867e-01, 7.67558867e-01,
8.04718986e-01, 8.04718986e-01, 8.04718986e-01, 8.04718986e-01,
8.83124089e-01, 8.83124089e-01, 8.83124089e-01, 8.83124089e-01,
1.01048782e+00, 1.01048782e+00, 1.01048782e+00, 1.01048782e+00,
1.15015373e+00, 1.15015373e+00, 1.15015373e+00, 1.15015373e+00,
1.27828995e+00, 1.27828995e+00, 1.27828995e+00, 1.27828995e+00,
1.33996420e+00, 1.33996420e+00, 1.33996420e+00, 1.33996420e+00,
1.35434258e+00, 1.35434258e+00, 1.35434258e+00, 1.35434258e+00,
1.35651250e+00, 1.35651250e+00, 1.35651250e+00, 1.35651250e+00,
1.35943170e+00, 1.35943170e+00, 1.35943170e+00, 1.35943170e+00,
1.36562928e+00, 1.36562928e+00, 1.36562928e+00, 1.36562928e+00,
1.36871828e+00, 1.36871828e+00, 1.36871828e+00, 1.36871828e+00,
1.36559918e+00, 1.36559918e+00, 1.36559918e+00, 1.36559918e+00,
1.33410068e+00, 1.33410068e+00, 1.33410068e+00, 1.33410068e+00,
1.18316118e+00, 1.18316118e+00, 1.18316118e+00, 1.18316118e+00,
6.83501416e-01, 6.83501416e-01, 6.83501416e-01, 6.83501416e-01,
1.23082855e-01, 1.23082855e-01, 1.23082855e-01, 1.23082855e-01,
1.05135867e-02, 1.05135867e-02, 1.05135867e-02, 1.05135867e-02,
7.79480203e-04, 7.79480203e-04, 7.79480203e-04, 7.79480203e-04,
5.71875744e-05, 5.71875744e-05, 5.71875744e-05, 5.71875744e-05,
4.16908647e-06, 4.16908647e-06, 4.16908647e-06, 4.16908647e-06,
3.00491897e-07, 3.00491897e-07, 3.00491897e-07, 3.00491897e-07,
2.12578537e-08, 2.12578537e-08, 2.12578537e-08, 2.12578537e-08,
1.46423018e-09, 1.46423018e-09, 1.46423018e-09, 1.46423018e-09,
9.73781859e-11, 9.73781859e-11, 9.73781859e-11, 9.73781859e-11,
6.20162096e-12, 6.20162096e-12, 6.20162096e-12, 6.20162096e-12,
3.75332869e-13, 3.75332869e-13, 3.75332869e-13, 3.75332869e-13,
2.14560454e-14, 2.14560454e-14, 2.14560454e-14, 2.14560454e-14,
1.07221018e-15, 1.07221018e-15, 1.07221018e-15, 1.07221018e-15,
3.44235441e-17, 3.44235441e-17, 3.44235441e-17, 3.44235441e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999737,
0.99999737, 0.99999737, 0.99999737, 0.99997733, 0.99997733,
0.99997733, 0.99997733, 0.99983304, 0.99983304, 0.99983304,
0.99983304, 0.9989702 , 0.9989702 , 0.9989702 , 0.9989702 ,
0.99482119, 0.99482119, 0.99482119, 0.99482119, 0.97943416,
0.97943416, 0.97943416, 0.97943416, 0.93729763, 0.93729763,
0.93729763, 0.93729763, 0.85415822, 0.85415822, 0.85415822,
0.85415822, 0.73373529, 0.73373529, 0.73373529, 0.73373529,
0.6112099 , 0.6112099 , 0.6112099 , 0.6112099 , 0.52160141,
0.52160141, 0.52160141, 0.52160141, 0.47759878, 0.47759878,
0.47759878, 0.47759878, 0.465481 , 0.465481 , 0.465481 ,
0.465481 , 0.46501776, 0.46501776, 0.46501776, 0.46501776,
0.46641955, 0.46641955, 0.46641955, 0.46641955, 0.46863112,
0.46863112, 0.46863112, 0.46863112, 0.46903125, 0.46903125,
0.46903125, 0.46903125, 0.466292 , 0.466292 , 0.466292 ,
0.466292 , 0.45159727, 0.45159727, 0.45159727, 0.45159727,
0.38874303, 0.38874303, 0.38874303, 0.38874303, 0.22928284,
0.22928284, 0.22928284, 0.22928284, 0.11739066, 0.11739066,
0.11739066, 0.11739066, 0.10139613, 0.10139613, 0.10139613,
0.10139613, 0.10010314, 0.10010314, 0.10010314, 0.10010314,
0.10000757, 0.10000757, 0.10000757, 0.10000757, 0.10000055,
0.10000055, 0.10000055, 0.10000055, 0.10000004, 0.10000004,
0.10000004, 0.10000004, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999965, 0.99999965, 0.99999965, 0.99999965, 0.99999676,
0.99999676, 0.99999676, 0.99999676, 0.99997414, 0.99997414,
0.99997414, 0.99997414, 0.99982322, 0.99982322, 0.99982322,
0.99982322, 0.99898687, 0.99898687, 0.99898687, 0.99898687,
0.99525772, 0.99525772, 0.99525772, 0.99525772, 0.98239165,
0.98239165, 0.98239165, 0.98239165, 0.94927458, 0.94927458,
0.94927458, 0.94927458, 0.88652829, 0.88652829, 0.88652829,
0.88652829, 0.79650788, 0.79650788, 0.79650788, 0.79650788,
0.70249376, 0.70249376, 0.70249376, 0.70249376, 0.62636848,
0.62636848, 0.62636848, 0.62636848, 0.60412838, 0.60412838,
0.60412838, 0.60412838, 0.59491245, 0.59491245, 0.59491245,
0.59491245, 0.57973366, 0.57973366, 0.57973366, 0.57973366,
0.55197703, 0.55197703, 0.55197703, 0.55197703, 0.50772236,
0.50772236, 0.50772236, 0.50772236, 0.44720509, 0.44720509,
0.44720509, 0.44720509, 0.38317069, 0.38317069, 0.38317069,
0.38317069, 0.34144572, 0.34144572, 0.34144572, 0.34144572,
0.30939376, 0.30939376, 0.30939376, 0.30939376, 0.26448525,
0.26448525, 0.26448525, 0.26448525, 0.17617514, 0.17617514,
0.17617514, 0.17617514, 0.1314537 , 0.1314537 , 0.1314537 ,
0.1314537 , 0.1255488 , 0.1255488 , 0.1255488 , 0.1255488 ,
0.12504168, 0.12504168, 0.12504168, 0.12504168, 0.12500308,
0.12500308, 0.12500308, 0.12500308, 0.12500022, 0.12500022,
0.12500022, 0.12500022, 0.12500002, 0.12500002, 0.12500002,
0.12500002, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000040e-01, 7.50000040e-01, 7.50000040e-01, 7.50000040e-01,
7.50000416e-01, 7.50000416e-01, 7.50000416e-01, 7.50000416e-01,
7.50003829e-01, 7.50003829e-01, 7.50003829e-01, 7.50003829e-01,
7.50030595e-01, 7.50030595e-01, 7.50030595e-01, 7.50030595e-01,
7.50209148e-01, 7.50209148e-01, 7.50209148e-01, 7.50209148e-01,
7.51198600e-01, 7.51198600e-01, 7.51198600e-01, 7.51198600e-01,
7.55615304e-01, 7.55615304e-01, 7.55615304e-01, 7.55615304e-01,
7.70951868e-01, 7.70951868e-01, 7.70951868e-01, 7.70951868e-01,
8.11275275e-01, 8.11275275e-01, 8.11275275e-01, 8.11275275e-01,
8.91370127e-01, 8.91370127e-01, 8.91370127e-01, 8.91370127e-01,
1.01552397e+00, 1.01552397e+00, 1.01552397e+00, 1.01552397e+00,
1.14807632e+00, 1.14807632e+00, 1.14807632e+00, 1.14807632e+00,
1.27251928e+00, 1.27251928e+00, 1.27251928e+00, 1.27251928e+00,
1.33824106e+00, 1.33824106e+00, 1.33824106e+00, 1.33824106e+00,
1.35468133e+00, 1.35468133e+00, 1.35468133e+00, 1.35468133e+00,
1.35603990e+00, 1.35603990e+00, 1.35603990e+00, 1.35603990e+00,
1.35749304e+00, 1.35749304e+00, 1.35749304e+00, 1.35749304e+00,
1.36161701e+00, 1.36161701e+00, 1.36161701e+00, 1.36161701e+00,
1.36709517e+00, 1.36709517e+00, 1.36709517e+00, 1.36709517e+00,
1.36853942e+00, 1.36853942e+00, 1.36853942e+00, 1.36853942e+00,
1.35998310e+00, 1.35998310e+00, 1.35998310e+00, 1.35998310e+00,
1.30814871e+00, 1.30814871e+00, 1.30814871e+00, 1.30814871e+00,
1.07919686e+00, 1.07919686e+00, 1.07919686e+00, 1.07919686e+00,
4.71939660e-01, 4.71939660e-01, 4.71939660e-01, 4.71939660e-01,
6.10545409e-02, 6.10545409e-02, 6.10545409e-02, 6.10545409e-02,
4.82456880e-03, 4.82456880e-03, 4.82456880e-03, 4.82456880e-03,
3.56247646e-04, 3.56247646e-04, 3.56247646e-04, 3.56247646e-04,
2.61067770e-05, 2.61067770e-05, 2.61067770e-05, 2.61067770e-05,
1.90472760e-06, 1.90472760e-06, 1.90472760e-06, 1.90472760e-06,
1.37703296e-07, 1.37703296e-07, 1.37703296e-07, 1.37703296e-07,
9.80046714e-09, 9.80046714e-09, 9.80046714e-09, 9.80046714e-09,
6.81680766e-10, 6.81680766e-10, 6.81680766e-10, 6.81680766e-10,
4.59859347e-11, 4.59859347e-11, 4.59859347e-11, 4.59859347e-11,
2.98599883e-12, 2.98599883e-12, 2.98599883e-12, 2.98599883e-12,
1.85306740e-13, 1.85306740e-13, 1.85306740e-13, 1.85306740e-13,
1.08045186e-14, 1.08045186e-14, 1.08045186e-14, 1.08045186e-14,
5.92240191e-16, 5.92240191e-16, 5.92240191e-16, 5.92240191e-16,
3.36083066e-17, 3.36083066e-17, 3.36083066e-17, 3.36083066e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999995, 0.99999995, 0.99999995, 0.99999995,
0.99999951, 0.99999951, 0.99999951, 0.99999951, 0.99999547,
0.99999547, 0.99999547, 0.99999547, 0.9999638 , 0.9999638 ,
0.9999638 , 0.9999638 , 0.99975256, 0.99975256, 0.99975256,
0.99975256, 0.99858272, 0.99858272, 0.99858272, 0.99858272,
0.99337694, 0.99337694, 0.99337694, 0.99337694, 0.97550929,
0.97550929, 0.97550929, 0.97550929, 0.93004626, 0.93004626,
0.93004626, 0.93004626, 0.84577195, 0.84577195, 0.84577195,
0.84577195, 0.72903811, 0.72903811, 0.72903811, 0.72903811,
0.61232549, 0.61232549, 0.61232549, 0.61232549, 0.52517321,
0.52517321, 0.52517321, 0.52517321, 0.48111312, 0.48111312,
0.48111312, 0.48111312, 0.46690051, 0.46690051, 0.46690051,
0.46690051, 0.46488503, 0.46488503, 0.46488503, 0.46488503,
0.46527105, 0.46527105, 0.46527105, 0.46527105, 0.46650029,
0.46650029, 0.46650029, 0.46650029, 0.46823227, 0.46823227,
0.46823227, 0.46823227, 0.46775485, 0.46775485, 0.46775485,
0.46775485, 0.46346347, 0.46346347, 0.46346347, 0.46346347,
0.43993022, 0.43993022, 0.43993022, 0.43993022, 0.35059336,
0.35059336, 0.35059336, 0.35059336, 0.17933862, 0.17933862,
0.17933862, 0.17933862, 0.10832159, 0.10832159, 0.10832159,
0.10832159, 0.1006392 , 0.1006392 , 0.1006392 , 0.1006392 ,
0.10004713, 0.10004713, 0.10004713, 0.10004713, 0.10000345,
0.10000345, 0.10000345, 0.10000345, 0.10000025, 0.10000025,
0.10000025, 0.10000025, 0.10000002, 0.10000002, 0.10000002,
0.10000002, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999937, 0.99999937, 0.99999937, 0.99999937, 0.99999463,
0.99999463, 0.99999463, 0.99999463, 0.99996001, 0.99996001,
0.99996001, 0.99996001, 0.99974513, 0.99974513, 0.99974513,
0.99974513, 0.99863764, 0.99863764, 0.99863764, 0.99863764,
0.99404812, 0.99404812, 0.99404812, 0.99404812, 0.97932361,
0.97932361, 0.97932361, 0.97932361, 0.94391361, 0.94391361,
0.94391361, 0.94391361, 0.88052889, 0.88052889, 0.88052889,
0.88052889, 0.7932456 , 0.7932456 , 0.7932456 , 0.7932456 ,
0.70476828, 0.70476828, 0.70476828, 0.70476828, 0.62723661,
0.62723661, 0.62723661, 0.62723661, 0.60206706, 0.60206706,
0.60206706, 0.60206706, 0.5963246 , 0.5963246 , 0.5963246 ,
0.5963246 , 0.58637919, 0.58637919, 0.58637919, 0.58637919,
0.56513598, 0.56513598, 0.56513598, 0.56513598, 0.52823708,
0.52823708, 0.52823708, 0.52823708, 0.47484775, 0.47484775,
0.47484775, 0.47484775, 0.40888641, 0.40888641, 0.40888641,
0.40888641, 0.35916094, 0.35916094, 0.35916094, 0.35916094,
0.32770215, 0.32770215, 0.32770215, 0.32770215, 0.29918377,
0.29918377, 0.29918377, 0.29918377, 0.24277737, 0.24277737,
0.24277737, 0.24277737, 0.1544822 , 0.1544822 , 0.1544822 ,
0.1544822 , 0.12813873, 0.12813873, 0.12813873, 0.12813873,
0.12525473, 0.12525473, 0.12525473, 0.12525473, 0.12501909,
0.12501909, 0.12501909, 0.12501909, 0.12500141, 0.12500141,
0.12500141, 0.12500141, 0.1250001 , 0.1250001 , 0.1250001 ,
0.1250001 , 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
7.50000076e-01, 7.50000076e-01, 7.50000076e-01, 7.50000076e-01,
7.50000743e-01, 7.50000743e-01, 7.50000743e-01, 7.50000743e-01,
7.50006355e-01, 7.50006355e-01, 7.50006355e-01, 7.50006355e-01,
7.50047312e-01, 7.50047312e-01, 7.50047312e-01, 7.50047312e-01,
7.50301532e-01, 7.50301532e-01, 7.50301532e-01, 7.50301532e-01,
7.51611926e-01, 7.51611926e-01, 7.51611926e-01, 7.51611926e-01,
7.57051218e-01, 7.57051218e-01, 7.57051218e-01, 7.57051218e-01,
7.74639815e-01, 7.74639815e-01, 7.74639815e-01, 7.74639815e-01,
8.17938711e-01, 8.17938711e-01, 8.17938711e-01, 8.17938711e-01,
8.99300214e-01, 8.99300214e-01, 8.99300214e-01, 8.99300214e-01,
1.02004865e+00, 1.02004865e+00, 1.02004865e+00, 1.02004865e+00,
1.14652531e+00, 1.14652531e+00, 1.14652531e+00, 1.14652531e+00,
1.26652821e+00, 1.26652821e+00, 1.26652821e+00, 1.26652821e+00,
1.33548200e+00, 1.33548200e+00, 1.33548200e+00, 1.33548200e+00,
1.35534630e+00, 1.35534630e+00, 1.35534630e+00, 1.35534630e+00,
1.35643148e+00, 1.35643148e+00, 1.35643148e+00, 1.35643148e+00,
1.35688841e+00, 1.35688841e+00, 1.35688841e+00, 1.35688841e+00,
1.35905944e+00, 1.35905944e+00, 1.35905944e+00, 1.35905944e+00,
1.36376675e+00, 1.36376675e+00, 1.36376675e+00, 1.36376675e+00,
1.36790199e+00, 1.36790199e+00, 1.36790199e+00, 1.36790199e+00,
1.36676900e+00, 1.36676900e+00, 1.36676900e+00, 1.36676900e+00,
1.35107712e+00, 1.35107712e+00, 1.35107712e+00, 1.35107712e+00,
1.26776498e+00, 1.26776498e+00, 1.26776498e+00, 1.26776498e+00,
9.35091603e-01, 9.35091603e-01, 9.35091603e-01, 9.35091603e-01,
2.80578131e-01, 2.80578131e-01, 2.80578131e-01, 2.80578131e-01,
2.89234526e-02, 2.89234526e-02, 2.89234526e-02, 2.89234526e-02,
2.21034091e-03, 2.21034091e-03, 2.21034091e-03, 2.21034091e-03,
1.62586243e-04, 1.62586243e-04, 1.62586243e-04, 1.62586243e-04,
1.19199001e-05, 1.19199001e-05, 1.19199001e-05, 1.19199001e-05,
8.70329480e-07, 8.70329480e-07, 8.70329480e-07, 8.70329480e-07,
6.30649885e-08, 6.30649885e-08, 6.30649885e-08, 6.30649885e-08,
4.51037180e-09, 4.51037180e-09, 4.51037180e-09, 4.51037180e-09,
3.16293216e-10, 3.16293216e-10, 3.16293216e-10, 3.16293216e-10,
2.15961374e-11, 2.15961374e-11, 2.15961374e-11, 2.15961374e-11,
1.42561215e-12, 1.42561215e-12, 1.42561215e-12, 1.42561215e-12,
9.02795039e-14, 9.02795039e-14, 9.02795039e-14, 9.02795039e-14,
5.44358060e-15, 5.44358060e-15, 5.44358060e-15, 5.44358060e-15,
3.46618598e-16, 3.46618598e-16, 3.46618598e-16, 3.46618598e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999912, 0.99999912, 0.99999912, 0.99999912, 0.99999248,
0.99999248, 0.99999248, 0.99999248, 0.99994402, 0.99994402,
0.99994402, 0.99994402, 0.99964328, 0.99964328, 0.99964328,
0.99964328, 0.99809443, 0.99809443, 0.99809443, 0.99809443,
0.99169035, 0.99169035, 0.99169035, 0.99169035, 0.97126076,
0.97126076, 0.97126076, 0.97126076, 0.92272829, 0.92272829,
0.92272829, 0.92272829, 0.83776294, 0.83776294, 0.83776294,
0.83776294, 0.72464681, 0.72464681, 0.72464681, 0.72464681,
0.6136125 , 0.6136125 , 0.6136125 , 0.6136125 , 0.52827001,
0.52827001, 0.52827001, 0.52827001, 0.48410084, 0.48410084,
0.48410084, 0.48410084, 0.46873669, 0.46873669, 0.46873669,
0.46873669, 0.465321 , 0.465321 , 0.465321 , 0.465321 ,
0.46494758, 0.46494758, 0.46494758, 0.46494758, 0.46514031,
0.46514031, 0.46514031, 0.46514031, 0.46651691, 0.46651691,
0.46651691, 0.46651691, 0.46747205, 0.46747205, 0.46747205,
0.46747205, 0.46667036, 0.46667036, 0.46667036, 0.46667036,
0.45913733, 0.45913733, 0.45913733, 0.45913733, 0.42245963,
0.42245963, 0.42245963, 0.42245963, 0.30188464, 0.30188464,
0.30188464, 0.30188464, 0.14267451, 0.14267451, 0.14267451,
0.14267451, 0.10387503, 0.10387503, 0.10387503, 0.10387503,
0.10029258, 0.10029258, 0.10029258, 0.10029258, 0.10002151,
0.10002151, 0.10002151, 0.10002151, 0.10000158, 0.10000158,
0.10000158, 0.10000158, 0.10000012, 0.10000012, 0.10000012,
0.10000012, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99999137,
0.99999137, 0.99999137, 0.99999137, 0.9999399 , 0.9999399 ,
0.9999399 , 0.9999399 , 0.99964148, 0.99964148, 0.99964148,
0.99964148, 0.9982058 , 0.9982058 , 0.9982058 , 0.9982058 ,
0.99265642, 0.99265642, 0.99265642, 0.99265642, 0.97603583,
0.97603583, 0.97603583, 0.97603583, 0.93852726, 0.93852726,
0.93852726, 0.93852726, 0.87480059, 0.87480059, 0.87480059,
0.87480059, 0.79029824, 0.79029824, 0.79029824, 0.79029824,
0.70698986, 0.70698986, 0.70698986, 0.70698986, 0.6291912 ,
0.6291912 , 0.6291912 , 0.6291912 , 0.59965944, 0.59965944,
0.59965944, 0.59965944, 0.59596883, 0.59596883, 0.59596883,
0.59596883, 0.59053208, 0.59053208, 0.59053208, 0.59053208,
0.5754485 , 0.5754485 , 0.5754485 , 0.5754485 , 0.54568684,
0.54568684, 0.54568684, 0.54568684, 0.49942691, 0.49942691,
0.49942691, 0.49942691, 0.43715677, 0.43715677, 0.43715677,
0.43715677, 0.3785361 , 0.3785361 , 0.3785361 , 0.3785361 ,
0.34229804, 0.34229804, 0.34229804, 0.34229804, 0.31792866,
0.31792866, 0.31792866, 0.31792866, 0.28869213, 0.28869213,
0.28869213, 0.28869213, 0.21502361, 0.21502361, 0.21502361,
0.21502361, 0.14073628, 0.14073628, 0.14073628, 0.14073628,
0.12650253, 0.12650253, 0.12650253, 0.12650253, 0.12511712,
0.12511712, 0.12511712, 0.12511712, 0.12500873, 0.12500873,
0.12500873, 0.12500873, 0.12500064, 0.12500064, 0.12500064,
0.12500064, 0.12500005, 0.12500005, 0.12500005, 0.12500005,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
7.50000141e-01, 7.50000141e-01, 7.50000141e-01, 7.50000141e-01,
7.50001276e-01, 7.50001276e-01, 7.50001276e-01, 7.50001276e-01,
7.50010210e-01, 7.50010210e-01, 7.50010210e-01, 7.50010210e-01,
7.50071106e-01, 7.50071106e-01, 7.50071106e-01, 7.50071106e-01,
7.50424168e-01, 7.50424168e-01, 7.50424168e-01, 7.50424168e-01,
7.52123167e-01, 7.52123167e-01, 7.52123167e-01, 7.52123167e-01,
7.58705271e-01, 7.58705271e-01, 7.58705271e-01, 7.58705271e-01,
7.78604138e-01, 7.78604138e-01, 7.78604138e-01, 7.78604138e-01,
8.24667213e-01, 8.24667213e-01, 8.24667213e-01, 8.24667213e-01,
9.06930229e-01, 9.06930229e-01, 9.06930229e-01, 9.06930229e-01,
1.02400230e+00, 1.02400230e+00, 1.02400230e+00, 1.02400230e+00,
1.14543639e+00, 1.14543639e+00, 1.14543639e+00, 1.14543639e+00,
1.26083347e+00, 1.26083347e+00, 1.26083347e+00, 1.26083347e+00,
1.33169331e+00, 1.33169331e+00, 1.33169331e+00, 1.33169331e+00,
1.35558798e+00, 1.35558798e+00, 1.35558798e+00, 1.35558798e+00,
1.35748922e+00, 1.35748922e+00, 1.35748922e+00, 1.35748922e+00,
1.35707583e+00, 1.35707583e+00, 1.35707583e+00, 1.35707583e+00,
1.35801616e+00, 1.35801616e+00, 1.35801616e+00, 1.35801616e+00,
1.36080683e+00, 1.36080683e+00, 1.36080683e+00, 1.36080683e+00,
1.36564217e+00, 1.36564217e+00, 1.36564217e+00, 1.36564217e+00,
1.36731393e+00, 1.36731393e+00, 1.36731393e+00, 1.36731393e+00,
1.36391260e+00, 1.36391260e+00, 1.36391260e+00, 1.36391260e+00,
1.33675447e+00, 1.33675447e+00, 1.33675447e+00, 1.33675447e+00,
1.20527086e+00, 1.20527086e+00, 1.20527086e+00, 1.20527086e+00,
7.48851135e-01, 7.48851135e-01, 7.48851135e-01, 7.48851135e-01,
1.51176427e-01, 1.51176427e-01, 1.51176427e-01, 1.51176427e-01,
1.35019359e-02, 1.35019359e-02, 1.35019359e-02, 1.35019359e-02,
1.00744606e-03, 1.00744606e-03, 1.00744606e-03, 1.00744606e-03,
7.41979754e-05, 7.41979754e-05, 7.41979754e-05, 7.41979754e-05,
5.44259245e-06, 5.44259245e-06, 5.44259245e-06, 5.44259245e-06,
3.97695182e-07, 3.97695182e-07, 3.97695182e-07, 3.97695182e-07,
2.88737197e-08, 2.88737197e-08, 2.88737197e-08, 2.88737197e-08,
2.07323036e-09, 2.07323036e-09, 2.07323036e-09, 2.07323036e-09,
1.46378112e-10, 1.46378112e-10, 1.46378112e-10, 1.46378112e-10,
1.00972396e-11, 1.00972396e-11, 1.00972396e-11, 1.00972396e-11,
6.75961800e-13, 6.75961800e-13, 6.75961800e-13, 6.75961800e-13,
4.36475480e-14, 4.36475480e-14, 4.36475480e-14, 4.36475480e-14,
2.72468011e-15, 2.72468011e-15, 2.72468011e-15, 2.72468011e-15,
1.63168395e-16, 1.63168395e-16, 1.63168395e-16, 1.63168395e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999983, 0.99999983, 0.99999983, 0.99999983,
0.99999849, 0.99999849, 0.99999849, 0.99999849, 0.99998792,
0.99998792, 0.99998792, 0.99998792, 0.99991587, 0.99991587,
0.99991587, 0.99991587, 0.99949823, 0.99949823, 0.99949823,
0.99949823, 0.9974908 , 0.9974908 , 0.9974908 , 0.9974908 ,
0.98975108, 0.98975108, 0.98975108, 0.98975108, 0.96671385,
0.96671385, 0.96671385, 0.96671385, 0.91539051, 0.91539051,
0.91539051, 0.91539051, 0.83010759, 0.83010759, 0.83010759,
0.83010759, 0.72047423, 0.72047423, 0.72047423, 0.72047423,
0.61506756, 0.61506756, 0.61506756, 0.61506756, 0.53125219,
0.53125219, 0.53125219, 0.53125219, 0.48653051, 0.48653051,
0.48653051, 0.48653051, 0.47051006, 0.47051006, 0.47051006,
0.47051006, 0.46624138, 0.46624138, 0.46624138, 0.46624138,
0.46510466, 0.46510466, 0.46510466, 0.46510466, 0.46465008,
0.46465008, 0.46465008, 0.46465008, 0.4649645 , 0.4649645 ,
0.4649645 , 0.4649645 , 0.46635721, 0.46635721, 0.46635721,
0.46635721, 0.4669385 , 0.4669385 , 0.4669385 , 0.4669385 ,
0.46507386, 0.46507386, 0.46507386, 0.46507386, 0.45256509,
0.45256509, 0.45256509, 0.45256509, 0.39724826, 0.39724826,
0.39724826, 0.39724826, 0.24626608, 0.24626608, 0.24626608,
0.24626608, 0.12167041, 0.12167041, 0.12167041, 0.12167041,
0.10179518, 0.10179518, 0.10179518, 0.10179518, 0.10013331,
0.10013331, 0.10013331, 0.10013331, 0.10000982, 0.10000982,
0.10000982, 0.10000982, 0.10000072, 0.10000072, 0.10000072,
0.10000072, 0.10000005, 0.10000005, 0.10000005, 0.10000005,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999979, 0.99999979, 0.99999979, 0.99999979,
0.99999821, 0.99999821, 0.99999821, 0.99999821, 0.99998654,
0.99998654, 0.99998654, 0.99998654, 0.99991195, 0.99991195,
0.99991195, 0.99991195, 0.99950669, 0.99950669, 0.99950669,
0.99950669, 0.99768098, 0.99768098, 0.99768098, 0.99768098,
0.99107741, 0.99107741, 0.99107741, 0.99107741, 0.97254809,
0.97254809, 0.97254809, 0.97254809, 0.93314576, 0.93314576,
0.93314576, 0.93314576, 0.86931013, 0.86931013, 0.86931013,
0.86931013, 0.78745561, 0.78745561, 0.78745561, 0.78745561,
0.70912742, 0.70912742, 0.70912742, 0.70912742, 0.63224649,
0.63224649, 0.63224649, 0.63224649, 0.59761707, 0.59761707,
0.59761707, 0.59761707, 0.59438022, 0.59438022, 0.59438022,
0.59438022, 0.5922818 , 0.5922818 , 0.5922818 , 0.5922818 ,
0.58292186, 0.58292186, 0.58292186, 0.58292186, 0.56012924,
0.56012924, 0.56012924, 0.56012924, 0.52108056, 0.52108056,
0.52108056, 0.52108056, 0.46554919, 0.46554919, 0.46554919,
0.46554919, 0.40122218, 0.40122218, 0.40122218, 0.40122218,
0.35684472, 0.35684472, 0.35684472, 0.35684472, 0.33092508,
0.33092508, 0.33092508, 0.33092508, 0.3109016 , 0.3109016 ,
0.3109016 , 0.3109016 , 0.2745178 , 0.2745178 , 0.2745178 ,
0.2745178 , 0.18574868, 0.18574868, 0.18574868, 0.18574868,
0.13312446, 0.13312446, 0.13312446, 0.13312446, 0.12570243,
0.12570243, 0.12570243, 0.12570243, 0.12505374, 0.12505374,
0.12505374, 0.12505374, 0.12500399, 0.12500399, 0.12500399,
0.12500399, 0.12500029, 0.12500029, 0.12500029, 0.12500029,
0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
7.50000249e-01, 7.50000249e-01, 7.50000249e-01, 7.50000249e-01,
7.50002122e-01, 7.50002122e-01, 7.50002122e-01, 7.50002122e-01,
7.50015931e-01, 7.50015931e-01, 7.50015931e-01, 7.50015931e-01,
7.50104174e-01, 7.50104174e-01, 7.50104174e-01, 7.50104174e-01,
7.50583657e-01, 7.50583657e-01, 7.50583657e-01, 7.50583657e-01,
7.52744722e-01, 7.52744722e-01, 7.52744722e-01, 7.52744722e-01,
7.60584516e-01, 7.60584516e-01, 7.60584516e-01, 7.60584516e-01,
7.82823347e-01, 7.82823347e-01, 7.82823347e-01, 7.82823347e-01,
8.31422691e-01, 8.31422691e-01, 8.31422691e-01, 8.31422691e-01,
9.14253491e-01, 9.14253491e-01, 9.14253491e-01, 9.14253491e-01,
1.02753151e+00, 1.02753151e+00, 1.02753151e+00, 1.02753151e+00,
1.14446418e+00, 1.14446418e+00, 1.14446418e+00, 1.14446418e+00,
1.25572429e+00, 1.25572429e+00, 1.25572429e+00, 1.25572429e+00,
1.32726860e+00, 1.32726860e+00, 1.32726860e+00, 1.32726860e+00,
1.35494148e+00, 1.35494148e+00, 1.35494148e+00, 1.35494148e+00,
1.35862615e+00, 1.35862615e+00, 1.35862615e+00, 1.35862615e+00,
1.35792280e+00, 1.35792280e+00, 1.35792280e+00, 1.35792280e+00,
1.35790930e+00, 1.35790930e+00, 1.35790930e+00, 1.35790930e+00,
1.35939545e+00, 1.35939545e+00, 1.35939545e+00, 1.35939545e+00,
1.36269094e+00, 1.36269094e+00, 1.36269094e+00, 1.36269094e+00,
1.36606975e+00, 1.36606975e+00, 1.36606975e+00, 1.36606975e+00,
1.36643658e+00, 1.36643658e+00, 1.36643658e+00, 1.36643658e+00,
1.35906893e+00, 1.35906893e+00, 1.35906893e+00, 1.35906893e+00,
1.31349500e+00, 1.31349500e+00, 1.31349500e+00, 1.31349500e+00,
1.11168051e+00, 1.11168051e+00, 1.11168051e+00, 1.11168051e+00,
5.39000363e-01, 5.39000363e-01, 5.39000363e-01, 5.39000363e-01,
7.70165641e-02, 7.70165641e-02, 7.70165641e-02, 7.70165641e-02,
6.19417821e-03, 6.19417821e-03, 6.19417821e-03, 6.19417821e-03,
4.59703599e-04, 4.59703599e-04, 4.59703599e-04, 4.59703599e-04,
3.38422021e-05, 3.38422021e-05, 3.38422021e-05, 3.38422021e-05,
2.48403190e-06, 2.48403190e-06, 2.48403190e-06, 2.48403190e-06,
1.81703671e-07, 1.81703671e-07, 1.81703671e-07, 1.81703671e-07,
1.32143978e-08, 1.32143978e-08, 1.32143978e-08, 1.32143978e-08,
9.51971465e-10, 9.51971465e-10, 9.51971465e-10, 9.51971465e-10,
6.75952916e-11, 6.75952916e-11, 6.75952916e-11, 6.75952916e-11,
4.70333296e-12, 4.70333296e-12, 4.70333296e-12, 4.70333296e-12,
3.18764056e-13, 3.18764056e-13, 3.18764056e-13, 3.18764056e-13,
2.09144307e-14, 2.09144307e-14, 2.09144307e-14, 2.09144307e-14,
1.34091434e-15, 1.34091434e-15, 1.34091434e-15, 1.34091434e-15,
7.02262902e-17, 7.02262902e-17, 7.02262902e-17, 7.02262902e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
0.99999749, 0.99999749, 0.99999749, 0.99999749, 0.99998115,
0.99998115, 0.99998115, 0.99998115, 0.99987675, 0.99987675,
0.99987675, 0.99987675, 0.99930963, 0.99930963, 0.99930963,
0.99930963, 0.9967574 , 0.9967574 , 0.9967574 , 0.9967574 ,
0.98755235, 0.98755235, 0.98755235, 0.98755235, 0.961897 ,
0.961897 , 0.961897 , 0.961897 , 0.90807418, 0.90807418,
0.90807418, 0.90807418, 0.82280457, 0.82280457, 0.82280457,
0.82280457, 0.71660108, 0.71660108, 0.71660108, 0.71660108,
0.61647152, 0.61647152, 0.61647152, 0.61647152, 0.53433754,
0.53433754, 0.53433754, 0.53433754, 0.48862858, 0.48862858,
0.48862858, 0.48862858, 0.47191446, 0.47191446, 0.47191446,
0.47191446, 0.46731186, 0.46731186, 0.46731186, 0.46731186,
0.46568567, 0.46568567, 0.46568567, 0.46568567, 0.46466716,
0.46466716, 0.46466716, 0.46466716, 0.46428833, 0.46428833,
0.46428833, 0.46428833, 0.46483777, 0.46483777, 0.46483777,
0.46483777, 0.46633071, 0.46633071, 0.46633071, 0.46633071,
0.46626754, 0.46626754, 0.46626754, 0.46626754, 0.46271596,
0.46271596, 0.46271596, 0.46271596, 0.44260208, 0.44260208,
0.44260208, 0.44260208, 0.36235029, 0.36235029, 0.36235029,
0.36235029, 0.19361303, 0.19361303, 0.19361303, 0.19361303,
0.11058547, 0.11058547, 0.11058547, 0.11058547, 0.10082107,
0.10082107, 0.10082107, 0.10082107, 0.10006082, 0.10006082,
0.10006082, 0.10006082, 0.10000448, 0.10000448, 0.10000448,
0.10000448, 0.10000033, 0.10000033, 0.10000033, 0.10000033,
0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999996, 0.99999996, 0.99999996,
0.99999996, 0.99999964, 0.99999964, 0.99999964, 0.99999964,
0.99999711, 0.99999711, 0.99999711, 0.99999711, 0.99997953,
0.99997953, 0.99997953, 0.99997953, 0.99987394, 0.99987394,
0.99987394, 0.99987394, 0.99933463, 0.99933463, 0.99933463,
0.99933463, 0.99705312, 0.99705312, 0.99705312, 0.99705312,
0.98930851, 0.98930851, 0.98930851, 0.98930851, 0.96888183,
0.96888183, 0.96888183, 0.96888183, 0.92779564, 0.92779564,
0.92779564, 0.92779564, 0.86405491, 0.86405491, 0.86405491,
0.86405491, 0.78470523, 0.78470523, 0.78470523, 0.78470523,
0.71095409, 0.71095409, 0.71095409, 0.71095409, 0.63622824,
0.63622824, 0.63622824, 0.63622824, 0.59650729, 0.59650729,
0.59650729, 0.59650729, 0.59187689, 0.59187689, 0.59187689,
0.59187689, 0.59231137, 0.59231137, 0.59231137, 0.59231137,
0.58763049, 0.58763049, 0.58763049, 0.58763049, 0.57146876,
0.57146876, 0.57146876, 0.57146876, 0.53974952, 0.53974952,
0.53974952, 0.53974952, 0.49128145, 0.49128145, 0.49128145,
0.49128145, 0.4279453 , 0.4279453 , 0.4279453 , 0.4279453 ,
0.37383925, 0.37383925, 0.37383925, 0.37383925, 0.34208564,
0.34208564, 0.34208564, 0.34208564, 0.32336538, 0.32336538,
0.32336538, 0.32336538, 0.30459933, 0.30459933, 0.30459933,
0.30459933, 0.25375017, 0.25375017, 0.25375017, 0.25375017,
0.1610919 , 0.1610919 , 0.1610919 , 0.1610919 , 0.12897793,
0.12897793, 0.12897793, 0.12897793, 0.12532639, 0.12532639,
0.12532639, 0.12532639, 0.1250246 , 0.1250246 , 0.1250246 ,
0.1250246 , 0.12500182, 0.12500182, 0.12500182, 0.12500182,
0.12500013, 0.12500013, 0.12500013, 0.12500013, 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
7.50000048e-01, 7.50000048e-01, 7.50000048e-01, 7.50000048e-01,
7.50000428e-01, 7.50000428e-01, 7.50000428e-01, 7.50000428e-01,
7.50003425e-01, 7.50003425e-01, 7.50003425e-01, 7.50003425e-01,
7.50024215e-01, 7.50024215e-01, 7.50024215e-01, 7.50024215e-01,
7.50149149e-01, 7.50149149e-01, 7.50149149e-01, 7.50149149e-01,
7.50787259e-01, 7.50787259e-01, 7.50787259e-01, 7.50787259e-01,
7.53488669e-01, 7.53488669e-01, 7.53488669e-01, 7.53488669e-01,
7.62693058e-01, 7.62693058e-01, 7.62693058e-01, 7.62693058e-01,
7.87273690e-01, 7.87273690e-01, 7.87273690e-01, 7.87273690e-01,
8.38170390e-01, 8.38170390e-01, 8.38170390e-01, 8.38170390e-01,
9.21264845e-01, 9.21264845e-01, 9.21264845e-01, 9.21264845e-01,
1.03075711e+00, 1.03075711e+00, 1.03075711e+00, 1.03075711e+00,
1.14341648e+00, 1.14341648e+00, 1.14341648e+00, 1.14341648e+00,
1.25118970e+00, 1.25118970e+00, 1.25118970e+00, 1.25118970e+00,
1.32270364e+00, 1.32270364e+00, 1.32270364e+00, 1.32270364e+00,
1.35337313e+00, 1.35337313e+00, 1.35337313e+00, 1.35337313e+00,
1.35937786e+00, 1.35937786e+00, 1.35937786e+00, 1.35937786e+00,
1.35905340e+00, 1.35905340e+00, 1.35905340e+00, 1.35905340e+00,
1.35850392e+00, 1.35850392e+00, 1.35850392e+00, 1.35850392e+00,
1.35894967e+00, 1.35894967e+00, 1.35894967e+00, 1.35894967e+00,
1.36090221e+00, 1.36090221e+00, 1.36090221e+00, 1.36090221e+00,
1.36370505e+00, 1.36370505e+00, 1.36370505e+00, 1.36370505e+00,
1.36598769e+00, 1.36598769e+00, 1.36598769e+00, 1.36598769e+00,
1.36486873e+00, 1.36486873e+00, 1.36486873e+00, 1.36486873e+00,
1.35070633e+00, 1.35070633e+00, 1.35070633e+00, 1.35070633e+00,
1.27741452e+00, 1.27741452e+00, 1.27741452e+00, 1.27741452e+00,
9.81464738e-01, 9.81464738e-01, 9.81464738e-01, 9.81464738e-01,
3.36046188e-01, 3.36046188e-01, 3.36046188e-01, 3.36046188e-01,
3.68463062e-02, 3.68463062e-02, 3.68463062e-02, 3.68463062e-02,
2.83912454e-03, 2.83912454e-03, 2.83912454e-03, 2.83912454e-03,
2.09688885e-04, 2.09688885e-04, 2.09688885e-04, 2.09688885e-04,
1.54316406e-05, 1.54316406e-05, 1.54316406e-05, 1.54316406e-05,
1.13356929e-06, 1.13356929e-06, 1.13356929e-06, 1.13356929e-06,
8.29963615e-08, 8.29963615e-08, 8.29963615e-08, 8.29963615e-08,
6.04553786e-09, 6.04553786e-09, 6.04553786e-09, 6.04553786e-09,
4.36752195e-10, 4.36752195e-10, 4.36752195e-10, 4.36752195e-10,
3.11603660e-11, 3.11603660e-11, 3.11603660e-11, 3.11603660e-11,
2.18424142e-12, 2.18424142e-12, 2.18424142e-12, 2.18424142e-12,
1.49600112e-13, 1.49600112e-13, 1.49600112e-13, 1.49600112e-13,
9.91152530e-15, 9.91152530e-15, 9.91152530e-15, 9.91152530e-15,
6.43616174e-16, 6.43616174e-16, 6.43616174e-16, 6.43616174e-16,
3.40906797e-17, 3.40906797e-17, 3.40906797e-17, 3.40906797e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999994, 0.99999994, 0.99999994,
0.99999994, 0.99999949, 0.99999949, 0.99999949, 0.99999949,
0.99999595, 0.99999595, 0.99999595, 0.99999595, 0.99997135,
0.99997135, 0.99997135, 0.99997135, 0.99982354, 0.99982354,
0.99982354, 0.99982354, 0.9990689 , 0.9990689 , 0.9990689 ,
0.9990689 , 0.99588029, 0.99588029, 0.99588029, 0.99588029,
0.98509107, 0.98509107, 0.98509107, 0.98509107, 0.95684085,
0.95684085, 0.95684085, 0.95684085, 0.90081585, 0.90081585,
0.90081585, 0.90081585, 0.81585349, 0.81585349, 0.81585349,
0.81585349, 0.71306117, 0.71306117, 0.71306117, 0.71306117,
0.61770042, 0.61770042, 0.61770042, 0.61770042, 0.53754808,
0.53754808, 0.53754808, 0.53754808, 0.49069344, 0.49069344,
0.49069344, 0.49069344, 0.47291767, 0.47291767, 0.47291767,
0.47291767, 0.46823402, 0.46823402, 0.46823402, 0.46823402,
0.46647842, 0.46647842, 0.46647842, 0.46647842, 0.46510214,
0.46510214, 0.46510214, 0.46510214, 0.46413565, 0.46413565,
0.46413565, 0.46413565, 0.46395683, 0.46395683, 0.46395683,
0.46395683, 0.46511952, 0.46511952, 0.46511952, 0.46511952,
0.46605603, 0.46605603, 0.46605603, 0.46605603, 0.46541207,
0.46541207, 0.46541207, 0.46541207, 0.45926933, 0.45926933,
0.45926933, 0.45926933, 0.42726405, 0.42726405, 0.42726405,
0.42726405, 0.31664309, 0.31664309, 0.31664309, 0.31664309,
0.15234215, 0.15234215, 0.15234215, 0.15234215, 0.10495591,
0.10495591, 0.10495591, 0.10495591, 0.10037589, 0.10037589,
0.10037589, 0.10037589, 0.10002774, 0.10002774, 0.10002774,
0.10002774, 0.10000204, 0.10000204, 0.10000204, 0.10000204,
0.10000015, 0.10000015, 0.10000015, 0.10000015, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999993, 0.99999993, 0.99999993,
0.99999993, 0.9999994 , 0.9999994 , 0.9999994 , 0.9999994 ,
0.99999545, 0.99999545, 0.99999545, 0.99999545, 0.99996962,
0.99996962, 0.99996962, 0.99996962, 0.99982324, 0.99982324,
0.99982324, 0.99982324, 0.9991187 , 0.9991187 , 0.9991187 ,
0.9991187 , 0.9963127 , 0.9963127 , 0.9963127 , 0.9963127 ,
0.98734973, 0.98734973, 0.98734973, 0.98734973, 0.96505957,
0.96505957, 0.96505957, 0.96505957, 0.92250062, 0.92250062,
0.92250062, 0.92250062, 0.85904285, 0.85904285, 0.85904285,
0.85904285, 0.78210563, 0.78210563, 0.78210563, 0.78210563,
0.71214743, 0.71214743, 0.71214743, 0.71214743, 0.64091277,
0.64091277, 0.64091277, 0.64091277, 0.5967045 , 0.5967045 ,
0.5967045 , 0.5967045 , 0.58917295, 0.58917295, 0.58917295,
0.58917295, 0.59108358, 0.59108358, 0.59108358, 0.59108358,
0.58980314, 0.58980314, 0.58980314, 0.58980314, 0.57968492,
0.57968492, 0.57968492, 0.57968492, 0.5552647 , 0.5552647 ,
0.5552647 , 0.5552647 , 0.51411927, 0.51411927, 0.51411927,
0.51411927, 0.45652797, 0.45652797, 0.45652797, 0.45652797,
0.39426685, 0.39426685, 0.39426685, 0.39426685, 0.35435985,
0.35435985, 0.35435985, 0.35435985, 0.33267462, 0.33267462,
0.33267462, 0.33267462, 0.3183219 , 0.3183219 , 0.3183219 ,
0.3183219 , 0.29605972, 0.29605972, 0.29605972, 0.29605972,
0.22620934, 0.22620934, 0.22620934, 0.22620934, 0.1443368 ,
0.1443368 , 0.1443368 , 0.1443368 , 0.12690967, 0.12690967,
0.12690967, 0.12690967, 0.12515044, 0.12515044, 0.12515044,
0.12515044, 0.12501125, 0.12501125, 0.12501125, 0.12501125,
0.12500083, 0.12500083, 0.12500083, 0.12500083, 0.12500006,
0.12500006, 0.12500006, 0.12500006, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000084e-01, 7.50000084e-01, 7.50000084e-01, 7.50000084e-01,
7.50000712e-01, 7.50000712e-01, 7.50000712e-01, 7.50000712e-01,
7.50005384e-01, 7.50005384e-01, 7.50005384e-01, 7.50005384e-01,
7.50035944e-01, 7.50035944e-01, 7.50035944e-01, 7.50035944e-01,
7.50209136e-01, 7.50209136e-01, 7.50209136e-01, 7.50209136e-01,
7.51042813e-01, 7.51042813e-01, 7.51042813e-01, 7.51042813e-01,
7.54366472e-01, 7.54366472e-01, 7.54366472e-01, 7.54366472e-01,
7.65032020e-01, 7.65032020e-01, 7.65032020e-01, 7.65032020e-01,
7.91929802e-01, 7.91929802e-01, 7.91929802e-01, 7.91929802e-01,
8.44879000e-01, 8.44879000e-01, 8.44879000e-01, 8.44879000e-01,
9.27961552e-01, 9.27961552e-01, 9.27961552e-01, 9.27961552e-01,
1.03376284e+00, 1.03376284e+00, 1.03376284e+00, 1.03376284e+00,
1.14223005e+00, 1.14223005e+00, 1.14223005e+00, 1.14223005e+00,
1.24703626e+00, 1.24703626e+00, 1.24703626e+00, 1.24703626e+00,
1.31835154e+00, 1.31835154e+00, 1.31835154e+00, 1.31835154e+00,
1.35115729e+00, 1.35115729e+00, 1.35115729e+00, 1.35115729e+00,
1.35952683e+00, 1.35952683e+00, 1.35952683e+00, 1.35952683e+00,
1.36000050e+00, 1.36000050e+00, 1.36000050e+00, 1.36000050e+00,
1.35946783e+00, 1.35946783e+00, 1.35946783e+00, 1.35946783e+00,
1.35931504e+00, 1.35931504e+00, 1.35931504e+00, 1.35931504e+00,
1.36014004e+00, 1.36014004e+00, 1.36014004e+00, 1.36014004e+00,
1.36169449e+00, 1.36169449e+00, 1.36169449e+00, 1.36169449e+00,
1.36442795e+00, 1.36442795e+00, 1.36442795e+00, 1.36442795e+00,
1.36544109e+00, 1.36544109e+00, 1.36544109e+00, 1.36544109e+00,
1.36179797e+00, 1.36179797e+00, 1.36179797e+00, 1.36179797e+00,
1.33753550e+00, 1.33753550e+00, 1.33753550e+00, 1.33753550e+00,
1.22289370e+00, 1.22289370e+00, 1.22289370e+00, 1.22289370e+00,
8.07609730e-01, 8.07609730e-01, 8.07609730e-01, 8.07609730e-01,
1.84578851e-01, 1.84578851e-01, 1.84578851e-01, 1.84578851e-01,
1.72459356e-02, 1.72459356e-02, 1.72459356e-02, 1.72459356e-02,
1.29636420e-03, 1.29636420e-03, 1.29636420e-03, 1.29636420e-03,
9.56231757e-05, 9.56231757e-05, 9.56231757e-05, 9.56231757e-05,
7.03861571e-06, 7.03861571e-06, 7.03861571e-06, 7.03861571e-06,
5.17203032e-07, 5.17203032e-07, 5.17203032e-07, 5.17203032e-07,
3.79012480e-08, 3.79012480e-08, 3.79012480e-08, 3.79012480e-08,
2.76477945e-09, 2.76477945e-09, 2.76477945e-09, 2.76477945e-09,
2.00229731e-10, 2.00229731e-10, 2.00229731e-10, 2.00229731e-10,
1.43439296e-11, 1.43439296e-11, 1.43439296e-11, 1.43439296e-11,
1.01180886e-12, 1.01180886e-12, 1.01180886e-12, 1.01180886e-12,
6.98829576e-14, 6.98829576e-14, 6.98829576e-14, 6.98829576e-14,
4.66606318e-15, 4.66606318e-15, 4.66606318e-15, 4.66606318e-15,
3.37838020e-16, 3.37838020e-16, 3.37838020e-16, 3.37838020e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999916, 0.99999916, 0.99999916, 0.99999916,
0.99999363, 0.99999363, 0.99999363, 0.99999363, 0.99995747,
0.99995747, 0.99995747, 0.99995747, 0.99975257, 0.99975257,
0.99975257, 0.99975257, 0.99876684, 0.99876684, 0.99876684,
0.99876684, 0.99484634, 0.99484634, 0.99484634, 0.99484634,
0.98236786, 0.98236786, 0.98236786, 0.98236786, 0.95157745,
0.95157745, 0.95157745, 0.95157745, 0.89364753, 0.89364753,
0.89364753, 0.89364753, 0.80925164, 0.80925164, 0.80925164,
0.80925164, 0.70985244, 0.70985244, 0.70985244, 0.70985244,
0.61872344, 0.61872344, 0.61872344, 0.61872344, 0.54078556,
0.54078556, 0.54078556, 0.54078556, 0.49293771, 0.49293771,
0.49293771, 0.49293771, 0.47368455, 0.47368455, 0.47368455,
0.47368455, 0.46885678, 0.46885678, 0.46885678, 0.46885678,
0.46721006, 0.46721006, 0.46721006, 0.46721006, 0.46578019,
0.46578019, 0.46578019, 0.46578019, 0.46443757, 0.46443757,
0.46443757, 0.46443757, 0.46363693, 0.46363693, 0.46363693,
0.46363693, 0.46405796, 0.46405796, 0.46405796, 0.46405796,
0.46529802, 0.46529802, 0.46529802, 0.46529802, 0.46568405,
0.46568405, 0.46568405, 0.46568405, 0.46436586, 0.46436586,
0.46436586, 0.46436586, 0.45372193, 0.45372193, 0.45372193,
0.45372193, 0.40428218, 0.40428218, 0.40428218, 0.40428218,
0.26242895, 0.26242895, 0.26242895, 0.26242895, 0.12688139,
0.12688139, 0.12688139, 0.12688139, 0.10229679, 0.10229679,
0.10229679, 0.10229679, 0.10017155, 0.10017155, 0.10017155,
0.10017155, 0.10001265, 0.10001265, 0.10001265, 0.10001265,
0.10000093, 0.10000093, 0.10000093, 0.10000093, 0.10000007,
0.10000007, 0.10000007, 0.10000007, 0.10000001, 0.10000001,
0.10000001, 0.10000001, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999988, 0.99999988, 0.99999988,
0.99999988, 0.99999902, 0.99999902, 0.99999902, 0.99999902,
0.99999302, 0.99999302, 0.99999302, 0.99999302, 0.99995587,
0.99995587, 0.99995587, 0.99995587, 0.99975682, 0.99975682,
0.99975682, 0.99975682, 0.99885188, 0.99885188, 0.99885188,
0.99885188, 0.99545106, 0.99545106, 0.99545106, 0.99545106,
0.98520362, 0.98520362, 0.98520362, 0.98520362, 0.96110441,
0.96110441, 0.96110441, 0.96110441, 0.91728156, 0.91728156,
0.91728156, 0.91728156, 0.85427981, 0.85427981, 0.85427981,
0.85427981, 0.77971476, 0.77971476, 0.77971476, 0.77971476,
0.71287025, 0.71287025, 0.71287025, 0.71287025, 0.64564457,
0.64564457, 0.64564457, 0.64564457, 0.59826562, 0.59826562,
0.59826562, 0.59826562, 0.58691045, 0.58691045, 0.58691045,
0.58691045, 0.58906206, 0.58906206, 0.58906206, 0.58906206,
0.59003485, 0.59003485, 0.59003485, 0.59003485, 0.58486504,
0.58486504, 0.58486504, 0.58486504, 0.56744401, 0.56744401,
0.56744401, 0.56744401, 0.53390234, 0.53390234, 0.53390234,
0.53390234, 0.48345644, 0.48345644, 0.48345644, 0.48345644,
0.41935629, 0.41935629, 0.41935629, 0.41935629, 0.3694156 ,
0.3694156 , 0.3694156 , 0.3694156 , 0.34157081, 0.34157081,
0.34157081, 0.34157081, 0.3267349 , 0.3267349 , 0.3267349 ,
0.3267349 , 0.31430765, 0.31430765, 0.31430765, 0.31430765,
0.28309759, 0.28309759, 0.28309759, 0.28309759, 0.19541361,
0.19541361, 0.19541361, 0.19541361, 0.13508752, 0.13508752,
0.13508752, 0.13508752, 0.12589416, 0.12589416, 0.12589416,
0.12589416, 0.12506897, 0.12506897, 0.12506897, 0.12506897,
0.12500514, 0.12500514, 0.12500514, 0.12500514, 0.12500038,
0.12500038, 0.12500038, 0.12500038, 0.12500003, 0.12500003,
0.12500003, 0.12500003, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
7.50000144e-01, 7.50000144e-01, 7.50000144e-01, 7.50000144e-01,
7.50001154e-01, 7.50001154e-01, 7.50001154e-01, 7.50001154e-01,
7.50008260e-01, 7.50008260e-01, 7.50008260e-01, 7.50008260e-01,
7.50052218e-01, 7.50052218e-01, 7.50052218e-01, 7.50052218e-01,
7.50287727e-01, 7.50287727e-01, 7.50287727e-01, 7.50287727e-01,
7.51358635e-01, 7.51358635e-01, 7.51358635e-01, 7.51358635e-01,
7.55388706e-01, 7.55388706e-01, 7.55388706e-01, 7.55388706e-01,
7.67599601e-01, 7.67599601e-01, 7.67599601e-01, 7.67599601e-01,
7.96765297e-01, 7.96765297e-01, 7.96765297e-01, 7.96765297e-01,
8.51520678e-01, 8.51520678e-01, 8.51520678e-01, 8.51520678e-01,
9.34344216e-01, 9.34344216e-01, 9.34344216e-01, 9.34344216e-01,
1.03659724e+00, 1.03659724e+00, 1.03659724e+00, 1.03659724e+00,
1.14096365e+00, 1.14096365e+00, 1.14096365e+00, 1.14096365e+00,
1.24306837e+00, 1.24306837e+00, 1.24306837e+00, 1.24306837e+00,
1.31432670e+00, 1.31432670e+00, 1.31432670e+00, 1.31432670e+00,
1.34867754e+00, 1.34867754e+00, 1.34867754e+00, 1.34867754e+00,
1.35900751e+00, 1.35900751e+00, 1.35900751e+00, 1.35900751e+00,
1.36059408e+00, 1.36059408e+00, 1.36059408e+00, 1.36059408e+00,
1.36044668e+00, 1.36044668e+00, 1.36044668e+00, 1.36044668e+00,
1.36010596e+00, 1.36010596e+00, 1.36010596e+00, 1.36010596e+00,
1.36018463e+00, 1.36018463e+00, 1.36018463e+00, 1.36018463e+00,
1.36083030e+00, 1.36083030e+00, 1.36083030e+00, 1.36083030e+00,
1.36234837e+00, 1.36234837e+00, 1.36234837e+00, 1.36234837e+00,
1.36463009e+00, 1.36463009e+00, 1.36463009e+00, 1.36463009e+00,
1.36410988e+00, 1.36410988e+00, 1.36410988e+00, 1.36410988e+00,
1.35701598e+00, 1.35701598e+00, 1.35701598e+00, 1.35701598e+00,
1.31740523e+00, 1.31740523e+00, 1.31740523e+00, 1.31740523e+00,
1.13985851e+00, 1.13985851e+00, 1.13985851e+00, 1.13985851e+00,
6.02207928e-01, 6.02207928e-01, 6.02207928e-01, 6.02207928e-01,
9.54826887e-02, 9.54826887e-02, 9.54826887e-02, 9.54826887e-02,
7.91081899e-03, 7.91081899e-03, 7.91081899e-03, 7.91081899e-03,
5.90658670e-04, 5.90658670e-04, 5.90658670e-04, 5.90658670e-04,
4.36023608e-05, 4.36023608e-05, 4.36023608e-05, 4.36023608e-05,
3.20991156e-06, 3.20991156e-06, 3.20991156e-06, 3.20991156e-06,
2.35963719e-07, 2.35963719e-07, 2.35963719e-07, 2.35963719e-07,
1.73040175e-08, 1.73040175e-08, 1.73040175e-08, 1.73040175e-08,
1.26389111e-09, 1.26389111e-09, 1.26389111e-09, 1.26389111e-09,
9.17314216e-11, 9.17314216e-11, 9.17314216e-11, 9.17314216e-11,
6.59454231e-12, 6.59454231e-12, 6.59454231e-12, 6.59454231e-12,
4.67644782e-13, 4.67644782e-13, 4.67644782e-13, 4.67644782e-13,
3.25389011e-14, 3.25389011e-14, 3.25389011e-14, 3.25389011e-14,
2.17274114e-15, 2.17274114e-15, 2.17274114e-15, 2.17274114e-15,
1.63514197e-16, 1.63514197e-16, 1.63514197e-16, 1.63514197e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999983, 0.99999983, 0.99999983,
0.99999983, 0.99999863, 0.99999863, 0.99999863, 0.99999863,
0.99999023, 0.99999023, 0.99999023, 0.99999023, 0.99993822,
0.99993822, 0.99993822, 0.99993822, 0.99965961, 0.99965961,
0.99965961, 0.99965961, 0.99839366, 0.99839366, 0.99839366,
0.99839366, 0.99364361, 0.99364361, 0.99364361, 0.99364361,
0.9793869 , 0.9793869 , 0.9793869 , 0.9793869 , 0.94613945,
0.94613945, 0.94613945, 0.94613945, 0.88659682, 0.88659682,
0.88659682, 0.88659682, 0.80299287, 0.80299287, 0.80299287,
0.80299287, 0.70694993, 0.70694993, 0.70694993, 0.70694993,
0.61957684, 0.61957684, 0.61957684, 0.61957684, 0.54392052,
0.54392052, 0.54392052, 0.54392052, 0.49542686, 0.49542686,
0.49542686, 0.49542686, 0.47445103, 0.47445103, 0.47445103,
0.47445103, 0.46915145, 0.46915145, 0.46915145, 0.46915145,
0.46775039, 0.46775039, 0.46775039, 0.46775039, 0.4664833 ,
0.4664833 , 0.4664833 , 0.4664833 , 0.46501843, 0.46501843,
0.46501843, 0.46501843, 0.46374393, 0.46374393, 0.46374393,
0.46374393, 0.46361884, 0.46361884, 0.46361884, 0.46361884,
0.46424828, 0.46424828, 0.46424828, 0.46424828, 0.46530062,
0.46530062, 0.46530062, 0.46530062, 0.46544329, 0.46544329,
0.46544329, 0.46544329, 0.46257326, 0.46257326, 0.46257326,
0.46257326, 0.44471278, 0.44471278, 0.44471278, 0.44471278,
0.37244248, 0.37244248, 0.37244248, 0.37244248, 0.20801386,
0.20801386, 0.20801386, 0.20801386, 0.11324933, 0.11324933,
0.11324933, 0.11324933, 0.10104929, 0.10104929, 0.10104929,
0.10104929, 0.10007815, 0.10007815, 0.10007815, 0.10007815,
0.10000577, 0.10000577, 0.10000577, 0.10000577, 0.10000042,
0.10000042, 0.10000042, 0.10000042, 0.10000003, 0.10000003,
0.10000003, 0.10000003, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.9999998 , 0.9999998 , 0.9999998 ,
0.9999998 , 0.99999846, 0.99999846, 0.99999846, 0.99999846,
0.99998952, 0.99998952, 0.99998952, 0.99998952, 0.99993714,
0.99993714, 0.99993714, 0.99993714, 0.99967122, 0.99967122,
0.99967122, 0.99967122, 0.99852689, 0.99852689, 0.99852689,
0.99852689, 0.99446052, 0.99446052, 0.99446052, 0.99446052,
0.98287516, 0.98287516, 0.98287516, 0.98287516, 0.95703951,
0.95703951, 0.95703951, 0.95703951, 0.91215643, 0.91215643,
0.91215643, 0.91215643, 0.8497645 , 0.8497645 , 0.8497645 ,
0.8497645 , 0.77754676, 0.77754676, 0.77754676, 0.77754676,
0.71330927, 0.71330927, 0.71330927, 0.71330927, 0.64997203,
0.64997203, 0.64997203, 0.64997203, 0.60097098, 0.60097098,
0.60097098, 0.60097098, 0.58535154, 0.58535154, 0.58535154,
0.58535154, 0.58659819, 0.58659819, 0.58659819, 0.58659819,
0.58934885, 0.58934885, 0.58934885, 0.58934885, 0.58736059,
0.58736059, 0.58736059, 0.58736059, 0.57621724, 0.57621724,
0.57621724, 0.57621724, 0.55034135, 0.55034135, 0.55034135,
0.55034135, 0.50742676, 0.50742676, 0.50742676, 0.50742676,
0.44761191, 0.44761191, 0.44761191, 0.44761191, 0.38816796,
0.38816796, 0.38816796, 0.38816796, 0.35214391, 0.35214391,
0.35214391, 0.35214391, 0.3335225 , 0.3335225 , 0.3335225 ,
0.3335225 , 0.32286182, 0.32286182, 0.32286182, 0.32286182,
0.30990165, 0.30990165, 0.30990165, 0.30990165, 0.26354073,
0.26354073, 0.26354073, 0.26354073, 0.16798532, 0.16798532,
0.16798532, 0.16798532, 0.1299533 , 0.1299533 , 0.1299533 ,
0.1299533 , 0.12541416, 0.12541416, 0.12541416, 0.12541416,
0.12503153, 0.12503153, 0.12503153, 0.12503153, 0.12500234,
0.12500234, 0.12500234, 0.12500234, 0.12500017, 0.12500017,
0.12500017, 0.12500017, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
7.50000240e-01, 7.50000240e-01, 7.50000240e-01, 7.50000240e-01,
7.50001825e-01, 7.50001825e-01, 7.50001825e-01, 7.50001825e-01,
7.50012395e-01, 7.50012395e-01, 7.50012395e-01, 7.50012395e-01,
7.50074381e-01, 7.50074381e-01, 7.50074381e-01, 7.50074381e-01,
7.50389013e-01, 7.50389013e-01, 7.50389013e-01, 7.50389013e-01,
7.51743396e-01, 7.51743396e-01, 7.51743396e-01, 7.51743396e-01,
7.56564809e-01, 7.56564809e-01, 7.56564809e-01, 7.56564809e-01,
7.70391197e-01, 7.70391197e-01, 7.70391197e-01, 7.70391197e-01,
8.01753316e-01, 8.01753316e-01, 8.01753316e-01, 8.01753316e-01,
8.58071057e-01, 8.58071057e-01, 8.58071057e-01, 8.58071057e-01,
9.40417104e-01, 9.40417104e-01, 9.40417104e-01, 9.40417104e-01,
1.03928138e+00, 1.03928138e+00, 1.03928138e+00, 1.03928138e+00,
1.13970389e+00, 1.13970389e+00, 1.13970389e+00, 1.13970389e+00,
1.23914812e+00, 1.23914812e+00, 1.23914812e+00, 1.23914812e+00,
1.31054875e+00, 1.31054875e+00, 1.31054875e+00, 1.31054875e+00,
1.34625395e+00, 1.34625395e+00, 1.34625395e+00, 1.34625395e+00,
1.35799687e+00, 1.35799687e+00, 1.35799687e+00, 1.35799687e+00,
1.36074574e+00, 1.36074574e+00, 1.36074574e+00, 1.36074574e+00,
1.36111035e+00, 1.36111035e+00, 1.36111035e+00, 1.36111035e+00,
1.36105209e+00, 1.36105209e+00, 1.36105209e+00, 1.36105209e+00,
1.36078907e+00, 1.36078907e+00, 1.36078907e+00, 1.36078907e+00,
1.36071354e+00, 1.36071354e+00, 1.36071354e+00, 1.36071354e+00,
1.36126545e+00, 1.36126545e+00, 1.36126545e+00, 1.36126545e+00,
1.36293306e+00, 1.36293306e+00, 1.36293306e+00, 1.36293306e+00,
1.36391003e+00, 1.36391003e+00, 1.36391003e+00, 1.36391003e+00,
1.36223548e+00, 1.36223548e+00, 1.36223548e+00, 1.36223548e+00,
1.35001289e+00, 1.35001289e+00, 1.35001289e+00, 1.35001289e+00,
1.28580407e+00, 1.28580407e+00, 1.28580407e+00, 1.28580407e+00,
1.02083102e+00, 1.02083102e+00, 1.02083102e+00, 1.02083102e+00,
3.92354167e-01, 3.92354167e-01, 3.92354167e-01, 3.92354167e-01,
4.60233453e-02, 4.60233453e-02, 4.60233453e-02, 4.60233453e-02,
3.61135389e-03, 3.61135389e-03, 3.61135389e-03, 3.61135389e-03,
2.68870213e-04, 2.68870213e-04, 2.68870213e-04, 2.68870213e-04,
1.98606715e-05, 1.98606715e-05, 1.98606715e-05, 1.98606715e-05,
1.46364464e-06, 1.46364464e-06, 1.46364464e-06, 1.46364464e-06,
1.07646738e-07, 1.07646738e-07, 1.07646738e-07, 1.07646738e-07,
7.89913828e-09, 7.89913828e-09, 7.89913828e-09, 7.89913828e-09,
5.77602003e-10, 5.77602003e-10, 5.77602003e-10, 5.77602003e-10,
4.20009750e-11, 4.20009750e-11, 4.20009750e-11, 4.20009750e-11,
3.02859296e-12, 3.02859296e-12, 3.02859296e-12, 3.02859296e-12,
2.15774482e-13, 2.15774482e-13, 2.15774482e-13, 2.15774482e-13,
1.50503680e-14, 1.50503680e-14, 1.50503680e-14, 1.50503680e-14,
1.05328765e-15, 1.05328765e-15, 1.05328765e-15, 1.05328765e-15,
5.90101831e-17, 5.90101831e-17, 5.90101831e-17, 5.90101831e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999997, 0.99999997,
0.99999997, 0.99999997, 0.99999972, 0.99999972, 0.99999972,
0.99999972, 0.99999784, 0.99999784, 0.99999784, 0.99999784,
0.99998533, 0.99998533, 0.99998533, 0.99998533, 0.999912 ,
0.999912 , 0.999912 , 0.999912 , 0.99953981, 0.99953981,
0.99953981, 0.99953981, 0.99793921, 0.99793921, 0.99793921,
0.99793921, 0.99226162, 0.99226162, 0.99226162, 0.99226162,
0.97615575, 0.97615575, 0.97615575, 0.97615575, 0.94055943,
0.94055943, 0.94055943, 0.94055943, 0.87968697, 0.87968697,
0.87968697, 0.87968697, 0.7970675 , 0.7970675 , 0.7970675 ,
0.7970675 , 0.7043173 , 0.7043173 , 0.7043173 , 0.7043173 ,
0.62032421, 0.62032421, 0.62032421, 0.62032421, 0.54686006,
0.54686006, 0.54686006, 0.54686006, 0.49810099, 0.49810099,
0.49810099, 0.49810099, 0.47541418, 0.47541418, 0.47541418,
0.47541418, 0.46923871, 0.46923871, 0.46923871, 0.46923871,
0.46803173, 0.46803173, 0.46803173, 0.46803173, 0.46700788,
0.46700788, 0.46700788, 0.46700788, 0.46571924, 0.46571924,
0.46571924, 0.46571924, 0.4641767 , 0.4641767 , 0.4641767 ,
0.4641767 , 0.46358808, 0.46358808, 0.46358808, 0.46358808,
0.46369014, 0.46369014, 0.46369014, 0.46369014, 0.46447516,
0.46447516, 0.46447516, 0.46447516, 0.46535017, 0.46535017,
0.46535017, 0.46535017, 0.46498179, 0.46498179, 0.46498179,
0.46498179, 0.45937493, 0.45937493, 0.45937493, 0.45937493,
0.43093306, 0.43093306, 0.43093306, 0.43093306, 0.32993773,
0.32993773, 0.32993773, 0.32993773, 0.16285786, 0.16285786,
0.16285786, 0.16285786, 0.10621868, 0.10621868, 0.10621868,
0.10621868, 0.10047825, 0.10047825, 0.10047825, 0.10047825,
0.10003557, 0.10003557, 0.10003557, 0.10003557, 0.10000263,
0.10000263, 0.10000263, 0.10000263, 0.10000019, 0.10000019,
0.10000019, 0.10000019, 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999996, 0.99999996,
0.99999996, 0.99999996, 0.99999967, 0.99999967, 0.99999967,
0.99999967, 0.99999762, 0.99999762, 0.99999762, 0.99999762,
0.99998459, 0.99998459, 0.99998459, 0.99998459, 0.99991206,
0.99991206, 0.99991206, 0.99991206, 0.99956257, 0.99956257,
0.99956257, 0.99956257, 0.99813629, 0.99813629, 0.99813629,
0.99813629, 0.99333466, 0.99333466, 0.99333466, 0.99333466,
0.98037152, 0.98037152, 0.98037152, 0.98037152, 0.9528877 ,
0.9528877 , 0.9528877 , 0.9528877 , 0.90714025, 0.90714025,
0.90714025, 0.90714025, 0.84549133, 0.84549133, 0.84549133,
0.84549133, 0.7755971 , 0.7755971 , 0.7755971 , 0.7755971 ,
0.71345002, 0.71345002, 0.71345002, 0.71345002, 0.65381042,
0.65381042, 0.65381042, 0.65381042, 0.60449037, 0.60449037,
0.60449037, 0.60449037, 0.58459071, 0.58459071, 0.58459071,
0.58459071, 0.58451904, 0.58451904, 0.58451904, 0.58451904,
0.58778013, 0.58778013, 0.58778013, 0.58778013, 0.58801938,
0.58801938, 0.58801938, 0.58801938, 0.58183243, 0.58183243,
0.58183243, 0.58183243, 0.56319798, 0.56319798, 0.56319798,
0.56319798, 0.52817231, 0.52817231, 0.52817231, 0.52817231,
0.47570938, 0.47570938, 0.47570938, 0.47570938, 0.41147965,
0.41147965, 0.41147965, 0.41147965, 0.36562289, 0.36562289,
0.36562289, 0.36562289, 0.34085096, 0.34085096, 0.34085096,
0.34085096, 0.32857429, 0.32857429, 0.32857429, 0.32857429,
0.32046461, 0.32046461, 0.32046461, 0.32046461, 0.30277278,
0.30277278, 0.30277278, 0.30277278, 0.23628223, 0.23628223,
0.23628223, 0.23628223, 0.14837728, 0.14837728, 0.14837728,
0.14837728, 0.12738162, 0.12738162, 0.12738162, 0.12738162,
0.12519072, 0.12519072, 0.12519072, 0.12519072, 0.12501437,
0.12501437, 0.12501437, 0.12501437, 0.12500107, 0.12500107,
0.12500107, 0.12500107, 0.12500008, 0.12500008, 0.12500008,
0.12500008, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
7.50000390e-01, 7.50000390e-01, 7.50000390e-01, 7.50000390e-01,
7.50002822e-01, 7.50002822e-01, 7.50002822e-01, 7.50002822e-01,
7.50018229e-01, 7.50018229e-01, 7.50018229e-01, 7.50018229e-01,
7.50104049e-01, 7.50104049e-01, 7.50104049e-01, 7.50104049e-01,
7.50517585e-01, 7.50517585e-01, 7.50517585e-01, 7.50517585e-01,
7.52205977e-01, 7.52205977e-01, 7.52205977e-01, 7.52205977e-01,
7.57902857e-01, 7.57902857e-01, 7.57902857e-01, 7.57902857e-01,
7.73399599e-01, 7.73399599e-01, 7.73399599e-01, 7.73399599e-01,
8.06867047e-01, 8.06867047e-01, 8.06867047e-01, 8.06867047e-01,
8.64509234e-01, 8.64509234e-01, 8.64509234e-01, 8.64509234e-01,
9.46188008e-01, 9.46188008e-01, 9.46188008e-01, 9.46188008e-01,
1.04182143e+00, 1.04182143e+00, 1.04182143e+00, 1.04182143e+00,
1.13851947e+00, 1.13851947e+00, 1.13851947e+00, 1.13851947e+00,
1.23521943e+00, 1.23521943e+00, 1.23521943e+00, 1.23521943e+00,
1.30684121e+00, 1.30684121e+00, 1.30684121e+00, 1.30684121e+00,
1.34402276e+00, 1.34402276e+00, 1.34402276e+00, 1.34402276e+00,
1.35679818e+00, 1.35679818e+00, 1.35679818e+00, 1.35679818e+00,
1.36042879e+00, 1.36042879e+00, 1.36042879e+00, 1.36042879e+00,
1.36144375e+00, 1.36144375e+00, 1.36144375e+00, 1.36144375e+00,
1.36176750e+00, 1.36176750e+00, 1.36176750e+00, 1.36176750e+00,
1.36169308e+00, 1.36169308e+00, 1.36169308e+00, 1.36169308e+00,
1.36111048e+00, 1.36111048e+00, 1.36111048e+00, 1.36111048e+00,
1.36105105e+00, 1.36105105e+00, 1.36105105e+00, 1.36105105e+00,
1.36162469e+00, 1.36162469e+00, 1.36162469e+00, 1.36162469e+00,
1.36281678e+00, 1.36281678e+00, 1.36281678e+00, 1.36281678e+00,
1.36293589e+00, 1.36293589e+00, 1.36293589e+00, 1.36293589e+00,
1.35989169e+00, 1.35989169e+00, 1.35989169e+00, 1.35989169e+00,
1.33857964e+00, 1.33857964e+00, 1.33857964e+00, 1.33857964e+00,
1.23678480e+00, 1.23678480e+00, 1.23678480e+00, 1.23678480e+00,
8.59426221e-01, 8.59426221e-01, 8.59426221e-01, 8.59426221e-01,
2.22121850e-01, 2.22121850e-01, 2.22121850e-01, 2.22121850e-01,
2.16158662e-02, 2.16158662e-02, 2.16158662e-02, 2.16158662e-02,
1.64641832e-03, 1.64641832e-03, 1.64641832e-03, 1.64641832e-03,
1.22204390e-04, 1.22204390e-04, 1.22204390e-04, 1.22204390e-04,
9.04194482e-06, 9.04194482e-06, 9.04194482e-06, 9.04194482e-06,
6.67040993e-07, 6.67040993e-07, 6.67040993e-07, 6.67040993e-07,
4.90964691e-08, 4.90964691e-08, 4.90964691e-08, 4.90964691e-08,
3.60523547e-09, 3.60523547e-09, 3.60523547e-09, 3.60523547e-09,
2.63885888e-10, 2.63885888e-10, 2.63885888e-10, 2.63885888e-10,
1.92204794e-11, 1.92204794e-11, 1.92204794e-11, 1.92204794e-11,
1.38961104e-12, 1.38961104e-12, 1.38961104e-12, 1.38961104e-12,
9.92868582e-14, 9.92868582e-14, 9.92868582e-14, 9.92868582e-14,
7.03275916e-15, 7.03275916e-15, 7.03275916e-15, 7.03275916e-15,
5.17027335e-16, 5.17027335e-16, 5.17027335e-16, 5.17027335e-16,
3.42591394e-17, 3.42591394e-17, 3.42591394e-17, 3.42591394e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999994, 0.99999994,
0.99999994, 0.99999994, 0.99999954, 0.99999954, 0.99999954,
0.99999954, 0.99999666, 0.99999666, 0.99999666, 0.99999666,
0.99997843, 0.99997843, 0.99997843, 0.99997843, 0.99987689,
0.99987689, 0.99987689, 0.99987689, 0.99938776, 0.99938776,
0.99938776, 0.99938776, 0.99739311, 0.99739311, 0.99739311,
0.99739311, 0.99069162, 0.99069162, 0.99069162, 0.99069162,
0.97268505, 0.97268505, 0.97268505, 0.97268505, 0.93486932,
0.93486932, 0.93486932, 0.93486932, 0.87293717, 0.87293717,
0.87293717, 0.87293717, 0.79146304, 0.79146304, 0.79146304,
0.79146304, 0.70191535, 0.70191535, 0.70191535, 0.70191535,
0.62102876, 0.62102876, 0.62102876, 0.62102876, 0.54957627,
0.54957627, 0.54957627, 0.54957627, 0.50083599, 0.50083599,
0.50083599, 0.50083599, 0.47665599, 0.47665599, 0.47665599,
0.47665599, 0.46931339, 0.46931339, 0.46931339, 0.46931339,
0.4680499 , 0.4680499 , 0.4680499 , 0.4680499 , 0.46732564,
0.46732564, 0.46732564, 0.46732564, 0.46628964, 0.46628964,
0.46628964, 0.46628964, 0.46482191, 0.46482191, 0.46482191,
0.46482191, 0.46383924, 0.46383924, 0.46383924, 0.46383924,
0.46359009, 0.46359009, 0.46359009, 0.46359009, 0.46381923,
0.46381923, 0.46381923, 0.46381923, 0.46482679, 0.46482679,
0.46482679, 0.46482679, 0.46530733, 0.46530733, 0.46530733,
0.46530733, 0.46390266, 0.46390266, 0.46390266, 0.46390266,
0.45436119, 0.45436119, 0.45436119, 0.45436119, 0.41039534,
0.41039534, 0.41039534, 0.41039534, 0.27755879, 0.27755879,
0.27755879, 0.27755879, 0.13288495, 0.13288495, 0.13288495,
0.13288495, 0.10288468, 0.10288468, 0.10288468, 0.10288468,
0.1002179 , 0.1002179 , 0.1002179 , 0.1002179 , 0.10001617,
0.10001617, 0.10001617, 0.10001617, 0.1000012 , 0.1000012 ,
0.1000012 , 0.1000012 , 0.10000009, 0.10000009, 0.10000009,
0.10000009, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999993, 0.99999993,
0.99999993, 0.99999993, 0.99999948, 0.99999948, 0.99999948,
0.99999948, 0.99999639, 0.99999639, 0.99999639, 0.99999639,
0.99997776, 0.99997776, 0.99997776, 0.99997776, 0.99987902,
0.99987902, 0.99987902, 0.99987902, 0.99942658, 0.99942658,
0.99942658, 0.99942658, 0.99767258, 0.99767258, 0.99767258,
0.99767258, 0.99206839, 0.99206839, 0.99206839, 0.99206839,
0.97770184, 0.97770184, 0.97770184, 0.97770184, 0.94867108,
0.94867108, 0.94867108, 0.94867108, 0.90224525, 0.90224525,
0.90224525, 0.90224525, 0.84145258, 0.84145258, 0.84145258,
0.84145258, 0.77386505, 0.77386505, 0.77386505, 0.77386505,
0.71340462, 0.71340462, 0.71340462, 0.71340462, 0.65703975,
0.65703975, 0.65703975, 0.65703975, 0.60849329, 0.60849329,
0.60849329, 0.60849329, 0.58468831, 0.58468831, 0.58468831,
0.58468831, 0.58294187, 0.58294187, 0.58294187, 0.58294187,
0.58573115, 0.58573115, 0.58573115, 0.58573115, 0.58763646,
0.58763646, 0.58763646, 0.58763646, 0.58482843, 0.58482843,
0.58482843, 0.58482843, 0.57251091, 0.57251091, 0.57251091,
0.57251091, 0.54537817, 0.54537817, 0.54537817, 0.54537817,
0.50073074, 0.50073074, 0.50073074, 0.50073074, 0.4391213 ,
0.4391213 , 0.4391213 , 0.4391213 , 0.38293704, 0.38293704,
0.38293704, 0.38293704, 0.35013347, 0.35013347, 0.35013347,
0.35013347, 0.33368088, 0.33368088, 0.33368088, 0.33368088,
0.32582494, 0.32582494, 0.32582494, 0.32582494, 0.31844833,
0.31844833, 0.31844833, 0.31844833, 0.29046653, 0.29046653,
0.29046653, 0.29046653, 0.20455633, 0.20455633, 0.20455633,
0.20455633, 0.1372754 , 0.1372754 , 0.1372754 , 0.1372754 ,
0.12612182, 0.12612182, 0.12612182, 0.12612182, 0.1250873 ,
0.1250873 , 0.1250873 , 0.1250873 , 0.12500654, 0.12500654,
0.12500654, 0.12500654, 0.12500049, 0.12500049, 0.12500049,
0.12500049, 0.12500004, 0.12500004, 0.12500004, 0.12500004,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000010e-01, 7.50000010e-01, 7.50000010e-01, 7.50000010e-01,
7.50000081e-01, 7.50000081e-01, 7.50000081e-01, 7.50000081e-01,
7.50000620e-01, 7.50000620e-01, 7.50000620e-01, 7.50000620e-01,
7.50004274e-01, 7.50004274e-01, 7.50004274e-01, 7.50004274e-01,
7.50026313e-01, 7.50026313e-01, 7.50026313e-01, 7.50026313e-01,
7.50143141e-01, 7.50143141e-01, 7.50143141e-01, 7.50143141e-01,
7.50678514e-01, 7.50678514e-01, 7.50678514e-01, 7.50678514e-01,
7.52755312e-01, 7.52755312e-01, 7.52755312e-01, 7.52755312e-01,
7.59409383e-01, 7.59409383e-01, 7.59409383e-01, 7.59409383e-01,
7.76615231e-01, 7.76615231e-01, 7.76615231e-01, 7.76615231e-01,
8.12080151e-01, 8.12080151e-01, 8.12080151e-01, 8.12080151e-01,
8.70817643e-01, 8.70817643e-01, 8.70817643e-01, 8.70817643e-01,
9.51667486e-01, 9.51667486e-01, 9.51667486e-01, 9.51667486e-01,
1.04421860e+00, 1.04421860e+00, 1.04421860e+00, 1.04421860e+00,
1.13749267e+00, 1.13749267e+00, 1.13749267e+00, 1.13749267e+00,
1.23129415e+00, 1.23129415e+00, 1.23129415e+00, 1.23129415e+00,
1.30304219e+00, 1.30304219e+00, 1.30304219e+00, 1.30304219e+00,
1.34192905e+00, 1.34192905e+00, 1.34192905e+00, 1.34192905e+00,
1.35567521e+00, 1.35567521e+00, 1.35567521e+00, 1.35567521e+00,
1.35980921e+00, 1.35980921e+00, 1.35980921e+00, 1.35980921e+00,
1.36138601e+00, 1.36138601e+00, 1.36138601e+00, 1.36138601e+00,
1.36219441e+00, 1.36219441e+00, 1.36219441e+00, 1.36219441e+00,
1.36249996e+00, 1.36249996e+00, 1.36249996e+00, 1.36249996e+00,
1.36190367e+00, 1.36190367e+00, 1.36190367e+00, 1.36190367e+00,
1.36127546e+00, 1.36127546e+00, 1.36127546e+00, 1.36127546e+00,
1.36128875e+00, 1.36128875e+00, 1.36128875e+00, 1.36128875e+00,
1.36152144e+00, 1.36152144e+00, 1.36152144e+00, 1.36152144e+00,
1.36239947e+00, 1.36239947e+00, 1.36239947e+00, 1.36239947e+00,
1.36213183e+00, 1.36213183e+00, 1.36213183e+00, 1.36213183e+00,
1.35586085e+00, 1.35586085e+00, 1.35586085e+00, 1.35586085e+00,
1.32010356e+00, 1.32010356e+00, 1.32010356e+00, 1.32010356e+00,
1.16287547e+00, 1.16287547e+00, 1.16287547e+00, 1.16287547e+00,
6.61162492e-01, 6.61162492e-01, 6.61162492e-01, 6.61162492e-01,
1.16351678e-01, 1.16351678e-01, 1.16351678e-01, 1.16351678e-01,
9.97096672e-03, 9.97096672e-03, 9.97096672e-03, 9.97096672e-03,
7.48552643e-04, 7.48552643e-04, 7.48552643e-04, 7.48552643e-04,
5.55786565e-05, 5.55786565e-05, 5.55786565e-05, 5.55786565e-05,
4.11419588e-06, 4.11419588e-06, 4.11419588e-06, 4.11419588e-06,
3.03837917e-07, 3.03837917e-07, 3.03837917e-07, 3.03837917e-07,
2.23849014e-08, 2.23849014e-08, 2.23849014e-08, 2.23849014e-08,
1.64507675e-09, 1.64507675e-09, 1.64507675e-09, 1.64507675e-09,
1.20527942e-10, 1.20527942e-10, 1.20527942e-10, 1.20527942e-10,
8.79167161e-12, 8.79167161e-12, 8.79167161e-12, 8.79167161e-12,
6.36916518e-13, 6.36916518e-13, 6.36916518e-13, 6.36916518e-13,
4.58094779e-14, 4.58094779e-14, 4.58094779e-14, 4.58094779e-14,
3.28064473e-15, 3.28064473e-15, 3.28064473e-15, 3.28064473e-15,
2.21511670e-16, 2.21511670e-16, 2.21511670e-16, 2.21511670e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.9999999 , 0.9999999 ,
0.9999999 , 0.9999999 , 0.99999927, 0.99999927, 0.99999927,
0.99999927, 0.99999494, 0.99999494, 0.99999494, 0.99999494,
0.99996887, 0.99996887, 0.99996887, 0.99996887, 0.99983065,
0.99983065, 0.99983065, 0.99983065, 0.99919747, 0.99919747,
0.99919747, 0.99919747, 0.99674497, 0.99674497, 0.99674497,
0.99674497, 0.98892685, 0.98892685, 0.98892685, 0.98892685,
0.96898818, 0.96898818, 0.96898818, 0.96898818, 0.92909988,
0.92909988, 0.92909988, 0.92909988, 0.86636274, 0.86636274,
0.86636274, 0.86636274, 0.7861649 , 0.7861649 , 0.7861649 ,
0.7861649 , 0.69970743, 0.69970743, 0.69970743, 0.69970743,
0.62175522, 0.62175522, 0.62175522, 0.62175522, 0.55208192,
0.55208192, 0.55208192, 0.55208192, 0.50351395, 0.50351395,
0.50351395, 0.50351395, 0.47813801, 0.47813801, 0.47813801,
0.47813801, 0.46954374, 0.46954374, 0.46954374, 0.46954374,
0.46791496, 0.46791496, 0.46791496, 0.46791496, 0.46740496,
0.46740496, 0.46740496, 0.46740496, 0.466675 , 0.466675 ,
0.466675 , 0.466675 , 0.46544862, 0.46544862, 0.46544862,
0.46544862, 0.46432762, 0.46432762, 0.46432762, 0.46432762,
0.46372285, 0.46372285, 0.46372285, 0.46372285, 0.46365147,
0.46365147, 0.46365147, 0.46365147, 0.46418465, 0.46418465,
0.46418465, 0.46418465, 0.46505548, 0.46505548, 0.46505548,
0.46505548, 0.46493934, 0.46493934, 0.46493934, 0.46493934,
0.46223591, 0.46223591, 0.46223591, 0.46223591, 0.44656565,
0.44656565, 0.44656565, 0.44656565, 0.38108891, 0.38108891,
0.38108891, 0.38108891, 0.22238569, 0.22238569, 0.22238569,
0.22238569, 0.11633052, 0.11633052, 0.11633052, 0.11633052,
0.10132364, 0.10132364, 0.10132364, 0.10132364, 0.10009904,
0.10009904, 0.10009904, 0.10009904, 0.10000735, 0.10000735,
0.10000735, 0.10000735, 0.10000054, 0.10000054, 0.10000054,
0.10000054, 0.10000004, 0.10000004, 0.10000004, 0.10000004,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999989, 0.99999989,
0.99999989, 0.99999989, 0.99999918, 0.99999918, 0.99999918,
0.99999918, 0.99999463, 0.99999463, 0.99999463, 0.99999463,
0.99996845, 0.99996845, 0.99996845, 0.99996845, 0.99983612,
0.99983612, 0.99983612, 0.99983612, 0.9992586 , 0.9992586 ,
0.9992586 , 0.9992586 , 0.99712842, 0.99712842, 0.99712842,
0.99712842, 0.99065816, 0.99065816, 0.99065816, 0.99065816,
0.97487697, 0.97487697, 0.97487697, 0.97487697, 0.94441074,
0.94441074, 0.94441074, 0.94441074, 0.89748102, 0.89748102,
0.89748102, 0.89748102, 0.83763755, 0.83763755, 0.83763755,
0.83763755, 0.77233781, 0.77233781, 0.77233781, 0.77233781,
0.7132907 , 0.7132907 , 0.7132907 , 0.7132907 , 0.65963706,
0.65963706, 0.65963706, 0.65963706, 0.612651 , 0.612651 ,
0.612651 , 0.612651 , 0.5857125 , 0.5857125 , 0.5857125 ,
0.5857125 , 0.58169792, 0.58169792, 0.58169792, 0.58169792,
0.5836328 , 0.5836328 , 0.5836328 , 0.5836328 , 0.58674094,
0.58674094, 0.58674094, 0.58674094, 0.58596439, 0.58596439,
0.58596439, 0.58596439, 0.57862616, 0.57862616, 0.57862616,
0.57862616, 0.55885909, 0.55885909, 0.55885909, 0.55885909,
0.52235302, 0.52235302, 0.52235302, 0.52235302, 0.46790255,
0.46790255, 0.46790255, 0.46790255, 0.40461805, 0.40461805,
0.40461805, 0.40461805, 0.36237207, 0.36237207, 0.36237207,
0.36237207, 0.33984239, 0.33984239, 0.33984239, 0.33984239,
0.32970398, 0.32970398, 0.32970398, 0.32970398, 0.32449566,
0.32449566, 0.32449566, 0.32449566, 0.31491343, 0.31491343,
0.31491343, 0.31491343, 0.2715366 , 0.2715366 , 0.2715366 ,
0.2715366 , 0.17519676, 0.17519676, 0.17519676, 0.17519676,
0.13110272, 0.13110272, 0.13110272, 0.13110272, 0.12551958,
0.12551958, 0.12551958, 0.12551958, 0.12503987, 0.12503987,
0.12503987, 0.12503987, 0.12500298, 0.12500298, 0.12500298,
0.12500298, 0.12500022, 0.12500022, 0.12500022, 0.12500022,
0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
7.50000132e-01, 7.50000132e-01, 7.50000132e-01, 7.50000132e-01,
7.50000966e-01, 7.50000966e-01, 7.50000966e-01, 7.50000966e-01,
7.50006351e-01, 7.50006351e-01, 7.50006351e-01, 7.50006351e-01,
7.50037333e-01, 7.50037333e-01, 7.50037333e-01, 7.50037333e-01,
7.50193899e-01, 7.50193899e-01, 7.50193899e-01, 7.50193899e-01,
7.50877324e-01, 7.50877324e-01, 7.50877324e-01, 7.50877324e-01,
7.53400222e-01, 7.53400222e-01, 7.53400222e-01, 7.53400222e-01,
7.61089231e-01, 7.61089231e-01, 7.61089231e-01, 7.61089231e-01,
7.80026437e-01, 7.80026437e-01, 7.80026437e-01, 7.80026437e-01,
8.17367158e-01, 8.17367158e-01, 8.17367158e-01, 8.17367158e-01,
8.76981911e-01, 8.76981911e-01, 8.76981911e-01, 8.76981911e-01,
9.56868187e-01, 9.56868187e-01, 9.56868187e-01, 9.56868187e-01,
1.04646915e+00, 1.04646915e+00, 1.04646915e+00, 1.04646915e+00,
1.13664890e+00, 1.13664890e+00, 1.13664890e+00, 1.13664890e+00,
1.22747197e+00, 1.22747197e+00, 1.22747197e+00, 1.22747197e+00,
1.29906860e+00, 1.29906860e+00, 1.29906860e+00, 1.29906860e+00,
1.33980440e+00, 1.33980440e+00, 1.33980440e+00, 1.33980440e+00,
1.35473761e+00, 1.35473761e+00, 1.35473761e+00, 1.35473761e+00,
1.35912884e+00, 1.35912884e+00, 1.35912884e+00, 1.35912884e+00,
1.36103279e+00, 1.36103279e+00, 1.36103279e+00, 1.36103279e+00,
1.36224006e+00, 1.36224006e+00, 1.36224006e+00, 1.36224006e+00,
1.36307271e+00, 1.36307271e+00, 1.36307271e+00, 1.36307271e+00,
1.36277930e+00, 1.36277930e+00, 1.36277930e+00, 1.36277930e+00,
1.36186954e+00, 1.36186954e+00, 1.36186954e+00, 1.36186954e+00,
1.36140807e+00, 1.36140807e+00, 1.36140807e+00, 1.36140807e+00,
1.36104332e+00, 1.36104332e+00, 1.36104332e+00, 1.36104332e+00,
1.36139643e+00, 1.36139643e+00, 1.36139643e+00, 1.36139643e+00,
1.36210857e+00, 1.36210857e+00, 1.36210857e+00, 1.36210857e+00,
1.36065559e+00, 1.36065559e+00, 1.36065559e+00, 1.36065559e+00,
1.34903815e+00, 1.34903815e+00, 1.34903815e+00, 1.34903815e+00,
1.29211103e+00, 1.29211103e+00, 1.29211103e+00, 1.29211103e+00,
1.05539569e+00, 1.05539569e+00, 1.05539569e+00, 1.05539569e+00,
4.48123192e-01, 4.48123192e-01, 4.48123192e-01, 4.48123192e-01,
5.68576756e-02, 5.68576756e-02, 5.68576756e-02, 5.68576756e-02,
4.54568441e-03, 4.54568441e-03, 4.54568441e-03, 4.54568441e-03,
3.40320288e-04, 3.40320288e-04, 3.40320288e-04, 3.40320288e-04,
2.52658640e-05, 2.52658640e-05, 2.52658640e-05, 2.52658640e-05,
1.87162703e-06, 1.87162703e-06, 1.87162703e-06, 1.87162703e-06,
1.38344702e-07, 1.38344702e-07, 1.38344702e-07, 1.38344702e-07,
1.02018842e-08, 1.02018842e-08, 1.02018842e-08, 1.02018842e-08,
7.50419983e-10, 7.50419983e-10, 7.50419983e-10, 7.50419983e-10,
5.50338981e-11, 5.50338981e-11, 5.50338981e-11, 5.50338981e-11,
4.01951569e-12, 4.01951569e-12, 4.01951569e-12, 4.01951569e-12,
2.91936804e-13, 2.91936804e-13, 2.91936804e-13, 2.91936804e-13,
2.11199253e-14, 2.11199253e-14, 2.11199253e-14, 2.11199253e-14,
1.47398293e-15, 1.47398293e-15, 1.47398293e-15, 1.47398293e-15,
9.45362951e-17, 9.45362951e-17, 9.45362951e-17, 9.45362951e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999984, 0.99999984,
0.99999984, 0.99999984, 0.99999886, 0.99999886, 0.99999886,
0.99999886, 0.99999249, 0.99999249, 0.99999249, 0.99999249,
0.99995583, 0.99995583, 0.99995583, 0.99995583, 0.9997706 ,
0.9997706 , 0.9997706 , 0.9997706 , 0.99896245, 0.99896245,
0.99896245, 0.99896245, 0.9959846 , 0.9959846 , 0.9959846 ,
0.9959846 , 0.98696264, 0.98696264, 0.98696264, 0.98696264,
0.96508085, 0.96508085, 0.96508085, 0.96508085, 0.92328027,
0.92328027, 0.92328027, 0.92328027, 0.85997549, 0.85997549,
0.85997549, 0.85997549, 0.78115703, 0.78115703, 0.78115703,
0.78115703, 0.69766029, 0.69766029, 0.69766029, 0.69766029,
0.62252492, 0.62252492, 0.62252492, 0.62252492, 0.55444993,
0.55444993, 0.55444993, 0.55444993, 0.50606466, 0.50606466,
0.50606466, 0.50606466, 0.4797491 , 0.4797491 , 0.4797491 ,
0.4797491 , 0.47000142, 0.47000142, 0.47000142, 0.47000142,
0.46778259, 0.46778259, 0.46778259, 0.46778259, 0.46731388,
0.46731388, 0.46731388, 0.46731388, 0.46681772, 0.46681772,
0.46681772, 0.46681772, 0.46594134, 0.46594134, 0.46594134,
0.46594134, 0.46489255, 0.46489255, 0.46489255, 0.46489255,
0.46406793, 0.46406793, 0.46406793, 0.46406793, 0.46371733,
0.46371733, 0.46371733, 0.46371733, 0.46392827, 0.46392827,
0.46392827, 0.46392827, 0.46457704, 0.46457704, 0.46457704,
0.46457704, 0.4649299 , 0.4649299 , 0.4649299 , 0.4649299 ,
0.464449 , 0.464449 , 0.464449 , 0.464449 , 0.45965373,
0.45965373, 0.45965373, 0.45965373, 0.43413396, 0.43413396,
0.43413396, 0.43413396, 0.3417067 , 0.3417067 , 0.3417067 ,
0.3417067 , 0.17380695, 0.17380695, 0.17380695, 0.17380695,
0.10772404, 0.10772404, 0.10772404, 0.10772404, 0.10060218,
0.10060218, 0.10060218, 0.10060218, 0.10004502, 0.10004502,
0.10004502, 0.10004502, 0.10000334, 0.10000334, 0.10000334,
0.10000334, 0.10000025, 0.10000025, 0.10000025, 0.10000025,
0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999982, 0.99999982,
0.99999982, 0.99999982, 0.99999875, 0.99999875, 0.99999875,
0.99999875, 0.99999216, 0.99999216, 0.99999216, 0.99999216,
0.99995594, 0.99995594, 0.99995594, 0.99995594, 0.99978118,
0.99978118, 0.99978118, 0.99978118, 0.99905363, 0.99905363,
0.99905363, 0.99905363, 0.99649673, 0.99649673, 0.99649673,
0.99649673, 0.98910195, 0.98910195, 0.98910195, 0.98910195,
0.97190917, 0.97190917, 0.97190917, 0.97190917, 0.94012653,
0.94012653, 0.94012653, 0.94012653, 0.89285479, 0.89285479,
0.89285479, 0.89285479, 0.83403394, 0.83403394, 0.83403394,
0.83403394, 0.77099739, 0.77099739, 0.77099739, 0.77099739,
0.71316881, 0.71316881, 0.71316881, 0.71316881, 0.66167639,
0.66167639, 0.66167639, 0.66167639, 0.61669901, 0.61669901,
0.61669901, 0.61669901, 0.58751731, 0.58751731, 0.58751731,
0.58751731, 0.58088401, 0.58088401, 0.58088401, 0.58088401,
0.58197653, 0.58197653, 0.58197653, 0.58197653, 0.58530083,
0.58530083, 0.58530083, 0.58530083, 0.58593749, 0.58593749,
0.58593749, 0.58593749, 0.58219521, 0.58219521, 0.58219521,
0.58219521, 0.56871482, 0.56871482, 0.56871482, 0.56871482,
0.54028566, 0.54028566, 0.54028566, 0.54028566, 0.49391932,
0.49391932, 0.49391932, 0.49391932, 0.43125951, 0.43125951,
0.43125951, 0.43125951, 0.37842572, 0.37842572, 0.37842572,
0.37842572, 0.34810948, 0.34810948, 0.34810948, 0.34810948,
0.33368361, 0.33368361, 0.33368361, 0.33368361, 0.32786563,
0.32786563, 0.32786563, 0.32786563, 0.32355452, 0.32355452,
0.32355452, 0.32355452, 0.30821032, 0.30821032, 0.30821032,
0.30821032, 0.24538437, 0.24538437, 0.24538437, 0.24538437,
0.15274327, 0.15274327, 0.15274327, 0.15274327, 0.12792757,
0.12792757, 0.12792757, 0.12792757, 0.12523902, 0.12523902,
0.12523902, 0.12523902, 0.12501814, 0.12501814, 0.12501814,
0.12501814, 0.12500135, 0.12500135, 0.12500135, 0.12500135,
0.1250001 , 0.1250001 , 0.1250001 , 0.1250001 , 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
7.50000211e-01, 7.50000211e-01, 7.50000211e-01, 7.50000211e-01,
7.50001474e-01, 7.50001474e-01, 7.50001474e-01, 7.50001474e-01,
7.50009273e-01, 7.50009273e-01, 7.50009273e-01, 7.50009273e-01,
7.50052129e-01, 7.50052129e-01, 7.50052129e-01, 7.50052129e-01,
7.50258907e-01, 7.50258907e-01, 7.50258907e-01, 7.50258907e-01,
7.51119944e-01, 7.51119944e-01, 7.51119944e-01, 7.51119944e-01,
7.54149241e-01, 7.54149241e-01, 7.54149241e-01, 7.54149241e-01,
7.62945461e-01, 7.62945461e-01, 7.62945461e-01, 7.62945461e-01,
7.83619793e-01, 7.83619793e-01, 7.83619793e-01, 7.83619793e-01,
8.22703779e-01, 8.22703779e-01, 8.22703779e-01, 8.22703779e-01,
8.82990632e-01, 8.82990632e-01, 8.82990632e-01, 8.82990632e-01,
9.61803322e-01, 9.61803322e-01, 9.61803322e-01, 9.61803322e-01,
1.04857800e+00, 1.04857800e+00, 1.04857800e+00, 1.04857800e+00,
1.13591034e+00, 1.13591034e+00, 1.13591034e+00, 1.13591034e+00,
1.22389255e+00, 1.22389255e+00, 1.22389255e+00, 1.22389255e+00,
1.29496803e+00, 1.29496803e+00, 1.29496803e+00, 1.29496803e+00,
1.33747715e+00, 1.33747715e+00, 1.33747715e+00, 1.33747715e+00,
1.35392574e+00, 1.35392574e+00, 1.35392574e+00, 1.35392574e+00,
1.35857156e+00, 1.35857156e+00, 1.35857156e+00, 1.35857156e+00,
1.36055928e+00, 1.36055928e+00, 1.36055928e+00, 1.36055928e+00,
1.36197585e+00, 1.36197585e+00, 1.36197585e+00, 1.36197585e+00,
1.36328541e+00, 1.36328541e+00, 1.36328541e+00, 1.36328541e+00,
1.36343618e+00, 1.36343618e+00, 1.36343618e+00, 1.36343618e+00,
1.36275200e+00, 1.36275200e+00, 1.36275200e+00, 1.36275200e+00,
1.36185315e+00, 1.36185315e+00, 1.36185315e+00, 1.36185315e+00,
1.36106906e+00, 1.36106906e+00, 1.36106906e+00, 1.36106906e+00,
1.36076174e+00, 1.36076174e+00, 1.36076174e+00, 1.36076174e+00,
1.36153615e+00, 1.36153615e+00, 1.36153615e+00, 1.36153615e+00,
1.36145251e+00, 1.36145251e+00, 1.36145251e+00, 1.36145251e+00,
1.35798352e+00, 1.35798352e+00, 1.35798352e+00, 1.35798352e+00,
1.33896458e+00, 1.33896458e+00, 1.33896458e+00, 1.33896458e+00,
1.24901222e+00, 1.24901222e+00, 1.24901222e+00, 1.24901222e+00,
9.05845095e-01, 9.05845095e-01, 9.05845095e-01, 9.05845095e-01,
2.60939488e-01, 2.60939488e-01, 2.60939488e-01, 2.60939488e-01,
2.66949863e-02, 2.66949863e-02, 2.66949863e-02, 2.66949863e-02,
2.06759900e-03, 2.06759900e-03, 2.06759900e-03, 2.06759900e-03,
1.54404335e-04, 1.54404335e-04, 1.54404335e-04, 1.54404335e-04,
1.14811015e-05, 1.14811015e-05, 1.14811015e-05, 1.14811015e-05,
8.51232178e-07, 8.51232178e-07, 8.51232178e-07, 8.51232178e-07,
6.29700498e-08, 6.29700498e-08, 6.29700498e-08, 6.29700498e-08,
4.64771793e-09, 4.64771793e-09, 4.64771793e-09, 4.64771793e-09,
3.42187413e-10, 3.42187413e-10, 3.42187413e-10, 3.42187413e-10,
2.51200466e-11, 2.51200466e-11, 2.51200466e-11, 2.51200466e-11,
1.83703667e-12, 1.83703667e-12, 1.83703667e-12, 1.83703667e-12,
1.33855888e-13, 1.33855888e-13, 1.33855888e-13, 1.33855888e-13,
9.58591565e-15, 9.58591565e-15, 9.58591565e-15, 9.58591565e-15,
6.58015436e-16, 6.58015436e-16, 6.58015436e-16, 6.58015436e-16,
4.63362200e-17, 4.63362200e-17, 4.63362200e-17, 4.63362200e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.99999975, 0.99999975,
0.99999975, 0.99999975, 0.99999826, 0.99999826, 0.99999826,
0.99999826, 0.99998903, 0.99998903, 0.99998903, 0.99998903,
0.99993832, 0.99993832, 0.99993832, 0.99993832, 0.9996937 ,
0.9996937 , 0.9996937 , 0.9996937 , 0.9986757 , 0.9986757 ,
0.9986757 , 0.9986757 , 0.99510219, 0.99510219, 0.99510219,
0.99510219, 0.98479658, 0.98479658, 0.98479658, 0.98479658,
0.96098067, 0.96098067, 0.96098067, 0.96098067, 0.91743778,
0.91743778, 0.91743778, 0.91743778, 0.85378402, 0.85378402,
0.85378402, 0.85378402, 0.7764234 , 0.7764234 , 0.7764234 ,
0.7764234 , 0.69575388, 0.69575388, 0.69575388, 0.69575388,
0.62328396, 0.62328396, 0.62328396, 0.62328396, 0.55678008,
0.55678008, 0.55678008, 0.55678008, 0.50850264, 0.50850264,
0.50850264, 0.50850264, 0.48137473, 0.48137473, 0.48137473,
0.48137473, 0.47065375, 0.47065375, 0.47065375, 0.47065375,
0.46777062, 0.46777062, 0.46777062, 0.46777062, 0.46716399,
0.46716399, 0.46716399, 0.46716399, 0.46676886, 0.46676886,
0.46676886, 0.46676886, 0.46619345, 0.46619345, 0.46619345,
0.46619345, 0.46537137, 0.46537137, 0.46537137, 0.46537137,
0.46458172, 0.46458172, 0.46458172, 0.46458172, 0.46395933,
0.46395933, 0.46395933, 0.46395933, 0.46392493, 0.46392493,
0.46392493, 0.46392493, 0.46425901, 0.46425901, 0.46425901,
0.46425901, 0.46466477, 0.46466477, 0.46466477, 0.46466477,
0.46482226, 0.46482226, 0.46482226, 0.46482226, 0.46376334,
0.46376334, 0.46376334, 0.46376334, 0.45509168, 0.45509168,
0.45509168, 0.45509168, 0.41543057, 0.41543057, 0.41543057,
0.41543057, 0.29185634, 0.29185634, 0.29185634, 0.29185634,
0.13928365, 0.13928365, 0.13928365, 0.13928365, 0.10357133,
0.10357133, 0.10357133, 0.10357133, 0.10027368, 0.10027368,
0.10027368, 0.10027368, 0.10002043, 0.10002043, 0.10002043,
0.10002043, 0.10000152, 0.10000152, 0.10000152, 0.10000152,
0.10000011, 0.10000011, 0.10000011, 0.10000011, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999972, 0.99999972,
0.99999972, 0.99999972, 0.99999813, 0.99999813, 0.99999813,
0.99999813, 0.99998874, 0.99998874, 0.99998874, 0.99998874,
0.99993939, 0.99993939, 0.99993939, 0.99993939, 0.99971172,
0.99971172, 0.99971172, 0.99971172, 0.99880638, 0.99880638,
0.99880638, 0.99880638, 0.99577085, 0.99577085, 0.99577085,
0.99577085, 0.98739937, 0.98739937, 0.98739937, 0.98739937,
0.96881177, 0.96881177, 0.96881177, 0.96881177, 0.93583686,
0.93583686, 0.93583686, 0.93583686, 0.88837163, 0.88837163,
0.88837163, 0.88837163, 0.83062885, 0.83062885, 0.83062885,
0.83062885, 0.76981937, 0.76981937, 0.76981937, 0.76981937,
0.71310496, 0.71310496, 0.71310496, 0.71310496, 0.66323748,
0.66323748, 0.66323748, 0.66323748, 0.62045416, 0.62045416,
0.62045416, 0.62045416, 0.58992516, 0.58992516, 0.58992516,
0.58992516, 0.58052011, 0.58052011, 0.58052011, 0.58052011,
0.58080503, 0.58080503, 0.58080503, 0.58080503, 0.58354665,
0.58354665, 0.58354665, 0.58354665, 0.58540693, 0.58540693,
0.58540693, 0.58540693, 0.58382526, 0.58382526, 0.58382526,
0.58382526, 0.57540774, 0.57540774, 0.57540774, 0.57540774,
0.55436649, 0.55436649, 0.55436649, 0.55436649, 0.51638779,
0.51638779, 0.51638779, 0.51638779, 0.46017314, 0.46017314,
0.46017314, 0.46017314, 0.39863657, 0.39863657, 0.39863657,
0.39863657, 0.3593355 , 0.3593355 , 0.3593355 , 0.3593355 ,
0.33897034, 0.33897034, 0.33897034, 0.33897034, 0.33057608,
0.33057608, 0.33057608, 0.33057608, 0.32697565, 0.32697565,
0.32697565, 0.32697565, 0.32222492, 0.32222492, 0.32222492,
0.32222492, 0.29663114, 0.29663114, 0.29663114, 0.29663114,
0.21326785, 0.21326785, 0.21326785, 0.21326785, 0.13963631,
0.13963631, 0.13963631, 0.13963631, 0.12638405, 0.12638405,
0.12638405, 0.12638405, 0.12510904, 0.12510904, 0.12510904,
0.12510904, 0.12500824, 0.12500824, 0.12500824, 0.12500824,
0.12500062, 0.12500062, 0.12500062, 0.12500062, 0.12500005,
0.12500005, 0.12500005, 0.12500005, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
7.50000045e-01, 7.50000045e-01, 7.50000045e-01, 7.50000045e-01,
7.50000331e-01, 7.50000331e-01, 7.50000331e-01, 7.50000331e-01,
7.50002210e-01, 7.50002210e-01, 7.50002210e-01, 7.50002210e-01,
7.50013317e-01, 7.50013317e-01, 7.50013317e-01, 7.50013317e-01,
7.50071715e-01, 7.50071715e-01, 7.50071715e-01, 7.50071715e-01,
7.50341105e-01, 7.50341105e-01, 7.50341105e-01, 7.50341105e-01,
7.51412648e-01, 7.51412648e-01, 7.51412648e-01, 7.51412648e-01,
7.55010444e-01, 7.55010444e-01, 7.55010444e-01, 7.55010444e-01,
7.64979298e-01, 7.64979298e-01, 7.64979298e-01, 7.64979298e-01,
7.87380429e-01, 7.87380429e-01, 7.87380429e-01, 7.87380429e-01,
8.28067152e-01, 8.28067152e-01, 8.28067152e-01, 8.28067152e-01,
8.88835090e-01, 8.88835090e-01, 8.88835090e-01, 8.88835090e-01,
9.66485823e-01, 9.66485823e-01, 9.66485823e-01, 9.66485823e-01,
1.05055852e+00, 1.05055852e+00, 1.05055852e+00, 1.05055852e+00,
1.13522481e+00, 1.13522481e+00, 1.13522481e+00, 1.13522481e+00,
1.22058953e+00, 1.22058953e+00, 1.22058953e+00, 1.22058953e+00,
1.29086599e+00, 1.29086599e+00, 1.29086599e+00, 1.29086599e+00,
1.33487117e+00, 1.33487117e+00, 1.33487117e+00, 1.33487117e+00,
1.35308250e+00, 1.35308250e+00, 1.35308250e+00, 1.35308250e+00,
1.35819700e+00, 1.35819700e+00, 1.35819700e+00, 1.35819700e+00,
1.36011186e+00, 1.36011186e+00, 1.36011186e+00, 1.36011186e+00,
1.36156806e+00, 1.36156806e+00, 1.36156806e+00, 1.36156806e+00,
1.36315058e+00, 1.36315058e+00, 1.36315058e+00, 1.36315058e+00,
1.36379727e+00, 1.36379727e+00, 1.36379727e+00, 1.36379727e+00,
1.36351067e+00, 1.36351067e+00, 1.36351067e+00, 1.36351067e+00,
1.36261248e+00, 1.36261248e+00, 1.36261248e+00, 1.36261248e+00,
1.36146436e+00, 1.36146436e+00, 1.36146436e+00, 1.36146436e+00,
1.36063916e+00, 1.36063916e+00, 1.36063916e+00, 1.36063916e+00,
1.36092008e+00, 1.36092008e+00, 1.36092008e+00, 1.36092008e+00,
1.36127360e+00, 1.36127360e+00, 1.36127360e+00, 1.36127360e+00,
1.36020110e+00, 1.36020110e+00, 1.36020110e+00, 1.36020110e+00,
1.35450702e+00, 1.35450702e+00, 1.35450702e+00, 1.35450702e+00,
1.32300030e+00, 1.32300030e+00, 1.32300030e+00, 1.32300030e+00,
1.18237908e+00, 1.18237908e+00, 1.18237908e+00, 1.18237908e+00,
7.15441717e-01, 7.15441717e-01, 7.15441717e-01, 7.15441717e-01,
1.38769905e-01, 1.38769905e-01, 1.38769905e-01, 1.38769905e-01,
1.23577720e-02, 1.23577720e-02, 1.23577720e-02, 1.23577720e-02,
9.36224416e-04, 9.36224416e-04, 9.36224416e-04, 9.36224416e-04,
7.00272710e-05, 7.00272710e-05, 7.00272710e-05, 7.00272710e-05,
5.21364262e-06, 5.21364262e-06, 5.21364262e-06, 5.21364262e-06,
3.86975587e-07, 3.86975587e-07, 3.86975587e-07, 3.86975587e-07,
2.86533268e-08, 2.86533268e-08, 2.86533268e-08, 2.86533268e-08,
2.11667470e-09, 2.11667470e-09, 2.11667470e-09, 2.11667470e-09,
1.55981163e-10, 1.55981163e-10, 1.55981163e-10, 1.55981163e-10,
1.14620004e-11, 1.14620004e-11, 1.14620004e-11, 1.14620004e-11,
8.39464394e-13, 8.39464394e-13, 8.39464394e-13, 8.39464394e-13,
6.10879150e-14, 6.10879150e-14, 6.10879150e-14, 6.10879150e-14,
4.40544803e-15, 4.40544803e-15, 4.40544803e-15, 4.40544803e-15,
3.15470277e-16, 3.15470277e-16, 3.15470277e-16, 3.15470277e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.99999961, 0.99999961,
0.99999961, 0.99999961, 0.99999739, 0.99999739, 0.99999739,
0.99999739, 0.99998424, 0.99998424, 0.99998424, 0.99998424,
0.99991515, 0.99991515, 0.99991515, 0.99991515, 0.99959648,
0.99959648, 0.99959648, 0.99959648, 0.99832987, 0.99832987,
0.99832987, 0.99832987, 0.99408857, 0.99408857, 0.99408857,
0.99408857, 0.98242851, 0.98242851, 0.98242851, 0.98242851,
0.95670672, 0.95670672, 0.95670672, 0.95670672, 0.91159757,
0.91159757, 0.91159757, 0.91159757, 0.8477941 , 0.8477941 ,
0.8477941 , 0.8477941 , 0.77194869, 0.77194869, 0.77194869,
0.77194869, 0.69397675, 0.69397675, 0.69397675, 0.69397675,
0.62399737, 0.62399737, 0.62399737, 0.62399737, 0.55909955,
0.55909955, 0.55909955, 0.55909955, 0.51089525, 0.51089525,
0.51089525, 0.51089525, 0.48295725, 0.48295725, 0.48295725,
0.48295725, 0.47140761, 0.47140761, 0.47140761, 0.47140761,
0.46792021, 0.46792021, 0.46792021, 0.46792021, 0.46704157,
0.46704157, 0.46704157, 0.46704157, 0.46664044, 0.46664044,
0.46664044, 0.46664044, 0.46622055, 0.46622055, 0.46622055,
0.46622055, 0.46568048, 0.46568048, 0.46568048, 0.46568048,
0.46505167, 0.46505167, 0.46505167, 0.46505167, 0.46437416,
0.46437416, 0.46437416, 0.46437416, 0.46411629, 0.46411629,
0.46411629, 0.46411629, 0.46418296, 0.46418296, 0.46418296,
0.46418296, 0.46437517, 0.46437517, 0.46437517, 0.46437517,
0.46474262, 0.46474262, 0.46474262, 0.46474262, 0.4647905 ,
0.4647905 , 0.4647905 , 0.4647905 , 0.46219808, 0.46219808,
0.46219808, 0.46219808, 0.44788536, 0.44788536, 0.44788536,
0.44788536, 0.38869085, 0.38869085, 0.38869085, 0.38869085,
0.23647903, 0.23647903, 0.23647903, 0.23647903, 0.11972131,
0.11972131, 0.11972131, 0.11972131, 0.10164215, 0.10164215,
0.10164215, 0.10164215, 0.10012388, 0.10012388, 0.10012388,
0.10012388, 0.10000926, 0.10000926, 0.10000926, 0.10000926,
0.10000069, 0.10000069, 0.10000069, 0.10000069, 0.10000005,
0.10000005, 0.10000005, 0.10000005, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999957, 0.99999957,
0.99999957, 0.99999957, 0.99999725, 0.99999725, 0.99999725,
0.99999725, 0.99998408, 0.99998408, 0.99998408, 0.99998408,
0.99991777, 0.99991777, 0.99991777, 0.99991777, 0.99962494,
0.99962494, 0.99962494, 0.99962494, 0.99851137, 0.99851137,
0.99851137, 0.99851137, 0.99494469, 0.99494469, 0.99494469,
0.99494469, 0.98555163, 0.98555163, 0.98555163, 0.98555163,
0.96559893, 0.96559893, 0.96559893, 0.96559893, 0.93155858,
0.93155858, 0.93155858, 0.93155858, 0.88403476, 0.88403476,
0.88403476, 0.88403476, 0.8274092 , 0.8274092 , 0.8274092 ,
0.8274092 , 0.76877221, 0.76877221, 0.76877221, 0.76877221,
0.71316056, 0.71316056, 0.71316056, 0.71316056, 0.66441163,
0.66441163, 0.66441163, 0.66441163, 0.62379118, 0.62379118,
0.62379118, 0.62379118, 0.59276036, 0.59276036, 0.59276036,
0.59276036, 0.58060214, 0.58060214, 0.58060214, 0.58060214,
0.58004359, 0.58004359, 0.58004359, 0.58004359, 0.58181969,
0.58181969, 0.58181969, 0.58181969, 0.58456085, 0.58456085,
0.58456085, 0.58456085, 0.58426133, 0.58426133, 0.58426133,
0.58426133, 0.57952111, 0.57952111, 0.57952111, 0.57952111,
0.56481381, 0.56481381, 0.56481381, 0.56481381, 0.53498407,
0.53498407, 0.53498407, 0.53498407, 0.48707968, 0.48707968,
0.48707968, 0.48707968, 0.4240172 , 0.4240172 , 0.4240172 ,
0.4240172 , 0.37419742, 0.37419742, 0.37419742, 0.37419742,
0.34640254, 0.34640254, 0.34640254, 0.34640254, 0.33383188,
0.33383188, 0.33383188, 0.33383188, 0.32905424, 0.32905424,
0.32905424, 0.32905424, 0.32677563, 0.32677563, 0.32677563,
0.32677563, 0.31923078, 0.31923078, 0.31923078, 0.31923078,
0.27840167, 0.27840167, 0.27840167, 0.27840167, 0.1822785 ,
0.1822785 , 0.1822785 , 0.1822785 , 0.13240005, 0.13240005,
0.13240005, 0.13240005, 0.12564148, 0.12564148, 0.12564148,
0.12564148, 0.12504969, 0.12504969, 0.12504969, 0.12504969,
0.12500374, 0.12500374, 0.12500374, 0.12500374, 0.12500028,
0.12500028, 0.12500028, 0.12500028, 0.12500002, 0.12500002,
0.12500002, 0.12500002, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000072e-01, 7.50000072e-01, 7.50000072e-01, 7.50000072e-01,
7.50000509e-01, 7.50000509e-01, 7.50000509e-01, 7.50000509e-01,
7.50003258e-01, 7.50003258e-01, 7.50003258e-01, 7.50003258e-01,
7.50018836e-01, 7.50018836e-01, 7.50018836e-01, 7.50018836e-01,
7.50097297e-01, 7.50097297e-01, 7.50097297e-01, 7.50097297e-01,
7.50443797e-01, 7.50443797e-01, 7.50443797e-01, 7.50443797e-01,
7.51761984e-01, 7.51761984e-01, 7.51761984e-01, 7.51761984e-01,
7.55991281e-01, 7.55991281e-01, 7.55991281e-01, 7.55991281e-01,
7.67190124e-01, 7.67190124e-01, 7.67190124e-01, 7.67190124e-01,
7.91292369e-01, 7.91292369e-01, 7.91292369e-01, 7.91292369e-01,
8.33436036e-01, 8.33436036e-01, 8.33436036e-01, 8.33436036e-01,
8.94508968e-01, 8.94508968e-01, 8.94508968e-01, 8.94508968e-01,
9.70928324e-01, 9.70928324e-01, 9.70928324e-01, 9.70928324e-01,
1.05242450e+00, 1.05242450e+00, 1.05242450e+00, 1.05242450e+00,
1.13456684e+00, 1.13456684e+00, 1.13456684e+00, 1.13456684e+00,
1.21752814e+00, 1.21752814e+00, 1.21752814e+00, 1.21752814e+00,
1.28688080e+00, 1.28688080e+00, 1.28688080e+00, 1.28688080e+00,
1.33202565e+00, 1.33202565e+00, 1.33202565e+00, 1.33202565e+00,
1.35205511e+00, 1.35205511e+00, 1.35205511e+00, 1.35205511e+00,
1.35794285e+00, 1.35794285e+00, 1.35794285e+00, 1.35794285e+00,
1.35979765e+00, 1.35979765e+00, 1.35979765e+00, 1.35979765e+00,
1.36117165e+00, 1.36117165e+00, 1.36117165e+00, 1.36117165e+00,
1.36278081e+00, 1.36278081e+00, 1.36278081e+00, 1.36278081e+00,
1.36384708e+00, 1.36384708e+00, 1.36384708e+00, 1.36384708e+00,
1.36394428e+00, 1.36394428e+00, 1.36394428e+00, 1.36394428e+00,
1.36340422e+00, 1.36340422e+00, 1.36340422e+00, 1.36340422e+00,
1.36216954e+00, 1.36216954e+00, 1.36216954e+00, 1.36216954e+00,
1.36091948e+00, 1.36091948e+00, 1.36091948e+00, 1.36091948e+00,
1.36072488e+00, 1.36072488e+00, 1.36072488e+00, 1.36072488e+00,
1.36080076e+00, 1.36080076e+00, 1.36080076e+00, 1.36080076e+00,
1.36052967e+00, 1.36052967e+00, 1.36052967e+00, 1.36052967e+00,
1.35904254e+00, 1.35904254e+00, 1.35904254e+00, 1.35904254e+00,
1.34885124e+00, 1.34885124e+00, 1.34885124e+00, 1.34885124e+00,
1.29744243e+00, 1.29744243e+00, 1.29744243e+00, 1.29744243e+00,
1.08422445e+00, 1.08422445e+00, 1.08422445e+00, 1.08422445e+00,
5.02990327e-01, 5.02990327e-01, 5.02990327e-01, 5.02990327e-01,
6.93727442e-02, 6.93727442e-02, 6.93727442e-02, 6.93727442e-02,
5.63191058e-03, 5.63191058e-03, 5.63191058e-03, 5.63191058e-03,
4.24506091e-04, 4.24506091e-04, 4.24506091e-04, 4.24506091e-04,
3.17404436e-05, 3.17404436e-05, 3.17404436e-05, 3.17404436e-05,
2.36582375e-06, 2.36582375e-06, 2.36582375e-06, 2.36582375e-06,
1.75833876e-07, 1.75833876e-07, 1.75833876e-07, 1.75833876e-07,
1.30328080e-08, 1.30328080e-08, 1.30328080e-08, 1.30328080e-08,
9.63639514e-10, 9.63639514e-10, 9.63639514e-10, 9.63639514e-10,
7.10763736e-11, 7.10763736e-11, 7.10763736e-11, 7.10763736e-11,
5.22825264e-12, 5.22825264e-12, 5.22825264e-12, 5.22825264e-12,
3.83163730e-13, 3.83163730e-13, 3.83163730e-13, 3.83163730e-13,
2.79726565e-14, 2.79726565e-14, 2.79726565e-14, 2.79726565e-14,
2.02525897e-15, 2.02525897e-15, 2.02525897e-15, 2.02525897e-15,
1.51631827e-16, 1.51631827e-16, 1.51631827e-16, 1.51631827e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999991,
0.99999991, 0.99999991, 0.99999991, 0.9999994 , 0.9999994 ,
0.9999994 , 0.9999994 , 0.99999614, 0.99999614, 0.99999614,
0.99999614, 0.99997771, 0.99997771, 0.99997771, 0.99997771,
0.99988488, 0.99988488, 0.99988488, 0.99988488, 0.99947502,
0.99947502, 0.99947502, 0.99947502, 0.99791728, 0.99791728,
0.99791728, 0.99791728, 0.99293536, 0.99293536, 0.99293536,
0.99293536, 0.97986052, 0.97986052, 0.97986052, 0.97986052,
0.95227911, 0.95227911, 0.95227911, 0.95227911, 0.90578254,
0.90578254, 0.90578254, 0.90578254, 0.84200911, 0.84200911,
0.84200911, 0.84200911, 0.76771824, 0.76771824, 0.76771824,
0.76771824, 0.69232015, 0.69232015, 0.69232015, 0.69232015,
0.62465064, 0.62465064, 0.62465064, 0.62465064, 0.56138795,
0.56138795, 0.56138795, 0.56138795, 0.51330741, 0.51330741,
0.51330741, 0.51330741, 0.4845093 , 0.4845093 , 0.4845093 ,
0.4845093 , 0.47217185, 0.47217185, 0.47217185, 0.47217185,
0.46819774, 0.46819774, 0.46819774, 0.46819774, 0.46701446,
0.46701446, 0.46701446, 0.46701446, 0.46652199, 0.46652199,
0.46652199, 0.46652199, 0.46611084, 0.46611084, 0.46611084,
0.46611084, 0.46578348, 0.46578348, 0.46578348, 0.46578348,
0.46535618, 0.46535618, 0.46535618, 0.46535618, 0.46482306,
0.46482306, 0.46482306, 0.46482306, 0.46446841, 0.46446841,
0.46446841, 0.46446841, 0.46430983, 0.46430983, 0.46430983,
0.46430983, 0.46428048, 0.46428048, 0.46428048, 0.46428048,
0.46452486, 0.46452486, 0.46452486, 0.46452486, 0.4649441 ,
0.4649441 , 0.4649441 , 0.4649441 , 0.46428963, 0.46428963,
0.46428963, 0.46428963, 0.45964556, 0.45964556, 0.45964556,
0.45964556, 0.4368908 , 0.4368908 , 0.4368908 , 0.4368908 ,
0.35200209, 0.35200209, 0.35200209, 0.35200209, 0.18536524,
0.18536524, 0.18536524, 0.18536524, 0.10948877, 0.10948877,
0.10948877, 0.10948877, 0.10074638, 0.10074638, 0.10074638,
0.10074638, 0.10005616, 0.10005616, 0.10005616, 0.10005616,
0.1000042 , 0.1000042 , 0.1000042 , 0.1000042 , 0.10000031,
0.10000031, 0.10000031, 0.10000031, 0.10000002, 0.10000002,
0.10000002, 0.10000002, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.9999999 ,
0.9999999 , 0.9999999 , 0.9999999 , 0.99999935, 0.99999935,
0.99999935, 0.99999935, 0.999996 , 0.999996 , 0.999996 ,
0.999996 , 0.9999778 , 0.9999778 , 0.9999778 , 0.9999778 ,
0.99988988, 0.99988988, 0.99988988, 0.99988988, 0.99951775,
0.99951775, 0.99951775, 0.99951775, 0.99816293, 0.99816293,
0.99816293, 0.99816293, 0.99401287, 0.99401287, 0.99401287,
0.99401287, 0.98356146, 0.98356146, 0.98356146, 0.98356146,
0.9622853 , 0.9622853 , 0.9622853 , 0.9622853 , 0.92730693,
0.92730693, 0.92730693, 0.92730693, 0.87984577, 0.87984577,
0.87984577, 0.87984577, 0.82436213, 0.82436213, 0.82436213,
0.82436213, 0.76781991, 0.76781991, 0.76781991, 0.76781991,
0.71338064, 0.71338064, 0.71338064, 0.71338064, 0.66530752,
0.66530752, 0.66530752, 0.66530752, 0.62662899, 0.62662899,
0.62662899, 0.62662899, 0.59584458, 0.59584458, 0.59584458,
0.59584458, 0.58122522, 0.58122522, 0.58122522, 0.58122522,
0.57945682, 0.57945682, 0.57945682, 0.57945682, 0.58056762,
0.58056762, 0.58056762, 0.58056762, 0.58335259, 0.58335259,
0.58335259, 0.58335259, 0.5840114 , 0.5840114 , 0.5840114 ,
0.5840114 , 0.58173244, 0.58173244, 0.58173244, 0.58173244,
0.57212127, 0.57212127, 0.57212127, 0.57212127, 0.54967525,
0.54967525, 0.54967525, 0.54967525, 0.51027045, 0.51027045,
0.51027045, 0.51027045, 0.45256286, 0.45256286, 0.45256286,
0.45256286, 0.39319195, 0.39319195, 0.39319195, 0.39319195,
0.35669662, 0.35669662, 0.35669662, 0.35669662, 0.33848333,
0.33848333, 0.33848333, 0.33848333, 0.33098586, 0.33098586,
0.33098586, 0.33098586, 0.32867169, 0.32867169, 0.32867169,
0.32867169, 0.32673109, 0.32673109, 0.32673109, 0.32673109,
0.31276146, 0.31276146, 0.31276146, 0.31276146, 0.25297057,
0.25297057, 0.25297057, 0.25297057, 0.15774063, 0.15774063,
0.15774063, 0.15774063, 0.12857133, 0.12857133, 0.12857133,
0.12857133, 0.12529541, 0.12529541, 0.12529541, 0.12529541,
0.12502259, 0.12502259, 0.12502259, 0.12502259, 0.1250017 ,
0.1250017 , 0.1250017 , 0.1250017 , 0.12500013, 0.12500013,
0.12500013, 0.12500013, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000015e-01, 7.50000015e-01, 7.50000015e-01, 7.50000015e-01,
7.50000114e-01, 7.50000114e-01, 7.50000114e-01, 7.50000114e-01,
7.50000768e-01, 7.50000768e-01, 7.50000768e-01, 7.50000768e-01,
7.50004730e-01, 7.50004730e-01, 7.50004730e-01, 7.50004730e-01,
7.50026264e-01, 7.50026264e-01, 7.50026264e-01, 7.50026264e-01,
7.50130297e-01, 7.50130297e-01, 7.50130297e-01, 7.50130297e-01,
7.50570647e-01, 7.50570647e-01, 7.50570647e-01, 7.50570647e-01,
7.52174682e-01, 7.52174682e-01, 7.52174682e-01, 7.52174682e-01,
7.57098423e-01, 7.57098423e-01, 7.57098423e-01, 7.57098423e-01,
7.69575519e-01, 7.69575519e-01, 7.69575519e-01, 7.69575519e-01,
7.95338848e-01, 7.95338848e-01, 7.95338848e-01, 7.95338848e-01,
8.38790934e-01, 8.38790934e-01, 8.38790934e-01, 8.38790934e-01,
9.00008072e-01, 9.00008072e-01, 9.00008072e-01, 9.00008072e-01,
9.75143222e-01, 9.75143222e-01, 9.75143222e-01, 9.75143222e-01,
1.05418743e+00, 1.05418743e+00, 1.05418743e+00, 1.05418743e+00,
1.13392925e+00, 1.13392925e+00, 1.13392925e+00, 1.13392925e+00,
1.21464803e+00, 1.21464803e+00, 1.21464803e+00, 1.21464803e+00,
1.28307514e+00, 1.28307514e+00, 1.28307514e+00, 1.28307514e+00,
1.32905104e+00, 1.32905104e+00, 1.32905104e+00, 1.32905104e+00,
1.35077100e+00, 1.35077100e+00, 1.35077100e+00, 1.35077100e+00,
1.35767915e+00, 1.35767915e+00, 1.35767915e+00, 1.35767915e+00,
1.35963173e+00, 1.35963173e+00, 1.35963173e+00, 1.35963173e+00,
1.36086885e+00, 1.36086885e+00, 1.36086885e+00, 1.36086885e+00,
1.36233245e+00, 1.36233245e+00, 1.36233245e+00, 1.36233245e+00,
1.36365306e+00, 1.36365306e+00, 1.36365306e+00, 1.36365306e+00,
1.36410375e+00, 1.36410375e+00, 1.36410375e+00, 1.36410375e+00,
1.36392708e+00, 1.36392708e+00, 1.36392708e+00, 1.36392708e+00,
1.36298853e+00, 1.36298853e+00, 1.36298853e+00, 1.36298853e+00,
1.36152724e+00, 1.36152724e+00, 1.36152724e+00, 1.36152724e+00,
1.36088739e+00, 1.36088739e+00, 1.36088739e+00, 1.36088739e+00,
1.36059622e+00, 1.36059622e+00, 1.36059622e+00, 1.36059622e+00,
1.36030814e+00, 1.36030814e+00, 1.36030814e+00, 1.36030814e+00,
1.36008913e+00, 1.36008913e+00, 1.36008913e+00, 1.36008913e+00,
1.35711729e+00, 1.35711729e+00, 1.35711729e+00, 1.35711729e+00,
1.33931866e+00, 1.33931866e+00, 1.33931866e+00, 1.33931866e+00,
1.25869909e+00, 1.25869909e+00, 1.25869909e+00, 1.25869909e+00,
9.47391457e-01, 9.47391457e-01, 9.47391457e-01, 9.47391457e-01,
3.03306502e-01, 3.03306502e-01, 3.03306502e-01, 3.03306502e-01,
3.27779884e-02, 3.27779884e-02, 3.27779884e-02, 3.27779884e-02,
2.56194868e-03, 2.56194868e-03, 2.56194868e-03, 2.56194868e-03,
1.92341225e-04, 1.92341225e-04, 1.92341225e-04, 1.92341225e-04,
1.43841206e-05, 1.43841206e-05, 1.43841206e-05, 1.43841206e-05,
1.07319292e-06, 1.07319292e-06, 1.07319292e-06, 1.07319292e-06,
7.98515072e-08, 7.98515072e-08, 7.98515072e-08, 7.98515072e-08,
5.92527078e-09, 5.92527078e-09, 5.92527078e-09, 5.92527078e-09,
4.38545776e-10, 4.38545776e-10, 4.38545776e-10, 4.38545776e-10,
3.23766591e-11, 3.23766591e-11, 3.23766591e-11, 3.23766591e-11,
2.38365625e-12, 2.38365625e-12, 2.38365625e-12, 2.38365625e-12,
1.74984281e-13, 1.74984281e-13, 1.74984281e-13, 1.74984281e-13,
1.27988486e-14, 1.27988486e-14, 1.27988486e-14, 1.27988486e-14,
9.36619527e-16, 9.36619527e-16, 9.36619527e-16, 9.36619527e-16,
5.90078683e-17, 5.90078683e-17, 5.90078683e-17, 5.90078683e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999909, 0.99999909,
0.99999909, 0.99999909, 0.9999944 , 0.9999944 , 0.9999944 ,
0.9999944 , 0.99996892, 0.99996892, 0.99996892, 0.99996892,
0.99984584, 0.99984584, 0.99984584, 0.99984584, 0.99932502,
0.99932502, 0.99932502, 0.99932502, 0.99743007, 0.99743007,
0.99743007, 0.99743007, 0.99163522, 0.99163522, 0.99163522,
0.99163522, 0.97709688, 0.97709688, 0.97709688, 0.97709688,
0.94771858, 0.94771858, 0.94771858, 0.94771858, 0.90001323,
0.90001323, 0.90001323, 0.90001323, 0.83643028, 0.83643028,
0.83643028, 0.83643028, 0.76371797, 0.76371797, 0.76371797,
0.76371797, 0.69077552, 0.69077552, 0.69077552, 0.69077552,
0.62524441, 0.62524441, 0.62524441, 0.62524441, 0.56360708,
0.56360708, 0.56360708, 0.56360708, 0.51576884, 0.51576884,
0.51576884, 0.51576884, 0.48608775, 0.48608775, 0.48608775,
0.48608775, 0.47290348, 0.47290348, 0.47290348, 0.47290348,
0.46852795, 0.46852795, 0.46852795, 0.46852795, 0.46709417,
0.46709417, 0.46709417, 0.46709417, 0.4664615 , 0.4664615 ,
0.4664615 , 0.4664615 , 0.46595946, 0.46595946, 0.46595946,
0.46595946, 0.46573483, 0.46573483, 0.46573483, 0.46573483,
0.46549762, 0.46549762, 0.46549762, 0.46549762, 0.4651401 ,
0.4651401 , 0.4651401 , 0.4651401 , 0.4648877 , 0.4648877 ,
0.4648877 , 0.4648877 , 0.46460628, 0.46460628, 0.46460628,
0.46460628, 0.46435859, 0.46435859, 0.46435859, 0.46435859,
0.46443008, 0.46443008, 0.46443008, 0.46443008, 0.46484084,
0.46484084, 0.46484084, 0.46484084, 0.46477421, 0.46477421,
0.46477421, 0.46477421, 0.46345495, 0.46345495, 0.46345495,
0.46345495, 0.45575261, 0.45575261, 0.45575261, 0.45575261,
0.41991969, 0.41991969, 0.41991969, 0.41991969, 0.30495101,
0.30495101, 0.30495101, 0.30495101, 0.14641294, 0.14641294,
0.14641294, 0.14641294, 0.10439859, 0.10439859, 0.10439859,
0.10439859, 0.10033916, 0.10033916, 0.10033916, 0.10033916,
0.10002545, 0.10002545, 0.10002545, 0.10002545, 0.1000019 ,
0.1000019 , 0.1000019 , 0.1000019 , 0.10000014, 0.10000014,
0.10000014, 0.10000014, 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999985,
0.99999985, 0.99999985, 0.99999985, 0.99999903, 0.99999903,
0.99999903, 0.99999903, 0.99999428, 0.99999428, 0.99999428,
0.99999428, 0.99996946, 0.99996946, 0.99996946, 0.99996946,
0.99985432, 0.99985432, 0.99985432, 0.99985432, 0.99938676,
0.99938676, 0.99938676, 0.99938676, 0.99775536, 0.99775536,
0.99775536, 0.99775536, 0.99297081, 0.99297081, 0.99297081,
0.99297081, 0.98143309, 0.98143309, 0.98143309, 0.98143309,
0.95888578, 0.95888578, 0.95888578, 0.95888578, 0.9230955 ,
0.9230955 , 0.9230955 , 0.9230955 , 0.87580507, 0.87580507,
0.87580507, 0.87580507, 0.82147709, 0.82147709, 0.82147709,
0.82147709, 0.76692374, 0.76692374, 0.76692374, 0.76692374,
0.71378615, 0.71378615, 0.71378615, 0.71378615, 0.66604952,
0.66604952, 0.66604952, 0.66604952, 0.62893204, 0.62893204,
0.62893204, 0.62893204, 0.59898326, 0.59898326, 0.59898326,
0.59898326, 0.58239235, 0.58239235, 0.58239235, 0.58239235,
0.57906513, 0.57906513, 0.57906513, 0.57906513, 0.5796752 ,
0.5796752 , 0.5796752 , 0.5796752 , 0.58197407, 0.58197407,
0.58197407, 0.58197407, 0.58350893, 0.58350893, 0.58350893,
0.58350893, 0.58262487, 0.58262487, 0.58262487, 0.58262487,
0.5768568 , 0.5768568 , 0.5768568 , 0.5768568 , 0.56077107,
0.56077107, 0.56077107, 0.56077107, 0.52949915, 0.52949915,
0.52949915, 0.52949915, 0.48013846, 0.48013846, 0.48013846,
0.48013846, 0.41713955, 0.41713955, 0.41713955, 0.41713955,
0.37044721, 0.37044721, 0.37044721, 0.37044721, 0.34523075,
0.34523075, 0.34523075, 0.34523075, 0.33369594, 0.33369594,
0.33369594, 0.33369594, 0.32989191, 0.32989191, 0.32989191,
0.32989191, 0.32903442, 0.32903442, 0.32903442, 0.32903442,
0.32566179, 0.32566179, 0.32566179, 0.32566179, 0.30140914,
0.30140914, 0.30140914, 0.30140914, 0.22161536, 0.22161536,
0.22161536, 0.22161536, 0.142229 , 0.142229 , 0.142229 ,
0.142229 , 0.12669189, 0.12669189, 0.12669189, 0.12669189,
0.12513485, 0.12513485, 0.12513485, 0.12513485, 0.12501025,
0.12501025, 0.12501025, 0.12501025, 0.12500077, 0.12500077,
0.12500077, 0.12500077, 0.12500006, 0.12500006, 0.12500006,
0.12500006, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
7.50000176e-01, 7.50000176e-01, 7.50000176e-01, 7.50000176e-01,
7.50001143e-01, 7.50001143e-01, 7.50001143e-01, 7.50001143e-01,
7.50006765e-01, 7.50006765e-01, 7.50006765e-01, 7.50006765e-01,
7.50036132e-01, 7.50036132e-01, 7.50036132e-01, 7.50036132e-01,
7.50172369e-01, 7.50172369e-01, 7.50172369e-01, 7.50172369e-01,
7.50725674e-01, 7.50725674e-01, 7.50725674e-01, 7.50725674e-01,
7.52657561e-01, 7.52657561e-01, 7.52657561e-01, 7.52657561e-01,
7.58337621e-01, 7.58337621e-01, 7.58337621e-01, 7.58337621e-01,
7.72131336e-01, 7.72131336e-01, 7.72131336e-01, 7.72131336e-01,
7.99502632e-01, 7.99502632e-01, 7.99502632e-01, 7.99502632e-01,
8.44114177e-01, 8.44114177e-01, 8.44114177e-01, 8.44114177e-01,
9.05331881e-01, 9.05331881e-01, 9.05331881e-01, 9.05331881e-01,
9.79125457e-01, 9.79125457e-01, 9.79125457e-01, 9.79125457e-01,
1.05587185e+00, 1.05587185e+00, 1.05587185e+00, 1.05587185e+00,
1.13331506e+00, 1.13331506e+00, 1.13331506e+00, 1.13331506e+00,
1.21189543e+00, 1.21189543e+00, 1.21189543e+00, 1.21189543e+00,
1.27944869e+00, 1.27944869e+00, 1.27944869e+00, 1.27944869e+00,
1.32606311e+00, 1.32606311e+00, 1.32606311e+00, 1.32606311e+00,
1.34925512e+00, 1.34925512e+00, 1.34925512e+00, 1.34925512e+00,
1.35728578e+00, 1.35728578e+00, 1.35728578e+00, 1.35728578e+00,
1.35954920e+00, 1.35954920e+00, 1.35954920e+00, 1.35954920e+00,
1.36069411e+00, 1.36069411e+00, 1.36069411e+00, 1.36069411e+00,
1.36194086e+00, 1.36194086e+00, 1.36194086e+00, 1.36194086e+00,
1.36330593e+00, 1.36330593e+00, 1.36330593e+00, 1.36330593e+00,
1.36405650e+00, 1.36405650e+00, 1.36405650e+00, 1.36405650e+00,
1.36415497e+00, 1.36415497e+00, 1.36415497e+00, 1.36415497e+00,
1.36359348e+00, 1.36359348e+00, 1.36359348e+00, 1.36359348e+00,
1.36234614e+00, 1.36234614e+00, 1.36234614e+00, 1.36234614e+00,
1.36135889e+00, 1.36135889e+00, 1.36135889e+00, 1.36135889e+00,
1.36073912e+00, 1.36073912e+00, 1.36073912e+00, 1.36073912e+00,
1.36010502e+00, 1.36010502e+00, 1.36010502e+00, 1.36010502e+00,
1.36015262e+00, 1.36015262e+00, 1.36015262e+00, 1.36015262e+00,
1.35942760e+00, 1.35942760e+00, 1.35942760e+00, 1.35942760e+00,
1.35349451e+00, 1.35349451e+00, 1.35349451e+00, 1.35349451e+00,
1.32499316e+00, 1.32499316e+00, 1.32499316e+00, 1.32499316e+00,
1.19968030e+00, 1.19968030e+00, 1.19968030e+00, 1.19968030e+00,
7.65654632e-01, 7.65654632e-01, 7.65654632e-01, 7.65654632e-01,
1.63013744e-01, 1.63013744e-01, 1.63013744e-01, 1.63013744e-01,
1.51766301e-02, 1.51766301e-02, 1.51766301e-02, 1.51766301e-02,
1.15961586e-03, 1.15961586e-03, 1.15961586e-03, 1.15961586e-03,
8.71092067e-05, 8.71092067e-05, 8.71092067e-05, 8.71092067e-05,
6.51852874e-06, 6.51852874e-06, 6.51852874e-06, 6.51852874e-06,
4.86666078e-07, 4.86666078e-07, 4.86666078e-07, 4.86666078e-07,
3.62471947e-08, 3.62471947e-08, 3.62471947e-08, 3.62471947e-08,
2.69260253e-09, 2.69260253e-09, 2.69260253e-09, 2.69260253e-09,
1.99494358e-10, 1.99494358e-10, 1.99494358e-10, 1.99494358e-10,
1.47423360e-11, 1.47423360e-11, 1.47423360e-11, 1.47423360e-11,
1.08650415e-12, 1.08650415e-12, 1.08650415e-12, 1.08650415e-12,
7.98526879e-14, 7.98526879e-14, 7.98526879e-14, 7.98526879e-14,
5.91227187e-15, 5.91227187e-15, 5.91227187e-15, 5.91227187e-15,
3.97725372e-16, 3.97725372e-16, 3.97725372e-16, 3.97725372e-16,
1.14152033e-17, 1.14152033e-17, 1.14152033e-17, 1.14152033e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999979,
0.99999979, 0.99999979, 0.99999979, 0.99999865, 0.99999865,
0.99999865, 0.99999865, 0.999992 , 0.999992 , 0.999992 ,
0.999992 , 0.99995725, 0.99995725, 0.99995725, 0.99995725,
0.99979607, 0.99979607, 0.99979607, 0.99979607, 0.99914172,
0.99914172, 0.99914172, 0.99914172, 0.9968603 , 0.9968603 ,
0.9968603 , 0.9968603 , 0.99018195, 0.99018195, 0.99018195,
0.99018195, 0.97414391, 0.97414391, 0.97414391, 0.97414391,
0.94304609, 0.94304609, 0.94304609, 0.94304609, 0.89430785,
0.89430785, 0.89430785, 0.89430785, 0.83105531, 0.83105531,
0.83105531, 0.83105531, 0.75992159, 0.75992159, 0.75992159,
0.75992159, 0.68934729, 0.68934729, 0.68934729, 0.68934729,
0.62578832, 0.62578832, 0.62578832, 0.62578832, 0.56572412,
0.56572412, 0.56572412, 0.56572412, 0.51826812, 0.51826812,
0.51826812, 0.51826812, 0.48775305, 0.48775305, 0.48775305,
0.48775305, 0.47361881, 0.47361881, 0.47361881, 0.47361881,
0.46884188, 0.46884188, 0.46884188, 0.46884188, 0.46724329,
0.46724329, 0.46724329, 0.46724329, 0.46648424, 0.46648424,
0.46648424, 0.46648424, 0.46584328, 0.46584328, 0.46584328,
0.46584328, 0.46559981, 0.46559981, 0.46559981, 0.46559981,
0.46550449, 0.46550449, 0.46550449, 0.46550449, 0.46529836,
0.46529836, 0.46529836, 0.46529836, 0.46519784, 0.46519784,
0.46519784, 0.46519784, 0.46501854, 0.46501854, 0.46501854,
0.46501854, 0.4645934 , 0.4645934 , 0.4645934 , 0.4645934 ,
0.4644984 , 0.4644984 , 0.4644984 , 0.4644984 , 0.4647448 ,
0.4647448 , 0.4647448 , 0.4647448 , 0.46480417, 0.46480417,
0.46480417, 0.46480417, 0.46452695, 0.46452695, 0.46452695,
0.46452695, 0.46226705, 0.46226705, 0.46226705, 0.46226705,
0.44923987, 0.44923987, 0.44923987, 0.44923987, 0.39520123,
0.39520123, 0.39520123, 0.39520123, 0.25019732, 0.25019732,
0.25019732, 0.25019732, 0.12347913, 0.12347913, 0.12347913,
0.12347913, 0.10201923, 0.10201923, 0.10201923, 0.10201923,
0.10015345, 0.10015345, 0.10015345, 0.10015345, 0.10001152,
0.10001152, 0.10001152, 0.10001152, 0.10000086, 0.10000086,
0.10000086, 0.10000086, 0.10000006, 0.10000006, 0.10000006,
0.10000006, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999977,
0.99999977, 0.99999977, 0.99999977, 0.99999859, 0.99999859,
0.99999859, 0.99999859, 0.99999193, 0.99999193, 0.99999193,
0.99999193, 0.99995852, 0.99995852, 0.99995852, 0.99995852,
0.99980949, 0.99980949, 0.99980949, 0.99980949, 0.99922831,
0.99922831, 0.99922831, 0.99922831, 0.99728299, 0.99728299,
0.99728299, 0.99728299, 0.99181486, 0.99181486, 0.99181486,
0.99181486, 0.97917208, 0.97917208, 0.97917208, 0.97917208,
0.95541523, 0.95541523, 0.95541523, 0.95541523, 0.91893615,
0.91893615, 0.91893615, 0.91893615, 0.87190997, 0.87190997,
0.87190997, 0.87190997, 0.8187528 , 0.8187528 , 0.8187528 ,
0.8187528 , 0.76602872, 0.76602872, 0.76602872, 0.76602872,
0.7143833 , 0.7143833 , 0.7143833 , 0.7143833 , 0.66676801,
0.66676801, 0.66676801, 0.66676801, 0.6307179 , 0.6307179 ,
0.6307179 , 0.6307179 , 0.60198349, 0.60198349, 0.60198349,
0.60198349, 0.58404794, 0.58404794, 0.58404794, 0.58404794,
0.57892756, 0.57892756, 0.57892756, 0.57892756, 0.57904741,
0.57904741, 0.57904741, 0.57904741, 0.58062787, 0.58062787,
0.58062787, 0.58062787, 0.58283322, 0.58283322, 0.58283322,
0.58283322, 0.58277091, 0.58277091, 0.58277091, 0.58277091,
0.57963328, 0.57963328, 0.57963328, 0.57963328, 0.56873886,
0.56873886, 0.56873886, 0.56873886, 0.54485283, 0.54485283,
0.54485283, 0.54485283, 0.50395357, 0.50395357, 0.50395357,
0.50395357, 0.44501153, 0.44501153, 0.44501153, 0.44501153,
0.38825268, 0.38825268, 0.38825268, 0.38825268, 0.35468169,
0.35468169, 0.35468169, 0.35468169, 0.33785192, 0.33785192,
0.33785192, 0.33785192, 0.331301 , 0.331301 , 0.331301 ,
0.331301 , 0.33001344, 0.33001344, 0.33001344, 0.33001344,
0.32943388, 0.32943388, 0.32943388, 0.32943388, 0.32258242,
0.32258242, 0.32258242, 0.32258242, 0.28431554, 0.28431554,
0.28431554, 0.28431554, 0.1892955 , 0.1892955 , 0.1892955 ,
0.1892955 , 0.1338258 , 0.1338258 , 0.1338258 , 0.1338258 ,
0.12578276, 0.12578276, 0.12578276, 0.12578276, 0.1250613 ,
0.1250613 , 0.1250613 , 0.1250613 , 0.12500465, 0.12500465,
0.12500465, 0.12500465, 0.12500035, 0.12500035, 0.12500035,
0.12500035, 0.12500003, 0.12500003, 0.12500003, 0.12500003,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
7.50000039e-01, 7.50000039e-01, 7.50000039e-01, 7.50000039e-01,
7.50000267e-01, 7.50000267e-01, 7.50000267e-01, 7.50000267e-01,
7.50001674e-01, 7.50001674e-01, 7.50001674e-01, 7.50001674e-01,
7.50009545e-01, 7.50009545e-01, 7.50009545e-01, 7.50009545e-01,
7.50049084e-01, 7.50049084e-01, 7.50049084e-01, 7.50049084e-01,
7.50225416e-01, 7.50225416e-01, 7.50225416e-01, 7.50225416e-01,
7.50913227e-01, 7.50913227e-01, 7.50913227e-01, 7.50913227e-01,
7.53217421e-01, 7.53217421e-01, 7.53217421e-01, 7.53217421e-01,
7.59713585e-01, 7.59713585e-01, 7.59713585e-01, 7.59713585e-01,
7.74851816e-01, 7.74851816e-01, 7.74851816e-01, 7.74851816e-01,
8.03766307e-01, 8.03766307e-01, 8.03766307e-01, 8.03766307e-01,
8.49390171e-01, 8.49390171e-01, 8.49390171e-01, 8.49390171e-01,
9.10489184e-01, 9.10489184e-01, 9.10489184e-01, 9.10489184e-01,
9.82823141e-01, 9.82823141e-01, 9.82823141e-01, 9.82823141e-01,
1.05751085e+00, 1.05751085e+00, 1.05751085e+00, 1.05751085e+00,
1.13275935e+00, 1.13275935e+00, 1.13275935e+00, 1.13275935e+00,
1.20924075e+00, 1.20924075e+00, 1.20924075e+00, 1.20924075e+00,
1.27595955e+00, 1.27595955e+00, 1.27595955e+00, 1.27595955e+00,
1.32313321e+00, 1.32313321e+00, 1.32313321e+00, 1.32313321e+00,
1.34759687e+00, 1.34759687e+00, 1.34759687e+00, 1.34759687e+00,
1.35670899e+00, 1.35670899e+00, 1.35670899e+00, 1.35670899e+00,
1.35944955e+00, 1.35944955e+00, 1.35944955e+00, 1.35944955e+00,
1.36061079e+00, 1.36061079e+00, 1.36061079e+00, 1.36061079e+00,
1.36171079e+00, 1.36171079e+00, 1.36171079e+00, 1.36171079e+00,
1.36290556e+00, 1.36290556e+00, 1.36290556e+00, 1.36290556e+00,
1.36383904e+00, 1.36383904e+00, 1.36383904e+00, 1.36383904e+00,
1.36419289e+00, 1.36419289e+00, 1.36419289e+00, 1.36419289e+00,
1.36391125e+00, 1.36391125e+00, 1.36391125e+00, 1.36391125e+00,
1.36302760e+00, 1.36302760e+00, 1.36302760e+00, 1.36302760e+00,
1.36208548e+00, 1.36208548e+00, 1.36208548e+00, 1.36208548e+00,
1.36114875e+00, 1.36114875e+00, 1.36114875e+00, 1.36114875e+00,
1.36014308e+00, 1.36014308e+00, 1.36014308e+00, 1.36014308e+00,
1.36010184e+00, 1.36010184e+00, 1.36010184e+00, 1.36010184e+00,
1.35992178e+00, 1.35992178e+00, 1.35992178e+00, 1.35992178e+00,
1.35788212e+00, 1.35788212e+00, 1.35788212e+00, 1.35788212e+00,
1.34841935e+00, 1.34841935e+00, 1.34841935e+00, 1.34841935e+00,
1.30264541e+00, 1.30264541e+00, 1.30264541e+00, 1.30264541e+00,
1.10947676e+00, 1.10947676e+00, 1.10947676e+00, 1.10947676e+00,
5.55338397e-01, 5.55338397e-01, 5.55338397e-01, 5.55338397e-01,
8.31514874e-02, 8.31514874e-02, 8.31514874e-02, 8.31514874e-02,
6.89643013e-03, 6.89643013e-03, 6.89643013e-03, 6.89643013e-03,
5.24246789e-04, 5.24246789e-04, 5.24246789e-04, 5.24246789e-04,
3.94230246e-05, 3.94230246e-05, 3.94230246e-05, 3.94230246e-05,
2.95275452e-06, 2.95275452e-06, 2.95275452e-06, 2.95275452e-06,
2.20643830e-07, 2.20643830e-07, 2.20643830e-07, 2.20643830e-07,
1.64480940e-08, 1.64480940e-08, 1.64480940e-08, 1.64480940e-08,
1.22307279e-09, 1.22307279e-09, 1.22307279e-09, 1.22307279e-09,
9.07116089e-11, 9.07116089e-11, 9.07116089e-11, 9.07116089e-11,
6.71020267e-12, 6.71020267e-12, 6.71020267e-12, 6.71020267e-12,
4.95019676e-13, 4.95019676e-13, 4.95019676e-13, 4.95019676e-13,
3.65542843e-14, 3.65542843e-14, 3.65542843e-14, 3.65542843e-14,
2.62269446e-15, 2.62269446e-15, 2.62269446e-15, 2.62269446e-15,
1.74466545e-16, 1.74466545e-16, 1.74466545e-16, 1.74466545e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999968,
0.99999968, 0.99999968, 0.99999968, 0.99999802, 0.99999802,
0.99999802, 0.99999802, 0.99998871, 0.99998871, 0.99998871,
0.99998871, 0.99994192, 0.99994192, 0.99994192, 0.99994192,
0.99973332, 0.99973332, 0.99973332, 0.99973332, 0.99892001,
0.99892001, 0.99892001, 0.99892001, 0.99620009, 0.99620009,
0.99620009, 0.99620009, 0.98857069, 0.98857069, 0.98857069,
0.98857069, 0.97100982, 0.97100982, 0.97100982, 0.97100982,
0.93828248, 0.93828248, 0.93828248, 0.93828248, 0.88868204,
0.88868204, 0.88868204, 0.88868204, 0.82587279, 0.82587279,
0.82587279, 0.82587279, 0.75627712, 0.75627712, 0.75627712,
0.75627712, 0.68804743, 0.68804743, 0.68804743, 0.68804743,
0.62631819, 0.62631819, 0.62631819, 0.62631819, 0.56772481,
0.56772481, 0.56772481, 0.56772481, 0.52076656, 0.52076656,
0.52076656, 0.52076656, 0.48953753, 0.48953753, 0.48953753,
0.48953753, 0.47437293, 0.47437293, 0.47437293, 0.47437293,
0.46911158, 0.46911158, 0.46911158, 0.46911158, 0.46740275,
0.46740275, 0.46740275, 0.46740275, 0.46657107, 0.46657107,
0.46657107, 0.46657107, 0.46582165, 0.46582165, 0.46582165,
0.46582165, 0.46543932, 0.46543932, 0.46543932, 0.46543932,
0.4654086 , 0.4654086 , 0.4654086 , 0.4654086 , 0.46534166,
0.46534166, 0.46534166, 0.46534166, 0.46535445, 0.46535445,
0.46535445, 0.46535445, 0.4653544 , 0.4653544 , 0.4653544 ,
0.4653544 , 0.46497431, 0.46497431, 0.46497431, 0.46497431,
0.46469511, 0.46469511, 0.46469511, 0.46469511, 0.46475993,
0.46475993, 0.46475993, 0.46475993, 0.464781 , 0.464781 ,
0.464781 , 0.464781 , 0.46475951, 0.46475951, 0.46475951,
0.46475951, 0.46429906, 0.46429906, 0.46429906, 0.46429906,
0.45994624, 0.45994624, 0.45994624, 0.45994624, 0.43907961,
0.43907961, 0.43907961, 0.43907961, 0.36134325, 0.36134325,
0.36134325, 0.36134325, 0.19702827, 0.19702827, 0.19702827,
0.19702827, 0.11146119, 0.11146119, 0.11146119, 0.11146119,
0.1009144 , 0.1009144 , 0.1009144 , 0.1009144 , 0.10006936,
0.10006936, 0.10006936, 0.10006936, 0.10000522, 0.10000522,
0.10000522, 0.10000522, 0.10000039, 0.10000039, 0.10000039,
0.10000039, 0.10000003, 0.10000003, 0.10000003, 0.10000003,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999966,
0.99999966, 0.99999966, 0.99999966, 0.99999796, 0.99999796,
0.99999796, 0.99999796, 0.99998877, 0.99998877, 0.99998877,
0.99998877, 0.99994431, 0.99994431, 0.99994431, 0.99994431,
0.99975356, 0.99975356, 0.99975356, 0.99975356, 0.99903846,
0.99903846, 0.99903846, 0.99903846, 0.99674028, 0.99674028,
0.99674028, 0.99674028, 0.9905424 , 0.9905424 , 0.9905424 ,
0.9905424 , 0.97678524, 0.97678524, 0.97678524, 0.97678524,
0.95188827, 0.95188827, 0.95188827, 0.95188827, 0.91483889,
0.91483889, 0.91483889, 0.91483889, 0.86814947, 0.86814947,
0.86814947, 0.86814947, 0.81614043, 0.81614043, 0.81614043,
0.81614043, 0.76514638, 0.76514638, 0.76514638, 0.76514638,
0.71513541, 0.71513541, 0.71513541, 0.71513541, 0.66759433,
0.66759433, 0.66759433, 0.66759433, 0.63206294, 0.63206294,
0.63206294, 0.63206294, 0.60467247, 0.60467247, 0.60467247,
0.60467247, 0.58608604, 0.58608604, 0.58608604, 0.58608604,
0.57910917, 0.57910917, 0.57910917, 0.57910917, 0.57863491,
0.57863491, 0.57863491, 0.57863491, 0.57958226, 0.57958226,
0.57958226, 0.57958226, 0.58186037, 0.58186037, 0.58186037,
0.58186037, 0.58254066, 0.58254066, 0.58254066, 0.58254066,
0.58105548, 0.58105548, 0.58105548, 0.58105548, 0.5741289 ,
0.5741289 , 0.5741289 , 0.5741289 , 0.55663703, 0.55663703,
0.55663703, 0.55663703, 0.52383547, 0.52383547, 0.52383547,
0.52383547, 0.47295059, 0.47295059, 0.47295059, 0.47295059,
0.41066789, 0.41066789, 0.41066789, 0.41066789, 0.36741736,
0.36741736, 0.36741736, 0.36741736, 0.34401862, 0.34401862,
0.34401862, 0.34401862, 0.33359114, 0.33359114, 0.33359114,
0.33359114, 0.33073618, 0.33073618, 0.33073618, 0.33073618,
0.33046507, 0.33046507, 0.33046507, 0.33046507, 0.32945985,
0.32945985, 0.32945985, 0.32945985, 0.31646094, 0.31646094,
0.31646094, 0.31646094, 0.25979697, 0.25979697, 0.25979697,
0.25979697, 0.16286529, 0.16286529, 0.16286529, 0.16286529,
0.12929032, 0.12929032, 0.12929032, 0.12929032, 0.12536025,
0.12536025, 0.12536025, 0.12536025, 0.1250278 , 0.1250278 ,
0.1250278 , 0.1250278 , 0.1250021 , 0.1250021 , 0.1250021 ,
0.1250021 , 0.12500016, 0.12500016, 0.12500016, 0.12500016,
0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000008e-01, 7.50000008e-01, 7.50000008e-01, 7.50000008e-01,
7.50000061e-01, 7.50000061e-01, 7.50000061e-01, 7.50000061e-01,
7.50000400e-01, 7.50000400e-01, 7.50000400e-01, 7.50000400e-01,
7.50002418e-01, 7.50002418e-01, 7.50002418e-01, 7.50002418e-01,
7.50013293e-01, 7.50013293e-01, 7.50013293e-01, 7.50013293e-01,
7.50065892e-01, 7.50065892e-01, 7.50065892e-01, 7.50065892e-01,
7.50291602e-01, 7.50291602e-01, 7.50291602e-01, 7.50291602e-01,
7.51137963e-01, 7.51137963e-01, 7.51137963e-01, 7.51137963e-01,
7.53860931e-01, 7.53860931e-01, 7.53860931e-01, 7.53860931e-01,
7.61229895e-01, 7.61229895e-01, 7.61229895e-01, 7.61229895e-01,
7.77729726e-01, 7.77729726e-01, 7.77729726e-01, 7.77729726e-01,
8.08112566e-01, 8.08112566e-01, 8.08112566e-01, 8.08112566e-01,
8.54605431e-01, 8.54605431e-01, 8.54605431e-01, 8.54605431e-01,
9.15480064e-01, 9.15480064e-01, 9.15480064e-01, 9.15480064e-01,
9.86288872e-01, 9.86288872e-01, 9.86288872e-01, 9.86288872e-01,
1.05903455e+00, 1.05903455e+00, 1.05903455e+00, 1.05903455e+00,
1.13226352e+00, 1.13226352e+00, 1.13226352e+00, 1.13226352e+00,
1.20670021e+00, 1.20670021e+00, 1.20670021e+00, 1.20670021e+00,
1.27256005e+00, 1.27256005e+00, 1.27256005e+00, 1.27256005e+00,
1.32027206e+00, 1.32027206e+00, 1.32027206e+00, 1.32027206e+00,
1.34589382e+00, 1.34589382e+00, 1.34589382e+00, 1.34589382e+00,
1.35597341e+00, 1.35597341e+00, 1.35597341e+00, 1.35597341e+00,
1.35925362e+00, 1.35925362e+00, 1.35925362e+00, 1.35925362e+00,
1.36055940e+00, 1.36055940e+00, 1.36055940e+00, 1.36055940e+00,
1.36160216e+00, 1.36160216e+00, 1.36160216e+00, 1.36160216e+00,
1.36259868e+00, 1.36259868e+00, 1.36259868e+00, 1.36259868e+00,
1.36352978e+00, 1.36352978e+00, 1.36352978e+00, 1.36352978e+00,
1.36408956e+00, 1.36408956e+00, 1.36408956e+00, 1.36408956e+00,
1.36400563e+00, 1.36400563e+00, 1.36400563e+00, 1.36400563e+00,
1.36344216e+00, 1.36344216e+00, 1.36344216e+00, 1.36344216e+00,
1.36276431e+00, 1.36276431e+00, 1.36276431e+00, 1.36276431e+00,
1.36178307e+00, 1.36178307e+00, 1.36178307e+00, 1.36178307e+00,
1.36049076e+00, 1.36049076e+00, 1.36049076e+00, 1.36049076e+00,
1.36016799e+00, 1.36016799e+00, 1.36016799e+00, 1.36016799e+00,
1.36000464e+00, 1.36000464e+00, 1.36000464e+00, 1.36000464e+00,
1.35908609e+00, 1.35908609e+00, 1.35908609e+00, 1.35908609e+00,
1.35614599e+00, 1.35614599e+00, 1.35614599e+00, 1.35614599e+00,
1.34038610e+00, 1.34038610e+00, 1.34038610e+00, 1.34038610e+00,
1.26724046e+00, 1.26724046e+00, 1.26724046e+00, 1.26724046e+00,
9.82640800e-01, 9.82640800e-01, 9.82640800e-01, 9.82640800e-01,
3.48788395e-01, 3.48788395e-01, 3.48788395e-01, 3.48788395e-01,
3.96209590e-02, 3.96209590e-02, 3.96209590e-02, 3.96209590e-02,
3.13229418e-03, 3.13229418e-03, 3.13229418e-03, 3.13229418e-03,
2.36909021e-04, 2.36909021e-04, 2.36909021e-04, 2.36909021e-04,
1.78221789e-05, 1.78221789e-05, 1.78221789e-05, 1.78221789e-05,
1.33690626e-06, 1.33690626e-06, 1.33690626e-06, 1.33690626e-06,
9.99987457e-08, 9.99987457e-08, 9.99987457e-08, 9.99987457e-08,
7.46125178e-09, 7.46125178e-09, 7.46125178e-09, 7.46125178e-09,
5.55345318e-10, 5.55345318e-10, 5.55345318e-10, 5.55345318e-10,
4.12297396e-11, 4.12297396e-11, 4.12297396e-11, 4.12297396e-11,
3.05298490e-12, 3.05298490e-12, 3.05298490e-12, 3.05298490e-12,
2.25630808e-13, 2.25630808e-13, 2.25630808e-13, 2.25630808e-13,
1.65496825e-14, 1.65496825e-14, 1.65496825e-14, 1.65496825e-14,
1.18089382e-15, 1.18089382e-15, 1.18089382e-15, 1.18089382e-15,
7.03960128e-17, 7.03960128e-17, 7.03960128e-17, 7.03960128e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999953,
0.99999953, 0.99999953, 0.99999953, 0.99999714, 0.99999714,
0.99999714, 0.99999714, 0.99998427, 0.99998427, 0.99998427,
0.99998427, 0.99992204, 0.99992204, 0.99992204, 0.99992204,
0.99965503, 0.99965503, 0.99965503, 0.99965503, 0.99865441,
0.99865441, 0.99865441, 0.99865441, 0.99544177, 0.99544177,
0.99544177, 0.99544177, 0.98679799, 0.98679799, 0.98679799,
0.98679799, 0.96770449, 0.96770449, 0.96770449, 0.96770449,
0.93344814, 0.93344814, 0.93344814, 0.93344814, 0.88314892,
0.88314892, 0.88314892, 0.88314892, 0.82088008, 0.82088008,
0.82088008, 0.82088008, 0.75281451, 0.75281451, 0.75281451,
0.75281451, 0.68680422, 0.68680422, 0.68680422, 0.68680422,
0.62684396, 0.62684396, 0.62684396, 0.62684396, 0.56962935,
0.56962935, 0.56962935, 0.56962935, 0.5232226 , 0.5232226 ,
0.5232226 , 0.5232226 , 0.49143435, 0.49143435, 0.49143435,
0.49143435, 0.47522501, 0.47522501, 0.47522501, 0.47522501,
0.46935729, 0.46935729, 0.46935729, 0.46935729, 0.46752687,
0.46752687, 0.46752687, 0.46752687, 0.46668373, 0.46668373,
0.46668373, 0.46668373, 0.46587781, 0.46587781, 0.46587781,
0.46587781, 0.46533792, 0.46533792, 0.46533792, 0.46533792,
0.46526321, 0.46526321, 0.46526321, 0.46526321, 0.46529401,
0.46529401, 0.46529401, 0.46529401, 0.46538814, 0.46538814,
0.46538814, 0.46538814, 0.46554165, 0.46554165, 0.46554165,
0.46554165, 0.4653427 , 0.4653427 , 0.4653427 , 0.4653427 ,
0.46500494, 0.46500494, 0.46500494, 0.46500494, 0.4649203 ,
0.4649203 , 0.4649203 , 0.4649203 , 0.46481236, 0.46481236,
0.46481236, 0.46481236, 0.4648016 , 0.4648016 , 0.4648016 ,
0.4648016 , 0.46486006, 0.46486006, 0.46486006, 0.46486006,
0.46351591, 0.46351591, 0.46351591, 0.46351591, 0.45617693,
0.45617693, 0.45617693, 0.45617693, 0.42387417, 0.42387417,
0.42387417, 0.42387417, 0.31662409, 0.31662409, 0.31662409,
0.31662409, 0.15467947, 0.15467947, 0.15467947, 0.15467947,
0.10533579, 0.10533579, 0.10533579, 0.10533579, 0.10041475,
0.10041475, 0.10041475, 0.10041475, 0.10003134, 0.10003134,
0.10003134, 0.10003134, 0.10000236, 0.10000236, 0.10000236,
0.10000236, 0.10000018, 0.10000018, 0.10000018, 0.10000018,
0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.9999995 ,
0.9999995 , 0.9999995 , 0.9999995 , 0.99999709, 0.99999709,
0.99999709, 0.99999709, 0.99998454, 0.99998454, 0.99998454,
0.99998454, 0.99992608, 0.99992608, 0.99992608, 0.99992608,
0.99968447, 0.99968447, 0.99968447, 0.99968447, 0.99881309,
0.99881309, 0.99881309, 0.99881309, 0.9961219 , 0.9961219 ,
0.9961219 , 0.9961219 , 0.98915182, 0.98915182, 0.98915182,
0.98915182, 0.9742804 , 0.9742804 , 0.9742804 , 0.9742804 ,
0.94831908, 0.94831908, 0.94831908, 0.94831908, 0.91081218,
0.91081218, 0.91081218, 0.91081218, 0.86452304, 0.86452304,
0.86452304, 0.86452304, 0.81364869, 0.81364869, 0.81364869,
0.81364869, 0.76425007, 0.76425007, 0.76425007, 0.76425007,
0.71596964, 0.71596964, 0.71596964, 0.71596964, 0.66862165,
0.66862165, 0.66862165, 0.66862165, 0.63309882, 0.63309882,
0.63309882, 0.63309882, 0.60692411, 0.60692411, 0.60692411,
0.60692411, 0.58834503, 0.58834503, 0.58834503, 0.58834503,
0.5797179 , 0.5797179 , 0.5797179 , 0.5797179 , 0.57833736,
0.57833736, 0.57833736, 0.57833736, 0.57885427, 0.57885427,
0.57885427, 0.57885427, 0.58070829, 0.58070829, 0.58070829,
0.58070829, 0.5821418 , 0.5821418 , 0.5821418 , 0.5821418 ,
0.58161437, 0.58161437, 0.58161437, 0.58161437, 0.57752342,
0.57752342, 0.57752342, 0.57752342, 0.56529572, 0.56529572,
0.56529572, 0.56529572, 0.53988046, 0.53988046, 0.53988046,
0.53988046, 0.49734652, 0.49734652, 0.49734652, 0.49734652,
0.43756408, 0.43756408, 0.43756408, 0.43756408, 0.38405097,
0.38405097, 0.38405097, 0.38405097, 0.35274026, 0.35274026,
0.35274026, 0.35274026, 0.33729664, 0.33729664, 0.33729664,
0.33729664, 0.33184586, 0.33184586, 0.33184586, 0.33184586,
0.3308689 , 0.3308689 , 0.3308689 , 0.3308689 , 0.33116014,
0.33116014, 0.33116014, 0.33116014, 0.3284959 , 0.3284959 ,
0.3284959 , 0.3284959 , 0.305514 , 0.305514 , 0.305514 ,
0.305514 , 0.22909354, 0.22909354, 0.22909354, 0.22909354,
0.14525793, 0.14525793, 0.14525793, 0.14525793, 0.12704227,
0.12704227, 0.12704227, 0.12704227, 0.12516466, 0.12516466,
0.12516466, 0.12516466, 0.12501259, 0.12501259, 0.12501259,
0.12501259, 0.12500095, 0.12500095, 0.12500095, 0.12500095,
0.12500007, 0.12500007, 0.12500007, 0.12500007, 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
7.50000093e-01, 7.50000093e-01, 7.50000093e-01, 7.50000093e-01,
7.50000591e-01, 7.50000591e-01, 7.50000591e-01, 7.50000591e-01,
7.50003448e-01, 7.50003448e-01, 7.50003448e-01, 7.50003448e-01,
7.50018287e-01, 7.50018287e-01, 7.50018287e-01, 7.50018287e-01,
7.50087467e-01, 7.50087467e-01, 7.50087467e-01, 7.50087467e-01,
7.50373360e-01, 7.50373360e-01, 7.50373360e-01, 7.50373360e-01,
7.51404804e-01, 7.51404804e-01, 7.51404804e-01, 7.51404804e-01,
7.54594512e-01, 7.54594512e-01, 7.54594512e-01, 7.54594512e-01,
7.62888923e-01, 7.62888923e-01, 7.62888923e-01, 7.62888923e-01,
7.80756528e-01, 7.80756528e-01, 7.80756528e-01, 7.80756528e-01,
8.12524446e-01, 8.12524446e-01, 8.12524446e-01, 8.12524446e-01,
8.59748156e-01, 8.59748156e-01, 8.59748156e-01, 8.59748156e-01,
9.20303317e-01, 9.20303317e-01, 9.20303317e-01, 9.20303317e-01,
9.89569875e-01, 9.89569875e-01, 9.89569875e-01, 9.89569875e-01,
1.06043656e+00, 1.06043656e+00, 1.06043656e+00, 1.06043656e+00,
1.13178235e+00, 1.13178235e+00, 1.13178235e+00, 1.13178235e+00,
1.20428722e+00, 1.20428722e+00, 1.20428722e+00, 1.20428722e+00,
1.26922681e+00, 1.26922681e+00, 1.26922681e+00, 1.26922681e+00,
1.31744793e+00, 1.31744793e+00, 1.31744793e+00, 1.31744793e+00,
1.34420543e+00, 1.34420543e+00, 1.34420543e+00, 1.34420543e+00,
1.35515354e+00, 1.35515354e+00, 1.35515354e+00, 1.35515354e+00,
1.35893569e+00, 1.35893569e+00, 1.35893569e+00, 1.35893569e+00,
1.36047087e+00, 1.36047087e+00, 1.36047087e+00, 1.36047087e+00,
1.36156372e+00, 1.36156372e+00, 1.36156372e+00, 1.36156372e+00,
1.36242402e+00, 1.36242402e+00, 1.36242402e+00, 1.36242402e+00,
1.36322740e+00, 1.36322740e+00, 1.36322740e+00, 1.36322740e+00,
1.36389115e+00, 1.36389115e+00, 1.36389115e+00, 1.36389115e+00,
1.36394778e+00, 1.36394778e+00, 1.36394778e+00, 1.36394778e+00,
1.36363338e+00, 1.36363338e+00, 1.36363338e+00, 1.36363338e+00,
1.36317823e+00, 1.36317823e+00, 1.36317823e+00, 1.36317823e+00,
1.36245466e+00, 1.36245466e+00, 1.36245466e+00, 1.36245466e+00,
1.36111329e+00, 1.36111329e+00, 1.36111329e+00, 1.36111329e+00,
1.36045029e+00, 1.36045029e+00, 1.36045029e+00, 1.36045029e+00,
1.36011173e+00, 1.36011173e+00, 1.36011173e+00, 1.36011173e+00,
1.35943008e+00, 1.35943008e+00, 1.35943008e+00, 1.35943008e+00,
1.35849429e+00, 1.35849429e+00, 1.35849429e+00, 1.35849429e+00,
1.35337432e+00, 1.35337432e+00, 1.35337432e+00, 1.35337432e+00,
1.32699322e+00, 1.32699322e+00, 1.32699322e+00, 1.32699322e+00,
1.21392814e+00, 1.21392814e+00, 1.21392814e+00, 1.21392814e+00,
8.11305629e-01, 8.11305629e-01, 8.11305629e-01, 8.11305629e-01,
1.91993018e-01, 1.91993018e-01, 1.91993018e-01, 1.91993018e-01,
1.84260657e-02, 1.84260657e-02, 1.84260657e-02, 1.84260657e-02,
1.41864065e-03, 1.41864065e-03, 1.41864065e-03, 1.41864065e-03,
1.07039498e-04, 1.07039498e-04, 1.07039498e-04, 1.07039498e-04,
8.05698302e-06, 8.05698302e-06, 8.05698302e-06, 8.05698302e-06,
6.04942296e-07, 6.04942296e-07, 6.04942296e-07, 6.04942296e-07,
4.53003318e-08, 4.53003318e-08, 4.53003318e-08, 4.53003318e-08,
3.38340676e-09, 3.38340676e-09, 3.38340676e-09, 3.38340676e-09,
2.52067618e-10, 2.52067618e-10, 2.52067618e-10, 2.52067618e-10,
1.87321914e-11, 1.87321914e-11, 1.87321914e-11, 1.87321914e-11,
1.38872868e-12, 1.38872868e-12, 1.38872868e-12, 1.38872868e-12,
1.02623229e-13, 1.02623229e-13, 1.02623229e-13, 1.02623229e-13,
7.45434898e-15, 7.45434898e-15, 7.45434898e-15, 7.45434898e-15,
5.62547042e-16, 5.62547042e-16, 5.62547042e-16, 5.62547042e-16,
3.42190912e-17, 3.42190912e-17, 3.42190912e-17, 3.42190912e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999989, 0.99999989, 0.99999989, 0.99999989, 0.9999993 ,
0.9999993 , 0.9999993 , 0.9999993 , 0.99999592, 0.99999592,
0.99999592, 0.99999592, 0.99997836, 0.99997836, 0.99997836,
0.99997836, 0.99989651, 0.99989651, 0.99989651, 0.99989651,
0.99955833, 0.99955833, 0.99955833, 0.99955833, 0.99833914,
0.99833914, 0.99833914, 0.99833914, 0.994578 , 0.994578 ,
0.994578 , 0.994578 , 0.98486191, 0.98486191, 0.98486191,
0.98486191, 0.96423927, 0.96423927, 0.96423927, 0.96423927,
0.92856276, 0.92856276, 0.92856276, 0.92856276, 0.87771963,
0.87771963, 0.87771963, 0.87771963, 0.81607625, 0.81607625,
0.81607625, 0.81607625, 0.74954761, 0.74954761, 0.74954761,
0.74954761, 0.68560013, 0.68560013, 0.68560013, 0.68560013,
0.62733728, 0.62733728, 0.62733728, 0.62733728, 0.57145736,
0.57145736, 0.57145736, 0.57145736, 0.52561297, 0.52561297,
0.52561297, 0.52561297, 0.4934087 , 0.4934087 , 0.4934087 ,
0.4934087 , 0.4762095 , 0.4762095 , 0.4762095 , 0.4762095 ,
0.46962957, 0.46962957, 0.46962957, 0.46962957, 0.46760322,
0.46760322, 0.46760322, 0.46760322, 0.46677931, 0.46677931,
0.46677931, 0.46677931, 0.46598101, 0.46598101, 0.46598101,
0.46598101, 0.4653201 , 0.4653201 , 0.4653201 , 0.4653201 ,
0.46512805, 0.46512805, 0.46512805, 0.46512805, 0.46518516,
0.46518516, 0.46518516, 0.46518516, 0.46533628, 0.46533628,
0.46533628, 0.46533628, 0.46560697, 0.46560697, 0.46560697,
0.46560697, 0.46556363, 0.46556363, 0.46556363, 0.46556363,
0.46534283, 0.46534283, 0.46534283, 0.46534283, 0.46521233,
0.46521233, 0.46521233, 0.46521233, 0.46494555, 0.46494555,
0.46494555, 0.46494555, 0.46485571, 0.46485571, 0.46485571,
0.46485571, 0.46502167, 0.46502167, 0.46502167, 0.46502167,
0.46460407, 0.46460407, 0.46460407, 0.46460407, 0.46217056,
0.46217056, 0.46217056, 0.46217056, 0.4504888 , 0.4504888 ,
0.4504888 , 0.4504888 , 0.40110266, 0.40110266, 0.40110266,
0.40110266, 0.26313779, 0.26313779, 0.26313779, 0.26313779,
0.12803042, 0.12803042, 0.12803042, 0.12803042, 0.1024553 ,
0.1024553 , 0.1024553 , 0.1024553 , 0.10018774, 0.10018774,
0.10018774, 0.10018774, 0.10001416, 0.10001416, 0.10001416,
0.10001416, 0.10000107, 0.10000107, 0.10000107, 0.10000107,
0.10000008, 0.10000008, 0.10000008, 0.10000008, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999988, 0.99999988, 0.99999988, 0.99999988, 0.99999927,
0.99999927, 0.99999927, 0.99999927, 0.9999959 , 0.9999959 ,
0.9999959 , 0.9999959 , 0.99997898, 0.99997898, 0.99997898,
0.99997898, 0.99990291, 0.99990291, 0.99990291, 0.99990291,
0.99959993, 0.99959993, 0.99959993, 0.99959993, 0.99854785,
0.99854785, 0.99854785, 0.99854785, 0.99542289, 0.99542289,
0.99542289, 0.99542289, 0.98764264, 0.98764264, 0.98764264,
0.98764264, 0.97166631, 0.97166631, 0.97166631, 0.97166631,
0.94472122, 0.94472122, 0.94472122, 0.94472122, 0.90686323,
0.90686323, 0.90686323, 0.90686323, 0.86103104, 0.86103104,
0.86103104, 0.86103104, 0.81128459, 0.81128459, 0.81128459,
0.81128459, 0.76333114, 0.76333114, 0.76333114, 0.76333114,
0.71681296, 0.71681296, 0.71681296, 0.71681296, 0.66988534,
0.66988534, 0.66988534, 0.66988534, 0.63398635, 0.63398635,
0.63398635, 0.63398635, 0.60868419, 0.60868419, 0.60868419,
0.60868419, 0.59062344, 0.59062344, 0.59062344, 0.59062344,
0.58075915, 0.58075915, 0.58075915, 0.58075915, 0.57821989,
0.57821989, 0.57821989, 0.57821989, 0.57834671, 0.57834671,
0.57834671, 0.57834671, 0.57958969, 0.57958969, 0.57958969,
0.57958969, 0.58156325, 0.58156325, 0.58156325, 0.58156325,
0.58167402, 0.58167402, 0.58167402, 0.58167402, 0.57949654,
0.57949654, 0.57949654, 0.57949654, 0.57136665, 0.57136665,
0.57136665, 0.57136665, 0.55237715, 0.55237715, 0.55237715,
0.55237715, 0.5178861 , 0.5178861 , 0.5178861 , 0.5178861 ,
0.46556784, 0.46556784, 0.46556784, 0.46556784, 0.40490108,
0.40490108, 0.40490108, 0.40490108, 0.36456809, 0.36456809,
0.36456809, 0.36456809, 0.34291316, 0.34291316, 0.34291316,
0.34291316, 0.33384449, 0.33384449, 0.33384449, 0.33384449,
0.33130867, 0.33130867, 0.33130867, 0.33130867, 0.33149943,
0.33149943, 0.33149943, 0.33149943, 0.33184294, 0.33184294,
0.33184294, 0.33184294, 0.32533092, 0.32533092, 0.32533092,
0.32533092, 0.28902333, 0.28902333, 0.28902333, 0.28902333,
0.1964541 , 0.1964541 , 0.1964541 , 0.1964541 , 0.13545621,
0.13545621, 0.13545621, 0.13545621, 0.12594954, 0.12594954,
0.12594954, 0.12594954, 0.12507487, 0.12507487, 0.12507487,
0.12507487, 0.1250057 , 0.1250057 , 0.1250057 , 0.1250057 ,
0.12500043, 0.12500043, 0.12500043, 0.12500043, 0.12500003,
0.12500003, 0.12500003, 0.12500003, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000021e-01, 7.50000021e-01, 7.50000021e-01, 7.50000021e-01,
7.50000140e-01, 7.50000140e-01, 7.50000140e-01, 7.50000140e-01,
7.50000861e-01, 7.50000861e-01, 7.50000861e-01, 7.50000861e-01,
7.50004854e-01, 7.50004854e-01, 7.50004854e-01, 7.50004854e-01,
7.50024870e-01, 7.50024870e-01, 7.50024870e-01, 7.50024870e-01,
7.50114879e-01, 7.50114879e-01, 7.50114879e-01, 7.50114879e-01,
7.50473401e-01, 7.50473401e-01, 7.50473401e-01, 7.50473401e-01,
7.51718892e-01, 7.51718892e-01, 7.51718892e-01, 7.51718892e-01,
7.55424229e-01, 7.55424229e-01, 7.55424229e-01, 7.55424229e-01,
7.64691790e-01, 7.64691790e-01, 7.64691790e-01, 7.64691790e-01,
7.83922560e-01, 7.83922560e-01, 7.83922560e-01, 7.83922560e-01,
8.16985524e-01, 8.16985524e-01, 8.16985524e-01, 8.16985524e-01,
8.64808121e-01, 8.64808121e-01, 8.64808121e-01, 8.64808121e-01,
9.24958686e-01, 9.24958686e-01, 9.24958686e-01, 9.24958686e-01,
9.92693337e-01, 9.92693337e-01, 9.92693337e-01, 9.92693337e-01,
1.06173967e+00, 1.06173967e+00, 1.06173967e+00, 1.06173967e+00,
1.13129021e+00, 1.13129021e+00, 1.13129021e+00, 1.13129021e+00,
1.20198744e+00, 1.20198744e+00, 1.20198744e+00, 1.20198744e+00,
1.26595672e+00, 1.26595672e+00, 1.26595672e+00, 1.26595672e+00,
1.31461852e+00, 1.31461852e+00, 1.31461852e+00, 1.31461852e+00,
1.34253734e+00, 1.34253734e+00, 1.34253734e+00, 1.34253734e+00,
1.35432704e+00, 1.35432704e+00, 1.35432704e+00, 1.35432704e+00,
1.35852967e+00, 1.35852967e+00, 1.35852967e+00, 1.35852967e+00,
1.36029446e+00, 1.36029446e+00, 1.36029446e+00, 1.36029446e+00,
1.36153027e+00, 1.36153027e+00, 1.36153027e+00, 1.36153027e+00,
1.36236269e+00, 1.36236269e+00, 1.36236269e+00, 1.36236269e+00,
1.36299920e+00, 1.36299920e+00, 1.36299920e+00, 1.36299920e+00,
1.36365952e+00, 1.36365952e+00, 1.36365952e+00, 1.36365952e+00,
1.36380842e+00, 1.36380842e+00, 1.36380842e+00, 1.36380842e+00,
1.36364674e+00, 1.36364674e+00, 1.36364674e+00, 1.36364674e+00,
1.36337979e+00, 1.36337979e+00, 1.36337979e+00, 1.36337979e+00,
1.36291780e+00, 1.36291780e+00, 1.36291780e+00, 1.36291780e+00,
1.36179759e+00, 1.36179759e+00, 1.36179759e+00, 1.36179759e+00,
1.36099880e+00, 1.36099880e+00, 1.36099880e+00, 1.36099880e+00,
1.36037766e+00, 1.36037766e+00, 1.36037766e+00, 1.36037766e+00,
1.35961227e+00, 1.35961227e+00, 1.35961227e+00, 1.35961227e+00,
1.35921926e+00, 1.35921926e+00, 1.35921926e+00, 1.35921926e+00,
1.35759675e+00, 1.35759675e+00, 1.35759675e+00, 1.35759675e+00,
1.34828922e+00, 1.34828922e+00, 1.34828922e+00, 1.34828922e+00,
1.30681890e+00, 1.30681890e+00, 1.30681890e+00, 1.30681890e+00,
1.13247598e+00, 1.13247598e+00, 1.13247598e+00, 1.13247598e+00,
6.05650926e-01, 6.05650926e-01, 6.05650926e-01, 6.05650926e-01,
9.87277152e-02, 9.87277152e-02, 9.87277152e-02, 9.87277152e-02,
8.39794778e-03, 8.39794778e-03, 8.39794778e-03, 8.39794778e-03,
6.41036738e-04, 6.41036738e-04, 6.41036738e-04, 6.41036738e-04,
4.83799215e-05, 4.83799215e-05, 4.83799215e-05, 4.83799215e-05,
3.64189070e-06, 3.64189070e-06, 3.64189070e-06, 3.64189070e-06,
2.73646970e-07, 2.73646970e-07, 2.73646970e-07, 2.73646970e-07,
2.05122779e-08, 2.05122779e-08, 2.05122779e-08, 2.05122779e-08,
1.53361037e-09, 1.53361037e-09, 1.53361037e-09, 1.53361037e-09,
1.14368647e-10, 1.14368647e-10, 1.14368647e-10, 1.14368647e-10,
8.50778657e-12, 8.50778657e-12, 8.50778657e-12, 8.50778657e-12,
6.31241749e-13, 6.31241749e-13, 6.31241749e-13, 6.31241749e-13,
4.65959457e-14, 4.65959457e-14, 4.65959457e-14, 4.65959457e-14,
3.44111781e-15, 3.44111781e-15, 3.44111781e-15, 3.44111781e-15,
2.44715227e-16, 2.44715227e-16, 2.44715227e-16, 2.44715227e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999983, 0.99999983, 0.99999983, 0.99999983, 0.99999898,
0.99999898, 0.99999898, 0.99999898, 0.99999426, 0.99999426,
0.99999426, 0.99999426, 0.99997057, 0.99997057, 0.99997057,
0.99997057, 0.99986408, 0.99986408, 0.99986408, 0.99986408,
0.99944001, 0.99944001, 0.99944001, 0.99944001, 0.99796817,
0.99796817, 0.99796817, 0.99796817, 0.99360189, 0.99360189,
0.99360189, 0.99360189, 0.98276203, 0.98276203, 0.98276203,
0.98276203, 0.96062669, 0.96062669, 0.96062669, 0.96062669,
0.92364506, 0.92364506, 0.92364506, 0.92364506, 0.87240348,
0.87240348, 0.87240348, 0.87240348, 0.81145937, 0.81145937,
0.81145937, 0.81145937, 0.74647243, 0.74647243, 0.74647243,
0.74647243, 0.68444299, 0.68444299, 0.68444299, 0.68444299,
0.62778294, 0.62778294, 0.62778294, 0.62778294, 0.5732094 ,
0.5732094 , 0.5732094 , 0.5732094 , 0.52793038, 0.52793038,
0.52793038, 0.52793038, 0.49541854, 0.49541854, 0.49541854,
0.49541854, 0.47732601, 0.47732601, 0.47732601, 0.47732601,
0.46998067, 0.46998067, 0.46998067, 0.46998067, 0.46765631,
0.46765631, 0.46765631, 0.46765631, 0.46682798, 0.46682798,
0.46682798, 0.46682798, 0.46608977, 0.46608977, 0.46608977,
0.46608977, 0.4653755 , 0.4653755 , 0.4653755 , 0.4653755 ,
0.46504229, 0.46504229, 0.46504229, 0.46504229, 0.46505976,
0.46505976, 0.46505976, 0.46505976, 0.46523378, 0.46523378,
0.46523378, 0.46523378, 0.46557421, 0.46557421, 0.46557421,
0.46557421, 0.4656599 , 0.4656599 , 0.4656599 , 0.4656599 ,
0.46558172, 0.46558172, 0.46558172, 0.46558172, 0.46553439,
0.46553439, 0.46553439, 0.46553439, 0.46520836, 0.46520836,
0.46520836, 0.46520836, 0.46498438, 0.46498438, 0.46498438,
0.46498438, 0.46510742, 0.46510742, 0.46510742, 0.46510742,
0.46494014, 0.46494014, 0.46494014, 0.46494014, 0.46413174,
0.46413174, 0.46413174, 0.46413174, 0.46026772, 0.46026772,
0.46026772, 0.46026772, 0.44125804, 0.44125804, 0.44125804,
0.44125804, 0.36962649, 0.36962649, 0.36962649, 0.36962649,
0.20878392, 0.20878392, 0.20878392, 0.20878392, 0.11372397,
0.11372397, 0.11372397, 0.11372397, 0.10111414, 0.10111414,
0.10111414, 0.10111414, 0.10008482, 0.10008482, 0.10008482,
0.10008482, 0.1000064 , 0.1000064 , 0.1000064 , 0.1000064 ,
0.10000048, 0.10000048, 0.10000048, 0.10000048, 0.10000004,
0.10000004, 0.10000004, 0.10000004, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999895,
0.99999895, 0.99999895, 0.99999895, 0.99999429, 0.99999429,
0.99999429, 0.99999429, 0.99997173, 0.99997173, 0.99997173,
0.99997173, 0.99987376, 0.99987376, 0.99987376, 0.99987376,
0.99949743, 0.99949743, 0.99949743, 0.99949743, 0.99823832,
0.99823832, 0.99823832, 0.99823832, 0.99463867, 0.99463867,
0.99463867, 0.99463867, 0.98601545, 0.98601545, 0.98601545,
0.98601545, 0.96895243, 0.96895243, 0.96895243, 0.96895243,
0.94110753, 0.94110753, 0.94110753, 0.94110753, 0.90299803,
0.90299803, 0.90299803, 0.90299803, 0.85767273, 0.85767273,
0.85767273, 0.85767273, 0.80904917, 0.80904917, 0.80904917,
0.80904917, 0.76239648, 0.76239648, 0.76239648, 0.76239648,
0.71749093, 0.71749093, 0.71749093, 0.71749093, 0.67147851,
0.67147851, 0.67147851, 0.67147851, 0.63489 , 0.63489 ,
0.63489 , 0.63489 , 0.60997929, 0.60997929, 0.60997929,
0.60997929, 0.59272294, 0.59272294, 0.59272294, 0.59272294,
0.58215958, 0.58215958, 0.58215958, 0.58215958, 0.57835617,
0.57835617, 0.57835617, 0.57835617, 0.57803304, 0.57803304,
0.57803304, 0.57803304, 0.57873351, 0.57873351, 0.57873351,
0.57873351, 0.58068604, 0.58068604, 0.58068604, 0.58068604,
0.58148766, 0.58148766, 0.58148766, 0.58148766, 0.58048792,
0.58048792, 0.58048792, 0.58048792, 0.57541107, 0.57541107,
0.57541107, 0.57541107, 0.56176436, 0.56176436, 0.56176436,
0.56176436, 0.53464163, 0.53464163, 0.53464163, 0.53464163,
0.49054306, 0.49054306, 0.49054306, 0.49054306, 0.43056034,
0.43056034, 0.43056034, 0.43056034, 0.38004005, 0.38004005,
0.38004005, 0.38004005, 0.35093816, 0.35093816, 0.35093816,
0.35093816, 0.33716902, 0.33716902, 0.33716902, 0.33716902,
0.33218768, 0.33218768, 0.33218768, 0.33218768, 0.33163645,
0.33163645, 0.33163645, 0.33163645, 0.33249535, 0.33249535,
0.33249535, 0.33249535, 0.33172011, 0.33172011, 0.33172011,
0.33172011, 0.3191431 , 0.3191431 , 0.3191431 , 0.3191431 ,
0.2660949 , 0.2660949 , 0.2660949 , 0.2660949 , 0.16817172,
0.16817172, 0.16817172, 0.16817172, 0.13009983, 0.13009983,
0.13009983, 0.13009983, 0.12543611, 0.12543611, 0.12543611,
0.12543611, 0.12503393, 0.12503393, 0.12503393, 0.12503393,
0.12500258, 0.12500258, 0.12500258, 0.12500258, 0.12500019,
0.12500019, 0.12500019, 0.12500019, 0.12500001, 0.12500001,
0.12500001, 0.12500001, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
7.50000032e-01, 7.50000032e-01, 7.50000032e-01, 7.50000032e-01,
7.50000208e-01, 7.50000208e-01, 7.50000208e-01, 7.50000208e-01,
7.50001239e-01, 7.50001239e-01, 7.50001239e-01, 7.50001239e-01,
7.50006753e-01, 7.50006753e-01, 7.50006753e-01, 7.50006753e-01,
7.50033455e-01, 7.50033455e-01, 7.50033455e-01, 7.50033455e-01,
7.50149366e-01, 7.50149366e-01, 7.50149366e-01, 7.50149366e-01,
7.50594713e-01, 7.50594713e-01, 7.50594713e-01, 7.50594713e-01,
7.52085532e-01, 7.52085532e-01, 7.52085532e-01, 7.52085532e-01,
7.56355674e-01, 7.56355674e-01, 7.56355674e-01, 7.56355674e-01,
7.66638355e-01, 7.66638355e-01, 7.66638355e-01, 7.66638355e-01,
7.87217230e-01, 7.87217230e-01, 7.87217230e-01, 7.87217230e-01,
8.21480083e-01, 8.21480083e-01, 8.21480083e-01, 8.21480083e-01,
8.69776615e-01, 8.69776615e-01, 8.69776615e-01, 8.69776615e-01,
9.29447294e-01, 9.29447294e-01, 9.29447294e-01, 9.29447294e-01,
9.95674208e-01, 9.95674208e-01, 9.95674208e-01, 9.95674208e-01,
1.06296792e+00, 1.06296792e+00, 1.06296792e+00, 1.06296792e+00,
1.13078254e+00, 1.13078254e+00, 1.13078254e+00, 1.13078254e+00,
1.19977119e+00, 1.19977119e+00, 1.19977119e+00, 1.19977119e+00,
1.26275299e+00, 1.26275299e+00, 1.26275299e+00, 1.26275299e+00,
1.31175348e+00, 1.31175348e+00, 1.31175348e+00, 1.31175348e+00,
1.34085462e+00, 1.34085462e+00, 1.34085462e+00, 1.34085462e+00,
1.35353646e+00, 1.35353646e+00, 1.35353646e+00, 1.35353646e+00,
1.35810343e+00, 1.35810343e+00, 1.35810343e+00, 1.35810343e+00,
1.36003123e+00, 1.36003123e+00, 1.36003123e+00, 1.36003123e+00,
1.36143326e+00, 1.36143326e+00, 1.36143326e+00, 1.36143326e+00,
1.36236200e+00, 1.36236200e+00, 1.36236200e+00, 1.36236200e+00,
1.36287773e+00, 1.36287773e+00, 1.36287773e+00, 1.36287773e+00,
1.36345264e+00, 1.36345264e+00, 1.36345264e+00, 1.36345264e+00,
1.36363732e+00, 1.36363732e+00, 1.36363732e+00, 1.36363732e+00,
1.36353697e+00, 1.36353697e+00, 1.36353697e+00, 1.36353697e+00,
1.36343404e+00, 1.36343404e+00, 1.36343404e+00, 1.36343404e+00,
1.36315760e+00, 1.36315760e+00, 1.36315760e+00, 1.36315760e+00,
1.36232473e+00, 1.36232473e+00, 1.36232473e+00, 1.36232473e+00,
1.36166019e+00, 1.36166019e+00, 1.36166019e+00, 1.36166019e+00,
1.36084564e+00, 1.36084564e+00, 1.36084564e+00, 1.36084564e+00,
1.35984618e+00, 1.35984618e+00, 1.35984618e+00, 1.35984618e+00,
1.35955179e+00, 1.35955179e+00, 1.35955179e+00, 1.35955179e+00,
1.35897144e+00, 1.35897144e+00, 1.35897144e+00, 1.35897144e+00,
1.35552174e+00, 1.35552174e+00, 1.35552174e+00, 1.35552174e+00,
1.34102919e+00, 1.34102919e+00, 1.34102919e+00, 1.34102919e+00,
1.27545330e+00, 1.27545330e+00, 1.27545330e+00, 1.27545330e+00,
1.01455011e+00, 1.01455011e+00, 1.01455011e+00, 1.01455011e+00,
3.94082610e-01, 3.94082610e-01, 3.94082610e-01, 3.94082610e-01,
4.73339439e-02, 4.73339439e-02, 4.73339439e-02, 4.73339439e-02,
3.80163833e-03, 3.80163833e-03, 3.80163833e-03, 3.80163833e-03,
2.89378256e-04, 2.89378256e-04, 2.89378256e-04, 2.89378256e-04,
2.18495362e-05, 2.18495362e-05, 2.18495362e-05, 2.18495362e-05,
1.64610353e-06, 1.64610353e-06, 1.64610353e-06, 1.64610353e-06,
1.23761362e-07, 1.23761362e-07, 1.23761362e-07, 1.23761362e-07,
9.28475911e-09, 9.28475911e-09, 9.28475911e-09, 9.28475911e-09,
6.94864466e-10, 6.94864466e-10, 6.94864466e-10, 6.94864466e-10,
5.18715247e-11, 5.18715247e-11, 5.18715247e-11, 5.18715247e-11,
3.86232749e-12, 3.86232749e-12, 3.86232749e-12, 3.86232749e-12,
2.86798402e-13, 2.86798402e-13, 2.86798402e-13, 2.86798402e-13,
2.12511563e-14, 2.12511563e-14, 2.12511563e-14, 2.12511563e-14,
1.51978465e-15, 1.51978465e-15, 1.51978465e-15, 1.51978465e-15,
8.24527483e-17, 8.24527483e-17, 8.24527483e-17, 8.24527483e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999975, 0.99999975, 0.99999975, 0.99999975, 0.99999853,
0.99999853, 0.99999853, 0.99999853, 0.99999201, 0.99999201,
0.99999201, 0.99999201, 0.99996042, 0.99996042, 0.99996042,
0.99996042, 0.99982328, 0.99982328, 0.99982328, 0.99982328,
0.99929656, 0.99929656, 0.99929656, 0.99929656, 0.9975353 ,
0.9975353 , 0.9975353 , 0.9975353 , 0.99250721, 0.99250721,
0.99250721, 0.99250721, 0.98049952, 0.98049952, 0.98049952,
0.98049952, 0.95688026, 0.95688026, 0.95688026, 0.95688026,
0.91871272, 0.91871272, 0.91871272, 0.91871272, 0.86720806,
0.86720806, 0.86720806, 0.86720806, 0.80702616, 0.80702616,
0.80702616, 0.80702616, 0.74357673, 0.74357673, 0.74357673,
0.74357673, 0.68334214, 0.68334214, 0.68334214, 0.68334214,
0.62818486, 0.62818486, 0.62818486, 0.62818486, 0.57487936,
0.57487936, 0.57487936, 0.57487936, 0.53017432, 0.53017432,
0.53017432, 0.53017432, 0.49742975, 0.49742975, 0.49742975,
0.49742975, 0.47854702, 0.47854702, 0.47854702, 0.47854702,
0.47044075, 0.47044075, 0.47044075, 0.47044075, 0.46773171,
0.46773171, 0.46773171, 0.46773171, 0.46683192, 0.46683192,
0.46683192, 0.46683192, 0.46616185, 0.46616185, 0.46616185,
0.46616185, 0.4654718 , 0.4654718 , 0.4654718 , 0.4654718 ,
0.46502244, 0.46502244, 0.46502244, 0.46502244, 0.46495839,
0.46495839, 0.46495839, 0.46495839, 0.46511062, 0.46511062,
0.46511062, 0.46511062, 0.46546668, 0.46546668, 0.46546668,
0.46546668, 0.46567427, 0.46567427, 0.46567427, 0.46567427,
0.4656998 , 0.4656998 , 0.4656998 , 0.4656998 , 0.46577701,
0.46577701, 0.46577701, 0.46577701, 0.46553312, 0.46553312,
0.46553312, 0.46553312, 0.46520841, 0.46520841, 0.46520841,
0.46520841, 0.46521622, 0.46521622, 0.46521622, 0.46521622,
0.46509428, 0.46509428, 0.46509428, 0.46509428, 0.46477283,
0.46477283, 0.46477283, 0.46477283, 0.46362484, 0.46362484,
0.46362484, 0.46362484, 0.45682453, 0.45682453, 0.45682453,
0.45682453, 0.42721627, 0.42721627, 0.42721627, 0.42721627,
0.32761038, 0.32761038, 0.32761038, 0.32761038, 0.16329323,
0.16329323, 0.16329323, 0.16329323, 0.1064006 , 0.1064006 ,
0.1064006 , 0.1064006 , 0.10050349, 0.10050349, 0.10050349,
0.10050349, 0.10003828, 0.10003828, 0.10003828, 0.10003828,
0.10000289, 0.10000289, 0.10000289, 0.10000289, 0.10000022,
0.10000022, 0.10000022, 0.10000022, 0.10000002, 0.10000002,
0.10000002, 0.10000002, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999851,
0.99999851, 0.99999851, 0.99999851, 0.99999215, 0.99999215,
0.99999215, 0.99999215, 0.99996236, 0.99996236, 0.99996236,
0.99996236, 0.99983743, 0.99983743, 0.99983743, 0.99983743,
0.99937421, 0.99937421, 0.99937421, 0.99937421, 0.99787995,
0.99787995, 0.99787995, 0.99787995, 0.99376522, 0.99376522,
0.99376522, 0.99376522, 0.98427193, 0.98427193, 0.98427193,
0.98427193, 0.96614873, 0.96614873, 0.96614873, 0.96614873,
0.93749002, 0.93749002, 0.93749002, 0.93749002, 0.89922146,
0.89922146, 0.89922146, 0.89922146, 0.85444615, 0.85444615,
0.85444615, 0.85444615, 0.80694026, 0.80694026, 0.80694026,
0.80694026, 0.76147336, 0.76147336, 0.76147336, 0.76147336,
0.71798649, 0.71798649, 0.71798649, 0.71798649, 0.67328624,
0.67328624, 0.67328624, 0.67328624, 0.63596237, 0.63596237,
0.63596237, 0.63596237, 0.61090962, 0.61090962, 0.61090962,
0.61090962, 0.59448665, 0.59448665, 0.59448665, 0.59448665,
0.58377912, 0.58377912, 0.58377912, 0.58377912, 0.57884073,
0.57884073, 0.57884073, 0.57884073, 0.57784159, 0.57784159,
0.57784159, 0.57784159, 0.57814677, 0.57814677, 0.57814677,
0.57814677, 0.57965393, 0.57965393, 0.57965393, 0.57965393,
0.58114142, 0.58114142, 0.58114142, 0.58114142, 0.58086906,
0.58086906, 0.58086906, 0.58086906, 0.57793383, 0.57793383,
0.57793383, 0.57793383, 0.56855027, 0.56855027, 0.56855027,
0.56855027, 0.54788997, 0.54788997, 0.54788997, 0.54788997,
0.51173387, 0.51173387, 0.51173387, 0.51173387, 0.45826092,
0.45826092, 0.45826092, 0.45826092, 0.39944332, 0.39944332,
0.39944332, 0.39944332, 0.36188141, 0.36188141, 0.36188141,
0.36188141, 0.34228638, 0.34228638, 0.34228638, 0.34228638,
0.33391914, 0.33391914, 0.33391914, 0.33391914, 0.33194109,
0.33194109, 0.33194109, 0.33194109, 0.33247925, 0.33247925,
0.33247925, 0.33247925, 0.33319907, 0.33319907, 0.33319907,
0.33319907, 0.33042192, 0.33042192, 0.33042192, 0.33042192,
0.30893759, 0.30893759, 0.30893759, 0.30893759, 0.23627498,
0.23627498, 0.23627498, 0.23627498, 0.14849035, 0.14849035,
0.14849035, 0.14849035, 0.12743542, 0.12743542, 0.12743542,
0.12743542, 0.12519919, 0.12519919, 0.12519919, 0.12519919,
0.12501533, 0.12501533, 0.12501533, 0.12501533, 0.12500116,
0.12500116, 0.12500116, 0.12500116, 0.12500009, 0.12500009,
0.12500009, 0.12500009, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
7.50000306e-01, 7.50000306e-01, 7.50000306e-01, 7.50000306e-01,
7.50001762e-01, 7.50001762e-01, 7.50001762e-01, 7.50001762e-01,
7.50009291e-01, 7.50009291e-01, 7.50009291e-01, 7.50009291e-01,
7.50044538e-01, 7.50044538e-01, 7.50044538e-01, 7.50044538e-01,
7.50192354e-01, 7.50192354e-01, 7.50192354e-01, 7.50192354e-01,
7.50740552e-01, 7.50740552e-01, 7.50740552e-01, 7.50740552e-01,
7.52510129e-01, 7.52510129e-01, 7.52510129e-01, 7.52510129e-01,
7.57393863e-01, 7.57393863e-01, 7.57393863e-01, 7.57393863e-01,
7.68727220e-01, 7.68727220e-01, 7.68727220e-01, 7.68727220e-01,
7.90629207e-01, 7.90629207e-01, 7.90629207e-01, 7.90629207e-01,
8.25993244e-01, 8.25993244e-01, 8.25993244e-01, 8.25993244e-01,
8.74646375e-01, 8.74646375e-01, 8.74646375e-01, 8.74646375e-01,
9.33771553e-01, 9.33771553e-01, 9.33771553e-01, 9.33771553e-01,
9.98521665e-01, 9.98521665e-01, 9.98521665e-01, 9.98521665e-01,
1.06413782e+00, 1.06413782e+00, 1.06413782e+00, 1.06413782e+00,
1.13027656e+00, 1.13027656e+00, 1.13027656e+00, 1.13027656e+00,
1.19762442e+00, 1.19762442e+00, 1.19762442e+00, 1.19762442e+00,
1.25961704e+00, 1.25961704e+00, 1.25961704e+00, 1.25961704e+00,
1.30884188e+00, 1.30884188e+00, 1.30884188e+00, 1.30884188e+00,
1.33910827e+00, 1.33910827e+00, 1.33910827e+00, 1.33910827e+00,
1.35277568e+00, 1.35277568e+00, 1.35277568e+00, 1.35277568e+00,
1.35771893e+00, 1.35771893e+00, 1.35771893e+00, 1.35771893e+00,
1.35973017e+00, 1.35973017e+00, 1.35973017e+00, 1.35973017e+00,
1.36124410e+00, 1.36124410e+00, 1.36124410e+00, 1.36124410e+00,
1.36234589e+00, 1.36234589e+00, 1.36234589e+00, 1.36234589e+00,
1.36284576e+00, 1.36284576e+00, 1.36284576e+00, 1.36284576e+00,
1.36330700e+00, 1.36330700e+00, 1.36330700e+00, 1.36330700e+00,
1.36348314e+00, 1.36348314e+00, 1.36348314e+00, 1.36348314e+00,
1.36337493e+00, 1.36337493e+00, 1.36337493e+00, 1.36337493e+00,
1.36336149e+00, 1.36336149e+00, 1.36336149e+00, 1.36336149e+00,
1.36324405e+00, 1.36324405e+00, 1.36324405e+00, 1.36324405e+00,
1.36265870e+00, 1.36265870e+00, 1.36265870e+00, 1.36265870e+00,
1.36215849e+00, 1.36215849e+00, 1.36215849e+00, 1.36215849e+00,
1.36145357e+00, 1.36145357e+00, 1.36145357e+00, 1.36145357e+00,
1.36027737e+00, 1.36027737e+00, 1.36027737e+00, 1.36027737e+00,
1.35985957e+00, 1.35985957e+00, 1.35985957e+00, 1.35985957e+00,
1.35950146e+00, 1.35950146e+00, 1.35950146e+00, 1.35950146e+00,
1.35794105e+00, 1.35794105e+00, 1.35794105e+00, 1.35794105e+00,
1.35302786e+00, 1.35302786e+00, 1.35302786e+00, 1.35302786e+00,
1.32948395e+00, 1.32948395e+00, 1.32948395e+00, 1.32948395e+00,
1.22656804e+00, 1.22656804e+00, 1.22656804e+00, 1.22656804e+00,
8.53469650e-01, 8.53469650e-01, 8.53469650e-01, 8.53469650e-01,
2.22591142e-01, 2.22591142e-01, 2.22591142e-01, 2.22591142e-01,
2.20888528e-02, 2.20888528e-02, 2.20888528e-02, 2.20888528e-02,
1.71922272e-03, 1.71922272e-03, 1.71922272e-03, 1.71922272e-03,
1.30417470e-04, 1.30417470e-04, 1.30417470e-04, 1.30417470e-04,
9.86300289e-06, 9.86300289e-06, 9.86300289e-06, 9.86300289e-06,
7.43754125e-07, 7.43754125e-07, 7.43754125e-07, 7.43754125e-07,
5.59602796e-08, 5.59602796e-08, 5.59602796e-08, 5.59602796e-08,
4.20149858e-09, 4.20149858e-09, 4.20149858e-09, 4.20149858e-09,
3.14719729e-10, 3.14719729e-10, 3.14719729e-10, 3.14719729e-10,
2.35165721e-11, 2.35165721e-11, 2.35165721e-11, 2.35165721e-11,
1.75282978e-12, 1.75282978e-12, 1.75282978e-12, 1.75282978e-12,
1.30293969e-13, 1.30293969e-13, 1.30293969e-13, 1.30293969e-13,
9.55439487e-15, 9.55439487e-15, 9.55439487e-15, 9.55439487e-15,
6.56847280e-16, 6.56847280e-16, 6.56847280e-16, 6.56847280e-16,
3.41706842e-17, 3.41706842e-17, 3.41706842e-17, 3.41706842e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999964, 0.99999964, 0.99999964, 0.99999964, 0.99999792,
0.99999792, 0.99999792, 0.99999792, 0.99998901, 0.99998901,
0.99998901, 0.99998901, 0.9999473 , 0.9999473 , 0.9999473 ,
0.9999473 , 0.99977243, 0.99977243, 0.99977243, 0.99977243,
0.99912413, 0.99912413, 0.99912413, 0.99912413, 0.99703423,
0.99703423, 0.99703423, 0.99703423, 0.99128845, 0.99128845,
0.99128845, 0.99128845, 0.97807702, 0.97807702, 0.97807702,
0.97807702, 0.95301417, 0.95301417, 0.95301417, 0.95301417,
0.91378216, 0.91378216, 0.91378216, 0.91378216, 0.86213936,
0.86213936, 0.86213936, 0.86213936, 0.80277216, 0.80277216,
0.80277216, 0.80277216, 0.7408459 , 0.7408459 , 0.7408459 ,
0.7408459 , 0.68230078, 0.68230078, 0.68230078, 0.68230078,
0.62855672, 0.62855672, 0.62855672, 0.62855672, 0.5764662 ,
0.5764662 , 0.5764662 , 0.5764662 , 0.53234585, 0.53234585,
0.53234585, 0.53234585, 0.49942183, 0.49942183, 0.49942183,
0.49942183, 0.47983443, 0.47983443, 0.47983443, 0.47983443,
0.47100923, 0.47100923, 0.47100923, 0.47100923, 0.46787142,
0.46787142, 0.46787142, 0.46787142, 0.46682295, 0.46682295,
0.46682295, 0.46682295, 0.46618014, 0.46618014, 0.46618014,
0.46618014, 0.46556219, 0.46556219, 0.46556219, 0.46556219,
0.46506118, 0.46506118, 0.46506118, 0.46506118, 0.46489673,
0.46489673, 0.46489673, 0.46489673, 0.46500213, 0.46500213,
0.46500213, 0.46500213, 0.46532374, 0.46532374, 0.46532374,
0.46532374, 0.46561466, 0.46561466, 0.46561466, 0.46561466,
0.46573189, 0.46573189, 0.46573189, 0.46573189, 0.46592128,
0.46592128, 0.46592128, 0.46592128, 0.46578294, 0.46578294,
0.46578294, 0.46578294, 0.46549998, 0.46549998, 0.46549998,
0.46549998, 0.46541691, 0.46541691, 0.46541691, 0.46541691,
0.46523714, 0.46523714, 0.46523714, 0.46523714, 0.46502176,
0.46502176, 0.46502176, 0.46502176, 0.46475263, 0.46475263,
0.46475263, 0.46475263, 0.46237713, 0.46237713, 0.46237713,
0.46237713, 0.45142205, 0.45142205, 0.45142205, 0.45142205,
0.40654284, 0.40654284, 0.40654284, 0.40654284, 0.27563326,
0.27563326, 0.27563326, 0.27563326, 0.13295938, 0.13295938,
0.13295938, 0.13295938, 0.1029486 , 0.1029486 , 0.1029486 ,
0.1029486 , 0.10022754, 0.10022754, 0.10022754, 0.10022754,
0.10001725, 0.10001725, 0.10001725, 0.10001725, 0.1000013 ,
0.1000013 , 0.1000013 , 0.1000013 , 0.1000001 , 0.1000001 ,
0.1000001 , 0.1000001 , 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999962, 0.99999962, 0.99999962, 0.99999962, 0.99999791,
0.99999791, 0.99999791, 0.99999791, 0.99998931, 0.99998931,
0.99998931, 0.99998931, 0.99995038, 0.99995038, 0.99995038,
0.99995038, 0.99979255, 0.99979255, 0.99979255, 0.99979255,
0.99922731, 0.99922731, 0.99922731, 0.99922731, 0.99746821,
0.99746821, 0.99746821, 0.99746821, 0.99279908, 0.99279908,
0.99279908, 0.99279908, 0.98241481, 0.98241481, 0.98241481,
0.98241481, 0.96326558, 0.96326558, 0.96326558, 0.96326558,
0.93387982, 0.93387982, 0.93387982, 0.93387982, 0.89553728,
0.89553728, 0.89553728, 0.89553728, 0.85134817, 0.85134817,
0.85134817, 0.85134817, 0.80495162, 0.80495162, 0.80495162,
0.80495162, 0.76058273, 0.76058273, 0.76058273, 0.76058273,
0.71835604, 0.71835604, 0.71835604, 0.71835604, 0.67514463,
0.67514463, 0.67514463, 0.67514463, 0.63729119, 0.63729119,
0.63729119, 0.63729119, 0.61162641, 0.61162641, 0.61162641,
0.61162641, 0.59582875, 0.59582875, 0.59582875, 0.59582875,
0.58543448, 0.58543448, 0.58543448, 0.58543448, 0.57967261,
0.57967261, 0.57967261, 0.57967261, 0.57782428, 0.57782428,
0.57782428, 0.57782428, 0.57777383, 0.57777383, 0.57777383,
0.57777383, 0.57870314, 0.57870314, 0.57870314, 0.57870314,
0.58056833, 0.58056833, 0.58056833, 0.58056833, 0.58087553,
0.58087553, 0.58087553, 0.58087553, 0.57939156, 0.57939156,
0.57939156, 0.57939156, 0.57325442, 0.57325442, 0.57325442,
0.57325442, 0.55803941, 0.55803941, 0.55803941, 0.55803941,
0.52921033, 0.52921033, 0.52921033, 0.52921033, 0.4837152 ,
0.4837152 , 0.4837152 , 0.4837152 , 0.42371397, 0.42371397,
0.42371397, 0.42371397, 0.376212 , 0.376212 , 0.376212 ,
0.376212 , 0.34965307, 0.34965307, 0.34965307, 0.34965307,
0.33690123, 0.33690123, 0.33690123, 0.33690123, 0.33265682,
0.33265682, 0.33265682, 0.33265682, 0.33246875, 0.33246875,
0.33246875, 0.33246875, 0.33332651, 0.33332651, 0.33332651,
0.33332651, 0.33357826, 0.33357826, 0.33357826, 0.33357826,
0.32736337, 0.32736337, 0.32736337, 0.32736337, 0.29324759,
0.29324759, 0.29324759, 0.29324759, 0.20348887, 0.20348887,
0.20348887, 0.20348887, 0.13723772, 0.13723772, 0.13723772,
0.13723772, 0.12613944, 0.12613944, 0.12613944, 0.12613944,
0.12509047, 0.12509047, 0.12509047, 0.12509047, 0.12500693,
0.12500693, 0.12500693, 0.12500693, 0.12500053, 0.12500053,
0.12500053, 0.12500053, 0.12500004, 0.12500004, 0.12500004,
0.12500004, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
7.50000073e-01, 7.50000073e-01, 7.50000073e-01, 7.50000073e-01,
7.50000444e-01, 7.50000444e-01, 7.50000444e-01, 7.50000444e-01,
7.50002476e-01, 7.50002476e-01, 7.50002476e-01, 7.50002476e-01,
7.50012648e-01, 7.50012648e-01, 7.50012648e-01, 7.50012648e-01,
7.50058710e-01, 7.50058710e-01, 7.50058710e-01, 7.50058710e-01,
7.50245463e-01, 7.50245463e-01, 7.50245463e-01, 7.50245463e-01,
7.50914434e-01, 7.50914434e-01, 7.50914434e-01, 7.50914434e-01,
7.52998113e-01, 7.52998113e-01, 7.52998113e-01, 7.52998113e-01,
7.58543146e-01, 7.58543146e-01, 7.58543146e-01, 7.58543146e-01,
7.70955766e-01, 7.70955766e-01, 7.70955766e-01, 7.70955766e-01,
7.94146625e-01, 7.94146625e-01, 7.94146625e-01, 7.94146625e-01,
8.30511067e-01, 8.30511067e-01, 8.30511067e-01, 8.30511067e-01,
8.79411509e-01, 8.79411509e-01, 8.79411509e-01, 8.79411509e-01,
9.37934877e-01, 9.37934877e-01, 9.37934877e-01, 9.37934877e-01,
1.00124282e+00, 1.00124282e+00, 1.00124282e+00, 1.00124282e+00,
1.06525741e+00, 1.06525741e+00, 1.06525741e+00, 1.06525741e+00,
1.12978836e+00, 1.12978836e+00, 1.12978836e+00, 1.12978836e+00,
1.19554873e+00, 1.19554873e+00, 1.19554873e+00, 1.19554873e+00,
1.25655219e+00, 1.25655219e+00, 1.25655219e+00, 1.25655219e+00,
1.30588997e+00, 1.30588997e+00, 1.30588997e+00, 1.30588997e+00,
1.33725902e+00, 1.33725902e+00, 1.33725902e+00, 1.33725902e+00,
1.35200167e+00, 1.35200167e+00, 1.35200167e+00, 1.35200167e+00,
1.35740137e+00, 1.35740137e+00, 1.35740137e+00, 1.35740137e+00,
1.35945680e+00, 1.35945680e+00, 1.35945680e+00, 1.35945680e+00,
1.36098916e+00, 1.36098916e+00, 1.36098916e+00, 1.36098916e+00,
1.36225665e+00, 1.36225665e+00, 1.36225665e+00, 1.36225665e+00,
1.36284870e+00, 1.36284870e+00, 1.36284870e+00, 1.36284870e+00,
1.36323230e+00, 1.36323230e+00, 1.36323230e+00, 1.36323230e+00,
1.36337379e+00, 1.36337379e+00, 1.36337379e+00, 1.36337379e+00,
1.36322082e+00, 1.36322082e+00, 1.36322082e+00, 1.36322082e+00,
1.36321667e+00, 1.36321667e+00, 1.36321667e+00, 1.36321667e+00,
1.36320442e+00, 1.36320442e+00, 1.36320442e+00, 1.36320442e+00,
1.36283306e+00, 1.36283306e+00, 1.36283306e+00, 1.36283306e+00,
1.36246959e+00, 1.36246959e+00, 1.36246959e+00, 1.36246959e+00,
1.36197500e+00, 1.36197500e+00, 1.36197500e+00, 1.36197500e+00,
1.36085259e+00, 1.36085259e+00, 1.36085259e+00, 1.36085259e+00,
1.36028892e+00, 1.36028892e+00, 1.36028892e+00, 1.36028892e+00,
1.35984919e+00, 1.35984919e+00, 1.35984919e+00, 1.35984919e+00,
1.35883540e+00, 1.35883540e+00, 1.35883540e+00, 1.35883540e+00,
1.35714143e+00, 1.35714143e+00, 1.35714143e+00, 1.35714143e+00,
1.34894991e+00, 1.34894991e+00, 1.34894991e+00, 1.34894991e+00,
1.31073945e+00, 1.31073945e+00, 1.31073945e+00, 1.31073945e+00,
1.15250494e+00, 1.15250494e+00, 1.15250494e+00, 1.15250494e+00,
6.53937892e-01, 6.53937892e-01, 6.53937892e-01, 6.53937892e-01,
1.15935794e-01, 1.15935794e-01, 1.15935794e-01, 1.15935794e-01,
1.01224064e-02, 1.01224064e-02, 1.01224064e-02, 1.01224064e-02,
7.75605173e-04, 7.75605173e-04, 7.75605173e-04, 7.75605173e-04,
5.88223629e-05, 5.88223629e-05, 5.88223629e-05, 5.88223629e-05,
4.44985365e-06, 4.44985365e-06, 4.44985365e-06, 4.44985365e-06,
3.35889504e-07, 3.35889504e-07, 3.35889504e-07, 3.35889504e-07,
2.52955860e-08, 2.52955860e-08, 2.52955860e-08, 2.52955860e-08,
1.90071378e-09, 1.90071378e-09, 1.90071378e-09, 1.90071378e-09,
1.42497338e-10, 1.42497338e-10, 1.42497338e-10, 1.42497338e-10,
1.06576856e-11, 1.06576856e-11, 1.06576856e-11, 1.06576856e-11,
7.95109096e-13, 7.95109096e-13, 7.95109096e-13, 7.95109096e-13,
5.90704393e-14, 5.90704393e-14, 5.90704393e-14, 5.90704393e-14,
4.31701064e-15, 4.31701064e-15, 4.31701064e-15, 4.31701064e-15,
3.15002440e-16, 3.15002440e-16, 3.15002440e-16, 3.15002440e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999947, 0.99999947, 0.99999947, 0.99999947, 0.99999707,
0.99999707, 0.99999707, 0.99999707, 0.99998504, 0.99998504,
0.99998504, 0.99998504, 0.99993054, 0.99993054, 0.99993054,
0.99993054, 0.9997096 , 0.9997096 , 0.9997096 , 0.9997096 ,
0.99891859, 0.99891859, 0.99891859, 0.99891859, 0.99645866,
0.99645866, 0.99645866, 0.99645866, 0.98994093, 0.98994093,
0.98994093, 0.98994093, 0.97549864, 0.97549864, 0.97549864,
0.97549864, 0.94904306, 0.94904306, 0.94904306, 0.94904306,
0.90886853, 0.90886853, 0.90886853, 0.90886853, 0.85720188,
0.85720188, 0.85720188, 0.85720188, 0.79869209, 0.79869209,
0.79869209, 0.79869209, 0.73826586, 0.73826586, 0.73826586,
0.73826586, 0.68131655, 0.68131655, 0.68131655, 0.68131655,
0.62890962, 0.62890962, 0.62890962, 0.62890962, 0.57797733,
0.57797733, 0.57797733, 0.57797733, 0.53444855, 0.53444855,
0.53444855, 0.53444855, 0.5013871 , 0.5013871 , 0.5013871 ,
0.5013871 , 0.48115492, 0.48115492, 0.48115492, 0.48115492,
0.47166155, 0.47166155, 0.47166155, 0.47166155, 0.468095 ,
0.468095 , 0.468095 , 0.468095 , 0.46684318, 0.46684318,
0.46684318, 0.46684318, 0.46616211, 0.46616211, 0.46616211,
0.46616211, 0.46561043, 0.46561043, 0.46561043, 0.46561043,
0.46512576, 0.46512576, 0.46512576, 0.46512576, 0.46487872,
0.46487872, 0.46487872, 0.46487872, 0.46492772, 0.46492772,
0.46492772, 0.46492772, 0.4651844 , 0.4651844 , 0.4651844 ,
0.4651844 , 0.4655066 , 0.4655066 , 0.4655066 , 0.4655066 ,
0.46569201, 0.46569201, 0.46569201, 0.46569201, 0.46598138,
0.46598138, 0.46598138, 0.46598138, 0.46594011, 0.46594011,
0.46594011, 0.46594011, 0.4657527 , 0.4657527 , 0.4657527 ,
0.4657527 , 0.4656862 , 0.4656862 , 0.4656862 , 0.4656862 ,
0.46543641, 0.46543641, 0.46543641, 0.46543641, 0.46518651,
0.46518651, 0.46518651, 0.46518651, 0.46517111, 0.46517111,
0.46517111, 0.46517111, 0.46429022, 0.46429022, 0.46429022,
0.46429022, 0.46039234, 0.46039234, 0.46039234, 0.46039234,
0.44325735, 0.44325735, 0.44325735, 0.44325735, 0.37715612,
0.37715612, 0.37715612, 0.37715612, 0.22068217, 0.22068217,
0.22068217, 0.22068217, 0.11627314, 0.11627314, 0.11627314,
0.11627314, 0.10134388, 0.10134388, 0.10134388, 0.10134388,
0.10010262, 0.10010262, 0.10010262, 0.10010262, 0.10000778,
0.10000778, 0.10000778, 0.10000778, 0.10000059, 0.10000059,
0.10000059, 0.10000059, 0.10000004, 0.10000004, 0.10000004,
0.10000004, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999946, 0.99999946, 0.99999946, 0.99999946, 0.99999709,
0.99999709, 0.99999709, 0.99999709, 0.9999856 , 0.9999856 ,
0.9999856 , 0.9999856 , 0.9999352 , 0.9999352 , 0.9999352 ,
0.9999352 , 0.99973758, 0.99973758, 0.99973758, 0.99973758,
0.99905358, 0.99905358, 0.99905358, 0.99905358, 0.99699862,
0.99699862, 0.99699862, 0.99699862, 0.99173748, 0.99173748,
0.99173748, 0.99173748, 0.98044778, 0.98044778, 0.98044778,
0.98044778, 0.96031352, 0.96031352, 0.96031352, 0.96031352,
0.93028712, 0.93028712, 0.93028712, 0.93028712, 0.89194825,
0.89194825, 0.89194825, 0.89194825, 0.84837482, 0.84837482,
0.84837482, 0.84837482, 0.80307475, 0.80307475, 0.80307475,
0.80307475, 0.75973657, 0.75973657, 0.75973657, 0.75973657,
0.71864049, 0.71864049, 0.71864049, 0.71864049, 0.6769383 ,
0.6769383 , 0.6769383 , 0.6769383 , 0.63889909, 0.63889909,
0.63889909, 0.63889909, 0.61229773, 0.61229773, 0.61229773,
0.61229773, 0.59674677, 0.59674677, 0.59674677, 0.59674677,
0.58694413, 0.58694413, 0.58694413, 0.58694413, 0.58077655,
0.58077655, 0.58077655, 0.58077655, 0.57805601, 0.57805601,
0.57805601, 0.57805601, 0.57755678, 0.57755678, 0.57755678,
0.57755678, 0.57803073, 0.57803073, 0.57803073, 0.57803073,
0.57971225, 0.57971225, 0.57971225, 0.57971225, 0.5806943 ,
0.5806943 , 0.5806943 , 0.5806943 , 0.58009671, 0.58009671,
0.58009671, 0.58009671, 0.57636073, 0.57636073, 0.57636073,
0.57636073, 0.5655678 , 0.5655678 , 0.5655678 , 0.5655678 ,
0.54322304, 0.54322304, 0.54322304, 0.54322304, 0.50551025,
0.50551025, 0.50551025, 0.50551025, 0.45076947, 0.45076947,
0.45076947, 0.45076947, 0.39435096, 0.39435096, 0.39435096,
0.39435096, 0.3597402 , 0.3597402 , 0.3597402 , 0.3597402 ,
0.34154439, 0.34154439, 0.34154439, 0.34154439, 0.33413329,
0.33413329, 0.33413329, 0.33413329, 0.33272707, 0.33272707,
0.33272707, 0.33272707, 0.33306897, 0.33306897, 0.33306897,
0.33306897, 0.33417837, 0.33417837, 0.33417837, 0.33417837,
0.33342156, 0.33342156, 0.33342156, 0.33342156, 0.32134726,
0.32134726, 0.32134726, 0.32134726, 0.27151457, 0.27151457,
0.27151457, 0.27151457, 0.17391339, 0.17391339, 0.17391339,
0.17391339, 0.131043 , 0.131043 , 0.131043 , 0.131043 ,
0.12552415, 0.12552415, 0.12552415, 0.12552415, 0.12504101,
0.12504101, 0.12504101, 0.12504101, 0.12500313, 0.12500313,
0.12500313, 0.12500313, 0.12500024, 0.12500024, 0.12500024,
0.12500024, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000017e-01, 7.50000017e-01, 7.50000017e-01, 7.50000017e-01,
7.50000108e-01, 7.50000108e-01, 7.50000108e-01, 7.50000108e-01,
7.50000636e-01, 7.50000636e-01, 7.50000636e-01, 7.50000636e-01,
7.50003442e-01, 7.50003442e-01, 7.50003442e-01, 7.50003442e-01,
7.50017043e-01, 7.50017043e-01, 7.50017043e-01, 7.50017043e-01,
7.50076668e-01, 7.50076668e-01, 7.50076668e-01, 7.50076668e-01,
7.50310517e-01, 7.50310517e-01, 7.50310517e-01, 7.50310517e-01,
7.51120114e-01, 7.51120114e-01, 7.51120114e-01, 7.51120114e-01,
7.53554867e-01, 7.53554867e-01, 7.53554867e-01, 7.53554867e-01,
7.59807118e-01, 7.59807118e-01, 7.59807118e-01, 7.59807118e-01,
7.73320214e-01, 7.73320214e-01, 7.73320214e-01, 7.73320214e-01,
7.97757265e-01, 7.97757265e-01, 7.97757265e-01, 7.97757265e-01,
8.35020634e-01, 8.35020634e-01, 8.35020634e-01, 8.35020634e-01,
8.84067394e-01, 8.84067394e-01, 8.84067394e-01, 8.84067394e-01,
9.41941415e-01, 9.41941415e-01, 9.41941415e-01, 9.41941415e-01,
1.00384428e+00, 1.00384428e+00, 1.00384428e+00, 1.00384428e+00,
1.06633018e+00, 1.06633018e+00, 1.06633018e+00, 1.06633018e+00,
1.12932515e+00, 1.12932515e+00, 1.12932515e+00, 1.12932515e+00,
1.19354968e+00, 1.19354968e+00, 1.19354968e+00, 1.19354968e+00,
1.25356360e+00, 1.25356360e+00, 1.25356360e+00, 1.25356360e+00,
1.30291531e+00, 1.30291531e+00, 1.30291531e+00, 1.30291531e+00,
1.33529031e+00, 1.33529031e+00, 1.33529031e+00, 1.33529031e+00,
1.35115947e+00, 1.35115947e+00, 1.35115947e+00, 1.35115947e+00,
1.35713174e+00, 1.35713174e+00, 1.35713174e+00, 1.35713174e+00,
1.35925965e+00, 1.35925965e+00, 1.35925965e+00, 1.35925965e+00,
1.36072477e+00, 1.36072477e+00, 1.36072477e+00, 1.36072477e+00,
1.36208351e+00, 1.36208351e+00, 1.36208351e+00, 1.36208351e+00,
1.36283213e+00, 1.36283213e+00, 1.36283213e+00, 1.36283213e+00,
1.36320426e+00, 1.36320426e+00, 1.36320426e+00, 1.36320426e+00,
1.36331504e+00, 1.36331504e+00, 1.36331504e+00, 1.36331504e+00,
1.36312690e+00, 1.36312690e+00, 1.36312690e+00, 1.36312690e+00,
1.36305072e+00, 1.36305072e+00, 1.36305072e+00, 1.36305072e+00,
1.36308238e+00, 1.36308238e+00, 1.36308238e+00, 1.36308238e+00,
1.36286521e+00, 1.36286521e+00, 1.36286521e+00, 1.36286521e+00,
1.36262787e+00, 1.36262787e+00, 1.36262787e+00, 1.36262787e+00,
1.36231759e+00, 1.36231759e+00, 1.36231759e+00, 1.36231759e+00,
1.36138818e+00, 1.36138818e+00, 1.36138818e+00, 1.36138818e+00,
1.36084001e+00, 1.36084001e+00, 1.36084001e+00, 1.36084001e+00,
1.36024205e+00, 1.36024205e+00, 1.36024205e+00, 1.36024205e+00,
1.35931961e+00, 1.35931961e+00, 1.35931961e+00, 1.35931961e+00,
1.35862778e+00, 1.35862778e+00, 1.35862778e+00, 1.35862778e+00,
1.35576681e+00, 1.35576681e+00, 1.35576681e+00, 1.35576681e+00,
1.34188087e+00, 1.34188087e+00, 1.34188087e+00, 1.34188087e+00,
1.28237194e+00, 1.28237194e+00, 1.28237194e+00, 1.28237194e+00,
1.04403836e+00, 1.04403836e+00, 1.04403836e+00, 1.04403836e+00,
4.40023066e-01, 4.40023066e-01, 4.40023066e-01, 4.40023066e-01,
5.63022869e-02, 5.63022869e-02, 5.63022869e-02, 5.63022869e-02,
4.58333546e-03, 4.58333546e-03, 4.58333546e-03, 4.58333546e-03,
3.49968099e-04, 3.49968099e-04, 3.49968099e-04, 3.49968099e-04,
2.65258651e-05, 2.65258651e-05, 2.65258651e-05, 2.65258651e-05,
2.00742922e-06, 2.00742922e-06, 2.00742922e-06, 2.00742922e-06,
1.51640690e-07, 1.51640690e-07, 1.51640690e-07, 1.51640690e-07,
1.14299111e-08, 1.14299111e-08, 1.14299111e-08, 1.14299111e-08,
8.59588993e-10, 8.59588993e-10, 8.59588993e-10, 8.59588993e-10,
6.44987274e-11, 6.44987274e-11, 6.44987274e-11, 6.44987274e-11,
4.82824703e-12, 4.82824703e-12, 4.82824703e-12, 4.82824703e-12,
3.60377106e-13, 3.60377106e-13, 3.60377106e-13, 3.60377106e-13,
2.67995136e-14, 2.67995136e-14, 2.67995136e-14, 2.67995136e-14,
1.97682800e-15, 1.97682800e-15, 1.97682800e-15, 1.97682800e-15,
1.51415324e-16, 1.51415324e-16, 1.51415324e-16, 1.51415324e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999925, 0.99999925, 0.99999925, 0.99999925, 0.99999593,
0.99999593, 0.99999593, 0.99999593, 0.99997983, 0.99997983,
0.99997983, 0.99997983, 0.99990929, 0.99990929, 0.99990929,
0.99990929, 0.99963266, 0.99963266, 0.99963266, 0.99963266,
0.99867551, 0.99867551, 0.99867551, 0.99867551, 0.99580237,
0.99580237, 0.99580237, 0.99580237, 0.98846096, 0.98846096,
0.98846096, 0.98846096, 0.97276987, 0.97276987, 0.97276987,
0.97276987, 0.94498179, 0.94498179, 0.94498179, 0.94498179,
0.90398561, 0.90398561, 0.90398561, 0.90398561, 0.85239877,
0.85239877, 0.85239877, 0.85239877, 0.79478009, 0.79478009,
0.79478009, 0.79478009, 0.73582397, 0.73582397, 0.73582397,
0.73582397, 0.68038471, 0.68038471, 0.68038471, 0.68038471,
0.62924921, 0.62924921, 0.62924921, 0.62924921, 0.57942336,
0.57942336, 0.57942336, 0.57942336, 0.53648813, 0.53648813,
0.53648813, 0.53648813, 0.50332705, 0.50332705, 0.50332705,
0.50332705, 0.48248881, 0.48248881, 0.48248881, 0.48248881,
0.47236439, 0.47236439, 0.47236439, 0.47236439, 0.46839479,
0.46839479, 0.46839479, 0.46839479, 0.46692446, 0.46692446,
0.46692446, 0.46692446, 0.46614238, 0.46614238, 0.46614238,
0.46614238, 0.46561056, 0.46561056, 0.46561056, 0.46561056,
0.4651818 , 0.4651818 , 0.4651818 , 0.4651818 , 0.46489012,
0.46489012, 0.46489012, 0.46489012, 0.46489108, 0.46489108,
0.46489108, 0.46489108, 0.4650843 , 0.4650843 , 0.4650843 ,
0.4650843 , 0.46537787, 0.46537787, 0.46537787, 0.46537787,
0.46560331, 0.46560331, 0.46560331, 0.46560331, 0.46596369,
0.46596369, 0.46596369, 0.46596369, 0.46601669, 0.46601669,
0.46601669, 0.46601669, 0.46592137, 0.46592137, 0.46592137,
0.46592137, 0.46593666, 0.46593666, 0.46593666, 0.46593666,
0.46569284, 0.46569284, 0.46569284, 0.46569284, 0.46537354,
0.46537354, 0.46537354, 0.46537354, 0.46539853, 0.46539853,
0.46539853, 0.46539853, 0.46498145, 0.46498145, 0.46498145,
0.46498145, 0.46356472, 0.46356472, 0.46356472, 0.46356472,
0.45748027, 0.45748027, 0.45748027, 0.45748027, 0.43042442,
0.43042442, 0.43042442, 0.43042442, 0.33773594, 0.33773594,
0.33773594, 0.33773594, 0.1723474 , 0.1723474 , 0.1723474 ,
0.1723474 , 0.10764844, 0.10764844, 0.10764844, 0.10764844,
0.10060719, 0.10060719, 0.10060719, 0.10060719, 0.1000463 ,
0.1000463 , 0.1000463 , 0.1000463 , 0.10000351, 0.10000351,
0.10000351, 0.10000351, 0.10000027, 0.10000027, 0.10000027,
0.10000027, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}], 'minmod_hllc': [{'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999993, 0.99999993, 0.99999993, 0.99999993,
0.99999956, 0.99999956, 0.99999956, 0.99999956, 0.99999758,
0.99999758, 0.99999758, 0.99999758, 0.99998782, 0.99998782,
0.99998782, 0.99998782, 0.99994422, 0.99994422, 0.99994422,
0.99994422, 0.99977003, 0.99977003, 0.99977003, 0.99977003,
0.99915542, 0.99915542, 0.99915542, 0.99915542, 0.99727188,
0.99727188, 0.99727188, 0.99727188, 0.99234954, 0.99234954,
0.99234954, 0.99234954, 0.98156538, 0.98156538, 0.98156538,
0.98156538, 0.96194746, 0.96194746, 0.96194746, 0.96194746,
0.93218276, 0.93218276, 0.93218276, 0.93218276, 0.8936786 ,
0.8936786 , 0.8936786 , 0.8936786 , 0.84954127, 0.84954127,
0.84954127, 0.84954127, 0.80317128, 0.80317128, 0.80317128,
0.80317128, 0.75830147, 0.75830147, 0.75830147, 0.75830147,
0.71601042, 0.71601042, 0.71601042, 0.71601042, 0.67327991,
0.67327991, 0.67327991, 0.67327991, 0.63607874, 0.63607874,
0.63607874, 0.63607874, 0.61091745, 0.61091745, 0.61091745,
0.61091745, 0.59673414, 0.59673414, 0.59673414, 0.59673414,
0.58738935, 0.58738935, 0.58738935, 0.58738935, 0.58067077,
0.58067077, 0.58067077, 0.58067077, 0.57738951, 0.57738951,
0.57738951, 0.57738951, 0.57684123, 0.57684123, 0.57684123,
0.57684123, 0.57741731, 0.57741731, 0.57741731, 0.57741731,
0.57933199, 0.57933199, 0.57933199, 0.57933199, 0.5807667 ,
0.5807667 , 0.5807667 , 0.5807667 , 0.58038131, 0.58038131,
0.58038131, 0.58038131, 0.57694171, 0.57694171, 0.57694171,
0.57694171, 0.56652927, 0.56652927, 0.56652927, 0.56652927,
0.54427792, 0.54427792, 0.54427792, 0.54427792, 0.50574245,
0.50574245, 0.50574245, 0.50574245, 0.44917162, 0.44917162,
0.44917162, 0.44917162, 0.39267489, 0.39267489, 0.39267489,
0.39267489, 0.35904482, 0.35904482, 0.35904482, 0.35904482,
0.34183176, 0.34183176, 0.34183176, 0.34183176, 0.33519947,
0.33519947, 0.33519947, 0.33519947, 0.33392488, 0.33392488,
0.33392488, 0.33392488, 0.33443666, 0.33443666, 0.33443666,
0.33443666, 0.33522049, 0.33522049, 0.33522049, 0.33522049,
0.33404885, 0.33404885, 0.33404885, 0.33404885, 0.32180389,
0.32180389, 0.32180389, 0.32180389, 0.27211543, 0.27211543,
0.27211543, 0.27211543, 0.17353096, 0.17353096, 0.17353096,
0.17353096, 0.13090219, 0.13090219, 0.13090219, 0.13090219,
0.12548944, 0.12548944, 0.12548944, 0.12548944, 0.12503725,
0.12503725, 0.12503725, 0.12503725, 0.12500281, 0.12500281,
0.12500281, 0.12500281, 0.12500021, 0.12500021, 0.12500021,
0.12500021, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
7.50000087e-01, 7.50000087e-01, 7.50000087e-01, 7.50000087e-01,
7.50000519e-01, 7.50000519e-01, 7.50000519e-01, 7.50000519e-01,
7.50002860e-01, 7.50002860e-01, 7.50002860e-01, 7.50002860e-01,
7.50014413e-01, 7.50014413e-01, 7.50014413e-01, 7.50014413e-01,
7.50065997e-01, 7.50065997e-01, 7.50065997e-01, 7.50065997e-01,
7.50272133e-01, 7.50272133e-01, 7.50272133e-01, 7.50272133e-01,
7.50999658e-01, 7.50999658e-01, 7.50999658e-01, 7.50999658e-01,
7.53231583e-01, 7.53231583e-01, 7.53231583e-01, 7.53231583e-01,
7.59081507e-01, 7.59081507e-01, 7.59081507e-01, 7.59081507e-01,
7.71986731e-01, 7.71986731e-01, 7.71986731e-01, 7.71986731e-01,
7.95781524e-01, 7.95781524e-01, 7.95781524e-01, 7.95781524e-01,
8.32680719e-01, 8.32680719e-01, 8.32680719e-01, 8.32680719e-01,
8.81876321e-01, 8.81876321e-01, 8.81876321e-01, 8.81876321e-01,
9.40397529e-01, 9.40397529e-01, 9.40397529e-01, 9.40397529e-01,
1.00383705e+00, 1.00383705e+00, 1.00383705e+00, 1.00383705e+00,
1.06846436e+00, 1.06846436e+00, 1.06846436e+00, 1.06846436e+00,
1.13364194e+00, 1.13364194e+00, 1.13364194e+00, 1.13364194e+00,
1.19966388e+00, 1.19966388e+00, 1.19966388e+00, 1.19966388e+00,
1.25823577e+00, 1.25823577e+00, 1.25823577e+00, 1.25823577e+00,
1.30460285e+00, 1.30460285e+00, 1.30460285e+00, 1.30460285e+00,
1.33510884e+00, 1.33510884e+00, 1.33510884e+00, 1.33510884e+00,
1.35096608e+00, 1.35096608e+00, 1.35096608e+00, 1.35096608e+00,
1.35752911e+00, 1.35752911e+00, 1.35752911e+00, 1.35752911e+00,
1.36008887e+00, 1.36008887e+00, 1.36008887e+00, 1.36008887e+00,
1.36168158e+00, 1.36168158e+00, 1.36168158e+00, 1.36168158e+00,
1.36273536e+00, 1.36273536e+00, 1.36273536e+00, 1.36273536e+00,
1.36310325e+00, 1.36310325e+00, 1.36310325e+00, 1.36310325e+00,
1.36308266e+00, 1.36308266e+00, 1.36308266e+00, 1.36308266e+00,
1.36292459e+00, 1.36292459e+00, 1.36292459e+00, 1.36292459e+00,
1.36276796e+00, 1.36276796e+00, 1.36276796e+00, 1.36276796e+00,
1.36261137e+00, 1.36261137e+00, 1.36261137e+00, 1.36261137e+00,
1.36242480e+00, 1.36242480e+00, 1.36242480e+00, 1.36242480e+00,
1.36240105e+00, 1.36240105e+00, 1.36240105e+00, 1.36240105e+00,
1.36236978e+00, 1.36236978e+00, 1.36236978e+00, 1.36236978e+00,
1.36206049e+00, 1.36206049e+00, 1.36206049e+00, 1.36206049e+00,
1.36120137e+00, 1.36120137e+00, 1.36120137e+00, 1.36120137e+00,
1.36080070e+00, 1.36080070e+00, 1.36080070e+00, 1.36080070e+00,
1.36024607e+00, 1.36024607e+00, 1.36024607e+00, 1.36024607e+00,
1.35960979e+00, 1.35960979e+00, 1.35960979e+00, 1.35960979e+00,
1.35845878e+00, 1.35845878e+00, 1.35845878e+00, 1.35845878e+00,
1.35582525e+00, 1.35582525e+00, 1.35582525e+00, 1.35582525e+00,
1.34268743e+00, 1.34268743e+00, 1.34268743e+00, 1.34268743e+00,
1.28409176e+00, 1.28409176e+00, 1.28409176e+00, 1.28409176e+00,
1.04736551e+00, 1.04736551e+00, 1.04736551e+00, 1.04736551e+00,
4.29328817e-01, 4.29328817e-01, 4.29328817e-01, 4.29328817e-01,
5.19371545e-02, 5.19371545e-02, 5.19371545e-02, 5.19371545e-02,
4.15794051e-03, 4.15794051e-03, 4.15794051e-03, 4.15794051e-03,
3.15435852e-04, 3.15435852e-04, 3.15435852e-04, 3.15435852e-04,
2.37540443e-05, 2.37540443e-05, 2.37540443e-05, 2.37540443e-05,
1.78468394e-06, 1.78468394e-06, 1.78468394e-06, 1.78468394e-06,
1.33840550e-07, 1.33840550e-07, 1.33840550e-07, 1.33840550e-07,
1.00204015e-08, 1.00204015e-08, 1.00204015e-08, 1.00204015e-08,
7.48783638e-10, 7.48783638e-10, 7.48783638e-10, 7.48783638e-10,
5.58269795e-11, 5.58269795e-11, 5.58269795e-11, 5.58269795e-11,
4.15162222e-12, 4.15162222e-12, 4.15162222e-12, 4.15162222e-12,
3.07872093e-13, 3.07872093e-13, 3.07872093e-13, 3.07872093e-13,
2.27463383e-14, 2.27463383e-14, 2.27463383e-14, 2.27463383e-14,
1.62261633e-15, 1.62261633e-15, 1.62261633e-15, 1.62261633e-15,
1.00069544e-16, 1.00069544e-16, 1.00069544e-16, 1.00069544e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 ,
0.99999939, 0.99999939, 0.99999939, 0.99999939, 0.99999662,
0.99999662, 0.99999662, 0.99999662, 0.99998295, 0.99998295,
0.99998295, 0.99998295, 0.99992191, 0.99992191, 0.99992191,
0.99992191, 0.99967806, 0.99967806, 0.99967806, 0.99967806,
0.9988179 , 0.9988179 , 0.9988179 , 0.9988179 , 0.99618367,
0.99618367, 0.99618367, 0.99618367, 0.9893114 , 0.9893114 ,
0.9893114 , 0.9893114 , 0.97431068, 0.97431068, 0.97431068,
0.97431068, 0.94720653, 0.94720653, 0.94720653, 0.94720653,
0.90652171, 0.90652171, 0.90652171, 0.90652171, 0.85466372,
0.85466372, 0.85466372, 0.85466372, 0.79629842, 0.79629842,
0.79629842, 0.79629842, 0.73604968, 0.73604968, 0.73604968,
0.73604968, 0.67878231, 0.67878231, 0.67878231, 0.67878231,
0.6256561 , 0.6256561 , 0.6256561 , 0.6256561 , 0.57494258,
0.57494258, 0.57494258, 0.57494258, 0.533212 , 0.533212 ,
0.533212 , 0.533212 , 0.50207587, 0.50207587, 0.50207587,
0.50207587, 0.48250309, 0.48250309, 0.48250309, 0.48250309,
0.47250947, 0.47250947, 0.47250947, 0.47250947, 0.46817049,
0.46817049, 0.46817049, 0.46817049, 0.46640112, 0.46640112,
0.46640112, 0.46640112, 0.46567017, 0.46567017, 0.46567017,
0.46567017, 0.46537494, 0.46537494, 0.46537494, 0.46537494,
0.4652207 , 0.4652207 , 0.4652207 , 0.4652207 , 0.46520697,
0.46520697, 0.46520697, 0.46520697, 0.46526117, 0.46526117,
0.46526117, 0.46526117, 0.46535935, 0.46535935, 0.46535935,
0.46535935, 0.46554981, 0.46554981, 0.46554981, 0.46554981,
0.46588653, 0.46588653, 0.46588653, 0.46588653, 0.46609435,
0.46609435, 0.46609435, 0.46609435, 0.46609123, 0.46609123,
0.46609123, 0.46609123, 0.46609313, 0.46609313, 0.46609313,
0.46609313, 0.4660888 , 0.4660888 , 0.4660888 , 0.4660888 ,
0.46579135, 0.46579135, 0.46579135, 0.46579135, 0.46552363,
0.46552363, 0.46552363, 0.46552363, 0.46536737, 0.46536737,
0.46536737, 0.46536737, 0.46516396, 0.46516396, 0.46516396,
0.46516396, 0.46370822, 0.46370822, 0.46370822, 0.46370822,
0.45758086, 0.45758086, 0.45758086, 0.45758086, 0.43124529,
0.43124529, 0.43124529, 0.43124529, 0.33859453, 0.33859453,
0.33859453, 0.33859453, 0.17013955, 0.17013955, 0.17013955,
0.17013955, 0.10699674, 0.10699674, 0.10699674, 0.10699674,
0.10055056, 0.10055056, 0.10055056, 0.10055056, 0.10004173,
0.10004173, 0.10004173, 0.10004173, 0.10000314, 0.10000314,
0.10000314, 0.10000314, 0.10000024, 0.10000024, 0.10000024,
0.10000024, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}]}
minmod_hll
{'none_hll': [{'rho': array([0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999942,
0.99999942, 0.99999942, 0.99999942, 0.99999778, 0.99999778,
0.99999778, 0.99999778, 0.99999202, 0.99999202, 0.99999202,
0.99999202, 0.99997316, 0.99997316, 0.99997316, 0.99997316,
0.99991602, 0.99991602, 0.99991602, 0.99991602, 0.9997563 ,
0.9997563 , 0.9997563 , 0.9997563 , 0.9993467 , 0.9993467 ,
0.9993467 , 0.9993467 , 0.99838817, 0.99838817, 0.99838817,
0.99838817, 0.99635204, 0.99635204, 0.99635204, 0.99635204,
0.99244104, 0.99244104, 0.99244104, 0.99244104, 0.9856563 ,
0.9856563 , 0.9856563 , 0.9856563 , 0.97499773, 0.97499773,
0.97499773, 0.97499773, 0.95972818, 0.95972818, 0.95972818,
0.95972818, 0.93956535, 0.93956535, 0.93956535, 0.93956535,
0.91470956, 0.91470956, 0.91470956, 0.91470956, 0.88572617,
0.88572617, 0.88572617, 0.88572617, 0.85336749, 0.85336749,
0.85336749, 0.85336749, 0.8183986 , 0.8183986 , 0.8183986 ,
0.8183986 , 0.78138933, 0.78138933, 0.78138933, 0.78138933,
0.74190427, 0.74190427, 0.74190427, 0.74190427, 0.68069561,
0.68069561, 0.68069561, 0.68069561, 0.64567578, 0.64567578,
0.64567578, 0.64567578, 0.62072799, 0.62072799, 0.62072799,
0.62072799, 0.60234245, 0.60234245, 0.60234245, 0.60234245,
0.58959115, 0.58959115, 0.58959115, 0.58959115, 0.58159638,
0.58159638, 0.58159638, 0.58159638, 0.57703206, 0.57703206,
0.57703206, 0.57703206, 0.5742342 , 0.5742342 , 0.5742342 ,
0.5742342 , 0.57154338, 0.57154338, 0.57154338, 0.57154338,
0.56752869, 0.56752869, 0.56752869, 0.56752869, 0.56100982,
0.56100982, 0.56100982, 0.56100982, 0.55104138, 0.55104138,
0.55104138, 0.55104138, 0.5369988 , 0.5369988 , 0.5369988 ,
0.5369988 , 0.51874878, 0.51874878, 0.51874878, 0.51874878,
0.49679082, 0.49679082, 0.49679082, 0.49679082, 0.4722612 ,
0.4722612 , 0.4722612 , 0.4722612 , 0.44675753, 0.44675753,
0.44675753, 0.44675753, 0.42202434, 0.42202434, 0.42202434,
0.42202434, 0.39959589, 0.39959589, 0.39959589, 0.39959589,
0.38049936, 0.38049936, 0.38049936, 0.38049936, 0.36508019,
0.36508019, 0.36508019, 0.36508019, 0.35299013, 0.35299013,
0.35299013, 0.35299013, 0.34303431, 0.34303431, 0.34303431,
0.34303431, 0.33311509, 0.33311509, 0.33311509, 0.33311509,
0.32011436, 0.32011436, 0.32011436, 0.32011436, 0.29976301,
0.29976301, 0.29976301, 0.29976301, 0.2678043 , 0.2678043 ,
0.2678043 , 0.2678043 , 0.22419984, 0.22419984, 0.22419984,
0.22419984, 0.17832614, 0.17832614, 0.17832614, 0.17832614,
0.14528472, 0.14528472, 0.14528472, 0.14528472, 0.13048361,
0.13048361, 0.13048361, 0.13048361, 0.12620226, 0.12620226,
0.12620226, 0.12620226, 0.12524229, 0.12524229, 0.12524229,
0.12524229, 0.12504738, 0.12504738, 0.12504738, 0.12504738,
0.12500914, 0.12500914, 0.12500914, 0.12500914, 0.12500174,
0.12500174, 0.12500174, 0.12500174, 0.12500033, 0.12500033,
0.12500033, 0.12500033, 0.12500006, 0.12500006, 0.12500006,
0.12500006, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000167e-01, 7.50000167e-01, 7.50000167e-01, 7.50000167e-01,
7.50000683e-01, 7.50000683e-01, 7.50000683e-01, 7.50000683e-01,
7.50002625e-01, 7.50002625e-01, 7.50002625e-01, 7.50002625e-01,
7.50009447e-01, 7.50009447e-01, 7.50009447e-01, 7.50009447e-01,
7.50031758e-01, 7.50031758e-01, 7.50031758e-01, 7.50031758e-01,
7.50099366e-01, 7.50099366e-01, 7.50099366e-01, 7.50099366e-01,
7.50288337e-01, 7.50288337e-01, 7.50288337e-01, 7.50288337e-01,
7.50772988e-01, 7.50772988e-01, 7.50772988e-01, 7.50772988e-01,
7.51907376e-01, 7.51907376e-01, 7.51907376e-01, 7.51907376e-01,
7.54318699e-01, 7.54318699e-01, 7.54318699e-01, 7.54318699e-01,
7.58958083e-01, 7.58958083e-01, 7.58958083e-01, 7.58958083e-01,
7.67034111e-01, 7.67034111e-01, 7.67034111e-01, 7.67034111e-01,
7.79799756e-01, 7.79799756e-01, 7.79799756e-01, 7.79799756e-01,
7.98268450e-01, 7.98268450e-01, 7.98268450e-01, 7.98268450e-01,
8.23003448e-01, 8.23003448e-01, 8.23003448e-01, 8.23003448e-01,
8.54075522e-01, 8.54075522e-01, 8.54075522e-01, 8.54075522e-01,
8.91170219e-01, 8.91170219e-01, 8.91170219e-01, 8.91170219e-01,
9.33761223e-01, 9.33761223e-01, 9.33761223e-01, 9.33761223e-01,
9.81292612e-01, 9.81292612e-01, 9.81292612e-01, 9.81292612e-01,
1.03344347e+00, 1.03344347e+00, 1.03344347e+00, 1.03344347e+00,
1.09134872e+00, 1.09134872e+00, 1.09134872e+00, 1.09134872e+00,
1.18628677e+00, 1.18628677e+00, 1.18628677e+00, 1.18628677e+00,
1.24355729e+00, 1.24355729e+00, 1.24355729e+00, 1.24355729e+00,
1.28577631e+00, 1.28577631e+00, 1.28577631e+00, 1.28577631e+00,
1.31763060e+00, 1.31763060e+00, 1.31763060e+00, 1.31763060e+00,
1.33994607e+00, 1.33994607e+00, 1.33994607e+00, 1.33994607e+00,
1.35366900e+00, 1.35366900e+00, 1.35366900e+00, 1.35366900e+00,
1.36065228e+00, 1.36065228e+00, 1.36065228e+00, 1.36065228e+00,
1.36330406e+00, 1.36330406e+00, 1.36330406e+00, 1.36330406e+00,
1.36377802e+00, 1.36377802e+00, 1.36377802e+00, 1.36377802e+00,
1.36346214e+00, 1.36346214e+00, 1.36346214e+00, 1.36346214e+00,
1.36300839e+00, 1.36300839e+00, 1.36300839e+00, 1.36300839e+00,
1.36262613e+00, 1.36262613e+00, 1.36262613e+00, 1.36262613e+00,
1.36234022e+00, 1.36234022e+00, 1.36234022e+00, 1.36234022e+00,
1.36212440e+00, 1.36212440e+00, 1.36212440e+00, 1.36212440e+00,
1.36194570e+00, 1.36194570e+00, 1.36194570e+00, 1.36194570e+00,
1.36176870e+00, 1.36176870e+00, 1.36176870e+00, 1.36176870e+00,
1.36154433e+00, 1.36154433e+00, 1.36154433e+00, 1.36154433e+00,
1.36118699e+00, 1.36118699e+00, 1.36118699e+00, 1.36118699e+00,
1.36053007e+00, 1.36053007e+00, 1.36053007e+00, 1.36053007e+00,
1.35923531e+00, 1.35923531e+00, 1.35923531e+00, 1.35923531e+00,
1.35660636e+00, 1.35660636e+00, 1.35660636e+00, 1.35660636e+00,
1.35121276e+00, 1.35121276e+00, 1.35121276e+00, 1.35121276e+00,
1.34015167e+00, 1.34015167e+00, 1.34015167e+00, 1.34015167e+00,
1.31767491e+00, 1.31767491e+00, 1.31767491e+00, 1.31767491e+00,
1.27285288e+00, 1.27285288e+00, 1.27285288e+00, 1.27285288e+00,
1.18653029e+00, 1.18653029e+00, 1.18653029e+00, 1.18653029e+00,
1.03082789e+00, 1.03082789e+00, 1.03082789e+00, 1.03082789e+00,
7.82059657e-01, 7.82059657e-01, 7.82059657e-01, 7.82059657e-01,
4.62795165e-01, 4.62795165e-01, 4.62795165e-01, 4.62795165e-01,
1.85035678e-01, 1.85035678e-01, 1.85035678e-01, 1.85035678e-01,
4.91064989e-02, 4.91064989e-02, 4.91064989e-02, 4.91064989e-02,
1.04300500e-02, 1.04300500e-02, 1.04300500e-02, 1.04300500e-02,
2.06834747e-03, 2.06834747e-03, 2.06834747e-03, 2.06834747e-03,
4.02159204e-04, 4.02159204e-04, 4.02159204e-04, 4.02159204e-04,
7.74241901e-05, 7.74241901e-05, 7.74241901e-05, 7.74241901e-05,
1.47732907e-05, 1.47732907e-05, 1.47732907e-05, 1.47732907e-05,
2.79133251e-06, 2.79133251e-06, 2.79133251e-06, 2.79133251e-06,
5.21558611e-07, 5.21558611e-07, 5.21558611e-07, 5.21558611e-07,
9.62314180e-08, 9.62314180e-08, 9.62314180e-08, 9.62314180e-08,
1.75063215e-08, 1.75063215e-08, 1.75063215e-08, 1.75063215e-08,
3.13525934e-09, 3.13525934e-09, 3.13525934e-09, 3.13525934e-09,
5.51945459e-10, 5.51945459e-10, 5.51945459e-10, 5.51945459e-10,
9.53728523e-11, 9.53728523e-11, 9.53728523e-11]), 'P': array([0.9999998 , 0.9999998 , 0.9999998 , 0.9999998 , 0.99999919,
0.99999919, 0.99999919, 0.99999919, 0.99999689, 0.99999689,
0.99999689, 0.99999689, 0.99998882, 0.99998882, 0.99998882,
0.99998882, 0.99996242, 0.99996242, 0.99996242, 0.99996242,
0.99988243, 0.99988243, 0.99988243, 0.99988243, 0.99965888,
0.99965888, 0.99965888, 0.99965888, 0.99908571, 0.99908571,
0.99908571, 0.99908571, 0.99774515, 0.99774515, 0.99774515,
0.99774515, 0.99490042, 0.99490042, 0.99490042, 0.99490042,
0.98944596, 0.98944596, 0.98944596, 0.98944596, 0.98001064,
0.98001064, 0.98001064, 0.98001064, 0.96525111, 0.96525111,
0.96525111, 0.96525111, 0.94423203, 0.94423203, 0.94423203,
0.94423203, 0.91669404, 0.91669404, 0.91669404, 0.91669404,
0.88307786, 0.88307786, 0.88307786, 0.88307786, 0.84433672,
0.84433672, 0.84433672, 0.84433672, 0.80166635, 0.80166635,
0.80166635, 0.80166635, 0.75625152, 0.75625152, 0.75625152,
0.75625152, 0.70899078, 0.70899078, 0.70899078, 0.70899078,
0.65951543, 0.65951543, 0.65951543, 0.65951543, 0.58481452,
0.58481452, 0.58481452, 0.58481452, 0.5433517 , 0.5433517 ,
0.5433517 , 0.5433517 , 0.51442502, 0.51442502, 0.51442502,
0.51442502, 0.49348741, 0.49348741, 0.49348741, 0.49348741,
0.47926376, 0.47926376, 0.47926376, 0.47926376, 0.4706976 ,
0.4706976 , 0.4706976 , 0.4706976 , 0.46639387, 0.46639387,
0.46639387, 0.46639387, 0.46477369, 0.46477369, 0.46477369,
0.46477369, 0.46449143, 0.46449143, 0.46449143, 0.46449143,
0.46469357, 0.46469357, 0.46469357, 0.46469357, 0.46498071,
0.46498071, 0.46498071, 0.46498071, 0.46522404, 0.46522404,
0.46522404, 0.46522404, 0.46540634, 0.46540634, 0.46540634,
0.46540634, 0.46553884, 0.46553884, 0.46553884, 0.46553884,
0.46563123, 0.46563123, 0.46563123, 0.46563123, 0.46568376,
0.46568376, 0.46568376, 0.46568376, 0.46568347, 0.46568347,
0.46568347, 0.46568347, 0.46559619, 0.46559619, 0.46559619,
0.46559619, 0.46534764, 0.46534764, 0.46534764, 0.46534764,
0.46478249, 0.46478249, 0.46478249, 0.46478249, 0.46357931,
0.46357931, 0.46357931, 0.46357931, 0.46108012, 0.46108012,
0.46108012, 0.46108012, 0.4559703 , 0.4559703 , 0.4559703 ,
0.4559703 , 0.44573327, 0.44573327, 0.44573327, 0.44573327,
0.42592481, 0.42592481, 0.42592481, 0.42592481, 0.38995176,
0.38995176, 0.38995176, 0.38995176, 0.33171722, 0.33171722,
0.33171722, 0.33171722, 0.25409808, 0.25409808, 0.25409808,
0.25409808, 0.1771826 , 0.1771826 , 0.1771826 , 0.1771826 ,
0.126735 , 0.126735 , 0.126735 , 0.126735 , 0.10663112,
0.10663112, 0.10663112, 0.10663112, 0.10138491, 0.10138491,
0.10138491, 0.10138491, 0.1002738 , 0.1002738 , 0.1002738 ,
0.1002738 , 0.10005321, 0.10005321, 0.10005321, 0.10005321,
0.10001024, 0.10001024, 0.10001024, 0.10001024, 0.10000195,
0.10000195, 0.10000195, 0.10000195, 0.10000037, 0.10000037,
0.10000037, 0.10000037, 0.10000007, 0.10000007, 0.10000007,
0.10000007, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}], 'minmod_rusanov': [{'rho': array([0.99999871, 0.99999871, 0.99999871, 0.99999871, 0.99999661,
0.99999661, 0.99999661, 0.99999661, 0.99998966, 0.99998966,
0.99998966, 0.99998966, 0.99997049, 0.99997049, 0.99997049,
0.99997049, 0.99992058, 0.99992058, 0.99992058, 0.99992058,
0.99979749, 0.99979749, 0.99979749, 0.99979749, 0.99951129,
0.99951129, 0.99951129, 0.99951129, 0.99888599, 0.99888599,
0.99888599, 0.99888599, 0.9976064 , 0.9976064 , 0.9976064 ,
0.9976064 , 0.99516153, 0.99516153, 0.99516153, 0.99516153,
0.99081297, 0.99081297, 0.99081297, 0.99081297, 0.98362904,
0.98362904, 0.98362904, 0.98362904, 0.9726153 , 0.9726153 ,
0.9726153 , 0.9726153 , 0.95692666, 0.95692666, 0.95692666,
0.95692666, 0.93608458, 0.93608458, 0.93608458, 0.93608458,
0.91009674, 0.91009674, 0.91009674, 0.91009674, 0.87942017,
0.87942017, 0.87942017, 0.87942017, 0.84480243, 0.84480243,
0.84480243, 0.84480243, 0.80717174, 0.80717174, 0.80717174,
0.80717174, 0.76833323, 0.76833323, 0.76833323, 0.76833323,
0.7317958 , 0.7317958 , 0.7317958 , 0.7317958 , 0.69866292,
0.69866292, 0.69866292, 0.69866292, 0.66877266, 0.66877266,
0.66877266, 0.66877266, 0.64250712, 0.64250712, 0.64250712,
0.64250712, 0.62085534, 0.62085534, 0.62085534, 0.62085534,
0.60473075, 0.60473075, 0.60473075, 0.60473075, 0.59427383,
0.59427383, 0.59427383, 0.59427383, 0.58874167, 0.58874167,
0.58874167, 0.58874167, 0.58661231, 0.58661231, 0.58661231,
0.58661231, 0.58586097, 0.58586097, 0.58586097, 0.58586097,
0.58476947, 0.58476947, 0.58476947, 0.58476947, 0.58158321,
0.58158321, 0.58158321, 0.58158321, 0.57471343, 0.57471343,
0.57471343, 0.57471343, 0.56327381, 0.56327381, 0.56327381,
0.56327381, 0.54639053, 0.54639053, 0.54639053, 0.54639053,
0.52240684, 0.52240684, 0.52240684, 0.52240684, 0.48899281,
0.48899281, 0.48899281, 0.48899281, 0.4463966 , 0.4463966 ,
0.4463966 , 0.4463966 , 0.40411539, 0.40411539, 0.40411539,
0.40411539, 0.37294067, 0.37294067, 0.37294067, 0.37294067,
0.35182753, 0.35182753, 0.35182753, 0.35182753, 0.33895289,
0.33895289, 0.33895289, 0.33895289, 0.33221897, 0.33221897,
0.33221897, 0.33221897, 0.3294285 , 0.3294285 , 0.3294285 ,
0.3294285 , 0.32860094, 0.32860094, 0.32860094, 0.32860094,
0.32743466, 0.32743466, 0.32743466, 0.32743466, 0.31726988,
0.31726988, 0.31726988, 0.31726988, 0.27001934, 0.27001934,
0.27001934, 0.27001934, 0.17357126, 0.17357126, 0.17357126,
0.17357126, 0.13098555, 0.13098555, 0.13098555, 0.13098555,
0.12551968, 0.12551968, 0.12551968, 0.12551968, 0.12504027,
0.12504027, 0.12504027, 0.12504027, 0.12500303, 0.12500303,
0.12500303, 0.12500303, 0.12500023, 0.12500023, 0.12500023,
0.12500023, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50001531e-01, 7.50001531e-01, 7.50001531e-01, 7.50001531e-01,
7.50004007e-01, 7.50004007e-01, 7.50004007e-01, 7.50004007e-01,
7.50012237e-01, 7.50012237e-01, 7.50012237e-01, 7.50012237e-01,
7.50034917e-01, 7.50034917e-01, 7.50034917e-01, 7.50034917e-01,
7.50093968e-01, 7.50093968e-01, 7.50093968e-01, 7.50093968e-01,
7.50239615e-01, 7.50239615e-01, 7.50239615e-01, 7.50239615e-01,
7.50578307e-01, 7.50578307e-01, 7.50578307e-01, 7.50578307e-01,
7.51318450e-01, 7.51318450e-01, 7.51318450e-01, 7.51318450e-01,
7.52833953e-01, 7.52833953e-01, 7.52833953e-01, 7.52833953e-01,
7.55733191e-01, 7.55733191e-01, 7.55733191e-01, 7.55733191e-01,
7.60902495e-01, 7.60902495e-01, 7.60902495e-01, 7.60902495e-01,
7.69479672e-01, 7.69479672e-01, 7.69479672e-01, 7.69479672e-01,
7.82724068e-01, 7.82724068e-01, 7.82724068e-01, 7.82724068e-01,
8.01796569e-01, 8.01796569e-01, 8.01796569e-01, 8.01796569e-01,
8.27525186e-01, 8.27525186e-01, 8.27525186e-01, 8.27525186e-01,
8.60261011e-01, 8.60261011e-01, 8.60261011e-01, 8.60261011e-01,
8.99894497e-01, 8.99894497e-01, 8.99894497e-01, 8.99894497e-01,
9.46030525e-01, 9.46030525e-01, 9.46030525e-01, 9.46030525e-01,
9.98277447e-01, 9.98277447e-01, 9.98277447e-01, 9.98277447e-01,
1.05334834e+00, 1.05334834e+00, 1.05334834e+00, 1.05334834e+00,
1.10804511e+00, 1.10804511e+00, 1.10804511e+00, 1.10804511e+00,
1.15927234e+00, 1.15927234e+00, 1.15927234e+00, 1.15927234e+00,
1.20602476e+00, 1.20602476e+00, 1.20602476e+00, 1.20602476e+00,
1.24734222e+00, 1.24734222e+00, 1.24734222e+00, 1.24734222e+00,
1.28248845e+00, 1.28248845e+00, 1.28248845e+00, 1.28248845e+00,
1.31052537e+00, 1.31052537e+00, 1.31052537e+00, 1.31052537e+00,
1.33076480e+00, 1.33076480e+00, 1.33076480e+00, 1.33076480e+00,
1.34415463e+00, 1.34415463e+00, 1.34415463e+00, 1.34415463e+00,
1.35305806e+00, 1.35305806e+00, 1.35305806e+00, 1.35305806e+00,
1.35894065e+00, 1.35894065e+00, 1.35894065e+00, 1.35894065e+00,
1.36185203e+00, 1.36185203e+00, 1.36185203e+00, 1.36185203e+00,
1.36239557e+00, 1.36239557e+00, 1.36239557e+00, 1.36239557e+00,
1.36215707e+00, 1.36215707e+00, 1.36215707e+00, 1.36215707e+00,
1.36194266e+00, 1.36194266e+00, 1.36194266e+00, 1.36194266e+00,
1.36206937e+00, 1.36206937e+00, 1.36206937e+00, 1.36206937e+00,
1.36246607e+00, 1.36246607e+00, 1.36246607e+00, 1.36246607e+00,
1.36297688e+00, 1.36297688e+00, 1.36297688e+00, 1.36297688e+00,
1.36312897e+00, 1.36312897e+00, 1.36312897e+00, 1.36312897e+00,
1.36298101e+00, 1.36298101e+00, 1.36298101e+00, 1.36298101e+00,
1.36246641e+00, 1.36246641e+00, 1.36246641e+00, 1.36246641e+00,
1.36157437e+00, 1.36157437e+00, 1.36157437e+00, 1.36157437e+00,
1.36070130e+00, 1.36070130e+00, 1.36070130e+00, 1.36070130e+00,
1.36003987e+00, 1.36003987e+00, 1.36003987e+00, 1.36003987e+00,
1.35919056e+00, 1.35919056e+00, 1.35919056e+00, 1.35919056e+00,
1.35638143e+00, 1.35638143e+00, 1.35638143e+00, 1.35638143e+00,
1.34281703e+00, 1.34281703e+00, 1.34281703e+00, 1.34281703e+00,
1.28083198e+00, 1.28083198e+00, 1.28083198e+00, 1.28083198e+00,
1.03437248e+00, 1.03437248e+00, 1.03437248e+00, 1.03437248e+00,
4.39845204e-01, 4.39845204e-01, 4.39845204e-01, 4.39845204e-01,
5.63702448e-02, 5.63702448e-02, 5.63702448e-02, 5.63702448e-02,
4.56728510e-03, 4.56728510e-03, 4.56728510e-03, 4.56728510e-03,
3.44109702e-04, 3.44109702e-04, 3.44109702e-04, 3.44109702e-04,
2.57117118e-05, 2.57117118e-05, 2.57117118e-05, 2.57117118e-05,
1.91493931e-06, 1.91493931e-06, 1.91493931e-06, 1.91493931e-06,
1.42183400e-07, 1.42183400e-07, 1.42183400e-07, 1.42183400e-07,
1.05285748e-08, 1.05285748e-08, 1.05285748e-08, 1.05285748e-08,
7.77701570e-10, 7.77701570e-10, 7.77701570e-10, 7.77701570e-10,
5.73011541e-11, 5.73011541e-11, 5.73011541e-11, 5.73011541e-11,
4.21117928e-12, 4.21117928e-12, 4.21117928e-12, 4.21117928e-12,
3.08654210e-13, 3.08654210e-13, 3.08654210e-13, 3.08654210e-13,
2.24724643e-14, 2.24724643e-14, 2.24724643e-14, 2.24724643e-14,
1.61702291e-15, 1.61702291e-15, 1.61702291e-15, 1.61702291e-15,
1.02454347e-16, 1.02454347e-16, 1.02454347e-16, 1.02454347e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([0.99999819, 0.99999819, 0.99999819, 0.99999819, 0.99999526,
0.99999526, 0.99999526, 0.99999526, 0.99998552, 0.99998552,
0.99998552, 0.99998552, 0.99995869, 0.99995869, 0.99995869,
0.99995869, 0.99988882, 0.99988882, 0.99988882, 0.99988882,
0.99971652, 0.99971652, 0.99971652, 0.99971652, 0.99931595,
0.99931595, 0.99931595, 0.99931595, 0.9984411 , 0.9984411 ,
0.9984411 , 0.9984411 , 0.99665195, 0.99665195, 0.99665195,
0.99665195, 0.99323734, 0.99323734, 0.99323734, 0.99323734,
0.98717551, 0.98717551, 0.98717551, 0.98717551, 0.97719106,
0.97719106, 0.97719106, 0.97719106, 0.96195133, 0.96195133,
0.96195133, 0.96195133, 0.94037646, 0.94037646, 0.94037646,
0.94037646, 0.91194761, 0.91194761, 0.91194761, 0.91194761,
0.87686269, 0.87686269, 0.87686269, 0.87686269, 0.83595614,
0.83595614, 0.83595614, 0.83595614, 0.79042203, 0.79042203,
0.79042203, 0.79042203, 0.74145147, 0.74145147, 0.74145147,
0.74145147, 0.69147779, 0.69147779, 0.69147779, 0.69147779,
0.64572403, 0.64572403, 0.64572403, 0.64572403, 0.60528213,
0.60528213, 0.60528213, 0.60528213, 0.57010763, 0.57010763,
0.57010763, 0.57010763, 0.5404967 , 0.5404967 , 0.5404967 ,
0.5404967 , 0.51678706, 0.51678706, 0.51678706, 0.51678706,
0.49867658, 0.49867658, 0.49867658, 0.49867658, 0.4853026 ,
0.4853026 , 0.4853026 , 0.4853026 , 0.47607786, 0.47607786,
0.47607786, 0.47607786, 0.47071083, 0.47071083, 0.47071083,
0.47071083, 0.46816931, 0.46816931, 0.46816931, 0.46816931,
0.46677659, 0.46677659, 0.46677659, 0.46677659, 0.46558153,
0.46558153, 0.46558153, 0.46558153, 0.4647659 , 0.4647659 ,
0.4647659 , 0.4647659 , 0.46441055, 0.46441055, 0.46441055,
0.46441055, 0.46437878, 0.46437878, 0.46437878, 0.46437878,
0.46459568, 0.46459568, 0.46459568, 0.46459568, 0.46499426,
0.46499426, 0.46499426, 0.46499426, 0.46520033, 0.46520033,
0.46520033, 0.46520033, 0.46528777, 0.46528777, 0.46528777,
0.46528777, 0.46526662, 0.46526662, 0.46526662, 0.46526662,
0.46508061, 0.46508061, 0.46508061, 0.46508061, 0.4649127 ,
0.4649127 , 0.4649127 , 0.4649127 , 0.46486127, 0.46486127,
0.46486127, 0.46486127, 0.4647071 , 0.4647071 , 0.4647071 ,
0.4647071 , 0.46356721, 0.46356721, 0.46356721, 0.46356721,
0.45731151, 0.45731151, 0.45731151, 0.45731151, 0.42928346,
0.42928346, 0.42928346, 0.42928346, 0.33578024, 0.33578024,
0.33578024, 0.33578024, 0.17249402, 0.17249402, 0.17249402,
0.17249402, 0.10769716, 0.10769716, 0.10769716, 0.10769716,
0.10060508, 0.10060508, 0.10060508, 0.10060508, 0.10004552,
0.10004552, 0.10004552, 0.10004552, 0.1000034 , 0.1000034 ,
0.1000034 , 0.1000034 , 0.10000025, 0.10000025, 0.10000025,
0.10000025, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}], 'minmod_hll': [{'rho': array([1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125]), 'vx': array([0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. ]), 'P': array([1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999477, 0.99999477,
0.99999477, 0.99999477, 0.99786485, 0.99786485, 0.99786485,
0.99786485, 0.93485786, 0.93485786, 0.93485786, 0.93485786,
0.40121931, 0.40121931, 0.40121931, 0.40121931, 0.15582104,
0.15582104, 0.15582104, 0.15582104, 0.12524217, 0.12524217,
0.12524217, 0.12524217, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75000582, 0.75000582,
0.75000582, 0.75000582, 0.75222331, 0.75222331, 0.75222331,
0.75222331, 0.81126632, 0.81126632, 0.81126632, 0.81126632,
1.02140027, 1.02140027, 1.02140027, 1.02140027, 0.31355893,
0.31355893, 0.31355893, 0.31355893, 0.0023764 , 0.0023764 ,
0.0023764 , 0.0023764 , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999312, 0.99999312,
0.99999312, 0.99999312, 0.99735755, 0.99735755, 0.99735755,
0.99735755, 0.93228381, 0.93228381, 0.93228381, 0.93228381,
0.39392227, 0.39392227, 0.39392227, 0.39392227, 0.14137148,
0.14137148, 0.14137148, 0.14137148, 0.1003091 , 0.1003091 ,
0.1003091 , 0.1003091 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999593,
0.99999593, 0.99999593, 0.99999593, 0.99976514, 0.99976514,
0.99976514, 0.99976514, 0.99350557, 0.99350557, 0.99350557,
0.99350557, 0.91229178, 0.91229178, 0.91229178, 0.91229178,
0.5439655 , 0.5439655 , 0.5439655 , 0.5439655 , 0.26096859,
0.26096859, 0.26096859, 0.26096859, 0.14372642, 0.14372642,
0.14372642, 0.14372642, 0.12576866, 0.12576866, 0.12576866,
0.12576866, 0.12501238, 0.12501238, 0.12501238, 0.12501238,
0.12500005, 0.12500005, 0.12500005, 0.12500005, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000034e-01, 7.50000034e-01, 7.50000034e-01, 7.50000034e-01,
7.50004712e-01, 7.50004712e-01, 7.50004712e-01, 7.50004712e-01,
7.50264827e-01, 7.50264827e-01, 7.50264827e-01, 7.50264827e-01,
7.56937682e-01, 7.56937682e-01, 7.56937682e-01, 7.56937682e-01,
8.39140555e-01, 8.39140555e-01, 8.39140555e-01, 8.39140555e-01,
1.20185078e+00, 1.20185078e+00, 1.20185078e+00, 1.20185078e+00,
9.09724624e-01, 9.09724624e-01, 9.09724624e-01, 9.09724624e-01,
1.82774882e-01, 1.82774882e-01, 1.82774882e-01, 1.82774882e-01,
7.06720021e-03, 7.06720021e-03, 7.06720021e-03, 7.06720021e-03,
1.07910808e-04, 1.07910808e-04, 1.07910808e-04, 1.07910808e-04,
4.52081665e-07, 4.52081665e-07, 4.52081665e-07, 4.52081665e-07,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999442,
0.99999442, 0.99999442, 0.99999442, 0.99968659, 0.99968659,
0.99968659, 0.99968659, 0.99178136, 0.99178136, 0.99178136,
0.99178136, 0.89903919, 0.89903919, 0.89903919, 0.89903919,
0.51770741, 0.51770741, 0.51770741, 0.51770741, 0.2728004 ,
0.2728004 , 0.2728004 , 0.2728004 , 0.12535917, 0.12535917,
0.12535917, 0.12535917, 0.10093445, 0.10093445, 0.10093445,
0.10093445, 0.10001427, 0.10001427, 0.10001427, 0.10001427,
0.10000006, 0.10000006, 0.10000006, 0.10000006, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999923, 0.99999923, 0.99999923, 0.99999923, 0.99996861,
0.99996861, 0.99996861, 0.99996861, 0.99921031, 0.99921031,
0.99921031, 0.99921031, 0.98796713, 0.98796713, 0.98796713,
0.98796713, 0.89633843, 0.89633843, 0.89633843, 0.89633843,
0.62495402, 0.62495402, 0.62495402, 0.62495402, 0.36745601,
0.36745601, 0.36745601, 0.36745601, 0.20859145, 0.20859145,
0.20859145, 0.20859145, 0.13495091, 0.13495091, 0.13495091,
0.13495091, 0.12554615, 0.12554615, 0.12554615, 0.12554615,
0.12501743, 0.12501743, 0.12501743, 0.12501743, 0.12500034,
0.12500034, 0.12500034, 0.12500034, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
7.50000909e-01, 7.50000909e-01, 7.50000909e-01, 7.50000909e-01,
7.50036531e-01, 7.50036531e-01, 7.50036531e-01, 7.50036531e-01,
7.50902656e-01, 7.50902656e-01, 7.50902656e-01, 7.50902656e-01,
7.63307867e-01, 7.63307867e-01, 7.63307867e-01, 7.63307867e-01,
8.65269104e-01, 8.65269104e-01, 8.65269104e-01, 8.65269104e-01,
1.24045354e+00, 1.24045354e+00, 1.24045354e+00, 1.24045354e+00,
1.21114735e+00, 1.21114735e+00, 1.21114735e+00, 1.21114735e+00,
6.72413161e-01, 6.72413161e-01, 6.72413161e-01, 6.72413161e-01,
9.49710351e-02, 9.49710351e-02, 9.49710351e-02, 9.49710351e-02,
4.89829591e-03, 4.89829591e-03, 4.89829591e-03, 4.89829591e-03,
1.50276620e-04, 1.50276620e-04, 1.50276620e-04, 1.50276620e-04,
2.85787671e-06, 2.85787671e-06, 2.85787671e-06, 2.85787671e-06,
2.86001060e-08, 2.86001060e-08, 2.86001060e-08, 2.86001060e-08,
9.82632001e-11, 9.82632001e-11, 9.82632001e-11, 9.82632001e-11,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99995678,
0.99995678, 0.99995678, 0.99995678, 0.99893195, 0.99893195,
0.99893195, 0.99893195, 0.98431021, 0.98431021, 0.98431021,
0.98431021, 0.87225606, 0.87225606, 0.87225606, 0.87225606,
0.57198082, 0.57198082, 0.57198082, 0.57198082, 0.38708981,
0.38708981, 0.38708981, 0.38708981, 0.2169621 , 0.2169621 ,
0.2169621 , 0.2169621 , 0.11307803, 0.11307803, 0.11307803,
0.11307803, 0.10064828, 0.10064828, 0.10064828, 0.10064828,
0.10001988, 0.10001988, 0.10001988, 0.10001988, 0.10000038,
0.10000038, 0.10000038, 0.10000038, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999553, 0.99999553, 0.99999553, 0.99999553, 0.99989298,
0.99989298, 0.99989298, 0.99989298, 0.99825442, 0.99825442,
0.99825442, 0.99825442, 0.98154523, 0.98154523, 0.98154523,
0.98154523, 0.88346323, 0.88346323, 0.88346323, 0.88346323,
0.66814286, 0.66814286, 0.66814286, 0.66814286, 0.450449 ,
0.450449 , 0.450449 , 0.450449 , 0.30003012, 0.30003012,
0.30003012, 0.30003012, 0.17291515, 0.17291515, 0.17291515,
0.17291515, 0.12999501, 0.12999501, 0.12999501, 0.12999501,
0.12530317, 0.12530317, 0.12530317, 0.12530317, 0.12501302,
0.12501302, 0.12501302, 0.12501302, 0.1250004 , 0.1250004 ,
0.1250004 , 0.1250004 , 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
7.50005260e-01, 7.50005260e-01, 7.50005260e-01, 7.50005260e-01,
7.50125177e-01, 7.50125177e-01, 7.50125177e-01, 7.50125177e-01,
7.52016532e-01, 7.52016532e-01, 7.52016532e-01, 7.52016532e-01,
7.70955544e-01, 7.70955544e-01, 7.70955544e-01, 7.70955544e-01,
8.87963066e-01, 8.87963066e-01, 8.87963066e-01, 8.87963066e-01,
1.23600978e+00, 1.23600978e+00, 1.23600978e+00, 1.23600978e+00,
1.32985101e+00, 1.32985101e+00, 1.32985101e+00, 1.32985101e+00,
1.08018999e+00, 1.08018999e+00, 1.08018999e+00, 1.08018999e+00,
4.31751162e-01, 4.31751162e-01, 4.31751162e-01, 4.31751162e-01,
4.67980493e-02, 4.67980493e-02, 4.67980493e-02, 4.67980493e-02,
2.66505147e-03, 2.66505147e-03, 2.66505147e-03, 2.66505147e-03,
1.11496365e-04, 1.11496365e-04, 1.11496365e-04, 1.11496365e-04,
3.41260935e-06, 3.41260935e-06, 3.41260935e-06, 3.41260935e-06,
7.27672658e-08, 7.27672658e-08, 7.27672658e-08, 7.27672658e-08,
1.00397593e-09, 1.00397593e-09, 1.00397593e-09, 1.00397593e-09,
7.70528135e-12, 7.70528135e-12, 7.70528135e-12, 7.70528135e-12,
2.25884809e-14, 2.25884809e-14, 2.25884809e-14, 2.25884809e-14,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999982, 0.99999982, 0.99999982, 0.99999982,
0.99999378, 0.99999378, 0.99999378, 0.99999378, 0.99985189,
0.99985189, 0.99985189, 0.99985189, 0.99761523, 0.99761523,
0.99761523, 0.99761523, 0.97543178, 0.97543178, 0.97543178,
0.97543178, 0.85010187, 0.85010187, 0.85010187, 0.85010187,
0.59115606, 0.59115606, 0.59115606, 0.59115606, 0.45201122,
0.45201122, 0.45201122, 0.45201122, 0.33798169, 0.33798169,
0.33798169, 0.33798169, 0.16975198, 0.16975198, 0.16975198,
0.16975198, 0.10631224, 0.10631224, 0.10631224, 0.10631224,
0.10035268, 0.10035268, 0.10035268, 0.10035268, 0.10001475,
0.10001475, 0.10001475, 0.10001475, 0.10000045, 0.10000045,
0.10000045, 0.10000045, 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999934, 0.99999934, 0.99999934, 0.99999934,
0.99998473, 0.99998473, 0.99998473, 0.99998473, 0.99973934,
0.99973934, 0.99973934, 0.99973934, 0.99684694, 0.99684694,
0.99684694, 0.99684694, 0.97449508, 0.97449508, 0.97449508,
0.97449508, 0.87259818, 0.87259818, 0.87259818, 0.87259818,
0.6864975 , 0.6864975 , 0.6864975 , 0.6864975 , 0.51289402,
0.51289402, 0.51289402, 0.51289402, 0.38247596, 0.38247596,
0.38247596, 0.38247596, 0.24627862, 0.24627862, 0.24627862,
0.24627862, 0.1506058 , 0.1506058 , 0.1506058 , 0.1506058 ,
0.12742094, 0.12742094, 0.12742094, 0.12742094, 0.12515547,
0.12515547, 0.12515547, 0.12515547, 0.12500778, 0.12500778,
0.12500778, 0.12500778, 0.12500031, 0.12500031, 0.12500031,
0.12500031, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
7.50000776e-01, 7.50000776e-01, 7.50000776e-01, 7.50000776e-01,
7.50017997e-01, 7.50017997e-01, 7.50017997e-01, 7.50017997e-01,
7.50305930e-01, 7.50305930e-01, 7.50305930e-01, 7.50305930e-01,
7.53669775e-01, 7.53669775e-01, 7.53669775e-01, 7.53669775e-01,
7.79517872e-01, 7.79517872e-01, 7.79517872e-01, 7.79517872e-01,
9.06676406e-01, 9.06676406e-01, 9.06676406e-01, 9.06676406e-01,
1.21521648e+00, 1.21521648e+00, 1.21521648e+00, 1.21521648e+00,
1.36901918e+00, 1.36901918e+00, 1.36901918e+00, 1.36901918e+00,
1.27921096e+00, 1.27921096e+00, 1.27921096e+00, 1.27921096e+00,
9.03289139e-01, 9.03289139e-01, 9.03289139e-01, 9.03289139e-01,
2.43356441e-01, 2.43356441e-01, 2.43356441e-01, 2.43356441e-01,
2.21897389e-02, 2.21897389e-02, 2.21897389e-02, 2.21897389e-02,
1.34917711e-03, 1.34917711e-03, 1.34917711e-03, 1.34917711e-03,
6.63347975e-05, 6.63347975e-05, 6.63347975e-05, 6.63347975e-05,
2.61791335e-06, 2.61791335e-06, 2.61791335e-06, 2.61791335e-06,
8.01915979e-08, 8.01915979e-08, 8.01915979e-08, 8.01915979e-08,
1.84159266e-09, 1.84159266e-09, 1.84159266e-09, 1.84159266e-09,
3.02840362e-11, 3.02840362e-11, 3.02840362e-11, 3.02840362e-11,
3.31059514e-13, 3.31059514e-13, 3.31059514e-13, 3.31059514e-13,
2.11159390e-15, 2.11159390e-15, 2.11159390e-15, 2.11159390e-15,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999908, 0.99999908, 0.99999908, 0.99999908,
0.99997871, 0.99997871, 0.99997871, 0.99997871, 0.99963804,
0.99963804, 0.99963804, 0.99963804, 0.99566401, 0.99566401,
0.99566401, 0.99566401, 0.96560299, 0.96560299, 0.96560299,
0.96560299, 0.8320416 , 0.8320416 , 0.8320416 , 0.8320416 ,
0.59163041, 0.59163041, 0.59163041, 0.59163041, 0.48324232,
0.48324232, 0.48324232, 0.48324232, 0.4189936 , 0.4189936 ,
0.4189936 , 0.4189936 , 0.28887293, 0.28887293, 0.28887293,
0.28887293, 0.13630773, 0.13630773, 0.13630773, 0.13630773,
0.1029605 , 0.1029605 , 0.1029605 , 0.1029605 , 0.10017852,
0.10017852, 0.10017852, 0.10017852, 0.10000878, 0.10000878,
0.10000878, 0.10000878, 0.10000035, 0.10000035, 0.10000035,
0.10000035, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999776, 0.99999776, 0.99999776, 0.99999776,
0.99996053, 0.99996053, 0.99996053, 0.99996053, 0.99947569,
0.99947569, 0.99947569, 0.99947569, 0.99496288, 0.99496288,
0.99496288, 0.99496288, 0.96703059, 0.96703059, 0.96703059,
0.96703059, 0.86276573, 0.86276573, 0.86276573, 0.86276573,
0.69336478, 0.69336478, 0.69336478, 0.69336478, 0.55587482,
0.55587482, 0.55587482, 0.55587482, 0.44582134, 0.44582134,
0.44582134, 0.44582134, 0.32572207, 0.32572207, 0.32572207,
0.32572207, 0.20563197, 0.20563197, 0.20563197, 0.20563197,
0.13815838, 0.13815838, 0.13815838, 0.13815838, 0.12615318,
0.12615318, 0.12615318, 0.12615318, 0.12507598, 0.12507598,
0.12507598, 0.12507598, 0.1250042 , 0.1250042 , 0.1250042 ,
0.1250042 , 0.12500019, 0.12500019, 0.12500019, 0.12500019,
0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
7.50000116e-01, 7.50000116e-01, 7.50000116e-01, 7.50000116e-01,
7.50002645e-01, 7.50002645e-01, 7.50002645e-01, 7.50002645e-01,
7.50046576e-01, 7.50046576e-01, 7.50046576e-01, 7.50046576e-01,
7.50616761e-01, 7.50616761e-01, 7.50616761e-01, 7.50616761e-01,
7.55893760e-01, 7.55893760e-01, 7.55893760e-01, 7.55893760e-01,
7.88691015e-01, 7.88691015e-01, 7.88691015e-01, 7.88691015e-01,
9.22508524e-01, 9.22508524e-01, 9.22508524e-01, 9.22508524e-01,
1.19424995e+00, 1.19424995e+00, 1.19424995e+00, 1.19424995e+00,
1.37115296e+00, 1.37115296e+00, 1.37115296e+00, 1.37115296e+00,
1.35656186e+00, 1.35656186e+00, 1.35656186e+00, 1.35656186e+00,
1.19624538e+00, 1.19624538e+00, 1.19624538e+00, 1.19624538e+00,
6.97637293e-01, 6.97637293e-01, 6.97637293e-01, 6.97637293e-01,
1.27100170e-01, 1.27100170e-01, 1.27100170e-01, 1.27100170e-01,
1.03412299e-02, 1.03412299e-02, 1.03412299e-02, 1.03412299e-02,
6.53644299e-04, 6.53644299e-04, 6.53644299e-04, 6.53644299e-04,
3.56971103e-05, 3.56971103e-05, 3.56971103e-05, 3.56971103e-05,
1.64522459e-06, 1.64522459e-06, 1.64522459e-06, 1.64522459e-06,
6.25358486e-08, 6.25358486e-08, 6.25358486e-08, 6.25358486e-08,
1.91748504e-09, 1.91748504e-09, 1.91748504e-09, 1.91748504e-09,
4.62606839e-11, 4.62606839e-11, 4.62606839e-11, 4.62606839e-11,
8.51285413e-13, 8.51285413e-13, 8.51285413e-13, 8.51285413e-13,
1.14285693e-14, 1.14285693e-14, 1.14285693e-14, 1.14285693e-14,
9.19950648e-17, 9.19950648e-17, 9.19950648e-17, 9.19950648e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999687, 0.99999687, 0.99999687, 0.99999687,
0.99994489, 0.99994489, 0.99994489, 0.99994489, 0.99927039,
0.99927039, 0.99927039, 0.99927039, 0.99304531, 0.99304531,
0.99304531, 0.99304531, 0.95519679, 0.95519679, 0.95519679,
0.95519679, 0.8168341 , 0.8168341 , 0.8168341 , 0.8168341 ,
0.58819152, 0.58819152, 0.58819152, 0.58819152, 0.49438551,
0.49438551, 0.49438551, 0.49438551, 0.45793166, 0.45793166,
0.45793166, 0.45793166, 0.39260514, 0.39260514, 0.39260514,
0.39260514, 0.23309146, 0.23309146, 0.23309146, 0.23309146,
0.11798708, 0.11798708, 0.11798708, 0.11798708, 0.1013727 ,
0.1013727 , 0.1013727 , 0.1013727 , 0.10008648, 0.10008648,
0.10008648, 0.10008648, 0.10000472, 0.10000472, 0.10000472,
0.10000472, 0.10000022, 0.10000022, 0.10000022, 0.10000022,
0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999967, 0.99999967, 0.99999967,
0.99999967, 0.99999397, 0.99999397, 0.99999397, 0.99999397,
0.99991437, 0.99991437, 0.99991437, 0.99991437, 0.99906962,
0.99906962, 0.99906962, 0.99906962, 0.992598 , 0.992598 ,
0.992598 , 0.992598 , 0.95931079, 0.95931079, 0.95931079,
0.95931079, 0.85365694, 0.85365694, 0.85365694, 0.85365694,
0.69548058, 0.69548058, 0.69548058, 0.69548058, 0.5842581 ,
0.5842581 , 0.5842581 , 0.5842581 , 0.49197492, 0.49197492,
0.49197492, 0.49197492, 0.39210102, 0.39210102, 0.39210102,
0.39210102, 0.27877468, 0.27877468, 0.27877468, 0.27877468,
0.17568186, 0.17568186, 0.17568186, 0.17568186, 0.1316077 ,
0.1316077 , 0.1316077 , 0.1316077 , 0.12553921, 0.12553921,
0.12553921, 0.12553921, 0.12503633, 0.12503633, 0.12503633,
0.12503633, 0.12500214, 0.12500214, 0.12500214, 0.12500214,
0.12500011, 0.12500011, 0.12500011, 0.12500011, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000018e-01, 7.50000018e-01, 7.50000018e-01, 7.50000018e-01,
7.50000395e-01, 7.50000395e-01, 7.50000395e-01, 7.50000395e-01,
7.50007125e-01, 7.50007125e-01, 7.50007125e-01, 7.50007125e-01,
7.50101120e-01, 7.50101120e-01, 7.50101120e-01, 7.50101120e-01,
7.51096094e-01, 7.51096094e-01, 7.51096094e-01, 7.51096094e-01,
7.58695376e-01, 7.58695376e-01, 7.58695376e-01, 7.58695376e-01,
7.98253123e-01, 7.98253123e-01, 7.98253123e-01, 7.98253123e-01,
9.36217768e-01, 9.36217768e-01, 9.36217768e-01, 9.36217768e-01,
1.17874930e+00, 1.17874930e+00, 1.17874930e+00, 1.17874930e+00,
1.35926058e+00, 1.35926058e+00, 1.35926058e+00, 1.35926058e+00,
1.37992227e+00, 1.37992227e+00, 1.37992227e+00, 1.37992227e+00,
1.31852830e+00, 1.31852830e+00, 1.31852830e+00, 1.31852830e+00,
1.09147080e+00, 1.09147080e+00, 1.09147080e+00, 1.09147080e+00,
4.80823248e-01, 4.80823248e-01, 4.80823248e-01, 4.80823248e-01,
6.29020815e-02, 6.29020815e-02, 6.29020815e-02, 6.29020815e-02,
4.74941638e-03, 4.74941638e-03, 4.74941638e-03, 4.74941638e-03,
3.10811782e-04, 3.10811782e-04, 3.10811782e-04, 3.10811782e-04,
1.81866640e-05, 1.81866640e-05, 1.81866640e-05, 1.81866640e-05,
9.31308580e-07, 9.31308580e-07, 9.31308580e-07, 9.31308580e-07,
4.09103671e-08, 4.09103671e-08, 4.09103671e-08, 4.09103671e-08,
1.51483229e-09, 1.51483229e-09, 1.51483229e-09, 1.51483229e-09,
4.65132031e-11, 4.65132031e-11, 4.65132031e-11, 4.65132031e-11,
1.16294442e-12, 1.16294442e-12, 1.16294442e-12, 1.16294442e-12,
2.31530746e-14, 2.31530746e-14, 2.31530746e-14, 2.31530746e-14,
3.45133688e-16, 3.45133688e-16, 3.45133688e-16, 3.45133688e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999953, 0.99999953, 0.99999953,
0.99999953, 0.99999157, 0.99999157, 0.99999157, 0.99999157,
0.99988036, 0.99988036, 0.99988036, 0.99988036, 0.99870367,
0.99870367, 0.99870367, 0.99870367, 0.98975672, 0.98975672,
0.98975672, 0.98975672, 0.94447806, 0.94447806, 0.94447806,
0.94447806, 0.80372375, 0.80372375, 0.80372375, 0.80372375,
0.58659611, 0.58659611, 0.58659611, 0.58659611, 0.49630691,
0.49630691, 0.49630691, 0.49630691, 0.47256565, 0.47256565,
0.47256565, 0.47256565, 0.44649608, 0.44649608, 0.44649608,
0.44649608, 0.35475085, 0.35475085, 0.35475085, 0.35475085,
0.18206373, 0.18206373, 0.18206373, 0.18206373, 0.10858619,
0.10858619, 0.10858619, 0.10858619, 0.10062915, 0.10062915,
0.10062915, 0.10062915, 0.10004112, 0.10004112, 0.10004112,
0.10004112, 0.10000241, 0.10000241, 0.10000241, 0.10000241,
0.10000012, 0.10000012, 0.10000012, 0.10000012, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999907, 0.99999907, 0.99999907,
0.99999907, 0.99998617, 0.99998617, 0.99998617, 0.99998617,
0.99983554, 0.99983554, 0.99983554, 0.99983554, 0.9984902 ,
0.9984902 , 0.9984902 , 0.9984902 , 0.9897648 , 0.9897648 ,
0.9897648 , 0.9897648 , 0.95146278, 0.95146278, 0.95146278,
0.95146278, 0.84522655, 0.84522655, 0.84522655, 0.84522655,
0.69592792, 0.69592792, 0.69592792, 0.69592792, 0.60160526,
0.60160526, 0.60160526, 0.60160526, 0.52681117, 0.52681117,
0.52681117, 0.52681117, 0.44280683, 0.44280683, 0.44280683,
0.44280683, 0.3438762 , 0.3438762 , 0.3438762 , 0.3438762 ,
0.24139758, 0.24139758, 0.24139758, 0.24139758, 0.15433653,
0.15433653, 0.15433653, 0.15433653, 0.12820419, 0.12820419,
0.12820419, 0.12820419, 0.12525101, 0.12525101, 0.12525101,
0.12525101, 0.12501713, 0.12501713, 0.12501713, 0.12501713,
0.12500106, 0.12500106, 0.12500106, 0.12500106, 0.12500006,
0.12500006, 0.12500006, 0.12500006, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000060e-01, 7.50000060e-01, 7.50000060e-01, 7.50000060e-01,
7.50001095e-01, 7.50001095e-01, 7.50001095e-01, 7.50001095e-01,
7.50016352e-01, 7.50016352e-01, 7.50016352e-01, 7.50016352e-01,
7.50194298e-01, 7.50194298e-01, 7.50194298e-01, 7.50194298e-01,
7.51780598e-01, 7.51780598e-01, 7.51780598e-01, 7.51780598e-01,
7.62062621e-01, 7.62062621e-01, 7.62062621e-01, 7.62062621e-01,
8.08036385e-01, 8.08036385e-01, 8.08036385e-01, 8.08036385e-01,
9.48280192e-01, 9.48280192e-01, 9.48280192e-01, 9.48280192e-01,
1.16919832e+00, 1.16919832e+00, 1.16919832e+00, 1.16919832e+00,
1.34151992e+00, 1.34151992e+00, 1.34151992e+00, 1.34151992e+00,
1.38408905e+00, 1.38408905e+00, 1.38408905e+00, 1.38408905e+00,
1.36212724e+00, 1.36212724e+00, 1.36212724e+00, 1.36212724e+00,
1.27575638e+00, 1.27575638e+00, 1.27575638e+00, 1.27575638e+00,
9.46706959e-01, 9.46706959e-01, 9.46706959e-01, 9.46706959e-01,
2.86961496e-01, 2.86961496e-01, 2.86961496e-01, 2.86961496e-01,
2.97471236e-02, 2.97471236e-02, 2.97471236e-02, 2.97471236e-02,
2.18276389e-03, 2.18276389e-03, 2.18276389e-03, 2.18276389e-03,
1.45981809e-04, 1.45981809e-04, 1.45981809e-04, 1.45981809e-04,
8.97326097e-06, 8.97326097e-06, 8.97326097e-06, 8.97326097e-06,
4.95542253e-07, 4.95542253e-07, 4.95542253e-07, 4.95542253e-07,
2.41369077e-08, 2.41369077e-08, 2.41369077e-08, 2.41369077e-08,
1.02173681e-09, 1.02173681e-09, 1.02173681e-09, 1.02173681e-09,
3.71041963e-11, 3.71041963e-11, 3.71041963e-11, 3.71041963e-11,
1.14134185e-12, 1.14134185e-12, 1.14134185e-12, 1.14134185e-12,
2.93180081e-14, 2.93180081e-14, 2.93180081e-14, 2.93180081e-14,
5.89861085e-16, 5.89861085e-16, 5.89861085e-16, 5.89861085e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999993, 0.99999993,
0.99999993, 0.99999993, 0.9999987 , 0.9999987 , 0.9999987 ,
0.9999987 , 0.99998065, 0.99998065, 0.99998065, 0.99998065,
0.99977012, 0.99977012, 0.99977012, 0.99977012, 0.9978949 ,
0.9978949 , 0.9978949 , 0.9978949 , 0.98581938, 0.98581938,
0.98581938, 0.98581938, 0.93364034, 0.93364034, 0.93364034,
0.93364034, 0.79223561, 0.79223561, 0.79223561, 0.79223561,
0.58787464, 0.58787464, 0.58787464, 0.58787464, 0.49421357,
0.49421357, 0.49421357, 0.49421357, 0.47736962, 0.47736962,
0.47736962, 0.47736962, 0.46789435, 0.46789435, 0.46789435,
0.46789435, 0.42797779, 0.42797779, 0.42797779, 0.42797779,
0.30606771, 0.30606771, 0.30606771, 0.30606771, 0.14410239,
0.14410239, 0.14410239, 0.14410239, 0.10398792, 0.10398792,
0.10398792, 0.10398792, 0.10028892, 0.10028892, 0.10028892,
0.10028892, 0.10001931, 0.10001931, 0.10001931, 0.10001931,
0.10000119, 0.10000119, 0.10000119, 0.10000119, 0.10000007,
0.10000007, 0.10000007, 0.10000007, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999986, 0.99999986,
0.99999986, 0.99999986, 0.99999778, 0.99999778, 0.99999778,
0.99999778, 0.99997175, 0.99997175, 0.99997175, 0.99997175,
0.99971141, 0.99971141, 0.99971141, 0.99971141, 0.99770946,
0.99770946, 0.99770946, 0.99770946, 0.98648851, 0.98648851,
0.98648851, 0.98648851, 0.94358959, 0.94358959, 0.94358959,
0.94358959, 0.83747957, 0.83747957, 0.83747957, 0.83747957,
0.69607636, 0.69607636, 0.69607636, 0.69607636, 0.61195392,
0.61195392, 0.61195392, 0.61195392, 0.5520745 , 0.5520745 ,
0.5520745 , 0.5520745 , 0.48227586, 0.48227586, 0.48227586,
0.48227586, 0.39628276, 0.39628276, 0.39628276, 0.39628276,
0.30461516, 0.30461516, 0.30461516, 0.30461516, 0.20942901,
0.20942901, 0.20942901, 0.20942901, 0.14069158, 0.14069158,
0.14069158, 0.14069158, 0.12652847, 0.12652847, 0.12652847,
0.12652847, 0.1251159 , 0.1251159 , 0.1251159 , 0.1251159 ,
0.12500801, 0.12500801, 0.12500801, 0.12500801, 0.12500051,
0.12500051, 0.12500051, 0.12500051, 0.12500003, 0.12500003,
0.12500003, 0.12500003, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000169e-01, 7.50000169e-01, 7.50000169e-01, 7.50000169e-01,
7.50002624e-01, 7.50002624e-01, 7.50002624e-01, 7.50002624e-01,
7.50033404e-01, 7.50033404e-01, 7.50033404e-01, 7.50033404e-01,
7.50341048e-01, 7.50341048e-01, 7.50341048e-01, 7.50341048e-01,
7.52703614e-01, 7.52703614e-01, 7.52703614e-01, 7.52703614e-01,
7.65969457e-01, 7.65969457e-01, 7.65969457e-01, 7.65969457e-01,
8.17910409e-01, 8.17910409e-01, 8.17910409e-01, 8.17910409e-01,
9.59019483e-01, 9.59019483e-01, 9.59019483e-01, 9.59019483e-01,
1.16435988e+00, 1.16435988e+00, 1.16435988e+00, 1.16435988e+00,
1.32431238e+00, 1.32431238e+00, 1.32431238e+00, 1.32431238e+00,
1.37819363e+00, 1.37819363e+00, 1.37819363e+00, 1.37819363e+00,
1.37548447e+00, 1.37548447e+00, 1.37548447e+00, 1.37548447e+00,
1.34495171e+00, 1.34495171e+00, 1.34495171e+00, 1.34495171e+00,
1.21521933e+00, 1.21521933e+00, 1.21521933e+00, 1.21521933e+00,
7.56439760e-01, 7.56439760e-01, 7.56439760e-01, 7.56439760e-01,
1.54532788e-01, 1.54532788e-01, 1.54532788e-01, 1.54532788e-01,
1.38332523e-02, 1.38332523e-02, 1.38332523e-02, 1.38332523e-02,
9.98607774e-04, 9.98607774e-04, 9.98607774e-04, 9.98607774e-04,
6.81041170e-05, 6.81041170e-05, 6.81041170e-05, 6.81041170e-05,
4.33839800e-06, 4.33839800e-06, 4.33839800e-06, 4.33839800e-06,
2.53281003e-07, 2.53281003e-07, 2.53281003e-07, 2.53281003e-07,
1.33255506e-08, 1.33255506e-08, 1.33255506e-08, 1.33255506e-08,
6.23193675e-10, 6.23193675e-10, 6.23193675e-10, 6.23193675e-10,
2.56186446e-11, 2.56186446e-11, 2.56186446e-11, 2.56186446e-11,
9.16383815e-13, 9.16383815e-13, 9.16383815e-13, 9.16383815e-13,
2.82273423e-14, 2.82273423e-14, 2.82273423e-14, 2.82273423e-14,
7.11936272e-16, 7.11936272e-16, 7.11936272e-16, 7.11936272e-16,
9.95777976e-18, 9.95777976e-18, 9.95777976e-18, 9.95777976e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.9999998 , 0.9999998 ,
0.9999998 , 0.9999998 , 0.9999969 , 0.9999969 , 0.9999969 ,
0.9999969 , 0.99996048, 0.99996048, 0.99996048, 0.99996048,
0.99959652, 0.99959652, 0.99959652, 0.99959652, 0.99680533,
0.99680533, 0.99680533, 0.99680533, 0.98127177, 0.98127177,
0.98127177, 0.98127177, 0.92282751, 0.92282751, 0.92282751,
0.92282751, 0.78204719, 0.78204719, 0.78204719, 0.78204719,
0.59144542, 0.59144542, 0.59144542, 0.59144542, 0.49225455,
0.49225455, 0.49225455, 0.49225455, 0.47625652, 0.47625652,
0.47625652, 0.47625652, 0.47479773, 0.47479773, 0.47479773,
0.47479773, 0.46075469, 0.46075469, 0.46075469, 0.46075469,
0.4019023 , 0.4019023 , 0.4019023 , 0.4019023 , 0.25005069,
0.25005069, 0.25005069, 0.25005069, 0.1222868 , 0.1222868 ,
0.1222868 , 0.1222868 , 0.10183971, 0.10183971, 0.10183971,
0.10183971, 0.10013213, 0.10013213, 0.10013213, 0.10013213,
0.10000901, 0.10000901, 0.10000901, 0.10000901, 0.10000057,
0.10000057, 0.10000057, 0.10000057, 0.10000003, 0.10000003,
0.10000003, 0.10000003, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999965, 0.99999965,
0.99999965, 0.99999965, 0.99999524, 0.99999524, 0.99999524,
0.99999524, 0.99994721, 0.99994721, 0.99994721, 0.99994721,
0.99952776, 0.99952776, 0.99952776, 0.99952776, 0.99670338,
0.99670338, 0.99670338, 0.99670338, 0.98280363, 0.98280363,
0.98280363, 0.98280363, 0.93577386, 0.93577386, 0.93577386,
0.93577386, 0.83041599, 0.83041599, 0.83041599, 0.83041599,
0.69625631, 0.69625631, 0.69625631, 0.69625631, 0.61829217,
0.61829217, 0.61829217, 0.61829217, 0.5699253 , 0.5699253 ,
0.5699253 , 0.5699253 , 0.51291693, 0.51291693, 0.51291693,
0.51291693, 0.43877311, 0.43877311, 0.43877311, 0.43877311,
0.35520766, 0.35520766, 0.35520766, 0.35520766, 0.27305597,
0.27305597, 0.27305597, 0.27305597, 0.18148452, 0.18148452,
0.18148452, 0.18148452, 0.13315019, 0.13315019, 0.13315019,
0.13315019, 0.12571382, 0.12571382, 0.12571382, 0.12571382,
0.12505333, 0.12505333, 0.12505333, 0.12505333, 0.12500372,
0.12500372, 0.12500372, 0.12500372, 0.12500024, 0.12500024,
0.12500024, 0.12500024, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
7.50000419e-01, 7.50000419e-01, 7.50000419e-01, 7.50000419e-01,
7.50005630e-01, 7.50005630e-01, 7.50005630e-01, 7.50005630e-01,
7.50062433e-01, 7.50062433e-01, 7.50062433e-01, 7.50062433e-01,
7.50558196e-01, 7.50558196e-01, 7.50558196e-01, 7.50558196e-01,
7.53894015e-01, 7.53894015e-01, 7.53894015e-01, 7.53894015e-01,
7.70379540e-01, 7.70379540e-01, 7.70379540e-01, 7.70379540e-01,
8.27772252e-01, 8.27772252e-01, 8.27772252e-01, 8.27772252e-01,
9.68662085e-01, 9.68662085e-01, 9.68662085e-01, 9.68662085e-01,
1.16220491e+00, 1.16220491e+00, 1.16220491e+00, 1.16220491e+00,
1.31086380e+00, 1.31086380e+00, 1.31086380e+00, 1.31086380e+00,
1.36872585e+00, 1.36872585e+00, 1.36872585e+00, 1.36872585e+00,
1.37564389e+00, 1.37564389e+00, 1.37564389e+00, 1.37564389e+00,
1.36763431e+00, 1.36763431e+00, 1.36763431e+00, 1.36763431e+00,
1.32344547e+00, 1.32344547e+00, 1.32344547e+00, 1.32344547e+00,
1.12324529e+00, 1.12324529e+00, 1.12324529e+00, 1.12324529e+00,
5.43452950e-01, 5.43452950e-01, 5.43452950e-01, 5.43452950e-01,
7.89030941e-02, 7.89030941e-02, 7.89030941e-02, 7.89030941e-02,
6.32477098e-03, 6.32477098e-03, 6.32477098e-03, 6.32477098e-03,
4.56774221e-04, 4.56774221e-04, 4.56774221e-04, 4.56774221e-04,
3.16014322e-05, 3.16014322e-05, 3.16014322e-05, 3.16014322e-05,
2.06840337e-06, 2.06840337e-06, 2.06840337e-06, 2.06840337e-06,
1.25987808e-07, 1.25987808e-07, 1.25987808e-07, 1.25987808e-07,
7.03125054e-09, 7.03125054e-09, 7.03125054e-09, 7.03125054e-09,
3.55048102e-10, 3.55048102e-10, 3.55048102e-10, 3.55048102e-10,
1.60552001e-11, 1.60552001e-11, 1.60552001e-11, 1.60552001e-11,
6.44472443e-13, 6.44472443e-13, 6.44472443e-13, 6.44472443e-13,
2.27342322e-14, 2.27342322e-14, 2.27342322e-14, 2.27342322e-14,
6.57996181e-16, 6.57996181e-16, 6.57996181e-16, 6.57996181e-16,
2.02110955e-17, 2.02110955e-17, 2.02110955e-17, 2.02110955e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.9999995 , 0.9999995 ,
0.9999995 , 0.9999995 , 0.99999334, 0.99999334, 0.99999334,
0.99999334, 0.99992613, 0.99992613, 0.99992613, 0.99992613,
0.9993397 , 0.9993397 , 0.9993397 , 0.9993397 , 0.99540189,
0.99540189, 0.99540189, 0.99540189, 0.97616471, 0.97616471,
0.97616471, 0.97616471, 0.91214742, 0.91214742, 0.91214742,
0.91214742, 0.77293438, 0.77293438, 0.77293438, 0.77293438,
0.59602991, 0.59602991, 0.59602991, 0.59602991, 0.49258015,
0.49258015, 0.49258015, 0.49258015, 0.47304087, 0.47304087,
0.47304087, 0.47304087, 0.47487876, 0.47487876, 0.47487876,
0.47487876, 0.47229223, 0.47229223, 0.47229223, 0.47229223,
0.44924829, 0.44924829, 0.44924829, 0.44924829, 0.3670158 ,
0.3670158 , 0.3670158 , 0.3670158 , 0.1964563 , 0.1964563 ,
0.1964563 , 0.1964563 , 0.11088441, 0.11088441, 0.11088441,
0.11088441, 0.10083843, 0.10083843, 0.10083843, 0.10083843,
0.10006043, 0.10006043, 0.10006043, 0.10006043, 0.10000418,
0.10000418, 0.10000418, 0.10000418, 0.10000027, 0.10000027,
0.10000027, 0.10000027, 0.10000002, 0.10000002, 0.10000002,
0.10000002, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999921, 0.99999921,
0.99999921, 0.99999921, 0.99999063, 0.99999063, 0.99999063,
0.99999063, 0.99990804, 0.99990804, 0.99990804, 0.99990804,
0.99926917, 0.99926917, 0.99926917, 0.99926917, 0.99545263,
0.99545263, 0.99545263, 0.99545263, 0.97875109, 0.97875109,
0.97875109, 0.97875109, 0.92808061, 0.92808061, 0.92808061,
0.92808061, 0.82401271, 0.82401271, 0.82401271, 0.82401271,
0.69646404, 0.69646404, 0.69646404, 0.69646404, 0.62232848,
0.62232848, 0.62232848, 0.62232848, 0.58232539, 0.58232539,
0.58232539, 0.58232539, 0.53664687, 0.53664687, 0.53664687,
0.53664687, 0.47382656, 0.47382656, 0.47382656, 0.47382656,
0.3966429 , 0.3966429 , 0.3966429 , 0.3966429 , 0.32215049,
0.32215049, 0.32215049, 0.32215049, 0.24536837, 0.24536837,
0.24536837, 0.24536837, 0.15939671, 0.15939671, 0.15939671,
0.15939671, 0.1290282 , 0.1290282 , 0.1290282 , 0.1290282 ,
0.12533162, 0.12533162, 0.12533162, 0.12533162, 0.12502449,
0.12502449, 0.12502449, 0.12502449, 0.12500172, 0.12500172,
0.12500172, 0.12500172, 0.12500012, 0.12500012, 0.12500012,
0.12500012, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
7.50000067e-01, 7.50000067e-01, 7.50000067e-01, 7.50000067e-01,
7.50000937e-01, 7.50000937e-01, 7.50000937e-01, 7.50000937e-01,
7.50011082e-01, 7.50011082e-01, 7.50011082e-01, 7.50011082e-01,
7.50108766e-01, 7.50108766e-01, 7.50108766e-01, 7.50108766e-01,
7.50863989e-01, 7.50863989e-01, 7.50863989e-01, 7.50863989e-01,
7.55375416e-01, 7.55375416e-01, 7.55375416e-01, 7.55375416e-01,
7.75249150e-01, 7.75249150e-01, 7.75249150e-01, 7.75249150e-01,
8.37539996e-01, 8.37539996e-01, 8.37539996e-01, 8.37539996e-01,
9.77371489e-01, 9.77371489e-01, 9.77371489e-01, 9.77371489e-01,
1.16096785e+00, 1.16096785e+00, 1.16096785e+00, 1.16096785e+00,
1.30163748e+00, 1.30163748e+00, 1.30163748e+00, 1.30163748e+00,
1.35906515e+00, 1.35906515e+00, 1.35906515e+00, 1.35906515e+00,
1.37165137e+00, 1.37165137e+00, 1.37165137e+00, 1.37165137e+00,
1.37159981e+00, 1.37159981e+00, 1.37159981e+00, 1.37159981e+00,
1.36020817e+00, 1.36020817e+00, 1.36020817e+00, 1.36020817e+00,
1.28954477e+00, 1.28954477e+00, 1.28954477e+00, 1.28954477e+00,
9.92965165e-01, 9.92965165e-01, 9.92965165e-01, 9.92965165e-01,
3.41054294e-01, 3.41054294e-01, 3.41054294e-01, 3.41054294e-01,
3.78450976e-02, 3.78450976e-02, 3.78450976e-02, 3.78450976e-02,
2.89520706e-03, 2.89520706e-03, 2.89520706e-03, 2.89520706e-03,
2.08927779e-04, 2.08927779e-04, 2.08927779e-04, 2.08927779e-04,
1.46114029e-05, 1.46114029e-05, 1.46114029e-05, 1.46114029e-05,
9.77146281e-07, 9.77146281e-07, 9.77146281e-07, 9.77146281e-07,
6.15180946e-08, 6.15180946e-08, 6.15180946e-08, 6.15180946e-08,
3.59623288e-09, 3.59623288e-09, 3.59623288e-09, 3.59623288e-09,
1.92933425e-10, 1.92933425e-10, 1.92933425e-10, 1.92933425e-10,
9.40773578e-12, 9.40773578e-12, 9.40773578e-12, 9.40773578e-12,
4.13570502e-13, 4.13570502e-13, 4.13570502e-13, 4.13570502e-13,
1.62288270e-14, 1.62288270e-14, 1.62288270e-14, 1.62288270e-14,
5.61211316e-16, 5.61211316e-16, 5.61211316e-16, 5.61211316e-16,
1.04414501e-17, 1.04414501e-17, 1.04414501e-17, 1.04414501e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999992,
0.99999992, 0.99999992, 0.99999992, 0.99999889, 0.99999889,
0.99999889, 0.99999889, 0.99998689, 0.99998689, 0.99998689,
0.99998689, 0.99987131, 0.99987131, 0.99987131, 0.99987131,
0.99897815, 0.99897815, 0.99897815, 0.99897815, 0.99365816,
0.99365816, 0.99365816, 0.99365816, 0.9705574 , 0.9705574 ,
0.9705574 , 0.9705574 , 0.90168105, 0.90168105, 0.90168105,
0.90168105, 0.76473302, 0.76473302, 0.76473302, 0.76473302,
0.60049273, 0.60049273, 0.60049273, 0.60049273, 0.49550855,
0.49550855, 0.49550855, 0.49550855, 0.47006662, 0.47006662,
0.47006662, 0.47006662, 0.47260804, 0.47260804, 0.47260804,
0.47260804, 0.47428975, 0.47428975, 0.47428975, 0.47428975,
0.46714499, 0.46714499, 0.46714499, 0.46714499, 0.43304518,
0.43304518, 0.43304518, 0.43304518, 0.32159783, 0.32159783,
0.32159783, 0.32159783, 0.15419082, 0.15419082, 0.15419082,
0.15419082, 0.1050973 , 0.1050973 , 0.1050973 , 0.1050973 ,
0.10038332, 0.10038332, 0.10038332, 0.10038332, 0.10002764,
0.10002764, 0.10002764, 0.10002764, 0.10000193, 0.10000193,
0.10000193, 0.10000193, 0.10000013, 0.10000013, 0.10000013,
0.10000013, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999837, 0.99999837,
0.99999837, 0.99999837, 0.9999828 , 0.9999828 , 0.9999828 ,
0.9999828 , 0.99984871, 0.99984871, 0.99984871, 0.99984871,
0.99891955, 0.99891955, 0.99891955, 0.99891955, 0.99394315,
0.99394315, 0.99394315, 0.99394315, 0.97437567, 0.97437567,
0.97437567, 0.97437567, 0.92055976, 0.92055976, 0.92055976,
0.92055976, 0.81822558, 0.81822558, 0.81822558, 0.81822558,
0.69670438, 0.69670438, 0.69670438, 0.69670438, 0.62488661,
0.62488661, 0.62488661, 0.62488661, 0.59118008, 0.59118008,
0.59118008, 0.59118008, 0.5544861 , 0.5544861 , 0.5544861 ,
0.5544861 , 0.50269605, 0.50269605, 0.50269605, 0.50269605,
0.4331649 , 0.4331649 , 0.4331649 , 0.4331649 , 0.36021979,
0.36021979, 0.36021979, 0.36021979, 0.29637809, 0.29637809,
0.29637809, 0.29637809, 0.21820395, 0.21820395, 0.21820395,
0.21820395, 0.14411847, 0.14411847, 0.14411847, 0.14411847,
0.126943 , 0.126943 , 0.126943 , 0.126943 , 0.12515306,
0.12515306, 0.12515306, 0.12515306, 0.12501123, 0.12501123,
0.12501123, 0.12501123, 0.1250008 , 0.1250008 , 0.1250008 ,
0.1250008 , 0.12500005, 0.12500005, 0.12500005, 0.12500005,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
7.50001925e-01, 7.50001925e-01, 7.50001925e-01, 7.50001925e-01,
7.50020345e-01, 7.50020345e-01, 7.50020345e-01, 7.50020345e-01,
7.50178950e-01, 7.50178950e-01, 7.50178950e-01, 7.50178950e-01,
7.51277500e-01, 7.51277500e-01, 7.51277500e-01, 7.51277500e-01,
7.57165560e-01, 7.57165560e-01, 7.57165560e-01, 7.57165560e-01,
7.80529643e-01, 7.80529643e-01, 7.80529643e-01, 7.80529643e-01,
8.47148531e-01, 8.47148531e-01, 8.47148531e-01, 8.47148531e-01,
9.85270426e-01, 9.85270426e-01, 9.85270426e-01, 9.85270426e-01,
1.15957712e+00, 1.15957712e+00, 1.15957712e+00, 1.15957712e+00,
1.29566032e+00, 1.29566032e+00, 1.29566032e+00, 1.29566032e+00,
1.35118587e+00, 1.35118587e+00, 1.35118587e+00, 1.35118587e+00,
1.36601672e+00, 1.36601672e+00, 1.36601672e+00, 1.36601672e+00,
1.36997305e+00, 1.36997305e+00, 1.36997305e+00, 1.36997305e+00,
1.36942484e+00, 1.36942484e+00, 1.36942484e+00, 1.36942484e+00,
1.34862905e+00, 1.34862905e+00, 1.34862905e+00, 1.34862905e+00,
1.23673227e+00, 1.23673227e+00, 1.23673227e+00, 1.23673227e+00,
8.18685529e-01, 8.18685529e-01, 8.18685529e-01, 8.18685529e-01,
1.89365930e-01, 1.89365930e-01, 1.89365930e-01, 1.89365930e-01,
1.77483277e-02, 1.77483277e-02, 1.77483277e-02, 1.77483277e-02,
1.32231275e-03, 1.32231275e-03, 1.32231275e-03, 1.32231275e-03,
9.55485885e-05, 9.55485885e-05, 9.55485885e-05, 9.55485885e-05,
6.74007898e-06, 6.74007898e-06, 6.74007898e-06, 6.74007898e-06,
4.58238639e-07, 4.58238639e-07, 4.58238639e-07, 4.58238639e-07,
2.96179808e-08, 2.96179808e-08, 2.96179808e-08, 2.96179808e-08,
1.79683460e-09, 1.79683460e-09, 1.79683460e-09, 1.79683460e-09,
1.01205791e-10, 1.01205791e-10, 1.01205791e-10, 1.01205791e-10,
5.24439143e-12, 5.24439143e-12, 5.24439143e-12, 5.24439143e-12,
2.48169579e-13, 2.48169579e-13, 2.48169579e-13, 2.48169579e-13,
1.06030558e-14, 1.06030558e-14, 1.06030558e-14, 1.06030558e-14,
3.88917738e-16, 3.88917738e-16, 3.88917738e-16, 3.88917738e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999982,
0.99999982, 0.99999982, 0.99999982, 0.99999772, 0.99999772,
0.99999772, 0.99999772, 0.99997593, 0.99997593, 0.99997593,
0.99997593, 0.99978828, 0.99978828, 0.99978828, 0.99978828,
0.99848943, 0.99848943, 0.99848943, 0.99848943, 0.99155515,
0.99155515, 0.99155515, 0.99155515, 0.964514 , 0.964514 ,
0.964514 , 0.964514 , 0.89148856, 0.89148856, 0.89148856,
0.89148856, 0.75731665, 0.75731665, 0.75731665, 0.75731665,
0.6041739 , 0.6041739 , 0.6041739 , 0.6041739 , 0.50038286,
0.50038286, 0.50038286, 0.50038286, 0.46850918, 0.46850918,
0.46850918, 0.46850918, 0.46942557, 0.46942557, 0.46942557,
0.46942557, 0.47328763, 0.47328763, 0.47328763, 0.47328763,
0.47194986, 0.47194986, 0.47194986, 0.47194986, 0.46019101,
0.46019101, 0.46019101, 0.46019101, 0.41012287, 0.41012287,
0.41012287, 0.41012287, 0.26737713, 0.26737713, 0.26737713,
0.26737713, 0.12780983, 0.12780983, 0.12780983, 0.12780983,
0.1023651 , 0.1023651 , 0.1023651 , 0.1023651 , 0.10017499,
0.10017499, 0.10017499, 0.10017499, 0.10001264, 0.10001264,
0.10001264, 0.10001264, 0.10000089, 0.10000089, 0.10000089,
0.10000089, 0.10000006, 0.10000006, 0.10000006, 0.10000006,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999972,
0.99999972, 0.99999972, 0.99999972, 0.99999688, 0.99999688,
0.99999688, 0.99999688, 0.99997019, 0.99997019, 0.99997019,
0.99997019, 0.99976264, 0.99976264, 0.99976264, 0.99976264,
0.99846262, 0.99846262, 0.99846262, 0.99846262, 0.9921662 ,
0.9921662 , 0.9921662 , 0.9921662 , 0.96972408, 0.96972408,
0.96972408, 0.96972408, 0.91324871, 0.91324871, 0.91324871,
0.91324871, 0.81299809, 0.81299809, 0.81299809, 0.81299809,
0.69707716, 0.69707716, 0.69707716, 0.69707716, 0.6262992 ,
0.6262992 , 0.6262992 , 0.6262992 , 0.59760474, 0.59760474,
0.59760474, 0.59760474, 0.56779664, 0.56779664, 0.56779664,
0.56779664, 0.52592744, 0.52592744, 0.52592744, 0.52592744,
0.46563753, 0.46563753, 0.46563753, 0.46563753, 0.39326426,
0.39326426, 0.39326426, 0.39326426, 0.33284785, 0.33284785,
0.33284785, 0.33284785, 0.27504145, 0.27504145, 0.27504145,
0.27504145, 0.19106843, 0.19106843, 0.19106843, 0.19106843,
0.13511522, 0.13511522, 0.13511522, 0.13511522, 0.12591513,
0.12591513, 0.12591513, 0.12591513, 0.12507031, 0.12507031,
0.12507031, 0.12507031, 0.12500515, 0.12500515, 0.12500515,
0.12500515, 0.12500037, 0.12500037, 0.12500037, 0.12500037,
0.12500003, 0.12500003, 0.12500003, 0.12500003, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
7.50000329e-01, 7.50000329e-01, 7.50000329e-01, 7.50000329e-01,
7.50003695e-01, 7.50003695e-01, 7.50003695e-01, 7.50003695e-01,
7.50035264e-01, 7.50035264e-01, 7.50035264e-01, 7.50035264e-01,
7.50280759e-01, 7.50280759e-01, 7.50280759e-01, 7.50280759e-01,
7.51818086e-01, 7.51818086e-01, 7.51818086e-01, 7.51818086e-01,
7.59276172e-01, 7.59276172e-01, 7.59276172e-01, 7.59276172e-01,
7.86169462e-01, 7.86169462e-01, 7.86169462e-01, 7.86169462e-01,
8.56546408e-01, 8.56546408e-01, 8.56546408e-01, 8.56546408e-01,
9.92456196e-01, 9.92456196e-01, 9.92456196e-01, 9.92456196e-01,
1.15763323e+00, 1.15763323e+00, 1.15763323e+00, 1.15763323e+00,
1.29146040e+00, 1.29146040e+00, 1.29146040e+00, 1.29146040e+00,
1.34573538e+00, 1.34573538e+00, 1.34573538e+00, 1.34573538e+00,
1.36098136e+00, 1.36098136e+00, 1.36098136e+00, 1.36098136e+00,
1.36604284e+00, 1.36604284e+00, 1.36604284e+00, 1.36604284e+00,
1.36966028e+00, 1.36966028e+00, 1.36966028e+00, 1.36966028e+00,
1.36622633e+00, 1.36622633e+00, 1.36622633e+00, 1.36622633e+00,
1.32998311e+00, 1.32998311e+00, 1.32998311e+00, 1.32998311e+00,
1.15597656e+00, 1.15597656e+00, 1.15597656e+00, 1.15597656e+00,
6.12942776e-01, 6.12942776e-01, 6.12942776e-01, 6.12942776e-01,
9.84564756e-02, 9.84564756e-02, 9.84564756e-02, 9.84564756e-02,
8.15622587e-03, 8.15622587e-03, 8.15622587e-03, 8.15622587e-03,
6.03159348e-04, 6.03159348e-04, 6.03159348e-04, 6.03159348e-04,
4.37065832e-05, 4.37065832e-05, 4.37065832e-05, 4.37065832e-05,
3.10316624e-06, 3.10316624e-06, 3.10316624e-06, 3.10316624e-06,
2.13754454e-07, 2.13754454e-07, 2.13754454e-07, 2.13754454e-07,
1.41094631e-08, 1.41094631e-08, 1.41094631e-08, 1.41094631e-08,
8.82092666e-10, 8.82092666e-10, 8.82092666e-10, 8.82092666e-10,
5.16973157e-11, 5.16973157e-11, 5.16973157e-11, 5.16973157e-11,
2.81588859e-12, 2.81588859e-12, 2.81588859e-12, 2.81588859e-12,
1.41485550e-13, 1.41485550e-13, 1.41485550e-13, 1.41485550e-13,
6.51607025e-15, 6.51607025e-15, 6.51607025e-15, 6.51607025e-15,
2.40152978e-16, 2.40152978e-16, 2.40152978e-16, 2.40152978e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999961,
0.99999961, 0.99999961, 0.99999961, 0.99999563, 0.99999563,
0.99999563, 0.99999563, 0.99995828, 0.99995828, 0.99995828,
0.99995828, 0.99966785, 0.99966785, 0.99966785, 0.99966785,
0.99785087, 0.99785087, 0.99785087, 0.99785087, 0.98908149,
0.98908149, 0.98908149, 0.98908149, 0.9581009 , 0.9581009 ,
0.9581009 , 0.9581009 , 0.88161392, 0.88161392, 0.88161392,
0.88161392, 0.75058451, 0.75058451, 0.75058451, 0.75058451,
0.60688233, 0.60688233, 0.60688233, 0.60688233, 0.50620558,
0.50620558, 0.50620558, 0.50620558, 0.46870616, 0.46870616,
0.46870616, 0.46870616, 0.46692176, 0.46692176, 0.46692176,
0.46692176, 0.47084207, 0.47084207, 0.47084207, 0.47084207,
0.47212989, 0.47212989, 0.47212989, 0.47212989, 0.46881527,
0.46881527, 0.46881527, 0.46881527, 0.45065004, 0.45065004,
0.45065004, 0.45065004, 0.37876151, 0.37876151, 0.37876151,
0.37876151, 0.21224192, 0.21224192, 0.21224192, 0.21224192,
0.11373333, 0.11373333, 0.11373333, 0.11373333, 0.10108205,
0.10108205, 0.10108205, 0.10108205, 0.1000798 , 0.1000798 ,
0.1000798 , 0.1000798 , 0.10000578, 0.10000578, 0.10000578,
0.10000578, 0.10000041, 0.10000041, 0.10000041, 0.10000041,
0.10000003, 0.10000003, 0.10000003, 0.10000003, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999945,
0.99999945, 0.99999945, 0.99999945, 0.99999434, 0.99999434,
0.99999434, 0.99999434, 0.99995077, 0.99995077, 0.99995077,
0.99995077, 0.99964227, 0.99964227, 0.99964227, 0.99964227,
0.99788241, 0.99788241, 0.99788241, 0.99788241, 0.99011845,
0.99011845, 0.99011845, 0.99011845, 0.96484327, 0.96484327,
0.96484327, 0.96484327, 0.90617454, 0.90617454, 0.90617454,
0.90617454, 0.80826973, 0.80826973, 0.80826973, 0.80826973,
0.69774371, 0.69774371, 0.69774371, 0.69774371, 0.62678051,
0.62678051, 0.62678051, 0.62678051, 0.60206381, 0.60206381,
0.60206381, 0.60206381, 0.57792713, 0.57792713, 0.57792713,
0.57792713, 0.54425972, 0.54425972, 0.54425972, 0.54425972,
0.49346931, 0.49346931, 0.49346931, 0.49346931, 0.42544549,
0.42544549, 0.42544549, 0.42544549, 0.36171435, 0.36171435,
0.36171435, 0.36171435, 0.31197099, 0.31197099, 0.31197099,
0.31197099, 0.25437815, 0.25437815, 0.25437815, 0.25437815,
0.16685114, 0.16685114, 0.16685114, 0.16685114, 0.13005985,
0.13005985, 0.13005985, 0.13005985, 0.1254259 , 0.1254259 ,
0.1254259 , 0.1254259 , 0.12503221, 0.12503221, 0.12503221,
0.12503221, 0.12500236, 0.12500236, 0.12500236, 0.12500236,
0.12500017, 0.12500017, 0.12500017, 0.12500017, 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
7.50000056e-01, 7.50000056e-01, 7.50000056e-01, 7.50000056e-01,
7.50000657e-01, 7.50000657e-01, 7.50000657e-01, 7.50000657e-01,
7.50006699e-01, 7.50006699e-01, 7.50006699e-01, 7.50006699e-01,
7.50058238e-01, 7.50058238e-01, 7.50058238e-01, 7.50058238e-01,
7.50423153e-01, 7.50423153e-01, 7.50423153e-01, 7.50423153e-01,
7.52504789e-01, 7.52504789e-01, 7.52504789e-01, 7.52504789e-01,
7.61712941e-01, 7.61712941e-01, 7.61712941e-01, 7.61712941e-01,
7.92115818e-01, 7.92115818e-01, 7.92115818e-01, 7.92115818e-01,
8.65693722e-01, 8.65693722e-01, 8.65693722e-01, 8.65693722e-01,
9.99009811e-01, 9.99009811e-01, 9.99009811e-01, 9.99009811e-01,
1.15520654e+00, 1.15520654e+00, 1.15520654e+00, 1.15520654e+00,
1.28768450e+00, 1.28768450e+00, 1.28768450e+00, 1.28768450e+00,
1.34268320e+00, 1.34268320e+00, 1.34268320e+00, 1.34268320e+00,
1.35715119e+00, 1.35715119e+00, 1.35715119e+00, 1.35715119e+00,
1.36145245e+00, 1.36145245e+00, 1.36145245e+00, 1.36145245e+00,
1.36744320e+00, 1.36744320e+00, 1.36744320e+00, 1.36744320e+00,
1.36938027e+00, 1.36938027e+00, 1.36938027e+00, 1.36938027e+00,
1.36032906e+00, 1.36032906e+00, 1.36032906e+00, 1.36032906e+00,
1.30083630e+00, 1.30083630e+00, 1.30083630e+00, 1.30083630e+00,
1.03904720e+00, 1.03904720e+00, 1.03904720e+00, 1.03904720e+00,
4.03867617e-01, 4.03867617e-01, 4.03867617e-01, 4.03867617e-01,
4.78324169e-02, 4.78324169e-02, 4.78324169e-02, 4.78324169e-02,
3.73133151e-03, 3.73133151e-03, 3.73133151e-03, 3.73133151e-03,
2.75051151e-04, 2.75051151e-04, 2.75051151e-04, 2.75051151e-04,
1.99786506e-05, 1.99786506e-05, 1.99786506e-05, 1.99786506e-05,
1.42705014e-06, 1.42705014e-06, 1.42705014e-06, 1.42705014e-06,
9.93370281e-08, 9.93370281e-08, 9.93370281e-08, 9.93370281e-08,
6.66943143e-09, 6.66943143e-09, 6.66943143e-09, 6.66943143e-09,
4.27344831e-10, 4.27344831e-10, 4.27344831e-10, 4.27344831e-10,
2.58814547e-11, 2.58814547e-11, 2.58814547e-11, 2.58814547e-11,
1.46936578e-12, 1.46936578e-12, 1.46936578e-12, 1.46936578e-12,
7.76106587e-14, 7.76106587e-14, 7.76106587e-14, 7.76106587e-14,
3.75314846e-15, 3.75314846e-15, 3.75314846e-15, 3.75314846e-15,
1.59879132e-16, 1.59879132e-16, 1.59879132e-16, 1.59879132e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999922,
0.99999922, 0.99999922, 0.99999922, 0.99999207, 0.99999207,
0.99999207, 0.99999207, 0.99993109, 0.99993109, 0.99993109,
0.99993109, 0.99949942, 0.99949942, 0.99949942, 0.99949942,
0.9970403 , 0.9970403 , 0.9970403 , 0.9970403 , 0.98623335,
0.98623335, 0.98623335, 0.98623335, 0.95138454, 0.95138454,
0.95138454, 0.95138454, 0.87208823, 0.87208823, 0.87208823,
0.87208823, 0.74445435, 0.74445435, 0.74445435, 0.74445435,
0.60875561, 0.60875561, 0.60875561, 0.60875561, 0.51204856,
0.51204856, 0.51204856, 0.51204856, 0.47069723, 0.47069723,
0.47069723, 0.47069723, 0.46531969, 0.46531969, 0.46531969,
0.46531969, 0.46797682, 0.46797682, 0.46797682, 0.46797682,
0.47094798, 0.47094798, 0.47094798, 0.47094798, 0.47050583,
0.47050583, 0.47050583, 0.47050583, 0.4648433 , 0.4648433 ,
0.4648433 , 0.4648433 , 0.43679273, 0.43679273, 0.43679273,
0.43679273, 0.33696764, 0.33696764, 0.33696764, 0.33696764,
0.16596212, 0.16596212, 0.16596212, 0.16596212, 0.10647712,
0.10647712, 0.10647712, 0.10647712, 0.10049417, 0.10049417,
0.10049417, 0.10049417, 0.10003639, 0.10003639, 0.10003639,
0.10003639, 0.10000264, 0.10000264, 0.10000264, 0.10000264,
0.10000019, 0.10000019, 0.10000019, 0.10000019, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999895,
0.99999895, 0.99999895, 0.99999895, 0.99999022, 0.99999022,
0.99999022, 0.99999022, 0.99992199, 0.99992199, 0.99992199,
0.99992199, 0.99947912, 0.99947912, 0.99947912, 0.99947912,
0.99716379, 0.99716379, 0.99716379, 0.99716379, 0.98780171,
0.98780171, 0.98780171, 0.98780171, 0.95977919, 0.95977919,
0.95977919, 0.95977919, 0.899356 , 0.899356 , 0.899356 ,
0.899356 , 0.80398103, 0.80398103, 0.80398103, 0.80398103,
0.69885064, 0.69885064, 0.69885064, 0.69885064, 0.62663048,
0.62663048, 0.62663048, 0.62663048, 0.60456203, 0.60456203,
0.60456203, 0.60456203, 0.58574218, 0.58574218, 0.58574218,
0.58574218, 0.55889671, 0.55889671, 0.55889671, 0.55889671,
0.51652074, 0.51652074, 0.51652074, 0.51652074, 0.45677399,
0.45677399, 0.45677399, 0.45677399, 0.38843992, 0.38843992,
0.38843992, 0.38843992, 0.33857154, 0.33857154, 0.33857154,
0.33857154, 0.2958245 , 0.2958245 , 0.2958245 , 0.2958245 ,
0.23037144, 0.23037144, 0.23037144, 0.23037144, 0.14866712,
0.14866712, 0.14866712, 0.14866712, 0.12746378, 0.12746378,
0.12746378, 0.12746378, 0.12519715, 0.12519715, 0.12519715,
0.12519715, 0.12501472, 0.12501472, 0.12501472, 0.12501472,
0.12500108, 0.12500108, 0.12500108, 0.12500108, 0.12500008,
0.12500008, 0.12500008, 0.12500008, 0.12500001, 0.12500001,
0.12500001, 0.12500001, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000115e-01, 7.50000115e-01, 7.50000115e-01, 7.50000115e-01,
7.50001238e-01, 7.50001238e-01, 7.50001238e-01, 7.50001238e-01,
7.50011569e-01, 7.50011569e-01, 7.50011569e-01, 7.50011569e-01,
7.50092289e-01, 7.50092289e-01, 7.50092289e-01, 7.50092289e-01,
7.50616160e-01, 7.50616160e-01, 7.50616160e-01, 7.50616160e-01,
7.53355737e-01, 7.53355737e-01, 7.53355737e-01, 7.53355737e-01,
7.64475707e-01, 7.64475707e-01, 7.64475707e-01, 7.64475707e-01,
7.98316114e-01, 7.98316114e-01, 7.98316114e-01, 7.98316114e-01,
8.74560291e-01, 8.74560291e-01, 8.74560291e-01, 8.74560291e-01,
1.00500047e+00, 1.00500047e+00, 1.00500047e+00, 1.00500047e+00,
1.15260232e+00, 1.15260232e+00, 1.15260232e+00, 1.15260232e+00,
1.28340256e+00, 1.28340256e+00, 1.28340256e+00, 1.28340256e+00,
1.34114330e+00, 1.34114330e+00, 1.34114330e+00, 1.34114330e+00,
1.35501138e+00, 1.35501138e+00, 1.35501138e+00, 1.35501138e+00,
1.35810478e+00, 1.35810478e+00, 1.35810478e+00, 1.35810478e+00,
1.36336774e+00, 1.36336774e+00, 1.36336774e+00, 1.36336774e+00,
1.36847879e+00, 1.36847879e+00, 1.36847879e+00, 1.36847879e+00,
1.36811377e+00, 1.36811377e+00, 1.36811377e+00, 1.36811377e+00,
1.35072599e+00, 1.35072599e+00, 1.35072599e+00, 1.35072599e+00,
1.25426560e+00, 1.25426560e+00, 1.25426560e+00, 1.25426560e+00,
8.79763139e-01, 8.79763139e-01, 8.79763139e-01, 8.79763139e-01,
2.32057473e-01, 2.32057473e-01, 2.32057473e-01, 2.32057473e-01,
2.26258785e-02, 2.26258785e-02, 2.26258785e-02, 2.26258785e-02,
1.70706147e-03, 1.70706147e-03, 1.70706147e-03, 1.70706147e-03,
1.25313284e-04, 1.25313284e-04, 1.25313284e-04, 1.25313284e-04,
9.12735833e-06, 9.12735833e-06, 9.12735833e-06, 9.12735833e-06,
6.55213907e-07, 6.55213907e-07, 6.55213907e-07, 6.55213907e-07,
4.60110799e-08, 4.60110799e-08, 4.60110799e-08, 4.60110799e-08,
3.13257583e-09, 3.13257583e-09, 3.13257583e-09, 3.13257583e-09,
2.04833966e-10, 2.04833966e-10, 2.04833966e-10, 2.04833966e-10,
1.27491473e-11, 1.27491473e-11, 1.27491473e-11, 1.27491473e-11,
7.49384168e-13, 7.49384168e-13, 7.49384168e-13, 7.49384168e-13,
4.12715433e-14, 4.12715433e-14, 4.12715433e-14, 4.12715433e-14,
2.08438071e-15, 2.08438071e-15, 2.08438071e-15, 2.08438071e-15,
6.95966513e-17, 6.95966513e-17, 6.95966513e-17, 6.95966513e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999854,
0.99999854, 0.99999854, 0.99999854, 0.99998631, 0.99998631,
0.99998631, 0.99998631, 0.99989081, 0.99989081, 0.99989081,
0.99989081, 0.99927118, 0.99927118, 0.99927118, 0.99927118,
0.99603677, 0.99603677, 0.99603677, 0.99603677, 0.98301421,
0.98301421, 0.98301421, 0.98301421, 0.94442958, 0.94442958,
0.94442958, 0.94442958, 0.86293221, 0.86293221, 0.86293221,
0.86293221, 0.73885742, 0.73885742, 0.73885742, 0.73885742,
0.61009357, 0.61009357, 0.61009357, 0.61009357, 0.51726091,
0.51726091, 0.51726091, 0.51726091, 0.47391825, 0.47391825,
0.47391825, 0.47391825, 0.46487842, 0.46487842, 0.46487842,
0.46487842, 0.46589916, 0.46589916, 0.46589916, 0.46589916,
0.46870505, 0.46870505, 0.46870505, 0.46870505, 0.47008932,
0.47008932, 0.47008932, 0.47008932, 0.4686757 , 0.4686757 ,
0.4686757 , 0.4686757 , 0.45927249, 0.45927249, 0.45927249,
0.45927249, 0.41693776, 0.41693776, 0.41693776, 0.41693776,
0.28500491, 0.28500491, 0.28500491, 0.28500491, 0.13470714,
0.13470714, 0.13470714, 0.13470714, 0.10302215, 0.10302215,
0.10302215, 0.10302215, 0.10022593, 0.10022593, 0.10022593,
0.10022593, 0.10001658, 0.10001658, 0.10001658, 0.10001658,
0.10000121, 0.10000121, 0.10000121, 0.10000121, 0.10000009,
0.10000009, 0.10000009, 0.10000009, 0.10000001, 0.10000001,
0.10000001, 0.10000001, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999981, 0.99999981, 0.99999981, 0.99999981, 0.99999812,
0.99999812, 0.99999812, 0.99999812, 0.99998381, 0.99998381,
0.99998381, 0.99998381, 0.99988072, 0.99988072, 0.99988072,
0.99988072, 0.99926394, 0.99926394, 0.99926394, 0.99926394,
0.99629293, 0.99629293, 0.99629293, 0.99629293, 0.98522251,
0.98522251, 0.98522251, 0.98522251, 0.95457584, 0.95457584,
0.95457584, 0.95457584, 0.89280503, 0.89280503, 0.89280503,
0.89280503, 0.80007672, 0.80007672, 0.80007672, 0.80007672,
0.70045666, 0.70045666, 0.70045666, 0.70045666, 0.62631673,
0.62631673, 0.62631673, 0.62631673, 0.60514204, 0.60514204,
0.60514204, 0.60514204, 0.59141774, 0.59141774, 0.59141774,
0.59141774, 0.57060546, 0.57060546, 0.57060546, 0.57060546,
0.53581477, 0.53581477, 0.53581477, 0.53581477, 0.48414835,
0.48414835, 0.48414835, 0.48414835, 0.41731063, 0.41731063,
0.41731063, 0.41731063, 0.36078704, 0.36078704, 0.36078704,
0.36078704, 0.32184882, 0.32184882, 0.32184882, 0.32184882,
0.28122767, 0.28122767, 0.28122767, 0.28122767, 0.20285998,
0.20285998, 0.20285998, 0.20285998, 0.13769277, 0.13769277,
0.13769277, 0.13769277, 0.12617394, 0.12617394, 0.12617394,
0.12617394, 0.12509074, 0.12509074, 0.12509074, 0.12509074,
0.12500673, 0.12500673, 0.12500673, 0.12500673, 0.12500049,
0.12500049, 0.12500049, 0.12500049, 0.12500004, 0.12500004,
0.12500004, 0.12500004, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000020e-01, 7.50000020e-01, 7.50000020e-01, 7.50000020e-01,
7.50000224e-01, 7.50000224e-01, 7.50000224e-01, 7.50000224e-01,
7.50002223e-01, 7.50002223e-01, 7.50002223e-01, 7.50002223e-01,
7.50019160e-01, 7.50019160e-01, 7.50019160e-01, 7.50019160e-01,
7.50141119e-01, 7.50141119e-01, 7.50141119e-01, 7.50141119e-01,
7.50870743e-01, 7.50870743e-01, 7.50870743e-01, 7.50870743e-01,
7.54387642e-01, 7.54387642e-01, 7.54387642e-01, 7.54387642e-01,
7.67558867e-01, 7.67558867e-01, 7.67558867e-01, 7.67558867e-01,
8.04718986e-01, 8.04718986e-01, 8.04718986e-01, 8.04718986e-01,
8.83124089e-01, 8.83124089e-01, 8.83124089e-01, 8.83124089e-01,
1.01048782e+00, 1.01048782e+00, 1.01048782e+00, 1.01048782e+00,
1.15015373e+00, 1.15015373e+00, 1.15015373e+00, 1.15015373e+00,
1.27828995e+00, 1.27828995e+00, 1.27828995e+00, 1.27828995e+00,
1.33996420e+00, 1.33996420e+00, 1.33996420e+00, 1.33996420e+00,
1.35434258e+00, 1.35434258e+00, 1.35434258e+00, 1.35434258e+00,
1.35651250e+00, 1.35651250e+00, 1.35651250e+00, 1.35651250e+00,
1.35943170e+00, 1.35943170e+00, 1.35943170e+00, 1.35943170e+00,
1.36562928e+00, 1.36562928e+00, 1.36562928e+00, 1.36562928e+00,
1.36871828e+00, 1.36871828e+00, 1.36871828e+00, 1.36871828e+00,
1.36559918e+00, 1.36559918e+00, 1.36559918e+00, 1.36559918e+00,
1.33410068e+00, 1.33410068e+00, 1.33410068e+00, 1.33410068e+00,
1.18316118e+00, 1.18316118e+00, 1.18316118e+00, 1.18316118e+00,
6.83501416e-01, 6.83501416e-01, 6.83501416e-01, 6.83501416e-01,
1.23082855e-01, 1.23082855e-01, 1.23082855e-01, 1.23082855e-01,
1.05135867e-02, 1.05135867e-02, 1.05135867e-02, 1.05135867e-02,
7.79480203e-04, 7.79480203e-04, 7.79480203e-04, 7.79480203e-04,
5.71875744e-05, 5.71875744e-05, 5.71875744e-05, 5.71875744e-05,
4.16908647e-06, 4.16908647e-06, 4.16908647e-06, 4.16908647e-06,
3.00491897e-07, 3.00491897e-07, 3.00491897e-07, 3.00491897e-07,
2.12578537e-08, 2.12578537e-08, 2.12578537e-08, 2.12578537e-08,
1.46423018e-09, 1.46423018e-09, 1.46423018e-09, 1.46423018e-09,
9.73781859e-11, 9.73781859e-11, 9.73781859e-11, 9.73781859e-11,
6.20162096e-12, 6.20162096e-12, 6.20162096e-12, 6.20162096e-12,
3.75332869e-13, 3.75332869e-13, 3.75332869e-13, 3.75332869e-13,
2.14560454e-14, 2.14560454e-14, 2.14560454e-14, 2.14560454e-14,
1.07221018e-15, 1.07221018e-15, 1.07221018e-15, 1.07221018e-15,
3.44235441e-17, 3.44235441e-17, 3.44235441e-17, 3.44235441e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999737,
0.99999737, 0.99999737, 0.99999737, 0.99997733, 0.99997733,
0.99997733, 0.99997733, 0.99983304, 0.99983304, 0.99983304,
0.99983304, 0.9989702 , 0.9989702 , 0.9989702 , 0.9989702 ,
0.99482119, 0.99482119, 0.99482119, 0.99482119, 0.97943416,
0.97943416, 0.97943416, 0.97943416, 0.93729763, 0.93729763,
0.93729763, 0.93729763, 0.85415822, 0.85415822, 0.85415822,
0.85415822, 0.73373529, 0.73373529, 0.73373529, 0.73373529,
0.6112099 , 0.6112099 , 0.6112099 , 0.6112099 , 0.52160141,
0.52160141, 0.52160141, 0.52160141, 0.47759878, 0.47759878,
0.47759878, 0.47759878, 0.465481 , 0.465481 , 0.465481 ,
0.465481 , 0.46501776, 0.46501776, 0.46501776, 0.46501776,
0.46641955, 0.46641955, 0.46641955, 0.46641955, 0.46863112,
0.46863112, 0.46863112, 0.46863112, 0.46903125, 0.46903125,
0.46903125, 0.46903125, 0.466292 , 0.466292 , 0.466292 ,
0.466292 , 0.45159727, 0.45159727, 0.45159727, 0.45159727,
0.38874303, 0.38874303, 0.38874303, 0.38874303, 0.22928284,
0.22928284, 0.22928284, 0.22928284, 0.11739066, 0.11739066,
0.11739066, 0.11739066, 0.10139613, 0.10139613, 0.10139613,
0.10139613, 0.10010314, 0.10010314, 0.10010314, 0.10010314,
0.10000757, 0.10000757, 0.10000757, 0.10000757, 0.10000055,
0.10000055, 0.10000055, 0.10000055, 0.10000004, 0.10000004,
0.10000004, 0.10000004, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999965, 0.99999965, 0.99999965, 0.99999965, 0.99999676,
0.99999676, 0.99999676, 0.99999676, 0.99997414, 0.99997414,
0.99997414, 0.99997414, 0.99982322, 0.99982322, 0.99982322,
0.99982322, 0.99898687, 0.99898687, 0.99898687, 0.99898687,
0.99525772, 0.99525772, 0.99525772, 0.99525772, 0.98239165,
0.98239165, 0.98239165, 0.98239165, 0.94927458, 0.94927458,
0.94927458, 0.94927458, 0.88652829, 0.88652829, 0.88652829,
0.88652829, 0.79650788, 0.79650788, 0.79650788, 0.79650788,
0.70249376, 0.70249376, 0.70249376, 0.70249376, 0.62636848,
0.62636848, 0.62636848, 0.62636848, 0.60412838, 0.60412838,
0.60412838, 0.60412838, 0.59491245, 0.59491245, 0.59491245,
0.59491245, 0.57973366, 0.57973366, 0.57973366, 0.57973366,
0.55197703, 0.55197703, 0.55197703, 0.55197703, 0.50772236,
0.50772236, 0.50772236, 0.50772236, 0.44720509, 0.44720509,
0.44720509, 0.44720509, 0.38317069, 0.38317069, 0.38317069,
0.38317069, 0.34144572, 0.34144572, 0.34144572, 0.34144572,
0.30939376, 0.30939376, 0.30939376, 0.30939376, 0.26448525,
0.26448525, 0.26448525, 0.26448525, 0.17617514, 0.17617514,
0.17617514, 0.17617514, 0.1314537 , 0.1314537 , 0.1314537 ,
0.1314537 , 0.1255488 , 0.1255488 , 0.1255488 , 0.1255488 ,
0.12504168, 0.12504168, 0.12504168, 0.12504168, 0.12500308,
0.12500308, 0.12500308, 0.12500308, 0.12500022, 0.12500022,
0.12500022, 0.12500022, 0.12500002, 0.12500002, 0.12500002,
0.12500002, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000040e-01, 7.50000040e-01, 7.50000040e-01, 7.50000040e-01,
7.50000416e-01, 7.50000416e-01, 7.50000416e-01, 7.50000416e-01,
7.50003829e-01, 7.50003829e-01, 7.50003829e-01, 7.50003829e-01,
7.50030595e-01, 7.50030595e-01, 7.50030595e-01, 7.50030595e-01,
7.50209148e-01, 7.50209148e-01, 7.50209148e-01, 7.50209148e-01,
7.51198600e-01, 7.51198600e-01, 7.51198600e-01, 7.51198600e-01,
7.55615304e-01, 7.55615304e-01, 7.55615304e-01, 7.55615304e-01,
7.70951868e-01, 7.70951868e-01, 7.70951868e-01, 7.70951868e-01,
8.11275275e-01, 8.11275275e-01, 8.11275275e-01, 8.11275275e-01,
8.91370127e-01, 8.91370127e-01, 8.91370127e-01, 8.91370127e-01,
1.01552397e+00, 1.01552397e+00, 1.01552397e+00, 1.01552397e+00,
1.14807632e+00, 1.14807632e+00, 1.14807632e+00, 1.14807632e+00,
1.27251928e+00, 1.27251928e+00, 1.27251928e+00, 1.27251928e+00,
1.33824106e+00, 1.33824106e+00, 1.33824106e+00, 1.33824106e+00,
1.35468133e+00, 1.35468133e+00, 1.35468133e+00, 1.35468133e+00,
1.35603990e+00, 1.35603990e+00, 1.35603990e+00, 1.35603990e+00,
1.35749304e+00, 1.35749304e+00, 1.35749304e+00, 1.35749304e+00,
1.36161701e+00, 1.36161701e+00, 1.36161701e+00, 1.36161701e+00,
1.36709517e+00, 1.36709517e+00, 1.36709517e+00, 1.36709517e+00,
1.36853942e+00, 1.36853942e+00, 1.36853942e+00, 1.36853942e+00,
1.35998310e+00, 1.35998310e+00, 1.35998310e+00, 1.35998310e+00,
1.30814871e+00, 1.30814871e+00, 1.30814871e+00, 1.30814871e+00,
1.07919686e+00, 1.07919686e+00, 1.07919686e+00, 1.07919686e+00,
4.71939660e-01, 4.71939660e-01, 4.71939660e-01, 4.71939660e-01,
6.10545409e-02, 6.10545409e-02, 6.10545409e-02, 6.10545409e-02,
4.82456880e-03, 4.82456880e-03, 4.82456880e-03, 4.82456880e-03,
3.56247646e-04, 3.56247646e-04, 3.56247646e-04, 3.56247646e-04,
2.61067770e-05, 2.61067770e-05, 2.61067770e-05, 2.61067770e-05,
1.90472760e-06, 1.90472760e-06, 1.90472760e-06, 1.90472760e-06,
1.37703296e-07, 1.37703296e-07, 1.37703296e-07, 1.37703296e-07,
9.80046714e-09, 9.80046714e-09, 9.80046714e-09, 9.80046714e-09,
6.81680766e-10, 6.81680766e-10, 6.81680766e-10, 6.81680766e-10,
4.59859347e-11, 4.59859347e-11, 4.59859347e-11, 4.59859347e-11,
2.98599883e-12, 2.98599883e-12, 2.98599883e-12, 2.98599883e-12,
1.85306740e-13, 1.85306740e-13, 1.85306740e-13, 1.85306740e-13,
1.08045186e-14, 1.08045186e-14, 1.08045186e-14, 1.08045186e-14,
5.92240191e-16, 5.92240191e-16, 5.92240191e-16, 5.92240191e-16,
3.36083066e-17, 3.36083066e-17, 3.36083066e-17, 3.36083066e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999995, 0.99999995, 0.99999995, 0.99999995,
0.99999951, 0.99999951, 0.99999951, 0.99999951, 0.99999547,
0.99999547, 0.99999547, 0.99999547, 0.9999638 , 0.9999638 ,
0.9999638 , 0.9999638 , 0.99975256, 0.99975256, 0.99975256,
0.99975256, 0.99858272, 0.99858272, 0.99858272, 0.99858272,
0.99337694, 0.99337694, 0.99337694, 0.99337694, 0.97550929,
0.97550929, 0.97550929, 0.97550929, 0.93004626, 0.93004626,
0.93004626, 0.93004626, 0.84577195, 0.84577195, 0.84577195,
0.84577195, 0.72903811, 0.72903811, 0.72903811, 0.72903811,
0.61232549, 0.61232549, 0.61232549, 0.61232549, 0.52517321,
0.52517321, 0.52517321, 0.52517321, 0.48111312, 0.48111312,
0.48111312, 0.48111312, 0.46690051, 0.46690051, 0.46690051,
0.46690051, 0.46488503, 0.46488503, 0.46488503, 0.46488503,
0.46527105, 0.46527105, 0.46527105, 0.46527105, 0.46650029,
0.46650029, 0.46650029, 0.46650029, 0.46823227, 0.46823227,
0.46823227, 0.46823227, 0.46775485, 0.46775485, 0.46775485,
0.46775485, 0.46346347, 0.46346347, 0.46346347, 0.46346347,
0.43993022, 0.43993022, 0.43993022, 0.43993022, 0.35059336,
0.35059336, 0.35059336, 0.35059336, 0.17933862, 0.17933862,
0.17933862, 0.17933862, 0.10832159, 0.10832159, 0.10832159,
0.10832159, 0.1006392 , 0.1006392 , 0.1006392 , 0.1006392 ,
0.10004713, 0.10004713, 0.10004713, 0.10004713, 0.10000345,
0.10000345, 0.10000345, 0.10000345, 0.10000025, 0.10000025,
0.10000025, 0.10000025, 0.10000002, 0.10000002, 0.10000002,
0.10000002, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999937, 0.99999937, 0.99999937, 0.99999937, 0.99999463,
0.99999463, 0.99999463, 0.99999463, 0.99996001, 0.99996001,
0.99996001, 0.99996001, 0.99974513, 0.99974513, 0.99974513,
0.99974513, 0.99863764, 0.99863764, 0.99863764, 0.99863764,
0.99404812, 0.99404812, 0.99404812, 0.99404812, 0.97932361,
0.97932361, 0.97932361, 0.97932361, 0.94391361, 0.94391361,
0.94391361, 0.94391361, 0.88052889, 0.88052889, 0.88052889,
0.88052889, 0.7932456 , 0.7932456 , 0.7932456 , 0.7932456 ,
0.70476828, 0.70476828, 0.70476828, 0.70476828, 0.62723661,
0.62723661, 0.62723661, 0.62723661, 0.60206706, 0.60206706,
0.60206706, 0.60206706, 0.5963246 , 0.5963246 , 0.5963246 ,
0.5963246 , 0.58637919, 0.58637919, 0.58637919, 0.58637919,
0.56513598, 0.56513598, 0.56513598, 0.56513598, 0.52823708,
0.52823708, 0.52823708, 0.52823708, 0.47484775, 0.47484775,
0.47484775, 0.47484775, 0.40888641, 0.40888641, 0.40888641,
0.40888641, 0.35916094, 0.35916094, 0.35916094, 0.35916094,
0.32770215, 0.32770215, 0.32770215, 0.32770215, 0.29918377,
0.29918377, 0.29918377, 0.29918377, 0.24277737, 0.24277737,
0.24277737, 0.24277737, 0.1544822 , 0.1544822 , 0.1544822 ,
0.1544822 , 0.12813873, 0.12813873, 0.12813873, 0.12813873,
0.12525473, 0.12525473, 0.12525473, 0.12525473, 0.12501909,
0.12501909, 0.12501909, 0.12501909, 0.12500141, 0.12500141,
0.12500141, 0.12500141, 0.1250001 , 0.1250001 , 0.1250001 ,
0.1250001 , 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
7.50000076e-01, 7.50000076e-01, 7.50000076e-01, 7.50000076e-01,
7.50000743e-01, 7.50000743e-01, 7.50000743e-01, 7.50000743e-01,
7.50006355e-01, 7.50006355e-01, 7.50006355e-01, 7.50006355e-01,
7.50047312e-01, 7.50047312e-01, 7.50047312e-01, 7.50047312e-01,
7.50301532e-01, 7.50301532e-01, 7.50301532e-01, 7.50301532e-01,
7.51611926e-01, 7.51611926e-01, 7.51611926e-01, 7.51611926e-01,
7.57051218e-01, 7.57051218e-01, 7.57051218e-01, 7.57051218e-01,
7.74639815e-01, 7.74639815e-01, 7.74639815e-01, 7.74639815e-01,
8.17938711e-01, 8.17938711e-01, 8.17938711e-01, 8.17938711e-01,
8.99300214e-01, 8.99300214e-01, 8.99300214e-01, 8.99300214e-01,
1.02004865e+00, 1.02004865e+00, 1.02004865e+00, 1.02004865e+00,
1.14652531e+00, 1.14652531e+00, 1.14652531e+00, 1.14652531e+00,
1.26652821e+00, 1.26652821e+00, 1.26652821e+00, 1.26652821e+00,
1.33548200e+00, 1.33548200e+00, 1.33548200e+00, 1.33548200e+00,
1.35534630e+00, 1.35534630e+00, 1.35534630e+00, 1.35534630e+00,
1.35643148e+00, 1.35643148e+00, 1.35643148e+00, 1.35643148e+00,
1.35688841e+00, 1.35688841e+00, 1.35688841e+00, 1.35688841e+00,
1.35905944e+00, 1.35905944e+00, 1.35905944e+00, 1.35905944e+00,
1.36376675e+00, 1.36376675e+00, 1.36376675e+00, 1.36376675e+00,
1.36790199e+00, 1.36790199e+00, 1.36790199e+00, 1.36790199e+00,
1.36676900e+00, 1.36676900e+00, 1.36676900e+00, 1.36676900e+00,
1.35107712e+00, 1.35107712e+00, 1.35107712e+00, 1.35107712e+00,
1.26776498e+00, 1.26776498e+00, 1.26776498e+00, 1.26776498e+00,
9.35091603e-01, 9.35091603e-01, 9.35091603e-01, 9.35091603e-01,
2.80578131e-01, 2.80578131e-01, 2.80578131e-01, 2.80578131e-01,
2.89234526e-02, 2.89234526e-02, 2.89234526e-02, 2.89234526e-02,
2.21034091e-03, 2.21034091e-03, 2.21034091e-03, 2.21034091e-03,
1.62586243e-04, 1.62586243e-04, 1.62586243e-04, 1.62586243e-04,
1.19199001e-05, 1.19199001e-05, 1.19199001e-05, 1.19199001e-05,
8.70329480e-07, 8.70329480e-07, 8.70329480e-07, 8.70329480e-07,
6.30649885e-08, 6.30649885e-08, 6.30649885e-08, 6.30649885e-08,
4.51037180e-09, 4.51037180e-09, 4.51037180e-09, 4.51037180e-09,
3.16293216e-10, 3.16293216e-10, 3.16293216e-10, 3.16293216e-10,
2.15961374e-11, 2.15961374e-11, 2.15961374e-11, 2.15961374e-11,
1.42561215e-12, 1.42561215e-12, 1.42561215e-12, 1.42561215e-12,
9.02795039e-14, 9.02795039e-14, 9.02795039e-14, 9.02795039e-14,
5.44358060e-15, 5.44358060e-15, 5.44358060e-15, 5.44358060e-15,
3.46618598e-16, 3.46618598e-16, 3.46618598e-16, 3.46618598e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999912, 0.99999912, 0.99999912, 0.99999912, 0.99999248,
0.99999248, 0.99999248, 0.99999248, 0.99994402, 0.99994402,
0.99994402, 0.99994402, 0.99964328, 0.99964328, 0.99964328,
0.99964328, 0.99809443, 0.99809443, 0.99809443, 0.99809443,
0.99169035, 0.99169035, 0.99169035, 0.99169035, 0.97126076,
0.97126076, 0.97126076, 0.97126076, 0.92272829, 0.92272829,
0.92272829, 0.92272829, 0.83776294, 0.83776294, 0.83776294,
0.83776294, 0.72464681, 0.72464681, 0.72464681, 0.72464681,
0.6136125 , 0.6136125 , 0.6136125 , 0.6136125 , 0.52827001,
0.52827001, 0.52827001, 0.52827001, 0.48410084, 0.48410084,
0.48410084, 0.48410084, 0.46873669, 0.46873669, 0.46873669,
0.46873669, 0.465321 , 0.465321 , 0.465321 , 0.465321 ,
0.46494758, 0.46494758, 0.46494758, 0.46494758, 0.46514031,
0.46514031, 0.46514031, 0.46514031, 0.46651691, 0.46651691,
0.46651691, 0.46651691, 0.46747205, 0.46747205, 0.46747205,
0.46747205, 0.46667036, 0.46667036, 0.46667036, 0.46667036,
0.45913733, 0.45913733, 0.45913733, 0.45913733, 0.42245963,
0.42245963, 0.42245963, 0.42245963, 0.30188464, 0.30188464,
0.30188464, 0.30188464, 0.14267451, 0.14267451, 0.14267451,
0.14267451, 0.10387503, 0.10387503, 0.10387503, 0.10387503,
0.10029258, 0.10029258, 0.10029258, 0.10029258, 0.10002151,
0.10002151, 0.10002151, 0.10002151, 0.10000158, 0.10000158,
0.10000158, 0.10000158, 0.10000012, 0.10000012, 0.10000012,
0.10000012, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99999137,
0.99999137, 0.99999137, 0.99999137, 0.9999399 , 0.9999399 ,
0.9999399 , 0.9999399 , 0.99964148, 0.99964148, 0.99964148,
0.99964148, 0.9982058 , 0.9982058 , 0.9982058 , 0.9982058 ,
0.99265642, 0.99265642, 0.99265642, 0.99265642, 0.97603583,
0.97603583, 0.97603583, 0.97603583, 0.93852726, 0.93852726,
0.93852726, 0.93852726, 0.87480059, 0.87480059, 0.87480059,
0.87480059, 0.79029824, 0.79029824, 0.79029824, 0.79029824,
0.70698986, 0.70698986, 0.70698986, 0.70698986, 0.6291912 ,
0.6291912 , 0.6291912 , 0.6291912 , 0.59965944, 0.59965944,
0.59965944, 0.59965944, 0.59596883, 0.59596883, 0.59596883,
0.59596883, 0.59053208, 0.59053208, 0.59053208, 0.59053208,
0.5754485 , 0.5754485 , 0.5754485 , 0.5754485 , 0.54568684,
0.54568684, 0.54568684, 0.54568684, 0.49942691, 0.49942691,
0.49942691, 0.49942691, 0.43715677, 0.43715677, 0.43715677,
0.43715677, 0.3785361 , 0.3785361 , 0.3785361 , 0.3785361 ,
0.34229804, 0.34229804, 0.34229804, 0.34229804, 0.31792866,
0.31792866, 0.31792866, 0.31792866, 0.28869213, 0.28869213,
0.28869213, 0.28869213, 0.21502361, 0.21502361, 0.21502361,
0.21502361, 0.14073628, 0.14073628, 0.14073628, 0.14073628,
0.12650253, 0.12650253, 0.12650253, 0.12650253, 0.12511712,
0.12511712, 0.12511712, 0.12511712, 0.12500873, 0.12500873,
0.12500873, 0.12500873, 0.12500064, 0.12500064, 0.12500064,
0.12500064, 0.12500005, 0.12500005, 0.12500005, 0.12500005,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
7.50000141e-01, 7.50000141e-01, 7.50000141e-01, 7.50000141e-01,
7.50001276e-01, 7.50001276e-01, 7.50001276e-01, 7.50001276e-01,
7.50010210e-01, 7.50010210e-01, 7.50010210e-01, 7.50010210e-01,
7.50071106e-01, 7.50071106e-01, 7.50071106e-01, 7.50071106e-01,
7.50424168e-01, 7.50424168e-01, 7.50424168e-01, 7.50424168e-01,
7.52123167e-01, 7.52123167e-01, 7.52123167e-01, 7.52123167e-01,
7.58705271e-01, 7.58705271e-01, 7.58705271e-01, 7.58705271e-01,
7.78604138e-01, 7.78604138e-01, 7.78604138e-01, 7.78604138e-01,
8.24667213e-01, 8.24667213e-01, 8.24667213e-01, 8.24667213e-01,
9.06930229e-01, 9.06930229e-01, 9.06930229e-01, 9.06930229e-01,
1.02400230e+00, 1.02400230e+00, 1.02400230e+00, 1.02400230e+00,
1.14543639e+00, 1.14543639e+00, 1.14543639e+00, 1.14543639e+00,
1.26083347e+00, 1.26083347e+00, 1.26083347e+00, 1.26083347e+00,
1.33169331e+00, 1.33169331e+00, 1.33169331e+00, 1.33169331e+00,
1.35558798e+00, 1.35558798e+00, 1.35558798e+00, 1.35558798e+00,
1.35748922e+00, 1.35748922e+00, 1.35748922e+00, 1.35748922e+00,
1.35707583e+00, 1.35707583e+00, 1.35707583e+00, 1.35707583e+00,
1.35801616e+00, 1.35801616e+00, 1.35801616e+00, 1.35801616e+00,
1.36080683e+00, 1.36080683e+00, 1.36080683e+00, 1.36080683e+00,
1.36564217e+00, 1.36564217e+00, 1.36564217e+00, 1.36564217e+00,
1.36731393e+00, 1.36731393e+00, 1.36731393e+00, 1.36731393e+00,
1.36391260e+00, 1.36391260e+00, 1.36391260e+00, 1.36391260e+00,
1.33675447e+00, 1.33675447e+00, 1.33675447e+00, 1.33675447e+00,
1.20527086e+00, 1.20527086e+00, 1.20527086e+00, 1.20527086e+00,
7.48851135e-01, 7.48851135e-01, 7.48851135e-01, 7.48851135e-01,
1.51176427e-01, 1.51176427e-01, 1.51176427e-01, 1.51176427e-01,
1.35019359e-02, 1.35019359e-02, 1.35019359e-02, 1.35019359e-02,
1.00744606e-03, 1.00744606e-03, 1.00744606e-03, 1.00744606e-03,
7.41979754e-05, 7.41979754e-05, 7.41979754e-05, 7.41979754e-05,
5.44259245e-06, 5.44259245e-06, 5.44259245e-06, 5.44259245e-06,
3.97695182e-07, 3.97695182e-07, 3.97695182e-07, 3.97695182e-07,
2.88737197e-08, 2.88737197e-08, 2.88737197e-08, 2.88737197e-08,
2.07323036e-09, 2.07323036e-09, 2.07323036e-09, 2.07323036e-09,
1.46378112e-10, 1.46378112e-10, 1.46378112e-10, 1.46378112e-10,
1.00972396e-11, 1.00972396e-11, 1.00972396e-11, 1.00972396e-11,
6.75961800e-13, 6.75961800e-13, 6.75961800e-13, 6.75961800e-13,
4.36475480e-14, 4.36475480e-14, 4.36475480e-14, 4.36475480e-14,
2.72468011e-15, 2.72468011e-15, 2.72468011e-15, 2.72468011e-15,
1.63168395e-16, 1.63168395e-16, 1.63168395e-16, 1.63168395e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999983, 0.99999983, 0.99999983, 0.99999983,
0.99999849, 0.99999849, 0.99999849, 0.99999849, 0.99998792,
0.99998792, 0.99998792, 0.99998792, 0.99991587, 0.99991587,
0.99991587, 0.99991587, 0.99949823, 0.99949823, 0.99949823,
0.99949823, 0.9974908 , 0.9974908 , 0.9974908 , 0.9974908 ,
0.98975108, 0.98975108, 0.98975108, 0.98975108, 0.96671385,
0.96671385, 0.96671385, 0.96671385, 0.91539051, 0.91539051,
0.91539051, 0.91539051, 0.83010759, 0.83010759, 0.83010759,
0.83010759, 0.72047423, 0.72047423, 0.72047423, 0.72047423,
0.61506756, 0.61506756, 0.61506756, 0.61506756, 0.53125219,
0.53125219, 0.53125219, 0.53125219, 0.48653051, 0.48653051,
0.48653051, 0.48653051, 0.47051006, 0.47051006, 0.47051006,
0.47051006, 0.46624138, 0.46624138, 0.46624138, 0.46624138,
0.46510466, 0.46510466, 0.46510466, 0.46510466, 0.46465008,
0.46465008, 0.46465008, 0.46465008, 0.4649645 , 0.4649645 ,
0.4649645 , 0.4649645 , 0.46635721, 0.46635721, 0.46635721,
0.46635721, 0.4669385 , 0.4669385 , 0.4669385 , 0.4669385 ,
0.46507386, 0.46507386, 0.46507386, 0.46507386, 0.45256509,
0.45256509, 0.45256509, 0.45256509, 0.39724826, 0.39724826,
0.39724826, 0.39724826, 0.24626608, 0.24626608, 0.24626608,
0.24626608, 0.12167041, 0.12167041, 0.12167041, 0.12167041,
0.10179518, 0.10179518, 0.10179518, 0.10179518, 0.10013331,
0.10013331, 0.10013331, 0.10013331, 0.10000982, 0.10000982,
0.10000982, 0.10000982, 0.10000072, 0.10000072, 0.10000072,
0.10000072, 0.10000005, 0.10000005, 0.10000005, 0.10000005,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999979, 0.99999979, 0.99999979, 0.99999979,
0.99999821, 0.99999821, 0.99999821, 0.99999821, 0.99998654,
0.99998654, 0.99998654, 0.99998654, 0.99991195, 0.99991195,
0.99991195, 0.99991195, 0.99950669, 0.99950669, 0.99950669,
0.99950669, 0.99768098, 0.99768098, 0.99768098, 0.99768098,
0.99107741, 0.99107741, 0.99107741, 0.99107741, 0.97254809,
0.97254809, 0.97254809, 0.97254809, 0.93314576, 0.93314576,
0.93314576, 0.93314576, 0.86931013, 0.86931013, 0.86931013,
0.86931013, 0.78745561, 0.78745561, 0.78745561, 0.78745561,
0.70912742, 0.70912742, 0.70912742, 0.70912742, 0.63224649,
0.63224649, 0.63224649, 0.63224649, 0.59761707, 0.59761707,
0.59761707, 0.59761707, 0.59438022, 0.59438022, 0.59438022,
0.59438022, 0.5922818 , 0.5922818 , 0.5922818 , 0.5922818 ,
0.58292186, 0.58292186, 0.58292186, 0.58292186, 0.56012924,
0.56012924, 0.56012924, 0.56012924, 0.52108056, 0.52108056,
0.52108056, 0.52108056, 0.46554919, 0.46554919, 0.46554919,
0.46554919, 0.40122218, 0.40122218, 0.40122218, 0.40122218,
0.35684472, 0.35684472, 0.35684472, 0.35684472, 0.33092508,
0.33092508, 0.33092508, 0.33092508, 0.3109016 , 0.3109016 ,
0.3109016 , 0.3109016 , 0.2745178 , 0.2745178 , 0.2745178 ,
0.2745178 , 0.18574868, 0.18574868, 0.18574868, 0.18574868,
0.13312446, 0.13312446, 0.13312446, 0.13312446, 0.12570243,
0.12570243, 0.12570243, 0.12570243, 0.12505374, 0.12505374,
0.12505374, 0.12505374, 0.12500399, 0.12500399, 0.12500399,
0.12500399, 0.12500029, 0.12500029, 0.12500029, 0.12500029,
0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
7.50000249e-01, 7.50000249e-01, 7.50000249e-01, 7.50000249e-01,
7.50002122e-01, 7.50002122e-01, 7.50002122e-01, 7.50002122e-01,
7.50015931e-01, 7.50015931e-01, 7.50015931e-01, 7.50015931e-01,
7.50104174e-01, 7.50104174e-01, 7.50104174e-01, 7.50104174e-01,
7.50583657e-01, 7.50583657e-01, 7.50583657e-01, 7.50583657e-01,
7.52744722e-01, 7.52744722e-01, 7.52744722e-01, 7.52744722e-01,
7.60584516e-01, 7.60584516e-01, 7.60584516e-01, 7.60584516e-01,
7.82823347e-01, 7.82823347e-01, 7.82823347e-01, 7.82823347e-01,
8.31422691e-01, 8.31422691e-01, 8.31422691e-01, 8.31422691e-01,
9.14253491e-01, 9.14253491e-01, 9.14253491e-01, 9.14253491e-01,
1.02753151e+00, 1.02753151e+00, 1.02753151e+00, 1.02753151e+00,
1.14446418e+00, 1.14446418e+00, 1.14446418e+00, 1.14446418e+00,
1.25572429e+00, 1.25572429e+00, 1.25572429e+00, 1.25572429e+00,
1.32726860e+00, 1.32726860e+00, 1.32726860e+00, 1.32726860e+00,
1.35494148e+00, 1.35494148e+00, 1.35494148e+00, 1.35494148e+00,
1.35862615e+00, 1.35862615e+00, 1.35862615e+00, 1.35862615e+00,
1.35792280e+00, 1.35792280e+00, 1.35792280e+00, 1.35792280e+00,
1.35790930e+00, 1.35790930e+00, 1.35790930e+00, 1.35790930e+00,
1.35939545e+00, 1.35939545e+00, 1.35939545e+00, 1.35939545e+00,
1.36269094e+00, 1.36269094e+00, 1.36269094e+00, 1.36269094e+00,
1.36606975e+00, 1.36606975e+00, 1.36606975e+00, 1.36606975e+00,
1.36643658e+00, 1.36643658e+00, 1.36643658e+00, 1.36643658e+00,
1.35906893e+00, 1.35906893e+00, 1.35906893e+00, 1.35906893e+00,
1.31349500e+00, 1.31349500e+00, 1.31349500e+00, 1.31349500e+00,
1.11168051e+00, 1.11168051e+00, 1.11168051e+00, 1.11168051e+00,
5.39000363e-01, 5.39000363e-01, 5.39000363e-01, 5.39000363e-01,
7.70165641e-02, 7.70165641e-02, 7.70165641e-02, 7.70165641e-02,
6.19417821e-03, 6.19417821e-03, 6.19417821e-03, 6.19417821e-03,
4.59703599e-04, 4.59703599e-04, 4.59703599e-04, 4.59703599e-04,
3.38422021e-05, 3.38422021e-05, 3.38422021e-05, 3.38422021e-05,
2.48403190e-06, 2.48403190e-06, 2.48403190e-06, 2.48403190e-06,
1.81703671e-07, 1.81703671e-07, 1.81703671e-07, 1.81703671e-07,
1.32143978e-08, 1.32143978e-08, 1.32143978e-08, 1.32143978e-08,
9.51971465e-10, 9.51971465e-10, 9.51971465e-10, 9.51971465e-10,
6.75952916e-11, 6.75952916e-11, 6.75952916e-11, 6.75952916e-11,
4.70333296e-12, 4.70333296e-12, 4.70333296e-12, 4.70333296e-12,
3.18764056e-13, 3.18764056e-13, 3.18764056e-13, 3.18764056e-13,
2.09144307e-14, 2.09144307e-14, 2.09144307e-14, 2.09144307e-14,
1.34091434e-15, 1.34091434e-15, 1.34091434e-15, 1.34091434e-15,
7.02262902e-17, 7.02262902e-17, 7.02262902e-17, 7.02262902e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
0.99999749, 0.99999749, 0.99999749, 0.99999749, 0.99998115,
0.99998115, 0.99998115, 0.99998115, 0.99987675, 0.99987675,
0.99987675, 0.99987675, 0.99930963, 0.99930963, 0.99930963,
0.99930963, 0.9967574 , 0.9967574 , 0.9967574 , 0.9967574 ,
0.98755235, 0.98755235, 0.98755235, 0.98755235, 0.961897 ,
0.961897 , 0.961897 , 0.961897 , 0.90807418, 0.90807418,
0.90807418, 0.90807418, 0.82280457, 0.82280457, 0.82280457,
0.82280457, 0.71660108, 0.71660108, 0.71660108, 0.71660108,
0.61647152, 0.61647152, 0.61647152, 0.61647152, 0.53433754,
0.53433754, 0.53433754, 0.53433754, 0.48862858, 0.48862858,
0.48862858, 0.48862858, 0.47191446, 0.47191446, 0.47191446,
0.47191446, 0.46731186, 0.46731186, 0.46731186, 0.46731186,
0.46568567, 0.46568567, 0.46568567, 0.46568567, 0.46466716,
0.46466716, 0.46466716, 0.46466716, 0.46428833, 0.46428833,
0.46428833, 0.46428833, 0.46483777, 0.46483777, 0.46483777,
0.46483777, 0.46633071, 0.46633071, 0.46633071, 0.46633071,
0.46626754, 0.46626754, 0.46626754, 0.46626754, 0.46271596,
0.46271596, 0.46271596, 0.46271596, 0.44260208, 0.44260208,
0.44260208, 0.44260208, 0.36235029, 0.36235029, 0.36235029,
0.36235029, 0.19361303, 0.19361303, 0.19361303, 0.19361303,
0.11058547, 0.11058547, 0.11058547, 0.11058547, 0.10082107,
0.10082107, 0.10082107, 0.10082107, 0.10006082, 0.10006082,
0.10006082, 0.10006082, 0.10000448, 0.10000448, 0.10000448,
0.10000448, 0.10000033, 0.10000033, 0.10000033, 0.10000033,
0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999996, 0.99999996, 0.99999996,
0.99999996, 0.99999964, 0.99999964, 0.99999964, 0.99999964,
0.99999711, 0.99999711, 0.99999711, 0.99999711, 0.99997953,
0.99997953, 0.99997953, 0.99997953, 0.99987394, 0.99987394,
0.99987394, 0.99987394, 0.99933463, 0.99933463, 0.99933463,
0.99933463, 0.99705312, 0.99705312, 0.99705312, 0.99705312,
0.98930851, 0.98930851, 0.98930851, 0.98930851, 0.96888183,
0.96888183, 0.96888183, 0.96888183, 0.92779564, 0.92779564,
0.92779564, 0.92779564, 0.86405491, 0.86405491, 0.86405491,
0.86405491, 0.78470523, 0.78470523, 0.78470523, 0.78470523,
0.71095409, 0.71095409, 0.71095409, 0.71095409, 0.63622824,
0.63622824, 0.63622824, 0.63622824, 0.59650729, 0.59650729,
0.59650729, 0.59650729, 0.59187689, 0.59187689, 0.59187689,
0.59187689, 0.59231137, 0.59231137, 0.59231137, 0.59231137,
0.58763049, 0.58763049, 0.58763049, 0.58763049, 0.57146876,
0.57146876, 0.57146876, 0.57146876, 0.53974952, 0.53974952,
0.53974952, 0.53974952, 0.49128145, 0.49128145, 0.49128145,
0.49128145, 0.4279453 , 0.4279453 , 0.4279453 , 0.4279453 ,
0.37383925, 0.37383925, 0.37383925, 0.37383925, 0.34208564,
0.34208564, 0.34208564, 0.34208564, 0.32336538, 0.32336538,
0.32336538, 0.32336538, 0.30459933, 0.30459933, 0.30459933,
0.30459933, 0.25375017, 0.25375017, 0.25375017, 0.25375017,
0.1610919 , 0.1610919 , 0.1610919 , 0.1610919 , 0.12897793,
0.12897793, 0.12897793, 0.12897793, 0.12532639, 0.12532639,
0.12532639, 0.12532639, 0.1250246 , 0.1250246 , 0.1250246 ,
0.1250246 , 0.12500182, 0.12500182, 0.12500182, 0.12500182,
0.12500013, 0.12500013, 0.12500013, 0.12500013, 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
7.50000048e-01, 7.50000048e-01, 7.50000048e-01, 7.50000048e-01,
7.50000428e-01, 7.50000428e-01, 7.50000428e-01, 7.50000428e-01,
7.50003425e-01, 7.50003425e-01, 7.50003425e-01, 7.50003425e-01,
7.50024215e-01, 7.50024215e-01, 7.50024215e-01, 7.50024215e-01,
7.50149149e-01, 7.50149149e-01, 7.50149149e-01, 7.50149149e-01,
7.50787259e-01, 7.50787259e-01, 7.50787259e-01, 7.50787259e-01,
7.53488669e-01, 7.53488669e-01, 7.53488669e-01, 7.53488669e-01,
7.62693058e-01, 7.62693058e-01, 7.62693058e-01, 7.62693058e-01,
7.87273690e-01, 7.87273690e-01, 7.87273690e-01, 7.87273690e-01,
8.38170390e-01, 8.38170390e-01, 8.38170390e-01, 8.38170390e-01,
9.21264845e-01, 9.21264845e-01, 9.21264845e-01, 9.21264845e-01,
1.03075711e+00, 1.03075711e+00, 1.03075711e+00, 1.03075711e+00,
1.14341648e+00, 1.14341648e+00, 1.14341648e+00, 1.14341648e+00,
1.25118970e+00, 1.25118970e+00, 1.25118970e+00, 1.25118970e+00,
1.32270364e+00, 1.32270364e+00, 1.32270364e+00, 1.32270364e+00,
1.35337313e+00, 1.35337313e+00, 1.35337313e+00, 1.35337313e+00,
1.35937786e+00, 1.35937786e+00, 1.35937786e+00, 1.35937786e+00,
1.35905340e+00, 1.35905340e+00, 1.35905340e+00, 1.35905340e+00,
1.35850392e+00, 1.35850392e+00, 1.35850392e+00, 1.35850392e+00,
1.35894967e+00, 1.35894967e+00, 1.35894967e+00, 1.35894967e+00,
1.36090221e+00, 1.36090221e+00, 1.36090221e+00, 1.36090221e+00,
1.36370505e+00, 1.36370505e+00, 1.36370505e+00, 1.36370505e+00,
1.36598769e+00, 1.36598769e+00, 1.36598769e+00, 1.36598769e+00,
1.36486873e+00, 1.36486873e+00, 1.36486873e+00, 1.36486873e+00,
1.35070633e+00, 1.35070633e+00, 1.35070633e+00, 1.35070633e+00,
1.27741452e+00, 1.27741452e+00, 1.27741452e+00, 1.27741452e+00,
9.81464738e-01, 9.81464738e-01, 9.81464738e-01, 9.81464738e-01,
3.36046188e-01, 3.36046188e-01, 3.36046188e-01, 3.36046188e-01,
3.68463062e-02, 3.68463062e-02, 3.68463062e-02, 3.68463062e-02,
2.83912454e-03, 2.83912454e-03, 2.83912454e-03, 2.83912454e-03,
2.09688885e-04, 2.09688885e-04, 2.09688885e-04, 2.09688885e-04,
1.54316406e-05, 1.54316406e-05, 1.54316406e-05, 1.54316406e-05,
1.13356929e-06, 1.13356929e-06, 1.13356929e-06, 1.13356929e-06,
8.29963615e-08, 8.29963615e-08, 8.29963615e-08, 8.29963615e-08,
6.04553786e-09, 6.04553786e-09, 6.04553786e-09, 6.04553786e-09,
4.36752195e-10, 4.36752195e-10, 4.36752195e-10, 4.36752195e-10,
3.11603660e-11, 3.11603660e-11, 3.11603660e-11, 3.11603660e-11,
2.18424142e-12, 2.18424142e-12, 2.18424142e-12, 2.18424142e-12,
1.49600112e-13, 1.49600112e-13, 1.49600112e-13, 1.49600112e-13,
9.91152530e-15, 9.91152530e-15, 9.91152530e-15, 9.91152530e-15,
6.43616174e-16, 6.43616174e-16, 6.43616174e-16, 6.43616174e-16,
3.40906797e-17, 3.40906797e-17, 3.40906797e-17, 3.40906797e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999994, 0.99999994, 0.99999994,
0.99999994, 0.99999949, 0.99999949, 0.99999949, 0.99999949,
0.99999595, 0.99999595, 0.99999595, 0.99999595, 0.99997135,
0.99997135, 0.99997135, 0.99997135, 0.99982354, 0.99982354,
0.99982354, 0.99982354, 0.9990689 , 0.9990689 , 0.9990689 ,
0.9990689 , 0.99588029, 0.99588029, 0.99588029, 0.99588029,
0.98509107, 0.98509107, 0.98509107, 0.98509107, 0.95684085,
0.95684085, 0.95684085, 0.95684085, 0.90081585, 0.90081585,
0.90081585, 0.90081585, 0.81585349, 0.81585349, 0.81585349,
0.81585349, 0.71306117, 0.71306117, 0.71306117, 0.71306117,
0.61770042, 0.61770042, 0.61770042, 0.61770042, 0.53754808,
0.53754808, 0.53754808, 0.53754808, 0.49069344, 0.49069344,
0.49069344, 0.49069344, 0.47291767, 0.47291767, 0.47291767,
0.47291767, 0.46823402, 0.46823402, 0.46823402, 0.46823402,
0.46647842, 0.46647842, 0.46647842, 0.46647842, 0.46510214,
0.46510214, 0.46510214, 0.46510214, 0.46413565, 0.46413565,
0.46413565, 0.46413565, 0.46395683, 0.46395683, 0.46395683,
0.46395683, 0.46511952, 0.46511952, 0.46511952, 0.46511952,
0.46605603, 0.46605603, 0.46605603, 0.46605603, 0.46541207,
0.46541207, 0.46541207, 0.46541207, 0.45926933, 0.45926933,
0.45926933, 0.45926933, 0.42726405, 0.42726405, 0.42726405,
0.42726405, 0.31664309, 0.31664309, 0.31664309, 0.31664309,
0.15234215, 0.15234215, 0.15234215, 0.15234215, 0.10495591,
0.10495591, 0.10495591, 0.10495591, 0.10037589, 0.10037589,
0.10037589, 0.10037589, 0.10002774, 0.10002774, 0.10002774,
0.10002774, 0.10000204, 0.10000204, 0.10000204, 0.10000204,
0.10000015, 0.10000015, 0.10000015, 0.10000015, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999993, 0.99999993, 0.99999993,
0.99999993, 0.9999994 , 0.9999994 , 0.9999994 , 0.9999994 ,
0.99999545, 0.99999545, 0.99999545, 0.99999545, 0.99996962,
0.99996962, 0.99996962, 0.99996962, 0.99982324, 0.99982324,
0.99982324, 0.99982324, 0.9991187 , 0.9991187 , 0.9991187 ,
0.9991187 , 0.9963127 , 0.9963127 , 0.9963127 , 0.9963127 ,
0.98734973, 0.98734973, 0.98734973, 0.98734973, 0.96505957,
0.96505957, 0.96505957, 0.96505957, 0.92250062, 0.92250062,
0.92250062, 0.92250062, 0.85904285, 0.85904285, 0.85904285,
0.85904285, 0.78210563, 0.78210563, 0.78210563, 0.78210563,
0.71214743, 0.71214743, 0.71214743, 0.71214743, 0.64091277,
0.64091277, 0.64091277, 0.64091277, 0.5967045 , 0.5967045 ,
0.5967045 , 0.5967045 , 0.58917295, 0.58917295, 0.58917295,
0.58917295, 0.59108358, 0.59108358, 0.59108358, 0.59108358,
0.58980314, 0.58980314, 0.58980314, 0.58980314, 0.57968492,
0.57968492, 0.57968492, 0.57968492, 0.5552647 , 0.5552647 ,
0.5552647 , 0.5552647 , 0.51411927, 0.51411927, 0.51411927,
0.51411927, 0.45652797, 0.45652797, 0.45652797, 0.45652797,
0.39426685, 0.39426685, 0.39426685, 0.39426685, 0.35435985,
0.35435985, 0.35435985, 0.35435985, 0.33267462, 0.33267462,
0.33267462, 0.33267462, 0.3183219 , 0.3183219 , 0.3183219 ,
0.3183219 , 0.29605972, 0.29605972, 0.29605972, 0.29605972,
0.22620934, 0.22620934, 0.22620934, 0.22620934, 0.1443368 ,
0.1443368 , 0.1443368 , 0.1443368 , 0.12690967, 0.12690967,
0.12690967, 0.12690967, 0.12515044, 0.12515044, 0.12515044,
0.12515044, 0.12501125, 0.12501125, 0.12501125, 0.12501125,
0.12500083, 0.12500083, 0.12500083, 0.12500083, 0.12500006,
0.12500006, 0.12500006, 0.12500006, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000084e-01, 7.50000084e-01, 7.50000084e-01, 7.50000084e-01,
7.50000712e-01, 7.50000712e-01, 7.50000712e-01, 7.50000712e-01,
7.50005384e-01, 7.50005384e-01, 7.50005384e-01, 7.50005384e-01,
7.50035944e-01, 7.50035944e-01, 7.50035944e-01, 7.50035944e-01,
7.50209136e-01, 7.50209136e-01, 7.50209136e-01, 7.50209136e-01,
7.51042813e-01, 7.51042813e-01, 7.51042813e-01, 7.51042813e-01,
7.54366472e-01, 7.54366472e-01, 7.54366472e-01, 7.54366472e-01,
7.65032020e-01, 7.65032020e-01, 7.65032020e-01, 7.65032020e-01,
7.91929802e-01, 7.91929802e-01, 7.91929802e-01, 7.91929802e-01,
8.44879000e-01, 8.44879000e-01, 8.44879000e-01, 8.44879000e-01,
9.27961552e-01, 9.27961552e-01, 9.27961552e-01, 9.27961552e-01,
1.03376284e+00, 1.03376284e+00, 1.03376284e+00, 1.03376284e+00,
1.14223005e+00, 1.14223005e+00, 1.14223005e+00, 1.14223005e+00,
1.24703626e+00, 1.24703626e+00, 1.24703626e+00, 1.24703626e+00,
1.31835154e+00, 1.31835154e+00, 1.31835154e+00, 1.31835154e+00,
1.35115729e+00, 1.35115729e+00, 1.35115729e+00, 1.35115729e+00,
1.35952683e+00, 1.35952683e+00, 1.35952683e+00, 1.35952683e+00,
1.36000050e+00, 1.36000050e+00, 1.36000050e+00, 1.36000050e+00,
1.35946783e+00, 1.35946783e+00, 1.35946783e+00, 1.35946783e+00,
1.35931504e+00, 1.35931504e+00, 1.35931504e+00, 1.35931504e+00,
1.36014004e+00, 1.36014004e+00, 1.36014004e+00, 1.36014004e+00,
1.36169449e+00, 1.36169449e+00, 1.36169449e+00, 1.36169449e+00,
1.36442795e+00, 1.36442795e+00, 1.36442795e+00, 1.36442795e+00,
1.36544109e+00, 1.36544109e+00, 1.36544109e+00, 1.36544109e+00,
1.36179797e+00, 1.36179797e+00, 1.36179797e+00, 1.36179797e+00,
1.33753550e+00, 1.33753550e+00, 1.33753550e+00, 1.33753550e+00,
1.22289370e+00, 1.22289370e+00, 1.22289370e+00, 1.22289370e+00,
8.07609730e-01, 8.07609730e-01, 8.07609730e-01, 8.07609730e-01,
1.84578851e-01, 1.84578851e-01, 1.84578851e-01, 1.84578851e-01,
1.72459356e-02, 1.72459356e-02, 1.72459356e-02, 1.72459356e-02,
1.29636420e-03, 1.29636420e-03, 1.29636420e-03, 1.29636420e-03,
9.56231757e-05, 9.56231757e-05, 9.56231757e-05, 9.56231757e-05,
7.03861571e-06, 7.03861571e-06, 7.03861571e-06, 7.03861571e-06,
5.17203032e-07, 5.17203032e-07, 5.17203032e-07, 5.17203032e-07,
3.79012480e-08, 3.79012480e-08, 3.79012480e-08, 3.79012480e-08,
2.76477945e-09, 2.76477945e-09, 2.76477945e-09, 2.76477945e-09,
2.00229731e-10, 2.00229731e-10, 2.00229731e-10, 2.00229731e-10,
1.43439296e-11, 1.43439296e-11, 1.43439296e-11, 1.43439296e-11,
1.01180886e-12, 1.01180886e-12, 1.01180886e-12, 1.01180886e-12,
6.98829576e-14, 6.98829576e-14, 6.98829576e-14, 6.98829576e-14,
4.66606318e-15, 4.66606318e-15, 4.66606318e-15, 4.66606318e-15,
3.37838020e-16, 3.37838020e-16, 3.37838020e-16, 3.37838020e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999916, 0.99999916, 0.99999916, 0.99999916,
0.99999363, 0.99999363, 0.99999363, 0.99999363, 0.99995747,
0.99995747, 0.99995747, 0.99995747, 0.99975257, 0.99975257,
0.99975257, 0.99975257, 0.99876684, 0.99876684, 0.99876684,
0.99876684, 0.99484634, 0.99484634, 0.99484634, 0.99484634,
0.98236786, 0.98236786, 0.98236786, 0.98236786, 0.95157745,
0.95157745, 0.95157745, 0.95157745, 0.89364753, 0.89364753,
0.89364753, 0.89364753, 0.80925164, 0.80925164, 0.80925164,
0.80925164, 0.70985244, 0.70985244, 0.70985244, 0.70985244,
0.61872344, 0.61872344, 0.61872344, 0.61872344, 0.54078556,
0.54078556, 0.54078556, 0.54078556, 0.49293771, 0.49293771,
0.49293771, 0.49293771, 0.47368455, 0.47368455, 0.47368455,
0.47368455, 0.46885678, 0.46885678, 0.46885678, 0.46885678,
0.46721006, 0.46721006, 0.46721006, 0.46721006, 0.46578019,
0.46578019, 0.46578019, 0.46578019, 0.46443757, 0.46443757,
0.46443757, 0.46443757, 0.46363693, 0.46363693, 0.46363693,
0.46363693, 0.46405796, 0.46405796, 0.46405796, 0.46405796,
0.46529802, 0.46529802, 0.46529802, 0.46529802, 0.46568405,
0.46568405, 0.46568405, 0.46568405, 0.46436586, 0.46436586,
0.46436586, 0.46436586, 0.45372193, 0.45372193, 0.45372193,
0.45372193, 0.40428218, 0.40428218, 0.40428218, 0.40428218,
0.26242895, 0.26242895, 0.26242895, 0.26242895, 0.12688139,
0.12688139, 0.12688139, 0.12688139, 0.10229679, 0.10229679,
0.10229679, 0.10229679, 0.10017155, 0.10017155, 0.10017155,
0.10017155, 0.10001265, 0.10001265, 0.10001265, 0.10001265,
0.10000093, 0.10000093, 0.10000093, 0.10000093, 0.10000007,
0.10000007, 0.10000007, 0.10000007, 0.10000001, 0.10000001,
0.10000001, 0.10000001, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999988, 0.99999988, 0.99999988,
0.99999988, 0.99999902, 0.99999902, 0.99999902, 0.99999902,
0.99999302, 0.99999302, 0.99999302, 0.99999302, 0.99995587,
0.99995587, 0.99995587, 0.99995587, 0.99975682, 0.99975682,
0.99975682, 0.99975682, 0.99885188, 0.99885188, 0.99885188,
0.99885188, 0.99545106, 0.99545106, 0.99545106, 0.99545106,
0.98520362, 0.98520362, 0.98520362, 0.98520362, 0.96110441,
0.96110441, 0.96110441, 0.96110441, 0.91728156, 0.91728156,
0.91728156, 0.91728156, 0.85427981, 0.85427981, 0.85427981,
0.85427981, 0.77971476, 0.77971476, 0.77971476, 0.77971476,
0.71287025, 0.71287025, 0.71287025, 0.71287025, 0.64564457,
0.64564457, 0.64564457, 0.64564457, 0.59826562, 0.59826562,
0.59826562, 0.59826562, 0.58691045, 0.58691045, 0.58691045,
0.58691045, 0.58906206, 0.58906206, 0.58906206, 0.58906206,
0.59003485, 0.59003485, 0.59003485, 0.59003485, 0.58486504,
0.58486504, 0.58486504, 0.58486504, 0.56744401, 0.56744401,
0.56744401, 0.56744401, 0.53390234, 0.53390234, 0.53390234,
0.53390234, 0.48345644, 0.48345644, 0.48345644, 0.48345644,
0.41935629, 0.41935629, 0.41935629, 0.41935629, 0.3694156 ,
0.3694156 , 0.3694156 , 0.3694156 , 0.34157081, 0.34157081,
0.34157081, 0.34157081, 0.3267349 , 0.3267349 , 0.3267349 ,
0.3267349 , 0.31430765, 0.31430765, 0.31430765, 0.31430765,
0.28309759, 0.28309759, 0.28309759, 0.28309759, 0.19541361,
0.19541361, 0.19541361, 0.19541361, 0.13508752, 0.13508752,
0.13508752, 0.13508752, 0.12589416, 0.12589416, 0.12589416,
0.12589416, 0.12506897, 0.12506897, 0.12506897, 0.12506897,
0.12500514, 0.12500514, 0.12500514, 0.12500514, 0.12500038,
0.12500038, 0.12500038, 0.12500038, 0.12500003, 0.12500003,
0.12500003, 0.12500003, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
7.50000144e-01, 7.50000144e-01, 7.50000144e-01, 7.50000144e-01,
7.50001154e-01, 7.50001154e-01, 7.50001154e-01, 7.50001154e-01,
7.50008260e-01, 7.50008260e-01, 7.50008260e-01, 7.50008260e-01,
7.50052218e-01, 7.50052218e-01, 7.50052218e-01, 7.50052218e-01,
7.50287727e-01, 7.50287727e-01, 7.50287727e-01, 7.50287727e-01,
7.51358635e-01, 7.51358635e-01, 7.51358635e-01, 7.51358635e-01,
7.55388706e-01, 7.55388706e-01, 7.55388706e-01, 7.55388706e-01,
7.67599601e-01, 7.67599601e-01, 7.67599601e-01, 7.67599601e-01,
7.96765297e-01, 7.96765297e-01, 7.96765297e-01, 7.96765297e-01,
8.51520678e-01, 8.51520678e-01, 8.51520678e-01, 8.51520678e-01,
9.34344216e-01, 9.34344216e-01, 9.34344216e-01, 9.34344216e-01,
1.03659724e+00, 1.03659724e+00, 1.03659724e+00, 1.03659724e+00,
1.14096365e+00, 1.14096365e+00, 1.14096365e+00, 1.14096365e+00,
1.24306837e+00, 1.24306837e+00, 1.24306837e+00, 1.24306837e+00,
1.31432670e+00, 1.31432670e+00, 1.31432670e+00, 1.31432670e+00,
1.34867754e+00, 1.34867754e+00, 1.34867754e+00, 1.34867754e+00,
1.35900751e+00, 1.35900751e+00, 1.35900751e+00, 1.35900751e+00,
1.36059408e+00, 1.36059408e+00, 1.36059408e+00, 1.36059408e+00,
1.36044668e+00, 1.36044668e+00, 1.36044668e+00, 1.36044668e+00,
1.36010596e+00, 1.36010596e+00, 1.36010596e+00, 1.36010596e+00,
1.36018463e+00, 1.36018463e+00, 1.36018463e+00, 1.36018463e+00,
1.36083030e+00, 1.36083030e+00, 1.36083030e+00, 1.36083030e+00,
1.36234837e+00, 1.36234837e+00, 1.36234837e+00, 1.36234837e+00,
1.36463009e+00, 1.36463009e+00, 1.36463009e+00, 1.36463009e+00,
1.36410988e+00, 1.36410988e+00, 1.36410988e+00, 1.36410988e+00,
1.35701598e+00, 1.35701598e+00, 1.35701598e+00, 1.35701598e+00,
1.31740523e+00, 1.31740523e+00, 1.31740523e+00, 1.31740523e+00,
1.13985851e+00, 1.13985851e+00, 1.13985851e+00, 1.13985851e+00,
6.02207928e-01, 6.02207928e-01, 6.02207928e-01, 6.02207928e-01,
9.54826887e-02, 9.54826887e-02, 9.54826887e-02, 9.54826887e-02,
7.91081899e-03, 7.91081899e-03, 7.91081899e-03, 7.91081899e-03,
5.90658670e-04, 5.90658670e-04, 5.90658670e-04, 5.90658670e-04,
4.36023608e-05, 4.36023608e-05, 4.36023608e-05, 4.36023608e-05,
3.20991156e-06, 3.20991156e-06, 3.20991156e-06, 3.20991156e-06,
2.35963719e-07, 2.35963719e-07, 2.35963719e-07, 2.35963719e-07,
1.73040175e-08, 1.73040175e-08, 1.73040175e-08, 1.73040175e-08,
1.26389111e-09, 1.26389111e-09, 1.26389111e-09, 1.26389111e-09,
9.17314216e-11, 9.17314216e-11, 9.17314216e-11, 9.17314216e-11,
6.59454231e-12, 6.59454231e-12, 6.59454231e-12, 6.59454231e-12,
4.67644782e-13, 4.67644782e-13, 4.67644782e-13, 4.67644782e-13,
3.25389011e-14, 3.25389011e-14, 3.25389011e-14, 3.25389011e-14,
2.17274114e-15, 2.17274114e-15, 2.17274114e-15, 2.17274114e-15,
1.63514197e-16, 1.63514197e-16, 1.63514197e-16, 1.63514197e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999983, 0.99999983, 0.99999983,
0.99999983, 0.99999863, 0.99999863, 0.99999863, 0.99999863,
0.99999023, 0.99999023, 0.99999023, 0.99999023, 0.99993822,
0.99993822, 0.99993822, 0.99993822, 0.99965961, 0.99965961,
0.99965961, 0.99965961, 0.99839366, 0.99839366, 0.99839366,
0.99839366, 0.99364361, 0.99364361, 0.99364361, 0.99364361,
0.9793869 , 0.9793869 , 0.9793869 , 0.9793869 , 0.94613945,
0.94613945, 0.94613945, 0.94613945, 0.88659682, 0.88659682,
0.88659682, 0.88659682, 0.80299287, 0.80299287, 0.80299287,
0.80299287, 0.70694993, 0.70694993, 0.70694993, 0.70694993,
0.61957684, 0.61957684, 0.61957684, 0.61957684, 0.54392052,
0.54392052, 0.54392052, 0.54392052, 0.49542686, 0.49542686,
0.49542686, 0.49542686, 0.47445103, 0.47445103, 0.47445103,
0.47445103, 0.46915145, 0.46915145, 0.46915145, 0.46915145,
0.46775039, 0.46775039, 0.46775039, 0.46775039, 0.4664833 ,
0.4664833 , 0.4664833 , 0.4664833 , 0.46501843, 0.46501843,
0.46501843, 0.46501843, 0.46374393, 0.46374393, 0.46374393,
0.46374393, 0.46361884, 0.46361884, 0.46361884, 0.46361884,
0.46424828, 0.46424828, 0.46424828, 0.46424828, 0.46530062,
0.46530062, 0.46530062, 0.46530062, 0.46544329, 0.46544329,
0.46544329, 0.46544329, 0.46257326, 0.46257326, 0.46257326,
0.46257326, 0.44471278, 0.44471278, 0.44471278, 0.44471278,
0.37244248, 0.37244248, 0.37244248, 0.37244248, 0.20801386,
0.20801386, 0.20801386, 0.20801386, 0.11324933, 0.11324933,
0.11324933, 0.11324933, 0.10104929, 0.10104929, 0.10104929,
0.10104929, 0.10007815, 0.10007815, 0.10007815, 0.10007815,
0.10000577, 0.10000577, 0.10000577, 0.10000577, 0.10000042,
0.10000042, 0.10000042, 0.10000042, 0.10000003, 0.10000003,
0.10000003, 0.10000003, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.9999998 , 0.9999998 , 0.9999998 ,
0.9999998 , 0.99999846, 0.99999846, 0.99999846, 0.99999846,
0.99998952, 0.99998952, 0.99998952, 0.99998952, 0.99993714,
0.99993714, 0.99993714, 0.99993714, 0.99967122, 0.99967122,
0.99967122, 0.99967122, 0.99852689, 0.99852689, 0.99852689,
0.99852689, 0.99446052, 0.99446052, 0.99446052, 0.99446052,
0.98287516, 0.98287516, 0.98287516, 0.98287516, 0.95703951,
0.95703951, 0.95703951, 0.95703951, 0.91215643, 0.91215643,
0.91215643, 0.91215643, 0.8497645 , 0.8497645 , 0.8497645 ,
0.8497645 , 0.77754676, 0.77754676, 0.77754676, 0.77754676,
0.71330927, 0.71330927, 0.71330927, 0.71330927, 0.64997203,
0.64997203, 0.64997203, 0.64997203, 0.60097098, 0.60097098,
0.60097098, 0.60097098, 0.58535154, 0.58535154, 0.58535154,
0.58535154, 0.58659819, 0.58659819, 0.58659819, 0.58659819,
0.58934885, 0.58934885, 0.58934885, 0.58934885, 0.58736059,
0.58736059, 0.58736059, 0.58736059, 0.57621724, 0.57621724,
0.57621724, 0.57621724, 0.55034135, 0.55034135, 0.55034135,
0.55034135, 0.50742676, 0.50742676, 0.50742676, 0.50742676,
0.44761191, 0.44761191, 0.44761191, 0.44761191, 0.38816796,
0.38816796, 0.38816796, 0.38816796, 0.35214391, 0.35214391,
0.35214391, 0.35214391, 0.3335225 , 0.3335225 , 0.3335225 ,
0.3335225 , 0.32286182, 0.32286182, 0.32286182, 0.32286182,
0.30990165, 0.30990165, 0.30990165, 0.30990165, 0.26354073,
0.26354073, 0.26354073, 0.26354073, 0.16798532, 0.16798532,
0.16798532, 0.16798532, 0.1299533 , 0.1299533 , 0.1299533 ,
0.1299533 , 0.12541416, 0.12541416, 0.12541416, 0.12541416,
0.12503153, 0.12503153, 0.12503153, 0.12503153, 0.12500234,
0.12500234, 0.12500234, 0.12500234, 0.12500017, 0.12500017,
0.12500017, 0.12500017, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
7.50000240e-01, 7.50000240e-01, 7.50000240e-01, 7.50000240e-01,
7.50001825e-01, 7.50001825e-01, 7.50001825e-01, 7.50001825e-01,
7.50012395e-01, 7.50012395e-01, 7.50012395e-01, 7.50012395e-01,
7.50074381e-01, 7.50074381e-01, 7.50074381e-01, 7.50074381e-01,
7.50389013e-01, 7.50389013e-01, 7.50389013e-01, 7.50389013e-01,
7.51743396e-01, 7.51743396e-01, 7.51743396e-01, 7.51743396e-01,
7.56564809e-01, 7.56564809e-01, 7.56564809e-01, 7.56564809e-01,
7.70391197e-01, 7.70391197e-01, 7.70391197e-01, 7.70391197e-01,
8.01753316e-01, 8.01753316e-01, 8.01753316e-01, 8.01753316e-01,
8.58071057e-01, 8.58071057e-01, 8.58071057e-01, 8.58071057e-01,
9.40417104e-01, 9.40417104e-01, 9.40417104e-01, 9.40417104e-01,
1.03928138e+00, 1.03928138e+00, 1.03928138e+00, 1.03928138e+00,
1.13970389e+00, 1.13970389e+00, 1.13970389e+00, 1.13970389e+00,
1.23914812e+00, 1.23914812e+00, 1.23914812e+00, 1.23914812e+00,
1.31054875e+00, 1.31054875e+00, 1.31054875e+00, 1.31054875e+00,
1.34625395e+00, 1.34625395e+00, 1.34625395e+00, 1.34625395e+00,
1.35799687e+00, 1.35799687e+00, 1.35799687e+00, 1.35799687e+00,
1.36074574e+00, 1.36074574e+00, 1.36074574e+00, 1.36074574e+00,
1.36111035e+00, 1.36111035e+00, 1.36111035e+00, 1.36111035e+00,
1.36105209e+00, 1.36105209e+00, 1.36105209e+00, 1.36105209e+00,
1.36078907e+00, 1.36078907e+00, 1.36078907e+00, 1.36078907e+00,
1.36071354e+00, 1.36071354e+00, 1.36071354e+00, 1.36071354e+00,
1.36126545e+00, 1.36126545e+00, 1.36126545e+00, 1.36126545e+00,
1.36293306e+00, 1.36293306e+00, 1.36293306e+00, 1.36293306e+00,
1.36391003e+00, 1.36391003e+00, 1.36391003e+00, 1.36391003e+00,
1.36223548e+00, 1.36223548e+00, 1.36223548e+00, 1.36223548e+00,
1.35001289e+00, 1.35001289e+00, 1.35001289e+00, 1.35001289e+00,
1.28580407e+00, 1.28580407e+00, 1.28580407e+00, 1.28580407e+00,
1.02083102e+00, 1.02083102e+00, 1.02083102e+00, 1.02083102e+00,
3.92354167e-01, 3.92354167e-01, 3.92354167e-01, 3.92354167e-01,
4.60233453e-02, 4.60233453e-02, 4.60233453e-02, 4.60233453e-02,
3.61135389e-03, 3.61135389e-03, 3.61135389e-03, 3.61135389e-03,
2.68870213e-04, 2.68870213e-04, 2.68870213e-04, 2.68870213e-04,
1.98606715e-05, 1.98606715e-05, 1.98606715e-05, 1.98606715e-05,
1.46364464e-06, 1.46364464e-06, 1.46364464e-06, 1.46364464e-06,
1.07646738e-07, 1.07646738e-07, 1.07646738e-07, 1.07646738e-07,
7.89913828e-09, 7.89913828e-09, 7.89913828e-09, 7.89913828e-09,
5.77602003e-10, 5.77602003e-10, 5.77602003e-10, 5.77602003e-10,
4.20009750e-11, 4.20009750e-11, 4.20009750e-11, 4.20009750e-11,
3.02859296e-12, 3.02859296e-12, 3.02859296e-12, 3.02859296e-12,
2.15774482e-13, 2.15774482e-13, 2.15774482e-13, 2.15774482e-13,
1.50503680e-14, 1.50503680e-14, 1.50503680e-14, 1.50503680e-14,
1.05328765e-15, 1.05328765e-15, 1.05328765e-15, 1.05328765e-15,
5.90101831e-17, 5.90101831e-17, 5.90101831e-17, 5.90101831e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999997, 0.99999997,
0.99999997, 0.99999997, 0.99999972, 0.99999972, 0.99999972,
0.99999972, 0.99999784, 0.99999784, 0.99999784, 0.99999784,
0.99998533, 0.99998533, 0.99998533, 0.99998533, 0.999912 ,
0.999912 , 0.999912 , 0.999912 , 0.99953981, 0.99953981,
0.99953981, 0.99953981, 0.99793921, 0.99793921, 0.99793921,
0.99793921, 0.99226162, 0.99226162, 0.99226162, 0.99226162,
0.97615575, 0.97615575, 0.97615575, 0.97615575, 0.94055943,
0.94055943, 0.94055943, 0.94055943, 0.87968697, 0.87968697,
0.87968697, 0.87968697, 0.7970675 , 0.7970675 , 0.7970675 ,
0.7970675 , 0.7043173 , 0.7043173 , 0.7043173 , 0.7043173 ,
0.62032421, 0.62032421, 0.62032421, 0.62032421, 0.54686006,
0.54686006, 0.54686006, 0.54686006, 0.49810099, 0.49810099,
0.49810099, 0.49810099, 0.47541418, 0.47541418, 0.47541418,
0.47541418, 0.46923871, 0.46923871, 0.46923871, 0.46923871,
0.46803173, 0.46803173, 0.46803173, 0.46803173, 0.46700788,
0.46700788, 0.46700788, 0.46700788, 0.46571924, 0.46571924,
0.46571924, 0.46571924, 0.4641767 , 0.4641767 , 0.4641767 ,
0.4641767 , 0.46358808, 0.46358808, 0.46358808, 0.46358808,
0.46369014, 0.46369014, 0.46369014, 0.46369014, 0.46447516,
0.46447516, 0.46447516, 0.46447516, 0.46535017, 0.46535017,
0.46535017, 0.46535017, 0.46498179, 0.46498179, 0.46498179,
0.46498179, 0.45937493, 0.45937493, 0.45937493, 0.45937493,
0.43093306, 0.43093306, 0.43093306, 0.43093306, 0.32993773,
0.32993773, 0.32993773, 0.32993773, 0.16285786, 0.16285786,
0.16285786, 0.16285786, 0.10621868, 0.10621868, 0.10621868,
0.10621868, 0.10047825, 0.10047825, 0.10047825, 0.10047825,
0.10003557, 0.10003557, 0.10003557, 0.10003557, 0.10000263,
0.10000263, 0.10000263, 0.10000263, 0.10000019, 0.10000019,
0.10000019, 0.10000019, 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999996, 0.99999996,
0.99999996, 0.99999996, 0.99999967, 0.99999967, 0.99999967,
0.99999967, 0.99999762, 0.99999762, 0.99999762, 0.99999762,
0.99998459, 0.99998459, 0.99998459, 0.99998459, 0.99991206,
0.99991206, 0.99991206, 0.99991206, 0.99956257, 0.99956257,
0.99956257, 0.99956257, 0.99813629, 0.99813629, 0.99813629,
0.99813629, 0.99333466, 0.99333466, 0.99333466, 0.99333466,
0.98037152, 0.98037152, 0.98037152, 0.98037152, 0.9528877 ,
0.9528877 , 0.9528877 , 0.9528877 , 0.90714025, 0.90714025,
0.90714025, 0.90714025, 0.84549133, 0.84549133, 0.84549133,
0.84549133, 0.7755971 , 0.7755971 , 0.7755971 , 0.7755971 ,
0.71345002, 0.71345002, 0.71345002, 0.71345002, 0.65381042,
0.65381042, 0.65381042, 0.65381042, 0.60449037, 0.60449037,
0.60449037, 0.60449037, 0.58459071, 0.58459071, 0.58459071,
0.58459071, 0.58451904, 0.58451904, 0.58451904, 0.58451904,
0.58778013, 0.58778013, 0.58778013, 0.58778013, 0.58801938,
0.58801938, 0.58801938, 0.58801938, 0.58183243, 0.58183243,
0.58183243, 0.58183243, 0.56319798, 0.56319798, 0.56319798,
0.56319798, 0.52817231, 0.52817231, 0.52817231, 0.52817231,
0.47570938, 0.47570938, 0.47570938, 0.47570938, 0.41147965,
0.41147965, 0.41147965, 0.41147965, 0.36562289, 0.36562289,
0.36562289, 0.36562289, 0.34085096, 0.34085096, 0.34085096,
0.34085096, 0.32857429, 0.32857429, 0.32857429, 0.32857429,
0.32046461, 0.32046461, 0.32046461, 0.32046461, 0.30277278,
0.30277278, 0.30277278, 0.30277278, 0.23628223, 0.23628223,
0.23628223, 0.23628223, 0.14837728, 0.14837728, 0.14837728,
0.14837728, 0.12738162, 0.12738162, 0.12738162, 0.12738162,
0.12519072, 0.12519072, 0.12519072, 0.12519072, 0.12501437,
0.12501437, 0.12501437, 0.12501437, 0.12500107, 0.12500107,
0.12500107, 0.12500107, 0.12500008, 0.12500008, 0.12500008,
0.12500008, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
7.50000390e-01, 7.50000390e-01, 7.50000390e-01, 7.50000390e-01,
7.50002822e-01, 7.50002822e-01, 7.50002822e-01, 7.50002822e-01,
7.50018229e-01, 7.50018229e-01, 7.50018229e-01, 7.50018229e-01,
7.50104049e-01, 7.50104049e-01, 7.50104049e-01, 7.50104049e-01,
7.50517585e-01, 7.50517585e-01, 7.50517585e-01, 7.50517585e-01,
7.52205977e-01, 7.52205977e-01, 7.52205977e-01, 7.52205977e-01,
7.57902857e-01, 7.57902857e-01, 7.57902857e-01, 7.57902857e-01,
7.73399599e-01, 7.73399599e-01, 7.73399599e-01, 7.73399599e-01,
8.06867047e-01, 8.06867047e-01, 8.06867047e-01, 8.06867047e-01,
8.64509234e-01, 8.64509234e-01, 8.64509234e-01, 8.64509234e-01,
9.46188008e-01, 9.46188008e-01, 9.46188008e-01, 9.46188008e-01,
1.04182143e+00, 1.04182143e+00, 1.04182143e+00, 1.04182143e+00,
1.13851947e+00, 1.13851947e+00, 1.13851947e+00, 1.13851947e+00,
1.23521943e+00, 1.23521943e+00, 1.23521943e+00, 1.23521943e+00,
1.30684121e+00, 1.30684121e+00, 1.30684121e+00, 1.30684121e+00,
1.34402276e+00, 1.34402276e+00, 1.34402276e+00, 1.34402276e+00,
1.35679818e+00, 1.35679818e+00, 1.35679818e+00, 1.35679818e+00,
1.36042879e+00, 1.36042879e+00, 1.36042879e+00, 1.36042879e+00,
1.36144375e+00, 1.36144375e+00, 1.36144375e+00, 1.36144375e+00,
1.36176750e+00, 1.36176750e+00, 1.36176750e+00, 1.36176750e+00,
1.36169308e+00, 1.36169308e+00, 1.36169308e+00, 1.36169308e+00,
1.36111048e+00, 1.36111048e+00, 1.36111048e+00, 1.36111048e+00,
1.36105105e+00, 1.36105105e+00, 1.36105105e+00, 1.36105105e+00,
1.36162469e+00, 1.36162469e+00, 1.36162469e+00, 1.36162469e+00,
1.36281678e+00, 1.36281678e+00, 1.36281678e+00, 1.36281678e+00,
1.36293589e+00, 1.36293589e+00, 1.36293589e+00, 1.36293589e+00,
1.35989169e+00, 1.35989169e+00, 1.35989169e+00, 1.35989169e+00,
1.33857964e+00, 1.33857964e+00, 1.33857964e+00, 1.33857964e+00,
1.23678480e+00, 1.23678480e+00, 1.23678480e+00, 1.23678480e+00,
8.59426221e-01, 8.59426221e-01, 8.59426221e-01, 8.59426221e-01,
2.22121850e-01, 2.22121850e-01, 2.22121850e-01, 2.22121850e-01,
2.16158662e-02, 2.16158662e-02, 2.16158662e-02, 2.16158662e-02,
1.64641832e-03, 1.64641832e-03, 1.64641832e-03, 1.64641832e-03,
1.22204390e-04, 1.22204390e-04, 1.22204390e-04, 1.22204390e-04,
9.04194482e-06, 9.04194482e-06, 9.04194482e-06, 9.04194482e-06,
6.67040993e-07, 6.67040993e-07, 6.67040993e-07, 6.67040993e-07,
4.90964691e-08, 4.90964691e-08, 4.90964691e-08, 4.90964691e-08,
3.60523547e-09, 3.60523547e-09, 3.60523547e-09, 3.60523547e-09,
2.63885888e-10, 2.63885888e-10, 2.63885888e-10, 2.63885888e-10,
1.92204794e-11, 1.92204794e-11, 1.92204794e-11, 1.92204794e-11,
1.38961104e-12, 1.38961104e-12, 1.38961104e-12, 1.38961104e-12,
9.92868582e-14, 9.92868582e-14, 9.92868582e-14, 9.92868582e-14,
7.03275916e-15, 7.03275916e-15, 7.03275916e-15, 7.03275916e-15,
5.17027335e-16, 5.17027335e-16, 5.17027335e-16, 5.17027335e-16,
3.42591394e-17, 3.42591394e-17, 3.42591394e-17, 3.42591394e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999994, 0.99999994,
0.99999994, 0.99999994, 0.99999954, 0.99999954, 0.99999954,
0.99999954, 0.99999666, 0.99999666, 0.99999666, 0.99999666,
0.99997843, 0.99997843, 0.99997843, 0.99997843, 0.99987689,
0.99987689, 0.99987689, 0.99987689, 0.99938776, 0.99938776,
0.99938776, 0.99938776, 0.99739311, 0.99739311, 0.99739311,
0.99739311, 0.99069162, 0.99069162, 0.99069162, 0.99069162,
0.97268505, 0.97268505, 0.97268505, 0.97268505, 0.93486932,
0.93486932, 0.93486932, 0.93486932, 0.87293717, 0.87293717,
0.87293717, 0.87293717, 0.79146304, 0.79146304, 0.79146304,
0.79146304, 0.70191535, 0.70191535, 0.70191535, 0.70191535,
0.62102876, 0.62102876, 0.62102876, 0.62102876, 0.54957627,
0.54957627, 0.54957627, 0.54957627, 0.50083599, 0.50083599,
0.50083599, 0.50083599, 0.47665599, 0.47665599, 0.47665599,
0.47665599, 0.46931339, 0.46931339, 0.46931339, 0.46931339,
0.4680499 , 0.4680499 , 0.4680499 , 0.4680499 , 0.46732564,
0.46732564, 0.46732564, 0.46732564, 0.46628964, 0.46628964,
0.46628964, 0.46628964, 0.46482191, 0.46482191, 0.46482191,
0.46482191, 0.46383924, 0.46383924, 0.46383924, 0.46383924,
0.46359009, 0.46359009, 0.46359009, 0.46359009, 0.46381923,
0.46381923, 0.46381923, 0.46381923, 0.46482679, 0.46482679,
0.46482679, 0.46482679, 0.46530733, 0.46530733, 0.46530733,
0.46530733, 0.46390266, 0.46390266, 0.46390266, 0.46390266,
0.45436119, 0.45436119, 0.45436119, 0.45436119, 0.41039534,
0.41039534, 0.41039534, 0.41039534, 0.27755879, 0.27755879,
0.27755879, 0.27755879, 0.13288495, 0.13288495, 0.13288495,
0.13288495, 0.10288468, 0.10288468, 0.10288468, 0.10288468,
0.1002179 , 0.1002179 , 0.1002179 , 0.1002179 , 0.10001617,
0.10001617, 0.10001617, 0.10001617, 0.1000012 , 0.1000012 ,
0.1000012 , 0.1000012 , 0.10000009, 0.10000009, 0.10000009,
0.10000009, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999993, 0.99999993,
0.99999993, 0.99999993, 0.99999948, 0.99999948, 0.99999948,
0.99999948, 0.99999639, 0.99999639, 0.99999639, 0.99999639,
0.99997776, 0.99997776, 0.99997776, 0.99997776, 0.99987902,
0.99987902, 0.99987902, 0.99987902, 0.99942658, 0.99942658,
0.99942658, 0.99942658, 0.99767258, 0.99767258, 0.99767258,
0.99767258, 0.99206839, 0.99206839, 0.99206839, 0.99206839,
0.97770184, 0.97770184, 0.97770184, 0.97770184, 0.94867108,
0.94867108, 0.94867108, 0.94867108, 0.90224525, 0.90224525,
0.90224525, 0.90224525, 0.84145258, 0.84145258, 0.84145258,
0.84145258, 0.77386505, 0.77386505, 0.77386505, 0.77386505,
0.71340462, 0.71340462, 0.71340462, 0.71340462, 0.65703975,
0.65703975, 0.65703975, 0.65703975, 0.60849329, 0.60849329,
0.60849329, 0.60849329, 0.58468831, 0.58468831, 0.58468831,
0.58468831, 0.58294187, 0.58294187, 0.58294187, 0.58294187,
0.58573115, 0.58573115, 0.58573115, 0.58573115, 0.58763646,
0.58763646, 0.58763646, 0.58763646, 0.58482843, 0.58482843,
0.58482843, 0.58482843, 0.57251091, 0.57251091, 0.57251091,
0.57251091, 0.54537817, 0.54537817, 0.54537817, 0.54537817,
0.50073074, 0.50073074, 0.50073074, 0.50073074, 0.4391213 ,
0.4391213 , 0.4391213 , 0.4391213 , 0.38293704, 0.38293704,
0.38293704, 0.38293704, 0.35013347, 0.35013347, 0.35013347,
0.35013347, 0.33368088, 0.33368088, 0.33368088, 0.33368088,
0.32582494, 0.32582494, 0.32582494, 0.32582494, 0.31844833,
0.31844833, 0.31844833, 0.31844833, 0.29046653, 0.29046653,
0.29046653, 0.29046653, 0.20455633, 0.20455633, 0.20455633,
0.20455633, 0.1372754 , 0.1372754 , 0.1372754 , 0.1372754 ,
0.12612182, 0.12612182, 0.12612182, 0.12612182, 0.1250873 ,
0.1250873 , 0.1250873 , 0.1250873 , 0.12500654, 0.12500654,
0.12500654, 0.12500654, 0.12500049, 0.12500049, 0.12500049,
0.12500049, 0.12500004, 0.12500004, 0.12500004, 0.12500004,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000010e-01, 7.50000010e-01, 7.50000010e-01, 7.50000010e-01,
7.50000081e-01, 7.50000081e-01, 7.50000081e-01, 7.50000081e-01,
7.50000620e-01, 7.50000620e-01, 7.50000620e-01, 7.50000620e-01,
7.50004274e-01, 7.50004274e-01, 7.50004274e-01, 7.50004274e-01,
7.50026313e-01, 7.50026313e-01, 7.50026313e-01, 7.50026313e-01,
7.50143141e-01, 7.50143141e-01, 7.50143141e-01, 7.50143141e-01,
7.50678514e-01, 7.50678514e-01, 7.50678514e-01, 7.50678514e-01,
7.52755312e-01, 7.52755312e-01, 7.52755312e-01, 7.52755312e-01,
7.59409383e-01, 7.59409383e-01, 7.59409383e-01, 7.59409383e-01,
7.76615231e-01, 7.76615231e-01, 7.76615231e-01, 7.76615231e-01,
8.12080151e-01, 8.12080151e-01, 8.12080151e-01, 8.12080151e-01,
8.70817643e-01, 8.70817643e-01, 8.70817643e-01, 8.70817643e-01,
9.51667486e-01, 9.51667486e-01, 9.51667486e-01, 9.51667486e-01,
1.04421860e+00, 1.04421860e+00, 1.04421860e+00, 1.04421860e+00,
1.13749267e+00, 1.13749267e+00, 1.13749267e+00, 1.13749267e+00,
1.23129415e+00, 1.23129415e+00, 1.23129415e+00, 1.23129415e+00,
1.30304219e+00, 1.30304219e+00, 1.30304219e+00, 1.30304219e+00,
1.34192905e+00, 1.34192905e+00, 1.34192905e+00, 1.34192905e+00,
1.35567521e+00, 1.35567521e+00, 1.35567521e+00, 1.35567521e+00,
1.35980921e+00, 1.35980921e+00, 1.35980921e+00, 1.35980921e+00,
1.36138601e+00, 1.36138601e+00, 1.36138601e+00, 1.36138601e+00,
1.36219441e+00, 1.36219441e+00, 1.36219441e+00, 1.36219441e+00,
1.36249996e+00, 1.36249996e+00, 1.36249996e+00, 1.36249996e+00,
1.36190367e+00, 1.36190367e+00, 1.36190367e+00, 1.36190367e+00,
1.36127546e+00, 1.36127546e+00, 1.36127546e+00, 1.36127546e+00,
1.36128875e+00, 1.36128875e+00, 1.36128875e+00, 1.36128875e+00,
1.36152144e+00, 1.36152144e+00, 1.36152144e+00, 1.36152144e+00,
1.36239947e+00, 1.36239947e+00, 1.36239947e+00, 1.36239947e+00,
1.36213183e+00, 1.36213183e+00, 1.36213183e+00, 1.36213183e+00,
1.35586085e+00, 1.35586085e+00, 1.35586085e+00, 1.35586085e+00,
1.32010356e+00, 1.32010356e+00, 1.32010356e+00, 1.32010356e+00,
1.16287547e+00, 1.16287547e+00, 1.16287547e+00, 1.16287547e+00,
6.61162492e-01, 6.61162492e-01, 6.61162492e-01, 6.61162492e-01,
1.16351678e-01, 1.16351678e-01, 1.16351678e-01, 1.16351678e-01,
9.97096672e-03, 9.97096672e-03, 9.97096672e-03, 9.97096672e-03,
7.48552643e-04, 7.48552643e-04, 7.48552643e-04, 7.48552643e-04,
5.55786565e-05, 5.55786565e-05, 5.55786565e-05, 5.55786565e-05,
4.11419588e-06, 4.11419588e-06, 4.11419588e-06, 4.11419588e-06,
3.03837917e-07, 3.03837917e-07, 3.03837917e-07, 3.03837917e-07,
2.23849014e-08, 2.23849014e-08, 2.23849014e-08, 2.23849014e-08,
1.64507675e-09, 1.64507675e-09, 1.64507675e-09, 1.64507675e-09,
1.20527942e-10, 1.20527942e-10, 1.20527942e-10, 1.20527942e-10,
8.79167161e-12, 8.79167161e-12, 8.79167161e-12, 8.79167161e-12,
6.36916518e-13, 6.36916518e-13, 6.36916518e-13, 6.36916518e-13,
4.58094779e-14, 4.58094779e-14, 4.58094779e-14, 4.58094779e-14,
3.28064473e-15, 3.28064473e-15, 3.28064473e-15, 3.28064473e-15,
2.21511670e-16, 2.21511670e-16, 2.21511670e-16, 2.21511670e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.9999999 , 0.9999999 ,
0.9999999 , 0.9999999 , 0.99999927, 0.99999927, 0.99999927,
0.99999927, 0.99999494, 0.99999494, 0.99999494, 0.99999494,
0.99996887, 0.99996887, 0.99996887, 0.99996887, 0.99983065,
0.99983065, 0.99983065, 0.99983065, 0.99919747, 0.99919747,
0.99919747, 0.99919747, 0.99674497, 0.99674497, 0.99674497,
0.99674497, 0.98892685, 0.98892685, 0.98892685, 0.98892685,
0.96898818, 0.96898818, 0.96898818, 0.96898818, 0.92909988,
0.92909988, 0.92909988, 0.92909988, 0.86636274, 0.86636274,
0.86636274, 0.86636274, 0.7861649 , 0.7861649 , 0.7861649 ,
0.7861649 , 0.69970743, 0.69970743, 0.69970743, 0.69970743,
0.62175522, 0.62175522, 0.62175522, 0.62175522, 0.55208192,
0.55208192, 0.55208192, 0.55208192, 0.50351395, 0.50351395,
0.50351395, 0.50351395, 0.47813801, 0.47813801, 0.47813801,
0.47813801, 0.46954374, 0.46954374, 0.46954374, 0.46954374,
0.46791496, 0.46791496, 0.46791496, 0.46791496, 0.46740496,
0.46740496, 0.46740496, 0.46740496, 0.466675 , 0.466675 ,
0.466675 , 0.466675 , 0.46544862, 0.46544862, 0.46544862,
0.46544862, 0.46432762, 0.46432762, 0.46432762, 0.46432762,
0.46372285, 0.46372285, 0.46372285, 0.46372285, 0.46365147,
0.46365147, 0.46365147, 0.46365147, 0.46418465, 0.46418465,
0.46418465, 0.46418465, 0.46505548, 0.46505548, 0.46505548,
0.46505548, 0.46493934, 0.46493934, 0.46493934, 0.46493934,
0.46223591, 0.46223591, 0.46223591, 0.46223591, 0.44656565,
0.44656565, 0.44656565, 0.44656565, 0.38108891, 0.38108891,
0.38108891, 0.38108891, 0.22238569, 0.22238569, 0.22238569,
0.22238569, 0.11633052, 0.11633052, 0.11633052, 0.11633052,
0.10132364, 0.10132364, 0.10132364, 0.10132364, 0.10009904,
0.10009904, 0.10009904, 0.10009904, 0.10000735, 0.10000735,
0.10000735, 0.10000735, 0.10000054, 0.10000054, 0.10000054,
0.10000054, 0.10000004, 0.10000004, 0.10000004, 0.10000004,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999989, 0.99999989,
0.99999989, 0.99999989, 0.99999918, 0.99999918, 0.99999918,
0.99999918, 0.99999463, 0.99999463, 0.99999463, 0.99999463,
0.99996845, 0.99996845, 0.99996845, 0.99996845, 0.99983612,
0.99983612, 0.99983612, 0.99983612, 0.9992586 , 0.9992586 ,
0.9992586 , 0.9992586 , 0.99712842, 0.99712842, 0.99712842,
0.99712842, 0.99065816, 0.99065816, 0.99065816, 0.99065816,
0.97487697, 0.97487697, 0.97487697, 0.97487697, 0.94441074,
0.94441074, 0.94441074, 0.94441074, 0.89748102, 0.89748102,
0.89748102, 0.89748102, 0.83763755, 0.83763755, 0.83763755,
0.83763755, 0.77233781, 0.77233781, 0.77233781, 0.77233781,
0.7132907 , 0.7132907 , 0.7132907 , 0.7132907 , 0.65963706,
0.65963706, 0.65963706, 0.65963706, 0.612651 , 0.612651 ,
0.612651 , 0.612651 , 0.5857125 , 0.5857125 , 0.5857125 ,
0.5857125 , 0.58169792, 0.58169792, 0.58169792, 0.58169792,
0.5836328 , 0.5836328 , 0.5836328 , 0.5836328 , 0.58674094,
0.58674094, 0.58674094, 0.58674094, 0.58596439, 0.58596439,
0.58596439, 0.58596439, 0.57862616, 0.57862616, 0.57862616,
0.57862616, 0.55885909, 0.55885909, 0.55885909, 0.55885909,
0.52235302, 0.52235302, 0.52235302, 0.52235302, 0.46790255,
0.46790255, 0.46790255, 0.46790255, 0.40461805, 0.40461805,
0.40461805, 0.40461805, 0.36237207, 0.36237207, 0.36237207,
0.36237207, 0.33984239, 0.33984239, 0.33984239, 0.33984239,
0.32970398, 0.32970398, 0.32970398, 0.32970398, 0.32449566,
0.32449566, 0.32449566, 0.32449566, 0.31491343, 0.31491343,
0.31491343, 0.31491343, 0.2715366 , 0.2715366 , 0.2715366 ,
0.2715366 , 0.17519676, 0.17519676, 0.17519676, 0.17519676,
0.13110272, 0.13110272, 0.13110272, 0.13110272, 0.12551958,
0.12551958, 0.12551958, 0.12551958, 0.12503987, 0.12503987,
0.12503987, 0.12503987, 0.12500298, 0.12500298, 0.12500298,
0.12500298, 0.12500022, 0.12500022, 0.12500022, 0.12500022,
0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
7.50000132e-01, 7.50000132e-01, 7.50000132e-01, 7.50000132e-01,
7.50000966e-01, 7.50000966e-01, 7.50000966e-01, 7.50000966e-01,
7.50006351e-01, 7.50006351e-01, 7.50006351e-01, 7.50006351e-01,
7.50037333e-01, 7.50037333e-01, 7.50037333e-01, 7.50037333e-01,
7.50193899e-01, 7.50193899e-01, 7.50193899e-01, 7.50193899e-01,
7.50877324e-01, 7.50877324e-01, 7.50877324e-01, 7.50877324e-01,
7.53400222e-01, 7.53400222e-01, 7.53400222e-01, 7.53400222e-01,
7.61089231e-01, 7.61089231e-01, 7.61089231e-01, 7.61089231e-01,
7.80026437e-01, 7.80026437e-01, 7.80026437e-01, 7.80026437e-01,
8.17367158e-01, 8.17367158e-01, 8.17367158e-01, 8.17367158e-01,
8.76981911e-01, 8.76981911e-01, 8.76981911e-01, 8.76981911e-01,
9.56868187e-01, 9.56868187e-01, 9.56868187e-01, 9.56868187e-01,
1.04646915e+00, 1.04646915e+00, 1.04646915e+00, 1.04646915e+00,
1.13664890e+00, 1.13664890e+00, 1.13664890e+00, 1.13664890e+00,
1.22747197e+00, 1.22747197e+00, 1.22747197e+00, 1.22747197e+00,
1.29906860e+00, 1.29906860e+00, 1.29906860e+00, 1.29906860e+00,
1.33980440e+00, 1.33980440e+00, 1.33980440e+00, 1.33980440e+00,
1.35473761e+00, 1.35473761e+00, 1.35473761e+00, 1.35473761e+00,
1.35912884e+00, 1.35912884e+00, 1.35912884e+00, 1.35912884e+00,
1.36103279e+00, 1.36103279e+00, 1.36103279e+00, 1.36103279e+00,
1.36224006e+00, 1.36224006e+00, 1.36224006e+00, 1.36224006e+00,
1.36307271e+00, 1.36307271e+00, 1.36307271e+00, 1.36307271e+00,
1.36277930e+00, 1.36277930e+00, 1.36277930e+00, 1.36277930e+00,
1.36186954e+00, 1.36186954e+00, 1.36186954e+00, 1.36186954e+00,
1.36140807e+00, 1.36140807e+00, 1.36140807e+00, 1.36140807e+00,
1.36104332e+00, 1.36104332e+00, 1.36104332e+00, 1.36104332e+00,
1.36139643e+00, 1.36139643e+00, 1.36139643e+00, 1.36139643e+00,
1.36210857e+00, 1.36210857e+00, 1.36210857e+00, 1.36210857e+00,
1.36065559e+00, 1.36065559e+00, 1.36065559e+00, 1.36065559e+00,
1.34903815e+00, 1.34903815e+00, 1.34903815e+00, 1.34903815e+00,
1.29211103e+00, 1.29211103e+00, 1.29211103e+00, 1.29211103e+00,
1.05539569e+00, 1.05539569e+00, 1.05539569e+00, 1.05539569e+00,
4.48123192e-01, 4.48123192e-01, 4.48123192e-01, 4.48123192e-01,
5.68576756e-02, 5.68576756e-02, 5.68576756e-02, 5.68576756e-02,
4.54568441e-03, 4.54568441e-03, 4.54568441e-03, 4.54568441e-03,
3.40320288e-04, 3.40320288e-04, 3.40320288e-04, 3.40320288e-04,
2.52658640e-05, 2.52658640e-05, 2.52658640e-05, 2.52658640e-05,
1.87162703e-06, 1.87162703e-06, 1.87162703e-06, 1.87162703e-06,
1.38344702e-07, 1.38344702e-07, 1.38344702e-07, 1.38344702e-07,
1.02018842e-08, 1.02018842e-08, 1.02018842e-08, 1.02018842e-08,
7.50419983e-10, 7.50419983e-10, 7.50419983e-10, 7.50419983e-10,
5.50338981e-11, 5.50338981e-11, 5.50338981e-11, 5.50338981e-11,
4.01951569e-12, 4.01951569e-12, 4.01951569e-12, 4.01951569e-12,
2.91936804e-13, 2.91936804e-13, 2.91936804e-13, 2.91936804e-13,
2.11199253e-14, 2.11199253e-14, 2.11199253e-14, 2.11199253e-14,
1.47398293e-15, 1.47398293e-15, 1.47398293e-15, 1.47398293e-15,
9.45362951e-17, 9.45362951e-17, 9.45362951e-17, 9.45362951e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999984, 0.99999984,
0.99999984, 0.99999984, 0.99999886, 0.99999886, 0.99999886,
0.99999886, 0.99999249, 0.99999249, 0.99999249, 0.99999249,
0.99995583, 0.99995583, 0.99995583, 0.99995583, 0.9997706 ,
0.9997706 , 0.9997706 , 0.9997706 , 0.99896245, 0.99896245,
0.99896245, 0.99896245, 0.9959846 , 0.9959846 , 0.9959846 ,
0.9959846 , 0.98696264, 0.98696264, 0.98696264, 0.98696264,
0.96508085, 0.96508085, 0.96508085, 0.96508085, 0.92328027,
0.92328027, 0.92328027, 0.92328027, 0.85997549, 0.85997549,
0.85997549, 0.85997549, 0.78115703, 0.78115703, 0.78115703,
0.78115703, 0.69766029, 0.69766029, 0.69766029, 0.69766029,
0.62252492, 0.62252492, 0.62252492, 0.62252492, 0.55444993,
0.55444993, 0.55444993, 0.55444993, 0.50606466, 0.50606466,
0.50606466, 0.50606466, 0.4797491 , 0.4797491 , 0.4797491 ,
0.4797491 , 0.47000142, 0.47000142, 0.47000142, 0.47000142,
0.46778259, 0.46778259, 0.46778259, 0.46778259, 0.46731388,
0.46731388, 0.46731388, 0.46731388, 0.46681772, 0.46681772,
0.46681772, 0.46681772, 0.46594134, 0.46594134, 0.46594134,
0.46594134, 0.46489255, 0.46489255, 0.46489255, 0.46489255,
0.46406793, 0.46406793, 0.46406793, 0.46406793, 0.46371733,
0.46371733, 0.46371733, 0.46371733, 0.46392827, 0.46392827,
0.46392827, 0.46392827, 0.46457704, 0.46457704, 0.46457704,
0.46457704, 0.4649299 , 0.4649299 , 0.4649299 , 0.4649299 ,
0.464449 , 0.464449 , 0.464449 , 0.464449 , 0.45965373,
0.45965373, 0.45965373, 0.45965373, 0.43413396, 0.43413396,
0.43413396, 0.43413396, 0.3417067 , 0.3417067 , 0.3417067 ,
0.3417067 , 0.17380695, 0.17380695, 0.17380695, 0.17380695,
0.10772404, 0.10772404, 0.10772404, 0.10772404, 0.10060218,
0.10060218, 0.10060218, 0.10060218, 0.10004502, 0.10004502,
0.10004502, 0.10004502, 0.10000334, 0.10000334, 0.10000334,
0.10000334, 0.10000025, 0.10000025, 0.10000025, 0.10000025,
0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999982, 0.99999982,
0.99999982, 0.99999982, 0.99999875, 0.99999875, 0.99999875,
0.99999875, 0.99999216, 0.99999216, 0.99999216, 0.99999216,
0.99995594, 0.99995594, 0.99995594, 0.99995594, 0.99978118,
0.99978118, 0.99978118, 0.99978118, 0.99905363, 0.99905363,
0.99905363, 0.99905363, 0.99649673, 0.99649673, 0.99649673,
0.99649673, 0.98910195, 0.98910195, 0.98910195, 0.98910195,
0.97190917, 0.97190917, 0.97190917, 0.97190917, 0.94012653,
0.94012653, 0.94012653, 0.94012653, 0.89285479, 0.89285479,
0.89285479, 0.89285479, 0.83403394, 0.83403394, 0.83403394,
0.83403394, 0.77099739, 0.77099739, 0.77099739, 0.77099739,
0.71316881, 0.71316881, 0.71316881, 0.71316881, 0.66167639,
0.66167639, 0.66167639, 0.66167639, 0.61669901, 0.61669901,
0.61669901, 0.61669901, 0.58751731, 0.58751731, 0.58751731,
0.58751731, 0.58088401, 0.58088401, 0.58088401, 0.58088401,
0.58197653, 0.58197653, 0.58197653, 0.58197653, 0.58530083,
0.58530083, 0.58530083, 0.58530083, 0.58593749, 0.58593749,
0.58593749, 0.58593749, 0.58219521, 0.58219521, 0.58219521,
0.58219521, 0.56871482, 0.56871482, 0.56871482, 0.56871482,
0.54028566, 0.54028566, 0.54028566, 0.54028566, 0.49391932,
0.49391932, 0.49391932, 0.49391932, 0.43125951, 0.43125951,
0.43125951, 0.43125951, 0.37842572, 0.37842572, 0.37842572,
0.37842572, 0.34810948, 0.34810948, 0.34810948, 0.34810948,
0.33368361, 0.33368361, 0.33368361, 0.33368361, 0.32786563,
0.32786563, 0.32786563, 0.32786563, 0.32355452, 0.32355452,
0.32355452, 0.32355452, 0.30821032, 0.30821032, 0.30821032,
0.30821032, 0.24538437, 0.24538437, 0.24538437, 0.24538437,
0.15274327, 0.15274327, 0.15274327, 0.15274327, 0.12792757,
0.12792757, 0.12792757, 0.12792757, 0.12523902, 0.12523902,
0.12523902, 0.12523902, 0.12501814, 0.12501814, 0.12501814,
0.12501814, 0.12500135, 0.12500135, 0.12500135, 0.12500135,
0.1250001 , 0.1250001 , 0.1250001 , 0.1250001 , 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
7.50000211e-01, 7.50000211e-01, 7.50000211e-01, 7.50000211e-01,
7.50001474e-01, 7.50001474e-01, 7.50001474e-01, 7.50001474e-01,
7.50009273e-01, 7.50009273e-01, 7.50009273e-01, 7.50009273e-01,
7.50052129e-01, 7.50052129e-01, 7.50052129e-01, 7.50052129e-01,
7.50258907e-01, 7.50258907e-01, 7.50258907e-01, 7.50258907e-01,
7.51119944e-01, 7.51119944e-01, 7.51119944e-01, 7.51119944e-01,
7.54149241e-01, 7.54149241e-01, 7.54149241e-01, 7.54149241e-01,
7.62945461e-01, 7.62945461e-01, 7.62945461e-01, 7.62945461e-01,
7.83619793e-01, 7.83619793e-01, 7.83619793e-01, 7.83619793e-01,
8.22703779e-01, 8.22703779e-01, 8.22703779e-01, 8.22703779e-01,
8.82990632e-01, 8.82990632e-01, 8.82990632e-01, 8.82990632e-01,
9.61803322e-01, 9.61803322e-01, 9.61803322e-01, 9.61803322e-01,
1.04857800e+00, 1.04857800e+00, 1.04857800e+00, 1.04857800e+00,
1.13591034e+00, 1.13591034e+00, 1.13591034e+00, 1.13591034e+00,
1.22389255e+00, 1.22389255e+00, 1.22389255e+00, 1.22389255e+00,
1.29496803e+00, 1.29496803e+00, 1.29496803e+00, 1.29496803e+00,
1.33747715e+00, 1.33747715e+00, 1.33747715e+00, 1.33747715e+00,
1.35392574e+00, 1.35392574e+00, 1.35392574e+00, 1.35392574e+00,
1.35857156e+00, 1.35857156e+00, 1.35857156e+00, 1.35857156e+00,
1.36055928e+00, 1.36055928e+00, 1.36055928e+00, 1.36055928e+00,
1.36197585e+00, 1.36197585e+00, 1.36197585e+00, 1.36197585e+00,
1.36328541e+00, 1.36328541e+00, 1.36328541e+00, 1.36328541e+00,
1.36343618e+00, 1.36343618e+00, 1.36343618e+00, 1.36343618e+00,
1.36275200e+00, 1.36275200e+00, 1.36275200e+00, 1.36275200e+00,
1.36185315e+00, 1.36185315e+00, 1.36185315e+00, 1.36185315e+00,
1.36106906e+00, 1.36106906e+00, 1.36106906e+00, 1.36106906e+00,
1.36076174e+00, 1.36076174e+00, 1.36076174e+00, 1.36076174e+00,
1.36153615e+00, 1.36153615e+00, 1.36153615e+00, 1.36153615e+00,
1.36145251e+00, 1.36145251e+00, 1.36145251e+00, 1.36145251e+00,
1.35798352e+00, 1.35798352e+00, 1.35798352e+00, 1.35798352e+00,
1.33896458e+00, 1.33896458e+00, 1.33896458e+00, 1.33896458e+00,
1.24901222e+00, 1.24901222e+00, 1.24901222e+00, 1.24901222e+00,
9.05845095e-01, 9.05845095e-01, 9.05845095e-01, 9.05845095e-01,
2.60939488e-01, 2.60939488e-01, 2.60939488e-01, 2.60939488e-01,
2.66949863e-02, 2.66949863e-02, 2.66949863e-02, 2.66949863e-02,
2.06759900e-03, 2.06759900e-03, 2.06759900e-03, 2.06759900e-03,
1.54404335e-04, 1.54404335e-04, 1.54404335e-04, 1.54404335e-04,
1.14811015e-05, 1.14811015e-05, 1.14811015e-05, 1.14811015e-05,
8.51232178e-07, 8.51232178e-07, 8.51232178e-07, 8.51232178e-07,
6.29700498e-08, 6.29700498e-08, 6.29700498e-08, 6.29700498e-08,
4.64771793e-09, 4.64771793e-09, 4.64771793e-09, 4.64771793e-09,
3.42187413e-10, 3.42187413e-10, 3.42187413e-10, 3.42187413e-10,
2.51200466e-11, 2.51200466e-11, 2.51200466e-11, 2.51200466e-11,
1.83703667e-12, 1.83703667e-12, 1.83703667e-12, 1.83703667e-12,
1.33855888e-13, 1.33855888e-13, 1.33855888e-13, 1.33855888e-13,
9.58591565e-15, 9.58591565e-15, 9.58591565e-15, 9.58591565e-15,
6.58015436e-16, 6.58015436e-16, 6.58015436e-16, 6.58015436e-16,
4.63362200e-17, 4.63362200e-17, 4.63362200e-17, 4.63362200e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.99999975, 0.99999975,
0.99999975, 0.99999975, 0.99999826, 0.99999826, 0.99999826,
0.99999826, 0.99998903, 0.99998903, 0.99998903, 0.99998903,
0.99993832, 0.99993832, 0.99993832, 0.99993832, 0.9996937 ,
0.9996937 , 0.9996937 , 0.9996937 , 0.9986757 , 0.9986757 ,
0.9986757 , 0.9986757 , 0.99510219, 0.99510219, 0.99510219,
0.99510219, 0.98479658, 0.98479658, 0.98479658, 0.98479658,
0.96098067, 0.96098067, 0.96098067, 0.96098067, 0.91743778,
0.91743778, 0.91743778, 0.91743778, 0.85378402, 0.85378402,
0.85378402, 0.85378402, 0.7764234 , 0.7764234 , 0.7764234 ,
0.7764234 , 0.69575388, 0.69575388, 0.69575388, 0.69575388,
0.62328396, 0.62328396, 0.62328396, 0.62328396, 0.55678008,
0.55678008, 0.55678008, 0.55678008, 0.50850264, 0.50850264,
0.50850264, 0.50850264, 0.48137473, 0.48137473, 0.48137473,
0.48137473, 0.47065375, 0.47065375, 0.47065375, 0.47065375,
0.46777062, 0.46777062, 0.46777062, 0.46777062, 0.46716399,
0.46716399, 0.46716399, 0.46716399, 0.46676886, 0.46676886,
0.46676886, 0.46676886, 0.46619345, 0.46619345, 0.46619345,
0.46619345, 0.46537137, 0.46537137, 0.46537137, 0.46537137,
0.46458172, 0.46458172, 0.46458172, 0.46458172, 0.46395933,
0.46395933, 0.46395933, 0.46395933, 0.46392493, 0.46392493,
0.46392493, 0.46392493, 0.46425901, 0.46425901, 0.46425901,
0.46425901, 0.46466477, 0.46466477, 0.46466477, 0.46466477,
0.46482226, 0.46482226, 0.46482226, 0.46482226, 0.46376334,
0.46376334, 0.46376334, 0.46376334, 0.45509168, 0.45509168,
0.45509168, 0.45509168, 0.41543057, 0.41543057, 0.41543057,
0.41543057, 0.29185634, 0.29185634, 0.29185634, 0.29185634,
0.13928365, 0.13928365, 0.13928365, 0.13928365, 0.10357133,
0.10357133, 0.10357133, 0.10357133, 0.10027368, 0.10027368,
0.10027368, 0.10027368, 0.10002043, 0.10002043, 0.10002043,
0.10002043, 0.10000152, 0.10000152, 0.10000152, 0.10000152,
0.10000011, 0.10000011, 0.10000011, 0.10000011, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999972, 0.99999972,
0.99999972, 0.99999972, 0.99999813, 0.99999813, 0.99999813,
0.99999813, 0.99998874, 0.99998874, 0.99998874, 0.99998874,
0.99993939, 0.99993939, 0.99993939, 0.99993939, 0.99971172,
0.99971172, 0.99971172, 0.99971172, 0.99880638, 0.99880638,
0.99880638, 0.99880638, 0.99577085, 0.99577085, 0.99577085,
0.99577085, 0.98739937, 0.98739937, 0.98739937, 0.98739937,
0.96881177, 0.96881177, 0.96881177, 0.96881177, 0.93583686,
0.93583686, 0.93583686, 0.93583686, 0.88837163, 0.88837163,
0.88837163, 0.88837163, 0.83062885, 0.83062885, 0.83062885,
0.83062885, 0.76981937, 0.76981937, 0.76981937, 0.76981937,
0.71310496, 0.71310496, 0.71310496, 0.71310496, 0.66323748,
0.66323748, 0.66323748, 0.66323748, 0.62045416, 0.62045416,
0.62045416, 0.62045416, 0.58992516, 0.58992516, 0.58992516,
0.58992516, 0.58052011, 0.58052011, 0.58052011, 0.58052011,
0.58080503, 0.58080503, 0.58080503, 0.58080503, 0.58354665,
0.58354665, 0.58354665, 0.58354665, 0.58540693, 0.58540693,
0.58540693, 0.58540693, 0.58382526, 0.58382526, 0.58382526,
0.58382526, 0.57540774, 0.57540774, 0.57540774, 0.57540774,
0.55436649, 0.55436649, 0.55436649, 0.55436649, 0.51638779,
0.51638779, 0.51638779, 0.51638779, 0.46017314, 0.46017314,
0.46017314, 0.46017314, 0.39863657, 0.39863657, 0.39863657,
0.39863657, 0.3593355 , 0.3593355 , 0.3593355 , 0.3593355 ,
0.33897034, 0.33897034, 0.33897034, 0.33897034, 0.33057608,
0.33057608, 0.33057608, 0.33057608, 0.32697565, 0.32697565,
0.32697565, 0.32697565, 0.32222492, 0.32222492, 0.32222492,
0.32222492, 0.29663114, 0.29663114, 0.29663114, 0.29663114,
0.21326785, 0.21326785, 0.21326785, 0.21326785, 0.13963631,
0.13963631, 0.13963631, 0.13963631, 0.12638405, 0.12638405,
0.12638405, 0.12638405, 0.12510904, 0.12510904, 0.12510904,
0.12510904, 0.12500824, 0.12500824, 0.12500824, 0.12500824,
0.12500062, 0.12500062, 0.12500062, 0.12500062, 0.12500005,
0.12500005, 0.12500005, 0.12500005, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
7.50000045e-01, 7.50000045e-01, 7.50000045e-01, 7.50000045e-01,
7.50000331e-01, 7.50000331e-01, 7.50000331e-01, 7.50000331e-01,
7.50002210e-01, 7.50002210e-01, 7.50002210e-01, 7.50002210e-01,
7.50013317e-01, 7.50013317e-01, 7.50013317e-01, 7.50013317e-01,
7.50071715e-01, 7.50071715e-01, 7.50071715e-01, 7.50071715e-01,
7.50341105e-01, 7.50341105e-01, 7.50341105e-01, 7.50341105e-01,
7.51412648e-01, 7.51412648e-01, 7.51412648e-01, 7.51412648e-01,
7.55010444e-01, 7.55010444e-01, 7.55010444e-01, 7.55010444e-01,
7.64979298e-01, 7.64979298e-01, 7.64979298e-01, 7.64979298e-01,
7.87380429e-01, 7.87380429e-01, 7.87380429e-01, 7.87380429e-01,
8.28067152e-01, 8.28067152e-01, 8.28067152e-01, 8.28067152e-01,
8.88835090e-01, 8.88835090e-01, 8.88835090e-01, 8.88835090e-01,
9.66485823e-01, 9.66485823e-01, 9.66485823e-01, 9.66485823e-01,
1.05055852e+00, 1.05055852e+00, 1.05055852e+00, 1.05055852e+00,
1.13522481e+00, 1.13522481e+00, 1.13522481e+00, 1.13522481e+00,
1.22058953e+00, 1.22058953e+00, 1.22058953e+00, 1.22058953e+00,
1.29086599e+00, 1.29086599e+00, 1.29086599e+00, 1.29086599e+00,
1.33487117e+00, 1.33487117e+00, 1.33487117e+00, 1.33487117e+00,
1.35308250e+00, 1.35308250e+00, 1.35308250e+00, 1.35308250e+00,
1.35819700e+00, 1.35819700e+00, 1.35819700e+00, 1.35819700e+00,
1.36011186e+00, 1.36011186e+00, 1.36011186e+00, 1.36011186e+00,
1.36156806e+00, 1.36156806e+00, 1.36156806e+00, 1.36156806e+00,
1.36315058e+00, 1.36315058e+00, 1.36315058e+00, 1.36315058e+00,
1.36379727e+00, 1.36379727e+00, 1.36379727e+00, 1.36379727e+00,
1.36351067e+00, 1.36351067e+00, 1.36351067e+00, 1.36351067e+00,
1.36261248e+00, 1.36261248e+00, 1.36261248e+00, 1.36261248e+00,
1.36146436e+00, 1.36146436e+00, 1.36146436e+00, 1.36146436e+00,
1.36063916e+00, 1.36063916e+00, 1.36063916e+00, 1.36063916e+00,
1.36092008e+00, 1.36092008e+00, 1.36092008e+00, 1.36092008e+00,
1.36127360e+00, 1.36127360e+00, 1.36127360e+00, 1.36127360e+00,
1.36020110e+00, 1.36020110e+00, 1.36020110e+00, 1.36020110e+00,
1.35450702e+00, 1.35450702e+00, 1.35450702e+00, 1.35450702e+00,
1.32300030e+00, 1.32300030e+00, 1.32300030e+00, 1.32300030e+00,
1.18237908e+00, 1.18237908e+00, 1.18237908e+00, 1.18237908e+00,
7.15441717e-01, 7.15441717e-01, 7.15441717e-01, 7.15441717e-01,
1.38769905e-01, 1.38769905e-01, 1.38769905e-01, 1.38769905e-01,
1.23577720e-02, 1.23577720e-02, 1.23577720e-02, 1.23577720e-02,
9.36224416e-04, 9.36224416e-04, 9.36224416e-04, 9.36224416e-04,
7.00272710e-05, 7.00272710e-05, 7.00272710e-05, 7.00272710e-05,
5.21364262e-06, 5.21364262e-06, 5.21364262e-06, 5.21364262e-06,
3.86975587e-07, 3.86975587e-07, 3.86975587e-07, 3.86975587e-07,
2.86533268e-08, 2.86533268e-08, 2.86533268e-08, 2.86533268e-08,
2.11667470e-09, 2.11667470e-09, 2.11667470e-09, 2.11667470e-09,
1.55981163e-10, 1.55981163e-10, 1.55981163e-10, 1.55981163e-10,
1.14620004e-11, 1.14620004e-11, 1.14620004e-11, 1.14620004e-11,
8.39464394e-13, 8.39464394e-13, 8.39464394e-13, 8.39464394e-13,
6.10879150e-14, 6.10879150e-14, 6.10879150e-14, 6.10879150e-14,
4.40544803e-15, 4.40544803e-15, 4.40544803e-15, 4.40544803e-15,
3.15470277e-16, 3.15470277e-16, 3.15470277e-16, 3.15470277e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.99999961, 0.99999961,
0.99999961, 0.99999961, 0.99999739, 0.99999739, 0.99999739,
0.99999739, 0.99998424, 0.99998424, 0.99998424, 0.99998424,
0.99991515, 0.99991515, 0.99991515, 0.99991515, 0.99959648,
0.99959648, 0.99959648, 0.99959648, 0.99832987, 0.99832987,
0.99832987, 0.99832987, 0.99408857, 0.99408857, 0.99408857,
0.99408857, 0.98242851, 0.98242851, 0.98242851, 0.98242851,
0.95670672, 0.95670672, 0.95670672, 0.95670672, 0.91159757,
0.91159757, 0.91159757, 0.91159757, 0.8477941 , 0.8477941 ,
0.8477941 , 0.8477941 , 0.77194869, 0.77194869, 0.77194869,
0.77194869, 0.69397675, 0.69397675, 0.69397675, 0.69397675,
0.62399737, 0.62399737, 0.62399737, 0.62399737, 0.55909955,
0.55909955, 0.55909955, 0.55909955, 0.51089525, 0.51089525,
0.51089525, 0.51089525, 0.48295725, 0.48295725, 0.48295725,
0.48295725, 0.47140761, 0.47140761, 0.47140761, 0.47140761,
0.46792021, 0.46792021, 0.46792021, 0.46792021, 0.46704157,
0.46704157, 0.46704157, 0.46704157, 0.46664044, 0.46664044,
0.46664044, 0.46664044, 0.46622055, 0.46622055, 0.46622055,
0.46622055, 0.46568048, 0.46568048, 0.46568048, 0.46568048,
0.46505167, 0.46505167, 0.46505167, 0.46505167, 0.46437416,
0.46437416, 0.46437416, 0.46437416, 0.46411629, 0.46411629,
0.46411629, 0.46411629, 0.46418296, 0.46418296, 0.46418296,
0.46418296, 0.46437517, 0.46437517, 0.46437517, 0.46437517,
0.46474262, 0.46474262, 0.46474262, 0.46474262, 0.4647905 ,
0.4647905 , 0.4647905 , 0.4647905 , 0.46219808, 0.46219808,
0.46219808, 0.46219808, 0.44788536, 0.44788536, 0.44788536,
0.44788536, 0.38869085, 0.38869085, 0.38869085, 0.38869085,
0.23647903, 0.23647903, 0.23647903, 0.23647903, 0.11972131,
0.11972131, 0.11972131, 0.11972131, 0.10164215, 0.10164215,
0.10164215, 0.10164215, 0.10012388, 0.10012388, 0.10012388,
0.10012388, 0.10000926, 0.10000926, 0.10000926, 0.10000926,
0.10000069, 0.10000069, 0.10000069, 0.10000069, 0.10000005,
0.10000005, 0.10000005, 0.10000005, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999957, 0.99999957,
0.99999957, 0.99999957, 0.99999725, 0.99999725, 0.99999725,
0.99999725, 0.99998408, 0.99998408, 0.99998408, 0.99998408,
0.99991777, 0.99991777, 0.99991777, 0.99991777, 0.99962494,
0.99962494, 0.99962494, 0.99962494, 0.99851137, 0.99851137,
0.99851137, 0.99851137, 0.99494469, 0.99494469, 0.99494469,
0.99494469, 0.98555163, 0.98555163, 0.98555163, 0.98555163,
0.96559893, 0.96559893, 0.96559893, 0.96559893, 0.93155858,
0.93155858, 0.93155858, 0.93155858, 0.88403476, 0.88403476,
0.88403476, 0.88403476, 0.8274092 , 0.8274092 , 0.8274092 ,
0.8274092 , 0.76877221, 0.76877221, 0.76877221, 0.76877221,
0.71316056, 0.71316056, 0.71316056, 0.71316056, 0.66441163,
0.66441163, 0.66441163, 0.66441163, 0.62379118, 0.62379118,
0.62379118, 0.62379118, 0.59276036, 0.59276036, 0.59276036,
0.59276036, 0.58060214, 0.58060214, 0.58060214, 0.58060214,
0.58004359, 0.58004359, 0.58004359, 0.58004359, 0.58181969,
0.58181969, 0.58181969, 0.58181969, 0.58456085, 0.58456085,
0.58456085, 0.58456085, 0.58426133, 0.58426133, 0.58426133,
0.58426133, 0.57952111, 0.57952111, 0.57952111, 0.57952111,
0.56481381, 0.56481381, 0.56481381, 0.56481381, 0.53498407,
0.53498407, 0.53498407, 0.53498407, 0.48707968, 0.48707968,
0.48707968, 0.48707968, 0.4240172 , 0.4240172 , 0.4240172 ,
0.4240172 , 0.37419742, 0.37419742, 0.37419742, 0.37419742,
0.34640254, 0.34640254, 0.34640254, 0.34640254, 0.33383188,
0.33383188, 0.33383188, 0.33383188, 0.32905424, 0.32905424,
0.32905424, 0.32905424, 0.32677563, 0.32677563, 0.32677563,
0.32677563, 0.31923078, 0.31923078, 0.31923078, 0.31923078,
0.27840167, 0.27840167, 0.27840167, 0.27840167, 0.1822785 ,
0.1822785 , 0.1822785 , 0.1822785 , 0.13240005, 0.13240005,
0.13240005, 0.13240005, 0.12564148, 0.12564148, 0.12564148,
0.12564148, 0.12504969, 0.12504969, 0.12504969, 0.12504969,
0.12500374, 0.12500374, 0.12500374, 0.12500374, 0.12500028,
0.12500028, 0.12500028, 0.12500028, 0.12500002, 0.12500002,
0.12500002, 0.12500002, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000072e-01, 7.50000072e-01, 7.50000072e-01, 7.50000072e-01,
7.50000509e-01, 7.50000509e-01, 7.50000509e-01, 7.50000509e-01,
7.50003258e-01, 7.50003258e-01, 7.50003258e-01, 7.50003258e-01,
7.50018836e-01, 7.50018836e-01, 7.50018836e-01, 7.50018836e-01,
7.50097297e-01, 7.50097297e-01, 7.50097297e-01, 7.50097297e-01,
7.50443797e-01, 7.50443797e-01, 7.50443797e-01, 7.50443797e-01,
7.51761984e-01, 7.51761984e-01, 7.51761984e-01, 7.51761984e-01,
7.55991281e-01, 7.55991281e-01, 7.55991281e-01, 7.55991281e-01,
7.67190124e-01, 7.67190124e-01, 7.67190124e-01, 7.67190124e-01,
7.91292369e-01, 7.91292369e-01, 7.91292369e-01, 7.91292369e-01,
8.33436036e-01, 8.33436036e-01, 8.33436036e-01, 8.33436036e-01,
8.94508968e-01, 8.94508968e-01, 8.94508968e-01, 8.94508968e-01,
9.70928324e-01, 9.70928324e-01, 9.70928324e-01, 9.70928324e-01,
1.05242450e+00, 1.05242450e+00, 1.05242450e+00, 1.05242450e+00,
1.13456684e+00, 1.13456684e+00, 1.13456684e+00, 1.13456684e+00,
1.21752814e+00, 1.21752814e+00, 1.21752814e+00, 1.21752814e+00,
1.28688080e+00, 1.28688080e+00, 1.28688080e+00, 1.28688080e+00,
1.33202565e+00, 1.33202565e+00, 1.33202565e+00, 1.33202565e+00,
1.35205511e+00, 1.35205511e+00, 1.35205511e+00, 1.35205511e+00,
1.35794285e+00, 1.35794285e+00, 1.35794285e+00, 1.35794285e+00,
1.35979765e+00, 1.35979765e+00, 1.35979765e+00, 1.35979765e+00,
1.36117165e+00, 1.36117165e+00, 1.36117165e+00, 1.36117165e+00,
1.36278081e+00, 1.36278081e+00, 1.36278081e+00, 1.36278081e+00,
1.36384708e+00, 1.36384708e+00, 1.36384708e+00, 1.36384708e+00,
1.36394428e+00, 1.36394428e+00, 1.36394428e+00, 1.36394428e+00,
1.36340422e+00, 1.36340422e+00, 1.36340422e+00, 1.36340422e+00,
1.36216954e+00, 1.36216954e+00, 1.36216954e+00, 1.36216954e+00,
1.36091948e+00, 1.36091948e+00, 1.36091948e+00, 1.36091948e+00,
1.36072488e+00, 1.36072488e+00, 1.36072488e+00, 1.36072488e+00,
1.36080076e+00, 1.36080076e+00, 1.36080076e+00, 1.36080076e+00,
1.36052967e+00, 1.36052967e+00, 1.36052967e+00, 1.36052967e+00,
1.35904254e+00, 1.35904254e+00, 1.35904254e+00, 1.35904254e+00,
1.34885124e+00, 1.34885124e+00, 1.34885124e+00, 1.34885124e+00,
1.29744243e+00, 1.29744243e+00, 1.29744243e+00, 1.29744243e+00,
1.08422445e+00, 1.08422445e+00, 1.08422445e+00, 1.08422445e+00,
5.02990327e-01, 5.02990327e-01, 5.02990327e-01, 5.02990327e-01,
6.93727442e-02, 6.93727442e-02, 6.93727442e-02, 6.93727442e-02,
5.63191058e-03, 5.63191058e-03, 5.63191058e-03, 5.63191058e-03,
4.24506091e-04, 4.24506091e-04, 4.24506091e-04, 4.24506091e-04,
3.17404436e-05, 3.17404436e-05, 3.17404436e-05, 3.17404436e-05,
2.36582375e-06, 2.36582375e-06, 2.36582375e-06, 2.36582375e-06,
1.75833876e-07, 1.75833876e-07, 1.75833876e-07, 1.75833876e-07,
1.30328080e-08, 1.30328080e-08, 1.30328080e-08, 1.30328080e-08,
9.63639514e-10, 9.63639514e-10, 9.63639514e-10, 9.63639514e-10,
7.10763736e-11, 7.10763736e-11, 7.10763736e-11, 7.10763736e-11,
5.22825264e-12, 5.22825264e-12, 5.22825264e-12, 5.22825264e-12,
3.83163730e-13, 3.83163730e-13, 3.83163730e-13, 3.83163730e-13,
2.79726565e-14, 2.79726565e-14, 2.79726565e-14, 2.79726565e-14,
2.02525897e-15, 2.02525897e-15, 2.02525897e-15, 2.02525897e-15,
1.51631827e-16, 1.51631827e-16, 1.51631827e-16, 1.51631827e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999991,
0.99999991, 0.99999991, 0.99999991, 0.9999994 , 0.9999994 ,
0.9999994 , 0.9999994 , 0.99999614, 0.99999614, 0.99999614,
0.99999614, 0.99997771, 0.99997771, 0.99997771, 0.99997771,
0.99988488, 0.99988488, 0.99988488, 0.99988488, 0.99947502,
0.99947502, 0.99947502, 0.99947502, 0.99791728, 0.99791728,
0.99791728, 0.99791728, 0.99293536, 0.99293536, 0.99293536,
0.99293536, 0.97986052, 0.97986052, 0.97986052, 0.97986052,
0.95227911, 0.95227911, 0.95227911, 0.95227911, 0.90578254,
0.90578254, 0.90578254, 0.90578254, 0.84200911, 0.84200911,
0.84200911, 0.84200911, 0.76771824, 0.76771824, 0.76771824,
0.76771824, 0.69232015, 0.69232015, 0.69232015, 0.69232015,
0.62465064, 0.62465064, 0.62465064, 0.62465064, 0.56138795,
0.56138795, 0.56138795, 0.56138795, 0.51330741, 0.51330741,
0.51330741, 0.51330741, 0.4845093 , 0.4845093 , 0.4845093 ,
0.4845093 , 0.47217185, 0.47217185, 0.47217185, 0.47217185,
0.46819774, 0.46819774, 0.46819774, 0.46819774, 0.46701446,
0.46701446, 0.46701446, 0.46701446, 0.46652199, 0.46652199,
0.46652199, 0.46652199, 0.46611084, 0.46611084, 0.46611084,
0.46611084, 0.46578348, 0.46578348, 0.46578348, 0.46578348,
0.46535618, 0.46535618, 0.46535618, 0.46535618, 0.46482306,
0.46482306, 0.46482306, 0.46482306, 0.46446841, 0.46446841,
0.46446841, 0.46446841, 0.46430983, 0.46430983, 0.46430983,
0.46430983, 0.46428048, 0.46428048, 0.46428048, 0.46428048,
0.46452486, 0.46452486, 0.46452486, 0.46452486, 0.4649441 ,
0.4649441 , 0.4649441 , 0.4649441 , 0.46428963, 0.46428963,
0.46428963, 0.46428963, 0.45964556, 0.45964556, 0.45964556,
0.45964556, 0.4368908 , 0.4368908 , 0.4368908 , 0.4368908 ,
0.35200209, 0.35200209, 0.35200209, 0.35200209, 0.18536524,
0.18536524, 0.18536524, 0.18536524, 0.10948877, 0.10948877,
0.10948877, 0.10948877, 0.10074638, 0.10074638, 0.10074638,
0.10074638, 0.10005616, 0.10005616, 0.10005616, 0.10005616,
0.1000042 , 0.1000042 , 0.1000042 , 0.1000042 , 0.10000031,
0.10000031, 0.10000031, 0.10000031, 0.10000002, 0.10000002,
0.10000002, 0.10000002, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.9999999 ,
0.9999999 , 0.9999999 , 0.9999999 , 0.99999935, 0.99999935,
0.99999935, 0.99999935, 0.999996 , 0.999996 , 0.999996 ,
0.999996 , 0.9999778 , 0.9999778 , 0.9999778 , 0.9999778 ,
0.99988988, 0.99988988, 0.99988988, 0.99988988, 0.99951775,
0.99951775, 0.99951775, 0.99951775, 0.99816293, 0.99816293,
0.99816293, 0.99816293, 0.99401287, 0.99401287, 0.99401287,
0.99401287, 0.98356146, 0.98356146, 0.98356146, 0.98356146,
0.9622853 , 0.9622853 , 0.9622853 , 0.9622853 , 0.92730693,
0.92730693, 0.92730693, 0.92730693, 0.87984577, 0.87984577,
0.87984577, 0.87984577, 0.82436213, 0.82436213, 0.82436213,
0.82436213, 0.76781991, 0.76781991, 0.76781991, 0.76781991,
0.71338064, 0.71338064, 0.71338064, 0.71338064, 0.66530752,
0.66530752, 0.66530752, 0.66530752, 0.62662899, 0.62662899,
0.62662899, 0.62662899, 0.59584458, 0.59584458, 0.59584458,
0.59584458, 0.58122522, 0.58122522, 0.58122522, 0.58122522,
0.57945682, 0.57945682, 0.57945682, 0.57945682, 0.58056762,
0.58056762, 0.58056762, 0.58056762, 0.58335259, 0.58335259,
0.58335259, 0.58335259, 0.5840114 , 0.5840114 , 0.5840114 ,
0.5840114 , 0.58173244, 0.58173244, 0.58173244, 0.58173244,
0.57212127, 0.57212127, 0.57212127, 0.57212127, 0.54967525,
0.54967525, 0.54967525, 0.54967525, 0.51027045, 0.51027045,
0.51027045, 0.51027045, 0.45256286, 0.45256286, 0.45256286,
0.45256286, 0.39319195, 0.39319195, 0.39319195, 0.39319195,
0.35669662, 0.35669662, 0.35669662, 0.35669662, 0.33848333,
0.33848333, 0.33848333, 0.33848333, 0.33098586, 0.33098586,
0.33098586, 0.33098586, 0.32867169, 0.32867169, 0.32867169,
0.32867169, 0.32673109, 0.32673109, 0.32673109, 0.32673109,
0.31276146, 0.31276146, 0.31276146, 0.31276146, 0.25297057,
0.25297057, 0.25297057, 0.25297057, 0.15774063, 0.15774063,
0.15774063, 0.15774063, 0.12857133, 0.12857133, 0.12857133,
0.12857133, 0.12529541, 0.12529541, 0.12529541, 0.12529541,
0.12502259, 0.12502259, 0.12502259, 0.12502259, 0.1250017 ,
0.1250017 , 0.1250017 , 0.1250017 , 0.12500013, 0.12500013,
0.12500013, 0.12500013, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000015e-01, 7.50000015e-01, 7.50000015e-01, 7.50000015e-01,
7.50000114e-01, 7.50000114e-01, 7.50000114e-01, 7.50000114e-01,
7.50000768e-01, 7.50000768e-01, 7.50000768e-01, 7.50000768e-01,
7.50004730e-01, 7.50004730e-01, 7.50004730e-01, 7.50004730e-01,
7.50026264e-01, 7.50026264e-01, 7.50026264e-01, 7.50026264e-01,
7.50130297e-01, 7.50130297e-01, 7.50130297e-01, 7.50130297e-01,
7.50570647e-01, 7.50570647e-01, 7.50570647e-01, 7.50570647e-01,
7.52174682e-01, 7.52174682e-01, 7.52174682e-01, 7.52174682e-01,
7.57098423e-01, 7.57098423e-01, 7.57098423e-01, 7.57098423e-01,
7.69575519e-01, 7.69575519e-01, 7.69575519e-01, 7.69575519e-01,
7.95338848e-01, 7.95338848e-01, 7.95338848e-01, 7.95338848e-01,
8.38790934e-01, 8.38790934e-01, 8.38790934e-01, 8.38790934e-01,
9.00008072e-01, 9.00008072e-01, 9.00008072e-01, 9.00008072e-01,
9.75143222e-01, 9.75143222e-01, 9.75143222e-01, 9.75143222e-01,
1.05418743e+00, 1.05418743e+00, 1.05418743e+00, 1.05418743e+00,
1.13392925e+00, 1.13392925e+00, 1.13392925e+00, 1.13392925e+00,
1.21464803e+00, 1.21464803e+00, 1.21464803e+00, 1.21464803e+00,
1.28307514e+00, 1.28307514e+00, 1.28307514e+00, 1.28307514e+00,
1.32905104e+00, 1.32905104e+00, 1.32905104e+00, 1.32905104e+00,
1.35077100e+00, 1.35077100e+00, 1.35077100e+00, 1.35077100e+00,
1.35767915e+00, 1.35767915e+00, 1.35767915e+00, 1.35767915e+00,
1.35963173e+00, 1.35963173e+00, 1.35963173e+00, 1.35963173e+00,
1.36086885e+00, 1.36086885e+00, 1.36086885e+00, 1.36086885e+00,
1.36233245e+00, 1.36233245e+00, 1.36233245e+00, 1.36233245e+00,
1.36365306e+00, 1.36365306e+00, 1.36365306e+00, 1.36365306e+00,
1.36410375e+00, 1.36410375e+00, 1.36410375e+00, 1.36410375e+00,
1.36392708e+00, 1.36392708e+00, 1.36392708e+00, 1.36392708e+00,
1.36298853e+00, 1.36298853e+00, 1.36298853e+00, 1.36298853e+00,
1.36152724e+00, 1.36152724e+00, 1.36152724e+00, 1.36152724e+00,
1.36088739e+00, 1.36088739e+00, 1.36088739e+00, 1.36088739e+00,
1.36059622e+00, 1.36059622e+00, 1.36059622e+00, 1.36059622e+00,
1.36030814e+00, 1.36030814e+00, 1.36030814e+00, 1.36030814e+00,
1.36008913e+00, 1.36008913e+00, 1.36008913e+00, 1.36008913e+00,
1.35711729e+00, 1.35711729e+00, 1.35711729e+00, 1.35711729e+00,
1.33931866e+00, 1.33931866e+00, 1.33931866e+00, 1.33931866e+00,
1.25869909e+00, 1.25869909e+00, 1.25869909e+00, 1.25869909e+00,
9.47391457e-01, 9.47391457e-01, 9.47391457e-01, 9.47391457e-01,
3.03306502e-01, 3.03306502e-01, 3.03306502e-01, 3.03306502e-01,
3.27779884e-02, 3.27779884e-02, 3.27779884e-02, 3.27779884e-02,
2.56194868e-03, 2.56194868e-03, 2.56194868e-03, 2.56194868e-03,
1.92341225e-04, 1.92341225e-04, 1.92341225e-04, 1.92341225e-04,
1.43841206e-05, 1.43841206e-05, 1.43841206e-05, 1.43841206e-05,
1.07319292e-06, 1.07319292e-06, 1.07319292e-06, 1.07319292e-06,
7.98515072e-08, 7.98515072e-08, 7.98515072e-08, 7.98515072e-08,
5.92527078e-09, 5.92527078e-09, 5.92527078e-09, 5.92527078e-09,
4.38545776e-10, 4.38545776e-10, 4.38545776e-10, 4.38545776e-10,
3.23766591e-11, 3.23766591e-11, 3.23766591e-11, 3.23766591e-11,
2.38365625e-12, 2.38365625e-12, 2.38365625e-12, 2.38365625e-12,
1.74984281e-13, 1.74984281e-13, 1.74984281e-13, 1.74984281e-13,
1.27988486e-14, 1.27988486e-14, 1.27988486e-14, 1.27988486e-14,
9.36619527e-16, 9.36619527e-16, 9.36619527e-16, 9.36619527e-16,
5.90078683e-17, 5.90078683e-17, 5.90078683e-17, 5.90078683e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999909, 0.99999909,
0.99999909, 0.99999909, 0.9999944 , 0.9999944 , 0.9999944 ,
0.9999944 , 0.99996892, 0.99996892, 0.99996892, 0.99996892,
0.99984584, 0.99984584, 0.99984584, 0.99984584, 0.99932502,
0.99932502, 0.99932502, 0.99932502, 0.99743007, 0.99743007,
0.99743007, 0.99743007, 0.99163522, 0.99163522, 0.99163522,
0.99163522, 0.97709688, 0.97709688, 0.97709688, 0.97709688,
0.94771858, 0.94771858, 0.94771858, 0.94771858, 0.90001323,
0.90001323, 0.90001323, 0.90001323, 0.83643028, 0.83643028,
0.83643028, 0.83643028, 0.76371797, 0.76371797, 0.76371797,
0.76371797, 0.69077552, 0.69077552, 0.69077552, 0.69077552,
0.62524441, 0.62524441, 0.62524441, 0.62524441, 0.56360708,
0.56360708, 0.56360708, 0.56360708, 0.51576884, 0.51576884,
0.51576884, 0.51576884, 0.48608775, 0.48608775, 0.48608775,
0.48608775, 0.47290348, 0.47290348, 0.47290348, 0.47290348,
0.46852795, 0.46852795, 0.46852795, 0.46852795, 0.46709417,
0.46709417, 0.46709417, 0.46709417, 0.4664615 , 0.4664615 ,
0.4664615 , 0.4664615 , 0.46595946, 0.46595946, 0.46595946,
0.46595946, 0.46573483, 0.46573483, 0.46573483, 0.46573483,
0.46549762, 0.46549762, 0.46549762, 0.46549762, 0.4651401 ,
0.4651401 , 0.4651401 , 0.4651401 , 0.4648877 , 0.4648877 ,
0.4648877 , 0.4648877 , 0.46460628, 0.46460628, 0.46460628,
0.46460628, 0.46435859, 0.46435859, 0.46435859, 0.46435859,
0.46443008, 0.46443008, 0.46443008, 0.46443008, 0.46484084,
0.46484084, 0.46484084, 0.46484084, 0.46477421, 0.46477421,
0.46477421, 0.46477421, 0.46345495, 0.46345495, 0.46345495,
0.46345495, 0.45575261, 0.45575261, 0.45575261, 0.45575261,
0.41991969, 0.41991969, 0.41991969, 0.41991969, 0.30495101,
0.30495101, 0.30495101, 0.30495101, 0.14641294, 0.14641294,
0.14641294, 0.14641294, 0.10439859, 0.10439859, 0.10439859,
0.10439859, 0.10033916, 0.10033916, 0.10033916, 0.10033916,
0.10002545, 0.10002545, 0.10002545, 0.10002545, 0.1000019 ,
0.1000019 , 0.1000019 , 0.1000019 , 0.10000014, 0.10000014,
0.10000014, 0.10000014, 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999985,
0.99999985, 0.99999985, 0.99999985, 0.99999903, 0.99999903,
0.99999903, 0.99999903, 0.99999428, 0.99999428, 0.99999428,
0.99999428, 0.99996946, 0.99996946, 0.99996946, 0.99996946,
0.99985432, 0.99985432, 0.99985432, 0.99985432, 0.99938676,
0.99938676, 0.99938676, 0.99938676, 0.99775536, 0.99775536,
0.99775536, 0.99775536, 0.99297081, 0.99297081, 0.99297081,
0.99297081, 0.98143309, 0.98143309, 0.98143309, 0.98143309,
0.95888578, 0.95888578, 0.95888578, 0.95888578, 0.9230955 ,
0.9230955 , 0.9230955 , 0.9230955 , 0.87580507, 0.87580507,
0.87580507, 0.87580507, 0.82147709, 0.82147709, 0.82147709,
0.82147709, 0.76692374, 0.76692374, 0.76692374, 0.76692374,
0.71378615, 0.71378615, 0.71378615, 0.71378615, 0.66604952,
0.66604952, 0.66604952, 0.66604952, 0.62893204, 0.62893204,
0.62893204, 0.62893204, 0.59898326, 0.59898326, 0.59898326,
0.59898326, 0.58239235, 0.58239235, 0.58239235, 0.58239235,
0.57906513, 0.57906513, 0.57906513, 0.57906513, 0.5796752 ,
0.5796752 , 0.5796752 , 0.5796752 , 0.58197407, 0.58197407,
0.58197407, 0.58197407, 0.58350893, 0.58350893, 0.58350893,
0.58350893, 0.58262487, 0.58262487, 0.58262487, 0.58262487,
0.5768568 , 0.5768568 , 0.5768568 , 0.5768568 , 0.56077107,
0.56077107, 0.56077107, 0.56077107, 0.52949915, 0.52949915,
0.52949915, 0.52949915, 0.48013846, 0.48013846, 0.48013846,
0.48013846, 0.41713955, 0.41713955, 0.41713955, 0.41713955,
0.37044721, 0.37044721, 0.37044721, 0.37044721, 0.34523075,
0.34523075, 0.34523075, 0.34523075, 0.33369594, 0.33369594,
0.33369594, 0.33369594, 0.32989191, 0.32989191, 0.32989191,
0.32989191, 0.32903442, 0.32903442, 0.32903442, 0.32903442,
0.32566179, 0.32566179, 0.32566179, 0.32566179, 0.30140914,
0.30140914, 0.30140914, 0.30140914, 0.22161536, 0.22161536,
0.22161536, 0.22161536, 0.142229 , 0.142229 , 0.142229 ,
0.142229 , 0.12669189, 0.12669189, 0.12669189, 0.12669189,
0.12513485, 0.12513485, 0.12513485, 0.12513485, 0.12501025,
0.12501025, 0.12501025, 0.12501025, 0.12500077, 0.12500077,
0.12500077, 0.12500077, 0.12500006, 0.12500006, 0.12500006,
0.12500006, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
7.50000176e-01, 7.50000176e-01, 7.50000176e-01, 7.50000176e-01,
7.50001143e-01, 7.50001143e-01, 7.50001143e-01, 7.50001143e-01,
7.50006765e-01, 7.50006765e-01, 7.50006765e-01, 7.50006765e-01,
7.50036132e-01, 7.50036132e-01, 7.50036132e-01, 7.50036132e-01,
7.50172369e-01, 7.50172369e-01, 7.50172369e-01, 7.50172369e-01,
7.50725674e-01, 7.50725674e-01, 7.50725674e-01, 7.50725674e-01,
7.52657561e-01, 7.52657561e-01, 7.52657561e-01, 7.52657561e-01,
7.58337621e-01, 7.58337621e-01, 7.58337621e-01, 7.58337621e-01,
7.72131336e-01, 7.72131336e-01, 7.72131336e-01, 7.72131336e-01,
7.99502632e-01, 7.99502632e-01, 7.99502632e-01, 7.99502632e-01,
8.44114177e-01, 8.44114177e-01, 8.44114177e-01, 8.44114177e-01,
9.05331881e-01, 9.05331881e-01, 9.05331881e-01, 9.05331881e-01,
9.79125457e-01, 9.79125457e-01, 9.79125457e-01, 9.79125457e-01,
1.05587185e+00, 1.05587185e+00, 1.05587185e+00, 1.05587185e+00,
1.13331506e+00, 1.13331506e+00, 1.13331506e+00, 1.13331506e+00,
1.21189543e+00, 1.21189543e+00, 1.21189543e+00, 1.21189543e+00,
1.27944869e+00, 1.27944869e+00, 1.27944869e+00, 1.27944869e+00,
1.32606311e+00, 1.32606311e+00, 1.32606311e+00, 1.32606311e+00,
1.34925512e+00, 1.34925512e+00, 1.34925512e+00, 1.34925512e+00,
1.35728578e+00, 1.35728578e+00, 1.35728578e+00, 1.35728578e+00,
1.35954920e+00, 1.35954920e+00, 1.35954920e+00, 1.35954920e+00,
1.36069411e+00, 1.36069411e+00, 1.36069411e+00, 1.36069411e+00,
1.36194086e+00, 1.36194086e+00, 1.36194086e+00, 1.36194086e+00,
1.36330593e+00, 1.36330593e+00, 1.36330593e+00, 1.36330593e+00,
1.36405650e+00, 1.36405650e+00, 1.36405650e+00, 1.36405650e+00,
1.36415497e+00, 1.36415497e+00, 1.36415497e+00, 1.36415497e+00,
1.36359348e+00, 1.36359348e+00, 1.36359348e+00, 1.36359348e+00,
1.36234614e+00, 1.36234614e+00, 1.36234614e+00, 1.36234614e+00,
1.36135889e+00, 1.36135889e+00, 1.36135889e+00, 1.36135889e+00,
1.36073912e+00, 1.36073912e+00, 1.36073912e+00, 1.36073912e+00,
1.36010502e+00, 1.36010502e+00, 1.36010502e+00, 1.36010502e+00,
1.36015262e+00, 1.36015262e+00, 1.36015262e+00, 1.36015262e+00,
1.35942760e+00, 1.35942760e+00, 1.35942760e+00, 1.35942760e+00,
1.35349451e+00, 1.35349451e+00, 1.35349451e+00, 1.35349451e+00,
1.32499316e+00, 1.32499316e+00, 1.32499316e+00, 1.32499316e+00,
1.19968030e+00, 1.19968030e+00, 1.19968030e+00, 1.19968030e+00,
7.65654632e-01, 7.65654632e-01, 7.65654632e-01, 7.65654632e-01,
1.63013744e-01, 1.63013744e-01, 1.63013744e-01, 1.63013744e-01,
1.51766301e-02, 1.51766301e-02, 1.51766301e-02, 1.51766301e-02,
1.15961586e-03, 1.15961586e-03, 1.15961586e-03, 1.15961586e-03,
8.71092067e-05, 8.71092067e-05, 8.71092067e-05, 8.71092067e-05,
6.51852874e-06, 6.51852874e-06, 6.51852874e-06, 6.51852874e-06,
4.86666078e-07, 4.86666078e-07, 4.86666078e-07, 4.86666078e-07,
3.62471947e-08, 3.62471947e-08, 3.62471947e-08, 3.62471947e-08,
2.69260253e-09, 2.69260253e-09, 2.69260253e-09, 2.69260253e-09,
1.99494358e-10, 1.99494358e-10, 1.99494358e-10, 1.99494358e-10,
1.47423360e-11, 1.47423360e-11, 1.47423360e-11, 1.47423360e-11,
1.08650415e-12, 1.08650415e-12, 1.08650415e-12, 1.08650415e-12,
7.98526879e-14, 7.98526879e-14, 7.98526879e-14, 7.98526879e-14,
5.91227187e-15, 5.91227187e-15, 5.91227187e-15, 5.91227187e-15,
3.97725372e-16, 3.97725372e-16, 3.97725372e-16, 3.97725372e-16,
1.14152033e-17, 1.14152033e-17, 1.14152033e-17, 1.14152033e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999979,
0.99999979, 0.99999979, 0.99999979, 0.99999865, 0.99999865,
0.99999865, 0.99999865, 0.999992 , 0.999992 , 0.999992 ,
0.999992 , 0.99995725, 0.99995725, 0.99995725, 0.99995725,
0.99979607, 0.99979607, 0.99979607, 0.99979607, 0.99914172,
0.99914172, 0.99914172, 0.99914172, 0.9968603 , 0.9968603 ,
0.9968603 , 0.9968603 , 0.99018195, 0.99018195, 0.99018195,
0.99018195, 0.97414391, 0.97414391, 0.97414391, 0.97414391,
0.94304609, 0.94304609, 0.94304609, 0.94304609, 0.89430785,
0.89430785, 0.89430785, 0.89430785, 0.83105531, 0.83105531,
0.83105531, 0.83105531, 0.75992159, 0.75992159, 0.75992159,
0.75992159, 0.68934729, 0.68934729, 0.68934729, 0.68934729,
0.62578832, 0.62578832, 0.62578832, 0.62578832, 0.56572412,
0.56572412, 0.56572412, 0.56572412, 0.51826812, 0.51826812,
0.51826812, 0.51826812, 0.48775305, 0.48775305, 0.48775305,
0.48775305, 0.47361881, 0.47361881, 0.47361881, 0.47361881,
0.46884188, 0.46884188, 0.46884188, 0.46884188, 0.46724329,
0.46724329, 0.46724329, 0.46724329, 0.46648424, 0.46648424,
0.46648424, 0.46648424, 0.46584328, 0.46584328, 0.46584328,
0.46584328, 0.46559981, 0.46559981, 0.46559981, 0.46559981,
0.46550449, 0.46550449, 0.46550449, 0.46550449, 0.46529836,
0.46529836, 0.46529836, 0.46529836, 0.46519784, 0.46519784,
0.46519784, 0.46519784, 0.46501854, 0.46501854, 0.46501854,
0.46501854, 0.4645934 , 0.4645934 , 0.4645934 , 0.4645934 ,
0.4644984 , 0.4644984 , 0.4644984 , 0.4644984 , 0.4647448 ,
0.4647448 , 0.4647448 , 0.4647448 , 0.46480417, 0.46480417,
0.46480417, 0.46480417, 0.46452695, 0.46452695, 0.46452695,
0.46452695, 0.46226705, 0.46226705, 0.46226705, 0.46226705,
0.44923987, 0.44923987, 0.44923987, 0.44923987, 0.39520123,
0.39520123, 0.39520123, 0.39520123, 0.25019732, 0.25019732,
0.25019732, 0.25019732, 0.12347913, 0.12347913, 0.12347913,
0.12347913, 0.10201923, 0.10201923, 0.10201923, 0.10201923,
0.10015345, 0.10015345, 0.10015345, 0.10015345, 0.10001152,
0.10001152, 0.10001152, 0.10001152, 0.10000086, 0.10000086,
0.10000086, 0.10000086, 0.10000006, 0.10000006, 0.10000006,
0.10000006, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999977,
0.99999977, 0.99999977, 0.99999977, 0.99999859, 0.99999859,
0.99999859, 0.99999859, 0.99999193, 0.99999193, 0.99999193,
0.99999193, 0.99995852, 0.99995852, 0.99995852, 0.99995852,
0.99980949, 0.99980949, 0.99980949, 0.99980949, 0.99922831,
0.99922831, 0.99922831, 0.99922831, 0.99728299, 0.99728299,
0.99728299, 0.99728299, 0.99181486, 0.99181486, 0.99181486,
0.99181486, 0.97917208, 0.97917208, 0.97917208, 0.97917208,
0.95541523, 0.95541523, 0.95541523, 0.95541523, 0.91893615,
0.91893615, 0.91893615, 0.91893615, 0.87190997, 0.87190997,
0.87190997, 0.87190997, 0.8187528 , 0.8187528 , 0.8187528 ,
0.8187528 , 0.76602872, 0.76602872, 0.76602872, 0.76602872,
0.7143833 , 0.7143833 , 0.7143833 , 0.7143833 , 0.66676801,
0.66676801, 0.66676801, 0.66676801, 0.6307179 , 0.6307179 ,
0.6307179 , 0.6307179 , 0.60198349, 0.60198349, 0.60198349,
0.60198349, 0.58404794, 0.58404794, 0.58404794, 0.58404794,
0.57892756, 0.57892756, 0.57892756, 0.57892756, 0.57904741,
0.57904741, 0.57904741, 0.57904741, 0.58062787, 0.58062787,
0.58062787, 0.58062787, 0.58283322, 0.58283322, 0.58283322,
0.58283322, 0.58277091, 0.58277091, 0.58277091, 0.58277091,
0.57963328, 0.57963328, 0.57963328, 0.57963328, 0.56873886,
0.56873886, 0.56873886, 0.56873886, 0.54485283, 0.54485283,
0.54485283, 0.54485283, 0.50395357, 0.50395357, 0.50395357,
0.50395357, 0.44501153, 0.44501153, 0.44501153, 0.44501153,
0.38825268, 0.38825268, 0.38825268, 0.38825268, 0.35468169,
0.35468169, 0.35468169, 0.35468169, 0.33785192, 0.33785192,
0.33785192, 0.33785192, 0.331301 , 0.331301 , 0.331301 ,
0.331301 , 0.33001344, 0.33001344, 0.33001344, 0.33001344,
0.32943388, 0.32943388, 0.32943388, 0.32943388, 0.32258242,
0.32258242, 0.32258242, 0.32258242, 0.28431554, 0.28431554,
0.28431554, 0.28431554, 0.1892955 , 0.1892955 , 0.1892955 ,
0.1892955 , 0.1338258 , 0.1338258 , 0.1338258 , 0.1338258 ,
0.12578276, 0.12578276, 0.12578276, 0.12578276, 0.1250613 ,
0.1250613 , 0.1250613 , 0.1250613 , 0.12500465, 0.12500465,
0.12500465, 0.12500465, 0.12500035, 0.12500035, 0.12500035,
0.12500035, 0.12500003, 0.12500003, 0.12500003, 0.12500003,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
7.50000039e-01, 7.50000039e-01, 7.50000039e-01, 7.50000039e-01,
7.50000267e-01, 7.50000267e-01, 7.50000267e-01, 7.50000267e-01,
7.50001674e-01, 7.50001674e-01, 7.50001674e-01, 7.50001674e-01,
7.50009545e-01, 7.50009545e-01, 7.50009545e-01, 7.50009545e-01,
7.50049084e-01, 7.50049084e-01, 7.50049084e-01, 7.50049084e-01,
7.50225416e-01, 7.50225416e-01, 7.50225416e-01, 7.50225416e-01,
7.50913227e-01, 7.50913227e-01, 7.50913227e-01, 7.50913227e-01,
7.53217421e-01, 7.53217421e-01, 7.53217421e-01, 7.53217421e-01,
7.59713585e-01, 7.59713585e-01, 7.59713585e-01, 7.59713585e-01,
7.74851816e-01, 7.74851816e-01, 7.74851816e-01, 7.74851816e-01,
8.03766307e-01, 8.03766307e-01, 8.03766307e-01, 8.03766307e-01,
8.49390171e-01, 8.49390171e-01, 8.49390171e-01, 8.49390171e-01,
9.10489184e-01, 9.10489184e-01, 9.10489184e-01, 9.10489184e-01,
9.82823141e-01, 9.82823141e-01, 9.82823141e-01, 9.82823141e-01,
1.05751085e+00, 1.05751085e+00, 1.05751085e+00, 1.05751085e+00,
1.13275935e+00, 1.13275935e+00, 1.13275935e+00, 1.13275935e+00,
1.20924075e+00, 1.20924075e+00, 1.20924075e+00, 1.20924075e+00,
1.27595955e+00, 1.27595955e+00, 1.27595955e+00, 1.27595955e+00,
1.32313321e+00, 1.32313321e+00, 1.32313321e+00, 1.32313321e+00,
1.34759687e+00, 1.34759687e+00, 1.34759687e+00, 1.34759687e+00,
1.35670899e+00, 1.35670899e+00, 1.35670899e+00, 1.35670899e+00,
1.35944955e+00, 1.35944955e+00, 1.35944955e+00, 1.35944955e+00,
1.36061079e+00, 1.36061079e+00, 1.36061079e+00, 1.36061079e+00,
1.36171079e+00, 1.36171079e+00, 1.36171079e+00, 1.36171079e+00,
1.36290556e+00, 1.36290556e+00, 1.36290556e+00, 1.36290556e+00,
1.36383904e+00, 1.36383904e+00, 1.36383904e+00, 1.36383904e+00,
1.36419289e+00, 1.36419289e+00, 1.36419289e+00, 1.36419289e+00,
1.36391125e+00, 1.36391125e+00, 1.36391125e+00, 1.36391125e+00,
1.36302760e+00, 1.36302760e+00, 1.36302760e+00, 1.36302760e+00,
1.36208548e+00, 1.36208548e+00, 1.36208548e+00, 1.36208548e+00,
1.36114875e+00, 1.36114875e+00, 1.36114875e+00, 1.36114875e+00,
1.36014308e+00, 1.36014308e+00, 1.36014308e+00, 1.36014308e+00,
1.36010184e+00, 1.36010184e+00, 1.36010184e+00, 1.36010184e+00,
1.35992178e+00, 1.35992178e+00, 1.35992178e+00, 1.35992178e+00,
1.35788212e+00, 1.35788212e+00, 1.35788212e+00, 1.35788212e+00,
1.34841935e+00, 1.34841935e+00, 1.34841935e+00, 1.34841935e+00,
1.30264541e+00, 1.30264541e+00, 1.30264541e+00, 1.30264541e+00,
1.10947676e+00, 1.10947676e+00, 1.10947676e+00, 1.10947676e+00,
5.55338397e-01, 5.55338397e-01, 5.55338397e-01, 5.55338397e-01,
8.31514874e-02, 8.31514874e-02, 8.31514874e-02, 8.31514874e-02,
6.89643013e-03, 6.89643013e-03, 6.89643013e-03, 6.89643013e-03,
5.24246789e-04, 5.24246789e-04, 5.24246789e-04, 5.24246789e-04,
3.94230246e-05, 3.94230246e-05, 3.94230246e-05, 3.94230246e-05,
2.95275452e-06, 2.95275452e-06, 2.95275452e-06, 2.95275452e-06,
2.20643830e-07, 2.20643830e-07, 2.20643830e-07, 2.20643830e-07,
1.64480940e-08, 1.64480940e-08, 1.64480940e-08, 1.64480940e-08,
1.22307279e-09, 1.22307279e-09, 1.22307279e-09, 1.22307279e-09,
9.07116089e-11, 9.07116089e-11, 9.07116089e-11, 9.07116089e-11,
6.71020267e-12, 6.71020267e-12, 6.71020267e-12, 6.71020267e-12,
4.95019676e-13, 4.95019676e-13, 4.95019676e-13, 4.95019676e-13,
3.65542843e-14, 3.65542843e-14, 3.65542843e-14, 3.65542843e-14,
2.62269446e-15, 2.62269446e-15, 2.62269446e-15, 2.62269446e-15,
1.74466545e-16, 1.74466545e-16, 1.74466545e-16, 1.74466545e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999968,
0.99999968, 0.99999968, 0.99999968, 0.99999802, 0.99999802,
0.99999802, 0.99999802, 0.99998871, 0.99998871, 0.99998871,
0.99998871, 0.99994192, 0.99994192, 0.99994192, 0.99994192,
0.99973332, 0.99973332, 0.99973332, 0.99973332, 0.99892001,
0.99892001, 0.99892001, 0.99892001, 0.99620009, 0.99620009,
0.99620009, 0.99620009, 0.98857069, 0.98857069, 0.98857069,
0.98857069, 0.97100982, 0.97100982, 0.97100982, 0.97100982,
0.93828248, 0.93828248, 0.93828248, 0.93828248, 0.88868204,
0.88868204, 0.88868204, 0.88868204, 0.82587279, 0.82587279,
0.82587279, 0.82587279, 0.75627712, 0.75627712, 0.75627712,
0.75627712, 0.68804743, 0.68804743, 0.68804743, 0.68804743,
0.62631819, 0.62631819, 0.62631819, 0.62631819, 0.56772481,
0.56772481, 0.56772481, 0.56772481, 0.52076656, 0.52076656,
0.52076656, 0.52076656, 0.48953753, 0.48953753, 0.48953753,
0.48953753, 0.47437293, 0.47437293, 0.47437293, 0.47437293,
0.46911158, 0.46911158, 0.46911158, 0.46911158, 0.46740275,
0.46740275, 0.46740275, 0.46740275, 0.46657107, 0.46657107,
0.46657107, 0.46657107, 0.46582165, 0.46582165, 0.46582165,
0.46582165, 0.46543932, 0.46543932, 0.46543932, 0.46543932,
0.4654086 , 0.4654086 , 0.4654086 , 0.4654086 , 0.46534166,
0.46534166, 0.46534166, 0.46534166, 0.46535445, 0.46535445,
0.46535445, 0.46535445, 0.4653544 , 0.4653544 , 0.4653544 ,
0.4653544 , 0.46497431, 0.46497431, 0.46497431, 0.46497431,
0.46469511, 0.46469511, 0.46469511, 0.46469511, 0.46475993,
0.46475993, 0.46475993, 0.46475993, 0.464781 , 0.464781 ,
0.464781 , 0.464781 , 0.46475951, 0.46475951, 0.46475951,
0.46475951, 0.46429906, 0.46429906, 0.46429906, 0.46429906,
0.45994624, 0.45994624, 0.45994624, 0.45994624, 0.43907961,
0.43907961, 0.43907961, 0.43907961, 0.36134325, 0.36134325,
0.36134325, 0.36134325, 0.19702827, 0.19702827, 0.19702827,
0.19702827, 0.11146119, 0.11146119, 0.11146119, 0.11146119,
0.1009144 , 0.1009144 , 0.1009144 , 0.1009144 , 0.10006936,
0.10006936, 0.10006936, 0.10006936, 0.10000522, 0.10000522,
0.10000522, 0.10000522, 0.10000039, 0.10000039, 0.10000039,
0.10000039, 0.10000003, 0.10000003, 0.10000003, 0.10000003,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999966,
0.99999966, 0.99999966, 0.99999966, 0.99999796, 0.99999796,
0.99999796, 0.99999796, 0.99998877, 0.99998877, 0.99998877,
0.99998877, 0.99994431, 0.99994431, 0.99994431, 0.99994431,
0.99975356, 0.99975356, 0.99975356, 0.99975356, 0.99903846,
0.99903846, 0.99903846, 0.99903846, 0.99674028, 0.99674028,
0.99674028, 0.99674028, 0.9905424 , 0.9905424 , 0.9905424 ,
0.9905424 , 0.97678524, 0.97678524, 0.97678524, 0.97678524,
0.95188827, 0.95188827, 0.95188827, 0.95188827, 0.91483889,
0.91483889, 0.91483889, 0.91483889, 0.86814947, 0.86814947,
0.86814947, 0.86814947, 0.81614043, 0.81614043, 0.81614043,
0.81614043, 0.76514638, 0.76514638, 0.76514638, 0.76514638,
0.71513541, 0.71513541, 0.71513541, 0.71513541, 0.66759433,
0.66759433, 0.66759433, 0.66759433, 0.63206294, 0.63206294,
0.63206294, 0.63206294, 0.60467247, 0.60467247, 0.60467247,
0.60467247, 0.58608604, 0.58608604, 0.58608604, 0.58608604,
0.57910917, 0.57910917, 0.57910917, 0.57910917, 0.57863491,
0.57863491, 0.57863491, 0.57863491, 0.57958226, 0.57958226,
0.57958226, 0.57958226, 0.58186037, 0.58186037, 0.58186037,
0.58186037, 0.58254066, 0.58254066, 0.58254066, 0.58254066,
0.58105548, 0.58105548, 0.58105548, 0.58105548, 0.5741289 ,
0.5741289 , 0.5741289 , 0.5741289 , 0.55663703, 0.55663703,
0.55663703, 0.55663703, 0.52383547, 0.52383547, 0.52383547,
0.52383547, 0.47295059, 0.47295059, 0.47295059, 0.47295059,
0.41066789, 0.41066789, 0.41066789, 0.41066789, 0.36741736,
0.36741736, 0.36741736, 0.36741736, 0.34401862, 0.34401862,
0.34401862, 0.34401862, 0.33359114, 0.33359114, 0.33359114,
0.33359114, 0.33073618, 0.33073618, 0.33073618, 0.33073618,
0.33046507, 0.33046507, 0.33046507, 0.33046507, 0.32945985,
0.32945985, 0.32945985, 0.32945985, 0.31646094, 0.31646094,
0.31646094, 0.31646094, 0.25979697, 0.25979697, 0.25979697,
0.25979697, 0.16286529, 0.16286529, 0.16286529, 0.16286529,
0.12929032, 0.12929032, 0.12929032, 0.12929032, 0.12536025,
0.12536025, 0.12536025, 0.12536025, 0.1250278 , 0.1250278 ,
0.1250278 , 0.1250278 , 0.1250021 , 0.1250021 , 0.1250021 ,
0.1250021 , 0.12500016, 0.12500016, 0.12500016, 0.12500016,
0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000008e-01, 7.50000008e-01, 7.50000008e-01, 7.50000008e-01,
7.50000061e-01, 7.50000061e-01, 7.50000061e-01, 7.50000061e-01,
7.50000400e-01, 7.50000400e-01, 7.50000400e-01, 7.50000400e-01,
7.50002418e-01, 7.50002418e-01, 7.50002418e-01, 7.50002418e-01,
7.50013293e-01, 7.50013293e-01, 7.50013293e-01, 7.50013293e-01,
7.50065892e-01, 7.50065892e-01, 7.50065892e-01, 7.50065892e-01,
7.50291602e-01, 7.50291602e-01, 7.50291602e-01, 7.50291602e-01,
7.51137963e-01, 7.51137963e-01, 7.51137963e-01, 7.51137963e-01,
7.53860931e-01, 7.53860931e-01, 7.53860931e-01, 7.53860931e-01,
7.61229895e-01, 7.61229895e-01, 7.61229895e-01, 7.61229895e-01,
7.77729726e-01, 7.77729726e-01, 7.77729726e-01, 7.77729726e-01,
8.08112566e-01, 8.08112566e-01, 8.08112566e-01, 8.08112566e-01,
8.54605431e-01, 8.54605431e-01, 8.54605431e-01, 8.54605431e-01,
9.15480064e-01, 9.15480064e-01, 9.15480064e-01, 9.15480064e-01,
9.86288872e-01, 9.86288872e-01, 9.86288872e-01, 9.86288872e-01,
1.05903455e+00, 1.05903455e+00, 1.05903455e+00, 1.05903455e+00,
1.13226352e+00, 1.13226352e+00, 1.13226352e+00, 1.13226352e+00,
1.20670021e+00, 1.20670021e+00, 1.20670021e+00, 1.20670021e+00,
1.27256005e+00, 1.27256005e+00, 1.27256005e+00, 1.27256005e+00,
1.32027206e+00, 1.32027206e+00, 1.32027206e+00, 1.32027206e+00,
1.34589382e+00, 1.34589382e+00, 1.34589382e+00, 1.34589382e+00,
1.35597341e+00, 1.35597341e+00, 1.35597341e+00, 1.35597341e+00,
1.35925362e+00, 1.35925362e+00, 1.35925362e+00, 1.35925362e+00,
1.36055940e+00, 1.36055940e+00, 1.36055940e+00, 1.36055940e+00,
1.36160216e+00, 1.36160216e+00, 1.36160216e+00, 1.36160216e+00,
1.36259868e+00, 1.36259868e+00, 1.36259868e+00, 1.36259868e+00,
1.36352978e+00, 1.36352978e+00, 1.36352978e+00, 1.36352978e+00,
1.36408956e+00, 1.36408956e+00, 1.36408956e+00, 1.36408956e+00,
1.36400563e+00, 1.36400563e+00, 1.36400563e+00, 1.36400563e+00,
1.36344216e+00, 1.36344216e+00, 1.36344216e+00, 1.36344216e+00,
1.36276431e+00, 1.36276431e+00, 1.36276431e+00, 1.36276431e+00,
1.36178307e+00, 1.36178307e+00, 1.36178307e+00, 1.36178307e+00,
1.36049076e+00, 1.36049076e+00, 1.36049076e+00, 1.36049076e+00,
1.36016799e+00, 1.36016799e+00, 1.36016799e+00, 1.36016799e+00,
1.36000464e+00, 1.36000464e+00, 1.36000464e+00, 1.36000464e+00,
1.35908609e+00, 1.35908609e+00, 1.35908609e+00, 1.35908609e+00,
1.35614599e+00, 1.35614599e+00, 1.35614599e+00, 1.35614599e+00,
1.34038610e+00, 1.34038610e+00, 1.34038610e+00, 1.34038610e+00,
1.26724046e+00, 1.26724046e+00, 1.26724046e+00, 1.26724046e+00,
9.82640800e-01, 9.82640800e-01, 9.82640800e-01, 9.82640800e-01,
3.48788395e-01, 3.48788395e-01, 3.48788395e-01, 3.48788395e-01,
3.96209590e-02, 3.96209590e-02, 3.96209590e-02, 3.96209590e-02,
3.13229418e-03, 3.13229418e-03, 3.13229418e-03, 3.13229418e-03,
2.36909021e-04, 2.36909021e-04, 2.36909021e-04, 2.36909021e-04,
1.78221789e-05, 1.78221789e-05, 1.78221789e-05, 1.78221789e-05,
1.33690626e-06, 1.33690626e-06, 1.33690626e-06, 1.33690626e-06,
9.99987457e-08, 9.99987457e-08, 9.99987457e-08, 9.99987457e-08,
7.46125178e-09, 7.46125178e-09, 7.46125178e-09, 7.46125178e-09,
5.55345318e-10, 5.55345318e-10, 5.55345318e-10, 5.55345318e-10,
4.12297396e-11, 4.12297396e-11, 4.12297396e-11, 4.12297396e-11,
3.05298490e-12, 3.05298490e-12, 3.05298490e-12, 3.05298490e-12,
2.25630808e-13, 2.25630808e-13, 2.25630808e-13, 2.25630808e-13,
1.65496825e-14, 1.65496825e-14, 1.65496825e-14, 1.65496825e-14,
1.18089382e-15, 1.18089382e-15, 1.18089382e-15, 1.18089382e-15,
7.03960128e-17, 7.03960128e-17, 7.03960128e-17, 7.03960128e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999953,
0.99999953, 0.99999953, 0.99999953, 0.99999714, 0.99999714,
0.99999714, 0.99999714, 0.99998427, 0.99998427, 0.99998427,
0.99998427, 0.99992204, 0.99992204, 0.99992204, 0.99992204,
0.99965503, 0.99965503, 0.99965503, 0.99965503, 0.99865441,
0.99865441, 0.99865441, 0.99865441, 0.99544177, 0.99544177,
0.99544177, 0.99544177, 0.98679799, 0.98679799, 0.98679799,
0.98679799, 0.96770449, 0.96770449, 0.96770449, 0.96770449,
0.93344814, 0.93344814, 0.93344814, 0.93344814, 0.88314892,
0.88314892, 0.88314892, 0.88314892, 0.82088008, 0.82088008,
0.82088008, 0.82088008, 0.75281451, 0.75281451, 0.75281451,
0.75281451, 0.68680422, 0.68680422, 0.68680422, 0.68680422,
0.62684396, 0.62684396, 0.62684396, 0.62684396, 0.56962935,
0.56962935, 0.56962935, 0.56962935, 0.5232226 , 0.5232226 ,
0.5232226 , 0.5232226 , 0.49143435, 0.49143435, 0.49143435,
0.49143435, 0.47522501, 0.47522501, 0.47522501, 0.47522501,
0.46935729, 0.46935729, 0.46935729, 0.46935729, 0.46752687,
0.46752687, 0.46752687, 0.46752687, 0.46668373, 0.46668373,
0.46668373, 0.46668373, 0.46587781, 0.46587781, 0.46587781,
0.46587781, 0.46533792, 0.46533792, 0.46533792, 0.46533792,
0.46526321, 0.46526321, 0.46526321, 0.46526321, 0.46529401,
0.46529401, 0.46529401, 0.46529401, 0.46538814, 0.46538814,
0.46538814, 0.46538814, 0.46554165, 0.46554165, 0.46554165,
0.46554165, 0.4653427 , 0.4653427 , 0.4653427 , 0.4653427 ,
0.46500494, 0.46500494, 0.46500494, 0.46500494, 0.4649203 ,
0.4649203 , 0.4649203 , 0.4649203 , 0.46481236, 0.46481236,
0.46481236, 0.46481236, 0.4648016 , 0.4648016 , 0.4648016 ,
0.4648016 , 0.46486006, 0.46486006, 0.46486006, 0.46486006,
0.46351591, 0.46351591, 0.46351591, 0.46351591, 0.45617693,
0.45617693, 0.45617693, 0.45617693, 0.42387417, 0.42387417,
0.42387417, 0.42387417, 0.31662409, 0.31662409, 0.31662409,
0.31662409, 0.15467947, 0.15467947, 0.15467947, 0.15467947,
0.10533579, 0.10533579, 0.10533579, 0.10533579, 0.10041475,
0.10041475, 0.10041475, 0.10041475, 0.10003134, 0.10003134,
0.10003134, 0.10003134, 0.10000236, 0.10000236, 0.10000236,
0.10000236, 0.10000018, 0.10000018, 0.10000018, 0.10000018,
0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.9999995 ,
0.9999995 , 0.9999995 , 0.9999995 , 0.99999709, 0.99999709,
0.99999709, 0.99999709, 0.99998454, 0.99998454, 0.99998454,
0.99998454, 0.99992608, 0.99992608, 0.99992608, 0.99992608,
0.99968447, 0.99968447, 0.99968447, 0.99968447, 0.99881309,
0.99881309, 0.99881309, 0.99881309, 0.9961219 , 0.9961219 ,
0.9961219 , 0.9961219 , 0.98915182, 0.98915182, 0.98915182,
0.98915182, 0.9742804 , 0.9742804 , 0.9742804 , 0.9742804 ,
0.94831908, 0.94831908, 0.94831908, 0.94831908, 0.91081218,
0.91081218, 0.91081218, 0.91081218, 0.86452304, 0.86452304,
0.86452304, 0.86452304, 0.81364869, 0.81364869, 0.81364869,
0.81364869, 0.76425007, 0.76425007, 0.76425007, 0.76425007,
0.71596964, 0.71596964, 0.71596964, 0.71596964, 0.66862165,
0.66862165, 0.66862165, 0.66862165, 0.63309882, 0.63309882,
0.63309882, 0.63309882, 0.60692411, 0.60692411, 0.60692411,
0.60692411, 0.58834503, 0.58834503, 0.58834503, 0.58834503,
0.5797179 , 0.5797179 , 0.5797179 , 0.5797179 , 0.57833736,
0.57833736, 0.57833736, 0.57833736, 0.57885427, 0.57885427,
0.57885427, 0.57885427, 0.58070829, 0.58070829, 0.58070829,
0.58070829, 0.5821418 , 0.5821418 , 0.5821418 , 0.5821418 ,
0.58161437, 0.58161437, 0.58161437, 0.58161437, 0.57752342,
0.57752342, 0.57752342, 0.57752342, 0.56529572, 0.56529572,
0.56529572, 0.56529572, 0.53988046, 0.53988046, 0.53988046,
0.53988046, 0.49734652, 0.49734652, 0.49734652, 0.49734652,
0.43756408, 0.43756408, 0.43756408, 0.43756408, 0.38405097,
0.38405097, 0.38405097, 0.38405097, 0.35274026, 0.35274026,
0.35274026, 0.35274026, 0.33729664, 0.33729664, 0.33729664,
0.33729664, 0.33184586, 0.33184586, 0.33184586, 0.33184586,
0.3308689 , 0.3308689 , 0.3308689 , 0.3308689 , 0.33116014,
0.33116014, 0.33116014, 0.33116014, 0.3284959 , 0.3284959 ,
0.3284959 , 0.3284959 , 0.305514 , 0.305514 , 0.305514 ,
0.305514 , 0.22909354, 0.22909354, 0.22909354, 0.22909354,
0.14525793, 0.14525793, 0.14525793, 0.14525793, 0.12704227,
0.12704227, 0.12704227, 0.12704227, 0.12516466, 0.12516466,
0.12516466, 0.12516466, 0.12501259, 0.12501259, 0.12501259,
0.12501259, 0.12500095, 0.12500095, 0.12500095, 0.12500095,
0.12500007, 0.12500007, 0.12500007, 0.12500007, 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
7.50000093e-01, 7.50000093e-01, 7.50000093e-01, 7.50000093e-01,
7.50000591e-01, 7.50000591e-01, 7.50000591e-01, 7.50000591e-01,
7.50003448e-01, 7.50003448e-01, 7.50003448e-01, 7.50003448e-01,
7.50018287e-01, 7.50018287e-01, 7.50018287e-01, 7.50018287e-01,
7.50087467e-01, 7.50087467e-01, 7.50087467e-01, 7.50087467e-01,
7.50373360e-01, 7.50373360e-01, 7.50373360e-01, 7.50373360e-01,
7.51404804e-01, 7.51404804e-01, 7.51404804e-01, 7.51404804e-01,
7.54594512e-01, 7.54594512e-01, 7.54594512e-01, 7.54594512e-01,
7.62888923e-01, 7.62888923e-01, 7.62888923e-01, 7.62888923e-01,
7.80756528e-01, 7.80756528e-01, 7.80756528e-01, 7.80756528e-01,
8.12524446e-01, 8.12524446e-01, 8.12524446e-01, 8.12524446e-01,
8.59748156e-01, 8.59748156e-01, 8.59748156e-01, 8.59748156e-01,
9.20303317e-01, 9.20303317e-01, 9.20303317e-01, 9.20303317e-01,
9.89569875e-01, 9.89569875e-01, 9.89569875e-01, 9.89569875e-01,
1.06043656e+00, 1.06043656e+00, 1.06043656e+00, 1.06043656e+00,
1.13178235e+00, 1.13178235e+00, 1.13178235e+00, 1.13178235e+00,
1.20428722e+00, 1.20428722e+00, 1.20428722e+00, 1.20428722e+00,
1.26922681e+00, 1.26922681e+00, 1.26922681e+00, 1.26922681e+00,
1.31744793e+00, 1.31744793e+00, 1.31744793e+00, 1.31744793e+00,
1.34420543e+00, 1.34420543e+00, 1.34420543e+00, 1.34420543e+00,
1.35515354e+00, 1.35515354e+00, 1.35515354e+00, 1.35515354e+00,
1.35893569e+00, 1.35893569e+00, 1.35893569e+00, 1.35893569e+00,
1.36047087e+00, 1.36047087e+00, 1.36047087e+00, 1.36047087e+00,
1.36156372e+00, 1.36156372e+00, 1.36156372e+00, 1.36156372e+00,
1.36242402e+00, 1.36242402e+00, 1.36242402e+00, 1.36242402e+00,
1.36322740e+00, 1.36322740e+00, 1.36322740e+00, 1.36322740e+00,
1.36389115e+00, 1.36389115e+00, 1.36389115e+00, 1.36389115e+00,
1.36394778e+00, 1.36394778e+00, 1.36394778e+00, 1.36394778e+00,
1.36363338e+00, 1.36363338e+00, 1.36363338e+00, 1.36363338e+00,
1.36317823e+00, 1.36317823e+00, 1.36317823e+00, 1.36317823e+00,
1.36245466e+00, 1.36245466e+00, 1.36245466e+00, 1.36245466e+00,
1.36111329e+00, 1.36111329e+00, 1.36111329e+00, 1.36111329e+00,
1.36045029e+00, 1.36045029e+00, 1.36045029e+00, 1.36045029e+00,
1.36011173e+00, 1.36011173e+00, 1.36011173e+00, 1.36011173e+00,
1.35943008e+00, 1.35943008e+00, 1.35943008e+00, 1.35943008e+00,
1.35849429e+00, 1.35849429e+00, 1.35849429e+00, 1.35849429e+00,
1.35337432e+00, 1.35337432e+00, 1.35337432e+00, 1.35337432e+00,
1.32699322e+00, 1.32699322e+00, 1.32699322e+00, 1.32699322e+00,
1.21392814e+00, 1.21392814e+00, 1.21392814e+00, 1.21392814e+00,
8.11305629e-01, 8.11305629e-01, 8.11305629e-01, 8.11305629e-01,
1.91993018e-01, 1.91993018e-01, 1.91993018e-01, 1.91993018e-01,
1.84260657e-02, 1.84260657e-02, 1.84260657e-02, 1.84260657e-02,
1.41864065e-03, 1.41864065e-03, 1.41864065e-03, 1.41864065e-03,
1.07039498e-04, 1.07039498e-04, 1.07039498e-04, 1.07039498e-04,
8.05698302e-06, 8.05698302e-06, 8.05698302e-06, 8.05698302e-06,
6.04942296e-07, 6.04942296e-07, 6.04942296e-07, 6.04942296e-07,
4.53003318e-08, 4.53003318e-08, 4.53003318e-08, 4.53003318e-08,
3.38340676e-09, 3.38340676e-09, 3.38340676e-09, 3.38340676e-09,
2.52067618e-10, 2.52067618e-10, 2.52067618e-10, 2.52067618e-10,
1.87321914e-11, 1.87321914e-11, 1.87321914e-11, 1.87321914e-11,
1.38872868e-12, 1.38872868e-12, 1.38872868e-12, 1.38872868e-12,
1.02623229e-13, 1.02623229e-13, 1.02623229e-13, 1.02623229e-13,
7.45434898e-15, 7.45434898e-15, 7.45434898e-15, 7.45434898e-15,
5.62547042e-16, 5.62547042e-16, 5.62547042e-16, 5.62547042e-16,
3.42190912e-17, 3.42190912e-17, 3.42190912e-17, 3.42190912e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999989, 0.99999989, 0.99999989, 0.99999989, 0.9999993 ,
0.9999993 , 0.9999993 , 0.9999993 , 0.99999592, 0.99999592,
0.99999592, 0.99999592, 0.99997836, 0.99997836, 0.99997836,
0.99997836, 0.99989651, 0.99989651, 0.99989651, 0.99989651,
0.99955833, 0.99955833, 0.99955833, 0.99955833, 0.99833914,
0.99833914, 0.99833914, 0.99833914, 0.994578 , 0.994578 ,
0.994578 , 0.994578 , 0.98486191, 0.98486191, 0.98486191,
0.98486191, 0.96423927, 0.96423927, 0.96423927, 0.96423927,
0.92856276, 0.92856276, 0.92856276, 0.92856276, 0.87771963,
0.87771963, 0.87771963, 0.87771963, 0.81607625, 0.81607625,
0.81607625, 0.81607625, 0.74954761, 0.74954761, 0.74954761,
0.74954761, 0.68560013, 0.68560013, 0.68560013, 0.68560013,
0.62733728, 0.62733728, 0.62733728, 0.62733728, 0.57145736,
0.57145736, 0.57145736, 0.57145736, 0.52561297, 0.52561297,
0.52561297, 0.52561297, 0.4934087 , 0.4934087 , 0.4934087 ,
0.4934087 , 0.4762095 , 0.4762095 , 0.4762095 , 0.4762095 ,
0.46962957, 0.46962957, 0.46962957, 0.46962957, 0.46760322,
0.46760322, 0.46760322, 0.46760322, 0.46677931, 0.46677931,
0.46677931, 0.46677931, 0.46598101, 0.46598101, 0.46598101,
0.46598101, 0.4653201 , 0.4653201 , 0.4653201 , 0.4653201 ,
0.46512805, 0.46512805, 0.46512805, 0.46512805, 0.46518516,
0.46518516, 0.46518516, 0.46518516, 0.46533628, 0.46533628,
0.46533628, 0.46533628, 0.46560697, 0.46560697, 0.46560697,
0.46560697, 0.46556363, 0.46556363, 0.46556363, 0.46556363,
0.46534283, 0.46534283, 0.46534283, 0.46534283, 0.46521233,
0.46521233, 0.46521233, 0.46521233, 0.46494555, 0.46494555,
0.46494555, 0.46494555, 0.46485571, 0.46485571, 0.46485571,
0.46485571, 0.46502167, 0.46502167, 0.46502167, 0.46502167,
0.46460407, 0.46460407, 0.46460407, 0.46460407, 0.46217056,
0.46217056, 0.46217056, 0.46217056, 0.4504888 , 0.4504888 ,
0.4504888 , 0.4504888 , 0.40110266, 0.40110266, 0.40110266,
0.40110266, 0.26313779, 0.26313779, 0.26313779, 0.26313779,
0.12803042, 0.12803042, 0.12803042, 0.12803042, 0.1024553 ,
0.1024553 , 0.1024553 , 0.1024553 , 0.10018774, 0.10018774,
0.10018774, 0.10018774, 0.10001416, 0.10001416, 0.10001416,
0.10001416, 0.10000107, 0.10000107, 0.10000107, 0.10000107,
0.10000008, 0.10000008, 0.10000008, 0.10000008, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999988, 0.99999988, 0.99999988, 0.99999988, 0.99999927,
0.99999927, 0.99999927, 0.99999927, 0.9999959 , 0.9999959 ,
0.9999959 , 0.9999959 , 0.99997898, 0.99997898, 0.99997898,
0.99997898, 0.99990291, 0.99990291, 0.99990291, 0.99990291,
0.99959993, 0.99959993, 0.99959993, 0.99959993, 0.99854785,
0.99854785, 0.99854785, 0.99854785, 0.99542289, 0.99542289,
0.99542289, 0.99542289, 0.98764264, 0.98764264, 0.98764264,
0.98764264, 0.97166631, 0.97166631, 0.97166631, 0.97166631,
0.94472122, 0.94472122, 0.94472122, 0.94472122, 0.90686323,
0.90686323, 0.90686323, 0.90686323, 0.86103104, 0.86103104,
0.86103104, 0.86103104, 0.81128459, 0.81128459, 0.81128459,
0.81128459, 0.76333114, 0.76333114, 0.76333114, 0.76333114,
0.71681296, 0.71681296, 0.71681296, 0.71681296, 0.66988534,
0.66988534, 0.66988534, 0.66988534, 0.63398635, 0.63398635,
0.63398635, 0.63398635, 0.60868419, 0.60868419, 0.60868419,
0.60868419, 0.59062344, 0.59062344, 0.59062344, 0.59062344,
0.58075915, 0.58075915, 0.58075915, 0.58075915, 0.57821989,
0.57821989, 0.57821989, 0.57821989, 0.57834671, 0.57834671,
0.57834671, 0.57834671, 0.57958969, 0.57958969, 0.57958969,
0.57958969, 0.58156325, 0.58156325, 0.58156325, 0.58156325,
0.58167402, 0.58167402, 0.58167402, 0.58167402, 0.57949654,
0.57949654, 0.57949654, 0.57949654, 0.57136665, 0.57136665,
0.57136665, 0.57136665, 0.55237715, 0.55237715, 0.55237715,
0.55237715, 0.5178861 , 0.5178861 , 0.5178861 , 0.5178861 ,
0.46556784, 0.46556784, 0.46556784, 0.46556784, 0.40490108,
0.40490108, 0.40490108, 0.40490108, 0.36456809, 0.36456809,
0.36456809, 0.36456809, 0.34291316, 0.34291316, 0.34291316,
0.34291316, 0.33384449, 0.33384449, 0.33384449, 0.33384449,
0.33130867, 0.33130867, 0.33130867, 0.33130867, 0.33149943,
0.33149943, 0.33149943, 0.33149943, 0.33184294, 0.33184294,
0.33184294, 0.33184294, 0.32533092, 0.32533092, 0.32533092,
0.32533092, 0.28902333, 0.28902333, 0.28902333, 0.28902333,
0.1964541 , 0.1964541 , 0.1964541 , 0.1964541 , 0.13545621,
0.13545621, 0.13545621, 0.13545621, 0.12594954, 0.12594954,
0.12594954, 0.12594954, 0.12507487, 0.12507487, 0.12507487,
0.12507487, 0.1250057 , 0.1250057 , 0.1250057 , 0.1250057 ,
0.12500043, 0.12500043, 0.12500043, 0.12500043, 0.12500003,
0.12500003, 0.12500003, 0.12500003, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000021e-01, 7.50000021e-01, 7.50000021e-01, 7.50000021e-01,
7.50000140e-01, 7.50000140e-01, 7.50000140e-01, 7.50000140e-01,
7.50000861e-01, 7.50000861e-01, 7.50000861e-01, 7.50000861e-01,
7.50004854e-01, 7.50004854e-01, 7.50004854e-01, 7.50004854e-01,
7.50024870e-01, 7.50024870e-01, 7.50024870e-01, 7.50024870e-01,
7.50114879e-01, 7.50114879e-01, 7.50114879e-01, 7.50114879e-01,
7.50473401e-01, 7.50473401e-01, 7.50473401e-01, 7.50473401e-01,
7.51718892e-01, 7.51718892e-01, 7.51718892e-01, 7.51718892e-01,
7.55424229e-01, 7.55424229e-01, 7.55424229e-01, 7.55424229e-01,
7.64691790e-01, 7.64691790e-01, 7.64691790e-01, 7.64691790e-01,
7.83922560e-01, 7.83922560e-01, 7.83922560e-01, 7.83922560e-01,
8.16985524e-01, 8.16985524e-01, 8.16985524e-01, 8.16985524e-01,
8.64808121e-01, 8.64808121e-01, 8.64808121e-01, 8.64808121e-01,
9.24958686e-01, 9.24958686e-01, 9.24958686e-01, 9.24958686e-01,
9.92693337e-01, 9.92693337e-01, 9.92693337e-01, 9.92693337e-01,
1.06173967e+00, 1.06173967e+00, 1.06173967e+00, 1.06173967e+00,
1.13129021e+00, 1.13129021e+00, 1.13129021e+00, 1.13129021e+00,
1.20198744e+00, 1.20198744e+00, 1.20198744e+00, 1.20198744e+00,
1.26595672e+00, 1.26595672e+00, 1.26595672e+00, 1.26595672e+00,
1.31461852e+00, 1.31461852e+00, 1.31461852e+00, 1.31461852e+00,
1.34253734e+00, 1.34253734e+00, 1.34253734e+00, 1.34253734e+00,
1.35432704e+00, 1.35432704e+00, 1.35432704e+00, 1.35432704e+00,
1.35852967e+00, 1.35852967e+00, 1.35852967e+00, 1.35852967e+00,
1.36029446e+00, 1.36029446e+00, 1.36029446e+00, 1.36029446e+00,
1.36153027e+00, 1.36153027e+00, 1.36153027e+00, 1.36153027e+00,
1.36236269e+00, 1.36236269e+00, 1.36236269e+00, 1.36236269e+00,
1.36299920e+00, 1.36299920e+00, 1.36299920e+00, 1.36299920e+00,
1.36365952e+00, 1.36365952e+00, 1.36365952e+00, 1.36365952e+00,
1.36380842e+00, 1.36380842e+00, 1.36380842e+00, 1.36380842e+00,
1.36364674e+00, 1.36364674e+00, 1.36364674e+00, 1.36364674e+00,
1.36337979e+00, 1.36337979e+00, 1.36337979e+00, 1.36337979e+00,
1.36291780e+00, 1.36291780e+00, 1.36291780e+00, 1.36291780e+00,
1.36179759e+00, 1.36179759e+00, 1.36179759e+00, 1.36179759e+00,
1.36099880e+00, 1.36099880e+00, 1.36099880e+00, 1.36099880e+00,
1.36037766e+00, 1.36037766e+00, 1.36037766e+00, 1.36037766e+00,
1.35961227e+00, 1.35961227e+00, 1.35961227e+00, 1.35961227e+00,
1.35921926e+00, 1.35921926e+00, 1.35921926e+00, 1.35921926e+00,
1.35759675e+00, 1.35759675e+00, 1.35759675e+00, 1.35759675e+00,
1.34828922e+00, 1.34828922e+00, 1.34828922e+00, 1.34828922e+00,
1.30681890e+00, 1.30681890e+00, 1.30681890e+00, 1.30681890e+00,
1.13247598e+00, 1.13247598e+00, 1.13247598e+00, 1.13247598e+00,
6.05650926e-01, 6.05650926e-01, 6.05650926e-01, 6.05650926e-01,
9.87277152e-02, 9.87277152e-02, 9.87277152e-02, 9.87277152e-02,
8.39794778e-03, 8.39794778e-03, 8.39794778e-03, 8.39794778e-03,
6.41036738e-04, 6.41036738e-04, 6.41036738e-04, 6.41036738e-04,
4.83799215e-05, 4.83799215e-05, 4.83799215e-05, 4.83799215e-05,
3.64189070e-06, 3.64189070e-06, 3.64189070e-06, 3.64189070e-06,
2.73646970e-07, 2.73646970e-07, 2.73646970e-07, 2.73646970e-07,
2.05122779e-08, 2.05122779e-08, 2.05122779e-08, 2.05122779e-08,
1.53361037e-09, 1.53361037e-09, 1.53361037e-09, 1.53361037e-09,
1.14368647e-10, 1.14368647e-10, 1.14368647e-10, 1.14368647e-10,
8.50778657e-12, 8.50778657e-12, 8.50778657e-12, 8.50778657e-12,
6.31241749e-13, 6.31241749e-13, 6.31241749e-13, 6.31241749e-13,
4.65959457e-14, 4.65959457e-14, 4.65959457e-14, 4.65959457e-14,
3.44111781e-15, 3.44111781e-15, 3.44111781e-15, 3.44111781e-15,
2.44715227e-16, 2.44715227e-16, 2.44715227e-16, 2.44715227e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999983, 0.99999983, 0.99999983, 0.99999983, 0.99999898,
0.99999898, 0.99999898, 0.99999898, 0.99999426, 0.99999426,
0.99999426, 0.99999426, 0.99997057, 0.99997057, 0.99997057,
0.99997057, 0.99986408, 0.99986408, 0.99986408, 0.99986408,
0.99944001, 0.99944001, 0.99944001, 0.99944001, 0.99796817,
0.99796817, 0.99796817, 0.99796817, 0.99360189, 0.99360189,
0.99360189, 0.99360189, 0.98276203, 0.98276203, 0.98276203,
0.98276203, 0.96062669, 0.96062669, 0.96062669, 0.96062669,
0.92364506, 0.92364506, 0.92364506, 0.92364506, 0.87240348,
0.87240348, 0.87240348, 0.87240348, 0.81145937, 0.81145937,
0.81145937, 0.81145937, 0.74647243, 0.74647243, 0.74647243,
0.74647243, 0.68444299, 0.68444299, 0.68444299, 0.68444299,
0.62778294, 0.62778294, 0.62778294, 0.62778294, 0.5732094 ,
0.5732094 , 0.5732094 , 0.5732094 , 0.52793038, 0.52793038,
0.52793038, 0.52793038, 0.49541854, 0.49541854, 0.49541854,
0.49541854, 0.47732601, 0.47732601, 0.47732601, 0.47732601,
0.46998067, 0.46998067, 0.46998067, 0.46998067, 0.46765631,
0.46765631, 0.46765631, 0.46765631, 0.46682798, 0.46682798,
0.46682798, 0.46682798, 0.46608977, 0.46608977, 0.46608977,
0.46608977, 0.4653755 , 0.4653755 , 0.4653755 , 0.4653755 ,
0.46504229, 0.46504229, 0.46504229, 0.46504229, 0.46505976,
0.46505976, 0.46505976, 0.46505976, 0.46523378, 0.46523378,
0.46523378, 0.46523378, 0.46557421, 0.46557421, 0.46557421,
0.46557421, 0.4656599 , 0.4656599 , 0.4656599 , 0.4656599 ,
0.46558172, 0.46558172, 0.46558172, 0.46558172, 0.46553439,
0.46553439, 0.46553439, 0.46553439, 0.46520836, 0.46520836,
0.46520836, 0.46520836, 0.46498438, 0.46498438, 0.46498438,
0.46498438, 0.46510742, 0.46510742, 0.46510742, 0.46510742,
0.46494014, 0.46494014, 0.46494014, 0.46494014, 0.46413174,
0.46413174, 0.46413174, 0.46413174, 0.46026772, 0.46026772,
0.46026772, 0.46026772, 0.44125804, 0.44125804, 0.44125804,
0.44125804, 0.36962649, 0.36962649, 0.36962649, 0.36962649,
0.20878392, 0.20878392, 0.20878392, 0.20878392, 0.11372397,
0.11372397, 0.11372397, 0.11372397, 0.10111414, 0.10111414,
0.10111414, 0.10111414, 0.10008482, 0.10008482, 0.10008482,
0.10008482, 0.1000064 , 0.1000064 , 0.1000064 , 0.1000064 ,
0.10000048, 0.10000048, 0.10000048, 0.10000048, 0.10000004,
0.10000004, 0.10000004, 0.10000004, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999895,
0.99999895, 0.99999895, 0.99999895, 0.99999429, 0.99999429,
0.99999429, 0.99999429, 0.99997173, 0.99997173, 0.99997173,
0.99997173, 0.99987376, 0.99987376, 0.99987376, 0.99987376,
0.99949743, 0.99949743, 0.99949743, 0.99949743, 0.99823832,
0.99823832, 0.99823832, 0.99823832, 0.99463867, 0.99463867,
0.99463867, 0.99463867, 0.98601545, 0.98601545, 0.98601545,
0.98601545, 0.96895243, 0.96895243, 0.96895243, 0.96895243,
0.94110753, 0.94110753, 0.94110753, 0.94110753, 0.90299803,
0.90299803, 0.90299803, 0.90299803, 0.85767273, 0.85767273,
0.85767273, 0.85767273, 0.80904917, 0.80904917, 0.80904917,
0.80904917, 0.76239648, 0.76239648, 0.76239648, 0.76239648,
0.71749093, 0.71749093, 0.71749093, 0.71749093, 0.67147851,
0.67147851, 0.67147851, 0.67147851, 0.63489 , 0.63489 ,
0.63489 , 0.63489 , 0.60997929, 0.60997929, 0.60997929,
0.60997929, 0.59272294, 0.59272294, 0.59272294, 0.59272294,
0.58215958, 0.58215958, 0.58215958, 0.58215958, 0.57835617,
0.57835617, 0.57835617, 0.57835617, 0.57803304, 0.57803304,
0.57803304, 0.57803304, 0.57873351, 0.57873351, 0.57873351,
0.57873351, 0.58068604, 0.58068604, 0.58068604, 0.58068604,
0.58148766, 0.58148766, 0.58148766, 0.58148766, 0.58048792,
0.58048792, 0.58048792, 0.58048792, 0.57541107, 0.57541107,
0.57541107, 0.57541107, 0.56176436, 0.56176436, 0.56176436,
0.56176436, 0.53464163, 0.53464163, 0.53464163, 0.53464163,
0.49054306, 0.49054306, 0.49054306, 0.49054306, 0.43056034,
0.43056034, 0.43056034, 0.43056034, 0.38004005, 0.38004005,
0.38004005, 0.38004005, 0.35093816, 0.35093816, 0.35093816,
0.35093816, 0.33716902, 0.33716902, 0.33716902, 0.33716902,
0.33218768, 0.33218768, 0.33218768, 0.33218768, 0.33163645,
0.33163645, 0.33163645, 0.33163645, 0.33249535, 0.33249535,
0.33249535, 0.33249535, 0.33172011, 0.33172011, 0.33172011,
0.33172011, 0.3191431 , 0.3191431 , 0.3191431 , 0.3191431 ,
0.2660949 , 0.2660949 , 0.2660949 , 0.2660949 , 0.16817172,
0.16817172, 0.16817172, 0.16817172, 0.13009983, 0.13009983,
0.13009983, 0.13009983, 0.12543611, 0.12543611, 0.12543611,
0.12543611, 0.12503393, 0.12503393, 0.12503393, 0.12503393,
0.12500258, 0.12500258, 0.12500258, 0.12500258, 0.12500019,
0.12500019, 0.12500019, 0.12500019, 0.12500001, 0.12500001,
0.12500001, 0.12500001, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
7.50000032e-01, 7.50000032e-01, 7.50000032e-01, 7.50000032e-01,
7.50000208e-01, 7.50000208e-01, 7.50000208e-01, 7.50000208e-01,
7.50001239e-01, 7.50001239e-01, 7.50001239e-01, 7.50001239e-01,
7.50006753e-01, 7.50006753e-01, 7.50006753e-01, 7.50006753e-01,
7.50033455e-01, 7.50033455e-01, 7.50033455e-01, 7.50033455e-01,
7.50149366e-01, 7.50149366e-01, 7.50149366e-01, 7.50149366e-01,
7.50594713e-01, 7.50594713e-01, 7.50594713e-01, 7.50594713e-01,
7.52085532e-01, 7.52085532e-01, 7.52085532e-01, 7.52085532e-01,
7.56355674e-01, 7.56355674e-01, 7.56355674e-01, 7.56355674e-01,
7.66638355e-01, 7.66638355e-01, 7.66638355e-01, 7.66638355e-01,
7.87217230e-01, 7.87217230e-01, 7.87217230e-01, 7.87217230e-01,
8.21480083e-01, 8.21480083e-01, 8.21480083e-01, 8.21480083e-01,
8.69776615e-01, 8.69776615e-01, 8.69776615e-01, 8.69776615e-01,
9.29447294e-01, 9.29447294e-01, 9.29447294e-01, 9.29447294e-01,
9.95674208e-01, 9.95674208e-01, 9.95674208e-01, 9.95674208e-01,
1.06296792e+00, 1.06296792e+00, 1.06296792e+00, 1.06296792e+00,
1.13078254e+00, 1.13078254e+00, 1.13078254e+00, 1.13078254e+00,
1.19977119e+00, 1.19977119e+00, 1.19977119e+00, 1.19977119e+00,
1.26275299e+00, 1.26275299e+00, 1.26275299e+00, 1.26275299e+00,
1.31175348e+00, 1.31175348e+00, 1.31175348e+00, 1.31175348e+00,
1.34085462e+00, 1.34085462e+00, 1.34085462e+00, 1.34085462e+00,
1.35353646e+00, 1.35353646e+00, 1.35353646e+00, 1.35353646e+00,
1.35810343e+00, 1.35810343e+00, 1.35810343e+00, 1.35810343e+00,
1.36003123e+00, 1.36003123e+00, 1.36003123e+00, 1.36003123e+00,
1.36143326e+00, 1.36143326e+00, 1.36143326e+00, 1.36143326e+00,
1.36236200e+00, 1.36236200e+00, 1.36236200e+00, 1.36236200e+00,
1.36287773e+00, 1.36287773e+00, 1.36287773e+00, 1.36287773e+00,
1.36345264e+00, 1.36345264e+00, 1.36345264e+00, 1.36345264e+00,
1.36363732e+00, 1.36363732e+00, 1.36363732e+00, 1.36363732e+00,
1.36353697e+00, 1.36353697e+00, 1.36353697e+00, 1.36353697e+00,
1.36343404e+00, 1.36343404e+00, 1.36343404e+00, 1.36343404e+00,
1.36315760e+00, 1.36315760e+00, 1.36315760e+00, 1.36315760e+00,
1.36232473e+00, 1.36232473e+00, 1.36232473e+00, 1.36232473e+00,
1.36166019e+00, 1.36166019e+00, 1.36166019e+00, 1.36166019e+00,
1.36084564e+00, 1.36084564e+00, 1.36084564e+00, 1.36084564e+00,
1.35984618e+00, 1.35984618e+00, 1.35984618e+00, 1.35984618e+00,
1.35955179e+00, 1.35955179e+00, 1.35955179e+00, 1.35955179e+00,
1.35897144e+00, 1.35897144e+00, 1.35897144e+00, 1.35897144e+00,
1.35552174e+00, 1.35552174e+00, 1.35552174e+00, 1.35552174e+00,
1.34102919e+00, 1.34102919e+00, 1.34102919e+00, 1.34102919e+00,
1.27545330e+00, 1.27545330e+00, 1.27545330e+00, 1.27545330e+00,
1.01455011e+00, 1.01455011e+00, 1.01455011e+00, 1.01455011e+00,
3.94082610e-01, 3.94082610e-01, 3.94082610e-01, 3.94082610e-01,
4.73339439e-02, 4.73339439e-02, 4.73339439e-02, 4.73339439e-02,
3.80163833e-03, 3.80163833e-03, 3.80163833e-03, 3.80163833e-03,
2.89378256e-04, 2.89378256e-04, 2.89378256e-04, 2.89378256e-04,
2.18495362e-05, 2.18495362e-05, 2.18495362e-05, 2.18495362e-05,
1.64610353e-06, 1.64610353e-06, 1.64610353e-06, 1.64610353e-06,
1.23761362e-07, 1.23761362e-07, 1.23761362e-07, 1.23761362e-07,
9.28475911e-09, 9.28475911e-09, 9.28475911e-09, 9.28475911e-09,
6.94864466e-10, 6.94864466e-10, 6.94864466e-10, 6.94864466e-10,
5.18715247e-11, 5.18715247e-11, 5.18715247e-11, 5.18715247e-11,
3.86232749e-12, 3.86232749e-12, 3.86232749e-12, 3.86232749e-12,
2.86798402e-13, 2.86798402e-13, 2.86798402e-13, 2.86798402e-13,
2.12511563e-14, 2.12511563e-14, 2.12511563e-14, 2.12511563e-14,
1.51978465e-15, 1.51978465e-15, 1.51978465e-15, 1.51978465e-15,
8.24527483e-17, 8.24527483e-17, 8.24527483e-17, 8.24527483e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999975, 0.99999975, 0.99999975, 0.99999975, 0.99999853,
0.99999853, 0.99999853, 0.99999853, 0.99999201, 0.99999201,
0.99999201, 0.99999201, 0.99996042, 0.99996042, 0.99996042,
0.99996042, 0.99982328, 0.99982328, 0.99982328, 0.99982328,
0.99929656, 0.99929656, 0.99929656, 0.99929656, 0.9975353 ,
0.9975353 , 0.9975353 , 0.9975353 , 0.99250721, 0.99250721,
0.99250721, 0.99250721, 0.98049952, 0.98049952, 0.98049952,
0.98049952, 0.95688026, 0.95688026, 0.95688026, 0.95688026,
0.91871272, 0.91871272, 0.91871272, 0.91871272, 0.86720806,
0.86720806, 0.86720806, 0.86720806, 0.80702616, 0.80702616,
0.80702616, 0.80702616, 0.74357673, 0.74357673, 0.74357673,
0.74357673, 0.68334214, 0.68334214, 0.68334214, 0.68334214,
0.62818486, 0.62818486, 0.62818486, 0.62818486, 0.57487936,
0.57487936, 0.57487936, 0.57487936, 0.53017432, 0.53017432,
0.53017432, 0.53017432, 0.49742975, 0.49742975, 0.49742975,
0.49742975, 0.47854702, 0.47854702, 0.47854702, 0.47854702,
0.47044075, 0.47044075, 0.47044075, 0.47044075, 0.46773171,
0.46773171, 0.46773171, 0.46773171, 0.46683192, 0.46683192,
0.46683192, 0.46683192, 0.46616185, 0.46616185, 0.46616185,
0.46616185, 0.4654718 , 0.4654718 , 0.4654718 , 0.4654718 ,
0.46502244, 0.46502244, 0.46502244, 0.46502244, 0.46495839,
0.46495839, 0.46495839, 0.46495839, 0.46511062, 0.46511062,
0.46511062, 0.46511062, 0.46546668, 0.46546668, 0.46546668,
0.46546668, 0.46567427, 0.46567427, 0.46567427, 0.46567427,
0.4656998 , 0.4656998 , 0.4656998 , 0.4656998 , 0.46577701,
0.46577701, 0.46577701, 0.46577701, 0.46553312, 0.46553312,
0.46553312, 0.46553312, 0.46520841, 0.46520841, 0.46520841,
0.46520841, 0.46521622, 0.46521622, 0.46521622, 0.46521622,
0.46509428, 0.46509428, 0.46509428, 0.46509428, 0.46477283,
0.46477283, 0.46477283, 0.46477283, 0.46362484, 0.46362484,
0.46362484, 0.46362484, 0.45682453, 0.45682453, 0.45682453,
0.45682453, 0.42721627, 0.42721627, 0.42721627, 0.42721627,
0.32761038, 0.32761038, 0.32761038, 0.32761038, 0.16329323,
0.16329323, 0.16329323, 0.16329323, 0.1064006 , 0.1064006 ,
0.1064006 , 0.1064006 , 0.10050349, 0.10050349, 0.10050349,
0.10050349, 0.10003828, 0.10003828, 0.10003828, 0.10003828,
0.10000289, 0.10000289, 0.10000289, 0.10000289, 0.10000022,
0.10000022, 0.10000022, 0.10000022, 0.10000002, 0.10000002,
0.10000002, 0.10000002, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999851,
0.99999851, 0.99999851, 0.99999851, 0.99999215, 0.99999215,
0.99999215, 0.99999215, 0.99996236, 0.99996236, 0.99996236,
0.99996236, 0.99983743, 0.99983743, 0.99983743, 0.99983743,
0.99937421, 0.99937421, 0.99937421, 0.99937421, 0.99787995,
0.99787995, 0.99787995, 0.99787995, 0.99376522, 0.99376522,
0.99376522, 0.99376522, 0.98427193, 0.98427193, 0.98427193,
0.98427193, 0.96614873, 0.96614873, 0.96614873, 0.96614873,
0.93749002, 0.93749002, 0.93749002, 0.93749002, 0.89922146,
0.89922146, 0.89922146, 0.89922146, 0.85444615, 0.85444615,
0.85444615, 0.85444615, 0.80694026, 0.80694026, 0.80694026,
0.80694026, 0.76147336, 0.76147336, 0.76147336, 0.76147336,
0.71798649, 0.71798649, 0.71798649, 0.71798649, 0.67328624,
0.67328624, 0.67328624, 0.67328624, 0.63596237, 0.63596237,
0.63596237, 0.63596237, 0.61090962, 0.61090962, 0.61090962,
0.61090962, 0.59448665, 0.59448665, 0.59448665, 0.59448665,
0.58377912, 0.58377912, 0.58377912, 0.58377912, 0.57884073,
0.57884073, 0.57884073, 0.57884073, 0.57784159, 0.57784159,
0.57784159, 0.57784159, 0.57814677, 0.57814677, 0.57814677,
0.57814677, 0.57965393, 0.57965393, 0.57965393, 0.57965393,
0.58114142, 0.58114142, 0.58114142, 0.58114142, 0.58086906,
0.58086906, 0.58086906, 0.58086906, 0.57793383, 0.57793383,
0.57793383, 0.57793383, 0.56855027, 0.56855027, 0.56855027,
0.56855027, 0.54788997, 0.54788997, 0.54788997, 0.54788997,
0.51173387, 0.51173387, 0.51173387, 0.51173387, 0.45826092,
0.45826092, 0.45826092, 0.45826092, 0.39944332, 0.39944332,
0.39944332, 0.39944332, 0.36188141, 0.36188141, 0.36188141,
0.36188141, 0.34228638, 0.34228638, 0.34228638, 0.34228638,
0.33391914, 0.33391914, 0.33391914, 0.33391914, 0.33194109,
0.33194109, 0.33194109, 0.33194109, 0.33247925, 0.33247925,
0.33247925, 0.33247925, 0.33319907, 0.33319907, 0.33319907,
0.33319907, 0.33042192, 0.33042192, 0.33042192, 0.33042192,
0.30893759, 0.30893759, 0.30893759, 0.30893759, 0.23627498,
0.23627498, 0.23627498, 0.23627498, 0.14849035, 0.14849035,
0.14849035, 0.14849035, 0.12743542, 0.12743542, 0.12743542,
0.12743542, 0.12519919, 0.12519919, 0.12519919, 0.12519919,
0.12501533, 0.12501533, 0.12501533, 0.12501533, 0.12500116,
0.12500116, 0.12500116, 0.12500116, 0.12500009, 0.12500009,
0.12500009, 0.12500009, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
7.50000306e-01, 7.50000306e-01, 7.50000306e-01, 7.50000306e-01,
7.50001762e-01, 7.50001762e-01, 7.50001762e-01, 7.50001762e-01,
7.50009291e-01, 7.50009291e-01, 7.50009291e-01, 7.50009291e-01,
7.50044538e-01, 7.50044538e-01, 7.50044538e-01, 7.50044538e-01,
7.50192354e-01, 7.50192354e-01, 7.50192354e-01, 7.50192354e-01,
7.50740552e-01, 7.50740552e-01, 7.50740552e-01, 7.50740552e-01,
7.52510129e-01, 7.52510129e-01, 7.52510129e-01, 7.52510129e-01,
7.57393863e-01, 7.57393863e-01, 7.57393863e-01, 7.57393863e-01,
7.68727220e-01, 7.68727220e-01, 7.68727220e-01, 7.68727220e-01,
7.90629207e-01, 7.90629207e-01, 7.90629207e-01, 7.90629207e-01,
8.25993244e-01, 8.25993244e-01, 8.25993244e-01, 8.25993244e-01,
8.74646375e-01, 8.74646375e-01, 8.74646375e-01, 8.74646375e-01,
9.33771553e-01, 9.33771553e-01, 9.33771553e-01, 9.33771553e-01,
9.98521665e-01, 9.98521665e-01, 9.98521665e-01, 9.98521665e-01,
1.06413782e+00, 1.06413782e+00, 1.06413782e+00, 1.06413782e+00,
1.13027656e+00, 1.13027656e+00, 1.13027656e+00, 1.13027656e+00,
1.19762442e+00, 1.19762442e+00, 1.19762442e+00, 1.19762442e+00,
1.25961704e+00, 1.25961704e+00, 1.25961704e+00, 1.25961704e+00,
1.30884188e+00, 1.30884188e+00, 1.30884188e+00, 1.30884188e+00,
1.33910827e+00, 1.33910827e+00, 1.33910827e+00, 1.33910827e+00,
1.35277568e+00, 1.35277568e+00, 1.35277568e+00, 1.35277568e+00,
1.35771893e+00, 1.35771893e+00, 1.35771893e+00, 1.35771893e+00,
1.35973017e+00, 1.35973017e+00, 1.35973017e+00, 1.35973017e+00,
1.36124410e+00, 1.36124410e+00, 1.36124410e+00, 1.36124410e+00,
1.36234589e+00, 1.36234589e+00, 1.36234589e+00, 1.36234589e+00,
1.36284576e+00, 1.36284576e+00, 1.36284576e+00, 1.36284576e+00,
1.36330700e+00, 1.36330700e+00, 1.36330700e+00, 1.36330700e+00,
1.36348314e+00, 1.36348314e+00, 1.36348314e+00, 1.36348314e+00,
1.36337493e+00, 1.36337493e+00, 1.36337493e+00, 1.36337493e+00,
1.36336149e+00, 1.36336149e+00, 1.36336149e+00, 1.36336149e+00,
1.36324405e+00, 1.36324405e+00, 1.36324405e+00, 1.36324405e+00,
1.36265870e+00, 1.36265870e+00, 1.36265870e+00, 1.36265870e+00,
1.36215849e+00, 1.36215849e+00, 1.36215849e+00, 1.36215849e+00,
1.36145357e+00, 1.36145357e+00, 1.36145357e+00, 1.36145357e+00,
1.36027737e+00, 1.36027737e+00, 1.36027737e+00, 1.36027737e+00,
1.35985957e+00, 1.35985957e+00, 1.35985957e+00, 1.35985957e+00,
1.35950146e+00, 1.35950146e+00, 1.35950146e+00, 1.35950146e+00,
1.35794105e+00, 1.35794105e+00, 1.35794105e+00, 1.35794105e+00,
1.35302786e+00, 1.35302786e+00, 1.35302786e+00, 1.35302786e+00,
1.32948395e+00, 1.32948395e+00, 1.32948395e+00, 1.32948395e+00,
1.22656804e+00, 1.22656804e+00, 1.22656804e+00, 1.22656804e+00,
8.53469650e-01, 8.53469650e-01, 8.53469650e-01, 8.53469650e-01,
2.22591142e-01, 2.22591142e-01, 2.22591142e-01, 2.22591142e-01,
2.20888528e-02, 2.20888528e-02, 2.20888528e-02, 2.20888528e-02,
1.71922272e-03, 1.71922272e-03, 1.71922272e-03, 1.71922272e-03,
1.30417470e-04, 1.30417470e-04, 1.30417470e-04, 1.30417470e-04,
9.86300289e-06, 9.86300289e-06, 9.86300289e-06, 9.86300289e-06,
7.43754125e-07, 7.43754125e-07, 7.43754125e-07, 7.43754125e-07,
5.59602796e-08, 5.59602796e-08, 5.59602796e-08, 5.59602796e-08,
4.20149858e-09, 4.20149858e-09, 4.20149858e-09, 4.20149858e-09,
3.14719729e-10, 3.14719729e-10, 3.14719729e-10, 3.14719729e-10,
2.35165721e-11, 2.35165721e-11, 2.35165721e-11, 2.35165721e-11,
1.75282978e-12, 1.75282978e-12, 1.75282978e-12, 1.75282978e-12,
1.30293969e-13, 1.30293969e-13, 1.30293969e-13, 1.30293969e-13,
9.55439487e-15, 9.55439487e-15, 9.55439487e-15, 9.55439487e-15,
6.56847280e-16, 6.56847280e-16, 6.56847280e-16, 6.56847280e-16,
3.41706842e-17, 3.41706842e-17, 3.41706842e-17, 3.41706842e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999964, 0.99999964, 0.99999964, 0.99999964, 0.99999792,
0.99999792, 0.99999792, 0.99999792, 0.99998901, 0.99998901,
0.99998901, 0.99998901, 0.9999473 , 0.9999473 , 0.9999473 ,
0.9999473 , 0.99977243, 0.99977243, 0.99977243, 0.99977243,
0.99912413, 0.99912413, 0.99912413, 0.99912413, 0.99703423,
0.99703423, 0.99703423, 0.99703423, 0.99128845, 0.99128845,
0.99128845, 0.99128845, 0.97807702, 0.97807702, 0.97807702,
0.97807702, 0.95301417, 0.95301417, 0.95301417, 0.95301417,
0.91378216, 0.91378216, 0.91378216, 0.91378216, 0.86213936,
0.86213936, 0.86213936, 0.86213936, 0.80277216, 0.80277216,
0.80277216, 0.80277216, 0.7408459 , 0.7408459 , 0.7408459 ,
0.7408459 , 0.68230078, 0.68230078, 0.68230078, 0.68230078,
0.62855672, 0.62855672, 0.62855672, 0.62855672, 0.5764662 ,
0.5764662 , 0.5764662 , 0.5764662 , 0.53234585, 0.53234585,
0.53234585, 0.53234585, 0.49942183, 0.49942183, 0.49942183,
0.49942183, 0.47983443, 0.47983443, 0.47983443, 0.47983443,
0.47100923, 0.47100923, 0.47100923, 0.47100923, 0.46787142,
0.46787142, 0.46787142, 0.46787142, 0.46682295, 0.46682295,
0.46682295, 0.46682295, 0.46618014, 0.46618014, 0.46618014,
0.46618014, 0.46556219, 0.46556219, 0.46556219, 0.46556219,
0.46506118, 0.46506118, 0.46506118, 0.46506118, 0.46489673,
0.46489673, 0.46489673, 0.46489673, 0.46500213, 0.46500213,
0.46500213, 0.46500213, 0.46532374, 0.46532374, 0.46532374,
0.46532374, 0.46561466, 0.46561466, 0.46561466, 0.46561466,
0.46573189, 0.46573189, 0.46573189, 0.46573189, 0.46592128,
0.46592128, 0.46592128, 0.46592128, 0.46578294, 0.46578294,
0.46578294, 0.46578294, 0.46549998, 0.46549998, 0.46549998,
0.46549998, 0.46541691, 0.46541691, 0.46541691, 0.46541691,
0.46523714, 0.46523714, 0.46523714, 0.46523714, 0.46502176,
0.46502176, 0.46502176, 0.46502176, 0.46475263, 0.46475263,
0.46475263, 0.46475263, 0.46237713, 0.46237713, 0.46237713,
0.46237713, 0.45142205, 0.45142205, 0.45142205, 0.45142205,
0.40654284, 0.40654284, 0.40654284, 0.40654284, 0.27563326,
0.27563326, 0.27563326, 0.27563326, 0.13295938, 0.13295938,
0.13295938, 0.13295938, 0.1029486 , 0.1029486 , 0.1029486 ,
0.1029486 , 0.10022754, 0.10022754, 0.10022754, 0.10022754,
0.10001725, 0.10001725, 0.10001725, 0.10001725, 0.1000013 ,
0.1000013 , 0.1000013 , 0.1000013 , 0.1000001 , 0.1000001 ,
0.1000001 , 0.1000001 , 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999962, 0.99999962, 0.99999962, 0.99999962, 0.99999791,
0.99999791, 0.99999791, 0.99999791, 0.99998931, 0.99998931,
0.99998931, 0.99998931, 0.99995038, 0.99995038, 0.99995038,
0.99995038, 0.99979255, 0.99979255, 0.99979255, 0.99979255,
0.99922731, 0.99922731, 0.99922731, 0.99922731, 0.99746821,
0.99746821, 0.99746821, 0.99746821, 0.99279908, 0.99279908,
0.99279908, 0.99279908, 0.98241481, 0.98241481, 0.98241481,
0.98241481, 0.96326558, 0.96326558, 0.96326558, 0.96326558,
0.93387982, 0.93387982, 0.93387982, 0.93387982, 0.89553728,
0.89553728, 0.89553728, 0.89553728, 0.85134817, 0.85134817,
0.85134817, 0.85134817, 0.80495162, 0.80495162, 0.80495162,
0.80495162, 0.76058273, 0.76058273, 0.76058273, 0.76058273,
0.71835604, 0.71835604, 0.71835604, 0.71835604, 0.67514463,
0.67514463, 0.67514463, 0.67514463, 0.63729119, 0.63729119,
0.63729119, 0.63729119, 0.61162641, 0.61162641, 0.61162641,
0.61162641, 0.59582875, 0.59582875, 0.59582875, 0.59582875,
0.58543448, 0.58543448, 0.58543448, 0.58543448, 0.57967261,
0.57967261, 0.57967261, 0.57967261, 0.57782428, 0.57782428,
0.57782428, 0.57782428, 0.57777383, 0.57777383, 0.57777383,
0.57777383, 0.57870314, 0.57870314, 0.57870314, 0.57870314,
0.58056833, 0.58056833, 0.58056833, 0.58056833, 0.58087553,
0.58087553, 0.58087553, 0.58087553, 0.57939156, 0.57939156,
0.57939156, 0.57939156, 0.57325442, 0.57325442, 0.57325442,
0.57325442, 0.55803941, 0.55803941, 0.55803941, 0.55803941,
0.52921033, 0.52921033, 0.52921033, 0.52921033, 0.4837152 ,
0.4837152 , 0.4837152 , 0.4837152 , 0.42371397, 0.42371397,
0.42371397, 0.42371397, 0.376212 , 0.376212 , 0.376212 ,
0.376212 , 0.34965307, 0.34965307, 0.34965307, 0.34965307,
0.33690123, 0.33690123, 0.33690123, 0.33690123, 0.33265682,
0.33265682, 0.33265682, 0.33265682, 0.33246875, 0.33246875,
0.33246875, 0.33246875, 0.33332651, 0.33332651, 0.33332651,
0.33332651, 0.33357826, 0.33357826, 0.33357826, 0.33357826,
0.32736337, 0.32736337, 0.32736337, 0.32736337, 0.29324759,
0.29324759, 0.29324759, 0.29324759, 0.20348887, 0.20348887,
0.20348887, 0.20348887, 0.13723772, 0.13723772, 0.13723772,
0.13723772, 0.12613944, 0.12613944, 0.12613944, 0.12613944,
0.12509047, 0.12509047, 0.12509047, 0.12509047, 0.12500693,
0.12500693, 0.12500693, 0.12500693, 0.12500053, 0.12500053,
0.12500053, 0.12500053, 0.12500004, 0.12500004, 0.12500004,
0.12500004, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
7.50000073e-01, 7.50000073e-01, 7.50000073e-01, 7.50000073e-01,
7.50000444e-01, 7.50000444e-01, 7.50000444e-01, 7.50000444e-01,
7.50002476e-01, 7.50002476e-01, 7.50002476e-01, 7.50002476e-01,
7.50012648e-01, 7.50012648e-01, 7.50012648e-01, 7.50012648e-01,
7.50058710e-01, 7.50058710e-01, 7.50058710e-01, 7.50058710e-01,
7.50245463e-01, 7.50245463e-01, 7.50245463e-01, 7.50245463e-01,
7.50914434e-01, 7.50914434e-01, 7.50914434e-01, 7.50914434e-01,
7.52998113e-01, 7.52998113e-01, 7.52998113e-01, 7.52998113e-01,
7.58543146e-01, 7.58543146e-01, 7.58543146e-01, 7.58543146e-01,
7.70955766e-01, 7.70955766e-01, 7.70955766e-01, 7.70955766e-01,
7.94146625e-01, 7.94146625e-01, 7.94146625e-01, 7.94146625e-01,
8.30511067e-01, 8.30511067e-01, 8.30511067e-01, 8.30511067e-01,
8.79411509e-01, 8.79411509e-01, 8.79411509e-01, 8.79411509e-01,
9.37934877e-01, 9.37934877e-01, 9.37934877e-01, 9.37934877e-01,
1.00124282e+00, 1.00124282e+00, 1.00124282e+00, 1.00124282e+00,
1.06525741e+00, 1.06525741e+00, 1.06525741e+00, 1.06525741e+00,
1.12978836e+00, 1.12978836e+00, 1.12978836e+00, 1.12978836e+00,
1.19554873e+00, 1.19554873e+00, 1.19554873e+00, 1.19554873e+00,
1.25655219e+00, 1.25655219e+00, 1.25655219e+00, 1.25655219e+00,
1.30588997e+00, 1.30588997e+00, 1.30588997e+00, 1.30588997e+00,
1.33725902e+00, 1.33725902e+00, 1.33725902e+00, 1.33725902e+00,
1.35200167e+00, 1.35200167e+00, 1.35200167e+00, 1.35200167e+00,
1.35740137e+00, 1.35740137e+00, 1.35740137e+00, 1.35740137e+00,
1.35945680e+00, 1.35945680e+00, 1.35945680e+00, 1.35945680e+00,
1.36098916e+00, 1.36098916e+00, 1.36098916e+00, 1.36098916e+00,
1.36225665e+00, 1.36225665e+00, 1.36225665e+00, 1.36225665e+00,
1.36284870e+00, 1.36284870e+00, 1.36284870e+00, 1.36284870e+00,
1.36323230e+00, 1.36323230e+00, 1.36323230e+00, 1.36323230e+00,
1.36337379e+00, 1.36337379e+00, 1.36337379e+00, 1.36337379e+00,
1.36322082e+00, 1.36322082e+00, 1.36322082e+00, 1.36322082e+00,
1.36321667e+00, 1.36321667e+00, 1.36321667e+00, 1.36321667e+00,
1.36320442e+00, 1.36320442e+00, 1.36320442e+00, 1.36320442e+00,
1.36283306e+00, 1.36283306e+00, 1.36283306e+00, 1.36283306e+00,
1.36246959e+00, 1.36246959e+00, 1.36246959e+00, 1.36246959e+00,
1.36197500e+00, 1.36197500e+00, 1.36197500e+00, 1.36197500e+00,
1.36085259e+00, 1.36085259e+00, 1.36085259e+00, 1.36085259e+00,
1.36028892e+00, 1.36028892e+00, 1.36028892e+00, 1.36028892e+00,
1.35984919e+00, 1.35984919e+00, 1.35984919e+00, 1.35984919e+00,
1.35883540e+00, 1.35883540e+00, 1.35883540e+00, 1.35883540e+00,
1.35714143e+00, 1.35714143e+00, 1.35714143e+00, 1.35714143e+00,
1.34894991e+00, 1.34894991e+00, 1.34894991e+00, 1.34894991e+00,
1.31073945e+00, 1.31073945e+00, 1.31073945e+00, 1.31073945e+00,
1.15250494e+00, 1.15250494e+00, 1.15250494e+00, 1.15250494e+00,
6.53937892e-01, 6.53937892e-01, 6.53937892e-01, 6.53937892e-01,
1.15935794e-01, 1.15935794e-01, 1.15935794e-01, 1.15935794e-01,
1.01224064e-02, 1.01224064e-02, 1.01224064e-02, 1.01224064e-02,
7.75605173e-04, 7.75605173e-04, 7.75605173e-04, 7.75605173e-04,
5.88223629e-05, 5.88223629e-05, 5.88223629e-05, 5.88223629e-05,
4.44985365e-06, 4.44985365e-06, 4.44985365e-06, 4.44985365e-06,
3.35889504e-07, 3.35889504e-07, 3.35889504e-07, 3.35889504e-07,
2.52955860e-08, 2.52955860e-08, 2.52955860e-08, 2.52955860e-08,
1.90071378e-09, 1.90071378e-09, 1.90071378e-09, 1.90071378e-09,
1.42497338e-10, 1.42497338e-10, 1.42497338e-10, 1.42497338e-10,
1.06576856e-11, 1.06576856e-11, 1.06576856e-11, 1.06576856e-11,
7.95109096e-13, 7.95109096e-13, 7.95109096e-13, 7.95109096e-13,
5.90704393e-14, 5.90704393e-14, 5.90704393e-14, 5.90704393e-14,
4.31701064e-15, 4.31701064e-15, 4.31701064e-15, 4.31701064e-15,
3.15002440e-16, 3.15002440e-16, 3.15002440e-16, 3.15002440e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999947, 0.99999947, 0.99999947, 0.99999947, 0.99999707,
0.99999707, 0.99999707, 0.99999707, 0.99998504, 0.99998504,
0.99998504, 0.99998504, 0.99993054, 0.99993054, 0.99993054,
0.99993054, 0.9997096 , 0.9997096 , 0.9997096 , 0.9997096 ,
0.99891859, 0.99891859, 0.99891859, 0.99891859, 0.99645866,
0.99645866, 0.99645866, 0.99645866, 0.98994093, 0.98994093,
0.98994093, 0.98994093, 0.97549864, 0.97549864, 0.97549864,
0.97549864, 0.94904306, 0.94904306, 0.94904306, 0.94904306,
0.90886853, 0.90886853, 0.90886853, 0.90886853, 0.85720188,
0.85720188, 0.85720188, 0.85720188, 0.79869209, 0.79869209,
0.79869209, 0.79869209, 0.73826586, 0.73826586, 0.73826586,
0.73826586, 0.68131655, 0.68131655, 0.68131655, 0.68131655,
0.62890962, 0.62890962, 0.62890962, 0.62890962, 0.57797733,
0.57797733, 0.57797733, 0.57797733, 0.53444855, 0.53444855,
0.53444855, 0.53444855, 0.5013871 , 0.5013871 , 0.5013871 ,
0.5013871 , 0.48115492, 0.48115492, 0.48115492, 0.48115492,
0.47166155, 0.47166155, 0.47166155, 0.47166155, 0.468095 ,
0.468095 , 0.468095 , 0.468095 , 0.46684318, 0.46684318,
0.46684318, 0.46684318, 0.46616211, 0.46616211, 0.46616211,
0.46616211, 0.46561043, 0.46561043, 0.46561043, 0.46561043,
0.46512576, 0.46512576, 0.46512576, 0.46512576, 0.46487872,
0.46487872, 0.46487872, 0.46487872, 0.46492772, 0.46492772,
0.46492772, 0.46492772, 0.4651844 , 0.4651844 , 0.4651844 ,
0.4651844 , 0.4655066 , 0.4655066 , 0.4655066 , 0.4655066 ,
0.46569201, 0.46569201, 0.46569201, 0.46569201, 0.46598138,
0.46598138, 0.46598138, 0.46598138, 0.46594011, 0.46594011,
0.46594011, 0.46594011, 0.4657527 , 0.4657527 , 0.4657527 ,
0.4657527 , 0.4656862 , 0.4656862 , 0.4656862 , 0.4656862 ,
0.46543641, 0.46543641, 0.46543641, 0.46543641, 0.46518651,
0.46518651, 0.46518651, 0.46518651, 0.46517111, 0.46517111,
0.46517111, 0.46517111, 0.46429022, 0.46429022, 0.46429022,
0.46429022, 0.46039234, 0.46039234, 0.46039234, 0.46039234,
0.44325735, 0.44325735, 0.44325735, 0.44325735, 0.37715612,
0.37715612, 0.37715612, 0.37715612, 0.22068217, 0.22068217,
0.22068217, 0.22068217, 0.11627314, 0.11627314, 0.11627314,
0.11627314, 0.10134388, 0.10134388, 0.10134388, 0.10134388,
0.10010262, 0.10010262, 0.10010262, 0.10010262, 0.10000778,
0.10000778, 0.10000778, 0.10000778, 0.10000059, 0.10000059,
0.10000059, 0.10000059, 0.10000004, 0.10000004, 0.10000004,
0.10000004, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999946, 0.99999946, 0.99999946, 0.99999946, 0.99999709,
0.99999709, 0.99999709, 0.99999709, 0.9999856 , 0.9999856 ,
0.9999856 , 0.9999856 , 0.9999352 , 0.9999352 , 0.9999352 ,
0.9999352 , 0.99973758, 0.99973758, 0.99973758, 0.99973758,
0.99905358, 0.99905358, 0.99905358, 0.99905358, 0.99699862,
0.99699862, 0.99699862, 0.99699862, 0.99173748, 0.99173748,
0.99173748, 0.99173748, 0.98044778, 0.98044778, 0.98044778,
0.98044778, 0.96031352, 0.96031352, 0.96031352, 0.96031352,
0.93028712, 0.93028712, 0.93028712, 0.93028712, 0.89194825,
0.89194825, 0.89194825, 0.89194825, 0.84837482, 0.84837482,
0.84837482, 0.84837482, 0.80307475, 0.80307475, 0.80307475,
0.80307475, 0.75973657, 0.75973657, 0.75973657, 0.75973657,
0.71864049, 0.71864049, 0.71864049, 0.71864049, 0.6769383 ,
0.6769383 , 0.6769383 , 0.6769383 , 0.63889909, 0.63889909,
0.63889909, 0.63889909, 0.61229773, 0.61229773, 0.61229773,
0.61229773, 0.59674677, 0.59674677, 0.59674677, 0.59674677,
0.58694413, 0.58694413, 0.58694413, 0.58694413, 0.58077655,
0.58077655, 0.58077655, 0.58077655, 0.57805601, 0.57805601,
0.57805601, 0.57805601, 0.57755678, 0.57755678, 0.57755678,
0.57755678, 0.57803073, 0.57803073, 0.57803073, 0.57803073,
0.57971225, 0.57971225, 0.57971225, 0.57971225, 0.5806943 ,
0.5806943 , 0.5806943 , 0.5806943 , 0.58009671, 0.58009671,
0.58009671, 0.58009671, 0.57636073, 0.57636073, 0.57636073,
0.57636073, 0.5655678 , 0.5655678 , 0.5655678 , 0.5655678 ,
0.54322304, 0.54322304, 0.54322304, 0.54322304, 0.50551025,
0.50551025, 0.50551025, 0.50551025, 0.45076947, 0.45076947,
0.45076947, 0.45076947, 0.39435096, 0.39435096, 0.39435096,
0.39435096, 0.3597402 , 0.3597402 , 0.3597402 , 0.3597402 ,
0.34154439, 0.34154439, 0.34154439, 0.34154439, 0.33413329,
0.33413329, 0.33413329, 0.33413329, 0.33272707, 0.33272707,
0.33272707, 0.33272707, 0.33306897, 0.33306897, 0.33306897,
0.33306897, 0.33417837, 0.33417837, 0.33417837, 0.33417837,
0.33342156, 0.33342156, 0.33342156, 0.33342156, 0.32134726,
0.32134726, 0.32134726, 0.32134726, 0.27151457, 0.27151457,
0.27151457, 0.27151457, 0.17391339, 0.17391339, 0.17391339,
0.17391339, 0.131043 , 0.131043 , 0.131043 , 0.131043 ,
0.12552415, 0.12552415, 0.12552415, 0.12552415, 0.12504101,
0.12504101, 0.12504101, 0.12504101, 0.12500313, 0.12500313,
0.12500313, 0.12500313, 0.12500024, 0.12500024, 0.12500024,
0.12500024, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000017e-01, 7.50000017e-01, 7.50000017e-01, 7.50000017e-01,
7.50000108e-01, 7.50000108e-01, 7.50000108e-01, 7.50000108e-01,
7.50000636e-01, 7.50000636e-01, 7.50000636e-01, 7.50000636e-01,
7.50003442e-01, 7.50003442e-01, 7.50003442e-01, 7.50003442e-01,
7.50017043e-01, 7.50017043e-01, 7.50017043e-01, 7.50017043e-01,
7.50076668e-01, 7.50076668e-01, 7.50076668e-01, 7.50076668e-01,
7.50310517e-01, 7.50310517e-01, 7.50310517e-01, 7.50310517e-01,
7.51120114e-01, 7.51120114e-01, 7.51120114e-01, 7.51120114e-01,
7.53554867e-01, 7.53554867e-01, 7.53554867e-01, 7.53554867e-01,
7.59807118e-01, 7.59807118e-01, 7.59807118e-01, 7.59807118e-01,
7.73320214e-01, 7.73320214e-01, 7.73320214e-01, 7.73320214e-01,
7.97757265e-01, 7.97757265e-01, 7.97757265e-01, 7.97757265e-01,
8.35020634e-01, 8.35020634e-01, 8.35020634e-01, 8.35020634e-01,
8.84067394e-01, 8.84067394e-01, 8.84067394e-01, 8.84067394e-01,
9.41941415e-01, 9.41941415e-01, 9.41941415e-01, 9.41941415e-01,
1.00384428e+00, 1.00384428e+00, 1.00384428e+00, 1.00384428e+00,
1.06633018e+00, 1.06633018e+00, 1.06633018e+00, 1.06633018e+00,
1.12932515e+00, 1.12932515e+00, 1.12932515e+00, 1.12932515e+00,
1.19354968e+00, 1.19354968e+00, 1.19354968e+00, 1.19354968e+00,
1.25356360e+00, 1.25356360e+00, 1.25356360e+00, 1.25356360e+00,
1.30291531e+00, 1.30291531e+00, 1.30291531e+00, 1.30291531e+00,
1.33529031e+00, 1.33529031e+00, 1.33529031e+00, 1.33529031e+00,
1.35115947e+00, 1.35115947e+00, 1.35115947e+00, 1.35115947e+00,
1.35713174e+00, 1.35713174e+00, 1.35713174e+00, 1.35713174e+00,
1.35925965e+00, 1.35925965e+00, 1.35925965e+00, 1.35925965e+00,
1.36072477e+00, 1.36072477e+00, 1.36072477e+00, 1.36072477e+00,
1.36208351e+00, 1.36208351e+00, 1.36208351e+00, 1.36208351e+00,
1.36283213e+00, 1.36283213e+00, 1.36283213e+00, 1.36283213e+00,
1.36320426e+00, 1.36320426e+00, 1.36320426e+00, 1.36320426e+00,
1.36331504e+00, 1.36331504e+00, 1.36331504e+00, 1.36331504e+00,
1.36312690e+00, 1.36312690e+00, 1.36312690e+00, 1.36312690e+00,
1.36305072e+00, 1.36305072e+00, 1.36305072e+00, 1.36305072e+00,
1.36308238e+00, 1.36308238e+00, 1.36308238e+00, 1.36308238e+00,
1.36286521e+00, 1.36286521e+00, 1.36286521e+00, 1.36286521e+00,
1.36262787e+00, 1.36262787e+00, 1.36262787e+00, 1.36262787e+00,
1.36231759e+00, 1.36231759e+00, 1.36231759e+00, 1.36231759e+00,
1.36138818e+00, 1.36138818e+00, 1.36138818e+00, 1.36138818e+00,
1.36084001e+00, 1.36084001e+00, 1.36084001e+00, 1.36084001e+00,
1.36024205e+00, 1.36024205e+00, 1.36024205e+00, 1.36024205e+00,
1.35931961e+00, 1.35931961e+00, 1.35931961e+00, 1.35931961e+00,
1.35862778e+00, 1.35862778e+00, 1.35862778e+00, 1.35862778e+00,
1.35576681e+00, 1.35576681e+00, 1.35576681e+00, 1.35576681e+00,
1.34188087e+00, 1.34188087e+00, 1.34188087e+00, 1.34188087e+00,
1.28237194e+00, 1.28237194e+00, 1.28237194e+00, 1.28237194e+00,
1.04403836e+00, 1.04403836e+00, 1.04403836e+00, 1.04403836e+00,
4.40023066e-01, 4.40023066e-01, 4.40023066e-01, 4.40023066e-01,
5.63022869e-02, 5.63022869e-02, 5.63022869e-02, 5.63022869e-02,
4.58333546e-03, 4.58333546e-03, 4.58333546e-03, 4.58333546e-03,
3.49968099e-04, 3.49968099e-04, 3.49968099e-04, 3.49968099e-04,
2.65258651e-05, 2.65258651e-05, 2.65258651e-05, 2.65258651e-05,
2.00742922e-06, 2.00742922e-06, 2.00742922e-06, 2.00742922e-06,
1.51640690e-07, 1.51640690e-07, 1.51640690e-07, 1.51640690e-07,
1.14299111e-08, 1.14299111e-08, 1.14299111e-08, 1.14299111e-08,
8.59588993e-10, 8.59588993e-10, 8.59588993e-10, 8.59588993e-10,
6.44987274e-11, 6.44987274e-11, 6.44987274e-11, 6.44987274e-11,
4.82824703e-12, 4.82824703e-12, 4.82824703e-12, 4.82824703e-12,
3.60377106e-13, 3.60377106e-13, 3.60377106e-13, 3.60377106e-13,
2.67995136e-14, 2.67995136e-14, 2.67995136e-14, 2.67995136e-14,
1.97682800e-15, 1.97682800e-15, 1.97682800e-15, 1.97682800e-15,
1.51415324e-16, 1.51415324e-16, 1.51415324e-16, 1.51415324e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999925, 0.99999925, 0.99999925, 0.99999925, 0.99999593,
0.99999593, 0.99999593, 0.99999593, 0.99997983, 0.99997983,
0.99997983, 0.99997983, 0.99990929, 0.99990929, 0.99990929,
0.99990929, 0.99963266, 0.99963266, 0.99963266, 0.99963266,
0.99867551, 0.99867551, 0.99867551, 0.99867551, 0.99580237,
0.99580237, 0.99580237, 0.99580237, 0.98846096, 0.98846096,
0.98846096, 0.98846096, 0.97276987, 0.97276987, 0.97276987,
0.97276987, 0.94498179, 0.94498179, 0.94498179, 0.94498179,
0.90398561, 0.90398561, 0.90398561, 0.90398561, 0.85239877,
0.85239877, 0.85239877, 0.85239877, 0.79478009, 0.79478009,
0.79478009, 0.79478009, 0.73582397, 0.73582397, 0.73582397,
0.73582397, 0.68038471, 0.68038471, 0.68038471, 0.68038471,
0.62924921, 0.62924921, 0.62924921, 0.62924921, 0.57942336,
0.57942336, 0.57942336, 0.57942336, 0.53648813, 0.53648813,
0.53648813, 0.53648813, 0.50332705, 0.50332705, 0.50332705,
0.50332705, 0.48248881, 0.48248881, 0.48248881, 0.48248881,
0.47236439, 0.47236439, 0.47236439, 0.47236439, 0.46839479,
0.46839479, 0.46839479, 0.46839479, 0.46692446, 0.46692446,
0.46692446, 0.46692446, 0.46614238, 0.46614238, 0.46614238,
0.46614238, 0.46561056, 0.46561056, 0.46561056, 0.46561056,
0.4651818 , 0.4651818 , 0.4651818 , 0.4651818 , 0.46489012,
0.46489012, 0.46489012, 0.46489012, 0.46489108, 0.46489108,
0.46489108, 0.46489108, 0.4650843 , 0.4650843 , 0.4650843 ,
0.4650843 , 0.46537787, 0.46537787, 0.46537787, 0.46537787,
0.46560331, 0.46560331, 0.46560331, 0.46560331, 0.46596369,
0.46596369, 0.46596369, 0.46596369, 0.46601669, 0.46601669,
0.46601669, 0.46601669, 0.46592137, 0.46592137, 0.46592137,
0.46592137, 0.46593666, 0.46593666, 0.46593666, 0.46593666,
0.46569284, 0.46569284, 0.46569284, 0.46569284, 0.46537354,
0.46537354, 0.46537354, 0.46537354, 0.46539853, 0.46539853,
0.46539853, 0.46539853, 0.46498145, 0.46498145, 0.46498145,
0.46498145, 0.46356472, 0.46356472, 0.46356472, 0.46356472,
0.45748027, 0.45748027, 0.45748027, 0.45748027, 0.43042442,
0.43042442, 0.43042442, 0.43042442, 0.33773594, 0.33773594,
0.33773594, 0.33773594, 0.1723474 , 0.1723474 , 0.1723474 ,
0.1723474 , 0.10764844, 0.10764844, 0.10764844, 0.10764844,
0.10060719, 0.10060719, 0.10060719, 0.10060719, 0.1000463 ,
0.1000463 , 0.1000463 , 0.1000463 , 0.10000351, 0.10000351,
0.10000351, 0.10000351, 0.10000027, 0.10000027, 0.10000027,
0.10000027, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}], 'minmod_hllc': [{'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999993, 0.99999993, 0.99999993, 0.99999993,
0.99999956, 0.99999956, 0.99999956, 0.99999956, 0.99999758,
0.99999758, 0.99999758, 0.99999758, 0.99998782, 0.99998782,
0.99998782, 0.99998782, 0.99994422, 0.99994422, 0.99994422,
0.99994422, 0.99977003, 0.99977003, 0.99977003, 0.99977003,
0.99915542, 0.99915542, 0.99915542, 0.99915542, 0.99727188,
0.99727188, 0.99727188, 0.99727188, 0.99234954, 0.99234954,
0.99234954, 0.99234954, 0.98156538, 0.98156538, 0.98156538,
0.98156538, 0.96194746, 0.96194746, 0.96194746, 0.96194746,
0.93218276, 0.93218276, 0.93218276, 0.93218276, 0.8936786 ,
0.8936786 , 0.8936786 , 0.8936786 , 0.84954127, 0.84954127,
0.84954127, 0.84954127, 0.80317128, 0.80317128, 0.80317128,
0.80317128, 0.75830147, 0.75830147, 0.75830147, 0.75830147,
0.71601042, 0.71601042, 0.71601042, 0.71601042, 0.67327991,
0.67327991, 0.67327991, 0.67327991, 0.63607874, 0.63607874,
0.63607874, 0.63607874, 0.61091745, 0.61091745, 0.61091745,
0.61091745, 0.59673414, 0.59673414, 0.59673414, 0.59673414,
0.58738935, 0.58738935, 0.58738935, 0.58738935, 0.58067077,
0.58067077, 0.58067077, 0.58067077, 0.57738951, 0.57738951,
0.57738951, 0.57738951, 0.57684123, 0.57684123, 0.57684123,
0.57684123, 0.57741731, 0.57741731, 0.57741731, 0.57741731,
0.57933199, 0.57933199, 0.57933199, 0.57933199, 0.5807667 ,
0.5807667 , 0.5807667 , 0.5807667 , 0.58038131, 0.58038131,
0.58038131, 0.58038131, 0.57694171, 0.57694171, 0.57694171,
0.57694171, 0.56652927, 0.56652927, 0.56652927, 0.56652927,
0.54427792, 0.54427792, 0.54427792, 0.54427792, 0.50574245,
0.50574245, 0.50574245, 0.50574245, 0.44917162, 0.44917162,
0.44917162, 0.44917162, 0.39267489, 0.39267489, 0.39267489,
0.39267489, 0.35904482, 0.35904482, 0.35904482, 0.35904482,
0.34183176, 0.34183176, 0.34183176, 0.34183176, 0.33519947,
0.33519947, 0.33519947, 0.33519947, 0.33392488, 0.33392488,
0.33392488, 0.33392488, 0.33443666, 0.33443666, 0.33443666,
0.33443666, 0.33522049, 0.33522049, 0.33522049, 0.33522049,
0.33404885, 0.33404885, 0.33404885, 0.33404885, 0.32180389,
0.32180389, 0.32180389, 0.32180389, 0.27211543, 0.27211543,
0.27211543, 0.27211543, 0.17353096, 0.17353096, 0.17353096,
0.17353096, 0.13090219, 0.13090219, 0.13090219, 0.13090219,
0.12548944, 0.12548944, 0.12548944, 0.12548944, 0.12503725,
0.12503725, 0.12503725, 0.12503725, 0.12500281, 0.12500281,
0.12500281, 0.12500281, 0.12500021, 0.12500021, 0.12500021,
0.12500021, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
7.50000087e-01, 7.50000087e-01, 7.50000087e-01, 7.50000087e-01,
7.50000519e-01, 7.50000519e-01, 7.50000519e-01, 7.50000519e-01,
7.50002860e-01, 7.50002860e-01, 7.50002860e-01, 7.50002860e-01,
7.50014413e-01, 7.50014413e-01, 7.50014413e-01, 7.50014413e-01,
7.50065997e-01, 7.50065997e-01, 7.50065997e-01, 7.50065997e-01,
7.50272133e-01, 7.50272133e-01, 7.50272133e-01, 7.50272133e-01,
7.50999658e-01, 7.50999658e-01, 7.50999658e-01, 7.50999658e-01,
7.53231583e-01, 7.53231583e-01, 7.53231583e-01, 7.53231583e-01,
7.59081507e-01, 7.59081507e-01, 7.59081507e-01, 7.59081507e-01,
7.71986731e-01, 7.71986731e-01, 7.71986731e-01, 7.71986731e-01,
7.95781524e-01, 7.95781524e-01, 7.95781524e-01, 7.95781524e-01,
8.32680719e-01, 8.32680719e-01, 8.32680719e-01, 8.32680719e-01,
8.81876321e-01, 8.81876321e-01, 8.81876321e-01, 8.81876321e-01,
9.40397529e-01, 9.40397529e-01, 9.40397529e-01, 9.40397529e-01,
1.00383705e+00, 1.00383705e+00, 1.00383705e+00, 1.00383705e+00,
1.06846436e+00, 1.06846436e+00, 1.06846436e+00, 1.06846436e+00,
1.13364194e+00, 1.13364194e+00, 1.13364194e+00, 1.13364194e+00,
1.19966388e+00, 1.19966388e+00, 1.19966388e+00, 1.19966388e+00,
1.25823577e+00, 1.25823577e+00, 1.25823577e+00, 1.25823577e+00,
1.30460285e+00, 1.30460285e+00, 1.30460285e+00, 1.30460285e+00,
1.33510884e+00, 1.33510884e+00, 1.33510884e+00, 1.33510884e+00,
1.35096608e+00, 1.35096608e+00, 1.35096608e+00, 1.35096608e+00,
1.35752911e+00, 1.35752911e+00, 1.35752911e+00, 1.35752911e+00,
1.36008887e+00, 1.36008887e+00, 1.36008887e+00, 1.36008887e+00,
1.36168158e+00, 1.36168158e+00, 1.36168158e+00, 1.36168158e+00,
1.36273536e+00, 1.36273536e+00, 1.36273536e+00, 1.36273536e+00,
1.36310325e+00, 1.36310325e+00, 1.36310325e+00, 1.36310325e+00,
1.36308266e+00, 1.36308266e+00, 1.36308266e+00, 1.36308266e+00,
1.36292459e+00, 1.36292459e+00, 1.36292459e+00, 1.36292459e+00,
1.36276796e+00, 1.36276796e+00, 1.36276796e+00, 1.36276796e+00,
1.36261137e+00, 1.36261137e+00, 1.36261137e+00, 1.36261137e+00,
1.36242480e+00, 1.36242480e+00, 1.36242480e+00, 1.36242480e+00,
1.36240105e+00, 1.36240105e+00, 1.36240105e+00, 1.36240105e+00,
1.36236978e+00, 1.36236978e+00, 1.36236978e+00, 1.36236978e+00,
1.36206049e+00, 1.36206049e+00, 1.36206049e+00, 1.36206049e+00,
1.36120137e+00, 1.36120137e+00, 1.36120137e+00, 1.36120137e+00,
1.36080070e+00, 1.36080070e+00, 1.36080070e+00, 1.36080070e+00,
1.36024607e+00, 1.36024607e+00, 1.36024607e+00, 1.36024607e+00,
1.35960979e+00, 1.35960979e+00, 1.35960979e+00, 1.35960979e+00,
1.35845878e+00, 1.35845878e+00, 1.35845878e+00, 1.35845878e+00,
1.35582525e+00, 1.35582525e+00, 1.35582525e+00, 1.35582525e+00,
1.34268743e+00, 1.34268743e+00, 1.34268743e+00, 1.34268743e+00,
1.28409176e+00, 1.28409176e+00, 1.28409176e+00, 1.28409176e+00,
1.04736551e+00, 1.04736551e+00, 1.04736551e+00, 1.04736551e+00,
4.29328817e-01, 4.29328817e-01, 4.29328817e-01, 4.29328817e-01,
5.19371545e-02, 5.19371545e-02, 5.19371545e-02, 5.19371545e-02,
4.15794051e-03, 4.15794051e-03, 4.15794051e-03, 4.15794051e-03,
3.15435852e-04, 3.15435852e-04, 3.15435852e-04, 3.15435852e-04,
2.37540443e-05, 2.37540443e-05, 2.37540443e-05, 2.37540443e-05,
1.78468394e-06, 1.78468394e-06, 1.78468394e-06, 1.78468394e-06,
1.33840550e-07, 1.33840550e-07, 1.33840550e-07, 1.33840550e-07,
1.00204015e-08, 1.00204015e-08, 1.00204015e-08, 1.00204015e-08,
7.48783638e-10, 7.48783638e-10, 7.48783638e-10, 7.48783638e-10,
5.58269795e-11, 5.58269795e-11, 5.58269795e-11, 5.58269795e-11,
4.15162222e-12, 4.15162222e-12, 4.15162222e-12, 4.15162222e-12,
3.07872093e-13, 3.07872093e-13, 3.07872093e-13, 3.07872093e-13,
2.27463383e-14, 2.27463383e-14, 2.27463383e-14, 2.27463383e-14,
1.62261633e-15, 1.62261633e-15, 1.62261633e-15, 1.62261633e-15,
1.00069544e-16, 1.00069544e-16, 1.00069544e-16, 1.00069544e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 ,
0.99999939, 0.99999939, 0.99999939, 0.99999939, 0.99999662,
0.99999662, 0.99999662, 0.99999662, 0.99998295, 0.99998295,
0.99998295, 0.99998295, 0.99992191, 0.99992191, 0.99992191,
0.99992191, 0.99967806, 0.99967806, 0.99967806, 0.99967806,
0.9988179 , 0.9988179 , 0.9988179 , 0.9988179 , 0.99618367,
0.99618367, 0.99618367, 0.99618367, 0.9893114 , 0.9893114 ,
0.9893114 , 0.9893114 , 0.97431068, 0.97431068, 0.97431068,
0.97431068, 0.94720653, 0.94720653, 0.94720653, 0.94720653,
0.90652171, 0.90652171, 0.90652171, 0.90652171, 0.85466372,
0.85466372, 0.85466372, 0.85466372, 0.79629842, 0.79629842,
0.79629842, 0.79629842, 0.73604968, 0.73604968, 0.73604968,
0.73604968, 0.67878231, 0.67878231, 0.67878231, 0.67878231,
0.6256561 , 0.6256561 , 0.6256561 , 0.6256561 , 0.57494258,
0.57494258, 0.57494258, 0.57494258, 0.533212 , 0.533212 ,
0.533212 , 0.533212 , 0.50207587, 0.50207587, 0.50207587,
0.50207587, 0.48250309, 0.48250309, 0.48250309, 0.48250309,
0.47250947, 0.47250947, 0.47250947, 0.47250947, 0.46817049,
0.46817049, 0.46817049, 0.46817049, 0.46640112, 0.46640112,
0.46640112, 0.46640112, 0.46567017, 0.46567017, 0.46567017,
0.46567017, 0.46537494, 0.46537494, 0.46537494, 0.46537494,
0.4652207 , 0.4652207 , 0.4652207 , 0.4652207 , 0.46520697,
0.46520697, 0.46520697, 0.46520697, 0.46526117, 0.46526117,
0.46526117, 0.46526117, 0.46535935, 0.46535935, 0.46535935,
0.46535935, 0.46554981, 0.46554981, 0.46554981, 0.46554981,
0.46588653, 0.46588653, 0.46588653, 0.46588653, 0.46609435,
0.46609435, 0.46609435, 0.46609435, 0.46609123, 0.46609123,
0.46609123, 0.46609123, 0.46609313, 0.46609313, 0.46609313,
0.46609313, 0.4660888 , 0.4660888 , 0.4660888 , 0.4660888 ,
0.46579135, 0.46579135, 0.46579135, 0.46579135, 0.46552363,
0.46552363, 0.46552363, 0.46552363, 0.46536737, 0.46536737,
0.46536737, 0.46536737, 0.46516396, 0.46516396, 0.46516396,
0.46516396, 0.46370822, 0.46370822, 0.46370822, 0.46370822,
0.45758086, 0.45758086, 0.45758086, 0.45758086, 0.43124529,
0.43124529, 0.43124529, 0.43124529, 0.33859453, 0.33859453,
0.33859453, 0.33859453, 0.17013955, 0.17013955, 0.17013955,
0.17013955, 0.10699674, 0.10699674, 0.10699674, 0.10699674,
0.10055056, 0.10055056, 0.10055056, 0.10055056, 0.10004173,
0.10004173, 0.10004173, 0.10004173, 0.10000314, 0.10000314,
0.10000314, 0.10000314, 0.10000024, 0.10000024, 0.10000024,
0.10000024, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}]}
minmod_hllc
{'none_hll': [{'rho': array([0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999942,
0.99999942, 0.99999942, 0.99999942, 0.99999778, 0.99999778,
0.99999778, 0.99999778, 0.99999202, 0.99999202, 0.99999202,
0.99999202, 0.99997316, 0.99997316, 0.99997316, 0.99997316,
0.99991602, 0.99991602, 0.99991602, 0.99991602, 0.9997563 ,
0.9997563 , 0.9997563 , 0.9997563 , 0.9993467 , 0.9993467 ,
0.9993467 , 0.9993467 , 0.99838817, 0.99838817, 0.99838817,
0.99838817, 0.99635204, 0.99635204, 0.99635204, 0.99635204,
0.99244104, 0.99244104, 0.99244104, 0.99244104, 0.9856563 ,
0.9856563 , 0.9856563 , 0.9856563 , 0.97499773, 0.97499773,
0.97499773, 0.97499773, 0.95972818, 0.95972818, 0.95972818,
0.95972818, 0.93956535, 0.93956535, 0.93956535, 0.93956535,
0.91470956, 0.91470956, 0.91470956, 0.91470956, 0.88572617,
0.88572617, 0.88572617, 0.88572617, 0.85336749, 0.85336749,
0.85336749, 0.85336749, 0.8183986 , 0.8183986 , 0.8183986 ,
0.8183986 , 0.78138933, 0.78138933, 0.78138933, 0.78138933,
0.74190427, 0.74190427, 0.74190427, 0.74190427, 0.68069561,
0.68069561, 0.68069561, 0.68069561, 0.64567578, 0.64567578,
0.64567578, 0.64567578, 0.62072799, 0.62072799, 0.62072799,
0.62072799, 0.60234245, 0.60234245, 0.60234245, 0.60234245,
0.58959115, 0.58959115, 0.58959115, 0.58959115, 0.58159638,
0.58159638, 0.58159638, 0.58159638, 0.57703206, 0.57703206,
0.57703206, 0.57703206, 0.5742342 , 0.5742342 , 0.5742342 ,
0.5742342 , 0.57154338, 0.57154338, 0.57154338, 0.57154338,
0.56752869, 0.56752869, 0.56752869, 0.56752869, 0.56100982,
0.56100982, 0.56100982, 0.56100982, 0.55104138, 0.55104138,
0.55104138, 0.55104138, 0.5369988 , 0.5369988 , 0.5369988 ,
0.5369988 , 0.51874878, 0.51874878, 0.51874878, 0.51874878,
0.49679082, 0.49679082, 0.49679082, 0.49679082, 0.4722612 ,
0.4722612 , 0.4722612 , 0.4722612 , 0.44675753, 0.44675753,
0.44675753, 0.44675753, 0.42202434, 0.42202434, 0.42202434,
0.42202434, 0.39959589, 0.39959589, 0.39959589, 0.39959589,
0.38049936, 0.38049936, 0.38049936, 0.38049936, 0.36508019,
0.36508019, 0.36508019, 0.36508019, 0.35299013, 0.35299013,
0.35299013, 0.35299013, 0.34303431, 0.34303431, 0.34303431,
0.34303431, 0.33311509, 0.33311509, 0.33311509, 0.33311509,
0.32011436, 0.32011436, 0.32011436, 0.32011436, 0.29976301,
0.29976301, 0.29976301, 0.29976301, 0.2678043 , 0.2678043 ,
0.2678043 , 0.2678043 , 0.22419984, 0.22419984, 0.22419984,
0.22419984, 0.17832614, 0.17832614, 0.17832614, 0.17832614,
0.14528472, 0.14528472, 0.14528472, 0.14528472, 0.13048361,
0.13048361, 0.13048361, 0.13048361, 0.12620226, 0.12620226,
0.12620226, 0.12620226, 0.12524229, 0.12524229, 0.12524229,
0.12524229, 0.12504738, 0.12504738, 0.12504738, 0.12504738,
0.12500914, 0.12500914, 0.12500914, 0.12500914, 0.12500174,
0.12500174, 0.12500174, 0.12500174, 0.12500033, 0.12500033,
0.12500033, 0.12500033, 0.12500006, 0.12500006, 0.12500006,
0.12500006, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000167e-01, 7.50000167e-01, 7.50000167e-01, 7.50000167e-01,
7.50000683e-01, 7.50000683e-01, 7.50000683e-01, 7.50000683e-01,
7.50002625e-01, 7.50002625e-01, 7.50002625e-01, 7.50002625e-01,
7.50009447e-01, 7.50009447e-01, 7.50009447e-01, 7.50009447e-01,
7.50031758e-01, 7.50031758e-01, 7.50031758e-01, 7.50031758e-01,
7.50099366e-01, 7.50099366e-01, 7.50099366e-01, 7.50099366e-01,
7.50288337e-01, 7.50288337e-01, 7.50288337e-01, 7.50288337e-01,
7.50772988e-01, 7.50772988e-01, 7.50772988e-01, 7.50772988e-01,
7.51907376e-01, 7.51907376e-01, 7.51907376e-01, 7.51907376e-01,
7.54318699e-01, 7.54318699e-01, 7.54318699e-01, 7.54318699e-01,
7.58958083e-01, 7.58958083e-01, 7.58958083e-01, 7.58958083e-01,
7.67034111e-01, 7.67034111e-01, 7.67034111e-01, 7.67034111e-01,
7.79799756e-01, 7.79799756e-01, 7.79799756e-01, 7.79799756e-01,
7.98268450e-01, 7.98268450e-01, 7.98268450e-01, 7.98268450e-01,
8.23003448e-01, 8.23003448e-01, 8.23003448e-01, 8.23003448e-01,
8.54075522e-01, 8.54075522e-01, 8.54075522e-01, 8.54075522e-01,
8.91170219e-01, 8.91170219e-01, 8.91170219e-01, 8.91170219e-01,
9.33761223e-01, 9.33761223e-01, 9.33761223e-01, 9.33761223e-01,
9.81292612e-01, 9.81292612e-01, 9.81292612e-01, 9.81292612e-01,
1.03344347e+00, 1.03344347e+00, 1.03344347e+00, 1.03344347e+00,
1.09134872e+00, 1.09134872e+00, 1.09134872e+00, 1.09134872e+00,
1.18628677e+00, 1.18628677e+00, 1.18628677e+00, 1.18628677e+00,
1.24355729e+00, 1.24355729e+00, 1.24355729e+00, 1.24355729e+00,
1.28577631e+00, 1.28577631e+00, 1.28577631e+00, 1.28577631e+00,
1.31763060e+00, 1.31763060e+00, 1.31763060e+00, 1.31763060e+00,
1.33994607e+00, 1.33994607e+00, 1.33994607e+00, 1.33994607e+00,
1.35366900e+00, 1.35366900e+00, 1.35366900e+00, 1.35366900e+00,
1.36065228e+00, 1.36065228e+00, 1.36065228e+00, 1.36065228e+00,
1.36330406e+00, 1.36330406e+00, 1.36330406e+00, 1.36330406e+00,
1.36377802e+00, 1.36377802e+00, 1.36377802e+00, 1.36377802e+00,
1.36346214e+00, 1.36346214e+00, 1.36346214e+00, 1.36346214e+00,
1.36300839e+00, 1.36300839e+00, 1.36300839e+00, 1.36300839e+00,
1.36262613e+00, 1.36262613e+00, 1.36262613e+00, 1.36262613e+00,
1.36234022e+00, 1.36234022e+00, 1.36234022e+00, 1.36234022e+00,
1.36212440e+00, 1.36212440e+00, 1.36212440e+00, 1.36212440e+00,
1.36194570e+00, 1.36194570e+00, 1.36194570e+00, 1.36194570e+00,
1.36176870e+00, 1.36176870e+00, 1.36176870e+00, 1.36176870e+00,
1.36154433e+00, 1.36154433e+00, 1.36154433e+00, 1.36154433e+00,
1.36118699e+00, 1.36118699e+00, 1.36118699e+00, 1.36118699e+00,
1.36053007e+00, 1.36053007e+00, 1.36053007e+00, 1.36053007e+00,
1.35923531e+00, 1.35923531e+00, 1.35923531e+00, 1.35923531e+00,
1.35660636e+00, 1.35660636e+00, 1.35660636e+00, 1.35660636e+00,
1.35121276e+00, 1.35121276e+00, 1.35121276e+00, 1.35121276e+00,
1.34015167e+00, 1.34015167e+00, 1.34015167e+00, 1.34015167e+00,
1.31767491e+00, 1.31767491e+00, 1.31767491e+00, 1.31767491e+00,
1.27285288e+00, 1.27285288e+00, 1.27285288e+00, 1.27285288e+00,
1.18653029e+00, 1.18653029e+00, 1.18653029e+00, 1.18653029e+00,
1.03082789e+00, 1.03082789e+00, 1.03082789e+00, 1.03082789e+00,
7.82059657e-01, 7.82059657e-01, 7.82059657e-01, 7.82059657e-01,
4.62795165e-01, 4.62795165e-01, 4.62795165e-01, 4.62795165e-01,
1.85035678e-01, 1.85035678e-01, 1.85035678e-01, 1.85035678e-01,
4.91064989e-02, 4.91064989e-02, 4.91064989e-02, 4.91064989e-02,
1.04300500e-02, 1.04300500e-02, 1.04300500e-02, 1.04300500e-02,
2.06834747e-03, 2.06834747e-03, 2.06834747e-03, 2.06834747e-03,
4.02159204e-04, 4.02159204e-04, 4.02159204e-04, 4.02159204e-04,
7.74241901e-05, 7.74241901e-05, 7.74241901e-05, 7.74241901e-05,
1.47732907e-05, 1.47732907e-05, 1.47732907e-05, 1.47732907e-05,
2.79133251e-06, 2.79133251e-06, 2.79133251e-06, 2.79133251e-06,
5.21558611e-07, 5.21558611e-07, 5.21558611e-07, 5.21558611e-07,
9.62314180e-08, 9.62314180e-08, 9.62314180e-08, 9.62314180e-08,
1.75063215e-08, 1.75063215e-08, 1.75063215e-08, 1.75063215e-08,
3.13525934e-09, 3.13525934e-09, 3.13525934e-09, 3.13525934e-09,
5.51945459e-10, 5.51945459e-10, 5.51945459e-10, 5.51945459e-10,
9.53728523e-11, 9.53728523e-11, 9.53728523e-11]), 'P': array([0.9999998 , 0.9999998 , 0.9999998 , 0.9999998 , 0.99999919,
0.99999919, 0.99999919, 0.99999919, 0.99999689, 0.99999689,
0.99999689, 0.99999689, 0.99998882, 0.99998882, 0.99998882,
0.99998882, 0.99996242, 0.99996242, 0.99996242, 0.99996242,
0.99988243, 0.99988243, 0.99988243, 0.99988243, 0.99965888,
0.99965888, 0.99965888, 0.99965888, 0.99908571, 0.99908571,
0.99908571, 0.99908571, 0.99774515, 0.99774515, 0.99774515,
0.99774515, 0.99490042, 0.99490042, 0.99490042, 0.99490042,
0.98944596, 0.98944596, 0.98944596, 0.98944596, 0.98001064,
0.98001064, 0.98001064, 0.98001064, 0.96525111, 0.96525111,
0.96525111, 0.96525111, 0.94423203, 0.94423203, 0.94423203,
0.94423203, 0.91669404, 0.91669404, 0.91669404, 0.91669404,
0.88307786, 0.88307786, 0.88307786, 0.88307786, 0.84433672,
0.84433672, 0.84433672, 0.84433672, 0.80166635, 0.80166635,
0.80166635, 0.80166635, 0.75625152, 0.75625152, 0.75625152,
0.75625152, 0.70899078, 0.70899078, 0.70899078, 0.70899078,
0.65951543, 0.65951543, 0.65951543, 0.65951543, 0.58481452,
0.58481452, 0.58481452, 0.58481452, 0.5433517 , 0.5433517 ,
0.5433517 , 0.5433517 , 0.51442502, 0.51442502, 0.51442502,
0.51442502, 0.49348741, 0.49348741, 0.49348741, 0.49348741,
0.47926376, 0.47926376, 0.47926376, 0.47926376, 0.4706976 ,
0.4706976 , 0.4706976 , 0.4706976 , 0.46639387, 0.46639387,
0.46639387, 0.46639387, 0.46477369, 0.46477369, 0.46477369,
0.46477369, 0.46449143, 0.46449143, 0.46449143, 0.46449143,
0.46469357, 0.46469357, 0.46469357, 0.46469357, 0.46498071,
0.46498071, 0.46498071, 0.46498071, 0.46522404, 0.46522404,
0.46522404, 0.46522404, 0.46540634, 0.46540634, 0.46540634,
0.46540634, 0.46553884, 0.46553884, 0.46553884, 0.46553884,
0.46563123, 0.46563123, 0.46563123, 0.46563123, 0.46568376,
0.46568376, 0.46568376, 0.46568376, 0.46568347, 0.46568347,
0.46568347, 0.46568347, 0.46559619, 0.46559619, 0.46559619,
0.46559619, 0.46534764, 0.46534764, 0.46534764, 0.46534764,
0.46478249, 0.46478249, 0.46478249, 0.46478249, 0.46357931,
0.46357931, 0.46357931, 0.46357931, 0.46108012, 0.46108012,
0.46108012, 0.46108012, 0.4559703 , 0.4559703 , 0.4559703 ,
0.4559703 , 0.44573327, 0.44573327, 0.44573327, 0.44573327,
0.42592481, 0.42592481, 0.42592481, 0.42592481, 0.38995176,
0.38995176, 0.38995176, 0.38995176, 0.33171722, 0.33171722,
0.33171722, 0.33171722, 0.25409808, 0.25409808, 0.25409808,
0.25409808, 0.1771826 , 0.1771826 , 0.1771826 , 0.1771826 ,
0.126735 , 0.126735 , 0.126735 , 0.126735 , 0.10663112,
0.10663112, 0.10663112, 0.10663112, 0.10138491, 0.10138491,
0.10138491, 0.10138491, 0.1002738 , 0.1002738 , 0.1002738 ,
0.1002738 , 0.10005321, 0.10005321, 0.10005321, 0.10005321,
0.10001024, 0.10001024, 0.10001024, 0.10001024, 0.10000195,
0.10000195, 0.10000195, 0.10000195, 0.10000037, 0.10000037,
0.10000037, 0.10000037, 0.10000007, 0.10000007, 0.10000007,
0.10000007, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}], 'minmod_rusanov': [{'rho': array([0.99999871, 0.99999871, 0.99999871, 0.99999871, 0.99999661,
0.99999661, 0.99999661, 0.99999661, 0.99998966, 0.99998966,
0.99998966, 0.99998966, 0.99997049, 0.99997049, 0.99997049,
0.99997049, 0.99992058, 0.99992058, 0.99992058, 0.99992058,
0.99979749, 0.99979749, 0.99979749, 0.99979749, 0.99951129,
0.99951129, 0.99951129, 0.99951129, 0.99888599, 0.99888599,
0.99888599, 0.99888599, 0.9976064 , 0.9976064 , 0.9976064 ,
0.9976064 , 0.99516153, 0.99516153, 0.99516153, 0.99516153,
0.99081297, 0.99081297, 0.99081297, 0.99081297, 0.98362904,
0.98362904, 0.98362904, 0.98362904, 0.9726153 , 0.9726153 ,
0.9726153 , 0.9726153 , 0.95692666, 0.95692666, 0.95692666,
0.95692666, 0.93608458, 0.93608458, 0.93608458, 0.93608458,
0.91009674, 0.91009674, 0.91009674, 0.91009674, 0.87942017,
0.87942017, 0.87942017, 0.87942017, 0.84480243, 0.84480243,
0.84480243, 0.84480243, 0.80717174, 0.80717174, 0.80717174,
0.80717174, 0.76833323, 0.76833323, 0.76833323, 0.76833323,
0.7317958 , 0.7317958 , 0.7317958 , 0.7317958 , 0.69866292,
0.69866292, 0.69866292, 0.69866292, 0.66877266, 0.66877266,
0.66877266, 0.66877266, 0.64250712, 0.64250712, 0.64250712,
0.64250712, 0.62085534, 0.62085534, 0.62085534, 0.62085534,
0.60473075, 0.60473075, 0.60473075, 0.60473075, 0.59427383,
0.59427383, 0.59427383, 0.59427383, 0.58874167, 0.58874167,
0.58874167, 0.58874167, 0.58661231, 0.58661231, 0.58661231,
0.58661231, 0.58586097, 0.58586097, 0.58586097, 0.58586097,
0.58476947, 0.58476947, 0.58476947, 0.58476947, 0.58158321,
0.58158321, 0.58158321, 0.58158321, 0.57471343, 0.57471343,
0.57471343, 0.57471343, 0.56327381, 0.56327381, 0.56327381,
0.56327381, 0.54639053, 0.54639053, 0.54639053, 0.54639053,
0.52240684, 0.52240684, 0.52240684, 0.52240684, 0.48899281,
0.48899281, 0.48899281, 0.48899281, 0.4463966 , 0.4463966 ,
0.4463966 , 0.4463966 , 0.40411539, 0.40411539, 0.40411539,
0.40411539, 0.37294067, 0.37294067, 0.37294067, 0.37294067,
0.35182753, 0.35182753, 0.35182753, 0.35182753, 0.33895289,
0.33895289, 0.33895289, 0.33895289, 0.33221897, 0.33221897,
0.33221897, 0.33221897, 0.3294285 , 0.3294285 , 0.3294285 ,
0.3294285 , 0.32860094, 0.32860094, 0.32860094, 0.32860094,
0.32743466, 0.32743466, 0.32743466, 0.32743466, 0.31726988,
0.31726988, 0.31726988, 0.31726988, 0.27001934, 0.27001934,
0.27001934, 0.27001934, 0.17357126, 0.17357126, 0.17357126,
0.17357126, 0.13098555, 0.13098555, 0.13098555, 0.13098555,
0.12551968, 0.12551968, 0.12551968, 0.12551968, 0.12504027,
0.12504027, 0.12504027, 0.12504027, 0.12500303, 0.12500303,
0.12500303, 0.12500303, 0.12500023, 0.12500023, 0.12500023,
0.12500023, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50001531e-01, 7.50001531e-01, 7.50001531e-01, 7.50001531e-01,
7.50004007e-01, 7.50004007e-01, 7.50004007e-01, 7.50004007e-01,
7.50012237e-01, 7.50012237e-01, 7.50012237e-01, 7.50012237e-01,
7.50034917e-01, 7.50034917e-01, 7.50034917e-01, 7.50034917e-01,
7.50093968e-01, 7.50093968e-01, 7.50093968e-01, 7.50093968e-01,
7.50239615e-01, 7.50239615e-01, 7.50239615e-01, 7.50239615e-01,
7.50578307e-01, 7.50578307e-01, 7.50578307e-01, 7.50578307e-01,
7.51318450e-01, 7.51318450e-01, 7.51318450e-01, 7.51318450e-01,
7.52833953e-01, 7.52833953e-01, 7.52833953e-01, 7.52833953e-01,
7.55733191e-01, 7.55733191e-01, 7.55733191e-01, 7.55733191e-01,
7.60902495e-01, 7.60902495e-01, 7.60902495e-01, 7.60902495e-01,
7.69479672e-01, 7.69479672e-01, 7.69479672e-01, 7.69479672e-01,
7.82724068e-01, 7.82724068e-01, 7.82724068e-01, 7.82724068e-01,
8.01796569e-01, 8.01796569e-01, 8.01796569e-01, 8.01796569e-01,
8.27525186e-01, 8.27525186e-01, 8.27525186e-01, 8.27525186e-01,
8.60261011e-01, 8.60261011e-01, 8.60261011e-01, 8.60261011e-01,
8.99894497e-01, 8.99894497e-01, 8.99894497e-01, 8.99894497e-01,
9.46030525e-01, 9.46030525e-01, 9.46030525e-01, 9.46030525e-01,
9.98277447e-01, 9.98277447e-01, 9.98277447e-01, 9.98277447e-01,
1.05334834e+00, 1.05334834e+00, 1.05334834e+00, 1.05334834e+00,
1.10804511e+00, 1.10804511e+00, 1.10804511e+00, 1.10804511e+00,
1.15927234e+00, 1.15927234e+00, 1.15927234e+00, 1.15927234e+00,
1.20602476e+00, 1.20602476e+00, 1.20602476e+00, 1.20602476e+00,
1.24734222e+00, 1.24734222e+00, 1.24734222e+00, 1.24734222e+00,
1.28248845e+00, 1.28248845e+00, 1.28248845e+00, 1.28248845e+00,
1.31052537e+00, 1.31052537e+00, 1.31052537e+00, 1.31052537e+00,
1.33076480e+00, 1.33076480e+00, 1.33076480e+00, 1.33076480e+00,
1.34415463e+00, 1.34415463e+00, 1.34415463e+00, 1.34415463e+00,
1.35305806e+00, 1.35305806e+00, 1.35305806e+00, 1.35305806e+00,
1.35894065e+00, 1.35894065e+00, 1.35894065e+00, 1.35894065e+00,
1.36185203e+00, 1.36185203e+00, 1.36185203e+00, 1.36185203e+00,
1.36239557e+00, 1.36239557e+00, 1.36239557e+00, 1.36239557e+00,
1.36215707e+00, 1.36215707e+00, 1.36215707e+00, 1.36215707e+00,
1.36194266e+00, 1.36194266e+00, 1.36194266e+00, 1.36194266e+00,
1.36206937e+00, 1.36206937e+00, 1.36206937e+00, 1.36206937e+00,
1.36246607e+00, 1.36246607e+00, 1.36246607e+00, 1.36246607e+00,
1.36297688e+00, 1.36297688e+00, 1.36297688e+00, 1.36297688e+00,
1.36312897e+00, 1.36312897e+00, 1.36312897e+00, 1.36312897e+00,
1.36298101e+00, 1.36298101e+00, 1.36298101e+00, 1.36298101e+00,
1.36246641e+00, 1.36246641e+00, 1.36246641e+00, 1.36246641e+00,
1.36157437e+00, 1.36157437e+00, 1.36157437e+00, 1.36157437e+00,
1.36070130e+00, 1.36070130e+00, 1.36070130e+00, 1.36070130e+00,
1.36003987e+00, 1.36003987e+00, 1.36003987e+00, 1.36003987e+00,
1.35919056e+00, 1.35919056e+00, 1.35919056e+00, 1.35919056e+00,
1.35638143e+00, 1.35638143e+00, 1.35638143e+00, 1.35638143e+00,
1.34281703e+00, 1.34281703e+00, 1.34281703e+00, 1.34281703e+00,
1.28083198e+00, 1.28083198e+00, 1.28083198e+00, 1.28083198e+00,
1.03437248e+00, 1.03437248e+00, 1.03437248e+00, 1.03437248e+00,
4.39845204e-01, 4.39845204e-01, 4.39845204e-01, 4.39845204e-01,
5.63702448e-02, 5.63702448e-02, 5.63702448e-02, 5.63702448e-02,
4.56728510e-03, 4.56728510e-03, 4.56728510e-03, 4.56728510e-03,
3.44109702e-04, 3.44109702e-04, 3.44109702e-04, 3.44109702e-04,
2.57117118e-05, 2.57117118e-05, 2.57117118e-05, 2.57117118e-05,
1.91493931e-06, 1.91493931e-06, 1.91493931e-06, 1.91493931e-06,
1.42183400e-07, 1.42183400e-07, 1.42183400e-07, 1.42183400e-07,
1.05285748e-08, 1.05285748e-08, 1.05285748e-08, 1.05285748e-08,
7.77701570e-10, 7.77701570e-10, 7.77701570e-10, 7.77701570e-10,
5.73011541e-11, 5.73011541e-11, 5.73011541e-11, 5.73011541e-11,
4.21117928e-12, 4.21117928e-12, 4.21117928e-12, 4.21117928e-12,
3.08654210e-13, 3.08654210e-13, 3.08654210e-13, 3.08654210e-13,
2.24724643e-14, 2.24724643e-14, 2.24724643e-14, 2.24724643e-14,
1.61702291e-15, 1.61702291e-15, 1.61702291e-15, 1.61702291e-15,
1.02454347e-16, 1.02454347e-16, 1.02454347e-16, 1.02454347e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([0.99999819, 0.99999819, 0.99999819, 0.99999819, 0.99999526,
0.99999526, 0.99999526, 0.99999526, 0.99998552, 0.99998552,
0.99998552, 0.99998552, 0.99995869, 0.99995869, 0.99995869,
0.99995869, 0.99988882, 0.99988882, 0.99988882, 0.99988882,
0.99971652, 0.99971652, 0.99971652, 0.99971652, 0.99931595,
0.99931595, 0.99931595, 0.99931595, 0.9984411 , 0.9984411 ,
0.9984411 , 0.9984411 , 0.99665195, 0.99665195, 0.99665195,
0.99665195, 0.99323734, 0.99323734, 0.99323734, 0.99323734,
0.98717551, 0.98717551, 0.98717551, 0.98717551, 0.97719106,
0.97719106, 0.97719106, 0.97719106, 0.96195133, 0.96195133,
0.96195133, 0.96195133, 0.94037646, 0.94037646, 0.94037646,
0.94037646, 0.91194761, 0.91194761, 0.91194761, 0.91194761,
0.87686269, 0.87686269, 0.87686269, 0.87686269, 0.83595614,
0.83595614, 0.83595614, 0.83595614, 0.79042203, 0.79042203,
0.79042203, 0.79042203, 0.74145147, 0.74145147, 0.74145147,
0.74145147, 0.69147779, 0.69147779, 0.69147779, 0.69147779,
0.64572403, 0.64572403, 0.64572403, 0.64572403, 0.60528213,
0.60528213, 0.60528213, 0.60528213, 0.57010763, 0.57010763,
0.57010763, 0.57010763, 0.5404967 , 0.5404967 , 0.5404967 ,
0.5404967 , 0.51678706, 0.51678706, 0.51678706, 0.51678706,
0.49867658, 0.49867658, 0.49867658, 0.49867658, 0.4853026 ,
0.4853026 , 0.4853026 , 0.4853026 , 0.47607786, 0.47607786,
0.47607786, 0.47607786, 0.47071083, 0.47071083, 0.47071083,
0.47071083, 0.46816931, 0.46816931, 0.46816931, 0.46816931,
0.46677659, 0.46677659, 0.46677659, 0.46677659, 0.46558153,
0.46558153, 0.46558153, 0.46558153, 0.4647659 , 0.4647659 ,
0.4647659 , 0.4647659 , 0.46441055, 0.46441055, 0.46441055,
0.46441055, 0.46437878, 0.46437878, 0.46437878, 0.46437878,
0.46459568, 0.46459568, 0.46459568, 0.46459568, 0.46499426,
0.46499426, 0.46499426, 0.46499426, 0.46520033, 0.46520033,
0.46520033, 0.46520033, 0.46528777, 0.46528777, 0.46528777,
0.46528777, 0.46526662, 0.46526662, 0.46526662, 0.46526662,
0.46508061, 0.46508061, 0.46508061, 0.46508061, 0.4649127 ,
0.4649127 , 0.4649127 , 0.4649127 , 0.46486127, 0.46486127,
0.46486127, 0.46486127, 0.4647071 , 0.4647071 , 0.4647071 ,
0.4647071 , 0.46356721, 0.46356721, 0.46356721, 0.46356721,
0.45731151, 0.45731151, 0.45731151, 0.45731151, 0.42928346,
0.42928346, 0.42928346, 0.42928346, 0.33578024, 0.33578024,
0.33578024, 0.33578024, 0.17249402, 0.17249402, 0.17249402,
0.17249402, 0.10769716, 0.10769716, 0.10769716, 0.10769716,
0.10060508, 0.10060508, 0.10060508, 0.10060508, 0.10004552,
0.10004552, 0.10004552, 0.10004552, 0.1000034 , 0.1000034 ,
0.1000034 , 0.1000034 , 0.10000025, 0.10000025, 0.10000025,
0.10000025, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}], 'minmod_hll': [{'rho': array([1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
0.125, 0.125, 0.125]), 'vx': array([0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
0.75, 0.75, 0.75, 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. , 0. ,
0. , 0. ]), 'P': array([1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999477, 0.99999477,
0.99999477, 0.99999477, 0.99786485, 0.99786485, 0.99786485,
0.99786485, 0.93485786, 0.93485786, 0.93485786, 0.93485786,
0.40121931, 0.40121931, 0.40121931, 0.40121931, 0.15582104,
0.15582104, 0.15582104, 0.15582104, 0.12524217, 0.12524217,
0.12524217, 0.12524217, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75 , 0.75 ,
0.75 , 0.75 , 0.75 , 0.75000582, 0.75000582,
0.75000582, 0.75000582, 0.75222331, 0.75222331, 0.75222331,
0.75222331, 0.81126632, 0.81126632, 0.81126632, 0.81126632,
1.02140027, 1.02140027, 1.02140027, 1.02140027, 0.31355893,
0.31355893, 0.31355893, 0.31355893, 0.0023764 , 0.0023764 ,
0.0023764 , 0.0023764 , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ,
0. , 0. , 0. , 0. , 0. ]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999312, 0.99999312,
0.99999312, 0.99999312, 0.99735755, 0.99735755, 0.99735755,
0.99735755, 0.93228381, 0.93228381, 0.93228381, 0.93228381,
0.39392227, 0.39392227, 0.39392227, 0.39392227, 0.14137148,
0.14137148, 0.14137148, 0.14137148, 0.1003091 , 0.1003091 ,
0.1003091 , 0.1003091 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999593,
0.99999593, 0.99999593, 0.99999593, 0.99976514, 0.99976514,
0.99976514, 0.99976514, 0.99350557, 0.99350557, 0.99350557,
0.99350557, 0.91229178, 0.91229178, 0.91229178, 0.91229178,
0.5439655 , 0.5439655 , 0.5439655 , 0.5439655 , 0.26096859,
0.26096859, 0.26096859, 0.26096859, 0.14372642, 0.14372642,
0.14372642, 0.14372642, 0.12576866, 0.12576866, 0.12576866,
0.12576866, 0.12501238, 0.12501238, 0.12501238, 0.12501238,
0.12500005, 0.12500005, 0.12500005, 0.12500005, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000034e-01, 7.50000034e-01, 7.50000034e-01, 7.50000034e-01,
7.50004712e-01, 7.50004712e-01, 7.50004712e-01, 7.50004712e-01,
7.50264827e-01, 7.50264827e-01, 7.50264827e-01, 7.50264827e-01,
7.56937682e-01, 7.56937682e-01, 7.56937682e-01, 7.56937682e-01,
8.39140555e-01, 8.39140555e-01, 8.39140555e-01, 8.39140555e-01,
1.20185078e+00, 1.20185078e+00, 1.20185078e+00, 1.20185078e+00,
9.09724624e-01, 9.09724624e-01, 9.09724624e-01, 9.09724624e-01,
1.82774882e-01, 1.82774882e-01, 1.82774882e-01, 1.82774882e-01,
7.06720021e-03, 7.06720021e-03, 7.06720021e-03, 7.06720021e-03,
1.07910808e-04, 1.07910808e-04, 1.07910808e-04, 1.07910808e-04,
4.52081665e-07, 4.52081665e-07, 4.52081665e-07, 4.52081665e-07,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999442,
0.99999442, 0.99999442, 0.99999442, 0.99968659, 0.99968659,
0.99968659, 0.99968659, 0.99178136, 0.99178136, 0.99178136,
0.99178136, 0.89903919, 0.89903919, 0.89903919, 0.89903919,
0.51770741, 0.51770741, 0.51770741, 0.51770741, 0.2728004 ,
0.2728004 , 0.2728004 , 0.2728004 , 0.12535917, 0.12535917,
0.12535917, 0.12535917, 0.10093445, 0.10093445, 0.10093445,
0.10093445, 0.10001427, 0.10001427, 0.10001427, 0.10001427,
0.10000006, 0.10000006, 0.10000006, 0.10000006, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999923, 0.99999923, 0.99999923, 0.99999923, 0.99996861,
0.99996861, 0.99996861, 0.99996861, 0.99921031, 0.99921031,
0.99921031, 0.99921031, 0.98796713, 0.98796713, 0.98796713,
0.98796713, 0.89633843, 0.89633843, 0.89633843, 0.89633843,
0.62495402, 0.62495402, 0.62495402, 0.62495402, 0.36745601,
0.36745601, 0.36745601, 0.36745601, 0.20859145, 0.20859145,
0.20859145, 0.20859145, 0.13495091, 0.13495091, 0.13495091,
0.13495091, 0.12554615, 0.12554615, 0.12554615, 0.12554615,
0.12501743, 0.12501743, 0.12501743, 0.12501743, 0.12500034,
0.12500034, 0.12500034, 0.12500034, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
7.50000909e-01, 7.50000909e-01, 7.50000909e-01, 7.50000909e-01,
7.50036531e-01, 7.50036531e-01, 7.50036531e-01, 7.50036531e-01,
7.50902656e-01, 7.50902656e-01, 7.50902656e-01, 7.50902656e-01,
7.63307867e-01, 7.63307867e-01, 7.63307867e-01, 7.63307867e-01,
8.65269104e-01, 8.65269104e-01, 8.65269104e-01, 8.65269104e-01,
1.24045354e+00, 1.24045354e+00, 1.24045354e+00, 1.24045354e+00,
1.21114735e+00, 1.21114735e+00, 1.21114735e+00, 1.21114735e+00,
6.72413161e-01, 6.72413161e-01, 6.72413161e-01, 6.72413161e-01,
9.49710351e-02, 9.49710351e-02, 9.49710351e-02, 9.49710351e-02,
4.89829591e-03, 4.89829591e-03, 4.89829591e-03, 4.89829591e-03,
1.50276620e-04, 1.50276620e-04, 1.50276620e-04, 1.50276620e-04,
2.85787671e-06, 2.85787671e-06, 2.85787671e-06, 2.85787671e-06,
2.86001060e-08, 2.86001060e-08, 2.86001060e-08, 2.86001060e-08,
9.82632001e-11, 9.82632001e-11, 9.82632001e-11, 9.82632001e-11,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99995678,
0.99995678, 0.99995678, 0.99995678, 0.99893195, 0.99893195,
0.99893195, 0.99893195, 0.98431021, 0.98431021, 0.98431021,
0.98431021, 0.87225606, 0.87225606, 0.87225606, 0.87225606,
0.57198082, 0.57198082, 0.57198082, 0.57198082, 0.38708981,
0.38708981, 0.38708981, 0.38708981, 0.2169621 , 0.2169621 ,
0.2169621 , 0.2169621 , 0.11307803, 0.11307803, 0.11307803,
0.11307803, 0.10064828, 0.10064828, 0.10064828, 0.10064828,
0.10001988, 0.10001988, 0.10001988, 0.10001988, 0.10000038,
0.10000038, 0.10000038, 0.10000038, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999553, 0.99999553, 0.99999553, 0.99999553, 0.99989298,
0.99989298, 0.99989298, 0.99989298, 0.99825442, 0.99825442,
0.99825442, 0.99825442, 0.98154523, 0.98154523, 0.98154523,
0.98154523, 0.88346323, 0.88346323, 0.88346323, 0.88346323,
0.66814286, 0.66814286, 0.66814286, 0.66814286, 0.450449 ,
0.450449 , 0.450449 , 0.450449 , 0.30003012, 0.30003012,
0.30003012, 0.30003012, 0.17291515, 0.17291515, 0.17291515,
0.17291515, 0.12999501, 0.12999501, 0.12999501, 0.12999501,
0.12530317, 0.12530317, 0.12530317, 0.12530317, 0.12501302,
0.12501302, 0.12501302, 0.12501302, 0.1250004 , 0.1250004 ,
0.1250004 , 0.1250004 , 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
7.50005260e-01, 7.50005260e-01, 7.50005260e-01, 7.50005260e-01,
7.50125177e-01, 7.50125177e-01, 7.50125177e-01, 7.50125177e-01,
7.52016532e-01, 7.52016532e-01, 7.52016532e-01, 7.52016532e-01,
7.70955544e-01, 7.70955544e-01, 7.70955544e-01, 7.70955544e-01,
8.87963066e-01, 8.87963066e-01, 8.87963066e-01, 8.87963066e-01,
1.23600978e+00, 1.23600978e+00, 1.23600978e+00, 1.23600978e+00,
1.32985101e+00, 1.32985101e+00, 1.32985101e+00, 1.32985101e+00,
1.08018999e+00, 1.08018999e+00, 1.08018999e+00, 1.08018999e+00,
4.31751162e-01, 4.31751162e-01, 4.31751162e-01, 4.31751162e-01,
4.67980493e-02, 4.67980493e-02, 4.67980493e-02, 4.67980493e-02,
2.66505147e-03, 2.66505147e-03, 2.66505147e-03, 2.66505147e-03,
1.11496365e-04, 1.11496365e-04, 1.11496365e-04, 1.11496365e-04,
3.41260935e-06, 3.41260935e-06, 3.41260935e-06, 3.41260935e-06,
7.27672658e-08, 7.27672658e-08, 7.27672658e-08, 7.27672658e-08,
1.00397593e-09, 1.00397593e-09, 1.00397593e-09, 1.00397593e-09,
7.70528135e-12, 7.70528135e-12, 7.70528135e-12, 7.70528135e-12,
2.25884809e-14, 2.25884809e-14, 2.25884809e-14, 2.25884809e-14,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999982, 0.99999982, 0.99999982, 0.99999982,
0.99999378, 0.99999378, 0.99999378, 0.99999378, 0.99985189,
0.99985189, 0.99985189, 0.99985189, 0.99761523, 0.99761523,
0.99761523, 0.99761523, 0.97543178, 0.97543178, 0.97543178,
0.97543178, 0.85010187, 0.85010187, 0.85010187, 0.85010187,
0.59115606, 0.59115606, 0.59115606, 0.59115606, 0.45201122,
0.45201122, 0.45201122, 0.45201122, 0.33798169, 0.33798169,
0.33798169, 0.33798169, 0.16975198, 0.16975198, 0.16975198,
0.16975198, 0.10631224, 0.10631224, 0.10631224, 0.10631224,
0.10035268, 0.10035268, 0.10035268, 0.10035268, 0.10001475,
0.10001475, 0.10001475, 0.10001475, 0.10000045, 0.10000045,
0.10000045, 0.10000045, 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999934, 0.99999934, 0.99999934, 0.99999934,
0.99998473, 0.99998473, 0.99998473, 0.99998473, 0.99973934,
0.99973934, 0.99973934, 0.99973934, 0.99684694, 0.99684694,
0.99684694, 0.99684694, 0.97449508, 0.97449508, 0.97449508,
0.97449508, 0.87259818, 0.87259818, 0.87259818, 0.87259818,
0.6864975 , 0.6864975 , 0.6864975 , 0.6864975 , 0.51289402,
0.51289402, 0.51289402, 0.51289402, 0.38247596, 0.38247596,
0.38247596, 0.38247596, 0.24627862, 0.24627862, 0.24627862,
0.24627862, 0.1506058 , 0.1506058 , 0.1506058 , 0.1506058 ,
0.12742094, 0.12742094, 0.12742094, 0.12742094, 0.12515547,
0.12515547, 0.12515547, 0.12515547, 0.12500778, 0.12500778,
0.12500778, 0.12500778, 0.12500031, 0.12500031, 0.12500031,
0.12500031, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
7.50000776e-01, 7.50000776e-01, 7.50000776e-01, 7.50000776e-01,
7.50017997e-01, 7.50017997e-01, 7.50017997e-01, 7.50017997e-01,
7.50305930e-01, 7.50305930e-01, 7.50305930e-01, 7.50305930e-01,
7.53669775e-01, 7.53669775e-01, 7.53669775e-01, 7.53669775e-01,
7.79517872e-01, 7.79517872e-01, 7.79517872e-01, 7.79517872e-01,
9.06676406e-01, 9.06676406e-01, 9.06676406e-01, 9.06676406e-01,
1.21521648e+00, 1.21521648e+00, 1.21521648e+00, 1.21521648e+00,
1.36901918e+00, 1.36901918e+00, 1.36901918e+00, 1.36901918e+00,
1.27921096e+00, 1.27921096e+00, 1.27921096e+00, 1.27921096e+00,
9.03289139e-01, 9.03289139e-01, 9.03289139e-01, 9.03289139e-01,
2.43356441e-01, 2.43356441e-01, 2.43356441e-01, 2.43356441e-01,
2.21897389e-02, 2.21897389e-02, 2.21897389e-02, 2.21897389e-02,
1.34917711e-03, 1.34917711e-03, 1.34917711e-03, 1.34917711e-03,
6.63347975e-05, 6.63347975e-05, 6.63347975e-05, 6.63347975e-05,
2.61791335e-06, 2.61791335e-06, 2.61791335e-06, 2.61791335e-06,
8.01915979e-08, 8.01915979e-08, 8.01915979e-08, 8.01915979e-08,
1.84159266e-09, 1.84159266e-09, 1.84159266e-09, 1.84159266e-09,
3.02840362e-11, 3.02840362e-11, 3.02840362e-11, 3.02840362e-11,
3.31059514e-13, 3.31059514e-13, 3.31059514e-13, 3.31059514e-13,
2.11159390e-15, 2.11159390e-15, 2.11159390e-15, 2.11159390e-15,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999908, 0.99999908, 0.99999908, 0.99999908,
0.99997871, 0.99997871, 0.99997871, 0.99997871, 0.99963804,
0.99963804, 0.99963804, 0.99963804, 0.99566401, 0.99566401,
0.99566401, 0.99566401, 0.96560299, 0.96560299, 0.96560299,
0.96560299, 0.8320416 , 0.8320416 , 0.8320416 , 0.8320416 ,
0.59163041, 0.59163041, 0.59163041, 0.59163041, 0.48324232,
0.48324232, 0.48324232, 0.48324232, 0.4189936 , 0.4189936 ,
0.4189936 , 0.4189936 , 0.28887293, 0.28887293, 0.28887293,
0.28887293, 0.13630773, 0.13630773, 0.13630773, 0.13630773,
0.1029605 , 0.1029605 , 0.1029605 , 0.1029605 , 0.10017852,
0.10017852, 0.10017852, 0.10017852, 0.10000878, 0.10000878,
0.10000878, 0.10000878, 0.10000035, 0.10000035, 0.10000035,
0.10000035, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999776, 0.99999776, 0.99999776, 0.99999776,
0.99996053, 0.99996053, 0.99996053, 0.99996053, 0.99947569,
0.99947569, 0.99947569, 0.99947569, 0.99496288, 0.99496288,
0.99496288, 0.99496288, 0.96703059, 0.96703059, 0.96703059,
0.96703059, 0.86276573, 0.86276573, 0.86276573, 0.86276573,
0.69336478, 0.69336478, 0.69336478, 0.69336478, 0.55587482,
0.55587482, 0.55587482, 0.55587482, 0.44582134, 0.44582134,
0.44582134, 0.44582134, 0.32572207, 0.32572207, 0.32572207,
0.32572207, 0.20563197, 0.20563197, 0.20563197, 0.20563197,
0.13815838, 0.13815838, 0.13815838, 0.13815838, 0.12615318,
0.12615318, 0.12615318, 0.12615318, 0.12507598, 0.12507598,
0.12507598, 0.12507598, 0.1250042 , 0.1250042 , 0.1250042 ,
0.1250042 , 0.12500019, 0.12500019, 0.12500019, 0.12500019,
0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
7.50000116e-01, 7.50000116e-01, 7.50000116e-01, 7.50000116e-01,
7.50002645e-01, 7.50002645e-01, 7.50002645e-01, 7.50002645e-01,
7.50046576e-01, 7.50046576e-01, 7.50046576e-01, 7.50046576e-01,
7.50616761e-01, 7.50616761e-01, 7.50616761e-01, 7.50616761e-01,
7.55893760e-01, 7.55893760e-01, 7.55893760e-01, 7.55893760e-01,
7.88691015e-01, 7.88691015e-01, 7.88691015e-01, 7.88691015e-01,
9.22508524e-01, 9.22508524e-01, 9.22508524e-01, 9.22508524e-01,
1.19424995e+00, 1.19424995e+00, 1.19424995e+00, 1.19424995e+00,
1.37115296e+00, 1.37115296e+00, 1.37115296e+00, 1.37115296e+00,
1.35656186e+00, 1.35656186e+00, 1.35656186e+00, 1.35656186e+00,
1.19624538e+00, 1.19624538e+00, 1.19624538e+00, 1.19624538e+00,
6.97637293e-01, 6.97637293e-01, 6.97637293e-01, 6.97637293e-01,
1.27100170e-01, 1.27100170e-01, 1.27100170e-01, 1.27100170e-01,
1.03412299e-02, 1.03412299e-02, 1.03412299e-02, 1.03412299e-02,
6.53644299e-04, 6.53644299e-04, 6.53644299e-04, 6.53644299e-04,
3.56971103e-05, 3.56971103e-05, 3.56971103e-05, 3.56971103e-05,
1.64522459e-06, 1.64522459e-06, 1.64522459e-06, 1.64522459e-06,
6.25358486e-08, 6.25358486e-08, 6.25358486e-08, 6.25358486e-08,
1.91748504e-09, 1.91748504e-09, 1.91748504e-09, 1.91748504e-09,
4.62606839e-11, 4.62606839e-11, 4.62606839e-11, 4.62606839e-11,
8.51285413e-13, 8.51285413e-13, 8.51285413e-13, 8.51285413e-13,
1.14285693e-14, 1.14285693e-14, 1.14285693e-14, 1.14285693e-14,
9.19950648e-17, 9.19950648e-17, 9.19950648e-17, 9.19950648e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999687, 0.99999687, 0.99999687, 0.99999687,
0.99994489, 0.99994489, 0.99994489, 0.99994489, 0.99927039,
0.99927039, 0.99927039, 0.99927039, 0.99304531, 0.99304531,
0.99304531, 0.99304531, 0.95519679, 0.95519679, 0.95519679,
0.95519679, 0.8168341 , 0.8168341 , 0.8168341 , 0.8168341 ,
0.58819152, 0.58819152, 0.58819152, 0.58819152, 0.49438551,
0.49438551, 0.49438551, 0.49438551, 0.45793166, 0.45793166,
0.45793166, 0.45793166, 0.39260514, 0.39260514, 0.39260514,
0.39260514, 0.23309146, 0.23309146, 0.23309146, 0.23309146,
0.11798708, 0.11798708, 0.11798708, 0.11798708, 0.1013727 ,
0.1013727 , 0.1013727 , 0.1013727 , 0.10008648, 0.10008648,
0.10008648, 0.10008648, 0.10000472, 0.10000472, 0.10000472,
0.10000472, 0.10000022, 0.10000022, 0.10000022, 0.10000022,
0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999967, 0.99999967, 0.99999967,
0.99999967, 0.99999397, 0.99999397, 0.99999397, 0.99999397,
0.99991437, 0.99991437, 0.99991437, 0.99991437, 0.99906962,
0.99906962, 0.99906962, 0.99906962, 0.992598 , 0.992598 ,
0.992598 , 0.992598 , 0.95931079, 0.95931079, 0.95931079,
0.95931079, 0.85365694, 0.85365694, 0.85365694, 0.85365694,
0.69548058, 0.69548058, 0.69548058, 0.69548058, 0.5842581 ,
0.5842581 , 0.5842581 , 0.5842581 , 0.49197492, 0.49197492,
0.49197492, 0.49197492, 0.39210102, 0.39210102, 0.39210102,
0.39210102, 0.27877468, 0.27877468, 0.27877468, 0.27877468,
0.17568186, 0.17568186, 0.17568186, 0.17568186, 0.1316077 ,
0.1316077 , 0.1316077 , 0.1316077 , 0.12553921, 0.12553921,
0.12553921, 0.12553921, 0.12503633, 0.12503633, 0.12503633,
0.12503633, 0.12500214, 0.12500214, 0.12500214, 0.12500214,
0.12500011, 0.12500011, 0.12500011, 0.12500011, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000018e-01, 7.50000018e-01, 7.50000018e-01, 7.50000018e-01,
7.50000395e-01, 7.50000395e-01, 7.50000395e-01, 7.50000395e-01,
7.50007125e-01, 7.50007125e-01, 7.50007125e-01, 7.50007125e-01,
7.50101120e-01, 7.50101120e-01, 7.50101120e-01, 7.50101120e-01,
7.51096094e-01, 7.51096094e-01, 7.51096094e-01, 7.51096094e-01,
7.58695376e-01, 7.58695376e-01, 7.58695376e-01, 7.58695376e-01,
7.98253123e-01, 7.98253123e-01, 7.98253123e-01, 7.98253123e-01,
9.36217768e-01, 9.36217768e-01, 9.36217768e-01, 9.36217768e-01,
1.17874930e+00, 1.17874930e+00, 1.17874930e+00, 1.17874930e+00,
1.35926058e+00, 1.35926058e+00, 1.35926058e+00, 1.35926058e+00,
1.37992227e+00, 1.37992227e+00, 1.37992227e+00, 1.37992227e+00,
1.31852830e+00, 1.31852830e+00, 1.31852830e+00, 1.31852830e+00,
1.09147080e+00, 1.09147080e+00, 1.09147080e+00, 1.09147080e+00,
4.80823248e-01, 4.80823248e-01, 4.80823248e-01, 4.80823248e-01,
6.29020815e-02, 6.29020815e-02, 6.29020815e-02, 6.29020815e-02,
4.74941638e-03, 4.74941638e-03, 4.74941638e-03, 4.74941638e-03,
3.10811782e-04, 3.10811782e-04, 3.10811782e-04, 3.10811782e-04,
1.81866640e-05, 1.81866640e-05, 1.81866640e-05, 1.81866640e-05,
9.31308580e-07, 9.31308580e-07, 9.31308580e-07, 9.31308580e-07,
4.09103671e-08, 4.09103671e-08, 4.09103671e-08, 4.09103671e-08,
1.51483229e-09, 1.51483229e-09, 1.51483229e-09, 1.51483229e-09,
4.65132031e-11, 4.65132031e-11, 4.65132031e-11, 4.65132031e-11,
1.16294442e-12, 1.16294442e-12, 1.16294442e-12, 1.16294442e-12,
2.31530746e-14, 2.31530746e-14, 2.31530746e-14, 2.31530746e-14,
3.45133688e-16, 3.45133688e-16, 3.45133688e-16, 3.45133688e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999953, 0.99999953, 0.99999953,
0.99999953, 0.99999157, 0.99999157, 0.99999157, 0.99999157,
0.99988036, 0.99988036, 0.99988036, 0.99988036, 0.99870367,
0.99870367, 0.99870367, 0.99870367, 0.98975672, 0.98975672,
0.98975672, 0.98975672, 0.94447806, 0.94447806, 0.94447806,
0.94447806, 0.80372375, 0.80372375, 0.80372375, 0.80372375,
0.58659611, 0.58659611, 0.58659611, 0.58659611, 0.49630691,
0.49630691, 0.49630691, 0.49630691, 0.47256565, 0.47256565,
0.47256565, 0.47256565, 0.44649608, 0.44649608, 0.44649608,
0.44649608, 0.35475085, 0.35475085, 0.35475085, 0.35475085,
0.18206373, 0.18206373, 0.18206373, 0.18206373, 0.10858619,
0.10858619, 0.10858619, 0.10858619, 0.10062915, 0.10062915,
0.10062915, 0.10062915, 0.10004112, 0.10004112, 0.10004112,
0.10004112, 0.10000241, 0.10000241, 0.10000241, 0.10000241,
0.10000012, 0.10000012, 0.10000012, 0.10000012, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999907, 0.99999907, 0.99999907,
0.99999907, 0.99998617, 0.99998617, 0.99998617, 0.99998617,
0.99983554, 0.99983554, 0.99983554, 0.99983554, 0.9984902 ,
0.9984902 , 0.9984902 , 0.9984902 , 0.9897648 , 0.9897648 ,
0.9897648 , 0.9897648 , 0.95146278, 0.95146278, 0.95146278,
0.95146278, 0.84522655, 0.84522655, 0.84522655, 0.84522655,
0.69592792, 0.69592792, 0.69592792, 0.69592792, 0.60160526,
0.60160526, 0.60160526, 0.60160526, 0.52681117, 0.52681117,
0.52681117, 0.52681117, 0.44280683, 0.44280683, 0.44280683,
0.44280683, 0.3438762 , 0.3438762 , 0.3438762 , 0.3438762 ,
0.24139758, 0.24139758, 0.24139758, 0.24139758, 0.15433653,
0.15433653, 0.15433653, 0.15433653, 0.12820419, 0.12820419,
0.12820419, 0.12820419, 0.12525101, 0.12525101, 0.12525101,
0.12525101, 0.12501713, 0.12501713, 0.12501713, 0.12501713,
0.12500106, 0.12500106, 0.12500106, 0.12500106, 0.12500006,
0.12500006, 0.12500006, 0.12500006, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000060e-01, 7.50000060e-01, 7.50000060e-01, 7.50000060e-01,
7.50001095e-01, 7.50001095e-01, 7.50001095e-01, 7.50001095e-01,
7.50016352e-01, 7.50016352e-01, 7.50016352e-01, 7.50016352e-01,
7.50194298e-01, 7.50194298e-01, 7.50194298e-01, 7.50194298e-01,
7.51780598e-01, 7.51780598e-01, 7.51780598e-01, 7.51780598e-01,
7.62062621e-01, 7.62062621e-01, 7.62062621e-01, 7.62062621e-01,
8.08036385e-01, 8.08036385e-01, 8.08036385e-01, 8.08036385e-01,
9.48280192e-01, 9.48280192e-01, 9.48280192e-01, 9.48280192e-01,
1.16919832e+00, 1.16919832e+00, 1.16919832e+00, 1.16919832e+00,
1.34151992e+00, 1.34151992e+00, 1.34151992e+00, 1.34151992e+00,
1.38408905e+00, 1.38408905e+00, 1.38408905e+00, 1.38408905e+00,
1.36212724e+00, 1.36212724e+00, 1.36212724e+00, 1.36212724e+00,
1.27575638e+00, 1.27575638e+00, 1.27575638e+00, 1.27575638e+00,
9.46706959e-01, 9.46706959e-01, 9.46706959e-01, 9.46706959e-01,
2.86961496e-01, 2.86961496e-01, 2.86961496e-01, 2.86961496e-01,
2.97471236e-02, 2.97471236e-02, 2.97471236e-02, 2.97471236e-02,
2.18276389e-03, 2.18276389e-03, 2.18276389e-03, 2.18276389e-03,
1.45981809e-04, 1.45981809e-04, 1.45981809e-04, 1.45981809e-04,
8.97326097e-06, 8.97326097e-06, 8.97326097e-06, 8.97326097e-06,
4.95542253e-07, 4.95542253e-07, 4.95542253e-07, 4.95542253e-07,
2.41369077e-08, 2.41369077e-08, 2.41369077e-08, 2.41369077e-08,
1.02173681e-09, 1.02173681e-09, 1.02173681e-09, 1.02173681e-09,
3.71041963e-11, 3.71041963e-11, 3.71041963e-11, 3.71041963e-11,
1.14134185e-12, 1.14134185e-12, 1.14134185e-12, 1.14134185e-12,
2.93180081e-14, 2.93180081e-14, 2.93180081e-14, 2.93180081e-14,
5.89861085e-16, 5.89861085e-16, 5.89861085e-16, 5.89861085e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999993, 0.99999993,
0.99999993, 0.99999993, 0.9999987 , 0.9999987 , 0.9999987 ,
0.9999987 , 0.99998065, 0.99998065, 0.99998065, 0.99998065,
0.99977012, 0.99977012, 0.99977012, 0.99977012, 0.9978949 ,
0.9978949 , 0.9978949 , 0.9978949 , 0.98581938, 0.98581938,
0.98581938, 0.98581938, 0.93364034, 0.93364034, 0.93364034,
0.93364034, 0.79223561, 0.79223561, 0.79223561, 0.79223561,
0.58787464, 0.58787464, 0.58787464, 0.58787464, 0.49421357,
0.49421357, 0.49421357, 0.49421357, 0.47736962, 0.47736962,
0.47736962, 0.47736962, 0.46789435, 0.46789435, 0.46789435,
0.46789435, 0.42797779, 0.42797779, 0.42797779, 0.42797779,
0.30606771, 0.30606771, 0.30606771, 0.30606771, 0.14410239,
0.14410239, 0.14410239, 0.14410239, 0.10398792, 0.10398792,
0.10398792, 0.10398792, 0.10028892, 0.10028892, 0.10028892,
0.10028892, 0.10001931, 0.10001931, 0.10001931, 0.10001931,
0.10000119, 0.10000119, 0.10000119, 0.10000119, 0.10000007,
0.10000007, 0.10000007, 0.10000007, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999986, 0.99999986,
0.99999986, 0.99999986, 0.99999778, 0.99999778, 0.99999778,
0.99999778, 0.99997175, 0.99997175, 0.99997175, 0.99997175,
0.99971141, 0.99971141, 0.99971141, 0.99971141, 0.99770946,
0.99770946, 0.99770946, 0.99770946, 0.98648851, 0.98648851,
0.98648851, 0.98648851, 0.94358959, 0.94358959, 0.94358959,
0.94358959, 0.83747957, 0.83747957, 0.83747957, 0.83747957,
0.69607636, 0.69607636, 0.69607636, 0.69607636, 0.61195392,
0.61195392, 0.61195392, 0.61195392, 0.5520745 , 0.5520745 ,
0.5520745 , 0.5520745 , 0.48227586, 0.48227586, 0.48227586,
0.48227586, 0.39628276, 0.39628276, 0.39628276, 0.39628276,
0.30461516, 0.30461516, 0.30461516, 0.30461516, 0.20942901,
0.20942901, 0.20942901, 0.20942901, 0.14069158, 0.14069158,
0.14069158, 0.14069158, 0.12652847, 0.12652847, 0.12652847,
0.12652847, 0.1251159 , 0.1251159 , 0.1251159 , 0.1251159 ,
0.12500801, 0.12500801, 0.12500801, 0.12500801, 0.12500051,
0.12500051, 0.12500051, 0.12500051, 0.12500003, 0.12500003,
0.12500003, 0.12500003, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000169e-01, 7.50000169e-01, 7.50000169e-01, 7.50000169e-01,
7.50002624e-01, 7.50002624e-01, 7.50002624e-01, 7.50002624e-01,
7.50033404e-01, 7.50033404e-01, 7.50033404e-01, 7.50033404e-01,
7.50341048e-01, 7.50341048e-01, 7.50341048e-01, 7.50341048e-01,
7.52703614e-01, 7.52703614e-01, 7.52703614e-01, 7.52703614e-01,
7.65969457e-01, 7.65969457e-01, 7.65969457e-01, 7.65969457e-01,
8.17910409e-01, 8.17910409e-01, 8.17910409e-01, 8.17910409e-01,
9.59019483e-01, 9.59019483e-01, 9.59019483e-01, 9.59019483e-01,
1.16435988e+00, 1.16435988e+00, 1.16435988e+00, 1.16435988e+00,
1.32431238e+00, 1.32431238e+00, 1.32431238e+00, 1.32431238e+00,
1.37819363e+00, 1.37819363e+00, 1.37819363e+00, 1.37819363e+00,
1.37548447e+00, 1.37548447e+00, 1.37548447e+00, 1.37548447e+00,
1.34495171e+00, 1.34495171e+00, 1.34495171e+00, 1.34495171e+00,
1.21521933e+00, 1.21521933e+00, 1.21521933e+00, 1.21521933e+00,
7.56439760e-01, 7.56439760e-01, 7.56439760e-01, 7.56439760e-01,
1.54532788e-01, 1.54532788e-01, 1.54532788e-01, 1.54532788e-01,
1.38332523e-02, 1.38332523e-02, 1.38332523e-02, 1.38332523e-02,
9.98607774e-04, 9.98607774e-04, 9.98607774e-04, 9.98607774e-04,
6.81041170e-05, 6.81041170e-05, 6.81041170e-05, 6.81041170e-05,
4.33839800e-06, 4.33839800e-06, 4.33839800e-06, 4.33839800e-06,
2.53281003e-07, 2.53281003e-07, 2.53281003e-07, 2.53281003e-07,
1.33255506e-08, 1.33255506e-08, 1.33255506e-08, 1.33255506e-08,
6.23193675e-10, 6.23193675e-10, 6.23193675e-10, 6.23193675e-10,
2.56186446e-11, 2.56186446e-11, 2.56186446e-11, 2.56186446e-11,
9.16383815e-13, 9.16383815e-13, 9.16383815e-13, 9.16383815e-13,
2.82273423e-14, 2.82273423e-14, 2.82273423e-14, 2.82273423e-14,
7.11936272e-16, 7.11936272e-16, 7.11936272e-16, 7.11936272e-16,
9.95777976e-18, 9.95777976e-18, 9.95777976e-18, 9.95777976e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.9999998 , 0.9999998 ,
0.9999998 , 0.9999998 , 0.9999969 , 0.9999969 , 0.9999969 ,
0.9999969 , 0.99996048, 0.99996048, 0.99996048, 0.99996048,
0.99959652, 0.99959652, 0.99959652, 0.99959652, 0.99680533,
0.99680533, 0.99680533, 0.99680533, 0.98127177, 0.98127177,
0.98127177, 0.98127177, 0.92282751, 0.92282751, 0.92282751,
0.92282751, 0.78204719, 0.78204719, 0.78204719, 0.78204719,
0.59144542, 0.59144542, 0.59144542, 0.59144542, 0.49225455,
0.49225455, 0.49225455, 0.49225455, 0.47625652, 0.47625652,
0.47625652, 0.47625652, 0.47479773, 0.47479773, 0.47479773,
0.47479773, 0.46075469, 0.46075469, 0.46075469, 0.46075469,
0.4019023 , 0.4019023 , 0.4019023 , 0.4019023 , 0.25005069,
0.25005069, 0.25005069, 0.25005069, 0.1222868 , 0.1222868 ,
0.1222868 , 0.1222868 , 0.10183971, 0.10183971, 0.10183971,
0.10183971, 0.10013213, 0.10013213, 0.10013213, 0.10013213,
0.10000901, 0.10000901, 0.10000901, 0.10000901, 0.10000057,
0.10000057, 0.10000057, 0.10000057, 0.10000003, 0.10000003,
0.10000003, 0.10000003, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999965, 0.99999965,
0.99999965, 0.99999965, 0.99999524, 0.99999524, 0.99999524,
0.99999524, 0.99994721, 0.99994721, 0.99994721, 0.99994721,
0.99952776, 0.99952776, 0.99952776, 0.99952776, 0.99670338,
0.99670338, 0.99670338, 0.99670338, 0.98280363, 0.98280363,
0.98280363, 0.98280363, 0.93577386, 0.93577386, 0.93577386,
0.93577386, 0.83041599, 0.83041599, 0.83041599, 0.83041599,
0.69625631, 0.69625631, 0.69625631, 0.69625631, 0.61829217,
0.61829217, 0.61829217, 0.61829217, 0.5699253 , 0.5699253 ,
0.5699253 , 0.5699253 , 0.51291693, 0.51291693, 0.51291693,
0.51291693, 0.43877311, 0.43877311, 0.43877311, 0.43877311,
0.35520766, 0.35520766, 0.35520766, 0.35520766, 0.27305597,
0.27305597, 0.27305597, 0.27305597, 0.18148452, 0.18148452,
0.18148452, 0.18148452, 0.13315019, 0.13315019, 0.13315019,
0.13315019, 0.12571382, 0.12571382, 0.12571382, 0.12571382,
0.12505333, 0.12505333, 0.12505333, 0.12505333, 0.12500372,
0.12500372, 0.12500372, 0.12500372, 0.12500024, 0.12500024,
0.12500024, 0.12500024, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
7.50000419e-01, 7.50000419e-01, 7.50000419e-01, 7.50000419e-01,
7.50005630e-01, 7.50005630e-01, 7.50005630e-01, 7.50005630e-01,
7.50062433e-01, 7.50062433e-01, 7.50062433e-01, 7.50062433e-01,
7.50558196e-01, 7.50558196e-01, 7.50558196e-01, 7.50558196e-01,
7.53894015e-01, 7.53894015e-01, 7.53894015e-01, 7.53894015e-01,
7.70379540e-01, 7.70379540e-01, 7.70379540e-01, 7.70379540e-01,
8.27772252e-01, 8.27772252e-01, 8.27772252e-01, 8.27772252e-01,
9.68662085e-01, 9.68662085e-01, 9.68662085e-01, 9.68662085e-01,
1.16220491e+00, 1.16220491e+00, 1.16220491e+00, 1.16220491e+00,
1.31086380e+00, 1.31086380e+00, 1.31086380e+00, 1.31086380e+00,
1.36872585e+00, 1.36872585e+00, 1.36872585e+00, 1.36872585e+00,
1.37564389e+00, 1.37564389e+00, 1.37564389e+00, 1.37564389e+00,
1.36763431e+00, 1.36763431e+00, 1.36763431e+00, 1.36763431e+00,
1.32344547e+00, 1.32344547e+00, 1.32344547e+00, 1.32344547e+00,
1.12324529e+00, 1.12324529e+00, 1.12324529e+00, 1.12324529e+00,
5.43452950e-01, 5.43452950e-01, 5.43452950e-01, 5.43452950e-01,
7.89030941e-02, 7.89030941e-02, 7.89030941e-02, 7.89030941e-02,
6.32477098e-03, 6.32477098e-03, 6.32477098e-03, 6.32477098e-03,
4.56774221e-04, 4.56774221e-04, 4.56774221e-04, 4.56774221e-04,
3.16014322e-05, 3.16014322e-05, 3.16014322e-05, 3.16014322e-05,
2.06840337e-06, 2.06840337e-06, 2.06840337e-06, 2.06840337e-06,
1.25987808e-07, 1.25987808e-07, 1.25987808e-07, 1.25987808e-07,
7.03125054e-09, 7.03125054e-09, 7.03125054e-09, 7.03125054e-09,
3.55048102e-10, 3.55048102e-10, 3.55048102e-10, 3.55048102e-10,
1.60552001e-11, 1.60552001e-11, 1.60552001e-11, 1.60552001e-11,
6.44472443e-13, 6.44472443e-13, 6.44472443e-13, 6.44472443e-13,
2.27342322e-14, 2.27342322e-14, 2.27342322e-14, 2.27342322e-14,
6.57996181e-16, 6.57996181e-16, 6.57996181e-16, 6.57996181e-16,
2.02110955e-17, 2.02110955e-17, 2.02110955e-17, 2.02110955e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.9999995 , 0.9999995 ,
0.9999995 , 0.9999995 , 0.99999334, 0.99999334, 0.99999334,
0.99999334, 0.99992613, 0.99992613, 0.99992613, 0.99992613,
0.9993397 , 0.9993397 , 0.9993397 , 0.9993397 , 0.99540189,
0.99540189, 0.99540189, 0.99540189, 0.97616471, 0.97616471,
0.97616471, 0.97616471, 0.91214742, 0.91214742, 0.91214742,
0.91214742, 0.77293438, 0.77293438, 0.77293438, 0.77293438,
0.59602991, 0.59602991, 0.59602991, 0.59602991, 0.49258015,
0.49258015, 0.49258015, 0.49258015, 0.47304087, 0.47304087,
0.47304087, 0.47304087, 0.47487876, 0.47487876, 0.47487876,
0.47487876, 0.47229223, 0.47229223, 0.47229223, 0.47229223,
0.44924829, 0.44924829, 0.44924829, 0.44924829, 0.3670158 ,
0.3670158 , 0.3670158 , 0.3670158 , 0.1964563 , 0.1964563 ,
0.1964563 , 0.1964563 , 0.11088441, 0.11088441, 0.11088441,
0.11088441, 0.10083843, 0.10083843, 0.10083843, 0.10083843,
0.10006043, 0.10006043, 0.10006043, 0.10006043, 0.10000418,
0.10000418, 0.10000418, 0.10000418, 0.10000027, 0.10000027,
0.10000027, 0.10000027, 0.10000002, 0.10000002, 0.10000002,
0.10000002, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999921, 0.99999921,
0.99999921, 0.99999921, 0.99999063, 0.99999063, 0.99999063,
0.99999063, 0.99990804, 0.99990804, 0.99990804, 0.99990804,
0.99926917, 0.99926917, 0.99926917, 0.99926917, 0.99545263,
0.99545263, 0.99545263, 0.99545263, 0.97875109, 0.97875109,
0.97875109, 0.97875109, 0.92808061, 0.92808061, 0.92808061,
0.92808061, 0.82401271, 0.82401271, 0.82401271, 0.82401271,
0.69646404, 0.69646404, 0.69646404, 0.69646404, 0.62232848,
0.62232848, 0.62232848, 0.62232848, 0.58232539, 0.58232539,
0.58232539, 0.58232539, 0.53664687, 0.53664687, 0.53664687,
0.53664687, 0.47382656, 0.47382656, 0.47382656, 0.47382656,
0.3966429 , 0.3966429 , 0.3966429 , 0.3966429 , 0.32215049,
0.32215049, 0.32215049, 0.32215049, 0.24536837, 0.24536837,
0.24536837, 0.24536837, 0.15939671, 0.15939671, 0.15939671,
0.15939671, 0.1290282 , 0.1290282 , 0.1290282 , 0.1290282 ,
0.12533162, 0.12533162, 0.12533162, 0.12533162, 0.12502449,
0.12502449, 0.12502449, 0.12502449, 0.12500172, 0.12500172,
0.12500172, 0.12500172, 0.12500012, 0.12500012, 0.12500012,
0.12500012, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
7.50000067e-01, 7.50000067e-01, 7.50000067e-01, 7.50000067e-01,
7.50000937e-01, 7.50000937e-01, 7.50000937e-01, 7.50000937e-01,
7.50011082e-01, 7.50011082e-01, 7.50011082e-01, 7.50011082e-01,
7.50108766e-01, 7.50108766e-01, 7.50108766e-01, 7.50108766e-01,
7.50863989e-01, 7.50863989e-01, 7.50863989e-01, 7.50863989e-01,
7.55375416e-01, 7.55375416e-01, 7.55375416e-01, 7.55375416e-01,
7.75249150e-01, 7.75249150e-01, 7.75249150e-01, 7.75249150e-01,
8.37539996e-01, 8.37539996e-01, 8.37539996e-01, 8.37539996e-01,
9.77371489e-01, 9.77371489e-01, 9.77371489e-01, 9.77371489e-01,
1.16096785e+00, 1.16096785e+00, 1.16096785e+00, 1.16096785e+00,
1.30163748e+00, 1.30163748e+00, 1.30163748e+00, 1.30163748e+00,
1.35906515e+00, 1.35906515e+00, 1.35906515e+00, 1.35906515e+00,
1.37165137e+00, 1.37165137e+00, 1.37165137e+00, 1.37165137e+00,
1.37159981e+00, 1.37159981e+00, 1.37159981e+00, 1.37159981e+00,
1.36020817e+00, 1.36020817e+00, 1.36020817e+00, 1.36020817e+00,
1.28954477e+00, 1.28954477e+00, 1.28954477e+00, 1.28954477e+00,
9.92965165e-01, 9.92965165e-01, 9.92965165e-01, 9.92965165e-01,
3.41054294e-01, 3.41054294e-01, 3.41054294e-01, 3.41054294e-01,
3.78450976e-02, 3.78450976e-02, 3.78450976e-02, 3.78450976e-02,
2.89520706e-03, 2.89520706e-03, 2.89520706e-03, 2.89520706e-03,
2.08927779e-04, 2.08927779e-04, 2.08927779e-04, 2.08927779e-04,
1.46114029e-05, 1.46114029e-05, 1.46114029e-05, 1.46114029e-05,
9.77146281e-07, 9.77146281e-07, 9.77146281e-07, 9.77146281e-07,
6.15180946e-08, 6.15180946e-08, 6.15180946e-08, 6.15180946e-08,
3.59623288e-09, 3.59623288e-09, 3.59623288e-09, 3.59623288e-09,
1.92933425e-10, 1.92933425e-10, 1.92933425e-10, 1.92933425e-10,
9.40773578e-12, 9.40773578e-12, 9.40773578e-12, 9.40773578e-12,
4.13570502e-13, 4.13570502e-13, 4.13570502e-13, 4.13570502e-13,
1.62288270e-14, 1.62288270e-14, 1.62288270e-14, 1.62288270e-14,
5.61211316e-16, 5.61211316e-16, 5.61211316e-16, 5.61211316e-16,
1.04414501e-17, 1.04414501e-17, 1.04414501e-17, 1.04414501e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999992,
0.99999992, 0.99999992, 0.99999992, 0.99999889, 0.99999889,
0.99999889, 0.99999889, 0.99998689, 0.99998689, 0.99998689,
0.99998689, 0.99987131, 0.99987131, 0.99987131, 0.99987131,
0.99897815, 0.99897815, 0.99897815, 0.99897815, 0.99365816,
0.99365816, 0.99365816, 0.99365816, 0.9705574 , 0.9705574 ,
0.9705574 , 0.9705574 , 0.90168105, 0.90168105, 0.90168105,
0.90168105, 0.76473302, 0.76473302, 0.76473302, 0.76473302,
0.60049273, 0.60049273, 0.60049273, 0.60049273, 0.49550855,
0.49550855, 0.49550855, 0.49550855, 0.47006662, 0.47006662,
0.47006662, 0.47006662, 0.47260804, 0.47260804, 0.47260804,
0.47260804, 0.47428975, 0.47428975, 0.47428975, 0.47428975,
0.46714499, 0.46714499, 0.46714499, 0.46714499, 0.43304518,
0.43304518, 0.43304518, 0.43304518, 0.32159783, 0.32159783,
0.32159783, 0.32159783, 0.15419082, 0.15419082, 0.15419082,
0.15419082, 0.1050973 , 0.1050973 , 0.1050973 , 0.1050973 ,
0.10038332, 0.10038332, 0.10038332, 0.10038332, 0.10002764,
0.10002764, 0.10002764, 0.10002764, 0.10000193, 0.10000193,
0.10000193, 0.10000193, 0.10000013, 0.10000013, 0.10000013,
0.10000013, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999837, 0.99999837,
0.99999837, 0.99999837, 0.9999828 , 0.9999828 , 0.9999828 ,
0.9999828 , 0.99984871, 0.99984871, 0.99984871, 0.99984871,
0.99891955, 0.99891955, 0.99891955, 0.99891955, 0.99394315,
0.99394315, 0.99394315, 0.99394315, 0.97437567, 0.97437567,
0.97437567, 0.97437567, 0.92055976, 0.92055976, 0.92055976,
0.92055976, 0.81822558, 0.81822558, 0.81822558, 0.81822558,
0.69670438, 0.69670438, 0.69670438, 0.69670438, 0.62488661,
0.62488661, 0.62488661, 0.62488661, 0.59118008, 0.59118008,
0.59118008, 0.59118008, 0.5544861 , 0.5544861 , 0.5544861 ,
0.5544861 , 0.50269605, 0.50269605, 0.50269605, 0.50269605,
0.4331649 , 0.4331649 , 0.4331649 , 0.4331649 , 0.36021979,
0.36021979, 0.36021979, 0.36021979, 0.29637809, 0.29637809,
0.29637809, 0.29637809, 0.21820395, 0.21820395, 0.21820395,
0.21820395, 0.14411847, 0.14411847, 0.14411847, 0.14411847,
0.126943 , 0.126943 , 0.126943 , 0.126943 , 0.12515306,
0.12515306, 0.12515306, 0.12515306, 0.12501123, 0.12501123,
0.12501123, 0.12501123, 0.1250008 , 0.1250008 , 0.1250008 ,
0.1250008 , 0.12500005, 0.12500005, 0.12500005, 0.12500005,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
7.50001925e-01, 7.50001925e-01, 7.50001925e-01, 7.50001925e-01,
7.50020345e-01, 7.50020345e-01, 7.50020345e-01, 7.50020345e-01,
7.50178950e-01, 7.50178950e-01, 7.50178950e-01, 7.50178950e-01,
7.51277500e-01, 7.51277500e-01, 7.51277500e-01, 7.51277500e-01,
7.57165560e-01, 7.57165560e-01, 7.57165560e-01, 7.57165560e-01,
7.80529643e-01, 7.80529643e-01, 7.80529643e-01, 7.80529643e-01,
8.47148531e-01, 8.47148531e-01, 8.47148531e-01, 8.47148531e-01,
9.85270426e-01, 9.85270426e-01, 9.85270426e-01, 9.85270426e-01,
1.15957712e+00, 1.15957712e+00, 1.15957712e+00, 1.15957712e+00,
1.29566032e+00, 1.29566032e+00, 1.29566032e+00, 1.29566032e+00,
1.35118587e+00, 1.35118587e+00, 1.35118587e+00, 1.35118587e+00,
1.36601672e+00, 1.36601672e+00, 1.36601672e+00, 1.36601672e+00,
1.36997305e+00, 1.36997305e+00, 1.36997305e+00, 1.36997305e+00,
1.36942484e+00, 1.36942484e+00, 1.36942484e+00, 1.36942484e+00,
1.34862905e+00, 1.34862905e+00, 1.34862905e+00, 1.34862905e+00,
1.23673227e+00, 1.23673227e+00, 1.23673227e+00, 1.23673227e+00,
8.18685529e-01, 8.18685529e-01, 8.18685529e-01, 8.18685529e-01,
1.89365930e-01, 1.89365930e-01, 1.89365930e-01, 1.89365930e-01,
1.77483277e-02, 1.77483277e-02, 1.77483277e-02, 1.77483277e-02,
1.32231275e-03, 1.32231275e-03, 1.32231275e-03, 1.32231275e-03,
9.55485885e-05, 9.55485885e-05, 9.55485885e-05, 9.55485885e-05,
6.74007898e-06, 6.74007898e-06, 6.74007898e-06, 6.74007898e-06,
4.58238639e-07, 4.58238639e-07, 4.58238639e-07, 4.58238639e-07,
2.96179808e-08, 2.96179808e-08, 2.96179808e-08, 2.96179808e-08,
1.79683460e-09, 1.79683460e-09, 1.79683460e-09, 1.79683460e-09,
1.01205791e-10, 1.01205791e-10, 1.01205791e-10, 1.01205791e-10,
5.24439143e-12, 5.24439143e-12, 5.24439143e-12, 5.24439143e-12,
2.48169579e-13, 2.48169579e-13, 2.48169579e-13, 2.48169579e-13,
1.06030558e-14, 1.06030558e-14, 1.06030558e-14, 1.06030558e-14,
3.88917738e-16, 3.88917738e-16, 3.88917738e-16, 3.88917738e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999982,
0.99999982, 0.99999982, 0.99999982, 0.99999772, 0.99999772,
0.99999772, 0.99999772, 0.99997593, 0.99997593, 0.99997593,
0.99997593, 0.99978828, 0.99978828, 0.99978828, 0.99978828,
0.99848943, 0.99848943, 0.99848943, 0.99848943, 0.99155515,
0.99155515, 0.99155515, 0.99155515, 0.964514 , 0.964514 ,
0.964514 , 0.964514 , 0.89148856, 0.89148856, 0.89148856,
0.89148856, 0.75731665, 0.75731665, 0.75731665, 0.75731665,
0.6041739 , 0.6041739 , 0.6041739 , 0.6041739 , 0.50038286,
0.50038286, 0.50038286, 0.50038286, 0.46850918, 0.46850918,
0.46850918, 0.46850918, 0.46942557, 0.46942557, 0.46942557,
0.46942557, 0.47328763, 0.47328763, 0.47328763, 0.47328763,
0.47194986, 0.47194986, 0.47194986, 0.47194986, 0.46019101,
0.46019101, 0.46019101, 0.46019101, 0.41012287, 0.41012287,
0.41012287, 0.41012287, 0.26737713, 0.26737713, 0.26737713,
0.26737713, 0.12780983, 0.12780983, 0.12780983, 0.12780983,
0.1023651 , 0.1023651 , 0.1023651 , 0.1023651 , 0.10017499,
0.10017499, 0.10017499, 0.10017499, 0.10001264, 0.10001264,
0.10001264, 0.10001264, 0.10000089, 0.10000089, 0.10000089,
0.10000089, 0.10000006, 0.10000006, 0.10000006, 0.10000006,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999972,
0.99999972, 0.99999972, 0.99999972, 0.99999688, 0.99999688,
0.99999688, 0.99999688, 0.99997019, 0.99997019, 0.99997019,
0.99997019, 0.99976264, 0.99976264, 0.99976264, 0.99976264,
0.99846262, 0.99846262, 0.99846262, 0.99846262, 0.9921662 ,
0.9921662 , 0.9921662 , 0.9921662 , 0.96972408, 0.96972408,
0.96972408, 0.96972408, 0.91324871, 0.91324871, 0.91324871,
0.91324871, 0.81299809, 0.81299809, 0.81299809, 0.81299809,
0.69707716, 0.69707716, 0.69707716, 0.69707716, 0.6262992 ,
0.6262992 , 0.6262992 , 0.6262992 , 0.59760474, 0.59760474,
0.59760474, 0.59760474, 0.56779664, 0.56779664, 0.56779664,
0.56779664, 0.52592744, 0.52592744, 0.52592744, 0.52592744,
0.46563753, 0.46563753, 0.46563753, 0.46563753, 0.39326426,
0.39326426, 0.39326426, 0.39326426, 0.33284785, 0.33284785,
0.33284785, 0.33284785, 0.27504145, 0.27504145, 0.27504145,
0.27504145, 0.19106843, 0.19106843, 0.19106843, 0.19106843,
0.13511522, 0.13511522, 0.13511522, 0.13511522, 0.12591513,
0.12591513, 0.12591513, 0.12591513, 0.12507031, 0.12507031,
0.12507031, 0.12507031, 0.12500515, 0.12500515, 0.12500515,
0.12500515, 0.12500037, 0.12500037, 0.12500037, 0.12500037,
0.12500003, 0.12500003, 0.12500003, 0.12500003, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
7.50000329e-01, 7.50000329e-01, 7.50000329e-01, 7.50000329e-01,
7.50003695e-01, 7.50003695e-01, 7.50003695e-01, 7.50003695e-01,
7.50035264e-01, 7.50035264e-01, 7.50035264e-01, 7.50035264e-01,
7.50280759e-01, 7.50280759e-01, 7.50280759e-01, 7.50280759e-01,
7.51818086e-01, 7.51818086e-01, 7.51818086e-01, 7.51818086e-01,
7.59276172e-01, 7.59276172e-01, 7.59276172e-01, 7.59276172e-01,
7.86169462e-01, 7.86169462e-01, 7.86169462e-01, 7.86169462e-01,
8.56546408e-01, 8.56546408e-01, 8.56546408e-01, 8.56546408e-01,
9.92456196e-01, 9.92456196e-01, 9.92456196e-01, 9.92456196e-01,
1.15763323e+00, 1.15763323e+00, 1.15763323e+00, 1.15763323e+00,
1.29146040e+00, 1.29146040e+00, 1.29146040e+00, 1.29146040e+00,
1.34573538e+00, 1.34573538e+00, 1.34573538e+00, 1.34573538e+00,
1.36098136e+00, 1.36098136e+00, 1.36098136e+00, 1.36098136e+00,
1.36604284e+00, 1.36604284e+00, 1.36604284e+00, 1.36604284e+00,
1.36966028e+00, 1.36966028e+00, 1.36966028e+00, 1.36966028e+00,
1.36622633e+00, 1.36622633e+00, 1.36622633e+00, 1.36622633e+00,
1.32998311e+00, 1.32998311e+00, 1.32998311e+00, 1.32998311e+00,
1.15597656e+00, 1.15597656e+00, 1.15597656e+00, 1.15597656e+00,
6.12942776e-01, 6.12942776e-01, 6.12942776e-01, 6.12942776e-01,
9.84564756e-02, 9.84564756e-02, 9.84564756e-02, 9.84564756e-02,
8.15622587e-03, 8.15622587e-03, 8.15622587e-03, 8.15622587e-03,
6.03159348e-04, 6.03159348e-04, 6.03159348e-04, 6.03159348e-04,
4.37065832e-05, 4.37065832e-05, 4.37065832e-05, 4.37065832e-05,
3.10316624e-06, 3.10316624e-06, 3.10316624e-06, 3.10316624e-06,
2.13754454e-07, 2.13754454e-07, 2.13754454e-07, 2.13754454e-07,
1.41094631e-08, 1.41094631e-08, 1.41094631e-08, 1.41094631e-08,
8.82092666e-10, 8.82092666e-10, 8.82092666e-10, 8.82092666e-10,
5.16973157e-11, 5.16973157e-11, 5.16973157e-11, 5.16973157e-11,
2.81588859e-12, 2.81588859e-12, 2.81588859e-12, 2.81588859e-12,
1.41485550e-13, 1.41485550e-13, 1.41485550e-13, 1.41485550e-13,
6.51607025e-15, 6.51607025e-15, 6.51607025e-15, 6.51607025e-15,
2.40152978e-16, 2.40152978e-16, 2.40152978e-16, 2.40152978e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999961,
0.99999961, 0.99999961, 0.99999961, 0.99999563, 0.99999563,
0.99999563, 0.99999563, 0.99995828, 0.99995828, 0.99995828,
0.99995828, 0.99966785, 0.99966785, 0.99966785, 0.99966785,
0.99785087, 0.99785087, 0.99785087, 0.99785087, 0.98908149,
0.98908149, 0.98908149, 0.98908149, 0.9581009 , 0.9581009 ,
0.9581009 , 0.9581009 , 0.88161392, 0.88161392, 0.88161392,
0.88161392, 0.75058451, 0.75058451, 0.75058451, 0.75058451,
0.60688233, 0.60688233, 0.60688233, 0.60688233, 0.50620558,
0.50620558, 0.50620558, 0.50620558, 0.46870616, 0.46870616,
0.46870616, 0.46870616, 0.46692176, 0.46692176, 0.46692176,
0.46692176, 0.47084207, 0.47084207, 0.47084207, 0.47084207,
0.47212989, 0.47212989, 0.47212989, 0.47212989, 0.46881527,
0.46881527, 0.46881527, 0.46881527, 0.45065004, 0.45065004,
0.45065004, 0.45065004, 0.37876151, 0.37876151, 0.37876151,
0.37876151, 0.21224192, 0.21224192, 0.21224192, 0.21224192,
0.11373333, 0.11373333, 0.11373333, 0.11373333, 0.10108205,
0.10108205, 0.10108205, 0.10108205, 0.1000798 , 0.1000798 ,
0.1000798 , 0.1000798 , 0.10000578, 0.10000578, 0.10000578,
0.10000578, 0.10000041, 0.10000041, 0.10000041, 0.10000041,
0.10000003, 0.10000003, 0.10000003, 0.10000003, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999945,
0.99999945, 0.99999945, 0.99999945, 0.99999434, 0.99999434,
0.99999434, 0.99999434, 0.99995077, 0.99995077, 0.99995077,
0.99995077, 0.99964227, 0.99964227, 0.99964227, 0.99964227,
0.99788241, 0.99788241, 0.99788241, 0.99788241, 0.99011845,
0.99011845, 0.99011845, 0.99011845, 0.96484327, 0.96484327,
0.96484327, 0.96484327, 0.90617454, 0.90617454, 0.90617454,
0.90617454, 0.80826973, 0.80826973, 0.80826973, 0.80826973,
0.69774371, 0.69774371, 0.69774371, 0.69774371, 0.62678051,
0.62678051, 0.62678051, 0.62678051, 0.60206381, 0.60206381,
0.60206381, 0.60206381, 0.57792713, 0.57792713, 0.57792713,
0.57792713, 0.54425972, 0.54425972, 0.54425972, 0.54425972,
0.49346931, 0.49346931, 0.49346931, 0.49346931, 0.42544549,
0.42544549, 0.42544549, 0.42544549, 0.36171435, 0.36171435,
0.36171435, 0.36171435, 0.31197099, 0.31197099, 0.31197099,
0.31197099, 0.25437815, 0.25437815, 0.25437815, 0.25437815,
0.16685114, 0.16685114, 0.16685114, 0.16685114, 0.13005985,
0.13005985, 0.13005985, 0.13005985, 0.1254259 , 0.1254259 ,
0.1254259 , 0.1254259 , 0.12503221, 0.12503221, 0.12503221,
0.12503221, 0.12500236, 0.12500236, 0.12500236, 0.12500236,
0.12500017, 0.12500017, 0.12500017, 0.12500017, 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
7.50000056e-01, 7.50000056e-01, 7.50000056e-01, 7.50000056e-01,
7.50000657e-01, 7.50000657e-01, 7.50000657e-01, 7.50000657e-01,
7.50006699e-01, 7.50006699e-01, 7.50006699e-01, 7.50006699e-01,
7.50058238e-01, 7.50058238e-01, 7.50058238e-01, 7.50058238e-01,
7.50423153e-01, 7.50423153e-01, 7.50423153e-01, 7.50423153e-01,
7.52504789e-01, 7.52504789e-01, 7.52504789e-01, 7.52504789e-01,
7.61712941e-01, 7.61712941e-01, 7.61712941e-01, 7.61712941e-01,
7.92115818e-01, 7.92115818e-01, 7.92115818e-01, 7.92115818e-01,
8.65693722e-01, 8.65693722e-01, 8.65693722e-01, 8.65693722e-01,
9.99009811e-01, 9.99009811e-01, 9.99009811e-01, 9.99009811e-01,
1.15520654e+00, 1.15520654e+00, 1.15520654e+00, 1.15520654e+00,
1.28768450e+00, 1.28768450e+00, 1.28768450e+00, 1.28768450e+00,
1.34268320e+00, 1.34268320e+00, 1.34268320e+00, 1.34268320e+00,
1.35715119e+00, 1.35715119e+00, 1.35715119e+00, 1.35715119e+00,
1.36145245e+00, 1.36145245e+00, 1.36145245e+00, 1.36145245e+00,
1.36744320e+00, 1.36744320e+00, 1.36744320e+00, 1.36744320e+00,
1.36938027e+00, 1.36938027e+00, 1.36938027e+00, 1.36938027e+00,
1.36032906e+00, 1.36032906e+00, 1.36032906e+00, 1.36032906e+00,
1.30083630e+00, 1.30083630e+00, 1.30083630e+00, 1.30083630e+00,
1.03904720e+00, 1.03904720e+00, 1.03904720e+00, 1.03904720e+00,
4.03867617e-01, 4.03867617e-01, 4.03867617e-01, 4.03867617e-01,
4.78324169e-02, 4.78324169e-02, 4.78324169e-02, 4.78324169e-02,
3.73133151e-03, 3.73133151e-03, 3.73133151e-03, 3.73133151e-03,
2.75051151e-04, 2.75051151e-04, 2.75051151e-04, 2.75051151e-04,
1.99786506e-05, 1.99786506e-05, 1.99786506e-05, 1.99786506e-05,
1.42705014e-06, 1.42705014e-06, 1.42705014e-06, 1.42705014e-06,
9.93370281e-08, 9.93370281e-08, 9.93370281e-08, 9.93370281e-08,
6.66943143e-09, 6.66943143e-09, 6.66943143e-09, 6.66943143e-09,
4.27344831e-10, 4.27344831e-10, 4.27344831e-10, 4.27344831e-10,
2.58814547e-11, 2.58814547e-11, 2.58814547e-11, 2.58814547e-11,
1.46936578e-12, 1.46936578e-12, 1.46936578e-12, 1.46936578e-12,
7.76106587e-14, 7.76106587e-14, 7.76106587e-14, 7.76106587e-14,
3.75314846e-15, 3.75314846e-15, 3.75314846e-15, 3.75314846e-15,
1.59879132e-16, 1.59879132e-16, 1.59879132e-16, 1.59879132e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999922,
0.99999922, 0.99999922, 0.99999922, 0.99999207, 0.99999207,
0.99999207, 0.99999207, 0.99993109, 0.99993109, 0.99993109,
0.99993109, 0.99949942, 0.99949942, 0.99949942, 0.99949942,
0.9970403 , 0.9970403 , 0.9970403 , 0.9970403 , 0.98623335,
0.98623335, 0.98623335, 0.98623335, 0.95138454, 0.95138454,
0.95138454, 0.95138454, 0.87208823, 0.87208823, 0.87208823,
0.87208823, 0.74445435, 0.74445435, 0.74445435, 0.74445435,
0.60875561, 0.60875561, 0.60875561, 0.60875561, 0.51204856,
0.51204856, 0.51204856, 0.51204856, 0.47069723, 0.47069723,
0.47069723, 0.47069723, 0.46531969, 0.46531969, 0.46531969,
0.46531969, 0.46797682, 0.46797682, 0.46797682, 0.46797682,
0.47094798, 0.47094798, 0.47094798, 0.47094798, 0.47050583,
0.47050583, 0.47050583, 0.47050583, 0.4648433 , 0.4648433 ,
0.4648433 , 0.4648433 , 0.43679273, 0.43679273, 0.43679273,
0.43679273, 0.33696764, 0.33696764, 0.33696764, 0.33696764,
0.16596212, 0.16596212, 0.16596212, 0.16596212, 0.10647712,
0.10647712, 0.10647712, 0.10647712, 0.10049417, 0.10049417,
0.10049417, 0.10049417, 0.10003639, 0.10003639, 0.10003639,
0.10003639, 0.10000264, 0.10000264, 0.10000264, 0.10000264,
0.10000019, 0.10000019, 0.10000019, 0.10000019, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999895,
0.99999895, 0.99999895, 0.99999895, 0.99999022, 0.99999022,
0.99999022, 0.99999022, 0.99992199, 0.99992199, 0.99992199,
0.99992199, 0.99947912, 0.99947912, 0.99947912, 0.99947912,
0.99716379, 0.99716379, 0.99716379, 0.99716379, 0.98780171,
0.98780171, 0.98780171, 0.98780171, 0.95977919, 0.95977919,
0.95977919, 0.95977919, 0.899356 , 0.899356 , 0.899356 ,
0.899356 , 0.80398103, 0.80398103, 0.80398103, 0.80398103,
0.69885064, 0.69885064, 0.69885064, 0.69885064, 0.62663048,
0.62663048, 0.62663048, 0.62663048, 0.60456203, 0.60456203,
0.60456203, 0.60456203, 0.58574218, 0.58574218, 0.58574218,
0.58574218, 0.55889671, 0.55889671, 0.55889671, 0.55889671,
0.51652074, 0.51652074, 0.51652074, 0.51652074, 0.45677399,
0.45677399, 0.45677399, 0.45677399, 0.38843992, 0.38843992,
0.38843992, 0.38843992, 0.33857154, 0.33857154, 0.33857154,
0.33857154, 0.2958245 , 0.2958245 , 0.2958245 , 0.2958245 ,
0.23037144, 0.23037144, 0.23037144, 0.23037144, 0.14866712,
0.14866712, 0.14866712, 0.14866712, 0.12746378, 0.12746378,
0.12746378, 0.12746378, 0.12519715, 0.12519715, 0.12519715,
0.12519715, 0.12501472, 0.12501472, 0.12501472, 0.12501472,
0.12500108, 0.12500108, 0.12500108, 0.12500108, 0.12500008,
0.12500008, 0.12500008, 0.12500008, 0.12500001, 0.12500001,
0.12500001, 0.12500001, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000115e-01, 7.50000115e-01, 7.50000115e-01, 7.50000115e-01,
7.50001238e-01, 7.50001238e-01, 7.50001238e-01, 7.50001238e-01,
7.50011569e-01, 7.50011569e-01, 7.50011569e-01, 7.50011569e-01,
7.50092289e-01, 7.50092289e-01, 7.50092289e-01, 7.50092289e-01,
7.50616160e-01, 7.50616160e-01, 7.50616160e-01, 7.50616160e-01,
7.53355737e-01, 7.53355737e-01, 7.53355737e-01, 7.53355737e-01,
7.64475707e-01, 7.64475707e-01, 7.64475707e-01, 7.64475707e-01,
7.98316114e-01, 7.98316114e-01, 7.98316114e-01, 7.98316114e-01,
8.74560291e-01, 8.74560291e-01, 8.74560291e-01, 8.74560291e-01,
1.00500047e+00, 1.00500047e+00, 1.00500047e+00, 1.00500047e+00,
1.15260232e+00, 1.15260232e+00, 1.15260232e+00, 1.15260232e+00,
1.28340256e+00, 1.28340256e+00, 1.28340256e+00, 1.28340256e+00,
1.34114330e+00, 1.34114330e+00, 1.34114330e+00, 1.34114330e+00,
1.35501138e+00, 1.35501138e+00, 1.35501138e+00, 1.35501138e+00,
1.35810478e+00, 1.35810478e+00, 1.35810478e+00, 1.35810478e+00,
1.36336774e+00, 1.36336774e+00, 1.36336774e+00, 1.36336774e+00,
1.36847879e+00, 1.36847879e+00, 1.36847879e+00, 1.36847879e+00,
1.36811377e+00, 1.36811377e+00, 1.36811377e+00, 1.36811377e+00,
1.35072599e+00, 1.35072599e+00, 1.35072599e+00, 1.35072599e+00,
1.25426560e+00, 1.25426560e+00, 1.25426560e+00, 1.25426560e+00,
8.79763139e-01, 8.79763139e-01, 8.79763139e-01, 8.79763139e-01,
2.32057473e-01, 2.32057473e-01, 2.32057473e-01, 2.32057473e-01,
2.26258785e-02, 2.26258785e-02, 2.26258785e-02, 2.26258785e-02,
1.70706147e-03, 1.70706147e-03, 1.70706147e-03, 1.70706147e-03,
1.25313284e-04, 1.25313284e-04, 1.25313284e-04, 1.25313284e-04,
9.12735833e-06, 9.12735833e-06, 9.12735833e-06, 9.12735833e-06,
6.55213907e-07, 6.55213907e-07, 6.55213907e-07, 6.55213907e-07,
4.60110799e-08, 4.60110799e-08, 4.60110799e-08, 4.60110799e-08,
3.13257583e-09, 3.13257583e-09, 3.13257583e-09, 3.13257583e-09,
2.04833966e-10, 2.04833966e-10, 2.04833966e-10, 2.04833966e-10,
1.27491473e-11, 1.27491473e-11, 1.27491473e-11, 1.27491473e-11,
7.49384168e-13, 7.49384168e-13, 7.49384168e-13, 7.49384168e-13,
4.12715433e-14, 4.12715433e-14, 4.12715433e-14, 4.12715433e-14,
2.08438071e-15, 2.08438071e-15, 2.08438071e-15, 2.08438071e-15,
6.95966513e-17, 6.95966513e-17, 6.95966513e-17, 6.95966513e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999854,
0.99999854, 0.99999854, 0.99999854, 0.99998631, 0.99998631,
0.99998631, 0.99998631, 0.99989081, 0.99989081, 0.99989081,
0.99989081, 0.99927118, 0.99927118, 0.99927118, 0.99927118,
0.99603677, 0.99603677, 0.99603677, 0.99603677, 0.98301421,
0.98301421, 0.98301421, 0.98301421, 0.94442958, 0.94442958,
0.94442958, 0.94442958, 0.86293221, 0.86293221, 0.86293221,
0.86293221, 0.73885742, 0.73885742, 0.73885742, 0.73885742,
0.61009357, 0.61009357, 0.61009357, 0.61009357, 0.51726091,
0.51726091, 0.51726091, 0.51726091, 0.47391825, 0.47391825,
0.47391825, 0.47391825, 0.46487842, 0.46487842, 0.46487842,
0.46487842, 0.46589916, 0.46589916, 0.46589916, 0.46589916,
0.46870505, 0.46870505, 0.46870505, 0.46870505, 0.47008932,
0.47008932, 0.47008932, 0.47008932, 0.4686757 , 0.4686757 ,
0.4686757 , 0.4686757 , 0.45927249, 0.45927249, 0.45927249,
0.45927249, 0.41693776, 0.41693776, 0.41693776, 0.41693776,
0.28500491, 0.28500491, 0.28500491, 0.28500491, 0.13470714,
0.13470714, 0.13470714, 0.13470714, 0.10302215, 0.10302215,
0.10302215, 0.10302215, 0.10022593, 0.10022593, 0.10022593,
0.10022593, 0.10001658, 0.10001658, 0.10001658, 0.10001658,
0.10000121, 0.10000121, 0.10000121, 0.10000121, 0.10000009,
0.10000009, 0.10000009, 0.10000009, 0.10000001, 0.10000001,
0.10000001, 0.10000001, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999981, 0.99999981, 0.99999981, 0.99999981, 0.99999812,
0.99999812, 0.99999812, 0.99999812, 0.99998381, 0.99998381,
0.99998381, 0.99998381, 0.99988072, 0.99988072, 0.99988072,
0.99988072, 0.99926394, 0.99926394, 0.99926394, 0.99926394,
0.99629293, 0.99629293, 0.99629293, 0.99629293, 0.98522251,
0.98522251, 0.98522251, 0.98522251, 0.95457584, 0.95457584,
0.95457584, 0.95457584, 0.89280503, 0.89280503, 0.89280503,
0.89280503, 0.80007672, 0.80007672, 0.80007672, 0.80007672,
0.70045666, 0.70045666, 0.70045666, 0.70045666, 0.62631673,
0.62631673, 0.62631673, 0.62631673, 0.60514204, 0.60514204,
0.60514204, 0.60514204, 0.59141774, 0.59141774, 0.59141774,
0.59141774, 0.57060546, 0.57060546, 0.57060546, 0.57060546,
0.53581477, 0.53581477, 0.53581477, 0.53581477, 0.48414835,
0.48414835, 0.48414835, 0.48414835, 0.41731063, 0.41731063,
0.41731063, 0.41731063, 0.36078704, 0.36078704, 0.36078704,
0.36078704, 0.32184882, 0.32184882, 0.32184882, 0.32184882,
0.28122767, 0.28122767, 0.28122767, 0.28122767, 0.20285998,
0.20285998, 0.20285998, 0.20285998, 0.13769277, 0.13769277,
0.13769277, 0.13769277, 0.12617394, 0.12617394, 0.12617394,
0.12617394, 0.12509074, 0.12509074, 0.12509074, 0.12509074,
0.12500673, 0.12500673, 0.12500673, 0.12500673, 0.12500049,
0.12500049, 0.12500049, 0.12500049, 0.12500004, 0.12500004,
0.12500004, 0.12500004, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000020e-01, 7.50000020e-01, 7.50000020e-01, 7.50000020e-01,
7.50000224e-01, 7.50000224e-01, 7.50000224e-01, 7.50000224e-01,
7.50002223e-01, 7.50002223e-01, 7.50002223e-01, 7.50002223e-01,
7.50019160e-01, 7.50019160e-01, 7.50019160e-01, 7.50019160e-01,
7.50141119e-01, 7.50141119e-01, 7.50141119e-01, 7.50141119e-01,
7.50870743e-01, 7.50870743e-01, 7.50870743e-01, 7.50870743e-01,
7.54387642e-01, 7.54387642e-01, 7.54387642e-01, 7.54387642e-01,
7.67558867e-01, 7.67558867e-01, 7.67558867e-01, 7.67558867e-01,
8.04718986e-01, 8.04718986e-01, 8.04718986e-01, 8.04718986e-01,
8.83124089e-01, 8.83124089e-01, 8.83124089e-01, 8.83124089e-01,
1.01048782e+00, 1.01048782e+00, 1.01048782e+00, 1.01048782e+00,
1.15015373e+00, 1.15015373e+00, 1.15015373e+00, 1.15015373e+00,
1.27828995e+00, 1.27828995e+00, 1.27828995e+00, 1.27828995e+00,
1.33996420e+00, 1.33996420e+00, 1.33996420e+00, 1.33996420e+00,
1.35434258e+00, 1.35434258e+00, 1.35434258e+00, 1.35434258e+00,
1.35651250e+00, 1.35651250e+00, 1.35651250e+00, 1.35651250e+00,
1.35943170e+00, 1.35943170e+00, 1.35943170e+00, 1.35943170e+00,
1.36562928e+00, 1.36562928e+00, 1.36562928e+00, 1.36562928e+00,
1.36871828e+00, 1.36871828e+00, 1.36871828e+00, 1.36871828e+00,
1.36559918e+00, 1.36559918e+00, 1.36559918e+00, 1.36559918e+00,
1.33410068e+00, 1.33410068e+00, 1.33410068e+00, 1.33410068e+00,
1.18316118e+00, 1.18316118e+00, 1.18316118e+00, 1.18316118e+00,
6.83501416e-01, 6.83501416e-01, 6.83501416e-01, 6.83501416e-01,
1.23082855e-01, 1.23082855e-01, 1.23082855e-01, 1.23082855e-01,
1.05135867e-02, 1.05135867e-02, 1.05135867e-02, 1.05135867e-02,
7.79480203e-04, 7.79480203e-04, 7.79480203e-04, 7.79480203e-04,
5.71875744e-05, 5.71875744e-05, 5.71875744e-05, 5.71875744e-05,
4.16908647e-06, 4.16908647e-06, 4.16908647e-06, 4.16908647e-06,
3.00491897e-07, 3.00491897e-07, 3.00491897e-07, 3.00491897e-07,
2.12578537e-08, 2.12578537e-08, 2.12578537e-08, 2.12578537e-08,
1.46423018e-09, 1.46423018e-09, 1.46423018e-09, 1.46423018e-09,
9.73781859e-11, 9.73781859e-11, 9.73781859e-11, 9.73781859e-11,
6.20162096e-12, 6.20162096e-12, 6.20162096e-12, 6.20162096e-12,
3.75332869e-13, 3.75332869e-13, 3.75332869e-13, 3.75332869e-13,
2.14560454e-14, 2.14560454e-14, 2.14560454e-14, 2.14560454e-14,
1.07221018e-15, 1.07221018e-15, 1.07221018e-15, 1.07221018e-15,
3.44235441e-17, 3.44235441e-17, 3.44235441e-17, 3.44235441e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999737,
0.99999737, 0.99999737, 0.99999737, 0.99997733, 0.99997733,
0.99997733, 0.99997733, 0.99983304, 0.99983304, 0.99983304,
0.99983304, 0.9989702 , 0.9989702 , 0.9989702 , 0.9989702 ,
0.99482119, 0.99482119, 0.99482119, 0.99482119, 0.97943416,
0.97943416, 0.97943416, 0.97943416, 0.93729763, 0.93729763,
0.93729763, 0.93729763, 0.85415822, 0.85415822, 0.85415822,
0.85415822, 0.73373529, 0.73373529, 0.73373529, 0.73373529,
0.6112099 , 0.6112099 , 0.6112099 , 0.6112099 , 0.52160141,
0.52160141, 0.52160141, 0.52160141, 0.47759878, 0.47759878,
0.47759878, 0.47759878, 0.465481 , 0.465481 , 0.465481 ,
0.465481 , 0.46501776, 0.46501776, 0.46501776, 0.46501776,
0.46641955, 0.46641955, 0.46641955, 0.46641955, 0.46863112,
0.46863112, 0.46863112, 0.46863112, 0.46903125, 0.46903125,
0.46903125, 0.46903125, 0.466292 , 0.466292 , 0.466292 ,
0.466292 , 0.45159727, 0.45159727, 0.45159727, 0.45159727,
0.38874303, 0.38874303, 0.38874303, 0.38874303, 0.22928284,
0.22928284, 0.22928284, 0.22928284, 0.11739066, 0.11739066,
0.11739066, 0.11739066, 0.10139613, 0.10139613, 0.10139613,
0.10139613, 0.10010314, 0.10010314, 0.10010314, 0.10010314,
0.10000757, 0.10000757, 0.10000757, 0.10000757, 0.10000055,
0.10000055, 0.10000055, 0.10000055, 0.10000004, 0.10000004,
0.10000004, 0.10000004, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999965, 0.99999965, 0.99999965, 0.99999965, 0.99999676,
0.99999676, 0.99999676, 0.99999676, 0.99997414, 0.99997414,
0.99997414, 0.99997414, 0.99982322, 0.99982322, 0.99982322,
0.99982322, 0.99898687, 0.99898687, 0.99898687, 0.99898687,
0.99525772, 0.99525772, 0.99525772, 0.99525772, 0.98239165,
0.98239165, 0.98239165, 0.98239165, 0.94927458, 0.94927458,
0.94927458, 0.94927458, 0.88652829, 0.88652829, 0.88652829,
0.88652829, 0.79650788, 0.79650788, 0.79650788, 0.79650788,
0.70249376, 0.70249376, 0.70249376, 0.70249376, 0.62636848,
0.62636848, 0.62636848, 0.62636848, 0.60412838, 0.60412838,
0.60412838, 0.60412838, 0.59491245, 0.59491245, 0.59491245,
0.59491245, 0.57973366, 0.57973366, 0.57973366, 0.57973366,
0.55197703, 0.55197703, 0.55197703, 0.55197703, 0.50772236,
0.50772236, 0.50772236, 0.50772236, 0.44720509, 0.44720509,
0.44720509, 0.44720509, 0.38317069, 0.38317069, 0.38317069,
0.38317069, 0.34144572, 0.34144572, 0.34144572, 0.34144572,
0.30939376, 0.30939376, 0.30939376, 0.30939376, 0.26448525,
0.26448525, 0.26448525, 0.26448525, 0.17617514, 0.17617514,
0.17617514, 0.17617514, 0.1314537 , 0.1314537 , 0.1314537 ,
0.1314537 , 0.1255488 , 0.1255488 , 0.1255488 , 0.1255488 ,
0.12504168, 0.12504168, 0.12504168, 0.12504168, 0.12500308,
0.12500308, 0.12500308, 0.12500308, 0.12500022, 0.12500022,
0.12500022, 0.12500022, 0.12500002, 0.12500002, 0.12500002,
0.12500002, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000040e-01, 7.50000040e-01, 7.50000040e-01, 7.50000040e-01,
7.50000416e-01, 7.50000416e-01, 7.50000416e-01, 7.50000416e-01,
7.50003829e-01, 7.50003829e-01, 7.50003829e-01, 7.50003829e-01,
7.50030595e-01, 7.50030595e-01, 7.50030595e-01, 7.50030595e-01,
7.50209148e-01, 7.50209148e-01, 7.50209148e-01, 7.50209148e-01,
7.51198600e-01, 7.51198600e-01, 7.51198600e-01, 7.51198600e-01,
7.55615304e-01, 7.55615304e-01, 7.55615304e-01, 7.55615304e-01,
7.70951868e-01, 7.70951868e-01, 7.70951868e-01, 7.70951868e-01,
8.11275275e-01, 8.11275275e-01, 8.11275275e-01, 8.11275275e-01,
8.91370127e-01, 8.91370127e-01, 8.91370127e-01, 8.91370127e-01,
1.01552397e+00, 1.01552397e+00, 1.01552397e+00, 1.01552397e+00,
1.14807632e+00, 1.14807632e+00, 1.14807632e+00, 1.14807632e+00,
1.27251928e+00, 1.27251928e+00, 1.27251928e+00, 1.27251928e+00,
1.33824106e+00, 1.33824106e+00, 1.33824106e+00, 1.33824106e+00,
1.35468133e+00, 1.35468133e+00, 1.35468133e+00, 1.35468133e+00,
1.35603990e+00, 1.35603990e+00, 1.35603990e+00, 1.35603990e+00,
1.35749304e+00, 1.35749304e+00, 1.35749304e+00, 1.35749304e+00,
1.36161701e+00, 1.36161701e+00, 1.36161701e+00, 1.36161701e+00,
1.36709517e+00, 1.36709517e+00, 1.36709517e+00, 1.36709517e+00,
1.36853942e+00, 1.36853942e+00, 1.36853942e+00, 1.36853942e+00,
1.35998310e+00, 1.35998310e+00, 1.35998310e+00, 1.35998310e+00,
1.30814871e+00, 1.30814871e+00, 1.30814871e+00, 1.30814871e+00,
1.07919686e+00, 1.07919686e+00, 1.07919686e+00, 1.07919686e+00,
4.71939660e-01, 4.71939660e-01, 4.71939660e-01, 4.71939660e-01,
6.10545409e-02, 6.10545409e-02, 6.10545409e-02, 6.10545409e-02,
4.82456880e-03, 4.82456880e-03, 4.82456880e-03, 4.82456880e-03,
3.56247646e-04, 3.56247646e-04, 3.56247646e-04, 3.56247646e-04,
2.61067770e-05, 2.61067770e-05, 2.61067770e-05, 2.61067770e-05,
1.90472760e-06, 1.90472760e-06, 1.90472760e-06, 1.90472760e-06,
1.37703296e-07, 1.37703296e-07, 1.37703296e-07, 1.37703296e-07,
9.80046714e-09, 9.80046714e-09, 9.80046714e-09, 9.80046714e-09,
6.81680766e-10, 6.81680766e-10, 6.81680766e-10, 6.81680766e-10,
4.59859347e-11, 4.59859347e-11, 4.59859347e-11, 4.59859347e-11,
2.98599883e-12, 2.98599883e-12, 2.98599883e-12, 2.98599883e-12,
1.85306740e-13, 1.85306740e-13, 1.85306740e-13, 1.85306740e-13,
1.08045186e-14, 1.08045186e-14, 1.08045186e-14, 1.08045186e-14,
5.92240191e-16, 5.92240191e-16, 5.92240191e-16, 5.92240191e-16,
3.36083066e-17, 3.36083066e-17, 3.36083066e-17, 3.36083066e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999995, 0.99999995, 0.99999995, 0.99999995,
0.99999951, 0.99999951, 0.99999951, 0.99999951, 0.99999547,
0.99999547, 0.99999547, 0.99999547, 0.9999638 , 0.9999638 ,
0.9999638 , 0.9999638 , 0.99975256, 0.99975256, 0.99975256,
0.99975256, 0.99858272, 0.99858272, 0.99858272, 0.99858272,
0.99337694, 0.99337694, 0.99337694, 0.99337694, 0.97550929,
0.97550929, 0.97550929, 0.97550929, 0.93004626, 0.93004626,
0.93004626, 0.93004626, 0.84577195, 0.84577195, 0.84577195,
0.84577195, 0.72903811, 0.72903811, 0.72903811, 0.72903811,
0.61232549, 0.61232549, 0.61232549, 0.61232549, 0.52517321,
0.52517321, 0.52517321, 0.52517321, 0.48111312, 0.48111312,
0.48111312, 0.48111312, 0.46690051, 0.46690051, 0.46690051,
0.46690051, 0.46488503, 0.46488503, 0.46488503, 0.46488503,
0.46527105, 0.46527105, 0.46527105, 0.46527105, 0.46650029,
0.46650029, 0.46650029, 0.46650029, 0.46823227, 0.46823227,
0.46823227, 0.46823227, 0.46775485, 0.46775485, 0.46775485,
0.46775485, 0.46346347, 0.46346347, 0.46346347, 0.46346347,
0.43993022, 0.43993022, 0.43993022, 0.43993022, 0.35059336,
0.35059336, 0.35059336, 0.35059336, 0.17933862, 0.17933862,
0.17933862, 0.17933862, 0.10832159, 0.10832159, 0.10832159,
0.10832159, 0.1006392 , 0.1006392 , 0.1006392 , 0.1006392 ,
0.10004713, 0.10004713, 0.10004713, 0.10004713, 0.10000345,
0.10000345, 0.10000345, 0.10000345, 0.10000025, 0.10000025,
0.10000025, 0.10000025, 0.10000002, 0.10000002, 0.10000002,
0.10000002, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999937, 0.99999937, 0.99999937, 0.99999937, 0.99999463,
0.99999463, 0.99999463, 0.99999463, 0.99996001, 0.99996001,
0.99996001, 0.99996001, 0.99974513, 0.99974513, 0.99974513,
0.99974513, 0.99863764, 0.99863764, 0.99863764, 0.99863764,
0.99404812, 0.99404812, 0.99404812, 0.99404812, 0.97932361,
0.97932361, 0.97932361, 0.97932361, 0.94391361, 0.94391361,
0.94391361, 0.94391361, 0.88052889, 0.88052889, 0.88052889,
0.88052889, 0.7932456 , 0.7932456 , 0.7932456 , 0.7932456 ,
0.70476828, 0.70476828, 0.70476828, 0.70476828, 0.62723661,
0.62723661, 0.62723661, 0.62723661, 0.60206706, 0.60206706,
0.60206706, 0.60206706, 0.5963246 , 0.5963246 , 0.5963246 ,
0.5963246 , 0.58637919, 0.58637919, 0.58637919, 0.58637919,
0.56513598, 0.56513598, 0.56513598, 0.56513598, 0.52823708,
0.52823708, 0.52823708, 0.52823708, 0.47484775, 0.47484775,
0.47484775, 0.47484775, 0.40888641, 0.40888641, 0.40888641,
0.40888641, 0.35916094, 0.35916094, 0.35916094, 0.35916094,
0.32770215, 0.32770215, 0.32770215, 0.32770215, 0.29918377,
0.29918377, 0.29918377, 0.29918377, 0.24277737, 0.24277737,
0.24277737, 0.24277737, 0.1544822 , 0.1544822 , 0.1544822 ,
0.1544822 , 0.12813873, 0.12813873, 0.12813873, 0.12813873,
0.12525473, 0.12525473, 0.12525473, 0.12525473, 0.12501909,
0.12501909, 0.12501909, 0.12501909, 0.12500141, 0.12500141,
0.12500141, 0.12500141, 0.1250001 , 0.1250001 , 0.1250001 ,
0.1250001 , 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
7.50000076e-01, 7.50000076e-01, 7.50000076e-01, 7.50000076e-01,
7.50000743e-01, 7.50000743e-01, 7.50000743e-01, 7.50000743e-01,
7.50006355e-01, 7.50006355e-01, 7.50006355e-01, 7.50006355e-01,
7.50047312e-01, 7.50047312e-01, 7.50047312e-01, 7.50047312e-01,
7.50301532e-01, 7.50301532e-01, 7.50301532e-01, 7.50301532e-01,
7.51611926e-01, 7.51611926e-01, 7.51611926e-01, 7.51611926e-01,
7.57051218e-01, 7.57051218e-01, 7.57051218e-01, 7.57051218e-01,
7.74639815e-01, 7.74639815e-01, 7.74639815e-01, 7.74639815e-01,
8.17938711e-01, 8.17938711e-01, 8.17938711e-01, 8.17938711e-01,
8.99300214e-01, 8.99300214e-01, 8.99300214e-01, 8.99300214e-01,
1.02004865e+00, 1.02004865e+00, 1.02004865e+00, 1.02004865e+00,
1.14652531e+00, 1.14652531e+00, 1.14652531e+00, 1.14652531e+00,
1.26652821e+00, 1.26652821e+00, 1.26652821e+00, 1.26652821e+00,
1.33548200e+00, 1.33548200e+00, 1.33548200e+00, 1.33548200e+00,
1.35534630e+00, 1.35534630e+00, 1.35534630e+00, 1.35534630e+00,
1.35643148e+00, 1.35643148e+00, 1.35643148e+00, 1.35643148e+00,
1.35688841e+00, 1.35688841e+00, 1.35688841e+00, 1.35688841e+00,
1.35905944e+00, 1.35905944e+00, 1.35905944e+00, 1.35905944e+00,
1.36376675e+00, 1.36376675e+00, 1.36376675e+00, 1.36376675e+00,
1.36790199e+00, 1.36790199e+00, 1.36790199e+00, 1.36790199e+00,
1.36676900e+00, 1.36676900e+00, 1.36676900e+00, 1.36676900e+00,
1.35107712e+00, 1.35107712e+00, 1.35107712e+00, 1.35107712e+00,
1.26776498e+00, 1.26776498e+00, 1.26776498e+00, 1.26776498e+00,
9.35091603e-01, 9.35091603e-01, 9.35091603e-01, 9.35091603e-01,
2.80578131e-01, 2.80578131e-01, 2.80578131e-01, 2.80578131e-01,
2.89234526e-02, 2.89234526e-02, 2.89234526e-02, 2.89234526e-02,
2.21034091e-03, 2.21034091e-03, 2.21034091e-03, 2.21034091e-03,
1.62586243e-04, 1.62586243e-04, 1.62586243e-04, 1.62586243e-04,
1.19199001e-05, 1.19199001e-05, 1.19199001e-05, 1.19199001e-05,
8.70329480e-07, 8.70329480e-07, 8.70329480e-07, 8.70329480e-07,
6.30649885e-08, 6.30649885e-08, 6.30649885e-08, 6.30649885e-08,
4.51037180e-09, 4.51037180e-09, 4.51037180e-09, 4.51037180e-09,
3.16293216e-10, 3.16293216e-10, 3.16293216e-10, 3.16293216e-10,
2.15961374e-11, 2.15961374e-11, 2.15961374e-11, 2.15961374e-11,
1.42561215e-12, 1.42561215e-12, 1.42561215e-12, 1.42561215e-12,
9.02795039e-14, 9.02795039e-14, 9.02795039e-14, 9.02795039e-14,
5.44358060e-15, 5.44358060e-15, 5.44358060e-15, 5.44358060e-15,
3.46618598e-16, 3.46618598e-16, 3.46618598e-16, 3.46618598e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999912, 0.99999912, 0.99999912, 0.99999912, 0.99999248,
0.99999248, 0.99999248, 0.99999248, 0.99994402, 0.99994402,
0.99994402, 0.99994402, 0.99964328, 0.99964328, 0.99964328,
0.99964328, 0.99809443, 0.99809443, 0.99809443, 0.99809443,
0.99169035, 0.99169035, 0.99169035, 0.99169035, 0.97126076,
0.97126076, 0.97126076, 0.97126076, 0.92272829, 0.92272829,
0.92272829, 0.92272829, 0.83776294, 0.83776294, 0.83776294,
0.83776294, 0.72464681, 0.72464681, 0.72464681, 0.72464681,
0.6136125 , 0.6136125 , 0.6136125 , 0.6136125 , 0.52827001,
0.52827001, 0.52827001, 0.52827001, 0.48410084, 0.48410084,
0.48410084, 0.48410084, 0.46873669, 0.46873669, 0.46873669,
0.46873669, 0.465321 , 0.465321 , 0.465321 , 0.465321 ,
0.46494758, 0.46494758, 0.46494758, 0.46494758, 0.46514031,
0.46514031, 0.46514031, 0.46514031, 0.46651691, 0.46651691,
0.46651691, 0.46651691, 0.46747205, 0.46747205, 0.46747205,
0.46747205, 0.46667036, 0.46667036, 0.46667036, 0.46667036,
0.45913733, 0.45913733, 0.45913733, 0.45913733, 0.42245963,
0.42245963, 0.42245963, 0.42245963, 0.30188464, 0.30188464,
0.30188464, 0.30188464, 0.14267451, 0.14267451, 0.14267451,
0.14267451, 0.10387503, 0.10387503, 0.10387503, 0.10387503,
0.10029258, 0.10029258, 0.10029258, 0.10029258, 0.10002151,
0.10002151, 0.10002151, 0.10002151, 0.10000158, 0.10000158,
0.10000158, 0.10000158, 0.10000012, 0.10000012, 0.10000012,
0.10000012, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99999137,
0.99999137, 0.99999137, 0.99999137, 0.9999399 , 0.9999399 ,
0.9999399 , 0.9999399 , 0.99964148, 0.99964148, 0.99964148,
0.99964148, 0.9982058 , 0.9982058 , 0.9982058 , 0.9982058 ,
0.99265642, 0.99265642, 0.99265642, 0.99265642, 0.97603583,
0.97603583, 0.97603583, 0.97603583, 0.93852726, 0.93852726,
0.93852726, 0.93852726, 0.87480059, 0.87480059, 0.87480059,
0.87480059, 0.79029824, 0.79029824, 0.79029824, 0.79029824,
0.70698986, 0.70698986, 0.70698986, 0.70698986, 0.6291912 ,
0.6291912 , 0.6291912 , 0.6291912 , 0.59965944, 0.59965944,
0.59965944, 0.59965944, 0.59596883, 0.59596883, 0.59596883,
0.59596883, 0.59053208, 0.59053208, 0.59053208, 0.59053208,
0.5754485 , 0.5754485 , 0.5754485 , 0.5754485 , 0.54568684,
0.54568684, 0.54568684, 0.54568684, 0.49942691, 0.49942691,
0.49942691, 0.49942691, 0.43715677, 0.43715677, 0.43715677,
0.43715677, 0.3785361 , 0.3785361 , 0.3785361 , 0.3785361 ,
0.34229804, 0.34229804, 0.34229804, 0.34229804, 0.31792866,
0.31792866, 0.31792866, 0.31792866, 0.28869213, 0.28869213,
0.28869213, 0.28869213, 0.21502361, 0.21502361, 0.21502361,
0.21502361, 0.14073628, 0.14073628, 0.14073628, 0.14073628,
0.12650253, 0.12650253, 0.12650253, 0.12650253, 0.12511712,
0.12511712, 0.12511712, 0.12511712, 0.12500873, 0.12500873,
0.12500873, 0.12500873, 0.12500064, 0.12500064, 0.12500064,
0.12500064, 0.12500005, 0.12500005, 0.12500005, 0.12500005,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
7.50000141e-01, 7.50000141e-01, 7.50000141e-01, 7.50000141e-01,
7.50001276e-01, 7.50001276e-01, 7.50001276e-01, 7.50001276e-01,
7.50010210e-01, 7.50010210e-01, 7.50010210e-01, 7.50010210e-01,
7.50071106e-01, 7.50071106e-01, 7.50071106e-01, 7.50071106e-01,
7.50424168e-01, 7.50424168e-01, 7.50424168e-01, 7.50424168e-01,
7.52123167e-01, 7.52123167e-01, 7.52123167e-01, 7.52123167e-01,
7.58705271e-01, 7.58705271e-01, 7.58705271e-01, 7.58705271e-01,
7.78604138e-01, 7.78604138e-01, 7.78604138e-01, 7.78604138e-01,
8.24667213e-01, 8.24667213e-01, 8.24667213e-01, 8.24667213e-01,
9.06930229e-01, 9.06930229e-01, 9.06930229e-01, 9.06930229e-01,
1.02400230e+00, 1.02400230e+00, 1.02400230e+00, 1.02400230e+00,
1.14543639e+00, 1.14543639e+00, 1.14543639e+00, 1.14543639e+00,
1.26083347e+00, 1.26083347e+00, 1.26083347e+00, 1.26083347e+00,
1.33169331e+00, 1.33169331e+00, 1.33169331e+00, 1.33169331e+00,
1.35558798e+00, 1.35558798e+00, 1.35558798e+00, 1.35558798e+00,
1.35748922e+00, 1.35748922e+00, 1.35748922e+00, 1.35748922e+00,
1.35707583e+00, 1.35707583e+00, 1.35707583e+00, 1.35707583e+00,
1.35801616e+00, 1.35801616e+00, 1.35801616e+00, 1.35801616e+00,
1.36080683e+00, 1.36080683e+00, 1.36080683e+00, 1.36080683e+00,
1.36564217e+00, 1.36564217e+00, 1.36564217e+00, 1.36564217e+00,
1.36731393e+00, 1.36731393e+00, 1.36731393e+00, 1.36731393e+00,
1.36391260e+00, 1.36391260e+00, 1.36391260e+00, 1.36391260e+00,
1.33675447e+00, 1.33675447e+00, 1.33675447e+00, 1.33675447e+00,
1.20527086e+00, 1.20527086e+00, 1.20527086e+00, 1.20527086e+00,
7.48851135e-01, 7.48851135e-01, 7.48851135e-01, 7.48851135e-01,
1.51176427e-01, 1.51176427e-01, 1.51176427e-01, 1.51176427e-01,
1.35019359e-02, 1.35019359e-02, 1.35019359e-02, 1.35019359e-02,
1.00744606e-03, 1.00744606e-03, 1.00744606e-03, 1.00744606e-03,
7.41979754e-05, 7.41979754e-05, 7.41979754e-05, 7.41979754e-05,
5.44259245e-06, 5.44259245e-06, 5.44259245e-06, 5.44259245e-06,
3.97695182e-07, 3.97695182e-07, 3.97695182e-07, 3.97695182e-07,
2.88737197e-08, 2.88737197e-08, 2.88737197e-08, 2.88737197e-08,
2.07323036e-09, 2.07323036e-09, 2.07323036e-09, 2.07323036e-09,
1.46378112e-10, 1.46378112e-10, 1.46378112e-10, 1.46378112e-10,
1.00972396e-11, 1.00972396e-11, 1.00972396e-11, 1.00972396e-11,
6.75961800e-13, 6.75961800e-13, 6.75961800e-13, 6.75961800e-13,
4.36475480e-14, 4.36475480e-14, 4.36475480e-14, 4.36475480e-14,
2.72468011e-15, 2.72468011e-15, 2.72468011e-15, 2.72468011e-15,
1.63168395e-16, 1.63168395e-16, 1.63168395e-16, 1.63168395e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999983, 0.99999983, 0.99999983, 0.99999983,
0.99999849, 0.99999849, 0.99999849, 0.99999849, 0.99998792,
0.99998792, 0.99998792, 0.99998792, 0.99991587, 0.99991587,
0.99991587, 0.99991587, 0.99949823, 0.99949823, 0.99949823,
0.99949823, 0.9974908 , 0.9974908 , 0.9974908 , 0.9974908 ,
0.98975108, 0.98975108, 0.98975108, 0.98975108, 0.96671385,
0.96671385, 0.96671385, 0.96671385, 0.91539051, 0.91539051,
0.91539051, 0.91539051, 0.83010759, 0.83010759, 0.83010759,
0.83010759, 0.72047423, 0.72047423, 0.72047423, 0.72047423,
0.61506756, 0.61506756, 0.61506756, 0.61506756, 0.53125219,
0.53125219, 0.53125219, 0.53125219, 0.48653051, 0.48653051,
0.48653051, 0.48653051, 0.47051006, 0.47051006, 0.47051006,
0.47051006, 0.46624138, 0.46624138, 0.46624138, 0.46624138,
0.46510466, 0.46510466, 0.46510466, 0.46510466, 0.46465008,
0.46465008, 0.46465008, 0.46465008, 0.4649645 , 0.4649645 ,
0.4649645 , 0.4649645 , 0.46635721, 0.46635721, 0.46635721,
0.46635721, 0.4669385 , 0.4669385 , 0.4669385 , 0.4669385 ,
0.46507386, 0.46507386, 0.46507386, 0.46507386, 0.45256509,
0.45256509, 0.45256509, 0.45256509, 0.39724826, 0.39724826,
0.39724826, 0.39724826, 0.24626608, 0.24626608, 0.24626608,
0.24626608, 0.12167041, 0.12167041, 0.12167041, 0.12167041,
0.10179518, 0.10179518, 0.10179518, 0.10179518, 0.10013331,
0.10013331, 0.10013331, 0.10013331, 0.10000982, 0.10000982,
0.10000982, 0.10000982, 0.10000072, 0.10000072, 0.10000072,
0.10000072, 0.10000005, 0.10000005, 0.10000005, 0.10000005,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999979, 0.99999979, 0.99999979, 0.99999979,
0.99999821, 0.99999821, 0.99999821, 0.99999821, 0.99998654,
0.99998654, 0.99998654, 0.99998654, 0.99991195, 0.99991195,
0.99991195, 0.99991195, 0.99950669, 0.99950669, 0.99950669,
0.99950669, 0.99768098, 0.99768098, 0.99768098, 0.99768098,
0.99107741, 0.99107741, 0.99107741, 0.99107741, 0.97254809,
0.97254809, 0.97254809, 0.97254809, 0.93314576, 0.93314576,
0.93314576, 0.93314576, 0.86931013, 0.86931013, 0.86931013,
0.86931013, 0.78745561, 0.78745561, 0.78745561, 0.78745561,
0.70912742, 0.70912742, 0.70912742, 0.70912742, 0.63224649,
0.63224649, 0.63224649, 0.63224649, 0.59761707, 0.59761707,
0.59761707, 0.59761707, 0.59438022, 0.59438022, 0.59438022,
0.59438022, 0.5922818 , 0.5922818 , 0.5922818 , 0.5922818 ,
0.58292186, 0.58292186, 0.58292186, 0.58292186, 0.56012924,
0.56012924, 0.56012924, 0.56012924, 0.52108056, 0.52108056,
0.52108056, 0.52108056, 0.46554919, 0.46554919, 0.46554919,
0.46554919, 0.40122218, 0.40122218, 0.40122218, 0.40122218,
0.35684472, 0.35684472, 0.35684472, 0.35684472, 0.33092508,
0.33092508, 0.33092508, 0.33092508, 0.3109016 , 0.3109016 ,
0.3109016 , 0.3109016 , 0.2745178 , 0.2745178 , 0.2745178 ,
0.2745178 , 0.18574868, 0.18574868, 0.18574868, 0.18574868,
0.13312446, 0.13312446, 0.13312446, 0.13312446, 0.12570243,
0.12570243, 0.12570243, 0.12570243, 0.12505374, 0.12505374,
0.12505374, 0.12505374, 0.12500399, 0.12500399, 0.12500399,
0.12500399, 0.12500029, 0.12500029, 0.12500029, 0.12500029,
0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
7.50000249e-01, 7.50000249e-01, 7.50000249e-01, 7.50000249e-01,
7.50002122e-01, 7.50002122e-01, 7.50002122e-01, 7.50002122e-01,
7.50015931e-01, 7.50015931e-01, 7.50015931e-01, 7.50015931e-01,
7.50104174e-01, 7.50104174e-01, 7.50104174e-01, 7.50104174e-01,
7.50583657e-01, 7.50583657e-01, 7.50583657e-01, 7.50583657e-01,
7.52744722e-01, 7.52744722e-01, 7.52744722e-01, 7.52744722e-01,
7.60584516e-01, 7.60584516e-01, 7.60584516e-01, 7.60584516e-01,
7.82823347e-01, 7.82823347e-01, 7.82823347e-01, 7.82823347e-01,
8.31422691e-01, 8.31422691e-01, 8.31422691e-01, 8.31422691e-01,
9.14253491e-01, 9.14253491e-01, 9.14253491e-01, 9.14253491e-01,
1.02753151e+00, 1.02753151e+00, 1.02753151e+00, 1.02753151e+00,
1.14446418e+00, 1.14446418e+00, 1.14446418e+00, 1.14446418e+00,
1.25572429e+00, 1.25572429e+00, 1.25572429e+00, 1.25572429e+00,
1.32726860e+00, 1.32726860e+00, 1.32726860e+00, 1.32726860e+00,
1.35494148e+00, 1.35494148e+00, 1.35494148e+00, 1.35494148e+00,
1.35862615e+00, 1.35862615e+00, 1.35862615e+00, 1.35862615e+00,
1.35792280e+00, 1.35792280e+00, 1.35792280e+00, 1.35792280e+00,
1.35790930e+00, 1.35790930e+00, 1.35790930e+00, 1.35790930e+00,
1.35939545e+00, 1.35939545e+00, 1.35939545e+00, 1.35939545e+00,
1.36269094e+00, 1.36269094e+00, 1.36269094e+00, 1.36269094e+00,
1.36606975e+00, 1.36606975e+00, 1.36606975e+00, 1.36606975e+00,
1.36643658e+00, 1.36643658e+00, 1.36643658e+00, 1.36643658e+00,
1.35906893e+00, 1.35906893e+00, 1.35906893e+00, 1.35906893e+00,
1.31349500e+00, 1.31349500e+00, 1.31349500e+00, 1.31349500e+00,
1.11168051e+00, 1.11168051e+00, 1.11168051e+00, 1.11168051e+00,
5.39000363e-01, 5.39000363e-01, 5.39000363e-01, 5.39000363e-01,
7.70165641e-02, 7.70165641e-02, 7.70165641e-02, 7.70165641e-02,
6.19417821e-03, 6.19417821e-03, 6.19417821e-03, 6.19417821e-03,
4.59703599e-04, 4.59703599e-04, 4.59703599e-04, 4.59703599e-04,
3.38422021e-05, 3.38422021e-05, 3.38422021e-05, 3.38422021e-05,
2.48403190e-06, 2.48403190e-06, 2.48403190e-06, 2.48403190e-06,
1.81703671e-07, 1.81703671e-07, 1.81703671e-07, 1.81703671e-07,
1.32143978e-08, 1.32143978e-08, 1.32143978e-08, 1.32143978e-08,
9.51971465e-10, 9.51971465e-10, 9.51971465e-10, 9.51971465e-10,
6.75952916e-11, 6.75952916e-11, 6.75952916e-11, 6.75952916e-11,
4.70333296e-12, 4.70333296e-12, 4.70333296e-12, 4.70333296e-12,
3.18764056e-13, 3.18764056e-13, 3.18764056e-13, 3.18764056e-13,
2.09144307e-14, 2.09144307e-14, 2.09144307e-14, 2.09144307e-14,
1.34091434e-15, 1.34091434e-15, 1.34091434e-15, 1.34091434e-15,
7.02262902e-17, 7.02262902e-17, 7.02262902e-17, 7.02262902e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
0.99999749, 0.99999749, 0.99999749, 0.99999749, 0.99998115,
0.99998115, 0.99998115, 0.99998115, 0.99987675, 0.99987675,
0.99987675, 0.99987675, 0.99930963, 0.99930963, 0.99930963,
0.99930963, 0.9967574 , 0.9967574 , 0.9967574 , 0.9967574 ,
0.98755235, 0.98755235, 0.98755235, 0.98755235, 0.961897 ,
0.961897 , 0.961897 , 0.961897 , 0.90807418, 0.90807418,
0.90807418, 0.90807418, 0.82280457, 0.82280457, 0.82280457,
0.82280457, 0.71660108, 0.71660108, 0.71660108, 0.71660108,
0.61647152, 0.61647152, 0.61647152, 0.61647152, 0.53433754,
0.53433754, 0.53433754, 0.53433754, 0.48862858, 0.48862858,
0.48862858, 0.48862858, 0.47191446, 0.47191446, 0.47191446,
0.47191446, 0.46731186, 0.46731186, 0.46731186, 0.46731186,
0.46568567, 0.46568567, 0.46568567, 0.46568567, 0.46466716,
0.46466716, 0.46466716, 0.46466716, 0.46428833, 0.46428833,
0.46428833, 0.46428833, 0.46483777, 0.46483777, 0.46483777,
0.46483777, 0.46633071, 0.46633071, 0.46633071, 0.46633071,
0.46626754, 0.46626754, 0.46626754, 0.46626754, 0.46271596,
0.46271596, 0.46271596, 0.46271596, 0.44260208, 0.44260208,
0.44260208, 0.44260208, 0.36235029, 0.36235029, 0.36235029,
0.36235029, 0.19361303, 0.19361303, 0.19361303, 0.19361303,
0.11058547, 0.11058547, 0.11058547, 0.11058547, 0.10082107,
0.10082107, 0.10082107, 0.10082107, 0.10006082, 0.10006082,
0.10006082, 0.10006082, 0.10000448, 0.10000448, 0.10000448,
0.10000448, 0.10000033, 0.10000033, 0.10000033, 0.10000033,
0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999996, 0.99999996, 0.99999996,
0.99999996, 0.99999964, 0.99999964, 0.99999964, 0.99999964,
0.99999711, 0.99999711, 0.99999711, 0.99999711, 0.99997953,
0.99997953, 0.99997953, 0.99997953, 0.99987394, 0.99987394,
0.99987394, 0.99987394, 0.99933463, 0.99933463, 0.99933463,
0.99933463, 0.99705312, 0.99705312, 0.99705312, 0.99705312,
0.98930851, 0.98930851, 0.98930851, 0.98930851, 0.96888183,
0.96888183, 0.96888183, 0.96888183, 0.92779564, 0.92779564,
0.92779564, 0.92779564, 0.86405491, 0.86405491, 0.86405491,
0.86405491, 0.78470523, 0.78470523, 0.78470523, 0.78470523,
0.71095409, 0.71095409, 0.71095409, 0.71095409, 0.63622824,
0.63622824, 0.63622824, 0.63622824, 0.59650729, 0.59650729,
0.59650729, 0.59650729, 0.59187689, 0.59187689, 0.59187689,
0.59187689, 0.59231137, 0.59231137, 0.59231137, 0.59231137,
0.58763049, 0.58763049, 0.58763049, 0.58763049, 0.57146876,
0.57146876, 0.57146876, 0.57146876, 0.53974952, 0.53974952,
0.53974952, 0.53974952, 0.49128145, 0.49128145, 0.49128145,
0.49128145, 0.4279453 , 0.4279453 , 0.4279453 , 0.4279453 ,
0.37383925, 0.37383925, 0.37383925, 0.37383925, 0.34208564,
0.34208564, 0.34208564, 0.34208564, 0.32336538, 0.32336538,
0.32336538, 0.32336538, 0.30459933, 0.30459933, 0.30459933,
0.30459933, 0.25375017, 0.25375017, 0.25375017, 0.25375017,
0.1610919 , 0.1610919 , 0.1610919 , 0.1610919 , 0.12897793,
0.12897793, 0.12897793, 0.12897793, 0.12532639, 0.12532639,
0.12532639, 0.12532639, 0.1250246 , 0.1250246 , 0.1250246 ,
0.1250246 , 0.12500182, 0.12500182, 0.12500182, 0.12500182,
0.12500013, 0.12500013, 0.12500013, 0.12500013, 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
7.50000048e-01, 7.50000048e-01, 7.50000048e-01, 7.50000048e-01,
7.50000428e-01, 7.50000428e-01, 7.50000428e-01, 7.50000428e-01,
7.50003425e-01, 7.50003425e-01, 7.50003425e-01, 7.50003425e-01,
7.50024215e-01, 7.50024215e-01, 7.50024215e-01, 7.50024215e-01,
7.50149149e-01, 7.50149149e-01, 7.50149149e-01, 7.50149149e-01,
7.50787259e-01, 7.50787259e-01, 7.50787259e-01, 7.50787259e-01,
7.53488669e-01, 7.53488669e-01, 7.53488669e-01, 7.53488669e-01,
7.62693058e-01, 7.62693058e-01, 7.62693058e-01, 7.62693058e-01,
7.87273690e-01, 7.87273690e-01, 7.87273690e-01, 7.87273690e-01,
8.38170390e-01, 8.38170390e-01, 8.38170390e-01, 8.38170390e-01,
9.21264845e-01, 9.21264845e-01, 9.21264845e-01, 9.21264845e-01,
1.03075711e+00, 1.03075711e+00, 1.03075711e+00, 1.03075711e+00,
1.14341648e+00, 1.14341648e+00, 1.14341648e+00, 1.14341648e+00,
1.25118970e+00, 1.25118970e+00, 1.25118970e+00, 1.25118970e+00,
1.32270364e+00, 1.32270364e+00, 1.32270364e+00, 1.32270364e+00,
1.35337313e+00, 1.35337313e+00, 1.35337313e+00, 1.35337313e+00,
1.35937786e+00, 1.35937786e+00, 1.35937786e+00, 1.35937786e+00,
1.35905340e+00, 1.35905340e+00, 1.35905340e+00, 1.35905340e+00,
1.35850392e+00, 1.35850392e+00, 1.35850392e+00, 1.35850392e+00,
1.35894967e+00, 1.35894967e+00, 1.35894967e+00, 1.35894967e+00,
1.36090221e+00, 1.36090221e+00, 1.36090221e+00, 1.36090221e+00,
1.36370505e+00, 1.36370505e+00, 1.36370505e+00, 1.36370505e+00,
1.36598769e+00, 1.36598769e+00, 1.36598769e+00, 1.36598769e+00,
1.36486873e+00, 1.36486873e+00, 1.36486873e+00, 1.36486873e+00,
1.35070633e+00, 1.35070633e+00, 1.35070633e+00, 1.35070633e+00,
1.27741452e+00, 1.27741452e+00, 1.27741452e+00, 1.27741452e+00,
9.81464738e-01, 9.81464738e-01, 9.81464738e-01, 9.81464738e-01,
3.36046188e-01, 3.36046188e-01, 3.36046188e-01, 3.36046188e-01,
3.68463062e-02, 3.68463062e-02, 3.68463062e-02, 3.68463062e-02,
2.83912454e-03, 2.83912454e-03, 2.83912454e-03, 2.83912454e-03,
2.09688885e-04, 2.09688885e-04, 2.09688885e-04, 2.09688885e-04,
1.54316406e-05, 1.54316406e-05, 1.54316406e-05, 1.54316406e-05,
1.13356929e-06, 1.13356929e-06, 1.13356929e-06, 1.13356929e-06,
8.29963615e-08, 8.29963615e-08, 8.29963615e-08, 8.29963615e-08,
6.04553786e-09, 6.04553786e-09, 6.04553786e-09, 6.04553786e-09,
4.36752195e-10, 4.36752195e-10, 4.36752195e-10, 4.36752195e-10,
3.11603660e-11, 3.11603660e-11, 3.11603660e-11, 3.11603660e-11,
2.18424142e-12, 2.18424142e-12, 2.18424142e-12, 2.18424142e-12,
1.49600112e-13, 1.49600112e-13, 1.49600112e-13, 1.49600112e-13,
9.91152530e-15, 9.91152530e-15, 9.91152530e-15, 9.91152530e-15,
6.43616174e-16, 6.43616174e-16, 6.43616174e-16, 6.43616174e-16,
3.40906797e-17, 3.40906797e-17, 3.40906797e-17, 3.40906797e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999994, 0.99999994, 0.99999994,
0.99999994, 0.99999949, 0.99999949, 0.99999949, 0.99999949,
0.99999595, 0.99999595, 0.99999595, 0.99999595, 0.99997135,
0.99997135, 0.99997135, 0.99997135, 0.99982354, 0.99982354,
0.99982354, 0.99982354, 0.9990689 , 0.9990689 , 0.9990689 ,
0.9990689 , 0.99588029, 0.99588029, 0.99588029, 0.99588029,
0.98509107, 0.98509107, 0.98509107, 0.98509107, 0.95684085,
0.95684085, 0.95684085, 0.95684085, 0.90081585, 0.90081585,
0.90081585, 0.90081585, 0.81585349, 0.81585349, 0.81585349,
0.81585349, 0.71306117, 0.71306117, 0.71306117, 0.71306117,
0.61770042, 0.61770042, 0.61770042, 0.61770042, 0.53754808,
0.53754808, 0.53754808, 0.53754808, 0.49069344, 0.49069344,
0.49069344, 0.49069344, 0.47291767, 0.47291767, 0.47291767,
0.47291767, 0.46823402, 0.46823402, 0.46823402, 0.46823402,
0.46647842, 0.46647842, 0.46647842, 0.46647842, 0.46510214,
0.46510214, 0.46510214, 0.46510214, 0.46413565, 0.46413565,
0.46413565, 0.46413565, 0.46395683, 0.46395683, 0.46395683,
0.46395683, 0.46511952, 0.46511952, 0.46511952, 0.46511952,
0.46605603, 0.46605603, 0.46605603, 0.46605603, 0.46541207,
0.46541207, 0.46541207, 0.46541207, 0.45926933, 0.45926933,
0.45926933, 0.45926933, 0.42726405, 0.42726405, 0.42726405,
0.42726405, 0.31664309, 0.31664309, 0.31664309, 0.31664309,
0.15234215, 0.15234215, 0.15234215, 0.15234215, 0.10495591,
0.10495591, 0.10495591, 0.10495591, 0.10037589, 0.10037589,
0.10037589, 0.10037589, 0.10002774, 0.10002774, 0.10002774,
0.10002774, 0.10000204, 0.10000204, 0.10000204, 0.10000204,
0.10000015, 0.10000015, 0.10000015, 0.10000015, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999993, 0.99999993, 0.99999993,
0.99999993, 0.9999994 , 0.9999994 , 0.9999994 , 0.9999994 ,
0.99999545, 0.99999545, 0.99999545, 0.99999545, 0.99996962,
0.99996962, 0.99996962, 0.99996962, 0.99982324, 0.99982324,
0.99982324, 0.99982324, 0.9991187 , 0.9991187 , 0.9991187 ,
0.9991187 , 0.9963127 , 0.9963127 , 0.9963127 , 0.9963127 ,
0.98734973, 0.98734973, 0.98734973, 0.98734973, 0.96505957,
0.96505957, 0.96505957, 0.96505957, 0.92250062, 0.92250062,
0.92250062, 0.92250062, 0.85904285, 0.85904285, 0.85904285,
0.85904285, 0.78210563, 0.78210563, 0.78210563, 0.78210563,
0.71214743, 0.71214743, 0.71214743, 0.71214743, 0.64091277,
0.64091277, 0.64091277, 0.64091277, 0.5967045 , 0.5967045 ,
0.5967045 , 0.5967045 , 0.58917295, 0.58917295, 0.58917295,
0.58917295, 0.59108358, 0.59108358, 0.59108358, 0.59108358,
0.58980314, 0.58980314, 0.58980314, 0.58980314, 0.57968492,
0.57968492, 0.57968492, 0.57968492, 0.5552647 , 0.5552647 ,
0.5552647 , 0.5552647 , 0.51411927, 0.51411927, 0.51411927,
0.51411927, 0.45652797, 0.45652797, 0.45652797, 0.45652797,
0.39426685, 0.39426685, 0.39426685, 0.39426685, 0.35435985,
0.35435985, 0.35435985, 0.35435985, 0.33267462, 0.33267462,
0.33267462, 0.33267462, 0.3183219 , 0.3183219 , 0.3183219 ,
0.3183219 , 0.29605972, 0.29605972, 0.29605972, 0.29605972,
0.22620934, 0.22620934, 0.22620934, 0.22620934, 0.1443368 ,
0.1443368 , 0.1443368 , 0.1443368 , 0.12690967, 0.12690967,
0.12690967, 0.12690967, 0.12515044, 0.12515044, 0.12515044,
0.12515044, 0.12501125, 0.12501125, 0.12501125, 0.12501125,
0.12500083, 0.12500083, 0.12500083, 0.12500083, 0.12500006,
0.12500006, 0.12500006, 0.12500006, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000084e-01, 7.50000084e-01, 7.50000084e-01, 7.50000084e-01,
7.50000712e-01, 7.50000712e-01, 7.50000712e-01, 7.50000712e-01,
7.50005384e-01, 7.50005384e-01, 7.50005384e-01, 7.50005384e-01,
7.50035944e-01, 7.50035944e-01, 7.50035944e-01, 7.50035944e-01,
7.50209136e-01, 7.50209136e-01, 7.50209136e-01, 7.50209136e-01,
7.51042813e-01, 7.51042813e-01, 7.51042813e-01, 7.51042813e-01,
7.54366472e-01, 7.54366472e-01, 7.54366472e-01, 7.54366472e-01,
7.65032020e-01, 7.65032020e-01, 7.65032020e-01, 7.65032020e-01,
7.91929802e-01, 7.91929802e-01, 7.91929802e-01, 7.91929802e-01,
8.44879000e-01, 8.44879000e-01, 8.44879000e-01, 8.44879000e-01,
9.27961552e-01, 9.27961552e-01, 9.27961552e-01, 9.27961552e-01,
1.03376284e+00, 1.03376284e+00, 1.03376284e+00, 1.03376284e+00,
1.14223005e+00, 1.14223005e+00, 1.14223005e+00, 1.14223005e+00,
1.24703626e+00, 1.24703626e+00, 1.24703626e+00, 1.24703626e+00,
1.31835154e+00, 1.31835154e+00, 1.31835154e+00, 1.31835154e+00,
1.35115729e+00, 1.35115729e+00, 1.35115729e+00, 1.35115729e+00,
1.35952683e+00, 1.35952683e+00, 1.35952683e+00, 1.35952683e+00,
1.36000050e+00, 1.36000050e+00, 1.36000050e+00, 1.36000050e+00,
1.35946783e+00, 1.35946783e+00, 1.35946783e+00, 1.35946783e+00,
1.35931504e+00, 1.35931504e+00, 1.35931504e+00, 1.35931504e+00,
1.36014004e+00, 1.36014004e+00, 1.36014004e+00, 1.36014004e+00,
1.36169449e+00, 1.36169449e+00, 1.36169449e+00, 1.36169449e+00,
1.36442795e+00, 1.36442795e+00, 1.36442795e+00, 1.36442795e+00,
1.36544109e+00, 1.36544109e+00, 1.36544109e+00, 1.36544109e+00,
1.36179797e+00, 1.36179797e+00, 1.36179797e+00, 1.36179797e+00,
1.33753550e+00, 1.33753550e+00, 1.33753550e+00, 1.33753550e+00,
1.22289370e+00, 1.22289370e+00, 1.22289370e+00, 1.22289370e+00,
8.07609730e-01, 8.07609730e-01, 8.07609730e-01, 8.07609730e-01,
1.84578851e-01, 1.84578851e-01, 1.84578851e-01, 1.84578851e-01,
1.72459356e-02, 1.72459356e-02, 1.72459356e-02, 1.72459356e-02,
1.29636420e-03, 1.29636420e-03, 1.29636420e-03, 1.29636420e-03,
9.56231757e-05, 9.56231757e-05, 9.56231757e-05, 9.56231757e-05,
7.03861571e-06, 7.03861571e-06, 7.03861571e-06, 7.03861571e-06,
5.17203032e-07, 5.17203032e-07, 5.17203032e-07, 5.17203032e-07,
3.79012480e-08, 3.79012480e-08, 3.79012480e-08, 3.79012480e-08,
2.76477945e-09, 2.76477945e-09, 2.76477945e-09, 2.76477945e-09,
2.00229731e-10, 2.00229731e-10, 2.00229731e-10, 2.00229731e-10,
1.43439296e-11, 1.43439296e-11, 1.43439296e-11, 1.43439296e-11,
1.01180886e-12, 1.01180886e-12, 1.01180886e-12, 1.01180886e-12,
6.98829576e-14, 6.98829576e-14, 6.98829576e-14, 6.98829576e-14,
4.66606318e-15, 4.66606318e-15, 4.66606318e-15, 4.66606318e-15,
3.37838020e-16, 3.37838020e-16, 3.37838020e-16, 3.37838020e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999916, 0.99999916, 0.99999916, 0.99999916,
0.99999363, 0.99999363, 0.99999363, 0.99999363, 0.99995747,
0.99995747, 0.99995747, 0.99995747, 0.99975257, 0.99975257,
0.99975257, 0.99975257, 0.99876684, 0.99876684, 0.99876684,
0.99876684, 0.99484634, 0.99484634, 0.99484634, 0.99484634,
0.98236786, 0.98236786, 0.98236786, 0.98236786, 0.95157745,
0.95157745, 0.95157745, 0.95157745, 0.89364753, 0.89364753,
0.89364753, 0.89364753, 0.80925164, 0.80925164, 0.80925164,
0.80925164, 0.70985244, 0.70985244, 0.70985244, 0.70985244,
0.61872344, 0.61872344, 0.61872344, 0.61872344, 0.54078556,
0.54078556, 0.54078556, 0.54078556, 0.49293771, 0.49293771,
0.49293771, 0.49293771, 0.47368455, 0.47368455, 0.47368455,
0.47368455, 0.46885678, 0.46885678, 0.46885678, 0.46885678,
0.46721006, 0.46721006, 0.46721006, 0.46721006, 0.46578019,
0.46578019, 0.46578019, 0.46578019, 0.46443757, 0.46443757,
0.46443757, 0.46443757, 0.46363693, 0.46363693, 0.46363693,
0.46363693, 0.46405796, 0.46405796, 0.46405796, 0.46405796,
0.46529802, 0.46529802, 0.46529802, 0.46529802, 0.46568405,
0.46568405, 0.46568405, 0.46568405, 0.46436586, 0.46436586,
0.46436586, 0.46436586, 0.45372193, 0.45372193, 0.45372193,
0.45372193, 0.40428218, 0.40428218, 0.40428218, 0.40428218,
0.26242895, 0.26242895, 0.26242895, 0.26242895, 0.12688139,
0.12688139, 0.12688139, 0.12688139, 0.10229679, 0.10229679,
0.10229679, 0.10229679, 0.10017155, 0.10017155, 0.10017155,
0.10017155, 0.10001265, 0.10001265, 0.10001265, 0.10001265,
0.10000093, 0.10000093, 0.10000093, 0.10000093, 0.10000007,
0.10000007, 0.10000007, 0.10000007, 0.10000001, 0.10000001,
0.10000001, 0.10000001, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999988, 0.99999988, 0.99999988,
0.99999988, 0.99999902, 0.99999902, 0.99999902, 0.99999902,
0.99999302, 0.99999302, 0.99999302, 0.99999302, 0.99995587,
0.99995587, 0.99995587, 0.99995587, 0.99975682, 0.99975682,
0.99975682, 0.99975682, 0.99885188, 0.99885188, 0.99885188,
0.99885188, 0.99545106, 0.99545106, 0.99545106, 0.99545106,
0.98520362, 0.98520362, 0.98520362, 0.98520362, 0.96110441,
0.96110441, 0.96110441, 0.96110441, 0.91728156, 0.91728156,
0.91728156, 0.91728156, 0.85427981, 0.85427981, 0.85427981,
0.85427981, 0.77971476, 0.77971476, 0.77971476, 0.77971476,
0.71287025, 0.71287025, 0.71287025, 0.71287025, 0.64564457,
0.64564457, 0.64564457, 0.64564457, 0.59826562, 0.59826562,
0.59826562, 0.59826562, 0.58691045, 0.58691045, 0.58691045,
0.58691045, 0.58906206, 0.58906206, 0.58906206, 0.58906206,
0.59003485, 0.59003485, 0.59003485, 0.59003485, 0.58486504,
0.58486504, 0.58486504, 0.58486504, 0.56744401, 0.56744401,
0.56744401, 0.56744401, 0.53390234, 0.53390234, 0.53390234,
0.53390234, 0.48345644, 0.48345644, 0.48345644, 0.48345644,
0.41935629, 0.41935629, 0.41935629, 0.41935629, 0.3694156 ,
0.3694156 , 0.3694156 , 0.3694156 , 0.34157081, 0.34157081,
0.34157081, 0.34157081, 0.3267349 , 0.3267349 , 0.3267349 ,
0.3267349 , 0.31430765, 0.31430765, 0.31430765, 0.31430765,
0.28309759, 0.28309759, 0.28309759, 0.28309759, 0.19541361,
0.19541361, 0.19541361, 0.19541361, 0.13508752, 0.13508752,
0.13508752, 0.13508752, 0.12589416, 0.12589416, 0.12589416,
0.12589416, 0.12506897, 0.12506897, 0.12506897, 0.12506897,
0.12500514, 0.12500514, 0.12500514, 0.12500514, 0.12500038,
0.12500038, 0.12500038, 0.12500038, 0.12500003, 0.12500003,
0.12500003, 0.12500003, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
7.50000144e-01, 7.50000144e-01, 7.50000144e-01, 7.50000144e-01,
7.50001154e-01, 7.50001154e-01, 7.50001154e-01, 7.50001154e-01,
7.50008260e-01, 7.50008260e-01, 7.50008260e-01, 7.50008260e-01,
7.50052218e-01, 7.50052218e-01, 7.50052218e-01, 7.50052218e-01,
7.50287727e-01, 7.50287727e-01, 7.50287727e-01, 7.50287727e-01,
7.51358635e-01, 7.51358635e-01, 7.51358635e-01, 7.51358635e-01,
7.55388706e-01, 7.55388706e-01, 7.55388706e-01, 7.55388706e-01,
7.67599601e-01, 7.67599601e-01, 7.67599601e-01, 7.67599601e-01,
7.96765297e-01, 7.96765297e-01, 7.96765297e-01, 7.96765297e-01,
8.51520678e-01, 8.51520678e-01, 8.51520678e-01, 8.51520678e-01,
9.34344216e-01, 9.34344216e-01, 9.34344216e-01, 9.34344216e-01,
1.03659724e+00, 1.03659724e+00, 1.03659724e+00, 1.03659724e+00,
1.14096365e+00, 1.14096365e+00, 1.14096365e+00, 1.14096365e+00,
1.24306837e+00, 1.24306837e+00, 1.24306837e+00, 1.24306837e+00,
1.31432670e+00, 1.31432670e+00, 1.31432670e+00, 1.31432670e+00,
1.34867754e+00, 1.34867754e+00, 1.34867754e+00, 1.34867754e+00,
1.35900751e+00, 1.35900751e+00, 1.35900751e+00, 1.35900751e+00,
1.36059408e+00, 1.36059408e+00, 1.36059408e+00, 1.36059408e+00,
1.36044668e+00, 1.36044668e+00, 1.36044668e+00, 1.36044668e+00,
1.36010596e+00, 1.36010596e+00, 1.36010596e+00, 1.36010596e+00,
1.36018463e+00, 1.36018463e+00, 1.36018463e+00, 1.36018463e+00,
1.36083030e+00, 1.36083030e+00, 1.36083030e+00, 1.36083030e+00,
1.36234837e+00, 1.36234837e+00, 1.36234837e+00, 1.36234837e+00,
1.36463009e+00, 1.36463009e+00, 1.36463009e+00, 1.36463009e+00,
1.36410988e+00, 1.36410988e+00, 1.36410988e+00, 1.36410988e+00,
1.35701598e+00, 1.35701598e+00, 1.35701598e+00, 1.35701598e+00,
1.31740523e+00, 1.31740523e+00, 1.31740523e+00, 1.31740523e+00,
1.13985851e+00, 1.13985851e+00, 1.13985851e+00, 1.13985851e+00,
6.02207928e-01, 6.02207928e-01, 6.02207928e-01, 6.02207928e-01,
9.54826887e-02, 9.54826887e-02, 9.54826887e-02, 9.54826887e-02,
7.91081899e-03, 7.91081899e-03, 7.91081899e-03, 7.91081899e-03,
5.90658670e-04, 5.90658670e-04, 5.90658670e-04, 5.90658670e-04,
4.36023608e-05, 4.36023608e-05, 4.36023608e-05, 4.36023608e-05,
3.20991156e-06, 3.20991156e-06, 3.20991156e-06, 3.20991156e-06,
2.35963719e-07, 2.35963719e-07, 2.35963719e-07, 2.35963719e-07,
1.73040175e-08, 1.73040175e-08, 1.73040175e-08, 1.73040175e-08,
1.26389111e-09, 1.26389111e-09, 1.26389111e-09, 1.26389111e-09,
9.17314216e-11, 9.17314216e-11, 9.17314216e-11, 9.17314216e-11,
6.59454231e-12, 6.59454231e-12, 6.59454231e-12, 6.59454231e-12,
4.67644782e-13, 4.67644782e-13, 4.67644782e-13, 4.67644782e-13,
3.25389011e-14, 3.25389011e-14, 3.25389011e-14, 3.25389011e-14,
2.17274114e-15, 2.17274114e-15, 2.17274114e-15, 2.17274114e-15,
1.63514197e-16, 1.63514197e-16, 1.63514197e-16, 1.63514197e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999983, 0.99999983, 0.99999983,
0.99999983, 0.99999863, 0.99999863, 0.99999863, 0.99999863,
0.99999023, 0.99999023, 0.99999023, 0.99999023, 0.99993822,
0.99993822, 0.99993822, 0.99993822, 0.99965961, 0.99965961,
0.99965961, 0.99965961, 0.99839366, 0.99839366, 0.99839366,
0.99839366, 0.99364361, 0.99364361, 0.99364361, 0.99364361,
0.9793869 , 0.9793869 , 0.9793869 , 0.9793869 , 0.94613945,
0.94613945, 0.94613945, 0.94613945, 0.88659682, 0.88659682,
0.88659682, 0.88659682, 0.80299287, 0.80299287, 0.80299287,
0.80299287, 0.70694993, 0.70694993, 0.70694993, 0.70694993,
0.61957684, 0.61957684, 0.61957684, 0.61957684, 0.54392052,
0.54392052, 0.54392052, 0.54392052, 0.49542686, 0.49542686,
0.49542686, 0.49542686, 0.47445103, 0.47445103, 0.47445103,
0.47445103, 0.46915145, 0.46915145, 0.46915145, 0.46915145,
0.46775039, 0.46775039, 0.46775039, 0.46775039, 0.4664833 ,
0.4664833 , 0.4664833 , 0.4664833 , 0.46501843, 0.46501843,
0.46501843, 0.46501843, 0.46374393, 0.46374393, 0.46374393,
0.46374393, 0.46361884, 0.46361884, 0.46361884, 0.46361884,
0.46424828, 0.46424828, 0.46424828, 0.46424828, 0.46530062,
0.46530062, 0.46530062, 0.46530062, 0.46544329, 0.46544329,
0.46544329, 0.46544329, 0.46257326, 0.46257326, 0.46257326,
0.46257326, 0.44471278, 0.44471278, 0.44471278, 0.44471278,
0.37244248, 0.37244248, 0.37244248, 0.37244248, 0.20801386,
0.20801386, 0.20801386, 0.20801386, 0.11324933, 0.11324933,
0.11324933, 0.11324933, 0.10104929, 0.10104929, 0.10104929,
0.10104929, 0.10007815, 0.10007815, 0.10007815, 0.10007815,
0.10000577, 0.10000577, 0.10000577, 0.10000577, 0.10000042,
0.10000042, 0.10000042, 0.10000042, 0.10000003, 0.10000003,
0.10000003, 0.10000003, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.9999998 , 0.9999998 , 0.9999998 ,
0.9999998 , 0.99999846, 0.99999846, 0.99999846, 0.99999846,
0.99998952, 0.99998952, 0.99998952, 0.99998952, 0.99993714,
0.99993714, 0.99993714, 0.99993714, 0.99967122, 0.99967122,
0.99967122, 0.99967122, 0.99852689, 0.99852689, 0.99852689,
0.99852689, 0.99446052, 0.99446052, 0.99446052, 0.99446052,
0.98287516, 0.98287516, 0.98287516, 0.98287516, 0.95703951,
0.95703951, 0.95703951, 0.95703951, 0.91215643, 0.91215643,
0.91215643, 0.91215643, 0.8497645 , 0.8497645 , 0.8497645 ,
0.8497645 , 0.77754676, 0.77754676, 0.77754676, 0.77754676,
0.71330927, 0.71330927, 0.71330927, 0.71330927, 0.64997203,
0.64997203, 0.64997203, 0.64997203, 0.60097098, 0.60097098,
0.60097098, 0.60097098, 0.58535154, 0.58535154, 0.58535154,
0.58535154, 0.58659819, 0.58659819, 0.58659819, 0.58659819,
0.58934885, 0.58934885, 0.58934885, 0.58934885, 0.58736059,
0.58736059, 0.58736059, 0.58736059, 0.57621724, 0.57621724,
0.57621724, 0.57621724, 0.55034135, 0.55034135, 0.55034135,
0.55034135, 0.50742676, 0.50742676, 0.50742676, 0.50742676,
0.44761191, 0.44761191, 0.44761191, 0.44761191, 0.38816796,
0.38816796, 0.38816796, 0.38816796, 0.35214391, 0.35214391,
0.35214391, 0.35214391, 0.3335225 , 0.3335225 , 0.3335225 ,
0.3335225 , 0.32286182, 0.32286182, 0.32286182, 0.32286182,
0.30990165, 0.30990165, 0.30990165, 0.30990165, 0.26354073,
0.26354073, 0.26354073, 0.26354073, 0.16798532, 0.16798532,
0.16798532, 0.16798532, 0.1299533 , 0.1299533 , 0.1299533 ,
0.1299533 , 0.12541416, 0.12541416, 0.12541416, 0.12541416,
0.12503153, 0.12503153, 0.12503153, 0.12503153, 0.12500234,
0.12500234, 0.12500234, 0.12500234, 0.12500017, 0.12500017,
0.12500017, 0.12500017, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
7.50000240e-01, 7.50000240e-01, 7.50000240e-01, 7.50000240e-01,
7.50001825e-01, 7.50001825e-01, 7.50001825e-01, 7.50001825e-01,
7.50012395e-01, 7.50012395e-01, 7.50012395e-01, 7.50012395e-01,
7.50074381e-01, 7.50074381e-01, 7.50074381e-01, 7.50074381e-01,
7.50389013e-01, 7.50389013e-01, 7.50389013e-01, 7.50389013e-01,
7.51743396e-01, 7.51743396e-01, 7.51743396e-01, 7.51743396e-01,
7.56564809e-01, 7.56564809e-01, 7.56564809e-01, 7.56564809e-01,
7.70391197e-01, 7.70391197e-01, 7.70391197e-01, 7.70391197e-01,
8.01753316e-01, 8.01753316e-01, 8.01753316e-01, 8.01753316e-01,
8.58071057e-01, 8.58071057e-01, 8.58071057e-01, 8.58071057e-01,
9.40417104e-01, 9.40417104e-01, 9.40417104e-01, 9.40417104e-01,
1.03928138e+00, 1.03928138e+00, 1.03928138e+00, 1.03928138e+00,
1.13970389e+00, 1.13970389e+00, 1.13970389e+00, 1.13970389e+00,
1.23914812e+00, 1.23914812e+00, 1.23914812e+00, 1.23914812e+00,
1.31054875e+00, 1.31054875e+00, 1.31054875e+00, 1.31054875e+00,
1.34625395e+00, 1.34625395e+00, 1.34625395e+00, 1.34625395e+00,
1.35799687e+00, 1.35799687e+00, 1.35799687e+00, 1.35799687e+00,
1.36074574e+00, 1.36074574e+00, 1.36074574e+00, 1.36074574e+00,
1.36111035e+00, 1.36111035e+00, 1.36111035e+00, 1.36111035e+00,
1.36105209e+00, 1.36105209e+00, 1.36105209e+00, 1.36105209e+00,
1.36078907e+00, 1.36078907e+00, 1.36078907e+00, 1.36078907e+00,
1.36071354e+00, 1.36071354e+00, 1.36071354e+00, 1.36071354e+00,
1.36126545e+00, 1.36126545e+00, 1.36126545e+00, 1.36126545e+00,
1.36293306e+00, 1.36293306e+00, 1.36293306e+00, 1.36293306e+00,
1.36391003e+00, 1.36391003e+00, 1.36391003e+00, 1.36391003e+00,
1.36223548e+00, 1.36223548e+00, 1.36223548e+00, 1.36223548e+00,
1.35001289e+00, 1.35001289e+00, 1.35001289e+00, 1.35001289e+00,
1.28580407e+00, 1.28580407e+00, 1.28580407e+00, 1.28580407e+00,
1.02083102e+00, 1.02083102e+00, 1.02083102e+00, 1.02083102e+00,
3.92354167e-01, 3.92354167e-01, 3.92354167e-01, 3.92354167e-01,
4.60233453e-02, 4.60233453e-02, 4.60233453e-02, 4.60233453e-02,
3.61135389e-03, 3.61135389e-03, 3.61135389e-03, 3.61135389e-03,
2.68870213e-04, 2.68870213e-04, 2.68870213e-04, 2.68870213e-04,
1.98606715e-05, 1.98606715e-05, 1.98606715e-05, 1.98606715e-05,
1.46364464e-06, 1.46364464e-06, 1.46364464e-06, 1.46364464e-06,
1.07646738e-07, 1.07646738e-07, 1.07646738e-07, 1.07646738e-07,
7.89913828e-09, 7.89913828e-09, 7.89913828e-09, 7.89913828e-09,
5.77602003e-10, 5.77602003e-10, 5.77602003e-10, 5.77602003e-10,
4.20009750e-11, 4.20009750e-11, 4.20009750e-11, 4.20009750e-11,
3.02859296e-12, 3.02859296e-12, 3.02859296e-12, 3.02859296e-12,
2.15774482e-13, 2.15774482e-13, 2.15774482e-13, 2.15774482e-13,
1.50503680e-14, 1.50503680e-14, 1.50503680e-14, 1.50503680e-14,
1.05328765e-15, 1.05328765e-15, 1.05328765e-15, 1.05328765e-15,
5.90101831e-17, 5.90101831e-17, 5.90101831e-17, 5.90101831e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999997, 0.99999997,
0.99999997, 0.99999997, 0.99999972, 0.99999972, 0.99999972,
0.99999972, 0.99999784, 0.99999784, 0.99999784, 0.99999784,
0.99998533, 0.99998533, 0.99998533, 0.99998533, 0.999912 ,
0.999912 , 0.999912 , 0.999912 , 0.99953981, 0.99953981,
0.99953981, 0.99953981, 0.99793921, 0.99793921, 0.99793921,
0.99793921, 0.99226162, 0.99226162, 0.99226162, 0.99226162,
0.97615575, 0.97615575, 0.97615575, 0.97615575, 0.94055943,
0.94055943, 0.94055943, 0.94055943, 0.87968697, 0.87968697,
0.87968697, 0.87968697, 0.7970675 , 0.7970675 , 0.7970675 ,
0.7970675 , 0.7043173 , 0.7043173 , 0.7043173 , 0.7043173 ,
0.62032421, 0.62032421, 0.62032421, 0.62032421, 0.54686006,
0.54686006, 0.54686006, 0.54686006, 0.49810099, 0.49810099,
0.49810099, 0.49810099, 0.47541418, 0.47541418, 0.47541418,
0.47541418, 0.46923871, 0.46923871, 0.46923871, 0.46923871,
0.46803173, 0.46803173, 0.46803173, 0.46803173, 0.46700788,
0.46700788, 0.46700788, 0.46700788, 0.46571924, 0.46571924,
0.46571924, 0.46571924, 0.4641767 , 0.4641767 , 0.4641767 ,
0.4641767 , 0.46358808, 0.46358808, 0.46358808, 0.46358808,
0.46369014, 0.46369014, 0.46369014, 0.46369014, 0.46447516,
0.46447516, 0.46447516, 0.46447516, 0.46535017, 0.46535017,
0.46535017, 0.46535017, 0.46498179, 0.46498179, 0.46498179,
0.46498179, 0.45937493, 0.45937493, 0.45937493, 0.45937493,
0.43093306, 0.43093306, 0.43093306, 0.43093306, 0.32993773,
0.32993773, 0.32993773, 0.32993773, 0.16285786, 0.16285786,
0.16285786, 0.16285786, 0.10621868, 0.10621868, 0.10621868,
0.10621868, 0.10047825, 0.10047825, 0.10047825, 0.10047825,
0.10003557, 0.10003557, 0.10003557, 0.10003557, 0.10000263,
0.10000263, 0.10000263, 0.10000263, 0.10000019, 0.10000019,
0.10000019, 0.10000019, 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999996, 0.99999996,
0.99999996, 0.99999996, 0.99999967, 0.99999967, 0.99999967,
0.99999967, 0.99999762, 0.99999762, 0.99999762, 0.99999762,
0.99998459, 0.99998459, 0.99998459, 0.99998459, 0.99991206,
0.99991206, 0.99991206, 0.99991206, 0.99956257, 0.99956257,
0.99956257, 0.99956257, 0.99813629, 0.99813629, 0.99813629,
0.99813629, 0.99333466, 0.99333466, 0.99333466, 0.99333466,
0.98037152, 0.98037152, 0.98037152, 0.98037152, 0.9528877 ,
0.9528877 , 0.9528877 , 0.9528877 , 0.90714025, 0.90714025,
0.90714025, 0.90714025, 0.84549133, 0.84549133, 0.84549133,
0.84549133, 0.7755971 , 0.7755971 , 0.7755971 , 0.7755971 ,
0.71345002, 0.71345002, 0.71345002, 0.71345002, 0.65381042,
0.65381042, 0.65381042, 0.65381042, 0.60449037, 0.60449037,
0.60449037, 0.60449037, 0.58459071, 0.58459071, 0.58459071,
0.58459071, 0.58451904, 0.58451904, 0.58451904, 0.58451904,
0.58778013, 0.58778013, 0.58778013, 0.58778013, 0.58801938,
0.58801938, 0.58801938, 0.58801938, 0.58183243, 0.58183243,
0.58183243, 0.58183243, 0.56319798, 0.56319798, 0.56319798,
0.56319798, 0.52817231, 0.52817231, 0.52817231, 0.52817231,
0.47570938, 0.47570938, 0.47570938, 0.47570938, 0.41147965,
0.41147965, 0.41147965, 0.41147965, 0.36562289, 0.36562289,
0.36562289, 0.36562289, 0.34085096, 0.34085096, 0.34085096,
0.34085096, 0.32857429, 0.32857429, 0.32857429, 0.32857429,
0.32046461, 0.32046461, 0.32046461, 0.32046461, 0.30277278,
0.30277278, 0.30277278, 0.30277278, 0.23628223, 0.23628223,
0.23628223, 0.23628223, 0.14837728, 0.14837728, 0.14837728,
0.14837728, 0.12738162, 0.12738162, 0.12738162, 0.12738162,
0.12519072, 0.12519072, 0.12519072, 0.12519072, 0.12501437,
0.12501437, 0.12501437, 0.12501437, 0.12500107, 0.12500107,
0.12500107, 0.12500107, 0.12500008, 0.12500008, 0.12500008,
0.12500008, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
7.50000390e-01, 7.50000390e-01, 7.50000390e-01, 7.50000390e-01,
7.50002822e-01, 7.50002822e-01, 7.50002822e-01, 7.50002822e-01,
7.50018229e-01, 7.50018229e-01, 7.50018229e-01, 7.50018229e-01,
7.50104049e-01, 7.50104049e-01, 7.50104049e-01, 7.50104049e-01,
7.50517585e-01, 7.50517585e-01, 7.50517585e-01, 7.50517585e-01,
7.52205977e-01, 7.52205977e-01, 7.52205977e-01, 7.52205977e-01,
7.57902857e-01, 7.57902857e-01, 7.57902857e-01, 7.57902857e-01,
7.73399599e-01, 7.73399599e-01, 7.73399599e-01, 7.73399599e-01,
8.06867047e-01, 8.06867047e-01, 8.06867047e-01, 8.06867047e-01,
8.64509234e-01, 8.64509234e-01, 8.64509234e-01, 8.64509234e-01,
9.46188008e-01, 9.46188008e-01, 9.46188008e-01, 9.46188008e-01,
1.04182143e+00, 1.04182143e+00, 1.04182143e+00, 1.04182143e+00,
1.13851947e+00, 1.13851947e+00, 1.13851947e+00, 1.13851947e+00,
1.23521943e+00, 1.23521943e+00, 1.23521943e+00, 1.23521943e+00,
1.30684121e+00, 1.30684121e+00, 1.30684121e+00, 1.30684121e+00,
1.34402276e+00, 1.34402276e+00, 1.34402276e+00, 1.34402276e+00,
1.35679818e+00, 1.35679818e+00, 1.35679818e+00, 1.35679818e+00,
1.36042879e+00, 1.36042879e+00, 1.36042879e+00, 1.36042879e+00,
1.36144375e+00, 1.36144375e+00, 1.36144375e+00, 1.36144375e+00,
1.36176750e+00, 1.36176750e+00, 1.36176750e+00, 1.36176750e+00,
1.36169308e+00, 1.36169308e+00, 1.36169308e+00, 1.36169308e+00,
1.36111048e+00, 1.36111048e+00, 1.36111048e+00, 1.36111048e+00,
1.36105105e+00, 1.36105105e+00, 1.36105105e+00, 1.36105105e+00,
1.36162469e+00, 1.36162469e+00, 1.36162469e+00, 1.36162469e+00,
1.36281678e+00, 1.36281678e+00, 1.36281678e+00, 1.36281678e+00,
1.36293589e+00, 1.36293589e+00, 1.36293589e+00, 1.36293589e+00,
1.35989169e+00, 1.35989169e+00, 1.35989169e+00, 1.35989169e+00,
1.33857964e+00, 1.33857964e+00, 1.33857964e+00, 1.33857964e+00,
1.23678480e+00, 1.23678480e+00, 1.23678480e+00, 1.23678480e+00,
8.59426221e-01, 8.59426221e-01, 8.59426221e-01, 8.59426221e-01,
2.22121850e-01, 2.22121850e-01, 2.22121850e-01, 2.22121850e-01,
2.16158662e-02, 2.16158662e-02, 2.16158662e-02, 2.16158662e-02,
1.64641832e-03, 1.64641832e-03, 1.64641832e-03, 1.64641832e-03,
1.22204390e-04, 1.22204390e-04, 1.22204390e-04, 1.22204390e-04,
9.04194482e-06, 9.04194482e-06, 9.04194482e-06, 9.04194482e-06,
6.67040993e-07, 6.67040993e-07, 6.67040993e-07, 6.67040993e-07,
4.90964691e-08, 4.90964691e-08, 4.90964691e-08, 4.90964691e-08,
3.60523547e-09, 3.60523547e-09, 3.60523547e-09, 3.60523547e-09,
2.63885888e-10, 2.63885888e-10, 2.63885888e-10, 2.63885888e-10,
1.92204794e-11, 1.92204794e-11, 1.92204794e-11, 1.92204794e-11,
1.38961104e-12, 1.38961104e-12, 1.38961104e-12, 1.38961104e-12,
9.92868582e-14, 9.92868582e-14, 9.92868582e-14, 9.92868582e-14,
7.03275916e-15, 7.03275916e-15, 7.03275916e-15, 7.03275916e-15,
5.17027335e-16, 5.17027335e-16, 5.17027335e-16, 5.17027335e-16,
3.42591394e-17, 3.42591394e-17, 3.42591394e-17, 3.42591394e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999994, 0.99999994,
0.99999994, 0.99999994, 0.99999954, 0.99999954, 0.99999954,
0.99999954, 0.99999666, 0.99999666, 0.99999666, 0.99999666,
0.99997843, 0.99997843, 0.99997843, 0.99997843, 0.99987689,
0.99987689, 0.99987689, 0.99987689, 0.99938776, 0.99938776,
0.99938776, 0.99938776, 0.99739311, 0.99739311, 0.99739311,
0.99739311, 0.99069162, 0.99069162, 0.99069162, 0.99069162,
0.97268505, 0.97268505, 0.97268505, 0.97268505, 0.93486932,
0.93486932, 0.93486932, 0.93486932, 0.87293717, 0.87293717,
0.87293717, 0.87293717, 0.79146304, 0.79146304, 0.79146304,
0.79146304, 0.70191535, 0.70191535, 0.70191535, 0.70191535,
0.62102876, 0.62102876, 0.62102876, 0.62102876, 0.54957627,
0.54957627, 0.54957627, 0.54957627, 0.50083599, 0.50083599,
0.50083599, 0.50083599, 0.47665599, 0.47665599, 0.47665599,
0.47665599, 0.46931339, 0.46931339, 0.46931339, 0.46931339,
0.4680499 , 0.4680499 , 0.4680499 , 0.4680499 , 0.46732564,
0.46732564, 0.46732564, 0.46732564, 0.46628964, 0.46628964,
0.46628964, 0.46628964, 0.46482191, 0.46482191, 0.46482191,
0.46482191, 0.46383924, 0.46383924, 0.46383924, 0.46383924,
0.46359009, 0.46359009, 0.46359009, 0.46359009, 0.46381923,
0.46381923, 0.46381923, 0.46381923, 0.46482679, 0.46482679,
0.46482679, 0.46482679, 0.46530733, 0.46530733, 0.46530733,
0.46530733, 0.46390266, 0.46390266, 0.46390266, 0.46390266,
0.45436119, 0.45436119, 0.45436119, 0.45436119, 0.41039534,
0.41039534, 0.41039534, 0.41039534, 0.27755879, 0.27755879,
0.27755879, 0.27755879, 0.13288495, 0.13288495, 0.13288495,
0.13288495, 0.10288468, 0.10288468, 0.10288468, 0.10288468,
0.1002179 , 0.1002179 , 0.1002179 , 0.1002179 , 0.10001617,
0.10001617, 0.10001617, 0.10001617, 0.1000012 , 0.1000012 ,
0.1000012 , 0.1000012 , 0.10000009, 0.10000009, 0.10000009,
0.10000009, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999993, 0.99999993,
0.99999993, 0.99999993, 0.99999948, 0.99999948, 0.99999948,
0.99999948, 0.99999639, 0.99999639, 0.99999639, 0.99999639,
0.99997776, 0.99997776, 0.99997776, 0.99997776, 0.99987902,
0.99987902, 0.99987902, 0.99987902, 0.99942658, 0.99942658,
0.99942658, 0.99942658, 0.99767258, 0.99767258, 0.99767258,
0.99767258, 0.99206839, 0.99206839, 0.99206839, 0.99206839,
0.97770184, 0.97770184, 0.97770184, 0.97770184, 0.94867108,
0.94867108, 0.94867108, 0.94867108, 0.90224525, 0.90224525,
0.90224525, 0.90224525, 0.84145258, 0.84145258, 0.84145258,
0.84145258, 0.77386505, 0.77386505, 0.77386505, 0.77386505,
0.71340462, 0.71340462, 0.71340462, 0.71340462, 0.65703975,
0.65703975, 0.65703975, 0.65703975, 0.60849329, 0.60849329,
0.60849329, 0.60849329, 0.58468831, 0.58468831, 0.58468831,
0.58468831, 0.58294187, 0.58294187, 0.58294187, 0.58294187,
0.58573115, 0.58573115, 0.58573115, 0.58573115, 0.58763646,
0.58763646, 0.58763646, 0.58763646, 0.58482843, 0.58482843,
0.58482843, 0.58482843, 0.57251091, 0.57251091, 0.57251091,
0.57251091, 0.54537817, 0.54537817, 0.54537817, 0.54537817,
0.50073074, 0.50073074, 0.50073074, 0.50073074, 0.4391213 ,
0.4391213 , 0.4391213 , 0.4391213 , 0.38293704, 0.38293704,
0.38293704, 0.38293704, 0.35013347, 0.35013347, 0.35013347,
0.35013347, 0.33368088, 0.33368088, 0.33368088, 0.33368088,
0.32582494, 0.32582494, 0.32582494, 0.32582494, 0.31844833,
0.31844833, 0.31844833, 0.31844833, 0.29046653, 0.29046653,
0.29046653, 0.29046653, 0.20455633, 0.20455633, 0.20455633,
0.20455633, 0.1372754 , 0.1372754 , 0.1372754 , 0.1372754 ,
0.12612182, 0.12612182, 0.12612182, 0.12612182, 0.1250873 ,
0.1250873 , 0.1250873 , 0.1250873 , 0.12500654, 0.12500654,
0.12500654, 0.12500654, 0.12500049, 0.12500049, 0.12500049,
0.12500049, 0.12500004, 0.12500004, 0.12500004, 0.12500004,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000010e-01, 7.50000010e-01, 7.50000010e-01, 7.50000010e-01,
7.50000081e-01, 7.50000081e-01, 7.50000081e-01, 7.50000081e-01,
7.50000620e-01, 7.50000620e-01, 7.50000620e-01, 7.50000620e-01,
7.50004274e-01, 7.50004274e-01, 7.50004274e-01, 7.50004274e-01,
7.50026313e-01, 7.50026313e-01, 7.50026313e-01, 7.50026313e-01,
7.50143141e-01, 7.50143141e-01, 7.50143141e-01, 7.50143141e-01,
7.50678514e-01, 7.50678514e-01, 7.50678514e-01, 7.50678514e-01,
7.52755312e-01, 7.52755312e-01, 7.52755312e-01, 7.52755312e-01,
7.59409383e-01, 7.59409383e-01, 7.59409383e-01, 7.59409383e-01,
7.76615231e-01, 7.76615231e-01, 7.76615231e-01, 7.76615231e-01,
8.12080151e-01, 8.12080151e-01, 8.12080151e-01, 8.12080151e-01,
8.70817643e-01, 8.70817643e-01, 8.70817643e-01, 8.70817643e-01,
9.51667486e-01, 9.51667486e-01, 9.51667486e-01, 9.51667486e-01,
1.04421860e+00, 1.04421860e+00, 1.04421860e+00, 1.04421860e+00,
1.13749267e+00, 1.13749267e+00, 1.13749267e+00, 1.13749267e+00,
1.23129415e+00, 1.23129415e+00, 1.23129415e+00, 1.23129415e+00,
1.30304219e+00, 1.30304219e+00, 1.30304219e+00, 1.30304219e+00,
1.34192905e+00, 1.34192905e+00, 1.34192905e+00, 1.34192905e+00,
1.35567521e+00, 1.35567521e+00, 1.35567521e+00, 1.35567521e+00,
1.35980921e+00, 1.35980921e+00, 1.35980921e+00, 1.35980921e+00,
1.36138601e+00, 1.36138601e+00, 1.36138601e+00, 1.36138601e+00,
1.36219441e+00, 1.36219441e+00, 1.36219441e+00, 1.36219441e+00,
1.36249996e+00, 1.36249996e+00, 1.36249996e+00, 1.36249996e+00,
1.36190367e+00, 1.36190367e+00, 1.36190367e+00, 1.36190367e+00,
1.36127546e+00, 1.36127546e+00, 1.36127546e+00, 1.36127546e+00,
1.36128875e+00, 1.36128875e+00, 1.36128875e+00, 1.36128875e+00,
1.36152144e+00, 1.36152144e+00, 1.36152144e+00, 1.36152144e+00,
1.36239947e+00, 1.36239947e+00, 1.36239947e+00, 1.36239947e+00,
1.36213183e+00, 1.36213183e+00, 1.36213183e+00, 1.36213183e+00,
1.35586085e+00, 1.35586085e+00, 1.35586085e+00, 1.35586085e+00,
1.32010356e+00, 1.32010356e+00, 1.32010356e+00, 1.32010356e+00,
1.16287547e+00, 1.16287547e+00, 1.16287547e+00, 1.16287547e+00,
6.61162492e-01, 6.61162492e-01, 6.61162492e-01, 6.61162492e-01,
1.16351678e-01, 1.16351678e-01, 1.16351678e-01, 1.16351678e-01,
9.97096672e-03, 9.97096672e-03, 9.97096672e-03, 9.97096672e-03,
7.48552643e-04, 7.48552643e-04, 7.48552643e-04, 7.48552643e-04,
5.55786565e-05, 5.55786565e-05, 5.55786565e-05, 5.55786565e-05,
4.11419588e-06, 4.11419588e-06, 4.11419588e-06, 4.11419588e-06,
3.03837917e-07, 3.03837917e-07, 3.03837917e-07, 3.03837917e-07,
2.23849014e-08, 2.23849014e-08, 2.23849014e-08, 2.23849014e-08,
1.64507675e-09, 1.64507675e-09, 1.64507675e-09, 1.64507675e-09,
1.20527942e-10, 1.20527942e-10, 1.20527942e-10, 1.20527942e-10,
8.79167161e-12, 8.79167161e-12, 8.79167161e-12, 8.79167161e-12,
6.36916518e-13, 6.36916518e-13, 6.36916518e-13, 6.36916518e-13,
4.58094779e-14, 4.58094779e-14, 4.58094779e-14, 4.58094779e-14,
3.28064473e-15, 3.28064473e-15, 3.28064473e-15, 3.28064473e-15,
2.21511670e-16, 2.21511670e-16, 2.21511670e-16, 2.21511670e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.9999999 , 0.9999999 ,
0.9999999 , 0.9999999 , 0.99999927, 0.99999927, 0.99999927,
0.99999927, 0.99999494, 0.99999494, 0.99999494, 0.99999494,
0.99996887, 0.99996887, 0.99996887, 0.99996887, 0.99983065,
0.99983065, 0.99983065, 0.99983065, 0.99919747, 0.99919747,
0.99919747, 0.99919747, 0.99674497, 0.99674497, 0.99674497,
0.99674497, 0.98892685, 0.98892685, 0.98892685, 0.98892685,
0.96898818, 0.96898818, 0.96898818, 0.96898818, 0.92909988,
0.92909988, 0.92909988, 0.92909988, 0.86636274, 0.86636274,
0.86636274, 0.86636274, 0.7861649 , 0.7861649 , 0.7861649 ,
0.7861649 , 0.69970743, 0.69970743, 0.69970743, 0.69970743,
0.62175522, 0.62175522, 0.62175522, 0.62175522, 0.55208192,
0.55208192, 0.55208192, 0.55208192, 0.50351395, 0.50351395,
0.50351395, 0.50351395, 0.47813801, 0.47813801, 0.47813801,
0.47813801, 0.46954374, 0.46954374, 0.46954374, 0.46954374,
0.46791496, 0.46791496, 0.46791496, 0.46791496, 0.46740496,
0.46740496, 0.46740496, 0.46740496, 0.466675 , 0.466675 ,
0.466675 , 0.466675 , 0.46544862, 0.46544862, 0.46544862,
0.46544862, 0.46432762, 0.46432762, 0.46432762, 0.46432762,
0.46372285, 0.46372285, 0.46372285, 0.46372285, 0.46365147,
0.46365147, 0.46365147, 0.46365147, 0.46418465, 0.46418465,
0.46418465, 0.46418465, 0.46505548, 0.46505548, 0.46505548,
0.46505548, 0.46493934, 0.46493934, 0.46493934, 0.46493934,
0.46223591, 0.46223591, 0.46223591, 0.46223591, 0.44656565,
0.44656565, 0.44656565, 0.44656565, 0.38108891, 0.38108891,
0.38108891, 0.38108891, 0.22238569, 0.22238569, 0.22238569,
0.22238569, 0.11633052, 0.11633052, 0.11633052, 0.11633052,
0.10132364, 0.10132364, 0.10132364, 0.10132364, 0.10009904,
0.10009904, 0.10009904, 0.10009904, 0.10000735, 0.10000735,
0.10000735, 0.10000735, 0.10000054, 0.10000054, 0.10000054,
0.10000054, 0.10000004, 0.10000004, 0.10000004, 0.10000004,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999989, 0.99999989,
0.99999989, 0.99999989, 0.99999918, 0.99999918, 0.99999918,
0.99999918, 0.99999463, 0.99999463, 0.99999463, 0.99999463,
0.99996845, 0.99996845, 0.99996845, 0.99996845, 0.99983612,
0.99983612, 0.99983612, 0.99983612, 0.9992586 , 0.9992586 ,
0.9992586 , 0.9992586 , 0.99712842, 0.99712842, 0.99712842,
0.99712842, 0.99065816, 0.99065816, 0.99065816, 0.99065816,
0.97487697, 0.97487697, 0.97487697, 0.97487697, 0.94441074,
0.94441074, 0.94441074, 0.94441074, 0.89748102, 0.89748102,
0.89748102, 0.89748102, 0.83763755, 0.83763755, 0.83763755,
0.83763755, 0.77233781, 0.77233781, 0.77233781, 0.77233781,
0.7132907 , 0.7132907 , 0.7132907 , 0.7132907 , 0.65963706,
0.65963706, 0.65963706, 0.65963706, 0.612651 , 0.612651 ,
0.612651 , 0.612651 , 0.5857125 , 0.5857125 , 0.5857125 ,
0.5857125 , 0.58169792, 0.58169792, 0.58169792, 0.58169792,
0.5836328 , 0.5836328 , 0.5836328 , 0.5836328 , 0.58674094,
0.58674094, 0.58674094, 0.58674094, 0.58596439, 0.58596439,
0.58596439, 0.58596439, 0.57862616, 0.57862616, 0.57862616,
0.57862616, 0.55885909, 0.55885909, 0.55885909, 0.55885909,
0.52235302, 0.52235302, 0.52235302, 0.52235302, 0.46790255,
0.46790255, 0.46790255, 0.46790255, 0.40461805, 0.40461805,
0.40461805, 0.40461805, 0.36237207, 0.36237207, 0.36237207,
0.36237207, 0.33984239, 0.33984239, 0.33984239, 0.33984239,
0.32970398, 0.32970398, 0.32970398, 0.32970398, 0.32449566,
0.32449566, 0.32449566, 0.32449566, 0.31491343, 0.31491343,
0.31491343, 0.31491343, 0.2715366 , 0.2715366 , 0.2715366 ,
0.2715366 , 0.17519676, 0.17519676, 0.17519676, 0.17519676,
0.13110272, 0.13110272, 0.13110272, 0.13110272, 0.12551958,
0.12551958, 0.12551958, 0.12551958, 0.12503987, 0.12503987,
0.12503987, 0.12503987, 0.12500298, 0.12500298, 0.12500298,
0.12500298, 0.12500022, 0.12500022, 0.12500022, 0.12500022,
0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
7.50000132e-01, 7.50000132e-01, 7.50000132e-01, 7.50000132e-01,
7.50000966e-01, 7.50000966e-01, 7.50000966e-01, 7.50000966e-01,
7.50006351e-01, 7.50006351e-01, 7.50006351e-01, 7.50006351e-01,
7.50037333e-01, 7.50037333e-01, 7.50037333e-01, 7.50037333e-01,
7.50193899e-01, 7.50193899e-01, 7.50193899e-01, 7.50193899e-01,
7.50877324e-01, 7.50877324e-01, 7.50877324e-01, 7.50877324e-01,
7.53400222e-01, 7.53400222e-01, 7.53400222e-01, 7.53400222e-01,
7.61089231e-01, 7.61089231e-01, 7.61089231e-01, 7.61089231e-01,
7.80026437e-01, 7.80026437e-01, 7.80026437e-01, 7.80026437e-01,
8.17367158e-01, 8.17367158e-01, 8.17367158e-01, 8.17367158e-01,
8.76981911e-01, 8.76981911e-01, 8.76981911e-01, 8.76981911e-01,
9.56868187e-01, 9.56868187e-01, 9.56868187e-01, 9.56868187e-01,
1.04646915e+00, 1.04646915e+00, 1.04646915e+00, 1.04646915e+00,
1.13664890e+00, 1.13664890e+00, 1.13664890e+00, 1.13664890e+00,
1.22747197e+00, 1.22747197e+00, 1.22747197e+00, 1.22747197e+00,
1.29906860e+00, 1.29906860e+00, 1.29906860e+00, 1.29906860e+00,
1.33980440e+00, 1.33980440e+00, 1.33980440e+00, 1.33980440e+00,
1.35473761e+00, 1.35473761e+00, 1.35473761e+00, 1.35473761e+00,
1.35912884e+00, 1.35912884e+00, 1.35912884e+00, 1.35912884e+00,
1.36103279e+00, 1.36103279e+00, 1.36103279e+00, 1.36103279e+00,
1.36224006e+00, 1.36224006e+00, 1.36224006e+00, 1.36224006e+00,
1.36307271e+00, 1.36307271e+00, 1.36307271e+00, 1.36307271e+00,
1.36277930e+00, 1.36277930e+00, 1.36277930e+00, 1.36277930e+00,
1.36186954e+00, 1.36186954e+00, 1.36186954e+00, 1.36186954e+00,
1.36140807e+00, 1.36140807e+00, 1.36140807e+00, 1.36140807e+00,
1.36104332e+00, 1.36104332e+00, 1.36104332e+00, 1.36104332e+00,
1.36139643e+00, 1.36139643e+00, 1.36139643e+00, 1.36139643e+00,
1.36210857e+00, 1.36210857e+00, 1.36210857e+00, 1.36210857e+00,
1.36065559e+00, 1.36065559e+00, 1.36065559e+00, 1.36065559e+00,
1.34903815e+00, 1.34903815e+00, 1.34903815e+00, 1.34903815e+00,
1.29211103e+00, 1.29211103e+00, 1.29211103e+00, 1.29211103e+00,
1.05539569e+00, 1.05539569e+00, 1.05539569e+00, 1.05539569e+00,
4.48123192e-01, 4.48123192e-01, 4.48123192e-01, 4.48123192e-01,
5.68576756e-02, 5.68576756e-02, 5.68576756e-02, 5.68576756e-02,
4.54568441e-03, 4.54568441e-03, 4.54568441e-03, 4.54568441e-03,
3.40320288e-04, 3.40320288e-04, 3.40320288e-04, 3.40320288e-04,
2.52658640e-05, 2.52658640e-05, 2.52658640e-05, 2.52658640e-05,
1.87162703e-06, 1.87162703e-06, 1.87162703e-06, 1.87162703e-06,
1.38344702e-07, 1.38344702e-07, 1.38344702e-07, 1.38344702e-07,
1.02018842e-08, 1.02018842e-08, 1.02018842e-08, 1.02018842e-08,
7.50419983e-10, 7.50419983e-10, 7.50419983e-10, 7.50419983e-10,
5.50338981e-11, 5.50338981e-11, 5.50338981e-11, 5.50338981e-11,
4.01951569e-12, 4.01951569e-12, 4.01951569e-12, 4.01951569e-12,
2.91936804e-13, 2.91936804e-13, 2.91936804e-13, 2.91936804e-13,
2.11199253e-14, 2.11199253e-14, 2.11199253e-14, 2.11199253e-14,
1.47398293e-15, 1.47398293e-15, 1.47398293e-15, 1.47398293e-15,
9.45362951e-17, 9.45362951e-17, 9.45362951e-17, 9.45362951e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999984, 0.99999984,
0.99999984, 0.99999984, 0.99999886, 0.99999886, 0.99999886,
0.99999886, 0.99999249, 0.99999249, 0.99999249, 0.99999249,
0.99995583, 0.99995583, 0.99995583, 0.99995583, 0.9997706 ,
0.9997706 , 0.9997706 , 0.9997706 , 0.99896245, 0.99896245,
0.99896245, 0.99896245, 0.9959846 , 0.9959846 , 0.9959846 ,
0.9959846 , 0.98696264, 0.98696264, 0.98696264, 0.98696264,
0.96508085, 0.96508085, 0.96508085, 0.96508085, 0.92328027,
0.92328027, 0.92328027, 0.92328027, 0.85997549, 0.85997549,
0.85997549, 0.85997549, 0.78115703, 0.78115703, 0.78115703,
0.78115703, 0.69766029, 0.69766029, 0.69766029, 0.69766029,
0.62252492, 0.62252492, 0.62252492, 0.62252492, 0.55444993,
0.55444993, 0.55444993, 0.55444993, 0.50606466, 0.50606466,
0.50606466, 0.50606466, 0.4797491 , 0.4797491 , 0.4797491 ,
0.4797491 , 0.47000142, 0.47000142, 0.47000142, 0.47000142,
0.46778259, 0.46778259, 0.46778259, 0.46778259, 0.46731388,
0.46731388, 0.46731388, 0.46731388, 0.46681772, 0.46681772,
0.46681772, 0.46681772, 0.46594134, 0.46594134, 0.46594134,
0.46594134, 0.46489255, 0.46489255, 0.46489255, 0.46489255,
0.46406793, 0.46406793, 0.46406793, 0.46406793, 0.46371733,
0.46371733, 0.46371733, 0.46371733, 0.46392827, 0.46392827,
0.46392827, 0.46392827, 0.46457704, 0.46457704, 0.46457704,
0.46457704, 0.4649299 , 0.4649299 , 0.4649299 , 0.4649299 ,
0.464449 , 0.464449 , 0.464449 , 0.464449 , 0.45965373,
0.45965373, 0.45965373, 0.45965373, 0.43413396, 0.43413396,
0.43413396, 0.43413396, 0.3417067 , 0.3417067 , 0.3417067 ,
0.3417067 , 0.17380695, 0.17380695, 0.17380695, 0.17380695,
0.10772404, 0.10772404, 0.10772404, 0.10772404, 0.10060218,
0.10060218, 0.10060218, 0.10060218, 0.10004502, 0.10004502,
0.10004502, 0.10004502, 0.10000334, 0.10000334, 0.10000334,
0.10000334, 0.10000025, 0.10000025, 0.10000025, 0.10000025,
0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999982, 0.99999982,
0.99999982, 0.99999982, 0.99999875, 0.99999875, 0.99999875,
0.99999875, 0.99999216, 0.99999216, 0.99999216, 0.99999216,
0.99995594, 0.99995594, 0.99995594, 0.99995594, 0.99978118,
0.99978118, 0.99978118, 0.99978118, 0.99905363, 0.99905363,
0.99905363, 0.99905363, 0.99649673, 0.99649673, 0.99649673,
0.99649673, 0.98910195, 0.98910195, 0.98910195, 0.98910195,
0.97190917, 0.97190917, 0.97190917, 0.97190917, 0.94012653,
0.94012653, 0.94012653, 0.94012653, 0.89285479, 0.89285479,
0.89285479, 0.89285479, 0.83403394, 0.83403394, 0.83403394,
0.83403394, 0.77099739, 0.77099739, 0.77099739, 0.77099739,
0.71316881, 0.71316881, 0.71316881, 0.71316881, 0.66167639,
0.66167639, 0.66167639, 0.66167639, 0.61669901, 0.61669901,
0.61669901, 0.61669901, 0.58751731, 0.58751731, 0.58751731,
0.58751731, 0.58088401, 0.58088401, 0.58088401, 0.58088401,
0.58197653, 0.58197653, 0.58197653, 0.58197653, 0.58530083,
0.58530083, 0.58530083, 0.58530083, 0.58593749, 0.58593749,
0.58593749, 0.58593749, 0.58219521, 0.58219521, 0.58219521,
0.58219521, 0.56871482, 0.56871482, 0.56871482, 0.56871482,
0.54028566, 0.54028566, 0.54028566, 0.54028566, 0.49391932,
0.49391932, 0.49391932, 0.49391932, 0.43125951, 0.43125951,
0.43125951, 0.43125951, 0.37842572, 0.37842572, 0.37842572,
0.37842572, 0.34810948, 0.34810948, 0.34810948, 0.34810948,
0.33368361, 0.33368361, 0.33368361, 0.33368361, 0.32786563,
0.32786563, 0.32786563, 0.32786563, 0.32355452, 0.32355452,
0.32355452, 0.32355452, 0.30821032, 0.30821032, 0.30821032,
0.30821032, 0.24538437, 0.24538437, 0.24538437, 0.24538437,
0.15274327, 0.15274327, 0.15274327, 0.15274327, 0.12792757,
0.12792757, 0.12792757, 0.12792757, 0.12523902, 0.12523902,
0.12523902, 0.12523902, 0.12501814, 0.12501814, 0.12501814,
0.12501814, 0.12500135, 0.12500135, 0.12500135, 0.12500135,
0.1250001 , 0.1250001 , 0.1250001 , 0.1250001 , 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
7.50000211e-01, 7.50000211e-01, 7.50000211e-01, 7.50000211e-01,
7.50001474e-01, 7.50001474e-01, 7.50001474e-01, 7.50001474e-01,
7.50009273e-01, 7.50009273e-01, 7.50009273e-01, 7.50009273e-01,
7.50052129e-01, 7.50052129e-01, 7.50052129e-01, 7.50052129e-01,
7.50258907e-01, 7.50258907e-01, 7.50258907e-01, 7.50258907e-01,
7.51119944e-01, 7.51119944e-01, 7.51119944e-01, 7.51119944e-01,
7.54149241e-01, 7.54149241e-01, 7.54149241e-01, 7.54149241e-01,
7.62945461e-01, 7.62945461e-01, 7.62945461e-01, 7.62945461e-01,
7.83619793e-01, 7.83619793e-01, 7.83619793e-01, 7.83619793e-01,
8.22703779e-01, 8.22703779e-01, 8.22703779e-01, 8.22703779e-01,
8.82990632e-01, 8.82990632e-01, 8.82990632e-01, 8.82990632e-01,
9.61803322e-01, 9.61803322e-01, 9.61803322e-01, 9.61803322e-01,
1.04857800e+00, 1.04857800e+00, 1.04857800e+00, 1.04857800e+00,
1.13591034e+00, 1.13591034e+00, 1.13591034e+00, 1.13591034e+00,
1.22389255e+00, 1.22389255e+00, 1.22389255e+00, 1.22389255e+00,
1.29496803e+00, 1.29496803e+00, 1.29496803e+00, 1.29496803e+00,
1.33747715e+00, 1.33747715e+00, 1.33747715e+00, 1.33747715e+00,
1.35392574e+00, 1.35392574e+00, 1.35392574e+00, 1.35392574e+00,
1.35857156e+00, 1.35857156e+00, 1.35857156e+00, 1.35857156e+00,
1.36055928e+00, 1.36055928e+00, 1.36055928e+00, 1.36055928e+00,
1.36197585e+00, 1.36197585e+00, 1.36197585e+00, 1.36197585e+00,
1.36328541e+00, 1.36328541e+00, 1.36328541e+00, 1.36328541e+00,
1.36343618e+00, 1.36343618e+00, 1.36343618e+00, 1.36343618e+00,
1.36275200e+00, 1.36275200e+00, 1.36275200e+00, 1.36275200e+00,
1.36185315e+00, 1.36185315e+00, 1.36185315e+00, 1.36185315e+00,
1.36106906e+00, 1.36106906e+00, 1.36106906e+00, 1.36106906e+00,
1.36076174e+00, 1.36076174e+00, 1.36076174e+00, 1.36076174e+00,
1.36153615e+00, 1.36153615e+00, 1.36153615e+00, 1.36153615e+00,
1.36145251e+00, 1.36145251e+00, 1.36145251e+00, 1.36145251e+00,
1.35798352e+00, 1.35798352e+00, 1.35798352e+00, 1.35798352e+00,
1.33896458e+00, 1.33896458e+00, 1.33896458e+00, 1.33896458e+00,
1.24901222e+00, 1.24901222e+00, 1.24901222e+00, 1.24901222e+00,
9.05845095e-01, 9.05845095e-01, 9.05845095e-01, 9.05845095e-01,
2.60939488e-01, 2.60939488e-01, 2.60939488e-01, 2.60939488e-01,
2.66949863e-02, 2.66949863e-02, 2.66949863e-02, 2.66949863e-02,
2.06759900e-03, 2.06759900e-03, 2.06759900e-03, 2.06759900e-03,
1.54404335e-04, 1.54404335e-04, 1.54404335e-04, 1.54404335e-04,
1.14811015e-05, 1.14811015e-05, 1.14811015e-05, 1.14811015e-05,
8.51232178e-07, 8.51232178e-07, 8.51232178e-07, 8.51232178e-07,
6.29700498e-08, 6.29700498e-08, 6.29700498e-08, 6.29700498e-08,
4.64771793e-09, 4.64771793e-09, 4.64771793e-09, 4.64771793e-09,
3.42187413e-10, 3.42187413e-10, 3.42187413e-10, 3.42187413e-10,
2.51200466e-11, 2.51200466e-11, 2.51200466e-11, 2.51200466e-11,
1.83703667e-12, 1.83703667e-12, 1.83703667e-12, 1.83703667e-12,
1.33855888e-13, 1.33855888e-13, 1.33855888e-13, 1.33855888e-13,
9.58591565e-15, 9.58591565e-15, 9.58591565e-15, 9.58591565e-15,
6.58015436e-16, 6.58015436e-16, 6.58015436e-16, 6.58015436e-16,
4.63362200e-17, 4.63362200e-17, 4.63362200e-17, 4.63362200e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.99999975, 0.99999975,
0.99999975, 0.99999975, 0.99999826, 0.99999826, 0.99999826,
0.99999826, 0.99998903, 0.99998903, 0.99998903, 0.99998903,
0.99993832, 0.99993832, 0.99993832, 0.99993832, 0.9996937 ,
0.9996937 , 0.9996937 , 0.9996937 , 0.9986757 , 0.9986757 ,
0.9986757 , 0.9986757 , 0.99510219, 0.99510219, 0.99510219,
0.99510219, 0.98479658, 0.98479658, 0.98479658, 0.98479658,
0.96098067, 0.96098067, 0.96098067, 0.96098067, 0.91743778,
0.91743778, 0.91743778, 0.91743778, 0.85378402, 0.85378402,
0.85378402, 0.85378402, 0.7764234 , 0.7764234 , 0.7764234 ,
0.7764234 , 0.69575388, 0.69575388, 0.69575388, 0.69575388,
0.62328396, 0.62328396, 0.62328396, 0.62328396, 0.55678008,
0.55678008, 0.55678008, 0.55678008, 0.50850264, 0.50850264,
0.50850264, 0.50850264, 0.48137473, 0.48137473, 0.48137473,
0.48137473, 0.47065375, 0.47065375, 0.47065375, 0.47065375,
0.46777062, 0.46777062, 0.46777062, 0.46777062, 0.46716399,
0.46716399, 0.46716399, 0.46716399, 0.46676886, 0.46676886,
0.46676886, 0.46676886, 0.46619345, 0.46619345, 0.46619345,
0.46619345, 0.46537137, 0.46537137, 0.46537137, 0.46537137,
0.46458172, 0.46458172, 0.46458172, 0.46458172, 0.46395933,
0.46395933, 0.46395933, 0.46395933, 0.46392493, 0.46392493,
0.46392493, 0.46392493, 0.46425901, 0.46425901, 0.46425901,
0.46425901, 0.46466477, 0.46466477, 0.46466477, 0.46466477,
0.46482226, 0.46482226, 0.46482226, 0.46482226, 0.46376334,
0.46376334, 0.46376334, 0.46376334, 0.45509168, 0.45509168,
0.45509168, 0.45509168, 0.41543057, 0.41543057, 0.41543057,
0.41543057, 0.29185634, 0.29185634, 0.29185634, 0.29185634,
0.13928365, 0.13928365, 0.13928365, 0.13928365, 0.10357133,
0.10357133, 0.10357133, 0.10357133, 0.10027368, 0.10027368,
0.10027368, 0.10027368, 0.10002043, 0.10002043, 0.10002043,
0.10002043, 0.10000152, 0.10000152, 0.10000152, 0.10000152,
0.10000011, 0.10000011, 0.10000011, 0.10000011, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999972, 0.99999972,
0.99999972, 0.99999972, 0.99999813, 0.99999813, 0.99999813,
0.99999813, 0.99998874, 0.99998874, 0.99998874, 0.99998874,
0.99993939, 0.99993939, 0.99993939, 0.99993939, 0.99971172,
0.99971172, 0.99971172, 0.99971172, 0.99880638, 0.99880638,
0.99880638, 0.99880638, 0.99577085, 0.99577085, 0.99577085,
0.99577085, 0.98739937, 0.98739937, 0.98739937, 0.98739937,
0.96881177, 0.96881177, 0.96881177, 0.96881177, 0.93583686,
0.93583686, 0.93583686, 0.93583686, 0.88837163, 0.88837163,
0.88837163, 0.88837163, 0.83062885, 0.83062885, 0.83062885,
0.83062885, 0.76981937, 0.76981937, 0.76981937, 0.76981937,
0.71310496, 0.71310496, 0.71310496, 0.71310496, 0.66323748,
0.66323748, 0.66323748, 0.66323748, 0.62045416, 0.62045416,
0.62045416, 0.62045416, 0.58992516, 0.58992516, 0.58992516,
0.58992516, 0.58052011, 0.58052011, 0.58052011, 0.58052011,
0.58080503, 0.58080503, 0.58080503, 0.58080503, 0.58354665,
0.58354665, 0.58354665, 0.58354665, 0.58540693, 0.58540693,
0.58540693, 0.58540693, 0.58382526, 0.58382526, 0.58382526,
0.58382526, 0.57540774, 0.57540774, 0.57540774, 0.57540774,
0.55436649, 0.55436649, 0.55436649, 0.55436649, 0.51638779,
0.51638779, 0.51638779, 0.51638779, 0.46017314, 0.46017314,
0.46017314, 0.46017314, 0.39863657, 0.39863657, 0.39863657,
0.39863657, 0.3593355 , 0.3593355 , 0.3593355 , 0.3593355 ,
0.33897034, 0.33897034, 0.33897034, 0.33897034, 0.33057608,
0.33057608, 0.33057608, 0.33057608, 0.32697565, 0.32697565,
0.32697565, 0.32697565, 0.32222492, 0.32222492, 0.32222492,
0.32222492, 0.29663114, 0.29663114, 0.29663114, 0.29663114,
0.21326785, 0.21326785, 0.21326785, 0.21326785, 0.13963631,
0.13963631, 0.13963631, 0.13963631, 0.12638405, 0.12638405,
0.12638405, 0.12638405, 0.12510904, 0.12510904, 0.12510904,
0.12510904, 0.12500824, 0.12500824, 0.12500824, 0.12500824,
0.12500062, 0.12500062, 0.12500062, 0.12500062, 0.12500005,
0.12500005, 0.12500005, 0.12500005, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
7.50000045e-01, 7.50000045e-01, 7.50000045e-01, 7.50000045e-01,
7.50000331e-01, 7.50000331e-01, 7.50000331e-01, 7.50000331e-01,
7.50002210e-01, 7.50002210e-01, 7.50002210e-01, 7.50002210e-01,
7.50013317e-01, 7.50013317e-01, 7.50013317e-01, 7.50013317e-01,
7.50071715e-01, 7.50071715e-01, 7.50071715e-01, 7.50071715e-01,
7.50341105e-01, 7.50341105e-01, 7.50341105e-01, 7.50341105e-01,
7.51412648e-01, 7.51412648e-01, 7.51412648e-01, 7.51412648e-01,
7.55010444e-01, 7.55010444e-01, 7.55010444e-01, 7.55010444e-01,
7.64979298e-01, 7.64979298e-01, 7.64979298e-01, 7.64979298e-01,
7.87380429e-01, 7.87380429e-01, 7.87380429e-01, 7.87380429e-01,
8.28067152e-01, 8.28067152e-01, 8.28067152e-01, 8.28067152e-01,
8.88835090e-01, 8.88835090e-01, 8.88835090e-01, 8.88835090e-01,
9.66485823e-01, 9.66485823e-01, 9.66485823e-01, 9.66485823e-01,
1.05055852e+00, 1.05055852e+00, 1.05055852e+00, 1.05055852e+00,
1.13522481e+00, 1.13522481e+00, 1.13522481e+00, 1.13522481e+00,
1.22058953e+00, 1.22058953e+00, 1.22058953e+00, 1.22058953e+00,
1.29086599e+00, 1.29086599e+00, 1.29086599e+00, 1.29086599e+00,
1.33487117e+00, 1.33487117e+00, 1.33487117e+00, 1.33487117e+00,
1.35308250e+00, 1.35308250e+00, 1.35308250e+00, 1.35308250e+00,
1.35819700e+00, 1.35819700e+00, 1.35819700e+00, 1.35819700e+00,
1.36011186e+00, 1.36011186e+00, 1.36011186e+00, 1.36011186e+00,
1.36156806e+00, 1.36156806e+00, 1.36156806e+00, 1.36156806e+00,
1.36315058e+00, 1.36315058e+00, 1.36315058e+00, 1.36315058e+00,
1.36379727e+00, 1.36379727e+00, 1.36379727e+00, 1.36379727e+00,
1.36351067e+00, 1.36351067e+00, 1.36351067e+00, 1.36351067e+00,
1.36261248e+00, 1.36261248e+00, 1.36261248e+00, 1.36261248e+00,
1.36146436e+00, 1.36146436e+00, 1.36146436e+00, 1.36146436e+00,
1.36063916e+00, 1.36063916e+00, 1.36063916e+00, 1.36063916e+00,
1.36092008e+00, 1.36092008e+00, 1.36092008e+00, 1.36092008e+00,
1.36127360e+00, 1.36127360e+00, 1.36127360e+00, 1.36127360e+00,
1.36020110e+00, 1.36020110e+00, 1.36020110e+00, 1.36020110e+00,
1.35450702e+00, 1.35450702e+00, 1.35450702e+00, 1.35450702e+00,
1.32300030e+00, 1.32300030e+00, 1.32300030e+00, 1.32300030e+00,
1.18237908e+00, 1.18237908e+00, 1.18237908e+00, 1.18237908e+00,
7.15441717e-01, 7.15441717e-01, 7.15441717e-01, 7.15441717e-01,
1.38769905e-01, 1.38769905e-01, 1.38769905e-01, 1.38769905e-01,
1.23577720e-02, 1.23577720e-02, 1.23577720e-02, 1.23577720e-02,
9.36224416e-04, 9.36224416e-04, 9.36224416e-04, 9.36224416e-04,
7.00272710e-05, 7.00272710e-05, 7.00272710e-05, 7.00272710e-05,
5.21364262e-06, 5.21364262e-06, 5.21364262e-06, 5.21364262e-06,
3.86975587e-07, 3.86975587e-07, 3.86975587e-07, 3.86975587e-07,
2.86533268e-08, 2.86533268e-08, 2.86533268e-08, 2.86533268e-08,
2.11667470e-09, 2.11667470e-09, 2.11667470e-09, 2.11667470e-09,
1.55981163e-10, 1.55981163e-10, 1.55981163e-10, 1.55981163e-10,
1.14620004e-11, 1.14620004e-11, 1.14620004e-11, 1.14620004e-11,
8.39464394e-13, 8.39464394e-13, 8.39464394e-13, 8.39464394e-13,
6.10879150e-14, 6.10879150e-14, 6.10879150e-14, 6.10879150e-14,
4.40544803e-15, 4.40544803e-15, 4.40544803e-15, 4.40544803e-15,
3.15470277e-16, 3.15470277e-16, 3.15470277e-16, 3.15470277e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.99999961, 0.99999961,
0.99999961, 0.99999961, 0.99999739, 0.99999739, 0.99999739,
0.99999739, 0.99998424, 0.99998424, 0.99998424, 0.99998424,
0.99991515, 0.99991515, 0.99991515, 0.99991515, 0.99959648,
0.99959648, 0.99959648, 0.99959648, 0.99832987, 0.99832987,
0.99832987, 0.99832987, 0.99408857, 0.99408857, 0.99408857,
0.99408857, 0.98242851, 0.98242851, 0.98242851, 0.98242851,
0.95670672, 0.95670672, 0.95670672, 0.95670672, 0.91159757,
0.91159757, 0.91159757, 0.91159757, 0.8477941 , 0.8477941 ,
0.8477941 , 0.8477941 , 0.77194869, 0.77194869, 0.77194869,
0.77194869, 0.69397675, 0.69397675, 0.69397675, 0.69397675,
0.62399737, 0.62399737, 0.62399737, 0.62399737, 0.55909955,
0.55909955, 0.55909955, 0.55909955, 0.51089525, 0.51089525,
0.51089525, 0.51089525, 0.48295725, 0.48295725, 0.48295725,
0.48295725, 0.47140761, 0.47140761, 0.47140761, 0.47140761,
0.46792021, 0.46792021, 0.46792021, 0.46792021, 0.46704157,
0.46704157, 0.46704157, 0.46704157, 0.46664044, 0.46664044,
0.46664044, 0.46664044, 0.46622055, 0.46622055, 0.46622055,
0.46622055, 0.46568048, 0.46568048, 0.46568048, 0.46568048,
0.46505167, 0.46505167, 0.46505167, 0.46505167, 0.46437416,
0.46437416, 0.46437416, 0.46437416, 0.46411629, 0.46411629,
0.46411629, 0.46411629, 0.46418296, 0.46418296, 0.46418296,
0.46418296, 0.46437517, 0.46437517, 0.46437517, 0.46437517,
0.46474262, 0.46474262, 0.46474262, 0.46474262, 0.4647905 ,
0.4647905 , 0.4647905 , 0.4647905 , 0.46219808, 0.46219808,
0.46219808, 0.46219808, 0.44788536, 0.44788536, 0.44788536,
0.44788536, 0.38869085, 0.38869085, 0.38869085, 0.38869085,
0.23647903, 0.23647903, 0.23647903, 0.23647903, 0.11972131,
0.11972131, 0.11972131, 0.11972131, 0.10164215, 0.10164215,
0.10164215, 0.10164215, 0.10012388, 0.10012388, 0.10012388,
0.10012388, 0.10000926, 0.10000926, 0.10000926, 0.10000926,
0.10000069, 0.10000069, 0.10000069, 0.10000069, 0.10000005,
0.10000005, 0.10000005, 0.10000005, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999957, 0.99999957,
0.99999957, 0.99999957, 0.99999725, 0.99999725, 0.99999725,
0.99999725, 0.99998408, 0.99998408, 0.99998408, 0.99998408,
0.99991777, 0.99991777, 0.99991777, 0.99991777, 0.99962494,
0.99962494, 0.99962494, 0.99962494, 0.99851137, 0.99851137,
0.99851137, 0.99851137, 0.99494469, 0.99494469, 0.99494469,
0.99494469, 0.98555163, 0.98555163, 0.98555163, 0.98555163,
0.96559893, 0.96559893, 0.96559893, 0.96559893, 0.93155858,
0.93155858, 0.93155858, 0.93155858, 0.88403476, 0.88403476,
0.88403476, 0.88403476, 0.8274092 , 0.8274092 , 0.8274092 ,
0.8274092 , 0.76877221, 0.76877221, 0.76877221, 0.76877221,
0.71316056, 0.71316056, 0.71316056, 0.71316056, 0.66441163,
0.66441163, 0.66441163, 0.66441163, 0.62379118, 0.62379118,
0.62379118, 0.62379118, 0.59276036, 0.59276036, 0.59276036,
0.59276036, 0.58060214, 0.58060214, 0.58060214, 0.58060214,
0.58004359, 0.58004359, 0.58004359, 0.58004359, 0.58181969,
0.58181969, 0.58181969, 0.58181969, 0.58456085, 0.58456085,
0.58456085, 0.58456085, 0.58426133, 0.58426133, 0.58426133,
0.58426133, 0.57952111, 0.57952111, 0.57952111, 0.57952111,
0.56481381, 0.56481381, 0.56481381, 0.56481381, 0.53498407,
0.53498407, 0.53498407, 0.53498407, 0.48707968, 0.48707968,
0.48707968, 0.48707968, 0.4240172 , 0.4240172 , 0.4240172 ,
0.4240172 , 0.37419742, 0.37419742, 0.37419742, 0.37419742,
0.34640254, 0.34640254, 0.34640254, 0.34640254, 0.33383188,
0.33383188, 0.33383188, 0.33383188, 0.32905424, 0.32905424,
0.32905424, 0.32905424, 0.32677563, 0.32677563, 0.32677563,
0.32677563, 0.31923078, 0.31923078, 0.31923078, 0.31923078,
0.27840167, 0.27840167, 0.27840167, 0.27840167, 0.1822785 ,
0.1822785 , 0.1822785 , 0.1822785 , 0.13240005, 0.13240005,
0.13240005, 0.13240005, 0.12564148, 0.12564148, 0.12564148,
0.12564148, 0.12504969, 0.12504969, 0.12504969, 0.12504969,
0.12500374, 0.12500374, 0.12500374, 0.12500374, 0.12500028,
0.12500028, 0.12500028, 0.12500028, 0.12500002, 0.12500002,
0.12500002, 0.12500002, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
7.50000072e-01, 7.50000072e-01, 7.50000072e-01, 7.50000072e-01,
7.50000509e-01, 7.50000509e-01, 7.50000509e-01, 7.50000509e-01,
7.50003258e-01, 7.50003258e-01, 7.50003258e-01, 7.50003258e-01,
7.50018836e-01, 7.50018836e-01, 7.50018836e-01, 7.50018836e-01,
7.50097297e-01, 7.50097297e-01, 7.50097297e-01, 7.50097297e-01,
7.50443797e-01, 7.50443797e-01, 7.50443797e-01, 7.50443797e-01,
7.51761984e-01, 7.51761984e-01, 7.51761984e-01, 7.51761984e-01,
7.55991281e-01, 7.55991281e-01, 7.55991281e-01, 7.55991281e-01,
7.67190124e-01, 7.67190124e-01, 7.67190124e-01, 7.67190124e-01,
7.91292369e-01, 7.91292369e-01, 7.91292369e-01, 7.91292369e-01,
8.33436036e-01, 8.33436036e-01, 8.33436036e-01, 8.33436036e-01,
8.94508968e-01, 8.94508968e-01, 8.94508968e-01, 8.94508968e-01,
9.70928324e-01, 9.70928324e-01, 9.70928324e-01, 9.70928324e-01,
1.05242450e+00, 1.05242450e+00, 1.05242450e+00, 1.05242450e+00,
1.13456684e+00, 1.13456684e+00, 1.13456684e+00, 1.13456684e+00,
1.21752814e+00, 1.21752814e+00, 1.21752814e+00, 1.21752814e+00,
1.28688080e+00, 1.28688080e+00, 1.28688080e+00, 1.28688080e+00,
1.33202565e+00, 1.33202565e+00, 1.33202565e+00, 1.33202565e+00,
1.35205511e+00, 1.35205511e+00, 1.35205511e+00, 1.35205511e+00,
1.35794285e+00, 1.35794285e+00, 1.35794285e+00, 1.35794285e+00,
1.35979765e+00, 1.35979765e+00, 1.35979765e+00, 1.35979765e+00,
1.36117165e+00, 1.36117165e+00, 1.36117165e+00, 1.36117165e+00,
1.36278081e+00, 1.36278081e+00, 1.36278081e+00, 1.36278081e+00,
1.36384708e+00, 1.36384708e+00, 1.36384708e+00, 1.36384708e+00,
1.36394428e+00, 1.36394428e+00, 1.36394428e+00, 1.36394428e+00,
1.36340422e+00, 1.36340422e+00, 1.36340422e+00, 1.36340422e+00,
1.36216954e+00, 1.36216954e+00, 1.36216954e+00, 1.36216954e+00,
1.36091948e+00, 1.36091948e+00, 1.36091948e+00, 1.36091948e+00,
1.36072488e+00, 1.36072488e+00, 1.36072488e+00, 1.36072488e+00,
1.36080076e+00, 1.36080076e+00, 1.36080076e+00, 1.36080076e+00,
1.36052967e+00, 1.36052967e+00, 1.36052967e+00, 1.36052967e+00,
1.35904254e+00, 1.35904254e+00, 1.35904254e+00, 1.35904254e+00,
1.34885124e+00, 1.34885124e+00, 1.34885124e+00, 1.34885124e+00,
1.29744243e+00, 1.29744243e+00, 1.29744243e+00, 1.29744243e+00,
1.08422445e+00, 1.08422445e+00, 1.08422445e+00, 1.08422445e+00,
5.02990327e-01, 5.02990327e-01, 5.02990327e-01, 5.02990327e-01,
6.93727442e-02, 6.93727442e-02, 6.93727442e-02, 6.93727442e-02,
5.63191058e-03, 5.63191058e-03, 5.63191058e-03, 5.63191058e-03,
4.24506091e-04, 4.24506091e-04, 4.24506091e-04, 4.24506091e-04,
3.17404436e-05, 3.17404436e-05, 3.17404436e-05, 3.17404436e-05,
2.36582375e-06, 2.36582375e-06, 2.36582375e-06, 2.36582375e-06,
1.75833876e-07, 1.75833876e-07, 1.75833876e-07, 1.75833876e-07,
1.30328080e-08, 1.30328080e-08, 1.30328080e-08, 1.30328080e-08,
9.63639514e-10, 9.63639514e-10, 9.63639514e-10, 9.63639514e-10,
7.10763736e-11, 7.10763736e-11, 7.10763736e-11, 7.10763736e-11,
5.22825264e-12, 5.22825264e-12, 5.22825264e-12, 5.22825264e-12,
3.83163730e-13, 3.83163730e-13, 3.83163730e-13, 3.83163730e-13,
2.79726565e-14, 2.79726565e-14, 2.79726565e-14, 2.79726565e-14,
2.02525897e-15, 2.02525897e-15, 2.02525897e-15, 2.02525897e-15,
1.51631827e-16, 1.51631827e-16, 1.51631827e-16, 1.51631827e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999991,
0.99999991, 0.99999991, 0.99999991, 0.9999994 , 0.9999994 ,
0.9999994 , 0.9999994 , 0.99999614, 0.99999614, 0.99999614,
0.99999614, 0.99997771, 0.99997771, 0.99997771, 0.99997771,
0.99988488, 0.99988488, 0.99988488, 0.99988488, 0.99947502,
0.99947502, 0.99947502, 0.99947502, 0.99791728, 0.99791728,
0.99791728, 0.99791728, 0.99293536, 0.99293536, 0.99293536,
0.99293536, 0.97986052, 0.97986052, 0.97986052, 0.97986052,
0.95227911, 0.95227911, 0.95227911, 0.95227911, 0.90578254,
0.90578254, 0.90578254, 0.90578254, 0.84200911, 0.84200911,
0.84200911, 0.84200911, 0.76771824, 0.76771824, 0.76771824,
0.76771824, 0.69232015, 0.69232015, 0.69232015, 0.69232015,
0.62465064, 0.62465064, 0.62465064, 0.62465064, 0.56138795,
0.56138795, 0.56138795, 0.56138795, 0.51330741, 0.51330741,
0.51330741, 0.51330741, 0.4845093 , 0.4845093 , 0.4845093 ,
0.4845093 , 0.47217185, 0.47217185, 0.47217185, 0.47217185,
0.46819774, 0.46819774, 0.46819774, 0.46819774, 0.46701446,
0.46701446, 0.46701446, 0.46701446, 0.46652199, 0.46652199,
0.46652199, 0.46652199, 0.46611084, 0.46611084, 0.46611084,
0.46611084, 0.46578348, 0.46578348, 0.46578348, 0.46578348,
0.46535618, 0.46535618, 0.46535618, 0.46535618, 0.46482306,
0.46482306, 0.46482306, 0.46482306, 0.46446841, 0.46446841,
0.46446841, 0.46446841, 0.46430983, 0.46430983, 0.46430983,
0.46430983, 0.46428048, 0.46428048, 0.46428048, 0.46428048,
0.46452486, 0.46452486, 0.46452486, 0.46452486, 0.4649441 ,
0.4649441 , 0.4649441 , 0.4649441 , 0.46428963, 0.46428963,
0.46428963, 0.46428963, 0.45964556, 0.45964556, 0.45964556,
0.45964556, 0.4368908 , 0.4368908 , 0.4368908 , 0.4368908 ,
0.35200209, 0.35200209, 0.35200209, 0.35200209, 0.18536524,
0.18536524, 0.18536524, 0.18536524, 0.10948877, 0.10948877,
0.10948877, 0.10948877, 0.10074638, 0.10074638, 0.10074638,
0.10074638, 0.10005616, 0.10005616, 0.10005616, 0.10005616,
0.1000042 , 0.1000042 , 0.1000042 , 0.1000042 , 0.10000031,
0.10000031, 0.10000031, 0.10000031, 0.10000002, 0.10000002,
0.10000002, 0.10000002, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.9999999 ,
0.9999999 , 0.9999999 , 0.9999999 , 0.99999935, 0.99999935,
0.99999935, 0.99999935, 0.999996 , 0.999996 , 0.999996 ,
0.999996 , 0.9999778 , 0.9999778 , 0.9999778 , 0.9999778 ,
0.99988988, 0.99988988, 0.99988988, 0.99988988, 0.99951775,
0.99951775, 0.99951775, 0.99951775, 0.99816293, 0.99816293,
0.99816293, 0.99816293, 0.99401287, 0.99401287, 0.99401287,
0.99401287, 0.98356146, 0.98356146, 0.98356146, 0.98356146,
0.9622853 , 0.9622853 , 0.9622853 , 0.9622853 , 0.92730693,
0.92730693, 0.92730693, 0.92730693, 0.87984577, 0.87984577,
0.87984577, 0.87984577, 0.82436213, 0.82436213, 0.82436213,
0.82436213, 0.76781991, 0.76781991, 0.76781991, 0.76781991,
0.71338064, 0.71338064, 0.71338064, 0.71338064, 0.66530752,
0.66530752, 0.66530752, 0.66530752, 0.62662899, 0.62662899,
0.62662899, 0.62662899, 0.59584458, 0.59584458, 0.59584458,
0.59584458, 0.58122522, 0.58122522, 0.58122522, 0.58122522,
0.57945682, 0.57945682, 0.57945682, 0.57945682, 0.58056762,
0.58056762, 0.58056762, 0.58056762, 0.58335259, 0.58335259,
0.58335259, 0.58335259, 0.5840114 , 0.5840114 , 0.5840114 ,
0.5840114 , 0.58173244, 0.58173244, 0.58173244, 0.58173244,
0.57212127, 0.57212127, 0.57212127, 0.57212127, 0.54967525,
0.54967525, 0.54967525, 0.54967525, 0.51027045, 0.51027045,
0.51027045, 0.51027045, 0.45256286, 0.45256286, 0.45256286,
0.45256286, 0.39319195, 0.39319195, 0.39319195, 0.39319195,
0.35669662, 0.35669662, 0.35669662, 0.35669662, 0.33848333,
0.33848333, 0.33848333, 0.33848333, 0.33098586, 0.33098586,
0.33098586, 0.33098586, 0.32867169, 0.32867169, 0.32867169,
0.32867169, 0.32673109, 0.32673109, 0.32673109, 0.32673109,
0.31276146, 0.31276146, 0.31276146, 0.31276146, 0.25297057,
0.25297057, 0.25297057, 0.25297057, 0.15774063, 0.15774063,
0.15774063, 0.15774063, 0.12857133, 0.12857133, 0.12857133,
0.12857133, 0.12529541, 0.12529541, 0.12529541, 0.12529541,
0.12502259, 0.12502259, 0.12502259, 0.12502259, 0.1250017 ,
0.1250017 , 0.1250017 , 0.1250017 , 0.12500013, 0.12500013,
0.12500013, 0.12500013, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000015e-01, 7.50000015e-01, 7.50000015e-01, 7.50000015e-01,
7.50000114e-01, 7.50000114e-01, 7.50000114e-01, 7.50000114e-01,
7.50000768e-01, 7.50000768e-01, 7.50000768e-01, 7.50000768e-01,
7.50004730e-01, 7.50004730e-01, 7.50004730e-01, 7.50004730e-01,
7.50026264e-01, 7.50026264e-01, 7.50026264e-01, 7.50026264e-01,
7.50130297e-01, 7.50130297e-01, 7.50130297e-01, 7.50130297e-01,
7.50570647e-01, 7.50570647e-01, 7.50570647e-01, 7.50570647e-01,
7.52174682e-01, 7.52174682e-01, 7.52174682e-01, 7.52174682e-01,
7.57098423e-01, 7.57098423e-01, 7.57098423e-01, 7.57098423e-01,
7.69575519e-01, 7.69575519e-01, 7.69575519e-01, 7.69575519e-01,
7.95338848e-01, 7.95338848e-01, 7.95338848e-01, 7.95338848e-01,
8.38790934e-01, 8.38790934e-01, 8.38790934e-01, 8.38790934e-01,
9.00008072e-01, 9.00008072e-01, 9.00008072e-01, 9.00008072e-01,
9.75143222e-01, 9.75143222e-01, 9.75143222e-01, 9.75143222e-01,
1.05418743e+00, 1.05418743e+00, 1.05418743e+00, 1.05418743e+00,
1.13392925e+00, 1.13392925e+00, 1.13392925e+00, 1.13392925e+00,
1.21464803e+00, 1.21464803e+00, 1.21464803e+00, 1.21464803e+00,
1.28307514e+00, 1.28307514e+00, 1.28307514e+00, 1.28307514e+00,
1.32905104e+00, 1.32905104e+00, 1.32905104e+00, 1.32905104e+00,
1.35077100e+00, 1.35077100e+00, 1.35077100e+00, 1.35077100e+00,
1.35767915e+00, 1.35767915e+00, 1.35767915e+00, 1.35767915e+00,
1.35963173e+00, 1.35963173e+00, 1.35963173e+00, 1.35963173e+00,
1.36086885e+00, 1.36086885e+00, 1.36086885e+00, 1.36086885e+00,
1.36233245e+00, 1.36233245e+00, 1.36233245e+00, 1.36233245e+00,
1.36365306e+00, 1.36365306e+00, 1.36365306e+00, 1.36365306e+00,
1.36410375e+00, 1.36410375e+00, 1.36410375e+00, 1.36410375e+00,
1.36392708e+00, 1.36392708e+00, 1.36392708e+00, 1.36392708e+00,
1.36298853e+00, 1.36298853e+00, 1.36298853e+00, 1.36298853e+00,
1.36152724e+00, 1.36152724e+00, 1.36152724e+00, 1.36152724e+00,
1.36088739e+00, 1.36088739e+00, 1.36088739e+00, 1.36088739e+00,
1.36059622e+00, 1.36059622e+00, 1.36059622e+00, 1.36059622e+00,
1.36030814e+00, 1.36030814e+00, 1.36030814e+00, 1.36030814e+00,
1.36008913e+00, 1.36008913e+00, 1.36008913e+00, 1.36008913e+00,
1.35711729e+00, 1.35711729e+00, 1.35711729e+00, 1.35711729e+00,
1.33931866e+00, 1.33931866e+00, 1.33931866e+00, 1.33931866e+00,
1.25869909e+00, 1.25869909e+00, 1.25869909e+00, 1.25869909e+00,
9.47391457e-01, 9.47391457e-01, 9.47391457e-01, 9.47391457e-01,
3.03306502e-01, 3.03306502e-01, 3.03306502e-01, 3.03306502e-01,
3.27779884e-02, 3.27779884e-02, 3.27779884e-02, 3.27779884e-02,
2.56194868e-03, 2.56194868e-03, 2.56194868e-03, 2.56194868e-03,
1.92341225e-04, 1.92341225e-04, 1.92341225e-04, 1.92341225e-04,
1.43841206e-05, 1.43841206e-05, 1.43841206e-05, 1.43841206e-05,
1.07319292e-06, 1.07319292e-06, 1.07319292e-06, 1.07319292e-06,
7.98515072e-08, 7.98515072e-08, 7.98515072e-08, 7.98515072e-08,
5.92527078e-09, 5.92527078e-09, 5.92527078e-09, 5.92527078e-09,
4.38545776e-10, 4.38545776e-10, 4.38545776e-10, 4.38545776e-10,
3.23766591e-11, 3.23766591e-11, 3.23766591e-11, 3.23766591e-11,
2.38365625e-12, 2.38365625e-12, 2.38365625e-12, 2.38365625e-12,
1.74984281e-13, 1.74984281e-13, 1.74984281e-13, 1.74984281e-13,
1.27988486e-14, 1.27988486e-14, 1.27988486e-14, 1.27988486e-14,
9.36619527e-16, 9.36619527e-16, 9.36619527e-16, 9.36619527e-16,
5.90078683e-17, 5.90078683e-17, 5.90078683e-17, 5.90078683e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999909, 0.99999909,
0.99999909, 0.99999909, 0.9999944 , 0.9999944 , 0.9999944 ,
0.9999944 , 0.99996892, 0.99996892, 0.99996892, 0.99996892,
0.99984584, 0.99984584, 0.99984584, 0.99984584, 0.99932502,
0.99932502, 0.99932502, 0.99932502, 0.99743007, 0.99743007,
0.99743007, 0.99743007, 0.99163522, 0.99163522, 0.99163522,
0.99163522, 0.97709688, 0.97709688, 0.97709688, 0.97709688,
0.94771858, 0.94771858, 0.94771858, 0.94771858, 0.90001323,
0.90001323, 0.90001323, 0.90001323, 0.83643028, 0.83643028,
0.83643028, 0.83643028, 0.76371797, 0.76371797, 0.76371797,
0.76371797, 0.69077552, 0.69077552, 0.69077552, 0.69077552,
0.62524441, 0.62524441, 0.62524441, 0.62524441, 0.56360708,
0.56360708, 0.56360708, 0.56360708, 0.51576884, 0.51576884,
0.51576884, 0.51576884, 0.48608775, 0.48608775, 0.48608775,
0.48608775, 0.47290348, 0.47290348, 0.47290348, 0.47290348,
0.46852795, 0.46852795, 0.46852795, 0.46852795, 0.46709417,
0.46709417, 0.46709417, 0.46709417, 0.4664615 , 0.4664615 ,
0.4664615 , 0.4664615 , 0.46595946, 0.46595946, 0.46595946,
0.46595946, 0.46573483, 0.46573483, 0.46573483, 0.46573483,
0.46549762, 0.46549762, 0.46549762, 0.46549762, 0.4651401 ,
0.4651401 , 0.4651401 , 0.4651401 , 0.4648877 , 0.4648877 ,
0.4648877 , 0.4648877 , 0.46460628, 0.46460628, 0.46460628,
0.46460628, 0.46435859, 0.46435859, 0.46435859, 0.46435859,
0.46443008, 0.46443008, 0.46443008, 0.46443008, 0.46484084,
0.46484084, 0.46484084, 0.46484084, 0.46477421, 0.46477421,
0.46477421, 0.46477421, 0.46345495, 0.46345495, 0.46345495,
0.46345495, 0.45575261, 0.45575261, 0.45575261, 0.45575261,
0.41991969, 0.41991969, 0.41991969, 0.41991969, 0.30495101,
0.30495101, 0.30495101, 0.30495101, 0.14641294, 0.14641294,
0.14641294, 0.14641294, 0.10439859, 0.10439859, 0.10439859,
0.10439859, 0.10033916, 0.10033916, 0.10033916, 0.10033916,
0.10002545, 0.10002545, 0.10002545, 0.10002545, 0.1000019 ,
0.1000019 , 0.1000019 , 0.1000019 , 0.10000014, 0.10000014,
0.10000014, 0.10000014, 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999985,
0.99999985, 0.99999985, 0.99999985, 0.99999903, 0.99999903,
0.99999903, 0.99999903, 0.99999428, 0.99999428, 0.99999428,
0.99999428, 0.99996946, 0.99996946, 0.99996946, 0.99996946,
0.99985432, 0.99985432, 0.99985432, 0.99985432, 0.99938676,
0.99938676, 0.99938676, 0.99938676, 0.99775536, 0.99775536,
0.99775536, 0.99775536, 0.99297081, 0.99297081, 0.99297081,
0.99297081, 0.98143309, 0.98143309, 0.98143309, 0.98143309,
0.95888578, 0.95888578, 0.95888578, 0.95888578, 0.9230955 ,
0.9230955 , 0.9230955 , 0.9230955 , 0.87580507, 0.87580507,
0.87580507, 0.87580507, 0.82147709, 0.82147709, 0.82147709,
0.82147709, 0.76692374, 0.76692374, 0.76692374, 0.76692374,
0.71378615, 0.71378615, 0.71378615, 0.71378615, 0.66604952,
0.66604952, 0.66604952, 0.66604952, 0.62893204, 0.62893204,
0.62893204, 0.62893204, 0.59898326, 0.59898326, 0.59898326,
0.59898326, 0.58239235, 0.58239235, 0.58239235, 0.58239235,
0.57906513, 0.57906513, 0.57906513, 0.57906513, 0.5796752 ,
0.5796752 , 0.5796752 , 0.5796752 , 0.58197407, 0.58197407,
0.58197407, 0.58197407, 0.58350893, 0.58350893, 0.58350893,
0.58350893, 0.58262487, 0.58262487, 0.58262487, 0.58262487,
0.5768568 , 0.5768568 , 0.5768568 , 0.5768568 , 0.56077107,
0.56077107, 0.56077107, 0.56077107, 0.52949915, 0.52949915,
0.52949915, 0.52949915, 0.48013846, 0.48013846, 0.48013846,
0.48013846, 0.41713955, 0.41713955, 0.41713955, 0.41713955,
0.37044721, 0.37044721, 0.37044721, 0.37044721, 0.34523075,
0.34523075, 0.34523075, 0.34523075, 0.33369594, 0.33369594,
0.33369594, 0.33369594, 0.32989191, 0.32989191, 0.32989191,
0.32989191, 0.32903442, 0.32903442, 0.32903442, 0.32903442,
0.32566179, 0.32566179, 0.32566179, 0.32566179, 0.30140914,
0.30140914, 0.30140914, 0.30140914, 0.22161536, 0.22161536,
0.22161536, 0.22161536, 0.142229 , 0.142229 , 0.142229 ,
0.142229 , 0.12669189, 0.12669189, 0.12669189, 0.12669189,
0.12513485, 0.12513485, 0.12513485, 0.12513485, 0.12501025,
0.12501025, 0.12501025, 0.12501025, 0.12500077, 0.12500077,
0.12500077, 0.12500077, 0.12500006, 0.12500006, 0.12500006,
0.12500006, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
7.50000176e-01, 7.50000176e-01, 7.50000176e-01, 7.50000176e-01,
7.50001143e-01, 7.50001143e-01, 7.50001143e-01, 7.50001143e-01,
7.50006765e-01, 7.50006765e-01, 7.50006765e-01, 7.50006765e-01,
7.50036132e-01, 7.50036132e-01, 7.50036132e-01, 7.50036132e-01,
7.50172369e-01, 7.50172369e-01, 7.50172369e-01, 7.50172369e-01,
7.50725674e-01, 7.50725674e-01, 7.50725674e-01, 7.50725674e-01,
7.52657561e-01, 7.52657561e-01, 7.52657561e-01, 7.52657561e-01,
7.58337621e-01, 7.58337621e-01, 7.58337621e-01, 7.58337621e-01,
7.72131336e-01, 7.72131336e-01, 7.72131336e-01, 7.72131336e-01,
7.99502632e-01, 7.99502632e-01, 7.99502632e-01, 7.99502632e-01,
8.44114177e-01, 8.44114177e-01, 8.44114177e-01, 8.44114177e-01,
9.05331881e-01, 9.05331881e-01, 9.05331881e-01, 9.05331881e-01,
9.79125457e-01, 9.79125457e-01, 9.79125457e-01, 9.79125457e-01,
1.05587185e+00, 1.05587185e+00, 1.05587185e+00, 1.05587185e+00,
1.13331506e+00, 1.13331506e+00, 1.13331506e+00, 1.13331506e+00,
1.21189543e+00, 1.21189543e+00, 1.21189543e+00, 1.21189543e+00,
1.27944869e+00, 1.27944869e+00, 1.27944869e+00, 1.27944869e+00,
1.32606311e+00, 1.32606311e+00, 1.32606311e+00, 1.32606311e+00,
1.34925512e+00, 1.34925512e+00, 1.34925512e+00, 1.34925512e+00,
1.35728578e+00, 1.35728578e+00, 1.35728578e+00, 1.35728578e+00,
1.35954920e+00, 1.35954920e+00, 1.35954920e+00, 1.35954920e+00,
1.36069411e+00, 1.36069411e+00, 1.36069411e+00, 1.36069411e+00,
1.36194086e+00, 1.36194086e+00, 1.36194086e+00, 1.36194086e+00,
1.36330593e+00, 1.36330593e+00, 1.36330593e+00, 1.36330593e+00,
1.36405650e+00, 1.36405650e+00, 1.36405650e+00, 1.36405650e+00,
1.36415497e+00, 1.36415497e+00, 1.36415497e+00, 1.36415497e+00,
1.36359348e+00, 1.36359348e+00, 1.36359348e+00, 1.36359348e+00,
1.36234614e+00, 1.36234614e+00, 1.36234614e+00, 1.36234614e+00,
1.36135889e+00, 1.36135889e+00, 1.36135889e+00, 1.36135889e+00,
1.36073912e+00, 1.36073912e+00, 1.36073912e+00, 1.36073912e+00,
1.36010502e+00, 1.36010502e+00, 1.36010502e+00, 1.36010502e+00,
1.36015262e+00, 1.36015262e+00, 1.36015262e+00, 1.36015262e+00,
1.35942760e+00, 1.35942760e+00, 1.35942760e+00, 1.35942760e+00,
1.35349451e+00, 1.35349451e+00, 1.35349451e+00, 1.35349451e+00,
1.32499316e+00, 1.32499316e+00, 1.32499316e+00, 1.32499316e+00,
1.19968030e+00, 1.19968030e+00, 1.19968030e+00, 1.19968030e+00,
7.65654632e-01, 7.65654632e-01, 7.65654632e-01, 7.65654632e-01,
1.63013744e-01, 1.63013744e-01, 1.63013744e-01, 1.63013744e-01,
1.51766301e-02, 1.51766301e-02, 1.51766301e-02, 1.51766301e-02,
1.15961586e-03, 1.15961586e-03, 1.15961586e-03, 1.15961586e-03,
8.71092067e-05, 8.71092067e-05, 8.71092067e-05, 8.71092067e-05,
6.51852874e-06, 6.51852874e-06, 6.51852874e-06, 6.51852874e-06,
4.86666078e-07, 4.86666078e-07, 4.86666078e-07, 4.86666078e-07,
3.62471947e-08, 3.62471947e-08, 3.62471947e-08, 3.62471947e-08,
2.69260253e-09, 2.69260253e-09, 2.69260253e-09, 2.69260253e-09,
1.99494358e-10, 1.99494358e-10, 1.99494358e-10, 1.99494358e-10,
1.47423360e-11, 1.47423360e-11, 1.47423360e-11, 1.47423360e-11,
1.08650415e-12, 1.08650415e-12, 1.08650415e-12, 1.08650415e-12,
7.98526879e-14, 7.98526879e-14, 7.98526879e-14, 7.98526879e-14,
5.91227187e-15, 5.91227187e-15, 5.91227187e-15, 5.91227187e-15,
3.97725372e-16, 3.97725372e-16, 3.97725372e-16, 3.97725372e-16,
1.14152033e-17, 1.14152033e-17, 1.14152033e-17, 1.14152033e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999979,
0.99999979, 0.99999979, 0.99999979, 0.99999865, 0.99999865,
0.99999865, 0.99999865, 0.999992 , 0.999992 , 0.999992 ,
0.999992 , 0.99995725, 0.99995725, 0.99995725, 0.99995725,
0.99979607, 0.99979607, 0.99979607, 0.99979607, 0.99914172,
0.99914172, 0.99914172, 0.99914172, 0.9968603 , 0.9968603 ,
0.9968603 , 0.9968603 , 0.99018195, 0.99018195, 0.99018195,
0.99018195, 0.97414391, 0.97414391, 0.97414391, 0.97414391,
0.94304609, 0.94304609, 0.94304609, 0.94304609, 0.89430785,
0.89430785, 0.89430785, 0.89430785, 0.83105531, 0.83105531,
0.83105531, 0.83105531, 0.75992159, 0.75992159, 0.75992159,
0.75992159, 0.68934729, 0.68934729, 0.68934729, 0.68934729,
0.62578832, 0.62578832, 0.62578832, 0.62578832, 0.56572412,
0.56572412, 0.56572412, 0.56572412, 0.51826812, 0.51826812,
0.51826812, 0.51826812, 0.48775305, 0.48775305, 0.48775305,
0.48775305, 0.47361881, 0.47361881, 0.47361881, 0.47361881,
0.46884188, 0.46884188, 0.46884188, 0.46884188, 0.46724329,
0.46724329, 0.46724329, 0.46724329, 0.46648424, 0.46648424,
0.46648424, 0.46648424, 0.46584328, 0.46584328, 0.46584328,
0.46584328, 0.46559981, 0.46559981, 0.46559981, 0.46559981,
0.46550449, 0.46550449, 0.46550449, 0.46550449, 0.46529836,
0.46529836, 0.46529836, 0.46529836, 0.46519784, 0.46519784,
0.46519784, 0.46519784, 0.46501854, 0.46501854, 0.46501854,
0.46501854, 0.4645934 , 0.4645934 , 0.4645934 , 0.4645934 ,
0.4644984 , 0.4644984 , 0.4644984 , 0.4644984 , 0.4647448 ,
0.4647448 , 0.4647448 , 0.4647448 , 0.46480417, 0.46480417,
0.46480417, 0.46480417, 0.46452695, 0.46452695, 0.46452695,
0.46452695, 0.46226705, 0.46226705, 0.46226705, 0.46226705,
0.44923987, 0.44923987, 0.44923987, 0.44923987, 0.39520123,
0.39520123, 0.39520123, 0.39520123, 0.25019732, 0.25019732,
0.25019732, 0.25019732, 0.12347913, 0.12347913, 0.12347913,
0.12347913, 0.10201923, 0.10201923, 0.10201923, 0.10201923,
0.10015345, 0.10015345, 0.10015345, 0.10015345, 0.10001152,
0.10001152, 0.10001152, 0.10001152, 0.10000086, 0.10000086,
0.10000086, 0.10000086, 0.10000006, 0.10000006, 0.10000006,
0.10000006, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999977,
0.99999977, 0.99999977, 0.99999977, 0.99999859, 0.99999859,
0.99999859, 0.99999859, 0.99999193, 0.99999193, 0.99999193,
0.99999193, 0.99995852, 0.99995852, 0.99995852, 0.99995852,
0.99980949, 0.99980949, 0.99980949, 0.99980949, 0.99922831,
0.99922831, 0.99922831, 0.99922831, 0.99728299, 0.99728299,
0.99728299, 0.99728299, 0.99181486, 0.99181486, 0.99181486,
0.99181486, 0.97917208, 0.97917208, 0.97917208, 0.97917208,
0.95541523, 0.95541523, 0.95541523, 0.95541523, 0.91893615,
0.91893615, 0.91893615, 0.91893615, 0.87190997, 0.87190997,
0.87190997, 0.87190997, 0.8187528 , 0.8187528 , 0.8187528 ,
0.8187528 , 0.76602872, 0.76602872, 0.76602872, 0.76602872,
0.7143833 , 0.7143833 , 0.7143833 , 0.7143833 , 0.66676801,
0.66676801, 0.66676801, 0.66676801, 0.6307179 , 0.6307179 ,
0.6307179 , 0.6307179 , 0.60198349, 0.60198349, 0.60198349,
0.60198349, 0.58404794, 0.58404794, 0.58404794, 0.58404794,
0.57892756, 0.57892756, 0.57892756, 0.57892756, 0.57904741,
0.57904741, 0.57904741, 0.57904741, 0.58062787, 0.58062787,
0.58062787, 0.58062787, 0.58283322, 0.58283322, 0.58283322,
0.58283322, 0.58277091, 0.58277091, 0.58277091, 0.58277091,
0.57963328, 0.57963328, 0.57963328, 0.57963328, 0.56873886,
0.56873886, 0.56873886, 0.56873886, 0.54485283, 0.54485283,
0.54485283, 0.54485283, 0.50395357, 0.50395357, 0.50395357,
0.50395357, 0.44501153, 0.44501153, 0.44501153, 0.44501153,
0.38825268, 0.38825268, 0.38825268, 0.38825268, 0.35468169,
0.35468169, 0.35468169, 0.35468169, 0.33785192, 0.33785192,
0.33785192, 0.33785192, 0.331301 , 0.331301 , 0.331301 ,
0.331301 , 0.33001344, 0.33001344, 0.33001344, 0.33001344,
0.32943388, 0.32943388, 0.32943388, 0.32943388, 0.32258242,
0.32258242, 0.32258242, 0.32258242, 0.28431554, 0.28431554,
0.28431554, 0.28431554, 0.1892955 , 0.1892955 , 0.1892955 ,
0.1892955 , 0.1338258 , 0.1338258 , 0.1338258 , 0.1338258 ,
0.12578276, 0.12578276, 0.12578276, 0.12578276, 0.1250613 ,
0.1250613 , 0.1250613 , 0.1250613 , 0.12500465, 0.12500465,
0.12500465, 0.12500465, 0.12500035, 0.12500035, 0.12500035,
0.12500035, 0.12500003, 0.12500003, 0.12500003, 0.12500003,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
7.50000039e-01, 7.50000039e-01, 7.50000039e-01, 7.50000039e-01,
7.50000267e-01, 7.50000267e-01, 7.50000267e-01, 7.50000267e-01,
7.50001674e-01, 7.50001674e-01, 7.50001674e-01, 7.50001674e-01,
7.50009545e-01, 7.50009545e-01, 7.50009545e-01, 7.50009545e-01,
7.50049084e-01, 7.50049084e-01, 7.50049084e-01, 7.50049084e-01,
7.50225416e-01, 7.50225416e-01, 7.50225416e-01, 7.50225416e-01,
7.50913227e-01, 7.50913227e-01, 7.50913227e-01, 7.50913227e-01,
7.53217421e-01, 7.53217421e-01, 7.53217421e-01, 7.53217421e-01,
7.59713585e-01, 7.59713585e-01, 7.59713585e-01, 7.59713585e-01,
7.74851816e-01, 7.74851816e-01, 7.74851816e-01, 7.74851816e-01,
8.03766307e-01, 8.03766307e-01, 8.03766307e-01, 8.03766307e-01,
8.49390171e-01, 8.49390171e-01, 8.49390171e-01, 8.49390171e-01,
9.10489184e-01, 9.10489184e-01, 9.10489184e-01, 9.10489184e-01,
9.82823141e-01, 9.82823141e-01, 9.82823141e-01, 9.82823141e-01,
1.05751085e+00, 1.05751085e+00, 1.05751085e+00, 1.05751085e+00,
1.13275935e+00, 1.13275935e+00, 1.13275935e+00, 1.13275935e+00,
1.20924075e+00, 1.20924075e+00, 1.20924075e+00, 1.20924075e+00,
1.27595955e+00, 1.27595955e+00, 1.27595955e+00, 1.27595955e+00,
1.32313321e+00, 1.32313321e+00, 1.32313321e+00, 1.32313321e+00,
1.34759687e+00, 1.34759687e+00, 1.34759687e+00, 1.34759687e+00,
1.35670899e+00, 1.35670899e+00, 1.35670899e+00, 1.35670899e+00,
1.35944955e+00, 1.35944955e+00, 1.35944955e+00, 1.35944955e+00,
1.36061079e+00, 1.36061079e+00, 1.36061079e+00, 1.36061079e+00,
1.36171079e+00, 1.36171079e+00, 1.36171079e+00, 1.36171079e+00,
1.36290556e+00, 1.36290556e+00, 1.36290556e+00, 1.36290556e+00,
1.36383904e+00, 1.36383904e+00, 1.36383904e+00, 1.36383904e+00,
1.36419289e+00, 1.36419289e+00, 1.36419289e+00, 1.36419289e+00,
1.36391125e+00, 1.36391125e+00, 1.36391125e+00, 1.36391125e+00,
1.36302760e+00, 1.36302760e+00, 1.36302760e+00, 1.36302760e+00,
1.36208548e+00, 1.36208548e+00, 1.36208548e+00, 1.36208548e+00,
1.36114875e+00, 1.36114875e+00, 1.36114875e+00, 1.36114875e+00,
1.36014308e+00, 1.36014308e+00, 1.36014308e+00, 1.36014308e+00,
1.36010184e+00, 1.36010184e+00, 1.36010184e+00, 1.36010184e+00,
1.35992178e+00, 1.35992178e+00, 1.35992178e+00, 1.35992178e+00,
1.35788212e+00, 1.35788212e+00, 1.35788212e+00, 1.35788212e+00,
1.34841935e+00, 1.34841935e+00, 1.34841935e+00, 1.34841935e+00,
1.30264541e+00, 1.30264541e+00, 1.30264541e+00, 1.30264541e+00,
1.10947676e+00, 1.10947676e+00, 1.10947676e+00, 1.10947676e+00,
5.55338397e-01, 5.55338397e-01, 5.55338397e-01, 5.55338397e-01,
8.31514874e-02, 8.31514874e-02, 8.31514874e-02, 8.31514874e-02,
6.89643013e-03, 6.89643013e-03, 6.89643013e-03, 6.89643013e-03,
5.24246789e-04, 5.24246789e-04, 5.24246789e-04, 5.24246789e-04,
3.94230246e-05, 3.94230246e-05, 3.94230246e-05, 3.94230246e-05,
2.95275452e-06, 2.95275452e-06, 2.95275452e-06, 2.95275452e-06,
2.20643830e-07, 2.20643830e-07, 2.20643830e-07, 2.20643830e-07,
1.64480940e-08, 1.64480940e-08, 1.64480940e-08, 1.64480940e-08,
1.22307279e-09, 1.22307279e-09, 1.22307279e-09, 1.22307279e-09,
9.07116089e-11, 9.07116089e-11, 9.07116089e-11, 9.07116089e-11,
6.71020267e-12, 6.71020267e-12, 6.71020267e-12, 6.71020267e-12,
4.95019676e-13, 4.95019676e-13, 4.95019676e-13, 4.95019676e-13,
3.65542843e-14, 3.65542843e-14, 3.65542843e-14, 3.65542843e-14,
2.62269446e-15, 2.62269446e-15, 2.62269446e-15, 2.62269446e-15,
1.74466545e-16, 1.74466545e-16, 1.74466545e-16, 1.74466545e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999968,
0.99999968, 0.99999968, 0.99999968, 0.99999802, 0.99999802,
0.99999802, 0.99999802, 0.99998871, 0.99998871, 0.99998871,
0.99998871, 0.99994192, 0.99994192, 0.99994192, 0.99994192,
0.99973332, 0.99973332, 0.99973332, 0.99973332, 0.99892001,
0.99892001, 0.99892001, 0.99892001, 0.99620009, 0.99620009,
0.99620009, 0.99620009, 0.98857069, 0.98857069, 0.98857069,
0.98857069, 0.97100982, 0.97100982, 0.97100982, 0.97100982,
0.93828248, 0.93828248, 0.93828248, 0.93828248, 0.88868204,
0.88868204, 0.88868204, 0.88868204, 0.82587279, 0.82587279,
0.82587279, 0.82587279, 0.75627712, 0.75627712, 0.75627712,
0.75627712, 0.68804743, 0.68804743, 0.68804743, 0.68804743,
0.62631819, 0.62631819, 0.62631819, 0.62631819, 0.56772481,
0.56772481, 0.56772481, 0.56772481, 0.52076656, 0.52076656,
0.52076656, 0.52076656, 0.48953753, 0.48953753, 0.48953753,
0.48953753, 0.47437293, 0.47437293, 0.47437293, 0.47437293,
0.46911158, 0.46911158, 0.46911158, 0.46911158, 0.46740275,
0.46740275, 0.46740275, 0.46740275, 0.46657107, 0.46657107,
0.46657107, 0.46657107, 0.46582165, 0.46582165, 0.46582165,
0.46582165, 0.46543932, 0.46543932, 0.46543932, 0.46543932,
0.4654086 , 0.4654086 , 0.4654086 , 0.4654086 , 0.46534166,
0.46534166, 0.46534166, 0.46534166, 0.46535445, 0.46535445,
0.46535445, 0.46535445, 0.4653544 , 0.4653544 , 0.4653544 ,
0.4653544 , 0.46497431, 0.46497431, 0.46497431, 0.46497431,
0.46469511, 0.46469511, 0.46469511, 0.46469511, 0.46475993,
0.46475993, 0.46475993, 0.46475993, 0.464781 , 0.464781 ,
0.464781 , 0.464781 , 0.46475951, 0.46475951, 0.46475951,
0.46475951, 0.46429906, 0.46429906, 0.46429906, 0.46429906,
0.45994624, 0.45994624, 0.45994624, 0.45994624, 0.43907961,
0.43907961, 0.43907961, 0.43907961, 0.36134325, 0.36134325,
0.36134325, 0.36134325, 0.19702827, 0.19702827, 0.19702827,
0.19702827, 0.11146119, 0.11146119, 0.11146119, 0.11146119,
0.1009144 , 0.1009144 , 0.1009144 , 0.1009144 , 0.10006936,
0.10006936, 0.10006936, 0.10006936, 0.10000522, 0.10000522,
0.10000522, 0.10000522, 0.10000039, 0.10000039, 0.10000039,
0.10000039, 0.10000003, 0.10000003, 0.10000003, 0.10000003,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999966,
0.99999966, 0.99999966, 0.99999966, 0.99999796, 0.99999796,
0.99999796, 0.99999796, 0.99998877, 0.99998877, 0.99998877,
0.99998877, 0.99994431, 0.99994431, 0.99994431, 0.99994431,
0.99975356, 0.99975356, 0.99975356, 0.99975356, 0.99903846,
0.99903846, 0.99903846, 0.99903846, 0.99674028, 0.99674028,
0.99674028, 0.99674028, 0.9905424 , 0.9905424 , 0.9905424 ,
0.9905424 , 0.97678524, 0.97678524, 0.97678524, 0.97678524,
0.95188827, 0.95188827, 0.95188827, 0.95188827, 0.91483889,
0.91483889, 0.91483889, 0.91483889, 0.86814947, 0.86814947,
0.86814947, 0.86814947, 0.81614043, 0.81614043, 0.81614043,
0.81614043, 0.76514638, 0.76514638, 0.76514638, 0.76514638,
0.71513541, 0.71513541, 0.71513541, 0.71513541, 0.66759433,
0.66759433, 0.66759433, 0.66759433, 0.63206294, 0.63206294,
0.63206294, 0.63206294, 0.60467247, 0.60467247, 0.60467247,
0.60467247, 0.58608604, 0.58608604, 0.58608604, 0.58608604,
0.57910917, 0.57910917, 0.57910917, 0.57910917, 0.57863491,
0.57863491, 0.57863491, 0.57863491, 0.57958226, 0.57958226,
0.57958226, 0.57958226, 0.58186037, 0.58186037, 0.58186037,
0.58186037, 0.58254066, 0.58254066, 0.58254066, 0.58254066,
0.58105548, 0.58105548, 0.58105548, 0.58105548, 0.5741289 ,
0.5741289 , 0.5741289 , 0.5741289 , 0.55663703, 0.55663703,
0.55663703, 0.55663703, 0.52383547, 0.52383547, 0.52383547,
0.52383547, 0.47295059, 0.47295059, 0.47295059, 0.47295059,
0.41066789, 0.41066789, 0.41066789, 0.41066789, 0.36741736,
0.36741736, 0.36741736, 0.36741736, 0.34401862, 0.34401862,
0.34401862, 0.34401862, 0.33359114, 0.33359114, 0.33359114,
0.33359114, 0.33073618, 0.33073618, 0.33073618, 0.33073618,
0.33046507, 0.33046507, 0.33046507, 0.33046507, 0.32945985,
0.32945985, 0.32945985, 0.32945985, 0.31646094, 0.31646094,
0.31646094, 0.31646094, 0.25979697, 0.25979697, 0.25979697,
0.25979697, 0.16286529, 0.16286529, 0.16286529, 0.16286529,
0.12929032, 0.12929032, 0.12929032, 0.12929032, 0.12536025,
0.12536025, 0.12536025, 0.12536025, 0.1250278 , 0.1250278 ,
0.1250278 , 0.1250278 , 0.1250021 , 0.1250021 , 0.1250021 ,
0.1250021 , 0.12500016, 0.12500016, 0.12500016, 0.12500016,
0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000008e-01, 7.50000008e-01, 7.50000008e-01, 7.50000008e-01,
7.50000061e-01, 7.50000061e-01, 7.50000061e-01, 7.50000061e-01,
7.50000400e-01, 7.50000400e-01, 7.50000400e-01, 7.50000400e-01,
7.50002418e-01, 7.50002418e-01, 7.50002418e-01, 7.50002418e-01,
7.50013293e-01, 7.50013293e-01, 7.50013293e-01, 7.50013293e-01,
7.50065892e-01, 7.50065892e-01, 7.50065892e-01, 7.50065892e-01,
7.50291602e-01, 7.50291602e-01, 7.50291602e-01, 7.50291602e-01,
7.51137963e-01, 7.51137963e-01, 7.51137963e-01, 7.51137963e-01,
7.53860931e-01, 7.53860931e-01, 7.53860931e-01, 7.53860931e-01,
7.61229895e-01, 7.61229895e-01, 7.61229895e-01, 7.61229895e-01,
7.77729726e-01, 7.77729726e-01, 7.77729726e-01, 7.77729726e-01,
8.08112566e-01, 8.08112566e-01, 8.08112566e-01, 8.08112566e-01,
8.54605431e-01, 8.54605431e-01, 8.54605431e-01, 8.54605431e-01,
9.15480064e-01, 9.15480064e-01, 9.15480064e-01, 9.15480064e-01,
9.86288872e-01, 9.86288872e-01, 9.86288872e-01, 9.86288872e-01,
1.05903455e+00, 1.05903455e+00, 1.05903455e+00, 1.05903455e+00,
1.13226352e+00, 1.13226352e+00, 1.13226352e+00, 1.13226352e+00,
1.20670021e+00, 1.20670021e+00, 1.20670021e+00, 1.20670021e+00,
1.27256005e+00, 1.27256005e+00, 1.27256005e+00, 1.27256005e+00,
1.32027206e+00, 1.32027206e+00, 1.32027206e+00, 1.32027206e+00,
1.34589382e+00, 1.34589382e+00, 1.34589382e+00, 1.34589382e+00,
1.35597341e+00, 1.35597341e+00, 1.35597341e+00, 1.35597341e+00,
1.35925362e+00, 1.35925362e+00, 1.35925362e+00, 1.35925362e+00,
1.36055940e+00, 1.36055940e+00, 1.36055940e+00, 1.36055940e+00,
1.36160216e+00, 1.36160216e+00, 1.36160216e+00, 1.36160216e+00,
1.36259868e+00, 1.36259868e+00, 1.36259868e+00, 1.36259868e+00,
1.36352978e+00, 1.36352978e+00, 1.36352978e+00, 1.36352978e+00,
1.36408956e+00, 1.36408956e+00, 1.36408956e+00, 1.36408956e+00,
1.36400563e+00, 1.36400563e+00, 1.36400563e+00, 1.36400563e+00,
1.36344216e+00, 1.36344216e+00, 1.36344216e+00, 1.36344216e+00,
1.36276431e+00, 1.36276431e+00, 1.36276431e+00, 1.36276431e+00,
1.36178307e+00, 1.36178307e+00, 1.36178307e+00, 1.36178307e+00,
1.36049076e+00, 1.36049076e+00, 1.36049076e+00, 1.36049076e+00,
1.36016799e+00, 1.36016799e+00, 1.36016799e+00, 1.36016799e+00,
1.36000464e+00, 1.36000464e+00, 1.36000464e+00, 1.36000464e+00,
1.35908609e+00, 1.35908609e+00, 1.35908609e+00, 1.35908609e+00,
1.35614599e+00, 1.35614599e+00, 1.35614599e+00, 1.35614599e+00,
1.34038610e+00, 1.34038610e+00, 1.34038610e+00, 1.34038610e+00,
1.26724046e+00, 1.26724046e+00, 1.26724046e+00, 1.26724046e+00,
9.82640800e-01, 9.82640800e-01, 9.82640800e-01, 9.82640800e-01,
3.48788395e-01, 3.48788395e-01, 3.48788395e-01, 3.48788395e-01,
3.96209590e-02, 3.96209590e-02, 3.96209590e-02, 3.96209590e-02,
3.13229418e-03, 3.13229418e-03, 3.13229418e-03, 3.13229418e-03,
2.36909021e-04, 2.36909021e-04, 2.36909021e-04, 2.36909021e-04,
1.78221789e-05, 1.78221789e-05, 1.78221789e-05, 1.78221789e-05,
1.33690626e-06, 1.33690626e-06, 1.33690626e-06, 1.33690626e-06,
9.99987457e-08, 9.99987457e-08, 9.99987457e-08, 9.99987457e-08,
7.46125178e-09, 7.46125178e-09, 7.46125178e-09, 7.46125178e-09,
5.55345318e-10, 5.55345318e-10, 5.55345318e-10, 5.55345318e-10,
4.12297396e-11, 4.12297396e-11, 4.12297396e-11, 4.12297396e-11,
3.05298490e-12, 3.05298490e-12, 3.05298490e-12, 3.05298490e-12,
2.25630808e-13, 2.25630808e-13, 2.25630808e-13, 2.25630808e-13,
1.65496825e-14, 1.65496825e-14, 1.65496825e-14, 1.65496825e-14,
1.18089382e-15, 1.18089382e-15, 1.18089382e-15, 1.18089382e-15,
7.03960128e-17, 7.03960128e-17, 7.03960128e-17, 7.03960128e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999953,
0.99999953, 0.99999953, 0.99999953, 0.99999714, 0.99999714,
0.99999714, 0.99999714, 0.99998427, 0.99998427, 0.99998427,
0.99998427, 0.99992204, 0.99992204, 0.99992204, 0.99992204,
0.99965503, 0.99965503, 0.99965503, 0.99965503, 0.99865441,
0.99865441, 0.99865441, 0.99865441, 0.99544177, 0.99544177,
0.99544177, 0.99544177, 0.98679799, 0.98679799, 0.98679799,
0.98679799, 0.96770449, 0.96770449, 0.96770449, 0.96770449,
0.93344814, 0.93344814, 0.93344814, 0.93344814, 0.88314892,
0.88314892, 0.88314892, 0.88314892, 0.82088008, 0.82088008,
0.82088008, 0.82088008, 0.75281451, 0.75281451, 0.75281451,
0.75281451, 0.68680422, 0.68680422, 0.68680422, 0.68680422,
0.62684396, 0.62684396, 0.62684396, 0.62684396, 0.56962935,
0.56962935, 0.56962935, 0.56962935, 0.5232226 , 0.5232226 ,
0.5232226 , 0.5232226 , 0.49143435, 0.49143435, 0.49143435,
0.49143435, 0.47522501, 0.47522501, 0.47522501, 0.47522501,
0.46935729, 0.46935729, 0.46935729, 0.46935729, 0.46752687,
0.46752687, 0.46752687, 0.46752687, 0.46668373, 0.46668373,
0.46668373, 0.46668373, 0.46587781, 0.46587781, 0.46587781,
0.46587781, 0.46533792, 0.46533792, 0.46533792, 0.46533792,
0.46526321, 0.46526321, 0.46526321, 0.46526321, 0.46529401,
0.46529401, 0.46529401, 0.46529401, 0.46538814, 0.46538814,
0.46538814, 0.46538814, 0.46554165, 0.46554165, 0.46554165,
0.46554165, 0.4653427 , 0.4653427 , 0.4653427 , 0.4653427 ,
0.46500494, 0.46500494, 0.46500494, 0.46500494, 0.4649203 ,
0.4649203 , 0.4649203 , 0.4649203 , 0.46481236, 0.46481236,
0.46481236, 0.46481236, 0.4648016 , 0.4648016 , 0.4648016 ,
0.4648016 , 0.46486006, 0.46486006, 0.46486006, 0.46486006,
0.46351591, 0.46351591, 0.46351591, 0.46351591, 0.45617693,
0.45617693, 0.45617693, 0.45617693, 0.42387417, 0.42387417,
0.42387417, 0.42387417, 0.31662409, 0.31662409, 0.31662409,
0.31662409, 0.15467947, 0.15467947, 0.15467947, 0.15467947,
0.10533579, 0.10533579, 0.10533579, 0.10533579, 0.10041475,
0.10041475, 0.10041475, 0.10041475, 0.10003134, 0.10003134,
0.10003134, 0.10003134, 0.10000236, 0.10000236, 0.10000236,
0.10000236, 0.10000018, 0.10000018, 0.10000018, 0.10000018,
0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.9999995 ,
0.9999995 , 0.9999995 , 0.9999995 , 0.99999709, 0.99999709,
0.99999709, 0.99999709, 0.99998454, 0.99998454, 0.99998454,
0.99998454, 0.99992608, 0.99992608, 0.99992608, 0.99992608,
0.99968447, 0.99968447, 0.99968447, 0.99968447, 0.99881309,
0.99881309, 0.99881309, 0.99881309, 0.9961219 , 0.9961219 ,
0.9961219 , 0.9961219 , 0.98915182, 0.98915182, 0.98915182,
0.98915182, 0.9742804 , 0.9742804 , 0.9742804 , 0.9742804 ,
0.94831908, 0.94831908, 0.94831908, 0.94831908, 0.91081218,
0.91081218, 0.91081218, 0.91081218, 0.86452304, 0.86452304,
0.86452304, 0.86452304, 0.81364869, 0.81364869, 0.81364869,
0.81364869, 0.76425007, 0.76425007, 0.76425007, 0.76425007,
0.71596964, 0.71596964, 0.71596964, 0.71596964, 0.66862165,
0.66862165, 0.66862165, 0.66862165, 0.63309882, 0.63309882,
0.63309882, 0.63309882, 0.60692411, 0.60692411, 0.60692411,
0.60692411, 0.58834503, 0.58834503, 0.58834503, 0.58834503,
0.5797179 , 0.5797179 , 0.5797179 , 0.5797179 , 0.57833736,
0.57833736, 0.57833736, 0.57833736, 0.57885427, 0.57885427,
0.57885427, 0.57885427, 0.58070829, 0.58070829, 0.58070829,
0.58070829, 0.5821418 , 0.5821418 , 0.5821418 , 0.5821418 ,
0.58161437, 0.58161437, 0.58161437, 0.58161437, 0.57752342,
0.57752342, 0.57752342, 0.57752342, 0.56529572, 0.56529572,
0.56529572, 0.56529572, 0.53988046, 0.53988046, 0.53988046,
0.53988046, 0.49734652, 0.49734652, 0.49734652, 0.49734652,
0.43756408, 0.43756408, 0.43756408, 0.43756408, 0.38405097,
0.38405097, 0.38405097, 0.38405097, 0.35274026, 0.35274026,
0.35274026, 0.35274026, 0.33729664, 0.33729664, 0.33729664,
0.33729664, 0.33184586, 0.33184586, 0.33184586, 0.33184586,
0.3308689 , 0.3308689 , 0.3308689 , 0.3308689 , 0.33116014,
0.33116014, 0.33116014, 0.33116014, 0.3284959 , 0.3284959 ,
0.3284959 , 0.3284959 , 0.305514 , 0.305514 , 0.305514 ,
0.305514 , 0.22909354, 0.22909354, 0.22909354, 0.22909354,
0.14525793, 0.14525793, 0.14525793, 0.14525793, 0.12704227,
0.12704227, 0.12704227, 0.12704227, 0.12516466, 0.12516466,
0.12516466, 0.12516466, 0.12501259, 0.12501259, 0.12501259,
0.12501259, 0.12500095, 0.12500095, 0.12500095, 0.12500095,
0.12500007, 0.12500007, 0.12500007, 0.12500007, 0.12500001,
0.12500001, 0.12500001, 0.12500001, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
7.50000093e-01, 7.50000093e-01, 7.50000093e-01, 7.50000093e-01,
7.50000591e-01, 7.50000591e-01, 7.50000591e-01, 7.50000591e-01,
7.50003448e-01, 7.50003448e-01, 7.50003448e-01, 7.50003448e-01,
7.50018287e-01, 7.50018287e-01, 7.50018287e-01, 7.50018287e-01,
7.50087467e-01, 7.50087467e-01, 7.50087467e-01, 7.50087467e-01,
7.50373360e-01, 7.50373360e-01, 7.50373360e-01, 7.50373360e-01,
7.51404804e-01, 7.51404804e-01, 7.51404804e-01, 7.51404804e-01,
7.54594512e-01, 7.54594512e-01, 7.54594512e-01, 7.54594512e-01,
7.62888923e-01, 7.62888923e-01, 7.62888923e-01, 7.62888923e-01,
7.80756528e-01, 7.80756528e-01, 7.80756528e-01, 7.80756528e-01,
8.12524446e-01, 8.12524446e-01, 8.12524446e-01, 8.12524446e-01,
8.59748156e-01, 8.59748156e-01, 8.59748156e-01, 8.59748156e-01,
9.20303317e-01, 9.20303317e-01, 9.20303317e-01, 9.20303317e-01,
9.89569875e-01, 9.89569875e-01, 9.89569875e-01, 9.89569875e-01,
1.06043656e+00, 1.06043656e+00, 1.06043656e+00, 1.06043656e+00,
1.13178235e+00, 1.13178235e+00, 1.13178235e+00, 1.13178235e+00,
1.20428722e+00, 1.20428722e+00, 1.20428722e+00, 1.20428722e+00,
1.26922681e+00, 1.26922681e+00, 1.26922681e+00, 1.26922681e+00,
1.31744793e+00, 1.31744793e+00, 1.31744793e+00, 1.31744793e+00,
1.34420543e+00, 1.34420543e+00, 1.34420543e+00, 1.34420543e+00,
1.35515354e+00, 1.35515354e+00, 1.35515354e+00, 1.35515354e+00,
1.35893569e+00, 1.35893569e+00, 1.35893569e+00, 1.35893569e+00,
1.36047087e+00, 1.36047087e+00, 1.36047087e+00, 1.36047087e+00,
1.36156372e+00, 1.36156372e+00, 1.36156372e+00, 1.36156372e+00,
1.36242402e+00, 1.36242402e+00, 1.36242402e+00, 1.36242402e+00,
1.36322740e+00, 1.36322740e+00, 1.36322740e+00, 1.36322740e+00,
1.36389115e+00, 1.36389115e+00, 1.36389115e+00, 1.36389115e+00,
1.36394778e+00, 1.36394778e+00, 1.36394778e+00, 1.36394778e+00,
1.36363338e+00, 1.36363338e+00, 1.36363338e+00, 1.36363338e+00,
1.36317823e+00, 1.36317823e+00, 1.36317823e+00, 1.36317823e+00,
1.36245466e+00, 1.36245466e+00, 1.36245466e+00, 1.36245466e+00,
1.36111329e+00, 1.36111329e+00, 1.36111329e+00, 1.36111329e+00,
1.36045029e+00, 1.36045029e+00, 1.36045029e+00, 1.36045029e+00,
1.36011173e+00, 1.36011173e+00, 1.36011173e+00, 1.36011173e+00,
1.35943008e+00, 1.35943008e+00, 1.35943008e+00, 1.35943008e+00,
1.35849429e+00, 1.35849429e+00, 1.35849429e+00, 1.35849429e+00,
1.35337432e+00, 1.35337432e+00, 1.35337432e+00, 1.35337432e+00,
1.32699322e+00, 1.32699322e+00, 1.32699322e+00, 1.32699322e+00,
1.21392814e+00, 1.21392814e+00, 1.21392814e+00, 1.21392814e+00,
8.11305629e-01, 8.11305629e-01, 8.11305629e-01, 8.11305629e-01,
1.91993018e-01, 1.91993018e-01, 1.91993018e-01, 1.91993018e-01,
1.84260657e-02, 1.84260657e-02, 1.84260657e-02, 1.84260657e-02,
1.41864065e-03, 1.41864065e-03, 1.41864065e-03, 1.41864065e-03,
1.07039498e-04, 1.07039498e-04, 1.07039498e-04, 1.07039498e-04,
8.05698302e-06, 8.05698302e-06, 8.05698302e-06, 8.05698302e-06,
6.04942296e-07, 6.04942296e-07, 6.04942296e-07, 6.04942296e-07,
4.53003318e-08, 4.53003318e-08, 4.53003318e-08, 4.53003318e-08,
3.38340676e-09, 3.38340676e-09, 3.38340676e-09, 3.38340676e-09,
2.52067618e-10, 2.52067618e-10, 2.52067618e-10, 2.52067618e-10,
1.87321914e-11, 1.87321914e-11, 1.87321914e-11, 1.87321914e-11,
1.38872868e-12, 1.38872868e-12, 1.38872868e-12, 1.38872868e-12,
1.02623229e-13, 1.02623229e-13, 1.02623229e-13, 1.02623229e-13,
7.45434898e-15, 7.45434898e-15, 7.45434898e-15, 7.45434898e-15,
5.62547042e-16, 5.62547042e-16, 5.62547042e-16, 5.62547042e-16,
3.42190912e-17, 3.42190912e-17, 3.42190912e-17, 3.42190912e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999989, 0.99999989, 0.99999989, 0.99999989, 0.9999993 ,
0.9999993 , 0.9999993 , 0.9999993 , 0.99999592, 0.99999592,
0.99999592, 0.99999592, 0.99997836, 0.99997836, 0.99997836,
0.99997836, 0.99989651, 0.99989651, 0.99989651, 0.99989651,
0.99955833, 0.99955833, 0.99955833, 0.99955833, 0.99833914,
0.99833914, 0.99833914, 0.99833914, 0.994578 , 0.994578 ,
0.994578 , 0.994578 , 0.98486191, 0.98486191, 0.98486191,
0.98486191, 0.96423927, 0.96423927, 0.96423927, 0.96423927,
0.92856276, 0.92856276, 0.92856276, 0.92856276, 0.87771963,
0.87771963, 0.87771963, 0.87771963, 0.81607625, 0.81607625,
0.81607625, 0.81607625, 0.74954761, 0.74954761, 0.74954761,
0.74954761, 0.68560013, 0.68560013, 0.68560013, 0.68560013,
0.62733728, 0.62733728, 0.62733728, 0.62733728, 0.57145736,
0.57145736, 0.57145736, 0.57145736, 0.52561297, 0.52561297,
0.52561297, 0.52561297, 0.4934087 , 0.4934087 , 0.4934087 ,
0.4934087 , 0.4762095 , 0.4762095 , 0.4762095 , 0.4762095 ,
0.46962957, 0.46962957, 0.46962957, 0.46962957, 0.46760322,
0.46760322, 0.46760322, 0.46760322, 0.46677931, 0.46677931,
0.46677931, 0.46677931, 0.46598101, 0.46598101, 0.46598101,
0.46598101, 0.4653201 , 0.4653201 , 0.4653201 , 0.4653201 ,
0.46512805, 0.46512805, 0.46512805, 0.46512805, 0.46518516,
0.46518516, 0.46518516, 0.46518516, 0.46533628, 0.46533628,
0.46533628, 0.46533628, 0.46560697, 0.46560697, 0.46560697,
0.46560697, 0.46556363, 0.46556363, 0.46556363, 0.46556363,
0.46534283, 0.46534283, 0.46534283, 0.46534283, 0.46521233,
0.46521233, 0.46521233, 0.46521233, 0.46494555, 0.46494555,
0.46494555, 0.46494555, 0.46485571, 0.46485571, 0.46485571,
0.46485571, 0.46502167, 0.46502167, 0.46502167, 0.46502167,
0.46460407, 0.46460407, 0.46460407, 0.46460407, 0.46217056,
0.46217056, 0.46217056, 0.46217056, 0.4504888 , 0.4504888 ,
0.4504888 , 0.4504888 , 0.40110266, 0.40110266, 0.40110266,
0.40110266, 0.26313779, 0.26313779, 0.26313779, 0.26313779,
0.12803042, 0.12803042, 0.12803042, 0.12803042, 0.1024553 ,
0.1024553 , 0.1024553 , 0.1024553 , 0.10018774, 0.10018774,
0.10018774, 0.10018774, 0.10001416, 0.10001416, 0.10001416,
0.10001416, 0.10000107, 0.10000107, 0.10000107, 0.10000107,
0.10000008, 0.10000008, 0.10000008, 0.10000008, 0.10000001,
0.10000001, 0.10000001, 0.10000001, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999988, 0.99999988, 0.99999988, 0.99999988, 0.99999927,
0.99999927, 0.99999927, 0.99999927, 0.9999959 , 0.9999959 ,
0.9999959 , 0.9999959 , 0.99997898, 0.99997898, 0.99997898,
0.99997898, 0.99990291, 0.99990291, 0.99990291, 0.99990291,
0.99959993, 0.99959993, 0.99959993, 0.99959993, 0.99854785,
0.99854785, 0.99854785, 0.99854785, 0.99542289, 0.99542289,
0.99542289, 0.99542289, 0.98764264, 0.98764264, 0.98764264,
0.98764264, 0.97166631, 0.97166631, 0.97166631, 0.97166631,
0.94472122, 0.94472122, 0.94472122, 0.94472122, 0.90686323,
0.90686323, 0.90686323, 0.90686323, 0.86103104, 0.86103104,
0.86103104, 0.86103104, 0.81128459, 0.81128459, 0.81128459,
0.81128459, 0.76333114, 0.76333114, 0.76333114, 0.76333114,
0.71681296, 0.71681296, 0.71681296, 0.71681296, 0.66988534,
0.66988534, 0.66988534, 0.66988534, 0.63398635, 0.63398635,
0.63398635, 0.63398635, 0.60868419, 0.60868419, 0.60868419,
0.60868419, 0.59062344, 0.59062344, 0.59062344, 0.59062344,
0.58075915, 0.58075915, 0.58075915, 0.58075915, 0.57821989,
0.57821989, 0.57821989, 0.57821989, 0.57834671, 0.57834671,
0.57834671, 0.57834671, 0.57958969, 0.57958969, 0.57958969,
0.57958969, 0.58156325, 0.58156325, 0.58156325, 0.58156325,
0.58167402, 0.58167402, 0.58167402, 0.58167402, 0.57949654,
0.57949654, 0.57949654, 0.57949654, 0.57136665, 0.57136665,
0.57136665, 0.57136665, 0.55237715, 0.55237715, 0.55237715,
0.55237715, 0.5178861 , 0.5178861 , 0.5178861 , 0.5178861 ,
0.46556784, 0.46556784, 0.46556784, 0.46556784, 0.40490108,
0.40490108, 0.40490108, 0.40490108, 0.36456809, 0.36456809,
0.36456809, 0.36456809, 0.34291316, 0.34291316, 0.34291316,
0.34291316, 0.33384449, 0.33384449, 0.33384449, 0.33384449,
0.33130867, 0.33130867, 0.33130867, 0.33130867, 0.33149943,
0.33149943, 0.33149943, 0.33149943, 0.33184294, 0.33184294,
0.33184294, 0.33184294, 0.32533092, 0.32533092, 0.32533092,
0.32533092, 0.28902333, 0.28902333, 0.28902333, 0.28902333,
0.1964541 , 0.1964541 , 0.1964541 , 0.1964541 , 0.13545621,
0.13545621, 0.13545621, 0.13545621, 0.12594954, 0.12594954,
0.12594954, 0.12594954, 0.12507487, 0.12507487, 0.12507487,
0.12507487, 0.1250057 , 0.1250057 , 0.1250057 , 0.1250057 ,
0.12500043, 0.12500043, 0.12500043, 0.12500043, 0.12500003,
0.12500003, 0.12500003, 0.12500003, 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000021e-01, 7.50000021e-01, 7.50000021e-01, 7.50000021e-01,
7.50000140e-01, 7.50000140e-01, 7.50000140e-01, 7.50000140e-01,
7.50000861e-01, 7.50000861e-01, 7.50000861e-01, 7.50000861e-01,
7.50004854e-01, 7.50004854e-01, 7.50004854e-01, 7.50004854e-01,
7.50024870e-01, 7.50024870e-01, 7.50024870e-01, 7.50024870e-01,
7.50114879e-01, 7.50114879e-01, 7.50114879e-01, 7.50114879e-01,
7.50473401e-01, 7.50473401e-01, 7.50473401e-01, 7.50473401e-01,
7.51718892e-01, 7.51718892e-01, 7.51718892e-01, 7.51718892e-01,
7.55424229e-01, 7.55424229e-01, 7.55424229e-01, 7.55424229e-01,
7.64691790e-01, 7.64691790e-01, 7.64691790e-01, 7.64691790e-01,
7.83922560e-01, 7.83922560e-01, 7.83922560e-01, 7.83922560e-01,
8.16985524e-01, 8.16985524e-01, 8.16985524e-01, 8.16985524e-01,
8.64808121e-01, 8.64808121e-01, 8.64808121e-01, 8.64808121e-01,
9.24958686e-01, 9.24958686e-01, 9.24958686e-01, 9.24958686e-01,
9.92693337e-01, 9.92693337e-01, 9.92693337e-01, 9.92693337e-01,
1.06173967e+00, 1.06173967e+00, 1.06173967e+00, 1.06173967e+00,
1.13129021e+00, 1.13129021e+00, 1.13129021e+00, 1.13129021e+00,
1.20198744e+00, 1.20198744e+00, 1.20198744e+00, 1.20198744e+00,
1.26595672e+00, 1.26595672e+00, 1.26595672e+00, 1.26595672e+00,
1.31461852e+00, 1.31461852e+00, 1.31461852e+00, 1.31461852e+00,
1.34253734e+00, 1.34253734e+00, 1.34253734e+00, 1.34253734e+00,
1.35432704e+00, 1.35432704e+00, 1.35432704e+00, 1.35432704e+00,
1.35852967e+00, 1.35852967e+00, 1.35852967e+00, 1.35852967e+00,
1.36029446e+00, 1.36029446e+00, 1.36029446e+00, 1.36029446e+00,
1.36153027e+00, 1.36153027e+00, 1.36153027e+00, 1.36153027e+00,
1.36236269e+00, 1.36236269e+00, 1.36236269e+00, 1.36236269e+00,
1.36299920e+00, 1.36299920e+00, 1.36299920e+00, 1.36299920e+00,
1.36365952e+00, 1.36365952e+00, 1.36365952e+00, 1.36365952e+00,
1.36380842e+00, 1.36380842e+00, 1.36380842e+00, 1.36380842e+00,
1.36364674e+00, 1.36364674e+00, 1.36364674e+00, 1.36364674e+00,
1.36337979e+00, 1.36337979e+00, 1.36337979e+00, 1.36337979e+00,
1.36291780e+00, 1.36291780e+00, 1.36291780e+00, 1.36291780e+00,
1.36179759e+00, 1.36179759e+00, 1.36179759e+00, 1.36179759e+00,
1.36099880e+00, 1.36099880e+00, 1.36099880e+00, 1.36099880e+00,
1.36037766e+00, 1.36037766e+00, 1.36037766e+00, 1.36037766e+00,
1.35961227e+00, 1.35961227e+00, 1.35961227e+00, 1.35961227e+00,
1.35921926e+00, 1.35921926e+00, 1.35921926e+00, 1.35921926e+00,
1.35759675e+00, 1.35759675e+00, 1.35759675e+00, 1.35759675e+00,
1.34828922e+00, 1.34828922e+00, 1.34828922e+00, 1.34828922e+00,
1.30681890e+00, 1.30681890e+00, 1.30681890e+00, 1.30681890e+00,
1.13247598e+00, 1.13247598e+00, 1.13247598e+00, 1.13247598e+00,
6.05650926e-01, 6.05650926e-01, 6.05650926e-01, 6.05650926e-01,
9.87277152e-02, 9.87277152e-02, 9.87277152e-02, 9.87277152e-02,
8.39794778e-03, 8.39794778e-03, 8.39794778e-03, 8.39794778e-03,
6.41036738e-04, 6.41036738e-04, 6.41036738e-04, 6.41036738e-04,
4.83799215e-05, 4.83799215e-05, 4.83799215e-05, 4.83799215e-05,
3.64189070e-06, 3.64189070e-06, 3.64189070e-06, 3.64189070e-06,
2.73646970e-07, 2.73646970e-07, 2.73646970e-07, 2.73646970e-07,
2.05122779e-08, 2.05122779e-08, 2.05122779e-08, 2.05122779e-08,
1.53361037e-09, 1.53361037e-09, 1.53361037e-09, 1.53361037e-09,
1.14368647e-10, 1.14368647e-10, 1.14368647e-10, 1.14368647e-10,
8.50778657e-12, 8.50778657e-12, 8.50778657e-12, 8.50778657e-12,
6.31241749e-13, 6.31241749e-13, 6.31241749e-13, 6.31241749e-13,
4.65959457e-14, 4.65959457e-14, 4.65959457e-14, 4.65959457e-14,
3.44111781e-15, 3.44111781e-15, 3.44111781e-15, 3.44111781e-15,
2.44715227e-16, 2.44715227e-16, 2.44715227e-16, 2.44715227e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999983, 0.99999983, 0.99999983, 0.99999983, 0.99999898,
0.99999898, 0.99999898, 0.99999898, 0.99999426, 0.99999426,
0.99999426, 0.99999426, 0.99997057, 0.99997057, 0.99997057,
0.99997057, 0.99986408, 0.99986408, 0.99986408, 0.99986408,
0.99944001, 0.99944001, 0.99944001, 0.99944001, 0.99796817,
0.99796817, 0.99796817, 0.99796817, 0.99360189, 0.99360189,
0.99360189, 0.99360189, 0.98276203, 0.98276203, 0.98276203,
0.98276203, 0.96062669, 0.96062669, 0.96062669, 0.96062669,
0.92364506, 0.92364506, 0.92364506, 0.92364506, 0.87240348,
0.87240348, 0.87240348, 0.87240348, 0.81145937, 0.81145937,
0.81145937, 0.81145937, 0.74647243, 0.74647243, 0.74647243,
0.74647243, 0.68444299, 0.68444299, 0.68444299, 0.68444299,
0.62778294, 0.62778294, 0.62778294, 0.62778294, 0.5732094 ,
0.5732094 , 0.5732094 , 0.5732094 , 0.52793038, 0.52793038,
0.52793038, 0.52793038, 0.49541854, 0.49541854, 0.49541854,
0.49541854, 0.47732601, 0.47732601, 0.47732601, 0.47732601,
0.46998067, 0.46998067, 0.46998067, 0.46998067, 0.46765631,
0.46765631, 0.46765631, 0.46765631, 0.46682798, 0.46682798,
0.46682798, 0.46682798, 0.46608977, 0.46608977, 0.46608977,
0.46608977, 0.4653755 , 0.4653755 , 0.4653755 , 0.4653755 ,
0.46504229, 0.46504229, 0.46504229, 0.46504229, 0.46505976,
0.46505976, 0.46505976, 0.46505976, 0.46523378, 0.46523378,
0.46523378, 0.46523378, 0.46557421, 0.46557421, 0.46557421,
0.46557421, 0.4656599 , 0.4656599 , 0.4656599 , 0.4656599 ,
0.46558172, 0.46558172, 0.46558172, 0.46558172, 0.46553439,
0.46553439, 0.46553439, 0.46553439, 0.46520836, 0.46520836,
0.46520836, 0.46520836, 0.46498438, 0.46498438, 0.46498438,
0.46498438, 0.46510742, 0.46510742, 0.46510742, 0.46510742,
0.46494014, 0.46494014, 0.46494014, 0.46494014, 0.46413174,
0.46413174, 0.46413174, 0.46413174, 0.46026772, 0.46026772,
0.46026772, 0.46026772, 0.44125804, 0.44125804, 0.44125804,
0.44125804, 0.36962649, 0.36962649, 0.36962649, 0.36962649,
0.20878392, 0.20878392, 0.20878392, 0.20878392, 0.11372397,
0.11372397, 0.11372397, 0.11372397, 0.10111414, 0.10111414,
0.10111414, 0.10111414, 0.10008482, 0.10008482, 0.10008482,
0.10008482, 0.1000064 , 0.1000064 , 0.1000064 , 0.1000064 ,
0.10000048, 0.10000048, 0.10000048, 0.10000048, 0.10000004,
0.10000004, 0.10000004, 0.10000004, 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999895,
0.99999895, 0.99999895, 0.99999895, 0.99999429, 0.99999429,
0.99999429, 0.99999429, 0.99997173, 0.99997173, 0.99997173,
0.99997173, 0.99987376, 0.99987376, 0.99987376, 0.99987376,
0.99949743, 0.99949743, 0.99949743, 0.99949743, 0.99823832,
0.99823832, 0.99823832, 0.99823832, 0.99463867, 0.99463867,
0.99463867, 0.99463867, 0.98601545, 0.98601545, 0.98601545,
0.98601545, 0.96895243, 0.96895243, 0.96895243, 0.96895243,
0.94110753, 0.94110753, 0.94110753, 0.94110753, 0.90299803,
0.90299803, 0.90299803, 0.90299803, 0.85767273, 0.85767273,
0.85767273, 0.85767273, 0.80904917, 0.80904917, 0.80904917,
0.80904917, 0.76239648, 0.76239648, 0.76239648, 0.76239648,
0.71749093, 0.71749093, 0.71749093, 0.71749093, 0.67147851,
0.67147851, 0.67147851, 0.67147851, 0.63489 , 0.63489 ,
0.63489 , 0.63489 , 0.60997929, 0.60997929, 0.60997929,
0.60997929, 0.59272294, 0.59272294, 0.59272294, 0.59272294,
0.58215958, 0.58215958, 0.58215958, 0.58215958, 0.57835617,
0.57835617, 0.57835617, 0.57835617, 0.57803304, 0.57803304,
0.57803304, 0.57803304, 0.57873351, 0.57873351, 0.57873351,
0.57873351, 0.58068604, 0.58068604, 0.58068604, 0.58068604,
0.58148766, 0.58148766, 0.58148766, 0.58148766, 0.58048792,
0.58048792, 0.58048792, 0.58048792, 0.57541107, 0.57541107,
0.57541107, 0.57541107, 0.56176436, 0.56176436, 0.56176436,
0.56176436, 0.53464163, 0.53464163, 0.53464163, 0.53464163,
0.49054306, 0.49054306, 0.49054306, 0.49054306, 0.43056034,
0.43056034, 0.43056034, 0.43056034, 0.38004005, 0.38004005,
0.38004005, 0.38004005, 0.35093816, 0.35093816, 0.35093816,
0.35093816, 0.33716902, 0.33716902, 0.33716902, 0.33716902,
0.33218768, 0.33218768, 0.33218768, 0.33218768, 0.33163645,
0.33163645, 0.33163645, 0.33163645, 0.33249535, 0.33249535,
0.33249535, 0.33249535, 0.33172011, 0.33172011, 0.33172011,
0.33172011, 0.3191431 , 0.3191431 , 0.3191431 , 0.3191431 ,
0.2660949 , 0.2660949 , 0.2660949 , 0.2660949 , 0.16817172,
0.16817172, 0.16817172, 0.16817172, 0.13009983, 0.13009983,
0.13009983, 0.13009983, 0.12543611, 0.12543611, 0.12543611,
0.12543611, 0.12503393, 0.12503393, 0.12503393, 0.12503393,
0.12500258, 0.12500258, 0.12500258, 0.12500258, 0.12500019,
0.12500019, 0.12500019, 0.12500019, 0.12500001, 0.12500001,
0.12500001, 0.12500001, 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
7.50000032e-01, 7.50000032e-01, 7.50000032e-01, 7.50000032e-01,
7.50000208e-01, 7.50000208e-01, 7.50000208e-01, 7.50000208e-01,
7.50001239e-01, 7.50001239e-01, 7.50001239e-01, 7.50001239e-01,
7.50006753e-01, 7.50006753e-01, 7.50006753e-01, 7.50006753e-01,
7.50033455e-01, 7.50033455e-01, 7.50033455e-01, 7.50033455e-01,
7.50149366e-01, 7.50149366e-01, 7.50149366e-01, 7.50149366e-01,
7.50594713e-01, 7.50594713e-01, 7.50594713e-01, 7.50594713e-01,
7.52085532e-01, 7.52085532e-01, 7.52085532e-01, 7.52085532e-01,
7.56355674e-01, 7.56355674e-01, 7.56355674e-01, 7.56355674e-01,
7.66638355e-01, 7.66638355e-01, 7.66638355e-01, 7.66638355e-01,
7.87217230e-01, 7.87217230e-01, 7.87217230e-01, 7.87217230e-01,
8.21480083e-01, 8.21480083e-01, 8.21480083e-01, 8.21480083e-01,
8.69776615e-01, 8.69776615e-01, 8.69776615e-01, 8.69776615e-01,
9.29447294e-01, 9.29447294e-01, 9.29447294e-01, 9.29447294e-01,
9.95674208e-01, 9.95674208e-01, 9.95674208e-01, 9.95674208e-01,
1.06296792e+00, 1.06296792e+00, 1.06296792e+00, 1.06296792e+00,
1.13078254e+00, 1.13078254e+00, 1.13078254e+00, 1.13078254e+00,
1.19977119e+00, 1.19977119e+00, 1.19977119e+00, 1.19977119e+00,
1.26275299e+00, 1.26275299e+00, 1.26275299e+00, 1.26275299e+00,
1.31175348e+00, 1.31175348e+00, 1.31175348e+00, 1.31175348e+00,
1.34085462e+00, 1.34085462e+00, 1.34085462e+00, 1.34085462e+00,
1.35353646e+00, 1.35353646e+00, 1.35353646e+00, 1.35353646e+00,
1.35810343e+00, 1.35810343e+00, 1.35810343e+00, 1.35810343e+00,
1.36003123e+00, 1.36003123e+00, 1.36003123e+00, 1.36003123e+00,
1.36143326e+00, 1.36143326e+00, 1.36143326e+00, 1.36143326e+00,
1.36236200e+00, 1.36236200e+00, 1.36236200e+00, 1.36236200e+00,
1.36287773e+00, 1.36287773e+00, 1.36287773e+00, 1.36287773e+00,
1.36345264e+00, 1.36345264e+00, 1.36345264e+00, 1.36345264e+00,
1.36363732e+00, 1.36363732e+00, 1.36363732e+00, 1.36363732e+00,
1.36353697e+00, 1.36353697e+00, 1.36353697e+00, 1.36353697e+00,
1.36343404e+00, 1.36343404e+00, 1.36343404e+00, 1.36343404e+00,
1.36315760e+00, 1.36315760e+00, 1.36315760e+00, 1.36315760e+00,
1.36232473e+00, 1.36232473e+00, 1.36232473e+00, 1.36232473e+00,
1.36166019e+00, 1.36166019e+00, 1.36166019e+00, 1.36166019e+00,
1.36084564e+00, 1.36084564e+00, 1.36084564e+00, 1.36084564e+00,
1.35984618e+00, 1.35984618e+00, 1.35984618e+00, 1.35984618e+00,
1.35955179e+00, 1.35955179e+00, 1.35955179e+00, 1.35955179e+00,
1.35897144e+00, 1.35897144e+00, 1.35897144e+00, 1.35897144e+00,
1.35552174e+00, 1.35552174e+00, 1.35552174e+00, 1.35552174e+00,
1.34102919e+00, 1.34102919e+00, 1.34102919e+00, 1.34102919e+00,
1.27545330e+00, 1.27545330e+00, 1.27545330e+00, 1.27545330e+00,
1.01455011e+00, 1.01455011e+00, 1.01455011e+00, 1.01455011e+00,
3.94082610e-01, 3.94082610e-01, 3.94082610e-01, 3.94082610e-01,
4.73339439e-02, 4.73339439e-02, 4.73339439e-02, 4.73339439e-02,
3.80163833e-03, 3.80163833e-03, 3.80163833e-03, 3.80163833e-03,
2.89378256e-04, 2.89378256e-04, 2.89378256e-04, 2.89378256e-04,
2.18495362e-05, 2.18495362e-05, 2.18495362e-05, 2.18495362e-05,
1.64610353e-06, 1.64610353e-06, 1.64610353e-06, 1.64610353e-06,
1.23761362e-07, 1.23761362e-07, 1.23761362e-07, 1.23761362e-07,
9.28475911e-09, 9.28475911e-09, 9.28475911e-09, 9.28475911e-09,
6.94864466e-10, 6.94864466e-10, 6.94864466e-10, 6.94864466e-10,
5.18715247e-11, 5.18715247e-11, 5.18715247e-11, 5.18715247e-11,
3.86232749e-12, 3.86232749e-12, 3.86232749e-12, 3.86232749e-12,
2.86798402e-13, 2.86798402e-13, 2.86798402e-13, 2.86798402e-13,
2.12511563e-14, 2.12511563e-14, 2.12511563e-14, 2.12511563e-14,
1.51978465e-15, 1.51978465e-15, 1.51978465e-15, 1.51978465e-15,
8.24527483e-17, 8.24527483e-17, 8.24527483e-17, 8.24527483e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999975, 0.99999975, 0.99999975, 0.99999975, 0.99999853,
0.99999853, 0.99999853, 0.99999853, 0.99999201, 0.99999201,
0.99999201, 0.99999201, 0.99996042, 0.99996042, 0.99996042,
0.99996042, 0.99982328, 0.99982328, 0.99982328, 0.99982328,
0.99929656, 0.99929656, 0.99929656, 0.99929656, 0.9975353 ,
0.9975353 , 0.9975353 , 0.9975353 , 0.99250721, 0.99250721,
0.99250721, 0.99250721, 0.98049952, 0.98049952, 0.98049952,
0.98049952, 0.95688026, 0.95688026, 0.95688026, 0.95688026,
0.91871272, 0.91871272, 0.91871272, 0.91871272, 0.86720806,
0.86720806, 0.86720806, 0.86720806, 0.80702616, 0.80702616,
0.80702616, 0.80702616, 0.74357673, 0.74357673, 0.74357673,
0.74357673, 0.68334214, 0.68334214, 0.68334214, 0.68334214,
0.62818486, 0.62818486, 0.62818486, 0.62818486, 0.57487936,
0.57487936, 0.57487936, 0.57487936, 0.53017432, 0.53017432,
0.53017432, 0.53017432, 0.49742975, 0.49742975, 0.49742975,
0.49742975, 0.47854702, 0.47854702, 0.47854702, 0.47854702,
0.47044075, 0.47044075, 0.47044075, 0.47044075, 0.46773171,
0.46773171, 0.46773171, 0.46773171, 0.46683192, 0.46683192,
0.46683192, 0.46683192, 0.46616185, 0.46616185, 0.46616185,
0.46616185, 0.4654718 , 0.4654718 , 0.4654718 , 0.4654718 ,
0.46502244, 0.46502244, 0.46502244, 0.46502244, 0.46495839,
0.46495839, 0.46495839, 0.46495839, 0.46511062, 0.46511062,
0.46511062, 0.46511062, 0.46546668, 0.46546668, 0.46546668,
0.46546668, 0.46567427, 0.46567427, 0.46567427, 0.46567427,
0.4656998 , 0.4656998 , 0.4656998 , 0.4656998 , 0.46577701,
0.46577701, 0.46577701, 0.46577701, 0.46553312, 0.46553312,
0.46553312, 0.46553312, 0.46520841, 0.46520841, 0.46520841,
0.46520841, 0.46521622, 0.46521622, 0.46521622, 0.46521622,
0.46509428, 0.46509428, 0.46509428, 0.46509428, 0.46477283,
0.46477283, 0.46477283, 0.46477283, 0.46362484, 0.46362484,
0.46362484, 0.46362484, 0.45682453, 0.45682453, 0.45682453,
0.45682453, 0.42721627, 0.42721627, 0.42721627, 0.42721627,
0.32761038, 0.32761038, 0.32761038, 0.32761038, 0.16329323,
0.16329323, 0.16329323, 0.16329323, 0.1064006 , 0.1064006 ,
0.1064006 , 0.1064006 , 0.10050349, 0.10050349, 0.10050349,
0.10050349, 0.10003828, 0.10003828, 0.10003828, 0.10003828,
0.10000289, 0.10000289, 0.10000289, 0.10000289, 0.10000022,
0.10000022, 0.10000022, 0.10000022, 0.10000002, 0.10000002,
0.10000002, 0.10000002, 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999851,
0.99999851, 0.99999851, 0.99999851, 0.99999215, 0.99999215,
0.99999215, 0.99999215, 0.99996236, 0.99996236, 0.99996236,
0.99996236, 0.99983743, 0.99983743, 0.99983743, 0.99983743,
0.99937421, 0.99937421, 0.99937421, 0.99937421, 0.99787995,
0.99787995, 0.99787995, 0.99787995, 0.99376522, 0.99376522,
0.99376522, 0.99376522, 0.98427193, 0.98427193, 0.98427193,
0.98427193, 0.96614873, 0.96614873, 0.96614873, 0.96614873,
0.93749002, 0.93749002, 0.93749002, 0.93749002, 0.89922146,
0.89922146, 0.89922146, 0.89922146, 0.85444615, 0.85444615,
0.85444615, 0.85444615, 0.80694026, 0.80694026, 0.80694026,
0.80694026, 0.76147336, 0.76147336, 0.76147336, 0.76147336,
0.71798649, 0.71798649, 0.71798649, 0.71798649, 0.67328624,
0.67328624, 0.67328624, 0.67328624, 0.63596237, 0.63596237,
0.63596237, 0.63596237, 0.61090962, 0.61090962, 0.61090962,
0.61090962, 0.59448665, 0.59448665, 0.59448665, 0.59448665,
0.58377912, 0.58377912, 0.58377912, 0.58377912, 0.57884073,
0.57884073, 0.57884073, 0.57884073, 0.57784159, 0.57784159,
0.57784159, 0.57784159, 0.57814677, 0.57814677, 0.57814677,
0.57814677, 0.57965393, 0.57965393, 0.57965393, 0.57965393,
0.58114142, 0.58114142, 0.58114142, 0.58114142, 0.58086906,
0.58086906, 0.58086906, 0.58086906, 0.57793383, 0.57793383,
0.57793383, 0.57793383, 0.56855027, 0.56855027, 0.56855027,
0.56855027, 0.54788997, 0.54788997, 0.54788997, 0.54788997,
0.51173387, 0.51173387, 0.51173387, 0.51173387, 0.45826092,
0.45826092, 0.45826092, 0.45826092, 0.39944332, 0.39944332,
0.39944332, 0.39944332, 0.36188141, 0.36188141, 0.36188141,
0.36188141, 0.34228638, 0.34228638, 0.34228638, 0.34228638,
0.33391914, 0.33391914, 0.33391914, 0.33391914, 0.33194109,
0.33194109, 0.33194109, 0.33194109, 0.33247925, 0.33247925,
0.33247925, 0.33247925, 0.33319907, 0.33319907, 0.33319907,
0.33319907, 0.33042192, 0.33042192, 0.33042192, 0.33042192,
0.30893759, 0.30893759, 0.30893759, 0.30893759, 0.23627498,
0.23627498, 0.23627498, 0.23627498, 0.14849035, 0.14849035,
0.14849035, 0.14849035, 0.12743542, 0.12743542, 0.12743542,
0.12743542, 0.12519919, 0.12519919, 0.12519919, 0.12519919,
0.12501533, 0.12501533, 0.12501533, 0.12501533, 0.12500116,
0.12500116, 0.12500116, 0.12500116, 0.12500009, 0.12500009,
0.12500009, 0.12500009, 0.12500001, 0.12500001, 0.12500001,
0.12500001, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
7.50000306e-01, 7.50000306e-01, 7.50000306e-01, 7.50000306e-01,
7.50001762e-01, 7.50001762e-01, 7.50001762e-01, 7.50001762e-01,
7.50009291e-01, 7.50009291e-01, 7.50009291e-01, 7.50009291e-01,
7.50044538e-01, 7.50044538e-01, 7.50044538e-01, 7.50044538e-01,
7.50192354e-01, 7.50192354e-01, 7.50192354e-01, 7.50192354e-01,
7.50740552e-01, 7.50740552e-01, 7.50740552e-01, 7.50740552e-01,
7.52510129e-01, 7.52510129e-01, 7.52510129e-01, 7.52510129e-01,
7.57393863e-01, 7.57393863e-01, 7.57393863e-01, 7.57393863e-01,
7.68727220e-01, 7.68727220e-01, 7.68727220e-01, 7.68727220e-01,
7.90629207e-01, 7.90629207e-01, 7.90629207e-01, 7.90629207e-01,
8.25993244e-01, 8.25993244e-01, 8.25993244e-01, 8.25993244e-01,
8.74646375e-01, 8.74646375e-01, 8.74646375e-01, 8.74646375e-01,
9.33771553e-01, 9.33771553e-01, 9.33771553e-01, 9.33771553e-01,
9.98521665e-01, 9.98521665e-01, 9.98521665e-01, 9.98521665e-01,
1.06413782e+00, 1.06413782e+00, 1.06413782e+00, 1.06413782e+00,
1.13027656e+00, 1.13027656e+00, 1.13027656e+00, 1.13027656e+00,
1.19762442e+00, 1.19762442e+00, 1.19762442e+00, 1.19762442e+00,
1.25961704e+00, 1.25961704e+00, 1.25961704e+00, 1.25961704e+00,
1.30884188e+00, 1.30884188e+00, 1.30884188e+00, 1.30884188e+00,
1.33910827e+00, 1.33910827e+00, 1.33910827e+00, 1.33910827e+00,
1.35277568e+00, 1.35277568e+00, 1.35277568e+00, 1.35277568e+00,
1.35771893e+00, 1.35771893e+00, 1.35771893e+00, 1.35771893e+00,
1.35973017e+00, 1.35973017e+00, 1.35973017e+00, 1.35973017e+00,
1.36124410e+00, 1.36124410e+00, 1.36124410e+00, 1.36124410e+00,
1.36234589e+00, 1.36234589e+00, 1.36234589e+00, 1.36234589e+00,
1.36284576e+00, 1.36284576e+00, 1.36284576e+00, 1.36284576e+00,
1.36330700e+00, 1.36330700e+00, 1.36330700e+00, 1.36330700e+00,
1.36348314e+00, 1.36348314e+00, 1.36348314e+00, 1.36348314e+00,
1.36337493e+00, 1.36337493e+00, 1.36337493e+00, 1.36337493e+00,
1.36336149e+00, 1.36336149e+00, 1.36336149e+00, 1.36336149e+00,
1.36324405e+00, 1.36324405e+00, 1.36324405e+00, 1.36324405e+00,
1.36265870e+00, 1.36265870e+00, 1.36265870e+00, 1.36265870e+00,
1.36215849e+00, 1.36215849e+00, 1.36215849e+00, 1.36215849e+00,
1.36145357e+00, 1.36145357e+00, 1.36145357e+00, 1.36145357e+00,
1.36027737e+00, 1.36027737e+00, 1.36027737e+00, 1.36027737e+00,
1.35985957e+00, 1.35985957e+00, 1.35985957e+00, 1.35985957e+00,
1.35950146e+00, 1.35950146e+00, 1.35950146e+00, 1.35950146e+00,
1.35794105e+00, 1.35794105e+00, 1.35794105e+00, 1.35794105e+00,
1.35302786e+00, 1.35302786e+00, 1.35302786e+00, 1.35302786e+00,
1.32948395e+00, 1.32948395e+00, 1.32948395e+00, 1.32948395e+00,
1.22656804e+00, 1.22656804e+00, 1.22656804e+00, 1.22656804e+00,
8.53469650e-01, 8.53469650e-01, 8.53469650e-01, 8.53469650e-01,
2.22591142e-01, 2.22591142e-01, 2.22591142e-01, 2.22591142e-01,
2.20888528e-02, 2.20888528e-02, 2.20888528e-02, 2.20888528e-02,
1.71922272e-03, 1.71922272e-03, 1.71922272e-03, 1.71922272e-03,
1.30417470e-04, 1.30417470e-04, 1.30417470e-04, 1.30417470e-04,
9.86300289e-06, 9.86300289e-06, 9.86300289e-06, 9.86300289e-06,
7.43754125e-07, 7.43754125e-07, 7.43754125e-07, 7.43754125e-07,
5.59602796e-08, 5.59602796e-08, 5.59602796e-08, 5.59602796e-08,
4.20149858e-09, 4.20149858e-09, 4.20149858e-09, 4.20149858e-09,
3.14719729e-10, 3.14719729e-10, 3.14719729e-10, 3.14719729e-10,
2.35165721e-11, 2.35165721e-11, 2.35165721e-11, 2.35165721e-11,
1.75282978e-12, 1.75282978e-12, 1.75282978e-12, 1.75282978e-12,
1.30293969e-13, 1.30293969e-13, 1.30293969e-13, 1.30293969e-13,
9.55439487e-15, 9.55439487e-15, 9.55439487e-15, 9.55439487e-15,
6.56847280e-16, 6.56847280e-16, 6.56847280e-16, 6.56847280e-16,
3.41706842e-17, 3.41706842e-17, 3.41706842e-17, 3.41706842e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999964, 0.99999964, 0.99999964, 0.99999964, 0.99999792,
0.99999792, 0.99999792, 0.99999792, 0.99998901, 0.99998901,
0.99998901, 0.99998901, 0.9999473 , 0.9999473 , 0.9999473 ,
0.9999473 , 0.99977243, 0.99977243, 0.99977243, 0.99977243,
0.99912413, 0.99912413, 0.99912413, 0.99912413, 0.99703423,
0.99703423, 0.99703423, 0.99703423, 0.99128845, 0.99128845,
0.99128845, 0.99128845, 0.97807702, 0.97807702, 0.97807702,
0.97807702, 0.95301417, 0.95301417, 0.95301417, 0.95301417,
0.91378216, 0.91378216, 0.91378216, 0.91378216, 0.86213936,
0.86213936, 0.86213936, 0.86213936, 0.80277216, 0.80277216,
0.80277216, 0.80277216, 0.7408459 , 0.7408459 , 0.7408459 ,
0.7408459 , 0.68230078, 0.68230078, 0.68230078, 0.68230078,
0.62855672, 0.62855672, 0.62855672, 0.62855672, 0.5764662 ,
0.5764662 , 0.5764662 , 0.5764662 , 0.53234585, 0.53234585,
0.53234585, 0.53234585, 0.49942183, 0.49942183, 0.49942183,
0.49942183, 0.47983443, 0.47983443, 0.47983443, 0.47983443,
0.47100923, 0.47100923, 0.47100923, 0.47100923, 0.46787142,
0.46787142, 0.46787142, 0.46787142, 0.46682295, 0.46682295,
0.46682295, 0.46682295, 0.46618014, 0.46618014, 0.46618014,
0.46618014, 0.46556219, 0.46556219, 0.46556219, 0.46556219,
0.46506118, 0.46506118, 0.46506118, 0.46506118, 0.46489673,
0.46489673, 0.46489673, 0.46489673, 0.46500213, 0.46500213,
0.46500213, 0.46500213, 0.46532374, 0.46532374, 0.46532374,
0.46532374, 0.46561466, 0.46561466, 0.46561466, 0.46561466,
0.46573189, 0.46573189, 0.46573189, 0.46573189, 0.46592128,
0.46592128, 0.46592128, 0.46592128, 0.46578294, 0.46578294,
0.46578294, 0.46578294, 0.46549998, 0.46549998, 0.46549998,
0.46549998, 0.46541691, 0.46541691, 0.46541691, 0.46541691,
0.46523714, 0.46523714, 0.46523714, 0.46523714, 0.46502176,
0.46502176, 0.46502176, 0.46502176, 0.46475263, 0.46475263,
0.46475263, 0.46475263, 0.46237713, 0.46237713, 0.46237713,
0.46237713, 0.45142205, 0.45142205, 0.45142205, 0.45142205,
0.40654284, 0.40654284, 0.40654284, 0.40654284, 0.27563326,
0.27563326, 0.27563326, 0.27563326, 0.13295938, 0.13295938,
0.13295938, 0.13295938, 0.1029486 , 0.1029486 , 0.1029486 ,
0.1029486 , 0.10022754, 0.10022754, 0.10022754, 0.10022754,
0.10001725, 0.10001725, 0.10001725, 0.10001725, 0.1000013 ,
0.1000013 , 0.1000013 , 0.1000013 , 0.1000001 , 0.1000001 ,
0.1000001 , 0.1000001 , 0.10000001, 0.10000001, 0.10000001,
0.10000001, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999962, 0.99999962, 0.99999962, 0.99999962, 0.99999791,
0.99999791, 0.99999791, 0.99999791, 0.99998931, 0.99998931,
0.99998931, 0.99998931, 0.99995038, 0.99995038, 0.99995038,
0.99995038, 0.99979255, 0.99979255, 0.99979255, 0.99979255,
0.99922731, 0.99922731, 0.99922731, 0.99922731, 0.99746821,
0.99746821, 0.99746821, 0.99746821, 0.99279908, 0.99279908,
0.99279908, 0.99279908, 0.98241481, 0.98241481, 0.98241481,
0.98241481, 0.96326558, 0.96326558, 0.96326558, 0.96326558,
0.93387982, 0.93387982, 0.93387982, 0.93387982, 0.89553728,
0.89553728, 0.89553728, 0.89553728, 0.85134817, 0.85134817,
0.85134817, 0.85134817, 0.80495162, 0.80495162, 0.80495162,
0.80495162, 0.76058273, 0.76058273, 0.76058273, 0.76058273,
0.71835604, 0.71835604, 0.71835604, 0.71835604, 0.67514463,
0.67514463, 0.67514463, 0.67514463, 0.63729119, 0.63729119,
0.63729119, 0.63729119, 0.61162641, 0.61162641, 0.61162641,
0.61162641, 0.59582875, 0.59582875, 0.59582875, 0.59582875,
0.58543448, 0.58543448, 0.58543448, 0.58543448, 0.57967261,
0.57967261, 0.57967261, 0.57967261, 0.57782428, 0.57782428,
0.57782428, 0.57782428, 0.57777383, 0.57777383, 0.57777383,
0.57777383, 0.57870314, 0.57870314, 0.57870314, 0.57870314,
0.58056833, 0.58056833, 0.58056833, 0.58056833, 0.58087553,
0.58087553, 0.58087553, 0.58087553, 0.57939156, 0.57939156,
0.57939156, 0.57939156, 0.57325442, 0.57325442, 0.57325442,
0.57325442, 0.55803941, 0.55803941, 0.55803941, 0.55803941,
0.52921033, 0.52921033, 0.52921033, 0.52921033, 0.4837152 ,
0.4837152 , 0.4837152 , 0.4837152 , 0.42371397, 0.42371397,
0.42371397, 0.42371397, 0.376212 , 0.376212 , 0.376212 ,
0.376212 , 0.34965307, 0.34965307, 0.34965307, 0.34965307,
0.33690123, 0.33690123, 0.33690123, 0.33690123, 0.33265682,
0.33265682, 0.33265682, 0.33265682, 0.33246875, 0.33246875,
0.33246875, 0.33246875, 0.33332651, 0.33332651, 0.33332651,
0.33332651, 0.33357826, 0.33357826, 0.33357826, 0.33357826,
0.32736337, 0.32736337, 0.32736337, 0.32736337, 0.29324759,
0.29324759, 0.29324759, 0.29324759, 0.20348887, 0.20348887,
0.20348887, 0.20348887, 0.13723772, 0.13723772, 0.13723772,
0.13723772, 0.12613944, 0.12613944, 0.12613944, 0.12613944,
0.12509047, 0.12509047, 0.12509047, 0.12509047, 0.12500693,
0.12500693, 0.12500693, 0.12500693, 0.12500053, 0.12500053,
0.12500053, 0.12500053, 0.12500004, 0.12500004, 0.12500004,
0.12500004, 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
7.50000073e-01, 7.50000073e-01, 7.50000073e-01, 7.50000073e-01,
7.50000444e-01, 7.50000444e-01, 7.50000444e-01, 7.50000444e-01,
7.50002476e-01, 7.50002476e-01, 7.50002476e-01, 7.50002476e-01,
7.50012648e-01, 7.50012648e-01, 7.50012648e-01, 7.50012648e-01,
7.50058710e-01, 7.50058710e-01, 7.50058710e-01, 7.50058710e-01,
7.50245463e-01, 7.50245463e-01, 7.50245463e-01, 7.50245463e-01,
7.50914434e-01, 7.50914434e-01, 7.50914434e-01, 7.50914434e-01,
7.52998113e-01, 7.52998113e-01, 7.52998113e-01, 7.52998113e-01,
7.58543146e-01, 7.58543146e-01, 7.58543146e-01, 7.58543146e-01,
7.70955766e-01, 7.70955766e-01, 7.70955766e-01, 7.70955766e-01,
7.94146625e-01, 7.94146625e-01, 7.94146625e-01, 7.94146625e-01,
8.30511067e-01, 8.30511067e-01, 8.30511067e-01, 8.30511067e-01,
8.79411509e-01, 8.79411509e-01, 8.79411509e-01, 8.79411509e-01,
9.37934877e-01, 9.37934877e-01, 9.37934877e-01, 9.37934877e-01,
1.00124282e+00, 1.00124282e+00, 1.00124282e+00, 1.00124282e+00,
1.06525741e+00, 1.06525741e+00, 1.06525741e+00, 1.06525741e+00,
1.12978836e+00, 1.12978836e+00, 1.12978836e+00, 1.12978836e+00,
1.19554873e+00, 1.19554873e+00, 1.19554873e+00, 1.19554873e+00,
1.25655219e+00, 1.25655219e+00, 1.25655219e+00, 1.25655219e+00,
1.30588997e+00, 1.30588997e+00, 1.30588997e+00, 1.30588997e+00,
1.33725902e+00, 1.33725902e+00, 1.33725902e+00, 1.33725902e+00,
1.35200167e+00, 1.35200167e+00, 1.35200167e+00, 1.35200167e+00,
1.35740137e+00, 1.35740137e+00, 1.35740137e+00, 1.35740137e+00,
1.35945680e+00, 1.35945680e+00, 1.35945680e+00, 1.35945680e+00,
1.36098916e+00, 1.36098916e+00, 1.36098916e+00, 1.36098916e+00,
1.36225665e+00, 1.36225665e+00, 1.36225665e+00, 1.36225665e+00,
1.36284870e+00, 1.36284870e+00, 1.36284870e+00, 1.36284870e+00,
1.36323230e+00, 1.36323230e+00, 1.36323230e+00, 1.36323230e+00,
1.36337379e+00, 1.36337379e+00, 1.36337379e+00, 1.36337379e+00,
1.36322082e+00, 1.36322082e+00, 1.36322082e+00, 1.36322082e+00,
1.36321667e+00, 1.36321667e+00, 1.36321667e+00, 1.36321667e+00,
1.36320442e+00, 1.36320442e+00, 1.36320442e+00, 1.36320442e+00,
1.36283306e+00, 1.36283306e+00, 1.36283306e+00, 1.36283306e+00,
1.36246959e+00, 1.36246959e+00, 1.36246959e+00, 1.36246959e+00,
1.36197500e+00, 1.36197500e+00, 1.36197500e+00, 1.36197500e+00,
1.36085259e+00, 1.36085259e+00, 1.36085259e+00, 1.36085259e+00,
1.36028892e+00, 1.36028892e+00, 1.36028892e+00, 1.36028892e+00,
1.35984919e+00, 1.35984919e+00, 1.35984919e+00, 1.35984919e+00,
1.35883540e+00, 1.35883540e+00, 1.35883540e+00, 1.35883540e+00,
1.35714143e+00, 1.35714143e+00, 1.35714143e+00, 1.35714143e+00,
1.34894991e+00, 1.34894991e+00, 1.34894991e+00, 1.34894991e+00,
1.31073945e+00, 1.31073945e+00, 1.31073945e+00, 1.31073945e+00,
1.15250494e+00, 1.15250494e+00, 1.15250494e+00, 1.15250494e+00,
6.53937892e-01, 6.53937892e-01, 6.53937892e-01, 6.53937892e-01,
1.15935794e-01, 1.15935794e-01, 1.15935794e-01, 1.15935794e-01,
1.01224064e-02, 1.01224064e-02, 1.01224064e-02, 1.01224064e-02,
7.75605173e-04, 7.75605173e-04, 7.75605173e-04, 7.75605173e-04,
5.88223629e-05, 5.88223629e-05, 5.88223629e-05, 5.88223629e-05,
4.44985365e-06, 4.44985365e-06, 4.44985365e-06, 4.44985365e-06,
3.35889504e-07, 3.35889504e-07, 3.35889504e-07, 3.35889504e-07,
2.52955860e-08, 2.52955860e-08, 2.52955860e-08, 2.52955860e-08,
1.90071378e-09, 1.90071378e-09, 1.90071378e-09, 1.90071378e-09,
1.42497338e-10, 1.42497338e-10, 1.42497338e-10, 1.42497338e-10,
1.06576856e-11, 1.06576856e-11, 1.06576856e-11, 1.06576856e-11,
7.95109096e-13, 7.95109096e-13, 7.95109096e-13, 7.95109096e-13,
5.90704393e-14, 5.90704393e-14, 5.90704393e-14, 5.90704393e-14,
4.31701064e-15, 4.31701064e-15, 4.31701064e-15, 4.31701064e-15,
3.15002440e-16, 3.15002440e-16, 3.15002440e-16, 3.15002440e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999947, 0.99999947, 0.99999947, 0.99999947, 0.99999707,
0.99999707, 0.99999707, 0.99999707, 0.99998504, 0.99998504,
0.99998504, 0.99998504, 0.99993054, 0.99993054, 0.99993054,
0.99993054, 0.9997096 , 0.9997096 , 0.9997096 , 0.9997096 ,
0.99891859, 0.99891859, 0.99891859, 0.99891859, 0.99645866,
0.99645866, 0.99645866, 0.99645866, 0.98994093, 0.98994093,
0.98994093, 0.98994093, 0.97549864, 0.97549864, 0.97549864,
0.97549864, 0.94904306, 0.94904306, 0.94904306, 0.94904306,
0.90886853, 0.90886853, 0.90886853, 0.90886853, 0.85720188,
0.85720188, 0.85720188, 0.85720188, 0.79869209, 0.79869209,
0.79869209, 0.79869209, 0.73826586, 0.73826586, 0.73826586,
0.73826586, 0.68131655, 0.68131655, 0.68131655, 0.68131655,
0.62890962, 0.62890962, 0.62890962, 0.62890962, 0.57797733,
0.57797733, 0.57797733, 0.57797733, 0.53444855, 0.53444855,
0.53444855, 0.53444855, 0.5013871 , 0.5013871 , 0.5013871 ,
0.5013871 , 0.48115492, 0.48115492, 0.48115492, 0.48115492,
0.47166155, 0.47166155, 0.47166155, 0.47166155, 0.468095 ,
0.468095 , 0.468095 , 0.468095 , 0.46684318, 0.46684318,
0.46684318, 0.46684318, 0.46616211, 0.46616211, 0.46616211,
0.46616211, 0.46561043, 0.46561043, 0.46561043, 0.46561043,
0.46512576, 0.46512576, 0.46512576, 0.46512576, 0.46487872,
0.46487872, 0.46487872, 0.46487872, 0.46492772, 0.46492772,
0.46492772, 0.46492772, 0.4651844 , 0.4651844 , 0.4651844 ,
0.4651844 , 0.4655066 , 0.4655066 , 0.4655066 , 0.4655066 ,
0.46569201, 0.46569201, 0.46569201, 0.46569201, 0.46598138,
0.46598138, 0.46598138, 0.46598138, 0.46594011, 0.46594011,
0.46594011, 0.46594011, 0.4657527 , 0.4657527 , 0.4657527 ,
0.4657527 , 0.4656862 , 0.4656862 , 0.4656862 , 0.4656862 ,
0.46543641, 0.46543641, 0.46543641, 0.46543641, 0.46518651,
0.46518651, 0.46518651, 0.46518651, 0.46517111, 0.46517111,
0.46517111, 0.46517111, 0.46429022, 0.46429022, 0.46429022,
0.46429022, 0.46039234, 0.46039234, 0.46039234, 0.46039234,
0.44325735, 0.44325735, 0.44325735, 0.44325735, 0.37715612,
0.37715612, 0.37715612, 0.37715612, 0.22068217, 0.22068217,
0.22068217, 0.22068217, 0.11627314, 0.11627314, 0.11627314,
0.11627314, 0.10134388, 0.10134388, 0.10134388, 0.10134388,
0.10010262, 0.10010262, 0.10010262, 0.10010262, 0.10000778,
0.10000778, 0.10000778, 0.10000778, 0.10000059, 0.10000059,
0.10000059, 0.10000059, 0.10000004, 0.10000004, 0.10000004,
0.10000004, 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999946, 0.99999946, 0.99999946, 0.99999946, 0.99999709,
0.99999709, 0.99999709, 0.99999709, 0.9999856 , 0.9999856 ,
0.9999856 , 0.9999856 , 0.9999352 , 0.9999352 , 0.9999352 ,
0.9999352 , 0.99973758, 0.99973758, 0.99973758, 0.99973758,
0.99905358, 0.99905358, 0.99905358, 0.99905358, 0.99699862,
0.99699862, 0.99699862, 0.99699862, 0.99173748, 0.99173748,
0.99173748, 0.99173748, 0.98044778, 0.98044778, 0.98044778,
0.98044778, 0.96031352, 0.96031352, 0.96031352, 0.96031352,
0.93028712, 0.93028712, 0.93028712, 0.93028712, 0.89194825,
0.89194825, 0.89194825, 0.89194825, 0.84837482, 0.84837482,
0.84837482, 0.84837482, 0.80307475, 0.80307475, 0.80307475,
0.80307475, 0.75973657, 0.75973657, 0.75973657, 0.75973657,
0.71864049, 0.71864049, 0.71864049, 0.71864049, 0.6769383 ,
0.6769383 , 0.6769383 , 0.6769383 , 0.63889909, 0.63889909,
0.63889909, 0.63889909, 0.61229773, 0.61229773, 0.61229773,
0.61229773, 0.59674677, 0.59674677, 0.59674677, 0.59674677,
0.58694413, 0.58694413, 0.58694413, 0.58694413, 0.58077655,
0.58077655, 0.58077655, 0.58077655, 0.57805601, 0.57805601,
0.57805601, 0.57805601, 0.57755678, 0.57755678, 0.57755678,
0.57755678, 0.57803073, 0.57803073, 0.57803073, 0.57803073,
0.57971225, 0.57971225, 0.57971225, 0.57971225, 0.5806943 ,
0.5806943 , 0.5806943 , 0.5806943 , 0.58009671, 0.58009671,
0.58009671, 0.58009671, 0.57636073, 0.57636073, 0.57636073,
0.57636073, 0.5655678 , 0.5655678 , 0.5655678 , 0.5655678 ,
0.54322304, 0.54322304, 0.54322304, 0.54322304, 0.50551025,
0.50551025, 0.50551025, 0.50551025, 0.45076947, 0.45076947,
0.45076947, 0.45076947, 0.39435096, 0.39435096, 0.39435096,
0.39435096, 0.3597402 , 0.3597402 , 0.3597402 , 0.3597402 ,
0.34154439, 0.34154439, 0.34154439, 0.34154439, 0.33413329,
0.33413329, 0.33413329, 0.33413329, 0.33272707, 0.33272707,
0.33272707, 0.33272707, 0.33306897, 0.33306897, 0.33306897,
0.33306897, 0.33417837, 0.33417837, 0.33417837, 0.33417837,
0.33342156, 0.33342156, 0.33342156, 0.33342156, 0.32134726,
0.32134726, 0.32134726, 0.32134726, 0.27151457, 0.27151457,
0.27151457, 0.27151457, 0.17391339, 0.17391339, 0.17391339,
0.17391339, 0.131043 , 0.131043 , 0.131043 , 0.131043 ,
0.12552415, 0.12552415, 0.12552415, 0.12552415, 0.12504101,
0.12504101, 0.12504101, 0.12504101, 0.12500313, 0.12500313,
0.12500313, 0.12500313, 0.12500024, 0.12500024, 0.12500024,
0.12500024, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
7.50000017e-01, 7.50000017e-01, 7.50000017e-01, 7.50000017e-01,
7.50000108e-01, 7.50000108e-01, 7.50000108e-01, 7.50000108e-01,
7.50000636e-01, 7.50000636e-01, 7.50000636e-01, 7.50000636e-01,
7.50003442e-01, 7.50003442e-01, 7.50003442e-01, 7.50003442e-01,
7.50017043e-01, 7.50017043e-01, 7.50017043e-01, 7.50017043e-01,
7.50076668e-01, 7.50076668e-01, 7.50076668e-01, 7.50076668e-01,
7.50310517e-01, 7.50310517e-01, 7.50310517e-01, 7.50310517e-01,
7.51120114e-01, 7.51120114e-01, 7.51120114e-01, 7.51120114e-01,
7.53554867e-01, 7.53554867e-01, 7.53554867e-01, 7.53554867e-01,
7.59807118e-01, 7.59807118e-01, 7.59807118e-01, 7.59807118e-01,
7.73320214e-01, 7.73320214e-01, 7.73320214e-01, 7.73320214e-01,
7.97757265e-01, 7.97757265e-01, 7.97757265e-01, 7.97757265e-01,
8.35020634e-01, 8.35020634e-01, 8.35020634e-01, 8.35020634e-01,
8.84067394e-01, 8.84067394e-01, 8.84067394e-01, 8.84067394e-01,
9.41941415e-01, 9.41941415e-01, 9.41941415e-01, 9.41941415e-01,
1.00384428e+00, 1.00384428e+00, 1.00384428e+00, 1.00384428e+00,
1.06633018e+00, 1.06633018e+00, 1.06633018e+00, 1.06633018e+00,
1.12932515e+00, 1.12932515e+00, 1.12932515e+00, 1.12932515e+00,
1.19354968e+00, 1.19354968e+00, 1.19354968e+00, 1.19354968e+00,
1.25356360e+00, 1.25356360e+00, 1.25356360e+00, 1.25356360e+00,
1.30291531e+00, 1.30291531e+00, 1.30291531e+00, 1.30291531e+00,
1.33529031e+00, 1.33529031e+00, 1.33529031e+00, 1.33529031e+00,
1.35115947e+00, 1.35115947e+00, 1.35115947e+00, 1.35115947e+00,
1.35713174e+00, 1.35713174e+00, 1.35713174e+00, 1.35713174e+00,
1.35925965e+00, 1.35925965e+00, 1.35925965e+00, 1.35925965e+00,
1.36072477e+00, 1.36072477e+00, 1.36072477e+00, 1.36072477e+00,
1.36208351e+00, 1.36208351e+00, 1.36208351e+00, 1.36208351e+00,
1.36283213e+00, 1.36283213e+00, 1.36283213e+00, 1.36283213e+00,
1.36320426e+00, 1.36320426e+00, 1.36320426e+00, 1.36320426e+00,
1.36331504e+00, 1.36331504e+00, 1.36331504e+00, 1.36331504e+00,
1.36312690e+00, 1.36312690e+00, 1.36312690e+00, 1.36312690e+00,
1.36305072e+00, 1.36305072e+00, 1.36305072e+00, 1.36305072e+00,
1.36308238e+00, 1.36308238e+00, 1.36308238e+00, 1.36308238e+00,
1.36286521e+00, 1.36286521e+00, 1.36286521e+00, 1.36286521e+00,
1.36262787e+00, 1.36262787e+00, 1.36262787e+00, 1.36262787e+00,
1.36231759e+00, 1.36231759e+00, 1.36231759e+00, 1.36231759e+00,
1.36138818e+00, 1.36138818e+00, 1.36138818e+00, 1.36138818e+00,
1.36084001e+00, 1.36084001e+00, 1.36084001e+00, 1.36084001e+00,
1.36024205e+00, 1.36024205e+00, 1.36024205e+00, 1.36024205e+00,
1.35931961e+00, 1.35931961e+00, 1.35931961e+00, 1.35931961e+00,
1.35862778e+00, 1.35862778e+00, 1.35862778e+00, 1.35862778e+00,
1.35576681e+00, 1.35576681e+00, 1.35576681e+00, 1.35576681e+00,
1.34188087e+00, 1.34188087e+00, 1.34188087e+00, 1.34188087e+00,
1.28237194e+00, 1.28237194e+00, 1.28237194e+00, 1.28237194e+00,
1.04403836e+00, 1.04403836e+00, 1.04403836e+00, 1.04403836e+00,
4.40023066e-01, 4.40023066e-01, 4.40023066e-01, 4.40023066e-01,
5.63022869e-02, 5.63022869e-02, 5.63022869e-02, 5.63022869e-02,
4.58333546e-03, 4.58333546e-03, 4.58333546e-03, 4.58333546e-03,
3.49968099e-04, 3.49968099e-04, 3.49968099e-04, 3.49968099e-04,
2.65258651e-05, 2.65258651e-05, 2.65258651e-05, 2.65258651e-05,
2.00742922e-06, 2.00742922e-06, 2.00742922e-06, 2.00742922e-06,
1.51640690e-07, 1.51640690e-07, 1.51640690e-07, 1.51640690e-07,
1.14299111e-08, 1.14299111e-08, 1.14299111e-08, 1.14299111e-08,
8.59588993e-10, 8.59588993e-10, 8.59588993e-10, 8.59588993e-10,
6.44987274e-11, 6.44987274e-11, 6.44987274e-11, 6.44987274e-11,
4.82824703e-12, 4.82824703e-12, 4.82824703e-12, 4.82824703e-12,
3.60377106e-13, 3.60377106e-13, 3.60377106e-13, 3.60377106e-13,
2.67995136e-14, 2.67995136e-14, 2.67995136e-14, 2.67995136e-14,
1.97682800e-15, 1.97682800e-15, 1.97682800e-15, 1.97682800e-15,
1.51415324e-16, 1.51415324e-16, 1.51415324e-16, 1.51415324e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999925, 0.99999925, 0.99999925, 0.99999925, 0.99999593,
0.99999593, 0.99999593, 0.99999593, 0.99997983, 0.99997983,
0.99997983, 0.99997983, 0.99990929, 0.99990929, 0.99990929,
0.99990929, 0.99963266, 0.99963266, 0.99963266, 0.99963266,
0.99867551, 0.99867551, 0.99867551, 0.99867551, 0.99580237,
0.99580237, 0.99580237, 0.99580237, 0.98846096, 0.98846096,
0.98846096, 0.98846096, 0.97276987, 0.97276987, 0.97276987,
0.97276987, 0.94498179, 0.94498179, 0.94498179, 0.94498179,
0.90398561, 0.90398561, 0.90398561, 0.90398561, 0.85239877,
0.85239877, 0.85239877, 0.85239877, 0.79478009, 0.79478009,
0.79478009, 0.79478009, 0.73582397, 0.73582397, 0.73582397,
0.73582397, 0.68038471, 0.68038471, 0.68038471, 0.68038471,
0.62924921, 0.62924921, 0.62924921, 0.62924921, 0.57942336,
0.57942336, 0.57942336, 0.57942336, 0.53648813, 0.53648813,
0.53648813, 0.53648813, 0.50332705, 0.50332705, 0.50332705,
0.50332705, 0.48248881, 0.48248881, 0.48248881, 0.48248881,
0.47236439, 0.47236439, 0.47236439, 0.47236439, 0.46839479,
0.46839479, 0.46839479, 0.46839479, 0.46692446, 0.46692446,
0.46692446, 0.46692446, 0.46614238, 0.46614238, 0.46614238,
0.46614238, 0.46561056, 0.46561056, 0.46561056, 0.46561056,
0.4651818 , 0.4651818 , 0.4651818 , 0.4651818 , 0.46489012,
0.46489012, 0.46489012, 0.46489012, 0.46489108, 0.46489108,
0.46489108, 0.46489108, 0.4650843 , 0.4650843 , 0.4650843 ,
0.4650843 , 0.46537787, 0.46537787, 0.46537787, 0.46537787,
0.46560331, 0.46560331, 0.46560331, 0.46560331, 0.46596369,
0.46596369, 0.46596369, 0.46596369, 0.46601669, 0.46601669,
0.46601669, 0.46601669, 0.46592137, 0.46592137, 0.46592137,
0.46592137, 0.46593666, 0.46593666, 0.46593666, 0.46593666,
0.46569284, 0.46569284, 0.46569284, 0.46569284, 0.46537354,
0.46537354, 0.46537354, 0.46537354, 0.46539853, 0.46539853,
0.46539853, 0.46539853, 0.46498145, 0.46498145, 0.46498145,
0.46498145, 0.46356472, 0.46356472, 0.46356472, 0.46356472,
0.45748027, 0.45748027, 0.45748027, 0.45748027, 0.43042442,
0.43042442, 0.43042442, 0.43042442, 0.33773594, 0.33773594,
0.33773594, 0.33773594, 0.1723474 , 0.1723474 , 0.1723474 ,
0.1723474 , 0.10764844, 0.10764844, 0.10764844, 0.10764844,
0.10060719, 0.10060719, 0.10060719, 0.10060719, 0.1000463 ,
0.1000463 , 0.1000463 , 0.1000463 , 0.10000351, 0.10000351,
0.10000351, 0.10000351, 0.10000027, 0.10000027, 0.10000027,
0.10000027, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}], 'minmod_hllc': [{'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999993, 0.99999993, 0.99999993, 0.99999993,
0.99999956, 0.99999956, 0.99999956, 0.99999956, 0.99999758,
0.99999758, 0.99999758, 0.99999758, 0.99998782, 0.99998782,
0.99998782, 0.99998782, 0.99994422, 0.99994422, 0.99994422,
0.99994422, 0.99977003, 0.99977003, 0.99977003, 0.99977003,
0.99915542, 0.99915542, 0.99915542, 0.99915542, 0.99727188,
0.99727188, 0.99727188, 0.99727188, 0.99234954, 0.99234954,
0.99234954, 0.99234954, 0.98156538, 0.98156538, 0.98156538,
0.98156538, 0.96194746, 0.96194746, 0.96194746, 0.96194746,
0.93218276, 0.93218276, 0.93218276, 0.93218276, 0.8936786 ,
0.8936786 , 0.8936786 , 0.8936786 , 0.84954127, 0.84954127,
0.84954127, 0.84954127, 0.80317128, 0.80317128, 0.80317128,
0.80317128, 0.75830147, 0.75830147, 0.75830147, 0.75830147,
0.71601042, 0.71601042, 0.71601042, 0.71601042, 0.67327991,
0.67327991, 0.67327991, 0.67327991, 0.63607874, 0.63607874,
0.63607874, 0.63607874, 0.61091745, 0.61091745, 0.61091745,
0.61091745, 0.59673414, 0.59673414, 0.59673414, 0.59673414,
0.58738935, 0.58738935, 0.58738935, 0.58738935, 0.58067077,
0.58067077, 0.58067077, 0.58067077, 0.57738951, 0.57738951,
0.57738951, 0.57738951, 0.57684123, 0.57684123, 0.57684123,
0.57684123, 0.57741731, 0.57741731, 0.57741731, 0.57741731,
0.57933199, 0.57933199, 0.57933199, 0.57933199, 0.5807667 ,
0.5807667 , 0.5807667 , 0.5807667 , 0.58038131, 0.58038131,
0.58038131, 0.58038131, 0.57694171, 0.57694171, 0.57694171,
0.57694171, 0.56652927, 0.56652927, 0.56652927, 0.56652927,
0.54427792, 0.54427792, 0.54427792, 0.54427792, 0.50574245,
0.50574245, 0.50574245, 0.50574245, 0.44917162, 0.44917162,
0.44917162, 0.44917162, 0.39267489, 0.39267489, 0.39267489,
0.39267489, 0.35904482, 0.35904482, 0.35904482, 0.35904482,
0.34183176, 0.34183176, 0.34183176, 0.34183176, 0.33519947,
0.33519947, 0.33519947, 0.33519947, 0.33392488, 0.33392488,
0.33392488, 0.33392488, 0.33443666, 0.33443666, 0.33443666,
0.33443666, 0.33522049, 0.33522049, 0.33522049, 0.33522049,
0.33404885, 0.33404885, 0.33404885, 0.33404885, 0.32180389,
0.32180389, 0.32180389, 0.32180389, 0.27211543, 0.27211543,
0.27211543, 0.27211543, 0.17353096, 0.17353096, 0.17353096,
0.17353096, 0.13090219, 0.13090219, 0.13090219, 0.13090219,
0.12548944, 0.12548944, 0.12548944, 0.12548944, 0.12503725,
0.12503725, 0.12503725, 0.12503725, 0.12500281, 0.12500281,
0.12500281, 0.12500281, 0.12500021, 0.12500021, 0.12500021,
0.12500021, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ,
0.125 , 0.125 , 0.125 , 0.125 , 0.125 ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
7.50000087e-01, 7.50000087e-01, 7.50000087e-01, 7.50000087e-01,
7.50000519e-01, 7.50000519e-01, 7.50000519e-01, 7.50000519e-01,
7.50002860e-01, 7.50002860e-01, 7.50002860e-01, 7.50002860e-01,
7.50014413e-01, 7.50014413e-01, 7.50014413e-01, 7.50014413e-01,
7.50065997e-01, 7.50065997e-01, 7.50065997e-01, 7.50065997e-01,
7.50272133e-01, 7.50272133e-01, 7.50272133e-01, 7.50272133e-01,
7.50999658e-01, 7.50999658e-01, 7.50999658e-01, 7.50999658e-01,
7.53231583e-01, 7.53231583e-01, 7.53231583e-01, 7.53231583e-01,
7.59081507e-01, 7.59081507e-01, 7.59081507e-01, 7.59081507e-01,
7.71986731e-01, 7.71986731e-01, 7.71986731e-01, 7.71986731e-01,
7.95781524e-01, 7.95781524e-01, 7.95781524e-01, 7.95781524e-01,
8.32680719e-01, 8.32680719e-01, 8.32680719e-01, 8.32680719e-01,
8.81876321e-01, 8.81876321e-01, 8.81876321e-01, 8.81876321e-01,
9.40397529e-01, 9.40397529e-01, 9.40397529e-01, 9.40397529e-01,
1.00383705e+00, 1.00383705e+00, 1.00383705e+00, 1.00383705e+00,
1.06846436e+00, 1.06846436e+00, 1.06846436e+00, 1.06846436e+00,
1.13364194e+00, 1.13364194e+00, 1.13364194e+00, 1.13364194e+00,
1.19966388e+00, 1.19966388e+00, 1.19966388e+00, 1.19966388e+00,
1.25823577e+00, 1.25823577e+00, 1.25823577e+00, 1.25823577e+00,
1.30460285e+00, 1.30460285e+00, 1.30460285e+00, 1.30460285e+00,
1.33510884e+00, 1.33510884e+00, 1.33510884e+00, 1.33510884e+00,
1.35096608e+00, 1.35096608e+00, 1.35096608e+00, 1.35096608e+00,
1.35752911e+00, 1.35752911e+00, 1.35752911e+00, 1.35752911e+00,
1.36008887e+00, 1.36008887e+00, 1.36008887e+00, 1.36008887e+00,
1.36168158e+00, 1.36168158e+00, 1.36168158e+00, 1.36168158e+00,
1.36273536e+00, 1.36273536e+00, 1.36273536e+00, 1.36273536e+00,
1.36310325e+00, 1.36310325e+00, 1.36310325e+00, 1.36310325e+00,
1.36308266e+00, 1.36308266e+00, 1.36308266e+00, 1.36308266e+00,
1.36292459e+00, 1.36292459e+00, 1.36292459e+00, 1.36292459e+00,
1.36276796e+00, 1.36276796e+00, 1.36276796e+00, 1.36276796e+00,
1.36261137e+00, 1.36261137e+00, 1.36261137e+00, 1.36261137e+00,
1.36242480e+00, 1.36242480e+00, 1.36242480e+00, 1.36242480e+00,
1.36240105e+00, 1.36240105e+00, 1.36240105e+00, 1.36240105e+00,
1.36236978e+00, 1.36236978e+00, 1.36236978e+00, 1.36236978e+00,
1.36206049e+00, 1.36206049e+00, 1.36206049e+00, 1.36206049e+00,
1.36120137e+00, 1.36120137e+00, 1.36120137e+00, 1.36120137e+00,
1.36080070e+00, 1.36080070e+00, 1.36080070e+00, 1.36080070e+00,
1.36024607e+00, 1.36024607e+00, 1.36024607e+00, 1.36024607e+00,
1.35960979e+00, 1.35960979e+00, 1.35960979e+00, 1.35960979e+00,
1.35845878e+00, 1.35845878e+00, 1.35845878e+00, 1.35845878e+00,
1.35582525e+00, 1.35582525e+00, 1.35582525e+00, 1.35582525e+00,
1.34268743e+00, 1.34268743e+00, 1.34268743e+00, 1.34268743e+00,
1.28409176e+00, 1.28409176e+00, 1.28409176e+00, 1.28409176e+00,
1.04736551e+00, 1.04736551e+00, 1.04736551e+00, 1.04736551e+00,
4.29328817e-01, 4.29328817e-01, 4.29328817e-01, 4.29328817e-01,
5.19371545e-02, 5.19371545e-02, 5.19371545e-02, 5.19371545e-02,
4.15794051e-03, 4.15794051e-03, 4.15794051e-03, 4.15794051e-03,
3.15435852e-04, 3.15435852e-04, 3.15435852e-04, 3.15435852e-04,
2.37540443e-05, 2.37540443e-05, 2.37540443e-05, 2.37540443e-05,
1.78468394e-06, 1.78468394e-06, 1.78468394e-06, 1.78468394e-06,
1.33840550e-07, 1.33840550e-07, 1.33840550e-07, 1.33840550e-07,
1.00204015e-08, 1.00204015e-08, 1.00204015e-08, 1.00204015e-08,
7.48783638e-10, 7.48783638e-10, 7.48783638e-10, 7.48783638e-10,
5.58269795e-11, 5.58269795e-11, 5.58269795e-11, 5.58269795e-11,
4.15162222e-12, 4.15162222e-12, 4.15162222e-12, 4.15162222e-12,
3.07872093e-13, 3.07872093e-13, 3.07872093e-13, 3.07872093e-13,
2.27463383e-14, 2.27463383e-14, 2.27463383e-14, 2.27463383e-14,
1.62261633e-15, 1.62261633e-15, 1.62261633e-15, 1.62261633e-15,
1.00069544e-16, 1.00069544e-16, 1.00069544e-16, 1.00069544e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 ,
0.99999939, 0.99999939, 0.99999939, 0.99999939, 0.99999662,
0.99999662, 0.99999662, 0.99999662, 0.99998295, 0.99998295,
0.99998295, 0.99998295, 0.99992191, 0.99992191, 0.99992191,
0.99992191, 0.99967806, 0.99967806, 0.99967806, 0.99967806,
0.9988179 , 0.9988179 , 0.9988179 , 0.9988179 , 0.99618367,
0.99618367, 0.99618367, 0.99618367, 0.9893114 , 0.9893114 ,
0.9893114 , 0.9893114 , 0.97431068, 0.97431068, 0.97431068,
0.97431068, 0.94720653, 0.94720653, 0.94720653, 0.94720653,
0.90652171, 0.90652171, 0.90652171, 0.90652171, 0.85466372,
0.85466372, 0.85466372, 0.85466372, 0.79629842, 0.79629842,
0.79629842, 0.79629842, 0.73604968, 0.73604968, 0.73604968,
0.73604968, 0.67878231, 0.67878231, 0.67878231, 0.67878231,
0.6256561 , 0.6256561 , 0.6256561 , 0.6256561 , 0.57494258,
0.57494258, 0.57494258, 0.57494258, 0.533212 , 0.533212 ,
0.533212 , 0.533212 , 0.50207587, 0.50207587, 0.50207587,
0.50207587, 0.48250309, 0.48250309, 0.48250309, 0.48250309,
0.47250947, 0.47250947, 0.47250947, 0.47250947, 0.46817049,
0.46817049, 0.46817049, 0.46817049, 0.46640112, 0.46640112,
0.46640112, 0.46640112, 0.46567017, 0.46567017, 0.46567017,
0.46567017, 0.46537494, 0.46537494, 0.46537494, 0.46537494,
0.4652207 , 0.4652207 , 0.4652207 , 0.4652207 , 0.46520697,
0.46520697, 0.46520697, 0.46520697, 0.46526117, 0.46526117,
0.46526117, 0.46526117, 0.46535935, 0.46535935, 0.46535935,
0.46535935, 0.46554981, 0.46554981, 0.46554981, 0.46554981,
0.46588653, 0.46588653, 0.46588653, 0.46588653, 0.46609435,
0.46609435, 0.46609435, 0.46609435, 0.46609123, 0.46609123,
0.46609123, 0.46609123, 0.46609313, 0.46609313, 0.46609313,
0.46609313, 0.4660888 , 0.4660888 , 0.4660888 , 0.4660888 ,
0.46579135, 0.46579135, 0.46579135, 0.46579135, 0.46552363,
0.46552363, 0.46552363, 0.46552363, 0.46536737, 0.46536737,
0.46536737, 0.46536737, 0.46516396, 0.46516396, 0.46516396,
0.46516396, 0.46370822, 0.46370822, 0.46370822, 0.46370822,
0.45758086, 0.45758086, 0.45758086, 0.45758086, 0.43124529,
0.43124529, 0.43124529, 0.43124529, 0.33859453, 0.33859453,
0.33859453, 0.33859453, 0.17013955, 0.17013955, 0.17013955,
0.17013955, 0.10699674, 0.10699674, 0.10699674, 0.10699674,
0.10055056, 0.10055056, 0.10055056, 0.10055056, 0.10004173,
0.10004173, 0.10004173, 0.10004173, 0.10000314, 0.10000314,
0.10000314, 0.10000314, 0.10000024, 0.10000024, 0.10000024,
0.10000024, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ,
0.1 , 0.1 , 0.1 , 0.1 , 0.1 ])}]}
running none hll
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 18.48 ms [DataInserterUtility][rank=0]
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 : 3.27 us (51.4%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.24 us (0.2%)
patch tree reduce : 1.55 us (0.2%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.1%)
LB compute : 625.58 us (97.0%)
LB move op cnt : 0
LB apply : 11.44 us (1.8%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running none hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.51 us (2.2%)
patch tree reduce : 2.01 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 458.84 us (94.9%)
LB move op cnt : 0
LB apply : 3.38 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (63.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.6397e+05 | 65536 | 2 | 2.483e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.0%)
patch tree reduce : 1.69 us (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.2%)
LB compute : 518.92 us (96.3%)
LB move op cnt : 0
LB apply : 3.78 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (65.8%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2998e+05 | 65536 | 2 | 1.986e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.916233430644112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017055802906684391, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.4%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 416.28 us (95.3%)
LB move op cnt : 0
LB apply : 4.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (67.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2622e+05 | 65536 | 2 | 2.009e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.563224757756384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034111605813368783, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.3%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 792.00 ns (0.2%)
LB compute : 396.53 us (95.7%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (64.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3370e+05 | 65536 | 2 | 1.964e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.26459865720995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005116740872005318, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (1.6%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 408.85 us (94.8%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (68.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2596e+05 | 65536 | 2 | 2.011e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.53925583312282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0068223211626737565, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.3%)
patch tree reduce : 2.10 us (0.4%)
gen split merge : 661.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 462.21 us (95.6%)
LB move op cnt : 0
LB apply : 4.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.32 us (67.5%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2098e+05 | 65536 | 2 | 2.042e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.073120097170523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008527901453342196, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.5%)
patch tree reduce : 2.29 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 409.06 us (95.0%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.7%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4171e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.38429236539479 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010233481744010635, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.5%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 397.57 us (95.1%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4392e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.590609989835514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011939062034679074, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.4%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 412.79 us (95.3%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (67.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5558e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.68380238263355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013644642325347513, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.5%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 373.12 us (94.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5444e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.57620089100698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015350222616015952, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 334.06 us (94.6%)
LB move op cnt : 0
LB apply : 3.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (58.8%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0121e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.5892758151865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017055802906684393, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 286.97 us (93.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (61.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5217e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.364134800793586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01876138319735283, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.6%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 291.86 us (94.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9766e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.25656289203662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02046696348802127, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.46 us (0.5%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 299.91 us (93.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.5%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3934e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.161619609593735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02217254377868971, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 310.79 us (94.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4702e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.88137098007256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02387812406935815, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 318.50 us (94.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.8%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4654e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.836784590244726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025583704360026587, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 301.37 us (93.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6112e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.202925012365995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027289284650695026, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 276.10 us (93.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7785e+05 | 65536 | 2 | 1.734e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.40100460716857 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028994864941363465, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 302.05 us (94.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9001e+05 | 65536 | 2 | 1.680e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.540367944899714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030700445232031904, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 333.37 us (94.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5336e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.47571207185523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.032406025522700346, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.6%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 365.49 us (94.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5169e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.31891066091551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034111605813368785, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 318.77 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5508e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.636372901130905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.035817186104037224, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.54 us (0.5%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 307.49 us (93.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.7%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4510e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.70115568055384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03752276639470566, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 326.87 us (94.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4402e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.6004163992668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0392283466853741, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 304.17 us (94.0%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6240e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.32254281156883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04093392697604254, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.3%)
LB compute : 310.27 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6320e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.39750895271887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04263950726671098, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 303.78 us (93.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7880e+05 | 65536 | 2 | 1.730e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.489839946069985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04434508755737942, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 294.71 us (93.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (59.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6089e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.18088035737821 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04605066784804786, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 317.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6629e+05 | 65536 | 2 | 1.405e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.68672136107735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0477562481387163, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 314.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.0%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6196e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.28141086560524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.049461828429384735, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 331.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0990e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.40326545614813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051167408720053174, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.9%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 275.91 us (93.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.0%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6748e+05 | 65536 | 2 | 1.402e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.798135540455206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05287298901072161, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 302.56 us (93.8%)
LB move op cnt : 0
LB apply : 4.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6475e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.542702044790815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05457856930139005, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 289.65 us (93.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (65.8%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6704e+05 | 65536 | 2 | 1.403e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.756667558247244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05628414959205849, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 302.02 us (93.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.7%)
Info: cfl dt = 0.0017055802906684402 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4492e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.68487188395679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05798972988272693, dt = 0.0017055802906684402
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 319.88 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.8%)
Info: cfl dt = 0.0017055802906684474 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5097e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.251513089080404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05969531017339537, dt = 0.0017055802906684474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 298.33 us (93.7%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.3%)
Info: cfl dt = 0.0017055802906684925 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3167e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.44314189970335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.061400890464063815, dt = 0.0017055802906684925
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 316.62 us (94.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (65.5%)
Info: cfl dt = 0.00170558029066872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4909e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.07512036774939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0631064707547323, dt = 0.00170558029066872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 293.39 us (93.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.4%)
Info: cfl dt = 0.001705580290669701 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4711e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.88995888715297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06481205104540103, dt = 0.001705580290669701
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 290.23 us (93.6%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.3%)
Info: cfl dt = 0.0017055802906734301 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4696e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.8758251142426 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06651763133607072, dt = 0.0017055802906734301
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 290.21 us (93.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.4%)
Info: cfl dt = 0.0017055802906861533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2163e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.502337510001695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06822321162674415, dt = 0.0017055802906861533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 309.40 us (94.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.5%)
Info: cfl dt = 0.0017055802907257247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3021e+05 | 65536 | 2 | 1.985e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.93757634092811 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0699287919174303, dt = 0.0017055802907257247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.4%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 340.07 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.4%)
Info: cfl dt = 0.001705580290839242 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2822e+05 | 65536 | 2 | 1.997e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.750835551001224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07163437220815602, dt = 0.001705580290839242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 312.74 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.2%)
Info: cfl dt = 0.0017055802911424558 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7602e+05 | 65536 | 2 | 1.743e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.229367292328696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07333995249899526, dt = 0.0017055802911424558
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 297.95 us (93.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.3%)
Info: cfl dt = 0.0017055802919024247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3738e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.60915681811357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07504553279013772, dt = 0.0017055802919024247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 341.59 us (94.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.3%)
Info: cfl dt = 0.0017055802937012742 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3569e+05 | 65536 | 2 | 1.952e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.45100750841821 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07675111308204015, dt = 0.0017055802937012742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.7%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 301.93 us (94.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.8%)
Info: cfl dt = 0.0017055802977442157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4712e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.89108642878105 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07845669337574142, dt = 0.0017055802977442157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 341.27 us (94.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.5%)
Info: cfl dt = 0.0017055803064120302 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6262e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.34343890396549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08016227367348563, dt = 0.0017055803064120302
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 310.97 us (93.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.1%)
Info: cfl dt = 0.0017055803242095387 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5711e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.82659414980968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08186785397989767, dt = 0.0017055803242095387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 335.45 us (94.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.5%)
Info: cfl dt = 0.0017055803593290075 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5918e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.02038942173652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0835734343041072, dt = 0.0017055803593290075
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 301.29 us (93.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.7%)
Info: cfl dt = 0.001705580426131254 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5744e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.85742769344739 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08527901466343621, dt = 0.001705580426131254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 321.55 us (94.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (60.7%)
Info: cfl dt = 0.001705580548945427 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6052e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.14621288600559 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08698459508956746, dt = 0.001705580548945427
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 333.51 us (94.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.8%)
Info: cfl dt = 0.0017055807676960603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7724e+05 | 65536 | 2 | 1.737e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.34332995487251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08869017563851289, dt = 0.0017055807676960603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 318.29 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (51.9%)
Info: cfl dt = 0.0017055811459746005 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9604e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.105518653066234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09039575640620895, dt = 0.0017055811459746005
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 322.66 us (94.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.7%)
Info: cfl dt = 0.0017055817822700953 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6116e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.20665348209308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09210133755218355, dt = 0.0017055817822700953
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 312.91 us (94.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (60.9%)
Info: cfl dt = 0.0017055828251449233 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5215e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.36202650838486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09380691933445365, dt = 0.0017055828251449233
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.4%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 368.87 us (94.9%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.5%)
Info: cfl dt = 0.0017055844931689 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5502e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.63142388193986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09551250215959857, dt = 0.0017055844931689
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.0%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 284.63 us (93.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.4%)
Info: cfl dt = 0.0017055871003907653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5681e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.79872670098834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09721808665276747, dt = 0.0017055871003907653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 323.18 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.2%)
Info: cfl dt = 0.0017055910880134828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5617e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.73847907916537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09892367375315823, dt = 0.0017055910880134828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.4%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 349.62 us (94.8%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.1%)
Info: cfl dt = 0.0017055970627363154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2888e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.18230526362991 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10062926484117171, dt = 0.0017055970627363154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (2.0%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 291.69 us (93.6%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (60.5%)
Info: cfl dt = 0.0017056058419262718 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5541e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.6682926864319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10233486190390803, dt = 0.0017056058419262718
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 321.85 us (94.7%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.9%)
Info: cfl dt = 0.0017056185053868486 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5311e+05 | 65536 | 2 | 1.856e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.08391953194864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10404046774583431, dt = 0.0017056185053868486
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (0.8%)
patch tree reduce : 1.76 us (0.2%)
gen split merge : 972.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.00 us (0.1%)
LB compute : 692.06 us (97.3%)
LB move op cnt : 0
LB apply : 3.57 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (61.4%)
Info: cfl dt = 0.0017056364530162373 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3419e+05 | 65536 | 2 | 1.961e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.310660064743132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10574608625122116, dt = 0.0017056364530162373
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 324.02 us (94.5%)
LB move op cnt : 0
LB apply : 3.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (61.2%)
Info: cfl dt = 0.0017056614671146274 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4376e+05 | 65536 | 2 | 1.906e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.20809715151805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10745172270423739, dt = 0.0017056614671146274
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 333.43 us (94.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (60.9%)
Info: cfl dt = 0.001705695777546076 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7080e+05 | 65536 | 2 | 1.767e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.741659839586774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10915738417135201, dt = 0.001705695777546076
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 324.56 us (94.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (61.5%)
Info: cfl dt = 0.0017057421274285923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3952e+05 | 65536 | 2 | 1.930e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.811722902479712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11086307994889809, dt = 0.0017057421274285923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.3%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 400.28 us (95.6%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.7%)
Info: cfl dt = 0.0017058038365661728 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3874e+05 | 65536 | 2 | 1.935e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.739936534942014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11256882207632668, dt = 0.0017058038365661728
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 340.04 us (94.9%)
LB move op cnt : 0
LB apply : 3.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (60.7%)
Info: cfl dt = 0.0017058848594990496 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3277e+05 | 65536 | 2 | 1.969e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.181660879535468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11427462591289285, dt = 0.0017058848594990496
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.4%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 341.28 us (94.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.0%)
Info: cfl dt = 0.0017059898348795238 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7248e+05 | 65536 | 2 | 1.759e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.90357780987112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1159805107723919, dt = 0.0017059898348795238
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 316.53 us (94.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.2%)
Info: cfl dt = 0.0017061241229163568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2652e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.970776210768705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11768650060727141, dt = 0.0017061241229163568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 310.02 us (93.9%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.2%)
Info: cfl dt = 0.0017062938278914004 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.4809e+05 | 65536 | 2 | 2.642e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.251477673699313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11939262473018777, dt = 0.0017062938278914004
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.2%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 405.67 us (95.5%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (64.3%)
Info: cfl dt = 0.0017065058032390836 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5517e+05 | 65536 | 2 | 1.845e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.28947733025608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12109891855807918, dt = 0.0017065058032390836
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.4%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 367.06 us (94.9%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.7%)
Info: cfl dt = 0.0017067676373724167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9934e+05 | 65536 | 2 | 2.189e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.060751002610733 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12280542436131826, dt = 0.0017067676373724167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.4%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 352.89 us (94.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (61.8%)
Info: cfl dt = 0.001707087619297221 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4734e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.94027936403335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12451219199869068, dt = 0.001707087619297221
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.4%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 344.36 us (94.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.9%)
Info: cfl dt = 0.0017074746840206113 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4477e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.70709843375798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1262192796179879, dt = 0.0017074746840206113
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 331.30 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.0%)
Info: cfl dt = 0.0017079383387594703 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4445e+05 | 65536 | 2 | 1.903e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.30754538995817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1279267543020085, dt = 0.0017079383387594703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 333.30 us (94.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.0%)
Info: cfl dt = 0.0017084885719139463 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4411e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.666342087828355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12963469264076796, dt = 0.0017084885719139463
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 293.22 us (93.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (61.3%)
Info: cfl dt = 0.001709135747617399 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2858e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.22208327791445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1313431812126819, dt = 0.001709135747617399
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 307.70 us (94.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.7%)
Info: cfl dt = 0.001709890489345935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3746e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.07158752629542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1330523169602993, dt = 0.001709890489345935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 356.40 us (94.5%)
LB move op cnt : 0
LB apply : 4.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (68.0%)
Info: cfl dt = 0.0017107635565231255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6545e+05 | 65536 | 2 | 1.408e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.71849315064229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13476220744964523, dt = 0.0017107635565231255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 322.43 us (94.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.3%)
Info: cfl dt = 0.0017117657182650478 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5442e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.704461641558865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13647297100616837, dt = 0.0017117657182650478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 350.59 us (94.8%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.9%)
Info: cfl dt = 0.0017129076283758878 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6719e+05 | 65536 | 2 | 1.403e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.93022149961478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1381847367244334, dt = 0.0017129076283758878
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 277.64 us (93.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.6%)
Info: cfl dt = 0.0017141997054442655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6513e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.7651168833099 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1398976443528093, dt = 0.0017141997054442655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 296.29 us (93.7%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.2%)
Info: cfl dt = 0.0017156520214412407 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7702e+05 | 65536 | 2 | 1.738e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.50154340488214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14161184405825356, dt = 0.0017156520214412407
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 283.51 us (93.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (61.0%)
Info: cfl dt = 0.0017172742016303686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5222e+05 | 65536 | 2 | 1.861e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.194782168176985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1433274960796948, dt = 0.0017172742016303686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (0.8%)
patch tree reduce : 2.16 us (0.3%)
gen split merge : 782.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.1%)
LB compute : 719.79 us (97.3%)
LB move op cnt : 0
LB apply : 3.97 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.9%)
Info: cfl dt = 0.0017190753379216185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9796e+05 | 65536 | 2 | 2.199e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.107465664177365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14504477028132517, dt = 0.0017190753379216185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.3%)
patch tree reduce : 1.88 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 406.76 us (95.5%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.3%)
Info: cfl dt = 0.0017210639170878118 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4884e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.38450756288836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1467638456192468, dt = 0.0017210639170878118
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 289.12 us (93.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.3%)
Info: cfl dt = 0.001723247764562986 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4337e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.9169029378508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1484849095363346, dt = 0.0015150904636653806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.4%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 352.16 us (94.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.6%)
Info: cfl dt = 0.0017253441359869606 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4970e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.42681300309473 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 141.297436376 (s) [Godunov][rank=0]
running minmod rusanov
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.78 ms [DataInserterUtility][rank=0]
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 : 4.70 us (59.1%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (0.3%)
patch tree reduce : 1.08 us (0.2%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 441.49 us (97.4%)
LB move op cnt : 0
LB apply : 3.32 us (0.7%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.85 us (2.6%)
patch tree reduce : 2.45 us (0.6%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 391.17 us (93.6%)
LB move op cnt : 0
LB apply : 4.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (67.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1942e+05 | 65536 | 2 | 2.052e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.1%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 404.92 us (95.9%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3765e+05 | 65536 | 2 | 1.941e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.63455642470635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017055802906684391, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 330.07 us (94.5%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3222e+05 | 65536 | 2 | 1.973e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.12596219159051 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034111605813368783, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 355.75 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3630e+05 | 65536 | 2 | 1.949e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.507964427748902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005116740872005318, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.7%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 338.97 us (94.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3655e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.531940452179757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0068223211626737565, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 333.16 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.0%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3138e+05 | 65536 | 2 | 1.978e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.04732566946294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008527901453342196, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 318.74 us (94.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2402e+05 | 65536 | 2 | 2.023e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.357470627144952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010233481744010635, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.4%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 378.86 us (94.9%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (64.5%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2018e+05 | 65536 | 2 | 2.047e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.997848669557694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011939062034679074, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.3%)
LB compute : 382.54 us (95.1%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5595e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.717840216252526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013644642325347513, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 354.06 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4525e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.71557506679104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015350222616015952, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 309.54 us (94.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.0%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5247e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.39232322342671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017055802906684393, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 314.48 us (94.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (63.7%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6022e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.11781195703335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01876138319735283, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 305.20 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6230e+05 | 65536 | 2 | 1.809e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.94430677153768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02046696348802127, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 310.19 us (94.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4857e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.02665617963742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02217254377868971, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 346.23 us (94.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4810e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.9830110510905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02387812406935815, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.4%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 353.96 us (94.9%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (60.7%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4781e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.955356706795385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025583704360026587, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 342.96 us (94.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5697e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.81392047524701 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027289284650695026, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 324.91 us (88.9%)
LB move op cnt : 0
LB apply : 24.97 us (6.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6268e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.34872093939397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028994864941363465, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 308.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (60.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3105e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.38517164827886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030700445232031904, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.5%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 322.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2682e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.98870697783165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.032406025522700346, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 332.51 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4840e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.0105199275611 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034111605813368785, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 300.09 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (62.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4971e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.13312706063003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.035817186104037224, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 279.92 us (93.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5675e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.79329507654097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03752276639470566, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 285.73 us (93.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5757e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.870034326714304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0392283466853741, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 275.96 us (93.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (61.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0110e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.57924781627728 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04093392697604254, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 343.49 us (94.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.7%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3887e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.117447576275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04263950726671098, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 365.48 us (94.9%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3253e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.523555733411804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04434508755737942, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 320.90 us (94.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.0%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3434e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.69392101223256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04605066784804786, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 355.26 us (94.9%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.8%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3461e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.718522193244866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0477562481387163, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.9%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 291.81 us (93.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3575e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.82587883814466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.049461828429384735, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 336.66 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.0%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2046e+05 | 65536 | 2 | 2.045e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.02358468200334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051167408720053174, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 332.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (62.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8907e+05 | 65536 | 2 | 2.267e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.0835093228198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05287298901072161, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 343.23 us (94.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (48.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9325e+05 | 65536 | 2 | 1.667e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.84376304476895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05457856930139005, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 315.30 us (94.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (61.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4554e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.74246403365353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05628414959205849, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 322.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.7%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2073e+05 | 65536 | 2 | 2.043e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.049331656061945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05798972988272693, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 336.71 us (94.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (64.5%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2023e+05 | 65536 | 2 | 2.047e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.002684059858296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05969531017339537, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 314.14 us (94.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.5%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6397e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.469259356625074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06140089046406381, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.5%)
patch tree reduce : 1.78 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 357.87 us (89.9%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6099e+05 | 65536 | 2 | 1.815e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.821393455168234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06310647075473225, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 359.41 us (94.9%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3523e+05 | 65536 | 2 | 1.955e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.407595569287235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06481205104540069, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.4%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 338.51 us (94.9%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (60.8%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8716e+05 | 65536 | 2 | 1.693e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.273425603632475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06651763133606914, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 337.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.7%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9172e+05 | 65536 | 2 | 1.673e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.70014689472864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06822321162673758, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 313.75 us (94.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.4%)
Info: cfl dt = 0.0017055802906684398 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0580e+05 | 65536 | 2 | 2.143e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.65057749350586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06992879191740603, dt = 0.0017055802906684398
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.4%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 340.98 us (94.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.7%)
Info: cfl dt = 0.0017055802906684422 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1764e+05 | 65536 | 2 | 2.063e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.759444167591624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07163437220807448, dt = 0.0017055802906684422
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.3%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 369.51 us (95.0%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (62.9%)
Info: cfl dt = 0.0017055802906684504 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3277e+05 | 65536 | 2 | 1.969e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.177194893117473 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07333995249874292, dt = 0.0017055802906684504
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 336.93 us (94.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.7%)
Info: cfl dt = 0.001705580290668476 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2373e+05 | 65536 | 2 | 2.024e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.3302158130838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07504553278941137, dt = 0.001705580290668476
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.4%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 378.91 us (95.1%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (67.2%)
Info: cfl dt = 0.001705580290668554 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2129e+05 | 65536 | 2 | 2.040e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.101681104044783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07675111308007984, dt = 0.001705580290668554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.3%)
patch tree reduce : 2.29 us (0.5%)
gen split merge : 1.03 us (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 449.23 us (95.5%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.2%)
Info: cfl dt = 0.0017055802906687763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2195e+05 | 65536 | 2 | 2.036e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.16344007889027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0784566933707484, dt = 0.0017055802906687763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 361.67 us (94.7%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.3%)
Info: cfl dt = 0.0017055802906693822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6280e+05 | 65536 | 2 | 1.806e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.99081924833867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08016227366141718, dt = 0.0017055802906693822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.61 us (8.1%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 286.86 us (87.6%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.0%)
Info: cfl dt = 0.001705580290670957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5594e+05 | 65536 | 2 | 1.841e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.34769279952273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08186785395208655, dt = 0.001705580290670957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 286.28 us (93.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.0%)
Info: cfl dt = 0.0017055802906748875 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2599e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.91123250777764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08357343424275751, dt = 0.0017055802906748875
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 278.26 us (93.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.1%)
Info: cfl dt = 0.0017055802906843244 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2259e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.59275461569762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0852790145334324, dt = 0.0017055802906843244
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 310.20 us (94.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.8%)
Info: cfl dt = 0.0017055802907061882 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6829e+05 | 65536 | 2 | 1.399e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.87414834805986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08698459482411672, dt = 0.0017055802907061882
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.1%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 270.76 us (93.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.7%)
Info: cfl dt = 0.0017055802907551792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6675e+05 | 65536 | 2 | 1.404e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.73037482984414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08869017511482291, dt = 0.0017055802907551792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 309.08 us (94.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.3%)
Info: cfl dt = 0.0017055802908615709 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6513e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.57837645576119 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0903957554055781, dt = 0.0017055802908615709
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 292.43 us (93.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.8%)
Info: cfl dt = 0.0017055802910859227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9216e+05 | 65536 | 2 | 1.671e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.7418275099717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09210133569643966, dt = 0.0017055802910859227
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 296.76 us (94.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (63.2%)
Info: cfl dt = 0.0017055802915460889 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5534e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.66100279367376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09380691598752558, dt = 0.0017055802915460889
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 330.24 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.4%)
Info: cfl dt = 0.001705580292465543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8263e+05 | 65536 | 2 | 1.713e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.848388769168146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09551249627907167, dt = 0.001705580292465543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 312.30 us (94.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.9%)
Info: cfl dt = 0.0017055802942577123 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3401e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.66252230322533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09721807657153722, dt = 0.0017055802942577123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.7%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 299.25 us (94.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (64.4%)
Info: cfl dt = 0.001705580297669714 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6448e+05 | 65536 | 2 | 1.798e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.14799094893245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09892365686579493, dt = 0.001705580297669714
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 297.22 us (94.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.2%)
Info: cfl dt = 0.0017055803040218658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5636e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.75698254821756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10062923716346465, dt = 0.0017055803040218658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 315.61 us (94.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (62.8%)
Info: cfl dt = 0.0017055803155982016 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2071e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.416430714361894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10233481746748652, dt = 0.0017055803155982016
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 300.88 us (93.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.7%)
Info: cfl dt = 0.0017055803362700298 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6771e+05 | 65536 | 2 | 1.401e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.819931642994675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10404039778308471, dt = 0.0017055803362700298
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 306.69 us (94.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.9%)
Info: cfl dt = 0.0017055803724717218 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6655e+05 | 65536 | 2 | 1.405e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.71100725535302 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10574597811935474, dt = 0.0017055803724717218
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.57 us (3.3%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 329.48 us (92.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.9%)
Info: cfl dt = 0.001705580434698187 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1443e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.82843308183055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10745155849182646, dt = 0.001705580434698187
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.1%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 274.04 us (93.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (62.5%)
Info: cfl dt = 0.0017055805397597833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6381e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.45405286368486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10915713892652465, dt = 0.0017055805397597833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.5%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 361.26 us (94.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.7%)
Info: cfl dt = 0.0017055807141157196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4438e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.63423578852263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11086271946628443, dt = 0.0017055807141157196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 277.04 us (93.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.8%)
Info: cfl dt = 0.001705580998713724 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1094e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.50075415730272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11256830018040015, dt = 0.001705580998713724
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 272.44 us (93.2%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.2%)
Info: cfl dt = 0.001705581455893551 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3957e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.183695074845666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11427388117911387, dt = 0.001705581455893551
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 310.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.5%)
Info: cfl dt = 0.0017055821790647279 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3962e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.18862752049464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11597946263500743, dt = 0.0017055821790647279
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 276.10 us (93.4%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (63.2%)
Info: cfl dt = 0.0017055833060424421 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3447e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.70579946648006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11768504481407216, dt = 0.0017055833060424421
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 311.77 us (94.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.0%)
Info: cfl dt = 0.0017055850371140583 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3404e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.665743700126356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1193906281201146, dt = 0.0017055850371140583
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 290.72 us (93.8%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.3%)
Info: cfl dt = 0.0017055876591026123 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5589e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.712864252422946 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12109621315722865, dt = 0.0017055876591026123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 289.31 us (93.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.1%)
Info: cfl dt = 0.001705591576878013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5260e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.40467534355017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12280180081633127, dt = 0.001705591576878013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 283.08 us (93.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.0%)
Info: cfl dt = 0.0017055973539212557 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5559e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.68486285859304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12450739239320928, dt = 0.0017055973539212557
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 310.60 us (94.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.0%)
Info: cfl dt = 0.0017056057636456693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5203e+05 | 65536 | 2 | 1.862e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.98243837304004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12621298974713052, dt = 0.0017056057636456693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.8%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 270.64 us (93.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.7%)
Info: cfl dt = 0.00170561785319086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9016e+05 | 65536 | 2 | 1.680e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.554967593632135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1279185955107762, dt = 0.00170561785319086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.1%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.56 us (0.5%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 276.83 us (93.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.6%)
Info: cfl dt = 0.0017056350212945942 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5169e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.320268517720876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12962421336396707, dt = 0.0017056350212945942
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 326.92 us (94.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.0%)
Info: cfl dt = 0.0017056591115791786 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6265e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.347379418330824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13132984838526165, dt = 0.0017056591115791786
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 332.95 us (94.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.6%)
Info: cfl dt = 0.0017056925221283386 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5863e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.9714889771914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13303550749684084, dt = 0.0017056925221283386
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 331.97 us (94.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.7%)
Info: cfl dt = 0.001705738331552196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9940e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.42212559730283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1347412000189692, dt = 0.001705738331552196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.8%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 281.98 us (93.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (60.6%)
Info: cfl dt = 0.0017058004408294066 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9967e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.448243222133264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13644693835052138, dt = 0.0017058004408294066
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.7%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 285.30 us (93.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.3%)
Info: cfl dt = 0.0017058837290848479 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2168e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.512391262973715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1381527387913508, dt = 0.0017058837290848479
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 290.30 us (94.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (62.1%)
Info: cfl dt = 0.0017059942201429112 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5903e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.01416746973249 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13985862252043563, dt = 0.0017059942201429112
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 300.30 us (93.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.8%)
Info: cfl dt = 0.0017061392552560747 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0954e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.3794658845473 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14156461674057855, dt = 0.0017061392552560747
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.7%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 273.81 us (93.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.6%)
Info: cfl dt = 0.0017063276659444774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3617e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.878395262083586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1432707559958346, dt = 0.0017063276659444774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 300.39 us (94.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (61.0%)
Info: cfl dt = 0.0017065699395233122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2767e+05 | 65536 | 2 | 2.000e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.712959398961363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14497708366177908, dt = 0.0017065699395233122
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.4%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 362.75 us (95.1%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.9%)
Info: cfl dt = 0.0017068783687916485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4400e+05 | 65536 | 2 | 1.905e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.24842439767653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1466836536013024, dt = 0.0017068783687916485
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 307.78 us (94.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (58.8%)
Info: cfl dt = 0.0017072671766671043 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5051e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.240266918570484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14839053197009405, dt = 0.0016094680299059416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (2.0%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 279.40 us (93.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.1%)
Info: cfl dt = 0.0017077187297657632 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1844e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.994168553442 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 156.15498211800002 (s) [Godunov][rank=0]
running minmod hll
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.41 ms [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (63.0%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (0.4%)
patch tree reduce : 1.05 us (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 383.78 us (97.0%)
LB move op cnt : 0
LB apply : 3.08 us (0.8%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod hll with only_last_step=False
Info: time since start : 156.335274484 (s) [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.33 us (2.1%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 375.36 us (94.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (69.8%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0954e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 331.66 us (94.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5932e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.03355567416278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017055802906684391, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 300.87 us (94.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (62.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0958e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.373257981886766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034111605813368783, dt = 0.0003388394186631216
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 340.29 us (94.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5073e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.389347964167039 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 157.016686784 (s) [Godunov][rank=0]
amr::Godunov: t = 0.00375, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (1.8%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 338.43 us (94.2%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.5%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6024e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.12047786801502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005455580290668439, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.5%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 328.57 us (94.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5509e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.63715215623701 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007161160581336878, dt = 0.00033883941866312203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 309.94 us (94.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7386e+05 | 65536 | 2 | 1.753e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.95859627534925 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 157.56007986100002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0075, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (1.7%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 405.07 us (94.9%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (62.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2043e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.39012099319031 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009205580290668439, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.79 us (7.2%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 320.61 us (89.0%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3241e+05 | 65536 | 2 | 1.972e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.143325747353813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010911160581336878, dt = 0.00033883941866312203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.1%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 301.80 us (93.7%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (60.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2021e+05 | 65536 | 2 | 2.047e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.960116140863321 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 158.190500207 (s) [Godunov][rank=0]
amr::Godunov: t = 0.01125, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.80 us (1.8%)
patch tree reduce : 2.40 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 455.79 us (94.8%)
LB move op cnt : 0
LB apply : 3.96 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (71.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4333e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.536047925940245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012955580290668438, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 298.03 us (93.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (60.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8780e+05 | 65536 | 2 | 1.690e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.332961713314425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014661160581336877, dt = 0.00033883941866312203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 309.51 us (94.0%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5197e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.412534185907964 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 158.724201902 (s) [Godunov][rank=0]
amr::Godunov: t = 0.015, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (1.6%)
patch tree reduce : 1.88 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 407.99 us (94.5%)
LB move op cnt : 0
LB apply : 4.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (70.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5667e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.78588908398803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01670558029066844, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 354.12 us (94.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (62.5%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6231e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.313672242805225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018411160581336877, dt = 0.00033883941866312203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 284.52 us (93.7%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5942e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.551190466812512 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 159.227574248 (s) [Godunov][rank=0]
amr::Godunov: t = 0.01875, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (1.8%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 375.61 us (94.5%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0299e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.75658499670742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020455580290668438, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 278.80 us (93.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.7%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4684e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.86434501926199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022161160581336877, dt = 0.00033883941866312203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.9%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 278.46 us (93.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.5%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5170e+05 | 65536 | 2 | 1.863e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.546163435055544 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 159.797737686 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0225, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (1.8%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 363.25 us (94.6%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (63.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5383e+05 | 65536 | 2 | 1.852e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.15084872693101 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024205580290668438, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 311.90 us (94.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4592e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.778705491746706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025911160581336877, dt = 0.00033883941866312203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 297.94 us (94.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5575e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.482903887631117 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 160.352292882 (s) [Godunov][rank=0]
amr::Godunov: t = 0.02625, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.33 us (2.2%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 362.27 us (93.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (67.8%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5735e+05 | 65536 | 2 | 1.834e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.48061963945091 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027955580290668438, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 328.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3541e+05 | 65536 | 2 | 1.954e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.424427752229214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029661160581336877, dt = 0.00033883941866312203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.4%)
LB compute : 323.94 us (94.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8803e+05 | 65536 | 2 | 1.689e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.222464979636035 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 160.987604664 (s) [Godunov][rank=0]
amr::Godunov: t = 0.03, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (1.7%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 394.92 us (94.9%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (65.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5433e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.566012021801136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03170558029066844, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 342.87 us (94.4%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.0%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5132e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.284120975501054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03341116058133688, dt = 0.0003388394186631255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 298.58 us (94.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.8%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9559e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.363156445704462 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 161.52048294600002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.03375, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (1.7%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 410.58 us (95.0%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.7%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5245e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.390243509199465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03545558029066844, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.9%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 278.49 us (93.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5447e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.57946519404496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03716116058133688, dt = 0.00033883941866311856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 320.18 us (94.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (62.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6229e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.60468032865611 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 162.02364130700002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0375, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.60 us (1.9%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 379.59 us (94.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (67.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5475e+05 | 65536 | 2 | 1.847e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.236482399837456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03920558029066844, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 318.78 us (94.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4974e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.136035772333116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.040911160581336876, dt = 0.00033883941866311856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 314.26 us (93.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5231e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.418829880045541 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 162.571247026 (s) [Godunov][rank=0]
amr::Godunov: t = 0.041249999999999995, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.5%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 400.34 us (95.1%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (66.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5192e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.34071764328516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.042955580290668434, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.48 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 302.00 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (59.8%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5393e+05 | 65536 | 2 | 1.852e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.159911919944776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04466116058133687, dt = 0.0003388394186631255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 290.26 us (93.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (61.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4353e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.255440724924124 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 163.12919327400002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.045, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (1.9%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.65 us (0.4%)
LB compute : 371.62 us (94.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (68.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5628e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.74878086914239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04670558029066844, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.12 us (7.2%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 308.73 us (88.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6763e+05 | 65536 | 2 | 1.783e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.443641561251425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.048411160581336876, dt = 0.0003388394186631255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 288.18 us (93.7%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (60.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4316e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.248545842493806 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 163.673692267 (s) [Godunov][rank=0]
amr::Godunov: t = 0.04875, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.6%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 358.38 us (94.9%)
LB move op cnt : 0
LB apply : 3.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7529e+05 | 65536 | 2 | 1.746e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.16094173085758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05045558029066844, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.48 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 290.29 us (93.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (60.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5838e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.94555999293283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05216116058133688, dt = 0.00033883941866311856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.9%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 276.98 us (93.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3729e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.278067255622793 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 164.25909959400002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0525, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (1.7%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 388.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (75.7%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4613e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.79779858276327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05420558029066844, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 333.38 us (94.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9309e+05 | 65536 | 2 | 1.667e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.828451305506356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.055911160581336876, dt = 0.00033883941866311856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.4%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 364.85 us (94.9%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5073e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.389519618923932 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 164.796619061 (s) [Godunov][rank=0]
amr::Godunov: t = 0.056249999999999994, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (1.8%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 368.43 us (94.6%)
LB move op cnt : 0
LB apply : 3.20 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (62.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5725e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.83986126537515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05795558029066843, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 307.67 us (94.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.7%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6768e+05 | 65536 | 2 | 1.782e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.44789496739139 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05966116058133687, dt = 0.0003388394186631255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 275.00 us (86.9%)
LB move op cnt : 0
LB apply : 25.02 us (7.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.0%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8344e+05 | 65536 | 2 | 1.709e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.13702256937976 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 165.365917889 (s) [Godunov][rank=0]
amr::Godunov: t = 0.06, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.75 us (2.1%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 348.65 us (93.9%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (72.5%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2692e+05 | 65536 | 2 | 2.005e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.629227224911492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06170558029066844, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.4%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 354.83 us (94.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6033e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.12824674184785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06341116058133688, dt = 0.0003388394186631255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.9%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 301.29 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8804e+05 | 65536 | 2 | 1.689e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.222588568612402 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 165.958791103 (s) [Godunov][rank=0]
amr::Godunov: t = 0.06375, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (1.7%)
patch tree reduce : 1.86 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 413.02 us (94.9%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (69.8%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5353e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.49178810634162 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06545558029066845, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 342.49 us (94.6%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (66.9%)
Info: cfl dt = 0.0017055802906684396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4190e+05 | 65536 | 2 | 1.917e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.032262126061525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06716116058133689, dt = 0.0003388394186631116
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 294.39 us (93.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.57 us (66.4%)
Info: cfl dt = 0.0017055802906684398 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3423e+05 | 65536 | 2 | 1.961e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.22100337845315 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 166.571907793 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0675, dt = 0.0017055802906684398
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (1.8%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 367.29 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (65.3%)
Info: cfl dt = 0.0017055802906684417 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4758e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.93374773205149 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06920558029066845, dt = 0.0017055802906684417
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 333.96 us (94.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.4%)
Info: cfl dt = 0.0017055802906684474 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1384e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.77251120606499 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0709111605813369, dt = 0.00033883941866309775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 304.71 us (94.3%)
LB move op cnt : 0
LB apply : 3.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (62.6%)
Info: cfl dt = 0.00170558029066845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2337e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.880232508726527 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 167.113604798 (s) [Godunov][rank=0]
amr::Godunov: t = 0.07125, dt = 0.00170558029066845
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (1.6%)
patch tree reduce : 1.48 us (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.2%)
LB compute : 442.68 us (95.2%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (66.9%)
Info: cfl dt = 0.0017055802906684727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5279e+05 | 65536 | 2 | 1.858e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.05303054350414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07295558029066844, dt = 0.0017055802906684727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.5%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 331.87 us (94.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.1%)
Info: cfl dt = 0.001705580290668536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3895e+05 | 65536 | 2 | 1.933e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.756422495419184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07466116058133691, dt = 0.00033883941866308387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 304.59 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.2%)
Info: cfl dt = 0.0017055802906685636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3550e+05 | 65536 | 2 | 1.953e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.244694407187195 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 167.763115123 (s) [Godunov][rank=0]
amr::Godunov: t = 0.075, dt = 0.0017055802906685636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.7%)
patch tree reduce : 1.37 us (0.3%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 386.46 us (94.9%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (72.3%)
Info: cfl dt = 0.0017055802906687785 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2877e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.171666392514254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07670558029066855, dt = 0.0017055802906687785
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 305.97 us (93.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.4%)
Info: cfl dt = 0.0017055802906693282 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4508e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.69975351325924 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07841116058133733, dt = 0.00033883941866266754
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (2.0%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 269.04 us (93.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.9%)
Info: cfl dt = 0.0017055802906695474 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4929e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.362548360055106 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 168.280422845 (s) [Godunov][rank=0]
amr::Godunov: t = 0.07875, dt = 0.0017055802906695474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (1.9%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 354.27 us (94.2%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (66.0%)
Info: cfl dt = 0.001705580290671223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1305e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.699053294399604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08045558029066954, dt = 0.001705580290671223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.8%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 293.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (59.9%)
Info: cfl dt = 0.0017055802906751835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5610e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.732375104223216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08216116058134076, dt = 0.00033883941865922584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 297.77 us (93.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.8%)
Info: cfl dt = 0.0017055802906766546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4407e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.265457462210472 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 168.805269568 (s) [Godunov][rank=0]
amr::Godunov: t = 0.08249999999999999, dt = 0.0017055802906766546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.1%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 334.56 us (94.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (64.8%)
Info: cfl dt = 0.0017055802906876466 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7282e+05 | 65536 | 2 | 1.758e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.92964768338363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08420558029067665, dt = 0.0017055802906876466
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.4%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 394.80 us (95.4%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.5%)
Info: cfl dt = 0.0017055802907119265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4837e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.00784061878654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0859111605813643, dt = 0.0003388394186356891
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.8%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 278.67 us (93.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (65.0%)
Info: cfl dt = 0.001705580290720382 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4692e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.318541038179472 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 169.36357512 (s) [Godunov][rank=0]
amr::Godunov: t = 0.08625, dt = 0.001705580290720382
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (1.8%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 364.42 us (94.4%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (64.8%)
Info: cfl dt = 0.0017055802907824482 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1223e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.6218667723895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08795558029072037, dt = 0.0017055802907824482
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 345.46 us (94.6%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.9%)
Info: cfl dt = 0.0017055802909115413 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4249e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.45668499786371 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08966116058150282, dt = 0.0003388394184971749
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 291.43 us (93.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.3%)
Info: cfl dt = 0.0017055802909539985 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3174e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.036051740820639 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 169.898381088 (s) [Godunov][rank=0]
amr::Godunov: t = 0.09, dt = 0.0017055802909539985
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.93 us (1.9%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 397.08 us (94.6%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (68.7%)
Info: cfl dt = 0.001705580291260901 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4667e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.8488556810006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09170558029095399, dt = 0.001705580291260901
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.6%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 304.25 us (94.1%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.1%)
Info: cfl dt = 0.001705580291865828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1352e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.7430628352271 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0934111605822149, dt = 0.0003388394177851056
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.8%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 281.80 us (93.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.7%)
Info: cfl dt = 0.0017055802920548182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6975e+05 | 65536 | 2 | 1.772e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.882071625611308 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 170.45703269900002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.09375, dt = 0.0017055802920548182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (1.8%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 387.70 us (94.6%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (67.4%)
Info: cfl dt = 0.0017055802934029458 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5783e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.894385142129636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09545558029205482, dt = 0.0017055802934029458
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.4%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 341.62 us (94.8%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.8%)
Info: cfl dt = 0.0017055802959344921 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6963e+05 | 65536 | 2 | 1.773e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.6305561023798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09716116058545776, dt = 0.0003388394145422413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 1.42 us (0.5%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 272.14 us (93.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.5%)
Info: cfl dt = 0.0017055802966894906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4254e+05 | 65536 | 2 | 1.913e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.375613641026427 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 171.0411563 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0975, dt = 0.0017055802966894906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (1.7%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 388.61 us (94.9%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (68.0%)
Info: cfl dt = 0.0017055803020129441 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3165e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.44165112226204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0992055802966895, dt = 0.0017055803020129441
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 317.73 us (94.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.0%)
Info: cfl dt = 0.0017055803115789483 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3719e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.96028273263214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10091116059870243, dt = 0.0003388394012975582
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 311.88 us (94.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (61.5%)
Info: cfl dt = 0.0017055803143136746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9505e+05 | 65536 | 2 | 1.659e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.3530333188992465 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 171.581835877 (s) [Godunov][rank=0]
amr::Godunov: t = 0.10124999999999999, dt = 0.0017055803143136746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (1.5%)
patch tree reduce : 1.47 us (0.3%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 416.06 us (95.1%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (66.2%)
Info: cfl dt = 0.001705580333398912 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2747e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.05006793429528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10295558031431366, dt = 0.001705580333398912
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 309.68 us (94.0%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.0%)
Info: cfl dt = 0.0017055803663408543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4064e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.28328865750378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10466116064771258, dt = 0.000338839352287415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 325.85 us (93.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.3%)
Info: cfl dt = 0.0017055803753998516 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4555e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.292949782231632 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 172.105797013 (s) [Godunov][rank=0]
amr::Godunov: t = 0.105, dt = 0.0017055803753998516
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.5%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 418.77 us (95.2%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (63.1%)
Info: cfl dt = 0.001705580438043695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3056e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.338972727949724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10670558037539984, dt = 0.001705580438043695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.8%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 314.26 us (93.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.7%)
Info: cfl dt = 0.0017055805422354613 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3888e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.11851013442511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10841116081344354, dt = 0.0003388391865564583
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.4%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 348.34 us (94.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (65.9%)
Info: cfl dt = 0.0017055805698800715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1802e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.780571763173015 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 172.642912513 (s) [Godunov][rank=0]
amr::Godunov: t = 0.10875, dt = 0.0017055805698800715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (1.8%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 376.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (64.8%)
Info: cfl dt = 0.0017055807594724872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2517e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.83456113501933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11045558056988007, dt = 0.0017055807594724872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 314.25 us (94.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.2%)
Info: cfl dt = 0.001705581064168032 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3448e+05 | 65536 | 2 | 1.959e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.337354054304456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11216116132935255, dt = 0.00033883867064743445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.3%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 382.92 us (95.3%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.2%)
Info: cfl dt = 0.0017055811423667506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3112e+05 | 65536 | 2 | 1.979e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.163096095936987 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 173.267945838 (s) [Godunov][rank=0]
amr::Godunov: t = 0.11249999999999999, dt = 0.0017055811423667506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (1.5%)
patch tree reduce : 1.53 us (0.3%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 428.43 us (95.1%)
LB move op cnt : 0
LB apply : 3.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (65.0%)
Info: cfl dt = 0.001705581674665527 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7033e+05 | 65536 | 2 | 1.770e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.69614788700551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11420558114236674, dt = 0.001705581674665527
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 316.53 us (94.3%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.9%)
Info: cfl dt = 0.0017055825031950488 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5059e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.215570017461765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11591116281703227, dt = 0.0003388371829677189
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 330.73 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.4%)
Info: cfl dt = 0.0017055827093286767 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9061e+05 | 65536 | 2 | 1.678e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.270285019135735 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 173.830792228 (s) [Godunov][rank=0]
amr::Godunov: t = 0.11624999999999999, dt = 0.0017055827093286767
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.0%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 356.78 us (94.4%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.0%)
Info: cfl dt = 0.0017055841029076466 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6088e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.18016419778915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11795558270932867, dt = 0.0017055841029076466
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.0%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 285.76 us (93.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (62.4%)
Info: cfl dt = 0.0017055862079691955 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5404e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.53945258936832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11966116681223632, dt = 0.0003388331877636763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 305.04 us (94.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.8%)
Info: cfl dt = 0.001705586716627705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3268e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.053271163496255 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 174.3430903 (s) [Godunov][rank=0]
amr::Godunov: t = 0.12, dt = 0.001705586716627705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.0%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 346.76 us (94.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.7%)
Info: cfl dt = 0.00170559013387867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4948e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.11164722521335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1217055867166277, dt = 0.00170559013387867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 286.14 us (93.6%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.9%)
Info: cfl dt = 0.0017055951519962195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4686e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.866587377889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12341117685050637, dt = 0.0003388231494936278
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 296.99 us (93.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.4%)
Info: cfl dt = 0.001705596331541383 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4330e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.250691338664446 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 174.85841671900002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.12375, dt = 0.001705596331541383
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.7%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 366.45 us (94.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (70.7%)
Info: cfl dt = 0.0017056042100471686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7294e+05 | 65536 | 2 | 1.757e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.94082769205046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12545559633154138, dt = 0.0017056042100471686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.9%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 284.61 us (93.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.4%)
Info: cfl dt = 0.0017056154737851938 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4991e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.15250468955416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12716120054158855, dt = 0.00033879945841144843
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 332.17 us (94.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.3%)
Info: cfl dt = 0.0017056180527650242 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5104e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.394178864135833 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 175.400843323 (s) [Godunov][rank=0]
amr::Godunov: t = 0.1275, dt = 0.0017056180527650242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (1.7%)
patch tree reduce : 1.83 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 410.29 us (94.9%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (73.5%)
Info: cfl dt = 0.0017056351863912094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3351e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.616421909902485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12920561805276504, dt = 0.0017056351863912094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 326.31 us (94.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (58.7%)
Info: cfl dt = 0.0017056590653762435 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4738e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.916815859842295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13091125323915626, dt = 0.00033874676084375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 291.52 us (93.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.5%)
Info: cfl dt = 0.0017056643967931814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4550e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.289759883823292 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 175.920622314 (s) [Godunov][rank=0]
amr::Godunov: t = 0.13125, dt = 0.0017056643967931814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (1.9%)
patch tree reduce : 1.37 us (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 373.38 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (62.4%)
Info: cfl dt = 0.0017056996427259861 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3881e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.1140983932541 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13295566439679318, dt = 0.0017056996427259861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 289.79 us (93.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.4%)
Info: cfl dt = 0.0017057475807917397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4893e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.063577643849975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13466136403951917, dt = 0.00033863596048083755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 322.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.5%)
Info: cfl dt = 0.0017057580261110798 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1935e+05 | 65536 | 2 | 2.052e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.940466111835435 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 176.494928259 (s) [Godunov][rank=0]
amr::Godunov: t = 0.135, dt = 0.0017057580261110798
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (1.7%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 402.11 us (94.8%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (68.3%)
Info: cfl dt = 0.0017058267759265753 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1672e+05 | 65536 | 2 | 2.069e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.676626208710253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1367057580261111, dt = 0.0017058267759265753
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.3%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 375.71 us (95.1%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (64.2%)
Info: cfl dt = 0.0017059181166186419 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4256e+05 | 65536 | 2 | 1.913e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.09873872032563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13841158480203766, dt = 0.0003384151979623218
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 319.15 us (94.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.0%)
Info: cfl dt = 0.0017059375494748695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2768e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.950472009781794 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 177.117657605 (s) [Godunov][rank=0]
amr::Godunov: t = 0.13874999999999998, dt = 0.0017059375494748695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (1.6%)
patch tree reduce : 1.90 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 423.52 us (94.9%)
LB move op cnt : 0
LB apply : 4.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (70.3%)
Info: cfl dt = 0.0017060649740358817 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2749e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.06021553459906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14045593754947486, dt = 0.0017060649740358817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 321.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.2%)
Info: cfl dt = 0.001706230490070304 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6353e+05 | 65536 | 2 | 1.803e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.068563615478446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14216200252351074, dt = 0.0003379974764892435
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 359.65 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.6%)
Info: cfl dt = 0.0017062648765051938 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3183e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.017629027605603 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 177.674951443 (s) [Godunov][rank=0]
amr::Godunov: t = 0.1425, dt = 0.0017062648765051938
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (1.9%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 371.81 us (94.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (69.4%)
Info: cfl dt = 0.0017064897180124724 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4365e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.58239924769784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14420626487650517, dt = 0.0017064897180124724
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 330.93 us (94.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (64.8%)
Info: cfl dt = 0.0017067754813477338 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3691e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.9564055313181 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14591275459451764, dt = 0.00033724540548235593
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.5%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 366.31 us (94.8%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.0%)
Info: cfl dt = 0.0017068334296343095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6275e+05 | 65536 | 2 | 1.807e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.720032341925932 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 178.22475058 (s) [Godunov][rank=0]
amr::Godunov: t = 0.14625, dt = 0.0017068334296343095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (1.6%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 426.49 us (95.1%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (66.3%)
Info: cfl dt = 0.0017072117966448453 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3106e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.41548097845497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1479568334296343, dt = 0.0017072117966448453
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 318.33 us (94.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.3%)
Info: cfl dt = 0.001707682700707798 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2030e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.41571361797392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14966404522627916, dt = 0.0003359547737208368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 323.49 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (61.8%)
Info: cfl dt = 0.0017077758010074246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3043e+05 | 65536 | 2 | 1.983e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.0979690202396455 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 178.81616409400002 (s) [Godunov][rank=0]
running minmod hllc
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.81 ms [DataInserterUtility][rank=0]
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 : 4.14 us (54.6%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (0.4%)
patch tree reduce : 1.09 us (0.3%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 382.73 us (97.0%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.58 us (2.3%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 310.18 us (94.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2743e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.3%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 376.40 us (95.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2636e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.94592913138297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017055802906684391, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 338.86 us (94.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3366e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.62946170797838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034111605813368783, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 321.64 us (94.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3597e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.846565702869434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005116740872005318, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 337.07 us (94.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2559e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.873483961220316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0068223211626737565, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 320.43 us (94.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (64.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2839e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.13589481174068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008527901453342196, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 288.22 us (93.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (62.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2005e+05 | 65536 | 2 | 2.048e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.985894704936413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010233481744010635, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.4%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 368.39 us (94.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (65.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8297e+05 | 65536 | 2 | 1.711e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.880366136449496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011939062034679074, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 322.97 us (94.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8552e+05 | 65536 | 2 | 1.700e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.119188997412095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013644642325347513, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 308.66 us (93.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (61.5%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2991e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.278619349026144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015350222616015952, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 310.04 us (93.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.5%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9100e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.63254829651862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017055802906684393, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 319.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.7%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6956e+05 | 65536 | 2 | 1.773e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.62431731821195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01876138319735283, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.6%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 343.60 us (94.4%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3280e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.549329025364514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02046696348802127, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 315.86 us (94.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.7%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2680e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.9870204691656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02217254377868971, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 318.90 us (94.0%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2610e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.921254104280244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02387812406935815, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 320.70 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.0%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8395e+05 | 65536 | 2 | 1.707e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.972836580933524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025583704360026587, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 321.20 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (65.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1485e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.86726263584002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027289284650695026, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 339.88 us (94.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0950e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.36656269837033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028994864941363465, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.5%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 354.82 us (94.8%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.0%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3682e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.92546549963227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030700445232031904, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 350.42 us (94.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.91 us (94.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3648e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.89354786900572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.032406025522700346, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 341.38 us (94.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.8%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3088e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.36949575763766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034111605813368785, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 315.30 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (65.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3477e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.73357346381762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.035817186104037224, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 311.81 us (93.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.5%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7713e+05 | 65536 | 2 | 1.738e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.33358690131331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03752276639470566, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 319.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.5%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3295e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.5630192686899 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0392283466853741, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 335.42 us (94.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.8%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3138e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.41657248440537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04093392697604254, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 319.05 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3301e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.56914920054484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04263950726671098, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 310.50 us (94.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3366e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.630092167275556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04434508755737942, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 325.42 us (94.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4048e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.26900072285155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04605066784804786, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.0%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 283.41 us (93.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (61.8%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7589e+05 | 65536 | 2 | 1.743e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.21730595994004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0477562481387163, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 274.02 us (93.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3798e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.03489278260223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.049461828429384735, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.40 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 302.04 us (93.8%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6538e+05 | 65536 | 2 | 1.794e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.23274675576883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051167408720053174, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.9%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 304.73 us (93.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.4%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3894e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.124066289817044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05287298901072161, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 334.45 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.0%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1831e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.191400995201924 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05457856930139005, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 326.45 us (94.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.9%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1695e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.06409987615575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05628414959205849, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 356.72 us (94.9%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.0%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9097e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.62973134668949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05798972988272693, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 341.55 us (94.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.3%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0725e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.15515946162323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05969531017339537, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 321.32 us (94.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.6%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1997e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.34712408931717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06140089046406381, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.4%)
LB compute : 316.62 us (93.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (8.2%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2986e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.273805738484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06310647075473225, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 320.85 us (94.2%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1512e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.89286346769215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06481205104540069, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 311.52 us (93.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (62.1%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0088e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.558934918719764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06651763133606914, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 322.98 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.7%)
Info: cfl dt = 0.0017055802906684391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2110e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.4532291380077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06822321162673758, dt = 0.0017055802906684391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 325.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (63.7%)
Info: cfl dt = 0.0017055802906684398 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1476e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.859234025775734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06992879191740603, dt = 0.0017055802906684398
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 324.63 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (62.7%)
Info: cfl dt = 0.0017055802906684422 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1645e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.017691663759656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07163437220807448, dt = 0.0017055802906684422
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 313.05 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.0%)
Info: cfl dt = 0.0017055802906684504 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1099e+05 | 65536 | 2 | 2.107e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.136445973657292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07333995249874292, dt = 0.0017055802906684504
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.8%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 348.11 us (94.4%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.8%)
Info: cfl dt = 0.0017055802906684762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2831e+05 | 65536 | 2 | 1.996e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.75964801897775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07504553278941137, dt = 0.0017055802906684762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.8%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 318.62 us (94.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.2%)
Info: cfl dt = 0.0017055802906685545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2249e+05 | 65536 | 2 | 2.032e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.213830493325368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07675111308007984, dt = 0.0017055802906685545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.4%)
patch tree reduce : 1.85 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 399.89 us (95.2%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.8%)
Info: cfl dt = 0.001705580290668778 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2578e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.891315325364864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0784566933707484, dt = 0.001705580290668778
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.99 us (6.7%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 332.48 us (89.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.8%)
Info: cfl dt = 0.001705580290669386 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7975e+05 | 65536 | 2 | 1.726e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.578962682384955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08016227366141718, dt = 0.001705580290669386
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.4%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 349.87 us (94.6%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.1%)
Info: cfl dt = 0.001705580290670967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2388e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.71307400897325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08186785395208657, dt = 0.001705580290670967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.3%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 364.45 us (95.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.4%)
Info: cfl dt = 0.0017055802906749116 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1163e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.56610249306565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08357343424275754, dt = 0.0017055802906749116
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 347.54 us (94.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.5%)
Info: cfl dt = 0.0017055802906843828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2333e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.66223488807716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08527901453343245, dt = 0.0017055802906843828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 321.19 us (93.8%)
LB move op cnt : 0
LB apply : 4.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (7.8%)
Info: cfl dt = 0.001705580290706324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0844e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.26720033178913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08698459482411683, dt = 0.001705580290706324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 319.93 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.5%)
Info: cfl dt = 0.0017055802907554839 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2066e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.41154415517282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08869017511482315, dt = 0.0017055802907554839
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 315.44 us (94.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 0.0017055802908622375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0508e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.95252887859525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09039575540557863, dt = 0.0017055802908622375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 317.05 us (94.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (60.4%)
Info: cfl dt = 0.001705580291087342 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9463e+05 | 65536 | 2 | 1.661e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.97304975999964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09210133569644087, dt = 0.001705580291087342
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.7%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 347.02 us (94.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.0%)
Info: cfl dt = 0.0017055802915490362 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3363e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.62679115342903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09380691598752822, dt = 0.0017055802915490362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 320.73 us (94.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.8%)
Info: cfl dt = 0.001705580292471517 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2752e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.054521172832665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09551249627907725, dt = 0.001705580292471517
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 340.91 us (94.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.0%)
Info: cfl dt = 0.0017055802942695382 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1774e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.13776629141165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09721807657154877, dt = 0.0017055802942695382
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.8%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 313.61 us (94.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.1%)
Info: cfl dt = 0.0017055802976926005 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2511e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.82844605844109 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0989236568658183, dt = 0.0017055802976926005
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 324.20 us (94.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (62.3%)
Info: cfl dt = 0.0017055803040652024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6959e+05 | 65536 | 2 | 1.773e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.6271335641168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10062923716351091, dt = 0.0017055803040652024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 308.42 us (93.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.5%)
Info: cfl dt = 0.0017055803156785462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0231e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.69282921723725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10233481746757611, dt = 0.0017055803156785462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 323.86 us (94.2%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.1%)
Info: cfl dt = 0.0017055803364159749 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7240e+05 | 65536 | 2 | 1.760e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.88998045588704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10404039778325466, dt = 0.0017055803364159749
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 350.14 us (94.4%)
LB move op cnt : 0
LB apply : 4.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.4%)
Info: cfl dt = 0.0017055803727316448 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8053e+05 | 65536 | 2 | 1.722e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.65151302792459 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10574597811967064, dt = 0.0017055803727316448
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 314.94 us (94.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.0%)
Info: cfl dt = 0.0017055804351523301 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2592e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.904946123575364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10745155849240229, dt = 0.0017055804351523301
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 319.14 us (94.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (68.7%)
Info: cfl dt = 0.0017055805405387032 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8399e+05 | 65536 | 2 | 1.707e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.976374100484456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10915713892755462, dt = 0.0017055805405387032
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 313.82 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.6%)
Info: cfl dt = 0.0017055807154278896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2711e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.01584125702835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11086271946809333, dt = 0.0017055807154278896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.7%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 354.16 us (94.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.7%)
Info: cfl dt = 0.0017055810008860168 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2675e+05 | 65536 | 2 | 2.006e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.613473112557788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11256830018352122, dt = 0.0017055810008860168
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.4%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 345.60 us (94.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (64.4%)
Info: cfl dt = 0.0017055814594294475 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0524e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.96692900530523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11427388118440723, dt = 0.0017055814594294475
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 285.04 us (93.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.0%)
Info: cfl dt = 0.0017055821847263826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0408e+05 | 65536 | 2 | 1.622e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.85846250367078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11597946264383668, dt = 0.0017055821847263826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 346.54 us (94.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (71.6%)
Info: cfl dt = 0.001705583314964165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3025e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.310767696112826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11768504482856307, dt = 0.001705583314964165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.8%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 276.23 us (93.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.6%)
Info: cfl dt = 0.0017055850509562034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1086e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.49332997224948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11939062814352723, dt = 0.0017055850509562034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 285.19 us (93.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (62.1%)
Info: cfl dt = 0.001705587680256208 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2524e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.841339627487784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12109621319448344, dt = 0.001705587680256208
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 296.82 us (93.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.1%)
Info: cfl dt = 0.001705591608731515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1358e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.74855461729524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12280180087473964, dt = 0.001705591608731515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.8%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 320.04 us (93.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (69.7%)
Info: cfl dt = 0.001705597401201249 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2333e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.662326171795776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12450739248347116, dt = 0.001705597401201249
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 300.15 us (93.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (59.6%)
Info: cfl dt = 0.0017056058328428956 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1987e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.33848290265583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12621298988467242, dt = 0.0017056058328428956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 339.23 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.9%)
Info: cfl dt = 0.0017056179530811249 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1869e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.22820687532785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12791859571751532, dt = 0.0017056179530811249
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.8%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 316.00 us (94.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.8%)
Info: cfl dt = 0.001705635163560412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2756e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.059251278699975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12962421367059646, dt = 0.001705635163560412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 297.44 us (93.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.8%)
Info: cfl dt = 0.001705659311531861 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2417e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.74163877741243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13132984883415685, dt = 0.001705659311531861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 289.35 us (93.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.6%)
Info: cfl dt = 0.001705692799520938 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2895e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.1907441510607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1330355081456887, dt = 0.001705692799520938
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.9%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 303.58 us (93.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.9%)
Info: cfl dt = 0.0017057387114605878 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2458e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.78191571177587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13474120094520964, dt = 0.0017057387114605878
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 339.05 us (94.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.0%)
Info: cfl dt = 0.0017058009545611527 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2861e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.160630775830704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13644693965667024, dt = 0.0017058009545611527
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 309.45 us (94.3%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (61.8%)
Info: cfl dt = 0.001705884415052715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2964e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.25791090779562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1381527406112314, dt = 0.001705884415052715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 323.35 us (93.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (68.1%)
Info: cfl dt = 0.0017059951246116464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7600e+05 | 65536 | 2 | 1.743e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.23377892902831 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1398586250262841, dt = 0.0017059951246116464
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.3%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 365.42 us (94.9%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.3%)
Info: cfl dt = 0.0017061404328372685 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0708e+05 | 65536 | 2 | 2.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.77775160719313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14156462015089574, dt = 0.0017061404328372685
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 324.79 us (93.7%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (65.4%)
Info: cfl dt = 0.0017063291796756363 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6308e+05 | 65536 | 2 | 1.805e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.02792537866353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.143270760583733, dt = 0.0017063291796756363
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.0%)
patch tree reduce : 1.80 us (0.3%)
gen split merge : 881.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.19 us (0.2%)
LB compute : 588.42 us (96.8%)
LB move op cnt : 0
LB apply : 3.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (60.0%)
Info: cfl dt = 0.0017065718603250122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4823e+05 | 65536 | 2 | 1.882e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.64056285390274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14497708976340865, dt = 0.0017065718603250122
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 340.13 us (94.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.6%)
Info: cfl dt = 0.001706880774053235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7635e+05 | 65536 | 2 | 1.741e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.28129012497772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14668366162373367, dt = 0.001706880774053235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.1%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 277.89 us (93.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (63.0%)
Info: cfl dt = 0.0017072701476703652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2050e+05 | 65536 | 2 | 2.045e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.050962252258756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1483905423977869, dt = 0.0016094576022130935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 342.82 us (94.7%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.2%)
Info: cfl dt = 0.001707722300260462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3492e+05 | 65536 | 2 | 1.957e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.610665341085614 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 193.55503701100002 (s) [Godunov][rank=0]
none_hll
{'none_hll': [{'rho': array([0.96419618, 0.96419618, 0.96419618, 0.96419618, 0.94856345,
0.94856345, 0.94856345, 0.94856345, 0.92846989, 0.92846989,
0.92846989, 0.92846989, 0.90350094, 0.90350094, 0.90350094,
0.90350094, 0.87342902, 0.87342902, 0.87342902, 0.87342902,
0.83824081, 0.83824081, 0.83824081, 0.83824081, 0.79814653,
0.79814653, 0.79814653, 0.79814653, 0.75357317, 0.75357317,
0.75357317, 0.75357317, 0.70514458, 0.70514458, 0.70514458,
0.70514458, 0.65365111, 0.65365111, 0.65365111, 0.65365111,
0.60001104, 0.60001104, 0.60001104, 0.60001104, 0.54522543,
0.54522543, 0.54522543, 0.54522543, 0.49032848, 0.49032848,
0.49032848, 0.49032848, 0.43633611, 0.43633611, 0.43633611,
0.43633611, 0.38419602, 0.38419602, 0.38419602, 0.38419602,
0.33474317, 0.33474317, 0.33474317, 0.33474317, 0.28866399,
0.28866399, 0.28866399, 0.28866399, 0.24647248, 0.24647248,
0.24647248, 0.24647248, 0.20849936, 0.20849936, 0.20849936,
0.20849936, 0.17489435, 0.17489435, 0.17489435, 0.17489435,
0.14563973, 0.14563973, 0.14563973, 0.14563973, 0.12057143,
0.12057143, 0.12057143, 0.12057143, 0.09940075, 0.09940075,
0.09940075, 0.09940075, 0.08171926, 0.08171926, 0.08171926,
0.08171926, 0.06719973, 0.06719973, 0.06719973, 0.06719973,
0.05580633, 0.05580633, 0.05580633, 0.05580633, 0.04708329,
0.04708329, 0.04708329, 0.04708329, 0.04053564, 0.04053564,
0.04053564, 0.04053564, 0.03574567, 0.03574567, 0.03574567,
0.03574567, 0.03245842, 0.03245842, 0.03245842, 0.03245842,
0.03045782, 0.03045782, 0.03045782, 0.03045782, 0.02952462,
0.02952462, 0.02952462, 0.02952462, 0.02952462, 0.02952462,
0.02952462, 0.02952462, 0.03045782, 0.03045782, 0.03045782,
0.03045782, 0.03245842, 0.03245842, 0.03245842, 0.03245842,
0.03574567, 0.03574567, 0.03574567, 0.03574567, 0.04053564,
0.04053564, 0.04053564, 0.04053564, 0.04708329, 0.04708329,
0.04708329, 0.04708329, 0.05580633, 0.05580633, 0.05580633,
0.05580633, 0.06719973, 0.06719973, 0.06719973, 0.06719973,
0.08171926, 0.08171926, 0.08171926, 0.08171926, 0.09940075,
0.09940075, 0.09940075, 0.09940075, 0.12057143, 0.12057143,
0.12057143, 0.12057143, 0.14563973, 0.14563973, 0.14563973,
0.14563973, 0.17489435, 0.17489435, 0.17489435, 0.17489435,
0.20849936, 0.20849936, 0.20849936, 0.20849936, 0.24647248,
0.24647248, 0.24647248, 0.24647248, 0.28866399, 0.28866399,
0.28866399, 0.28866399, 0.33474317, 0.33474317, 0.33474317,
0.33474317, 0.38419602, 0.38419602, 0.38419602, 0.38419602,
0.43633611, 0.43633611, 0.43633611, 0.43633611, 0.49032848,
0.49032848, 0.49032848, 0.49032848, 0.54522543, 0.54522543,
0.54522543, 0.54522543, 0.60001104, 0.60001104, 0.60001104,
0.60001104, 0.65365111, 0.65365111, 0.65365111, 0.65365111,
0.70514458, 0.70514458, 0.70514458, 0.70514458, 0.75357317,
0.75357317, 0.75357317, 0.75357317, 0.79814653, 0.79814653,
0.79814653, 0.79814653, 0.83824081, 0.83824081, 0.83824081,
0.83824081, 0.87342902, 0.87342902, 0.87342902, 0.87342902,
0.90350094, 0.90350094, 0.90350094, 0.90350094, 0.92846989,
0.92846989, 0.92846989, 0.92846989, 0.94856345, 0.94856345,
0.94856345, 0.94856345, 0.96419618, 0.96419618, 0.96419618]), 'vx': array([-1.9735162 , -1.9735162 , -1.9735162 , -1.9735162 , -1.96198617,
-1.96198617, -1.96198617, -1.96198617, -1.94713741, -1.94713741,
-1.94713741, -1.94713741, -1.9286006 , -1.9286006 , -1.9286006 ,
-1.9286006 , -1.90609316, -1.90609316, -1.90609316, -1.90609316,
-1.87942368, -1.87942368, -1.87942368, -1.87942368, -1.84848554,
-1.84848554, -1.84848554, -1.84848554, -1.81324337, -1.81324337,
-1.81324337, -1.81324337, -1.77371591, -1.77371591, -1.77371591,
-1.77371591, -1.72995886, -1.72995886, -1.72995886, -1.72995886,
-1.68204971, -1.68204971, -1.68204971, -1.68204971, -1.63007606,
-1.63007606, -1.63007606, -1.63007606, -1.57412791, -1.57412791,
-1.57412791, -1.57412791, -1.51429382, -1.51429382, -1.51429382,
-1.51429382, -1.45066104, -1.45066104, -1.45066104, -1.45066104,
-1.38331937, -1.38331937, -1.38331937, -1.38331937, -1.31236896,
-1.31236896, -1.31236896, -1.31236896, -1.23793269, -1.23793269,
-1.23793269, -1.23793269, -1.16017364, -1.16017364, -1.16017364,
-1.16017364, -1.0793189 , -1.0793189 , -1.0793189 , -1.0793189 ,
-0.99569027, -0.99569027, -0.99569027, -0.99569027, -0.90974126,
-0.90974126, -0.90974126, -0.90974126, -0.82209689, -0.82209689,
-0.82209689, -0.82209689, -0.73357782, -0.73357782, -0.73357782,
-0.73357782, -0.64515024, -0.64515024, -0.64515024, -0.64515024,
-0.55811153, -0.55811153, -0.55811153, -0.55811153, -0.47333577,
-0.47333577, -0.47333577, -0.47333577, -0.39110478, -0.39110478,
-0.39110478, -0.39110478, -0.31048349, -0.31048349, -0.31048349,
-0.31048349, -0.22788052, -0.22788052, -0.22788052, -0.22788052,
-0.14005389, -0.14005389, -0.14005389, -0.14005389, -0.04732024,
-0.04732024, -0.04732024, -0.04732024, 0.04732024, 0.04732024,
0.04732024, 0.04732024, 0.14005389, 0.14005389, 0.14005389,
0.14005389, 0.22788052, 0.22788052, 0.22788052, 0.22788052,
0.31048349, 0.31048349, 0.31048349, 0.31048349, 0.39110478,
0.39110478, 0.39110478, 0.39110478, 0.47333577, 0.47333577,
0.47333577, 0.47333577, 0.55811153, 0.55811153, 0.55811153,
0.55811153, 0.64515024, 0.64515024, 0.64515024, 0.64515024,
0.73357782, 0.73357782, 0.73357782, 0.73357782, 0.82209689,
0.82209689, 0.82209689, 0.82209689, 0.90974126, 0.90974126,
0.90974126, 0.90974126, 0.99569027, 0.99569027, 0.99569027,
0.99569027, 1.0793189 , 1.0793189 , 1.0793189 , 1.0793189 ,
1.16017364, 1.16017364, 1.16017364, 1.16017364, 1.23793269,
1.23793269, 1.23793269, 1.23793269, 1.31236896, 1.31236896,
1.31236896, 1.31236896, 1.38331937, 1.38331937, 1.38331937,
1.38331937, 1.45066104, 1.45066104, 1.45066104, 1.45066104,
1.51429382, 1.51429382, 1.51429382, 1.51429382, 1.57412791,
1.57412791, 1.57412791, 1.57412791, 1.63007606, 1.63007606,
1.63007606, 1.63007606, 1.68204971, 1.68204971, 1.68204971,
1.68204971, 1.72995886, 1.72995886, 1.72995886, 1.72995886,
1.77371591, 1.77371591, 1.77371591, 1.77371591, 1.81324337,
1.81324337, 1.81324337, 1.81324337, 1.84848554, 1.84848554,
1.84848554, 1.84848554, 1.87942368, 1.87942368, 1.87942368,
1.87942368, 1.90609316, 1.90609316, 1.90609316, 1.90609316,
1.9286006 , 1.9286006 , 1.9286006 , 1.9286006 , 1.94713741,
1.94713741, 1.94713741, 1.94713741, 1.96198617, 1.96198617,
1.96198617, 1.96198617, 1.9735162 , 1.9735162 , 1.9735162 ]), 'P': array([0.38054351, 0.38054351, 0.38054351, 0.38054351, 0.37230539,
0.37230539, 0.37230539, 0.37230539, 0.36190457, 0.36190457,
0.36190457, 0.36190457, 0.34924812, 0.34924812, 0.34924812,
0.34924812, 0.33436459, 0.33436459, 0.33436459, 0.33436459,
0.31740499, 0.31740499, 0.31740499, 0.31740499, 0.29862981,
0.29862981, 0.29862981, 0.29862981, 0.27838616, 0.27838616,
0.27838616, 0.27838616, 0.25707978, 0.25707978, 0.25707978,
0.25707978, 0.23514605, 0.23514605, 0.23514605, 0.23514605,
0.21302338, 0.21302338, 0.21302338, 0.21302338, 0.19113058,
0.19113058, 0.19113058, 0.19113058, 0.169849 , 0.169849 ,
0.169849 , 0.169849 , 0.14950942, 0.14950942, 0.14950942,
0.14950942, 0.13038346, 0.13038346, 0.13038346, 0.13038346,
0.11267901, 0.11267901, 0.11267901, 0.11267901, 0.09653925,
0.09653925, 0.09653925, 0.09653925, 0.0820449 , 0.0820449 ,
0.0820449 , 0.0820449 , 0.06921912, 0.06921912, 0.06921912,
0.06921912, 0.05803452, 0.05803452, 0.05803452, 0.05803452,
0.04842177, 0.04842177, 0.04842177, 0.04842177, 0.04027886,
0.04027886, 0.04027886, 0.04027886, 0.03348044, 0.03348044,
0.03348044, 0.03348044, 0.02788644, 0.02788644, 0.02788644,
0.02788644, 0.02336489, 0.02336489, 0.02336489, 0.02336489,
0.01978647, 0.01978647, 0.01978647, 0.01978647, 0.01698927,
0.01698927, 0.01698927, 0.01698927, 0.0148221 , 0.0148221 ,
0.0148221 , 0.0148221 , 0.01317229, 0.01317229, 0.01317229,
0.01317229, 0.01200219, 0.01200219, 0.01200219, 0.01200219,
0.01127833, 0.01127833, 0.01127833, 0.01127833, 0.010939 ,
0.010939 , 0.010939 , 0.010939 , 0.010939 , 0.010939 ,
0.010939 , 0.010939 , 0.01127833, 0.01127833, 0.01127833,
0.01127833, 0.01200219, 0.01200219, 0.01200219, 0.01200219,
0.01317229, 0.01317229, 0.01317229, 0.01317229, 0.0148221 ,
0.0148221 , 0.0148221 , 0.0148221 , 0.01698927, 0.01698927,
0.01698927, 0.01698927, 0.01978647, 0.01978647, 0.01978647,
0.01978647, 0.02336489, 0.02336489, 0.02336489, 0.02336489,
0.02788644, 0.02788644, 0.02788644, 0.02788644, 0.03348044,
0.03348044, 0.03348044, 0.03348044, 0.04027886, 0.04027886,
0.04027886, 0.04027886, 0.04842177, 0.04842177, 0.04842177,
0.04842177, 0.05803452, 0.05803452, 0.05803452, 0.05803452,
0.06921912, 0.06921912, 0.06921912, 0.06921912, 0.0820449 ,
0.0820449 , 0.0820449 , 0.0820449 , 0.09653925, 0.09653925,
0.09653925, 0.09653925, 0.11267901, 0.11267901, 0.11267901,
0.11267901, 0.13038346, 0.13038346, 0.13038346, 0.13038346,
0.14950942, 0.14950942, 0.14950942, 0.14950942, 0.169849 ,
0.169849 , 0.169849 , 0.169849 , 0.19113058, 0.19113058,
0.19113058, 0.19113058, 0.21302338, 0.21302338, 0.21302338,
0.21302338, 0.23514605, 0.23514605, 0.23514605, 0.23514605,
0.25707978, 0.25707978, 0.25707978, 0.25707978, 0.27838616,
0.27838616, 0.27838616, 0.27838616, 0.29862981, 0.29862981,
0.29862981, 0.29862981, 0.31740499, 0.31740499, 0.31740499,
0.31740499, 0.33436459, 0.33436459, 0.33436459, 0.33436459,
0.34924812, 0.34924812, 0.34924812, 0.34924812, 0.36190457,
0.36190457, 0.36190457, 0.36190457, 0.37230539, 0.37230539,
0.37230539, 0.37230539, 0.38054351, 0.38054351, 0.38054351])}], 'minmod_rusanov': [{'rho': array([0.99614735, 0.99614735, 0.99614735, 0.99614735, 0.99065373,
0.99065373, 0.99065373, 0.99065373, 0.98173362, 0.98173362,
0.98173362, 0.98173362, 0.96619952, 0.96619952, 0.96619952,
0.96619952, 0.94178474, 0.94178474, 0.94178474, 0.94178474,
0.90636121, 0.90636121, 0.90636121, 0.90636121, 0.85892578,
0.85892578, 0.85892578, 0.85892578, 0.80000719, 0.80000719,
0.80000719, 0.80000719, 0.73175814, 0.73175814, 0.73175814,
0.73175814, 0.65735851, 0.65735851, 0.65735851, 0.65735851,
0.5814799 , 0.5814799 , 0.5814799 , 0.5814799 , 0.50913244,
0.50913244, 0.50913244, 0.50913244, 0.44187546, 0.44187546,
0.44187546, 0.44187546, 0.38043377, 0.38043377, 0.38043377,
0.38043377, 0.32522717, 0.32522717, 0.32522717, 0.32522717,
0.27639962, 0.27639962, 0.27639962, 0.27639962, 0.23384215,
0.23384215, 0.23384215, 0.23384215, 0.19724397, 0.19724397,
0.19724397, 0.19724397, 0.16613532, 0.16613532, 0.16613532,
0.16613532, 0.13991202, 0.13991202, 0.13991202, 0.13991202,
0.11795793, 0.11795793, 0.11795793, 0.11795793, 0.09969251,
0.09969251, 0.09969251, 0.09969251, 0.08458559, 0.08458559,
0.08458559, 0.08458559, 0.07216739, 0.07216739, 0.07216739,
0.07216739, 0.0620324 , 0.0620324 , 0.0620324 , 0.0620324 ,
0.05383949, 0.05383949, 0.05383949, 0.05383949, 0.0473094 ,
0.0473094 , 0.0473094 , 0.0473094 , 0.04222005, 0.04222005,
0.04222005, 0.04222005, 0.03839914, 0.03839914, 0.03839914,
0.03839914, 0.03571046, 0.03571046, 0.03571046, 0.03571046,
0.03401323, 0.03401323, 0.03401323, 0.03401323, 0.03304548,
0.03304548, 0.03304548, 0.03304548, 0.03304548, 0.03304548,
0.03304548, 0.03304548, 0.03401323, 0.03401323, 0.03401323,
0.03401323, 0.03571046, 0.03571046, 0.03571046, 0.03571046,
0.03839914, 0.03839914, 0.03839914, 0.03839914, 0.04222005,
0.04222005, 0.04222005, 0.04222005, 0.0473094 , 0.0473094 ,
0.0473094 , 0.0473094 , 0.05383949, 0.05383949, 0.05383949,
0.05383949, 0.0620324 , 0.0620324 , 0.0620324 , 0.0620324 ,
0.07216739, 0.07216739, 0.07216739, 0.07216739, 0.08458559,
0.08458559, 0.08458559, 0.08458559, 0.09969251, 0.09969251,
0.09969251, 0.09969251, 0.11795793, 0.11795793, 0.11795793,
0.11795793, 0.13991202, 0.13991202, 0.13991202, 0.13991202,
0.16613532, 0.16613532, 0.16613532, 0.16613532, 0.19724397,
0.19724397, 0.19724397, 0.19724397, 0.23384215, 0.23384215,
0.23384215, 0.23384215, 0.27639962, 0.27639962, 0.27639962,
0.27639962, 0.32522717, 0.32522717, 0.32522717, 0.32522717,
0.38043377, 0.38043377, 0.38043377, 0.38043377, 0.44187546,
0.44187546, 0.44187546, 0.44187546, 0.50913244, 0.50913244,
0.50913244, 0.50913244, 0.5814799 , 0.5814799 , 0.5814799 ,
0.5814799 , 0.65735851, 0.65735851, 0.65735851, 0.65735851,
0.73175814, 0.73175814, 0.73175814, 0.73175814, 0.80000719,
0.80000719, 0.80000719, 0.80000719, 0.85892578, 0.85892578,
0.85892578, 0.85892578, 0.90636121, 0.90636121, 0.90636121,
0.90636121, 0.94178474, 0.94178474, 0.94178474, 0.94178474,
0.96619952, 0.96619952, 0.96619952, 0.96619952, 0.98173362,
0.98173362, 0.98173362, 0.98173362, 0.99065373, 0.99065373,
0.99065373, 0.99065373, 0.99614735, 0.99614735, 0.99614735]), 'vx': array([-1.99712524, -1.99712524, -1.99712524, -1.99712524, -1.99301683,
-1.99301683, -1.99301683, -1.99301683, -1.98632983, -1.98632983,
-1.98632983, -1.98632983, -1.97459054, -1.97459054, -1.97459054,
-1.97459054, -1.95587489, -1.95587489, -1.95587489, -1.95587489,
-1.92806642, -1.92806642, -1.92806642, -1.92806642, -1.88945774,
-1.88945774, -1.88945774, -1.88945774, -1.83896574, -1.83896574,
-1.83896574, -1.83896574, -1.77629984, -1.77629984, -1.77629984,
-1.77629984, -1.70309876, -1.70309876, -1.70309876, -1.70309876,
-1.62432934, -1.62432934, -1.62432934, -1.62432934, -1.54277563,
-1.54277563, -1.54277563, -1.54277563, -1.45961365, -1.45961365,
-1.45961365, -1.45961365, -1.37537434, -1.37537434, -1.37537434,
-1.37537434, -1.29033379, -1.29033379, -1.29033379, -1.29033379,
-1.20468271, -1.20468271, -1.20468271, -1.20468271, -1.11859992,
-1.11859992, -1.11859992, -1.11859992, -1.03225286, -1.03225286,
-1.03225286, -1.03225286, -0.9459788 , -0.9459788 , -0.9459788 ,
-0.9459788 , -0.86003378, -0.86003378, -0.86003378, -0.86003378,
-0.77463461, -0.77463461, -0.77463461, -0.77463461, -0.69004628,
-0.69004628, -0.69004628, -0.69004628, -0.60660948, -0.60660948,
-0.60660948, -0.60660948, -0.52476896, -0.52476896, -0.52476896,
-0.52476896, -0.44510912, -0.44510912, -0.44510912, -0.44510912,
-0.3683858 , -0.3683858 , -0.3683858 , -0.3683858 , -0.29553659,
-0.29553659, -0.29553659, -0.29553659, -0.22763465, -0.22763465,
-0.22763465, -0.22763465, -0.16573019, -0.16573019, -0.16573019,
-0.16573019, -0.11056275, -0.11056275, -0.11056275, -0.11056275,
-0.06251183, -0.06251183, -0.06251183, -0.06251183, -0.02297991,
-0.02297991, -0.02297991, -0.02297991, 0.02297991, 0.02297991,
0.02297991, 0.02297991, 0.06251183, 0.06251183, 0.06251183,
0.06251183, 0.11056275, 0.11056275, 0.11056275, 0.11056275,
0.16573019, 0.16573019, 0.16573019, 0.16573019, 0.22763465,
0.22763465, 0.22763465, 0.22763465, 0.29553659, 0.29553659,
0.29553659, 0.29553659, 0.3683858 , 0.3683858 , 0.3683858 ,
0.3683858 , 0.44510912, 0.44510912, 0.44510912, 0.44510912,
0.52476896, 0.52476896, 0.52476896, 0.52476896, 0.60660948,
0.60660948, 0.60660948, 0.60660948, 0.69004628, 0.69004628,
0.69004628, 0.69004628, 0.77463461, 0.77463461, 0.77463461,
0.77463461, 0.86003378, 0.86003378, 0.86003378, 0.86003378,
0.9459788 , 0.9459788 , 0.9459788 , 0.9459788 , 1.03225286,
1.03225286, 1.03225286, 1.03225286, 1.11859992, 1.11859992,
1.11859992, 1.11859992, 1.20468271, 1.20468271, 1.20468271,
1.20468271, 1.29033379, 1.29033379, 1.29033379, 1.29033379,
1.37537434, 1.37537434, 1.37537434, 1.37537434, 1.45961365,
1.45961365, 1.45961365, 1.45961365, 1.54277563, 1.54277563,
1.54277563, 1.54277563, 1.62432934, 1.62432934, 1.62432934,
1.62432934, 1.70309876, 1.70309876, 1.70309876, 1.70309876,
1.77629984, 1.77629984, 1.77629984, 1.77629984, 1.83896574,
1.83896574, 1.83896574, 1.83896574, 1.88945774, 1.88945774,
1.88945774, 1.88945774, 1.92806642, 1.92806642, 1.92806642,
1.92806642, 1.95587489, 1.95587489, 1.95587489, 1.95587489,
1.97459054, 1.97459054, 1.97459054, 1.97459054, 1.98632983,
1.98632983, 1.98632983, 1.98632983, 1.99301683, 1.99301683,
1.99301683, 1.99301683, 1.99712524, 1.99712524, 1.99712524]), 'P': array([0.39785562, 0.39785562, 0.39785562, 0.39785562, 0.39481056,
0.39481056, 0.39481056, 0.39481056, 0.38990389, 0.38990389,
0.38990389, 0.38990389, 0.38143134, 0.38143134, 0.38143134,
0.38143134, 0.36827824, 0.36827824, 0.36827824, 0.36827824,
0.34950039, 0.34950039, 0.34950039, 0.34950039, 0.32485552,
0.32485552, 0.32485552, 0.32485552, 0.29492305, 0.29492305,
0.29492305, 0.29492305, 0.26078134, 0.26078134, 0.26078134,
0.26078134, 0.22425273, 0.22425273, 0.22425273, 0.22425273,
0.19008214, 0.19008214, 0.19008214, 0.19008214, 0.16000639,
0.16000639, 0.16000639, 0.16000639, 0.13399062, 0.13399062,
0.13399062, 0.13399062, 0.11175209, 0.11175209, 0.11175209,
0.11175209, 0.09291845, 0.09291845, 0.09291845, 0.09291845,
0.07709678, 0.07709678, 0.07709678, 0.07709678, 0.0639034 ,
0.0639034 , 0.0639034 , 0.0639034 , 0.05297927, 0.05297927,
0.05297927, 0.05297927, 0.04399018, 0.04399018, 0.04399018,
0.04399018, 0.03661626, 0.03661626, 0.03661626, 0.03661626,
0.03058018, 0.03058018, 0.03058018, 0.03058018, 0.02564979,
0.02564979, 0.02564979, 0.02564979, 0.02163179, 0.02163179,
0.02163179, 0.02163179, 0.01836692, 0.01836692, 0.01836692,
0.01836692, 0.01572533, 0.01572533, 0.01572533, 0.01572533,
0.01360245, 0.01360245, 0.01360245, 0.01360245, 0.01191531,
0.01191531, 0.01191531, 0.01191531, 0.01059914, 0.01059914,
0.01059914, 0.01059914, 0.0096042 , 0.0096042 , 0.0096042 ,
0.0096042 , 0.00889221, 0.00889221, 0.00889221, 0.00889221,
0.00842594, 0.00842594, 0.00842594, 0.00842594, 0.00813478,
0.00813478, 0.00813478, 0.00813478, 0.00813478, 0.00813478,
0.00813478, 0.00813478, 0.00842594, 0.00842594, 0.00842594,
0.00842594, 0.00889221, 0.00889221, 0.00889221, 0.00889221,
0.0096042 , 0.0096042 , 0.0096042 , 0.0096042 , 0.01059914,
0.01059914, 0.01059914, 0.01059914, 0.01191531, 0.01191531,
0.01191531, 0.01191531, 0.01360245, 0.01360245, 0.01360245,
0.01360245, 0.01572533, 0.01572533, 0.01572533, 0.01572533,
0.01836692, 0.01836692, 0.01836692, 0.01836692, 0.02163179,
0.02163179, 0.02163179, 0.02163179, 0.02564979, 0.02564979,
0.02564979, 0.02564979, 0.03058018, 0.03058018, 0.03058018,
0.03058018, 0.03661626, 0.03661626, 0.03661626, 0.03661626,
0.04399018, 0.04399018, 0.04399018, 0.04399018, 0.05297927,
0.05297927, 0.05297927, 0.05297927, 0.0639034 , 0.0639034 ,
0.0639034 , 0.0639034 , 0.07709678, 0.07709678, 0.07709678,
0.07709678, 0.09291845, 0.09291845, 0.09291845, 0.09291845,
0.11175209, 0.11175209, 0.11175209, 0.11175209, 0.13399062,
0.13399062, 0.13399062, 0.13399062, 0.16000639, 0.16000639,
0.16000639, 0.16000639, 0.19008214, 0.19008214, 0.19008214,
0.19008214, 0.22425273, 0.22425273, 0.22425273, 0.22425273,
0.26078134, 0.26078134, 0.26078134, 0.26078134, 0.29492305,
0.29492305, 0.29492305, 0.29492305, 0.32485552, 0.32485552,
0.32485552, 0.32485552, 0.34950039, 0.34950039, 0.34950039,
0.34950039, 0.36827824, 0.36827824, 0.36827824, 0.36827824,
0.38143134, 0.38143134, 0.38143134, 0.38143134, 0.38990389,
0.38990389, 0.38990389, 0.38990389, 0.39481056, 0.39481056,
0.39481056, 0.39481056, 0.39785562, 0.39785562, 0.39785562])}], 'minmod_hll': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2.]), 'P': array([0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99839187, 0.99839187, 0.99839187, 0.99839187,
0.92194491, 0.92194491, 0.92194491, 0.92194491, 0.59966323,
0.59966323, 0.59966323, 0.59966323, 0.59966323, 0.59966323,
0.59966323, 0.59966323, 0.92194491, 0.92194491, 0.92194491,
0.92194491, 0.99839187, 0.99839187, 0.99839187, 0.99839187,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99942977, -1.99942977, -1.99942977, -1.99942977,
-1.97190163, -1.97190163, -1.97190163, -1.97190163, -1.54331037,
-1.54331037, -1.54331037, -1.54331037, 1.54331037, 1.54331037,
1.54331037, 1.54331037, 1.97190163, 1.97190163, 1.97190163,
1.97190163, 1.99942977, 1.99942977, 1.99942977, 1.99942977,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39967398, 0.39967398, 0.39967398, 0.39967398,
0.38830121, 0.38830121, 0.38830121, 0.38830121, 0.35833291,
0.35833291, 0.35833291, 0.35833291, 0.35833291, 0.35833291,
0.35833291, 0.35833291, 0.38830121, 0.38830121, 0.38830121,
0.38830121, 0.39967398, 0.39967398, 0.39967398, 0.39967398,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999879,
0.99999879, 0.99999879, 0.99999879, 0.99988772, 0.99988772,
0.99988772, 0.99988772, 0.99637366, 0.99637366, 0.99637366,
0.99637366, 0.95162962, 0.95162962, 0.95162962, 0.95162962,
0.69843543, 0.69843543, 0.69843543, 0.69843543, 0.39367478,
0.39367478, 0.39367478, 0.39367478, 0.39367478, 0.39367478,
0.39367478, 0.39367478, 0.69843543, 0.69843543, 0.69843543,
0.69843543, 0.95162962, 0.95162962, 0.95162962, 0.95162962,
0.99637366, 0.99637366, 0.99637366, 0.99637366, 0.99988772,
0.99988772, 0.99988772, 0.99988772, 0.99999879, 0.99999879,
0.99999879, 0.99999879, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999939,
-1.99999939, -1.99999939, -1.99999939, -1.99994887, -1.99994887,
-1.99994887, -1.99994887, -1.99849604, -1.99849604, -1.99849604,
-1.99849604, -1.98064237, -1.98064237, -1.98064237, -1.98064237,
-1.8608366 , -1.8608366 , -1.8608366 , -1.8608366 , -1.14986475,
-1.14986475, -1.14986475, -1.14986475, 1.14986475, 1.14986475,
1.14986475, 1.14986475, 1.8608366 , 1.8608366 , 1.8608366 ,
1.8608366 , 1.98064237, 1.98064237, 1.98064237, 1.98064237,
1.99849604, 1.99849604, 1.99849604, 1.99849604, 1.99994887,
1.99994887, 1.99994887, 1.99994887, 1.99999939, 1.99999939,
1.99999939, 1.99999939, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999955,
0.39999955, 0.39999955, 0.39999955, 0.39996321, 0.39996321,
0.39996321, 0.39996321, 0.39895944, 0.39895944, 0.39895944,
0.39895944, 0.38757572, 0.38757572, 0.38757572, 0.38757572,
0.3264824 , 0.3264824 , 0.3264824 , 0.3264824 , 0.25121455,
0.25121455, 0.25121455, 0.25121455, 0.25121455, 0.25121455,
0.25121455, 0.25121455, 0.3264824 , 0.3264824 , 0.3264824 ,
0.3264824 , 0.38757572, 0.38757572, 0.38757572, 0.38757572,
0.39895944, 0.39895944, 0.39895944, 0.39895944, 0.39996321,
0.39996321, 0.39996321, 0.39996321, 0.39999955, 0.39999955,
0.39999955, 0.39999955, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999985, 0.99999985, 0.99999985, 0.99999985,
0.9999922 , 0.9999922 , 0.9999922 , 0.9999922 , 0.99978709,
0.99978709, 0.99978709, 0.99978709, 0.99672413, 0.99672413,
0.99672413, 0.99672413, 0.97001852, 0.97001852, 0.97001852,
0.97001852, 0.83010116, 0.83010116, 0.83010116, 0.83010116,
0.48512429, 0.48512429, 0.48512429, 0.48512429, 0.27825278,
0.27825278, 0.27825278, 0.27825278, 0.27825278, 0.27825278,
0.27825278, 0.27825278, 0.48512429, 0.48512429, 0.48512429,
0.48512429, 0.83010116, 0.83010116, 0.83010116, 0.83010116,
0.97001852, 0.97001852, 0.97001852, 0.97001852, 0.99672413,
0.99672413, 0.99672413, 0.99672413, 0.99978709, 0.99978709,
0.99978709, 0.99978709, 0.9999922 , 0.9999922 , 0.9999922 ,
0.9999922 , 0.99999985, 0.99999985, 0.99999985, 0.99999985,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999991, -1.99999991, -1.99999991, -1.99999991,
-1.99999556, -1.99999556, -1.99999556, -1.99999556, -1.99988775,
-1.99988775, -1.99988775, -1.99988775, -1.99840276, -1.99840276,
-1.99840276, -1.99840276, -1.98627149, -1.98627149, -1.98627149,
-1.98627149, -1.92341327, -1.92341327, -1.92341327, -1.92341327,
-1.6864559 , -1.6864559 , -1.6864559 , -1.6864559 , -0.86349076,
-0.86349076, -0.86349076, -0.86349076, 0.86349076, 0.86349076,
0.86349076, 0.86349076, 1.6864559 , 1.6864559 , 1.6864559 ,
1.6864559 , 1.92341327, 1.92341327, 1.92341327, 1.92341327,
1.98627149, 1.98627149, 1.98627149, 1.98627149, 1.99840276,
1.99840276, 1.99840276, 1.99840276, 1.99988775, 1.99988775,
1.99988775, 1.99988775, 1.99999556, 1.99999556, 1.99999556,
1.99999556, 1.99999991, 1.99999991, 1.99999991, 1.99999991,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.3999967 , 0.3999967 , 0.3999967 , 0.3999967 , 0.39991705,
0.39991705, 0.39991705, 0.39991705, 0.39883435, 0.39883435,
0.39883435, 0.39883435, 0.39025049, 0.39025049, 0.39025049,
0.39025049, 0.34912384, 0.34912384, 0.34912384, 0.34912384,
0.24285654, 0.24285654, 0.24285654, 0.24285654, 0.16774659,
0.16774659, 0.16774659, 0.16774659, 0.16774659, 0.16774659,
0.16774659, 0.16774659, 0.24285654, 0.24285654, 0.24285654,
0.24285654, 0.34912384, 0.34912384, 0.34912384, 0.34912384,
0.39025049, 0.39025049, 0.39025049, 0.39025049, 0.39883435,
0.39883435, 0.39883435, 0.39883435, 0.39991705, 0.39991705,
0.39991705, 0.39991705, 0.3999967 , 0.3999967 , 0.3999967 ,
0.3999967 , 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999941, 0.99999941, 0.99999941,
0.99999941, 0.99998531, 0.99998531, 0.99998531, 0.99998531,
0.9997628 , 0.9997628 , 0.9997628 , 0.9997628 , 0.99741834,
0.99741834, 0.99741834, 0.99741834, 0.98069681, 0.98069681,
0.98069681, 0.98069681, 0.90049586, 0.90049586, 0.90049586,
0.90049586, 0.65085366, 0.65085366, 0.65085366, 0.65085366,
0.34226389, 0.34226389, 0.34226389, 0.34226389, 0.20852393,
0.20852393, 0.20852393, 0.20852393, 0.20852393, 0.20852393,
0.20852393, 0.20852393, 0.34226389, 0.34226389, 0.34226389,
0.34226389, 0.65085366, 0.65085366, 0.65085366, 0.65085366,
0.90049586, 0.90049586, 0.90049586, 0.90049586, 0.98069681,
0.98069681, 0.98069681, 0.98069681, 0.99741834, 0.99741834,
0.99741834, 0.99741834, 0.9997628 , 0.9997628 , 0.9997628 ,
0.9997628 , 0.99998531, 0.99998531, 0.99998531, 0.99998531,
0.99999941, 0.99999941, 0.99999941, 0.99999941, 0.99999999,
0.99999999, 0.99999999, 0.99999999, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999961, -1.99999961, -1.99999961,
-1.99999961, -1.99999088, -1.99999088, -1.99999088, -1.99999088,
-1.99986101, -1.99986101, -1.99986101, -1.99986101, -1.99858351,
-1.99858351, -1.99858351, -1.99858351, -1.99010498, -1.99010498,
-1.99010498, -1.99010498, -1.95122576, -1.95122576, -1.95122576,
-1.95122576, -1.82157719, -1.82157719, -1.82157719, -1.82157719,
-1.47982673, -1.47982673, -1.47982673, -1.47982673, -0.66403625,
-0.66403625, -0.66403625, -0.66403625, 0.66403625, 0.66403625,
0.66403625, 0.66403625, 1.47982673, 1.47982673, 1.47982673,
1.47982673, 1.82157719, 1.82157719, 1.82157719, 1.82157719,
1.95122576, 1.95122576, 1.95122576, 1.95122576, 1.99010498,
1.99010498, 1.99010498, 1.99010498, 1.99858351, 1.99858351,
1.99858351, 1.99858351, 1.99986101, 1.99986101, 1.99986101,
1.99986101, 1.99999088, 1.99999088, 1.99999088, 1.99999088,
1.99999961, 1.99999961, 1.99999961, 1.99999961, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999971, 0.39999971, 0.39999971,
0.39999971, 0.39999319, 0.39999319, 0.39999319, 0.39999319,
0.39989644, 0.39989644, 0.39989644, 0.39989644, 0.39894942,
0.39894942, 0.39894942, 0.39894942, 0.39274383, 0.39274383,
0.39274383, 0.39274383, 0.36543198, 0.36543198, 0.36543198,
0.36543198, 0.28497352, 0.28497352, 0.28497352, 0.28497352,
0.17296714, 0.17296714, 0.17296714, 0.17296714, 0.11464047,
0.11464047, 0.11464047, 0.11464047, 0.11464047, 0.11464047,
0.11464047, 0.11464047, 0.17296714, 0.17296714, 0.17296714,
0.17296714, 0.28497352, 0.28497352, 0.28497352, 0.28497352,
0.36543198, 0.36543198, 0.36543198, 0.36543198, 0.39274383,
0.39274383, 0.39274383, 0.39274383, 0.39894942, 0.39894942,
0.39894942, 0.39894942, 0.39989644, 0.39989644, 0.39989644,
0.39989644, 0.39999319, 0.39999319, 0.39999319, 0.39999319,
0.39999971, 0.39999971, 0.39999971, 0.39999971, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.99999887, 0.99999887,
0.99999887, 0.99999887, 0.9999814 , 0.9999814 , 0.9999814 ,
0.9999814 , 0.99977747, 0.99977747, 0.99977747, 0.99977747,
0.99804051, 0.99804051, 0.99804051, 0.99804051, 0.9872238 ,
0.9872238 , 0.9872238 , 0.9872238 , 0.93857705, 0.93857705,
0.93857705, 0.93857705, 0.78360952, 0.78360952, 0.78360952,
0.78360952, 0.47710418, 0.47710418, 0.47710418, 0.47710418,
0.25180595, 0.25180595, 0.25180595, 0.25180595, 0.1638813 ,
0.1638813 , 0.1638813 , 0.1638813 , 0.1638813 , 0.1638813 ,
0.1638813 , 0.1638813 , 0.25180595, 0.25180595, 0.25180595,
0.25180595, 0.47710418, 0.47710418, 0.47710418, 0.47710418,
0.78360952, 0.78360952, 0.78360952, 0.78360952, 0.93857705,
0.93857705, 0.93857705, 0.93857705, 0.9872238 , 0.9872238 ,
0.9872238 , 0.9872238 , 0.99804051, 0.99804051, 0.99804051,
0.99804051, 0.99977747, 0.99977747, 0.99977747, 0.99977747,
0.9999814 , 0.9999814 , 0.9999814 , 0.9999814 , 0.99999887,
0.99999887, 0.99999887, 0.99999887, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999997,
-1.99999997, -1.99999997, -1.99999997, -1.99999923, -1.99999923,
-1.99999923, -1.99999923, -1.99998776, -1.99998776, -1.99998776,
-1.99998776, -1.99985981, -1.99985981, -1.99985981, -1.99985981,
-1.99882953, -1.99882953, -1.99882953, -1.99882953, -1.99281308,
-1.99281308, -1.99281308, -1.99281308, -1.96715956, -1.96715956,
-1.96715956, -1.96715956, -1.8851839 , -1.8851839 , -1.8851839 ,
-1.8851839 , -1.67777415, -1.67777415, -1.67777415, -1.67777415,
-1.27130664, -1.27130664, -1.27130664, -1.27130664, -0.52601961,
-0.52601961, -0.52601961, -0.52601961, 0.52601961, 0.52601961,
0.52601961, 0.52601961, 1.27130664, 1.27130664, 1.27130664,
1.27130664, 1.67777415, 1.67777415, 1.67777415, 1.67777415,
1.8851839 , 1.8851839 , 1.8851839 , 1.8851839 , 1.96715956,
1.96715956, 1.96715956, 1.96715956, 1.99281308, 1.99281308,
1.99281308, 1.99281308, 1.99882953, 1.99882953, 1.99882953,
1.99882953, 1.99985981, 1.99985981, 1.99985981, 1.99985981,
1.99998776, 1.99998776, 1.99998776, 1.99998776, 1.99999923,
1.99999923, 1.99999923, 1.99999923, 1.99999997, 1.99999997,
1.99999997, 1.99999997, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.39999943, 0.39999943,
0.39999943, 0.39999943, 0.39999085, 0.39999085, 0.39999085,
0.39999085, 0.39989526, 0.39989526, 0.39989526, 0.39989526,
0.3991272 , 0.3991272 , 0.3991272 , 0.3991272 , 0.39467278,
0.39467278, 0.39467278, 0.39467278, 0.37616893, 0.37616893,
0.37616893, 0.37616893, 0.3218281 , 0.3218281 , 0.3218281 ,
0.3218281 , 0.21484827, 0.21484827, 0.21484827, 0.21484827,
0.12366433, 0.12366433, 0.12366433, 0.12366433, 0.08206119,
0.08206119, 0.08206119, 0.08206119, 0.08206119, 0.08206119,
0.08206119, 0.08206119, 0.12366433, 0.12366433, 0.12366433,
0.12366433, 0.21484827, 0.21484827, 0.21484827, 0.21484827,
0.3218281 , 0.3218281 , 0.3218281 , 0.3218281 , 0.37616893,
0.37616893, 0.37616893, 0.37616893, 0.39467278, 0.39467278,
0.39467278, 0.39467278, 0.3991272 , 0.3991272 , 0.3991272 ,
0.3991272 , 0.39989526, 0.39989526, 0.39989526, 0.39989526,
0.39999085, 0.39999085, 0.39999085, 0.39999085, 0.39999943,
0.39999943, 0.39999943, 0.39999943, 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999991, 0.99999991, 0.99999991, 0.99999991, 0.99999845,
0.99999845, 0.99999845, 0.99999845, 0.9999803 , 0.9999803 ,
0.9999803 , 0.9999803 , 0.99980675, 0.99980675, 0.99980675,
0.99980675, 0.99853052, 0.99853052, 0.99853052, 0.99853052,
0.99132631, 0.99132631, 0.99132631, 0.99132631, 0.96043963,
0.96043963, 0.96043963, 0.96043963, 0.86149689, 0.86149689,
0.86149689, 0.86149689, 0.62919887, 0.62919887, 0.62919887,
0.62919887, 0.35143864, 0.35143864, 0.35143864, 0.35143864,
0.19386562, 0.19386562, 0.19386562, 0.19386562, 0.13391812,
0.13391812, 0.13391812, 0.13391812, 0.13391812, 0.13391812,
0.13391812, 0.13391812, 0.19386562, 0.19386562, 0.19386562,
0.19386562, 0.35143864, 0.35143864, 0.35143864, 0.35143864,
0.62919887, 0.62919887, 0.62919887, 0.62919887, 0.86149689,
0.86149689, 0.86149689, 0.86149689, 0.96043963, 0.96043963,
0.96043963, 0.96043963, 0.99132631, 0.99132631, 0.99132631,
0.99132631, 0.99853052, 0.99853052, 0.99853052, 0.99853052,
0.99980675, 0.99980675, 0.99980675, 0.99980675, 0.9999803 ,
0.9999803 , 0.9999803 , 0.9999803 , 0.99999845, 0.99999845,
0.99999845, 0.99999845, 0.99999991, 0.99999991, 0.99999991,
0.99999991, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999993, -1.99999993, -1.99999993, -1.99999993, -1.99999892,
-1.99999892, -1.99999892, -1.99999892, -1.99998652, -1.99998652,
-1.99998652, -1.99998652, -1.99987201, -1.99987201, -1.99987201,
-1.99987201, -1.99906639, -1.99906639, -1.99906639, -1.99906639,
-1.99475692, -1.99475692, -1.99475692, -1.99475692, -1.97724052,
-1.97724052, -1.97724052, -1.97724052, -1.92239345, -1.92239345,
-1.92239345, -1.92239345, -1.78517312, -1.78517312, -1.78517312,
-1.78517312, -1.5113457 , -1.5113457 , -1.5113457 , -1.5113457 ,
-1.08147149, -1.08147149, -1.08147149, -1.08147149, -0.42947786,
-0.42947786, -0.42947786, -0.42947786, 0.42947786, 0.42947786,
0.42947786, 0.42947786, 1.08147149, 1.08147149, 1.08147149,
1.08147149, 1.5113457 , 1.5113457 , 1.5113457 , 1.5113457 ,
1.78517312, 1.78517312, 1.78517312, 1.78517312, 1.92239345,
1.92239345, 1.92239345, 1.92239345, 1.97724052, 1.97724052,
1.97724052, 1.97724052, 1.99475692, 1.99475692, 1.99475692,
1.99475692, 1.99906639, 1.99906639, 1.99906639, 1.99906639,
1.99987201, 1.99987201, 1.99987201, 1.99987201, 1.99998652,
1.99998652, 1.99998652, 1.99998652, 1.99999892, 1.99999892,
1.99999892, 1.99999892, 1.99999993, 1.99999993, 1.99999993,
1.99999993, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999995, 0.39999995, 0.39999995, 0.39999995, 0.39999919,
0.39999919, 0.39999919, 0.39999919, 0.39998992, 0.39998992,
0.39998992, 0.39998992, 0.39990428, 0.39990428, 0.39990428,
0.39990428, 0.39930251, 0.39930251, 0.39930251, 0.39930251,
0.3960976 , 0.3960976 , 0.3960976 , 0.3960976 , 0.38329551,
0.38329551, 0.38329551, 0.38329551, 0.34542088, 0.34542088,
0.34542088, 0.34542088, 0.26266714, 0.26266714, 0.26266714,
0.26266714, 0.1576941 , 0.1576941 , 0.1576941 , 0.1576941 ,
0.09083226, 0.09083226, 0.09083226, 0.09083226, 0.06171329,
0.06171329, 0.06171329, 0.06171329, 0.06171329, 0.06171329,
0.06171329, 0.06171329, 0.09083226, 0.09083226, 0.09083226,
0.09083226, 0.1576941 , 0.1576941 , 0.1576941 , 0.1576941 ,
0.26266714, 0.26266714, 0.26266714, 0.26266714, 0.34542088,
0.34542088, 0.34542088, 0.34542088, 0.38329551, 0.38329551,
0.38329551, 0.38329551, 0.3960976 , 0.3960976 , 0.3960976 ,
0.3960976 , 0.39930251, 0.39930251, 0.39930251, 0.39930251,
0.39990428, 0.39990428, 0.39990428, 0.39990428, 0.39998992,
0.39998992, 0.39998992, 0.39998992, 0.39999919, 0.39999919,
0.39999919, 0.39999919, 0.39999995, 0.39999995, 0.39999995,
0.39999995, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999822, 0.99999822, 0.99999822, 0.99999822, 0.99998106,
0.99998106, 0.99998106, 0.99998106, 0.99983897, 0.99983897,
0.99983897, 0.99983897, 0.99890114, 0.99890114, 0.99890114,
0.99890114, 0.99398512, 0.99398512, 0.99398512, 0.99398512,
0.97370478, 0.97370478, 0.97370478, 0.97370478, 0.90883613,
0.90883613, 0.90883613, 0.90883613, 0.75034435, 0.75034435,
0.75034435, 0.75034435, 0.47937345, 0.47937345, 0.47937345,
0.47937345, 0.26645779, 0.26645779, 0.26645779, 0.26645779,
0.15553048, 0.15553048, 0.15553048, 0.15553048, 0.11304865,
0.11304865, 0.11304865, 0.11304865, 0.11304865, 0.11304865,
0.11304865, 0.11304865, 0.15553048, 0.15553048, 0.15553048,
0.15553048, 0.26645779, 0.26645779, 0.26645779, 0.26645779,
0.47937345, 0.47937345, 0.47937345, 0.47937345, 0.75034435,
0.75034435, 0.75034435, 0.75034435, 0.90883613, 0.90883613,
0.90883613, 0.90883613, 0.97370478, 0.97370478, 0.97370478,
0.97370478, 0.99398512, 0.99398512, 0.99398512, 0.99398512,
0.99890114, 0.99890114, 0.99890114, 0.99890114, 0.99983897,
0.99983897, 0.99983897, 0.99983897, 0.99998106, 0.99998106,
0.99998106, 0.99998106, 0.99999822, 0.99999822, 0.99999822,
0.99999822, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999999, -1.99999999, -1.99999999,
-1.99999999, -1.9999999 , -1.9999999 , -1.9999999 , -1.9999999 ,
-1.99999873, -1.99999873, -1.99999873, -1.99999873, -1.99998669,
-1.99998669, -1.99998669, -1.99998669, -1.99988955, -1.99988955,
-1.99988955, -1.99988955, -1.99926998, -1.99926998, -1.99926998,
-1.99926998, -1.99616089, -1.99616089, -1.99616089, -1.99616089,
-1.98393412, -1.98393412, -1.98393412, -1.98393412, -1.94604754,
-1.94604754, -1.94604754, -1.94604754, -1.85123448, -1.85123448,
-1.85123448, -1.85123448, -1.65457416, -1.65457416, -1.65457416,
-1.65457416, -1.34314169, -1.34314169, -1.34314169, -1.34314169,
-0.91937917, -0.91937917, -0.91937917, -0.91937917, -0.3602269 ,
-0.3602269 , -0.3602269 , -0.3602269 , 0.3602269 , 0.3602269 ,
0.3602269 , 0.3602269 , 0.91937917, 0.91937917, 0.91937917,
0.91937917, 1.34314169, 1.34314169, 1.34314169, 1.34314169,
1.65457416, 1.65457416, 1.65457416, 1.65457416, 1.85123448,
1.85123448, 1.85123448, 1.85123448, 1.94604754, 1.94604754,
1.94604754, 1.94604754, 1.98393412, 1.98393412, 1.98393412,
1.98393412, 1.99616089, 1.99616089, 1.99616089, 1.99616089,
1.99926998, 1.99926998, 1.99926998, 1.99926998, 1.99988955,
1.99988955, 1.99988955, 1.99988955, 1.99998669, 1.99998669,
1.99998669, 1.99998669, 1.99999873, 1.99999873, 1.99999873,
1.99999873, 1.9999999 , 1.9999999 , 1.9999999 , 1.9999999 ,
1.99999999, 1.99999999, 1.99999999, 1.99999999, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.39999905, 0.39999905, 0.39999905, 0.39999905, 0.39999004,
0.39999004, 0.39999004, 0.39999004, 0.39991737, 0.39991737,
0.39991737, 0.39991737, 0.39945421, 0.39945421, 0.39945421,
0.39945421, 0.39713715, 0.39713715, 0.39713715, 0.39713715,
0.38813528, 0.38813528, 0.38813528, 0.38813528, 0.3613379 ,
0.3613379 , 0.3613379 , 0.3613379 , 0.30087371, 0.30087371,
0.30087371, 0.30087371, 0.20141084, 0.20141084, 0.20141084,
0.20141084, 0.11704796, 0.11704796, 0.11704796, 0.11704796,
0.06912872, 0.06912872, 0.06912872, 0.06912872, 0.04853681,
0.04853681, 0.04853681, 0.04853681, 0.04853681, 0.04853681,
0.04853681, 0.04853681, 0.06912872, 0.06912872, 0.06912872,
0.06912872, 0.11704796, 0.11704796, 0.11704796, 0.11704796,
0.20141084, 0.20141084, 0.20141084, 0.20141084, 0.30087371,
0.30087371, 0.30087371, 0.30087371, 0.3613379 , 0.3613379 ,
0.3613379 , 0.3613379 , 0.38813528, 0.38813528, 0.38813528,
0.38813528, 0.39713715, 0.39713715, 0.39713715, 0.39713715,
0.39945421, 0.39945421, 0.39945421, 0.39945421, 0.39991737,
0.39991737, 0.39991737, 0.39991737, 0.39999004, 0.39999004,
0.39999004, 0.39999004, 0.39999905, 0.39999905, 0.39999905,
0.39999905, 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999984, 0.99999984, 0.99999984,
0.99999984, 0.99999815, 0.99999815, 0.99999815, 0.99999815,
0.99998284, 0.99998284, 0.99998284, 0.99998284, 0.99986909,
0.99986909, 0.99986909, 0.99986909, 0.99917794, 0.99917794,
0.99917794, 0.99917794, 0.99575787, 0.99575787, 0.99575787,
0.99575787, 0.98208444, 0.98208444, 0.98208444, 0.98208444,
0.93845324, 0.93845324, 0.93845324, 0.93845324, 0.82880412,
0.82880412, 0.82880412, 0.82880412, 0.61348768, 0.61348768,
0.61348768, 0.61348768, 0.36614028, 0.36614028, 0.36614028,
0.36614028, 0.20903449, 0.20903449, 0.20903449, 0.20903449,
0.12920479, 0.12920479, 0.12920479, 0.12920479, 0.09800524,
0.09800524, 0.09800524, 0.09800524, 0.09800524, 0.09800524,
0.09800524, 0.09800524, 0.12920479, 0.12920479, 0.12920479,
0.12920479, 0.20903449, 0.20903449, 0.20903449, 0.20903449,
0.36614028, 0.36614028, 0.36614028, 0.36614028, 0.61348768,
0.61348768, 0.61348768, 0.61348768, 0.82880412, 0.82880412,
0.82880412, 0.82880412, 0.93845324, 0.93845324, 0.93845324,
0.93845324, 0.98208444, 0.98208444, 0.98208444, 0.98208444,
0.99575787, 0.99575787, 0.99575787, 0.99575787, 0.99917794,
0.99917794, 0.99917794, 0.99917794, 0.99986909, 0.99986909,
0.99986909, 0.99986909, 0.99998284, 0.99998284, 0.99998284,
0.99998284, 0.99999815, 0.99999815, 0.99999815, 0.99999815,
0.99999984, 0.99999984, 0.99999984, 0.99999984, 0.99999999,
0.99999999, 0.99999999, 0.99999999, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999988, -1.99999988, -1.99999988,
-1.99999988, -1.99999866, -1.99999866, -1.99999866, -1.99999866,
-1.99998772, -1.99998772, -1.99998772, -1.99998772, -1.99990797,
-1.99990797, -1.99990797, -1.99990797, -1.99943592, -1.99943592,
-1.99943592, -1.99943592, -1.99717955, -1.99717955, -1.99717955,
-1.99717955, -1.98851793, -1.98851793, -1.98851793, -1.98851793,
-1.96180903, -1.96180903, -1.96180903, -1.96180903, -1.89460091,
-1.89460091, -1.89460091, -1.89460091, -1.75267665, -1.75267665,
-1.75267665, -1.75267665, -1.51016277, -1.51016277, -1.51016277,
-1.51016277, -1.18621185, -1.18621185, -1.18621185, -1.18621185,
-0.7860659 , -0.7860659 , -0.7860659 , -0.7860659 , -0.30832397,
-0.30832397, -0.30832397, -0.30832397, 0.30832397, 0.30832397,
0.30832397, 0.30832397, 0.7860659 , 0.7860659 , 0.7860659 ,
0.7860659 , 1.18621185, 1.18621185, 1.18621185, 1.18621185,
1.51016277, 1.51016277, 1.51016277, 1.51016277, 1.75267665,
1.75267665, 1.75267665, 1.75267665, 1.89460091, 1.89460091,
1.89460091, 1.89460091, 1.96180903, 1.96180903, 1.96180903,
1.96180903, 1.98851793, 1.98851793, 1.98851793, 1.98851793,
1.99717955, 1.99717955, 1.99717955, 1.99717955, 1.99943592,
1.99943592, 1.99943592, 1.99943592, 1.99990797, 1.99990797,
1.99990797, 1.99990797, 1.99998772, 1.99998772, 1.99998772,
1.99998772, 1.99999866, 1.99999866, 1.99999866, 1.99999866,
1.99999988, 1.99999988, 1.99999988, 1.99999988, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999991, 0.39999991, 0.39999991,
0.39999991, 0.399999 , 0.399999 , 0.399999 , 0.399999 ,
0.39999081, 0.39999081, 0.39999081, 0.39999081, 0.39993114,
0.39993114, 0.39993114, 0.39993114, 0.39957814, 0.39957814,
0.39957814, 0.39957814, 0.3978946 , 0.3978946 , 0.3978946 ,
0.3978946 , 0.39148834, 0.39148834, 0.39148834, 0.39148834,
0.37229028, 0.37229028, 0.37229028, 0.37229028, 0.32749061,
0.32749061, 0.32749061, 0.32749061, 0.24595055, 0.24595055,
0.24595055, 0.24595055, 0.1521573 , 0.1521573 , 0.1521573 ,
0.1521573 , 0.08900074, 0.08900074, 0.08900074, 0.08900074,
0.05452347, 0.05452347, 0.05452347, 0.05452347, 0.03964855,
0.03964855, 0.03964855, 0.03964855, 0.03964855, 0.03964855,
0.03964855, 0.03964855, 0.05452347, 0.05452347, 0.05452347,
0.05452347, 0.08900074, 0.08900074, 0.08900074, 0.08900074,
0.1521573 , 0.1521573 , 0.1521573 , 0.1521573 , 0.24595055,
0.24595055, 0.24595055, 0.24595055, 0.32749061, 0.32749061,
0.32749061, 0.32749061, 0.37229028, 0.37229028, 0.37229028,
0.37229028, 0.39148834, 0.39148834, 0.39148834, 0.39148834,
0.3978946 , 0.3978946 , 0.3978946 , 0.3978946 , 0.39957814,
0.39957814, 0.39957814, 0.39957814, 0.39993114, 0.39993114,
0.39993114, 0.39993114, 0.39999081, 0.39999081, 0.39999081,
0.39999081, 0.399999 , 0.399999 , 0.399999 , 0.399999 ,
0.39999991, 0.39999991, 0.39999991, 0.39999991, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999982, 0.99999982,
0.99999982, 0.99999982, 0.99999821, 0.99999821, 0.99999821,
0.99999821, 0.99998506, 0.99998506, 0.99998506, 0.99998506,
0.99989526, 0.99989526, 0.99989526, 0.99989526, 0.99938413,
0.99938413, 0.99938413, 0.99938413, 0.9969681 , 0.9969681 ,
0.9969681 , 0.9969681 , 0.98755151, 0.98755151, 0.98755151,
0.98755151, 0.9575973 , 0.9575973 , 0.9575973 , 0.9575973 ,
0.88079942, 0.88079942, 0.88079942, 0.88079942, 0.72339297,
0.72339297, 0.72339297, 0.72339297, 0.48191719, 0.48191719,
0.48191719, 0.48191719, 0.28572684, 0.28572684, 0.28572684,
0.28572684, 0.16953166, 0.16953166, 0.16953166, 0.16953166,
0.11045248, 0.11045248, 0.11045248, 0.11045248, 0.08680007,
0.08680007, 0.08680007, 0.08680007, 0.08680007, 0.08680007,
0.08680007, 0.08680007, 0.11045248, 0.11045248, 0.11045248,
0.11045248, 0.16953166, 0.16953166, 0.16953166, 0.16953166,
0.28572684, 0.28572684, 0.28572684, 0.28572684, 0.48191719,
0.48191719, 0.48191719, 0.48191719, 0.72339297, 0.72339297,
0.72339297, 0.72339297, 0.88079942, 0.88079942, 0.88079942,
0.88079942, 0.9575973 , 0.9575973 , 0.9575973 , 0.9575973 ,
0.98755151, 0.98755151, 0.98755151, 0.98755151, 0.9969681 ,
0.9969681 , 0.9969681 , 0.9969681 , 0.99938413, 0.99938413,
0.99938413, 0.99938413, 0.99989526, 0.99989526, 0.99989526,
0.99989526, 0.99998506, 0.99998506, 0.99998506, 0.99998506,
0.99999821, 0.99999821, 0.99999821, 0.99999821, 0.99999982,
0.99999982, 0.99999982, 0.99999982, 0.99999998, 0.99999998,
0.99999998, 0.99999998, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.99999987, -1.99999987,
-1.99999987, -1.99999987, -1.99999869, -1.99999869, -1.99999869,
-1.99999869, -1.99998917, -1.99998917, -1.99998917, -1.99998917,
-1.99992506, -1.99992506, -1.99992506, -1.99992506, -1.99956738,
-1.99956738, -1.99956738, -1.99956738, -1.99792181, -1.99792181,
-1.99792181, -1.99792181, -1.9917193 , -1.9917193 , -1.9917193 ,
-1.9917193 , -1.97261847, -1.97261847, -1.97261847, -1.97261847,
-1.92415623, -1.92415623, -1.92415623, -1.92415623, -1.82040341,
-1.82040341, -1.82040341, -1.82040341, -1.63201167, -1.63201167,
-1.63201167, -1.63201167, -1.36651981, -1.36651981, -1.36651981,
-1.36651981, -1.04671979, -1.04671979, -1.04671979, -1.04671979,
-0.6782087 , -0.6782087 , -0.6782087 , -0.6782087 , -0.26774582,
-0.26774582, -0.26774582, -0.26774582, 0.26774582, 0.26774582,
0.26774582, 0.26774582, 0.6782087 , 0.6782087 , 0.6782087 ,
0.6782087 , 1.04671979, 1.04671979, 1.04671979, 1.04671979,
1.36651981, 1.36651981, 1.36651981, 1.36651981, 1.63201167,
1.63201167, 1.63201167, 1.63201167, 1.82040341, 1.82040341,
1.82040341, 1.82040341, 1.92415623, 1.92415623, 1.92415623,
1.92415623, 1.97261847, 1.97261847, 1.97261847, 1.97261847,
1.9917193 , 1.9917193 , 1.9917193 , 1.9917193 , 1.99792181,
1.99792181, 1.99792181, 1.99792181, 1.99956738, 1.99956738,
1.99956738, 1.99956738, 1.99992506, 1.99992506, 1.99992506,
1.99992506, 1.99998917, 1.99998917, 1.99998917, 1.99998917,
1.99999869, 1.99999869, 1.99999869, 1.99999869, 1.99999987,
1.99999987, 1.99999987, 1.99999987, 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.3999999 , 0.3999999 ,
0.3999999 , 0.3999999 , 0.39999902, 0.39999902, 0.39999902,
0.39999902, 0.39999189, 0.39999189, 0.39999189, 0.39999189,
0.39994393, 0.39994393, 0.39994393, 0.39994393, 0.3996764 ,
0.3996764 , 0.3996764 , 0.3996764 , 0.39844766, 0.39844766,
0.39844766, 0.39844766, 0.3938459 , 0.3938459 , 0.3938459 ,
0.3938459 , 0.37996407, 0.37996407, 0.37996407, 0.37996407,
0.34664308, 0.34664308, 0.34664308, 0.34664308, 0.28330954,
0.28330954, 0.28330954, 0.28330954, 0.19183256, 0.19183256,
0.19183256, 0.19183256, 0.11635494, 0.11635494, 0.11635494,
0.11635494, 0.06966734, 0.06966734, 0.06966734, 0.06966734,
0.04441951, 0.04441951, 0.04441951, 0.04441951, 0.03339871,
0.03339871, 0.03339871, 0.03339871, 0.03339871, 0.03339871,
0.03339871, 0.03339871, 0.04441951, 0.04441951, 0.04441951,
0.04441951, 0.06966734, 0.06966734, 0.06966734, 0.06966734,
0.11635494, 0.11635494, 0.11635494, 0.11635494, 0.19183256,
0.19183256, 0.19183256, 0.19183256, 0.28330954, 0.28330954,
0.28330954, 0.28330954, 0.34664308, 0.34664308, 0.34664308,
0.34664308, 0.37996407, 0.37996407, 0.37996407, 0.37996407,
0.3938459 , 0.3938459 , 0.3938459 , 0.3938459 , 0.39844766,
0.39844766, 0.39844766, 0.39844766, 0.3996764 , 0.3996764 ,
0.3996764 , 0.3996764 , 0.39994393, 0.39994393, 0.39994393,
0.39994393, 0.39999189, 0.39999189, 0.39999189, 0.39999189,
0.39999902, 0.39999902, 0.39999902, 0.39999902, 0.3999999 ,
0.3999999 , 0.3999999 , 0.3999999 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999982,
0.99999982, 0.99999982, 0.99999982, 0.99999835, 0.99999835,
0.99999835, 0.99999835, 0.99998734, 0.99998734, 0.99998734,
0.99998734, 0.99991711, 0.99991711, 0.99991711, 0.99991711,
0.99953786, 0.99953786, 0.99953786, 0.99953786, 0.99781034,
0.99781034, 0.99781034, 0.99781034, 0.99121504, 0.99121504,
0.99121504, 0.99121504, 0.97029897, 0.97029897, 0.97029897,
0.97029897, 0.91578706, 0.91578706, 0.91578706, 0.91578706,
0.80012855, 0.80012855, 0.80012855, 0.80012855, 0.60045937,
0.60045937, 0.60045937, 0.60045937, 0.37949445, 0.37949445,
0.37949445, 0.37949445, 0.22889361, 0.22889361, 0.22889361,
0.22889361, 0.14163683, 0.14163683, 0.14163683, 0.14163683,
0.09663353, 0.09663353, 0.09663353, 0.09663353, 0.07820179,
0.07820179, 0.07820179, 0.07820179, 0.07820179, 0.07820179,
0.07820179, 0.07820179, 0.09663353, 0.09663353, 0.09663353,
0.09663353, 0.14163683, 0.14163683, 0.14163683, 0.14163683,
0.22889361, 0.22889361, 0.22889361, 0.22889361, 0.37949445,
0.37949445, 0.37949445, 0.37949445, 0.60045937, 0.60045937,
0.60045937, 0.60045937, 0.80012855, 0.80012855, 0.80012855,
0.80012855, 0.91578706, 0.91578706, 0.91578706, 0.91578706,
0.97029897, 0.97029897, 0.97029897, 0.97029897, 0.99121504,
0.99121504, 0.99121504, 0.99121504, 0.99781034, 0.99781034,
0.99781034, 0.99781034, 0.99953786, 0.99953786, 0.99953786,
0.99953786, 0.99991711, 0.99991711, 0.99991711, 0.99991711,
0.99998734, 0.99998734, 0.99998734, 0.99998734, 0.99999835,
0.99999835, 0.99999835, 0.99999835, 0.99999982, 0.99999982,
0.99999982, 0.99999982, 0.99999998, 0.99999998, 0.99999998,
0.99999998, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999986,
-1.99999986, -1.99999986, -1.99999986, -1.99999879, -1.99999879,
-1.99999879, -1.99999879, -1.99999074, -1.99999074, -1.99999074,
-1.99999074, -1.99993995, -1.99993995, -1.99993995, -1.99993995,
-1.9996698 , -1.9996698 , -1.9996698 , -1.9996698 , -1.99846471,
-1.99846471, -1.99846471, -1.99846471, -1.99398645, -1.99398645,
-1.99398645, -1.99398645, -1.98018643, -1.98018643, -1.98018643,
-1.98018643, -1.94480442, -1.94480442, -1.94480442, -1.94480442,
-1.86801764, -1.86801764, -1.86801764, -1.86801764, -1.72407007,
-1.72407007, -1.72407007, -1.72407007, -1.50364278, -1.50364278,
-1.50364278, -1.50364278, -1.23217304, -1.23217304, -1.23217304,
-1.23217304, -0.92597583, -0.92597583, -0.92597583, -0.92597583,
-0.59117574, -0.59117574, -0.59117574, -0.59117574, -0.23496487,
-0.23496487, -0.23496487, -0.23496487, 0.23496487, 0.23496487,
0.23496487, 0.23496487, 0.59117574, 0.59117574, 0.59117574,
0.59117574, 0.92597583, 0.92597583, 0.92597583, 0.92597583,
1.23217304, 1.23217304, 1.23217304, 1.23217304, 1.50364278,
1.50364278, 1.50364278, 1.50364278, 1.72407007, 1.72407007,
1.72407007, 1.72407007, 1.86801764, 1.86801764, 1.86801764,
1.86801764, 1.94480442, 1.94480442, 1.94480442, 1.94480442,
1.98018643, 1.98018643, 1.98018643, 1.98018643, 1.99398645,
1.99398645, 1.99398645, 1.99398645, 1.99846471, 1.99846471,
1.99846471, 1.99846471, 1.9996698 , 1.9996698 , 1.9996698 ,
1.9996698 , 1.99993995, 1.99993995, 1.99993995, 1.99993995,
1.99999074, 1.99999074, 1.99999074, 1.99999074, 1.99999879,
1.99999879, 1.99999879, 1.99999879, 1.99999986, 1.99999986,
1.99999986, 1.99999986, 1.99999999, 1.99999999, 1.99999999,
1.99999999, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.3999999 ,
0.3999999 , 0.3999999 , 0.3999999 , 0.39999909, 0.39999909,
0.39999909, 0.39999909, 0.39999307, 0.39999307, 0.39999307,
0.39999307, 0.39995507, 0.39995507, 0.39995507, 0.39995507,
0.39975298, 0.39975298, 0.39975298, 0.39975298, 0.39885266,
0.39885266, 0.39885266, 0.39885266, 0.39552278, 0.39552278,
0.39552278, 0.39552278, 0.38541506, 0.38541506, 0.38541506,
0.38541506, 0.36053293, 0.36053293, 0.36053293, 0.36053293,
0.31125907, 0.31125907, 0.31125907, 0.31125907, 0.23233608,
0.23233608, 0.23233608, 0.23233608, 0.14878873, 0.14878873,
0.14878873, 0.14878873, 0.0908745 , 0.0908745 , 0.0908745 ,
0.0908745 , 0.05614055, 0.05614055, 0.05614055, 0.05614055,
0.03721016, 0.03721016, 0.03721016, 0.03721016, 0.0288322 ,
0.0288322 , 0.0288322 , 0.0288322 , 0.0288322 , 0.0288322 ,
0.0288322 , 0.0288322 , 0.03721016, 0.03721016, 0.03721016,
0.03721016, 0.05614055, 0.05614055, 0.05614055, 0.05614055,
0.0908745 , 0.0908745 , 0.0908745 , 0.0908745 , 0.14878873,
0.14878873, 0.14878873, 0.14878873, 0.23233608, 0.23233608,
0.23233608, 0.23233608, 0.31125907, 0.31125907, 0.31125907,
0.31125907, 0.36053293, 0.36053293, 0.36053293, 0.36053293,
0.38541506, 0.38541506, 0.38541506, 0.38541506, 0.39552278,
0.39552278, 0.39552278, 0.39552278, 0.39885266, 0.39885266,
0.39885266, 0.39885266, 0.39975298, 0.39975298, 0.39975298,
0.39975298, 0.39995507, 0.39995507, 0.39995507, 0.39995507,
0.39999307, 0.39999307, 0.39999307, 0.39999307, 0.39999909,
0.39999909, 0.39999909, 0.39999909, 0.3999999 , 0.3999999 ,
0.3999999 , 0.3999999 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999853,
0.99999853, 0.99999853, 0.99999853, 0.99998948, 0.99998948,
0.99998948, 0.99998948, 0.99993492, 0.99993492, 0.99993492,
0.99993492, 0.99965273, 0.99965273, 0.99965273, 0.99965273,
0.99840561, 0.99840561, 0.99840561, 0.99840561, 0.99372391,
0.99372391, 0.99372391, 0.99372391, 0.97891212, 0.97891212,
0.97891212, 0.97891212, 0.93979064, 0.93979064, 0.93979064,
0.93979064, 0.85435217, 0.85435217, 0.85435217, 0.85435217,
0.70047105, 0.70047105, 0.70047105, 0.70047105, 0.48368405,
0.48368405, 0.48368405, 0.48368405, 0.30390714, 0.30390714,
0.30390714, 0.30390714, 0.18824623, 0.18824623, 0.18824623,
0.18824623, 0.12134774, 0.12134774, 0.12134774, 0.12134774,
0.08615572, 0.08615572, 0.08615572, 0.08615572, 0.07142817,
0.07142817, 0.07142817, 0.07142817, 0.07142817, 0.07142817,
0.07142817, 0.07142817, 0.08615572, 0.08615572, 0.08615572,
0.08615572, 0.12134774, 0.12134774, 0.12134774, 0.12134774,
0.18824623, 0.18824623, 0.18824623, 0.18824623, 0.30390714,
0.30390714, 0.30390714, 0.30390714, 0.48368405, 0.48368405,
0.48368405, 0.48368405, 0.70047105, 0.70047105, 0.70047105,
0.70047105, 0.85435217, 0.85435217, 0.85435217, 0.85435217,
0.93979064, 0.93979064, 0.93979064, 0.93979064, 0.97891212,
0.97891212, 0.97891212, 0.97891212, 0.99372391, 0.99372391,
0.99372391, 0.99372391, 0.99840561, 0.99840561, 0.99840561,
0.99840561, 0.99965273, 0.99965273, 0.99965273, 0.99965273,
0.99993492, 0.99993492, 0.99993492, 0.99993492, 0.99998948,
0.99998948, 0.99998948, 0.99998948, 0.99999853, 0.99999853,
0.99999853, 0.99999853, 0.99999982, 0.99999982, 0.99999982,
0.99999982, 0.99999998, 0.99999998, 0.99999998, 0.99999998,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999999, -1.99999999, -1.99999999, -1.99999999,
-1.99999987, -1.99999987, -1.99999987, -1.99999987, -1.99999891,
-1.99999891, -1.99999891, -1.99999891, -1.99999225, -1.99999225,
-1.99999225, -1.99999225, -1.99995243, -1.99995243, -1.99995243,
-1.99995243, -1.99974878, -1.99974878, -1.99974878, -1.99974878,
-1.99886312, -1.99886312, -1.99886312, -1.99886312, -1.99560883,
-1.99560883, -1.99560883, -1.99560883, -1.9855618 , -1.9855618 ,
-1.9855618 , -1.9855618 , -1.95950297, -1.95950297, -1.95950297,
-1.95950297, -1.90210338, -1.90210338, -1.90210338, -1.90210338,
-1.79222715, -1.79222715, -1.79222715, -1.79222715, -1.61230762,
-1.61230762, -1.61230762, -1.61230762, -1.3777013 , -1.3777013 ,
-1.3777013 , -1.3777013 , -1.11092251, -1.11092251, -1.11092251,
-1.11092251, -0.82278589, -0.82278589, -0.82278589, -0.82278589,
-0.52048968, -0.52048968, -0.52048968, -0.52048968, -0.20786432,
-0.20786432, -0.20786432, -0.20786432, 0.20786432, 0.20786432,
0.20786432, 0.20786432, 0.52048968, 0.52048968, 0.52048968,
0.52048968, 0.82278589, 0.82278589, 0.82278589, 0.82278589,
1.11092251, 1.11092251, 1.11092251, 1.11092251, 1.3777013 ,
1.3777013 , 1.3777013 , 1.3777013 , 1.61230762, 1.61230762,
1.61230762, 1.61230762, 1.79222715, 1.79222715, 1.79222715,
1.79222715, 1.90210338, 1.90210338, 1.90210338, 1.90210338,
1.95950297, 1.95950297, 1.95950297, 1.95950297, 1.9855618 ,
1.9855618 , 1.9855618 , 1.9855618 , 1.99560883, 1.99560883,
1.99560883, 1.99560883, 1.99886312, 1.99886312, 1.99886312,
1.99886312, 1.99974878, 1.99974878, 1.99974878, 1.99974878,
1.99995243, 1.99995243, 1.99995243, 1.99995243, 1.99999225,
1.99999225, 1.99999225, 1.99999225, 1.99999891, 1.99999891,
1.99999891, 1.99999891, 1.99999987, 1.99999987, 1.99999987,
1.99999987, 1.99999999, 1.99999999, 1.99999999, 1.99999999,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.3999999 , 0.3999999 , 0.3999999 , 0.3999999 , 0.39999919,
0.39999919, 0.39999919, 0.39999919, 0.3999942 , 0.3999942 ,
0.3999942 , 0.3999942 , 0.3999644 , 0.3999644 , 0.3999644 ,
0.3999644 , 0.39981205, 0.39981205, 0.39981205, 0.39981205,
0.39915011, 0.39915011, 0.39915011, 0.39915011, 0.3967264 ,
0.3967264 , 0.3967264 , 0.3967264 , 0.38932614, 0.38932614,
0.38932614, 0.38932614, 0.3707002 , 0.3707002 , 0.3707002 ,
0.3707002 , 0.33242647, 0.33242647, 0.33242647, 0.33242647,
0.26800883, 0.26800883, 0.26800883, 0.26800883, 0.18437304,
0.18437304, 0.18437304, 0.18437304, 0.11676345, 0.11676345,
0.11676345, 0.11676345, 0.07270821, 0.07270821, 0.07270821,
0.07270821, 0.04645228, 0.04645228, 0.04645228, 0.04645228,
0.03191354, 0.03191354, 0.03191354, 0.03191354, 0.02538131,
0.02538131, 0.02538131, 0.02538131, 0.02538131, 0.02538131,
0.02538131, 0.02538131, 0.03191354, 0.03191354, 0.03191354,
0.03191354, 0.04645228, 0.04645228, 0.04645228, 0.04645228,
0.07270821, 0.07270821, 0.07270821, 0.07270821, 0.11676345,
0.11676345, 0.11676345, 0.11676345, 0.18437304, 0.18437304,
0.18437304, 0.18437304, 0.26800883, 0.26800883, 0.26800883,
0.26800883, 0.33242647, 0.33242647, 0.33242647, 0.33242647,
0.3707002 , 0.3707002 , 0.3707002 , 0.3707002 , 0.38932614,
0.38932614, 0.38932614, 0.38932614, 0.3967264 , 0.3967264 ,
0.3967264 , 0.3967264 , 0.39915011, 0.39915011, 0.39915011,
0.39915011, 0.39981205, 0.39981205, 0.39981205, 0.39981205,
0.3999644 , 0.3999644 , 0.3999644 , 0.3999644 , 0.3999942 ,
0.3999942 , 0.3999942 , 0.3999942 , 0.39999919, 0.39999919,
0.39999919, 0.39999919, 0.3999999 , 0.3999999 , 0.3999999 ,
0.3999999 , 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
0.99999873, 0.99999873, 0.99999873, 0.99999873, 0.99999139,
0.99999139, 0.99999139, 0.99999139, 0.9999492 , 0.9999492 ,
0.9999492 , 0.9999492 , 0.99973872, 0.99973872, 0.99973872,
0.99973872, 0.99883156, 0.99883156, 0.99883156, 0.99883156,
0.99547245, 0.99547245, 0.99547245, 0.99547245, 0.98486244,
0.98486244, 0.98486244, 0.98486244, 0.95651715, 0.95651715,
0.95651715, 0.95651715, 0.89302034, 0.89302034, 0.89302034,
0.89302034, 0.7744703 , 0.7744703 , 0.7744703 , 0.7744703 ,
0.58918984, 0.58918984, 0.58918984, 0.58918984, 0.3907938 ,
0.3907938 , 0.3907938 , 0.3907938 , 0.24842829, 0.24842829,
0.24842829, 0.24842829, 0.15858747, 0.15858747, 0.15858747,
0.15858747, 0.10613862, 0.10613862, 0.10613862, 0.10613862,
0.07804312, 0.07804312, 0.07804312, 0.07804312, 0.06596678,
0.06596678, 0.06596678, 0.06596678, 0.06596678, 0.06596678,
0.06596678, 0.06596678, 0.07804312, 0.07804312, 0.07804312,
0.07804312, 0.10613862, 0.10613862, 0.10613862, 0.10613862,
0.15858747, 0.15858747, 0.15858747, 0.15858747, 0.24842829,
0.24842829, 0.24842829, 0.24842829, 0.3907938 , 0.3907938 ,
0.3907938 , 0.3907938 , 0.58918984, 0.58918984, 0.58918984,
0.58918984, 0.7744703 , 0.7744703 , 0.7744703 , 0.7744703 ,
0.89302034, 0.89302034, 0.89302034, 0.89302034, 0.95651715,
0.95651715, 0.95651715, 0.95651715, 0.98486244, 0.98486244,
0.98486244, 0.98486244, 0.99547245, 0.99547245, 0.99547245,
0.99547245, 0.99883156, 0.99883156, 0.99883156, 0.99883156,
0.99973872, 0.99973872, 0.99973872, 0.99973872, 0.9999492 ,
0.9999492 , 0.9999492 , 0.9999492 , 0.99999139, 0.99999139,
0.99999139, 0.99999139, 0.99999873, 0.99999873, 0.99999873,
0.99999873, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999999, -1.99999999, -1.99999999,
-1.99999999, -1.99999988, -1.99999988, -1.99999988, -1.99999988,
-1.99999905, -1.99999905, -1.99999905, -1.99999905, -1.99999363,
-1.99999363, -1.99999363, -1.99999363, -1.99996263, -1.99996263,
-1.99996263, -1.99996263, -1.99980927, -1.99980927, -1.99980927,
-1.99980927, -1.99915638, -1.99915638, -1.99915638, -1.99915638,
-1.99677918, -1.99677918, -1.99677918, -1.99677918, -1.98942127,
-1.98942127, -1.98942127, -1.98942127, -1.97010848, -1.97010848,
-1.97010848, -1.97010848, -1.92685579, -1.92685579, -1.92685579,
-1.92685579, -1.84274247, -1.84274247, -1.84274247, -1.84274247,
-1.69896886, -1.69896886, -1.69896886, -1.69896886, -1.4967822 ,
-1.4967822 , -1.4967822 , -1.4967822 , -1.25990867, -1.25990867,
-1.25990867, -1.25990867, -1.00356993, -1.00356993, -1.00356993,
-1.00356993, -0.73520455, -0.73520455, -0.73520455, -0.73520455,
-0.4621829 , -0.4621829 , -0.4621829 , -0.4621829 , -0.18511853,
-0.18511853, -0.18511853, -0.18511853, 0.18511853, 0.18511853,
0.18511853, 0.18511853, 0.4621829 , 0.4621829 , 0.4621829 ,
0.4621829 , 0.73520455, 0.73520455, 0.73520455, 0.73520455,
1.00356993, 1.00356993, 1.00356993, 1.00356993, 1.25990867,
1.25990867, 1.25990867, 1.25990867, 1.4967822 , 1.4967822 ,
1.4967822 , 1.4967822 , 1.69896886, 1.69896886, 1.69896886,
1.69896886, 1.84274247, 1.84274247, 1.84274247, 1.84274247,
1.92685579, 1.92685579, 1.92685579, 1.92685579, 1.97010848,
1.97010848, 1.97010848, 1.97010848, 1.98942127, 1.98942127,
1.98942127, 1.98942127, 1.99677918, 1.99677918, 1.99677918,
1.99677918, 1.99915638, 1.99915638, 1.99915638, 1.99915638,
1.99980927, 1.99980927, 1.99980927, 1.99980927, 1.99996263,
1.99996263, 1.99996263, 1.99996263, 1.99999363, 1.99999363,
1.99999363, 1.99999363, 1.99999905, 1.99999905, 1.99999905,
1.99999905, 1.99999988, 1.99999988, 1.99999988, 1.99999988,
1.99999999, 1.99999999, 1.99999999, 1.99999999, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.39999991, 0.39999991, 0.39999991, 0.39999991,
0.39999929, 0.39999929, 0.39999929, 0.39999929, 0.39999523,
0.39999523, 0.39999523, 0.39999523, 0.39997203, 0.39997203,
0.39997203, 0.39997203, 0.3998573 , 0.3998573 , 0.3998573 ,
0.3998573 , 0.39936918, 0.39936918, 0.39936918, 0.39936918,
0.39759656, 0.39759656, 0.39759656, 0.39759656, 0.3921548 ,
0.3921548 , 0.3921548 , 0.3921548 , 0.37818642, 0.37818642,
0.37818642, 0.37818642, 0.34849857, 0.34849857, 0.34849857,
0.34849857, 0.29650042, 0.29650042, 0.29650042, 0.29650042,
0.2208956 , 0.2208956 , 0.2208956 , 0.2208956 , 0.14629492,
0.14629492, 0.14629492, 0.14629492, 0.09330567, 0.09330567,
0.09330567, 0.09330567, 0.05957303, 0.05957303, 0.05957303,
0.05957303, 0.03932213, 0.03932213, 0.03932213, 0.03932213,
0.02792703, 0.02792703, 0.02792703, 0.02792703, 0.02269662,
0.02269662, 0.02269662, 0.02269662, 0.02269662, 0.02269662,
0.02269662, 0.02269662, 0.02792703, 0.02792703, 0.02792703,
0.02792703, 0.03932213, 0.03932213, 0.03932213, 0.03932213,
0.05957303, 0.05957303, 0.05957303, 0.05957303, 0.09330567,
0.09330567, 0.09330567, 0.09330567, 0.14629492, 0.14629492,
0.14629492, 0.14629492, 0.2208956 , 0.2208956 , 0.2208956 ,
0.2208956 , 0.29650042, 0.29650042, 0.29650042, 0.29650042,
0.34849857, 0.34849857, 0.34849857, 0.34849857, 0.37818642,
0.37818642, 0.37818642, 0.37818642, 0.3921548 , 0.3921548 ,
0.3921548 , 0.3921548 , 0.39759656, 0.39759656, 0.39759656,
0.39759656, 0.39936918, 0.39936918, 0.39936918, 0.39936918,
0.3998573 , 0.3998573 , 0.3998573 , 0.3998573 , 0.39997203,
0.39997203, 0.39997203, 0.39997203, 0.39999523, 0.39999523,
0.39999523, 0.39999523, 0.39999929, 0.39999929, 0.39999929,
0.39999929, 0.39999991, 0.39999991, 0.39999991, 0.39999991,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999985, 0.99999985, 0.99999985,
0.99999985, 0.99999892, 0.99999892, 0.99999892, 0.99999892,
0.99999303, 0.99999303, 0.99999303, 0.99999303, 0.99996053,
0.99996053, 0.99996053, 0.99996053, 0.99980322, 0.99980322,
0.99980322, 0.99980322, 0.99913934, 0.99913934, 0.99913934,
0.99913934, 0.99670847, 0.99670847, 0.99670847, 0.99670847,
0.98903707, 0.98903707, 0.98903707, 0.98903707, 0.96833192,
0.96833192, 0.96833192, 0.96833192, 0.92092038, 0.92092038,
0.92092038, 0.92092038, 0.82944669, 0.82944669, 0.82944669,
0.82944669, 0.68051663, 0.68051663, 0.68051663, 0.68051663,
0.48474848, 0.48474848, 0.48474848, 0.48474848, 0.32005625,
0.32005625, 0.32005625, 0.32005625, 0.20735316, 0.20735316,
0.20735316, 0.20735316, 0.13644564, 0.13644564, 0.13644564,
0.13644564, 0.0944557 , 0.0944557 , 0.0944557 , 0.0944557 ,
0.07160431, 0.07160431, 0.07160431, 0.07160431, 0.06148045,
0.06148045, 0.06148045, 0.06148045, 0.06148045, 0.06148045,
0.06148045, 0.06148045, 0.07160431, 0.07160431, 0.07160431,
0.07160431, 0.0944557 , 0.0944557 , 0.0944557 , 0.0944557 ,
0.13644564, 0.13644564, 0.13644564, 0.13644564, 0.20735316,
0.20735316, 0.20735316, 0.20735316, 0.32005625, 0.32005625,
0.32005625, 0.32005625, 0.48474848, 0.48474848, 0.48474848,
0.48474848, 0.68051663, 0.68051663, 0.68051663, 0.68051663,
0.82944669, 0.82944669, 0.82944669, 0.82944669, 0.92092038,
0.92092038, 0.92092038, 0.92092038, 0.96833192, 0.96833192,
0.96833192, 0.96833192, 0.98903707, 0.98903707, 0.98903707,
0.98903707, 0.99670847, 0.99670847, 0.99670847, 0.99670847,
0.99913934, 0.99913934, 0.99913934, 0.99913934, 0.99980322,
0.99980322, 0.99980322, 0.99980322, 0.99996053, 0.99996053,
0.99996053, 0.99996053, 0.99999303, 0.99999303, 0.99999303,
0.99999303, 0.99999892, 0.99999892, 0.99999892, 0.99999892,
0.99999985, 0.99999985, 0.99999985, 0.99999985, 0.99999998,
0.99999998, 0.99999998, 0.99999998, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999989, -1.99999989, -1.99999989,
-1.99999989, -1.99999919, -1.99999919, -1.99999919, -1.99999919,
-1.99999483, -1.99999483, -1.99999483, -1.99999483, -1.99997083,
-1.99997083, -1.99997083, -1.99997083, -1.99985541, -1.99985541,
-1.99985541, -1.99985541, -1.99937283, -1.99937283, -1.99937283,
-1.99937283, -1.99762886, -1.99762886, -1.99762886, -1.99762886,
-1.99221523, -1.99221523, -1.99221523, -1.99221523, -1.97783629,
-1.97783629, -1.97783629, -1.97783629, -1.94507807, -1.94507807,
-1.94507807, -1.94507807, -1.8802642 , -1.8802642 , -1.8802642 ,
-1.8802642 , -1.76657936, -1.76657936, -1.76657936, -1.76657936,
-1.59538283, -1.59538283, -1.59538283, -1.59538283, -1.3846481 ,
-1.3846481 , -1.3846481 , -1.3846481 , -1.15263124, -1.15263124,
-1.15263124, -1.15263124, -0.90932231, -0.90932231, -0.90932231,
-0.90932231, -0.6608509 , -0.6608509 , -0.6608509 , -0.6608509 ,
-0.41335342, -0.41335342, -0.41335342, -0.41335342, -0.16579062,
-0.16579062, -0.16579062, -0.16579062, 0.16579062, 0.16579062,
0.16579062, 0.16579062, 0.41335342, 0.41335342, 0.41335342,
0.41335342, 0.6608509 , 0.6608509 , 0.6608509 , 0.6608509 ,
0.90932231, 0.90932231, 0.90932231, 0.90932231, 1.15263124,
1.15263124, 1.15263124, 1.15263124, 1.3846481 , 1.3846481 ,
1.3846481 , 1.3846481 , 1.59538283, 1.59538283, 1.59538283,
1.59538283, 1.76657936, 1.76657936, 1.76657936, 1.76657936,
1.8802642 , 1.8802642 , 1.8802642 , 1.8802642 , 1.94507807,
1.94507807, 1.94507807, 1.94507807, 1.97783629, 1.97783629,
1.97783629, 1.97783629, 1.99221523, 1.99221523, 1.99221523,
1.99221523, 1.99762886, 1.99762886, 1.99762886, 1.99762886,
1.99937283, 1.99937283, 1.99937283, 1.99937283, 1.99985541,
1.99985541, 1.99985541, 1.99985541, 1.99997083, 1.99997083,
1.99997083, 1.99997083, 1.99999483, 1.99999483, 1.99999483,
1.99999483, 1.99999919, 1.99999919, 1.99999919, 1.99999919,
1.99999989, 1.99999989, 1.99999989, 1.99999989, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999992, 0.39999992, 0.39999992,
0.39999992, 0.3999994 , 0.3999994 , 0.3999994 , 0.3999994 ,
0.39999613, 0.39999613, 0.39999613, 0.39999613, 0.39997817,
0.39997817, 0.39997817, 0.39997817, 0.39989181, 0.39989181,
0.39989181, 0.39989181, 0.39953094, 0.39953094, 0.39953094,
0.39953094, 0.39822935, 0.39822935, 0.39822935, 0.39822935,
0.39421346, 0.39421346, 0.39421346, 0.39421346, 0.38372292,
0.38372292, 0.38372292, 0.38372292, 0.36074975, 0.36074975,
0.36074975, 0.36074975, 0.31885934, 0.31885934, 0.31885934,
0.31885934, 0.25467937, 0.25467937, 0.25467937, 0.25467937,
0.17819705, 0.17819705, 0.17819705, 0.17819705, 0.11737308,
0.11737308, 0.11737308, 0.11737308, 0.07607236, 0.07607236,
0.07607236, 0.07607236, 0.04988617, 0.04988617, 0.04988617,
0.04988617, 0.03394821, 0.03394821, 0.03394821, 0.03394821,
0.02484589, 0.02484589, 0.02484589, 0.02484589, 0.02055858,
0.02055858, 0.02055858, 0.02055858, 0.02055858, 0.02055858,
0.02055858, 0.02055858, 0.02484589, 0.02484589, 0.02484589,
0.02484589, 0.03394821, 0.03394821, 0.03394821, 0.03394821,
0.04988617, 0.04988617, 0.04988617, 0.04988617, 0.07607236,
0.07607236, 0.07607236, 0.07607236, 0.11737308, 0.11737308,
0.11737308, 0.11737308, 0.17819705, 0.17819705, 0.17819705,
0.17819705, 0.25467937, 0.25467937, 0.25467937, 0.25467937,
0.31885934, 0.31885934, 0.31885934, 0.31885934, 0.36074975,
0.36074975, 0.36074975, 0.36074975, 0.38372292, 0.38372292,
0.38372292, 0.38372292, 0.39421346, 0.39421346, 0.39421346,
0.39421346, 0.39822935, 0.39822935, 0.39822935, 0.39822935,
0.39953094, 0.39953094, 0.39953094, 0.39953094, 0.39989181,
0.39989181, 0.39989181, 0.39989181, 0.39997817, 0.39997817,
0.39997817, 0.39997817, 0.39999613, 0.39999613, 0.39999613,
0.39999613, 0.3999994 , 0.3999994 , 0.3999994 , 0.3999994 ,
0.39999992, 0.39999992, 0.39999992, 0.39999992, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999987, 0.99999987,
0.99999987, 0.99999987, 0.99999909, 0.99999909, 0.99999909,
0.99999909, 0.99999442, 0.99999442, 0.99999442, 0.99999442,
0.99996944, 0.99996944, 0.99996944, 0.99996944, 0.99985168,
0.99985168, 0.99985168, 0.99985168, 0.99936346, 0.99936346,
0.99936346, 0.99936346, 0.99759219, 0.99759219, 0.99759219,
0.99759219, 0.99200342, 0.99200342, 0.99200342, 0.99200342,
0.9767769 , 0.9767769 , 0.9767769 , 0.9767769 , 0.9412236 ,
0.9412236 , 0.9412236 , 0.9412236 , 0.87054386, 0.87054386,
0.87054386, 0.87054386, 0.75130495, 0.75130495, 0.75130495,
0.75130495, 0.57926246, 0.57926246, 0.57926246, 0.57926246,
0.40024973, 0.40024973, 0.40024973, 0.40024973, 0.26645668,
0.26645668, 0.26645668, 0.26645668, 0.17646832, 0.17646832,
0.17646832, 0.17646832, 0.11952627, 0.11952627, 0.11952627,
0.11952627, 0.08529551, 0.08529551, 0.08529551, 0.08529551,
0.06638144, 0.06638144, 0.06638144, 0.06638144, 0.05773675,
0.05773675, 0.05773675, 0.05773675, 0.05773675, 0.05773675,
0.05773675, 0.05773675, 0.06638144, 0.06638144, 0.06638144,
0.06638144, 0.08529551, 0.08529551, 0.08529551, 0.08529551,
0.11952627, 0.11952627, 0.11952627, 0.11952627, 0.17646832,
0.17646832, 0.17646832, 0.17646832, 0.26645668, 0.26645668,
0.26645668, 0.26645668, 0.40024973, 0.40024973, 0.40024973,
0.40024973, 0.57926246, 0.57926246, 0.57926246, 0.57926246,
0.75130495, 0.75130495, 0.75130495, 0.75130495, 0.87054386,
0.87054386, 0.87054386, 0.87054386, 0.9412236 , 0.9412236 ,
0.9412236 , 0.9412236 , 0.9767769 , 0.9767769 , 0.9767769 ,
0.9767769 , 0.99200342, 0.99200342, 0.99200342, 0.99200342,
0.99759219, 0.99759219, 0.99759219, 0.99759219, 0.99936346,
0.99936346, 0.99936346, 0.99936346, 0.99985168, 0.99985168,
0.99985168, 0.99985168, 0.99996944, 0.99996944, 0.99996944,
0.99996944, 0.99999442, 0.99999442, 0.99999442, 0.99999442,
0.99999909, 0.99999909, 0.99999909, 0.99999909, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999998, 0.99999998,
0.99999998, 0.99999998, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.9999999 , -1.9999999 ,
-1.9999999 , -1.9999999 , -1.99999932, -1.99999932, -1.99999932,
-1.99999932, -1.99999585, -1.99999585, -1.99999585, -1.99999585,
-1.99997734, -1.99997734, -1.99997734, -1.99997734, -1.99989049,
-1.99989049, -1.99989049, -1.99989049, -1.99953296, -1.99953296,
-1.99953296, -1.99953296, -1.99824897, -1.99824897, -1.99824897,
-1.99824897, -1.99425094, -1.99425094, -1.99425094, -1.99425094,
-1.98350927, -1.98350927, -1.98350927, -1.98350927, -1.95861122,
-1.95861122, -1.95861122, -1.95861122, -1.90841269, -1.90841269,
-1.90841269, -1.90841269, -1.81883102, -1.81883102, -1.81883102,
-1.81883102, -1.67695384, -1.67695384, -1.67695384, -1.67695384,
-1.49066109, -1.49066109, -1.49066109, -1.49066109, -1.27974678,
-1.27974678, -1.27974678, -1.27974678, -1.05626743, -1.05626743,
-1.05626743, -1.05626743, -0.82669042, -0.82669042, -0.82669042,
-0.82669042, -0.59757719, -0.59757719, -0.59757719, -0.59757719,
-0.37196921, -0.37196921, -0.37196921, -0.37196921, -0.14921138,
-0.14921138, -0.14921138, -0.14921138, 0.14921138, 0.14921138,
0.14921138, 0.14921138, 0.37196921, 0.37196921, 0.37196921,
0.37196921, 0.59757719, 0.59757719, 0.59757719, 0.59757719,
0.82669042, 0.82669042, 0.82669042, 0.82669042, 1.05626743,
1.05626743, 1.05626743, 1.05626743, 1.27974678, 1.27974678,
1.27974678, 1.27974678, 1.49066109, 1.49066109, 1.49066109,
1.49066109, 1.67695384, 1.67695384, 1.67695384, 1.67695384,
1.81883102, 1.81883102, 1.81883102, 1.81883102, 1.90841269,
1.90841269, 1.90841269, 1.90841269, 1.95861122, 1.95861122,
1.95861122, 1.95861122, 1.98350927, 1.98350927, 1.98350927,
1.98350927, 1.99425094, 1.99425094, 1.99425094, 1.99425094,
1.99824897, 1.99824897, 1.99824897, 1.99824897, 1.99953296,
1.99953296, 1.99953296, 1.99953296, 1.99989049, 1.99989049,
1.99989049, 1.99989049, 1.99997734, 1.99997734, 1.99997734,
1.99997734, 1.99999585, 1.99999585, 1.99999585, 1.99999585,
1.99999932, 1.99999932, 1.99999932, 1.99999932, 1.9999999 ,
1.9999999 , 1.9999999 , 1.9999999 , 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.39999993, 0.39999993,
0.39999993, 0.39999993, 0.39999949, 0.39999949, 0.39999949,
0.39999949, 0.39999689, 0.39999689, 0.39999689, 0.39999689,
0.39998304, 0.39998304, 0.39998304, 0.39998304, 0.39991806,
0.39991806, 0.39991806, 0.39991806, 0.39965065, 0.39965065,
0.39965065, 0.39965065, 0.39869171, 0.39869171, 0.39869171,
0.39869171, 0.39571932, 0.39571932, 0.39571932, 0.39571932,
0.38783206, 0.38783206, 0.38783206, 0.38783206, 0.37008927,
0.37008927, 0.37008927, 0.37008927, 0.33650467, 0.33650467,
0.33650467, 0.33650467, 0.28304854, 0.28304854, 0.28304854,
0.28304854, 0.21124808, 0.21124808, 0.21124808, 0.21124808,
0.14423471, 0.14423471, 0.14423471, 0.14423471, 0.09564562,
0.09564562, 0.09564562, 0.09564562, 0.06325264, 0.06325264,
0.06325264, 0.06325264, 0.04258376, 0.04258376, 0.04258376,
0.04258376, 0.02981479, 0.02981479, 0.02981479, 0.02981479,
0.02240799, 0.02240799, 0.02240799, 0.02240799, 0.01882236,
0.01882236, 0.01882236, 0.01882236, 0.01882236, 0.01882236,
0.01882236, 0.01882236, 0.02240799, 0.02240799, 0.02240799,
0.02240799, 0.02981479, 0.02981479, 0.02981479, 0.02981479,
0.04258376, 0.04258376, 0.04258376, 0.04258376, 0.06325264,
0.06325264, 0.06325264, 0.06325264, 0.09564562, 0.09564562,
0.09564562, 0.09564562, 0.14423471, 0.14423471, 0.14423471,
0.14423471, 0.21124808, 0.21124808, 0.21124808, 0.21124808,
0.28304854, 0.28304854, 0.28304854, 0.28304854, 0.33650467,
0.33650467, 0.33650467, 0.33650467, 0.37008927, 0.37008927,
0.37008927, 0.37008927, 0.38783206, 0.38783206, 0.38783206,
0.38783206, 0.39571932, 0.39571932, 0.39571932, 0.39571932,
0.39869171, 0.39869171, 0.39869171, 0.39869171, 0.39965065,
0.39965065, 0.39965065, 0.39965065, 0.39991806, 0.39991806,
0.39991806, 0.39991806, 0.39998304, 0.39998304, 0.39998304,
0.39998304, 0.39999689, 0.39999689, 0.39999689, 0.39999689,
0.39999949, 0.39999949, 0.39999949, 0.39999949, 0.39999993,
0.39999993, 0.39999993, 0.39999993, 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999989,
0.99999989, 0.99999989, 0.99999989, 0.99999925, 0.99999925,
0.99999925, 0.99999925, 0.99999556, 0.99999556, 0.99999556,
0.99999556, 0.99997641, 0.99997641, 0.99997641, 0.99997641,
0.99988813, 0.99988813, 0.99988813, 0.99988813, 0.99952767,
0.99952767, 0.99952767, 0.99952767, 0.99822984, 0.99822984,
0.99822984, 0.99822984, 0.99413331, 0.99413331, 0.99413331,
0.99413331, 0.98287358, 0.98287358, 0.98287358, 0.98287358,
0.95611358, 0.95611358, 0.95611358, 0.95611358, 0.90147495,
0.90147495, 0.90147495, 0.90147495, 0.80606099, 0.80606099,
0.80606099, 0.80606099, 0.6629508 , 0.6629508 , 0.6629508 ,
0.6629508 , 0.48526898, 0.48526898, 0.48526898, 0.48526898,
0.33418244, 0.33418244, 0.33418244, 0.33418244, 0.22557052,
0.22557052, 0.22557052, 0.22557052, 0.15279734, 0.15279734,
0.15279734, 0.15279734, 0.10633769, 0.10633769, 0.10633769,
0.10633769, 0.07797773, 0.07797773, 0.07797773, 0.07797773,
0.06207329, 0.06207329, 0.06207329, 0.06207329, 0.05456806,
0.05456806, 0.05456806, 0.05456806, 0.05456806, 0.05456806,
0.05456806, 0.05456806, 0.06207329, 0.06207329, 0.06207329,
0.06207329, 0.07797773, 0.07797773, 0.07797773, 0.07797773,
0.10633769, 0.10633769, 0.10633769, 0.10633769, 0.15279734,
0.15279734, 0.15279734, 0.15279734, 0.22557052, 0.22557052,
0.22557052, 0.22557052, 0.33418244, 0.33418244, 0.33418244,
0.33418244, 0.48526898, 0.48526898, 0.48526898, 0.48526898,
0.6629508 , 0.6629508 , 0.6629508 , 0.6629508 , 0.80606099,
0.80606099, 0.80606099, 0.80606099, 0.90147495, 0.90147495,
0.90147495, 0.90147495, 0.95611358, 0.95611358, 0.95611358,
0.95611358, 0.98287358, 0.98287358, 0.98287358, 0.98287358,
0.99413331, 0.99413331, 0.99413331, 0.99413331, 0.99822984,
0.99822984, 0.99822984, 0.99822984, 0.99952767, 0.99952767,
0.99952767, 0.99952767, 0.99988813, 0.99988813, 0.99988813,
0.99988813, 0.99997641, 0.99997641, 0.99997641, 0.99997641,
0.99999556, 0.99999556, 0.99999556, 0.99999556, 0.99999925,
0.99999925, 0.99999925, 0.99999925, 0.99999989, 0.99999989,
0.99999989, 0.99999989, 0.99999998, 0.99999998, 0.99999998,
0.99999998, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999992,
-1.99999992, -1.99999992, -1.99999992, -1.99999944, -1.99999944,
-1.99999944, -1.99999944, -1.99999669, -1.99999669, -1.99999669,
-1.99999669, -1.99998246, -1.99998246, -1.99998246, -1.99998246,
-1.99991711, -1.99991711, -1.99991711, -1.99991711, -1.99965168,
-1.99965168, -1.99965168, -1.99965168, -1.99870348, -1.99870348,
-1.99870348, -1.99870348, -1.99574184, -1.99574184, -1.99574184,
-1.99574184, -1.98769693, -1.98769693, -1.98769693, -1.98769693,
-1.96872988, -1.96872988, -1.96872988, -1.96872988, -1.92973713,
-1.92973713, -1.92973713, -1.92973713, -1.85887548, -1.85887548,
-1.85887548, -1.85887548, -1.74322835, -1.74322835, -1.74322835,
-1.74322835, -1.58095486, -1.58095486, -1.58095486, -1.58095486,
-1.38977869, -1.38977869, -1.38977869, -1.38977869, -1.18354233,
-1.18354233, -1.18354233, -1.18354233, -0.97008458, -0.97008458,
-0.97008458, -0.97008458, -0.75449891, -0.75449891, -0.75449891,
-0.75449891, -0.54325511, -0.54325511, -0.54325511, -0.54325511,
-0.33655969, -0.33655969, -0.33655969, -0.33655969, -0.13490112,
-0.13490112, -0.13490112, -0.13490112, 0.13490112, 0.13490112,
0.13490112, 0.13490112, 0.33655969, 0.33655969, 0.33655969,
0.33655969, 0.54325511, 0.54325511, 0.54325511, 0.54325511,
0.75449891, 0.75449891, 0.75449891, 0.75449891, 0.97008458,
0.97008458, 0.97008458, 0.97008458, 1.18354233, 1.18354233,
1.18354233, 1.18354233, 1.38977869, 1.38977869, 1.38977869,
1.38977869, 1.58095486, 1.58095486, 1.58095486, 1.58095486,
1.74322835, 1.74322835, 1.74322835, 1.74322835, 1.85887548,
1.85887548, 1.85887548, 1.85887548, 1.92973713, 1.92973713,
1.92973713, 1.92973713, 1.96872988, 1.96872988, 1.96872988,
1.96872988, 1.98769693, 1.98769693, 1.98769693, 1.98769693,
1.99574184, 1.99574184, 1.99574184, 1.99574184, 1.99870348,
1.99870348, 1.99870348, 1.99870348, 1.99965168, 1.99965168,
1.99965168, 1.99965168, 1.99991711, 1.99991711, 1.99991711,
1.99991711, 1.99998246, 1.99998246, 1.99998246, 1.99998246,
1.99999669, 1.99999669, 1.99999669, 1.99999669, 1.99999944,
1.99999944, 1.99999944, 1.99999944, 1.99999992, 1.99999992,
1.99999992, 1.99999992, 1.99999999, 1.99999999, 1.99999999,
1.99999999, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.39999994,
0.39999994, 0.39999994, 0.39999994, 0.39999958, 0.39999958,
0.39999958, 0.39999958, 0.39999752, 0.39999752, 0.39999752,
0.39999752, 0.39998688, 0.39998688, 0.39998688, 0.39998688,
0.39993797, 0.39993797, 0.39993797, 0.39993797, 0.39973943,
0.39973943, 0.39973943, 0.39973943, 0.39903091, 0.39903091,
0.39903091, 0.39903091, 0.3968254 , 0.3968254 , 0.3968254 ,
0.3968254 , 0.3908901 , 0.3908901 , 0.3908901 , 0.3908901 ,
0.37721105, 0.37721105, 0.37721105, 0.37721105, 0.35042673,
0.35042673, 0.35042673, 0.35042673, 0.30601973, 0.30601973,
0.30601973, 0.30601973, 0.2429103 , 0.2429103 , 0.2429103 ,
0.2429103 , 0.17315145, 0.17315145, 0.17315145, 0.17315145,
0.11794307, 0.11794307, 0.11794307, 0.11794307, 0.07926119,
0.07926119, 0.07926119, 0.07926119, 0.05354337, 0.05354337,
0.05354337, 0.05354337, 0.03697472, 0.03697472, 0.03697472,
0.03697472, 0.02657161, 0.02657161, 0.02657161, 0.02657161,
0.02044322, 0.02044322, 0.02044322, 0.02044322, 0.01738792,
0.01738792, 0.01738792, 0.01738792, 0.01738792, 0.01738792,
0.01738792, 0.01738792, 0.02044322, 0.02044322, 0.02044322,
0.02044322, 0.02657161, 0.02657161, 0.02657161, 0.02657161,
0.03697472, 0.03697472, 0.03697472, 0.03697472, 0.05354337,
0.05354337, 0.05354337, 0.05354337, 0.07926119, 0.07926119,
0.07926119, 0.07926119, 0.11794307, 0.11794307, 0.11794307,
0.11794307, 0.17315145, 0.17315145, 0.17315145, 0.17315145,
0.2429103 , 0.2429103 , 0.2429103 , 0.2429103 , 0.30601973,
0.30601973, 0.30601973, 0.30601973, 0.35042673, 0.35042673,
0.35042673, 0.35042673, 0.37721105, 0.37721105, 0.37721105,
0.37721105, 0.3908901 , 0.3908901 , 0.3908901 , 0.3908901 ,
0.3968254 , 0.3968254 , 0.3968254 , 0.3968254 , 0.39903091,
0.39903091, 0.39903091, 0.39903091, 0.39973943, 0.39973943,
0.39973943, 0.39973943, 0.39993797, 0.39993797, 0.39993797,
0.39993797, 0.39998688, 0.39998688, 0.39998688, 0.39998688,
0.39999752, 0.39999752, 0.39999752, 0.39999752, 0.39999958,
0.39999958, 0.39999958, 0.39999958, 0.39999994, 0.39999994,
0.39999994, 0.39999994, 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999939,
0.99999939, 0.99999939, 0.99999939, 0.99999649, 0.99999649,
0.99999649, 0.99999649, 0.99998183, 0.99998183, 0.99998183,
0.99998183, 0.99991558, 0.99991558, 0.99991558, 0.99991558,
0.99964859, 0.99964859, 0.99964859, 0.99964859, 0.99869334,
0.99869334, 0.99869334, 0.99869334, 0.99567568, 0.99567568,
0.99567568, 0.99567568, 0.98731173, 0.98731173, 0.98731173,
0.98731173, 0.96710867, 0.96710867, 0.96710867, 0.96710867,
0.92484524, 0.92484524, 0.92484524, 0.92484524, 0.84862997,
0.84862997, 0.84862997, 0.84862997, 0.73030183, 0.73030183,
0.73030183, 0.73030183, 0.57045438, 0.57045438, 0.57045438,
0.57045438, 0.40816609, 0.40816609, 0.40816609, 0.40816609,
0.28274734, 0.28274734, 0.28274734, 0.28274734, 0.19398103,
0.19398103, 0.19398103, 0.19398103, 0.13432377, 0.13432377,
0.13432377, 0.13432377, 0.09586862, 0.09586862, 0.09586862,
0.09586862, 0.07203503, 0.07203503, 0.07203503, 0.07203503,
0.05845869, 0.05845869, 0.05845869, 0.05845869, 0.05185684,
0.05185684, 0.05185684, 0.05185684, 0.05185684, 0.05185684,
0.05185684, 0.05185684, 0.05845869, 0.05845869, 0.05845869,
0.05845869, 0.07203503, 0.07203503, 0.07203503, 0.07203503,
0.09586862, 0.09586862, 0.09586862, 0.09586862, 0.13432377,
0.13432377, 0.13432377, 0.13432377, 0.19398103, 0.19398103,
0.19398103, 0.19398103, 0.28274734, 0.28274734, 0.28274734,
0.28274734, 0.40816609, 0.40816609, 0.40816609, 0.40816609,
0.57045438, 0.57045438, 0.57045438, 0.57045438, 0.73030183,
0.73030183, 0.73030183, 0.73030183, 0.84862997, 0.84862997,
0.84862997, 0.84862997, 0.92484524, 0.92484524, 0.92484524,
0.92484524, 0.96710867, 0.96710867, 0.96710867, 0.96710867,
0.98731173, 0.98731173, 0.98731173, 0.98731173, 0.99567568,
0.99567568, 0.99567568, 0.99567568, 0.99869334, 0.99869334,
0.99869334, 0.99869334, 0.99964859, 0.99964859, 0.99964859,
0.99964859, 0.99991558, 0.99991558, 0.99991558, 0.99991558,
0.99998183, 0.99998183, 0.99998183, 0.99998183, 0.99999649,
0.99999649, 0.99999649, 0.99999649, 0.99999939, 0.99999939,
0.99999939, 0.99999939, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999999, -1.99999999, -1.99999999, -1.99999999,
-1.99999993, -1.99999993, -1.99999993, -1.99999993, -1.99999954,
-1.99999954, -1.99999954, -1.99999954, -1.99999738, -1.99999738,
-1.99999738, -1.99999738, -1.99998647, -1.99998647, -1.99998647,
-1.99998647, -1.99993728, -1.99993728, -1.99993728, -1.99993728,
-1.99973987, -1.99973987, -1.99973987, -1.99973987, -1.99903782,
-1.99903782, -1.99903782, -1.99903782, -1.99683832, -1.99683832,
-1.99683832, -1.99683832, -1.99080138, -1.99080138, -1.99080138,
-1.99080138, -1.97633249, -1.97633249, -1.97633249, -1.97633249,
-1.94599313, -1.94599313, -1.94599313, -1.94599313, -1.88979468,
-1.88979468, -1.88979468, -1.88979468, -1.79631905, -1.79631905,
-1.79631905, -1.79631905, -1.6576443 , -1.6576443 , -1.6576443 ,
-1.6576443 , -1.48538656, -1.48538656, -1.48538656, -1.48538656,
-1.2953169 , -1.2953169 , -1.2953169 , -1.2953169 , -1.09614182,
-1.09614182, -1.09614182, -1.09614182, -0.89312519, -0.89312519,
-0.89312519, -0.89312519, -0.69159993, -0.69159993, -0.69159993,
-0.69159993, -0.49608761, -0.49608761, -0.49608761, -0.49608761,
-0.30589519, -0.30589519, -0.30589519, -0.30589519, -0.1224437 ,
-0.1224437 , -0.1224437 , -0.1224437 , 0.1224437 , 0.1224437 ,
0.1224437 , 0.1224437 , 0.30589519, 0.30589519, 0.30589519,
0.30589519, 0.49608761, 0.49608761, 0.49608761, 0.49608761,
0.69159993, 0.69159993, 0.69159993, 0.69159993, 0.89312519,
0.89312519, 0.89312519, 0.89312519, 1.09614182, 1.09614182,
1.09614182, 1.09614182, 1.2953169 , 1.2953169 , 1.2953169 ,
1.2953169 , 1.48538656, 1.48538656, 1.48538656, 1.48538656,
1.6576443 , 1.6576443 , 1.6576443 , 1.6576443 , 1.79631905,
1.79631905, 1.79631905, 1.79631905, 1.88979468, 1.88979468,
1.88979468, 1.88979468, 1.94599313, 1.94599313, 1.94599313,
1.94599313, 1.97633249, 1.97633249, 1.97633249, 1.97633249,
1.99080138, 1.99080138, 1.99080138, 1.99080138, 1.99683832,
1.99683832, 1.99683832, 1.99683832, 1.99903782, 1.99903782,
1.99903782, 1.99903782, 1.99973987, 1.99973987, 1.99973987,
1.99973987, 1.99993728, 1.99993728, 1.99993728, 1.99993728,
1.99998647, 1.99998647, 1.99998647, 1.99998647, 1.99999738,
1.99999738, 1.99999738, 1.99999738, 1.99999954, 1.99999954,
1.99999954, 1.99999954, 1.99999993, 1.99999993, 1.99999993,
1.99999993, 1.99999999, 1.99999999, 1.99999999, 1.99999999,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.39999995, 0.39999995, 0.39999995, 0.39999995, 0.39999966,
0.39999966, 0.39999966, 0.39999966, 0.39999804, 0.39999804,
0.39999804, 0.39999804, 0.39998987, 0.39998987, 0.39998987,
0.39998987, 0.39995307, 0.39995307, 0.39995307, 0.39995307,
0.39980539, 0.39980539, 0.39980539, 0.39980539, 0.3992806 ,
0.3992806 , 0.3992806 , 0.3992806 , 0.39764064, 0.39764064,
0.39764064, 0.39764064, 0.39317093, 0.39317093, 0.39317093,
0.39317093, 0.38264177, 0.38264177, 0.38264177, 0.38264177,
0.36137899, 0.36137899, 0.36137899, 0.36137899, 0.32475714,
0.32475714, 0.32475714, 0.32475714, 0.27081681, 0.27081681,
0.27081681, 0.27081681, 0.20299886, 0.20299886, 0.20299886,
0.20299886, 0.14255583, 0.14255583, 0.14255583, 0.14255583,
0.09774256, 0.09774256, 0.09774256, 0.09774256, 0.06676014,
0.06676014, 0.06676014, 0.06676014, 0.0460604 , 0.0460604 ,
0.0460604 , 0.0460604 , 0.03258929, 0.03258929, 0.03258929,
0.03258929, 0.02397966, 0.02397966, 0.02397966, 0.02397966,
0.01882915, 0.01882915, 0.01882915, 0.01882915, 0.01618681,
0.01618681, 0.01618681, 0.01618681, 0.01618681, 0.01618681,
0.01618681, 0.01618681, 0.01882915, 0.01882915, 0.01882915,
0.01882915, 0.02397966, 0.02397966, 0.02397966, 0.02397966,
0.03258929, 0.03258929, 0.03258929, 0.03258929, 0.0460604 ,
0.0460604 , 0.0460604 , 0.0460604 , 0.06676014, 0.06676014,
0.06676014, 0.06676014, 0.09774256, 0.09774256, 0.09774256,
0.09774256, 0.14255583, 0.14255583, 0.14255583, 0.14255583,
0.20299886, 0.20299886, 0.20299886, 0.20299886, 0.27081681,
0.27081681, 0.27081681, 0.27081681, 0.32475714, 0.32475714,
0.32475714, 0.32475714, 0.36137899, 0.36137899, 0.36137899,
0.36137899, 0.38264177, 0.38264177, 0.38264177, 0.38264177,
0.39317093, 0.39317093, 0.39317093, 0.39317093, 0.39764064,
0.39764064, 0.39764064, 0.39764064, 0.3992806 , 0.3992806 ,
0.3992806 , 0.3992806 , 0.39980539, 0.39980539, 0.39980539,
0.39980539, 0.39995307, 0.39995307, 0.39995307, 0.39995307,
0.39998987, 0.39998987, 0.39998987, 0.39998987, 0.39999804,
0.39999804, 0.39999804, 0.39999804, 0.39999966, 0.39999966,
0.39999966, 0.39999966, 0.39999995, 0.39999995, 0.39999995,
0.39999995, 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999992, 0.99999992, 0.99999992, 0.99999992,
0.9999995 , 0.9999995 , 0.9999995 , 0.9999995 , 0.99999723,
0.99999723, 0.99999723, 0.99999723, 0.99998603, 0.99998603,
0.99998603, 0.99998603, 0.99993626, 0.99993626, 0.99993626,
0.99993626, 0.99973797, 0.99973797, 0.99973797, 0.99973797,
0.99903226, 0.99903226, 0.99903226, 0.99903226, 0.99680035,
0.99680035, 0.99680035, 0.99680035, 0.9905648 , 0.9905648 ,
0.9905648 , 0.9905648 , 0.97527455, 0.97527455, 0.97527455,
0.97527455, 0.94256862, 0.94256862, 0.94256862, 0.94256862,
0.88183579, 0.88183579, 0.88183579, 0.88183579, 0.78418099,
0.78418099, 0.78418099, 0.78418099, 0.64735855, 0.64735855,
0.64735855, 0.64735855, 0.48541238, 0.48541238, 0.48541238,
0.48541238, 0.34650377, 0.34650377, 0.34650377, 0.34650377,
0.24248092, 0.24248092, 0.24248092, 0.24248092, 0.1691994 ,
0.1691994 , 0.1691994 , 0.1691994 , 0.11970527, 0.11970527,
0.11970527, 0.11970527, 0.08740499, 0.08740499, 0.08740499,
0.08740499, 0.06712094, 0.06712094, 0.06712094, 0.06712094,
0.05538396, 0.05538396, 0.05538396, 0.05538396, 0.04951554,
0.04951554, 0.04951554, 0.04951554, 0.04951554, 0.04951554,
0.04951554, 0.04951554, 0.05538396, 0.05538396, 0.05538396,
0.05538396, 0.06712094, 0.06712094, 0.06712094, 0.06712094,
0.08740499, 0.08740499, 0.08740499, 0.08740499, 0.11970527,
0.11970527, 0.11970527, 0.11970527, 0.1691994 , 0.1691994 ,
0.1691994 , 0.1691994 , 0.24248092, 0.24248092, 0.24248092,
0.24248092, 0.34650377, 0.34650377, 0.34650377, 0.34650377,
0.48541238, 0.48541238, 0.48541238, 0.48541238, 0.64735855,
0.64735855, 0.64735855, 0.64735855, 0.78418099, 0.78418099,
0.78418099, 0.78418099, 0.88183579, 0.88183579, 0.88183579,
0.88183579, 0.94256862, 0.94256862, 0.94256862, 0.94256862,
0.97527455, 0.97527455, 0.97527455, 0.97527455, 0.9905648 ,
0.9905648 , 0.9905648 , 0.9905648 , 0.99680035, 0.99680035,
0.99680035, 0.99680035, 0.99903226, 0.99903226, 0.99903226,
0.99903226, 0.99973797, 0.99973797, 0.99973797, 0.99973797,
0.99993626, 0.99993626, 0.99993626, 0.99993626, 0.99998603,
0.99998603, 0.99998603, 0.99998603, 0.99999723, 0.99999723,
0.99999723, 0.99999723, 0.9999995 , 0.9999995 , 0.9999995 ,
0.9999995 , 0.99999992, 0.99999992, 0.99999992, 0.99999992,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999999, -1.99999999, -1.99999999,
-1.99999999, -1.99999994, -1.99999994, -1.99999994, -1.99999994,
-1.99999963, -1.99999963, -1.99999963, -1.99999963, -1.99999794,
-1.99999794, -1.99999794, -1.99999794, -1.99998958, -1.99998958,
-1.99998958, -1.99998958, -1.99995256, -1.99995256, -1.99995256,
-1.99995256, -1.99980549, -1.99980549, -1.99980549, -1.99980549,
-1.99928452, -1.99928452, -1.99928452, -1.99928452, -1.99764753,
-1.99764753, -1.99764753, -1.99764753, -1.99311048, -1.99311048,
-1.99311048, -1.99311048, -1.98206428, -1.98206428, -1.98206428,
-1.98206428, -1.95844341, -1.95844341, -1.95844341, -1.95844341,
-1.91379852, -1.91379852, -1.91379852, -1.91379852, -1.83816147,
-1.83816147, -1.83816147, -1.83816147, -1.72200283, -1.72200283,
-1.72200283, -1.72200283, -1.5686055 , -1.5686055 , -1.5686055 ,
-1.5686055 , -1.39383447, -1.39383447, -1.39383447, -1.39383447,
-1.20815672, -1.20815672, -1.20815672, -1.20815672, -1.0169296 ,
-1.0169296 , -1.0169296 , -1.0169296 , -0.82477131, -0.82477131,
-0.82477131, -0.82477131, -0.6364046 , -0.6364046 , -0.6364046 ,
-0.6364046 , -0.4547917 , -0.4547917 , -0.4547917 , -0.4547917 ,
-0.2790745 , -0.2790745 , -0.2790745 , -0.2790745 , -0.11151766,
-0.11151766, -0.11151766, -0.11151766, 0.11151766, 0.11151766,
0.11151766, 0.11151766, 0.2790745 , 0.2790745 , 0.2790745 ,
0.2790745 , 0.4547917 , 0.4547917 , 0.4547917 , 0.4547917 ,
0.6364046 , 0.6364046 , 0.6364046 , 0.6364046 , 0.82477131,
0.82477131, 0.82477131, 0.82477131, 1.0169296 , 1.0169296 ,
1.0169296 , 1.0169296 , 1.20815672, 1.20815672, 1.20815672,
1.20815672, 1.39383447, 1.39383447, 1.39383447, 1.39383447,
1.5686055 , 1.5686055 , 1.5686055 , 1.5686055 , 1.72200283,
1.72200283, 1.72200283, 1.72200283, 1.83816147, 1.83816147,
1.83816147, 1.83816147, 1.91379852, 1.91379852, 1.91379852,
1.91379852, 1.95844341, 1.95844341, 1.95844341, 1.95844341,
1.98206428, 1.98206428, 1.98206428, 1.98206428, 1.99311048,
1.99311048, 1.99311048, 1.99311048, 1.99764753, 1.99764753,
1.99764753, 1.99764753, 1.99928452, 1.99928452, 1.99928452,
1.99928452, 1.99980549, 1.99980549, 1.99980549, 1.99980549,
1.99995256, 1.99995256, 1.99995256, 1.99995256, 1.99998958,
1.99998958, 1.99998958, 1.99998958, 1.99999794, 1.99999794,
1.99999794, 1.99999794, 1.99999963, 1.99999963, 1.99999963,
1.99999963, 1.99999994, 1.99999994, 1.99999994, 1.99999994,
1.99999999, 1.99999999, 1.99999999, 1.99999999, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.39999995, 0.39999995, 0.39999995, 0.39999995,
0.39999972, 0.39999972, 0.39999972, 0.39999972, 0.39999845,
0.39999845, 0.39999845, 0.39999845, 0.3999922 , 0.3999922 ,
0.3999922 , 0.3999922 , 0.3999645 , 0.3999645 , 0.3999645 ,
0.3999645 , 0.39985447, 0.39985447, 0.39985447, 0.39985447,
0.39946494, 0.39946494, 0.39946494, 0.39946494, 0.39824326,
0.39824326, 0.39824326, 0.39824326, 0.39487515, 0.39487515,
0.39487515, 0.39487515, 0.38678213, 0.38678213, 0.38678213,
0.38678213, 0.36997261, 0.36997261, 0.36997261, 0.36997261,
0.33997315, 0.33997315, 0.33997315, 0.33997315, 0.29399724,
0.29399724, 0.29399724, 0.29399724, 0.23259591, 0.23259591,
0.23259591, 0.23259591, 0.16883656, 0.16883656, 0.16883656,
0.16883656, 0.1184801 , 0.1184801 , 0.1184801 , 0.1184801 ,
0.08215271, 0.08215271, 0.08215271, 0.08215271, 0.05707693,
0.05707693, 0.05707693, 0.05707693, 0.04021806, 0.04021806,
0.04021806, 0.04021806, 0.02909278, 0.02909278, 0.02909278,
0.02909278, 0.02186882, 0.02186882, 0.02186882, 0.02186882,
0.01748226, 0.01748226, 0.01748226, 0.01748226, 0.01516957,
0.01516957, 0.01516957, 0.01516957, 0.01516957, 0.01516957,
0.01516957, 0.01516957, 0.01748226, 0.01748226, 0.01748226,
0.01748226, 0.02186882, 0.02186882, 0.02186882, 0.02186882,
0.02909278, 0.02909278, 0.02909278, 0.02909278, 0.04021806,
0.04021806, 0.04021806, 0.04021806, 0.05707693, 0.05707693,
0.05707693, 0.05707693, 0.08215271, 0.08215271, 0.08215271,
0.08215271, 0.1184801 , 0.1184801 , 0.1184801 , 0.1184801 ,
0.16883656, 0.16883656, 0.16883656, 0.16883656, 0.23259591,
0.23259591, 0.23259591, 0.23259591, 0.29399724, 0.29399724,
0.29399724, 0.29399724, 0.33997315, 0.33997315, 0.33997315,
0.33997315, 0.36997261, 0.36997261, 0.36997261, 0.36997261,
0.38678213, 0.38678213, 0.38678213, 0.38678213, 0.39487515,
0.39487515, 0.39487515, 0.39487515, 0.39824326, 0.39824326,
0.39824326, 0.39824326, 0.39946494, 0.39946494, 0.39946494,
0.39946494, 0.39985447, 0.39985447, 0.39985447, 0.39985447,
0.3999645 , 0.3999645 , 0.3999645 , 0.3999645 , 0.3999922 ,
0.3999922 , 0.3999922 , 0.3999922 , 0.39999845, 0.39999845,
0.39999845, 0.39999845, 0.39999972, 0.39999972, 0.39999972,
0.39999972, 0.39999995, 0.39999995, 0.39999995, 0.39999995,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999993, 0.99999993, 0.99999993,
0.99999993, 0.9999996 , 0.9999996 , 0.9999996 , 0.9999996 ,
0.99999783, 0.99999783, 0.99999783, 0.99999783, 0.99998928,
0.99998928, 0.99998928, 0.99998928, 0.99995186, 0.99995186,
0.99995186, 0.99995186, 0.99980426, 0.99980426, 0.99980426,
0.99980426, 0.99928131, 0.99928131, 0.99928131, 0.99928131,
0.99762508, 0.99762508, 0.99762508, 0.99762508, 0.99296268,
0.99296268, 0.99296268, 0.99296268, 0.98136837, 0.98136837,
0.98136837, 0.98136837, 0.95605219, 0.95605219, 0.95605219,
0.95605219, 0.90775469, 0.90775469, 0.90775469, 0.90775469,
0.8274799 , 0.8274799 , 0.8274799 , 0.8274799 , 0.71123499,
0.71123499, 0.71123499, 0.71123499, 0.56257394, 0.56257394,
0.56257394, 0.56257394, 0.41482443, 0.41482443, 0.41482443,
0.41482443, 0.29735686, 0.29735686, 0.29735686, 0.29735686,
0.21063026, 0.21063026, 0.21063026, 0.21063026, 0.14950195,
0.14950195, 0.14950195, 0.14950195, 0.10795008, 0.10795008,
0.10795008, 0.10795008, 0.08045076, 0.08045076, 0.08045076,
0.08045076, 0.06299373, 0.06299373, 0.06299373, 0.06299373,
0.05273851, 0.05273851, 0.05273851, 0.05273851, 0.04747753,
0.04747753, 0.04747753, 0.04747753, 0.04747753, 0.04747753,
0.04747753, 0.04747753, 0.05273851, 0.05273851, 0.05273851,
0.05273851, 0.06299373, 0.06299373, 0.06299373, 0.06299373,
0.08045076, 0.08045076, 0.08045076, 0.08045076, 0.10795008,
0.10795008, 0.10795008, 0.10795008, 0.14950195, 0.14950195,
0.14950195, 0.14950195, 0.21063026, 0.21063026, 0.21063026,
0.21063026, 0.29735686, 0.29735686, 0.29735686, 0.29735686,
0.41482443, 0.41482443, 0.41482443, 0.41482443, 0.56257394,
0.56257394, 0.56257394, 0.56257394, 0.71123499, 0.71123499,
0.71123499, 0.71123499, 0.8274799 , 0.8274799 , 0.8274799 ,
0.8274799 , 0.90775469, 0.90775469, 0.90775469, 0.90775469,
0.95605219, 0.95605219, 0.95605219, 0.95605219, 0.98136837,
0.98136837, 0.98136837, 0.98136837, 0.99296268, 0.99296268,
0.99296268, 0.99296268, 0.99762508, 0.99762508, 0.99762508,
0.99762508, 0.99928131, 0.99928131, 0.99928131, 0.99928131,
0.99980426, 0.99980426, 0.99980426, 0.99980426, 0.99995186,
0.99995186, 0.99995186, 0.99995186, 0.99998928, 0.99998928,
0.99998928, 0.99998928, 0.99999783, 0.99999783, 0.99999783,
0.99999783, 0.9999996 , 0.9999996 , 0.9999996 , 0.9999996 ,
0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999999,
0.99999999, 0.99999999, 0.99999999, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999995, -1.99999995, -1.99999995,
-1.99999995, -1.9999997 , -1.9999997 , -1.9999997 , -1.9999997 ,
-1.99999838, -1.99999838, -1.99999838, -1.99999838, -1.999992 ,
-1.999992 , -1.999992 , -1.999992 , -1.99996412, -1.99996412,
-1.99996412, -1.99996412, -1.9998544 , -1.9998544 , -1.9998544 ,
-1.9998544 , -1.99946704, -1.99946704, -1.99946704, -1.99946704,
-1.99824645, -1.99824645, -1.99824645, -1.99824645, -1.99483254,
-1.99483254, -1.99483254, -1.99483254, -1.98639614, -1.98639614,
-1.98639614, -1.98639614, -1.96800734, -1.96800734, -1.96800734,
-1.96800734, -1.93252426, -1.93252426, -1.93252426, -1.93252426,
-1.87126626, -1.87126626, -1.87126626, -1.87126626, -1.7751206 ,
-1.7751206 , -1.7751206 , -1.7751206 , -1.64074768, -1.64074768,
-1.64074768, -1.64074768, -1.48098841, -1.48098841, -1.48098841,
-1.48098841, -1.30798639, -1.30798639, -1.30798639, -1.30798639,
-1.12825891, -1.12825891, -1.12825891, -1.12825891, -0.94534791,
-0.94534791, -0.94534791, -0.94534791, -0.76396357, -0.76396357,
-0.76396357, -0.76396357, -0.58764765, -0.58764765, -0.58764765,
-0.58764765, -0.41836529, -0.41836529, -0.41836529, -0.41836529,
-0.25542058, -0.25542058, -0.25542058, -0.25542058, -0.10187127,
-0.10187127, -0.10187127, -0.10187127, 0.10187127, 0.10187127,
0.10187127, 0.10187127, 0.25542058, 0.25542058, 0.25542058,
0.25542058, 0.41836529, 0.41836529, 0.41836529, 0.41836529,
0.58764765, 0.58764765, 0.58764765, 0.58764765, 0.76396357,
0.76396357, 0.76396357, 0.76396357, 0.94534791, 0.94534791,
0.94534791, 0.94534791, 1.12825891, 1.12825891, 1.12825891,
1.12825891, 1.30798639, 1.30798639, 1.30798639, 1.30798639,
1.48098841, 1.48098841, 1.48098841, 1.48098841, 1.64074768,
1.64074768, 1.64074768, 1.64074768, 1.7751206 , 1.7751206 ,
1.7751206 , 1.7751206 , 1.87126626, 1.87126626, 1.87126626,
1.87126626, 1.93252426, 1.93252426, 1.93252426, 1.93252426,
1.96800734, 1.96800734, 1.96800734, 1.96800734, 1.98639614,
1.98639614, 1.98639614, 1.98639614, 1.99483254, 1.99483254,
1.99483254, 1.99483254, 1.99824645, 1.99824645, 1.99824645,
1.99824645, 1.99946704, 1.99946704, 1.99946704, 1.99946704,
1.9998544 , 1.9998544 , 1.9998544 , 1.9998544 , 1.99996412,
1.99996412, 1.99996412, 1.99996412, 1.999992 , 1.999992 ,
1.999992 , 1.999992 , 1.99999838, 1.99999838, 1.99999838,
1.99999838, 1.9999997 , 1.9999997 , 1.9999997 , 1.9999997 ,
1.99999995, 1.99999995, 1.99999995, 1.99999995, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999996, 0.39999996, 0.39999996,
0.39999996, 0.39999978, 0.39999978, 0.39999978, 0.39999978,
0.39999879, 0.39999879, 0.39999879, 0.39999879, 0.39999401,
0.39999401, 0.39999401, 0.39999401, 0.39997315, 0.39997315,
0.39997315, 0.39997315, 0.39989106, 0.39989106, 0.39989106,
0.39989106, 0.39960137, 0.39960137, 0.39960137, 0.39960137,
0.39868982, 0.39868982, 0.39868982, 0.39868982, 0.39615045,
0.39615045, 0.39615045, 0.39615045, 0.38993783, 0.38993783,
0.38993783, 0.38993783, 0.37669775, 0.37669775, 0.37669775,
0.37669775, 0.35227852, 0.35227852, 0.35227852, 0.35227852,
0.31341098, 0.31341098, 0.31341098, 0.31341098, 0.25954489,
0.25954489, 0.25954489, 0.25954489, 0.19612856, 0.19612856,
0.19612856, 0.19612856, 0.14111015, 0.14111015, 0.14111015,
0.14111015, 0.09961622, 0.09961622, 0.09961622, 0.09961622,
0.06999558, 0.06999558, 0.06999558, 0.06999558, 0.04947879,
0.04947879, 0.04947879, 0.04947879, 0.03558078, 0.03558078,
0.03558078, 0.03558078, 0.02625646, 0.02625646, 0.02625646,
0.02625646, 0.02012156, 0.02012156, 0.02012156, 0.02012156,
0.01634356, 0.01634356, 0.01634356, 0.01634356, 0.01429955,
0.01429955, 0.01429955, 0.01429955, 0.01429955, 0.01429955,
0.01429955, 0.01429955, 0.01634356, 0.01634356, 0.01634356,
0.01634356, 0.02012156, 0.02012156, 0.02012156, 0.02012156,
0.02625646, 0.02625646, 0.02625646, 0.02625646, 0.03558078,
0.03558078, 0.03558078, 0.03558078, 0.04947879, 0.04947879,
0.04947879, 0.04947879, 0.06999558, 0.06999558, 0.06999558,
0.06999558, 0.09961622, 0.09961622, 0.09961622, 0.09961622,
0.14111015, 0.14111015, 0.14111015, 0.14111015, 0.19612856,
0.19612856, 0.19612856, 0.19612856, 0.25954489, 0.25954489,
0.25954489, 0.25954489, 0.31341098, 0.31341098, 0.31341098,
0.31341098, 0.35227852, 0.35227852, 0.35227852, 0.35227852,
0.37669775, 0.37669775, 0.37669775, 0.37669775, 0.38993783,
0.38993783, 0.38993783, 0.38993783, 0.39615045, 0.39615045,
0.39615045, 0.39615045, 0.39868982, 0.39868982, 0.39868982,
0.39868982, 0.39960137, 0.39960137, 0.39960137, 0.39960137,
0.39989106, 0.39989106, 0.39989106, 0.39989106, 0.39997315,
0.39997315, 0.39997315, 0.39997315, 0.39999401, 0.39999401,
0.39999401, 0.39999401, 0.39999879, 0.39999879, 0.39999879,
0.39999879, 0.39999978, 0.39999978, 0.39999978, 0.39999978,
0.39999996, 0.39999996, 0.39999996, 0.39999996, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999968, 0.99999968, 0.99999968,
0.99999968, 0.99999831, 0.99999831, 0.99999831, 0.99999831,
0.99999178, 0.99999178, 0.99999178, 0.99999178, 0.99996362,
0.99996362, 0.99996362, 0.99996362, 0.99985355, 0.99985355,
0.99985355, 0.99985355, 0.99946503, 0.99946503, 0.99946503,
0.99946503, 0.99823265, 0.99823265, 0.99823265, 0.99823265,
0.99473829, 0.99473829, 0.99473829, 0.99473829, 0.98593371,
0.98593371, 0.98593371, 0.98593371, 0.96633684, 0.96633684,
0.96633684, 0.96633684, 0.92800166, 0.92800166, 0.92800166,
0.92800166, 0.86230381, 0.86230381, 0.86230381, 0.86230381,
0.7637657 , 0.7637657 , 0.7637657 , 0.7637657 , 0.63342418,
0.63342418, 0.63342418, 0.63342418, 0.48532735, 0.48532735,
0.48532735, 0.48532735, 0.3572482 , 0.3572482 , 0.3572482 ,
0.3572482 , 0.25800772, 0.25800772, 0.25800772, 0.25800772,
0.18513694, 0.18513694, 0.18513694, 0.18513694, 0.13365751,
0.13365751, 0.13365751, 0.13365751, 0.09833623, 0.09833623,
0.09833623, 0.09833623, 0.07466504, 0.07466504, 0.07466504,
0.07466504, 0.05948054, 0.05948054, 0.05948054, 0.05948054,
0.05044055, 0.05044055, 0.05044055, 0.05044055, 0.04569117,
0.04569117, 0.04569117, 0.04569117, 0.04569117, 0.04569117,
0.04569117, 0.04569117, 0.05044055, 0.05044055, 0.05044055,
0.05044055, 0.05948054, 0.05948054, 0.05948054, 0.05948054,
0.07466504, 0.07466504, 0.07466504, 0.07466504, 0.09833623,
0.09833623, 0.09833623, 0.09833623, 0.13365751, 0.13365751,
0.13365751, 0.13365751, 0.18513694, 0.18513694, 0.18513694,
0.18513694, 0.25800772, 0.25800772, 0.25800772, 0.25800772,
0.3572482 , 0.3572482 , 0.3572482 , 0.3572482 , 0.48532735,
0.48532735, 0.48532735, 0.48532735, 0.63342418, 0.63342418,
0.63342418, 0.63342418, 0.7637657 , 0.7637657 , 0.7637657 ,
0.7637657 , 0.86230381, 0.86230381, 0.86230381, 0.86230381,
0.92800166, 0.92800166, 0.92800166, 0.92800166, 0.96633684,
0.96633684, 0.96633684, 0.96633684, 0.98593371, 0.98593371,
0.98593371, 0.98593371, 0.99473829, 0.99473829, 0.99473829,
0.99473829, 0.99823265, 0.99823265, 0.99823265, 0.99823265,
0.99946503, 0.99946503, 0.99946503, 0.99946503, 0.99985355,
0.99985355, 0.99985355, 0.99985355, 0.99996362, 0.99996362,
0.99996362, 0.99996362, 0.99999178, 0.99999178, 0.99999178,
0.99999178, 0.99999831, 0.99999831, 0.99999831, 0.99999831,
0.99999968, 0.99999968, 0.99999968, 0.99999968, 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.99999999, 0.99999999,
0.99999999, 0.99999999, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.99999996, -1.99999996,
-1.99999996, -1.99999996, -1.99999976, -1.99999976, -1.99999976,
-1.99999976, -1.99999873, -1.99999873, -1.99999873, -1.99999873,
-1.99999386, -1.99999386, -1.99999386, -1.99999386, -1.99997286,
-1.99997286, -1.99997286, -1.99997286, -1.9998909 , -1.9998909 ,
-1.9998909 , -1.9998909 , -1.99960238, -1.99960238, -1.99960238,
-1.99960238, -1.99869083, -1.99869083, -1.99869083, -1.99869083,
-1.99611953, -1.99611953, -1.99611953, -1.99611953, -1.98967558,
-1.98967558, -1.98967558, -1.98967558, -1.97536781, -1.97536781,
-1.97536781, -1.97536781, -1.94718001, -1.94718001, -1.94718001,
-1.94718001, -1.89752562, -1.89752562, -1.89752562, -1.89752562,
-1.81822132, -1.81822132, -1.81822132, -1.81822132, -1.70275847,
-1.70275847, -1.70275847, -1.70275847, -1.55796713, -1.55796713,
-1.55796713, -1.55796713, -1.39732578, -1.39732578, -1.39732578,
-1.39732578, -1.2283551 , -1.2283551 , -1.2283551 , -1.2283551 ,
-1.05514603, -1.05514603, -1.05514603, -1.05514603, -0.8809212 ,
-0.8809212 , -0.8809212 , -0.8809212 , -0.70967418, -0.70967418,
-0.70967418, -0.70967418, -0.54426035, -0.54426035, -0.54426035,
-0.54426035, -0.38602243, -0.38602243, -0.38602243, -0.38602243,
-0.23441347, -0.23441347, -0.23441347, -0.23441347, -0.09330473,
-0.09330473, -0.09330473, -0.09330473, 0.09330473, 0.09330473,
0.09330473, 0.09330473, 0.23441347, 0.23441347, 0.23441347,
0.23441347, 0.38602243, 0.38602243, 0.38602243, 0.38602243,
0.54426035, 0.54426035, 0.54426035, 0.54426035, 0.70967418,
0.70967418, 0.70967418, 0.70967418, 0.8809212 , 0.8809212 ,
0.8809212 , 0.8809212 , 1.05514603, 1.05514603, 1.05514603,
1.05514603, 1.2283551 , 1.2283551 , 1.2283551 , 1.2283551 ,
1.39732578, 1.39732578, 1.39732578, 1.39732578, 1.55796713,
1.55796713, 1.55796713, 1.55796713, 1.70275847, 1.70275847,
1.70275847, 1.70275847, 1.81822132, 1.81822132, 1.81822132,
1.81822132, 1.89752562, 1.89752562, 1.89752562, 1.89752562,
1.94718001, 1.94718001, 1.94718001, 1.94718001, 1.97536781,
1.97536781, 1.97536781, 1.97536781, 1.98967558, 1.98967558,
1.98967558, 1.98967558, 1.99611953, 1.99611953, 1.99611953,
1.99611953, 1.99869083, 1.99869083, 1.99869083, 1.99869083,
1.99960238, 1.99960238, 1.99960238, 1.99960238, 1.9998909 ,
1.9998909 , 1.9998909 , 1.9998909 , 1.99997286, 1.99997286,
1.99997286, 1.99997286, 1.99999386, 1.99999386, 1.99999386,
1.99999386, 1.99999873, 1.99999873, 1.99999873, 1.99999873,
1.99999976, 1.99999976, 1.99999976, 1.99999976, 1.99999996,
1.99999996, 1.99999996, 1.99999996, 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.39999982, 0.39999982, 0.39999982,
0.39999982, 0.39999905, 0.39999905, 0.39999905, 0.39999905,
0.39999541, 0.39999541, 0.39999541, 0.39999541, 0.39997969,
0.39997969, 0.39997969, 0.39997969, 0.39991836, 0.39991836,
0.39991836, 0.39991836, 0.39970256, 0.39970256, 0.39970256,
0.39970256, 0.39902146, 0.39902146, 0.39902146, 0.39902146,
0.39710599, 0.39710599, 0.39710599, 0.39710599, 0.39234224,
0.39234224, 0.39234224, 0.39234224, 0.38194788, 0.38194788,
0.38194788, 0.38194788, 0.36218582, 0.36218582, 0.36218582,
0.36218582, 0.32957587, 0.32957587, 0.32957587, 0.32957587,
0.28277833, 0.28277833, 0.28277833, 0.28277833, 0.22349797,
0.22349797, 0.22349797, 0.22349797, 0.16521855, 0.16521855,
0.16521855, 0.16521855, 0.11894933, 0.11894933, 0.11894933,
0.11894933, 0.08476462, 0.08476462, 0.08476462, 0.08476462,
0.06039836, 0.06039836, 0.06039836, 0.06039836, 0.04344652,
0.04344652, 0.04344652, 0.04344652, 0.03183454, 0.03183454,
0.03183454, 0.03183454, 0.02392348, 0.02392348, 0.02392348,
0.02392348, 0.01865463, 0.01865463, 0.01865463, 0.01865463,
0.01537017, 0.01537017, 0.01537017, 0.01537017, 0.01354907,
0.01354907, 0.01354907, 0.01354907, 0.01354907, 0.01354907,
0.01354907, 0.01354907, 0.01537017, 0.01537017, 0.01537017,
0.01537017, 0.01865463, 0.01865463, 0.01865463, 0.01865463,
0.02392348, 0.02392348, 0.02392348, 0.02392348, 0.03183454,
0.03183454, 0.03183454, 0.03183454, 0.04344652, 0.04344652,
0.04344652, 0.04344652, 0.06039836, 0.06039836, 0.06039836,
0.06039836, 0.08476462, 0.08476462, 0.08476462, 0.08476462,
0.11894933, 0.11894933, 0.11894933, 0.11894933, 0.16521855,
0.16521855, 0.16521855, 0.16521855, 0.22349797, 0.22349797,
0.22349797, 0.22349797, 0.28277833, 0.28277833, 0.28277833,
0.28277833, 0.32957587, 0.32957587, 0.32957587, 0.32957587,
0.36218582, 0.36218582, 0.36218582, 0.36218582, 0.38194788,
0.38194788, 0.38194788, 0.38194788, 0.39234224, 0.39234224,
0.39234224, 0.39234224, 0.39710599, 0.39710599, 0.39710599,
0.39710599, 0.39902146, 0.39902146, 0.39902146, 0.39902146,
0.39970256, 0.39970256, 0.39970256, 0.39970256, 0.39991836,
0.39991836, 0.39991836, 0.39991836, 0.39997969, 0.39997969,
0.39997969, 0.39997969, 0.39999541, 0.39999541, 0.39999541,
0.39999541, 0.39999905, 0.39999905, 0.39999905, 0.39999905,
0.39999982, 0.39999982, 0.39999982, 0.39999982, 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999975, 0.99999975,
0.99999975, 0.99999975, 0.99999868, 0.99999868, 0.99999868,
0.99999868, 0.99999371, 0.99999371, 0.99999371, 0.99999371,
0.99997251, 0.99997251, 0.99997251, 0.99997251, 0.99989028,
0.99989028, 0.99989028, 0.99989028, 0.99960101, 0.99960101,
0.99960101, 0.99960101, 0.99868193, 0.99868193, 0.99868193,
0.99868193, 0.99605802, 0.99605802, 0.99605802, 0.99605802,
0.98936469, 0.98936469, 0.98936469, 0.98936469, 0.97419766,
0.97419766, 0.97419766, 0.97419766, 0.94382586, 0.94382586,
0.94382586, 0.94382586, 0.89027011, 0.89027011, 0.89027011,
0.89027011, 0.80722138, 0.80722138, 0.80722138, 0.80722138,
0.69386278, 0.69386278, 0.69386278, 0.69386278, 0.55552979,
0.55552979, 0.55552979, 0.55552979, 0.42047088, 0.42047088,
0.42047088, 0.42047088, 0.31041417, 0.31041417, 0.31041417,
0.31041417, 0.22624719, 0.22624719, 0.22624719, 0.22624719,
0.16451704, 0.16451704, 0.16451704, 0.16451704, 0.12073053,
0.12073053, 0.12073053, 0.12073053, 0.09035898, 0.09035898,
0.09035898, 0.09035898, 0.06979381, 0.06979381, 0.06979381,
0.06979381, 0.05645555, 0.05645555, 0.05645555, 0.05645555,
0.04842794, 0.04842794, 0.04842794, 0.04842794, 0.04411581,
0.04411581, 0.04411581, 0.04411581, 0.04411581, 0.04411581,
0.04411581, 0.04411581, 0.04842794, 0.04842794, 0.04842794,
0.04842794, 0.05645555, 0.05645555, 0.05645555, 0.05645555,
0.06979381, 0.06979381, 0.06979381, 0.06979381, 0.09035898,
0.09035898, 0.09035898, 0.09035898, 0.12073053, 0.12073053,
0.12073053, 0.12073053, 0.16451704, 0.16451704, 0.16451704,
0.16451704, 0.22624719, 0.22624719, 0.22624719, 0.22624719,
0.31041417, 0.31041417, 0.31041417, 0.31041417, 0.42047088,
0.42047088, 0.42047088, 0.42047088, 0.55552979, 0.55552979,
0.55552979, 0.55552979, 0.69386278, 0.69386278, 0.69386278,
0.69386278, 0.80722138, 0.80722138, 0.80722138, 0.80722138,
0.89027011, 0.89027011, 0.89027011, 0.89027011, 0.94382586,
0.94382586, 0.94382586, 0.94382586, 0.97419766, 0.97419766,
0.97419766, 0.97419766, 0.98936469, 0.98936469, 0.98936469,
0.98936469, 0.99605802, 0.99605802, 0.99605802, 0.99605802,
0.99868193, 0.99868193, 0.99868193, 0.99868193, 0.99960101,
0.99960101, 0.99960101, 0.99960101, 0.99989028, 0.99989028,
0.99989028, 0.99989028, 0.99997251, 0.99997251, 0.99997251,
0.99997251, 0.99999371, 0.99999371, 0.99999371, 0.99999371,
0.99999868, 0.99999868, 0.99999868, 0.99999868, 0.99999975,
0.99999975, 0.99999975, 0.99999975, 0.99999996, 0.99999996,
0.99999996, 0.99999996, 0.99999999, 0.99999999, 0.99999999,
0.99999999, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999997,
-1.99999997, -1.99999997, -1.99999997, -1.99999981, -1.99999981,
-1.99999981, -1.99999981, -1.99999901, -1.99999901, -1.99999901,
-1.99999901, -1.9999953 , -1.9999953 , -1.9999953 , -1.9999953 ,
-1.99997947, -1.99997947, -1.99997947, -1.99997947, -1.99991817,
-1.99991817, -1.99991817, -1.99991817, -1.99970295, -1.99970295,
-1.99970295, -1.99970295, -1.99902124, -1.99902124, -1.99902124,
-1.99902124, -1.99708302, -1.99708302, -1.99708302, -1.99708302,
-1.99216124, -1.99216124, -1.99216124, -1.99216124, -1.98103831,
-1.98103831, -1.98103831, -1.98103831, -1.95867062, -1.95867062,
-1.95867062, -1.95867062, -1.91844218, -1.91844218, -1.91844218,
-1.91844218, -1.85300303, -1.85300303, -1.85300303, -1.85300303,
-1.75534443, -1.75534443, -1.75534443, -1.75534443, -1.62587543,
-1.62587543, -1.62587543, -1.62587543, -1.47723802, -1.47723802,
-1.47723802, -1.47723802, -1.31873327, -1.31873327, -1.31873327,
-1.31873327, -1.1548521 , -1.1548521 , -1.1548521 , -1.1548521 ,
-0.98840454, -0.98840454, -0.98840454, -0.98840454, -0.82281519,
-0.82281519, -0.82281519, -0.82281519, -0.66100451, -0.66100451,
-0.66100451, -0.66100451, -0.50540566, -0.50540566, -0.50540566,
-0.50540566, -0.35713663, -0.35713663, -0.35713663, -0.35713663,
-0.21564818, -0.21564818, -0.21564818, -0.21564818, -0.08565761,
-0.08565761, -0.08565761, -0.08565761, 0.08565761, 0.08565761,
0.08565761, 0.08565761, 0.21564818, 0.21564818, 0.21564818,
0.21564818, 0.35713663, 0.35713663, 0.35713663, 0.35713663,
0.50540566, 0.50540566, 0.50540566, 0.50540566, 0.66100451,
0.66100451, 0.66100451, 0.66100451, 0.82281519, 0.82281519,
0.82281519, 0.82281519, 0.98840454, 0.98840454, 0.98840454,
0.98840454, 1.1548521 , 1.1548521 , 1.1548521 , 1.1548521 ,
1.31873327, 1.31873327, 1.31873327, 1.31873327, 1.47723802,
1.47723802, 1.47723802, 1.47723802, 1.62587543, 1.62587543,
1.62587543, 1.62587543, 1.75534443, 1.75534443, 1.75534443,
1.75534443, 1.85300303, 1.85300303, 1.85300303, 1.85300303,
1.91844218, 1.91844218, 1.91844218, 1.91844218, 1.95867062,
1.95867062, 1.95867062, 1.95867062, 1.98103831, 1.98103831,
1.98103831, 1.98103831, 1.99216124, 1.99216124, 1.99216124,
1.99216124, 1.99708302, 1.99708302, 1.99708302, 1.99708302,
1.99902124, 1.99902124, 1.99902124, 1.99902124, 1.99970295,
1.99970295, 1.99970295, 1.99970295, 1.99991817, 1.99991817,
1.99991817, 1.99991817, 1.99997947, 1.99997947, 1.99997947,
1.99997947, 1.9999953 , 1.9999953 , 1.9999953 , 1.9999953 ,
1.99999901, 1.99999901, 1.99999901, 1.99999901, 1.99999981,
1.99999981, 1.99999981, 1.99999981, 1.99999997, 1.99999997,
1.99999997, 1.99999997, 1.99999999, 1.99999999, 1.99999999,
1.99999999, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.39999986, 0.39999986,
0.39999986, 0.39999986, 0.39999926, 0.39999926, 0.39999926,
0.39999926, 0.39999648, 0.39999648, 0.39999648, 0.39999648,
0.39998464, 0.39998464, 0.39998464, 0.39998464, 0.39993877,
0.39993877, 0.39993877, 0.39993877, 0.39977777, 0.39977777,
0.39977777, 0.39977777, 0.39926821, 0.39926821, 0.39926821,
0.39926821, 0.39782273, 0.39782273, 0.39782273, 0.39782273,
0.39417358, 0.39417358, 0.39417358, 0.39417358, 0.38603726,
0.38603726, 0.38603726, 0.38603726, 0.37012752, 0.37012752,
0.37012752, 0.37012752, 0.34297519, 0.34297519, 0.34297519,
0.34297519, 0.30254848, 0.30254848, 0.30254848, 0.30254848,
0.24934358, 0.24934358, 0.24934358, 0.24934358, 0.19022025,
0.19022025, 0.19022025, 0.19022025, 0.13990083, 0.13990083,
0.13990083, 0.13990083, 0.10127816, 0.10127816, 0.10127816,
0.10127816, 0.07296711, 0.07296711, 0.07296711, 0.07296711,
0.05273961, 0.05273961, 0.05273961, 0.05273961, 0.03858578,
0.03858578, 0.03858578, 0.03858578, 0.02876121, 0.02876121,
0.02876121, 0.02876121, 0.02197969, 0.02197969, 0.02197969,
0.02197969, 0.01740798, 0.01740798, 0.01740798, 0.01740798,
0.01453013, 0.01453013, 0.01453013, 0.01453013, 0.01289683,
0.01289683, 0.01289683, 0.01289683, 0.01289683, 0.01289683,
0.01289683, 0.01289683, 0.01453013, 0.01453013, 0.01453013,
0.01453013, 0.01740798, 0.01740798, 0.01740798, 0.01740798,
0.02197969, 0.02197969, 0.02197969, 0.02197969, 0.02876121,
0.02876121, 0.02876121, 0.02876121, 0.03858578, 0.03858578,
0.03858578, 0.03858578, 0.05273961, 0.05273961, 0.05273961,
0.05273961, 0.07296711, 0.07296711, 0.07296711, 0.07296711,
0.10127816, 0.10127816, 0.10127816, 0.10127816, 0.13990083,
0.13990083, 0.13990083, 0.13990083, 0.19022025, 0.19022025,
0.19022025, 0.19022025, 0.24934358, 0.24934358, 0.24934358,
0.24934358, 0.30254848, 0.30254848, 0.30254848, 0.30254848,
0.34297519, 0.34297519, 0.34297519, 0.34297519, 0.37012752,
0.37012752, 0.37012752, 0.37012752, 0.38603726, 0.38603726,
0.38603726, 0.38603726, 0.39417358, 0.39417358, 0.39417358,
0.39417358, 0.39782273, 0.39782273, 0.39782273, 0.39782273,
0.39926821, 0.39926821, 0.39926821, 0.39926821, 0.39977777,
0.39977777, 0.39977777, 0.39977777, 0.39993877, 0.39993877,
0.39993877, 0.39993877, 0.39998464, 0.39998464, 0.39998464,
0.39998464, 0.39999648, 0.39999648, 0.39999648, 0.39999648,
0.39999926, 0.39999926, 0.39999926, 0.39999926, 0.39999986,
0.39999986, 0.39999986, 0.39999986, 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.9999998 ,
0.9999998 , 0.9999998 , 0.9999998 , 0.99999898, 0.99999898,
0.99999898, 0.99999898, 0.99999519, 0.99999519, 0.99999519,
0.99999519, 0.99997921, 0.99997921, 0.99997921, 0.99997921,
0.9999177 , 0.9999177 , 0.9999177 , 0.9999177 , 0.99970193,
0.99970193, 0.99970193, 0.99970193, 0.99901521, 0.99901521,
0.99901521, 0.99901521, 0.99704189, 0.99704189, 0.99704189,
0.99704189, 0.99194959, 0.99194959, 0.99194959, 0.99194959,
0.98021521, 0.98021521, 0.98021521, 0.98021521, 0.95619655,
0.95619655, 0.95619655, 0.95619655, 0.91269691, 0.91269691,
0.91269691, 0.91269691, 0.84311018, 0.84311018, 0.84311018,
0.84311018, 0.74475779, 0.74475779, 0.74475779, 0.74475779,
0.62086525, 0.62086525, 0.62086525, 0.62086525, 0.4851469 ,
0.4851469 , 0.4851469 , 0.4851469 , 0.36665175, 0.36665175,
0.36665175, 0.36665175, 0.27218245, 0.27218245, 0.27218245,
0.27218245, 0.20036728, 0.20036728, 0.20036728, 0.20036728,
0.14766957, 0.14766957, 0.14766957, 0.14766957, 0.11004216,
0.11004216, 0.11004216, 0.11004216, 0.08365907, 0.08365907,
0.08365907, 0.08365907, 0.06564286, 0.06564286, 0.06564286,
0.06564286, 0.05382506, 0.05382506, 0.05382506, 0.05382506,
0.04665258, 0.04665258, 0.04665258, 0.04665258, 0.04271899,
0.04271899, 0.04271899, 0.04271899, 0.04271899, 0.04271899,
0.04271899, 0.04271899, 0.04665258, 0.04665258, 0.04665258,
0.04665258, 0.05382506, 0.05382506, 0.05382506, 0.05382506,
0.06564286, 0.06564286, 0.06564286, 0.06564286, 0.08365907,
0.08365907, 0.08365907, 0.08365907, 0.11004216, 0.11004216,
0.11004216, 0.11004216, 0.14766957, 0.14766957, 0.14766957,
0.14766957, 0.20036728, 0.20036728, 0.20036728, 0.20036728,
0.27218245, 0.27218245, 0.27218245, 0.27218245, 0.36665175,
0.36665175, 0.36665175, 0.36665175, 0.4851469 , 0.4851469 ,
0.4851469 , 0.4851469 , 0.62086525, 0.62086525, 0.62086525,
0.62086525, 0.74475779, 0.74475779, 0.74475779, 0.74475779,
0.84311018, 0.84311018, 0.84311018, 0.84311018, 0.91269691,
0.91269691, 0.91269691, 0.91269691, 0.95619655, 0.95619655,
0.95619655, 0.95619655, 0.98021521, 0.98021521, 0.98021521,
0.98021521, 0.99194959, 0.99194959, 0.99194959, 0.99194959,
0.99704189, 0.99704189, 0.99704189, 0.99704189, 0.99901521,
0.99901521, 0.99901521, 0.99901521, 0.99970193, 0.99970193,
0.99970193, 0.99970193, 0.9999177 , 0.9999177 , 0.9999177 ,
0.9999177 , 0.99997921, 0.99997921, 0.99997921, 0.99997921,
0.99999519, 0.99999519, 0.99999519, 0.99999519, 0.99999898,
0.99999898, 0.99999898, 0.99999898, 0.9999998 , 0.9999998 ,
0.9999998 , 0.9999998 , 0.99999996, 0.99999996, 0.99999996,
0.99999996, 0.99999999, 0.99999999, 0.99999999, 0.99999999,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999997, -1.99999997, -1.99999997, -1.99999997, -1.99999985,
-1.99999985, -1.99999985, -1.99999985, -1.99999923, -1.99999923,
-1.99999923, -1.99999923, -1.9999964 , -1.9999964 , -1.9999964 ,
-1.9999964 , -1.99998447, -1.99998447, -1.99998447, -1.99998447,
-1.99993857, -1.99993857, -1.99993857, -1.99993857, -1.9997778 ,
-1.9997778 , -1.9997778 , -1.9997778 , -1.99926735, -1.99926735,
-1.99926735, -1.99926735, -1.99780536, -1.99780536, -1.99780536,
-1.99780536, -1.99404683, -1.99404683, -1.99404683, -1.99404683,
-1.98540873, -1.98540873, -1.98540873, -1.98540873, -1.96768674,
-1.96768674, -1.96768674, -1.96768674, -1.93513433, -1.93513433,
-1.93513433, -1.93513433, -1.88113567, -1.88113567, -1.88113567,
-1.88113567, -1.79913223, -1.79913223, -1.79913223, -1.79913223,
-1.68535351, -1.68535351, -1.68535351, -1.68535351, -1.548809 ,
-1.548809 , -1.548809 , -1.548809 , -1.40030833, -1.40030833,
-1.40030833, -1.40030833, -1.24549729, -1.24549729, -1.24549729,
-1.24549729, -1.08707762, -1.08707762, -1.08707762, -1.08707762,
-0.92766277, -0.92766277, -0.92766277, -0.92766277, -0.77023219,
-0.77023219, -0.77023219, -0.77023219, -0.61716861, -0.61716861,
-0.61716861, -0.61716861, -0.47043739, -0.47043739, -0.47043739,
-0.47043739, -0.33120496, -0.33120496, -0.33120496, -0.33120496,
-0.19880321, -0.19880321, -0.19880321, -0.19880321, -0.07879987,
-0.07879987, -0.07879987, -0.07879987, 0.07879987, 0.07879987,
0.07879987, 0.07879987, 0.19880321, 0.19880321, 0.19880321,
0.19880321, 0.33120496, 0.33120496, 0.33120496, 0.33120496,
0.47043739, 0.47043739, 0.47043739, 0.47043739, 0.61716861,
0.61716861, 0.61716861, 0.61716861, 0.77023219, 0.77023219,
0.77023219, 0.77023219, 0.92766277, 0.92766277, 0.92766277,
0.92766277, 1.08707762, 1.08707762, 1.08707762, 1.08707762,
1.24549729, 1.24549729, 1.24549729, 1.24549729, 1.40030833,
1.40030833, 1.40030833, 1.40030833, 1.548809 , 1.548809 ,
1.548809 , 1.548809 , 1.68535351, 1.68535351, 1.68535351,
1.68535351, 1.79913223, 1.79913223, 1.79913223, 1.79913223,
1.88113567, 1.88113567, 1.88113567, 1.88113567, 1.93513433,
1.93513433, 1.93513433, 1.93513433, 1.96768674, 1.96768674,
1.96768674, 1.96768674, 1.98540873, 1.98540873, 1.98540873,
1.98540873, 1.99404683, 1.99404683, 1.99404683, 1.99404683,
1.99780536, 1.99780536, 1.99780536, 1.99780536, 1.99926735,
1.99926735, 1.99926735, 1.99926735, 1.9997778 , 1.9997778 ,
1.9997778 , 1.9997778 , 1.99993857, 1.99993857, 1.99993857,
1.99993857, 1.99998447, 1.99998447, 1.99998447, 1.99998447,
1.9999964 , 1.9999964 , 1.9999964 , 1.9999964 , 1.99999923,
1.99999923, 1.99999923, 1.99999923, 1.99999985, 1.99999985,
1.99999985, 1.99999985, 1.99999997, 1.99999997, 1.99999997,
1.99999997, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999998, 0.39999998, 0.39999998, 0.39999998, 0.39999989,
0.39999989, 0.39999989, 0.39999989, 0.39999943, 0.39999943,
0.39999943, 0.39999943, 0.39999731, 0.39999731, 0.39999731,
0.39999731, 0.39998838, 0.39998838, 0.39998838, 0.39998838,
0.39995403, 0.39995403, 0.39995403, 0.39995403, 0.39983375,
0.39983375, 0.39983375, 0.39983375, 0.3994521 , 0.3994521 ,
0.3994521 , 0.3994521 , 0.39836087, 0.39836087, 0.39836087,
0.39836087, 0.39556797, 0.39556797, 0.39556797, 0.39556797,
0.38921587, 0.38921587, 0.38921587, 0.38921587, 0.37646798,
0.37646798, 0.37646798, 0.37646798, 0.35401533, 0.35401533,
0.35401533, 0.35401533, 0.31937688, 0.31937688, 0.31937688,
0.31937688, 0.27233327, 0.27233327, 0.27233327, 0.27233327,
0.21553987, 0.21553987, 0.21553987, 0.21553987, 0.16210813,
0.16210813, 0.16210813, 0.16210813, 0.11938562, 0.11938562,
0.11938562, 0.11938562, 0.08712103, 0.08712103, 0.08712103,
0.08712103, 0.06349711, 0.06349711, 0.06349711, 0.06349711,
0.04656451, 0.04656451, 0.04656451, 0.04656451, 0.03461305,
0.03461305, 0.03461305, 0.03461305, 0.0262067 , 0.0262067 ,
0.0262067 , 0.0262067 , 0.02033995, 0.02033995, 0.02033995,
0.02033995, 0.01633725, 0.01633725, 0.01633725, 0.01633725,
0.01379911, 0.01379911, 0.01379911, 0.01379911, 0.01232617,
0.01232617, 0.01232617, 0.01232617, 0.01232617, 0.01232617,
0.01232617, 0.01232617, 0.01379911, 0.01379911, 0.01379911,
0.01379911, 0.01633725, 0.01633725, 0.01633725, 0.01633725,
0.02033995, 0.02033995, 0.02033995, 0.02033995, 0.0262067 ,
0.0262067 , 0.0262067 , 0.0262067 , 0.03461305, 0.03461305,
0.03461305, 0.03461305, 0.04656451, 0.04656451, 0.04656451,
0.04656451, 0.06349711, 0.06349711, 0.06349711, 0.06349711,
0.08712103, 0.08712103, 0.08712103, 0.08712103, 0.11938562,
0.11938562, 0.11938562, 0.11938562, 0.16210813, 0.16210813,
0.16210813, 0.16210813, 0.21553987, 0.21553987, 0.21553987,
0.21553987, 0.27233327, 0.27233327, 0.27233327, 0.27233327,
0.31937688, 0.31937688, 0.31937688, 0.31937688, 0.35401533,
0.35401533, 0.35401533, 0.35401533, 0.37646798, 0.37646798,
0.37646798, 0.37646798, 0.38921587, 0.38921587, 0.38921587,
0.38921587, 0.39556797, 0.39556797, 0.39556797, 0.39556797,
0.39836087, 0.39836087, 0.39836087, 0.39836087, 0.3994521 ,
0.3994521 , 0.3994521 , 0.3994521 , 0.39983375, 0.39983375,
0.39983375, 0.39983375, 0.39995403, 0.39995403, 0.39995403,
0.39995403, 0.39998838, 0.39998838, 0.39998838, 0.39998838,
0.39999731, 0.39999731, 0.39999731, 0.39999731, 0.39999943,
0.39999943, 0.39999943, 0.39999943, 0.39999989, 0.39999989,
0.39999989, 0.39999989, 0.39999998, 0.39999998, 0.39999998,
0.39999998, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999984, 0.99999984, 0.99999984, 0.99999984, 0.99999921,
0.99999921, 0.99999921, 0.99999921, 0.99999632, 0.99999632,
0.99999632, 0.99999632, 0.99998428, 0.99998428, 0.99998428,
0.99998428, 0.99993821, 0.99993821, 0.99993821, 0.99993821,
0.999777 , 0.999777 , 0.999777 , 0.999777 , 0.99926307,
0.99926307, 0.99926307, 0.99926307, 0.99777717, 0.99777717,
0.99777717, 0.99777717, 0.99390084, 0.99390084, 0.99390084,
0.99390084, 0.98482677, 0.98482677, 0.98482677, 0.98482677,
0.96586705, 0.96586705, 0.96586705, 0.96586705, 0.93065556,
0.93065556, 0.93065556, 0.93065556, 0.87265822, 0.87265822,
0.87265822, 0.87265822, 0.78793454, 0.78793454, 0.78793454,
0.78793454, 0.67801361, 0.67801361, 0.67801361, 0.67801361,
0.54918923, 0.54918923, 0.54918923, 0.54918923, 0.4253138 ,
0.4253138 , 0.4253138 , 0.4253138 , 0.32209197, 0.32209197,
0.32209197, 0.32209197, 0.24076956, 0.24076956, 0.24076956,
0.24076956, 0.17909602, 0.17909602, 0.17909602, 0.17909602,
0.13374278, 0.13374278, 0.13374278, 0.13374278, 0.10109783,
0.10109783, 0.10109783, 0.10109783, 0.0779702 , 0.0779702 ,
0.0779702 , 0.0779702 , 0.06206786, 0.06206786, 0.06206786,
0.06206786, 0.05151796, 0.05151796, 0.05151796, 0.05151796,
0.04507666, 0.04507666, 0.04507666, 0.04507666, 0.04147447,
0.04147447, 0.04147447, 0.04147447, 0.04147447, 0.04147447,
0.04147447, 0.04147447, 0.04507666, 0.04507666, 0.04507666,
0.04507666, 0.05151796, 0.05151796, 0.05151796, 0.05151796,
0.06206786, 0.06206786, 0.06206786, 0.06206786, 0.0779702 ,
0.0779702 , 0.0779702 , 0.0779702 , 0.10109783, 0.10109783,
0.10109783, 0.10109783, 0.13374278, 0.13374278, 0.13374278,
0.13374278, 0.17909602, 0.17909602, 0.17909602, 0.17909602,
0.24076956, 0.24076956, 0.24076956, 0.24076956, 0.32209197,
0.32209197, 0.32209197, 0.32209197, 0.4253138 , 0.4253138 ,
0.4253138 , 0.4253138 , 0.54918923, 0.54918923, 0.54918923,
0.54918923, 0.67801361, 0.67801361, 0.67801361, 0.67801361,
0.78793454, 0.78793454, 0.78793454, 0.78793454, 0.87265822,
0.87265822, 0.87265822, 0.87265822, 0.93065556, 0.93065556,
0.93065556, 0.93065556, 0.96586705, 0.96586705, 0.96586705,
0.96586705, 0.98482677, 0.98482677, 0.98482677, 0.98482677,
0.99390084, 0.99390084, 0.99390084, 0.99390084, 0.99777717,
0.99777717, 0.99777717, 0.99777717, 0.99926307, 0.99926307,
0.99926307, 0.99926307, 0.999777 , 0.999777 , 0.999777 ,
0.999777 , 0.99993821, 0.99993821, 0.99993821, 0.99993821,
0.99998428, 0.99998428, 0.99998428, 0.99998428, 0.99999632,
0.99999632, 0.99999632, 0.99999632, 0.99999921, 0.99999921,
0.99999921, 0.99999921, 0.99999984, 0.99999984, 0.99999984,
0.99999984, 0.99999997, 0.99999997, 0.99999997, 0.99999997,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999998, -1.99999998, -1.99999998, -1.99999998,
-1.99999988, -1.99999988, -1.99999988, -1.99999988, -1.99999941,
-1.99999941, -1.99999941, -1.99999941, -1.99999725, -1.99999725,
-1.99999725, -1.99999725, -1.99998825, -1.99998825, -1.99998825,
-1.99998825, -1.99995385, -1.99995385, -1.99995385, -1.99995385,
-1.9998336 , -1.9998336 , -1.9998336 , -1.9998336 , -1.99945098,
-1.99945098, -1.99945098, -1.99945098, -1.99834757, -1.99834757,
-1.99834757, -1.99834757, -1.99547801, -1.99547801, -1.99547801,
-1.99547801, -1.98877722, -1.98877722, -1.98877722, -1.98877722,
-1.97476121, -1.97476121, -1.97476121, -1.97476121, -1.94846819,
-1.94846819, -1.94846819, -1.94846819, -1.90395536, -1.90395536,
-1.90395536, -1.90395536, -1.83514393, -1.83514393, -1.83514393,
-1.83514393, -1.73695291, -1.73695291, -1.73695291, -1.73695291,
-1.61276681, -1.61276681, -1.61276681, -1.61276681, -1.47411138,
-1.47411138, -1.47411138, -1.47411138, -1.32789865, -1.32789865,
-1.32789865, -1.32789865, -1.17749415, -1.17749415, -1.17749415,
-1.17749415, -1.02468689, -1.02468689, -1.02468689, -1.02468689,
-0.87230414, -0.87230414, -0.87230414, -0.87230414, -0.72248267,
-0.72248267, -0.72248267, -0.72248267, -0.57751416, -0.57751416,
-0.57751416, -0.57751416, -0.43882441, -0.43882441, -0.43882441,
-0.43882441, -0.30782015, -0.30782015, -0.30782015, -0.30782015,
-0.18361953, -0.18361953, -0.18361953, -0.18361953, -0.07262519,
-0.07262519, -0.07262519, -0.07262519, 0.07262519, 0.07262519,
0.07262519, 0.07262519, 0.18361953, 0.18361953, 0.18361953,
0.18361953, 0.30782015, 0.30782015, 0.30782015, 0.30782015,
0.43882441, 0.43882441, 0.43882441, 0.43882441, 0.57751416,
0.57751416, 0.57751416, 0.57751416, 0.72248267, 0.72248267,
0.72248267, 0.72248267, 0.87230414, 0.87230414, 0.87230414,
0.87230414, 1.02468689, 1.02468689, 1.02468689, 1.02468689,
1.17749415, 1.17749415, 1.17749415, 1.17749415, 1.32789865,
1.32789865, 1.32789865, 1.32789865, 1.47411138, 1.47411138,
1.47411138, 1.47411138, 1.61276681, 1.61276681, 1.61276681,
1.61276681, 1.73695291, 1.73695291, 1.73695291, 1.73695291,
1.83514393, 1.83514393, 1.83514393, 1.83514393, 1.90395536,
1.90395536, 1.90395536, 1.90395536, 1.94846819, 1.94846819,
1.94846819, 1.94846819, 1.97476121, 1.97476121, 1.97476121,
1.97476121, 1.98877722, 1.98877722, 1.98877722, 1.98877722,
1.99547801, 1.99547801, 1.99547801, 1.99547801, 1.99834757,
1.99834757, 1.99834757, 1.99834757, 1.99945098, 1.99945098,
1.99945098, 1.99945098, 1.9998336 , 1.9998336 , 1.9998336 ,
1.9998336 , 1.99995385, 1.99995385, 1.99995385, 1.99995385,
1.99998825, 1.99998825, 1.99998825, 1.99998825, 1.99999725,
1.99999725, 1.99999725, 1.99999725, 1.99999941, 1.99999941,
1.99999941, 1.99999941, 1.99999988, 1.99999988, 1.99999988,
1.99999988, 1.99999998, 1.99999998, 1.99999998, 1.99999998,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999998, 0.39999998, 0.39999998, 0.39999998,
0.39999991, 0.39999991, 0.39999991, 0.39999991, 0.39999956,
0.39999956, 0.39999956, 0.39999956, 0.39999794, 0.39999794,
0.39999794, 0.39999794, 0.39999121, 0.39999121, 0.39999121,
0.39999121, 0.39996546, 0.39996546, 0.39996546, 0.39996546,
0.3998755 , 0.3998755 , 0.3998755 , 0.3998755 , 0.39958935,
0.39958935, 0.39958935, 0.39958935, 0.39876524, 0.39876524,
0.39876524, 0.39876524, 0.39662932, 0.39662932, 0.39662932,
0.39662932, 0.39168182, 0.39168182, 0.39168182, 0.39168182,
0.38151098, 0.38151098, 0.38151098, 0.38151098, 0.36306193,
0.36306193, 0.36306193, 0.36306193, 0.33362418, 0.33362418,
0.33362418, 0.33362418, 0.2922219 , 0.2922219 , 0.2922219 ,
0.2922219 , 0.24009531, 0.24009531, 0.24009531, 0.24009531,
0.18518057, 0.18518057, 0.18518057, 0.18518057, 0.13886248,
0.13886248, 0.13886248, 0.13886248, 0.10277415, 0.10277415,
0.10277415, 0.10277415, 0.0756898 , 0.0756898 , 0.0756898 ,
0.0756898 , 0.05582374, 0.05582374, 0.05582374, 0.05582374,
0.04152302, 0.04152302, 0.04152302, 0.04152302, 0.03132411,
0.03132411, 0.03132411, 0.03132411, 0.02405844, 0.02405844,
0.02405844, 0.02405844, 0.01894139, 0.01894139, 0.01894139,
0.01894139, 0.01540908, 0.01540908, 0.01540908, 0.01540908,
0.01315829, 0.01315829, 0.01315829, 0.01315829, 0.01182391,
0.01182391, 0.01182391, 0.01182391, 0.01182391, 0.01182391,
0.01182391, 0.01182391, 0.01315829, 0.01315829, 0.01315829,
0.01315829, 0.01540908, 0.01540908, 0.01540908, 0.01540908,
0.01894139, 0.01894139, 0.01894139, 0.01894139, 0.02405844,
0.02405844, 0.02405844, 0.02405844, 0.03132411, 0.03132411,
0.03132411, 0.03132411, 0.04152302, 0.04152302, 0.04152302,
0.04152302, 0.05582374, 0.05582374, 0.05582374, 0.05582374,
0.0756898 , 0.0756898 , 0.0756898 , 0.0756898 , 0.10277415,
0.10277415, 0.10277415, 0.10277415, 0.13886248, 0.13886248,
0.13886248, 0.13886248, 0.18518057, 0.18518057, 0.18518057,
0.18518057, 0.24009531, 0.24009531, 0.24009531, 0.24009531,
0.2922219 , 0.2922219 , 0.2922219 , 0.2922219 , 0.33362418,
0.33362418, 0.33362418, 0.33362418, 0.36306193, 0.36306193,
0.36306193, 0.36306193, 0.38151098, 0.38151098, 0.38151098,
0.38151098, 0.39168182, 0.39168182, 0.39168182, 0.39168182,
0.39662932, 0.39662932, 0.39662932, 0.39662932, 0.39876524,
0.39876524, 0.39876524, 0.39876524, 0.39958935, 0.39958935,
0.39958935, 0.39958935, 0.3998755 , 0.3998755 , 0.3998755 ,
0.3998755 , 0.39996546, 0.39996546, 0.39996546, 0.39996546,
0.39999121, 0.39999121, 0.39999121, 0.39999121, 0.39999794,
0.39999794, 0.39999794, 0.39999794, 0.39999956, 0.39999956,
0.39999956, 0.39999956, 0.39999991, 0.39999991, 0.39999991,
0.39999991, 0.39999998, 0.39999998, 0.39999998, 0.39999998,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
0.99999938, 0.99999938, 0.99999938, 0.99999938, 0.99999719,
0.99999719, 0.99999719, 0.99999719, 0.99998811, 0.99998811,
0.99998811, 0.99998811, 0.99995357, 0.99995357, 0.99995357,
0.99995357, 0.99983296, 0.99983296, 0.99983296, 0.99983296,
0.99944781, 0.99944781, 0.99944781, 0.99944781, 0.99832778,
0.99832778, 0.99832778, 0.99832778, 0.995376 , 0.995376 ,
0.995376 , 0.995376 , 0.9883634 , 0.9883634 , 0.9883634 ,
0.9883634 , 0.97342446, 0.97342446, 0.97342446, 0.97342446,
0.94501452, 0.94501452, 0.94501452, 0.94501452, 0.89691208,
0.89691208, 0.89691208, 0.89691208, 0.82442705, 0.82442705,
0.82442705, 0.82442705, 0.72711886, 0.72711886, 0.72711886,
0.72711886, 0.60957253, 0.60957253, 0.60957253, 0.60957253,
0.48481294, 0.48481294, 0.48481294, 0.48481294, 0.37491929,
0.37491929, 0.37491929, 0.37491929, 0.2850944 , 0.2850944 ,
0.2850944 , 0.2850944 , 0.2147617 , 0.2147617 , 0.2147617 ,
0.2147617 , 0.16146404, 0.16146404, 0.16146404, 0.16146404,
0.12209872, 0.12209872, 0.12209872, 0.12209872, 0.09352365,
0.09352365, 0.09352365, 0.09352365, 0.07309985, 0.07309985,
0.07309985, 0.07309985, 0.05895984, 0.05895984, 0.05895984,
0.05895984, 0.0494793 , 0.0494793 , 0.0494793 , 0.0494793 ,
0.04366997, 0.04366997, 0.04366997, 0.04366997, 0.04036077,
0.04036077, 0.04036077, 0.04036077, 0.04036077, 0.04036077,
0.04036077, 0.04036077, 0.04366997, 0.04366997, 0.04366997,
0.04366997, 0.0494793 , 0.0494793 , 0.0494793 , 0.0494793 ,
0.05895984, 0.05895984, 0.05895984, 0.05895984, 0.07309985,
0.07309985, 0.07309985, 0.07309985, 0.09352365, 0.09352365,
0.09352365, 0.09352365, 0.12209872, 0.12209872, 0.12209872,
0.12209872, 0.16146404, 0.16146404, 0.16146404, 0.16146404,
0.2147617 , 0.2147617 , 0.2147617 , 0.2147617 , 0.2850944 ,
0.2850944 , 0.2850944 , 0.2850944 , 0.37491929, 0.37491929,
0.37491929, 0.37491929, 0.48481294, 0.48481294, 0.48481294,
0.48481294, 0.60957253, 0.60957253, 0.60957253, 0.60957253,
0.72711886, 0.72711886, 0.72711886, 0.72711886, 0.82442705,
0.82442705, 0.82442705, 0.82442705, 0.89691208, 0.89691208,
0.89691208, 0.89691208, 0.94501452, 0.94501452, 0.94501452,
0.94501452, 0.97342446, 0.97342446, 0.97342446, 0.97342446,
0.9883634 , 0.9883634 , 0.9883634 , 0.9883634 , 0.995376 ,
0.995376 , 0.995376 , 0.995376 , 0.99832778, 0.99832778,
0.99832778, 0.99832778, 0.99944781, 0.99944781, 0.99944781,
0.99944781, 0.99983296, 0.99983296, 0.99983296, 0.99983296,
0.99995357, 0.99995357, 0.99995357, 0.99995357, 0.99998811,
0.99998811, 0.99998811, 0.99998811, 0.99999719, 0.99999719,
0.99999719, 0.99999719, 0.99999938, 0.99999938, 0.99999938,
0.99999938, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999998, -1.99999998, -1.99999998,
-1.99999998, -1.99999991, -1.99999991, -1.99999991, -1.99999991,
-1.99999954, -1.99999954, -1.99999954, -1.99999954, -1.9999979 ,
-1.9999979 , -1.9999979 , -1.9999979 , -1.99999111, -1.99999111,
-1.99999111, -1.99999111, -1.9999653 , -1.9999653 , -1.9999653 ,
-1.9999653 , -1.99987527, -1.99987527, -1.99987527, -1.99987527,
-1.99958817, -1.99958817, -1.99958817, -1.99958817, -1.99875497,
-1.99875497, -1.99875497, -1.99875497, -1.9965647 , -1.9965647 ,
-1.9965647 , -1.9965647 , -1.99137278, -1.99137278, -1.99137278,
-1.99137278, -1.9803092 , -1.9803092 , -1.9803092 , -1.9803092 ,
-1.95911942, -1.95911942, -1.95911942, -1.95911942, -1.92248902,
-1.92248902, -1.92248902, -1.92248902, -1.86479922, -1.86479922,
-1.86479922, -1.86479922, -1.78093371, -1.78093371, -1.78093371,
-1.78093371, -1.66965519, -1.66965519, -1.66965519, -1.66965519,
-1.54084363, -1.54084363, -1.54084363, -1.54084363, -1.40299425,
-1.40299425, -1.40299425, -1.40299425, -1.26014899, -1.26014899,
-1.26014899, -1.26014899, -1.11439619, -1.11439619, -1.11439619,
-1.11439619, -0.96737508, -0.96737508, -0.96737508, -0.96737508,
-0.82171027, -0.82171027, -0.82171027, -0.82171027, -0.67901436,
-0.67901436, -0.67901436, -0.67901436, -0.54145975, -0.54145975,
-0.54145975, -0.54145975, -0.41012748, -0.41012748, -0.41012748,
-0.41012748, -0.28664905, -0.28664905, -0.28664905, -0.28664905,
-0.16988576, -0.16988576, -0.16988576, -0.16988576, -0.06704588,
-0.06704588, -0.06704588, -0.06704588, 0.06704588, 0.06704588,
0.06704588, 0.06704588, 0.16988576, 0.16988576, 0.16988576,
0.16988576, 0.28664905, 0.28664905, 0.28664905, 0.28664905,
0.41012748, 0.41012748, 0.41012748, 0.41012748, 0.54145975,
0.54145975, 0.54145975, 0.54145975, 0.67901436, 0.67901436,
0.67901436, 0.67901436, 0.82171027, 0.82171027, 0.82171027,
0.82171027, 0.96737508, 0.96737508, 0.96737508, 0.96737508,
1.11439619, 1.11439619, 1.11439619, 1.11439619, 1.26014899,
1.26014899, 1.26014899, 1.26014899, 1.40299425, 1.40299425,
1.40299425, 1.40299425, 1.54084363, 1.54084363, 1.54084363,
1.54084363, 1.66965519, 1.66965519, 1.66965519, 1.66965519,
1.78093371, 1.78093371, 1.78093371, 1.78093371, 1.86479922,
1.86479922, 1.86479922, 1.86479922, 1.92248902, 1.92248902,
1.92248902, 1.92248902, 1.95911942, 1.95911942, 1.95911942,
1.95911942, 1.9803092 , 1.9803092 , 1.9803092 , 1.9803092 ,
1.99137278, 1.99137278, 1.99137278, 1.99137278, 1.9965647 ,
1.9965647 , 1.9965647 , 1.9965647 , 1.99875497, 1.99875497,
1.99875497, 1.99875497, 1.99958817, 1.99958817, 1.99958817,
1.99958817, 1.99987527, 1.99987527, 1.99987527, 1.99987527,
1.9999653 , 1.9999653 , 1.9999653 , 1.9999653 , 1.99999111,
1.99999111, 1.99999111, 1.99999111, 1.9999979 , 1.9999979 ,
1.9999979 , 1.9999979 , 1.99999954, 1.99999954, 1.99999954,
1.99999954, 1.99999991, 1.99999991, 1.99999991, 1.99999991,
1.99999998, 1.99999998, 1.99999998, 1.99999998, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.39999966, 0.39999966, 0.39999966, 0.39999966, 0.39999843,
0.39999843, 0.39999843, 0.39999843, 0.39999335, 0.39999335,
0.39999335, 0.39999335, 0.39997403, 0.39997403, 0.39997403,
0.39997403, 0.39990667, 0.39990667, 0.39990667, 0.39990667,
0.39969193, 0.39969193, 0.39969193, 0.39969193, 0.39906934,
0.39906934, 0.39906934, 0.39906934, 0.39743694, 0.39743694,
0.39743694, 0.39743694, 0.39359154, 0.39359154, 0.39359154,
0.39359154, 0.3855081 , 0.3855081 , 0.3855081 , 0.3855081 ,
0.37043655, 0.37043655, 0.37043655, 0.37043655, 0.34560898,
0.34560898, 0.34560898, 0.34560898, 0.30947529, 0.30947529,
0.30947529, 0.30947529, 0.26261525, 0.26261525, 0.26261525,
0.26261525, 0.208592 , 0.208592 , 0.208592 , 0.208592 ,
0.15944849, 0.15944849, 0.15944849, 0.15944849, 0.1197856 ,
0.1197856 , 0.1197856 , 0.1197856 , 0.08926176, 0.08926176,
0.08926176, 0.08926176, 0.06637685, 0.06637685, 0.06637685,
0.06637685, 0.04954963, 0.04954963, 0.04954963, 0.04954963,
0.03735614, 0.03735614, 0.03735614, 0.03735614, 0.02856719,
0.02856719, 0.02856719, 0.02856719, 0.02223482, 0.02223482,
0.02223482, 0.02223482, 0.01773686, 0.01773686, 0.01773686,
0.01773686, 0.01459793, 0.01459793, 0.01459793, 0.01459793,
0.01259288, 0.01259288, 0.01259288, 0.01259288, 0.01137947,
0.01137947, 0.01137947, 0.01137947, 0.01137947, 0.01137947,
0.01137947, 0.01137947, 0.01259288, 0.01259288, 0.01259288,
0.01259288, 0.01459793, 0.01459793, 0.01459793, 0.01459793,
0.01773686, 0.01773686, 0.01773686, 0.01773686, 0.02223482,
0.02223482, 0.02223482, 0.02223482, 0.02856719, 0.02856719,
0.02856719, 0.02856719, 0.03735614, 0.03735614, 0.03735614,
0.03735614, 0.04954963, 0.04954963, 0.04954963, 0.04954963,
0.06637685, 0.06637685, 0.06637685, 0.06637685, 0.08926176,
0.08926176, 0.08926176, 0.08926176, 0.1197856 , 0.1197856 ,
0.1197856 , 0.1197856 , 0.15944849, 0.15944849, 0.15944849,
0.15944849, 0.208592 , 0.208592 , 0.208592 , 0.208592 ,
0.26261525, 0.26261525, 0.26261525, 0.26261525, 0.30947529,
0.30947529, 0.30947529, 0.30947529, 0.34560898, 0.34560898,
0.34560898, 0.34560898, 0.37043655, 0.37043655, 0.37043655,
0.37043655, 0.3855081 , 0.3855081 , 0.3855081 , 0.3855081 ,
0.39359154, 0.39359154, 0.39359154, 0.39359154, 0.39743694,
0.39743694, 0.39743694, 0.39743694, 0.39906934, 0.39906934,
0.39906934, 0.39906934, 0.39969193, 0.39969193, 0.39969193,
0.39969193, 0.39990667, 0.39990667, 0.39990667, 0.39990667,
0.39997403, 0.39997403, 0.39997403, 0.39997403, 0.39999335,
0.39999335, 0.39999335, 0.39999335, 0.39999843, 0.39999843,
0.39999843, 0.39999843, 0.39999966, 0.39999966, 0.39999966,
0.39999966, 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999952, 0.99999952, 0.99999952, 0.99999952,
0.99999785, 0.99999785, 0.99999785, 0.99999785, 0.999991 ,
0.999991 , 0.999991 , 0.999991 , 0.99996508, 0.99996508,
0.99996508, 0.99996508, 0.99987473, 0.99987473, 0.99987473,
0.99987473, 0.99958576, 0.99958576, 0.99958576, 0.99958576,
0.99874079, 0.99874079, 0.99874079, 0.99874079, 0.99649254,
0.99649254, 0.99649254, 0.99649254, 0.99107677, 0.99107677,
0.99107677, 0.99107677, 0.97932735, 0.97932735, 0.97932735,
0.97932735, 0.95647671, 0.95647671, 0.95647671, 0.95647671,
0.91676303, 0.91676303, 0.91676303, 0.91676303, 0.85513775,
0.85513775, 0.85513775, 0.85513775, 0.76967449, 0.76967449,
0.76967449, 0.76967449, 0.66358127, 0.66358127, 0.66358127,
0.66358127, 0.5434507 , 0.5434507 , 0.5434507 , 0.5434507 ,
0.42945006, 0.42945006, 0.42945006, 0.42945006, 0.33254838,
0.33254838, 0.33254838, 0.33254838, 0.25421441, 0.25421441,
0.25421441, 0.25421441, 0.19307197, 0.19307197, 0.19307197,
0.19307197, 0.14670948, 0.14670948, 0.14670948, 0.14670948,
0.112261 , 0.112261 , 0.112261 , 0.112261 , 0.08704653,
0.08704653, 0.08704653, 0.08704653, 0.06889346, 0.06889346,
0.06889346, 0.06889346, 0.05623531, 0.05623531, 0.05623531,
0.05623531, 0.04766596, 0.04766596, 0.04766596, 0.04766596,
0.04240806, 0.04240806, 0.04240806, 0.04240806, 0.03936017,
0.03936017, 0.03936017, 0.03936017, 0.03936017, 0.03936017,
0.03936017, 0.03936017, 0.04240806, 0.04240806, 0.04240806,
0.04240806, 0.04766596, 0.04766596, 0.04766596, 0.04766596,
0.05623531, 0.05623531, 0.05623531, 0.05623531, 0.06889346,
0.06889346, 0.06889346, 0.06889346, 0.08704653, 0.08704653,
0.08704653, 0.08704653, 0.112261 , 0.112261 , 0.112261 ,
0.112261 , 0.14670948, 0.14670948, 0.14670948, 0.14670948,
0.19307197, 0.19307197, 0.19307197, 0.19307197, 0.25421441,
0.25421441, 0.25421441, 0.25421441, 0.33254838, 0.33254838,
0.33254838, 0.33254838, 0.42945006, 0.42945006, 0.42945006,
0.42945006, 0.5434507 , 0.5434507 , 0.5434507 , 0.5434507 ,
0.66358127, 0.66358127, 0.66358127, 0.66358127, 0.76967449,
0.76967449, 0.76967449, 0.76967449, 0.85513775, 0.85513775,
0.85513775, 0.85513775, 0.91676303, 0.91676303, 0.91676303,
0.91676303, 0.95647671, 0.95647671, 0.95647671, 0.95647671,
0.97932735, 0.97932735, 0.97932735, 0.97932735, 0.99107677,
0.99107677, 0.99107677, 0.99107677, 0.99649254, 0.99649254,
0.99649254, 0.99649254, 0.99874079, 0.99874079, 0.99874079,
0.99874079, 0.99958576, 0.99958576, 0.99958576, 0.99958576,
0.99987473, 0.99987473, 0.99987473, 0.99987473, 0.99996508,
0.99996508, 0.99996508, 0.99996508, 0.999991 , 0.999991 ,
0.999991 , 0.999991 , 0.99999785, 0.99999785, 0.99999785,
0.99999785, 0.99999952, 0.99999952, 0.99999952, 0.99999952,
0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999993, -1.99999993, -1.99999993,
-1.99999993, -1.99999964, -1.99999964, -1.99999964, -1.99999964,
-1.99999839, -1.99999839, -1.99999839, -1.99999839, -1.99999327,
-1.99999327, -1.99999327, -1.99999327, -1.99997389, -1.99997389,
-1.99997389, -1.99997389, -1.99990641, -1.99990641, -1.99990641,
-1.99990641, -1.9996908 , -1.9996908 , -1.9996908 , -1.9996908 ,
-1.99906136, -1.99906136, -1.99906136, -1.99906136, -1.99739004,
-1.99739004, -1.99739004, -1.99739004, -1.99337187, -1.99337187,
-1.99337187, -1.99337187, -1.9846562 , -1.9846562 , -1.9846562 ,
-1.9846562 , -1.96762156, -1.96762156, -1.96762156, -1.96762156,
-1.93754755, -1.93754755, -1.93754755, -1.93754755, -1.88924251,
-1.88924251, -1.88924251, -1.88924251, -1.81781489, -1.81781489,
-1.81781489, -1.81781489, -1.71991447, -1.71991447, -1.71991447,
-1.71991447, -1.60116196, -1.60116196, -1.60116196, -1.60116196,
-1.47144134, -1.47144134, -1.47144134, -1.47144134, -1.3359148 ,
-1.3359148 , -1.3359148 , -1.3359148 , -1.19691932, -1.19691932,
-1.19691932, -1.19691932, -1.05589588, -1.05589588, -1.05589588,
-1.05589588, -0.91470039, -0.91470039, -0.91470039, -0.91470039,
-0.77534663, -0.77534663, -0.77534663, -0.77534663, -0.63931759,
-0.63931759, -0.63931759, -0.63931759, -0.50854933, -0.50854933,
-0.50854933, -0.50854933, -0.3839803 , -0.3839803 , -0.3839803 ,
-0.3839803 , -0.26741646, -0.26741646, -0.26741646, -0.26741646,
-0.1574274 , -0.1574274 , -0.1574274 , -0.1574274 , -0.06198908,
-0.06198908, -0.06198908, -0.06198908, 0.06198908, 0.06198908,
0.06198908, 0.06198908, 0.1574274 , 0.1574274 , 0.1574274 ,
0.1574274 , 0.26741646, 0.26741646, 0.26741646, 0.26741646,
0.3839803 , 0.3839803 , 0.3839803 , 0.3839803 , 0.50854933,
0.50854933, 0.50854933, 0.50854933, 0.63931759, 0.63931759,
0.63931759, 0.63931759, 0.77534663, 0.77534663, 0.77534663,
0.77534663, 0.91470039, 0.91470039, 0.91470039, 0.91470039,
1.05589588, 1.05589588, 1.05589588, 1.05589588, 1.19691932,
1.19691932, 1.19691932, 1.19691932, 1.3359148 , 1.3359148 ,
1.3359148 , 1.3359148 , 1.47144134, 1.47144134, 1.47144134,
1.47144134, 1.60116196, 1.60116196, 1.60116196, 1.60116196,
1.71991447, 1.71991447, 1.71991447, 1.71991447, 1.81781489,
1.81781489, 1.81781489, 1.81781489, 1.88924251, 1.88924251,
1.88924251, 1.88924251, 1.93754755, 1.93754755, 1.93754755,
1.93754755, 1.96762156, 1.96762156, 1.96762156, 1.96762156,
1.9846562 , 1.9846562 , 1.9846562 , 1.9846562 , 1.99337187,
1.99337187, 1.99337187, 1.99337187, 1.99739004, 1.99739004,
1.99739004, 1.99739004, 1.99906136, 1.99906136, 1.99906136,
1.99906136, 1.9996908 , 1.9996908 , 1.9996908 , 1.9996908 ,
1.99990641, 1.99990641, 1.99990641, 1.99990641, 1.99997389,
1.99997389, 1.99997389, 1.99997389, 1.99999327, 1.99999327,
1.99999327, 1.99999327, 1.99999839, 1.99999839, 1.99999839,
1.99999839, 1.99999964, 1.99999964, 1.99999964, 1.99999964,
1.99999993, 1.99999993, 1.99999993, 1.99999993, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999995, 0.39999995, 0.39999995,
0.39999995, 0.39999973, 0.39999973, 0.39999973, 0.39999973,
0.3999988 , 0.3999988 , 0.3999988 , 0.3999988 , 0.39999496,
0.39999496, 0.39999496, 0.39999496, 0.39998046, 0.39998046,
0.39998046, 0.39998046, 0.39992997, 0.39992997, 0.39992997,
0.39992997, 0.39976868, 0.39976868, 0.39976868, 0.39976868,
0.39929817, 0.39929817, 0.39929817, 0.39929817, 0.39805133,
0.39805133, 0.39805133, 0.39805133, 0.39506813, 0.39506813,
0.39506813, 0.39506813, 0.38866612, 0.38866612, 0.38866612,
0.38866612, 0.37641899, 0.37641899, 0.37641899, 0.37641899,
0.35562813, 0.35562813, 0.35562813, 0.35562813, 0.32434966,
0.32434966, 0.32434966, 0.32434966, 0.28247683, 0.28247683,
0.28247683, 0.28247683, 0.23177116, 0.23177116, 0.23177116,
0.23177116, 0.18080242, 0.18080242, 0.18080242, 0.18080242,
0.13798317, 0.13798317, 0.13798317, 0.13798317, 0.10412517,
0.10412517, 0.10412517, 0.10412517, 0.07819326, 0.07819326,
0.07819326, 0.07819326, 0.0587263 , 0.0587263 , 0.0587263 ,
0.0587263 , 0.04436624, 0.04436624, 0.04436624, 0.04436624,
0.03387337, 0.03387337, 0.03387337, 0.03387337, 0.02623154,
0.02623154, 0.02623154, 0.02623154, 0.02067224, 0.02067224,
0.02067224, 0.02067224, 0.01669043, 0.01669043, 0.01669043,
0.01669043, 0.01388395, 0.01388395, 0.01388395, 0.01388395,
0.01209108, 0.01209108, 0.01209108, 0.01209108, 0.01098426,
0.01098426, 0.01098426, 0.01098426, 0.01098426, 0.01098426,
0.01098426, 0.01098426, 0.01209108, 0.01209108, 0.01209108,
0.01209108, 0.01388395, 0.01388395, 0.01388395, 0.01388395,
0.01669043, 0.01669043, 0.01669043, 0.01669043, 0.02067224,
0.02067224, 0.02067224, 0.02067224, 0.02623154, 0.02623154,
0.02623154, 0.02623154, 0.03387337, 0.03387337, 0.03387337,
0.03387337, 0.04436624, 0.04436624, 0.04436624, 0.04436624,
0.0587263 , 0.0587263 , 0.0587263 , 0.0587263 , 0.07819326,
0.07819326, 0.07819326, 0.07819326, 0.10412517, 0.10412517,
0.10412517, 0.10412517, 0.13798317, 0.13798317, 0.13798317,
0.13798317, 0.18080242, 0.18080242, 0.18080242, 0.18080242,
0.23177116, 0.23177116, 0.23177116, 0.23177116, 0.28247683,
0.28247683, 0.28247683, 0.28247683, 0.32434966, 0.32434966,
0.32434966, 0.32434966, 0.35562813, 0.35562813, 0.35562813,
0.35562813, 0.37641899, 0.37641899, 0.37641899, 0.37641899,
0.38866612, 0.38866612, 0.38866612, 0.38866612, 0.39506813,
0.39506813, 0.39506813, 0.39506813, 0.39805133, 0.39805133,
0.39805133, 0.39805133, 0.39929817, 0.39929817, 0.39929817,
0.39929817, 0.39976868, 0.39976868, 0.39976868, 0.39976868,
0.39992997, 0.39992997, 0.39992997, 0.39992997, 0.39998046,
0.39998046, 0.39998046, 0.39998046, 0.39999496, 0.39999496,
0.39999496, 0.39999496, 0.3999988 , 0.3999988 , 0.3999988 ,
0.3999988 , 0.39999973, 0.39999973, 0.39999973, 0.39999973,
0.39999995, 0.39999995, 0.39999995, 0.39999995, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999992, 0.99999992,
0.99999992, 0.99999992, 0.99999963, 0.99999963, 0.99999963,
0.99999963, 0.99999836, 0.99999836, 0.99999836, 0.99999836,
0.99999319, 0.99999319, 0.99999319, 0.99999319, 0.99997372,
0.99997372, 0.99997372, 0.99997372, 0.99990597, 0.99990597,
0.99990597, 0.99990597, 0.99968892, 0.99968892, 0.99968892,
0.99968892, 0.99905101, 0.99905101, 0.99905101, 0.99905101,
0.99733839, 0.99733839, 0.99733839, 0.99733839, 0.99315887,
0.99315887, 0.99315887, 0.99315887, 0.98393456, 0.98393456,
0.98393456, 0.98393456, 0.96561069, 0.96561069, 0.96561069,
0.96561069, 0.9329643 , 0.9329643 , 0.9329643 , 0.9329643 ,
0.88087503, 0.88087503, 0.88087503, 0.88087503, 0.80638656,
0.80638656, 0.80638656, 0.80638656, 0.71079384, 0.71079384,
0.71079384, 0.71079384, 0.59940636, 0.59940636, 0.59940636,
0.59940636, 0.48434368, 0.48434368, 0.48434368, 0.48434368,
0.38219468, 0.38219468, 0.38219468, 0.38219468, 0.29684256,
0.29684256, 0.29684256, 0.29684256, 0.22828342, 0.22828342,
0.22828342, 0.22828342, 0.17485227, 0.17485227, 0.17485227,
0.17485227, 0.13424276, 0.13424276, 0.13424276, 0.13424276,
0.10387026, 0.10387026, 0.10387026, 0.10387026, 0.08145991,
0.08145991, 0.08145991, 0.08145991, 0.06522931, 0.06522931,
0.06522931, 0.06522931, 0.05382942, 0.05382942, 0.05382942,
0.05382942, 0.04604366, 0.04604366, 0.04604366, 0.04604366,
0.0412709 , 0.0412709 , 0.0412709 , 0.0412709 , 0.03845788,
0.03845788, 0.03845788, 0.03845788, 0.03845788, 0.03845788,
0.03845788, 0.03845788, 0.0412709 , 0.0412709 , 0.0412709 ,
0.0412709 , 0.04604366, 0.04604366, 0.04604366, 0.04604366,
0.05382942, 0.05382942, 0.05382942, 0.05382942, 0.06522931,
0.06522931, 0.06522931, 0.06522931, 0.08145991, 0.08145991,
0.08145991, 0.08145991, 0.10387026, 0.10387026, 0.10387026,
0.10387026, 0.13424276, 0.13424276, 0.13424276, 0.13424276,
0.17485227, 0.17485227, 0.17485227, 0.17485227, 0.22828342,
0.22828342, 0.22828342, 0.22828342, 0.29684256, 0.29684256,
0.29684256, 0.29684256, 0.38219468, 0.38219468, 0.38219468,
0.38219468, 0.48434368, 0.48434368, 0.48434368, 0.48434368,
0.59940636, 0.59940636, 0.59940636, 0.59940636, 0.71079384,
0.71079384, 0.71079384, 0.71079384, 0.80638656, 0.80638656,
0.80638656, 0.80638656, 0.88087503, 0.88087503, 0.88087503,
0.88087503, 0.9329643 , 0.9329643 , 0.9329643 , 0.9329643 ,
0.96561069, 0.96561069, 0.96561069, 0.96561069, 0.98393456,
0.98393456, 0.98393456, 0.98393456, 0.99315887, 0.99315887,
0.99315887, 0.99315887, 0.99733839, 0.99733839, 0.99733839,
0.99733839, 0.99905101, 0.99905101, 0.99905101, 0.99905101,
0.99968892, 0.99968892, 0.99968892, 0.99968892, 0.99990597,
0.99990597, 0.99990597, 0.99990597, 0.99997372, 0.99997372,
0.99997372, 0.99997372, 0.99999319, 0.99999319, 0.99999319,
0.99999319, 0.99999836, 0.99999836, 0.99999836, 0.99999836,
0.99999963, 0.99999963, 0.99999963, 0.99999963, 0.99999992,
0.99999992, 0.99999992, 0.99999992, 0.99999999, 0.99999999,
0.99999999, 0.99999999, 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.99999994, -1.99999994,
-1.99999994, -1.99999994, -1.99999973, -1.99999973, -1.99999973,
-1.99999973, -1.99999877, -1.99999877, -1.99999877, -1.99999877,
-1.99999491, -1.99999491, -1.99999491, -1.99999491, -1.99998035,
-1.99998035, -1.99998035, -1.99998035, -1.99992972, -1.99992972,
-1.99992972, -1.99992972, -1.99976766, -1.99976766, -1.99976766,
-1.99976766, -1.99929196, -1.99929196, -1.99929196, -1.99929196,
-1.99801697, -1.99801697, -1.99801697, -1.99801697, -1.9949107 ,
-1.9949107 , -1.9949107 , -1.9949107 , -1.98805831, -1.98805831,
-1.98805831, -1.98805831, -1.97439986, -1.97439986, -1.97439986,
-1.97439986, -1.94977566, -1.94977566, -1.94977566, -1.94977566,
-1.90941203, -1.90941203, -1.90941203, -1.90941203, -1.84866471,
-1.84866471, -1.84866471, -1.84866471, -1.76366311, -1.76366311,
-1.76366311, -1.76366311, -1.65549375, -1.65549375, -1.65549375,
-1.65549375, -1.53389774, -1.53389774, -1.53389774, -1.53389774,
-1.405382 , -1.405382 , -1.405382 , -1.405382 , -1.27292111,
-1.27292111, -1.27292111, -1.27292111, -1.13795294, -1.13795294,
-1.13795294, -1.13795294, -1.00171316, -1.00171316, -1.00171316,
-1.00171316, -0.86617309, -0.86617309, -0.86617309, -0.86617309,
-0.73274404, -0.73274404, -0.73274404, -0.73274404, -0.60294603,
-0.60294603, -0.60294603, -0.60294603, -0.47841029, -0.47841029,
-0.47841029, -0.47841029, -0.36007584, -0.36007584, -0.36007584,
-0.36007584, -0.24989289, -0.24989289, -0.24989289, -0.24989289,
-0.14609889, -0.14609889, -0.14609889, -0.14609889, -0.05739379,
-0.05739379, -0.05739379, -0.05739379, 0.05739379, 0.05739379,
0.05739379, 0.05739379, 0.14609889, 0.14609889, 0.14609889,
0.14609889, 0.24989289, 0.24989289, 0.24989289, 0.24989289,
0.36007584, 0.36007584, 0.36007584, 0.36007584, 0.47841029,
0.47841029, 0.47841029, 0.47841029, 0.60294603, 0.60294603,
0.60294603, 0.60294603, 0.73274404, 0.73274404, 0.73274404,
0.73274404, 0.86617309, 0.86617309, 0.86617309, 0.86617309,
1.00171316, 1.00171316, 1.00171316, 1.00171316, 1.13795294,
1.13795294, 1.13795294, 1.13795294, 1.27292111, 1.27292111,
1.27292111, 1.27292111, 1.405382 , 1.405382 , 1.405382 ,
1.405382 , 1.53389774, 1.53389774, 1.53389774, 1.53389774,
1.65549375, 1.65549375, 1.65549375, 1.65549375, 1.76366311,
1.76366311, 1.76366311, 1.76366311, 1.84866471, 1.84866471,
1.84866471, 1.84866471, 1.90941203, 1.90941203, 1.90941203,
1.90941203, 1.94977566, 1.94977566, 1.94977566, 1.94977566,
1.97439986, 1.97439986, 1.97439986, 1.97439986, 1.98805831,
1.98805831, 1.98805831, 1.98805831, 1.9949107 , 1.9949107 ,
1.9949107 , 1.9949107 , 1.99801697, 1.99801697, 1.99801697,
1.99801697, 1.99929196, 1.99929196, 1.99929196, 1.99929196,
1.99976766, 1.99976766, 1.99976766, 1.99976766, 1.99992972,
1.99992972, 1.99992972, 1.99992972, 1.99998035, 1.99998035,
1.99998035, 1.99998035, 1.99999491, 1.99999491, 1.99999491,
1.99999491, 1.99999877, 1.99999877, 1.99999877, 1.99999877,
1.99999973, 1.99999973, 1.99999973, 1.99999973, 1.99999994,
1.99999994, 1.99999994, 1.99999994, 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.39999996, 0.39999996,
0.39999996, 0.39999996, 0.39999979, 0.39999979, 0.39999979,
0.39999979, 0.39999908, 0.39999908, 0.39999908, 0.39999908,
0.39999619, 0.39999619, 0.39999619, 0.39999619, 0.39998529,
0.39998529, 0.39998529, 0.39998529, 0.39994741, 0.39994741,
0.39994741, 0.39994741, 0.39982617, 0.39982617, 0.39982617,
0.39982617, 0.39947049, 0.39947049, 0.39947049, 0.39947049,
0.39851861, 0.39851861, 0.39851861, 0.39851861, 0.39620818,
0.39620818, 0.39620818, 0.39620818, 0.39115387, 0.39115387,
0.39115387, 0.39115387, 0.38125012, 0.38125012, 0.38125012,
0.38125012, 0.36395394, 0.36395394, 0.36395394, 0.36395394,
0.33709582, 0.33709582, 0.33709582, 0.33709582, 0.29994892,
0.29994892, 0.29994892, 0.29994892, 0.25360165, 0.25360165,
0.25360165, 0.25360165, 0.2025411 , 0.2025411 , 0.2025411 ,
0.2025411 , 0.15714021, 0.15714021, 0.15714021, 0.15714021,
0.12016518, 0.12016518, 0.12016518, 0.12016518, 0.09121302,
0.09121302, 0.09121302, 0.09121302, 0.06905716, 0.06905716,
0.06905716, 0.06905716, 0.05239009, 0.05239009, 0.05239009,
0.05239009, 0.04003804, 0.04003804, 0.04003804, 0.04003804,
0.03093253, 0.03093253, 0.03093253, 0.03093253, 0.02423424,
0.02423424, 0.02423424, 0.02423424, 0.01932145, 0.01932145,
0.01932145, 0.01932145, 0.01577437, 0.01577437, 0.01577437,
0.01577437, 0.01325147, 0.01325147, 0.01325147, 0.01325147,
0.01164337, 0.01164337, 0.01164337, 0.01164337, 0.01063126,
0.01063126, 0.01063126, 0.01063126, 0.01063126, 0.01063126,
0.01063126, 0.01063126, 0.01164337, 0.01164337, 0.01164337,
0.01164337, 0.01325147, 0.01325147, 0.01325147, 0.01325147,
0.01577437, 0.01577437, 0.01577437, 0.01577437, 0.01932145,
0.01932145, 0.01932145, 0.01932145, 0.02423424, 0.02423424,
0.02423424, 0.02423424, 0.03093253, 0.03093253, 0.03093253,
0.03093253, 0.04003804, 0.04003804, 0.04003804, 0.04003804,
0.05239009, 0.05239009, 0.05239009, 0.05239009, 0.06905716,
0.06905716, 0.06905716, 0.06905716, 0.09121302, 0.09121302,
0.09121302, 0.09121302, 0.12016518, 0.12016518, 0.12016518,
0.12016518, 0.15714021, 0.15714021, 0.15714021, 0.15714021,
0.2025411 , 0.2025411 , 0.2025411 , 0.2025411 , 0.25360165,
0.25360165, 0.25360165, 0.25360165, 0.29994892, 0.29994892,
0.29994892, 0.29994892, 0.33709582, 0.33709582, 0.33709582,
0.33709582, 0.36395394, 0.36395394, 0.36395394, 0.36395394,
0.38125012, 0.38125012, 0.38125012, 0.38125012, 0.39115387,
0.39115387, 0.39115387, 0.39115387, 0.39620818, 0.39620818,
0.39620818, 0.39620818, 0.39851861, 0.39851861, 0.39851861,
0.39851861, 0.39947049, 0.39947049, 0.39947049, 0.39947049,
0.39982617, 0.39982617, 0.39982617, 0.39982617, 0.39994741,
0.39994741, 0.39994741, 0.39994741, 0.39998529, 0.39998529,
0.39998529, 0.39998529, 0.39999619, 0.39999619, 0.39999619,
0.39999619, 0.39999908, 0.39999908, 0.39999908, 0.39999908,
0.39999979, 0.39999979, 0.39999979, 0.39999979, 0.39999996,
0.39999996, 0.39999996, 0.39999996, 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.4 , 0.4 , 0.4 ])}, {'rho': array([0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999972, 0.99999972,
0.99999972, 0.99999972, 0.99999875, 0.99999875, 0.99999875,
0.99999875, 0.99999485, 0.99999485, 0.99999485, 0.99999485,
0.9999802 , 0.9999802 , 0.9999802 , 0.9999802 , 0.99992935,
0.99992935, 0.99992935, 0.99992935, 0.99976618, 0.99976618,
0.99976618, 0.99976618, 0.9992843 , 0.9992843 , 0.9992843 ,
0.9992843 , 0.99797962, 0.99797962, 0.99797962, 0.99797962,
0.99475654, 0.99475654, 0.99475654, 0.99475654, 0.98752732,
0.98752732, 0.98752732, 0.98752732, 0.97287605, 0.97287605,
0.97287605, 0.97287605, 0.94614979, 0.94614979, 0.94614979,
0.94614979, 0.90235853, 0.90235853, 0.90235853, 0.90235853,
0.83788792, 0.83788792, 0.83788792, 0.83788792, 0.75246353,
0.75246353, 0.75246353, 0.75246353, 0.65034201, 0.65034201,
0.65034201, 0.65034201, 0.53834592, 0.53834592, 0.53834592,
0.53834592, 0.43297187, 0.43297187, 0.43297187, 0.43297187,
0.34191758, 0.34191758, 0.34191758, 0.34191758, 0.26662504,
0.26662504, 0.26662504, 0.26662504, 0.20636921, 0.20636921,
0.20636921, 0.20636921, 0.15943395, 0.15943395, 0.15943395,
0.15943395, 0.1236147 , 0.1236147 , 0.1236147 , 0.1236147 ,
0.09665137, 0.09665137, 0.09665137, 0.09665137, 0.07660383,
0.07660383, 0.07660383, 0.07660383, 0.06201277, 0.06201277,
0.06201277, 0.06201277, 0.05169102, 0.05169102, 0.05169102,
0.05169102, 0.04458477, 0.04458477, 0.04458477, 0.04458477,
0.04024194, 0.04024194, 0.04024194, 0.04024194, 0.03764146,
0.03764146, 0.03764146, 0.03764146, 0.03764146, 0.03764146,
0.03764146, 0.03764146, 0.04024194, 0.04024194, 0.04024194,
0.04024194, 0.04458477, 0.04458477, 0.04458477, 0.04458477,
0.05169102, 0.05169102, 0.05169102, 0.05169102, 0.06201277,
0.06201277, 0.06201277, 0.06201277, 0.07660383, 0.07660383,
0.07660383, 0.07660383, 0.09665137, 0.09665137, 0.09665137,
0.09665137, 0.1236147 , 0.1236147 , 0.1236147 , 0.1236147 ,
0.15943395, 0.15943395, 0.15943395, 0.15943395, 0.20636921,
0.20636921, 0.20636921, 0.20636921, 0.26662504, 0.26662504,
0.26662504, 0.26662504, 0.34191758, 0.34191758, 0.34191758,
0.34191758, 0.43297187, 0.43297187, 0.43297187, 0.43297187,
0.53834592, 0.53834592, 0.53834592, 0.53834592, 0.65034201,
0.65034201, 0.65034201, 0.65034201, 0.75246353, 0.75246353,
0.75246353, 0.75246353, 0.83788792, 0.83788792, 0.83788792,
0.83788792, 0.90235853, 0.90235853, 0.90235853, 0.90235853,
0.94614979, 0.94614979, 0.94614979, 0.94614979, 0.97287605,
0.97287605, 0.97287605, 0.97287605, 0.98752732, 0.98752732,
0.98752732, 0.98752732, 0.99475654, 0.99475654, 0.99475654,
0.99475654, 0.99797962, 0.99797962, 0.99797962, 0.99797962,
0.9992843 , 0.9992843 , 0.9992843 , 0.9992843 , 0.99976618,
0.99976618, 0.99976618, 0.99976618, 0.99992935, 0.99992935,
0.99992935, 0.99992935, 0.9999802 , 0.9999802 , 0.9999802 ,
0.9999802 , 0.99999485, 0.99999485, 0.99999485, 0.99999485,
0.99999875, 0.99999875, 0.99999875, 0.99999875, 0.99999972,
0.99999972, 0.99999972, 0.99999972, 0.99999994, 0.99999994,
0.99999994, 0.99999994, 0.99999999, 0.99999999, 0.99999999]), 'vx': array([-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999996,
-1.99999996, -1.99999996, -1.99999996, -1.99999979, -1.99999979,
-1.99999979, -1.99999979, -1.99999906, -1.99999906, -1.99999906,
-1.99999906, -1.99999614, -1.99999614, -1.99999614, -1.99999614,
-1.99998519, -1.99998519, -1.99998519, -1.99998519, -1.99994718,
-1.99994718, -1.99994718, -1.99994718, -1.99982529, -1.99982529,
-1.99982529, -1.99982529, -1.99946564, -1.99946564, -1.99946564,
-1.99946564, -1.99849325, -1.99849325, -1.99849325, -1.99849325,
-1.9960945 , -1.9960945 , -1.9960945 , -1.9960945 , -1.99071753,
-1.99071753, -1.99071753, -1.99071753, -1.97979529, -1.97979529,
-1.97979529, -1.97979529, -1.95969325, -1.95969325, -1.95969325,
-1.95969325, -1.9260533 , -1.9260533 , -1.9260533 , -1.9260533 ,
-1.8744613 , -1.8744613 , -1.8744613 , -1.8744613 , -1.80108753,
-1.80108753, -1.80108753, -1.80108753, -1.70418906, -1.70418906,
-1.70418906, -1.70418906, -1.59086057, -1.59086057, -1.59086057,
-1.59086057, -1.46917595, -1.46917595, -1.46917595, -1.46917595,
-1.34294017, -1.34294017, -1.34294017, -1.34294017, -1.21386875,
-1.21386875, -1.21386875, -1.21386875, -1.0829478 , -1.0829478 ,
-1.0829478 , -1.0829478 , -0.9515668 , -0.9515668 , -0.9515668 ,
-0.9515668 , -0.82136318, -0.82136318, -0.82136318, -0.82136318,
-0.69349483, -0.69349483, -0.69349483, -0.69349483, -0.56951744,
-0.56951744, -0.56951744, -0.56951744, -0.45072611, -0.45072611,
-0.45072611, -0.45072611, -0.33815522, -0.33815522, -0.33815522,
-0.33815522, -0.23388523, -0.23388523, -0.23388523, -0.23388523,
-0.13577758, -0.13577758, -0.13577758, -0.13577758, -0.05320859,
-0.05320859, -0.05320859, -0.05320859, 0.05320859, 0.05320859,
0.05320859, 0.05320859, 0.13577758, 0.13577758, 0.13577758,
0.13577758, 0.23388523, 0.23388523, 0.23388523, 0.23388523,
0.33815522, 0.33815522, 0.33815522, 0.33815522, 0.45072611,
0.45072611, 0.45072611, 0.45072611, 0.56951744, 0.56951744,
0.56951744, 0.56951744, 0.69349483, 0.69349483, 0.69349483,
0.69349483, 0.82136318, 0.82136318, 0.82136318, 0.82136318,
0.9515668 , 0.9515668 , 0.9515668 , 0.9515668 , 1.0829478 ,
1.0829478 , 1.0829478 , 1.0829478 , 1.21386875, 1.21386875,
1.21386875, 1.21386875, 1.34294017, 1.34294017, 1.34294017,
1.34294017, 1.46917595, 1.46917595, 1.46917595, 1.46917595,
1.59086057, 1.59086057, 1.59086057, 1.59086057, 1.70418906,
1.70418906, 1.70418906, 1.70418906, 1.80108753, 1.80108753,
1.80108753, 1.80108753, 1.8744613 , 1.8744613 , 1.8744613 ,
1.8744613 , 1.9260533 , 1.9260533 , 1.9260533 , 1.9260533 ,
1.95969325, 1.95969325, 1.95969325, 1.95969325, 1.97979529,
1.97979529, 1.97979529, 1.97979529, 1.99071753, 1.99071753,
1.99071753, 1.99071753, 1.9960945 , 1.9960945 , 1.9960945 ,
1.9960945 , 1.99849325, 1.99849325, 1.99849325, 1.99849325,
1.99946564, 1.99946564, 1.99946564, 1.99946564, 1.99982529,
1.99982529, 1.99982529, 1.99982529, 1.99994718, 1.99994718,
1.99994718, 1.99994718, 1.99998519, 1.99998519, 1.99998519,
1.99998519, 1.99999614, 1.99999614, 1.99999614, 1.99999614,
1.99999906, 1.99999906, 1.99999906, 1.99999906, 1.99999979,
1.99999979, 1.99999979, 1.99999979, 1.99999996, 1.99999996,
1.99999996, 1.99999996, 1.99999999, 1.99999999, 1.99999999]), 'P': array([0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.39999984, 0.39999984,
0.39999984, 0.39999984, 0.3999993 , 0.3999993 , 0.3999993 ,
0.3999993 , 0.39999711, 0.39999711, 0.39999711, 0.39999711,
0.39998892, 0.39998892, 0.39998892, 0.39998892, 0.39996047,
0.39996047, 0.39996047, 0.39996047, 0.39986928, 0.39986928,
0.39986928, 0.39986928, 0.39960032, 0.39960032, 0.39960032,
0.39960032, 0.39887394, 0.39887394, 0.39887394, 0.39887394,
0.39708723, 0.39708723, 0.39708723, 0.39708723, 0.39310833,
0.39310833, 0.39310833, 0.39310833, 0.3851351 , 0.3851351 ,
0.3851351 , 0.3851351 , 0.37083367, 0.37083367, 0.37083367,
0.37083367, 0.34794549, 0.34794549, 0.34794549, 0.34794549,
0.31525266, 0.31525266, 0.31525266, 0.31525266, 0.27330886,
0.27330886, 0.27330886, 0.27330886, 0.22430201, 0.22430201,
0.22430201, 0.22430201, 0.17699197, 0.17699197, 0.17699197,
0.17699197, 0.1372282 , 0.1372282 , 0.1372282 , 0.1372282 ,
0.10535854, 0.10535854, 0.10535854, 0.10535854, 0.08050037,
0.08050037, 0.08050037, 0.08050037, 0.06145781, 0.06145781,
0.06145781, 0.06145781, 0.04709924, 0.04709924, 0.04709924,
0.04709924, 0.03638839, 0.03638839, 0.03638839, 0.03638839,
0.02842595, 0.02842595, 0.02842595, 0.02842595, 0.02251183,
0.02251183, 0.02251183, 0.02251183, 0.01814435, 0.01814435,
0.01814435, 0.01814435, 0.01496692, 0.01496692, 0.01496692,
0.01496692, 0.012688 , 0.012688 , 0.012688 , 0.012688 ,
0.011242 , 0.011242 , 0.011242 , 0.011242 , 0.01031464,
0.01031464, 0.01031464, 0.01031464, 0.01031464, 0.01031464,
0.01031464, 0.01031464, 0.011242 , 0.011242 , 0.011242 ,
0.011242 , 0.012688 , 0.012688 , 0.012688 , 0.012688 ,
0.01496692, 0.01496692, 0.01496692, 0.01496692, 0.01814435,
0.01814435, 0.01814435, 0.01814435, 0.02251183, 0.02251183,
0.02251183, 0.02251183, 0.02842595, 0.02842595, 0.02842595,
0.02842595, 0.03638839, 0.03638839, 0.03638839, 0.03638839,
0.04709924, 0.04709924, 0.04709924, 0.04709924, 0.06145781,
0.06145781, 0.06145781, 0.06145781, 0.08050037, 0.08050037,
0.08050037, 0.08050037, 0.10535854, 0.10535854, 0.10535854,
0.10535854, 0.1372282 , 0.1372282 , 0.1372282 , 0.1372282 ,
0.17699197, 0.17699197, 0.17699197, 0.17699197, 0.22430201,
0.22430201, 0.22430201, 0.22430201, 0.27330886, 0.27330886,
0.27330886, 0.27330886, 0.31525266, 0.31525266, 0.31525266,
0.31525266, 0.34794549, 0.34794549, 0.34794549, 0.34794549,
0.37083367, 0.37083367, 0.37083367, 0.37083367, 0.3851351 ,
0.3851351 , 0.3851351 , 0.3851351 , 0.39310833, 0.39310833,
0.39310833, 0.39310833, 0.39708723, 0.39708723, 0.39708723,
0.39708723, 0.39887394, 0.39887394, 0.39887394, 0.39887394,
0.39960032, 0.39960032, 0.39960032, 0.39960032, 0.39986928,
0.39986928, 0.39986928, 0.39986928, 0.39996047, 0.39996047,
0.39996047, 0.39996047, 0.39998892, 0.39998892, 0.39998892,
0.39998892, 0.39999711, 0.39999711, 0.39999711, 0.39999711,
0.3999993 , 0.3999993 , 0.3999993 , 0.3999993 , 0.39999984,
0.39999984, 0.39999984, 0.39999984, 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.39999999, 0.39999999, 0.39999999])}, {'rho': array([0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999978,
0.99999978, 0.99999978, 0.99999978, 0.99999905, 0.99999905,
0.99999905, 0.99999905, 0.9999961 , 0.9999961 , 0.9999961 ,
0.9999961 , 0.99998508, 0.99998508, 0.99998508, 0.99998508,
0.99994688, 0.99994688, 0.99994688, 0.99994688, 0.99982412,
0.99982412, 0.99982412, 0.99982412, 0.9994599 , 0.9994599 ,
0.9994599 , 0.9994599 , 0.99846599, 0.99846599, 0.99846599,
0.99846599, 0.99598231, 0.99598231, 0.99598231, 0.99598231,
0.99032624, 0.99032624, 0.99032624, 0.99032624, 0.97864407,
0.97864407, 0.97864407, 0.97864407, 0.95685053, 0.95685053,
0.95685053, 0.95685053, 0.92022314, 0.92022314, 0.92022314,
0.92022314, 0.86478281, 0.86478281, 0.86478281, 0.86478281,
0.78907489, 0.78907489, 0.78907489, 0.78907489, 0.69570313,
0.69570313, 0.69570313, 0.69570313, 0.59020465, 0.59020465,
0.59020465, 0.59020465, 0.48382089, 0.48382089, 0.48382089,
0.48382089, 0.38859599, 0.38859599, 0.38859599, 0.38859599,
0.30752598, 0.30752598, 0.30752598, 0.30752598, 0.24092418,
0.24092418, 0.24092418, 0.24092418, 0.18773926, 0.18773926,
0.18773926, 0.18773926, 0.1462786 , 0.1462786 , 0.1462786 ,
0.1462786 , 0.11447901, 0.11447901, 0.11447901, 0.11447901,
0.09038663, 0.09038663, 0.09038663, 0.09038663, 0.07235759,
0.07235759, 0.07235759, 0.07235759, 0.05916941, 0.05916941,
0.05916941, 0.05916941, 0.04977932, 0.04977932, 0.04977932,
0.04977932, 0.04326679, 0.04326679, 0.04326679, 0.04326679,
0.03930737, 0.03930737, 0.03930737, 0.03930737, 0.03690037,
0.03690037, 0.03690037, 0.03690037, 0.03690037, 0.03690037,
0.03690037, 0.03690037, 0.03930737, 0.03930737, 0.03930737,
0.03930737, 0.04326679, 0.04326679, 0.04326679, 0.04326679,
0.04977932, 0.04977932, 0.04977932, 0.04977932, 0.05916941,
0.05916941, 0.05916941, 0.05916941, 0.07235759, 0.07235759,
0.07235759, 0.07235759, 0.09038663, 0.09038663, 0.09038663,
0.09038663, 0.11447901, 0.11447901, 0.11447901, 0.11447901,
0.1462786 , 0.1462786 , 0.1462786 , 0.1462786 , 0.18773926,
0.18773926, 0.18773926, 0.18773926, 0.24092418, 0.24092418,
0.24092418, 0.24092418, 0.30752598, 0.30752598, 0.30752598,
0.30752598, 0.38859599, 0.38859599, 0.38859599, 0.38859599,
0.48382089, 0.48382089, 0.48382089, 0.48382089, 0.59020465,
0.59020465, 0.59020465, 0.59020465, 0.69570313, 0.69570313,
0.69570313, 0.69570313, 0.78907489, 0.78907489, 0.78907489,
0.78907489, 0.86478281, 0.86478281, 0.86478281, 0.86478281,
0.92022314, 0.92022314, 0.92022314, 0.92022314, 0.95685053,
0.95685053, 0.95685053, 0.95685053, 0.97864407, 0.97864407,
0.97864407, 0.97864407, 0.99032624, 0.99032624, 0.99032624,
0.99032624, 0.99598231, 0.99598231, 0.99598231, 0.99598231,
0.99846599, 0.99846599, 0.99846599, 0.99846599, 0.9994599 ,
0.9994599 , 0.9994599 , 0.9994599 , 0.99982412, 0.99982412,
0.99982412, 0.99982412, 0.99994688, 0.99994688, 0.99994688,
0.99994688, 0.99998508, 0.99998508, 0.99998508, 0.99998508,
0.9999961 , 0.9999961 , 0.9999961 , 0.9999961 , 0.99999905,
0.99999905, 0.99999905, 0.99999905, 0.99999978, 0.99999978,
0.99999978, 0.99999978, 0.99999996, 0.99999996, 0.99999996]), 'vx': array([-1.99999997, -1.99999997, -1.99999997, -1.99999997, -1.99999984,
-1.99999984, -1.99999984, -1.99999984, -1.99999929, -1.99999929,
-1.99999929, -1.99999929, -1.99999708, -1.99999708, -1.99999708,
-1.99999708, -1.99998884, -1.99998884, -1.99998884, -1.99998884,
-1.99996027, -1.99996027, -1.99996027, -1.99996027, -1.99986853,
-1.99986853, -1.99986853, -1.99986853, -1.99959653, -1.99959653,
-1.99959653, -1.99959653, -1.9988551 , -1.9988551 , -1.9988551 ,
-1.9988551 , -1.99700459, -1.99700459, -1.99700459, -1.99700459,
-1.99279326, -1.99279326, -1.99279326, -1.99279326, -1.98408222,
-1.98408222, -1.98408222, -1.98408222, -1.96772297, -1.96772297,
-1.96772297, -1.96772297, -1.93977123, -1.93977123, -1.93977123,
-1.93977123, -1.89605496, -1.89605496, -1.89605496, -1.89605496,
-1.8328246 , -1.8328246 , -1.8328246 , -1.8328246 , -1.74737057,
-1.74737057, -1.74737057, -1.74737057, -1.64272474, -1.64272474,
-1.64272474, -1.64272474, -1.52780341, -1.52780341, -1.52780341,
-1.52780341, -1.40754959, -1.40754959, -1.40754959, -1.40754959,
-1.28410474, -1.28410474, -1.28410474, -1.28410474, -1.15854062,
-1.15854062, -1.15854062, -1.15854062, -1.03166727, -1.03166727,
-1.03166727, -1.03166727, -0.90506816, -0.90506816, -0.90506816,
-0.90506816, -0.77989359, -0.77989359, -0.77989359, -0.77989359,
-0.65726835, -0.65726835, -0.65726835, -0.65726835, -0.53868102,
-0.53868102, -0.53868102, -0.53868102, -0.42522663, -0.42522663,
-0.42522663, -0.42522663, -0.31799886, -0.31799886, -0.31799886,
-0.31799886, -0.21922957, -0.21922957, -0.21922957, -0.21922957,
-0.12635918, -0.12635918, -0.12635918, -0.12635918, -0.04938981,
-0.04938981, -0.04938981, -0.04938981, 0.04938981, 0.04938981,
0.04938981, 0.04938981, 0.12635918, 0.12635918, 0.12635918,
0.12635918, 0.21922957, 0.21922957, 0.21922957, 0.21922957,
0.31799886, 0.31799886, 0.31799886, 0.31799886, 0.42522663,
0.42522663, 0.42522663, 0.42522663, 0.53868102, 0.53868102,
0.53868102, 0.53868102, 0.65726835, 0.65726835, 0.65726835,
0.65726835, 0.77989359, 0.77989359, 0.77989359, 0.77989359,
0.90506816, 0.90506816, 0.90506816, 0.90506816, 1.03166727,
1.03166727, 1.03166727, 1.03166727, 1.15854062, 1.15854062,
1.15854062, 1.15854062, 1.28410474, 1.28410474, 1.28410474,
1.28410474, 1.40754959, 1.40754959, 1.40754959, 1.40754959,
1.52780341, 1.52780341, 1.52780341, 1.52780341, 1.64272474,
1.64272474, 1.64272474, 1.64272474, 1.74737057, 1.74737057,
1.74737057, 1.74737057, 1.8328246 , 1.8328246 , 1.8328246 ,
1.8328246 , 1.89605496, 1.89605496, 1.89605496, 1.89605496,
1.93977123, 1.93977123, 1.93977123, 1.93977123, 1.96772297,
1.96772297, 1.96772297, 1.96772297, 1.98408222, 1.98408222,
1.98408222, 1.98408222, 1.99279326, 1.99279326, 1.99279326,
1.99279326, 1.99700459, 1.99700459, 1.99700459, 1.99700459,
1.9988551 , 1.9988551 , 1.9988551 , 1.9988551 , 1.99959653,
1.99959653, 1.99959653, 1.99959653, 1.99986853, 1.99986853,
1.99986853, 1.99986853, 1.99996027, 1.99996027, 1.99996027,
1.99996027, 1.99998884, 1.99998884, 1.99998884, 1.99998884,
1.99999708, 1.99999708, 1.99999708, 1.99999708, 1.99999929,
1.99999929, 1.99999929, 1.99999929, 1.99999984, 1.99999984,
1.99999984, 1.99999984, 1.99999997, 1.99999997, 1.99999997]), 'P': array([0.39999998, 0.39999998, 0.39999998, 0.39999998, 0.39999988,
0.39999988, 0.39999988, 0.39999988, 0.39999947, 0.39999947,
0.39999947, 0.39999947, 0.39999781, 0.39999781, 0.39999781,
0.39999781, 0.39999165, 0.39999165, 0.39999165, 0.39999165,
0.39997027, 0.39997027, 0.39997027, 0.39997027, 0.39990163,
0.39990163, 0.39990163, 0.39990163, 0.39969818, 0.39969818,
0.39969818, 0.39969818, 0.3991441 , 0.3991441 , 0.3991441 ,
0.3991441 , 0.39776424, 0.39776424, 0.39776424, 0.39776424,
0.39464004, 0.39464004, 0.39464004, 0.39464004, 0.38824706,
0.38824706, 0.38824706, 0.38824706, 0.37648831, 0.37648831,
0.37648831, 0.37648831, 0.35712158, 0.35712158, 0.35712158,
0.35712158, 0.32858541, 0.32858541, 0.32858541, 0.32858541,
0.29082844, 0.29082844, 0.29082844, 0.29082844, 0.24527872,
0.24527872, 0.24527872, 0.24527872, 0.19727416, 0.19727416,
0.19727416, 0.19727416, 0.15512923, 0.15512923, 0.15512923,
0.15512923, 0.12052423, 0.12052423, 0.12052423, 0.12052423,
0.09300262, 0.09300262, 0.09300262, 0.09300262, 0.07155261,
0.07155261, 0.07155261, 0.07155261, 0.05509219, 0.05509219,
0.05509219, 0.05509219, 0.04264011, 0.04264011, 0.04264011,
0.04264011, 0.03328308, 0.03328308, 0.03328308, 0.03328308,
0.02626985, 0.02626985, 0.02626985, 0.02626985, 0.02101632,
0.02101632, 0.02101632, 0.02101632, 0.01711118, 0.01711118,
0.01711118, 0.01711118, 0.01425083, 0.01425083, 0.01425083,
0.01425083, 0.01218344, 0.01218344, 0.01218344, 0.01218344,
0.01088058, 0.01088058, 0.01088058, 0.01088058, 0.01002955,
0.01002955, 0.01002955, 0.01002955, 0.01002955, 0.01002955,
0.01002955, 0.01002955, 0.01088058, 0.01088058, 0.01088058,
0.01088058, 0.01218344, 0.01218344, 0.01218344, 0.01218344,
0.01425083, 0.01425083, 0.01425083, 0.01425083, 0.01711118,
0.01711118, 0.01711118, 0.01711118, 0.02101632, 0.02101632,
0.02101632, 0.02101632, 0.02626985, 0.02626985, 0.02626985,
0.02626985, 0.03328308, 0.03328308, 0.03328308, 0.03328308,
0.04264011, 0.04264011, 0.04264011, 0.04264011, 0.05509219,
0.05509219, 0.05509219, 0.05509219, 0.07155261, 0.07155261,
0.07155261, 0.07155261, 0.09300262, 0.09300262, 0.09300262,
0.09300262, 0.12052423, 0.12052423, 0.12052423, 0.12052423,
0.15512923, 0.15512923, 0.15512923, 0.15512923, 0.19727416,
0.19727416, 0.19727416, 0.19727416, 0.24527872, 0.24527872,
0.24527872, 0.24527872, 0.29082844, 0.29082844, 0.29082844,
0.29082844, 0.32858541, 0.32858541, 0.32858541, 0.32858541,
0.35712158, 0.35712158, 0.35712158, 0.35712158, 0.37648831,
0.37648831, 0.37648831, 0.37648831, 0.38824706, 0.38824706,
0.38824706, 0.38824706, 0.39464004, 0.39464004, 0.39464004,
0.39464004, 0.39776424, 0.39776424, 0.39776424, 0.39776424,
0.3991441 , 0.3991441 , 0.3991441 , 0.3991441 , 0.39969818,
0.39969818, 0.39969818, 0.39969818, 0.39990163, 0.39990163,
0.39990163, 0.39990163, 0.39997027, 0.39997027, 0.39997027,
0.39997027, 0.39999165, 0.39999165, 0.39999165, 0.39999165,
0.39999781, 0.39999781, 0.39999781, 0.39999781, 0.39999947,
0.39999947, 0.39999947, 0.39999947, 0.39999988, 0.39999988,
0.39999988, 0.39999988, 0.39999998, 0.39999998, 0.39999998])}, {'rho': array([0.99999985, 0.99999985, 0.99999985, 0.99999985, 0.99999927,
0.99999927, 0.99999927, 0.99999927, 0.99999704, 0.99999704,
0.99999704, 0.99999704, 0.99998875, 0.99998875, 0.99998875,
0.99998875, 0.99996003, 0.99996003, 0.99996003, 0.99996003,
0.9998676 , 0.9998676 , 0.9998676 , 0.9998676 , 0.99959219,
0.99959219, 0.99959219, 0.99959219, 0.99883504, 0.99883504,
0.99883504, 0.99883504, 0.99692253, 0.99692253, 0.99692253,
0.99692253, 0.99250442, 0.99250442, 0.99250442, 0.99250442,
0.98321443, 0.98321443, 0.98321443, 0.98321443, 0.96551012,
0.96551012, 0.96551012, 0.96551012, 0.93502374, 0.93502374,
0.93502374, 0.93502374, 0.88763449, 0.88763449, 0.88763449,
0.88763449, 0.8210454 , 0.8210454 , 0.8210454 , 0.8210454 ,
0.73630061, 0.73630061, 0.73630061, 0.73630061, 0.63823743,
0.63823743, 0.63823743, 0.63823743, 0.53373246, 0.53373246,
0.53373246, 0.53373246, 0.43599461, 0.43599461, 0.43599461,
0.43599461, 0.35031012, 0.35031012, 0.35031012, 0.35031012,
0.27805916, 0.27805916, 0.27805916, 0.27805916, 0.21894703,
0.21894703, 0.21894703, 0.21894703, 0.17180593, 0.17180593,
0.17180593, 0.17180593, 0.13496697, 0.13496697, 0.13496697,
0.13496697, 0.10656575, 0.10656575, 0.10656575, 0.10656575,
0.08491109, 0.08491109, 0.08491109, 0.08491109, 0.06862012,
0.06862012, 0.06862012, 0.06862012, 0.05664009, 0.05664009,
0.05664009, 0.05664009, 0.04806144, 0.04806144, 0.04806144,
0.04806144, 0.04207122, 0.04207122, 0.04207122, 0.04207122,
0.03845555, 0.03845555, 0.03845555, 0.03845555, 0.03622561,
0.03622561, 0.03622561, 0.03622561, 0.03622561, 0.03622561,
0.03622561, 0.03622561, 0.03845555, 0.03845555, 0.03845555,
0.03845555, 0.04207122, 0.04207122, 0.04207122, 0.04207122,
0.04806144, 0.04806144, 0.04806144, 0.04806144, 0.05664009,
0.05664009, 0.05664009, 0.05664009, 0.06862012, 0.06862012,
0.06862012, 0.06862012, 0.08491109, 0.08491109, 0.08491109,
0.08491109, 0.10656575, 0.10656575, 0.10656575, 0.10656575,
0.13496697, 0.13496697, 0.13496697, 0.13496697, 0.17180593,
0.17180593, 0.17180593, 0.17180593, 0.21894703, 0.21894703,
0.21894703, 0.21894703, 0.27805916, 0.27805916, 0.27805916,
0.27805916, 0.35031012, 0.35031012, 0.35031012, 0.35031012,
0.43599461, 0.43599461, 0.43599461, 0.43599461, 0.53373246,
0.53373246, 0.53373246, 0.53373246, 0.63823743, 0.63823743,
0.63823743, 0.63823743, 0.73630061, 0.73630061, 0.73630061,
0.73630061, 0.8210454 , 0.8210454 , 0.8210454 , 0.8210454 ,
0.88763449, 0.88763449, 0.88763449, 0.88763449, 0.93502374,
0.93502374, 0.93502374, 0.93502374, 0.96551012, 0.96551012,
0.96551012, 0.96551012, 0.98321443, 0.98321443, 0.98321443,
0.98321443, 0.99250442, 0.99250442, 0.99250442, 0.99250442,
0.99692253, 0.99692253, 0.99692253, 0.99692253, 0.99883504,
0.99883504, 0.99883504, 0.99883504, 0.99959219, 0.99959219,
0.99959219, 0.99959219, 0.9998676 , 0.9998676 , 0.9998676 ,
0.9998676 , 0.99996003, 0.99996003, 0.99996003, 0.99996003,
0.99998875, 0.99998875, 0.99998875, 0.99998875, 0.99999704,
0.99999704, 0.99999704, 0.99999704, 0.99999927, 0.99999927,
0.99999927, 0.99999927, 0.99999985, 0.99999985, 0.99999985]), 'vx': array([-1.99999989, -1.99999989, -1.99999989, -1.99999989, -1.99999945,
-1.99999945, -1.99999945, -1.99999945, -1.99999779, -1.99999779,
-1.99999779, -1.99999779, -1.99999159, -1.99999159, -1.99999159,
-1.99999159, -1.9999701 , -1.9999701 , -1.9999701 , -1.9999701 ,
-1.999901 , -1.999901 , -1.999901 , -1.999901 , -1.99969523,
-1.99969523, -1.99969523, -1.99969523, -1.99913002, -1.99913002,
-1.99913002, -1.99913002, -1.99770379, -1.99770379, -1.99770379,
-1.99770379, -1.99441129, -1.99441129, -1.99441129, -1.99441129,
-1.98748181, -1.98748181, -1.98748181, -1.98748181, -1.97421069,
-1.97421069, -1.97421069, -1.97421069, -1.951062 , -1.951062 ,
-1.951062 , -1.951062 , -1.91412209, -1.91412209, -1.91412209,
-1.91412209, -1.85973564, -1.85973564, -1.85973564, -1.85973564,
-1.78501081, -1.78501081, -1.78501081, -1.78501081, -1.68973692,
-1.68973692, -1.68973692, -1.68973692, -1.58167982, -1.58167982,
-1.58167982, -1.58167982, -1.46723781, -1.46723781, -1.46723781,
-1.46723781, -1.34917209, -1.34917209, -1.34917209, -1.34917209,
-1.22873451, -1.22873451, -1.22873451, -1.22873451, -1.10667593,
-1.10667593, -1.10667593, -1.10667593, -0.98389766, -0.98389766,
-0.98389766, -0.98389766, -0.86186374, -0.86186374, -0.86186374,
-0.86186374, -0.74143354, -0.74143354, -0.74143354, -0.74143354,
-0.62375092, -0.62375092, -0.62375092, -0.62375092, -0.51015791,
-0.51015791, -0.51015791, -0.51015791, -0.40167983, -0.40167983,
-0.40167983, -0.40167983, -0.29941936, -0.29941936, -0.29941936,
-0.29941936, -0.20578565, -0.20578565, -0.20578565, -0.20578565,
-0.11775423, -0.11775423, -0.11775423, -0.11775423, -0.04590013,
-0.04590013, -0.04590013, -0.04590013, 0.04590013, 0.04590013,
0.04590013, 0.04590013, 0.11775423, 0.11775423, 0.11775423,
0.11775423, 0.20578565, 0.20578565, 0.20578565, 0.20578565,
0.29941936, 0.29941936, 0.29941936, 0.29941936, 0.40167983,
0.40167983, 0.40167983, 0.40167983, 0.51015791, 0.51015791,
0.51015791, 0.51015791, 0.62375092, 0.62375092, 0.62375092,
0.62375092, 0.74143354, 0.74143354, 0.74143354, 0.74143354,
0.86186374, 0.86186374, 0.86186374, 0.86186374, 0.98389766,
0.98389766, 0.98389766, 0.98389766, 1.10667593, 1.10667593,
1.10667593, 1.10667593, 1.22873451, 1.22873451, 1.22873451,
1.22873451, 1.34917209, 1.34917209, 1.34917209, 1.34917209,
1.46723781, 1.46723781, 1.46723781, 1.46723781, 1.58167982,
1.58167982, 1.58167982, 1.58167982, 1.68973692, 1.68973692,
1.68973692, 1.68973692, 1.78501081, 1.78501081, 1.78501081,
1.78501081, 1.85973564, 1.85973564, 1.85973564, 1.85973564,
1.91412209, 1.91412209, 1.91412209, 1.91412209, 1.951062 ,
1.951062 , 1.951062 , 1.951062 , 1.97421069, 1.97421069,
1.97421069, 1.97421069, 1.98748181, 1.98748181, 1.98748181,
1.98748181, 1.99441129, 1.99441129, 1.99441129, 1.99441129,
1.99770379, 1.99770379, 1.99770379, 1.99770379, 1.99913002,
1.99913002, 1.99913002, 1.99913002, 1.99969523, 1.99969523,
1.99969523, 1.99969523, 1.999901 , 1.999901 , 1.999901 ,
1.999901 , 1.9999701 , 1.9999701 , 1.9999701 , 1.9999701 ,
1.99999159, 1.99999159, 1.99999159, 1.99999159, 1.99999779,
1.99999779, 1.99999779, 1.99999779, 1.99999945, 1.99999945,
1.99999945, 1.99999945, 1.99999989, 1.99999989, 1.99999989]), 'P': array([0.39999991, 0.39999991, 0.39999991, 0.39999991, 0.39999959,
0.39999959, 0.39999959, 0.39999959, 0.39999835, 0.39999835,
0.39999835, 0.39999835, 0.3999937 , 0.3999937 , 0.3999937 ,
0.3999937 , 0.39997763, 0.39997763, 0.39997763, 0.39997763,
0.39992592, 0.39992592, 0.39992592, 0.39992592, 0.399772 ,
0.399772 , 0.399772 , 0.399772 , 0.39934947, 0.39934947,
0.39934947, 0.39934947, 0.3982851 , 0.3982851 , 0.3982851 ,
0.3982851 , 0.39583774, 0.39583774, 0.39583774, 0.39583774,
0.39073083, 0.39073083, 0.39073083, 0.39073083, 0.3811129 ,
0.3811129 , 0.3811129 , 0.3811129 , 0.36483467, 0.36483467,
0.36483467, 0.36483467, 0.3401215 , 0.3401215 , 0.3401215 ,
0.3401215 , 0.30640378, 0.30640378, 0.30640378, 0.30640378,
0.26470256, 0.26470256, 0.26470256, 0.26470256, 0.21761913,
0.21761913, 0.21761913, 0.21761913, 0.17367368, 0.17367368,
0.17367368, 0.17367368, 0.13657873, 0.13657873, 0.13657873,
0.13657873, 0.10648915, 0.10648915, 0.10648915, 0.10648915,
0.08263428, 0.08263428, 0.08263428, 0.08263428, 0.06402751,
0.06402751, 0.06402751, 0.06402751, 0.04972303, 0.04972303,
0.04972303, 0.04972303, 0.03884924, 0.03884924, 0.03884924,
0.03884924, 0.03061895, 0.03061895, 0.03061895, 0.03061895,
0.02440068, 0.02440068, 0.02440068, 0.02440068, 0.01970868,
0.01970868, 0.01970868, 0.01970868, 0.01619841, 0.01619841,
0.01619841, 0.01619841, 0.01361226, 0.01361226, 0.01361226,
0.01361226, 0.01172956, 0.01172956, 0.01172956, 0.01172956,
0.0105538 , 0.0105538 , 0.0105538 , 0.0105538 , 0.00977192,
0.00977192, 0.00977192, 0.00977192, 0.00977192, 0.00977192,
0.00977192, 0.00977192, 0.0105538 , 0.0105538 , 0.0105538 ,
0.0105538 , 0.01172956, 0.01172956, 0.01172956, 0.01172956,
0.01361226, 0.01361226, 0.01361226, 0.01361226, 0.01619841,
0.01619841, 0.01619841, 0.01619841, 0.01970868, 0.01970868,
0.01970868, 0.01970868, 0.02440068, 0.02440068, 0.02440068,
0.02440068, 0.03061895, 0.03061895, 0.03061895, 0.03061895,
0.03884924, 0.03884924, 0.03884924, 0.03884924, 0.04972303,
0.04972303, 0.04972303, 0.04972303, 0.06402751, 0.06402751,
0.06402751, 0.06402751, 0.08263428, 0.08263428, 0.08263428,
0.08263428, 0.10648915, 0.10648915, 0.10648915, 0.10648915,
0.13657873, 0.13657873, 0.13657873, 0.13657873, 0.17367368,
0.17367368, 0.17367368, 0.17367368, 0.21761913, 0.21761913,
0.21761913, 0.21761913, 0.26470256, 0.26470256, 0.26470256,
0.26470256, 0.30640378, 0.30640378, 0.30640378, 0.30640378,
0.3401215 , 0.3401215 , 0.3401215 , 0.3401215 , 0.36483467,
0.36483467, 0.36483467, 0.36483467, 0.3811129 , 0.3811129 ,
0.3811129 , 0.3811129 , 0.39073083, 0.39073083, 0.39073083,
0.39073083, 0.39583774, 0.39583774, 0.39583774, 0.39583774,
0.3982851 , 0.3982851 , 0.3982851 , 0.3982851 , 0.39934947,
0.39934947, 0.39934947, 0.39934947, 0.399772 , 0.399772 ,
0.399772 , 0.399772 , 0.39992592, 0.39992592, 0.39992592,
0.39992592, 0.39997763, 0.39997763, 0.39997763, 0.39997763,
0.3999937 , 0.3999937 , 0.3999937 , 0.3999937 , 0.39999835,
0.39999835, 0.39999835, 0.39999835, 0.39999959, 0.39999959,
0.39999959, 0.39999959, 0.39999991, 0.39999991, 0.39999991])}, {'rho': array([0.9999995 , 0.9999995 , 0.9999995 , 0.9999995 , 0.99999775,
0.99999775, 0.99999775, 0.99999775, 0.99999151, 0.99999151,
0.99999151, 0.99999151, 0.9999699 , 0.9999699 , 0.9999699 ,
0.9999699 , 0.99990026, 0.99990026, 0.99990026, 0.99990026,
0.99969192, 0.99969192, 0.99969192, 0.99969192, 0.99911516,
0.99911516, 0.99911516, 0.99911516, 0.99764348, 0.99764348,
0.99764348, 0.99764348, 0.9941977 , 0.9941977 , 0.9941977 ,
0.9941977 , 0.9868287 , 0.9868287 , 0.9868287 , 0.9868287 ,
0.97249805, 0.97249805, 0.97249805, 0.97249805, 0.94724114,
0.94724114, 0.94724114, 0.94724114, 0.90696367, 0.90696367,
0.90696367, 0.90696367, 0.84879949, 0.84879949, 0.84879949,
0.84879949, 0.77255426, 0.77255426, 0.77255426, 0.77255426,
0.68175915, 0.68175915, 0.68175915, 0.68175915, 0.58187946,
0.58187946, 0.58187946, 0.58187946, 0.48324306, 0.48324306,
0.48324306, 0.48324306, 0.39424599, 0.39424599, 0.39424599,
0.39424599, 0.31723201, 0.31723201, 0.31723201, 0.31723201,
0.25270654, 0.25270654, 0.25270654, 0.25270654, 0.20005976,
0.20005976, 0.20005976, 0.20005976, 0.15808723, 0.15808723,
0.15808723, 0.15808723, 0.12517052, 0.12517052, 0.12517052,
0.12517052, 0.0996631 , 0.0996631 , 0.0996631 , 0.0996631 ,
0.0800948 , 0.0800948 , 0.0800948 , 0.0800948 , 0.06530948,
0.06530948, 0.06530948, 0.06530948, 0.05437734, 0.05437734,
0.05437734, 0.05437734, 0.04651053, 0.04651053, 0.04651053,
0.04651053, 0.04098266, 0.04098266, 0.04098266, 0.04098266,
0.03767661, 0.03767661, 0.03767661, 0.03767661, 0.03560945,
0.03560945, 0.03560945, 0.03560945, 0.03560945, 0.03560945,
0.03560945, 0.03560945, 0.03767661, 0.03767661, 0.03767661,
0.03767661, 0.04098266, 0.04098266, 0.04098266, 0.04098266,
0.04651053, 0.04651053, 0.04651053, 0.04651053, 0.05437734,
0.05437734, 0.05437734, 0.05437734, 0.06530948, 0.06530948,
0.06530948, 0.06530948, 0.0800948 , 0.0800948 , 0.0800948 ,
0.0800948 , 0.0996631 , 0.0996631 , 0.0996631 , 0.0996631 ,
0.12517052, 0.12517052, 0.12517052, 0.12517052, 0.15808723,
0.15808723, 0.15808723, 0.15808723, 0.20005976, 0.20005976,
0.20005976, 0.20005976, 0.25270654, 0.25270654, 0.25270654,
0.25270654, 0.31723201, 0.31723201, 0.31723201, 0.31723201,
0.39424599, 0.39424599, 0.39424599, 0.39424599, 0.48324306,
0.48324306, 0.48324306, 0.48324306, 0.58187946, 0.58187946,
0.58187946, 0.58187946, 0.68175915, 0.68175915, 0.68175915,
0.68175915, 0.77255426, 0.77255426, 0.77255426, 0.77255426,
0.84879949, 0.84879949, 0.84879949, 0.84879949, 0.90696367,
0.90696367, 0.90696367, 0.90696367, 0.94724114, 0.94724114,
0.94724114, 0.94724114, 0.97249805, 0.97249805, 0.97249805,
0.97249805, 0.9868287 , 0.9868287 , 0.9868287 , 0.9868287 ,
0.9941977 , 0.9941977 , 0.9941977 , 0.9941977 , 0.99764348,
0.99764348, 0.99764348, 0.99764348, 0.99911516, 0.99911516,
0.99911516, 0.99911516, 0.99969192, 0.99969192, 0.99969192,
0.99969192, 0.99990026, 0.99990026, 0.99990026, 0.99990026,
0.9999699 , 0.9999699 , 0.9999699 , 0.9999699 , 0.99999151,
0.99999151, 0.99999151, 0.99999151, 0.99999775, 0.99999775,
0.99999775, 0.99999775, 0.9999995 , 0.9999995 , 0.9999995 ]), 'vx': array([-1.99999963, -1.99999963, -1.99999963, -1.99999963, -1.99999832,
-1.99999832, -1.99999832, -1.99999832, -1.99999365, -1.99999365,
-1.99999365, -1.99999365, -1.99997748, -1.99997748, -1.99997748,
-1.99997748, -1.99992541, -1.99992541, -1.99992541, -1.99992541,
-1.99976969, -1.99976969, -1.99976969, -1.99976969, -1.99933891,
-1.99933891, -1.99933891, -1.99933891, -1.99824065, -1.99824065,
-1.99824065, -1.99824065, -1.99567083, -1.99567083, -1.99567083,
-1.99567083, -1.99017235, -1.99017235, -1.99017235, -1.99017235,
-1.97944047, -1.97944047, -1.97944047, -1.97944047, -1.96033591,
-1.96033591, -1.96033591, -1.96033591, -1.92922225, -1.92922225,
-1.92922225, -1.92922225, -1.88254952, -1.88254952, -1.88254952,
-1.88254952, -1.81738377, -1.81738377, -1.81738377, -1.81738377,
-1.7320712 , -1.7320712 , -1.7320712 , -1.7320712 , -1.63119279,
-1.63119279, -1.63119279, -1.63119279, -1.5224141 , -1.5224141 ,
-1.5224141 , -1.5224141 , -1.40952663, -1.40952663, -1.40952663,
-1.40952663, -1.29399695, -1.29399695, -1.29399695, -1.29399695,
-1.17663739, -1.17663739, -1.17663739, -1.17663739, -1.05806176,
-1.05806176, -1.05806176, -1.05806176, -0.93935673, -0.93935673,
-0.93935673, -0.93935673, -0.82164211, -0.82164211, -0.82164211,
-0.82164211, -0.70568889, -0.70568889, -0.70568889, -0.70568889,
-0.59266476, -0.59266476, -0.59266476, -0.59266476, -0.48371266,
-0.48371266, -0.48371266, -0.48371266, -0.37988588, -0.37988588,
-0.37988588, -0.37988588, -0.28225582, -0.28225582, -0.28225582,
-0.28225582, -0.19343253, -0.19343253, -0.19343253, -0.19343253,
-0.10988534, -0.10988534, -0.10988534, -0.10988534, -0.0427074 ,
-0.0427074 , -0.0427074 , -0.0427074 , 0.0427074 , 0.0427074 ,
0.0427074 , 0.0427074 , 0.10988534, 0.10988534, 0.10988534,
0.10988534, 0.19343253, 0.19343253, 0.19343253, 0.19343253,
0.28225582, 0.28225582, 0.28225582, 0.28225582, 0.37988588,
0.37988588, 0.37988588, 0.37988588, 0.48371266, 0.48371266,
0.48371266, 0.48371266, 0.59266476, 0.59266476, 0.59266476,
0.59266476, 0.70568889, 0.70568889, 0.70568889, 0.70568889,
0.82164211, 0.82164211, 0.82164211, 0.82164211, 0.93935673,
0.93935673, 0.93935673, 0.93935673, 1.05806176, 1.05806176,
1.05806176, 1.05806176, 1.17663739, 1.17663739, 1.17663739,
1.17663739, 1.29399695, 1.29399695, 1.29399695, 1.29399695,
1.40952663, 1.40952663, 1.40952663, 1.40952663, 1.5224141 ,
1.5224141 , 1.5224141 , 1.5224141 , 1.63119279, 1.63119279,
1.63119279, 1.63119279, 1.7320712 , 1.7320712 , 1.7320712 ,
1.7320712 , 1.81738377, 1.81738377, 1.81738377, 1.81738377,
1.88254952, 1.88254952, 1.88254952, 1.88254952, 1.92922225,
1.92922225, 1.92922225, 1.92922225, 1.96033591, 1.96033591,
1.96033591, 1.96033591, 1.97944047, 1.97944047, 1.97944047,
1.97944047, 1.99017235, 1.99017235, 1.99017235, 1.99017235,
1.99567083, 1.99567083, 1.99567083, 1.99567083, 1.99824065,
1.99824065, 1.99824065, 1.99824065, 1.99933891, 1.99933891,
1.99933891, 1.99933891, 1.99976969, 1.99976969, 1.99976969,
1.99976969, 1.99992541, 1.99992541, 1.99992541, 1.99992541,
1.99997748, 1.99997748, 1.99997748, 1.99997748, 1.99999365,
1.99999365, 1.99999365, 1.99999365, 1.99999832, 1.99999832,
1.99999832, 1.99999832, 1.99999963, 1.99999963, 1.99999963]), 'P': array([0.39999972, 0.39999972, 0.39999972, 0.39999972, 0.39999874,
0.39999874, 0.39999874, 0.39999874, 0.39999525, 0.39999525,
0.39999525, 0.39999525, 0.39998315, 0.39998315, 0.39998315,
0.39998315, 0.39994419, 0.39994419, 0.39994419, 0.39994419,
0.39982769, 0.39982769, 0.39982769, 0.39982769, 0.39950557,
0.39950557, 0.39950557, 0.39950557, 0.39868543, 0.39868543,
0.39868543, 0.39868543, 0.39677235, 0.39677235, 0.39677235,
0.39677235, 0.39270661, 0.39270661, 0.39270661, 0.39270661,
0.38487747, 0.38487747, 0.38487747, 0.38487747, 0.3712801 ,
0.3712801 , 0.3712801 , 0.3712801 , 0.35003692, 0.35003692,
0.35003692, 0.35003692, 0.32016663, 0.32016663, 0.32016663,
0.32016663, 0.28215814, 0.28215814, 0.28215814, 0.28215814,
0.23766321, 0.23766321, 0.23766321, 0.23766321, 0.19261647,
0.19261647, 0.19261647, 0.19261647, 0.15337765, 0.15337765,
0.15337765, 0.15337765, 0.12086577, 0.12086577, 0.12086577,
0.12086577, 0.09464989, 0.09464989, 0.09464989, 0.09464989,
0.07388122, 0.07388122, 0.07388122, 0.07388122, 0.0576594 ,
0.0576594 , 0.0576594 , 0.0576594 , 0.04515925, 0.04515925,
0.04515925, 0.04515925, 0.03560064, 0.03560064, 0.03560064,
0.03560064, 0.02831583, 0.02831583, 0.02831583, 0.02831583,
0.02276887, 0.02276887, 0.02276887, 0.02276887, 0.0185577 ,
0.0185577 , 0.0185577 , 0.0185577 , 0.01538723, 0.01538723,
0.01538723, 0.01538723, 0.01304001, 0.01304001, 0.01304001,
0.01304001, 0.01131957, 0.01131957, 0.01131957, 0.01131957,
0.01025723, 0.01025723, 0.01025723, 0.01025723, 0.00953828,
0.00953828, 0.00953828, 0.00953828, 0.00953828, 0.00953828,
0.00953828, 0.00953828, 0.01025723, 0.01025723, 0.01025723,
0.01025723, 0.01131957, 0.01131957, 0.01131957, 0.01131957,
0.01304001, 0.01304001, 0.01304001, 0.01304001, 0.01538723,
0.01538723, 0.01538723, 0.01538723, 0.0185577 , 0.0185577 ,
0.0185577 , 0.0185577 , 0.02276887, 0.02276887, 0.02276887,
0.02276887, 0.02831583, 0.02831583, 0.02831583, 0.02831583,
0.03560064, 0.03560064, 0.03560064, 0.03560064, 0.04515925,
0.04515925, 0.04515925, 0.04515925, 0.0576594 , 0.0576594 ,
0.0576594 , 0.0576594 , 0.07388122, 0.07388122, 0.07388122,
0.07388122, 0.09464989, 0.09464989, 0.09464989, 0.09464989,
0.12086577, 0.12086577, 0.12086577, 0.12086577, 0.15337765,
0.15337765, 0.15337765, 0.15337765, 0.19261647, 0.19261647,
0.19261647, 0.19261647, 0.23766321, 0.23766321, 0.23766321,
0.23766321, 0.28215814, 0.28215814, 0.28215814, 0.28215814,
0.32016663, 0.32016663, 0.32016663, 0.32016663, 0.35003692,
0.35003692, 0.35003692, 0.35003692, 0.3712801 , 0.3712801 ,
0.3712801 , 0.3712801 , 0.38487747, 0.38487747, 0.38487747,
0.38487747, 0.39270661, 0.39270661, 0.39270661, 0.39270661,
0.39677235, 0.39677235, 0.39677235, 0.39677235, 0.39868543,
0.39868543, 0.39868543, 0.39868543, 0.39950557, 0.39950557,
0.39950557, 0.39950557, 0.39982769, 0.39982769, 0.39982769,
0.39982769, 0.39994419, 0.39994419, 0.39994419, 0.39994419,
0.39998315, 0.39998315, 0.39998315, 0.39998315, 0.39999525,
0.39999525, 0.39999525, 0.39999525, 0.39999874, 0.39999874,
0.39999874, 0.39999874, 0.39999972, 0.39999972, 0.39999972])}, {'rho': array([0.99999847, 0.99999847, 0.99999847, 0.99999847, 0.99999357,
0.99999357, 0.99999357, 0.99999357, 0.99997732, 0.99997732,
0.99997732, 0.99997732, 0.99992482, 0.99992482, 0.99992482,
0.99992482, 0.99976716, 0.99976716, 0.99976716, 0.99976716,
0.99932783, 0.99932783, 0.99932783, 0.99932783, 0.99819613,
0.99819613, 0.99819613, 0.99819613, 0.99551258, 0.99551258,
0.99551258, 0.99551258, 0.98968135, 0.98968135, 0.98968135,
0.98968135, 0.97812118, 0.97812118, 0.97812118, 0.97812118,
0.95728984, 0.95728984, 0.95728984, 0.95728984, 0.92324227,
0.92324227, 0.92324227, 0.92324227, 0.87276271, 0.87276271,
0.87276271, 0.87276271, 0.8047176 , 0.8047176 , 0.8047176 ,
0.8047176 , 0.72116255, 0.72116255, 0.72116255, 0.72116255,
0.62714836, 0.62714836, 0.62714836, 0.62714836, 0.52957021,
0.52957021, 0.52957021, 0.52957021, 0.43858686, 0.43858686,
0.43858686, 0.43858686, 0.35783746, 0.35783746, 0.35783746,
0.35783746, 0.28857469, 0.28857469, 0.28857469, 0.28857469,
0.2307988 , 0.2307988 , 0.2307988 , 0.2307988 , 0.1837447 ,
0.1837447 , 0.1837447 , 0.1837447 , 0.14619579, 0.14619579,
0.14619579, 0.14619579, 0.11662939, 0.11662939, 0.11662939,
0.11662939, 0.09360282, 0.09360282, 0.09360282, 0.09360282,
0.07583372, 0.07583372, 0.07583372, 0.07583372, 0.0623598 ,
0.0623598 , 0.0623598 , 0.0623598 , 0.05234262, 0.05234262,
0.05234262, 0.05234262, 0.04510453, 0.04510453, 0.04510453,
0.04510453, 0.03998822, 0.03998822, 0.03998822, 0.03998822,
0.03696215, 0.03696215, 0.03696215, 0.03696215, 0.03504521,
0.03504521, 0.03504521, 0.03504521, 0.03504521, 0.03504521,
0.03504521, 0.03504521, 0.03696215, 0.03696215, 0.03696215,
0.03696215, 0.03998822, 0.03998822, 0.03998822, 0.03998822,
0.04510453, 0.04510453, 0.04510453, 0.04510453, 0.05234262,
0.05234262, 0.05234262, 0.05234262, 0.0623598 , 0.0623598 ,
0.0623598 , 0.0623598 , 0.07583372, 0.07583372, 0.07583372,
0.07583372, 0.09360282, 0.09360282, 0.09360282, 0.09360282,
0.11662939, 0.11662939, 0.11662939, 0.11662939, 0.14619579,
0.14619579, 0.14619579, 0.14619579, 0.1837447 , 0.1837447 ,
0.1837447 , 0.1837447 , 0.2307988 , 0.2307988 , 0.2307988 ,
0.2307988 , 0.28857469, 0.28857469, 0.28857469, 0.28857469,
0.35783746, 0.35783746, 0.35783746, 0.35783746, 0.43858686,
0.43858686, 0.43858686, 0.43858686, 0.52957021, 0.52957021,
0.52957021, 0.52957021, 0.62714836, 0.62714836, 0.62714836,
0.62714836, 0.72116255, 0.72116255, 0.72116255, 0.72116255,
0.8047176 , 0.8047176 , 0.8047176 , 0.8047176 , 0.87276271,
0.87276271, 0.87276271, 0.87276271, 0.92324227, 0.92324227,
0.92324227, 0.92324227, 0.95728984, 0.95728984, 0.95728984,
0.95728984, 0.97812118, 0.97812118, 0.97812118, 0.97812118,
0.98968135, 0.98968135, 0.98968135, 0.98968135, 0.99551258,
0.99551258, 0.99551258, 0.99551258, 0.99819613, 0.99819613,
0.99819613, 0.99819613, 0.99932783, 0.99932783, 0.99932783,
0.99932783, 0.99976716, 0.99976716, 0.99976716, 0.99976716,
0.99992482, 0.99992482, 0.99992482, 0.99992482, 0.99997732,
0.99997732, 0.99997732, 0.99997732, 0.99999357, 0.99999357,
0.99999357, 0.99999357, 0.99999847, 0.99999847, 0.99999847]), 'vx': array([-1.99999886, -1.99999886, -1.99999886, -1.99999886, -1.99999519,
-1.99999519, -1.99999519, -1.99999519, -1.99998304, -1.99998304,
-1.99998304, -1.99998304, -1.99994377, -1.99994377, -1.99994377,
-1.99994377, -1.9998259 , -1.9998259 , -1.9998259 , -1.9998259 ,
-1.99949762, -1.99949762, -1.99949762, -1.99949762, -1.99865259,
-1.99865259, -1.99865259, -1.99865259, -1.99665 , -1.99665 ,
-1.99665 , -1.99665 , -1.99229744, -1.99229744, -1.99229744,
-1.99229744, -1.98364593, -1.98364593, -1.98364593, -1.98364593,
-1.96793482, -1.96793482, -1.96793482, -1.96793482, -1.94182029,
-1.94182029, -1.94182029, -1.94182029, -1.90188121, -1.90188121,
-1.90188121, -1.90188121, -1.84517809, -1.84517809, -1.84517809,
-1.84517809, -1.76960221, -1.76960221, -1.76960221, -1.76960221,
-1.67650008, -1.67650008, -1.67650008, -1.67650008, -1.57350313,
-1.57350313, -1.57350313, -1.57350313, -1.46554675, -1.46554675,
-1.46554675, -1.46554675, -1.35474156, -1.35474156, -1.35474156,
-1.35474156, -1.24188933, -1.24188933, -1.24188933, -1.24188933,
-1.12760981, -1.12760981, -1.12760981, -1.12760981, -1.01250337,
-1.01250337, -1.01250337, -1.01250337, -0.89775199, -0.89775199,
-0.89775199, -0.89775199, -0.78412707, -0.78412707, -0.78412707,
-0.78412707, -0.67240099, -0.67240099, -0.67240099, -0.67240099,
-0.56376681, -0.56376681, -0.56376681, -0.56376681, -0.45914055,
-0.45914055, -0.45914055, -0.45914055, -0.35967195, -0.35967195,
-0.35967195, -0.35967195, -0.26636932, -0.26636932, -0.26636932,
-0.26636932, -0.18206513, -0.18206513, -0.18206513, -0.18206513,
-0.10268501, -0.10268501, -0.10268501, -0.10268501, -0.03978378,
-0.03978378, -0.03978378, -0.03978378, 0.03978378, 0.03978378,
0.03978378, 0.03978378, 0.10268501, 0.10268501, 0.10268501,
0.10268501, 0.18206513, 0.18206513, 0.18206513, 0.18206513,
0.26636932, 0.26636932, 0.26636932, 0.26636932, 0.35967195,
0.35967195, 0.35967195, 0.35967195, 0.45914055, 0.45914055,
0.45914055, 0.45914055, 0.56376681, 0.56376681, 0.56376681,
0.56376681, 0.67240099, 0.67240099, 0.67240099, 0.67240099,
0.78412707, 0.78412707, 0.78412707, 0.78412707, 0.89775199,
0.89775199, 0.89775199, 0.89775199, 1.01250337, 1.01250337,
1.01250337, 1.01250337, 1.12760981, 1.12760981, 1.12760981,
1.12760981, 1.24188933, 1.24188933, 1.24188933, 1.24188933,
1.35474156, 1.35474156, 1.35474156, 1.35474156, 1.46554675,
1.46554675, 1.46554675, 1.46554675, 1.57350313, 1.57350313,
1.57350313, 1.57350313, 1.67650008, 1.67650008, 1.67650008,
1.67650008, 1.76960221, 1.76960221, 1.76960221, 1.76960221,
1.84517809, 1.84517809, 1.84517809, 1.84517809, 1.90188121,
1.90188121, 1.90188121, 1.90188121, 1.94182029, 1.94182029,
1.94182029, 1.94182029, 1.96793482, 1.96793482, 1.96793482,
1.96793482, 1.98364593, 1.98364593, 1.98364593, 1.98364593,
1.99229744, 1.99229744, 1.99229744, 1.99229744, 1.99665 ,
1.99665 , 1.99665 , 1.99665 , 1.99865259, 1.99865259,
1.99865259, 1.99865259, 1.99949762, 1.99949762, 1.99949762,
1.99949762, 1.9998259 , 1.9998259 , 1.9998259 , 1.9998259 ,
1.99994377, 1.99994377, 1.99994377, 1.99994377, 1.99998304,
1.99998304, 1.99998304, 1.99998304, 1.99999519, 1.99999519,
1.99999519, 1.99999519, 1.99999886, 1.99999886, 1.99999886]), 'P': array([0.39999914, 0.39999914, 0.39999914, 0.39999914, 0.3999964 ,
0.3999964 , 0.3999964 , 0.3999964 , 0.39998731, 0.39998731,
0.39998731, 0.39998731, 0.39995792, 0.39995792, 0.39995792,
0.39995792, 0.39986973, 0.39986973, 0.39986973, 0.39986973,
0.39962422, 0.39962422, 0.39962422, 0.39962422, 0.39899287,
0.39899287, 0.39899287, 0.39899287, 0.3975003 , 0.3975003 ,
0.3975003 , 0.3975003 , 0.39427349, 0.39427349, 0.39427349,
0.39427349, 0.38792864, 0.38792864, 0.38792864, 0.38792864,
0.37663634, 0.37663634, 0.37663634, 0.37663634, 0.35850421,
0.35850421, 0.35850421, 0.35850421, 0.33225106, 0.33225106,
0.33225106, 0.33225106, 0.29786124, 0.29786124, 0.29786124,
0.29786124, 0.25659571, 0.25659571, 0.25659571, 0.25659571,
0.21172167, 0.21172167, 0.21172167, 0.21172167, 0.17074616,
0.17074616, 0.17074616, 0.17074616, 0.13602374, 0.13602374,
0.13602374, 0.13602374, 0.10753076, 0.10753076, 0.10753076,
0.10753076, 0.08461296, 0.08461296, 0.08461296, 0.08461296,
0.06644791, 0.06644791, 0.06644791, 0.06644791, 0.05223703,
0.05223703, 0.05223703, 0.05223703, 0.04125001, 0.04125001,
0.04125001, 0.04125001, 0.03279609, 0.03279609, 0.03279609,
0.03279609, 0.02631068, 0.02631068, 0.02631068, 0.02631068,
0.02133519, 0.02133519, 0.02133519, 0.02133519, 0.01753846,
0.01753846, 0.01753846, 0.01753846, 0.01466246, 0.01466246,
0.01466246, 0.01466246, 0.01252489, 0.01252489, 0.01252489,
0.01252489, 0.01094784, 0.01094784, 0.01094784, 0.01094784,
0.0099871 , 0.0099871 , 0.0099871 , 0.0099871 , 0.0093257 ,
0.0093257 , 0.0093257 , 0.0093257 , 0.0093257 , 0.0093257 ,
0.0093257 , 0.0093257 , 0.0099871 , 0.0099871 , 0.0099871 ,
0.0099871 , 0.01094784, 0.01094784, 0.01094784, 0.01094784,
0.01252489, 0.01252489, 0.01252489, 0.01252489, 0.01466246,
0.01466246, 0.01466246, 0.01466246, 0.01753846, 0.01753846,
0.01753846, 0.01753846, 0.02133519, 0.02133519, 0.02133519,
0.02133519, 0.02631068, 0.02631068, 0.02631068, 0.02631068,
0.03279609, 0.03279609, 0.03279609, 0.03279609, 0.04125001,
0.04125001, 0.04125001, 0.04125001, 0.05223703, 0.05223703,
0.05223703, 0.05223703, 0.06644791, 0.06644791, 0.06644791,
0.06644791, 0.08461296, 0.08461296, 0.08461296, 0.08461296,
0.10753076, 0.10753076, 0.10753076, 0.10753076, 0.13602374,
0.13602374, 0.13602374, 0.13602374, 0.17074616, 0.17074616,
0.17074616, 0.17074616, 0.21172167, 0.21172167, 0.21172167,
0.21172167, 0.25659571, 0.25659571, 0.25659571, 0.25659571,
0.29786124, 0.29786124, 0.29786124, 0.29786124, 0.33225106,
0.33225106, 0.33225106, 0.33225106, 0.35850421, 0.35850421,
0.35850421, 0.35850421, 0.37663634, 0.37663634, 0.37663634,
0.37663634, 0.38792864, 0.38792864, 0.38792864, 0.38792864,
0.39427349, 0.39427349, 0.39427349, 0.39427349, 0.3975003 ,
0.3975003 , 0.3975003 , 0.3975003 , 0.39899287, 0.39899287,
0.39899287, 0.39899287, 0.39962422, 0.39962422, 0.39962422,
0.39962422, 0.39986973, 0.39986973, 0.39986973, 0.39986973,
0.39995792, 0.39995792, 0.39995792, 0.39995792, 0.39998731,
0.39998731, 0.39998731, 0.39998731, 0.3999964 , 0.3999964 ,
0.3999964 , 0.3999964 , 0.39999914, 0.39999914, 0.39999914])}, {'rho': array([0.99999566, 0.99999566, 0.99999566, 0.99999566, 0.99998283,
0.99998283, 0.99998283, 0.99998283, 0.99994331, 0.99994331,
0.99994331, 0.99994331, 0.99982395, 0.99982395, 0.99982395,
0.99982395, 0.99948933, 0.99948933, 0.99948933, 0.99948933,
0.9986196 , 0.9986196 , 0.9986196 , 0.9986196 , 0.99653253,
0.99653253, 0.99653253, 0.99653253, 0.99192857, 0.99192857,
0.99192857, 0.99192857, 0.98263354, 0.98263354, 0.98263354,
0.98263354, 0.96552537, 0.96552537, 0.96552537, 0.96552537,
0.93689349, 0.93689349, 0.93689349, 0.93689349, 0.89334911,
0.89334911, 0.89334911, 0.89334911, 0.83306104, 0.83306104,
0.83306104, 0.83306104, 0.7568574 , 0.7568574 , 0.7568574 ,
0.7568574 , 0.66886528, 0.66886528, 0.66886528, 0.66886528,
0.57434604, 0.57434604, 0.57434604, 0.57434604, 0.48263253,
0.48263253, 0.48263253, 0.48263253, 0.39923911, 0.39923911,
0.39923911, 0.39923911, 0.32605056, 0.32605056, 0.32605056,
0.32605056, 0.26366261, 0.26366261, 0.26366261, 0.26366261,
0.21178267, 0.21178267, 0.21178267, 0.21178267, 0.16957807,
0.16957807, 0.16957807, 0.16957807, 0.13582335, 0.13582335,
0.13582335, 0.13582335, 0.10913615, 0.10913615, 0.10913615,
0.10913615, 0.08824699, 0.08824699, 0.08824699, 0.08824699,
0.07204686, 0.07204686, 0.07204686, 0.07204686, 0.05971767,
0.05971767, 0.05971767, 0.05971767, 0.0505044 , 0.0505044 ,
0.0505044 , 0.0505044 , 0.04382509, 0.04382509, 0.04382509,
0.04382509, 0.03907704, 0.03907704, 0.03907704, 0.03907704,
0.03630491, 0.03630491, 0.03630491, 0.03630491, 0.03452707,
0.03452707, 0.03452707, 0.03452707, 0.03452707, 0.03452707,
0.03452707, 0.03452707, 0.03630491, 0.03630491, 0.03630491,
0.03630491, 0.03907704, 0.03907704, 0.03907704, 0.03907704,
0.04382509, 0.04382509, 0.04382509, 0.04382509, 0.0505044 ,
0.0505044 , 0.0505044 , 0.0505044 , 0.05971767, 0.05971767,
0.05971767, 0.05971767, 0.07204686, 0.07204686, 0.07204686,
0.07204686, 0.08824699, 0.08824699, 0.08824699, 0.08824699,
0.10913615, 0.10913615, 0.10913615, 0.10913615, 0.13582335,
0.13582335, 0.13582335, 0.13582335, 0.16957807, 0.16957807,
0.16957807, 0.16957807, 0.21178267, 0.21178267, 0.21178267,
0.21178267, 0.26366261, 0.26366261, 0.26366261, 0.26366261,
0.32605056, 0.32605056, 0.32605056, 0.32605056, 0.39923911,
0.39923911, 0.39923911, 0.39923911, 0.48263253, 0.48263253,
0.48263253, 0.48263253, 0.57434604, 0.57434604, 0.57434604,
0.57434604, 0.66886528, 0.66886528, 0.66886528, 0.66886528,
0.7568574 , 0.7568574 , 0.7568574 , 0.7568574 , 0.83306104,
0.83306104, 0.83306104, 0.83306104, 0.89334911, 0.89334911,
0.89334911, 0.89334911, 0.93689349, 0.93689349, 0.93689349,
0.93689349, 0.96552537, 0.96552537, 0.96552537, 0.96552537,
0.98263354, 0.98263354, 0.98263354, 0.98263354, 0.99192857,
0.99192857, 0.99192857, 0.99192857, 0.99653253, 0.99653253,
0.99653253, 0.99653253, 0.9986196 , 0.9986196 , 0.9986196 ,
0.9986196 , 0.99948933, 0.99948933, 0.99948933, 0.99948933,
0.99982395, 0.99982395, 0.99982395, 0.99982395, 0.99994331,
0.99994331, 0.99994331, 0.99994331, 0.99998283, 0.99998283,
0.99998283, 0.99998283, 0.99999566, 0.99999566, 0.99999566]), 'vx': array([-1.99999675, -1.99999675, -1.99999675, -1.99999675, -1.99998715,
-1.99998715, -1.99998715, -1.99998715, -1.9999576 , -1.9999576 ,
-1.9999576 , -1.9999576 , -1.99986834, -1.99986834, -1.99986834,
-1.99986834, -1.99961822, -1.99961822, -1.99961822, -1.99961822,
-1.99896851, -1.99896851, -1.99896851, -1.99896851, -1.99741024,
-1.99741024, -1.99741024, -1.99741024, -1.99397261, -1.99397261,
-1.99397261, -1.99397261, -1.98701925, -1.98701925, -1.98701925,
-1.98701925, -1.97414468, -1.97414468, -1.97414468, -1.97414468,
-1.95230703, -1.95230703, -1.95230703, -1.95230703, -1.91824244,
-1.91824244, -1.91824244, -1.91824244, -1.86901264, -1.86901264,
-1.86901264, -1.86901264, -1.80239983, -1.80239983, -1.80239983,
-1.80239983, -1.71777174, -1.71777174, -1.71777174, -1.71777174,
-1.62075227, -1.62075227, -1.62075227, -1.62075227, -1.5176673 ,
-1.5176673 , -1.5176673 , -1.5176673 , -1.41130546, -1.41130546,
-1.41130546, -1.41130546, -1.30281595, -1.30281595, -1.30281595,
-1.30281595, -1.1926813 , -1.1926813 , -1.1926813 , -1.1926813 ,
-1.08144071, -1.08144071, -1.08144071, -1.08144071, -0.9698171 ,
-0.9698171 , -0.9698171 , -0.9698171 , -0.85882329, -0.85882329,
-0.85882329, -0.85882329, -0.74907381, -0.74907381, -0.74907381,
-0.74907381, -0.64135792, -0.64135792, -0.64135792, -0.64135792,
-0.5368285 , -0.5368285 , -0.5368285 , -0.5368285 , -0.43626287,
-0.43626287, -0.43626287, -0.43626287, -0.34088793, -0.34088793,
-0.34088793, -0.34088793, -0.25163926, -0.25163926, -0.25163926,
-0.25163926, -0.17159155, -0.17159155, -0.17159155, -0.17159155,
-0.09609388, -0.09609388, -0.09609388, -0.09609388, -0.03710493,
-0.03710493, -0.03710493, -0.03710493, 0.03710493, 0.03710493,
0.03710493, 0.03710493, 0.09609388, 0.09609388, 0.09609388,
0.09609388, 0.17159155, 0.17159155, 0.17159155, 0.17159155,
0.25163926, 0.25163926, 0.25163926, 0.25163926, 0.34088793,
0.34088793, 0.34088793, 0.34088793, 0.43626287, 0.43626287,
0.43626287, 0.43626287, 0.5368285 , 0.5368285 , 0.5368285 ,
0.5368285 , 0.64135792, 0.64135792, 0.64135792, 0.64135792,
0.74907381, 0.74907381, 0.74907381, 0.74907381, 0.85882329,
0.85882329, 0.85882329, 0.85882329, 0.9698171 , 0.9698171 ,
0.9698171 , 0.9698171 , 1.08144071, 1.08144071, 1.08144071,
1.08144071, 1.1926813 , 1.1926813 , 1.1926813 , 1.1926813 ,
1.30281595, 1.30281595, 1.30281595, 1.30281595, 1.41130546,
1.41130546, 1.41130546, 1.41130546, 1.5176673 , 1.5176673 ,
1.5176673 , 1.5176673 , 1.62075227, 1.62075227, 1.62075227,
1.62075227, 1.71777174, 1.71777174, 1.71777174, 1.71777174,
1.80239983, 1.80239983, 1.80239983, 1.80239983, 1.86901264,
1.86901264, 1.86901264, 1.86901264, 1.91824244, 1.91824244,
1.91824244, 1.91824244, 1.95230703, 1.95230703, 1.95230703,
1.95230703, 1.97414468, 1.97414468, 1.97414468, 1.97414468,
1.98701925, 1.98701925, 1.98701925, 1.98701925, 1.99397261,
1.99397261, 1.99397261, 1.99397261, 1.99741024, 1.99741024,
1.99741024, 1.99741024, 1.99896851, 1.99896851, 1.99896851,
1.99896851, 1.99961822, 1.99961822, 1.99961822, 1.99961822,
1.99986834, 1.99986834, 1.99986834, 1.99986834, 1.9999576 ,
1.9999576 , 1.9999576 , 1.9999576 , 1.99998715, 1.99998715,
1.99998715, 1.99998715, 1.99999675, 1.99999675, 1.99999675]), 'P': array([0.39999757, 0.39999757, 0.39999757, 0.39999757, 0.39999039,
0.39999039, 0.39999039, 0.39999039, 0.39996827, 0.39996827,
0.39996827, 0.39996827, 0.39990149, 0.39990149, 0.39990149,
0.39990149, 0.3997144 , 0.3997144 , 0.3997144 , 0.3997144 ,
0.3992288 , 0.3992288 , 0.3992288 , 0.3992288 , 0.39806632,
0.39806632, 0.39806632, 0.39806632, 0.39551257, 0.39551257,
0.39551257, 0.39551257, 0.3903916 , 0.3903916 , 0.3903916 ,
0.3903916 , 0.38106417, 0.38106417, 0.38106417, 0.38106417,
0.36569 , 0.36569 , 0.36569 , 0.36569 , 0.34279115,
0.34279115, 0.34279115, 0.34279115, 0.31191214, 0.31191214,
0.31191214, 0.31191214, 0.27393752, 0.27393752, 0.27393752,
0.27393752, 0.23071361, 0.23071361, 0.23071361, 0.23071361,
0.18851007, 0.18851007, 0.18851007, 0.18851007, 0.15183356,
0.15183356, 0.15183356, 0.15183356, 0.12119467, 0.12119467,
0.12119467, 0.12119467, 0.09617199, 0.09617199, 0.09617199,
0.09617199, 0.07605835, 0.07605835, 0.07605835, 0.07605835,
0.06009841, 0.06009841, 0.06009841, 0.06009841, 0.04759159,
0.04759159, 0.04759159, 0.04759159, 0.03787746, 0.03787746,
0.03787746, 0.03787746, 0.03035827, 0.03035827, 0.03035827,
0.03035827, 0.02455267, 0.02455267, 0.02455267, 0.02455267,
0.02006904, 0.02006904, 0.02006904, 0.02006904, 0.01663084,
0.01663084, 0.01663084, 0.01663084, 0.01401174, 0.01401174,
0.01401174, 0.01401174, 0.0120593 , 0.0120593 , 0.0120593 ,
0.0120593 , 0.01060965, 0.01060965, 0.01060965, 0.01060965,
0.00974025, 0.00974025, 0.00974025, 0.00974025, 0.00913165,
0.00913165, 0.00913165, 0.00913165, 0.00913165, 0.00913165,
0.00913165, 0.00913165, 0.00974025, 0.00974025, 0.00974025,
0.00974025, 0.01060965, 0.01060965, 0.01060965, 0.01060965,
0.0120593 , 0.0120593 , 0.0120593 , 0.0120593 , 0.01401174,
0.01401174, 0.01401174, 0.01401174, 0.01663084, 0.01663084,
0.01663084, 0.01663084, 0.02006904, 0.02006904, 0.02006904,
0.02006904, 0.02455267, 0.02455267, 0.02455267, 0.02455267,
0.03035827, 0.03035827, 0.03035827, 0.03035827, 0.03787746,
0.03787746, 0.03787746, 0.03787746, 0.04759159, 0.04759159,
0.04759159, 0.04759159, 0.06009841, 0.06009841, 0.06009841,
0.06009841, 0.07605835, 0.07605835, 0.07605835, 0.07605835,
0.09617199, 0.09617199, 0.09617199, 0.09617199, 0.12119467,
0.12119467, 0.12119467, 0.12119467, 0.15183356, 0.15183356,
0.15183356, 0.15183356, 0.18851007, 0.18851007, 0.18851007,
0.18851007, 0.23071361, 0.23071361, 0.23071361, 0.23071361,
0.27393752, 0.27393752, 0.27393752, 0.27393752, 0.31191214,
0.31191214, 0.31191214, 0.31191214, 0.34279115, 0.34279115,
0.34279115, 0.34279115, 0.36569 , 0.36569 , 0.36569 ,
0.36569 , 0.38106417, 0.38106417, 0.38106417, 0.38106417,
0.3903916 , 0.3903916 , 0.3903916 , 0.3903916 , 0.39551257,
0.39551257, 0.39551257, 0.39551257, 0.39806632, 0.39806632,
0.39806632, 0.39806632, 0.3992288 , 0.3992288 , 0.3992288 ,
0.3992288 , 0.3997144 , 0.3997144 , 0.3997144 , 0.3997144 ,
0.39990149, 0.39990149, 0.39990149, 0.39990149, 0.39996827,
0.39996827, 0.39996827, 0.39996827, 0.39999039, 0.39999039,
0.39999039, 0.39999039, 0.39999757, 0.39999757, 0.39999757])}, {'rho': array([0.99998847, 0.99998847, 0.99998847, 0.99998847, 0.99995701,
0.99995701, 0.99995701, 0.99995701, 0.99986688, 0.99986688,
0.99986688, 0.99986688, 0.99961198, 0.99961198, 0.99961198,
0.99961198, 0.99894398, 0.99894398, 0.99894398, 0.99894398,
0.99732287, 0.99732287, 0.99732287, 0.99732287, 0.99369558,
0.99369558, 0.99369558, 0.99369558, 0.9862448 , 0.9862448 ,
0.9862448 , 0.9862448 , 0.97225128, 0.97225128, 0.97225128,
0.97225128, 0.94829355, 0.94829355, 0.94829355, 0.94829355,
0.91094941, 0.91094941, 0.91094941, 0.91094941, 0.85789256,
0.85789256, 0.85789256, 0.85789256, 0.78897867, 0.78897867,
0.78897867, 0.78897867, 0.70702155, 0.70702155, 0.70702155,
0.70702155, 0.61699851, 0.61699851, 0.61699851, 0.61699851,
0.52578519, 0.52578519, 0.52578519, 0.52578519, 0.44081147,
0.44081147, 0.44081147, 0.44081147, 0.36459482, 0.36459482,
0.36459482, 0.36459482, 0.29823676, 0.29823676, 0.29823676,
0.29823676, 0.2419276 , 0.2419276 , 0.2419276 , 0.2419276 ,
0.19520709, 0.19520709, 0.19520709, 0.19520709, 0.1572058 ,
0.1572058 , 0.1572058 , 0.1572058 , 0.12672261, 0.12672261,
0.12672261, 0.12672261, 0.1025238 , 0.1025238 , 0.1025238 ,
0.1025238 , 0.08348797, 0.08348797, 0.08348797, 0.08348797,
0.06866448, 0.06866448, 0.06866448, 0.06866448, 0.05733948,
0.05733948, 0.05733948, 0.05733948, 0.04883664, 0.04883664,
0.04883664, 0.04883664, 0.04265685, 0.04265685, 0.04265685,
0.04265685, 0.03823985, 0.03823985, 0.03823985, 0.03823985,
0.03569867, 0.03569867, 0.03569867, 0.03569867, 0.03404996,
0.03404996, 0.03404996, 0.03404996, 0.03404996, 0.03404996,
0.03404996, 0.03404996, 0.03569867, 0.03569867, 0.03569867,
0.03569867, 0.03823985, 0.03823985, 0.03823985, 0.03823985,
0.04265685, 0.04265685, 0.04265685, 0.04265685, 0.04883664,
0.04883664, 0.04883664, 0.04883664, 0.05733948, 0.05733948,
0.05733948, 0.05733948, 0.06866448, 0.06866448, 0.06866448,
0.06866448, 0.08348797, 0.08348797, 0.08348797, 0.08348797,
0.1025238 , 0.1025238 , 0.1025238 , 0.1025238 , 0.12672261,
0.12672261, 0.12672261, 0.12672261, 0.1572058 , 0.1572058 ,
0.1572058 , 0.1572058 , 0.19520709, 0.19520709, 0.19520709,
0.19520709, 0.2419276 , 0.2419276 , 0.2419276 , 0.2419276 ,
0.29823676, 0.29823676, 0.29823676, 0.29823676, 0.36459482,
0.36459482, 0.36459482, 0.36459482, 0.44081147, 0.44081147,
0.44081147, 0.44081147, 0.52578519, 0.52578519, 0.52578519,
0.52578519, 0.61699851, 0.61699851, 0.61699851, 0.61699851,
0.70702155, 0.70702155, 0.70702155, 0.70702155, 0.78897867,
0.78897867, 0.78897867, 0.78897867, 0.85789256, 0.85789256,
0.85789256, 0.85789256, 0.91094941, 0.91094941, 0.91094941,
0.91094941, 0.94829355, 0.94829355, 0.94829355, 0.94829355,
0.97225128, 0.97225128, 0.97225128, 0.97225128, 0.9862448 ,
0.9862448 , 0.9862448 , 0.9862448 , 0.99369558, 0.99369558,
0.99369558, 0.99369558, 0.99732287, 0.99732287, 0.99732287,
0.99732287, 0.99894398, 0.99894398, 0.99894398, 0.99894398,
0.99961198, 0.99961198, 0.99961198, 0.99961198, 0.99986688,
0.99986688, 0.99986688, 0.99986688, 0.99995701, 0.99995701,
0.99995701, 0.99995701, 0.99998847, 0.99998847, 0.99998847]), 'vx': array([-1.99999137, -1.99999137, -1.99999137, -1.99999137, -1.99996784,
-1.99996784, -1.99996784, -1.99996784, -1.99990043, -1.99990043,
-1.99990043, -1.99990043, -1.99970985, -1.99970985, -1.99970985,
-1.99970985, -1.99921065, -1.99921065, -1.99921065, -1.99921065,
-1.99799978, -1.99799978, -1.99799978, -1.99799978, -1.99529058,
-1.99529058, -1.99529058, -1.99529058, -1.98971828, -1.98971828,
-1.98971828, -1.98971828, -1.97920517, -1.97920517, -1.97920517,
-1.97920517, -1.96101325, -1.96101325, -1.96101325, -1.96101325,
-1.93206382, -1.93206382, -1.93206382, -1.93206382, -1.88944595,
-1.88944595, -1.88944595, -1.88944595, -1.83086286, -1.83086286,
-1.83086286, -1.83086286, -1.75493987, -1.75493987, -1.75493987,
-1.75493987, -1.6643763 , -1.6643763 , -1.6643763 , -1.6643763 ,
-1.56616266, -1.56616266, -1.56616266, -1.56616266, -1.4641092 ,
-1.4641092 , -1.4641092 , -1.4641092 , -1.35970933, -1.35970933,
-1.35970933, -1.35970933, -1.25362276, -1.25362276, -1.25362276,
-1.25362276, -1.14620091, -1.14620091, -1.14620091, -1.14620091,
-1.03796511, -1.03796511, -1.03796511, -1.03796511, -0.92976499,
-0.92976499, -0.92976499, -0.92976499, -0.82233856, -0.82233856,
-0.82233856, -0.82233856, -0.71626507, -0.71626507, -0.71626507,
-0.71626507, -0.61235476, -0.61235476, -0.61235476, -0.61235476,
-0.51166547, -0.51166547, -0.51166547, -0.51166547, -0.41492292,
-0.41492292, -0.41492292, -0.41492292, -0.32340294, -0.32340294,
-0.32340294, -0.32340294, -0.23796036, -0.23796036, -0.23796036,
-0.23796036, -0.16193087, -0.16193087, -0.16193087, -0.16193087,
-0.09005938, -0.09005938, -0.09005938, -0.09005938, -0.03464946,
-0.03464946, -0.03464946, -0.03464946, 0.03464946, 0.03464946,
0.03464946, 0.03464946, 0.09005938, 0.09005938, 0.09005938,
0.09005938, 0.16193087, 0.16193087, 0.16193087, 0.16193087,
0.23796036, 0.23796036, 0.23796036, 0.23796036, 0.32340294,
0.32340294, 0.32340294, 0.32340294, 0.41492292, 0.41492292,
0.41492292, 0.41492292, 0.51166547, 0.51166547, 0.51166547,
0.51166547, 0.61235476, 0.61235476, 0.61235476, 0.61235476,
0.71626507, 0.71626507, 0.71626507, 0.71626507, 0.82233856,
0.82233856, 0.82233856, 0.82233856, 0.92976499, 0.92976499,
0.92976499, 0.92976499, 1.03796511, 1.03796511, 1.03796511,
1.03796511, 1.14620091, 1.14620091, 1.14620091, 1.14620091,
1.25362276, 1.25362276, 1.25362276, 1.25362276, 1.35970933,
1.35970933, 1.35970933, 1.35970933, 1.4641092 , 1.4641092 ,
1.4641092 , 1.4641092 , 1.56616266, 1.56616266, 1.56616266,
1.56616266, 1.6643763 , 1.6643763 , 1.6643763 , 1.6643763 ,
1.75493987, 1.75493987, 1.75493987, 1.75493987, 1.83086286,
1.83086286, 1.83086286, 1.83086286, 1.88944595, 1.88944595,
1.88944595, 1.88944595, 1.93206382, 1.93206382, 1.93206382,
1.93206382, 1.96101325, 1.96101325, 1.96101325, 1.96101325,
1.97920517, 1.97920517, 1.97920517, 1.97920517, 1.98971828,
1.98971828, 1.98971828, 1.98971828, 1.99529058, 1.99529058,
1.99529058, 1.99529058, 1.99799978, 1.99799978, 1.99799978,
1.99799978, 1.99921065, 1.99921065, 1.99921065, 1.99921065,
1.99970985, 1.99970985, 1.99970985, 1.99970985, 1.99990043,
1.99990043, 1.99990043, 1.99990043, 1.99996784, 1.99996784,
1.99996784, 1.99996784, 1.99999137, 1.99999137, 1.99999137]), 'P': array([0.39999354, 0.39999354, 0.39999354, 0.39999354, 0.39997593,
0.39997593, 0.39997593, 0.39997593, 0.39992549, 0.39992549,
0.39992549, 0.39992549, 0.39978293, 0.39978293, 0.39978293,
0.39978293, 0.39940972, 0.39940972, 0.39940972, 0.39940972,
0.39850575, 0.39850575, 0.39850575, 0.39850575, 0.3964899 ,
0.3964899 , 0.3964899 , 0.3964899 , 0.39237226, 0.39237226,
0.39237226, 0.39237226, 0.38470646, 0.38470646, 0.38470646,
0.38470646, 0.37175201, 0.37175201, 0.37175201, 0.37175201,
0.35192374, 0.35192374, 0.35192374, 0.35192374, 0.32441495,
0.32441495, 0.32441495, 0.32441495, 0.28965157, 0.28965157,
0.28965157, 0.28965157, 0.24903872, 0.24903872, 0.24903872,
0.24903872, 0.20647569, 0.20647569, 0.20647569, 0.20647569,
0.16816214, 0.16816214, 0.16816214, 0.16816214, 0.13554277,
0.13554277, 0.13554277, 0.13554277, 0.10849608, 0.10849608,
0.10849608, 0.10849608, 0.08645297, 0.08645297, 0.08645297,
0.08645297, 0.0687285 , 0.0687285 , 0.0687285 , 0.0687285 ,
0.05464577, 0.05464577, 0.05464577, 0.05464577, 0.04358466,
0.04358466, 0.04358466, 0.04358466, 0.03494858, 0.03494858,
0.03494858, 0.03494858, 0.0282257 , 0.0282257 , 0.0282257 ,
0.0282257 , 0.02300204, 0.02300204, 0.02300204, 0.02300204,
0.01894477, 0.01894477, 0.01894477, 0.01894477, 0.01581851,
0.01581851, 0.01581851, 0.01581851, 0.0134249 , 0.0134249 ,
0.0134249 , 0.0134249 , 0.01163695, 0.01163695, 0.01163695,
0.01163695, 0.01030101, 0.01030101, 0.01030101, 0.01030101,
0.00951395, 0.00951395, 0.00951395, 0.00951395, 0.00895395,
0.00895395, 0.00895395, 0.00895395, 0.00895395, 0.00895395,
0.00895395, 0.00895395, 0.00951395, 0.00951395, 0.00951395,
0.00951395, 0.01030101, 0.01030101, 0.01030101, 0.01030101,
0.01163695, 0.01163695, 0.01163695, 0.01163695, 0.0134249 ,
0.0134249 , 0.0134249 , 0.0134249 , 0.01581851, 0.01581851,
0.01581851, 0.01581851, 0.01894477, 0.01894477, 0.01894477,
0.01894477, 0.02300204, 0.02300204, 0.02300204, 0.02300204,
0.0282257 , 0.0282257 , 0.0282257 , 0.0282257 , 0.03494858,
0.03494858, 0.03494858, 0.03494858, 0.04358466, 0.04358466,
0.04358466, 0.04358466, 0.05464577, 0.05464577, 0.05464577,
0.05464577, 0.0687285 , 0.0687285 , 0.0687285 , 0.0687285 ,
0.08645297, 0.08645297, 0.08645297, 0.08645297, 0.10849608,
0.10849608, 0.10849608, 0.10849608, 0.13554277, 0.13554277,
0.13554277, 0.13554277, 0.16816214, 0.16816214, 0.16816214,
0.16816214, 0.20647569, 0.20647569, 0.20647569, 0.20647569,
0.24903872, 0.24903872, 0.24903872, 0.24903872, 0.28965157,
0.28965157, 0.28965157, 0.28965157, 0.32441495, 0.32441495,
0.32441495, 0.32441495, 0.35192374, 0.35192374, 0.35192374,
0.35192374, 0.37175201, 0.37175201, 0.37175201, 0.37175201,
0.38470646, 0.38470646, 0.38470646, 0.38470646, 0.39237226,
0.39237226, 0.39237226, 0.39237226, 0.3964899 , 0.3964899 ,
0.3964899 , 0.3964899 , 0.39850575, 0.39850575, 0.39850575,
0.39850575, 0.39940972, 0.39940972, 0.39940972, 0.39940972,
0.39978293, 0.39978293, 0.39978293, 0.39978293, 0.39992549,
0.39992549, 0.39992549, 0.39992549, 0.39997593, 0.39997593,
0.39997593, 0.39997593, 0.39999354, 0.39999354, 0.39999354])}, {'rho': array([0.99997121, 0.99997121, 0.99997121, 0.99997121, 0.99989867,
0.99989867, 0.99989867, 0.99989867, 0.99970524, 0.99970524,
0.99970524, 0.99970524, 0.99919234, 0.99919234, 0.99919234,
0.99919234, 0.99793468, 0.99793468, 0.99793468, 0.99793468,
0.99508255, 0.99508255, 0.99508255, 0.99508255, 0.98912736,
0.98912736, 0.98912736, 0.98912736, 0.97772552, 0.97772552,
0.97772552, 0.97772552, 0.95777449, 0.95777449, 0.95777449,
0.95777449, 0.92592644, 0.92592644, 0.92592644, 0.92592644,
0.87952872, 0.87952872, 0.87952872, 0.87952872, 0.81767518,
0.81767518, 0.81767518, 0.81767518, 0.74199974, 0.74199974,
0.74199974, 0.74199974, 0.65688553, 0.65688553, 0.65688553,
0.65688553, 0.5675831 , 0.5675831 , 0.5675831 , 0.5675831 ,
0.4819957 , 0.4819957 , 0.4819957 , 0.4819957 , 0.40365598,
0.40365598, 0.40365598, 0.40365598, 0.33406413, 0.33406413,
0.33406413, 0.33406413, 0.27383208, 0.27383208, 0.27383208,
0.27383208, 0.22289308, 0.22289308, 0.22289308, 0.22289308,
0.18069594, 0.18069594, 0.18069594, 0.18069594, 0.1463409 ,
0.1463409 , 0.1463409 , 0.1463409 , 0.11869357, 0.11869357,
0.11869357, 0.11869357, 0.09665729, 0.09665729, 0.09665729,
0.09665729, 0.07923849, 0.07923849, 0.07923849, 0.07923849,
0.06562854, 0.06562854, 0.06562854, 0.06562854, 0.05518928,
0.05518928, 0.05518928, 0.05518928, 0.04731768, 0.04731768,
0.04731768, 0.04731768, 0.04158686, 0.04158686, 0.04158686,
0.04158686, 0.03746873, 0.03746873, 0.03746873, 0.03746873,
0.035138 , 0.035138 , 0.035138 , 0.035138 , 0.03360944,
0.03360944, 0.03360944, 0.03360944, 0.03360944, 0.03360944,
0.03360944, 0.03360944, 0.035138 , 0.035138 , 0.035138 ,
0.035138 , 0.03746873, 0.03746873, 0.03746873, 0.03746873,
0.04158686, 0.04158686, 0.04158686, 0.04158686, 0.04731768,
0.04731768, 0.04731768, 0.04731768, 0.05518928, 0.05518928,
0.05518928, 0.05518928, 0.06562854, 0.06562854, 0.06562854,
0.06562854, 0.07923849, 0.07923849, 0.07923849, 0.07923849,
0.09665729, 0.09665729, 0.09665729, 0.09665729, 0.11869357,
0.11869357, 0.11869357, 0.11869357, 0.1463409 , 0.1463409 ,
0.1463409 , 0.1463409 , 0.18069594, 0.18069594, 0.18069594,
0.18069594, 0.22289308, 0.22289308, 0.22289308, 0.22289308,
0.27383208, 0.27383208, 0.27383208, 0.27383208, 0.33406413,
0.33406413, 0.33406413, 0.33406413, 0.40365598, 0.40365598,
0.40365598, 0.40365598, 0.4819957 , 0.4819957 , 0.4819957 ,
0.4819957 , 0.5675831 , 0.5675831 , 0.5675831 , 0.5675831 ,
0.65688553, 0.65688553, 0.65688553, 0.65688553, 0.74199974,
0.74199974, 0.74199974, 0.74199974, 0.81767518, 0.81767518,
0.81767518, 0.81767518, 0.87952872, 0.87952872, 0.87952872,
0.87952872, 0.92592644, 0.92592644, 0.92592644, 0.92592644,
0.95777449, 0.95777449, 0.95777449, 0.95777449, 0.97772552,
0.97772552, 0.97772552, 0.97772552, 0.98912736, 0.98912736,
0.98912736, 0.98912736, 0.99508255, 0.99508255, 0.99508255,
0.99508255, 0.99793468, 0.99793468, 0.99793468, 0.99793468,
0.99919234, 0.99919234, 0.99919234, 0.99919234, 0.99970524,
0.99970524, 0.99970524, 0.99970524, 0.99989867, 0.99989867,
0.99989867, 0.99989867, 0.99997121, 0.99997121, 0.99997121]), 'vx': array([-1.99997846, -1.99997846, -1.99997846, -1.99997846, -1.9999242 ,
-1.9999242 , -1.9999242 , -1.9999242 , -1.99977955, -1.99977955,
-1.99977955, -1.99977955, -1.99939615, -1.99939615, -1.99939615,
-1.99939615, -1.99845642, -1.99845642, -1.99845642, -1.99845642,
-1.99632559, -1.99632559, -1.99632559, -1.99632559, -1.99187246,
-1.99187246, -1.99187246, -1.99187246, -1.98331711, -1.98331711,
-1.98331711, -1.98331711, -1.96822029, -1.96822029, -1.96822029,
-1.96822029, -1.94371206, -1.94371206, -1.94371206, -1.94371206,
-1.9069393 , -1.9069393 , -1.9069393 , -1.9069393 , -1.85554164,
-1.85554164, -1.85554164, -1.85554164, -1.78792749, -1.78792749,
-1.78792749, -1.78792749, -1.70446081, -1.70446081, -1.70446081,
-1.70446081, -1.61130027, -1.61130027, -1.61130027, -1.61130027,
-1.51343381, -1.51343381, -1.51343381, -1.51343381, -1.4129628 ,
-1.4129628 , -1.4129628 , -1.4129628 , -1.31068056, -1.31068056,
-1.31068056, -1.31068056, -1.20701548, -1.20701548, -1.20701548,
-1.20701548, -1.10227287, -1.10227287, -1.10227287, -1.10227287,
-0.99702848, -0.99702848, -0.99702848, -0.99702848, -0.89212641,
-0.89212641, -0.89212641, -0.89212641, -0.78809065, -0.78809065,
-0.78809065, -0.78809065, -0.68550554, -0.68550554, -0.68550554,
-0.68550554, -0.58520707, -0.58520707, -0.58520707, -0.58520707,
-0.48811927, -0.48811927, -0.48811927, -0.48811927, -0.39498294,
-0.39498294, -0.39498294, -0.39498294, -0.30710231, -0.30710231,
-0.30710231, -0.30710231, -0.22524033, -0.22524033, -0.22524033,
-0.22524033, -0.1530114 , -0.1530114 , -0.1530114 , -0.1530114 ,
-0.08453459, -0.08453459, -0.08453459, -0.08453459, -0.03239843,
-0.03239843, -0.03239843, -0.03239843, 0.03239843, 0.03239843,
0.03239843, 0.03239843, 0.08453459, 0.08453459, 0.08453459,
0.08453459, 0.1530114 , 0.1530114 , 0.1530114 , 0.1530114 ,
0.22524033, 0.22524033, 0.22524033, 0.22524033, 0.30710231,
0.30710231, 0.30710231, 0.30710231, 0.39498294, 0.39498294,
0.39498294, 0.39498294, 0.48811927, 0.48811927, 0.48811927,
0.48811927, 0.58520707, 0.58520707, 0.58520707, 0.58520707,
0.68550554, 0.68550554, 0.68550554, 0.68550554, 0.78809065,
0.78809065, 0.78809065, 0.78809065, 0.89212641, 0.89212641,
0.89212641, 0.89212641, 0.99702848, 0.99702848, 0.99702848,
0.99702848, 1.10227287, 1.10227287, 1.10227287, 1.10227287,
1.20701548, 1.20701548, 1.20701548, 1.20701548, 1.31068056,
1.31068056, 1.31068056, 1.31068056, 1.4129628 , 1.4129628 ,
1.4129628 , 1.4129628 , 1.51343381, 1.51343381, 1.51343381,
1.51343381, 1.61130027, 1.61130027, 1.61130027, 1.61130027,
1.70446081, 1.70446081, 1.70446081, 1.70446081, 1.78792749,
1.78792749, 1.78792749, 1.78792749, 1.85554164, 1.85554164,
1.85554164, 1.85554164, 1.9069393 , 1.9069393 , 1.9069393 ,
1.9069393 , 1.94371206, 1.94371206, 1.94371206, 1.94371206,
1.96822029, 1.96822029, 1.96822029, 1.96822029, 1.98331711,
1.98331711, 1.98331711, 1.98331711, 1.99187246, 1.99187246,
1.99187246, 1.99187246, 1.99632559, 1.99632559, 1.99632559,
1.99632559, 1.99845642, 1.99845642, 1.99845642, 1.99845642,
1.99939615, 1.99939615, 1.99939615, 1.99939615, 1.99977955,
1.99977955, 1.99977955, 1.99977955, 1.9999242 , 1.9999242 ,
1.9999242 , 1.9999242 , 1.99997846, 1.99997846, 1.99997846]), 'P': array([0.39998388, 0.39998388, 0.39998388, 0.39998388, 0.39994328,
0.39994328, 0.39994328, 0.39994328, 0.39983506, 0.39983506,
0.39983506, 0.39983506, 0.39954836, 0.39954836, 0.39954836,
0.39954836, 0.39884643, 0.39884643, 0.39884643, 0.39884643,
0.39725894, 0.39725894, 0.39725894, 0.39725894, 0.39395951,
0.39395951, 0.39395951, 0.39395951, 0.3876887 , 0.3876887 ,
0.3876887 , 0.3876887 , 0.37683706, 0.37683706, 0.37683706,
0.37683706, 0.35978619, 0.35978619, 0.35978619, 0.35978619,
0.33546632, 0.33546632, 0.33546632, 0.33546632, 0.30387649,
0.30387649, 0.30387649, 0.30387649, 0.26617104, 0.26617104,
0.26617104, 0.26617104, 0.22440064, 0.22440064, 0.22440064,
0.22440064, 0.18486641, 0.18486641, 0.18486641, 0.18486641,
0.15047094, 0.15047094, 0.15047094, 0.15047094, 0.12150865,
0.12150865, 0.12150865, 0.12150865, 0.09758402, 0.09758402,
0.09758402, 0.09758402, 0.07809753, 0.07809753, 0.07809753,
0.07809753, 0.06241546, 0.06241546, 0.06241546, 0.06241546,
0.04993828, 0.04993828, 0.04993828, 0.04993828, 0.04010618,
0.04010618, 0.04010618, 0.04010618, 0.03238928, 0.03238928,
0.03238928, 0.03238928, 0.02634913, 0.02634913, 0.02634913,
0.02634913, 0.02162689, 0.02162689, 0.02162689, 0.02162689,
0.01794132, 0.01794132, 0.01794132, 0.01794132, 0.01508808,
0.01508808, 0.01508808, 0.01508808, 0.0128935 , 0.0128935 ,
0.0128935 , 0.0128935 , 0.01125253, 0.01125253, 0.01125253,
0.01125253, 0.01001855, 0.01001855, 0.01001855, 0.01001855,
0.00930588, 0.00930588, 0.00930588, 0.00930588, 0.00879073,
0.00879073, 0.00879073, 0.00879073, 0.00879073, 0.00879073,
0.00879073, 0.00879073, 0.00930588, 0.00930588, 0.00930588,
0.00930588, 0.01001855, 0.01001855, 0.01001855, 0.01001855,
0.01125253, 0.01125253, 0.01125253, 0.01125253, 0.0128935 ,
0.0128935 , 0.0128935 , 0.0128935 , 0.01508808, 0.01508808,
0.01508808, 0.01508808, 0.01794132, 0.01794132, 0.01794132,
0.01794132, 0.02162689, 0.02162689, 0.02162689, 0.02162689,
0.02634913, 0.02634913, 0.02634913, 0.02634913, 0.03238928,
0.03238928, 0.03238928, 0.03238928, 0.04010618, 0.04010618,
0.04010618, 0.04010618, 0.04993828, 0.04993828, 0.04993828,
0.04993828, 0.06241546, 0.06241546, 0.06241546, 0.06241546,
0.07809753, 0.07809753, 0.07809753, 0.07809753, 0.09758402,
0.09758402, 0.09758402, 0.09758402, 0.12150865, 0.12150865,
0.12150865, 0.12150865, 0.15047094, 0.15047094, 0.15047094,
0.15047094, 0.18486641, 0.18486641, 0.18486641, 0.18486641,
0.22440064, 0.22440064, 0.22440064, 0.22440064, 0.26617104,
0.26617104, 0.26617104, 0.26617104, 0.30387649, 0.30387649,
0.30387649, 0.30387649, 0.33546632, 0.33546632, 0.33546632,
0.33546632, 0.35978619, 0.35978619, 0.35978619, 0.35978619,
0.37683706, 0.37683706, 0.37683706, 0.37683706, 0.3876887 ,
0.3876887 , 0.3876887 , 0.3876887 , 0.39395951, 0.39395951,
0.39395951, 0.39395951, 0.39725894, 0.39725894, 0.39725894,
0.39725894, 0.39884643, 0.39884643, 0.39884643, 0.39884643,
0.39954836, 0.39954836, 0.39954836, 0.39954836, 0.39983506,
0.39983506, 0.39983506, 0.39983506, 0.39994328, 0.39994328,
0.39994328, 0.39994328, 0.39998388, 0.39998388, 0.39998388])}, {'rho': array([0.99993221, 0.99993221, 0.99993221, 0.99993221, 0.99977442,
0.99977442, 0.99977442, 0.99977442, 0.99938273, 0.99938273,
0.99938273, 0.99938273, 0.99840779, 0.99840779, 0.99840779,
0.99840779, 0.99616937, 0.99616937, 0.99616937, 0.99616937,
0.99142249, 0.99142249, 0.99142249, 0.99142249, 0.98216622,
0.98216622, 0.98216622, 0.98216622, 0.96562758, 0.96562758,
0.96562758, 0.96562758, 0.93861261, 0.93861261, 0.93861261,
0.93861261, 0.89828406, 0.89828406, 0.89828406, 0.89828406,
0.84315078, 0.84315078, 0.84315078, 0.84315078, 0.77388329,
0.77388329, 0.77388329, 0.77388329, 0.69382305, 0.69382305,
0.69382305, 0.69382305, 0.60771611, 0.60771611, 0.60771611,
0.60771611, 0.52233132, 0.52233132, 0.52233132, 0.52233132,
0.44272042, 0.44272042, 0.44272042, 0.44272042, 0.37066321,
0.37066321, 0.37066321, 0.37066321, 0.30711033, 0.30711033,
0.30711033, 0.30711033, 0.2523528 , 0.2523528 , 0.2523528 ,
0.2523528 , 0.20616202, 0.20616202, 0.20616202, 0.20616202,
0.1679338 , 0.1679338 , 0.1679338 , 0.1679338 , 0.13675014,
0.13675014, 0.13675014, 0.13675014, 0.11157336, 0.11157336,
0.11157336, 0.11157336, 0.09142644, 0.09142644, 0.09142644,
0.09142644, 0.07542674, 0.07542674, 0.07542674, 0.07542674,
0.06289114, 0.06289114, 0.06289114, 0.06289114, 0.05323726,
0.05323726, 0.05323726, 0.05323726, 0.04592933, 0.04592933,
0.04592933, 0.04592933, 0.04060411, 0.04060411, 0.04060411,
0.04060411, 0.03675686, 0.03675686, 0.03675686, 0.03675686,
0.03461818, 0.03461818, 0.03461818, 0.03461818, 0.03320159,
0.03320159, 0.03320159, 0.03320159, 0.03320159, 0.03320159,
0.03320159, 0.03320159, 0.03461818, 0.03461818, 0.03461818,
0.03461818, 0.03675686, 0.03675686, 0.03675686, 0.03675686,
0.04060411, 0.04060411, 0.04060411, 0.04060411, 0.04592933,
0.04592933, 0.04592933, 0.04592933, 0.05323726, 0.05323726,
0.05323726, 0.05323726, 0.06289114, 0.06289114, 0.06289114,
0.06289114, 0.07542674, 0.07542674, 0.07542674, 0.07542674,
0.09142644, 0.09142644, 0.09142644, 0.09142644, 0.11157336,
0.11157336, 0.11157336, 0.11157336, 0.13675014, 0.13675014,
0.13675014, 0.13675014, 0.1679338 , 0.1679338 , 0.1679338 ,
0.1679338 , 0.20616202, 0.20616202, 0.20616202, 0.20616202,
0.2523528 , 0.2523528 , 0.2523528 , 0.2523528 , 0.30711033,
0.30711033, 0.30711033, 0.30711033, 0.37066321, 0.37066321,
0.37066321, 0.37066321, 0.44272042, 0.44272042, 0.44272042,
0.44272042, 0.52233132, 0.52233132, 0.52233132, 0.52233132,
0.60771611, 0.60771611, 0.60771611, 0.60771611, 0.69382305,
0.69382305, 0.69382305, 0.69382305, 0.77388329, 0.77388329,
0.77388329, 0.77388329, 0.84315078, 0.84315078, 0.84315078,
0.84315078, 0.89828406, 0.89828406, 0.89828406, 0.89828406,
0.93861261, 0.93861261, 0.93861261, 0.93861261, 0.96562758,
0.96562758, 0.96562758, 0.96562758, 0.98216622, 0.98216622,
0.98216622, 0.98216622, 0.99142249, 0.99142249, 0.99142249,
0.99142249, 0.99616937, 0.99616937, 0.99616937, 0.99616937,
0.99840779, 0.99840779, 0.99840779, 0.99840779, 0.99938273,
0.99938273, 0.99938273, 0.99938273, 0.99977442, 0.99977442,
0.99977442, 0.99977442, 0.99993221, 0.99993221, 0.99993221]), 'vx': array([-1.99994929, -1.99994929, -1.99994929, -1.99994929, -1.99983127,
-1.99983127, -1.99983127, -1.99983127, -1.99953841, -1.99953841,
-1.99953841, -1.99953841, -1.99880972, -1.99880972, -1.99880972,
-1.99880972, -1.99713698, -1.99713698, -1.99713698, -1.99713698,
-1.99358761, -1.99358761, -1.99358761, -1.99358761, -1.98664859,
-1.98664859, -1.98664859, -1.98664859, -1.974168 , -1.974168 ,
-1.974168 , -1.974168 , -1.95350169, -1.95350169, -1.95350169,
-1.95350169, -1.92188774, -1.92188774, -1.92188774, -1.92188774,
-1.8769192 , -1.8769192 , -1.8769192 , -1.8769192 , -1.81687101,
-1.81687101, -1.81687101, -1.81687101, -1.7410477 , -1.7410477 ,
-1.7410477 , -1.7410477 , -1.653266 , -1.653266 , -1.653266 ,
-1.653266 , -1.55956427, -1.55956427, -1.55956427, -1.55956427,
-1.46285018, -1.46285018, -1.46285018, -1.46285018, -1.36421396,
-1.36421396, -1.36421396, -1.36421396, -1.26410153, -1.26410153,
-1.26410153, -1.26410153, -1.16284367, -1.16284367, -1.16284367,
-1.16284367, -1.06073717, -1.06073717, -1.06073717, -1.06073717,
-0.95846761, -0.95846761, -0.95846761, -0.95846761, -0.85670416,
-0.85670416, -0.85670416, -0.85670416, -0.75589367, -0.75589367,
-0.75589367, -0.75589367, -0.65662074, -0.65662074, -0.65662074,
-0.65662074, -0.55975149, -0.55975149, -0.55975149, -0.55975149,
-0.46604981, -0.46604981, -0.46604981, -0.46604981, -0.3763215 ,
-0.3763215 , -0.3763215 , -0.3763215 , -0.29188521, -0.29188521,
-0.29188521, -0.29188521, -0.21339782, -0.21339782, -0.21339782,
-0.21339782, -0.14476926, -0.14476926, -0.14476926, -0.14476926,
-0.07947731, -0.07947731, -0.07947731, -0.07947731, -0.03033494,
-0.03033494, -0.03033494, -0.03033494, 0.03033494, 0.03033494,
0.03033494, 0.03033494, 0.07947731, 0.07947731, 0.07947731,
0.07947731, 0.14476926, 0.14476926, 0.14476926, 0.14476926,
0.21339782, 0.21339782, 0.21339782, 0.21339782, 0.29188521,
0.29188521, 0.29188521, 0.29188521, 0.3763215 , 0.3763215 ,
0.3763215 , 0.3763215 , 0.46604981, 0.46604981, 0.46604981,
0.46604981, 0.55975149, 0.55975149, 0.55975149, 0.55975149,
0.65662074, 0.65662074, 0.65662074, 0.65662074, 0.75589367,
0.75589367, 0.75589367, 0.75589367, 0.85670416, 0.85670416,
0.85670416, 0.85670416, 0.95846761, 0.95846761, 0.95846761,
0.95846761, 1.06073717, 1.06073717, 1.06073717, 1.06073717,
1.16284367, 1.16284367, 1.16284367, 1.16284367, 1.26410153,
1.26410153, 1.26410153, 1.26410153, 1.36421396, 1.36421396,
1.36421396, 1.36421396, 1.46285018, 1.46285018, 1.46285018,
1.46285018, 1.55956427, 1.55956427, 1.55956427, 1.55956427,
1.653266 , 1.653266 , 1.653266 , 1.653266 , 1.7410477 ,
1.7410477 , 1.7410477 , 1.7410477 , 1.81687101, 1.81687101,
1.81687101, 1.81687101, 1.8769192 , 1.8769192 , 1.8769192 ,
1.8769192 , 1.92188774, 1.92188774, 1.92188774, 1.92188774,
1.95350169, 1.95350169, 1.95350169, 1.95350169, 1.974168 ,
1.974168 , 1.974168 , 1.974168 , 1.98664859, 1.98664859,
1.98664859, 1.98664859, 1.99358761, 1.99358761, 1.99358761,
1.99358761, 1.99713698, 1.99713698, 1.99713698, 1.99713698,
1.99880972, 1.99880972, 1.99880972, 1.99880972, 1.99953841,
1.99953841, 1.99953841, 1.99953841, 1.99983127, 1.99983127,
1.99983127, 1.99983127, 1.99994929, 1.99994929, 1.99994929]), 'P': array([0.39996205, 0.39996205, 0.39996205, 0.39996205, 0.39987375,
0.39987375, 0.39987375, 0.39987375, 0.39965472, 0.39965472,
0.39965472, 0.39965472, 0.3991102 , 0.3991102 , 0.3991102 ,
0.3991102 , 0.39786276, 0.39786276, 0.39786276, 0.39786276,
0.39522738, 0.39522738, 0.39522738, 0.39522738, 0.3901199 ,
0.3901199 , 0.3901199 , 0.3901199 , 0.38107966, 0.38107966,
0.38107966, 0.38107966, 0.36651324, 0.36651324, 0.36651324,
0.36651324, 0.34517082, 0.34517082, 0.34517082, 0.34517082,
0.31668048, 0.31668048, 0.31668048, 0.31668048, 0.28180827,
0.28180827, 0.28180827, 0.28180827, 0.24203834, 0.24203834,
0.24203834, 0.24203834, 0.20178049, 0.20178049, 0.20178049,
0.20178049, 0.16586829, 0.16586829, 0.16586829, 0.16586829,
0.13512706, 0.13512706, 0.13512706, 0.13512706, 0.10939173,
0.10939173, 0.10939173, 0.10939173, 0.08816908, 0.08816908,
0.08816908, 0.08816908, 0.07088001, 0.07088001, 0.07088001,
0.07088001, 0.05695154, 0.05695154, 0.05695154, 0.05695154,
0.04585165, 0.04585165, 0.04585165, 0.04585165, 0.03706835,
0.03706835, 0.03706835, 0.03706835, 0.03014005, 0.03014005,
0.03014005, 0.03014005, 0.02468875, 0.02468875, 0.02468875,
0.02468875, 0.02040122, 0.02040122, 0.02040122, 0.02040122,
0.01704141, 0.01704141, 0.01704141, 0.01704141, 0.01442848,
0.01442848, 0.01442848, 0.01442848, 0.01241054, 0.01241054,
0.01241054, 0.01241054, 0.01090155, 0.01090155, 0.01090155,
0.01090155, 0.00975937, 0.00975937, 0.00975937, 0.00975937,
0.00911402, 0.00911402, 0.00911402, 0.00911402, 0.00864033,
0.00864033, 0.00864033, 0.00864033, 0.00864033, 0.00864033,
0.00864033, 0.00864033, 0.00911402, 0.00911402, 0.00911402,
0.00911402, 0.00975937, 0.00975937, 0.00975937, 0.00975937,
0.01090155, 0.01090155, 0.01090155, 0.01090155, 0.01241054,
0.01241054, 0.01241054, 0.01241054, 0.01442848, 0.01442848,
0.01442848, 0.01442848, 0.01704141, 0.01704141, 0.01704141,
0.01704141, 0.02040122, 0.02040122, 0.02040122, 0.02040122,
0.02468875, 0.02468875, 0.02468875, 0.02468875, 0.03014005,
0.03014005, 0.03014005, 0.03014005, 0.03706835, 0.03706835,
0.03706835, 0.03706835, 0.04585165, 0.04585165, 0.04585165,
0.04585165, 0.05695154, 0.05695154, 0.05695154, 0.05695154,
0.07088001, 0.07088001, 0.07088001, 0.07088001, 0.08816908,
0.08816908, 0.08816908, 0.08816908, 0.10939173, 0.10939173,
0.10939173, 0.10939173, 0.13512706, 0.13512706, 0.13512706,
0.13512706, 0.16586829, 0.16586829, 0.16586829, 0.16586829,
0.20178049, 0.20178049, 0.20178049, 0.20178049, 0.24203834,
0.24203834, 0.24203834, 0.24203834, 0.28180827, 0.28180827,
0.28180827, 0.28180827, 0.31668048, 0.31668048, 0.31668048,
0.31668048, 0.34517082, 0.34517082, 0.34517082, 0.34517082,
0.36651324, 0.36651324, 0.36651324, 0.36651324, 0.38107966,
0.38107966, 0.38107966, 0.38107966, 0.3901199 , 0.3901199 ,
0.3901199 , 0.3901199 , 0.39522738, 0.39522738, 0.39522738,
0.39522738, 0.39786276, 0.39786276, 0.39786276, 0.39786276,
0.3991102 , 0.3991102 , 0.3991102 , 0.3991102 , 0.39965472,
0.39965472, 0.39965472, 0.39965472, 0.39987375, 0.39987375,
0.39987375, 0.39987375, 0.39996205, 0.39996205, 0.39996205])}, {'rho': array([0.999849 , 0.999849 , 0.999849 , 0.999849 , 0.99952432,
0.99952432, 0.99952432, 0.99952432, 0.99877407, 0.99877407,
0.99877407, 0.99877407, 0.9970195 , 0.9970195 , 0.9970195 ,
0.9970195 , 0.99324554, 0.99324554, 0.99324554, 0.99324554,
0.98575697, 0.98575697, 0.98575697, 0.98575697, 0.97210669,
0.97210669, 0.97210669, 0.97210669, 0.94930976, 0.94930976,
0.94930976, 0.94930976, 0.91446125, 0.91446125, 0.91446125,
0.91446125, 0.86563643, 0.86563643, 0.86563643, 0.86563643,
0.80272712, 0.80272712, 0.80272712, 0.80272712, 0.72797948,
0.72797948, 0.72797948, 0.72797948, 0.64577881, 0.64577881,
0.64577881, 0.64577881, 0.56148247, 0.56148247, 0.56148247,
0.56148247, 0.48134022, 0.48134022, 0.48134022, 0.48134022,
0.40756894, 0.40756894, 0.40756894, 0.40756894, 0.34134467,
0.34134467, 0.34134467, 0.34134467, 0.28325988, 0.28325988,
0.28325988, 0.28325988, 0.23338963, 0.23338963, 0.23338963,
0.23338963, 0.19140241, 0.19140241, 0.19140241, 0.19140241,
0.15665519, 0.15665519, 0.15665519, 0.15665519, 0.1282427 ,
0.1282427 , 0.1282427 , 0.1282427 , 0.10522841, 0.10522841,
0.10522841, 0.10522841, 0.0867382 , 0.0867382 , 0.0867382 ,
0.0867382 , 0.07199564, 0.07199564, 0.07199564, 0.07199564,
0.06041253, 0.06041253, 0.06041253, 0.06041253, 0.05145849,
0.05145849, 0.05145849, 0.05145849, 0.04465627, 0.04465627,
0.04465627, 0.04465627, 0.03969915, 0.03969915, 0.03969915,
0.03969915, 0.03609832, 0.03609832, 0.03609832, 0.03609832,
0.03413507, 0.03413507, 0.03413507, 0.03413507, 0.03282295,
0.03282295, 0.03282295, 0.03282295, 0.03282295, 0.03282295,
0.03282295, 0.03282295, 0.03413507, 0.03413507, 0.03413507,
0.03413507, 0.03609832, 0.03609832, 0.03609832, 0.03609832,
0.03969915, 0.03969915, 0.03969915, 0.03969915, 0.04465627,
0.04465627, 0.04465627, 0.04465627, 0.05145849, 0.05145849,
0.05145849, 0.05145849, 0.06041253, 0.06041253, 0.06041253,
0.06041253, 0.07199564, 0.07199564, 0.07199564, 0.07199564,
0.0867382 , 0.0867382 , 0.0867382 , 0.0867382 , 0.10522841,
0.10522841, 0.10522841, 0.10522841, 0.1282427 , 0.1282427 ,
0.1282427 , 0.1282427 , 0.15665519, 0.15665519, 0.15665519,
0.15665519, 0.19140241, 0.19140241, 0.19140241, 0.19140241,
0.23338963, 0.23338963, 0.23338963, 0.23338963, 0.28325988,
0.28325988, 0.28325988, 0.28325988, 0.34134467, 0.34134467,
0.34134467, 0.34134467, 0.40756894, 0.40756894, 0.40756894,
0.40756894, 0.48134022, 0.48134022, 0.48134022, 0.48134022,
0.56148247, 0.56148247, 0.56148247, 0.56148247, 0.64577881,
0.64577881, 0.64577881, 0.64577881, 0.72797948, 0.72797948,
0.72797948, 0.72797948, 0.80272712, 0.80272712, 0.80272712,
0.80272712, 0.86563643, 0.86563643, 0.86563643, 0.86563643,
0.91446125, 0.91446125, 0.91446125, 0.91446125, 0.94930976,
0.94930976, 0.94930976, 0.94930976, 0.97210669, 0.97210669,
0.97210669, 0.97210669, 0.98575697, 0.98575697, 0.98575697,
0.98575697, 0.99324554, 0.99324554, 0.99324554, 0.99324554,
0.9970195 , 0.9970195 , 0.9970195 , 0.9970195 , 0.99877407,
0.99877407, 0.99877407, 0.99877407, 0.99952432, 0.99952432,
0.99952432, 0.99952432, 0.999849 , 0.999849 , 0.999849 ]), 'vx': array([-1.99988705, -1.99988705, -1.99988705, -1.99988705, -1.99964423,
-1.99964423, -1.99964423, -1.99964423, -1.99908336, -1.99908336,
-1.99908336, -1.99908336, -1.99777191, -1.99777191, -1.99777191,
-1.99777191, -1.99495004, -1.99495004, -1.99495004, -1.99495004,
-1.98933996, -1.98933996, -1.98933996, -1.98933996, -1.97906089,
-1.97906089, -1.97906089, -1.97906089, -1.96170422, -1.96170422,
-1.96170422, -1.96170422, -1.9346307 , -1.9346307 , -1.9346307 ,
-1.9346307 , -1.8954137 , -1.8954137 , -1.8954137 , -1.8954137 ,
-1.84222299, -1.84222299, -1.84222299, -1.84222299, -1.77397591,
-1.77397591, -1.77397591, -1.77397591, -1.69213098, -1.69213098,
-1.69213098, -1.69213098, -1.60273146, -1.60273146, -1.60273146,
-1.60273146, -1.50965165, -1.50965165, -1.50965165, -1.50965165,
-1.41448143, -1.41448143, -1.41448143, -1.41448143, -1.3177811 ,
-1.3177811 , -1.3177811 , -1.3177811 , -1.21984198, -1.21984198,
-1.21984198, -1.21984198, -1.1209646 , -1.1209646 , -1.1209646 ,
-1.1209646 , -1.02146005, -1.02146005, -1.02146005, -1.02146005,
-0.9220936 , -0.9220936 , -0.9220936 , -0.9220936 , -0.82332093,
-0.82332093, -0.82332093, -0.82332093, -0.72558094, -0.72558094,
-0.72558094, -0.72558094, -0.62946753, -0.62946753, -0.62946753,
-0.62946753, -0.53583047, -0.53583047, -0.53583047, -0.53583047,
-0.44533278, -0.44533278, -0.44533278, -0.44533278, -0.35883117,
-0.35883117, -0.35883117, -0.35883117, -0.27766258, -0.27766258,
-0.27766258, -0.27766258, -0.20236083, -0.20236083, -0.20236083,
-0.20236083, -0.13714722, -0.13714722, -0.13714722, -0.13714722,
-0.0748494 , -0.0748494 , -0.0748494 , -0.0748494 , -0.02844381,
-0.02844381, -0.02844381, -0.02844381, 0.02844381, 0.02844381,
0.02844381, 0.02844381, 0.0748494 , 0.0748494 , 0.0748494 ,
0.0748494 , 0.13714722, 0.13714722, 0.13714722, 0.13714722,
0.20236083, 0.20236083, 0.20236083, 0.20236083, 0.27766258,
0.27766258, 0.27766258, 0.27766258, 0.35883117, 0.35883117,
0.35883117, 0.35883117, 0.44533278, 0.44533278, 0.44533278,
0.44533278, 0.53583047, 0.53583047, 0.53583047, 0.53583047,
0.62946753, 0.62946753, 0.62946753, 0.62946753, 0.72558094,
0.72558094, 0.72558094, 0.72558094, 0.82332093, 0.82332093,
0.82332093, 0.82332093, 0.9220936 , 0.9220936 , 0.9220936 ,
0.9220936 , 1.02146005, 1.02146005, 1.02146005, 1.02146005,
1.1209646 , 1.1209646 , 1.1209646 , 1.1209646 , 1.21984198,
1.21984198, 1.21984198, 1.21984198, 1.3177811 , 1.3177811 ,
1.3177811 , 1.3177811 , 1.41448143, 1.41448143, 1.41448143,
1.41448143, 1.50965165, 1.50965165, 1.50965165, 1.50965165,
1.60273146, 1.60273146, 1.60273146, 1.60273146, 1.69213098,
1.69213098, 1.69213098, 1.69213098, 1.77397591, 1.77397591,
1.77397591, 1.77397591, 1.84222299, 1.84222299, 1.84222299,
1.84222299, 1.8954137 , 1.8954137 , 1.8954137 , 1.8954137 ,
1.9346307 , 1.9346307 , 1.9346307 , 1.9346307 , 1.96170422,
1.96170422, 1.96170422, 1.96170422, 1.97906089, 1.97906089,
1.97906089, 1.97906089, 1.98933996, 1.98933996, 1.98933996,
1.98933996, 1.99495004, 1.99495004, 1.99495004, 1.99495004,
1.99777191, 1.99777191, 1.99777191, 1.99777191, 1.99908336,
1.99908336, 1.99908336, 1.99908336, 1.99964423, 1.99964423,
1.99964423, 1.99964423, 1.99988705, 1.99988705, 1.99988705]), 'P': array([0.39991548, 0.39991548, 0.39991548, 0.39991548, 0.39973385,
0.39973385, 0.39973385, 0.39973385, 0.39931459, 0.39931459,
0.39931459, 0.39931459, 0.39833583, 0.39833583, 0.39833583,
0.39833583, 0.3962371 , 0.3962371 , 0.3962371 , 0.3962371 ,
0.39209385, 0.39209385, 0.39209385, 0.39209385, 0.38460138,
0.38460138, 0.38460138, 0.38460138, 0.37223462, 0.37223462,
0.37223462, 0.37223462, 0.35363741, 0.35363741, 0.35363741,
0.35363741, 0.32813525, 0.32813525, 0.32813525, 0.32813525,
0.29610314, 0.29610314, 0.29610314, 0.29610314, 0.25879516,
0.25879516, 0.25879516, 0.25879516, 0.2187502 , 0.2187502 ,
0.2187502 , 0.2187502 , 0.18161211, 0.18161211, 0.18161211,
0.18161211, 0.1492622 , 0.1492622 , 0.1492622 , 0.1492622 ,
0.12181009, 0.12181009, 0.12181009, 0.12181009, 0.09889624,
0.09889624, 0.09889624, 0.09889624, 0.08001119, 0.08001119,
0.08001119, 0.08001119, 0.06461698, 0.06461698, 0.06461698,
0.06461698, 0.05220043, 0.05220043, 0.05220043, 0.05220043,
0.0422833 , 0.0422833 , 0.0422833 , 0.0422833 , 0.0344005 ,
0.0344005 , 0.0344005 , 0.0344005 , 0.02815268, 0.02815268,
0.02815268, 0.02815268, 0.02321147, 0.02321147, 0.02321147,
0.02321147, 0.01930433, 0.01930433, 0.01930433, 0.01930433,
0.0162308 , 0.0162308 , 0.0162308 , 0.0162308 , 0.01383051,
0.01383051, 0.01383051, 0.01383051, 0.01197008, 0.01197008,
0.01197008, 0.01197008, 0.01058021, 0.01058021, 0.01058021,
0.01058021, 0.00952099, 0.00952099, 0.00952099, 0.00952099,
0.00893663, 0.00893663, 0.00893663, 0.00893663, 0.00850133,
0.00850133, 0.00850133, 0.00850133, 0.00850133, 0.00850133,
0.00850133, 0.00850133, 0.00893663, 0.00893663, 0.00893663,
0.00893663, 0.00952099, 0.00952099, 0.00952099, 0.00952099,
0.01058021, 0.01058021, 0.01058021, 0.01058021, 0.01197008,
0.01197008, 0.01197008, 0.01197008, 0.01383051, 0.01383051,
0.01383051, 0.01383051, 0.0162308 , 0.0162308 , 0.0162308 ,
0.0162308 , 0.01930433, 0.01930433, 0.01930433, 0.01930433,
0.02321147, 0.02321147, 0.02321147, 0.02321147, 0.02815268,
0.02815268, 0.02815268, 0.02815268, 0.0344005 , 0.0344005 ,
0.0344005 , 0.0344005 , 0.0422833 , 0.0422833 , 0.0422833 ,
0.0422833 , 0.05220043, 0.05220043, 0.05220043, 0.05220043,
0.06461698, 0.06461698, 0.06461698, 0.06461698, 0.08001119,
0.08001119, 0.08001119, 0.08001119, 0.09889624, 0.09889624,
0.09889624, 0.09889624, 0.12181009, 0.12181009, 0.12181009,
0.12181009, 0.1492622 , 0.1492622 , 0.1492622 , 0.1492622 ,
0.18161211, 0.18161211, 0.18161211, 0.18161211, 0.2187502 ,
0.2187502 , 0.2187502 , 0.2187502 , 0.25879516, 0.25879516,
0.25879516, 0.25879516, 0.29610314, 0.29610314, 0.29610314,
0.29610314, 0.32813525, 0.32813525, 0.32813525, 0.32813525,
0.35363741, 0.35363741, 0.35363741, 0.35363741, 0.37223462,
0.37223462, 0.37223462, 0.37223462, 0.38460138, 0.38460138,
0.38460138, 0.38460138, 0.39209385, 0.39209385, 0.39209385,
0.39209385, 0.3962371 , 0.3962371 , 0.3962371 , 0.3962371 ,
0.39833583, 0.39833583, 0.39833583, 0.39833583, 0.39931459,
0.39931459, 0.39931459, 0.39931459, 0.39973385, 0.39973385,
0.39973385, 0.39973385, 0.39991548, 0.39991548, 0.39991548])}, {'rho': array([0.99968086, 0.99968086, 0.99968086, 0.99968086, 0.99904735,
0.99904735, 0.99904735, 0.99904735, 0.99768535, 0.99768535,
0.99768535, 0.99768535, 0.99469 , 0.99469 , 0.99469 ,
0.99469 , 0.98865158, 0.98865158, 0.98865158, 0.98865158,
0.97743175, 0.97743175, 0.97743175, 0.97743175, 0.95828971,
0.95828971, 0.95828971, 0.95828971, 0.92834661, 0.92834661,
0.92834661, 0.92834661, 0.8853768 , 0.8853768 , 0.8853768 ,
0.8853768 , 0.8286427 , 0.8286427 , 0.8286427 , 0.8286427 ,
0.75946561, 0.75946561, 0.75946561, 0.75946561, 0.68150433,
0.68150433, 0.68150433, 0.68150433, 0.59924388, 0.59924388,
0.59924388, 0.59924388, 0.51916445, 0.51916445, 0.51916445,
0.51916445, 0.44435622, 0.44435622, 0.44435622, 0.44435622,
0.37611909, 0.37611909, 0.37611909, 0.37611909, 0.31525272,
0.31525272, 0.31525272, 0.31525272, 0.26210199, 0.26210199,
0.26210199, 0.26210199, 0.21659335, 0.21659335, 0.21659335,
0.21659335, 0.17833401, 0.17833401, 0.17833401, 0.17833401,
0.14664183, 0.14664183, 0.14664183, 0.14664183, 0.12066146,
0.12066146, 0.12066146, 0.12066146, 0.09954839, 0.09954839,
0.09954839, 0.09954839, 0.0825182 , 0.0825182 , 0.0825182 ,
0.0825182 , 0.06889504, 0.06889504, 0.06889504, 0.06889504,
0.05815951, 0.05815951, 0.05815951, 0.05815951, 0.049832 ,
0.049832 , 0.049832 , 0.049832 , 0.04348546, 0.04348546,
0.04348546, 0.04348546, 0.03886386, 0.03886386, 0.03886386,
0.03886386, 0.03548794, 0.03548794, 0.03548794, 0.03548794,
0.03368503, 0.03368503, 0.03368503, 0.03368503, 0.03247044,
0.03247044, 0.03247044, 0.03247044, 0.03247044, 0.03247044,
0.03247044, 0.03247044, 0.03368503, 0.03368503, 0.03368503,
0.03368503, 0.03548794, 0.03548794, 0.03548794, 0.03548794,
0.03886386, 0.03886386, 0.03886386, 0.03886386, 0.04348546,
0.04348546, 0.04348546, 0.04348546, 0.049832 , 0.049832 ,
0.049832 , 0.049832 , 0.05815951, 0.05815951, 0.05815951,
0.05815951, 0.06889504, 0.06889504, 0.06889504, 0.06889504,
0.0825182 , 0.0825182 , 0.0825182 , 0.0825182 , 0.09954839,
0.09954839, 0.09954839, 0.09954839, 0.12066146, 0.12066146,
0.12066146, 0.12066146, 0.14664183, 0.14664183, 0.14664183,
0.14664183, 0.17833401, 0.17833401, 0.17833401, 0.17833401,
0.21659335, 0.21659335, 0.21659335, 0.21659335, 0.26210199,
0.26210199, 0.26210199, 0.26210199, 0.31525272, 0.31525272,
0.31525272, 0.31525272, 0.37611909, 0.37611909, 0.37611909,
0.37611909, 0.44435622, 0.44435622, 0.44435622, 0.44435622,
0.51916445, 0.51916445, 0.51916445, 0.51916445, 0.59924388,
0.59924388, 0.59924388, 0.59924388, 0.68150433, 0.68150433,
0.68150433, 0.68150433, 0.75946561, 0.75946561, 0.75946561,
0.75946561, 0.8286427 , 0.8286427 , 0.8286427 , 0.8286427 ,
0.8853768 , 0.8853768 , 0.8853768 , 0.8853768 , 0.92834661,
0.92834661, 0.92834661, 0.92834661, 0.95828971, 0.95828971,
0.95828971, 0.95828971, 0.97743175, 0.97743175, 0.97743175,
0.97743175, 0.98865158, 0.98865158, 0.98865158, 0.98865158,
0.99469 , 0.99469 , 0.99469 , 0.99469 , 0.99768535,
0.99768535, 0.99768535, 0.99768535, 0.99904735, 0.99904735,
0.99904735, 0.99904735, 0.99968086, 0.99968086, 0.99968086]), 'vx': array([-1.99976129, -1.99976129, -1.99976129, -1.99976129, -1.99928757,
-1.99928757, -1.99928757, -1.99928757, -1.99826937, -1.99826937,
-1.99826937, -1.99826937, -1.99602961, -1.99602961, -1.99602961,
-1.99602961, -1.99150811, -1.99150811, -1.99150811, -1.99150811,
-1.98307313, -1.98307313, -1.98307313, -1.98307313, -1.96855469,
-1.96855469, -1.96855469, -1.96855469, -1.94546306, -1.94546306,
-1.94546306, -1.94546306, -1.9113848 , -1.9113848 , -1.9113848 ,
-1.9113848 , -1.86439131, -1.86439131, -1.86439131, -1.86439131,
-1.80324961, -1.80324961, -1.80324961, -1.80324961, -1.7279512 ,
-1.7279512 , -1.7279512 , -1.7279512 , -1.64307535, -1.64307535,
-1.64307535, -1.64307535, -1.55362138, -1.55362138, -1.55362138,
-1.55362138, -1.46174726, -1.46174726, -1.46174726, -1.46174726,
-1.36829267, -1.36829267, -1.36829267, -1.36829267, -1.27355598,
-1.27355598, -1.27355598, -1.27355598, -1.17777205, -1.17777205,
-1.17777205, -1.17777205, -1.08123072, -1.08123072, -1.08123072,
-1.08123072, -0.98432119, -0.98432119, -0.98432119, -0.98432119,
-0.88773681, -0.88773681, -0.88773681, -0.88773681, -0.79181684,
-0.79181684, -0.79181684, -0.79181684, -0.69700308, -0.69700308,
-0.69700308, -0.69700308, -0.60390558, -0.60390558, -0.60390558,
-0.60390558, -0.51331502, -0.51331502, -0.51331502, -0.51331502,
-0.42585753, -0.42585753, -0.42585753, -0.42585753, -0.34241668,
-0.34241668, -0.34241668, -0.34241668, -0.26435547, -0.26435547,
-0.26435547, -0.26435547, -0.19206534, -0.19206534, -0.19206534,
-0.19206534, -0.13009378, -0.13009378, -0.13009378, -0.13009378,
-0.07061608, -0.07061608, -0.07061608, -0.07061608, -0.02671133,
-0.02671133, -0.02671133, -0.02671133, 0.02671133, 0.02671133,
0.02671133, 0.02671133, 0.07061608, 0.07061608, 0.07061608,
0.07061608, 0.13009378, 0.13009378, 0.13009378, 0.13009378,
0.19206534, 0.19206534, 0.19206534, 0.19206534, 0.26435547,
0.26435547, 0.26435547, 0.26435547, 0.34241668, 0.34241668,
0.34241668, 0.34241668, 0.42585753, 0.42585753, 0.42585753,
0.42585753, 0.51331502, 0.51331502, 0.51331502, 0.51331502,
0.60390558, 0.60390558, 0.60390558, 0.60390558, 0.69700308,
0.69700308, 0.69700308, 0.69700308, 0.79181684, 0.79181684,
0.79181684, 0.79181684, 0.88773681, 0.88773681, 0.88773681,
0.88773681, 0.98432119, 0.98432119, 0.98432119, 0.98432119,
1.08123072, 1.08123072, 1.08123072, 1.08123072, 1.17777205,
1.17777205, 1.17777205, 1.17777205, 1.27355598, 1.27355598,
1.27355598, 1.27355598, 1.36829267, 1.36829267, 1.36829267,
1.36829267, 1.46174726, 1.46174726, 1.46174726, 1.46174726,
1.55362138, 1.55362138, 1.55362138, 1.55362138, 1.64307535,
1.64307535, 1.64307535, 1.64307535, 1.7279512 , 1.7279512 ,
1.7279512 , 1.7279512 , 1.80324961, 1.80324961, 1.80324961,
1.80324961, 1.86439131, 1.86439131, 1.86439131, 1.86439131,
1.9113848 , 1.9113848 , 1.9113848 , 1.9113848 , 1.94546306,
1.94546306, 1.94546306, 1.94546306, 1.96855469, 1.96855469,
1.96855469, 1.96855469, 1.98307313, 1.98307313, 1.98307313,
1.98307313, 1.99150811, 1.99150811, 1.99150811, 1.99150811,
1.99602961, 1.99602961, 1.99602961, 1.99602961, 1.99826937,
1.99826937, 1.99826937, 1.99826937, 1.99928757, 1.99928757,
1.99928757, 1.99928757, 1.99976129, 1.99976129, 1.99976129]), 'P': array([0.39982141, 0.39982141, 0.39982141, 0.39982141, 0.39946719,
0.39946719, 0.39946719, 0.39946719, 0.39870684, 0.39870684,
0.39870684, 0.39870684, 0.39703884, 0.39703884, 0.39703884,
0.39703884, 0.39369048, 0.39369048, 0.39369048, 0.39369048,
0.38751064, 0.38751064, 0.38751064, 0.38751064, 0.37707294,
0.37707294, 0.37707294, 0.37707294, 0.36097737, 0.36097737,
0.36097737, 0.36097737, 0.33831756, 0.33831756, 0.33831756,
0.33831756, 0.30910205, 0.30910205, 0.30910205, 0.30910205,
0.27433245, 0.27433245, 0.27433245, 0.27433245, 0.23557782,
0.23557782, 0.23557782, 0.23557782, 0.1975858 , 0.1975858 ,
0.1975858 , 0.1975858 , 0.16381828, 0.16381828, 0.16381828,
0.16381828, 0.13476633, 0.13476633, 0.13476633, 0.13476633,
0.11022619, 0.11022619, 0.11022619, 0.11022619, 0.08977175,
0.08977175, 0.08977175, 0.08977175, 0.07291246, 0.07291246,
0.07291246, 0.07291246, 0.05915761, 0.05915761, 0.05915761,
0.05915761, 0.04805018, 0.04805018, 0.04805018, 0.04805018,
0.03915057, 0.03915057, 0.03915057, 0.03915057, 0.03204531,
0.03204531, 0.03204531, 0.03204531, 0.02638786, 0.02638786,
0.02638786, 0.02638786, 0.0218908 , 0.0218908 , 0.0218908 ,
0.0218908 , 0.0183185 , 0.0183185 , 0.0183185 , 0.0183185 ,
0.01549764, 0.01549764, 0.01549764, 0.01549764, 0.01328646,
0.01328646, 0.01328646, 0.01328646, 0.01156713, 0.01156713,
0.01156713, 0.01156713, 0.01028524, 0.01028524, 0.01028524,
0.01028524, 0.00930125, 0.00930125, 0.00930125, 0.00930125,
0.00877218, 0.00877218, 0.00877218, 0.00877218, 0.00837247,
0.00837247, 0.00837247, 0.00837247, 0.00837247, 0.00837247,
0.00837247, 0.00837247, 0.00877218, 0.00877218, 0.00877218,
0.00877218, 0.00930125, 0.00930125, 0.00930125, 0.00930125,
0.01028524, 0.01028524, 0.01028524, 0.01028524, 0.01156713,
0.01156713, 0.01156713, 0.01156713, 0.01328646, 0.01328646,
0.01328646, 0.01328646, 0.01549764, 0.01549764, 0.01549764,
0.01549764, 0.0183185 , 0.0183185 , 0.0183185 , 0.0183185 ,
0.0218908 , 0.0218908 , 0.0218908 , 0.0218908 , 0.02638786,
0.02638786, 0.02638786, 0.02638786, 0.03204531, 0.03204531,
0.03204531, 0.03204531, 0.03915057, 0.03915057, 0.03915057,
0.03915057, 0.04805018, 0.04805018, 0.04805018, 0.04805018,
0.05915761, 0.05915761, 0.05915761, 0.05915761, 0.07291246,
0.07291246, 0.07291246, 0.07291246, 0.08977175, 0.08977175,
0.08977175, 0.08977175, 0.11022619, 0.11022619, 0.11022619,
0.11022619, 0.13476633, 0.13476633, 0.13476633, 0.13476633,
0.16381828, 0.16381828, 0.16381828, 0.16381828, 0.1975858 ,
0.1975858 , 0.1975858 , 0.1975858 , 0.23557782, 0.23557782,
0.23557782, 0.23557782, 0.27433245, 0.27433245, 0.27433245,
0.27433245, 0.30910205, 0.30910205, 0.30910205, 0.30910205,
0.33831756, 0.33831756, 0.33831756, 0.33831756, 0.36097737,
0.36097737, 0.36097737, 0.36097737, 0.37707294, 0.37707294,
0.37707294, 0.37707294, 0.38751064, 0.38751064, 0.38751064,
0.38751064, 0.39369048, 0.39369048, 0.39369048, 0.39369048,
0.39703884, 0.39703884, 0.39703884, 0.39703884, 0.39870684,
0.39870684, 0.39870684, 0.39870684, 0.39946719, 0.39946719,
0.39946719, 0.39946719, 0.39982141, 0.39982141, 0.39982141])}, {'rho': array([0.99935842, 0.99935842, 0.99935842, 0.99935842, 0.99818385,
0.99818385, 0.99818385, 0.99818385, 0.9958364 , 0.9958364 ,
0.9958364 , 0.9958364 , 0.99097735, 0.99097735, 0.99097735,
0.99097735, 0.98179228, 0.98179228, 0.98179228, 0.98179228,
0.96579536, 0.96579536, 0.96579536, 0.96579536, 0.94020757,
0.94020757, 0.94020757, 0.94020757, 0.90261749, 0.90261749,
0.90261749, 0.90261749, 0.85178879, 0.85178879, 0.85178879,
0.85178879, 0.78827781, 0.78827781, 0.78827781, 0.78827781,
0.71478068, 0.71478068, 0.71478068, 0.71478068, 0.63550363,
0.63550363, 0.63550363, 0.63550363, 0.55595614, 0.55595614,
0.55595614, 0.55595614, 0.48067049, 0.48067049, 0.48067049,
0.48067049, 0.41103821, 0.41103821, 0.41103821, 0.41103821,
0.34796265, 0.34796265, 0.34796265, 0.34796265, 0.29198841,
0.29198841, 0.29198841, 0.29198841, 0.2432827 , 0.2432827 ,
0.2432827 , 0.2432827 , 0.20167143, 0.20167143, 0.20167143,
0.20167143, 0.16671549, 0.16671549, 0.16671549, 0.16671549,
0.13771315, 0.13771315, 0.13771315, 0.13771315, 0.1138762 ,
0.1138762 , 0.1138762 , 0.1138762 , 0.09444197, 0.09444197,
0.09444197, 0.09444197, 0.0787049 , 0.0787049 , 0.0787049 ,
0.0787049 , 0.06608221, 0.06608221, 0.06608221, 0.06608221,
0.05610415, 0.05610415, 0.05610415, 0.05610415, 0.04834004,
0.04834004, 0.04834004, 0.04834004, 0.04240575, 0.04240575,
0.04240575, 0.04240575, 0.0380912 , 0.0380912 , 0.0380912 ,
0.0380912 , 0.03492123, 0.03492123, 0.03492123, 0.03492123,
0.03326485, 0.03326485, 0.03326485, 0.03326485, 0.03214135,
0.03214135, 0.03214135, 0.03214135, 0.03214135, 0.03214135,
0.03214135, 0.03214135, 0.03326485, 0.03326485, 0.03326485,
0.03326485, 0.03492123, 0.03492123, 0.03492123, 0.03492123,
0.0380912 , 0.0380912 , 0.0380912 , 0.0380912 , 0.04240575,
0.04240575, 0.04240575, 0.04240575, 0.04834004, 0.04834004,
0.04834004, 0.04834004, 0.05610415, 0.05610415, 0.05610415,
0.05610415, 0.06608221, 0.06608221, 0.06608221, 0.06608221,
0.0787049 , 0.0787049 , 0.0787049 , 0.0787049 , 0.09444197,
0.09444197, 0.09444197, 0.09444197, 0.1138762 , 0.1138762 ,
0.1138762 , 0.1138762 , 0.13771315, 0.13771315, 0.13771315,
0.13771315, 0.16671549, 0.16671549, 0.16671549, 0.16671549,
0.20167143, 0.20167143, 0.20167143, 0.20167143, 0.2432827 ,
0.2432827 , 0.2432827 , 0.2432827 , 0.29198841, 0.29198841,
0.29198841, 0.29198841, 0.34796265, 0.34796265, 0.34796265,
0.34796265, 0.41103821, 0.41103821, 0.41103821, 0.41103821,
0.48067049, 0.48067049, 0.48067049, 0.48067049, 0.55595614,
0.55595614, 0.55595614, 0.55595614, 0.63550363, 0.63550363,
0.63550363, 0.63550363, 0.71478068, 0.71478068, 0.71478068,
0.71478068, 0.78827781, 0.78827781, 0.78827781, 0.78827781,
0.85178879, 0.85178879, 0.85178879, 0.85178879, 0.90261749,
0.90261749, 0.90261749, 0.90261749, 0.94020757, 0.94020757,
0.94020757, 0.94020757, 0.96579536, 0.96579536, 0.96579536,
0.96579536, 0.98179228, 0.98179228, 0.98179228, 0.98179228,
0.99097735, 0.99097735, 0.99097735, 0.99097735, 0.9958364 ,
0.9958364 , 0.9958364 , 0.9958364 , 0.99818385, 0.99818385,
0.99818385, 0.99818385, 0.99935842, 0.99935842, 0.99935842]), 'vx': array([-1.99952018, -1.99952018, -1.99952018, -1.99952018, -1.99864185,
-1.99864185, -1.99864185, -1.99864185, -1.99688652, -1.99688652,
-1.99688652, -1.99688652, -1.99324933, -1.99324933, -1.99324933,
-1.99324933, -1.9863528 , -1.9863528 , -1.9863528 , -1.9863528 ,
-1.97425674, -1.97425674, -1.97425674, -1.97425674, -1.95464263,
-1.95464263, -1.95464263, -1.95464263, -1.92514406, -1.92514406,
-1.92514406, -1.92514406, -1.88375677, -1.88375677, -1.88375677,
-1.88375677, -1.82911554, -1.82911554, -1.82911554, -1.82911554,
-1.76062129, -1.76062129, -1.76062129, -1.76062129, -1.68071322,
-1.68071322, -1.68071322, -1.68071322, -1.59492733, -1.59492733,
-1.59492733, -1.59492733, -1.5062706 , -1.5062706 , -1.5062706 ,
-1.5062706 , -1.41587855, -1.41587855, -1.41587855, -1.41587855,
-1.32420236, -1.32420236, -1.32420236, -1.32420236, -1.23142318,
-1.23142318, -1.23142318, -1.23142318, -1.13776667, -1.13776667,
-1.13776667, -1.13776667, -1.0435245 , -1.0435245 , -1.0435245 ,
-1.0435245 , -0.94917177, -0.94917177, -0.94917177, -0.94917177,
-0.85524436, -0.85524436, -0.85524436, -0.85524436, -0.76204779,
-0.76204779, -0.76204779, -0.76204779, -0.6700244 , -0.6700244 ,
-0.6700244 , -0.6700244 , -0.57980628, -0.57980628, -0.57980628,
-0.57980628, -0.49209337, -0.49209337, -0.49209337, -0.49209337,
-0.4075253 , -0.4075253 , -0.4075253 , -0.4075253 , -0.3269932 ,
-0.3269932 , -0.3269932 , -0.3269932 , -0.25189354, -0.25189354,
-0.25189354, -0.25189354, -0.18245433, -0.18245433, -0.18245433,
-0.18245433, -0.12356223, -0.12356223, -0.12356223, -0.12356223,
-0.06674555, -0.06674555, -0.06674555, -0.06674555, -0.02512498,
-0.02512498, -0.02512498, -0.02512498, 0.02512498, 0.02512498,
0.02512498, 0.02512498, 0.06674555, 0.06674555, 0.06674555,
0.06674555, 0.12356223, 0.12356223, 0.12356223, 0.12356223,
0.18245433, 0.18245433, 0.18245433, 0.18245433, 0.25189354,
0.25189354, 0.25189354, 0.25189354, 0.3269932 , 0.3269932 ,
0.3269932 , 0.3269932 , 0.4075253 , 0.4075253 , 0.4075253 ,
0.4075253 , 0.49209337, 0.49209337, 0.49209337, 0.49209337,
0.57980628, 0.57980628, 0.57980628, 0.57980628, 0.6700244 ,
0.6700244 , 0.6700244 , 0.6700244 , 0.76204779, 0.76204779,
0.76204779, 0.76204779, 0.85524436, 0.85524436, 0.85524436,
0.85524436, 0.94917177, 0.94917177, 0.94917177, 0.94917177,
1.0435245 , 1.0435245 , 1.0435245 , 1.0435245 , 1.13776667,
1.13776667, 1.13776667, 1.13776667, 1.23142318, 1.23142318,
1.23142318, 1.23142318, 1.32420236, 1.32420236, 1.32420236,
1.32420236, 1.41587855, 1.41587855, 1.41587855, 1.41587855,
1.5062706 , 1.5062706 , 1.5062706 , 1.5062706 , 1.59492733,
1.59492733, 1.59492733, 1.59492733, 1.68071322, 1.68071322,
1.68071322, 1.68071322, 1.76062129, 1.76062129, 1.76062129,
1.76062129, 1.82911554, 1.82911554, 1.82911554, 1.82911554,
1.88375677, 1.88375677, 1.88375677, 1.88375677, 1.92514406,
1.92514406, 1.92514406, 1.92514406, 1.95464263, 1.95464263,
1.95464263, 1.95464263, 1.97425674, 1.97425674, 1.97425674,
1.97425674, 1.9863528 , 1.9863528 , 1.9863528 , 1.9863528 ,
1.99324933, 1.99324933, 1.99324933, 1.99324933, 1.99688652,
1.99688652, 1.99688652, 1.99688652, 1.99864185, 1.99864185,
1.99864185, 1.99864185, 1.99952018, 1.99952018, 1.99952018]), 'P': array([0.39964109, 0.39964109, 0.39964109, 0.39964109, 0.39898484,
0.39898484, 0.39898484, 0.39898484, 0.39767625, 0.39767625,
0.39767625, 0.39767625, 0.39497692, 0.39497692, 0.39497692,
0.39497692, 0.38990315, 0.38990315, 0.38990315, 0.38990315,
0.38114224, 0.38114224, 0.38114224, 0.38114224, 0.36730165,
0.36730165, 0.36730165, 0.36730165, 0.34731065, 0.34731065,
0.34731065, 0.34731065, 0.32085982, 0.32085982, 0.32085982,
0.32085982, 0.28861299, 0.28861299, 0.28861299, 0.28861299,
0.25186678, 0.25186678, 0.25186678, 0.25186678, 0.21365403,
0.21365403, 0.21365403, 0.21365403, 0.17870252, 0.17870252,
0.17870252, 0.17870252, 0.14818267, 0.14818267, 0.14818267,
0.14818267, 0.12209924, 0.12209924, 0.12209924, 0.12209924,
0.10011945, 0.10011945, 0.10011945, 0.10011945, 0.0818088 ,
0.0818088 , 0.0818088 , 0.0818088 , 0.06670971, 0.06670971,
0.06670971, 0.06670971, 0.05437927, 0.05437927, 0.05437927,
0.05437927, 0.04440649, 0.04440649, 0.04440649, 0.04440649,
0.03638626, 0.03638626, 0.03638626, 0.03638626, 0.02995596,
0.02995596, 0.02995596, 0.02995596, 0.02481328, 0.02481328,
0.02481328, 0.02481328, 0.02070499, 0.02070499, 0.02070499,
0.02070499, 0.0174288 , 0.0174288 , 0.0174288 , 0.0174288 ,
0.01483202, 0.01483202, 0.01483202, 0.01483202, 0.01278983,
0.01278983, 0.01278983, 0.01278983, 0.01119743, 0.01119743,
0.01119743, 0.01119743, 0.01001381, 0.01001381, 0.01001381,
0.01001381, 0.0090983 , 0.0090983 , 0.0090983 , 0.0090983 ,
0.00861935, 0.00861935, 0.00861935, 0.00861935, 0.00825265,
0.00825265, 0.00825265, 0.00825265, 0.00825265, 0.00825265,
0.00825265, 0.00825265, 0.00861935, 0.00861935, 0.00861935,
0.00861935, 0.0090983 , 0.0090983 , 0.0090983 , 0.0090983 ,
0.01001381, 0.01001381, 0.01001381, 0.01001381, 0.01119743,
0.01119743, 0.01119743, 0.01119743, 0.01278983, 0.01278983,
0.01278983, 0.01278983, 0.01483202, 0.01483202, 0.01483202,
0.01483202, 0.0174288 , 0.0174288 , 0.0174288 , 0.0174288 ,
0.02070499, 0.02070499, 0.02070499, 0.02070499, 0.02481328,
0.02481328, 0.02481328, 0.02481328, 0.02995596, 0.02995596,
0.02995596, 0.02995596, 0.03638626, 0.03638626, 0.03638626,
0.03638626, 0.04440649, 0.04440649, 0.04440649, 0.04440649,
0.05437927, 0.05437927, 0.05437927, 0.05437927, 0.06670971,
0.06670971, 0.06670971, 0.06670971, 0.0818088 , 0.0818088 ,
0.0818088 , 0.0818088 , 0.10011945, 0.10011945, 0.10011945,
0.10011945, 0.12209924, 0.12209924, 0.12209924, 0.12209924,
0.14818267, 0.14818267, 0.14818267, 0.14818267, 0.17870252,
0.17870252, 0.17870252, 0.17870252, 0.21365403, 0.21365403,
0.21365403, 0.21365403, 0.25186678, 0.25186678, 0.25186678,
0.25186678, 0.28861299, 0.28861299, 0.28861299, 0.28861299,
0.32085982, 0.32085982, 0.32085982, 0.32085982, 0.34731065,
0.34731065, 0.34731065, 0.34731065, 0.36730165, 0.36730165,
0.36730165, 0.36730165, 0.38114224, 0.38114224, 0.38114224,
0.38114224, 0.38990315, 0.38990315, 0.38990315, 0.38990315,
0.39497692, 0.39497692, 0.39497692, 0.39497692, 0.39767625,
0.39767625, 0.39767625, 0.39767625, 0.39898484, 0.39898484,
0.39898484, 0.39898484, 0.39964109, 0.39964109, 0.39964109])}, {'rho': array([0.99877047, 0.99877047, 0.99877047, 0.99877047, 0.99669744,
0.99669744, 0.99669744, 0.99669744, 0.99285057, 0.99285057,
0.99285057, 0.99285057, 0.98534841, 0.98534841, 0.98534841,
0.98534841, 0.97204259, 0.97204259, 0.97204259, 0.97204259,
0.95029132, 0.95029132, 0.95029132, 0.95029132, 0.91759898,
0.91759898, 0.91759898, 0.91759898, 0.87234656, 0.87234656,
0.87234656, 0.87234656, 0.81445318, 0.81445318, 0.81445318,
0.81445318, 0.7457438 , 0.7457438 , 0.7457438 , 0.7457438 ,
0.66993745, 0.66993745, 0.66993745, 0.66993745, 0.59159085,
0.59159085, 0.59159085, 0.59159085, 0.51625046, 0.51625046,
0.51625046, 0.51625046, 0.44575447, 0.44575447, 0.44575447,
0.44575447, 0.38102775, 0.38102775, 0.38102775, 0.38102775,
0.32272363, 0.32272363, 0.32272363, 0.32272363, 0.27120152,
0.27120152, 0.27120152, 0.27120152, 0.22649938, 0.22649938,
0.22649938, 0.22649938, 0.18837223, 0.18837223, 0.18837223,
0.18837223, 0.15634393, 0.15634393, 0.15634393, 0.15634393,
0.12971893, 0.12971893, 0.12971893, 0.12971893, 0.10777842,
0.10777842, 0.10777842, 0.10777842, 0.08983298, 0.08983298,
0.08983298, 0.08983298, 0.07524656, 0.07524656, 0.07524656,
0.07524656, 0.06352115, 0.06352115, 0.06352115, 0.06352115,
0.05422287, 0.05422287, 0.05422287, 0.05422287, 0.04696748,
0.04696748, 0.04696748, 0.04696748, 0.04140756, 0.04140756,
0.04140756, 0.04140756, 0.03737502, 0.03737502, 0.03737502,
0.03737502, 0.0343942 , 0.0343942 , 0.0343942 , 0.0343942 ,
0.0328717 , 0.0328717 , 0.0328717 , 0.0328717 , 0.03183325,
0.03183325, 0.03183325, 0.03183325, 0.03183325, 0.03183325,
0.03183325, 0.03183325, 0.0328717 , 0.0328717 , 0.0328717 ,
0.0328717 , 0.0343942 , 0.0343942 , 0.0343942 , 0.0343942 ,
0.03737502, 0.03737502, 0.03737502, 0.03737502, 0.04140756,
0.04140756, 0.04140756, 0.04140756, 0.04696748, 0.04696748,
0.04696748, 0.04696748, 0.05422287, 0.05422287, 0.05422287,
0.05422287, 0.06352115, 0.06352115, 0.06352115, 0.06352115,
0.07524656, 0.07524656, 0.07524656, 0.07524656, 0.08983298,
0.08983298, 0.08983298, 0.08983298, 0.10777842, 0.10777842,
0.10777842, 0.10777842, 0.12971893, 0.12971893, 0.12971893,
0.12971893, 0.15634393, 0.15634393, 0.15634393, 0.15634393,
0.18837223, 0.18837223, 0.18837223, 0.18837223, 0.22649938,
0.22649938, 0.22649938, 0.22649938, 0.27120152, 0.27120152,
0.27120152, 0.27120152, 0.32272363, 0.32272363, 0.32272363,
0.32272363, 0.38102775, 0.38102775, 0.38102775, 0.38102775,
0.44575447, 0.44575447, 0.44575447, 0.44575447, 0.51625046,
0.51625046, 0.51625046, 0.51625046, 0.59159085, 0.59159085,
0.59159085, 0.59159085, 0.66993745, 0.66993745, 0.66993745,
0.66993745, 0.7457438 , 0.7457438 , 0.7457438 , 0.7457438 ,
0.81445318, 0.81445318, 0.81445318, 0.81445318, 0.87234656,
0.87234656, 0.87234656, 0.87234656, 0.91759898, 0.91759898,
0.91759898, 0.91759898, 0.95029132, 0.95029132, 0.95029132,
0.95029132, 0.97204259, 0.97204259, 0.97204259, 0.97204259,
0.98534841, 0.98534841, 0.98534841, 0.98534841, 0.99285057,
0.99285057, 0.99285057, 0.99285057, 0.99669744, 0.99669744,
0.99669744, 0.99669744, 0.99877047, 0.99877047, 0.99877047]), 'vx': array([-1.99908059, -1.99908059, -1.99908059, -1.99908059, -1.99753004,
-1.99753004, -1.99753004, -1.99753004, -1.99465134, -1.99465134,
-1.99465134, -1.99465134, -1.98902376, -1.98902376, -1.98902376,
-1.98902376, -1.97898693, -1.97898693, -1.97898693, -1.97898693,
-1.96239563, -1.96239563, -1.96239563, -1.96239563, -1.93696484,
-1.93696484, -1.93696484, -1.93696484, -1.90064228, -1.90064228,
-1.90064228, -1.90064228, -1.85193922, -1.85193922, -1.85193922,
-1.85193922, -1.7900464 , -1.7900464 , -1.7900464 , -1.7900464 ,
-1.71565593, -1.71565593, -1.71565593, -1.71565593, -1.63373525,
-1.63373525, -1.63373525, -1.63373525, -1.54823073, -1.54823073,
-1.54823073, -1.54823073, -1.46079235, -1.46079235, -1.46079235,
-1.46079235, -1.37199852, -1.37199852, -1.37199852, -1.37199852,
-1.28211147, -1.28211147, -1.28211147, -1.28211147, -1.1912692 ,
-1.1912692 , -1.1912692 , -1.1912692 , -1.0997101 , -1.0997101 ,
-1.0997101 , -1.0997101 , -1.00773223, -1.00773223, -1.00773223,
-1.00773223, -0.915865 , -0.915865 , -0.915865 , -0.915865 ,
-0.82447802, -0.82447802, -0.82447802, -0.82447802, -0.73388324,
-0.73388324, -0.73388324, -0.73388324, -0.64452211, -0.64452211,
-0.64452211, -0.64452211, -0.55705453, -0.55705453, -0.55705453,
-0.55705453, -0.47206535, -0.47206535, -0.47206535, -0.47206535,
-0.39024786, -0.39024786, -0.39024786, -0.39024786, -0.31248498,
-0.31248498, -0.31248498, -0.31248498, -0.24021394, -0.24021394,
-0.24021394, -0.24021394, -0.17347661, -0.17347661, -0.17347661,
-0.17347661, -0.11751026, -0.11751026, -0.11751026, -0.11751026,
-0.0632085 , -0.0632085 , -0.0632085 , -0.0632085 , -0.02367335,
-0.02367335, -0.02367335, -0.02367335, 0.02367335, 0.02367335,
0.02367335, 0.02367335, 0.0632085 , 0.0632085 , 0.0632085 ,
0.0632085 , 0.11751026, 0.11751026, 0.11751026, 0.11751026,
0.17347661, 0.17347661, 0.17347661, 0.17347661, 0.24021394,
0.24021394, 0.24021394, 0.24021394, 0.31248498, 0.31248498,
0.31248498, 0.31248498, 0.39024786, 0.39024786, 0.39024786,
0.39024786, 0.47206535, 0.47206535, 0.47206535, 0.47206535,
0.55705453, 0.55705453, 0.55705453, 0.55705453, 0.64452211,
0.64452211, 0.64452211, 0.64452211, 0.73388324, 0.73388324,
0.73388324, 0.73388324, 0.82447802, 0.82447802, 0.82447802,
0.82447802, 0.915865 , 0.915865 , 0.915865 , 0.915865 ,
1.00773223, 1.00773223, 1.00773223, 1.00773223, 1.0997101 ,
1.0997101 , 1.0997101 , 1.0997101 , 1.1912692 , 1.1912692 ,
1.1912692 , 1.1912692 , 1.28211147, 1.28211147, 1.28211147,
1.28211147, 1.37199852, 1.37199852, 1.37199852, 1.37199852,
1.46079235, 1.46079235, 1.46079235, 1.46079235, 1.54823073,
1.54823073, 1.54823073, 1.54823073, 1.63373525, 1.63373525,
1.63373525, 1.63373525, 1.71565593, 1.71565593, 1.71565593,
1.71565593, 1.7900464 , 1.7900464 , 1.7900464 , 1.7900464 ,
1.85193922, 1.85193922, 1.85193922, 1.85193922, 1.90064228,
1.90064228, 1.90064228, 1.90064228, 1.93696484, 1.93696484,
1.93696484, 1.93696484, 1.96239563, 1.96239563, 1.96239563,
1.96239563, 1.97898693, 1.97898693, 1.97898693, 1.97898693,
1.98902376, 1.98902376, 1.98902376, 1.98902376, 1.99465134,
1.99465134, 1.99465134, 1.99465134, 1.99753004, 1.99753004,
1.99753004, 1.99753004, 1.99908059, 1.99908059, 1.99908059]), 'P': array([0.39931253, 0.39931253, 0.39931253, 0.39931253, 0.39815553,
0.39815553, 0.39815553, 0.39815553, 0.39601547, 0.39601547,
0.39601547, 0.39601547, 0.39186124, 0.39186124, 0.39186124,
0.39186124, 0.38454724, 0.38454724, 0.38454724, 0.38454724,
0.37271856, 0.37271856, 0.37271856, 0.37271856, 0.35520322,
0.35520322, 0.35520322, 0.35520322, 0.33142852, 0.33142852,
0.33142852, 0.33142852, 0.30172162, 0.30172162, 0.30172162,
0.30172162, 0.26722998, 0.26722998, 0.26722998, 0.26722998,
0.22964847, 0.22964847, 0.22964847, 0.22964847, 0.19381543,
0.19381543, 0.19381543, 0.19381543, 0.16198249, 0.16198249,
0.16198249, 0.16198249, 0.13445089, 0.13445089, 0.13445089,
0.13445089, 0.11100538, 0.11100538, 0.11100538, 0.11100538,
0.091272 , 0.091272 , 0.091272 , 0.091272 , 0.07483306,
0.07483306, 0.07483306, 0.07483306, 0.06126859, 0.06126859,
0.06126859, 0.06126859, 0.0501795 , 0.0501795 , 0.0501795 ,
0.0501795 , 0.04119173, 0.04119173, 0.04119173, 0.04119173,
0.03393542, 0.03393542, 0.03393542, 0.03393542, 0.02809392,
0.02809392, 0.02809392, 0.02809392, 0.02340228, 0.02340228,
0.02340228, 0.02340228, 0.01963597, 0.01963597, 0.01963597,
0.01963597, 0.01662277, 0.01662277, 0.01662277, 0.01662277,
0.0142256 , 0.0142256 , 0.0142256 , 0.0142256 , 0.0123351 ,
0.0123351 , 0.0123351 , 0.0123351 , 0.01085733, 0.01085733,
0.01085733, 0.01085733, 0.0097635 , 0.0097635 , 0.0097635 ,
0.0097635 , 0.00891048, 0.00891048, 0.00891048, 0.00891048,
0.00847698, 0.00847698, 0.00847698, 0.00847698, 0.00814089,
0.00814089, 0.00814089, 0.00814089, 0.00814089, 0.00814089,
0.00814089, 0.00814089, 0.00847698, 0.00847698, 0.00847698,
0.00847698, 0.00891048, 0.00891048, 0.00891048, 0.00891048,
0.0097635 , 0.0097635 , 0.0097635 , 0.0097635 , 0.01085733,
0.01085733, 0.01085733, 0.01085733, 0.0123351 , 0.0123351 ,
0.0123351 , 0.0123351 , 0.0142256 , 0.0142256 , 0.0142256 ,
0.0142256 , 0.01662277, 0.01662277, 0.01662277, 0.01662277,
0.01963597, 0.01963597, 0.01963597, 0.01963597, 0.02340228,
0.02340228, 0.02340228, 0.02340228, 0.02809392, 0.02809392,
0.02809392, 0.02809392, 0.03393542, 0.03393542, 0.03393542,
0.03393542, 0.04119173, 0.04119173, 0.04119173, 0.04119173,
0.0501795 , 0.0501795 , 0.0501795 , 0.0501795 , 0.06126859,
0.06126859, 0.06126859, 0.06126859, 0.07483306, 0.07483306,
0.07483306, 0.07483306, 0.091272 , 0.091272 , 0.091272 ,
0.091272 , 0.11100538, 0.11100538, 0.11100538, 0.11100538,
0.13445089, 0.13445089, 0.13445089, 0.13445089, 0.16198249,
0.16198249, 0.16198249, 0.16198249, 0.19381543, 0.19381543,
0.19381543, 0.19381543, 0.22964847, 0.22964847, 0.22964847,
0.22964847, 0.26722998, 0.26722998, 0.26722998, 0.26722998,
0.30172162, 0.30172162, 0.30172162, 0.30172162, 0.33142852,
0.33142852, 0.33142852, 0.33142852, 0.35520322, 0.35520322,
0.35520322, 0.35520322, 0.37271856, 0.37271856, 0.37271856,
0.37271856, 0.38454724, 0.38454724, 0.38454724, 0.38454724,
0.39186124, 0.39186124, 0.39186124, 0.39186124, 0.39601547,
0.39601547, 0.39601547, 0.39601547, 0.39815553, 0.39815553,
0.39815553, 0.39815553, 0.39931253, 0.39931253, 0.39931253])}, {'rho': array([0.9977494 , 0.9977494 , 0.9977494 , 0.9977494 , 0.99426102,
0.99426102, 0.99426102, 0.99426102, 0.98825921, 0.98825921,
0.98825921, 0.98825921, 0.97721687, 0.97721687, 0.97721687,
0.97721687, 0.9588252 , 0.9588252 , 0.9588252 , 0.9588252 ,
0.93055227, 0.93055227, 0.93055227, 0.93055227, 0.89050924,
0.89050924, 0.89050924, 0.89050924, 0.8380853 , 0.8380853 ,
0.8380853 , 0.8380853 , 0.77437286, 0.77437286, 0.77437286,
0.77437286, 0.70235571, 0.70235571, 0.70235571, 0.70235571,
0.62603086, 0.62603086, 0.62603086, 0.62603086, 0.55093316,
0.55093316, 0.55093316, 0.55093316, 0.47999301, 0.47999301,
0.47999301, 0.47999301, 0.41411573, 0.41411573, 0.41411573,
0.41411573, 0.35398023, 0.35398023, 0.35398023, 0.35398023,
0.30006434, 0.30006434, 0.30006434, 0.30006434, 0.25258687,
0.25258687, 0.25258687, 0.25258687, 0.21148973, 0.21148973,
0.21148973, 0.21148973, 0.17648142, 0.17648142, 0.17648142,
0.17648142, 0.14704972, 0.14704972, 0.14704972, 0.14704972,
0.12253346, 0.12253346, 0.12253346, 0.12253346, 0.10227724,
0.10227724, 0.10227724, 0.10227724, 0.08565589, 0.08565589,
0.08565589, 0.08565589, 0.07210108, 0.07210108, 0.07210108,
0.07210108, 0.0611814 , 0.0611814 , 0.0611814 , 0.0611814 ,
0.05249557, 0.05249557, 0.05249557, 0.05249557, 0.04570138,
0.04570138, 0.04570138, 0.04570138, 0.0404826 , 0.0404826 ,
0.0404826 , 0.0404826 , 0.03670994, 0.03670994, 0.03670994,
0.03670994, 0.03390332, 0.03390332, 0.03390332, 0.03390332,
0.03250305, 0.03250305, 0.03250305, 0.03250305, 0.03154398,
0.03154398, 0.03154398, 0.03154398, 0.03154398, 0.03154398,
0.03154398, 0.03154398, 0.03250305, 0.03250305, 0.03250305,
0.03250305, 0.03390332, 0.03390332, 0.03390332, 0.03390332,
0.03670994, 0.03670994, 0.03670994, 0.03670994, 0.0404826 ,
0.0404826 , 0.0404826 , 0.0404826 , 0.04570138, 0.04570138,
0.04570138, 0.04570138, 0.05249557, 0.05249557, 0.05249557,
0.05249557, 0.0611814 , 0.0611814 , 0.0611814 , 0.0611814 ,
0.07210108, 0.07210108, 0.07210108, 0.07210108, 0.08565589,
0.08565589, 0.08565589, 0.08565589, 0.10227724, 0.10227724,
0.10227724, 0.10227724, 0.12253346, 0.12253346, 0.12253346,
0.12253346, 0.14704972, 0.14704972, 0.14704972, 0.14704972,
0.17648142, 0.17648142, 0.17648142, 0.17648142, 0.21148973,
0.21148973, 0.21148973, 0.21148973, 0.25258687, 0.25258687,
0.25258687, 0.25258687, 0.30006434, 0.30006434, 0.30006434,
0.30006434, 0.35398023, 0.35398023, 0.35398023, 0.35398023,
0.41411573, 0.41411573, 0.41411573, 0.41411573, 0.47999301,
0.47999301, 0.47999301, 0.47999301, 0.55093316, 0.55093316,
0.55093316, 0.55093316, 0.62603086, 0.62603086, 0.62603086,
0.62603086, 0.70235571, 0.70235571, 0.70235571, 0.70235571,
0.77437286, 0.77437286, 0.77437286, 0.77437286, 0.8380853 ,
0.8380853 , 0.8380853 , 0.8380853 , 0.89050924, 0.89050924,
0.89050924, 0.89050924, 0.93055227, 0.93055227, 0.93055227,
0.93055227, 0.9588252 , 0.9588252 , 0.9588252 , 0.9588252 ,
0.97721687, 0.97721687, 0.97721687, 0.97721687, 0.98825921,
0.98825921, 0.98825921, 0.98825921, 0.99426102, 0.99426102,
0.99426102, 0.99426102, 0.9977494 , 0.9977494 , 0.9977494 ]), 'vx': array([-1.99831719, -1.99831719, -1.99831719, -1.99831719, -1.9957063 ,
-1.9957063 , -1.9957063 , -1.9957063 , -1.99120791, -1.99120791,
-1.99120791, -1.99120791, -1.98289418, -1.98289418, -1.98289418,
-1.98289418, -1.96892164, -1.96892164, -1.96892164, -1.96892164,
-1.94708842, -1.94708842, -1.94708842, -1.94708842, -1.91533198,
-1.91533198, -1.91533198, -1.91533198, -1.87205044, -1.87205044,
-1.87205044, -1.87205044, -1.81628384, -1.81628384, -1.81628384,
-1.81628384, -1.74789252, -1.74789252, -1.74789252, -1.74789252,
-1.67014117, -1.67014117, -1.67014117, -1.67014117, -1.58781623,
-1.58781623, -1.58781623, -1.58781623, -1.50321406, -1.50321406,
-1.50321406, -1.50321406, -1.41718641, -1.41718641, -1.41718641,
-1.41718641, -1.33002805, -1.33002805, -1.33002805, -1.33002805,
-1.24191754, -1.24191754, -1.24191754, -1.24191754, -1.1529859 ,
-1.1529859 , -1.1529859 , -1.1529859 , -1.06348241, -1.06348241,
-1.06348241, -1.06348241, -0.97375295, -0.97375295, -0.97375295,
-0.97375295, -0.8842681 , -0.8842681 , -0.8842681 , -0.8842681 ,
-0.79531229, -0.79531229, -0.79531229, -0.79531229, -0.70720499,
-0.70720499, -0.70720499, -0.70720499, -0.62039393, -0.62039393,
-0.62039393, -0.62039393, -0.53553844, -0.53553844, -0.53553844,
-0.53553844, -0.45314097, -0.45314097, -0.45314097, -0.45314097,
-0.37394611, -0.37394611, -0.37394611, -0.37394611, -0.29882417,
-0.29882417, -0.29882417, -0.29882417, -0.22926025, -0.22926025,
-0.22926025, -0.22926025, -0.1650861 , -0.1650861 , -0.1650861 ,
-0.1650861 , -0.11189931, -0.11189931, -0.11189931, -0.11189931,
-0.05997783, -0.05997783, -0.05997783, -0.05997783, -0.02234588,
-0.02234588, -0.02234588, -0.02234588, 0.02234588, 0.02234588,
0.02234588, 0.02234588, 0.05997783, 0.05997783, 0.05997783,
0.05997783, 0.11189931, 0.11189931, 0.11189931, 0.11189931,
0.1650861 , 0.1650861 , 0.1650861 , 0.1650861 , 0.22926025,
0.22926025, 0.22926025, 0.22926025, 0.29882417, 0.29882417,
0.29882417, 0.29882417, 0.37394611, 0.37394611, 0.37394611,
0.37394611, 0.45314097, 0.45314097, 0.45314097, 0.45314097,
0.53553844, 0.53553844, 0.53553844, 0.53553844, 0.62039393,
0.62039393, 0.62039393, 0.62039393, 0.70720499, 0.70720499,
0.70720499, 0.70720499, 0.79531229, 0.79531229, 0.79531229,
0.79531229, 0.8842681 , 0.8842681 , 0.8842681 , 0.8842681 ,
0.97375295, 0.97375295, 0.97375295, 0.97375295, 1.06348241,
1.06348241, 1.06348241, 1.06348241, 1.1529859 , 1.1529859 ,
1.1529859 , 1.1529859 , 1.24191754, 1.24191754, 1.24191754,
1.24191754, 1.33002805, 1.33002805, 1.33002805, 1.33002805,
1.41718641, 1.41718641, 1.41718641, 1.41718641, 1.50321406,
1.50321406, 1.50321406, 1.50321406, 1.58781623, 1.58781623,
1.58781623, 1.58781623, 1.67014117, 1.67014117, 1.67014117,
1.67014117, 1.74789252, 1.74789252, 1.74789252, 1.74789252,
1.81628384, 1.81628384, 1.81628384, 1.81628384, 1.87205044,
1.87205044, 1.87205044, 1.87205044, 1.91533198, 1.91533198,
1.91533198, 1.91533198, 1.94708842, 1.94708842, 1.94708842,
1.94708842, 1.96892164, 1.96892164, 1.96892164, 1.96892164,
1.98289418, 1.98289418, 1.98289418, 1.98289418, 1.99120791,
1.99120791, 1.99120791, 1.99120791, 1.9957063 , 1.9957063 ,
1.9957063 , 1.9957063 , 1.99831719, 1.99831719, 1.99831719]), 'P': array([0.39874254, 0.39874254, 0.39874254, 0.39874254, 0.3967985 ,
0.3967985 , 0.3967985 , 0.3967985 , 0.39346894, 0.39346894,
0.39346894, 0.39346894, 0.38738 , 0.38738 , 0.38738 ,
0.38738 , 0.37733237, 0.37733237, 0.37733237, 0.37733237,
0.36208692, 0.36208692, 0.36208692, 0.36208692, 0.34086903,
0.34086903, 0.34086903, 0.34086903, 0.31369196, 0.31369196,
0.31369196, 0.31369196, 0.28143228, 0.28143228, 0.28143228,
0.28143228, 0.24539505, 0.24539505, 0.24539505, 0.24539505,
0.20904257, 0.20904257, 0.20904257, 0.20904257, 0.17608693,
0.17608693, 0.17608693, 0.17608693, 0.1472165 , 0.1472165 ,
0.1472165 , 0.1472165 , 0.12237566, 0.12237566, 0.12237566,
0.12237566, 0.10126204, 0.10126204, 0.10126204, 0.10126204,
0.08350028, 0.08350028, 0.08350028, 0.08350028, 0.06869941,
0.06869941, 0.06869941, 0.06869941, 0.05647672, 0.05647672,
0.05647672, 0.05647672, 0.0464733 , 0.0464733 , 0.0464733 ,
0.0464733 , 0.03834224, 0.03834224, 0.03834224, 0.03834224,
0.03175275, 0.03175275, 0.03175275, 0.03175275, 0.02642729,
0.02642729, 0.02642729, 0.02642729, 0.02213222, 0.02213222,
0.02213222, 0.02213222, 0.018669 , 0.018669 , 0.018669 ,
0.018669 , 0.0158899 , 0.0158899 , 0.0158899 , 0.0158899 ,
0.01367134, 0.01367134, 0.01367134, 0.01367134, 0.01191756,
0.01191756, 0.01191756, 0.01191756, 0.01054368, 0.01054368,
0.01054368, 0.01054368, 0.00953218, 0.00953218, 0.00953218,
0.00953218, 0.00873638, 0.00873638, 0.00873638, 0.00873638,
0.00834403, 0.00834403, 0.00834403, 0.00834403, 0.00803633,
0.00803633, 0.00803633, 0.00803633, 0.00803633, 0.00803633,
0.00803633, 0.00803633, 0.00834403, 0.00834403, 0.00834403,
0.00834403, 0.00873638, 0.00873638, 0.00873638, 0.00873638,
0.00953218, 0.00953218, 0.00953218, 0.00953218, 0.01054368,
0.01054368, 0.01054368, 0.01054368, 0.01191756, 0.01191756,
0.01191756, 0.01191756, 0.01367134, 0.01367134, 0.01367134,
0.01367134, 0.0158899 , 0.0158899 , 0.0158899 , 0.0158899 ,
0.018669 , 0.018669 , 0.018669 , 0.018669 , 0.02213222,
0.02213222, 0.02213222, 0.02213222, 0.02642729, 0.02642729,
0.02642729, 0.02642729, 0.03175275, 0.03175275, 0.03175275,
0.03175275, 0.03834224, 0.03834224, 0.03834224, 0.03834224,
0.0464733 , 0.0464733 , 0.0464733 , 0.0464733 , 0.05647672,
0.05647672, 0.05647672, 0.05647672, 0.06869941, 0.06869941,
0.06869941, 0.06869941, 0.08350028, 0.08350028, 0.08350028,
0.08350028, 0.10126204, 0.10126204, 0.10126204, 0.10126204,
0.12237566, 0.12237566, 0.12237566, 0.12237566, 0.1472165 ,
0.1472165 , 0.1472165 , 0.1472165 , 0.17608693, 0.17608693,
0.17608693, 0.17608693, 0.20904257, 0.20904257, 0.20904257,
0.20904257, 0.24539505, 0.24539505, 0.24539505, 0.24539505,
0.28143228, 0.28143228, 0.28143228, 0.28143228, 0.31369196,
0.31369196, 0.31369196, 0.31369196, 0.34086903, 0.34086903,
0.34086903, 0.34086903, 0.36208692, 0.36208692, 0.36208692,
0.36208692, 0.37733237, 0.37733237, 0.37733237, 0.37733237,
0.38738 , 0.38738 , 0.38738 , 0.38738 , 0.39346894,
0.39346894, 0.39346894, 0.39346894, 0.3967985 , 0.3967985 ,
0.3967985 , 0.3967985 , 0.39874254, 0.39874254, 0.39874254])}, {'rho': array([0.99605813, 0.99605813, 0.99605813, 0.99605813, 0.99045329,
0.99045329, 0.99045329, 0.99045329, 0.98152705, 0.98152705,
0.98152705, 0.98152705, 0.9660057 , 0.9660057 , 0.9660057 ,
0.9660057 , 0.94169868, 0.94169868, 0.94169868, 0.94169868,
0.90647287, 0.90647287, 0.90647287, 0.90647287, 0.85929998,
0.85929998, 0.85929998, 0.85929998, 0.8006496 , 0.8006496 ,
0.8006496 , 0.8006496 , 0.73271464, 0.73271464, 0.73271464,
0.73271464, 0.65912321, 0.65912321, 0.65912321, 0.65912321,
0.58464756, 0.58464756, 0.58464756, 0.58464756, 0.51355991,
0.51355991, 0.51355991, 0.51355991, 0.44694843, 0.44694843,
0.44694843, 0.44694843, 0.38544657, 0.38544657, 0.38544657,
0.38544657, 0.32957765, 0.32957765, 0.32957765, 0.32957765,
0.27968514, 0.27968514, 0.27968514, 0.27968514, 0.23587891,
0.23587891, 0.23587891, 0.23587891, 0.19803116, 0.19803116,
0.19803116, 0.19803116, 0.1658123 , 0.1658123 , 0.1658123 ,
0.1658123 , 0.13869035, 0.13869035, 0.13869035, 0.13869035,
0.1160511 , 0.1160511 , 0.1160511 , 0.1160511 , 0.09729602,
0.09729602, 0.09729602, 0.09729602, 0.08185673, 0.08185673,
0.08185673, 0.08185673, 0.06923142, 0.06923142, 0.06923142,
0.06923142, 0.05903707, 0.05903707, 0.05903707, 0.05903707,
0.05090512, 0.05090512, 0.05090512, 0.05090512, 0.0445306 ,
0.0445306 , 0.0445306 , 0.0445306 , 0.03962367, 0.03962367,
0.03962367, 0.03962367, 0.03609122, 0.03609122, 0.03609122,
0.03609122, 0.03344546, 0.03344546, 0.03344546, 0.03344546,
0.03215668, 0.03215668, 0.03215668, 0.03215668, 0.03127163,
0.03127163, 0.03127163, 0.03127163, 0.03127163, 0.03127163,
0.03127163, 0.03127163, 0.03215668, 0.03215668, 0.03215668,
0.03215668, 0.03344546, 0.03344546, 0.03344546, 0.03344546,
0.03609122, 0.03609122, 0.03609122, 0.03609122, 0.03962367,
0.03962367, 0.03962367, 0.03962367, 0.0445306 , 0.0445306 ,
0.0445306 , 0.0445306 , 0.05090512, 0.05090512, 0.05090512,
0.05090512, 0.05903707, 0.05903707, 0.05903707, 0.05903707,
0.06923142, 0.06923142, 0.06923142, 0.06923142, 0.08185673,
0.08185673, 0.08185673, 0.08185673, 0.09729602, 0.09729602,
0.09729602, 0.09729602, 0.1160511 , 0.1160511 , 0.1160511 ,
0.1160511 , 0.13869035, 0.13869035, 0.13869035, 0.13869035,
0.1658123 , 0.1658123 , 0.1658123 , 0.1658123 , 0.19803116,
0.19803116, 0.19803116, 0.19803116, 0.23587891, 0.23587891,
0.23587891, 0.23587891, 0.27968514, 0.27968514, 0.27968514,
0.27968514, 0.32957765, 0.32957765, 0.32957765, 0.32957765,
0.38544657, 0.38544657, 0.38544657, 0.38544657, 0.44694843,
0.44694843, 0.44694843, 0.44694843, 0.51355991, 0.51355991,
0.51355991, 0.51355991, 0.58464756, 0.58464756, 0.58464756,
0.58464756, 0.65912321, 0.65912321, 0.65912321, 0.65912321,
0.73271464, 0.73271464, 0.73271464, 0.73271464, 0.8006496 ,
0.8006496 , 0.8006496 , 0.8006496 , 0.85929998, 0.85929998,
0.85929998, 0.85929998, 0.90647287, 0.90647287, 0.90647287,
0.90647287, 0.94169868, 0.94169868, 0.94169868, 0.94169868,
0.9660057 , 0.9660057 , 0.9660057 , 0.9660057 , 0.98152705,
0.98152705, 0.98152705, 0.98152705, 0.99045329, 0.99045329,
0.99045329, 0.99045329, 0.99605813, 0.99605813, 0.99605813]), 'vx': array([-1.99705244, -1.99705244, -1.99705244, -1.99705244, -1.99285175,
-1.99285175, -1.99285175, -1.99285175, -1.98614251, -1.98614251,
-1.98614251, -1.98614251, -1.97438827, -1.97438827, -1.97438827,
-1.97438827, -1.95573085, -1.95573085, -1.95573085, -1.95573085,
-1.92807626, -1.92807626, -1.92807626, -1.92807626, -1.88974206,
-1.88974206, -1.88974206, -1.88974206, -1.83963153, -1.83963153,
-1.83963153, -1.83963153, -1.77727471, -1.77727471, -1.77727471,
-1.77727471, -1.70416641, -1.70416641, -1.70416641, -1.70416641,
-1.62516587, -1.62516587, -1.62516587, -1.62516587, -1.5433367 ,
-1.5433367 , -1.5433367 , -1.5433367 , -1.45994065, -1.45994065,
-1.45994065, -1.45994065, -1.37539964, -1.37539964, -1.37539964,
-1.37539964, -1.28987706, -1.28987706, -1.28987706, -1.28987706,
-1.20352061, -1.20352061, -1.20352061, -1.20352061, -1.11647055,
-1.11647055, -1.11647055, -1.11647055, -1.0289871 , -1.0289871 ,
-1.0289871 , -1.0289871 , -0.94146516, -0.94146516, -0.94146516,
-0.94146516, -0.85426046, -0.85426046, -0.85426046, -0.85426046,
-0.76763292, -0.76763292, -0.76763292, -0.76763292, -0.68190616,
-0.68190616, -0.68190616, -0.68190616, -0.59754128, -0.59754128,
-0.59754128, -0.59754128, -0.51516275, -0.51516275, -0.51516275,
-0.51516275, -0.43523915, -0.43523915, -0.43523915, -0.43523915,
-0.35854904, -0.35854904, -0.35854904, -0.35854904, -0.28594979,
-0.28594979, -0.28594979, -0.28594979, -0.21898158, -0.21898158,
-0.21898158, -0.21898158, -0.1572412 , -0.1572412 , -0.1572412 ,
-0.1572412 , -0.10669413, -0.10669413, -0.10669413, -0.10669413,
-0.05702841, -0.05702841, -0.05702841, -0.05702841, -0.02113285,
-0.02113285, -0.02113285, -0.02113285, 0.02113285, 0.02113285,
0.02113285, 0.02113285, 0.05702841, 0.05702841, 0.05702841,
0.05702841, 0.10669413, 0.10669413, 0.10669413, 0.10669413,
0.1572412 , 0.1572412 , 0.1572412 , 0.1572412 , 0.21898158,
0.21898158, 0.21898158, 0.21898158, 0.28594979, 0.28594979,
0.28594979, 0.28594979, 0.35854904, 0.35854904, 0.35854904,
0.35854904, 0.43523915, 0.43523915, 0.43523915, 0.43523915,
0.51516275, 0.51516275, 0.51516275, 0.51516275, 0.59754128,
0.59754128, 0.59754128, 0.59754128, 0.68190616, 0.68190616,
0.68190616, 0.68190616, 0.76763292, 0.76763292, 0.76763292,
0.76763292, 0.85426046, 0.85426046, 0.85426046, 0.85426046,
0.94146516, 0.94146516, 0.94146516, 0.94146516, 1.0289871 ,
1.0289871 , 1.0289871 , 1.0289871 , 1.11647055, 1.11647055,
1.11647055, 1.11647055, 1.20352061, 1.20352061, 1.20352061,
1.20352061, 1.28987706, 1.28987706, 1.28987706, 1.28987706,
1.37539964, 1.37539964, 1.37539964, 1.37539964, 1.45994065,
1.45994065, 1.45994065, 1.45994065, 1.5433367 , 1.5433367 ,
1.5433367 , 1.5433367 , 1.62516587, 1.62516587, 1.62516587,
1.62516587, 1.70416641, 1.70416641, 1.70416641, 1.70416641,
1.77727471, 1.77727471, 1.77727471, 1.77727471, 1.83963153,
1.83963153, 1.83963153, 1.83963153, 1.88974206, 1.88974206,
1.88974206, 1.88974206, 1.92807626, 1.92807626, 1.92807626,
1.92807626, 1.95573085, 1.95573085, 1.95573085, 1.95573085,
1.97438827, 1.97438827, 1.97438827, 1.97438827, 1.98614251,
1.98614251, 1.98614251, 1.98614251, 1.99285175, 1.99285175,
1.99285175, 1.99285175, 1.99705244, 1.99705244, 1.99705244]), 'P': array([0.39779984, 0.39779984, 0.39779984, 0.39779984, 0.39468265,
0.39468265, 0.39468265, 0.39468265, 0.38974908, 0.38974908,
0.38974908, 0.38974908, 0.38123566, 0.38123566, 0.38123566,
0.38123566, 0.36805554, 0.36805554, 0.36805554, 0.36805554,
0.34924877, 0.34924877, 0.34924877, 0.34924877, 0.324561 ,
0.324561 , 0.324561 , 0.324561 , 0.29457279, 0.29457279,
0.29457279, 0.29457279, 0.26045519, 0.26045519, 0.26045519,
0.26045519, 0.22427528, 0.22427528, 0.22427528, 0.22427528,
0.19041118, 0.19041118, 0.19041118, 0.19041118, 0.16032999,
0.16032999, 0.16032999, 0.16032999, 0.13417526, 0.13417526,
0.13417526, 0.13417526, 0.11173388, 0.11173388, 0.11173388,
0.11173388, 0.09267875, 0.09267875, 0.09267875, 0.09267875,
0.07665006, 0.07665006, 0.07665006, 0.07665006, 0.06328669,
0.06328669, 0.06328669, 0.06328669, 0.05224142, 0.05224142,
0.05224142, 0.05224142, 0.04318826, 0.04318826, 0.04318826,
0.04318826, 0.0358055 , 0.0358055 , 0.0358055 , 0.0358055 ,
0.02980072, 0.02980072, 0.02980072, 0.02980072, 0.02492949,
0.02492949, 0.02492949, 0.02492949, 0.02098449, 0.02098449,
0.02098449, 0.02098449, 0.01779138, 0.01779138, 0.01779138,
0.01779138, 0.01522133, 0.01522133, 0.01522133, 0.01522133,
0.01316322, 0.01316322, 0.01316322, 0.01316322, 0.01153318,
0.01153318, 0.01153318, 0.01153318, 0.01025378, 0.01025378,
0.01025378, 0.01025378, 0.00931797, 0.00931797, 0.00931797,
0.00931797, 0.00857471, 0.00857471, 0.00857471, 0.00857471,
0.00821961, 0.00821961, 0.00821961, 0.00821961, 0.00793821,
0.00793821, 0.00793821, 0.00793821, 0.00793821, 0.00793821,
0.00793821, 0.00793821, 0.00821961, 0.00821961, 0.00821961,
0.00821961, 0.00857471, 0.00857471, 0.00857471, 0.00857471,
0.00931797, 0.00931797, 0.00931797, 0.00931797, 0.01025378,
0.01025378, 0.01025378, 0.01025378, 0.01153318, 0.01153318,
0.01153318, 0.01153318, 0.01316322, 0.01316322, 0.01316322,
0.01316322, 0.01522133, 0.01522133, 0.01522133, 0.01522133,
0.01779138, 0.01779138, 0.01779138, 0.01779138, 0.02098449,
0.02098449, 0.02098449, 0.02098449, 0.02492949, 0.02492949,
0.02492949, 0.02492949, 0.02980072, 0.02980072, 0.02980072,
0.02980072, 0.0358055 , 0.0358055 , 0.0358055 , 0.0358055 ,
0.04318826, 0.04318826, 0.04318826, 0.04318826, 0.05224142,
0.05224142, 0.05224142, 0.05224142, 0.06328669, 0.06328669,
0.06328669, 0.06328669, 0.07665006, 0.07665006, 0.07665006,
0.07665006, 0.09267875, 0.09267875, 0.09267875, 0.09267875,
0.11173388, 0.11173388, 0.11173388, 0.11173388, 0.13417526,
0.13417526, 0.13417526, 0.13417526, 0.16032999, 0.16032999,
0.16032999, 0.16032999, 0.19041118, 0.19041118, 0.19041118,
0.19041118, 0.22427528, 0.22427528, 0.22427528, 0.22427528,
0.26045519, 0.26045519, 0.26045519, 0.26045519, 0.29457279,
0.29457279, 0.29457279, 0.29457279, 0.324561 , 0.324561 ,
0.324561 , 0.324561 , 0.34924877, 0.34924877, 0.34924877,
0.34924877, 0.36805554, 0.36805554, 0.36805554, 0.36805554,
0.38123566, 0.38123566, 0.38123566, 0.38123566, 0.38974908,
0.38974908, 0.38974908, 0.38974908, 0.39468265, 0.39468265,
0.39468265, 0.39468265, 0.39779984, 0.39779984, 0.39779984])}], 'minmod_hllc': [{'rho': array([0.99615448, 0.99615448, 0.99615448, 0.99615448, 0.99067376,
0.99067376, 0.99067376, 0.99067376, 0.98178812, 0.98178812,
0.98178812, 0.98178812, 0.96631722, 0.96631722, 0.96631722,
0.96631722, 0.94200777, 0.94200777, 0.94200777, 0.94200777,
0.90673392, 0.90673392, 0.90673392, 0.90673392, 0.85947908,
0.85947908, 0.85947908, 0.85947908, 0.80074229, 0.80074229,
0.80074229, 0.80074229, 0.73273792, 0.73273792, 0.73273792,
0.73273792, 0.65910051, 0.65910051, 0.65910051, 0.65910051,
0.58453712, 0.58453712, 0.58453712, 0.58453712, 0.51341489,
0.51341489, 0.51341489, 0.51341489, 0.44678137, 0.44678137,
0.44678137, 0.44678137, 0.38526945, 0.38526945, 0.38526945,
0.38526945, 0.32938852, 0.32938852, 0.32938852, 0.32938852,
0.27948578, 0.27948578, 0.27948578, 0.27948578, 0.23567556,
0.23567556, 0.23567556, 0.23567556, 0.19783362, 0.19783362,
0.19783362, 0.19783362, 0.16563022, 0.16563022, 0.16563022,
0.16563022, 0.13852619, 0.13852619, 0.13852619, 0.13852619,
0.11591599, 0.11591599, 0.11591599, 0.11591599, 0.09720849,
0.09720849, 0.09720849, 0.09720849, 0.08184086, 0.08184086,
0.08184086, 0.08184086, 0.06929484, 0.06929484, 0.06929484,
0.06929484, 0.05915203, 0.05915203, 0.05915203, 0.05915203,
0.05103646, 0.05103646, 0.05103646, 0.05103646, 0.04464094,
0.04464094, 0.04464094, 0.04464094, 0.03968772, 0.03968772,
0.03968772, 0.03968772, 0.03610206, 0.03610206, 0.03610206,
0.03610206, 0.03336904, 0.03336904, 0.03336904, 0.03336904,
0.03198975, 0.03198975, 0.03198975, 0.03198975, 0.03106627,
0.03106627, 0.03106627, 0.03106627, 0.03106627, 0.03106627,
0.03106627, 0.03106627, 0.03198975, 0.03198975, 0.03198975,
0.03198975, 0.03336904, 0.03336904, 0.03336904, 0.03336904,
0.03610206, 0.03610206, 0.03610206, 0.03610206, 0.03968772,
0.03968772, 0.03968772, 0.03968772, 0.04464094, 0.04464094,
0.04464094, 0.04464094, 0.05103646, 0.05103646, 0.05103646,
0.05103646, 0.05915203, 0.05915203, 0.05915203, 0.05915203,
0.06929484, 0.06929484, 0.06929484, 0.06929484, 0.08184086,
0.08184086, 0.08184086, 0.08184086, 0.09720849, 0.09720849,
0.09720849, 0.09720849, 0.11591599, 0.11591599, 0.11591599,
0.11591599, 0.13852619, 0.13852619, 0.13852619, 0.13852619,
0.16563022, 0.16563022, 0.16563022, 0.16563022, 0.19783362,
0.19783362, 0.19783362, 0.19783362, 0.23567556, 0.23567556,
0.23567556, 0.23567556, 0.27948578, 0.27948578, 0.27948578,
0.27948578, 0.32938852, 0.32938852, 0.32938852, 0.32938852,
0.38526945, 0.38526945, 0.38526945, 0.38526945, 0.44678137,
0.44678137, 0.44678137, 0.44678137, 0.51341489, 0.51341489,
0.51341489, 0.51341489, 0.58453712, 0.58453712, 0.58453712,
0.58453712, 0.65910051, 0.65910051, 0.65910051, 0.65910051,
0.73273792, 0.73273792, 0.73273792, 0.73273792, 0.80074229,
0.80074229, 0.80074229, 0.80074229, 0.85947908, 0.85947908,
0.85947908, 0.85947908, 0.90673392, 0.90673392, 0.90673392,
0.90673392, 0.94200777, 0.94200777, 0.94200777, 0.94200777,
0.96631722, 0.96631722, 0.96631722, 0.96631722, 0.98178812,
0.98178812, 0.98178812, 0.98178812, 0.99067376, 0.99067376,
0.99067376, 0.99067376, 0.99615448, 0.99615448, 0.99615448]), 'vx': array([-1.9971243 , -1.9971243 , -1.9971243 , -1.9971243 , -1.99301667,
-1.99301667, -1.99301667, -1.99301667, -1.98633771, -1.98633771,
-1.98633771, -1.98633771, -1.97462189, -1.97462189, -1.97462189,
-1.97462189, -1.95596274, -1.95596274, -1.95596274, -1.95596274,
-1.9282702 , -1.9282702 , -1.9282702 , -1.9282702 , -1.88986881,
-1.88986881, -1.88986881, -1.88986881, -1.83968895, -1.83968895,
-1.83968895, -1.83968895, -1.77729068, -1.77729068, -1.77729068,
-1.77729068, -1.70408962, -1.70408962, -1.70408962, -1.70408962,
-1.62490657, -1.62490657, -1.62490657, -1.62490657, -1.54288253,
-1.54288253, -1.54288253, -1.54288253, -1.45929744, -1.45929744,
-1.45929744, -1.45929744, -1.37460301, -1.37460301, -1.37460301,
-1.37460301, -1.28898371, -1.28898371, -1.28898371, -1.28898371,
-1.20255159, -1.20255159, -1.20255159, -1.20255159, -1.11547576,
-1.11547576, -1.11547576, -1.11547576, -1.02801532, -1.02801532,
-1.02801532, -1.02801532, -0.94055911, -0.94055911, -0.94055911,
-0.94055911, -0.85344532, -0.85344532, -0.85344532, -0.85344532,
-0.76692431, -0.76692431, -0.76692431, -0.76692431, -0.68132058,
-0.68132058, -0.68132058, -0.68132058, -0.59708218, -0.59708218,
-0.59708218, -0.59708218, -0.51482203, -0.51482203, -0.51482203,
-0.51482203, -0.43501962, -0.43501962, -0.43501962, -0.43501962,
-0.35845092, -0.35845092, -0.35845092, -0.35845092, -0.28602542,
-0.28602542, -0.28602542, -0.28602542, -0.21921856, -0.21921856,
-0.21921856, -0.21921856, -0.15742456, -0.15742456, -0.15742456,
-0.15742456, -0.10710953, -0.10710953, -0.10710953, -0.10710953,
-0.05755075, -0.05755075, -0.05755075, -0.05755075, -0.02124077,
-0.02124077, -0.02124077, -0.02124077, 0.02124077, 0.02124077,
0.02124077, 0.02124077, 0.05755075, 0.05755075, 0.05755075,
0.05755075, 0.10710953, 0.10710953, 0.10710953, 0.10710953,
0.15742456, 0.15742456, 0.15742456, 0.15742456, 0.21921856,
0.21921856, 0.21921856, 0.21921856, 0.28602542, 0.28602542,
0.28602542, 0.28602542, 0.35845092, 0.35845092, 0.35845092,
0.35845092, 0.43501962, 0.43501962, 0.43501962, 0.43501962,
0.51482203, 0.51482203, 0.51482203, 0.51482203, 0.59708218,
0.59708218, 0.59708218, 0.59708218, 0.68132058, 0.68132058,
0.68132058, 0.68132058, 0.76692431, 0.76692431, 0.76692431,
0.76692431, 0.85344532, 0.85344532, 0.85344532, 0.85344532,
0.94055911, 0.94055911, 0.94055911, 0.94055911, 1.02801532,
1.02801532, 1.02801532, 1.02801532, 1.11547576, 1.11547576,
1.11547576, 1.11547576, 1.20255159, 1.20255159, 1.20255159,
1.20255159, 1.28898371, 1.28898371, 1.28898371, 1.28898371,
1.37460301, 1.37460301, 1.37460301, 1.37460301, 1.45929744,
1.45929744, 1.45929744, 1.45929744, 1.54288253, 1.54288253,
1.54288253, 1.54288253, 1.62490657, 1.62490657, 1.62490657,
1.62490657, 1.70408962, 1.70408962, 1.70408962, 1.70408962,
1.77729068, 1.77729068, 1.77729068, 1.77729068, 1.83968895,
1.83968895, 1.83968895, 1.83968895, 1.88986881, 1.88986881,
1.88986881, 1.88986881, 1.9282702 , 1.9282702 , 1.9282702 ,
1.9282702 , 1.95596274, 1.95596274, 1.95596274, 1.95596274,
1.97462189, 1.97462189, 1.97462189, 1.97462189, 1.98633771,
1.98633771, 1.98633771, 1.98633771, 1.99301667, 1.99301667,
1.99301667, 1.99301667, 1.9971243 , 1.9971243 , 1.9971243 ]), 'P': array([0.39785335, 0.39785335, 0.39785335, 0.39785335, 0.39480468,
0.39480468, 0.39480468, 0.39480468, 0.38989202, 0.38989202,
0.38989202, 0.38989202, 0.38140375, 0.38140375, 0.38140375,
0.38140375, 0.36821799, 0.36821799, 0.36821799, 0.36821799,
0.34937986, 0.34937986, 0.34937986, 0.34937986, 0.32464373,
0.32464373, 0.32464373, 0.32464373, 0.29461246, 0.29461246,
0.29461246, 0.29461246, 0.26049006, 0.26049006, 0.26049006,
0.26049006, 0.22426407, 0.22426407, 0.22426407, 0.22426407,
0.19032737, 0.19032737, 0.19032737, 0.19032737, 0.16017926,
0.16017926, 0.16017926, 0.16017926, 0.13398511, 0.13398511,
0.13398511, 0.13398511, 0.11152626, 0.11152626, 0.11152626,
0.11152626, 0.09246986, 0.09246986, 0.09246986, 0.09246986,
0.07645237, 0.07645237, 0.07645237, 0.07645237, 0.06310898,
0.06310898, 0.06310898, 0.06310898, 0.05208913, 0.05208913,
0.05208913, 0.05208913, 0.04306339, 0.04306339, 0.04306339,
0.04306339, 0.03570472, 0.03570472, 0.03570472, 0.03570472,
0.02972125, 0.02972125, 0.02972125, 0.02972125, 0.02486829,
0.02486829, 0.02486829, 0.02486829, 0.02093881, 0.02093881,
0.02093881, 0.02093881, 0.01775854, 0.01775854, 0.01775854,
0.01775854, 0.0151983 , 0.0151983 , 0.0151983 , 0.0151983 ,
0.01314835, 0.01314835, 0.01314835, 0.01314835, 0.01152438,
0.01152438, 0.01152438, 0.01152438, 0.01025172, 0.01025172,
0.01025172, 0.01025172, 0.00932748, 0.00932748, 0.00932748,
0.00932748, 0.00858716, 0.00858716, 0.00858716, 0.00858716,
0.00823426, 0.00823426, 0.00823426, 0.00823426, 0.00795945,
0.00795945, 0.00795945, 0.00795945, 0.00795945, 0.00795945,
0.00795945, 0.00795945, 0.00823426, 0.00823426, 0.00823426,
0.00823426, 0.00858716, 0.00858716, 0.00858716, 0.00858716,
0.00932748, 0.00932748, 0.00932748, 0.00932748, 0.01025172,
0.01025172, 0.01025172, 0.01025172, 0.01152438, 0.01152438,
0.01152438, 0.01152438, 0.01314835, 0.01314835, 0.01314835,
0.01314835, 0.0151983 , 0.0151983 , 0.0151983 , 0.0151983 ,
0.01775854, 0.01775854, 0.01775854, 0.01775854, 0.02093881,
0.02093881, 0.02093881, 0.02093881, 0.02486829, 0.02486829,
0.02486829, 0.02486829, 0.02972125, 0.02972125, 0.02972125,
0.02972125, 0.03570472, 0.03570472, 0.03570472, 0.03570472,
0.04306339, 0.04306339, 0.04306339, 0.04306339, 0.05208913,
0.05208913, 0.05208913, 0.05208913, 0.06310898, 0.06310898,
0.06310898, 0.06310898, 0.07645237, 0.07645237, 0.07645237,
0.07645237, 0.09246986, 0.09246986, 0.09246986, 0.09246986,
0.11152626, 0.11152626, 0.11152626, 0.11152626, 0.13398511,
0.13398511, 0.13398511, 0.13398511, 0.16017926, 0.16017926,
0.16017926, 0.16017926, 0.19032737, 0.19032737, 0.19032737,
0.19032737, 0.22426407, 0.22426407, 0.22426407, 0.22426407,
0.26049006, 0.26049006, 0.26049006, 0.26049006, 0.29461246,
0.29461246, 0.29461246, 0.29461246, 0.32464373, 0.32464373,
0.32464373, 0.32464373, 0.34937986, 0.34937986, 0.34937986,
0.34937986, 0.36821799, 0.36821799, 0.36821799, 0.36821799,
0.38140375, 0.38140375, 0.38140375, 0.38140375, 0.38989202,
0.38989202, 0.38989202, 0.38989202, 0.39480468, 0.39480468,
0.39480468, 0.39480468, 0.39785335, 0.39785335, 0.39785335])}]}
minmod_rusanov
{'none_hll': [{'rho': array([0.96419618, 0.96419618, 0.96419618, 0.96419618, 0.94856345,
0.94856345, 0.94856345, 0.94856345, 0.92846989, 0.92846989,
0.92846989, 0.92846989, 0.90350094, 0.90350094, 0.90350094,
0.90350094, 0.87342902, 0.87342902, 0.87342902, 0.87342902,
0.83824081, 0.83824081, 0.83824081, 0.83824081, 0.79814653,
0.79814653, 0.79814653, 0.79814653, 0.75357317, 0.75357317,
0.75357317, 0.75357317, 0.70514458, 0.70514458, 0.70514458,
0.70514458, 0.65365111, 0.65365111, 0.65365111, 0.65365111,
0.60001104, 0.60001104, 0.60001104, 0.60001104, 0.54522543,
0.54522543, 0.54522543, 0.54522543, 0.49032848, 0.49032848,
0.49032848, 0.49032848, 0.43633611, 0.43633611, 0.43633611,
0.43633611, 0.38419602, 0.38419602, 0.38419602, 0.38419602,
0.33474317, 0.33474317, 0.33474317, 0.33474317, 0.28866399,
0.28866399, 0.28866399, 0.28866399, 0.24647248, 0.24647248,
0.24647248, 0.24647248, 0.20849936, 0.20849936, 0.20849936,
0.20849936, 0.17489435, 0.17489435, 0.17489435, 0.17489435,
0.14563973, 0.14563973, 0.14563973, 0.14563973, 0.12057143,
0.12057143, 0.12057143, 0.12057143, 0.09940075, 0.09940075,
0.09940075, 0.09940075, 0.08171926, 0.08171926, 0.08171926,
0.08171926, 0.06719973, 0.06719973, 0.06719973, 0.06719973,
0.05580633, 0.05580633, 0.05580633, 0.05580633, 0.04708329,
0.04708329, 0.04708329, 0.04708329, 0.04053564, 0.04053564,
0.04053564, 0.04053564, 0.03574567, 0.03574567, 0.03574567,
0.03574567, 0.03245842, 0.03245842, 0.03245842, 0.03245842,
0.03045782, 0.03045782, 0.03045782, 0.03045782, 0.02952462,
0.02952462, 0.02952462, 0.02952462, 0.02952462, 0.02952462,
0.02952462, 0.02952462, 0.03045782, 0.03045782, 0.03045782,
0.03045782, 0.03245842, 0.03245842, 0.03245842, 0.03245842,
0.03574567, 0.03574567, 0.03574567, 0.03574567, 0.04053564,
0.04053564, 0.04053564, 0.04053564, 0.04708329, 0.04708329,
0.04708329, 0.04708329, 0.05580633, 0.05580633, 0.05580633,
0.05580633, 0.06719973, 0.06719973, 0.06719973, 0.06719973,
0.08171926, 0.08171926, 0.08171926, 0.08171926, 0.09940075,
0.09940075, 0.09940075, 0.09940075, 0.12057143, 0.12057143,
0.12057143, 0.12057143, 0.14563973, 0.14563973, 0.14563973,
0.14563973, 0.17489435, 0.17489435, 0.17489435, 0.17489435,
0.20849936, 0.20849936, 0.20849936, 0.20849936, 0.24647248,
0.24647248, 0.24647248, 0.24647248, 0.28866399, 0.28866399,
0.28866399, 0.28866399, 0.33474317, 0.33474317, 0.33474317,
0.33474317, 0.38419602, 0.38419602, 0.38419602, 0.38419602,
0.43633611, 0.43633611, 0.43633611, 0.43633611, 0.49032848,
0.49032848, 0.49032848, 0.49032848, 0.54522543, 0.54522543,
0.54522543, 0.54522543, 0.60001104, 0.60001104, 0.60001104,
0.60001104, 0.65365111, 0.65365111, 0.65365111, 0.65365111,
0.70514458, 0.70514458, 0.70514458, 0.70514458, 0.75357317,
0.75357317, 0.75357317, 0.75357317, 0.79814653, 0.79814653,
0.79814653, 0.79814653, 0.83824081, 0.83824081, 0.83824081,
0.83824081, 0.87342902, 0.87342902, 0.87342902, 0.87342902,
0.90350094, 0.90350094, 0.90350094, 0.90350094, 0.92846989,
0.92846989, 0.92846989, 0.92846989, 0.94856345, 0.94856345,
0.94856345, 0.94856345, 0.96419618, 0.96419618, 0.96419618]), 'vx': array([-1.9735162 , -1.9735162 , -1.9735162 , -1.9735162 , -1.96198617,
-1.96198617, -1.96198617, -1.96198617, -1.94713741, -1.94713741,
-1.94713741, -1.94713741, -1.9286006 , -1.9286006 , -1.9286006 ,
-1.9286006 , -1.90609316, -1.90609316, -1.90609316, -1.90609316,
-1.87942368, -1.87942368, -1.87942368, -1.87942368, -1.84848554,
-1.84848554, -1.84848554, -1.84848554, -1.81324337, -1.81324337,
-1.81324337, -1.81324337, -1.77371591, -1.77371591, -1.77371591,
-1.77371591, -1.72995886, -1.72995886, -1.72995886, -1.72995886,
-1.68204971, -1.68204971, -1.68204971, -1.68204971, -1.63007606,
-1.63007606, -1.63007606, -1.63007606, -1.57412791, -1.57412791,
-1.57412791, -1.57412791, -1.51429382, -1.51429382, -1.51429382,
-1.51429382, -1.45066104, -1.45066104, -1.45066104, -1.45066104,
-1.38331937, -1.38331937, -1.38331937, -1.38331937, -1.31236896,
-1.31236896, -1.31236896, -1.31236896, -1.23793269, -1.23793269,
-1.23793269, -1.23793269, -1.16017364, -1.16017364, -1.16017364,
-1.16017364, -1.0793189 , -1.0793189 , -1.0793189 , -1.0793189 ,
-0.99569027, -0.99569027, -0.99569027, -0.99569027, -0.90974126,
-0.90974126, -0.90974126, -0.90974126, -0.82209689, -0.82209689,
-0.82209689, -0.82209689, -0.73357782, -0.73357782, -0.73357782,
-0.73357782, -0.64515024, -0.64515024, -0.64515024, -0.64515024,
-0.55811153, -0.55811153, -0.55811153, -0.55811153, -0.47333577,
-0.47333577, -0.47333577, -0.47333577, -0.39110478, -0.39110478,
-0.39110478, -0.39110478, -0.31048349, -0.31048349, -0.31048349,
-0.31048349, -0.22788052, -0.22788052, -0.22788052, -0.22788052,
-0.14005389, -0.14005389, -0.14005389, -0.14005389, -0.04732024,
-0.04732024, -0.04732024, -0.04732024, 0.04732024, 0.04732024,
0.04732024, 0.04732024, 0.14005389, 0.14005389, 0.14005389,
0.14005389, 0.22788052, 0.22788052, 0.22788052, 0.22788052,
0.31048349, 0.31048349, 0.31048349, 0.31048349, 0.39110478,
0.39110478, 0.39110478, 0.39110478, 0.47333577, 0.47333577,
0.47333577, 0.47333577, 0.55811153, 0.55811153, 0.55811153,
0.55811153, 0.64515024, 0.64515024, 0.64515024, 0.64515024,
0.73357782, 0.73357782, 0.73357782, 0.73357782, 0.82209689,
0.82209689, 0.82209689, 0.82209689, 0.90974126, 0.90974126,
0.90974126, 0.90974126, 0.99569027, 0.99569027, 0.99569027,
0.99569027, 1.0793189 , 1.0793189 , 1.0793189 , 1.0793189 ,
1.16017364, 1.16017364, 1.16017364, 1.16017364, 1.23793269,
1.23793269, 1.23793269, 1.23793269, 1.31236896, 1.31236896,
1.31236896, 1.31236896, 1.38331937, 1.38331937, 1.38331937,
1.38331937, 1.45066104, 1.45066104, 1.45066104, 1.45066104,
1.51429382, 1.51429382, 1.51429382, 1.51429382, 1.57412791,
1.57412791, 1.57412791, 1.57412791, 1.63007606, 1.63007606,
1.63007606, 1.63007606, 1.68204971, 1.68204971, 1.68204971,
1.68204971, 1.72995886, 1.72995886, 1.72995886, 1.72995886,
1.77371591, 1.77371591, 1.77371591, 1.77371591, 1.81324337,
1.81324337, 1.81324337, 1.81324337, 1.84848554, 1.84848554,
1.84848554, 1.84848554, 1.87942368, 1.87942368, 1.87942368,
1.87942368, 1.90609316, 1.90609316, 1.90609316, 1.90609316,
1.9286006 , 1.9286006 , 1.9286006 , 1.9286006 , 1.94713741,
1.94713741, 1.94713741, 1.94713741, 1.96198617, 1.96198617,
1.96198617, 1.96198617, 1.9735162 , 1.9735162 , 1.9735162 ]), 'P': array([0.38054351, 0.38054351, 0.38054351, 0.38054351, 0.37230539,
0.37230539, 0.37230539, 0.37230539, 0.36190457, 0.36190457,
0.36190457, 0.36190457, 0.34924812, 0.34924812, 0.34924812,
0.34924812, 0.33436459, 0.33436459, 0.33436459, 0.33436459,
0.31740499, 0.31740499, 0.31740499, 0.31740499, 0.29862981,
0.29862981, 0.29862981, 0.29862981, 0.27838616, 0.27838616,
0.27838616, 0.27838616, 0.25707978, 0.25707978, 0.25707978,
0.25707978, 0.23514605, 0.23514605, 0.23514605, 0.23514605,
0.21302338, 0.21302338, 0.21302338, 0.21302338, 0.19113058,
0.19113058, 0.19113058, 0.19113058, 0.169849 , 0.169849 ,
0.169849 , 0.169849 , 0.14950942, 0.14950942, 0.14950942,
0.14950942, 0.13038346, 0.13038346, 0.13038346, 0.13038346,
0.11267901, 0.11267901, 0.11267901, 0.11267901, 0.09653925,
0.09653925, 0.09653925, 0.09653925, 0.0820449 , 0.0820449 ,
0.0820449 , 0.0820449 , 0.06921912, 0.06921912, 0.06921912,
0.06921912, 0.05803452, 0.05803452, 0.05803452, 0.05803452,
0.04842177, 0.04842177, 0.04842177, 0.04842177, 0.04027886,
0.04027886, 0.04027886, 0.04027886, 0.03348044, 0.03348044,
0.03348044, 0.03348044, 0.02788644, 0.02788644, 0.02788644,
0.02788644, 0.02336489, 0.02336489, 0.02336489, 0.02336489,
0.01978647, 0.01978647, 0.01978647, 0.01978647, 0.01698927,
0.01698927, 0.01698927, 0.01698927, 0.0148221 , 0.0148221 ,
0.0148221 , 0.0148221 , 0.01317229, 0.01317229, 0.01317229,
0.01317229, 0.01200219, 0.01200219, 0.01200219, 0.01200219,
0.01127833, 0.01127833, 0.01127833, 0.01127833, 0.010939 ,
0.010939 , 0.010939 , 0.010939 , 0.010939 , 0.010939 ,
0.010939 , 0.010939 , 0.01127833, 0.01127833, 0.01127833,
0.01127833, 0.01200219, 0.01200219, 0.01200219, 0.01200219,
0.01317229, 0.01317229, 0.01317229, 0.01317229, 0.0148221 ,
0.0148221 , 0.0148221 , 0.0148221 , 0.01698927, 0.01698927,
0.01698927, 0.01698927, 0.01978647, 0.01978647, 0.01978647,
0.01978647, 0.02336489, 0.02336489, 0.02336489, 0.02336489,
0.02788644, 0.02788644, 0.02788644, 0.02788644, 0.03348044,
0.03348044, 0.03348044, 0.03348044, 0.04027886, 0.04027886,
0.04027886, 0.04027886, 0.04842177, 0.04842177, 0.04842177,
0.04842177, 0.05803452, 0.05803452, 0.05803452, 0.05803452,
0.06921912, 0.06921912, 0.06921912, 0.06921912, 0.0820449 ,
0.0820449 , 0.0820449 , 0.0820449 , 0.09653925, 0.09653925,
0.09653925, 0.09653925, 0.11267901, 0.11267901, 0.11267901,
0.11267901, 0.13038346, 0.13038346, 0.13038346, 0.13038346,
0.14950942, 0.14950942, 0.14950942, 0.14950942, 0.169849 ,
0.169849 , 0.169849 , 0.169849 , 0.19113058, 0.19113058,
0.19113058, 0.19113058, 0.21302338, 0.21302338, 0.21302338,
0.21302338, 0.23514605, 0.23514605, 0.23514605, 0.23514605,
0.25707978, 0.25707978, 0.25707978, 0.25707978, 0.27838616,
0.27838616, 0.27838616, 0.27838616, 0.29862981, 0.29862981,
0.29862981, 0.29862981, 0.31740499, 0.31740499, 0.31740499,
0.31740499, 0.33436459, 0.33436459, 0.33436459, 0.33436459,
0.34924812, 0.34924812, 0.34924812, 0.34924812, 0.36190457,
0.36190457, 0.36190457, 0.36190457, 0.37230539, 0.37230539,
0.37230539, 0.37230539, 0.38054351, 0.38054351, 0.38054351])}], 'minmod_rusanov': [{'rho': array([0.99614735, 0.99614735, 0.99614735, 0.99614735, 0.99065373,
0.99065373, 0.99065373, 0.99065373, 0.98173362, 0.98173362,
0.98173362, 0.98173362, 0.96619952, 0.96619952, 0.96619952,
0.96619952, 0.94178474, 0.94178474, 0.94178474, 0.94178474,
0.90636121, 0.90636121, 0.90636121, 0.90636121, 0.85892578,
0.85892578, 0.85892578, 0.85892578, 0.80000719, 0.80000719,
0.80000719, 0.80000719, 0.73175814, 0.73175814, 0.73175814,
0.73175814, 0.65735851, 0.65735851, 0.65735851, 0.65735851,
0.5814799 , 0.5814799 , 0.5814799 , 0.5814799 , 0.50913244,
0.50913244, 0.50913244, 0.50913244, 0.44187546, 0.44187546,
0.44187546, 0.44187546, 0.38043377, 0.38043377, 0.38043377,
0.38043377, 0.32522717, 0.32522717, 0.32522717, 0.32522717,
0.27639962, 0.27639962, 0.27639962, 0.27639962, 0.23384215,
0.23384215, 0.23384215, 0.23384215, 0.19724397, 0.19724397,
0.19724397, 0.19724397, 0.16613532, 0.16613532, 0.16613532,
0.16613532, 0.13991202, 0.13991202, 0.13991202, 0.13991202,
0.11795793, 0.11795793, 0.11795793, 0.11795793, 0.09969251,
0.09969251, 0.09969251, 0.09969251, 0.08458559, 0.08458559,
0.08458559, 0.08458559, 0.07216739, 0.07216739, 0.07216739,
0.07216739, 0.0620324 , 0.0620324 , 0.0620324 , 0.0620324 ,
0.05383949, 0.05383949, 0.05383949, 0.05383949, 0.0473094 ,
0.0473094 , 0.0473094 , 0.0473094 , 0.04222005, 0.04222005,
0.04222005, 0.04222005, 0.03839914, 0.03839914, 0.03839914,
0.03839914, 0.03571046, 0.03571046, 0.03571046, 0.03571046,
0.03401323, 0.03401323, 0.03401323, 0.03401323, 0.03304548,
0.03304548, 0.03304548, 0.03304548, 0.03304548, 0.03304548,
0.03304548, 0.03304548, 0.03401323, 0.03401323, 0.03401323,
0.03401323, 0.03571046, 0.03571046, 0.03571046, 0.03571046,
0.03839914, 0.03839914, 0.03839914, 0.03839914, 0.04222005,
0.04222005, 0.04222005, 0.04222005, 0.0473094 , 0.0473094 ,
0.0473094 , 0.0473094 , 0.05383949, 0.05383949, 0.05383949,
0.05383949, 0.0620324 , 0.0620324 , 0.0620324 , 0.0620324 ,
0.07216739, 0.07216739, 0.07216739, 0.07216739, 0.08458559,
0.08458559, 0.08458559, 0.08458559, 0.09969251, 0.09969251,
0.09969251, 0.09969251, 0.11795793, 0.11795793, 0.11795793,
0.11795793, 0.13991202, 0.13991202, 0.13991202, 0.13991202,
0.16613532, 0.16613532, 0.16613532, 0.16613532, 0.19724397,
0.19724397, 0.19724397, 0.19724397, 0.23384215, 0.23384215,
0.23384215, 0.23384215, 0.27639962, 0.27639962, 0.27639962,
0.27639962, 0.32522717, 0.32522717, 0.32522717, 0.32522717,
0.38043377, 0.38043377, 0.38043377, 0.38043377, 0.44187546,
0.44187546, 0.44187546, 0.44187546, 0.50913244, 0.50913244,
0.50913244, 0.50913244, 0.5814799 , 0.5814799 , 0.5814799 ,
0.5814799 , 0.65735851, 0.65735851, 0.65735851, 0.65735851,
0.73175814, 0.73175814, 0.73175814, 0.73175814, 0.80000719,
0.80000719, 0.80000719, 0.80000719, 0.85892578, 0.85892578,
0.85892578, 0.85892578, 0.90636121, 0.90636121, 0.90636121,
0.90636121, 0.94178474, 0.94178474, 0.94178474, 0.94178474,
0.96619952, 0.96619952, 0.96619952, 0.96619952, 0.98173362,
0.98173362, 0.98173362, 0.98173362, 0.99065373, 0.99065373,
0.99065373, 0.99065373, 0.99614735, 0.99614735, 0.99614735]), 'vx': array([-1.99712524, -1.99712524, -1.99712524, -1.99712524, -1.99301683,
-1.99301683, -1.99301683, -1.99301683, -1.98632983, -1.98632983,
-1.98632983, -1.98632983, -1.97459054, -1.97459054, -1.97459054,
-1.97459054, -1.95587489, -1.95587489, -1.95587489, -1.95587489,
-1.92806642, -1.92806642, -1.92806642, -1.92806642, -1.88945774,
-1.88945774, -1.88945774, -1.88945774, -1.83896574, -1.83896574,
-1.83896574, -1.83896574, -1.77629984, -1.77629984, -1.77629984,
-1.77629984, -1.70309876, -1.70309876, -1.70309876, -1.70309876,
-1.62432934, -1.62432934, -1.62432934, -1.62432934, -1.54277563,
-1.54277563, -1.54277563, -1.54277563, -1.45961365, -1.45961365,
-1.45961365, -1.45961365, -1.37537434, -1.37537434, -1.37537434,
-1.37537434, -1.29033379, -1.29033379, -1.29033379, -1.29033379,
-1.20468271, -1.20468271, -1.20468271, -1.20468271, -1.11859992,
-1.11859992, -1.11859992, -1.11859992, -1.03225286, -1.03225286,
-1.03225286, -1.03225286, -0.9459788 , -0.9459788 , -0.9459788 ,
-0.9459788 , -0.86003378, -0.86003378, -0.86003378, -0.86003378,
-0.77463461, -0.77463461, -0.77463461, -0.77463461, -0.69004628,
-0.69004628, -0.69004628, -0.69004628, -0.60660948, -0.60660948,
-0.60660948, -0.60660948, -0.52476896, -0.52476896, -0.52476896,
-0.52476896, -0.44510912, -0.44510912, -0.44510912, -0.44510912,
-0.3683858 , -0.3683858 , -0.3683858 , -0.3683858 , -0.29553659,
-0.29553659, -0.29553659, -0.29553659, -0.22763465, -0.22763465,
-0.22763465, -0.22763465, -0.16573019, -0.16573019, -0.16573019,
-0.16573019, -0.11056275, -0.11056275, -0.11056275, -0.11056275,
-0.06251183, -0.06251183, -0.06251183, -0.06251183, -0.02297991,
-0.02297991, -0.02297991, -0.02297991, 0.02297991, 0.02297991,
0.02297991, 0.02297991, 0.06251183, 0.06251183, 0.06251183,
0.06251183, 0.11056275, 0.11056275, 0.11056275, 0.11056275,
0.16573019, 0.16573019, 0.16573019, 0.16573019, 0.22763465,
0.22763465, 0.22763465, 0.22763465, 0.29553659, 0.29553659,
0.29553659, 0.29553659, 0.3683858 , 0.3683858 , 0.3683858 ,
0.3683858 , 0.44510912, 0.44510912, 0.44510912, 0.44510912,
0.52476896, 0.52476896, 0.52476896, 0.52476896, 0.60660948,
0.60660948, 0.60660948, 0.60660948, 0.69004628, 0.69004628,
0.69004628, 0.69004628, 0.77463461, 0.77463461, 0.77463461,
0.77463461, 0.86003378, 0.86003378, 0.86003378, 0.86003378,
0.9459788 , 0.9459788 , 0.9459788 , 0.9459788 , 1.03225286,
1.03225286, 1.03225286, 1.03225286, 1.11859992, 1.11859992,
1.11859992, 1.11859992, 1.20468271, 1.20468271, 1.20468271,
1.20468271, 1.29033379, 1.29033379, 1.29033379, 1.29033379,
1.37537434, 1.37537434, 1.37537434, 1.37537434, 1.45961365,
1.45961365, 1.45961365, 1.45961365, 1.54277563, 1.54277563,
1.54277563, 1.54277563, 1.62432934, 1.62432934, 1.62432934,
1.62432934, 1.70309876, 1.70309876, 1.70309876, 1.70309876,
1.77629984, 1.77629984, 1.77629984, 1.77629984, 1.83896574,
1.83896574, 1.83896574, 1.83896574, 1.88945774, 1.88945774,
1.88945774, 1.88945774, 1.92806642, 1.92806642, 1.92806642,
1.92806642, 1.95587489, 1.95587489, 1.95587489, 1.95587489,
1.97459054, 1.97459054, 1.97459054, 1.97459054, 1.98632983,
1.98632983, 1.98632983, 1.98632983, 1.99301683, 1.99301683,
1.99301683, 1.99301683, 1.99712524, 1.99712524, 1.99712524]), 'P': array([0.39785562, 0.39785562, 0.39785562, 0.39785562, 0.39481056,
0.39481056, 0.39481056, 0.39481056, 0.38990389, 0.38990389,
0.38990389, 0.38990389, 0.38143134, 0.38143134, 0.38143134,
0.38143134, 0.36827824, 0.36827824, 0.36827824, 0.36827824,
0.34950039, 0.34950039, 0.34950039, 0.34950039, 0.32485552,
0.32485552, 0.32485552, 0.32485552, 0.29492305, 0.29492305,
0.29492305, 0.29492305, 0.26078134, 0.26078134, 0.26078134,
0.26078134, 0.22425273, 0.22425273, 0.22425273, 0.22425273,
0.19008214, 0.19008214, 0.19008214, 0.19008214, 0.16000639,
0.16000639, 0.16000639, 0.16000639, 0.13399062, 0.13399062,
0.13399062, 0.13399062, 0.11175209, 0.11175209, 0.11175209,
0.11175209, 0.09291845, 0.09291845, 0.09291845, 0.09291845,
0.07709678, 0.07709678, 0.07709678, 0.07709678, 0.0639034 ,
0.0639034 , 0.0639034 , 0.0639034 , 0.05297927, 0.05297927,
0.05297927, 0.05297927, 0.04399018, 0.04399018, 0.04399018,
0.04399018, 0.03661626, 0.03661626, 0.03661626, 0.03661626,
0.03058018, 0.03058018, 0.03058018, 0.03058018, 0.02564979,
0.02564979, 0.02564979, 0.02564979, 0.02163179, 0.02163179,
0.02163179, 0.02163179, 0.01836692, 0.01836692, 0.01836692,
0.01836692, 0.01572533, 0.01572533, 0.01572533, 0.01572533,
0.01360245, 0.01360245, 0.01360245, 0.01360245, 0.01191531,
0.01191531, 0.01191531, 0.01191531, 0.01059914, 0.01059914,
0.01059914, 0.01059914, 0.0096042 , 0.0096042 , 0.0096042 ,
0.0096042 , 0.00889221, 0.00889221, 0.00889221, 0.00889221,
0.00842594, 0.00842594, 0.00842594, 0.00842594, 0.00813478,
0.00813478, 0.00813478, 0.00813478, 0.00813478, 0.00813478,
0.00813478, 0.00813478, 0.00842594, 0.00842594, 0.00842594,
0.00842594, 0.00889221, 0.00889221, 0.00889221, 0.00889221,
0.0096042 , 0.0096042 , 0.0096042 , 0.0096042 , 0.01059914,
0.01059914, 0.01059914, 0.01059914, 0.01191531, 0.01191531,
0.01191531, 0.01191531, 0.01360245, 0.01360245, 0.01360245,
0.01360245, 0.01572533, 0.01572533, 0.01572533, 0.01572533,
0.01836692, 0.01836692, 0.01836692, 0.01836692, 0.02163179,
0.02163179, 0.02163179, 0.02163179, 0.02564979, 0.02564979,
0.02564979, 0.02564979, 0.03058018, 0.03058018, 0.03058018,
0.03058018, 0.03661626, 0.03661626, 0.03661626, 0.03661626,
0.04399018, 0.04399018, 0.04399018, 0.04399018, 0.05297927,
0.05297927, 0.05297927, 0.05297927, 0.0639034 , 0.0639034 ,
0.0639034 , 0.0639034 , 0.07709678, 0.07709678, 0.07709678,
0.07709678, 0.09291845, 0.09291845, 0.09291845, 0.09291845,
0.11175209, 0.11175209, 0.11175209, 0.11175209, 0.13399062,
0.13399062, 0.13399062, 0.13399062, 0.16000639, 0.16000639,
0.16000639, 0.16000639, 0.19008214, 0.19008214, 0.19008214,
0.19008214, 0.22425273, 0.22425273, 0.22425273, 0.22425273,
0.26078134, 0.26078134, 0.26078134, 0.26078134, 0.29492305,
0.29492305, 0.29492305, 0.29492305, 0.32485552, 0.32485552,
0.32485552, 0.32485552, 0.34950039, 0.34950039, 0.34950039,
0.34950039, 0.36827824, 0.36827824, 0.36827824, 0.36827824,
0.38143134, 0.38143134, 0.38143134, 0.38143134, 0.38990389,
0.38990389, 0.38990389, 0.38990389, 0.39481056, 0.39481056,
0.39481056, 0.39481056, 0.39785562, 0.39785562, 0.39785562])}], 'minmod_hll': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2.]), 'P': array([0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99839187, 0.99839187, 0.99839187, 0.99839187,
0.92194491, 0.92194491, 0.92194491, 0.92194491, 0.59966323,
0.59966323, 0.59966323, 0.59966323, 0.59966323, 0.59966323,
0.59966323, 0.59966323, 0.92194491, 0.92194491, 0.92194491,
0.92194491, 0.99839187, 0.99839187, 0.99839187, 0.99839187,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99942977, -1.99942977, -1.99942977, -1.99942977,
-1.97190163, -1.97190163, -1.97190163, -1.97190163, -1.54331037,
-1.54331037, -1.54331037, -1.54331037, 1.54331037, 1.54331037,
1.54331037, 1.54331037, 1.97190163, 1.97190163, 1.97190163,
1.97190163, 1.99942977, 1.99942977, 1.99942977, 1.99942977,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39967398, 0.39967398, 0.39967398, 0.39967398,
0.38830121, 0.38830121, 0.38830121, 0.38830121, 0.35833291,
0.35833291, 0.35833291, 0.35833291, 0.35833291, 0.35833291,
0.35833291, 0.35833291, 0.38830121, 0.38830121, 0.38830121,
0.38830121, 0.39967398, 0.39967398, 0.39967398, 0.39967398,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999879,
0.99999879, 0.99999879, 0.99999879, 0.99988772, 0.99988772,
0.99988772, 0.99988772, 0.99637366, 0.99637366, 0.99637366,
0.99637366, 0.95162962, 0.95162962, 0.95162962, 0.95162962,
0.69843543, 0.69843543, 0.69843543, 0.69843543, 0.39367478,
0.39367478, 0.39367478, 0.39367478, 0.39367478, 0.39367478,
0.39367478, 0.39367478, 0.69843543, 0.69843543, 0.69843543,
0.69843543, 0.95162962, 0.95162962, 0.95162962, 0.95162962,
0.99637366, 0.99637366, 0.99637366, 0.99637366, 0.99988772,
0.99988772, 0.99988772, 0.99988772, 0.99999879, 0.99999879,
0.99999879, 0.99999879, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999939,
-1.99999939, -1.99999939, -1.99999939, -1.99994887, -1.99994887,
-1.99994887, -1.99994887, -1.99849604, -1.99849604, -1.99849604,
-1.99849604, -1.98064237, -1.98064237, -1.98064237, -1.98064237,
-1.8608366 , -1.8608366 , -1.8608366 , -1.8608366 , -1.14986475,
-1.14986475, -1.14986475, -1.14986475, 1.14986475, 1.14986475,
1.14986475, 1.14986475, 1.8608366 , 1.8608366 , 1.8608366 ,
1.8608366 , 1.98064237, 1.98064237, 1.98064237, 1.98064237,
1.99849604, 1.99849604, 1.99849604, 1.99849604, 1.99994887,
1.99994887, 1.99994887, 1.99994887, 1.99999939, 1.99999939,
1.99999939, 1.99999939, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999955,
0.39999955, 0.39999955, 0.39999955, 0.39996321, 0.39996321,
0.39996321, 0.39996321, 0.39895944, 0.39895944, 0.39895944,
0.39895944, 0.38757572, 0.38757572, 0.38757572, 0.38757572,
0.3264824 , 0.3264824 , 0.3264824 , 0.3264824 , 0.25121455,
0.25121455, 0.25121455, 0.25121455, 0.25121455, 0.25121455,
0.25121455, 0.25121455, 0.3264824 , 0.3264824 , 0.3264824 ,
0.3264824 , 0.38757572, 0.38757572, 0.38757572, 0.38757572,
0.39895944, 0.39895944, 0.39895944, 0.39895944, 0.39996321,
0.39996321, 0.39996321, 0.39996321, 0.39999955, 0.39999955,
0.39999955, 0.39999955, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999985, 0.99999985, 0.99999985, 0.99999985,
0.9999922 , 0.9999922 , 0.9999922 , 0.9999922 , 0.99978709,
0.99978709, 0.99978709, 0.99978709, 0.99672413, 0.99672413,
0.99672413, 0.99672413, 0.97001852, 0.97001852, 0.97001852,
0.97001852, 0.83010116, 0.83010116, 0.83010116, 0.83010116,
0.48512429, 0.48512429, 0.48512429, 0.48512429, 0.27825278,
0.27825278, 0.27825278, 0.27825278, 0.27825278, 0.27825278,
0.27825278, 0.27825278, 0.48512429, 0.48512429, 0.48512429,
0.48512429, 0.83010116, 0.83010116, 0.83010116, 0.83010116,
0.97001852, 0.97001852, 0.97001852, 0.97001852, 0.99672413,
0.99672413, 0.99672413, 0.99672413, 0.99978709, 0.99978709,
0.99978709, 0.99978709, 0.9999922 , 0.9999922 , 0.9999922 ,
0.9999922 , 0.99999985, 0.99999985, 0.99999985, 0.99999985,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999991, -1.99999991, -1.99999991, -1.99999991,
-1.99999556, -1.99999556, -1.99999556, -1.99999556, -1.99988775,
-1.99988775, -1.99988775, -1.99988775, -1.99840276, -1.99840276,
-1.99840276, -1.99840276, -1.98627149, -1.98627149, -1.98627149,
-1.98627149, -1.92341327, -1.92341327, -1.92341327, -1.92341327,
-1.6864559 , -1.6864559 , -1.6864559 , -1.6864559 , -0.86349076,
-0.86349076, -0.86349076, -0.86349076, 0.86349076, 0.86349076,
0.86349076, 0.86349076, 1.6864559 , 1.6864559 , 1.6864559 ,
1.6864559 , 1.92341327, 1.92341327, 1.92341327, 1.92341327,
1.98627149, 1.98627149, 1.98627149, 1.98627149, 1.99840276,
1.99840276, 1.99840276, 1.99840276, 1.99988775, 1.99988775,
1.99988775, 1.99988775, 1.99999556, 1.99999556, 1.99999556,
1.99999556, 1.99999991, 1.99999991, 1.99999991, 1.99999991,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.3999967 , 0.3999967 , 0.3999967 , 0.3999967 , 0.39991705,
0.39991705, 0.39991705, 0.39991705, 0.39883435, 0.39883435,
0.39883435, 0.39883435, 0.39025049, 0.39025049, 0.39025049,
0.39025049, 0.34912384, 0.34912384, 0.34912384, 0.34912384,
0.24285654, 0.24285654, 0.24285654, 0.24285654, 0.16774659,
0.16774659, 0.16774659, 0.16774659, 0.16774659, 0.16774659,
0.16774659, 0.16774659, 0.24285654, 0.24285654, 0.24285654,
0.24285654, 0.34912384, 0.34912384, 0.34912384, 0.34912384,
0.39025049, 0.39025049, 0.39025049, 0.39025049, 0.39883435,
0.39883435, 0.39883435, 0.39883435, 0.39991705, 0.39991705,
0.39991705, 0.39991705, 0.3999967 , 0.3999967 , 0.3999967 ,
0.3999967 , 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999941, 0.99999941, 0.99999941,
0.99999941, 0.99998531, 0.99998531, 0.99998531, 0.99998531,
0.9997628 , 0.9997628 , 0.9997628 , 0.9997628 , 0.99741834,
0.99741834, 0.99741834, 0.99741834, 0.98069681, 0.98069681,
0.98069681, 0.98069681, 0.90049586, 0.90049586, 0.90049586,
0.90049586, 0.65085366, 0.65085366, 0.65085366, 0.65085366,
0.34226389, 0.34226389, 0.34226389, 0.34226389, 0.20852393,
0.20852393, 0.20852393, 0.20852393, 0.20852393, 0.20852393,
0.20852393, 0.20852393, 0.34226389, 0.34226389, 0.34226389,
0.34226389, 0.65085366, 0.65085366, 0.65085366, 0.65085366,
0.90049586, 0.90049586, 0.90049586, 0.90049586, 0.98069681,
0.98069681, 0.98069681, 0.98069681, 0.99741834, 0.99741834,
0.99741834, 0.99741834, 0.9997628 , 0.9997628 , 0.9997628 ,
0.9997628 , 0.99998531, 0.99998531, 0.99998531, 0.99998531,
0.99999941, 0.99999941, 0.99999941, 0.99999941, 0.99999999,
0.99999999, 0.99999999, 0.99999999, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999961, -1.99999961, -1.99999961,
-1.99999961, -1.99999088, -1.99999088, -1.99999088, -1.99999088,
-1.99986101, -1.99986101, -1.99986101, -1.99986101, -1.99858351,
-1.99858351, -1.99858351, -1.99858351, -1.99010498, -1.99010498,
-1.99010498, -1.99010498, -1.95122576, -1.95122576, -1.95122576,
-1.95122576, -1.82157719, -1.82157719, -1.82157719, -1.82157719,
-1.47982673, -1.47982673, -1.47982673, -1.47982673, -0.66403625,
-0.66403625, -0.66403625, -0.66403625, 0.66403625, 0.66403625,
0.66403625, 0.66403625, 1.47982673, 1.47982673, 1.47982673,
1.47982673, 1.82157719, 1.82157719, 1.82157719, 1.82157719,
1.95122576, 1.95122576, 1.95122576, 1.95122576, 1.99010498,
1.99010498, 1.99010498, 1.99010498, 1.99858351, 1.99858351,
1.99858351, 1.99858351, 1.99986101, 1.99986101, 1.99986101,
1.99986101, 1.99999088, 1.99999088, 1.99999088, 1.99999088,
1.99999961, 1.99999961, 1.99999961, 1.99999961, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999971, 0.39999971, 0.39999971,
0.39999971, 0.39999319, 0.39999319, 0.39999319, 0.39999319,
0.39989644, 0.39989644, 0.39989644, 0.39989644, 0.39894942,
0.39894942, 0.39894942, 0.39894942, 0.39274383, 0.39274383,
0.39274383, 0.39274383, 0.36543198, 0.36543198, 0.36543198,
0.36543198, 0.28497352, 0.28497352, 0.28497352, 0.28497352,
0.17296714, 0.17296714, 0.17296714, 0.17296714, 0.11464047,
0.11464047, 0.11464047, 0.11464047, 0.11464047, 0.11464047,
0.11464047, 0.11464047, 0.17296714, 0.17296714, 0.17296714,
0.17296714, 0.28497352, 0.28497352, 0.28497352, 0.28497352,
0.36543198, 0.36543198, 0.36543198, 0.36543198, 0.39274383,
0.39274383, 0.39274383, 0.39274383, 0.39894942, 0.39894942,
0.39894942, 0.39894942, 0.39989644, 0.39989644, 0.39989644,
0.39989644, 0.39999319, 0.39999319, 0.39999319, 0.39999319,
0.39999971, 0.39999971, 0.39999971, 0.39999971, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.99999887, 0.99999887,
0.99999887, 0.99999887, 0.9999814 , 0.9999814 , 0.9999814 ,
0.9999814 , 0.99977747, 0.99977747, 0.99977747, 0.99977747,
0.99804051, 0.99804051, 0.99804051, 0.99804051, 0.9872238 ,
0.9872238 , 0.9872238 , 0.9872238 , 0.93857705, 0.93857705,
0.93857705, 0.93857705, 0.78360952, 0.78360952, 0.78360952,
0.78360952, 0.47710418, 0.47710418, 0.47710418, 0.47710418,
0.25180595, 0.25180595, 0.25180595, 0.25180595, 0.1638813 ,
0.1638813 , 0.1638813 , 0.1638813 , 0.1638813 , 0.1638813 ,
0.1638813 , 0.1638813 , 0.25180595, 0.25180595, 0.25180595,
0.25180595, 0.47710418, 0.47710418, 0.47710418, 0.47710418,
0.78360952, 0.78360952, 0.78360952, 0.78360952, 0.93857705,
0.93857705, 0.93857705, 0.93857705, 0.9872238 , 0.9872238 ,
0.9872238 , 0.9872238 , 0.99804051, 0.99804051, 0.99804051,
0.99804051, 0.99977747, 0.99977747, 0.99977747, 0.99977747,
0.9999814 , 0.9999814 , 0.9999814 , 0.9999814 , 0.99999887,
0.99999887, 0.99999887, 0.99999887, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999997,
-1.99999997, -1.99999997, -1.99999997, -1.99999923, -1.99999923,
-1.99999923, -1.99999923, -1.99998776, -1.99998776, -1.99998776,
-1.99998776, -1.99985981, -1.99985981, -1.99985981, -1.99985981,
-1.99882953, -1.99882953, -1.99882953, -1.99882953, -1.99281308,
-1.99281308, -1.99281308, -1.99281308, -1.96715956, -1.96715956,
-1.96715956, -1.96715956, -1.8851839 , -1.8851839 , -1.8851839 ,
-1.8851839 , -1.67777415, -1.67777415, -1.67777415, -1.67777415,
-1.27130664, -1.27130664, -1.27130664, -1.27130664, -0.52601961,
-0.52601961, -0.52601961, -0.52601961, 0.52601961, 0.52601961,
0.52601961, 0.52601961, 1.27130664, 1.27130664, 1.27130664,
1.27130664, 1.67777415, 1.67777415, 1.67777415, 1.67777415,
1.8851839 , 1.8851839 , 1.8851839 , 1.8851839 , 1.96715956,
1.96715956, 1.96715956, 1.96715956, 1.99281308, 1.99281308,
1.99281308, 1.99281308, 1.99882953, 1.99882953, 1.99882953,
1.99882953, 1.99985981, 1.99985981, 1.99985981, 1.99985981,
1.99998776, 1.99998776, 1.99998776, 1.99998776, 1.99999923,
1.99999923, 1.99999923, 1.99999923, 1.99999997, 1.99999997,
1.99999997, 1.99999997, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.39999943, 0.39999943,
0.39999943, 0.39999943, 0.39999085, 0.39999085, 0.39999085,
0.39999085, 0.39989526, 0.39989526, 0.39989526, 0.39989526,
0.3991272 , 0.3991272 , 0.3991272 , 0.3991272 , 0.39467278,
0.39467278, 0.39467278, 0.39467278, 0.37616893, 0.37616893,
0.37616893, 0.37616893, 0.3218281 , 0.3218281 , 0.3218281 ,
0.3218281 , 0.21484827, 0.21484827, 0.21484827, 0.21484827,
0.12366433, 0.12366433, 0.12366433, 0.12366433, 0.08206119,
0.08206119, 0.08206119, 0.08206119, 0.08206119, 0.08206119,
0.08206119, 0.08206119, 0.12366433, 0.12366433, 0.12366433,
0.12366433, 0.21484827, 0.21484827, 0.21484827, 0.21484827,
0.3218281 , 0.3218281 , 0.3218281 , 0.3218281 , 0.37616893,
0.37616893, 0.37616893, 0.37616893, 0.39467278, 0.39467278,
0.39467278, 0.39467278, 0.3991272 , 0.3991272 , 0.3991272 ,
0.3991272 , 0.39989526, 0.39989526, 0.39989526, 0.39989526,
0.39999085, 0.39999085, 0.39999085, 0.39999085, 0.39999943,
0.39999943, 0.39999943, 0.39999943, 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999991, 0.99999991, 0.99999991, 0.99999991, 0.99999845,
0.99999845, 0.99999845, 0.99999845, 0.9999803 , 0.9999803 ,
0.9999803 , 0.9999803 , 0.99980675, 0.99980675, 0.99980675,
0.99980675, 0.99853052, 0.99853052, 0.99853052, 0.99853052,
0.99132631, 0.99132631, 0.99132631, 0.99132631, 0.96043963,
0.96043963, 0.96043963, 0.96043963, 0.86149689, 0.86149689,
0.86149689, 0.86149689, 0.62919887, 0.62919887, 0.62919887,
0.62919887, 0.35143864, 0.35143864, 0.35143864, 0.35143864,
0.19386562, 0.19386562, 0.19386562, 0.19386562, 0.13391812,
0.13391812, 0.13391812, 0.13391812, 0.13391812, 0.13391812,
0.13391812, 0.13391812, 0.19386562, 0.19386562, 0.19386562,
0.19386562, 0.35143864, 0.35143864, 0.35143864, 0.35143864,
0.62919887, 0.62919887, 0.62919887, 0.62919887, 0.86149689,
0.86149689, 0.86149689, 0.86149689, 0.96043963, 0.96043963,
0.96043963, 0.96043963, 0.99132631, 0.99132631, 0.99132631,
0.99132631, 0.99853052, 0.99853052, 0.99853052, 0.99853052,
0.99980675, 0.99980675, 0.99980675, 0.99980675, 0.9999803 ,
0.9999803 , 0.9999803 , 0.9999803 , 0.99999845, 0.99999845,
0.99999845, 0.99999845, 0.99999991, 0.99999991, 0.99999991,
0.99999991, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999993, -1.99999993, -1.99999993, -1.99999993, -1.99999892,
-1.99999892, -1.99999892, -1.99999892, -1.99998652, -1.99998652,
-1.99998652, -1.99998652, -1.99987201, -1.99987201, -1.99987201,
-1.99987201, -1.99906639, -1.99906639, -1.99906639, -1.99906639,
-1.99475692, -1.99475692, -1.99475692, -1.99475692, -1.97724052,
-1.97724052, -1.97724052, -1.97724052, -1.92239345, -1.92239345,
-1.92239345, -1.92239345, -1.78517312, -1.78517312, -1.78517312,
-1.78517312, -1.5113457 , -1.5113457 , -1.5113457 , -1.5113457 ,
-1.08147149, -1.08147149, -1.08147149, -1.08147149, -0.42947786,
-0.42947786, -0.42947786, -0.42947786, 0.42947786, 0.42947786,
0.42947786, 0.42947786, 1.08147149, 1.08147149, 1.08147149,
1.08147149, 1.5113457 , 1.5113457 , 1.5113457 , 1.5113457 ,
1.78517312, 1.78517312, 1.78517312, 1.78517312, 1.92239345,
1.92239345, 1.92239345, 1.92239345, 1.97724052, 1.97724052,
1.97724052, 1.97724052, 1.99475692, 1.99475692, 1.99475692,
1.99475692, 1.99906639, 1.99906639, 1.99906639, 1.99906639,
1.99987201, 1.99987201, 1.99987201, 1.99987201, 1.99998652,
1.99998652, 1.99998652, 1.99998652, 1.99999892, 1.99999892,
1.99999892, 1.99999892, 1.99999993, 1.99999993, 1.99999993,
1.99999993, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999995, 0.39999995, 0.39999995, 0.39999995, 0.39999919,
0.39999919, 0.39999919, 0.39999919, 0.39998992, 0.39998992,
0.39998992, 0.39998992, 0.39990428, 0.39990428, 0.39990428,
0.39990428, 0.39930251, 0.39930251, 0.39930251, 0.39930251,
0.3960976 , 0.3960976 , 0.3960976 , 0.3960976 , 0.38329551,
0.38329551, 0.38329551, 0.38329551, 0.34542088, 0.34542088,
0.34542088, 0.34542088, 0.26266714, 0.26266714, 0.26266714,
0.26266714, 0.1576941 , 0.1576941 , 0.1576941 , 0.1576941 ,
0.09083226, 0.09083226, 0.09083226, 0.09083226, 0.06171329,
0.06171329, 0.06171329, 0.06171329, 0.06171329, 0.06171329,
0.06171329, 0.06171329, 0.09083226, 0.09083226, 0.09083226,
0.09083226, 0.1576941 , 0.1576941 , 0.1576941 , 0.1576941 ,
0.26266714, 0.26266714, 0.26266714, 0.26266714, 0.34542088,
0.34542088, 0.34542088, 0.34542088, 0.38329551, 0.38329551,
0.38329551, 0.38329551, 0.3960976 , 0.3960976 , 0.3960976 ,
0.3960976 , 0.39930251, 0.39930251, 0.39930251, 0.39930251,
0.39990428, 0.39990428, 0.39990428, 0.39990428, 0.39998992,
0.39998992, 0.39998992, 0.39998992, 0.39999919, 0.39999919,
0.39999919, 0.39999919, 0.39999995, 0.39999995, 0.39999995,
0.39999995, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999822, 0.99999822, 0.99999822, 0.99999822, 0.99998106,
0.99998106, 0.99998106, 0.99998106, 0.99983897, 0.99983897,
0.99983897, 0.99983897, 0.99890114, 0.99890114, 0.99890114,
0.99890114, 0.99398512, 0.99398512, 0.99398512, 0.99398512,
0.97370478, 0.97370478, 0.97370478, 0.97370478, 0.90883613,
0.90883613, 0.90883613, 0.90883613, 0.75034435, 0.75034435,
0.75034435, 0.75034435, 0.47937345, 0.47937345, 0.47937345,
0.47937345, 0.26645779, 0.26645779, 0.26645779, 0.26645779,
0.15553048, 0.15553048, 0.15553048, 0.15553048, 0.11304865,
0.11304865, 0.11304865, 0.11304865, 0.11304865, 0.11304865,
0.11304865, 0.11304865, 0.15553048, 0.15553048, 0.15553048,
0.15553048, 0.26645779, 0.26645779, 0.26645779, 0.26645779,
0.47937345, 0.47937345, 0.47937345, 0.47937345, 0.75034435,
0.75034435, 0.75034435, 0.75034435, 0.90883613, 0.90883613,
0.90883613, 0.90883613, 0.97370478, 0.97370478, 0.97370478,
0.97370478, 0.99398512, 0.99398512, 0.99398512, 0.99398512,
0.99890114, 0.99890114, 0.99890114, 0.99890114, 0.99983897,
0.99983897, 0.99983897, 0.99983897, 0.99998106, 0.99998106,
0.99998106, 0.99998106, 0.99999822, 0.99999822, 0.99999822,
0.99999822, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999999, -1.99999999, -1.99999999,
-1.99999999, -1.9999999 , -1.9999999 , -1.9999999 , -1.9999999 ,
-1.99999873, -1.99999873, -1.99999873, -1.99999873, -1.99998669,
-1.99998669, -1.99998669, -1.99998669, -1.99988955, -1.99988955,
-1.99988955, -1.99988955, -1.99926998, -1.99926998, -1.99926998,
-1.99926998, -1.99616089, -1.99616089, -1.99616089, -1.99616089,
-1.98393412, -1.98393412, -1.98393412, -1.98393412, -1.94604754,
-1.94604754, -1.94604754, -1.94604754, -1.85123448, -1.85123448,
-1.85123448, -1.85123448, -1.65457416, -1.65457416, -1.65457416,
-1.65457416, -1.34314169, -1.34314169, -1.34314169, -1.34314169,
-0.91937917, -0.91937917, -0.91937917, -0.91937917, -0.3602269 ,
-0.3602269 , -0.3602269 , -0.3602269 , 0.3602269 , 0.3602269 ,
0.3602269 , 0.3602269 , 0.91937917, 0.91937917, 0.91937917,
0.91937917, 1.34314169, 1.34314169, 1.34314169, 1.34314169,
1.65457416, 1.65457416, 1.65457416, 1.65457416, 1.85123448,
1.85123448, 1.85123448, 1.85123448, 1.94604754, 1.94604754,
1.94604754, 1.94604754, 1.98393412, 1.98393412, 1.98393412,
1.98393412, 1.99616089, 1.99616089, 1.99616089, 1.99616089,
1.99926998, 1.99926998, 1.99926998, 1.99926998, 1.99988955,
1.99988955, 1.99988955, 1.99988955, 1.99998669, 1.99998669,
1.99998669, 1.99998669, 1.99999873, 1.99999873, 1.99999873,
1.99999873, 1.9999999 , 1.9999999 , 1.9999999 , 1.9999999 ,
1.99999999, 1.99999999, 1.99999999, 1.99999999, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.39999905, 0.39999905, 0.39999905, 0.39999905, 0.39999004,
0.39999004, 0.39999004, 0.39999004, 0.39991737, 0.39991737,
0.39991737, 0.39991737, 0.39945421, 0.39945421, 0.39945421,
0.39945421, 0.39713715, 0.39713715, 0.39713715, 0.39713715,
0.38813528, 0.38813528, 0.38813528, 0.38813528, 0.3613379 ,
0.3613379 , 0.3613379 , 0.3613379 , 0.30087371, 0.30087371,
0.30087371, 0.30087371, 0.20141084, 0.20141084, 0.20141084,
0.20141084, 0.11704796, 0.11704796, 0.11704796, 0.11704796,
0.06912872, 0.06912872, 0.06912872, 0.06912872, 0.04853681,
0.04853681, 0.04853681, 0.04853681, 0.04853681, 0.04853681,
0.04853681, 0.04853681, 0.06912872, 0.06912872, 0.06912872,
0.06912872, 0.11704796, 0.11704796, 0.11704796, 0.11704796,
0.20141084, 0.20141084, 0.20141084, 0.20141084, 0.30087371,
0.30087371, 0.30087371, 0.30087371, 0.3613379 , 0.3613379 ,
0.3613379 , 0.3613379 , 0.38813528, 0.38813528, 0.38813528,
0.38813528, 0.39713715, 0.39713715, 0.39713715, 0.39713715,
0.39945421, 0.39945421, 0.39945421, 0.39945421, 0.39991737,
0.39991737, 0.39991737, 0.39991737, 0.39999004, 0.39999004,
0.39999004, 0.39999004, 0.39999905, 0.39999905, 0.39999905,
0.39999905, 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999984, 0.99999984, 0.99999984,
0.99999984, 0.99999815, 0.99999815, 0.99999815, 0.99999815,
0.99998284, 0.99998284, 0.99998284, 0.99998284, 0.99986909,
0.99986909, 0.99986909, 0.99986909, 0.99917794, 0.99917794,
0.99917794, 0.99917794, 0.99575787, 0.99575787, 0.99575787,
0.99575787, 0.98208444, 0.98208444, 0.98208444, 0.98208444,
0.93845324, 0.93845324, 0.93845324, 0.93845324, 0.82880412,
0.82880412, 0.82880412, 0.82880412, 0.61348768, 0.61348768,
0.61348768, 0.61348768, 0.36614028, 0.36614028, 0.36614028,
0.36614028, 0.20903449, 0.20903449, 0.20903449, 0.20903449,
0.12920479, 0.12920479, 0.12920479, 0.12920479, 0.09800524,
0.09800524, 0.09800524, 0.09800524, 0.09800524, 0.09800524,
0.09800524, 0.09800524, 0.12920479, 0.12920479, 0.12920479,
0.12920479, 0.20903449, 0.20903449, 0.20903449, 0.20903449,
0.36614028, 0.36614028, 0.36614028, 0.36614028, 0.61348768,
0.61348768, 0.61348768, 0.61348768, 0.82880412, 0.82880412,
0.82880412, 0.82880412, 0.93845324, 0.93845324, 0.93845324,
0.93845324, 0.98208444, 0.98208444, 0.98208444, 0.98208444,
0.99575787, 0.99575787, 0.99575787, 0.99575787, 0.99917794,
0.99917794, 0.99917794, 0.99917794, 0.99986909, 0.99986909,
0.99986909, 0.99986909, 0.99998284, 0.99998284, 0.99998284,
0.99998284, 0.99999815, 0.99999815, 0.99999815, 0.99999815,
0.99999984, 0.99999984, 0.99999984, 0.99999984, 0.99999999,
0.99999999, 0.99999999, 0.99999999, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999988, -1.99999988, -1.99999988,
-1.99999988, -1.99999866, -1.99999866, -1.99999866, -1.99999866,
-1.99998772, -1.99998772, -1.99998772, -1.99998772, -1.99990797,
-1.99990797, -1.99990797, -1.99990797, -1.99943592, -1.99943592,
-1.99943592, -1.99943592, -1.99717955, -1.99717955, -1.99717955,
-1.99717955, -1.98851793, -1.98851793, -1.98851793, -1.98851793,
-1.96180903, -1.96180903, -1.96180903, -1.96180903, -1.89460091,
-1.89460091, -1.89460091, -1.89460091, -1.75267665, -1.75267665,
-1.75267665, -1.75267665, -1.51016277, -1.51016277, -1.51016277,
-1.51016277, -1.18621185, -1.18621185, -1.18621185, -1.18621185,
-0.7860659 , -0.7860659 , -0.7860659 , -0.7860659 , -0.30832397,
-0.30832397, -0.30832397, -0.30832397, 0.30832397, 0.30832397,
0.30832397, 0.30832397, 0.7860659 , 0.7860659 , 0.7860659 ,
0.7860659 , 1.18621185, 1.18621185, 1.18621185, 1.18621185,
1.51016277, 1.51016277, 1.51016277, 1.51016277, 1.75267665,
1.75267665, 1.75267665, 1.75267665, 1.89460091, 1.89460091,
1.89460091, 1.89460091, 1.96180903, 1.96180903, 1.96180903,
1.96180903, 1.98851793, 1.98851793, 1.98851793, 1.98851793,
1.99717955, 1.99717955, 1.99717955, 1.99717955, 1.99943592,
1.99943592, 1.99943592, 1.99943592, 1.99990797, 1.99990797,
1.99990797, 1.99990797, 1.99998772, 1.99998772, 1.99998772,
1.99998772, 1.99999866, 1.99999866, 1.99999866, 1.99999866,
1.99999988, 1.99999988, 1.99999988, 1.99999988, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999991, 0.39999991, 0.39999991,
0.39999991, 0.399999 , 0.399999 , 0.399999 , 0.399999 ,
0.39999081, 0.39999081, 0.39999081, 0.39999081, 0.39993114,
0.39993114, 0.39993114, 0.39993114, 0.39957814, 0.39957814,
0.39957814, 0.39957814, 0.3978946 , 0.3978946 , 0.3978946 ,
0.3978946 , 0.39148834, 0.39148834, 0.39148834, 0.39148834,
0.37229028, 0.37229028, 0.37229028, 0.37229028, 0.32749061,
0.32749061, 0.32749061, 0.32749061, 0.24595055, 0.24595055,
0.24595055, 0.24595055, 0.1521573 , 0.1521573 , 0.1521573 ,
0.1521573 , 0.08900074, 0.08900074, 0.08900074, 0.08900074,
0.05452347, 0.05452347, 0.05452347, 0.05452347, 0.03964855,
0.03964855, 0.03964855, 0.03964855, 0.03964855, 0.03964855,
0.03964855, 0.03964855, 0.05452347, 0.05452347, 0.05452347,
0.05452347, 0.08900074, 0.08900074, 0.08900074, 0.08900074,
0.1521573 , 0.1521573 , 0.1521573 , 0.1521573 , 0.24595055,
0.24595055, 0.24595055, 0.24595055, 0.32749061, 0.32749061,
0.32749061, 0.32749061, 0.37229028, 0.37229028, 0.37229028,
0.37229028, 0.39148834, 0.39148834, 0.39148834, 0.39148834,
0.3978946 , 0.3978946 , 0.3978946 , 0.3978946 , 0.39957814,
0.39957814, 0.39957814, 0.39957814, 0.39993114, 0.39993114,
0.39993114, 0.39993114, 0.39999081, 0.39999081, 0.39999081,
0.39999081, 0.399999 , 0.399999 , 0.399999 , 0.399999 ,
0.39999991, 0.39999991, 0.39999991, 0.39999991, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999982, 0.99999982,
0.99999982, 0.99999982, 0.99999821, 0.99999821, 0.99999821,
0.99999821, 0.99998506, 0.99998506, 0.99998506, 0.99998506,
0.99989526, 0.99989526, 0.99989526, 0.99989526, 0.99938413,
0.99938413, 0.99938413, 0.99938413, 0.9969681 , 0.9969681 ,
0.9969681 , 0.9969681 , 0.98755151, 0.98755151, 0.98755151,
0.98755151, 0.9575973 , 0.9575973 , 0.9575973 , 0.9575973 ,
0.88079942, 0.88079942, 0.88079942, 0.88079942, 0.72339297,
0.72339297, 0.72339297, 0.72339297, 0.48191719, 0.48191719,
0.48191719, 0.48191719, 0.28572684, 0.28572684, 0.28572684,
0.28572684, 0.16953166, 0.16953166, 0.16953166, 0.16953166,
0.11045248, 0.11045248, 0.11045248, 0.11045248, 0.08680007,
0.08680007, 0.08680007, 0.08680007, 0.08680007, 0.08680007,
0.08680007, 0.08680007, 0.11045248, 0.11045248, 0.11045248,
0.11045248, 0.16953166, 0.16953166, 0.16953166, 0.16953166,
0.28572684, 0.28572684, 0.28572684, 0.28572684, 0.48191719,
0.48191719, 0.48191719, 0.48191719, 0.72339297, 0.72339297,
0.72339297, 0.72339297, 0.88079942, 0.88079942, 0.88079942,
0.88079942, 0.9575973 , 0.9575973 , 0.9575973 , 0.9575973 ,
0.98755151, 0.98755151, 0.98755151, 0.98755151, 0.9969681 ,
0.9969681 , 0.9969681 , 0.9969681 , 0.99938413, 0.99938413,
0.99938413, 0.99938413, 0.99989526, 0.99989526, 0.99989526,
0.99989526, 0.99998506, 0.99998506, 0.99998506, 0.99998506,
0.99999821, 0.99999821, 0.99999821, 0.99999821, 0.99999982,
0.99999982, 0.99999982, 0.99999982, 0.99999998, 0.99999998,
0.99999998, 0.99999998, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.99999987, -1.99999987,
-1.99999987, -1.99999987, -1.99999869, -1.99999869, -1.99999869,
-1.99999869, -1.99998917, -1.99998917, -1.99998917, -1.99998917,
-1.99992506, -1.99992506, -1.99992506, -1.99992506, -1.99956738,
-1.99956738, -1.99956738, -1.99956738, -1.99792181, -1.99792181,
-1.99792181, -1.99792181, -1.9917193 , -1.9917193 , -1.9917193 ,
-1.9917193 , -1.97261847, -1.97261847, -1.97261847, -1.97261847,
-1.92415623, -1.92415623, -1.92415623, -1.92415623, -1.82040341,
-1.82040341, -1.82040341, -1.82040341, -1.63201167, -1.63201167,
-1.63201167, -1.63201167, -1.36651981, -1.36651981, -1.36651981,
-1.36651981, -1.04671979, -1.04671979, -1.04671979, -1.04671979,
-0.6782087 , -0.6782087 , -0.6782087 , -0.6782087 , -0.26774582,
-0.26774582, -0.26774582, -0.26774582, 0.26774582, 0.26774582,
0.26774582, 0.26774582, 0.6782087 , 0.6782087 , 0.6782087 ,
0.6782087 , 1.04671979, 1.04671979, 1.04671979, 1.04671979,
1.36651981, 1.36651981, 1.36651981, 1.36651981, 1.63201167,
1.63201167, 1.63201167, 1.63201167, 1.82040341, 1.82040341,
1.82040341, 1.82040341, 1.92415623, 1.92415623, 1.92415623,
1.92415623, 1.97261847, 1.97261847, 1.97261847, 1.97261847,
1.9917193 , 1.9917193 , 1.9917193 , 1.9917193 , 1.99792181,
1.99792181, 1.99792181, 1.99792181, 1.99956738, 1.99956738,
1.99956738, 1.99956738, 1.99992506, 1.99992506, 1.99992506,
1.99992506, 1.99998917, 1.99998917, 1.99998917, 1.99998917,
1.99999869, 1.99999869, 1.99999869, 1.99999869, 1.99999987,
1.99999987, 1.99999987, 1.99999987, 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.3999999 , 0.3999999 ,
0.3999999 , 0.3999999 , 0.39999902, 0.39999902, 0.39999902,
0.39999902, 0.39999189, 0.39999189, 0.39999189, 0.39999189,
0.39994393, 0.39994393, 0.39994393, 0.39994393, 0.3996764 ,
0.3996764 , 0.3996764 , 0.3996764 , 0.39844766, 0.39844766,
0.39844766, 0.39844766, 0.3938459 , 0.3938459 , 0.3938459 ,
0.3938459 , 0.37996407, 0.37996407, 0.37996407, 0.37996407,
0.34664308, 0.34664308, 0.34664308, 0.34664308, 0.28330954,
0.28330954, 0.28330954, 0.28330954, 0.19183256, 0.19183256,
0.19183256, 0.19183256, 0.11635494, 0.11635494, 0.11635494,
0.11635494, 0.06966734, 0.06966734, 0.06966734, 0.06966734,
0.04441951, 0.04441951, 0.04441951, 0.04441951, 0.03339871,
0.03339871, 0.03339871, 0.03339871, 0.03339871, 0.03339871,
0.03339871, 0.03339871, 0.04441951, 0.04441951, 0.04441951,
0.04441951, 0.06966734, 0.06966734, 0.06966734, 0.06966734,
0.11635494, 0.11635494, 0.11635494, 0.11635494, 0.19183256,
0.19183256, 0.19183256, 0.19183256, 0.28330954, 0.28330954,
0.28330954, 0.28330954, 0.34664308, 0.34664308, 0.34664308,
0.34664308, 0.37996407, 0.37996407, 0.37996407, 0.37996407,
0.3938459 , 0.3938459 , 0.3938459 , 0.3938459 , 0.39844766,
0.39844766, 0.39844766, 0.39844766, 0.3996764 , 0.3996764 ,
0.3996764 , 0.3996764 , 0.39994393, 0.39994393, 0.39994393,
0.39994393, 0.39999189, 0.39999189, 0.39999189, 0.39999189,
0.39999902, 0.39999902, 0.39999902, 0.39999902, 0.3999999 ,
0.3999999 , 0.3999999 , 0.3999999 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999982,
0.99999982, 0.99999982, 0.99999982, 0.99999835, 0.99999835,
0.99999835, 0.99999835, 0.99998734, 0.99998734, 0.99998734,
0.99998734, 0.99991711, 0.99991711, 0.99991711, 0.99991711,
0.99953786, 0.99953786, 0.99953786, 0.99953786, 0.99781034,
0.99781034, 0.99781034, 0.99781034, 0.99121504, 0.99121504,
0.99121504, 0.99121504, 0.97029897, 0.97029897, 0.97029897,
0.97029897, 0.91578706, 0.91578706, 0.91578706, 0.91578706,
0.80012855, 0.80012855, 0.80012855, 0.80012855, 0.60045937,
0.60045937, 0.60045937, 0.60045937, 0.37949445, 0.37949445,
0.37949445, 0.37949445, 0.22889361, 0.22889361, 0.22889361,
0.22889361, 0.14163683, 0.14163683, 0.14163683, 0.14163683,
0.09663353, 0.09663353, 0.09663353, 0.09663353, 0.07820179,
0.07820179, 0.07820179, 0.07820179, 0.07820179, 0.07820179,
0.07820179, 0.07820179, 0.09663353, 0.09663353, 0.09663353,
0.09663353, 0.14163683, 0.14163683, 0.14163683, 0.14163683,
0.22889361, 0.22889361, 0.22889361, 0.22889361, 0.37949445,
0.37949445, 0.37949445, 0.37949445, 0.60045937, 0.60045937,
0.60045937, 0.60045937, 0.80012855, 0.80012855, 0.80012855,
0.80012855, 0.91578706, 0.91578706, 0.91578706, 0.91578706,
0.97029897, 0.97029897, 0.97029897, 0.97029897, 0.99121504,
0.99121504, 0.99121504, 0.99121504, 0.99781034, 0.99781034,
0.99781034, 0.99781034, 0.99953786, 0.99953786, 0.99953786,
0.99953786, 0.99991711, 0.99991711, 0.99991711, 0.99991711,
0.99998734, 0.99998734, 0.99998734, 0.99998734, 0.99999835,
0.99999835, 0.99999835, 0.99999835, 0.99999982, 0.99999982,
0.99999982, 0.99999982, 0.99999998, 0.99999998, 0.99999998,
0.99999998, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999986,
-1.99999986, -1.99999986, -1.99999986, -1.99999879, -1.99999879,
-1.99999879, -1.99999879, -1.99999074, -1.99999074, -1.99999074,
-1.99999074, -1.99993995, -1.99993995, -1.99993995, -1.99993995,
-1.9996698 , -1.9996698 , -1.9996698 , -1.9996698 , -1.99846471,
-1.99846471, -1.99846471, -1.99846471, -1.99398645, -1.99398645,
-1.99398645, -1.99398645, -1.98018643, -1.98018643, -1.98018643,
-1.98018643, -1.94480442, -1.94480442, -1.94480442, -1.94480442,
-1.86801764, -1.86801764, -1.86801764, -1.86801764, -1.72407007,
-1.72407007, -1.72407007, -1.72407007, -1.50364278, -1.50364278,
-1.50364278, -1.50364278, -1.23217304, -1.23217304, -1.23217304,
-1.23217304, -0.92597583, -0.92597583, -0.92597583, -0.92597583,
-0.59117574, -0.59117574, -0.59117574, -0.59117574, -0.23496487,
-0.23496487, -0.23496487, -0.23496487, 0.23496487, 0.23496487,
0.23496487, 0.23496487, 0.59117574, 0.59117574, 0.59117574,
0.59117574, 0.92597583, 0.92597583, 0.92597583, 0.92597583,
1.23217304, 1.23217304, 1.23217304, 1.23217304, 1.50364278,
1.50364278, 1.50364278, 1.50364278, 1.72407007, 1.72407007,
1.72407007, 1.72407007, 1.86801764, 1.86801764, 1.86801764,
1.86801764, 1.94480442, 1.94480442, 1.94480442, 1.94480442,
1.98018643, 1.98018643, 1.98018643, 1.98018643, 1.99398645,
1.99398645, 1.99398645, 1.99398645, 1.99846471, 1.99846471,
1.99846471, 1.99846471, 1.9996698 , 1.9996698 , 1.9996698 ,
1.9996698 , 1.99993995, 1.99993995, 1.99993995, 1.99993995,
1.99999074, 1.99999074, 1.99999074, 1.99999074, 1.99999879,
1.99999879, 1.99999879, 1.99999879, 1.99999986, 1.99999986,
1.99999986, 1.99999986, 1.99999999, 1.99999999, 1.99999999,
1.99999999, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.3999999 ,
0.3999999 , 0.3999999 , 0.3999999 , 0.39999909, 0.39999909,
0.39999909, 0.39999909, 0.39999307, 0.39999307, 0.39999307,
0.39999307, 0.39995507, 0.39995507, 0.39995507, 0.39995507,
0.39975298, 0.39975298, 0.39975298, 0.39975298, 0.39885266,
0.39885266, 0.39885266, 0.39885266, 0.39552278, 0.39552278,
0.39552278, 0.39552278, 0.38541506, 0.38541506, 0.38541506,
0.38541506, 0.36053293, 0.36053293, 0.36053293, 0.36053293,
0.31125907, 0.31125907, 0.31125907, 0.31125907, 0.23233608,
0.23233608, 0.23233608, 0.23233608, 0.14878873, 0.14878873,
0.14878873, 0.14878873, 0.0908745 , 0.0908745 , 0.0908745 ,
0.0908745 , 0.05614055, 0.05614055, 0.05614055, 0.05614055,
0.03721016, 0.03721016, 0.03721016, 0.03721016, 0.0288322 ,
0.0288322 , 0.0288322 , 0.0288322 , 0.0288322 , 0.0288322 ,
0.0288322 , 0.0288322 , 0.03721016, 0.03721016, 0.03721016,
0.03721016, 0.05614055, 0.05614055, 0.05614055, 0.05614055,
0.0908745 , 0.0908745 , 0.0908745 , 0.0908745 , 0.14878873,
0.14878873, 0.14878873, 0.14878873, 0.23233608, 0.23233608,
0.23233608, 0.23233608, 0.31125907, 0.31125907, 0.31125907,
0.31125907, 0.36053293, 0.36053293, 0.36053293, 0.36053293,
0.38541506, 0.38541506, 0.38541506, 0.38541506, 0.39552278,
0.39552278, 0.39552278, 0.39552278, 0.39885266, 0.39885266,
0.39885266, 0.39885266, 0.39975298, 0.39975298, 0.39975298,
0.39975298, 0.39995507, 0.39995507, 0.39995507, 0.39995507,
0.39999307, 0.39999307, 0.39999307, 0.39999307, 0.39999909,
0.39999909, 0.39999909, 0.39999909, 0.3999999 , 0.3999999 ,
0.3999999 , 0.3999999 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999853,
0.99999853, 0.99999853, 0.99999853, 0.99998948, 0.99998948,
0.99998948, 0.99998948, 0.99993492, 0.99993492, 0.99993492,
0.99993492, 0.99965273, 0.99965273, 0.99965273, 0.99965273,
0.99840561, 0.99840561, 0.99840561, 0.99840561, 0.99372391,
0.99372391, 0.99372391, 0.99372391, 0.97891212, 0.97891212,
0.97891212, 0.97891212, 0.93979064, 0.93979064, 0.93979064,
0.93979064, 0.85435217, 0.85435217, 0.85435217, 0.85435217,
0.70047105, 0.70047105, 0.70047105, 0.70047105, 0.48368405,
0.48368405, 0.48368405, 0.48368405, 0.30390714, 0.30390714,
0.30390714, 0.30390714, 0.18824623, 0.18824623, 0.18824623,
0.18824623, 0.12134774, 0.12134774, 0.12134774, 0.12134774,
0.08615572, 0.08615572, 0.08615572, 0.08615572, 0.07142817,
0.07142817, 0.07142817, 0.07142817, 0.07142817, 0.07142817,
0.07142817, 0.07142817, 0.08615572, 0.08615572, 0.08615572,
0.08615572, 0.12134774, 0.12134774, 0.12134774, 0.12134774,
0.18824623, 0.18824623, 0.18824623, 0.18824623, 0.30390714,
0.30390714, 0.30390714, 0.30390714, 0.48368405, 0.48368405,
0.48368405, 0.48368405, 0.70047105, 0.70047105, 0.70047105,
0.70047105, 0.85435217, 0.85435217, 0.85435217, 0.85435217,
0.93979064, 0.93979064, 0.93979064, 0.93979064, 0.97891212,
0.97891212, 0.97891212, 0.97891212, 0.99372391, 0.99372391,
0.99372391, 0.99372391, 0.99840561, 0.99840561, 0.99840561,
0.99840561, 0.99965273, 0.99965273, 0.99965273, 0.99965273,
0.99993492, 0.99993492, 0.99993492, 0.99993492, 0.99998948,
0.99998948, 0.99998948, 0.99998948, 0.99999853, 0.99999853,
0.99999853, 0.99999853, 0.99999982, 0.99999982, 0.99999982,
0.99999982, 0.99999998, 0.99999998, 0.99999998, 0.99999998,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999999, -1.99999999, -1.99999999, -1.99999999,
-1.99999987, -1.99999987, -1.99999987, -1.99999987, -1.99999891,
-1.99999891, -1.99999891, -1.99999891, -1.99999225, -1.99999225,
-1.99999225, -1.99999225, -1.99995243, -1.99995243, -1.99995243,
-1.99995243, -1.99974878, -1.99974878, -1.99974878, -1.99974878,
-1.99886312, -1.99886312, -1.99886312, -1.99886312, -1.99560883,
-1.99560883, -1.99560883, -1.99560883, -1.9855618 , -1.9855618 ,
-1.9855618 , -1.9855618 , -1.95950297, -1.95950297, -1.95950297,
-1.95950297, -1.90210338, -1.90210338, -1.90210338, -1.90210338,
-1.79222715, -1.79222715, -1.79222715, -1.79222715, -1.61230762,
-1.61230762, -1.61230762, -1.61230762, -1.3777013 , -1.3777013 ,
-1.3777013 , -1.3777013 , -1.11092251, -1.11092251, -1.11092251,
-1.11092251, -0.82278589, -0.82278589, -0.82278589, -0.82278589,
-0.52048968, -0.52048968, -0.52048968, -0.52048968, -0.20786432,
-0.20786432, -0.20786432, -0.20786432, 0.20786432, 0.20786432,
0.20786432, 0.20786432, 0.52048968, 0.52048968, 0.52048968,
0.52048968, 0.82278589, 0.82278589, 0.82278589, 0.82278589,
1.11092251, 1.11092251, 1.11092251, 1.11092251, 1.3777013 ,
1.3777013 , 1.3777013 , 1.3777013 , 1.61230762, 1.61230762,
1.61230762, 1.61230762, 1.79222715, 1.79222715, 1.79222715,
1.79222715, 1.90210338, 1.90210338, 1.90210338, 1.90210338,
1.95950297, 1.95950297, 1.95950297, 1.95950297, 1.9855618 ,
1.9855618 , 1.9855618 , 1.9855618 , 1.99560883, 1.99560883,
1.99560883, 1.99560883, 1.99886312, 1.99886312, 1.99886312,
1.99886312, 1.99974878, 1.99974878, 1.99974878, 1.99974878,
1.99995243, 1.99995243, 1.99995243, 1.99995243, 1.99999225,
1.99999225, 1.99999225, 1.99999225, 1.99999891, 1.99999891,
1.99999891, 1.99999891, 1.99999987, 1.99999987, 1.99999987,
1.99999987, 1.99999999, 1.99999999, 1.99999999, 1.99999999,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.3999999 , 0.3999999 , 0.3999999 , 0.3999999 , 0.39999919,
0.39999919, 0.39999919, 0.39999919, 0.3999942 , 0.3999942 ,
0.3999942 , 0.3999942 , 0.3999644 , 0.3999644 , 0.3999644 ,
0.3999644 , 0.39981205, 0.39981205, 0.39981205, 0.39981205,
0.39915011, 0.39915011, 0.39915011, 0.39915011, 0.3967264 ,
0.3967264 , 0.3967264 , 0.3967264 , 0.38932614, 0.38932614,
0.38932614, 0.38932614, 0.3707002 , 0.3707002 , 0.3707002 ,
0.3707002 , 0.33242647, 0.33242647, 0.33242647, 0.33242647,
0.26800883, 0.26800883, 0.26800883, 0.26800883, 0.18437304,
0.18437304, 0.18437304, 0.18437304, 0.11676345, 0.11676345,
0.11676345, 0.11676345, 0.07270821, 0.07270821, 0.07270821,
0.07270821, 0.04645228, 0.04645228, 0.04645228, 0.04645228,
0.03191354, 0.03191354, 0.03191354, 0.03191354, 0.02538131,
0.02538131, 0.02538131, 0.02538131, 0.02538131, 0.02538131,
0.02538131, 0.02538131, 0.03191354, 0.03191354, 0.03191354,
0.03191354, 0.04645228, 0.04645228, 0.04645228, 0.04645228,
0.07270821, 0.07270821, 0.07270821, 0.07270821, 0.11676345,
0.11676345, 0.11676345, 0.11676345, 0.18437304, 0.18437304,
0.18437304, 0.18437304, 0.26800883, 0.26800883, 0.26800883,
0.26800883, 0.33242647, 0.33242647, 0.33242647, 0.33242647,
0.3707002 , 0.3707002 , 0.3707002 , 0.3707002 , 0.38932614,
0.38932614, 0.38932614, 0.38932614, 0.3967264 , 0.3967264 ,
0.3967264 , 0.3967264 , 0.39915011, 0.39915011, 0.39915011,
0.39915011, 0.39981205, 0.39981205, 0.39981205, 0.39981205,
0.3999644 , 0.3999644 , 0.3999644 , 0.3999644 , 0.3999942 ,
0.3999942 , 0.3999942 , 0.3999942 , 0.39999919, 0.39999919,
0.39999919, 0.39999919, 0.3999999 , 0.3999999 , 0.3999999 ,
0.3999999 , 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
0.99999873, 0.99999873, 0.99999873, 0.99999873, 0.99999139,
0.99999139, 0.99999139, 0.99999139, 0.9999492 , 0.9999492 ,
0.9999492 , 0.9999492 , 0.99973872, 0.99973872, 0.99973872,
0.99973872, 0.99883156, 0.99883156, 0.99883156, 0.99883156,
0.99547245, 0.99547245, 0.99547245, 0.99547245, 0.98486244,
0.98486244, 0.98486244, 0.98486244, 0.95651715, 0.95651715,
0.95651715, 0.95651715, 0.89302034, 0.89302034, 0.89302034,
0.89302034, 0.7744703 , 0.7744703 , 0.7744703 , 0.7744703 ,
0.58918984, 0.58918984, 0.58918984, 0.58918984, 0.3907938 ,
0.3907938 , 0.3907938 , 0.3907938 , 0.24842829, 0.24842829,
0.24842829, 0.24842829, 0.15858747, 0.15858747, 0.15858747,
0.15858747, 0.10613862, 0.10613862, 0.10613862, 0.10613862,
0.07804312, 0.07804312, 0.07804312, 0.07804312, 0.06596678,
0.06596678, 0.06596678, 0.06596678, 0.06596678, 0.06596678,
0.06596678, 0.06596678, 0.07804312, 0.07804312, 0.07804312,
0.07804312, 0.10613862, 0.10613862, 0.10613862, 0.10613862,
0.15858747, 0.15858747, 0.15858747, 0.15858747, 0.24842829,
0.24842829, 0.24842829, 0.24842829, 0.3907938 , 0.3907938 ,
0.3907938 , 0.3907938 , 0.58918984, 0.58918984, 0.58918984,
0.58918984, 0.7744703 , 0.7744703 , 0.7744703 , 0.7744703 ,
0.89302034, 0.89302034, 0.89302034, 0.89302034, 0.95651715,
0.95651715, 0.95651715, 0.95651715, 0.98486244, 0.98486244,
0.98486244, 0.98486244, 0.99547245, 0.99547245, 0.99547245,
0.99547245, 0.99883156, 0.99883156, 0.99883156, 0.99883156,
0.99973872, 0.99973872, 0.99973872, 0.99973872, 0.9999492 ,
0.9999492 , 0.9999492 , 0.9999492 , 0.99999139, 0.99999139,
0.99999139, 0.99999139, 0.99999873, 0.99999873, 0.99999873,
0.99999873, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999999, -1.99999999, -1.99999999,
-1.99999999, -1.99999988, -1.99999988, -1.99999988, -1.99999988,
-1.99999905, -1.99999905, -1.99999905, -1.99999905, -1.99999363,
-1.99999363, -1.99999363, -1.99999363, -1.99996263, -1.99996263,
-1.99996263, -1.99996263, -1.99980927, -1.99980927, -1.99980927,
-1.99980927, -1.99915638, -1.99915638, -1.99915638, -1.99915638,
-1.99677918, -1.99677918, -1.99677918, -1.99677918, -1.98942127,
-1.98942127, -1.98942127, -1.98942127, -1.97010848, -1.97010848,
-1.97010848, -1.97010848, -1.92685579, -1.92685579, -1.92685579,
-1.92685579, -1.84274247, -1.84274247, -1.84274247, -1.84274247,
-1.69896886, -1.69896886, -1.69896886, -1.69896886, -1.4967822 ,
-1.4967822 , -1.4967822 , -1.4967822 , -1.25990867, -1.25990867,
-1.25990867, -1.25990867, -1.00356993, -1.00356993, -1.00356993,
-1.00356993, -0.73520455, -0.73520455, -0.73520455, -0.73520455,
-0.4621829 , -0.4621829 , -0.4621829 , -0.4621829 , -0.18511853,
-0.18511853, -0.18511853, -0.18511853, 0.18511853, 0.18511853,
0.18511853, 0.18511853, 0.4621829 , 0.4621829 , 0.4621829 ,
0.4621829 , 0.73520455, 0.73520455, 0.73520455, 0.73520455,
1.00356993, 1.00356993, 1.00356993, 1.00356993, 1.25990867,
1.25990867, 1.25990867, 1.25990867, 1.4967822 , 1.4967822 ,
1.4967822 , 1.4967822 , 1.69896886, 1.69896886, 1.69896886,
1.69896886, 1.84274247, 1.84274247, 1.84274247, 1.84274247,
1.92685579, 1.92685579, 1.92685579, 1.92685579, 1.97010848,
1.97010848, 1.97010848, 1.97010848, 1.98942127, 1.98942127,
1.98942127, 1.98942127, 1.99677918, 1.99677918, 1.99677918,
1.99677918, 1.99915638, 1.99915638, 1.99915638, 1.99915638,
1.99980927, 1.99980927, 1.99980927, 1.99980927, 1.99996263,
1.99996263, 1.99996263, 1.99996263, 1.99999363, 1.99999363,
1.99999363, 1.99999363, 1.99999905, 1.99999905, 1.99999905,
1.99999905, 1.99999988, 1.99999988, 1.99999988, 1.99999988,
1.99999999, 1.99999999, 1.99999999, 1.99999999, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.39999991, 0.39999991, 0.39999991, 0.39999991,
0.39999929, 0.39999929, 0.39999929, 0.39999929, 0.39999523,
0.39999523, 0.39999523, 0.39999523, 0.39997203, 0.39997203,
0.39997203, 0.39997203, 0.3998573 , 0.3998573 , 0.3998573 ,
0.3998573 , 0.39936918, 0.39936918, 0.39936918, 0.39936918,
0.39759656, 0.39759656, 0.39759656, 0.39759656, 0.3921548 ,
0.3921548 , 0.3921548 , 0.3921548 , 0.37818642, 0.37818642,
0.37818642, 0.37818642, 0.34849857, 0.34849857, 0.34849857,
0.34849857, 0.29650042, 0.29650042, 0.29650042, 0.29650042,
0.2208956 , 0.2208956 , 0.2208956 , 0.2208956 , 0.14629492,
0.14629492, 0.14629492, 0.14629492, 0.09330567, 0.09330567,
0.09330567, 0.09330567, 0.05957303, 0.05957303, 0.05957303,
0.05957303, 0.03932213, 0.03932213, 0.03932213, 0.03932213,
0.02792703, 0.02792703, 0.02792703, 0.02792703, 0.02269662,
0.02269662, 0.02269662, 0.02269662, 0.02269662, 0.02269662,
0.02269662, 0.02269662, 0.02792703, 0.02792703, 0.02792703,
0.02792703, 0.03932213, 0.03932213, 0.03932213, 0.03932213,
0.05957303, 0.05957303, 0.05957303, 0.05957303, 0.09330567,
0.09330567, 0.09330567, 0.09330567, 0.14629492, 0.14629492,
0.14629492, 0.14629492, 0.2208956 , 0.2208956 , 0.2208956 ,
0.2208956 , 0.29650042, 0.29650042, 0.29650042, 0.29650042,
0.34849857, 0.34849857, 0.34849857, 0.34849857, 0.37818642,
0.37818642, 0.37818642, 0.37818642, 0.3921548 , 0.3921548 ,
0.3921548 , 0.3921548 , 0.39759656, 0.39759656, 0.39759656,
0.39759656, 0.39936918, 0.39936918, 0.39936918, 0.39936918,
0.3998573 , 0.3998573 , 0.3998573 , 0.3998573 , 0.39997203,
0.39997203, 0.39997203, 0.39997203, 0.39999523, 0.39999523,
0.39999523, 0.39999523, 0.39999929, 0.39999929, 0.39999929,
0.39999929, 0.39999991, 0.39999991, 0.39999991, 0.39999991,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999985, 0.99999985, 0.99999985,
0.99999985, 0.99999892, 0.99999892, 0.99999892, 0.99999892,
0.99999303, 0.99999303, 0.99999303, 0.99999303, 0.99996053,
0.99996053, 0.99996053, 0.99996053, 0.99980322, 0.99980322,
0.99980322, 0.99980322, 0.99913934, 0.99913934, 0.99913934,
0.99913934, 0.99670847, 0.99670847, 0.99670847, 0.99670847,
0.98903707, 0.98903707, 0.98903707, 0.98903707, 0.96833192,
0.96833192, 0.96833192, 0.96833192, 0.92092038, 0.92092038,
0.92092038, 0.92092038, 0.82944669, 0.82944669, 0.82944669,
0.82944669, 0.68051663, 0.68051663, 0.68051663, 0.68051663,
0.48474848, 0.48474848, 0.48474848, 0.48474848, 0.32005625,
0.32005625, 0.32005625, 0.32005625, 0.20735316, 0.20735316,
0.20735316, 0.20735316, 0.13644564, 0.13644564, 0.13644564,
0.13644564, 0.0944557 , 0.0944557 , 0.0944557 , 0.0944557 ,
0.07160431, 0.07160431, 0.07160431, 0.07160431, 0.06148045,
0.06148045, 0.06148045, 0.06148045, 0.06148045, 0.06148045,
0.06148045, 0.06148045, 0.07160431, 0.07160431, 0.07160431,
0.07160431, 0.0944557 , 0.0944557 , 0.0944557 , 0.0944557 ,
0.13644564, 0.13644564, 0.13644564, 0.13644564, 0.20735316,
0.20735316, 0.20735316, 0.20735316, 0.32005625, 0.32005625,
0.32005625, 0.32005625, 0.48474848, 0.48474848, 0.48474848,
0.48474848, 0.68051663, 0.68051663, 0.68051663, 0.68051663,
0.82944669, 0.82944669, 0.82944669, 0.82944669, 0.92092038,
0.92092038, 0.92092038, 0.92092038, 0.96833192, 0.96833192,
0.96833192, 0.96833192, 0.98903707, 0.98903707, 0.98903707,
0.98903707, 0.99670847, 0.99670847, 0.99670847, 0.99670847,
0.99913934, 0.99913934, 0.99913934, 0.99913934, 0.99980322,
0.99980322, 0.99980322, 0.99980322, 0.99996053, 0.99996053,
0.99996053, 0.99996053, 0.99999303, 0.99999303, 0.99999303,
0.99999303, 0.99999892, 0.99999892, 0.99999892, 0.99999892,
0.99999985, 0.99999985, 0.99999985, 0.99999985, 0.99999998,
0.99999998, 0.99999998, 0.99999998, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999989, -1.99999989, -1.99999989,
-1.99999989, -1.99999919, -1.99999919, -1.99999919, -1.99999919,
-1.99999483, -1.99999483, -1.99999483, -1.99999483, -1.99997083,
-1.99997083, -1.99997083, -1.99997083, -1.99985541, -1.99985541,
-1.99985541, -1.99985541, -1.99937283, -1.99937283, -1.99937283,
-1.99937283, -1.99762886, -1.99762886, -1.99762886, -1.99762886,
-1.99221523, -1.99221523, -1.99221523, -1.99221523, -1.97783629,
-1.97783629, -1.97783629, -1.97783629, -1.94507807, -1.94507807,
-1.94507807, -1.94507807, -1.8802642 , -1.8802642 , -1.8802642 ,
-1.8802642 , -1.76657936, -1.76657936, -1.76657936, -1.76657936,
-1.59538283, -1.59538283, -1.59538283, -1.59538283, -1.3846481 ,
-1.3846481 , -1.3846481 , -1.3846481 , -1.15263124, -1.15263124,
-1.15263124, -1.15263124, -0.90932231, -0.90932231, -0.90932231,
-0.90932231, -0.6608509 , -0.6608509 , -0.6608509 , -0.6608509 ,
-0.41335342, -0.41335342, -0.41335342, -0.41335342, -0.16579062,
-0.16579062, -0.16579062, -0.16579062, 0.16579062, 0.16579062,
0.16579062, 0.16579062, 0.41335342, 0.41335342, 0.41335342,
0.41335342, 0.6608509 , 0.6608509 , 0.6608509 , 0.6608509 ,
0.90932231, 0.90932231, 0.90932231, 0.90932231, 1.15263124,
1.15263124, 1.15263124, 1.15263124, 1.3846481 , 1.3846481 ,
1.3846481 , 1.3846481 , 1.59538283, 1.59538283, 1.59538283,
1.59538283, 1.76657936, 1.76657936, 1.76657936, 1.76657936,
1.8802642 , 1.8802642 , 1.8802642 , 1.8802642 , 1.94507807,
1.94507807, 1.94507807, 1.94507807, 1.97783629, 1.97783629,
1.97783629, 1.97783629, 1.99221523, 1.99221523, 1.99221523,
1.99221523, 1.99762886, 1.99762886, 1.99762886, 1.99762886,
1.99937283, 1.99937283, 1.99937283, 1.99937283, 1.99985541,
1.99985541, 1.99985541, 1.99985541, 1.99997083, 1.99997083,
1.99997083, 1.99997083, 1.99999483, 1.99999483, 1.99999483,
1.99999483, 1.99999919, 1.99999919, 1.99999919, 1.99999919,
1.99999989, 1.99999989, 1.99999989, 1.99999989, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999992, 0.39999992, 0.39999992,
0.39999992, 0.3999994 , 0.3999994 , 0.3999994 , 0.3999994 ,
0.39999613, 0.39999613, 0.39999613, 0.39999613, 0.39997817,
0.39997817, 0.39997817, 0.39997817, 0.39989181, 0.39989181,
0.39989181, 0.39989181, 0.39953094, 0.39953094, 0.39953094,
0.39953094, 0.39822935, 0.39822935, 0.39822935, 0.39822935,
0.39421346, 0.39421346, 0.39421346, 0.39421346, 0.38372292,
0.38372292, 0.38372292, 0.38372292, 0.36074975, 0.36074975,
0.36074975, 0.36074975, 0.31885934, 0.31885934, 0.31885934,
0.31885934, 0.25467937, 0.25467937, 0.25467937, 0.25467937,
0.17819705, 0.17819705, 0.17819705, 0.17819705, 0.11737308,
0.11737308, 0.11737308, 0.11737308, 0.07607236, 0.07607236,
0.07607236, 0.07607236, 0.04988617, 0.04988617, 0.04988617,
0.04988617, 0.03394821, 0.03394821, 0.03394821, 0.03394821,
0.02484589, 0.02484589, 0.02484589, 0.02484589, 0.02055858,
0.02055858, 0.02055858, 0.02055858, 0.02055858, 0.02055858,
0.02055858, 0.02055858, 0.02484589, 0.02484589, 0.02484589,
0.02484589, 0.03394821, 0.03394821, 0.03394821, 0.03394821,
0.04988617, 0.04988617, 0.04988617, 0.04988617, 0.07607236,
0.07607236, 0.07607236, 0.07607236, 0.11737308, 0.11737308,
0.11737308, 0.11737308, 0.17819705, 0.17819705, 0.17819705,
0.17819705, 0.25467937, 0.25467937, 0.25467937, 0.25467937,
0.31885934, 0.31885934, 0.31885934, 0.31885934, 0.36074975,
0.36074975, 0.36074975, 0.36074975, 0.38372292, 0.38372292,
0.38372292, 0.38372292, 0.39421346, 0.39421346, 0.39421346,
0.39421346, 0.39822935, 0.39822935, 0.39822935, 0.39822935,
0.39953094, 0.39953094, 0.39953094, 0.39953094, 0.39989181,
0.39989181, 0.39989181, 0.39989181, 0.39997817, 0.39997817,
0.39997817, 0.39997817, 0.39999613, 0.39999613, 0.39999613,
0.39999613, 0.3999994 , 0.3999994 , 0.3999994 , 0.3999994 ,
0.39999992, 0.39999992, 0.39999992, 0.39999992, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999987, 0.99999987,
0.99999987, 0.99999987, 0.99999909, 0.99999909, 0.99999909,
0.99999909, 0.99999442, 0.99999442, 0.99999442, 0.99999442,
0.99996944, 0.99996944, 0.99996944, 0.99996944, 0.99985168,
0.99985168, 0.99985168, 0.99985168, 0.99936346, 0.99936346,
0.99936346, 0.99936346, 0.99759219, 0.99759219, 0.99759219,
0.99759219, 0.99200342, 0.99200342, 0.99200342, 0.99200342,
0.9767769 , 0.9767769 , 0.9767769 , 0.9767769 , 0.9412236 ,
0.9412236 , 0.9412236 , 0.9412236 , 0.87054386, 0.87054386,
0.87054386, 0.87054386, 0.75130495, 0.75130495, 0.75130495,
0.75130495, 0.57926246, 0.57926246, 0.57926246, 0.57926246,
0.40024973, 0.40024973, 0.40024973, 0.40024973, 0.26645668,
0.26645668, 0.26645668, 0.26645668, 0.17646832, 0.17646832,
0.17646832, 0.17646832, 0.11952627, 0.11952627, 0.11952627,
0.11952627, 0.08529551, 0.08529551, 0.08529551, 0.08529551,
0.06638144, 0.06638144, 0.06638144, 0.06638144, 0.05773675,
0.05773675, 0.05773675, 0.05773675, 0.05773675, 0.05773675,
0.05773675, 0.05773675, 0.06638144, 0.06638144, 0.06638144,
0.06638144, 0.08529551, 0.08529551, 0.08529551, 0.08529551,
0.11952627, 0.11952627, 0.11952627, 0.11952627, 0.17646832,
0.17646832, 0.17646832, 0.17646832, 0.26645668, 0.26645668,
0.26645668, 0.26645668, 0.40024973, 0.40024973, 0.40024973,
0.40024973, 0.57926246, 0.57926246, 0.57926246, 0.57926246,
0.75130495, 0.75130495, 0.75130495, 0.75130495, 0.87054386,
0.87054386, 0.87054386, 0.87054386, 0.9412236 , 0.9412236 ,
0.9412236 , 0.9412236 , 0.9767769 , 0.9767769 , 0.9767769 ,
0.9767769 , 0.99200342, 0.99200342, 0.99200342, 0.99200342,
0.99759219, 0.99759219, 0.99759219, 0.99759219, 0.99936346,
0.99936346, 0.99936346, 0.99936346, 0.99985168, 0.99985168,
0.99985168, 0.99985168, 0.99996944, 0.99996944, 0.99996944,
0.99996944, 0.99999442, 0.99999442, 0.99999442, 0.99999442,
0.99999909, 0.99999909, 0.99999909, 0.99999909, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999998, 0.99999998,
0.99999998, 0.99999998, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.9999999 , -1.9999999 ,
-1.9999999 , -1.9999999 , -1.99999932, -1.99999932, -1.99999932,
-1.99999932, -1.99999585, -1.99999585, -1.99999585, -1.99999585,
-1.99997734, -1.99997734, -1.99997734, -1.99997734, -1.99989049,
-1.99989049, -1.99989049, -1.99989049, -1.99953296, -1.99953296,
-1.99953296, -1.99953296, -1.99824897, -1.99824897, -1.99824897,
-1.99824897, -1.99425094, -1.99425094, -1.99425094, -1.99425094,
-1.98350927, -1.98350927, -1.98350927, -1.98350927, -1.95861122,
-1.95861122, -1.95861122, -1.95861122, -1.90841269, -1.90841269,
-1.90841269, -1.90841269, -1.81883102, -1.81883102, -1.81883102,
-1.81883102, -1.67695384, -1.67695384, -1.67695384, -1.67695384,
-1.49066109, -1.49066109, -1.49066109, -1.49066109, -1.27974678,
-1.27974678, -1.27974678, -1.27974678, -1.05626743, -1.05626743,
-1.05626743, -1.05626743, -0.82669042, -0.82669042, -0.82669042,
-0.82669042, -0.59757719, -0.59757719, -0.59757719, -0.59757719,
-0.37196921, -0.37196921, -0.37196921, -0.37196921, -0.14921138,
-0.14921138, -0.14921138, -0.14921138, 0.14921138, 0.14921138,
0.14921138, 0.14921138, 0.37196921, 0.37196921, 0.37196921,
0.37196921, 0.59757719, 0.59757719, 0.59757719, 0.59757719,
0.82669042, 0.82669042, 0.82669042, 0.82669042, 1.05626743,
1.05626743, 1.05626743, 1.05626743, 1.27974678, 1.27974678,
1.27974678, 1.27974678, 1.49066109, 1.49066109, 1.49066109,
1.49066109, 1.67695384, 1.67695384, 1.67695384, 1.67695384,
1.81883102, 1.81883102, 1.81883102, 1.81883102, 1.90841269,
1.90841269, 1.90841269, 1.90841269, 1.95861122, 1.95861122,
1.95861122, 1.95861122, 1.98350927, 1.98350927, 1.98350927,
1.98350927, 1.99425094, 1.99425094, 1.99425094, 1.99425094,
1.99824897, 1.99824897, 1.99824897, 1.99824897, 1.99953296,
1.99953296, 1.99953296, 1.99953296, 1.99989049, 1.99989049,
1.99989049, 1.99989049, 1.99997734, 1.99997734, 1.99997734,
1.99997734, 1.99999585, 1.99999585, 1.99999585, 1.99999585,
1.99999932, 1.99999932, 1.99999932, 1.99999932, 1.9999999 ,
1.9999999 , 1.9999999 , 1.9999999 , 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.39999993, 0.39999993,
0.39999993, 0.39999993, 0.39999949, 0.39999949, 0.39999949,
0.39999949, 0.39999689, 0.39999689, 0.39999689, 0.39999689,
0.39998304, 0.39998304, 0.39998304, 0.39998304, 0.39991806,
0.39991806, 0.39991806, 0.39991806, 0.39965065, 0.39965065,
0.39965065, 0.39965065, 0.39869171, 0.39869171, 0.39869171,
0.39869171, 0.39571932, 0.39571932, 0.39571932, 0.39571932,
0.38783206, 0.38783206, 0.38783206, 0.38783206, 0.37008927,
0.37008927, 0.37008927, 0.37008927, 0.33650467, 0.33650467,
0.33650467, 0.33650467, 0.28304854, 0.28304854, 0.28304854,
0.28304854, 0.21124808, 0.21124808, 0.21124808, 0.21124808,
0.14423471, 0.14423471, 0.14423471, 0.14423471, 0.09564562,
0.09564562, 0.09564562, 0.09564562, 0.06325264, 0.06325264,
0.06325264, 0.06325264, 0.04258376, 0.04258376, 0.04258376,
0.04258376, 0.02981479, 0.02981479, 0.02981479, 0.02981479,
0.02240799, 0.02240799, 0.02240799, 0.02240799, 0.01882236,
0.01882236, 0.01882236, 0.01882236, 0.01882236, 0.01882236,
0.01882236, 0.01882236, 0.02240799, 0.02240799, 0.02240799,
0.02240799, 0.02981479, 0.02981479, 0.02981479, 0.02981479,
0.04258376, 0.04258376, 0.04258376, 0.04258376, 0.06325264,
0.06325264, 0.06325264, 0.06325264, 0.09564562, 0.09564562,
0.09564562, 0.09564562, 0.14423471, 0.14423471, 0.14423471,
0.14423471, 0.21124808, 0.21124808, 0.21124808, 0.21124808,
0.28304854, 0.28304854, 0.28304854, 0.28304854, 0.33650467,
0.33650467, 0.33650467, 0.33650467, 0.37008927, 0.37008927,
0.37008927, 0.37008927, 0.38783206, 0.38783206, 0.38783206,
0.38783206, 0.39571932, 0.39571932, 0.39571932, 0.39571932,
0.39869171, 0.39869171, 0.39869171, 0.39869171, 0.39965065,
0.39965065, 0.39965065, 0.39965065, 0.39991806, 0.39991806,
0.39991806, 0.39991806, 0.39998304, 0.39998304, 0.39998304,
0.39998304, 0.39999689, 0.39999689, 0.39999689, 0.39999689,
0.39999949, 0.39999949, 0.39999949, 0.39999949, 0.39999993,
0.39999993, 0.39999993, 0.39999993, 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999989,
0.99999989, 0.99999989, 0.99999989, 0.99999925, 0.99999925,
0.99999925, 0.99999925, 0.99999556, 0.99999556, 0.99999556,
0.99999556, 0.99997641, 0.99997641, 0.99997641, 0.99997641,
0.99988813, 0.99988813, 0.99988813, 0.99988813, 0.99952767,
0.99952767, 0.99952767, 0.99952767, 0.99822984, 0.99822984,
0.99822984, 0.99822984, 0.99413331, 0.99413331, 0.99413331,
0.99413331, 0.98287358, 0.98287358, 0.98287358, 0.98287358,
0.95611358, 0.95611358, 0.95611358, 0.95611358, 0.90147495,
0.90147495, 0.90147495, 0.90147495, 0.80606099, 0.80606099,
0.80606099, 0.80606099, 0.6629508 , 0.6629508 , 0.6629508 ,
0.6629508 , 0.48526898, 0.48526898, 0.48526898, 0.48526898,
0.33418244, 0.33418244, 0.33418244, 0.33418244, 0.22557052,
0.22557052, 0.22557052, 0.22557052, 0.15279734, 0.15279734,
0.15279734, 0.15279734, 0.10633769, 0.10633769, 0.10633769,
0.10633769, 0.07797773, 0.07797773, 0.07797773, 0.07797773,
0.06207329, 0.06207329, 0.06207329, 0.06207329, 0.05456806,
0.05456806, 0.05456806, 0.05456806, 0.05456806, 0.05456806,
0.05456806, 0.05456806, 0.06207329, 0.06207329, 0.06207329,
0.06207329, 0.07797773, 0.07797773, 0.07797773, 0.07797773,
0.10633769, 0.10633769, 0.10633769, 0.10633769, 0.15279734,
0.15279734, 0.15279734, 0.15279734, 0.22557052, 0.22557052,
0.22557052, 0.22557052, 0.33418244, 0.33418244, 0.33418244,
0.33418244, 0.48526898, 0.48526898, 0.48526898, 0.48526898,
0.6629508 , 0.6629508 , 0.6629508 , 0.6629508 , 0.80606099,
0.80606099, 0.80606099, 0.80606099, 0.90147495, 0.90147495,
0.90147495, 0.90147495, 0.95611358, 0.95611358, 0.95611358,
0.95611358, 0.98287358, 0.98287358, 0.98287358, 0.98287358,
0.99413331, 0.99413331, 0.99413331, 0.99413331, 0.99822984,
0.99822984, 0.99822984, 0.99822984, 0.99952767, 0.99952767,
0.99952767, 0.99952767, 0.99988813, 0.99988813, 0.99988813,
0.99988813, 0.99997641, 0.99997641, 0.99997641, 0.99997641,
0.99999556, 0.99999556, 0.99999556, 0.99999556, 0.99999925,
0.99999925, 0.99999925, 0.99999925, 0.99999989, 0.99999989,
0.99999989, 0.99999989, 0.99999998, 0.99999998, 0.99999998,
0.99999998, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999992,
-1.99999992, -1.99999992, -1.99999992, -1.99999944, -1.99999944,
-1.99999944, -1.99999944, -1.99999669, -1.99999669, -1.99999669,
-1.99999669, -1.99998246, -1.99998246, -1.99998246, -1.99998246,
-1.99991711, -1.99991711, -1.99991711, -1.99991711, -1.99965168,
-1.99965168, -1.99965168, -1.99965168, -1.99870348, -1.99870348,
-1.99870348, -1.99870348, -1.99574184, -1.99574184, -1.99574184,
-1.99574184, -1.98769693, -1.98769693, -1.98769693, -1.98769693,
-1.96872988, -1.96872988, -1.96872988, -1.96872988, -1.92973713,
-1.92973713, -1.92973713, -1.92973713, -1.85887548, -1.85887548,
-1.85887548, -1.85887548, -1.74322835, -1.74322835, -1.74322835,
-1.74322835, -1.58095486, -1.58095486, -1.58095486, -1.58095486,
-1.38977869, -1.38977869, -1.38977869, -1.38977869, -1.18354233,
-1.18354233, -1.18354233, -1.18354233, -0.97008458, -0.97008458,
-0.97008458, -0.97008458, -0.75449891, -0.75449891, -0.75449891,
-0.75449891, -0.54325511, -0.54325511, -0.54325511, -0.54325511,
-0.33655969, -0.33655969, -0.33655969, -0.33655969, -0.13490112,
-0.13490112, -0.13490112, -0.13490112, 0.13490112, 0.13490112,
0.13490112, 0.13490112, 0.33655969, 0.33655969, 0.33655969,
0.33655969, 0.54325511, 0.54325511, 0.54325511, 0.54325511,
0.75449891, 0.75449891, 0.75449891, 0.75449891, 0.97008458,
0.97008458, 0.97008458, 0.97008458, 1.18354233, 1.18354233,
1.18354233, 1.18354233, 1.38977869, 1.38977869, 1.38977869,
1.38977869, 1.58095486, 1.58095486, 1.58095486, 1.58095486,
1.74322835, 1.74322835, 1.74322835, 1.74322835, 1.85887548,
1.85887548, 1.85887548, 1.85887548, 1.92973713, 1.92973713,
1.92973713, 1.92973713, 1.96872988, 1.96872988, 1.96872988,
1.96872988, 1.98769693, 1.98769693, 1.98769693, 1.98769693,
1.99574184, 1.99574184, 1.99574184, 1.99574184, 1.99870348,
1.99870348, 1.99870348, 1.99870348, 1.99965168, 1.99965168,
1.99965168, 1.99965168, 1.99991711, 1.99991711, 1.99991711,
1.99991711, 1.99998246, 1.99998246, 1.99998246, 1.99998246,
1.99999669, 1.99999669, 1.99999669, 1.99999669, 1.99999944,
1.99999944, 1.99999944, 1.99999944, 1.99999992, 1.99999992,
1.99999992, 1.99999992, 1.99999999, 1.99999999, 1.99999999,
1.99999999, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.39999994,
0.39999994, 0.39999994, 0.39999994, 0.39999958, 0.39999958,
0.39999958, 0.39999958, 0.39999752, 0.39999752, 0.39999752,
0.39999752, 0.39998688, 0.39998688, 0.39998688, 0.39998688,
0.39993797, 0.39993797, 0.39993797, 0.39993797, 0.39973943,
0.39973943, 0.39973943, 0.39973943, 0.39903091, 0.39903091,
0.39903091, 0.39903091, 0.3968254 , 0.3968254 , 0.3968254 ,
0.3968254 , 0.3908901 , 0.3908901 , 0.3908901 , 0.3908901 ,
0.37721105, 0.37721105, 0.37721105, 0.37721105, 0.35042673,
0.35042673, 0.35042673, 0.35042673, 0.30601973, 0.30601973,
0.30601973, 0.30601973, 0.2429103 , 0.2429103 , 0.2429103 ,
0.2429103 , 0.17315145, 0.17315145, 0.17315145, 0.17315145,
0.11794307, 0.11794307, 0.11794307, 0.11794307, 0.07926119,
0.07926119, 0.07926119, 0.07926119, 0.05354337, 0.05354337,
0.05354337, 0.05354337, 0.03697472, 0.03697472, 0.03697472,
0.03697472, 0.02657161, 0.02657161, 0.02657161, 0.02657161,
0.02044322, 0.02044322, 0.02044322, 0.02044322, 0.01738792,
0.01738792, 0.01738792, 0.01738792, 0.01738792, 0.01738792,
0.01738792, 0.01738792, 0.02044322, 0.02044322, 0.02044322,
0.02044322, 0.02657161, 0.02657161, 0.02657161, 0.02657161,
0.03697472, 0.03697472, 0.03697472, 0.03697472, 0.05354337,
0.05354337, 0.05354337, 0.05354337, 0.07926119, 0.07926119,
0.07926119, 0.07926119, 0.11794307, 0.11794307, 0.11794307,
0.11794307, 0.17315145, 0.17315145, 0.17315145, 0.17315145,
0.2429103 , 0.2429103 , 0.2429103 , 0.2429103 , 0.30601973,
0.30601973, 0.30601973, 0.30601973, 0.35042673, 0.35042673,
0.35042673, 0.35042673, 0.37721105, 0.37721105, 0.37721105,
0.37721105, 0.3908901 , 0.3908901 , 0.3908901 , 0.3908901 ,
0.3968254 , 0.3968254 , 0.3968254 , 0.3968254 , 0.39903091,
0.39903091, 0.39903091, 0.39903091, 0.39973943, 0.39973943,
0.39973943, 0.39973943, 0.39993797, 0.39993797, 0.39993797,
0.39993797, 0.39998688, 0.39998688, 0.39998688, 0.39998688,
0.39999752, 0.39999752, 0.39999752, 0.39999752, 0.39999958,
0.39999958, 0.39999958, 0.39999958, 0.39999994, 0.39999994,
0.39999994, 0.39999994, 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999939,
0.99999939, 0.99999939, 0.99999939, 0.99999649, 0.99999649,
0.99999649, 0.99999649, 0.99998183, 0.99998183, 0.99998183,
0.99998183, 0.99991558, 0.99991558, 0.99991558, 0.99991558,
0.99964859, 0.99964859, 0.99964859, 0.99964859, 0.99869334,
0.99869334, 0.99869334, 0.99869334, 0.99567568, 0.99567568,
0.99567568, 0.99567568, 0.98731173, 0.98731173, 0.98731173,
0.98731173, 0.96710867, 0.96710867, 0.96710867, 0.96710867,
0.92484524, 0.92484524, 0.92484524, 0.92484524, 0.84862997,
0.84862997, 0.84862997, 0.84862997, 0.73030183, 0.73030183,
0.73030183, 0.73030183, 0.57045438, 0.57045438, 0.57045438,
0.57045438, 0.40816609, 0.40816609, 0.40816609, 0.40816609,
0.28274734, 0.28274734, 0.28274734, 0.28274734, 0.19398103,
0.19398103, 0.19398103, 0.19398103, 0.13432377, 0.13432377,
0.13432377, 0.13432377, 0.09586862, 0.09586862, 0.09586862,
0.09586862, 0.07203503, 0.07203503, 0.07203503, 0.07203503,
0.05845869, 0.05845869, 0.05845869, 0.05845869, 0.05185684,
0.05185684, 0.05185684, 0.05185684, 0.05185684, 0.05185684,
0.05185684, 0.05185684, 0.05845869, 0.05845869, 0.05845869,
0.05845869, 0.07203503, 0.07203503, 0.07203503, 0.07203503,
0.09586862, 0.09586862, 0.09586862, 0.09586862, 0.13432377,
0.13432377, 0.13432377, 0.13432377, 0.19398103, 0.19398103,
0.19398103, 0.19398103, 0.28274734, 0.28274734, 0.28274734,
0.28274734, 0.40816609, 0.40816609, 0.40816609, 0.40816609,
0.57045438, 0.57045438, 0.57045438, 0.57045438, 0.73030183,
0.73030183, 0.73030183, 0.73030183, 0.84862997, 0.84862997,
0.84862997, 0.84862997, 0.92484524, 0.92484524, 0.92484524,
0.92484524, 0.96710867, 0.96710867, 0.96710867, 0.96710867,
0.98731173, 0.98731173, 0.98731173, 0.98731173, 0.99567568,
0.99567568, 0.99567568, 0.99567568, 0.99869334, 0.99869334,
0.99869334, 0.99869334, 0.99964859, 0.99964859, 0.99964859,
0.99964859, 0.99991558, 0.99991558, 0.99991558, 0.99991558,
0.99998183, 0.99998183, 0.99998183, 0.99998183, 0.99999649,
0.99999649, 0.99999649, 0.99999649, 0.99999939, 0.99999939,
0.99999939, 0.99999939, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999999, -1.99999999, -1.99999999, -1.99999999,
-1.99999993, -1.99999993, -1.99999993, -1.99999993, -1.99999954,
-1.99999954, -1.99999954, -1.99999954, -1.99999738, -1.99999738,
-1.99999738, -1.99999738, -1.99998647, -1.99998647, -1.99998647,
-1.99998647, -1.99993728, -1.99993728, -1.99993728, -1.99993728,
-1.99973987, -1.99973987, -1.99973987, -1.99973987, -1.99903782,
-1.99903782, -1.99903782, -1.99903782, -1.99683832, -1.99683832,
-1.99683832, -1.99683832, -1.99080138, -1.99080138, -1.99080138,
-1.99080138, -1.97633249, -1.97633249, -1.97633249, -1.97633249,
-1.94599313, -1.94599313, -1.94599313, -1.94599313, -1.88979468,
-1.88979468, -1.88979468, -1.88979468, -1.79631905, -1.79631905,
-1.79631905, -1.79631905, -1.6576443 , -1.6576443 , -1.6576443 ,
-1.6576443 , -1.48538656, -1.48538656, -1.48538656, -1.48538656,
-1.2953169 , -1.2953169 , -1.2953169 , -1.2953169 , -1.09614182,
-1.09614182, -1.09614182, -1.09614182, -0.89312519, -0.89312519,
-0.89312519, -0.89312519, -0.69159993, -0.69159993, -0.69159993,
-0.69159993, -0.49608761, -0.49608761, -0.49608761, -0.49608761,
-0.30589519, -0.30589519, -0.30589519, -0.30589519, -0.1224437 ,
-0.1224437 , -0.1224437 , -0.1224437 , 0.1224437 , 0.1224437 ,
0.1224437 , 0.1224437 , 0.30589519, 0.30589519, 0.30589519,
0.30589519, 0.49608761, 0.49608761, 0.49608761, 0.49608761,
0.69159993, 0.69159993, 0.69159993, 0.69159993, 0.89312519,
0.89312519, 0.89312519, 0.89312519, 1.09614182, 1.09614182,
1.09614182, 1.09614182, 1.2953169 , 1.2953169 , 1.2953169 ,
1.2953169 , 1.48538656, 1.48538656, 1.48538656, 1.48538656,
1.6576443 , 1.6576443 , 1.6576443 , 1.6576443 , 1.79631905,
1.79631905, 1.79631905, 1.79631905, 1.88979468, 1.88979468,
1.88979468, 1.88979468, 1.94599313, 1.94599313, 1.94599313,
1.94599313, 1.97633249, 1.97633249, 1.97633249, 1.97633249,
1.99080138, 1.99080138, 1.99080138, 1.99080138, 1.99683832,
1.99683832, 1.99683832, 1.99683832, 1.99903782, 1.99903782,
1.99903782, 1.99903782, 1.99973987, 1.99973987, 1.99973987,
1.99973987, 1.99993728, 1.99993728, 1.99993728, 1.99993728,
1.99998647, 1.99998647, 1.99998647, 1.99998647, 1.99999738,
1.99999738, 1.99999738, 1.99999738, 1.99999954, 1.99999954,
1.99999954, 1.99999954, 1.99999993, 1.99999993, 1.99999993,
1.99999993, 1.99999999, 1.99999999, 1.99999999, 1.99999999,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.39999995, 0.39999995, 0.39999995, 0.39999995, 0.39999966,
0.39999966, 0.39999966, 0.39999966, 0.39999804, 0.39999804,
0.39999804, 0.39999804, 0.39998987, 0.39998987, 0.39998987,
0.39998987, 0.39995307, 0.39995307, 0.39995307, 0.39995307,
0.39980539, 0.39980539, 0.39980539, 0.39980539, 0.3992806 ,
0.3992806 , 0.3992806 , 0.3992806 , 0.39764064, 0.39764064,
0.39764064, 0.39764064, 0.39317093, 0.39317093, 0.39317093,
0.39317093, 0.38264177, 0.38264177, 0.38264177, 0.38264177,
0.36137899, 0.36137899, 0.36137899, 0.36137899, 0.32475714,
0.32475714, 0.32475714, 0.32475714, 0.27081681, 0.27081681,
0.27081681, 0.27081681, 0.20299886, 0.20299886, 0.20299886,
0.20299886, 0.14255583, 0.14255583, 0.14255583, 0.14255583,
0.09774256, 0.09774256, 0.09774256, 0.09774256, 0.06676014,
0.06676014, 0.06676014, 0.06676014, 0.0460604 , 0.0460604 ,
0.0460604 , 0.0460604 , 0.03258929, 0.03258929, 0.03258929,
0.03258929, 0.02397966, 0.02397966, 0.02397966, 0.02397966,
0.01882915, 0.01882915, 0.01882915, 0.01882915, 0.01618681,
0.01618681, 0.01618681, 0.01618681, 0.01618681, 0.01618681,
0.01618681, 0.01618681, 0.01882915, 0.01882915, 0.01882915,
0.01882915, 0.02397966, 0.02397966, 0.02397966, 0.02397966,
0.03258929, 0.03258929, 0.03258929, 0.03258929, 0.0460604 ,
0.0460604 , 0.0460604 , 0.0460604 , 0.06676014, 0.06676014,
0.06676014, 0.06676014, 0.09774256, 0.09774256, 0.09774256,
0.09774256, 0.14255583, 0.14255583, 0.14255583, 0.14255583,
0.20299886, 0.20299886, 0.20299886, 0.20299886, 0.27081681,
0.27081681, 0.27081681, 0.27081681, 0.32475714, 0.32475714,
0.32475714, 0.32475714, 0.36137899, 0.36137899, 0.36137899,
0.36137899, 0.38264177, 0.38264177, 0.38264177, 0.38264177,
0.39317093, 0.39317093, 0.39317093, 0.39317093, 0.39764064,
0.39764064, 0.39764064, 0.39764064, 0.3992806 , 0.3992806 ,
0.3992806 , 0.3992806 , 0.39980539, 0.39980539, 0.39980539,
0.39980539, 0.39995307, 0.39995307, 0.39995307, 0.39995307,
0.39998987, 0.39998987, 0.39998987, 0.39998987, 0.39999804,
0.39999804, 0.39999804, 0.39999804, 0.39999966, 0.39999966,
0.39999966, 0.39999966, 0.39999995, 0.39999995, 0.39999995,
0.39999995, 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999992, 0.99999992, 0.99999992, 0.99999992,
0.9999995 , 0.9999995 , 0.9999995 , 0.9999995 , 0.99999723,
0.99999723, 0.99999723, 0.99999723, 0.99998603, 0.99998603,
0.99998603, 0.99998603, 0.99993626, 0.99993626, 0.99993626,
0.99993626, 0.99973797, 0.99973797, 0.99973797, 0.99973797,
0.99903226, 0.99903226, 0.99903226, 0.99903226, 0.99680035,
0.99680035, 0.99680035, 0.99680035, 0.9905648 , 0.9905648 ,
0.9905648 , 0.9905648 , 0.97527455, 0.97527455, 0.97527455,
0.97527455, 0.94256862, 0.94256862, 0.94256862, 0.94256862,
0.88183579, 0.88183579, 0.88183579, 0.88183579, 0.78418099,
0.78418099, 0.78418099, 0.78418099, 0.64735855, 0.64735855,
0.64735855, 0.64735855, 0.48541238, 0.48541238, 0.48541238,
0.48541238, 0.34650377, 0.34650377, 0.34650377, 0.34650377,
0.24248092, 0.24248092, 0.24248092, 0.24248092, 0.1691994 ,
0.1691994 , 0.1691994 , 0.1691994 , 0.11970527, 0.11970527,
0.11970527, 0.11970527, 0.08740499, 0.08740499, 0.08740499,
0.08740499, 0.06712094, 0.06712094, 0.06712094, 0.06712094,
0.05538396, 0.05538396, 0.05538396, 0.05538396, 0.04951554,
0.04951554, 0.04951554, 0.04951554, 0.04951554, 0.04951554,
0.04951554, 0.04951554, 0.05538396, 0.05538396, 0.05538396,
0.05538396, 0.06712094, 0.06712094, 0.06712094, 0.06712094,
0.08740499, 0.08740499, 0.08740499, 0.08740499, 0.11970527,
0.11970527, 0.11970527, 0.11970527, 0.1691994 , 0.1691994 ,
0.1691994 , 0.1691994 , 0.24248092, 0.24248092, 0.24248092,
0.24248092, 0.34650377, 0.34650377, 0.34650377, 0.34650377,
0.48541238, 0.48541238, 0.48541238, 0.48541238, 0.64735855,
0.64735855, 0.64735855, 0.64735855, 0.78418099, 0.78418099,
0.78418099, 0.78418099, 0.88183579, 0.88183579, 0.88183579,
0.88183579, 0.94256862, 0.94256862, 0.94256862, 0.94256862,
0.97527455, 0.97527455, 0.97527455, 0.97527455, 0.9905648 ,
0.9905648 , 0.9905648 , 0.9905648 , 0.99680035, 0.99680035,
0.99680035, 0.99680035, 0.99903226, 0.99903226, 0.99903226,
0.99903226, 0.99973797, 0.99973797, 0.99973797, 0.99973797,
0.99993626, 0.99993626, 0.99993626, 0.99993626, 0.99998603,
0.99998603, 0.99998603, 0.99998603, 0.99999723, 0.99999723,
0.99999723, 0.99999723, 0.9999995 , 0.9999995 , 0.9999995 ,
0.9999995 , 0.99999992, 0.99999992, 0.99999992, 0.99999992,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999999, -1.99999999, -1.99999999,
-1.99999999, -1.99999994, -1.99999994, -1.99999994, -1.99999994,
-1.99999963, -1.99999963, -1.99999963, -1.99999963, -1.99999794,
-1.99999794, -1.99999794, -1.99999794, -1.99998958, -1.99998958,
-1.99998958, -1.99998958, -1.99995256, -1.99995256, -1.99995256,
-1.99995256, -1.99980549, -1.99980549, -1.99980549, -1.99980549,
-1.99928452, -1.99928452, -1.99928452, -1.99928452, -1.99764753,
-1.99764753, -1.99764753, -1.99764753, -1.99311048, -1.99311048,
-1.99311048, -1.99311048, -1.98206428, -1.98206428, -1.98206428,
-1.98206428, -1.95844341, -1.95844341, -1.95844341, -1.95844341,
-1.91379852, -1.91379852, -1.91379852, -1.91379852, -1.83816147,
-1.83816147, -1.83816147, -1.83816147, -1.72200283, -1.72200283,
-1.72200283, -1.72200283, -1.5686055 , -1.5686055 , -1.5686055 ,
-1.5686055 , -1.39383447, -1.39383447, -1.39383447, -1.39383447,
-1.20815672, -1.20815672, -1.20815672, -1.20815672, -1.0169296 ,
-1.0169296 , -1.0169296 , -1.0169296 , -0.82477131, -0.82477131,
-0.82477131, -0.82477131, -0.6364046 , -0.6364046 , -0.6364046 ,
-0.6364046 , -0.4547917 , -0.4547917 , -0.4547917 , -0.4547917 ,
-0.2790745 , -0.2790745 , -0.2790745 , -0.2790745 , -0.11151766,
-0.11151766, -0.11151766, -0.11151766, 0.11151766, 0.11151766,
0.11151766, 0.11151766, 0.2790745 , 0.2790745 , 0.2790745 ,
0.2790745 , 0.4547917 , 0.4547917 , 0.4547917 , 0.4547917 ,
0.6364046 , 0.6364046 , 0.6364046 , 0.6364046 , 0.82477131,
0.82477131, 0.82477131, 0.82477131, 1.0169296 , 1.0169296 ,
1.0169296 , 1.0169296 , 1.20815672, 1.20815672, 1.20815672,
1.20815672, 1.39383447, 1.39383447, 1.39383447, 1.39383447,
1.5686055 , 1.5686055 , 1.5686055 , 1.5686055 , 1.72200283,
1.72200283, 1.72200283, 1.72200283, 1.83816147, 1.83816147,
1.83816147, 1.83816147, 1.91379852, 1.91379852, 1.91379852,
1.91379852, 1.95844341, 1.95844341, 1.95844341, 1.95844341,
1.98206428, 1.98206428, 1.98206428, 1.98206428, 1.99311048,
1.99311048, 1.99311048, 1.99311048, 1.99764753, 1.99764753,
1.99764753, 1.99764753, 1.99928452, 1.99928452, 1.99928452,
1.99928452, 1.99980549, 1.99980549, 1.99980549, 1.99980549,
1.99995256, 1.99995256, 1.99995256, 1.99995256, 1.99998958,
1.99998958, 1.99998958, 1.99998958, 1.99999794, 1.99999794,
1.99999794, 1.99999794, 1.99999963, 1.99999963, 1.99999963,
1.99999963, 1.99999994, 1.99999994, 1.99999994, 1.99999994,
1.99999999, 1.99999999, 1.99999999, 1.99999999, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.39999995, 0.39999995, 0.39999995, 0.39999995,
0.39999972, 0.39999972, 0.39999972, 0.39999972, 0.39999845,
0.39999845, 0.39999845, 0.39999845, 0.3999922 , 0.3999922 ,
0.3999922 , 0.3999922 , 0.3999645 , 0.3999645 , 0.3999645 ,
0.3999645 , 0.39985447, 0.39985447, 0.39985447, 0.39985447,
0.39946494, 0.39946494, 0.39946494, 0.39946494, 0.39824326,
0.39824326, 0.39824326, 0.39824326, 0.39487515, 0.39487515,
0.39487515, 0.39487515, 0.38678213, 0.38678213, 0.38678213,
0.38678213, 0.36997261, 0.36997261, 0.36997261, 0.36997261,
0.33997315, 0.33997315, 0.33997315, 0.33997315, 0.29399724,
0.29399724, 0.29399724, 0.29399724, 0.23259591, 0.23259591,
0.23259591, 0.23259591, 0.16883656, 0.16883656, 0.16883656,
0.16883656, 0.1184801 , 0.1184801 , 0.1184801 , 0.1184801 ,
0.08215271, 0.08215271, 0.08215271, 0.08215271, 0.05707693,
0.05707693, 0.05707693, 0.05707693, 0.04021806, 0.04021806,
0.04021806, 0.04021806, 0.02909278, 0.02909278, 0.02909278,
0.02909278, 0.02186882, 0.02186882, 0.02186882, 0.02186882,
0.01748226, 0.01748226, 0.01748226, 0.01748226, 0.01516957,
0.01516957, 0.01516957, 0.01516957, 0.01516957, 0.01516957,
0.01516957, 0.01516957, 0.01748226, 0.01748226, 0.01748226,
0.01748226, 0.02186882, 0.02186882, 0.02186882, 0.02186882,
0.02909278, 0.02909278, 0.02909278, 0.02909278, 0.04021806,
0.04021806, 0.04021806, 0.04021806, 0.05707693, 0.05707693,
0.05707693, 0.05707693, 0.08215271, 0.08215271, 0.08215271,
0.08215271, 0.1184801 , 0.1184801 , 0.1184801 , 0.1184801 ,
0.16883656, 0.16883656, 0.16883656, 0.16883656, 0.23259591,
0.23259591, 0.23259591, 0.23259591, 0.29399724, 0.29399724,
0.29399724, 0.29399724, 0.33997315, 0.33997315, 0.33997315,
0.33997315, 0.36997261, 0.36997261, 0.36997261, 0.36997261,
0.38678213, 0.38678213, 0.38678213, 0.38678213, 0.39487515,
0.39487515, 0.39487515, 0.39487515, 0.39824326, 0.39824326,
0.39824326, 0.39824326, 0.39946494, 0.39946494, 0.39946494,
0.39946494, 0.39985447, 0.39985447, 0.39985447, 0.39985447,
0.3999645 , 0.3999645 , 0.3999645 , 0.3999645 , 0.3999922 ,
0.3999922 , 0.3999922 , 0.3999922 , 0.39999845, 0.39999845,
0.39999845, 0.39999845, 0.39999972, 0.39999972, 0.39999972,
0.39999972, 0.39999995, 0.39999995, 0.39999995, 0.39999995,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999993, 0.99999993, 0.99999993,
0.99999993, 0.9999996 , 0.9999996 , 0.9999996 , 0.9999996 ,
0.99999783, 0.99999783, 0.99999783, 0.99999783, 0.99998928,
0.99998928, 0.99998928, 0.99998928, 0.99995186, 0.99995186,
0.99995186, 0.99995186, 0.99980426, 0.99980426, 0.99980426,
0.99980426, 0.99928131, 0.99928131, 0.99928131, 0.99928131,
0.99762508, 0.99762508, 0.99762508, 0.99762508, 0.99296268,
0.99296268, 0.99296268, 0.99296268, 0.98136837, 0.98136837,
0.98136837, 0.98136837, 0.95605219, 0.95605219, 0.95605219,
0.95605219, 0.90775469, 0.90775469, 0.90775469, 0.90775469,
0.8274799 , 0.8274799 , 0.8274799 , 0.8274799 , 0.71123499,
0.71123499, 0.71123499, 0.71123499, 0.56257394, 0.56257394,
0.56257394, 0.56257394, 0.41482443, 0.41482443, 0.41482443,
0.41482443, 0.29735686, 0.29735686, 0.29735686, 0.29735686,
0.21063026, 0.21063026, 0.21063026, 0.21063026, 0.14950195,
0.14950195, 0.14950195, 0.14950195, 0.10795008, 0.10795008,
0.10795008, 0.10795008, 0.08045076, 0.08045076, 0.08045076,
0.08045076, 0.06299373, 0.06299373, 0.06299373, 0.06299373,
0.05273851, 0.05273851, 0.05273851, 0.05273851, 0.04747753,
0.04747753, 0.04747753, 0.04747753, 0.04747753, 0.04747753,
0.04747753, 0.04747753, 0.05273851, 0.05273851, 0.05273851,
0.05273851, 0.06299373, 0.06299373, 0.06299373, 0.06299373,
0.08045076, 0.08045076, 0.08045076, 0.08045076, 0.10795008,
0.10795008, 0.10795008, 0.10795008, 0.14950195, 0.14950195,
0.14950195, 0.14950195, 0.21063026, 0.21063026, 0.21063026,
0.21063026, 0.29735686, 0.29735686, 0.29735686, 0.29735686,
0.41482443, 0.41482443, 0.41482443, 0.41482443, 0.56257394,
0.56257394, 0.56257394, 0.56257394, 0.71123499, 0.71123499,
0.71123499, 0.71123499, 0.8274799 , 0.8274799 , 0.8274799 ,
0.8274799 , 0.90775469, 0.90775469, 0.90775469, 0.90775469,
0.95605219, 0.95605219, 0.95605219, 0.95605219, 0.98136837,
0.98136837, 0.98136837, 0.98136837, 0.99296268, 0.99296268,
0.99296268, 0.99296268, 0.99762508, 0.99762508, 0.99762508,
0.99762508, 0.99928131, 0.99928131, 0.99928131, 0.99928131,
0.99980426, 0.99980426, 0.99980426, 0.99980426, 0.99995186,
0.99995186, 0.99995186, 0.99995186, 0.99998928, 0.99998928,
0.99998928, 0.99998928, 0.99999783, 0.99999783, 0.99999783,
0.99999783, 0.9999996 , 0.9999996 , 0.9999996 , 0.9999996 ,
0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999999,
0.99999999, 0.99999999, 0.99999999, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999995, -1.99999995, -1.99999995,
-1.99999995, -1.9999997 , -1.9999997 , -1.9999997 , -1.9999997 ,
-1.99999838, -1.99999838, -1.99999838, -1.99999838, -1.999992 ,
-1.999992 , -1.999992 , -1.999992 , -1.99996412, -1.99996412,
-1.99996412, -1.99996412, -1.9998544 , -1.9998544 , -1.9998544 ,
-1.9998544 , -1.99946704, -1.99946704, -1.99946704, -1.99946704,
-1.99824645, -1.99824645, -1.99824645, -1.99824645, -1.99483254,
-1.99483254, -1.99483254, -1.99483254, -1.98639614, -1.98639614,
-1.98639614, -1.98639614, -1.96800734, -1.96800734, -1.96800734,
-1.96800734, -1.93252426, -1.93252426, -1.93252426, -1.93252426,
-1.87126626, -1.87126626, -1.87126626, -1.87126626, -1.7751206 ,
-1.7751206 , -1.7751206 , -1.7751206 , -1.64074768, -1.64074768,
-1.64074768, -1.64074768, -1.48098841, -1.48098841, -1.48098841,
-1.48098841, -1.30798639, -1.30798639, -1.30798639, -1.30798639,
-1.12825891, -1.12825891, -1.12825891, -1.12825891, -0.94534791,
-0.94534791, -0.94534791, -0.94534791, -0.76396357, -0.76396357,
-0.76396357, -0.76396357, -0.58764765, -0.58764765, -0.58764765,
-0.58764765, -0.41836529, -0.41836529, -0.41836529, -0.41836529,
-0.25542058, -0.25542058, -0.25542058, -0.25542058, -0.10187127,
-0.10187127, -0.10187127, -0.10187127, 0.10187127, 0.10187127,
0.10187127, 0.10187127, 0.25542058, 0.25542058, 0.25542058,
0.25542058, 0.41836529, 0.41836529, 0.41836529, 0.41836529,
0.58764765, 0.58764765, 0.58764765, 0.58764765, 0.76396357,
0.76396357, 0.76396357, 0.76396357, 0.94534791, 0.94534791,
0.94534791, 0.94534791, 1.12825891, 1.12825891, 1.12825891,
1.12825891, 1.30798639, 1.30798639, 1.30798639, 1.30798639,
1.48098841, 1.48098841, 1.48098841, 1.48098841, 1.64074768,
1.64074768, 1.64074768, 1.64074768, 1.7751206 , 1.7751206 ,
1.7751206 , 1.7751206 , 1.87126626, 1.87126626, 1.87126626,
1.87126626, 1.93252426, 1.93252426, 1.93252426, 1.93252426,
1.96800734, 1.96800734, 1.96800734, 1.96800734, 1.98639614,
1.98639614, 1.98639614, 1.98639614, 1.99483254, 1.99483254,
1.99483254, 1.99483254, 1.99824645, 1.99824645, 1.99824645,
1.99824645, 1.99946704, 1.99946704, 1.99946704, 1.99946704,
1.9998544 , 1.9998544 , 1.9998544 , 1.9998544 , 1.99996412,
1.99996412, 1.99996412, 1.99996412, 1.999992 , 1.999992 ,
1.999992 , 1.999992 , 1.99999838, 1.99999838, 1.99999838,
1.99999838, 1.9999997 , 1.9999997 , 1.9999997 , 1.9999997 ,
1.99999995, 1.99999995, 1.99999995, 1.99999995, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999996, 0.39999996, 0.39999996,
0.39999996, 0.39999978, 0.39999978, 0.39999978, 0.39999978,
0.39999879, 0.39999879, 0.39999879, 0.39999879, 0.39999401,
0.39999401, 0.39999401, 0.39999401, 0.39997315, 0.39997315,
0.39997315, 0.39997315, 0.39989106, 0.39989106, 0.39989106,
0.39989106, 0.39960137, 0.39960137, 0.39960137, 0.39960137,
0.39868982, 0.39868982, 0.39868982, 0.39868982, 0.39615045,
0.39615045, 0.39615045, 0.39615045, 0.38993783, 0.38993783,
0.38993783, 0.38993783, 0.37669775, 0.37669775, 0.37669775,
0.37669775, 0.35227852, 0.35227852, 0.35227852, 0.35227852,
0.31341098, 0.31341098, 0.31341098, 0.31341098, 0.25954489,
0.25954489, 0.25954489, 0.25954489, 0.19612856, 0.19612856,
0.19612856, 0.19612856, 0.14111015, 0.14111015, 0.14111015,
0.14111015, 0.09961622, 0.09961622, 0.09961622, 0.09961622,
0.06999558, 0.06999558, 0.06999558, 0.06999558, 0.04947879,
0.04947879, 0.04947879, 0.04947879, 0.03558078, 0.03558078,
0.03558078, 0.03558078, 0.02625646, 0.02625646, 0.02625646,
0.02625646, 0.02012156, 0.02012156, 0.02012156, 0.02012156,
0.01634356, 0.01634356, 0.01634356, 0.01634356, 0.01429955,
0.01429955, 0.01429955, 0.01429955, 0.01429955, 0.01429955,
0.01429955, 0.01429955, 0.01634356, 0.01634356, 0.01634356,
0.01634356, 0.02012156, 0.02012156, 0.02012156, 0.02012156,
0.02625646, 0.02625646, 0.02625646, 0.02625646, 0.03558078,
0.03558078, 0.03558078, 0.03558078, 0.04947879, 0.04947879,
0.04947879, 0.04947879, 0.06999558, 0.06999558, 0.06999558,
0.06999558, 0.09961622, 0.09961622, 0.09961622, 0.09961622,
0.14111015, 0.14111015, 0.14111015, 0.14111015, 0.19612856,
0.19612856, 0.19612856, 0.19612856, 0.25954489, 0.25954489,
0.25954489, 0.25954489, 0.31341098, 0.31341098, 0.31341098,
0.31341098, 0.35227852, 0.35227852, 0.35227852, 0.35227852,
0.37669775, 0.37669775, 0.37669775, 0.37669775, 0.38993783,
0.38993783, 0.38993783, 0.38993783, 0.39615045, 0.39615045,
0.39615045, 0.39615045, 0.39868982, 0.39868982, 0.39868982,
0.39868982, 0.39960137, 0.39960137, 0.39960137, 0.39960137,
0.39989106, 0.39989106, 0.39989106, 0.39989106, 0.39997315,
0.39997315, 0.39997315, 0.39997315, 0.39999401, 0.39999401,
0.39999401, 0.39999401, 0.39999879, 0.39999879, 0.39999879,
0.39999879, 0.39999978, 0.39999978, 0.39999978, 0.39999978,
0.39999996, 0.39999996, 0.39999996, 0.39999996, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999968, 0.99999968, 0.99999968,
0.99999968, 0.99999831, 0.99999831, 0.99999831, 0.99999831,
0.99999178, 0.99999178, 0.99999178, 0.99999178, 0.99996362,
0.99996362, 0.99996362, 0.99996362, 0.99985355, 0.99985355,
0.99985355, 0.99985355, 0.99946503, 0.99946503, 0.99946503,
0.99946503, 0.99823265, 0.99823265, 0.99823265, 0.99823265,
0.99473829, 0.99473829, 0.99473829, 0.99473829, 0.98593371,
0.98593371, 0.98593371, 0.98593371, 0.96633684, 0.96633684,
0.96633684, 0.96633684, 0.92800166, 0.92800166, 0.92800166,
0.92800166, 0.86230381, 0.86230381, 0.86230381, 0.86230381,
0.7637657 , 0.7637657 , 0.7637657 , 0.7637657 , 0.63342418,
0.63342418, 0.63342418, 0.63342418, 0.48532735, 0.48532735,
0.48532735, 0.48532735, 0.3572482 , 0.3572482 , 0.3572482 ,
0.3572482 , 0.25800772, 0.25800772, 0.25800772, 0.25800772,
0.18513694, 0.18513694, 0.18513694, 0.18513694, 0.13365751,
0.13365751, 0.13365751, 0.13365751, 0.09833623, 0.09833623,
0.09833623, 0.09833623, 0.07466504, 0.07466504, 0.07466504,
0.07466504, 0.05948054, 0.05948054, 0.05948054, 0.05948054,
0.05044055, 0.05044055, 0.05044055, 0.05044055, 0.04569117,
0.04569117, 0.04569117, 0.04569117, 0.04569117, 0.04569117,
0.04569117, 0.04569117, 0.05044055, 0.05044055, 0.05044055,
0.05044055, 0.05948054, 0.05948054, 0.05948054, 0.05948054,
0.07466504, 0.07466504, 0.07466504, 0.07466504, 0.09833623,
0.09833623, 0.09833623, 0.09833623, 0.13365751, 0.13365751,
0.13365751, 0.13365751, 0.18513694, 0.18513694, 0.18513694,
0.18513694, 0.25800772, 0.25800772, 0.25800772, 0.25800772,
0.3572482 , 0.3572482 , 0.3572482 , 0.3572482 , 0.48532735,
0.48532735, 0.48532735, 0.48532735, 0.63342418, 0.63342418,
0.63342418, 0.63342418, 0.7637657 , 0.7637657 , 0.7637657 ,
0.7637657 , 0.86230381, 0.86230381, 0.86230381, 0.86230381,
0.92800166, 0.92800166, 0.92800166, 0.92800166, 0.96633684,
0.96633684, 0.96633684, 0.96633684, 0.98593371, 0.98593371,
0.98593371, 0.98593371, 0.99473829, 0.99473829, 0.99473829,
0.99473829, 0.99823265, 0.99823265, 0.99823265, 0.99823265,
0.99946503, 0.99946503, 0.99946503, 0.99946503, 0.99985355,
0.99985355, 0.99985355, 0.99985355, 0.99996362, 0.99996362,
0.99996362, 0.99996362, 0.99999178, 0.99999178, 0.99999178,
0.99999178, 0.99999831, 0.99999831, 0.99999831, 0.99999831,
0.99999968, 0.99999968, 0.99999968, 0.99999968, 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.99999999, 0.99999999,
0.99999999, 0.99999999, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.99999996, -1.99999996,
-1.99999996, -1.99999996, -1.99999976, -1.99999976, -1.99999976,
-1.99999976, -1.99999873, -1.99999873, -1.99999873, -1.99999873,
-1.99999386, -1.99999386, -1.99999386, -1.99999386, -1.99997286,
-1.99997286, -1.99997286, -1.99997286, -1.9998909 , -1.9998909 ,
-1.9998909 , -1.9998909 , -1.99960238, -1.99960238, -1.99960238,
-1.99960238, -1.99869083, -1.99869083, -1.99869083, -1.99869083,
-1.99611953, -1.99611953, -1.99611953, -1.99611953, -1.98967558,
-1.98967558, -1.98967558, -1.98967558, -1.97536781, -1.97536781,
-1.97536781, -1.97536781, -1.94718001, -1.94718001, -1.94718001,
-1.94718001, -1.89752562, -1.89752562, -1.89752562, -1.89752562,
-1.81822132, -1.81822132, -1.81822132, -1.81822132, -1.70275847,
-1.70275847, -1.70275847, -1.70275847, -1.55796713, -1.55796713,
-1.55796713, -1.55796713, -1.39732578, -1.39732578, -1.39732578,
-1.39732578, -1.2283551 , -1.2283551 , -1.2283551 , -1.2283551 ,
-1.05514603, -1.05514603, -1.05514603, -1.05514603, -0.8809212 ,
-0.8809212 , -0.8809212 , -0.8809212 , -0.70967418, -0.70967418,
-0.70967418, -0.70967418, -0.54426035, -0.54426035, -0.54426035,
-0.54426035, -0.38602243, -0.38602243, -0.38602243, -0.38602243,
-0.23441347, -0.23441347, -0.23441347, -0.23441347, -0.09330473,
-0.09330473, -0.09330473, -0.09330473, 0.09330473, 0.09330473,
0.09330473, 0.09330473, 0.23441347, 0.23441347, 0.23441347,
0.23441347, 0.38602243, 0.38602243, 0.38602243, 0.38602243,
0.54426035, 0.54426035, 0.54426035, 0.54426035, 0.70967418,
0.70967418, 0.70967418, 0.70967418, 0.8809212 , 0.8809212 ,
0.8809212 , 0.8809212 , 1.05514603, 1.05514603, 1.05514603,
1.05514603, 1.2283551 , 1.2283551 , 1.2283551 , 1.2283551 ,
1.39732578, 1.39732578, 1.39732578, 1.39732578, 1.55796713,
1.55796713, 1.55796713, 1.55796713, 1.70275847, 1.70275847,
1.70275847, 1.70275847, 1.81822132, 1.81822132, 1.81822132,
1.81822132, 1.89752562, 1.89752562, 1.89752562, 1.89752562,
1.94718001, 1.94718001, 1.94718001, 1.94718001, 1.97536781,
1.97536781, 1.97536781, 1.97536781, 1.98967558, 1.98967558,
1.98967558, 1.98967558, 1.99611953, 1.99611953, 1.99611953,
1.99611953, 1.99869083, 1.99869083, 1.99869083, 1.99869083,
1.99960238, 1.99960238, 1.99960238, 1.99960238, 1.9998909 ,
1.9998909 , 1.9998909 , 1.9998909 , 1.99997286, 1.99997286,
1.99997286, 1.99997286, 1.99999386, 1.99999386, 1.99999386,
1.99999386, 1.99999873, 1.99999873, 1.99999873, 1.99999873,
1.99999976, 1.99999976, 1.99999976, 1.99999976, 1.99999996,
1.99999996, 1.99999996, 1.99999996, 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.39999982, 0.39999982, 0.39999982,
0.39999982, 0.39999905, 0.39999905, 0.39999905, 0.39999905,
0.39999541, 0.39999541, 0.39999541, 0.39999541, 0.39997969,
0.39997969, 0.39997969, 0.39997969, 0.39991836, 0.39991836,
0.39991836, 0.39991836, 0.39970256, 0.39970256, 0.39970256,
0.39970256, 0.39902146, 0.39902146, 0.39902146, 0.39902146,
0.39710599, 0.39710599, 0.39710599, 0.39710599, 0.39234224,
0.39234224, 0.39234224, 0.39234224, 0.38194788, 0.38194788,
0.38194788, 0.38194788, 0.36218582, 0.36218582, 0.36218582,
0.36218582, 0.32957587, 0.32957587, 0.32957587, 0.32957587,
0.28277833, 0.28277833, 0.28277833, 0.28277833, 0.22349797,
0.22349797, 0.22349797, 0.22349797, 0.16521855, 0.16521855,
0.16521855, 0.16521855, 0.11894933, 0.11894933, 0.11894933,
0.11894933, 0.08476462, 0.08476462, 0.08476462, 0.08476462,
0.06039836, 0.06039836, 0.06039836, 0.06039836, 0.04344652,
0.04344652, 0.04344652, 0.04344652, 0.03183454, 0.03183454,
0.03183454, 0.03183454, 0.02392348, 0.02392348, 0.02392348,
0.02392348, 0.01865463, 0.01865463, 0.01865463, 0.01865463,
0.01537017, 0.01537017, 0.01537017, 0.01537017, 0.01354907,
0.01354907, 0.01354907, 0.01354907, 0.01354907, 0.01354907,
0.01354907, 0.01354907, 0.01537017, 0.01537017, 0.01537017,
0.01537017, 0.01865463, 0.01865463, 0.01865463, 0.01865463,
0.02392348, 0.02392348, 0.02392348, 0.02392348, 0.03183454,
0.03183454, 0.03183454, 0.03183454, 0.04344652, 0.04344652,
0.04344652, 0.04344652, 0.06039836, 0.06039836, 0.06039836,
0.06039836, 0.08476462, 0.08476462, 0.08476462, 0.08476462,
0.11894933, 0.11894933, 0.11894933, 0.11894933, 0.16521855,
0.16521855, 0.16521855, 0.16521855, 0.22349797, 0.22349797,
0.22349797, 0.22349797, 0.28277833, 0.28277833, 0.28277833,
0.28277833, 0.32957587, 0.32957587, 0.32957587, 0.32957587,
0.36218582, 0.36218582, 0.36218582, 0.36218582, 0.38194788,
0.38194788, 0.38194788, 0.38194788, 0.39234224, 0.39234224,
0.39234224, 0.39234224, 0.39710599, 0.39710599, 0.39710599,
0.39710599, 0.39902146, 0.39902146, 0.39902146, 0.39902146,
0.39970256, 0.39970256, 0.39970256, 0.39970256, 0.39991836,
0.39991836, 0.39991836, 0.39991836, 0.39997969, 0.39997969,
0.39997969, 0.39997969, 0.39999541, 0.39999541, 0.39999541,
0.39999541, 0.39999905, 0.39999905, 0.39999905, 0.39999905,
0.39999982, 0.39999982, 0.39999982, 0.39999982, 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999975, 0.99999975,
0.99999975, 0.99999975, 0.99999868, 0.99999868, 0.99999868,
0.99999868, 0.99999371, 0.99999371, 0.99999371, 0.99999371,
0.99997251, 0.99997251, 0.99997251, 0.99997251, 0.99989028,
0.99989028, 0.99989028, 0.99989028, 0.99960101, 0.99960101,
0.99960101, 0.99960101, 0.99868193, 0.99868193, 0.99868193,
0.99868193, 0.99605802, 0.99605802, 0.99605802, 0.99605802,
0.98936469, 0.98936469, 0.98936469, 0.98936469, 0.97419766,
0.97419766, 0.97419766, 0.97419766, 0.94382586, 0.94382586,
0.94382586, 0.94382586, 0.89027011, 0.89027011, 0.89027011,
0.89027011, 0.80722138, 0.80722138, 0.80722138, 0.80722138,
0.69386278, 0.69386278, 0.69386278, 0.69386278, 0.55552979,
0.55552979, 0.55552979, 0.55552979, 0.42047088, 0.42047088,
0.42047088, 0.42047088, 0.31041417, 0.31041417, 0.31041417,
0.31041417, 0.22624719, 0.22624719, 0.22624719, 0.22624719,
0.16451704, 0.16451704, 0.16451704, 0.16451704, 0.12073053,
0.12073053, 0.12073053, 0.12073053, 0.09035898, 0.09035898,
0.09035898, 0.09035898, 0.06979381, 0.06979381, 0.06979381,
0.06979381, 0.05645555, 0.05645555, 0.05645555, 0.05645555,
0.04842794, 0.04842794, 0.04842794, 0.04842794, 0.04411581,
0.04411581, 0.04411581, 0.04411581, 0.04411581, 0.04411581,
0.04411581, 0.04411581, 0.04842794, 0.04842794, 0.04842794,
0.04842794, 0.05645555, 0.05645555, 0.05645555, 0.05645555,
0.06979381, 0.06979381, 0.06979381, 0.06979381, 0.09035898,
0.09035898, 0.09035898, 0.09035898, 0.12073053, 0.12073053,
0.12073053, 0.12073053, 0.16451704, 0.16451704, 0.16451704,
0.16451704, 0.22624719, 0.22624719, 0.22624719, 0.22624719,
0.31041417, 0.31041417, 0.31041417, 0.31041417, 0.42047088,
0.42047088, 0.42047088, 0.42047088, 0.55552979, 0.55552979,
0.55552979, 0.55552979, 0.69386278, 0.69386278, 0.69386278,
0.69386278, 0.80722138, 0.80722138, 0.80722138, 0.80722138,
0.89027011, 0.89027011, 0.89027011, 0.89027011, 0.94382586,
0.94382586, 0.94382586, 0.94382586, 0.97419766, 0.97419766,
0.97419766, 0.97419766, 0.98936469, 0.98936469, 0.98936469,
0.98936469, 0.99605802, 0.99605802, 0.99605802, 0.99605802,
0.99868193, 0.99868193, 0.99868193, 0.99868193, 0.99960101,
0.99960101, 0.99960101, 0.99960101, 0.99989028, 0.99989028,
0.99989028, 0.99989028, 0.99997251, 0.99997251, 0.99997251,
0.99997251, 0.99999371, 0.99999371, 0.99999371, 0.99999371,
0.99999868, 0.99999868, 0.99999868, 0.99999868, 0.99999975,
0.99999975, 0.99999975, 0.99999975, 0.99999996, 0.99999996,
0.99999996, 0.99999996, 0.99999999, 0.99999999, 0.99999999,
0.99999999, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999997,
-1.99999997, -1.99999997, -1.99999997, -1.99999981, -1.99999981,
-1.99999981, -1.99999981, -1.99999901, -1.99999901, -1.99999901,
-1.99999901, -1.9999953 , -1.9999953 , -1.9999953 , -1.9999953 ,
-1.99997947, -1.99997947, -1.99997947, -1.99997947, -1.99991817,
-1.99991817, -1.99991817, -1.99991817, -1.99970295, -1.99970295,
-1.99970295, -1.99970295, -1.99902124, -1.99902124, -1.99902124,
-1.99902124, -1.99708302, -1.99708302, -1.99708302, -1.99708302,
-1.99216124, -1.99216124, -1.99216124, -1.99216124, -1.98103831,
-1.98103831, -1.98103831, -1.98103831, -1.95867062, -1.95867062,
-1.95867062, -1.95867062, -1.91844218, -1.91844218, -1.91844218,
-1.91844218, -1.85300303, -1.85300303, -1.85300303, -1.85300303,
-1.75534443, -1.75534443, -1.75534443, -1.75534443, -1.62587543,
-1.62587543, -1.62587543, -1.62587543, -1.47723802, -1.47723802,
-1.47723802, -1.47723802, -1.31873327, -1.31873327, -1.31873327,
-1.31873327, -1.1548521 , -1.1548521 , -1.1548521 , -1.1548521 ,
-0.98840454, -0.98840454, -0.98840454, -0.98840454, -0.82281519,
-0.82281519, -0.82281519, -0.82281519, -0.66100451, -0.66100451,
-0.66100451, -0.66100451, -0.50540566, -0.50540566, -0.50540566,
-0.50540566, -0.35713663, -0.35713663, -0.35713663, -0.35713663,
-0.21564818, -0.21564818, -0.21564818, -0.21564818, -0.08565761,
-0.08565761, -0.08565761, -0.08565761, 0.08565761, 0.08565761,
0.08565761, 0.08565761, 0.21564818, 0.21564818, 0.21564818,
0.21564818, 0.35713663, 0.35713663, 0.35713663, 0.35713663,
0.50540566, 0.50540566, 0.50540566, 0.50540566, 0.66100451,
0.66100451, 0.66100451, 0.66100451, 0.82281519, 0.82281519,
0.82281519, 0.82281519, 0.98840454, 0.98840454, 0.98840454,
0.98840454, 1.1548521 , 1.1548521 , 1.1548521 , 1.1548521 ,
1.31873327, 1.31873327, 1.31873327, 1.31873327, 1.47723802,
1.47723802, 1.47723802, 1.47723802, 1.62587543, 1.62587543,
1.62587543, 1.62587543, 1.75534443, 1.75534443, 1.75534443,
1.75534443, 1.85300303, 1.85300303, 1.85300303, 1.85300303,
1.91844218, 1.91844218, 1.91844218, 1.91844218, 1.95867062,
1.95867062, 1.95867062, 1.95867062, 1.98103831, 1.98103831,
1.98103831, 1.98103831, 1.99216124, 1.99216124, 1.99216124,
1.99216124, 1.99708302, 1.99708302, 1.99708302, 1.99708302,
1.99902124, 1.99902124, 1.99902124, 1.99902124, 1.99970295,
1.99970295, 1.99970295, 1.99970295, 1.99991817, 1.99991817,
1.99991817, 1.99991817, 1.99997947, 1.99997947, 1.99997947,
1.99997947, 1.9999953 , 1.9999953 , 1.9999953 , 1.9999953 ,
1.99999901, 1.99999901, 1.99999901, 1.99999901, 1.99999981,
1.99999981, 1.99999981, 1.99999981, 1.99999997, 1.99999997,
1.99999997, 1.99999997, 1.99999999, 1.99999999, 1.99999999,
1.99999999, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.39999986, 0.39999986,
0.39999986, 0.39999986, 0.39999926, 0.39999926, 0.39999926,
0.39999926, 0.39999648, 0.39999648, 0.39999648, 0.39999648,
0.39998464, 0.39998464, 0.39998464, 0.39998464, 0.39993877,
0.39993877, 0.39993877, 0.39993877, 0.39977777, 0.39977777,
0.39977777, 0.39977777, 0.39926821, 0.39926821, 0.39926821,
0.39926821, 0.39782273, 0.39782273, 0.39782273, 0.39782273,
0.39417358, 0.39417358, 0.39417358, 0.39417358, 0.38603726,
0.38603726, 0.38603726, 0.38603726, 0.37012752, 0.37012752,
0.37012752, 0.37012752, 0.34297519, 0.34297519, 0.34297519,
0.34297519, 0.30254848, 0.30254848, 0.30254848, 0.30254848,
0.24934358, 0.24934358, 0.24934358, 0.24934358, 0.19022025,
0.19022025, 0.19022025, 0.19022025, 0.13990083, 0.13990083,
0.13990083, 0.13990083, 0.10127816, 0.10127816, 0.10127816,
0.10127816, 0.07296711, 0.07296711, 0.07296711, 0.07296711,
0.05273961, 0.05273961, 0.05273961, 0.05273961, 0.03858578,
0.03858578, 0.03858578, 0.03858578, 0.02876121, 0.02876121,
0.02876121, 0.02876121, 0.02197969, 0.02197969, 0.02197969,
0.02197969, 0.01740798, 0.01740798, 0.01740798, 0.01740798,
0.01453013, 0.01453013, 0.01453013, 0.01453013, 0.01289683,
0.01289683, 0.01289683, 0.01289683, 0.01289683, 0.01289683,
0.01289683, 0.01289683, 0.01453013, 0.01453013, 0.01453013,
0.01453013, 0.01740798, 0.01740798, 0.01740798, 0.01740798,
0.02197969, 0.02197969, 0.02197969, 0.02197969, 0.02876121,
0.02876121, 0.02876121, 0.02876121, 0.03858578, 0.03858578,
0.03858578, 0.03858578, 0.05273961, 0.05273961, 0.05273961,
0.05273961, 0.07296711, 0.07296711, 0.07296711, 0.07296711,
0.10127816, 0.10127816, 0.10127816, 0.10127816, 0.13990083,
0.13990083, 0.13990083, 0.13990083, 0.19022025, 0.19022025,
0.19022025, 0.19022025, 0.24934358, 0.24934358, 0.24934358,
0.24934358, 0.30254848, 0.30254848, 0.30254848, 0.30254848,
0.34297519, 0.34297519, 0.34297519, 0.34297519, 0.37012752,
0.37012752, 0.37012752, 0.37012752, 0.38603726, 0.38603726,
0.38603726, 0.38603726, 0.39417358, 0.39417358, 0.39417358,
0.39417358, 0.39782273, 0.39782273, 0.39782273, 0.39782273,
0.39926821, 0.39926821, 0.39926821, 0.39926821, 0.39977777,
0.39977777, 0.39977777, 0.39977777, 0.39993877, 0.39993877,
0.39993877, 0.39993877, 0.39998464, 0.39998464, 0.39998464,
0.39998464, 0.39999648, 0.39999648, 0.39999648, 0.39999648,
0.39999926, 0.39999926, 0.39999926, 0.39999926, 0.39999986,
0.39999986, 0.39999986, 0.39999986, 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.9999998 ,
0.9999998 , 0.9999998 , 0.9999998 , 0.99999898, 0.99999898,
0.99999898, 0.99999898, 0.99999519, 0.99999519, 0.99999519,
0.99999519, 0.99997921, 0.99997921, 0.99997921, 0.99997921,
0.9999177 , 0.9999177 , 0.9999177 , 0.9999177 , 0.99970193,
0.99970193, 0.99970193, 0.99970193, 0.99901521, 0.99901521,
0.99901521, 0.99901521, 0.99704189, 0.99704189, 0.99704189,
0.99704189, 0.99194959, 0.99194959, 0.99194959, 0.99194959,
0.98021521, 0.98021521, 0.98021521, 0.98021521, 0.95619655,
0.95619655, 0.95619655, 0.95619655, 0.91269691, 0.91269691,
0.91269691, 0.91269691, 0.84311018, 0.84311018, 0.84311018,
0.84311018, 0.74475779, 0.74475779, 0.74475779, 0.74475779,
0.62086525, 0.62086525, 0.62086525, 0.62086525, 0.4851469 ,
0.4851469 , 0.4851469 , 0.4851469 , 0.36665175, 0.36665175,
0.36665175, 0.36665175, 0.27218245, 0.27218245, 0.27218245,
0.27218245, 0.20036728, 0.20036728, 0.20036728, 0.20036728,
0.14766957, 0.14766957, 0.14766957, 0.14766957, 0.11004216,
0.11004216, 0.11004216, 0.11004216, 0.08365907, 0.08365907,
0.08365907, 0.08365907, 0.06564286, 0.06564286, 0.06564286,
0.06564286, 0.05382506, 0.05382506, 0.05382506, 0.05382506,
0.04665258, 0.04665258, 0.04665258, 0.04665258, 0.04271899,
0.04271899, 0.04271899, 0.04271899, 0.04271899, 0.04271899,
0.04271899, 0.04271899, 0.04665258, 0.04665258, 0.04665258,
0.04665258, 0.05382506, 0.05382506, 0.05382506, 0.05382506,
0.06564286, 0.06564286, 0.06564286, 0.06564286, 0.08365907,
0.08365907, 0.08365907, 0.08365907, 0.11004216, 0.11004216,
0.11004216, 0.11004216, 0.14766957, 0.14766957, 0.14766957,
0.14766957, 0.20036728, 0.20036728, 0.20036728, 0.20036728,
0.27218245, 0.27218245, 0.27218245, 0.27218245, 0.36665175,
0.36665175, 0.36665175, 0.36665175, 0.4851469 , 0.4851469 ,
0.4851469 , 0.4851469 , 0.62086525, 0.62086525, 0.62086525,
0.62086525, 0.74475779, 0.74475779, 0.74475779, 0.74475779,
0.84311018, 0.84311018, 0.84311018, 0.84311018, 0.91269691,
0.91269691, 0.91269691, 0.91269691, 0.95619655, 0.95619655,
0.95619655, 0.95619655, 0.98021521, 0.98021521, 0.98021521,
0.98021521, 0.99194959, 0.99194959, 0.99194959, 0.99194959,
0.99704189, 0.99704189, 0.99704189, 0.99704189, 0.99901521,
0.99901521, 0.99901521, 0.99901521, 0.99970193, 0.99970193,
0.99970193, 0.99970193, 0.9999177 , 0.9999177 , 0.9999177 ,
0.9999177 , 0.99997921, 0.99997921, 0.99997921, 0.99997921,
0.99999519, 0.99999519, 0.99999519, 0.99999519, 0.99999898,
0.99999898, 0.99999898, 0.99999898, 0.9999998 , 0.9999998 ,
0.9999998 , 0.9999998 , 0.99999996, 0.99999996, 0.99999996,
0.99999996, 0.99999999, 0.99999999, 0.99999999, 0.99999999,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999997, -1.99999997, -1.99999997, -1.99999997, -1.99999985,
-1.99999985, -1.99999985, -1.99999985, -1.99999923, -1.99999923,
-1.99999923, -1.99999923, -1.9999964 , -1.9999964 , -1.9999964 ,
-1.9999964 , -1.99998447, -1.99998447, -1.99998447, -1.99998447,
-1.99993857, -1.99993857, -1.99993857, -1.99993857, -1.9997778 ,
-1.9997778 , -1.9997778 , -1.9997778 , -1.99926735, -1.99926735,
-1.99926735, -1.99926735, -1.99780536, -1.99780536, -1.99780536,
-1.99780536, -1.99404683, -1.99404683, -1.99404683, -1.99404683,
-1.98540873, -1.98540873, -1.98540873, -1.98540873, -1.96768674,
-1.96768674, -1.96768674, -1.96768674, -1.93513433, -1.93513433,
-1.93513433, -1.93513433, -1.88113567, -1.88113567, -1.88113567,
-1.88113567, -1.79913223, -1.79913223, -1.79913223, -1.79913223,
-1.68535351, -1.68535351, -1.68535351, -1.68535351, -1.548809 ,
-1.548809 , -1.548809 , -1.548809 , -1.40030833, -1.40030833,
-1.40030833, -1.40030833, -1.24549729, -1.24549729, -1.24549729,
-1.24549729, -1.08707762, -1.08707762, -1.08707762, -1.08707762,
-0.92766277, -0.92766277, -0.92766277, -0.92766277, -0.77023219,
-0.77023219, -0.77023219, -0.77023219, -0.61716861, -0.61716861,
-0.61716861, -0.61716861, -0.47043739, -0.47043739, -0.47043739,
-0.47043739, -0.33120496, -0.33120496, -0.33120496, -0.33120496,
-0.19880321, -0.19880321, -0.19880321, -0.19880321, -0.07879987,
-0.07879987, -0.07879987, -0.07879987, 0.07879987, 0.07879987,
0.07879987, 0.07879987, 0.19880321, 0.19880321, 0.19880321,
0.19880321, 0.33120496, 0.33120496, 0.33120496, 0.33120496,
0.47043739, 0.47043739, 0.47043739, 0.47043739, 0.61716861,
0.61716861, 0.61716861, 0.61716861, 0.77023219, 0.77023219,
0.77023219, 0.77023219, 0.92766277, 0.92766277, 0.92766277,
0.92766277, 1.08707762, 1.08707762, 1.08707762, 1.08707762,
1.24549729, 1.24549729, 1.24549729, 1.24549729, 1.40030833,
1.40030833, 1.40030833, 1.40030833, 1.548809 , 1.548809 ,
1.548809 , 1.548809 , 1.68535351, 1.68535351, 1.68535351,
1.68535351, 1.79913223, 1.79913223, 1.79913223, 1.79913223,
1.88113567, 1.88113567, 1.88113567, 1.88113567, 1.93513433,
1.93513433, 1.93513433, 1.93513433, 1.96768674, 1.96768674,
1.96768674, 1.96768674, 1.98540873, 1.98540873, 1.98540873,
1.98540873, 1.99404683, 1.99404683, 1.99404683, 1.99404683,
1.99780536, 1.99780536, 1.99780536, 1.99780536, 1.99926735,
1.99926735, 1.99926735, 1.99926735, 1.9997778 , 1.9997778 ,
1.9997778 , 1.9997778 , 1.99993857, 1.99993857, 1.99993857,
1.99993857, 1.99998447, 1.99998447, 1.99998447, 1.99998447,
1.9999964 , 1.9999964 , 1.9999964 , 1.9999964 , 1.99999923,
1.99999923, 1.99999923, 1.99999923, 1.99999985, 1.99999985,
1.99999985, 1.99999985, 1.99999997, 1.99999997, 1.99999997,
1.99999997, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999998, 0.39999998, 0.39999998, 0.39999998, 0.39999989,
0.39999989, 0.39999989, 0.39999989, 0.39999943, 0.39999943,
0.39999943, 0.39999943, 0.39999731, 0.39999731, 0.39999731,
0.39999731, 0.39998838, 0.39998838, 0.39998838, 0.39998838,
0.39995403, 0.39995403, 0.39995403, 0.39995403, 0.39983375,
0.39983375, 0.39983375, 0.39983375, 0.3994521 , 0.3994521 ,
0.3994521 , 0.3994521 , 0.39836087, 0.39836087, 0.39836087,
0.39836087, 0.39556797, 0.39556797, 0.39556797, 0.39556797,
0.38921587, 0.38921587, 0.38921587, 0.38921587, 0.37646798,
0.37646798, 0.37646798, 0.37646798, 0.35401533, 0.35401533,
0.35401533, 0.35401533, 0.31937688, 0.31937688, 0.31937688,
0.31937688, 0.27233327, 0.27233327, 0.27233327, 0.27233327,
0.21553987, 0.21553987, 0.21553987, 0.21553987, 0.16210813,
0.16210813, 0.16210813, 0.16210813, 0.11938562, 0.11938562,
0.11938562, 0.11938562, 0.08712103, 0.08712103, 0.08712103,
0.08712103, 0.06349711, 0.06349711, 0.06349711, 0.06349711,
0.04656451, 0.04656451, 0.04656451, 0.04656451, 0.03461305,
0.03461305, 0.03461305, 0.03461305, 0.0262067 , 0.0262067 ,
0.0262067 , 0.0262067 , 0.02033995, 0.02033995, 0.02033995,
0.02033995, 0.01633725, 0.01633725, 0.01633725, 0.01633725,
0.01379911, 0.01379911, 0.01379911, 0.01379911, 0.01232617,
0.01232617, 0.01232617, 0.01232617, 0.01232617, 0.01232617,
0.01232617, 0.01232617, 0.01379911, 0.01379911, 0.01379911,
0.01379911, 0.01633725, 0.01633725, 0.01633725, 0.01633725,
0.02033995, 0.02033995, 0.02033995, 0.02033995, 0.0262067 ,
0.0262067 , 0.0262067 , 0.0262067 , 0.03461305, 0.03461305,
0.03461305, 0.03461305, 0.04656451, 0.04656451, 0.04656451,
0.04656451, 0.06349711, 0.06349711, 0.06349711, 0.06349711,
0.08712103, 0.08712103, 0.08712103, 0.08712103, 0.11938562,
0.11938562, 0.11938562, 0.11938562, 0.16210813, 0.16210813,
0.16210813, 0.16210813, 0.21553987, 0.21553987, 0.21553987,
0.21553987, 0.27233327, 0.27233327, 0.27233327, 0.27233327,
0.31937688, 0.31937688, 0.31937688, 0.31937688, 0.35401533,
0.35401533, 0.35401533, 0.35401533, 0.37646798, 0.37646798,
0.37646798, 0.37646798, 0.38921587, 0.38921587, 0.38921587,
0.38921587, 0.39556797, 0.39556797, 0.39556797, 0.39556797,
0.39836087, 0.39836087, 0.39836087, 0.39836087, 0.3994521 ,
0.3994521 , 0.3994521 , 0.3994521 , 0.39983375, 0.39983375,
0.39983375, 0.39983375, 0.39995403, 0.39995403, 0.39995403,
0.39995403, 0.39998838, 0.39998838, 0.39998838, 0.39998838,
0.39999731, 0.39999731, 0.39999731, 0.39999731, 0.39999943,
0.39999943, 0.39999943, 0.39999943, 0.39999989, 0.39999989,
0.39999989, 0.39999989, 0.39999998, 0.39999998, 0.39999998,
0.39999998, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999984, 0.99999984, 0.99999984, 0.99999984, 0.99999921,
0.99999921, 0.99999921, 0.99999921, 0.99999632, 0.99999632,
0.99999632, 0.99999632, 0.99998428, 0.99998428, 0.99998428,
0.99998428, 0.99993821, 0.99993821, 0.99993821, 0.99993821,
0.999777 , 0.999777 , 0.999777 , 0.999777 , 0.99926307,
0.99926307, 0.99926307, 0.99926307, 0.99777717, 0.99777717,
0.99777717, 0.99777717, 0.99390084, 0.99390084, 0.99390084,
0.99390084, 0.98482677, 0.98482677, 0.98482677, 0.98482677,
0.96586705, 0.96586705, 0.96586705, 0.96586705, 0.93065556,
0.93065556, 0.93065556, 0.93065556, 0.87265822, 0.87265822,
0.87265822, 0.87265822, 0.78793454, 0.78793454, 0.78793454,
0.78793454, 0.67801361, 0.67801361, 0.67801361, 0.67801361,
0.54918923, 0.54918923, 0.54918923, 0.54918923, 0.4253138 ,
0.4253138 , 0.4253138 , 0.4253138 , 0.32209197, 0.32209197,
0.32209197, 0.32209197, 0.24076956, 0.24076956, 0.24076956,
0.24076956, 0.17909602, 0.17909602, 0.17909602, 0.17909602,
0.13374278, 0.13374278, 0.13374278, 0.13374278, 0.10109783,
0.10109783, 0.10109783, 0.10109783, 0.0779702 , 0.0779702 ,
0.0779702 , 0.0779702 , 0.06206786, 0.06206786, 0.06206786,
0.06206786, 0.05151796, 0.05151796, 0.05151796, 0.05151796,
0.04507666, 0.04507666, 0.04507666, 0.04507666, 0.04147447,
0.04147447, 0.04147447, 0.04147447, 0.04147447, 0.04147447,
0.04147447, 0.04147447, 0.04507666, 0.04507666, 0.04507666,
0.04507666, 0.05151796, 0.05151796, 0.05151796, 0.05151796,
0.06206786, 0.06206786, 0.06206786, 0.06206786, 0.0779702 ,
0.0779702 , 0.0779702 , 0.0779702 , 0.10109783, 0.10109783,
0.10109783, 0.10109783, 0.13374278, 0.13374278, 0.13374278,
0.13374278, 0.17909602, 0.17909602, 0.17909602, 0.17909602,
0.24076956, 0.24076956, 0.24076956, 0.24076956, 0.32209197,
0.32209197, 0.32209197, 0.32209197, 0.4253138 , 0.4253138 ,
0.4253138 , 0.4253138 , 0.54918923, 0.54918923, 0.54918923,
0.54918923, 0.67801361, 0.67801361, 0.67801361, 0.67801361,
0.78793454, 0.78793454, 0.78793454, 0.78793454, 0.87265822,
0.87265822, 0.87265822, 0.87265822, 0.93065556, 0.93065556,
0.93065556, 0.93065556, 0.96586705, 0.96586705, 0.96586705,
0.96586705, 0.98482677, 0.98482677, 0.98482677, 0.98482677,
0.99390084, 0.99390084, 0.99390084, 0.99390084, 0.99777717,
0.99777717, 0.99777717, 0.99777717, 0.99926307, 0.99926307,
0.99926307, 0.99926307, 0.999777 , 0.999777 , 0.999777 ,
0.999777 , 0.99993821, 0.99993821, 0.99993821, 0.99993821,
0.99998428, 0.99998428, 0.99998428, 0.99998428, 0.99999632,
0.99999632, 0.99999632, 0.99999632, 0.99999921, 0.99999921,
0.99999921, 0.99999921, 0.99999984, 0.99999984, 0.99999984,
0.99999984, 0.99999997, 0.99999997, 0.99999997, 0.99999997,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999998, -1.99999998, -1.99999998, -1.99999998,
-1.99999988, -1.99999988, -1.99999988, -1.99999988, -1.99999941,
-1.99999941, -1.99999941, -1.99999941, -1.99999725, -1.99999725,
-1.99999725, -1.99999725, -1.99998825, -1.99998825, -1.99998825,
-1.99998825, -1.99995385, -1.99995385, -1.99995385, -1.99995385,
-1.9998336 , -1.9998336 , -1.9998336 , -1.9998336 , -1.99945098,
-1.99945098, -1.99945098, -1.99945098, -1.99834757, -1.99834757,
-1.99834757, -1.99834757, -1.99547801, -1.99547801, -1.99547801,
-1.99547801, -1.98877722, -1.98877722, -1.98877722, -1.98877722,
-1.97476121, -1.97476121, -1.97476121, -1.97476121, -1.94846819,
-1.94846819, -1.94846819, -1.94846819, -1.90395536, -1.90395536,
-1.90395536, -1.90395536, -1.83514393, -1.83514393, -1.83514393,
-1.83514393, -1.73695291, -1.73695291, -1.73695291, -1.73695291,
-1.61276681, -1.61276681, -1.61276681, -1.61276681, -1.47411138,
-1.47411138, -1.47411138, -1.47411138, -1.32789865, -1.32789865,
-1.32789865, -1.32789865, -1.17749415, -1.17749415, -1.17749415,
-1.17749415, -1.02468689, -1.02468689, -1.02468689, -1.02468689,
-0.87230414, -0.87230414, -0.87230414, -0.87230414, -0.72248267,
-0.72248267, -0.72248267, -0.72248267, -0.57751416, -0.57751416,
-0.57751416, -0.57751416, -0.43882441, -0.43882441, -0.43882441,
-0.43882441, -0.30782015, -0.30782015, -0.30782015, -0.30782015,
-0.18361953, -0.18361953, -0.18361953, -0.18361953, -0.07262519,
-0.07262519, -0.07262519, -0.07262519, 0.07262519, 0.07262519,
0.07262519, 0.07262519, 0.18361953, 0.18361953, 0.18361953,
0.18361953, 0.30782015, 0.30782015, 0.30782015, 0.30782015,
0.43882441, 0.43882441, 0.43882441, 0.43882441, 0.57751416,
0.57751416, 0.57751416, 0.57751416, 0.72248267, 0.72248267,
0.72248267, 0.72248267, 0.87230414, 0.87230414, 0.87230414,
0.87230414, 1.02468689, 1.02468689, 1.02468689, 1.02468689,
1.17749415, 1.17749415, 1.17749415, 1.17749415, 1.32789865,
1.32789865, 1.32789865, 1.32789865, 1.47411138, 1.47411138,
1.47411138, 1.47411138, 1.61276681, 1.61276681, 1.61276681,
1.61276681, 1.73695291, 1.73695291, 1.73695291, 1.73695291,
1.83514393, 1.83514393, 1.83514393, 1.83514393, 1.90395536,
1.90395536, 1.90395536, 1.90395536, 1.94846819, 1.94846819,
1.94846819, 1.94846819, 1.97476121, 1.97476121, 1.97476121,
1.97476121, 1.98877722, 1.98877722, 1.98877722, 1.98877722,
1.99547801, 1.99547801, 1.99547801, 1.99547801, 1.99834757,
1.99834757, 1.99834757, 1.99834757, 1.99945098, 1.99945098,
1.99945098, 1.99945098, 1.9998336 , 1.9998336 , 1.9998336 ,
1.9998336 , 1.99995385, 1.99995385, 1.99995385, 1.99995385,
1.99998825, 1.99998825, 1.99998825, 1.99998825, 1.99999725,
1.99999725, 1.99999725, 1.99999725, 1.99999941, 1.99999941,
1.99999941, 1.99999941, 1.99999988, 1.99999988, 1.99999988,
1.99999988, 1.99999998, 1.99999998, 1.99999998, 1.99999998,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999998, 0.39999998, 0.39999998, 0.39999998,
0.39999991, 0.39999991, 0.39999991, 0.39999991, 0.39999956,
0.39999956, 0.39999956, 0.39999956, 0.39999794, 0.39999794,
0.39999794, 0.39999794, 0.39999121, 0.39999121, 0.39999121,
0.39999121, 0.39996546, 0.39996546, 0.39996546, 0.39996546,
0.3998755 , 0.3998755 , 0.3998755 , 0.3998755 , 0.39958935,
0.39958935, 0.39958935, 0.39958935, 0.39876524, 0.39876524,
0.39876524, 0.39876524, 0.39662932, 0.39662932, 0.39662932,
0.39662932, 0.39168182, 0.39168182, 0.39168182, 0.39168182,
0.38151098, 0.38151098, 0.38151098, 0.38151098, 0.36306193,
0.36306193, 0.36306193, 0.36306193, 0.33362418, 0.33362418,
0.33362418, 0.33362418, 0.2922219 , 0.2922219 , 0.2922219 ,
0.2922219 , 0.24009531, 0.24009531, 0.24009531, 0.24009531,
0.18518057, 0.18518057, 0.18518057, 0.18518057, 0.13886248,
0.13886248, 0.13886248, 0.13886248, 0.10277415, 0.10277415,
0.10277415, 0.10277415, 0.0756898 , 0.0756898 , 0.0756898 ,
0.0756898 , 0.05582374, 0.05582374, 0.05582374, 0.05582374,
0.04152302, 0.04152302, 0.04152302, 0.04152302, 0.03132411,
0.03132411, 0.03132411, 0.03132411, 0.02405844, 0.02405844,
0.02405844, 0.02405844, 0.01894139, 0.01894139, 0.01894139,
0.01894139, 0.01540908, 0.01540908, 0.01540908, 0.01540908,
0.01315829, 0.01315829, 0.01315829, 0.01315829, 0.01182391,
0.01182391, 0.01182391, 0.01182391, 0.01182391, 0.01182391,
0.01182391, 0.01182391, 0.01315829, 0.01315829, 0.01315829,
0.01315829, 0.01540908, 0.01540908, 0.01540908, 0.01540908,
0.01894139, 0.01894139, 0.01894139, 0.01894139, 0.02405844,
0.02405844, 0.02405844, 0.02405844, 0.03132411, 0.03132411,
0.03132411, 0.03132411, 0.04152302, 0.04152302, 0.04152302,
0.04152302, 0.05582374, 0.05582374, 0.05582374, 0.05582374,
0.0756898 , 0.0756898 , 0.0756898 , 0.0756898 , 0.10277415,
0.10277415, 0.10277415, 0.10277415, 0.13886248, 0.13886248,
0.13886248, 0.13886248, 0.18518057, 0.18518057, 0.18518057,
0.18518057, 0.24009531, 0.24009531, 0.24009531, 0.24009531,
0.2922219 , 0.2922219 , 0.2922219 , 0.2922219 , 0.33362418,
0.33362418, 0.33362418, 0.33362418, 0.36306193, 0.36306193,
0.36306193, 0.36306193, 0.38151098, 0.38151098, 0.38151098,
0.38151098, 0.39168182, 0.39168182, 0.39168182, 0.39168182,
0.39662932, 0.39662932, 0.39662932, 0.39662932, 0.39876524,
0.39876524, 0.39876524, 0.39876524, 0.39958935, 0.39958935,
0.39958935, 0.39958935, 0.3998755 , 0.3998755 , 0.3998755 ,
0.3998755 , 0.39996546, 0.39996546, 0.39996546, 0.39996546,
0.39999121, 0.39999121, 0.39999121, 0.39999121, 0.39999794,
0.39999794, 0.39999794, 0.39999794, 0.39999956, 0.39999956,
0.39999956, 0.39999956, 0.39999991, 0.39999991, 0.39999991,
0.39999991, 0.39999998, 0.39999998, 0.39999998, 0.39999998,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
0.99999938, 0.99999938, 0.99999938, 0.99999938, 0.99999719,
0.99999719, 0.99999719, 0.99999719, 0.99998811, 0.99998811,
0.99998811, 0.99998811, 0.99995357, 0.99995357, 0.99995357,
0.99995357, 0.99983296, 0.99983296, 0.99983296, 0.99983296,
0.99944781, 0.99944781, 0.99944781, 0.99944781, 0.99832778,
0.99832778, 0.99832778, 0.99832778, 0.995376 , 0.995376 ,
0.995376 , 0.995376 , 0.9883634 , 0.9883634 , 0.9883634 ,
0.9883634 , 0.97342446, 0.97342446, 0.97342446, 0.97342446,
0.94501452, 0.94501452, 0.94501452, 0.94501452, 0.89691208,
0.89691208, 0.89691208, 0.89691208, 0.82442705, 0.82442705,
0.82442705, 0.82442705, 0.72711886, 0.72711886, 0.72711886,
0.72711886, 0.60957253, 0.60957253, 0.60957253, 0.60957253,
0.48481294, 0.48481294, 0.48481294, 0.48481294, 0.37491929,
0.37491929, 0.37491929, 0.37491929, 0.2850944 , 0.2850944 ,
0.2850944 , 0.2850944 , 0.2147617 , 0.2147617 , 0.2147617 ,
0.2147617 , 0.16146404, 0.16146404, 0.16146404, 0.16146404,
0.12209872, 0.12209872, 0.12209872, 0.12209872, 0.09352365,
0.09352365, 0.09352365, 0.09352365, 0.07309985, 0.07309985,
0.07309985, 0.07309985, 0.05895984, 0.05895984, 0.05895984,
0.05895984, 0.0494793 , 0.0494793 , 0.0494793 , 0.0494793 ,
0.04366997, 0.04366997, 0.04366997, 0.04366997, 0.04036077,
0.04036077, 0.04036077, 0.04036077, 0.04036077, 0.04036077,
0.04036077, 0.04036077, 0.04366997, 0.04366997, 0.04366997,
0.04366997, 0.0494793 , 0.0494793 , 0.0494793 , 0.0494793 ,
0.05895984, 0.05895984, 0.05895984, 0.05895984, 0.07309985,
0.07309985, 0.07309985, 0.07309985, 0.09352365, 0.09352365,
0.09352365, 0.09352365, 0.12209872, 0.12209872, 0.12209872,
0.12209872, 0.16146404, 0.16146404, 0.16146404, 0.16146404,
0.2147617 , 0.2147617 , 0.2147617 , 0.2147617 , 0.2850944 ,
0.2850944 , 0.2850944 , 0.2850944 , 0.37491929, 0.37491929,
0.37491929, 0.37491929, 0.48481294, 0.48481294, 0.48481294,
0.48481294, 0.60957253, 0.60957253, 0.60957253, 0.60957253,
0.72711886, 0.72711886, 0.72711886, 0.72711886, 0.82442705,
0.82442705, 0.82442705, 0.82442705, 0.89691208, 0.89691208,
0.89691208, 0.89691208, 0.94501452, 0.94501452, 0.94501452,
0.94501452, 0.97342446, 0.97342446, 0.97342446, 0.97342446,
0.9883634 , 0.9883634 , 0.9883634 , 0.9883634 , 0.995376 ,
0.995376 , 0.995376 , 0.995376 , 0.99832778, 0.99832778,
0.99832778, 0.99832778, 0.99944781, 0.99944781, 0.99944781,
0.99944781, 0.99983296, 0.99983296, 0.99983296, 0.99983296,
0.99995357, 0.99995357, 0.99995357, 0.99995357, 0.99998811,
0.99998811, 0.99998811, 0.99998811, 0.99999719, 0.99999719,
0.99999719, 0.99999719, 0.99999938, 0.99999938, 0.99999938,
0.99999938, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999998, -1.99999998, -1.99999998,
-1.99999998, -1.99999991, -1.99999991, -1.99999991, -1.99999991,
-1.99999954, -1.99999954, -1.99999954, -1.99999954, -1.9999979 ,
-1.9999979 , -1.9999979 , -1.9999979 , -1.99999111, -1.99999111,
-1.99999111, -1.99999111, -1.9999653 , -1.9999653 , -1.9999653 ,
-1.9999653 , -1.99987527, -1.99987527, -1.99987527, -1.99987527,
-1.99958817, -1.99958817, -1.99958817, -1.99958817, -1.99875497,
-1.99875497, -1.99875497, -1.99875497, -1.9965647 , -1.9965647 ,
-1.9965647 , -1.9965647 , -1.99137278, -1.99137278, -1.99137278,
-1.99137278, -1.9803092 , -1.9803092 , -1.9803092 , -1.9803092 ,
-1.95911942, -1.95911942, -1.95911942, -1.95911942, -1.92248902,
-1.92248902, -1.92248902, -1.92248902, -1.86479922, -1.86479922,
-1.86479922, -1.86479922, -1.78093371, -1.78093371, -1.78093371,
-1.78093371, -1.66965519, -1.66965519, -1.66965519, -1.66965519,
-1.54084363, -1.54084363, -1.54084363, -1.54084363, -1.40299425,
-1.40299425, -1.40299425, -1.40299425, -1.26014899, -1.26014899,
-1.26014899, -1.26014899, -1.11439619, -1.11439619, -1.11439619,
-1.11439619, -0.96737508, -0.96737508, -0.96737508, -0.96737508,
-0.82171027, -0.82171027, -0.82171027, -0.82171027, -0.67901436,
-0.67901436, -0.67901436, -0.67901436, -0.54145975, -0.54145975,
-0.54145975, -0.54145975, -0.41012748, -0.41012748, -0.41012748,
-0.41012748, -0.28664905, -0.28664905, -0.28664905, -0.28664905,
-0.16988576, -0.16988576, -0.16988576, -0.16988576, -0.06704588,
-0.06704588, -0.06704588, -0.06704588, 0.06704588, 0.06704588,
0.06704588, 0.06704588, 0.16988576, 0.16988576, 0.16988576,
0.16988576, 0.28664905, 0.28664905, 0.28664905, 0.28664905,
0.41012748, 0.41012748, 0.41012748, 0.41012748, 0.54145975,
0.54145975, 0.54145975, 0.54145975, 0.67901436, 0.67901436,
0.67901436, 0.67901436, 0.82171027, 0.82171027, 0.82171027,
0.82171027, 0.96737508, 0.96737508, 0.96737508, 0.96737508,
1.11439619, 1.11439619, 1.11439619, 1.11439619, 1.26014899,
1.26014899, 1.26014899, 1.26014899, 1.40299425, 1.40299425,
1.40299425, 1.40299425, 1.54084363, 1.54084363, 1.54084363,
1.54084363, 1.66965519, 1.66965519, 1.66965519, 1.66965519,
1.78093371, 1.78093371, 1.78093371, 1.78093371, 1.86479922,
1.86479922, 1.86479922, 1.86479922, 1.92248902, 1.92248902,
1.92248902, 1.92248902, 1.95911942, 1.95911942, 1.95911942,
1.95911942, 1.9803092 , 1.9803092 , 1.9803092 , 1.9803092 ,
1.99137278, 1.99137278, 1.99137278, 1.99137278, 1.9965647 ,
1.9965647 , 1.9965647 , 1.9965647 , 1.99875497, 1.99875497,
1.99875497, 1.99875497, 1.99958817, 1.99958817, 1.99958817,
1.99958817, 1.99987527, 1.99987527, 1.99987527, 1.99987527,
1.9999653 , 1.9999653 , 1.9999653 , 1.9999653 , 1.99999111,
1.99999111, 1.99999111, 1.99999111, 1.9999979 , 1.9999979 ,
1.9999979 , 1.9999979 , 1.99999954, 1.99999954, 1.99999954,
1.99999954, 1.99999991, 1.99999991, 1.99999991, 1.99999991,
1.99999998, 1.99999998, 1.99999998, 1.99999998, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.39999966, 0.39999966, 0.39999966, 0.39999966, 0.39999843,
0.39999843, 0.39999843, 0.39999843, 0.39999335, 0.39999335,
0.39999335, 0.39999335, 0.39997403, 0.39997403, 0.39997403,
0.39997403, 0.39990667, 0.39990667, 0.39990667, 0.39990667,
0.39969193, 0.39969193, 0.39969193, 0.39969193, 0.39906934,
0.39906934, 0.39906934, 0.39906934, 0.39743694, 0.39743694,
0.39743694, 0.39743694, 0.39359154, 0.39359154, 0.39359154,
0.39359154, 0.3855081 , 0.3855081 , 0.3855081 , 0.3855081 ,
0.37043655, 0.37043655, 0.37043655, 0.37043655, 0.34560898,
0.34560898, 0.34560898, 0.34560898, 0.30947529, 0.30947529,
0.30947529, 0.30947529, 0.26261525, 0.26261525, 0.26261525,
0.26261525, 0.208592 , 0.208592 , 0.208592 , 0.208592 ,
0.15944849, 0.15944849, 0.15944849, 0.15944849, 0.1197856 ,
0.1197856 , 0.1197856 , 0.1197856 , 0.08926176, 0.08926176,
0.08926176, 0.08926176, 0.06637685, 0.06637685, 0.06637685,
0.06637685, 0.04954963, 0.04954963, 0.04954963, 0.04954963,
0.03735614, 0.03735614, 0.03735614, 0.03735614, 0.02856719,
0.02856719, 0.02856719, 0.02856719, 0.02223482, 0.02223482,
0.02223482, 0.02223482, 0.01773686, 0.01773686, 0.01773686,
0.01773686, 0.01459793, 0.01459793, 0.01459793, 0.01459793,
0.01259288, 0.01259288, 0.01259288, 0.01259288, 0.01137947,
0.01137947, 0.01137947, 0.01137947, 0.01137947, 0.01137947,
0.01137947, 0.01137947, 0.01259288, 0.01259288, 0.01259288,
0.01259288, 0.01459793, 0.01459793, 0.01459793, 0.01459793,
0.01773686, 0.01773686, 0.01773686, 0.01773686, 0.02223482,
0.02223482, 0.02223482, 0.02223482, 0.02856719, 0.02856719,
0.02856719, 0.02856719, 0.03735614, 0.03735614, 0.03735614,
0.03735614, 0.04954963, 0.04954963, 0.04954963, 0.04954963,
0.06637685, 0.06637685, 0.06637685, 0.06637685, 0.08926176,
0.08926176, 0.08926176, 0.08926176, 0.1197856 , 0.1197856 ,
0.1197856 , 0.1197856 , 0.15944849, 0.15944849, 0.15944849,
0.15944849, 0.208592 , 0.208592 , 0.208592 , 0.208592 ,
0.26261525, 0.26261525, 0.26261525, 0.26261525, 0.30947529,
0.30947529, 0.30947529, 0.30947529, 0.34560898, 0.34560898,
0.34560898, 0.34560898, 0.37043655, 0.37043655, 0.37043655,
0.37043655, 0.3855081 , 0.3855081 , 0.3855081 , 0.3855081 ,
0.39359154, 0.39359154, 0.39359154, 0.39359154, 0.39743694,
0.39743694, 0.39743694, 0.39743694, 0.39906934, 0.39906934,
0.39906934, 0.39906934, 0.39969193, 0.39969193, 0.39969193,
0.39969193, 0.39990667, 0.39990667, 0.39990667, 0.39990667,
0.39997403, 0.39997403, 0.39997403, 0.39997403, 0.39999335,
0.39999335, 0.39999335, 0.39999335, 0.39999843, 0.39999843,
0.39999843, 0.39999843, 0.39999966, 0.39999966, 0.39999966,
0.39999966, 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999952, 0.99999952, 0.99999952, 0.99999952,
0.99999785, 0.99999785, 0.99999785, 0.99999785, 0.999991 ,
0.999991 , 0.999991 , 0.999991 , 0.99996508, 0.99996508,
0.99996508, 0.99996508, 0.99987473, 0.99987473, 0.99987473,
0.99987473, 0.99958576, 0.99958576, 0.99958576, 0.99958576,
0.99874079, 0.99874079, 0.99874079, 0.99874079, 0.99649254,
0.99649254, 0.99649254, 0.99649254, 0.99107677, 0.99107677,
0.99107677, 0.99107677, 0.97932735, 0.97932735, 0.97932735,
0.97932735, 0.95647671, 0.95647671, 0.95647671, 0.95647671,
0.91676303, 0.91676303, 0.91676303, 0.91676303, 0.85513775,
0.85513775, 0.85513775, 0.85513775, 0.76967449, 0.76967449,
0.76967449, 0.76967449, 0.66358127, 0.66358127, 0.66358127,
0.66358127, 0.5434507 , 0.5434507 , 0.5434507 , 0.5434507 ,
0.42945006, 0.42945006, 0.42945006, 0.42945006, 0.33254838,
0.33254838, 0.33254838, 0.33254838, 0.25421441, 0.25421441,
0.25421441, 0.25421441, 0.19307197, 0.19307197, 0.19307197,
0.19307197, 0.14670948, 0.14670948, 0.14670948, 0.14670948,
0.112261 , 0.112261 , 0.112261 , 0.112261 , 0.08704653,
0.08704653, 0.08704653, 0.08704653, 0.06889346, 0.06889346,
0.06889346, 0.06889346, 0.05623531, 0.05623531, 0.05623531,
0.05623531, 0.04766596, 0.04766596, 0.04766596, 0.04766596,
0.04240806, 0.04240806, 0.04240806, 0.04240806, 0.03936017,
0.03936017, 0.03936017, 0.03936017, 0.03936017, 0.03936017,
0.03936017, 0.03936017, 0.04240806, 0.04240806, 0.04240806,
0.04240806, 0.04766596, 0.04766596, 0.04766596, 0.04766596,
0.05623531, 0.05623531, 0.05623531, 0.05623531, 0.06889346,
0.06889346, 0.06889346, 0.06889346, 0.08704653, 0.08704653,
0.08704653, 0.08704653, 0.112261 , 0.112261 , 0.112261 ,
0.112261 , 0.14670948, 0.14670948, 0.14670948, 0.14670948,
0.19307197, 0.19307197, 0.19307197, 0.19307197, 0.25421441,
0.25421441, 0.25421441, 0.25421441, 0.33254838, 0.33254838,
0.33254838, 0.33254838, 0.42945006, 0.42945006, 0.42945006,
0.42945006, 0.5434507 , 0.5434507 , 0.5434507 , 0.5434507 ,
0.66358127, 0.66358127, 0.66358127, 0.66358127, 0.76967449,
0.76967449, 0.76967449, 0.76967449, 0.85513775, 0.85513775,
0.85513775, 0.85513775, 0.91676303, 0.91676303, 0.91676303,
0.91676303, 0.95647671, 0.95647671, 0.95647671, 0.95647671,
0.97932735, 0.97932735, 0.97932735, 0.97932735, 0.99107677,
0.99107677, 0.99107677, 0.99107677, 0.99649254, 0.99649254,
0.99649254, 0.99649254, 0.99874079, 0.99874079, 0.99874079,
0.99874079, 0.99958576, 0.99958576, 0.99958576, 0.99958576,
0.99987473, 0.99987473, 0.99987473, 0.99987473, 0.99996508,
0.99996508, 0.99996508, 0.99996508, 0.999991 , 0.999991 ,
0.999991 , 0.999991 , 0.99999785, 0.99999785, 0.99999785,
0.99999785, 0.99999952, 0.99999952, 0.99999952, 0.99999952,
0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999993, -1.99999993, -1.99999993,
-1.99999993, -1.99999964, -1.99999964, -1.99999964, -1.99999964,
-1.99999839, -1.99999839, -1.99999839, -1.99999839, -1.99999327,
-1.99999327, -1.99999327, -1.99999327, -1.99997389, -1.99997389,
-1.99997389, -1.99997389, -1.99990641, -1.99990641, -1.99990641,
-1.99990641, -1.9996908 , -1.9996908 , -1.9996908 , -1.9996908 ,
-1.99906136, -1.99906136, -1.99906136, -1.99906136, -1.99739004,
-1.99739004, -1.99739004, -1.99739004, -1.99337187, -1.99337187,
-1.99337187, -1.99337187, -1.9846562 , -1.9846562 , -1.9846562 ,
-1.9846562 , -1.96762156, -1.96762156, -1.96762156, -1.96762156,
-1.93754755, -1.93754755, -1.93754755, -1.93754755, -1.88924251,
-1.88924251, -1.88924251, -1.88924251, -1.81781489, -1.81781489,
-1.81781489, -1.81781489, -1.71991447, -1.71991447, -1.71991447,
-1.71991447, -1.60116196, -1.60116196, -1.60116196, -1.60116196,
-1.47144134, -1.47144134, -1.47144134, -1.47144134, -1.3359148 ,
-1.3359148 , -1.3359148 , -1.3359148 , -1.19691932, -1.19691932,
-1.19691932, -1.19691932, -1.05589588, -1.05589588, -1.05589588,
-1.05589588, -0.91470039, -0.91470039, -0.91470039, -0.91470039,
-0.77534663, -0.77534663, -0.77534663, -0.77534663, -0.63931759,
-0.63931759, -0.63931759, -0.63931759, -0.50854933, -0.50854933,
-0.50854933, -0.50854933, -0.3839803 , -0.3839803 , -0.3839803 ,
-0.3839803 , -0.26741646, -0.26741646, -0.26741646, -0.26741646,
-0.1574274 , -0.1574274 , -0.1574274 , -0.1574274 , -0.06198908,
-0.06198908, -0.06198908, -0.06198908, 0.06198908, 0.06198908,
0.06198908, 0.06198908, 0.1574274 , 0.1574274 , 0.1574274 ,
0.1574274 , 0.26741646, 0.26741646, 0.26741646, 0.26741646,
0.3839803 , 0.3839803 , 0.3839803 , 0.3839803 , 0.50854933,
0.50854933, 0.50854933, 0.50854933, 0.63931759, 0.63931759,
0.63931759, 0.63931759, 0.77534663, 0.77534663, 0.77534663,
0.77534663, 0.91470039, 0.91470039, 0.91470039, 0.91470039,
1.05589588, 1.05589588, 1.05589588, 1.05589588, 1.19691932,
1.19691932, 1.19691932, 1.19691932, 1.3359148 , 1.3359148 ,
1.3359148 , 1.3359148 , 1.47144134, 1.47144134, 1.47144134,
1.47144134, 1.60116196, 1.60116196, 1.60116196, 1.60116196,
1.71991447, 1.71991447, 1.71991447, 1.71991447, 1.81781489,
1.81781489, 1.81781489, 1.81781489, 1.88924251, 1.88924251,
1.88924251, 1.88924251, 1.93754755, 1.93754755, 1.93754755,
1.93754755, 1.96762156, 1.96762156, 1.96762156, 1.96762156,
1.9846562 , 1.9846562 , 1.9846562 , 1.9846562 , 1.99337187,
1.99337187, 1.99337187, 1.99337187, 1.99739004, 1.99739004,
1.99739004, 1.99739004, 1.99906136, 1.99906136, 1.99906136,
1.99906136, 1.9996908 , 1.9996908 , 1.9996908 , 1.9996908 ,
1.99990641, 1.99990641, 1.99990641, 1.99990641, 1.99997389,
1.99997389, 1.99997389, 1.99997389, 1.99999327, 1.99999327,
1.99999327, 1.99999327, 1.99999839, 1.99999839, 1.99999839,
1.99999839, 1.99999964, 1.99999964, 1.99999964, 1.99999964,
1.99999993, 1.99999993, 1.99999993, 1.99999993, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999995, 0.39999995, 0.39999995,
0.39999995, 0.39999973, 0.39999973, 0.39999973, 0.39999973,
0.3999988 , 0.3999988 , 0.3999988 , 0.3999988 , 0.39999496,
0.39999496, 0.39999496, 0.39999496, 0.39998046, 0.39998046,
0.39998046, 0.39998046, 0.39992997, 0.39992997, 0.39992997,
0.39992997, 0.39976868, 0.39976868, 0.39976868, 0.39976868,
0.39929817, 0.39929817, 0.39929817, 0.39929817, 0.39805133,
0.39805133, 0.39805133, 0.39805133, 0.39506813, 0.39506813,
0.39506813, 0.39506813, 0.38866612, 0.38866612, 0.38866612,
0.38866612, 0.37641899, 0.37641899, 0.37641899, 0.37641899,
0.35562813, 0.35562813, 0.35562813, 0.35562813, 0.32434966,
0.32434966, 0.32434966, 0.32434966, 0.28247683, 0.28247683,
0.28247683, 0.28247683, 0.23177116, 0.23177116, 0.23177116,
0.23177116, 0.18080242, 0.18080242, 0.18080242, 0.18080242,
0.13798317, 0.13798317, 0.13798317, 0.13798317, 0.10412517,
0.10412517, 0.10412517, 0.10412517, 0.07819326, 0.07819326,
0.07819326, 0.07819326, 0.0587263 , 0.0587263 , 0.0587263 ,
0.0587263 , 0.04436624, 0.04436624, 0.04436624, 0.04436624,
0.03387337, 0.03387337, 0.03387337, 0.03387337, 0.02623154,
0.02623154, 0.02623154, 0.02623154, 0.02067224, 0.02067224,
0.02067224, 0.02067224, 0.01669043, 0.01669043, 0.01669043,
0.01669043, 0.01388395, 0.01388395, 0.01388395, 0.01388395,
0.01209108, 0.01209108, 0.01209108, 0.01209108, 0.01098426,
0.01098426, 0.01098426, 0.01098426, 0.01098426, 0.01098426,
0.01098426, 0.01098426, 0.01209108, 0.01209108, 0.01209108,
0.01209108, 0.01388395, 0.01388395, 0.01388395, 0.01388395,
0.01669043, 0.01669043, 0.01669043, 0.01669043, 0.02067224,
0.02067224, 0.02067224, 0.02067224, 0.02623154, 0.02623154,
0.02623154, 0.02623154, 0.03387337, 0.03387337, 0.03387337,
0.03387337, 0.04436624, 0.04436624, 0.04436624, 0.04436624,
0.0587263 , 0.0587263 , 0.0587263 , 0.0587263 , 0.07819326,
0.07819326, 0.07819326, 0.07819326, 0.10412517, 0.10412517,
0.10412517, 0.10412517, 0.13798317, 0.13798317, 0.13798317,
0.13798317, 0.18080242, 0.18080242, 0.18080242, 0.18080242,
0.23177116, 0.23177116, 0.23177116, 0.23177116, 0.28247683,
0.28247683, 0.28247683, 0.28247683, 0.32434966, 0.32434966,
0.32434966, 0.32434966, 0.35562813, 0.35562813, 0.35562813,
0.35562813, 0.37641899, 0.37641899, 0.37641899, 0.37641899,
0.38866612, 0.38866612, 0.38866612, 0.38866612, 0.39506813,
0.39506813, 0.39506813, 0.39506813, 0.39805133, 0.39805133,
0.39805133, 0.39805133, 0.39929817, 0.39929817, 0.39929817,
0.39929817, 0.39976868, 0.39976868, 0.39976868, 0.39976868,
0.39992997, 0.39992997, 0.39992997, 0.39992997, 0.39998046,
0.39998046, 0.39998046, 0.39998046, 0.39999496, 0.39999496,
0.39999496, 0.39999496, 0.3999988 , 0.3999988 , 0.3999988 ,
0.3999988 , 0.39999973, 0.39999973, 0.39999973, 0.39999973,
0.39999995, 0.39999995, 0.39999995, 0.39999995, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999992, 0.99999992,
0.99999992, 0.99999992, 0.99999963, 0.99999963, 0.99999963,
0.99999963, 0.99999836, 0.99999836, 0.99999836, 0.99999836,
0.99999319, 0.99999319, 0.99999319, 0.99999319, 0.99997372,
0.99997372, 0.99997372, 0.99997372, 0.99990597, 0.99990597,
0.99990597, 0.99990597, 0.99968892, 0.99968892, 0.99968892,
0.99968892, 0.99905101, 0.99905101, 0.99905101, 0.99905101,
0.99733839, 0.99733839, 0.99733839, 0.99733839, 0.99315887,
0.99315887, 0.99315887, 0.99315887, 0.98393456, 0.98393456,
0.98393456, 0.98393456, 0.96561069, 0.96561069, 0.96561069,
0.96561069, 0.9329643 , 0.9329643 , 0.9329643 , 0.9329643 ,
0.88087503, 0.88087503, 0.88087503, 0.88087503, 0.80638656,
0.80638656, 0.80638656, 0.80638656, 0.71079384, 0.71079384,
0.71079384, 0.71079384, 0.59940636, 0.59940636, 0.59940636,
0.59940636, 0.48434368, 0.48434368, 0.48434368, 0.48434368,
0.38219468, 0.38219468, 0.38219468, 0.38219468, 0.29684256,
0.29684256, 0.29684256, 0.29684256, 0.22828342, 0.22828342,
0.22828342, 0.22828342, 0.17485227, 0.17485227, 0.17485227,
0.17485227, 0.13424276, 0.13424276, 0.13424276, 0.13424276,
0.10387026, 0.10387026, 0.10387026, 0.10387026, 0.08145991,
0.08145991, 0.08145991, 0.08145991, 0.06522931, 0.06522931,
0.06522931, 0.06522931, 0.05382942, 0.05382942, 0.05382942,
0.05382942, 0.04604366, 0.04604366, 0.04604366, 0.04604366,
0.0412709 , 0.0412709 , 0.0412709 , 0.0412709 , 0.03845788,
0.03845788, 0.03845788, 0.03845788, 0.03845788, 0.03845788,
0.03845788, 0.03845788, 0.0412709 , 0.0412709 , 0.0412709 ,
0.0412709 , 0.04604366, 0.04604366, 0.04604366, 0.04604366,
0.05382942, 0.05382942, 0.05382942, 0.05382942, 0.06522931,
0.06522931, 0.06522931, 0.06522931, 0.08145991, 0.08145991,
0.08145991, 0.08145991, 0.10387026, 0.10387026, 0.10387026,
0.10387026, 0.13424276, 0.13424276, 0.13424276, 0.13424276,
0.17485227, 0.17485227, 0.17485227, 0.17485227, 0.22828342,
0.22828342, 0.22828342, 0.22828342, 0.29684256, 0.29684256,
0.29684256, 0.29684256, 0.38219468, 0.38219468, 0.38219468,
0.38219468, 0.48434368, 0.48434368, 0.48434368, 0.48434368,
0.59940636, 0.59940636, 0.59940636, 0.59940636, 0.71079384,
0.71079384, 0.71079384, 0.71079384, 0.80638656, 0.80638656,
0.80638656, 0.80638656, 0.88087503, 0.88087503, 0.88087503,
0.88087503, 0.9329643 , 0.9329643 , 0.9329643 , 0.9329643 ,
0.96561069, 0.96561069, 0.96561069, 0.96561069, 0.98393456,
0.98393456, 0.98393456, 0.98393456, 0.99315887, 0.99315887,
0.99315887, 0.99315887, 0.99733839, 0.99733839, 0.99733839,
0.99733839, 0.99905101, 0.99905101, 0.99905101, 0.99905101,
0.99968892, 0.99968892, 0.99968892, 0.99968892, 0.99990597,
0.99990597, 0.99990597, 0.99990597, 0.99997372, 0.99997372,
0.99997372, 0.99997372, 0.99999319, 0.99999319, 0.99999319,
0.99999319, 0.99999836, 0.99999836, 0.99999836, 0.99999836,
0.99999963, 0.99999963, 0.99999963, 0.99999963, 0.99999992,
0.99999992, 0.99999992, 0.99999992, 0.99999999, 0.99999999,
0.99999999, 0.99999999, 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.99999994, -1.99999994,
-1.99999994, -1.99999994, -1.99999973, -1.99999973, -1.99999973,
-1.99999973, -1.99999877, -1.99999877, -1.99999877, -1.99999877,
-1.99999491, -1.99999491, -1.99999491, -1.99999491, -1.99998035,
-1.99998035, -1.99998035, -1.99998035, -1.99992972, -1.99992972,
-1.99992972, -1.99992972, -1.99976766, -1.99976766, -1.99976766,
-1.99976766, -1.99929196, -1.99929196, -1.99929196, -1.99929196,
-1.99801697, -1.99801697, -1.99801697, -1.99801697, -1.9949107 ,
-1.9949107 , -1.9949107 , -1.9949107 , -1.98805831, -1.98805831,
-1.98805831, -1.98805831, -1.97439986, -1.97439986, -1.97439986,
-1.97439986, -1.94977566, -1.94977566, -1.94977566, -1.94977566,
-1.90941203, -1.90941203, -1.90941203, -1.90941203, -1.84866471,
-1.84866471, -1.84866471, -1.84866471, -1.76366311, -1.76366311,
-1.76366311, -1.76366311, -1.65549375, -1.65549375, -1.65549375,
-1.65549375, -1.53389774, -1.53389774, -1.53389774, -1.53389774,
-1.405382 , -1.405382 , -1.405382 , -1.405382 , -1.27292111,
-1.27292111, -1.27292111, -1.27292111, -1.13795294, -1.13795294,
-1.13795294, -1.13795294, -1.00171316, -1.00171316, -1.00171316,
-1.00171316, -0.86617309, -0.86617309, -0.86617309, -0.86617309,
-0.73274404, -0.73274404, -0.73274404, -0.73274404, -0.60294603,
-0.60294603, -0.60294603, -0.60294603, -0.47841029, -0.47841029,
-0.47841029, -0.47841029, -0.36007584, -0.36007584, -0.36007584,
-0.36007584, -0.24989289, -0.24989289, -0.24989289, -0.24989289,
-0.14609889, -0.14609889, -0.14609889, -0.14609889, -0.05739379,
-0.05739379, -0.05739379, -0.05739379, 0.05739379, 0.05739379,
0.05739379, 0.05739379, 0.14609889, 0.14609889, 0.14609889,
0.14609889, 0.24989289, 0.24989289, 0.24989289, 0.24989289,
0.36007584, 0.36007584, 0.36007584, 0.36007584, 0.47841029,
0.47841029, 0.47841029, 0.47841029, 0.60294603, 0.60294603,
0.60294603, 0.60294603, 0.73274404, 0.73274404, 0.73274404,
0.73274404, 0.86617309, 0.86617309, 0.86617309, 0.86617309,
1.00171316, 1.00171316, 1.00171316, 1.00171316, 1.13795294,
1.13795294, 1.13795294, 1.13795294, 1.27292111, 1.27292111,
1.27292111, 1.27292111, 1.405382 , 1.405382 , 1.405382 ,
1.405382 , 1.53389774, 1.53389774, 1.53389774, 1.53389774,
1.65549375, 1.65549375, 1.65549375, 1.65549375, 1.76366311,
1.76366311, 1.76366311, 1.76366311, 1.84866471, 1.84866471,
1.84866471, 1.84866471, 1.90941203, 1.90941203, 1.90941203,
1.90941203, 1.94977566, 1.94977566, 1.94977566, 1.94977566,
1.97439986, 1.97439986, 1.97439986, 1.97439986, 1.98805831,
1.98805831, 1.98805831, 1.98805831, 1.9949107 , 1.9949107 ,
1.9949107 , 1.9949107 , 1.99801697, 1.99801697, 1.99801697,
1.99801697, 1.99929196, 1.99929196, 1.99929196, 1.99929196,
1.99976766, 1.99976766, 1.99976766, 1.99976766, 1.99992972,
1.99992972, 1.99992972, 1.99992972, 1.99998035, 1.99998035,
1.99998035, 1.99998035, 1.99999491, 1.99999491, 1.99999491,
1.99999491, 1.99999877, 1.99999877, 1.99999877, 1.99999877,
1.99999973, 1.99999973, 1.99999973, 1.99999973, 1.99999994,
1.99999994, 1.99999994, 1.99999994, 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.39999996, 0.39999996,
0.39999996, 0.39999996, 0.39999979, 0.39999979, 0.39999979,
0.39999979, 0.39999908, 0.39999908, 0.39999908, 0.39999908,
0.39999619, 0.39999619, 0.39999619, 0.39999619, 0.39998529,
0.39998529, 0.39998529, 0.39998529, 0.39994741, 0.39994741,
0.39994741, 0.39994741, 0.39982617, 0.39982617, 0.39982617,
0.39982617, 0.39947049, 0.39947049, 0.39947049, 0.39947049,
0.39851861, 0.39851861, 0.39851861, 0.39851861, 0.39620818,
0.39620818, 0.39620818, 0.39620818, 0.39115387, 0.39115387,
0.39115387, 0.39115387, 0.38125012, 0.38125012, 0.38125012,
0.38125012, 0.36395394, 0.36395394, 0.36395394, 0.36395394,
0.33709582, 0.33709582, 0.33709582, 0.33709582, 0.29994892,
0.29994892, 0.29994892, 0.29994892, 0.25360165, 0.25360165,
0.25360165, 0.25360165, 0.2025411 , 0.2025411 , 0.2025411 ,
0.2025411 , 0.15714021, 0.15714021, 0.15714021, 0.15714021,
0.12016518, 0.12016518, 0.12016518, 0.12016518, 0.09121302,
0.09121302, 0.09121302, 0.09121302, 0.06905716, 0.06905716,
0.06905716, 0.06905716, 0.05239009, 0.05239009, 0.05239009,
0.05239009, 0.04003804, 0.04003804, 0.04003804, 0.04003804,
0.03093253, 0.03093253, 0.03093253, 0.03093253, 0.02423424,
0.02423424, 0.02423424, 0.02423424, 0.01932145, 0.01932145,
0.01932145, 0.01932145, 0.01577437, 0.01577437, 0.01577437,
0.01577437, 0.01325147, 0.01325147, 0.01325147, 0.01325147,
0.01164337, 0.01164337, 0.01164337, 0.01164337, 0.01063126,
0.01063126, 0.01063126, 0.01063126, 0.01063126, 0.01063126,
0.01063126, 0.01063126, 0.01164337, 0.01164337, 0.01164337,
0.01164337, 0.01325147, 0.01325147, 0.01325147, 0.01325147,
0.01577437, 0.01577437, 0.01577437, 0.01577437, 0.01932145,
0.01932145, 0.01932145, 0.01932145, 0.02423424, 0.02423424,
0.02423424, 0.02423424, 0.03093253, 0.03093253, 0.03093253,
0.03093253, 0.04003804, 0.04003804, 0.04003804, 0.04003804,
0.05239009, 0.05239009, 0.05239009, 0.05239009, 0.06905716,
0.06905716, 0.06905716, 0.06905716, 0.09121302, 0.09121302,
0.09121302, 0.09121302, 0.12016518, 0.12016518, 0.12016518,
0.12016518, 0.15714021, 0.15714021, 0.15714021, 0.15714021,
0.2025411 , 0.2025411 , 0.2025411 , 0.2025411 , 0.25360165,
0.25360165, 0.25360165, 0.25360165, 0.29994892, 0.29994892,
0.29994892, 0.29994892, 0.33709582, 0.33709582, 0.33709582,
0.33709582, 0.36395394, 0.36395394, 0.36395394, 0.36395394,
0.38125012, 0.38125012, 0.38125012, 0.38125012, 0.39115387,
0.39115387, 0.39115387, 0.39115387, 0.39620818, 0.39620818,
0.39620818, 0.39620818, 0.39851861, 0.39851861, 0.39851861,
0.39851861, 0.39947049, 0.39947049, 0.39947049, 0.39947049,
0.39982617, 0.39982617, 0.39982617, 0.39982617, 0.39994741,
0.39994741, 0.39994741, 0.39994741, 0.39998529, 0.39998529,
0.39998529, 0.39998529, 0.39999619, 0.39999619, 0.39999619,
0.39999619, 0.39999908, 0.39999908, 0.39999908, 0.39999908,
0.39999979, 0.39999979, 0.39999979, 0.39999979, 0.39999996,
0.39999996, 0.39999996, 0.39999996, 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.4 , 0.4 , 0.4 ])}, {'rho': array([0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999972, 0.99999972,
0.99999972, 0.99999972, 0.99999875, 0.99999875, 0.99999875,
0.99999875, 0.99999485, 0.99999485, 0.99999485, 0.99999485,
0.9999802 , 0.9999802 , 0.9999802 , 0.9999802 , 0.99992935,
0.99992935, 0.99992935, 0.99992935, 0.99976618, 0.99976618,
0.99976618, 0.99976618, 0.9992843 , 0.9992843 , 0.9992843 ,
0.9992843 , 0.99797962, 0.99797962, 0.99797962, 0.99797962,
0.99475654, 0.99475654, 0.99475654, 0.99475654, 0.98752732,
0.98752732, 0.98752732, 0.98752732, 0.97287605, 0.97287605,
0.97287605, 0.97287605, 0.94614979, 0.94614979, 0.94614979,
0.94614979, 0.90235853, 0.90235853, 0.90235853, 0.90235853,
0.83788792, 0.83788792, 0.83788792, 0.83788792, 0.75246353,
0.75246353, 0.75246353, 0.75246353, 0.65034201, 0.65034201,
0.65034201, 0.65034201, 0.53834592, 0.53834592, 0.53834592,
0.53834592, 0.43297187, 0.43297187, 0.43297187, 0.43297187,
0.34191758, 0.34191758, 0.34191758, 0.34191758, 0.26662504,
0.26662504, 0.26662504, 0.26662504, 0.20636921, 0.20636921,
0.20636921, 0.20636921, 0.15943395, 0.15943395, 0.15943395,
0.15943395, 0.1236147 , 0.1236147 , 0.1236147 , 0.1236147 ,
0.09665137, 0.09665137, 0.09665137, 0.09665137, 0.07660383,
0.07660383, 0.07660383, 0.07660383, 0.06201277, 0.06201277,
0.06201277, 0.06201277, 0.05169102, 0.05169102, 0.05169102,
0.05169102, 0.04458477, 0.04458477, 0.04458477, 0.04458477,
0.04024194, 0.04024194, 0.04024194, 0.04024194, 0.03764146,
0.03764146, 0.03764146, 0.03764146, 0.03764146, 0.03764146,
0.03764146, 0.03764146, 0.04024194, 0.04024194, 0.04024194,
0.04024194, 0.04458477, 0.04458477, 0.04458477, 0.04458477,
0.05169102, 0.05169102, 0.05169102, 0.05169102, 0.06201277,
0.06201277, 0.06201277, 0.06201277, 0.07660383, 0.07660383,
0.07660383, 0.07660383, 0.09665137, 0.09665137, 0.09665137,
0.09665137, 0.1236147 , 0.1236147 , 0.1236147 , 0.1236147 ,
0.15943395, 0.15943395, 0.15943395, 0.15943395, 0.20636921,
0.20636921, 0.20636921, 0.20636921, 0.26662504, 0.26662504,
0.26662504, 0.26662504, 0.34191758, 0.34191758, 0.34191758,
0.34191758, 0.43297187, 0.43297187, 0.43297187, 0.43297187,
0.53834592, 0.53834592, 0.53834592, 0.53834592, 0.65034201,
0.65034201, 0.65034201, 0.65034201, 0.75246353, 0.75246353,
0.75246353, 0.75246353, 0.83788792, 0.83788792, 0.83788792,
0.83788792, 0.90235853, 0.90235853, 0.90235853, 0.90235853,
0.94614979, 0.94614979, 0.94614979, 0.94614979, 0.97287605,
0.97287605, 0.97287605, 0.97287605, 0.98752732, 0.98752732,
0.98752732, 0.98752732, 0.99475654, 0.99475654, 0.99475654,
0.99475654, 0.99797962, 0.99797962, 0.99797962, 0.99797962,
0.9992843 , 0.9992843 , 0.9992843 , 0.9992843 , 0.99976618,
0.99976618, 0.99976618, 0.99976618, 0.99992935, 0.99992935,
0.99992935, 0.99992935, 0.9999802 , 0.9999802 , 0.9999802 ,
0.9999802 , 0.99999485, 0.99999485, 0.99999485, 0.99999485,
0.99999875, 0.99999875, 0.99999875, 0.99999875, 0.99999972,
0.99999972, 0.99999972, 0.99999972, 0.99999994, 0.99999994,
0.99999994, 0.99999994, 0.99999999, 0.99999999, 0.99999999]), 'vx': array([-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999996,
-1.99999996, -1.99999996, -1.99999996, -1.99999979, -1.99999979,
-1.99999979, -1.99999979, -1.99999906, -1.99999906, -1.99999906,
-1.99999906, -1.99999614, -1.99999614, -1.99999614, -1.99999614,
-1.99998519, -1.99998519, -1.99998519, -1.99998519, -1.99994718,
-1.99994718, -1.99994718, -1.99994718, -1.99982529, -1.99982529,
-1.99982529, -1.99982529, -1.99946564, -1.99946564, -1.99946564,
-1.99946564, -1.99849325, -1.99849325, -1.99849325, -1.99849325,
-1.9960945 , -1.9960945 , -1.9960945 , -1.9960945 , -1.99071753,
-1.99071753, -1.99071753, -1.99071753, -1.97979529, -1.97979529,
-1.97979529, -1.97979529, -1.95969325, -1.95969325, -1.95969325,
-1.95969325, -1.9260533 , -1.9260533 , -1.9260533 , -1.9260533 ,
-1.8744613 , -1.8744613 , -1.8744613 , -1.8744613 , -1.80108753,
-1.80108753, -1.80108753, -1.80108753, -1.70418906, -1.70418906,
-1.70418906, -1.70418906, -1.59086057, -1.59086057, -1.59086057,
-1.59086057, -1.46917595, -1.46917595, -1.46917595, -1.46917595,
-1.34294017, -1.34294017, -1.34294017, -1.34294017, -1.21386875,
-1.21386875, -1.21386875, -1.21386875, -1.0829478 , -1.0829478 ,
-1.0829478 , -1.0829478 , -0.9515668 , -0.9515668 , -0.9515668 ,
-0.9515668 , -0.82136318, -0.82136318, -0.82136318, -0.82136318,
-0.69349483, -0.69349483, -0.69349483, -0.69349483, -0.56951744,
-0.56951744, -0.56951744, -0.56951744, -0.45072611, -0.45072611,
-0.45072611, -0.45072611, -0.33815522, -0.33815522, -0.33815522,
-0.33815522, -0.23388523, -0.23388523, -0.23388523, -0.23388523,
-0.13577758, -0.13577758, -0.13577758, -0.13577758, -0.05320859,
-0.05320859, -0.05320859, -0.05320859, 0.05320859, 0.05320859,
0.05320859, 0.05320859, 0.13577758, 0.13577758, 0.13577758,
0.13577758, 0.23388523, 0.23388523, 0.23388523, 0.23388523,
0.33815522, 0.33815522, 0.33815522, 0.33815522, 0.45072611,
0.45072611, 0.45072611, 0.45072611, 0.56951744, 0.56951744,
0.56951744, 0.56951744, 0.69349483, 0.69349483, 0.69349483,
0.69349483, 0.82136318, 0.82136318, 0.82136318, 0.82136318,
0.9515668 , 0.9515668 , 0.9515668 , 0.9515668 , 1.0829478 ,
1.0829478 , 1.0829478 , 1.0829478 , 1.21386875, 1.21386875,
1.21386875, 1.21386875, 1.34294017, 1.34294017, 1.34294017,
1.34294017, 1.46917595, 1.46917595, 1.46917595, 1.46917595,
1.59086057, 1.59086057, 1.59086057, 1.59086057, 1.70418906,
1.70418906, 1.70418906, 1.70418906, 1.80108753, 1.80108753,
1.80108753, 1.80108753, 1.8744613 , 1.8744613 , 1.8744613 ,
1.8744613 , 1.9260533 , 1.9260533 , 1.9260533 , 1.9260533 ,
1.95969325, 1.95969325, 1.95969325, 1.95969325, 1.97979529,
1.97979529, 1.97979529, 1.97979529, 1.99071753, 1.99071753,
1.99071753, 1.99071753, 1.9960945 , 1.9960945 , 1.9960945 ,
1.9960945 , 1.99849325, 1.99849325, 1.99849325, 1.99849325,
1.99946564, 1.99946564, 1.99946564, 1.99946564, 1.99982529,
1.99982529, 1.99982529, 1.99982529, 1.99994718, 1.99994718,
1.99994718, 1.99994718, 1.99998519, 1.99998519, 1.99998519,
1.99998519, 1.99999614, 1.99999614, 1.99999614, 1.99999614,
1.99999906, 1.99999906, 1.99999906, 1.99999906, 1.99999979,
1.99999979, 1.99999979, 1.99999979, 1.99999996, 1.99999996,
1.99999996, 1.99999996, 1.99999999, 1.99999999, 1.99999999]), 'P': array([0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.39999984, 0.39999984,
0.39999984, 0.39999984, 0.3999993 , 0.3999993 , 0.3999993 ,
0.3999993 , 0.39999711, 0.39999711, 0.39999711, 0.39999711,
0.39998892, 0.39998892, 0.39998892, 0.39998892, 0.39996047,
0.39996047, 0.39996047, 0.39996047, 0.39986928, 0.39986928,
0.39986928, 0.39986928, 0.39960032, 0.39960032, 0.39960032,
0.39960032, 0.39887394, 0.39887394, 0.39887394, 0.39887394,
0.39708723, 0.39708723, 0.39708723, 0.39708723, 0.39310833,
0.39310833, 0.39310833, 0.39310833, 0.3851351 , 0.3851351 ,
0.3851351 , 0.3851351 , 0.37083367, 0.37083367, 0.37083367,
0.37083367, 0.34794549, 0.34794549, 0.34794549, 0.34794549,
0.31525266, 0.31525266, 0.31525266, 0.31525266, 0.27330886,
0.27330886, 0.27330886, 0.27330886, 0.22430201, 0.22430201,
0.22430201, 0.22430201, 0.17699197, 0.17699197, 0.17699197,
0.17699197, 0.1372282 , 0.1372282 , 0.1372282 , 0.1372282 ,
0.10535854, 0.10535854, 0.10535854, 0.10535854, 0.08050037,
0.08050037, 0.08050037, 0.08050037, 0.06145781, 0.06145781,
0.06145781, 0.06145781, 0.04709924, 0.04709924, 0.04709924,
0.04709924, 0.03638839, 0.03638839, 0.03638839, 0.03638839,
0.02842595, 0.02842595, 0.02842595, 0.02842595, 0.02251183,
0.02251183, 0.02251183, 0.02251183, 0.01814435, 0.01814435,
0.01814435, 0.01814435, 0.01496692, 0.01496692, 0.01496692,
0.01496692, 0.012688 , 0.012688 , 0.012688 , 0.012688 ,
0.011242 , 0.011242 , 0.011242 , 0.011242 , 0.01031464,
0.01031464, 0.01031464, 0.01031464, 0.01031464, 0.01031464,
0.01031464, 0.01031464, 0.011242 , 0.011242 , 0.011242 ,
0.011242 , 0.012688 , 0.012688 , 0.012688 , 0.012688 ,
0.01496692, 0.01496692, 0.01496692, 0.01496692, 0.01814435,
0.01814435, 0.01814435, 0.01814435, 0.02251183, 0.02251183,
0.02251183, 0.02251183, 0.02842595, 0.02842595, 0.02842595,
0.02842595, 0.03638839, 0.03638839, 0.03638839, 0.03638839,
0.04709924, 0.04709924, 0.04709924, 0.04709924, 0.06145781,
0.06145781, 0.06145781, 0.06145781, 0.08050037, 0.08050037,
0.08050037, 0.08050037, 0.10535854, 0.10535854, 0.10535854,
0.10535854, 0.1372282 , 0.1372282 , 0.1372282 , 0.1372282 ,
0.17699197, 0.17699197, 0.17699197, 0.17699197, 0.22430201,
0.22430201, 0.22430201, 0.22430201, 0.27330886, 0.27330886,
0.27330886, 0.27330886, 0.31525266, 0.31525266, 0.31525266,
0.31525266, 0.34794549, 0.34794549, 0.34794549, 0.34794549,
0.37083367, 0.37083367, 0.37083367, 0.37083367, 0.3851351 ,
0.3851351 , 0.3851351 , 0.3851351 , 0.39310833, 0.39310833,
0.39310833, 0.39310833, 0.39708723, 0.39708723, 0.39708723,
0.39708723, 0.39887394, 0.39887394, 0.39887394, 0.39887394,
0.39960032, 0.39960032, 0.39960032, 0.39960032, 0.39986928,
0.39986928, 0.39986928, 0.39986928, 0.39996047, 0.39996047,
0.39996047, 0.39996047, 0.39998892, 0.39998892, 0.39998892,
0.39998892, 0.39999711, 0.39999711, 0.39999711, 0.39999711,
0.3999993 , 0.3999993 , 0.3999993 , 0.3999993 , 0.39999984,
0.39999984, 0.39999984, 0.39999984, 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.39999999, 0.39999999, 0.39999999])}, {'rho': array([0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999978,
0.99999978, 0.99999978, 0.99999978, 0.99999905, 0.99999905,
0.99999905, 0.99999905, 0.9999961 , 0.9999961 , 0.9999961 ,
0.9999961 , 0.99998508, 0.99998508, 0.99998508, 0.99998508,
0.99994688, 0.99994688, 0.99994688, 0.99994688, 0.99982412,
0.99982412, 0.99982412, 0.99982412, 0.9994599 , 0.9994599 ,
0.9994599 , 0.9994599 , 0.99846599, 0.99846599, 0.99846599,
0.99846599, 0.99598231, 0.99598231, 0.99598231, 0.99598231,
0.99032624, 0.99032624, 0.99032624, 0.99032624, 0.97864407,
0.97864407, 0.97864407, 0.97864407, 0.95685053, 0.95685053,
0.95685053, 0.95685053, 0.92022314, 0.92022314, 0.92022314,
0.92022314, 0.86478281, 0.86478281, 0.86478281, 0.86478281,
0.78907489, 0.78907489, 0.78907489, 0.78907489, 0.69570313,
0.69570313, 0.69570313, 0.69570313, 0.59020465, 0.59020465,
0.59020465, 0.59020465, 0.48382089, 0.48382089, 0.48382089,
0.48382089, 0.38859599, 0.38859599, 0.38859599, 0.38859599,
0.30752598, 0.30752598, 0.30752598, 0.30752598, 0.24092418,
0.24092418, 0.24092418, 0.24092418, 0.18773926, 0.18773926,
0.18773926, 0.18773926, 0.1462786 , 0.1462786 , 0.1462786 ,
0.1462786 , 0.11447901, 0.11447901, 0.11447901, 0.11447901,
0.09038663, 0.09038663, 0.09038663, 0.09038663, 0.07235759,
0.07235759, 0.07235759, 0.07235759, 0.05916941, 0.05916941,
0.05916941, 0.05916941, 0.04977932, 0.04977932, 0.04977932,
0.04977932, 0.04326679, 0.04326679, 0.04326679, 0.04326679,
0.03930737, 0.03930737, 0.03930737, 0.03930737, 0.03690037,
0.03690037, 0.03690037, 0.03690037, 0.03690037, 0.03690037,
0.03690037, 0.03690037, 0.03930737, 0.03930737, 0.03930737,
0.03930737, 0.04326679, 0.04326679, 0.04326679, 0.04326679,
0.04977932, 0.04977932, 0.04977932, 0.04977932, 0.05916941,
0.05916941, 0.05916941, 0.05916941, 0.07235759, 0.07235759,
0.07235759, 0.07235759, 0.09038663, 0.09038663, 0.09038663,
0.09038663, 0.11447901, 0.11447901, 0.11447901, 0.11447901,
0.1462786 , 0.1462786 , 0.1462786 , 0.1462786 , 0.18773926,
0.18773926, 0.18773926, 0.18773926, 0.24092418, 0.24092418,
0.24092418, 0.24092418, 0.30752598, 0.30752598, 0.30752598,
0.30752598, 0.38859599, 0.38859599, 0.38859599, 0.38859599,
0.48382089, 0.48382089, 0.48382089, 0.48382089, 0.59020465,
0.59020465, 0.59020465, 0.59020465, 0.69570313, 0.69570313,
0.69570313, 0.69570313, 0.78907489, 0.78907489, 0.78907489,
0.78907489, 0.86478281, 0.86478281, 0.86478281, 0.86478281,
0.92022314, 0.92022314, 0.92022314, 0.92022314, 0.95685053,
0.95685053, 0.95685053, 0.95685053, 0.97864407, 0.97864407,
0.97864407, 0.97864407, 0.99032624, 0.99032624, 0.99032624,
0.99032624, 0.99598231, 0.99598231, 0.99598231, 0.99598231,
0.99846599, 0.99846599, 0.99846599, 0.99846599, 0.9994599 ,
0.9994599 , 0.9994599 , 0.9994599 , 0.99982412, 0.99982412,
0.99982412, 0.99982412, 0.99994688, 0.99994688, 0.99994688,
0.99994688, 0.99998508, 0.99998508, 0.99998508, 0.99998508,
0.9999961 , 0.9999961 , 0.9999961 , 0.9999961 , 0.99999905,
0.99999905, 0.99999905, 0.99999905, 0.99999978, 0.99999978,
0.99999978, 0.99999978, 0.99999996, 0.99999996, 0.99999996]), 'vx': array([-1.99999997, -1.99999997, -1.99999997, -1.99999997, -1.99999984,
-1.99999984, -1.99999984, -1.99999984, -1.99999929, -1.99999929,
-1.99999929, -1.99999929, -1.99999708, -1.99999708, -1.99999708,
-1.99999708, -1.99998884, -1.99998884, -1.99998884, -1.99998884,
-1.99996027, -1.99996027, -1.99996027, -1.99996027, -1.99986853,
-1.99986853, -1.99986853, -1.99986853, -1.99959653, -1.99959653,
-1.99959653, -1.99959653, -1.9988551 , -1.9988551 , -1.9988551 ,
-1.9988551 , -1.99700459, -1.99700459, -1.99700459, -1.99700459,
-1.99279326, -1.99279326, -1.99279326, -1.99279326, -1.98408222,
-1.98408222, -1.98408222, -1.98408222, -1.96772297, -1.96772297,
-1.96772297, -1.96772297, -1.93977123, -1.93977123, -1.93977123,
-1.93977123, -1.89605496, -1.89605496, -1.89605496, -1.89605496,
-1.8328246 , -1.8328246 , -1.8328246 , -1.8328246 , -1.74737057,
-1.74737057, -1.74737057, -1.74737057, -1.64272474, -1.64272474,
-1.64272474, -1.64272474, -1.52780341, -1.52780341, -1.52780341,
-1.52780341, -1.40754959, -1.40754959, -1.40754959, -1.40754959,
-1.28410474, -1.28410474, -1.28410474, -1.28410474, -1.15854062,
-1.15854062, -1.15854062, -1.15854062, -1.03166727, -1.03166727,
-1.03166727, -1.03166727, -0.90506816, -0.90506816, -0.90506816,
-0.90506816, -0.77989359, -0.77989359, -0.77989359, -0.77989359,
-0.65726835, -0.65726835, -0.65726835, -0.65726835, -0.53868102,
-0.53868102, -0.53868102, -0.53868102, -0.42522663, -0.42522663,
-0.42522663, -0.42522663, -0.31799886, -0.31799886, -0.31799886,
-0.31799886, -0.21922957, -0.21922957, -0.21922957, -0.21922957,
-0.12635918, -0.12635918, -0.12635918, -0.12635918, -0.04938981,
-0.04938981, -0.04938981, -0.04938981, 0.04938981, 0.04938981,
0.04938981, 0.04938981, 0.12635918, 0.12635918, 0.12635918,
0.12635918, 0.21922957, 0.21922957, 0.21922957, 0.21922957,
0.31799886, 0.31799886, 0.31799886, 0.31799886, 0.42522663,
0.42522663, 0.42522663, 0.42522663, 0.53868102, 0.53868102,
0.53868102, 0.53868102, 0.65726835, 0.65726835, 0.65726835,
0.65726835, 0.77989359, 0.77989359, 0.77989359, 0.77989359,
0.90506816, 0.90506816, 0.90506816, 0.90506816, 1.03166727,
1.03166727, 1.03166727, 1.03166727, 1.15854062, 1.15854062,
1.15854062, 1.15854062, 1.28410474, 1.28410474, 1.28410474,
1.28410474, 1.40754959, 1.40754959, 1.40754959, 1.40754959,
1.52780341, 1.52780341, 1.52780341, 1.52780341, 1.64272474,
1.64272474, 1.64272474, 1.64272474, 1.74737057, 1.74737057,
1.74737057, 1.74737057, 1.8328246 , 1.8328246 , 1.8328246 ,
1.8328246 , 1.89605496, 1.89605496, 1.89605496, 1.89605496,
1.93977123, 1.93977123, 1.93977123, 1.93977123, 1.96772297,
1.96772297, 1.96772297, 1.96772297, 1.98408222, 1.98408222,
1.98408222, 1.98408222, 1.99279326, 1.99279326, 1.99279326,
1.99279326, 1.99700459, 1.99700459, 1.99700459, 1.99700459,
1.9988551 , 1.9988551 , 1.9988551 , 1.9988551 , 1.99959653,
1.99959653, 1.99959653, 1.99959653, 1.99986853, 1.99986853,
1.99986853, 1.99986853, 1.99996027, 1.99996027, 1.99996027,
1.99996027, 1.99998884, 1.99998884, 1.99998884, 1.99998884,
1.99999708, 1.99999708, 1.99999708, 1.99999708, 1.99999929,
1.99999929, 1.99999929, 1.99999929, 1.99999984, 1.99999984,
1.99999984, 1.99999984, 1.99999997, 1.99999997, 1.99999997]), 'P': array([0.39999998, 0.39999998, 0.39999998, 0.39999998, 0.39999988,
0.39999988, 0.39999988, 0.39999988, 0.39999947, 0.39999947,
0.39999947, 0.39999947, 0.39999781, 0.39999781, 0.39999781,
0.39999781, 0.39999165, 0.39999165, 0.39999165, 0.39999165,
0.39997027, 0.39997027, 0.39997027, 0.39997027, 0.39990163,
0.39990163, 0.39990163, 0.39990163, 0.39969818, 0.39969818,
0.39969818, 0.39969818, 0.3991441 , 0.3991441 , 0.3991441 ,
0.3991441 , 0.39776424, 0.39776424, 0.39776424, 0.39776424,
0.39464004, 0.39464004, 0.39464004, 0.39464004, 0.38824706,
0.38824706, 0.38824706, 0.38824706, 0.37648831, 0.37648831,
0.37648831, 0.37648831, 0.35712158, 0.35712158, 0.35712158,
0.35712158, 0.32858541, 0.32858541, 0.32858541, 0.32858541,
0.29082844, 0.29082844, 0.29082844, 0.29082844, 0.24527872,
0.24527872, 0.24527872, 0.24527872, 0.19727416, 0.19727416,
0.19727416, 0.19727416, 0.15512923, 0.15512923, 0.15512923,
0.15512923, 0.12052423, 0.12052423, 0.12052423, 0.12052423,
0.09300262, 0.09300262, 0.09300262, 0.09300262, 0.07155261,
0.07155261, 0.07155261, 0.07155261, 0.05509219, 0.05509219,
0.05509219, 0.05509219, 0.04264011, 0.04264011, 0.04264011,
0.04264011, 0.03328308, 0.03328308, 0.03328308, 0.03328308,
0.02626985, 0.02626985, 0.02626985, 0.02626985, 0.02101632,
0.02101632, 0.02101632, 0.02101632, 0.01711118, 0.01711118,
0.01711118, 0.01711118, 0.01425083, 0.01425083, 0.01425083,
0.01425083, 0.01218344, 0.01218344, 0.01218344, 0.01218344,
0.01088058, 0.01088058, 0.01088058, 0.01088058, 0.01002955,
0.01002955, 0.01002955, 0.01002955, 0.01002955, 0.01002955,
0.01002955, 0.01002955, 0.01088058, 0.01088058, 0.01088058,
0.01088058, 0.01218344, 0.01218344, 0.01218344, 0.01218344,
0.01425083, 0.01425083, 0.01425083, 0.01425083, 0.01711118,
0.01711118, 0.01711118, 0.01711118, 0.02101632, 0.02101632,
0.02101632, 0.02101632, 0.02626985, 0.02626985, 0.02626985,
0.02626985, 0.03328308, 0.03328308, 0.03328308, 0.03328308,
0.04264011, 0.04264011, 0.04264011, 0.04264011, 0.05509219,
0.05509219, 0.05509219, 0.05509219, 0.07155261, 0.07155261,
0.07155261, 0.07155261, 0.09300262, 0.09300262, 0.09300262,
0.09300262, 0.12052423, 0.12052423, 0.12052423, 0.12052423,
0.15512923, 0.15512923, 0.15512923, 0.15512923, 0.19727416,
0.19727416, 0.19727416, 0.19727416, 0.24527872, 0.24527872,
0.24527872, 0.24527872, 0.29082844, 0.29082844, 0.29082844,
0.29082844, 0.32858541, 0.32858541, 0.32858541, 0.32858541,
0.35712158, 0.35712158, 0.35712158, 0.35712158, 0.37648831,
0.37648831, 0.37648831, 0.37648831, 0.38824706, 0.38824706,
0.38824706, 0.38824706, 0.39464004, 0.39464004, 0.39464004,
0.39464004, 0.39776424, 0.39776424, 0.39776424, 0.39776424,
0.3991441 , 0.3991441 , 0.3991441 , 0.3991441 , 0.39969818,
0.39969818, 0.39969818, 0.39969818, 0.39990163, 0.39990163,
0.39990163, 0.39990163, 0.39997027, 0.39997027, 0.39997027,
0.39997027, 0.39999165, 0.39999165, 0.39999165, 0.39999165,
0.39999781, 0.39999781, 0.39999781, 0.39999781, 0.39999947,
0.39999947, 0.39999947, 0.39999947, 0.39999988, 0.39999988,
0.39999988, 0.39999988, 0.39999998, 0.39999998, 0.39999998])}, {'rho': array([0.99999985, 0.99999985, 0.99999985, 0.99999985, 0.99999927,
0.99999927, 0.99999927, 0.99999927, 0.99999704, 0.99999704,
0.99999704, 0.99999704, 0.99998875, 0.99998875, 0.99998875,
0.99998875, 0.99996003, 0.99996003, 0.99996003, 0.99996003,
0.9998676 , 0.9998676 , 0.9998676 , 0.9998676 , 0.99959219,
0.99959219, 0.99959219, 0.99959219, 0.99883504, 0.99883504,
0.99883504, 0.99883504, 0.99692253, 0.99692253, 0.99692253,
0.99692253, 0.99250442, 0.99250442, 0.99250442, 0.99250442,
0.98321443, 0.98321443, 0.98321443, 0.98321443, 0.96551012,
0.96551012, 0.96551012, 0.96551012, 0.93502374, 0.93502374,
0.93502374, 0.93502374, 0.88763449, 0.88763449, 0.88763449,
0.88763449, 0.8210454 , 0.8210454 , 0.8210454 , 0.8210454 ,
0.73630061, 0.73630061, 0.73630061, 0.73630061, 0.63823743,
0.63823743, 0.63823743, 0.63823743, 0.53373246, 0.53373246,
0.53373246, 0.53373246, 0.43599461, 0.43599461, 0.43599461,
0.43599461, 0.35031012, 0.35031012, 0.35031012, 0.35031012,
0.27805916, 0.27805916, 0.27805916, 0.27805916, 0.21894703,
0.21894703, 0.21894703, 0.21894703, 0.17180593, 0.17180593,
0.17180593, 0.17180593, 0.13496697, 0.13496697, 0.13496697,
0.13496697, 0.10656575, 0.10656575, 0.10656575, 0.10656575,
0.08491109, 0.08491109, 0.08491109, 0.08491109, 0.06862012,
0.06862012, 0.06862012, 0.06862012, 0.05664009, 0.05664009,
0.05664009, 0.05664009, 0.04806144, 0.04806144, 0.04806144,
0.04806144, 0.04207122, 0.04207122, 0.04207122, 0.04207122,
0.03845555, 0.03845555, 0.03845555, 0.03845555, 0.03622561,
0.03622561, 0.03622561, 0.03622561, 0.03622561, 0.03622561,
0.03622561, 0.03622561, 0.03845555, 0.03845555, 0.03845555,
0.03845555, 0.04207122, 0.04207122, 0.04207122, 0.04207122,
0.04806144, 0.04806144, 0.04806144, 0.04806144, 0.05664009,
0.05664009, 0.05664009, 0.05664009, 0.06862012, 0.06862012,
0.06862012, 0.06862012, 0.08491109, 0.08491109, 0.08491109,
0.08491109, 0.10656575, 0.10656575, 0.10656575, 0.10656575,
0.13496697, 0.13496697, 0.13496697, 0.13496697, 0.17180593,
0.17180593, 0.17180593, 0.17180593, 0.21894703, 0.21894703,
0.21894703, 0.21894703, 0.27805916, 0.27805916, 0.27805916,
0.27805916, 0.35031012, 0.35031012, 0.35031012, 0.35031012,
0.43599461, 0.43599461, 0.43599461, 0.43599461, 0.53373246,
0.53373246, 0.53373246, 0.53373246, 0.63823743, 0.63823743,
0.63823743, 0.63823743, 0.73630061, 0.73630061, 0.73630061,
0.73630061, 0.8210454 , 0.8210454 , 0.8210454 , 0.8210454 ,
0.88763449, 0.88763449, 0.88763449, 0.88763449, 0.93502374,
0.93502374, 0.93502374, 0.93502374, 0.96551012, 0.96551012,
0.96551012, 0.96551012, 0.98321443, 0.98321443, 0.98321443,
0.98321443, 0.99250442, 0.99250442, 0.99250442, 0.99250442,
0.99692253, 0.99692253, 0.99692253, 0.99692253, 0.99883504,
0.99883504, 0.99883504, 0.99883504, 0.99959219, 0.99959219,
0.99959219, 0.99959219, 0.9998676 , 0.9998676 , 0.9998676 ,
0.9998676 , 0.99996003, 0.99996003, 0.99996003, 0.99996003,
0.99998875, 0.99998875, 0.99998875, 0.99998875, 0.99999704,
0.99999704, 0.99999704, 0.99999704, 0.99999927, 0.99999927,
0.99999927, 0.99999927, 0.99999985, 0.99999985, 0.99999985]), 'vx': array([-1.99999989, -1.99999989, -1.99999989, -1.99999989, -1.99999945,
-1.99999945, -1.99999945, -1.99999945, -1.99999779, -1.99999779,
-1.99999779, -1.99999779, -1.99999159, -1.99999159, -1.99999159,
-1.99999159, -1.9999701 , -1.9999701 , -1.9999701 , -1.9999701 ,
-1.999901 , -1.999901 , -1.999901 , -1.999901 , -1.99969523,
-1.99969523, -1.99969523, -1.99969523, -1.99913002, -1.99913002,
-1.99913002, -1.99913002, -1.99770379, -1.99770379, -1.99770379,
-1.99770379, -1.99441129, -1.99441129, -1.99441129, -1.99441129,
-1.98748181, -1.98748181, -1.98748181, -1.98748181, -1.97421069,
-1.97421069, -1.97421069, -1.97421069, -1.951062 , -1.951062 ,
-1.951062 , -1.951062 , -1.91412209, -1.91412209, -1.91412209,
-1.91412209, -1.85973564, -1.85973564, -1.85973564, -1.85973564,
-1.78501081, -1.78501081, -1.78501081, -1.78501081, -1.68973692,
-1.68973692, -1.68973692, -1.68973692, -1.58167982, -1.58167982,
-1.58167982, -1.58167982, -1.46723781, -1.46723781, -1.46723781,
-1.46723781, -1.34917209, -1.34917209, -1.34917209, -1.34917209,
-1.22873451, -1.22873451, -1.22873451, -1.22873451, -1.10667593,
-1.10667593, -1.10667593, -1.10667593, -0.98389766, -0.98389766,
-0.98389766, -0.98389766, -0.86186374, -0.86186374, -0.86186374,
-0.86186374, -0.74143354, -0.74143354, -0.74143354, -0.74143354,
-0.62375092, -0.62375092, -0.62375092, -0.62375092, -0.51015791,
-0.51015791, -0.51015791, -0.51015791, -0.40167983, -0.40167983,
-0.40167983, -0.40167983, -0.29941936, -0.29941936, -0.29941936,
-0.29941936, -0.20578565, -0.20578565, -0.20578565, -0.20578565,
-0.11775423, -0.11775423, -0.11775423, -0.11775423, -0.04590013,
-0.04590013, -0.04590013, -0.04590013, 0.04590013, 0.04590013,
0.04590013, 0.04590013, 0.11775423, 0.11775423, 0.11775423,
0.11775423, 0.20578565, 0.20578565, 0.20578565, 0.20578565,
0.29941936, 0.29941936, 0.29941936, 0.29941936, 0.40167983,
0.40167983, 0.40167983, 0.40167983, 0.51015791, 0.51015791,
0.51015791, 0.51015791, 0.62375092, 0.62375092, 0.62375092,
0.62375092, 0.74143354, 0.74143354, 0.74143354, 0.74143354,
0.86186374, 0.86186374, 0.86186374, 0.86186374, 0.98389766,
0.98389766, 0.98389766, 0.98389766, 1.10667593, 1.10667593,
1.10667593, 1.10667593, 1.22873451, 1.22873451, 1.22873451,
1.22873451, 1.34917209, 1.34917209, 1.34917209, 1.34917209,
1.46723781, 1.46723781, 1.46723781, 1.46723781, 1.58167982,
1.58167982, 1.58167982, 1.58167982, 1.68973692, 1.68973692,
1.68973692, 1.68973692, 1.78501081, 1.78501081, 1.78501081,
1.78501081, 1.85973564, 1.85973564, 1.85973564, 1.85973564,
1.91412209, 1.91412209, 1.91412209, 1.91412209, 1.951062 ,
1.951062 , 1.951062 , 1.951062 , 1.97421069, 1.97421069,
1.97421069, 1.97421069, 1.98748181, 1.98748181, 1.98748181,
1.98748181, 1.99441129, 1.99441129, 1.99441129, 1.99441129,
1.99770379, 1.99770379, 1.99770379, 1.99770379, 1.99913002,
1.99913002, 1.99913002, 1.99913002, 1.99969523, 1.99969523,
1.99969523, 1.99969523, 1.999901 , 1.999901 , 1.999901 ,
1.999901 , 1.9999701 , 1.9999701 , 1.9999701 , 1.9999701 ,
1.99999159, 1.99999159, 1.99999159, 1.99999159, 1.99999779,
1.99999779, 1.99999779, 1.99999779, 1.99999945, 1.99999945,
1.99999945, 1.99999945, 1.99999989, 1.99999989, 1.99999989]), 'P': array([0.39999991, 0.39999991, 0.39999991, 0.39999991, 0.39999959,
0.39999959, 0.39999959, 0.39999959, 0.39999835, 0.39999835,
0.39999835, 0.39999835, 0.3999937 , 0.3999937 , 0.3999937 ,
0.3999937 , 0.39997763, 0.39997763, 0.39997763, 0.39997763,
0.39992592, 0.39992592, 0.39992592, 0.39992592, 0.399772 ,
0.399772 , 0.399772 , 0.399772 , 0.39934947, 0.39934947,
0.39934947, 0.39934947, 0.3982851 , 0.3982851 , 0.3982851 ,
0.3982851 , 0.39583774, 0.39583774, 0.39583774, 0.39583774,
0.39073083, 0.39073083, 0.39073083, 0.39073083, 0.3811129 ,
0.3811129 , 0.3811129 , 0.3811129 , 0.36483467, 0.36483467,
0.36483467, 0.36483467, 0.3401215 , 0.3401215 , 0.3401215 ,
0.3401215 , 0.30640378, 0.30640378, 0.30640378, 0.30640378,
0.26470256, 0.26470256, 0.26470256, 0.26470256, 0.21761913,
0.21761913, 0.21761913, 0.21761913, 0.17367368, 0.17367368,
0.17367368, 0.17367368, 0.13657873, 0.13657873, 0.13657873,
0.13657873, 0.10648915, 0.10648915, 0.10648915, 0.10648915,
0.08263428, 0.08263428, 0.08263428, 0.08263428, 0.06402751,
0.06402751, 0.06402751, 0.06402751, 0.04972303, 0.04972303,
0.04972303, 0.04972303, 0.03884924, 0.03884924, 0.03884924,
0.03884924, 0.03061895, 0.03061895, 0.03061895, 0.03061895,
0.02440068, 0.02440068, 0.02440068, 0.02440068, 0.01970868,
0.01970868, 0.01970868, 0.01970868, 0.01619841, 0.01619841,
0.01619841, 0.01619841, 0.01361226, 0.01361226, 0.01361226,
0.01361226, 0.01172956, 0.01172956, 0.01172956, 0.01172956,
0.0105538 , 0.0105538 , 0.0105538 , 0.0105538 , 0.00977192,
0.00977192, 0.00977192, 0.00977192, 0.00977192, 0.00977192,
0.00977192, 0.00977192, 0.0105538 , 0.0105538 , 0.0105538 ,
0.0105538 , 0.01172956, 0.01172956, 0.01172956, 0.01172956,
0.01361226, 0.01361226, 0.01361226, 0.01361226, 0.01619841,
0.01619841, 0.01619841, 0.01619841, 0.01970868, 0.01970868,
0.01970868, 0.01970868, 0.02440068, 0.02440068, 0.02440068,
0.02440068, 0.03061895, 0.03061895, 0.03061895, 0.03061895,
0.03884924, 0.03884924, 0.03884924, 0.03884924, 0.04972303,
0.04972303, 0.04972303, 0.04972303, 0.06402751, 0.06402751,
0.06402751, 0.06402751, 0.08263428, 0.08263428, 0.08263428,
0.08263428, 0.10648915, 0.10648915, 0.10648915, 0.10648915,
0.13657873, 0.13657873, 0.13657873, 0.13657873, 0.17367368,
0.17367368, 0.17367368, 0.17367368, 0.21761913, 0.21761913,
0.21761913, 0.21761913, 0.26470256, 0.26470256, 0.26470256,
0.26470256, 0.30640378, 0.30640378, 0.30640378, 0.30640378,
0.3401215 , 0.3401215 , 0.3401215 , 0.3401215 , 0.36483467,
0.36483467, 0.36483467, 0.36483467, 0.3811129 , 0.3811129 ,
0.3811129 , 0.3811129 , 0.39073083, 0.39073083, 0.39073083,
0.39073083, 0.39583774, 0.39583774, 0.39583774, 0.39583774,
0.3982851 , 0.3982851 , 0.3982851 , 0.3982851 , 0.39934947,
0.39934947, 0.39934947, 0.39934947, 0.399772 , 0.399772 ,
0.399772 , 0.399772 , 0.39992592, 0.39992592, 0.39992592,
0.39992592, 0.39997763, 0.39997763, 0.39997763, 0.39997763,
0.3999937 , 0.3999937 , 0.3999937 , 0.3999937 , 0.39999835,
0.39999835, 0.39999835, 0.39999835, 0.39999959, 0.39999959,
0.39999959, 0.39999959, 0.39999991, 0.39999991, 0.39999991])}, {'rho': array([0.9999995 , 0.9999995 , 0.9999995 , 0.9999995 , 0.99999775,
0.99999775, 0.99999775, 0.99999775, 0.99999151, 0.99999151,
0.99999151, 0.99999151, 0.9999699 , 0.9999699 , 0.9999699 ,
0.9999699 , 0.99990026, 0.99990026, 0.99990026, 0.99990026,
0.99969192, 0.99969192, 0.99969192, 0.99969192, 0.99911516,
0.99911516, 0.99911516, 0.99911516, 0.99764348, 0.99764348,
0.99764348, 0.99764348, 0.9941977 , 0.9941977 , 0.9941977 ,
0.9941977 , 0.9868287 , 0.9868287 , 0.9868287 , 0.9868287 ,
0.97249805, 0.97249805, 0.97249805, 0.97249805, 0.94724114,
0.94724114, 0.94724114, 0.94724114, 0.90696367, 0.90696367,
0.90696367, 0.90696367, 0.84879949, 0.84879949, 0.84879949,
0.84879949, 0.77255426, 0.77255426, 0.77255426, 0.77255426,
0.68175915, 0.68175915, 0.68175915, 0.68175915, 0.58187946,
0.58187946, 0.58187946, 0.58187946, 0.48324306, 0.48324306,
0.48324306, 0.48324306, 0.39424599, 0.39424599, 0.39424599,
0.39424599, 0.31723201, 0.31723201, 0.31723201, 0.31723201,
0.25270654, 0.25270654, 0.25270654, 0.25270654, 0.20005976,
0.20005976, 0.20005976, 0.20005976, 0.15808723, 0.15808723,
0.15808723, 0.15808723, 0.12517052, 0.12517052, 0.12517052,
0.12517052, 0.0996631 , 0.0996631 , 0.0996631 , 0.0996631 ,
0.0800948 , 0.0800948 , 0.0800948 , 0.0800948 , 0.06530948,
0.06530948, 0.06530948, 0.06530948, 0.05437734, 0.05437734,
0.05437734, 0.05437734, 0.04651053, 0.04651053, 0.04651053,
0.04651053, 0.04098266, 0.04098266, 0.04098266, 0.04098266,
0.03767661, 0.03767661, 0.03767661, 0.03767661, 0.03560945,
0.03560945, 0.03560945, 0.03560945, 0.03560945, 0.03560945,
0.03560945, 0.03560945, 0.03767661, 0.03767661, 0.03767661,
0.03767661, 0.04098266, 0.04098266, 0.04098266, 0.04098266,
0.04651053, 0.04651053, 0.04651053, 0.04651053, 0.05437734,
0.05437734, 0.05437734, 0.05437734, 0.06530948, 0.06530948,
0.06530948, 0.06530948, 0.0800948 , 0.0800948 , 0.0800948 ,
0.0800948 , 0.0996631 , 0.0996631 , 0.0996631 , 0.0996631 ,
0.12517052, 0.12517052, 0.12517052, 0.12517052, 0.15808723,
0.15808723, 0.15808723, 0.15808723, 0.20005976, 0.20005976,
0.20005976, 0.20005976, 0.25270654, 0.25270654, 0.25270654,
0.25270654, 0.31723201, 0.31723201, 0.31723201, 0.31723201,
0.39424599, 0.39424599, 0.39424599, 0.39424599, 0.48324306,
0.48324306, 0.48324306, 0.48324306, 0.58187946, 0.58187946,
0.58187946, 0.58187946, 0.68175915, 0.68175915, 0.68175915,
0.68175915, 0.77255426, 0.77255426, 0.77255426, 0.77255426,
0.84879949, 0.84879949, 0.84879949, 0.84879949, 0.90696367,
0.90696367, 0.90696367, 0.90696367, 0.94724114, 0.94724114,
0.94724114, 0.94724114, 0.97249805, 0.97249805, 0.97249805,
0.97249805, 0.9868287 , 0.9868287 , 0.9868287 , 0.9868287 ,
0.9941977 , 0.9941977 , 0.9941977 , 0.9941977 , 0.99764348,
0.99764348, 0.99764348, 0.99764348, 0.99911516, 0.99911516,
0.99911516, 0.99911516, 0.99969192, 0.99969192, 0.99969192,
0.99969192, 0.99990026, 0.99990026, 0.99990026, 0.99990026,
0.9999699 , 0.9999699 , 0.9999699 , 0.9999699 , 0.99999151,
0.99999151, 0.99999151, 0.99999151, 0.99999775, 0.99999775,
0.99999775, 0.99999775, 0.9999995 , 0.9999995 , 0.9999995 ]), 'vx': array([-1.99999963, -1.99999963, -1.99999963, -1.99999963, -1.99999832,
-1.99999832, -1.99999832, -1.99999832, -1.99999365, -1.99999365,
-1.99999365, -1.99999365, -1.99997748, -1.99997748, -1.99997748,
-1.99997748, -1.99992541, -1.99992541, -1.99992541, -1.99992541,
-1.99976969, -1.99976969, -1.99976969, -1.99976969, -1.99933891,
-1.99933891, -1.99933891, -1.99933891, -1.99824065, -1.99824065,
-1.99824065, -1.99824065, -1.99567083, -1.99567083, -1.99567083,
-1.99567083, -1.99017235, -1.99017235, -1.99017235, -1.99017235,
-1.97944047, -1.97944047, -1.97944047, -1.97944047, -1.96033591,
-1.96033591, -1.96033591, -1.96033591, -1.92922225, -1.92922225,
-1.92922225, -1.92922225, -1.88254952, -1.88254952, -1.88254952,
-1.88254952, -1.81738377, -1.81738377, -1.81738377, -1.81738377,
-1.7320712 , -1.7320712 , -1.7320712 , -1.7320712 , -1.63119279,
-1.63119279, -1.63119279, -1.63119279, -1.5224141 , -1.5224141 ,
-1.5224141 , -1.5224141 , -1.40952663, -1.40952663, -1.40952663,
-1.40952663, -1.29399695, -1.29399695, -1.29399695, -1.29399695,
-1.17663739, -1.17663739, -1.17663739, -1.17663739, -1.05806176,
-1.05806176, -1.05806176, -1.05806176, -0.93935673, -0.93935673,
-0.93935673, -0.93935673, -0.82164211, -0.82164211, -0.82164211,
-0.82164211, -0.70568889, -0.70568889, -0.70568889, -0.70568889,
-0.59266476, -0.59266476, -0.59266476, -0.59266476, -0.48371266,
-0.48371266, -0.48371266, -0.48371266, -0.37988588, -0.37988588,
-0.37988588, -0.37988588, -0.28225582, -0.28225582, -0.28225582,
-0.28225582, -0.19343253, -0.19343253, -0.19343253, -0.19343253,
-0.10988534, -0.10988534, -0.10988534, -0.10988534, -0.0427074 ,
-0.0427074 , -0.0427074 , -0.0427074 , 0.0427074 , 0.0427074 ,
0.0427074 , 0.0427074 , 0.10988534, 0.10988534, 0.10988534,
0.10988534, 0.19343253, 0.19343253, 0.19343253, 0.19343253,
0.28225582, 0.28225582, 0.28225582, 0.28225582, 0.37988588,
0.37988588, 0.37988588, 0.37988588, 0.48371266, 0.48371266,
0.48371266, 0.48371266, 0.59266476, 0.59266476, 0.59266476,
0.59266476, 0.70568889, 0.70568889, 0.70568889, 0.70568889,
0.82164211, 0.82164211, 0.82164211, 0.82164211, 0.93935673,
0.93935673, 0.93935673, 0.93935673, 1.05806176, 1.05806176,
1.05806176, 1.05806176, 1.17663739, 1.17663739, 1.17663739,
1.17663739, 1.29399695, 1.29399695, 1.29399695, 1.29399695,
1.40952663, 1.40952663, 1.40952663, 1.40952663, 1.5224141 ,
1.5224141 , 1.5224141 , 1.5224141 , 1.63119279, 1.63119279,
1.63119279, 1.63119279, 1.7320712 , 1.7320712 , 1.7320712 ,
1.7320712 , 1.81738377, 1.81738377, 1.81738377, 1.81738377,
1.88254952, 1.88254952, 1.88254952, 1.88254952, 1.92922225,
1.92922225, 1.92922225, 1.92922225, 1.96033591, 1.96033591,
1.96033591, 1.96033591, 1.97944047, 1.97944047, 1.97944047,
1.97944047, 1.99017235, 1.99017235, 1.99017235, 1.99017235,
1.99567083, 1.99567083, 1.99567083, 1.99567083, 1.99824065,
1.99824065, 1.99824065, 1.99824065, 1.99933891, 1.99933891,
1.99933891, 1.99933891, 1.99976969, 1.99976969, 1.99976969,
1.99976969, 1.99992541, 1.99992541, 1.99992541, 1.99992541,
1.99997748, 1.99997748, 1.99997748, 1.99997748, 1.99999365,
1.99999365, 1.99999365, 1.99999365, 1.99999832, 1.99999832,
1.99999832, 1.99999832, 1.99999963, 1.99999963, 1.99999963]), 'P': array([0.39999972, 0.39999972, 0.39999972, 0.39999972, 0.39999874,
0.39999874, 0.39999874, 0.39999874, 0.39999525, 0.39999525,
0.39999525, 0.39999525, 0.39998315, 0.39998315, 0.39998315,
0.39998315, 0.39994419, 0.39994419, 0.39994419, 0.39994419,
0.39982769, 0.39982769, 0.39982769, 0.39982769, 0.39950557,
0.39950557, 0.39950557, 0.39950557, 0.39868543, 0.39868543,
0.39868543, 0.39868543, 0.39677235, 0.39677235, 0.39677235,
0.39677235, 0.39270661, 0.39270661, 0.39270661, 0.39270661,
0.38487747, 0.38487747, 0.38487747, 0.38487747, 0.3712801 ,
0.3712801 , 0.3712801 , 0.3712801 , 0.35003692, 0.35003692,
0.35003692, 0.35003692, 0.32016663, 0.32016663, 0.32016663,
0.32016663, 0.28215814, 0.28215814, 0.28215814, 0.28215814,
0.23766321, 0.23766321, 0.23766321, 0.23766321, 0.19261647,
0.19261647, 0.19261647, 0.19261647, 0.15337765, 0.15337765,
0.15337765, 0.15337765, 0.12086577, 0.12086577, 0.12086577,
0.12086577, 0.09464989, 0.09464989, 0.09464989, 0.09464989,
0.07388122, 0.07388122, 0.07388122, 0.07388122, 0.0576594 ,
0.0576594 , 0.0576594 , 0.0576594 , 0.04515925, 0.04515925,
0.04515925, 0.04515925, 0.03560064, 0.03560064, 0.03560064,
0.03560064, 0.02831583, 0.02831583, 0.02831583, 0.02831583,
0.02276887, 0.02276887, 0.02276887, 0.02276887, 0.0185577 ,
0.0185577 , 0.0185577 , 0.0185577 , 0.01538723, 0.01538723,
0.01538723, 0.01538723, 0.01304001, 0.01304001, 0.01304001,
0.01304001, 0.01131957, 0.01131957, 0.01131957, 0.01131957,
0.01025723, 0.01025723, 0.01025723, 0.01025723, 0.00953828,
0.00953828, 0.00953828, 0.00953828, 0.00953828, 0.00953828,
0.00953828, 0.00953828, 0.01025723, 0.01025723, 0.01025723,
0.01025723, 0.01131957, 0.01131957, 0.01131957, 0.01131957,
0.01304001, 0.01304001, 0.01304001, 0.01304001, 0.01538723,
0.01538723, 0.01538723, 0.01538723, 0.0185577 , 0.0185577 ,
0.0185577 , 0.0185577 , 0.02276887, 0.02276887, 0.02276887,
0.02276887, 0.02831583, 0.02831583, 0.02831583, 0.02831583,
0.03560064, 0.03560064, 0.03560064, 0.03560064, 0.04515925,
0.04515925, 0.04515925, 0.04515925, 0.0576594 , 0.0576594 ,
0.0576594 , 0.0576594 , 0.07388122, 0.07388122, 0.07388122,
0.07388122, 0.09464989, 0.09464989, 0.09464989, 0.09464989,
0.12086577, 0.12086577, 0.12086577, 0.12086577, 0.15337765,
0.15337765, 0.15337765, 0.15337765, 0.19261647, 0.19261647,
0.19261647, 0.19261647, 0.23766321, 0.23766321, 0.23766321,
0.23766321, 0.28215814, 0.28215814, 0.28215814, 0.28215814,
0.32016663, 0.32016663, 0.32016663, 0.32016663, 0.35003692,
0.35003692, 0.35003692, 0.35003692, 0.3712801 , 0.3712801 ,
0.3712801 , 0.3712801 , 0.38487747, 0.38487747, 0.38487747,
0.38487747, 0.39270661, 0.39270661, 0.39270661, 0.39270661,
0.39677235, 0.39677235, 0.39677235, 0.39677235, 0.39868543,
0.39868543, 0.39868543, 0.39868543, 0.39950557, 0.39950557,
0.39950557, 0.39950557, 0.39982769, 0.39982769, 0.39982769,
0.39982769, 0.39994419, 0.39994419, 0.39994419, 0.39994419,
0.39998315, 0.39998315, 0.39998315, 0.39998315, 0.39999525,
0.39999525, 0.39999525, 0.39999525, 0.39999874, 0.39999874,
0.39999874, 0.39999874, 0.39999972, 0.39999972, 0.39999972])}, {'rho': array([0.99999847, 0.99999847, 0.99999847, 0.99999847, 0.99999357,
0.99999357, 0.99999357, 0.99999357, 0.99997732, 0.99997732,
0.99997732, 0.99997732, 0.99992482, 0.99992482, 0.99992482,
0.99992482, 0.99976716, 0.99976716, 0.99976716, 0.99976716,
0.99932783, 0.99932783, 0.99932783, 0.99932783, 0.99819613,
0.99819613, 0.99819613, 0.99819613, 0.99551258, 0.99551258,
0.99551258, 0.99551258, 0.98968135, 0.98968135, 0.98968135,
0.98968135, 0.97812118, 0.97812118, 0.97812118, 0.97812118,
0.95728984, 0.95728984, 0.95728984, 0.95728984, 0.92324227,
0.92324227, 0.92324227, 0.92324227, 0.87276271, 0.87276271,
0.87276271, 0.87276271, 0.8047176 , 0.8047176 , 0.8047176 ,
0.8047176 , 0.72116255, 0.72116255, 0.72116255, 0.72116255,
0.62714836, 0.62714836, 0.62714836, 0.62714836, 0.52957021,
0.52957021, 0.52957021, 0.52957021, 0.43858686, 0.43858686,
0.43858686, 0.43858686, 0.35783746, 0.35783746, 0.35783746,
0.35783746, 0.28857469, 0.28857469, 0.28857469, 0.28857469,
0.2307988 , 0.2307988 , 0.2307988 , 0.2307988 , 0.1837447 ,
0.1837447 , 0.1837447 , 0.1837447 , 0.14619579, 0.14619579,
0.14619579, 0.14619579, 0.11662939, 0.11662939, 0.11662939,
0.11662939, 0.09360282, 0.09360282, 0.09360282, 0.09360282,
0.07583372, 0.07583372, 0.07583372, 0.07583372, 0.0623598 ,
0.0623598 , 0.0623598 , 0.0623598 , 0.05234262, 0.05234262,
0.05234262, 0.05234262, 0.04510453, 0.04510453, 0.04510453,
0.04510453, 0.03998822, 0.03998822, 0.03998822, 0.03998822,
0.03696215, 0.03696215, 0.03696215, 0.03696215, 0.03504521,
0.03504521, 0.03504521, 0.03504521, 0.03504521, 0.03504521,
0.03504521, 0.03504521, 0.03696215, 0.03696215, 0.03696215,
0.03696215, 0.03998822, 0.03998822, 0.03998822, 0.03998822,
0.04510453, 0.04510453, 0.04510453, 0.04510453, 0.05234262,
0.05234262, 0.05234262, 0.05234262, 0.0623598 , 0.0623598 ,
0.0623598 , 0.0623598 , 0.07583372, 0.07583372, 0.07583372,
0.07583372, 0.09360282, 0.09360282, 0.09360282, 0.09360282,
0.11662939, 0.11662939, 0.11662939, 0.11662939, 0.14619579,
0.14619579, 0.14619579, 0.14619579, 0.1837447 , 0.1837447 ,
0.1837447 , 0.1837447 , 0.2307988 , 0.2307988 , 0.2307988 ,
0.2307988 , 0.28857469, 0.28857469, 0.28857469, 0.28857469,
0.35783746, 0.35783746, 0.35783746, 0.35783746, 0.43858686,
0.43858686, 0.43858686, 0.43858686, 0.52957021, 0.52957021,
0.52957021, 0.52957021, 0.62714836, 0.62714836, 0.62714836,
0.62714836, 0.72116255, 0.72116255, 0.72116255, 0.72116255,
0.8047176 , 0.8047176 , 0.8047176 , 0.8047176 , 0.87276271,
0.87276271, 0.87276271, 0.87276271, 0.92324227, 0.92324227,
0.92324227, 0.92324227, 0.95728984, 0.95728984, 0.95728984,
0.95728984, 0.97812118, 0.97812118, 0.97812118, 0.97812118,
0.98968135, 0.98968135, 0.98968135, 0.98968135, 0.99551258,
0.99551258, 0.99551258, 0.99551258, 0.99819613, 0.99819613,
0.99819613, 0.99819613, 0.99932783, 0.99932783, 0.99932783,
0.99932783, 0.99976716, 0.99976716, 0.99976716, 0.99976716,
0.99992482, 0.99992482, 0.99992482, 0.99992482, 0.99997732,
0.99997732, 0.99997732, 0.99997732, 0.99999357, 0.99999357,
0.99999357, 0.99999357, 0.99999847, 0.99999847, 0.99999847]), 'vx': array([-1.99999886, -1.99999886, -1.99999886, -1.99999886, -1.99999519,
-1.99999519, -1.99999519, -1.99999519, -1.99998304, -1.99998304,
-1.99998304, -1.99998304, -1.99994377, -1.99994377, -1.99994377,
-1.99994377, -1.9998259 , -1.9998259 , -1.9998259 , -1.9998259 ,
-1.99949762, -1.99949762, -1.99949762, -1.99949762, -1.99865259,
-1.99865259, -1.99865259, -1.99865259, -1.99665 , -1.99665 ,
-1.99665 , -1.99665 , -1.99229744, -1.99229744, -1.99229744,
-1.99229744, -1.98364593, -1.98364593, -1.98364593, -1.98364593,
-1.96793482, -1.96793482, -1.96793482, -1.96793482, -1.94182029,
-1.94182029, -1.94182029, -1.94182029, -1.90188121, -1.90188121,
-1.90188121, -1.90188121, -1.84517809, -1.84517809, -1.84517809,
-1.84517809, -1.76960221, -1.76960221, -1.76960221, -1.76960221,
-1.67650008, -1.67650008, -1.67650008, -1.67650008, -1.57350313,
-1.57350313, -1.57350313, -1.57350313, -1.46554675, -1.46554675,
-1.46554675, -1.46554675, -1.35474156, -1.35474156, -1.35474156,
-1.35474156, -1.24188933, -1.24188933, -1.24188933, -1.24188933,
-1.12760981, -1.12760981, -1.12760981, -1.12760981, -1.01250337,
-1.01250337, -1.01250337, -1.01250337, -0.89775199, -0.89775199,
-0.89775199, -0.89775199, -0.78412707, -0.78412707, -0.78412707,
-0.78412707, -0.67240099, -0.67240099, -0.67240099, -0.67240099,
-0.56376681, -0.56376681, -0.56376681, -0.56376681, -0.45914055,
-0.45914055, -0.45914055, -0.45914055, -0.35967195, -0.35967195,
-0.35967195, -0.35967195, -0.26636932, -0.26636932, -0.26636932,
-0.26636932, -0.18206513, -0.18206513, -0.18206513, -0.18206513,
-0.10268501, -0.10268501, -0.10268501, -0.10268501, -0.03978378,
-0.03978378, -0.03978378, -0.03978378, 0.03978378, 0.03978378,
0.03978378, 0.03978378, 0.10268501, 0.10268501, 0.10268501,
0.10268501, 0.18206513, 0.18206513, 0.18206513, 0.18206513,
0.26636932, 0.26636932, 0.26636932, 0.26636932, 0.35967195,
0.35967195, 0.35967195, 0.35967195, 0.45914055, 0.45914055,
0.45914055, 0.45914055, 0.56376681, 0.56376681, 0.56376681,
0.56376681, 0.67240099, 0.67240099, 0.67240099, 0.67240099,
0.78412707, 0.78412707, 0.78412707, 0.78412707, 0.89775199,
0.89775199, 0.89775199, 0.89775199, 1.01250337, 1.01250337,
1.01250337, 1.01250337, 1.12760981, 1.12760981, 1.12760981,
1.12760981, 1.24188933, 1.24188933, 1.24188933, 1.24188933,
1.35474156, 1.35474156, 1.35474156, 1.35474156, 1.46554675,
1.46554675, 1.46554675, 1.46554675, 1.57350313, 1.57350313,
1.57350313, 1.57350313, 1.67650008, 1.67650008, 1.67650008,
1.67650008, 1.76960221, 1.76960221, 1.76960221, 1.76960221,
1.84517809, 1.84517809, 1.84517809, 1.84517809, 1.90188121,
1.90188121, 1.90188121, 1.90188121, 1.94182029, 1.94182029,
1.94182029, 1.94182029, 1.96793482, 1.96793482, 1.96793482,
1.96793482, 1.98364593, 1.98364593, 1.98364593, 1.98364593,
1.99229744, 1.99229744, 1.99229744, 1.99229744, 1.99665 ,
1.99665 , 1.99665 , 1.99665 , 1.99865259, 1.99865259,
1.99865259, 1.99865259, 1.99949762, 1.99949762, 1.99949762,
1.99949762, 1.9998259 , 1.9998259 , 1.9998259 , 1.9998259 ,
1.99994377, 1.99994377, 1.99994377, 1.99994377, 1.99998304,
1.99998304, 1.99998304, 1.99998304, 1.99999519, 1.99999519,
1.99999519, 1.99999519, 1.99999886, 1.99999886, 1.99999886]), 'P': array([0.39999914, 0.39999914, 0.39999914, 0.39999914, 0.3999964 ,
0.3999964 , 0.3999964 , 0.3999964 , 0.39998731, 0.39998731,
0.39998731, 0.39998731, 0.39995792, 0.39995792, 0.39995792,
0.39995792, 0.39986973, 0.39986973, 0.39986973, 0.39986973,
0.39962422, 0.39962422, 0.39962422, 0.39962422, 0.39899287,
0.39899287, 0.39899287, 0.39899287, 0.3975003 , 0.3975003 ,
0.3975003 , 0.3975003 , 0.39427349, 0.39427349, 0.39427349,
0.39427349, 0.38792864, 0.38792864, 0.38792864, 0.38792864,
0.37663634, 0.37663634, 0.37663634, 0.37663634, 0.35850421,
0.35850421, 0.35850421, 0.35850421, 0.33225106, 0.33225106,
0.33225106, 0.33225106, 0.29786124, 0.29786124, 0.29786124,
0.29786124, 0.25659571, 0.25659571, 0.25659571, 0.25659571,
0.21172167, 0.21172167, 0.21172167, 0.21172167, 0.17074616,
0.17074616, 0.17074616, 0.17074616, 0.13602374, 0.13602374,
0.13602374, 0.13602374, 0.10753076, 0.10753076, 0.10753076,
0.10753076, 0.08461296, 0.08461296, 0.08461296, 0.08461296,
0.06644791, 0.06644791, 0.06644791, 0.06644791, 0.05223703,
0.05223703, 0.05223703, 0.05223703, 0.04125001, 0.04125001,
0.04125001, 0.04125001, 0.03279609, 0.03279609, 0.03279609,
0.03279609, 0.02631068, 0.02631068, 0.02631068, 0.02631068,
0.02133519, 0.02133519, 0.02133519, 0.02133519, 0.01753846,
0.01753846, 0.01753846, 0.01753846, 0.01466246, 0.01466246,
0.01466246, 0.01466246, 0.01252489, 0.01252489, 0.01252489,
0.01252489, 0.01094784, 0.01094784, 0.01094784, 0.01094784,
0.0099871 , 0.0099871 , 0.0099871 , 0.0099871 , 0.0093257 ,
0.0093257 , 0.0093257 , 0.0093257 , 0.0093257 , 0.0093257 ,
0.0093257 , 0.0093257 , 0.0099871 , 0.0099871 , 0.0099871 ,
0.0099871 , 0.01094784, 0.01094784, 0.01094784, 0.01094784,
0.01252489, 0.01252489, 0.01252489, 0.01252489, 0.01466246,
0.01466246, 0.01466246, 0.01466246, 0.01753846, 0.01753846,
0.01753846, 0.01753846, 0.02133519, 0.02133519, 0.02133519,
0.02133519, 0.02631068, 0.02631068, 0.02631068, 0.02631068,
0.03279609, 0.03279609, 0.03279609, 0.03279609, 0.04125001,
0.04125001, 0.04125001, 0.04125001, 0.05223703, 0.05223703,
0.05223703, 0.05223703, 0.06644791, 0.06644791, 0.06644791,
0.06644791, 0.08461296, 0.08461296, 0.08461296, 0.08461296,
0.10753076, 0.10753076, 0.10753076, 0.10753076, 0.13602374,
0.13602374, 0.13602374, 0.13602374, 0.17074616, 0.17074616,
0.17074616, 0.17074616, 0.21172167, 0.21172167, 0.21172167,
0.21172167, 0.25659571, 0.25659571, 0.25659571, 0.25659571,
0.29786124, 0.29786124, 0.29786124, 0.29786124, 0.33225106,
0.33225106, 0.33225106, 0.33225106, 0.35850421, 0.35850421,
0.35850421, 0.35850421, 0.37663634, 0.37663634, 0.37663634,
0.37663634, 0.38792864, 0.38792864, 0.38792864, 0.38792864,
0.39427349, 0.39427349, 0.39427349, 0.39427349, 0.3975003 ,
0.3975003 , 0.3975003 , 0.3975003 , 0.39899287, 0.39899287,
0.39899287, 0.39899287, 0.39962422, 0.39962422, 0.39962422,
0.39962422, 0.39986973, 0.39986973, 0.39986973, 0.39986973,
0.39995792, 0.39995792, 0.39995792, 0.39995792, 0.39998731,
0.39998731, 0.39998731, 0.39998731, 0.3999964 , 0.3999964 ,
0.3999964 , 0.3999964 , 0.39999914, 0.39999914, 0.39999914])}, {'rho': array([0.99999566, 0.99999566, 0.99999566, 0.99999566, 0.99998283,
0.99998283, 0.99998283, 0.99998283, 0.99994331, 0.99994331,
0.99994331, 0.99994331, 0.99982395, 0.99982395, 0.99982395,
0.99982395, 0.99948933, 0.99948933, 0.99948933, 0.99948933,
0.9986196 , 0.9986196 , 0.9986196 , 0.9986196 , 0.99653253,
0.99653253, 0.99653253, 0.99653253, 0.99192857, 0.99192857,
0.99192857, 0.99192857, 0.98263354, 0.98263354, 0.98263354,
0.98263354, 0.96552537, 0.96552537, 0.96552537, 0.96552537,
0.93689349, 0.93689349, 0.93689349, 0.93689349, 0.89334911,
0.89334911, 0.89334911, 0.89334911, 0.83306104, 0.83306104,
0.83306104, 0.83306104, 0.7568574 , 0.7568574 , 0.7568574 ,
0.7568574 , 0.66886528, 0.66886528, 0.66886528, 0.66886528,
0.57434604, 0.57434604, 0.57434604, 0.57434604, 0.48263253,
0.48263253, 0.48263253, 0.48263253, 0.39923911, 0.39923911,
0.39923911, 0.39923911, 0.32605056, 0.32605056, 0.32605056,
0.32605056, 0.26366261, 0.26366261, 0.26366261, 0.26366261,
0.21178267, 0.21178267, 0.21178267, 0.21178267, 0.16957807,
0.16957807, 0.16957807, 0.16957807, 0.13582335, 0.13582335,
0.13582335, 0.13582335, 0.10913615, 0.10913615, 0.10913615,
0.10913615, 0.08824699, 0.08824699, 0.08824699, 0.08824699,
0.07204686, 0.07204686, 0.07204686, 0.07204686, 0.05971767,
0.05971767, 0.05971767, 0.05971767, 0.0505044 , 0.0505044 ,
0.0505044 , 0.0505044 , 0.04382509, 0.04382509, 0.04382509,
0.04382509, 0.03907704, 0.03907704, 0.03907704, 0.03907704,
0.03630491, 0.03630491, 0.03630491, 0.03630491, 0.03452707,
0.03452707, 0.03452707, 0.03452707, 0.03452707, 0.03452707,
0.03452707, 0.03452707, 0.03630491, 0.03630491, 0.03630491,
0.03630491, 0.03907704, 0.03907704, 0.03907704, 0.03907704,
0.04382509, 0.04382509, 0.04382509, 0.04382509, 0.0505044 ,
0.0505044 , 0.0505044 , 0.0505044 , 0.05971767, 0.05971767,
0.05971767, 0.05971767, 0.07204686, 0.07204686, 0.07204686,
0.07204686, 0.08824699, 0.08824699, 0.08824699, 0.08824699,
0.10913615, 0.10913615, 0.10913615, 0.10913615, 0.13582335,
0.13582335, 0.13582335, 0.13582335, 0.16957807, 0.16957807,
0.16957807, 0.16957807, 0.21178267, 0.21178267, 0.21178267,
0.21178267, 0.26366261, 0.26366261, 0.26366261, 0.26366261,
0.32605056, 0.32605056, 0.32605056, 0.32605056, 0.39923911,
0.39923911, 0.39923911, 0.39923911, 0.48263253, 0.48263253,
0.48263253, 0.48263253, 0.57434604, 0.57434604, 0.57434604,
0.57434604, 0.66886528, 0.66886528, 0.66886528, 0.66886528,
0.7568574 , 0.7568574 , 0.7568574 , 0.7568574 , 0.83306104,
0.83306104, 0.83306104, 0.83306104, 0.89334911, 0.89334911,
0.89334911, 0.89334911, 0.93689349, 0.93689349, 0.93689349,
0.93689349, 0.96552537, 0.96552537, 0.96552537, 0.96552537,
0.98263354, 0.98263354, 0.98263354, 0.98263354, 0.99192857,
0.99192857, 0.99192857, 0.99192857, 0.99653253, 0.99653253,
0.99653253, 0.99653253, 0.9986196 , 0.9986196 , 0.9986196 ,
0.9986196 , 0.99948933, 0.99948933, 0.99948933, 0.99948933,
0.99982395, 0.99982395, 0.99982395, 0.99982395, 0.99994331,
0.99994331, 0.99994331, 0.99994331, 0.99998283, 0.99998283,
0.99998283, 0.99998283, 0.99999566, 0.99999566, 0.99999566]), 'vx': array([-1.99999675, -1.99999675, -1.99999675, -1.99999675, -1.99998715,
-1.99998715, -1.99998715, -1.99998715, -1.9999576 , -1.9999576 ,
-1.9999576 , -1.9999576 , -1.99986834, -1.99986834, -1.99986834,
-1.99986834, -1.99961822, -1.99961822, -1.99961822, -1.99961822,
-1.99896851, -1.99896851, -1.99896851, -1.99896851, -1.99741024,
-1.99741024, -1.99741024, -1.99741024, -1.99397261, -1.99397261,
-1.99397261, -1.99397261, -1.98701925, -1.98701925, -1.98701925,
-1.98701925, -1.97414468, -1.97414468, -1.97414468, -1.97414468,
-1.95230703, -1.95230703, -1.95230703, -1.95230703, -1.91824244,
-1.91824244, -1.91824244, -1.91824244, -1.86901264, -1.86901264,
-1.86901264, -1.86901264, -1.80239983, -1.80239983, -1.80239983,
-1.80239983, -1.71777174, -1.71777174, -1.71777174, -1.71777174,
-1.62075227, -1.62075227, -1.62075227, -1.62075227, -1.5176673 ,
-1.5176673 , -1.5176673 , -1.5176673 , -1.41130546, -1.41130546,
-1.41130546, -1.41130546, -1.30281595, -1.30281595, -1.30281595,
-1.30281595, -1.1926813 , -1.1926813 , -1.1926813 , -1.1926813 ,
-1.08144071, -1.08144071, -1.08144071, -1.08144071, -0.9698171 ,
-0.9698171 , -0.9698171 , -0.9698171 , -0.85882329, -0.85882329,
-0.85882329, -0.85882329, -0.74907381, -0.74907381, -0.74907381,
-0.74907381, -0.64135792, -0.64135792, -0.64135792, -0.64135792,
-0.5368285 , -0.5368285 , -0.5368285 , -0.5368285 , -0.43626287,
-0.43626287, -0.43626287, -0.43626287, -0.34088793, -0.34088793,
-0.34088793, -0.34088793, -0.25163926, -0.25163926, -0.25163926,
-0.25163926, -0.17159155, -0.17159155, -0.17159155, -0.17159155,
-0.09609388, -0.09609388, -0.09609388, -0.09609388, -0.03710493,
-0.03710493, -0.03710493, -0.03710493, 0.03710493, 0.03710493,
0.03710493, 0.03710493, 0.09609388, 0.09609388, 0.09609388,
0.09609388, 0.17159155, 0.17159155, 0.17159155, 0.17159155,
0.25163926, 0.25163926, 0.25163926, 0.25163926, 0.34088793,
0.34088793, 0.34088793, 0.34088793, 0.43626287, 0.43626287,
0.43626287, 0.43626287, 0.5368285 , 0.5368285 , 0.5368285 ,
0.5368285 , 0.64135792, 0.64135792, 0.64135792, 0.64135792,
0.74907381, 0.74907381, 0.74907381, 0.74907381, 0.85882329,
0.85882329, 0.85882329, 0.85882329, 0.9698171 , 0.9698171 ,
0.9698171 , 0.9698171 , 1.08144071, 1.08144071, 1.08144071,
1.08144071, 1.1926813 , 1.1926813 , 1.1926813 , 1.1926813 ,
1.30281595, 1.30281595, 1.30281595, 1.30281595, 1.41130546,
1.41130546, 1.41130546, 1.41130546, 1.5176673 , 1.5176673 ,
1.5176673 , 1.5176673 , 1.62075227, 1.62075227, 1.62075227,
1.62075227, 1.71777174, 1.71777174, 1.71777174, 1.71777174,
1.80239983, 1.80239983, 1.80239983, 1.80239983, 1.86901264,
1.86901264, 1.86901264, 1.86901264, 1.91824244, 1.91824244,
1.91824244, 1.91824244, 1.95230703, 1.95230703, 1.95230703,
1.95230703, 1.97414468, 1.97414468, 1.97414468, 1.97414468,
1.98701925, 1.98701925, 1.98701925, 1.98701925, 1.99397261,
1.99397261, 1.99397261, 1.99397261, 1.99741024, 1.99741024,
1.99741024, 1.99741024, 1.99896851, 1.99896851, 1.99896851,
1.99896851, 1.99961822, 1.99961822, 1.99961822, 1.99961822,
1.99986834, 1.99986834, 1.99986834, 1.99986834, 1.9999576 ,
1.9999576 , 1.9999576 , 1.9999576 , 1.99998715, 1.99998715,
1.99998715, 1.99998715, 1.99999675, 1.99999675, 1.99999675]), 'P': array([0.39999757, 0.39999757, 0.39999757, 0.39999757, 0.39999039,
0.39999039, 0.39999039, 0.39999039, 0.39996827, 0.39996827,
0.39996827, 0.39996827, 0.39990149, 0.39990149, 0.39990149,
0.39990149, 0.3997144 , 0.3997144 , 0.3997144 , 0.3997144 ,
0.3992288 , 0.3992288 , 0.3992288 , 0.3992288 , 0.39806632,
0.39806632, 0.39806632, 0.39806632, 0.39551257, 0.39551257,
0.39551257, 0.39551257, 0.3903916 , 0.3903916 , 0.3903916 ,
0.3903916 , 0.38106417, 0.38106417, 0.38106417, 0.38106417,
0.36569 , 0.36569 , 0.36569 , 0.36569 , 0.34279115,
0.34279115, 0.34279115, 0.34279115, 0.31191214, 0.31191214,
0.31191214, 0.31191214, 0.27393752, 0.27393752, 0.27393752,
0.27393752, 0.23071361, 0.23071361, 0.23071361, 0.23071361,
0.18851007, 0.18851007, 0.18851007, 0.18851007, 0.15183356,
0.15183356, 0.15183356, 0.15183356, 0.12119467, 0.12119467,
0.12119467, 0.12119467, 0.09617199, 0.09617199, 0.09617199,
0.09617199, 0.07605835, 0.07605835, 0.07605835, 0.07605835,
0.06009841, 0.06009841, 0.06009841, 0.06009841, 0.04759159,
0.04759159, 0.04759159, 0.04759159, 0.03787746, 0.03787746,
0.03787746, 0.03787746, 0.03035827, 0.03035827, 0.03035827,
0.03035827, 0.02455267, 0.02455267, 0.02455267, 0.02455267,
0.02006904, 0.02006904, 0.02006904, 0.02006904, 0.01663084,
0.01663084, 0.01663084, 0.01663084, 0.01401174, 0.01401174,
0.01401174, 0.01401174, 0.0120593 , 0.0120593 , 0.0120593 ,
0.0120593 , 0.01060965, 0.01060965, 0.01060965, 0.01060965,
0.00974025, 0.00974025, 0.00974025, 0.00974025, 0.00913165,
0.00913165, 0.00913165, 0.00913165, 0.00913165, 0.00913165,
0.00913165, 0.00913165, 0.00974025, 0.00974025, 0.00974025,
0.00974025, 0.01060965, 0.01060965, 0.01060965, 0.01060965,
0.0120593 , 0.0120593 , 0.0120593 , 0.0120593 , 0.01401174,
0.01401174, 0.01401174, 0.01401174, 0.01663084, 0.01663084,
0.01663084, 0.01663084, 0.02006904, 0.02006904, 0.02006904,
0.02006904, 0.02455267, 0.02455267, 0.02455267, 0.02455267,
0.03035827, 0.03035827, 0.03035827, 0.03035827, 0.03787746,
0.03787746, 0.03787746, 0.03787746, 0.04759159, 0.04759159,
0.04759159, 0.04759159, 0.06009841, 0.06009841, 0.06009841,
0.06009841, 0.07605835, 0.07605835, 0.07605835, 0.07605835,
0.09617199, 0.09617199, 0.09617199, 0.09617199, 0.12119467,
0.12119467, 0.12119467, 0.12119467, 0.15183356, 0.15183356,
0.15183356, 0.15183356, 0.18851007, 0.18851007, 0.18851007,
0.18851007, 0.23071361, 0.23071361, 0.23071361, 0.23071361,
0.27393752, 0.27393752, 0.27393752, 0.27393752, 0.31191214,
0.31191214, 0.31191214, 0.31191214, 0.34279115, 0.34279115,
0.34279115, 0.34279115, 0.36569 , 0.36569 , 0.36569 ,
0.36569 , 0.38106417, 0.38106417, 0.38106417, 0.38106417,
0.3903916 , 0.3903916 , 0.3903916 , 0.3903916 , 0.39551257,
0.39551257, 0.39551257, 0.39551257, 0.39806632, 0.39806632,
0.39806632, 0.39806632, 0.3992288 , 0.3992288 , 0.3992288 ,
0.3992288 , 0.3997144 , 0.3997144 , 0.3997144 , 0.3997144 ,
0.39990149, 0.39990149, 0.39990149, 0.39990149, 0.39996827,
0.39996827, 0.39996827, 0.39996827, 0.39999039, 0.39999039,
0.39999039, 0.39999039, 0.39999757, 0.39999757, 0.39999757])}, {'rho': array([0.99998847, 0.99998847, 0.99998847, 0.99998847, 0.99995701,
0.99995701, 0.99995701, 0.99995701, 0.99986688, 0.99986688,
0.99986688, 0.99986688, 0.99961198, 0.99961198, 0.99961198,
0.99961198, 0.99894398, 0.99894398, 0.99894398, 0.99894398,
0.99732287, 0.99732287, 0.99732287, 0.99732287, 0.99369558,
0.99369558, 0.99369558, 0.99369558, 0.9862448 , 0.9862448 ,
0.9862448 , 0.9862448 , 0.97225128, 0.97225128, 0.97225128,
0.97225128, 0.94829355, 0.94829355, 0.94829355, 0.94829355,
0.91094941, 0.91094941, 0.91094941, 0.91094941, 0.85789256,
0.85789256, 0.85789256, 0.85789256, 0.78897867, 0.78897867,
0.78897867, 0.78897867, 0.70702155, 0.70702155, 0.70702155,
0.70702155, 0.61699851, 0.61699851, 0.61699851, 0.61699851,
0.52578519, 0.52578519, 0.52578519, 0.52578519, 0.44081147,
0.44081147, 0.44081147, 0.44081147, 0.36459482, 0.36459482,
0.36459482, 0.36459482, 0.29823676, 0.29823676, 0.29823676,
0.29823676, 0.2419276 , 0.2419276 , 0.2419276 , 0.2419276 ,
0.19520709, 0.19520709, 0.19520709, 0.19520709, 0.1572058 ,
0.1572058 , 0.1572058 , 0.1572058 , 0.12672261, 0.12672261,
0.12672261, 0.12672261, 0.1025238 , 0.1025238 , 0.1025238 ,
0.1025238 , 0.08348797, 0.08348797, 0.08348797, 0.08348797,
0.06866448, 0.06866448, 0.06866448, 0.06866448, 0.05733948,
0.05733948, 0.05733948, 0.05733948, 0.04883664, 0.04883664,
0.04883664, 0.04883664, 0.04265685, 0.04265685, 0.04265685,
0.04265685, 0.03823985, 0.03823985, 0.03823985, 0.03823985,
0.03569867, 0.03569867, 0.03569867, 0.03569867, 0.03404996,
0.03404996, 0.03404996, 0.03404996, 0.03404996, 0.03404996,
0.03404996, 0.03404996, 0.03569867, 0.03569867, 0.03569867,
0.03569867, 0.03823985, 0.03823985, 0.03823985, 0.03823985,
0.04265685, 0.04265685, 0.04265685, 0.04265685, 0.04883664,
0.04883664, 0.04883664, 0.04883664, 0.05733948, 0.05733948,
0.05733948, 0.05733948, 0.06866448, 0.06866448, 0.06866448,
0.06866448, 0.08348797, 0.08348797, 0.08348797, 0.08348797,
0.1025238 , 0.1025238 , 0.1025238 , 0.1025238 , 0.12672261,
0.12672261, 0.12672261, 0.12672261, 0.1572058 , 0.1572058 ,
0.1572058 , 0.1572058 , 0.19520709, 0.19520709, 0.19520709,
0.19520709, 0.2419276 , 0.2419276 , 0.2419276 , 0.2419276 ,
0.29823676, 0.29823676, 0.29823676, 0.29823676, 0.36459482,
0.36459482, 0.36459482, 0.36459482, 0.44081147, 0.44081147,
0.44081147, 0.44081147, 0.52578519, 0.52578519, 0.52578519,
0.52578519, 0.61699851, 0.61699851, 0.61699851, 0.61699851,
0.70702155, 0.70702155, 0.70702155, 0.70702155, 0.78897867,
0.78897867, 0.78897867, 0.78897867, 0.85789256, 0.85789256,
0.85789256, 0.85789256, 0.91094941, 0.91094941, 0.91094941,
0.91094941, 0.94829355, 0.94829355, 0.94829355, 0.94829355,
0.97225128, 0.97225128, 0.97225128, 0.97225128, 0.9862448 ,
0.9862448 , 0.9862448 , 0.9862448 , 0.99369558, 0.99369558,
0.99369558, 0.99369558, 0.99732287, 0.99732287, 0.99732287,
0.99732287, 0.99894398, 0.99894398, 0.99894398, 0.99894398,
0.99961198, 0.99961198, 0.99961198, 0.99961198, 0.99986688,
0.99986688, 0.99986688, 0.99986688, 0.99995701, 0.99995701,
0.99995701, 0.99995701, 0.99998847, 0.99998847, 0.99998847]), 'vx': array([-1.99999137, -1.99999137, -1.99999137, -1.99999137, -1.99996784,
-1.99996784, -1.99996784, -1.99996784, -1.99990043, -1.99990043,
-1.99990043, -1.99990043, -1.99970985, -1.99970985, -1.99970985,
-1.99970985, -1.99921065, -1.99921065, -1.99921065, -1.99921065,
-1.99799978, -1.99799978, -1.99799978, -1.99799978, -1.99529058,
-1.99529058, -1.99529058, -1.99529058, -1.98971828, -1.98971828,
-1.98971828, -1.98971828, -1.97920517, -1.97920517, -1.97920517,
-1.97920517, -1.96101325, -1.96101325, -1.96101325, -1.96101325,
-1.93206382, -1.93206382, -1.93206382, -1.93206382, -1.88944595,
-1.88944595, -1.88944595, -1.88944595, -1.83086286, -1.83086286,
-1.83086286, -1.83086286, -1.75493987, -1.75493987, -1.75493987,
-1.75493987, -1.6643763 , -1.6643763 , -1.6643763 , -1.6643763 ,
-1.56616266, -1.56616266, -1.56616266, -1.56616266, -1.4641092 ,
-1.4641092 , -1.4641092 , -1.4641092 , -1.35970933, -1.35970933,
-1.35970933, -1.35970933, -1.25362276, -1.25362276, -1.25362276,
-1.25362276, -1.14620091, -1.14620091, -1.14620091, -1.14620091,
-1.03796511, -1.03796511, -1.03796511, -1.03796511, -0.92976499,
-0.92976499, -0.92976499, -0.92976499, -0.82233856, -0.82233856,
-0.82233856, -0.82233856, -0.71626507, -0.71626507, -0.71626507,
-0.71626507, -0.61235476, -0.61235476, -0.61235476, -0.61235476,
-0.51166547, -0.51166547, -0.51166547, -0.51166547, -0.41492292,
-0.41492292, -0.41492292, -0.41492292, -0.32340294, -0.32340294,
-0.32340294, -0.32340294, -0.23796036, -0.23796036, -0.23796036,
-0.23796036, -0.16193087, -0.16193087, -0.16193087, -0.16193087,
-0.09005938, -0.09005938, -0.09005938, -0.09005938, -0.03464946,
-0.03464946, -0.03464946, -0.03464946, 0.03464946, 0.03464946,
0.03464946, 0.03464946, 0.09005938, 0.09005938, 0.09005938,
0.09005938, 0.16193087, 0.16193087, 0.16193087, 0.16193087,
0.23796036, 0.23796036, 0.23796036, 0.23796036, 0.32340294,
0.32340294, 0.32340294, 0.32340294, 0.41492292, 0.41492292,
0.41492292, 0.41492292, 0.51166547, 0.51166547, 0.51166547,
0.51166547, 0.61235476, 0.61235476, 0.61235476, 0.61235476,
0.71626507, 0.71626507, 0.71626507, 0.71626507, 0.82233856,
0.82233856, 0.82233856, 0.82233856, 0.92976499, 0.92976499,
0.92976499, 0.92976499, 1.03796511, 1.03796511, 1.03796511,
1.03796511, 1.14620091, 1.14620091, 1.14620091, 1.14620091,
1.25362276, 1.25362276, 1.25362276, 1.25362276, 1.35970933,
1.35970933, 1.35970933, 1.35970933, 1.4641092 , 1.4641092 ,
1.4641092 , 1.4641092 , 1.56616266, 1.56616266, 1.56616266,
1.56616266, 1.6643763 , 1.6643763 , 1.6643763 , 1.6643763 ,
1.75493987, 1.75493987, 1.75493987, 1.75493987, 1.83086286,
1.83086286, 1.83086286, 1.83086286, 1.88944595, 1.88944595,
1.88944595, 1.88944595, 1.93206382, 1.93206382, 1.93206382,
1.93206382, 1.96101325, 1.96101325, 1.96101325, 1.96101325,
1.97920517, 1.97920517, 1.97920517, 1.97920517, 1.98971828,
1.98971828, 1.98971828, 1.98971828, 1.99529058, 1.99529058,
1.99529058, 1.99529058, 1.99799978, 1.99799978, 1.99799978,
1.99799978, 1.99921065, 1.99921065, 1.99921065, 1.99921065,
1.99970985, 1.99970985, 1.99970985, 1.99970985, 1.99990043,
1.99990043, 1.99990043, 1.99990043, 1.99996784, 1.99996784,
1.99996784, 1.99996784, 1.99999137, 1.99999137, 1.99999137]), 'P': array([0.39999354, 0.39999354, 0.39999354, 0.39999354, 0.39997593,
0.39997593, 0.39997593, 0.39997593, 0.39992549, 0.39992549,
0.39992549, 0.39992549, 0.39978293, 0.39978293, 0.39978293,
0.39978293, 0.39940972, 0.39940972, 0.39940972, 0.39940972,
0.39850575, 0.39850575, 0.39850575, 0.39850575, 0.3964899 ,
0.3964899 , 0.3964899 , 0.3964899 , 0.39237226, 0.39237226,
0.39237226, 0.39237226, 0.38470646, 0.38470646, 0.38470646,
0.38470646, 0.37175201, 0.37175201, 0.37175201, 0.37175201,
0.35192374, 0.35192374, 0.35192374, 0.35192374, 0.32441495,
0.32441495, 0.32441495, 0.32441495, 0.28965157, 0.28965157,
0.28965157, 0.28965157, 0.24903872, 0.24903872, 0.24903872,
0.24903872, 0.20647569, 0.20647569, 0.20647569, 0.20647569,
0.16816214, 0.16816214, 0.16816214, 0.16816214, 0.13554277,
0.13554277, 0.13554277, 0.13554277, 0.10849608, 0.10849608,
0.10849608, 0.10849608, 0.08645297, 0.08645297, 0.08645297,
0.08645297, 0.0687285 , 0.0687285 , 0.0687285 , 0.0687285 ,
0.05464577, 0.05464577, 0.05464577, 0.05464577, 0.04358466,
0.04358466, 0.04358466, 0.04358466, 0.03494858, 0.03494858,
0.03494858, 0.03494858, 0.0282257 , 0.0282257 , 0.0282257 ,
0.0282257 , 0.02300204, 0.02300204, 0.02300204, 0.02300204,
0.01894477, 0.01894477, 0.01894477, 0.01894477, 0.01581851,
0.01581851, 0.01581851, 0.01581851, 0.0134249 , 0.0134249 ,
0.0134249 , 0.0134249 , 0.01163695, 0.01163695, 0.01163695,
0.01163695, 0.01030101, 0.01030101, 0.01030101, 0.01030101,
0.00951395, 0.00951395, 0.00951395, 0.00951395, 0.00895395,
0.00895395, 0.00895395, 0.00895395, 0.00895395, 0.00895395,
0.00895395, 0.00895395, 0.00951395, 0.00951395, 0.00951395,
0.00951395, 0.01030101, 0.01030101, 0.01030101, 0.01030101,
0.01163695, 0.01163695, 0.01163695, 0.01163695, 0.0134249 ,
0.0134249 , 0.0134249 , 0.0134249 , 0.01581851, 0.01581851,
0.01581851, 0.01581851, 0.01894477, 0.01894477, 0.01894477,
0.01894477, 0.02300204, 0.02300204, 0.02300204, 0.02300204,
0.0282257 , 0.0282257 , 0.0282257 , 0.0282257 , 0.03494858,
0.03494858, 0.03494858, 0.03494858, 0.04358466, 0.04358466,
0.04358466, 0.04358466, 0.05464577, 0.05464577, 0.05464577,
0.05464577, 0.0687285 , 0.0687285 , 0.0687285 , 0.0687285 ,
0.08645297, 0.08645297, 0.08645297, 0.08645297, 0.10849608,
0.10849608, 0.10849608, 0.10849608, 0.13554277, 0.13554277,
0.13554277, 0.13554277, 0.16816214, 0.16816214, 0.16816214,
0.16816214, 0.20647569, 0.20647569, 0.20647569, 0.20647569,
0.24903872, 0.24903872, 0.24903872, 0.24903872, 0.28965157,
0.28965157, 0.28965157, 0.28965157, 0.32441495, 0.32441495,
0.32441495, 0.32441495, 0.35192374, 0.35192374, 0.35192374,
0.35192374, 0.37175201, 0.37175201, 0.37175201, 0.37175201,
0.38470646, 0.38470646, 0.38470646, 0.38470646, 0.39237226,
0.39237226, 0.39237226, 0.39237226, 0.3964899 , 0.3964899 ,
0.3964899 , 0.3964899 , 0.39850575, 0.39850575, 0.39850575,
0.39850575, 0.39940972, 0.39940972, 0.39940972, 0.39940972,
0.39978293, 0.39978293, 0.39978293, 0.39978293, 0.39992549,
0.39992549, 0.39992549, 0.39992549, 0.39997593, 0.39997593,
0.39997593, 0.39997593, 0.39999354, 0.39999354, 0.39999354])}, {'rho': array([0.99997121, 0.99997121, 0.99997121, 0.99997121, 0.99989867,
0.99989867, 0.99989867, 0.99989867, 0.99970524, 0.99970524,
0.99970524, 0.99970524, 0.99919234, 0.99919234, 0.99919234,
0.99919234, 0.99793468, 0.99793468, 0.99793468, 0.99793468,
0.99508255, 0.99508255, 0.99508255, 0.99508255, 0.98912736,
0.98912736, 0.98912736, 0.98912736, 0.97772552, 0.97772552,
0.97772552, 0.97772552, 0.95777449, 0.95777449, 0.95777449,
0.95777449, 0.92592644, 0.92592644, 0.92592644, 0.92592644,
0.87952872, 0.87952872, 0.87952872, 0.87952872, 0.81767518,
0.81767518, 0.81767518, 0.81767518, 0.74199974, 0.74199974,
0.74199974, 0.74199974, 0.65688553, 0.65688553, 0.65688553,
0.65688553, 0.5675831 , 0.5675831 , 0.5675831 , 0.5675831 ,
0.4819957 , 0.4819957 , 0.4819957 , 0.4819957 , 0.40365598,
0.40365598, 0.40365598, 0.40365598, 0.33406413, 0.33406413,
0.33406413, 0.33406413, 0.27383208, 0.27383208, 0.27383208,
0.27383208, 0.22289308, 0.22289308, 0.22289308, 0.22289308,
0.18069594, 0.18069594, 0.18069594, 0.18069594, 0.1463409 ,
0.1463409 , 0.1463409 , 0.1463409 , 0.11869357, 0.11869357,
0.11869357, 0.11869357, 0.09665729, 0.09665729, 0.09665729,
0.09665729, 0.07923849, 0.07923849, 0.07923849, 0.07923849,
0.06562854, 0.06562854, 0.06562854, 0.06562854, 0.05518928,
0.05518928, 0.05518928, 0.05518928, 0.04731768, 0.04731768,
0.04731768, 0.04731768, 0.04158686, 0.04158686, 0.04158686,
0.04158686, 0.03746873, 0.03746873, 0.03746873, 0.03746873,
0.035138 , 0.035138 , 0.035138 , 0.035138 , 0.03360944,
0.03360944, 0.03360944, 0.03360944, 0.03360944, 0.03360944,
0.03360944, 0.03360944, 0.035138 , 0.035138 , 0.035138 ,
0.035138 , 0.03746873, 0.03746873, 0.03746873, 0.03746873,
0.04158686, 0.04158686, 0.04158686, 0.04158686, 0.04731768,
0.04731768, 0.04731768, 0.04731768, 0.05518928, 0.05518928,
0.05518928, 0.05518928, 0.06562854, 0.06562854, 0.06562854,
0.06562854, 0.07923849, 0.07923849, 0.07923849, 0.07923849,
0.09665729, 0.09665729, 0.09665729, 0.09665729, 0.11869357,
0.11869357, 0.11869357, 0.11869357, 0.1463409 , 0.1463409 ,
0.1463409 , 0.1463409 , 0.18069594, 0.18069594, 0.18069594,
0.18069594, 0.22289308, 0.22289308, 0.22289308, 0.22289308,
0.27383208, 0.27383208, 0.27383208, 0.27383208, 0.33406413,
0.33406413, 0.33406413, 0.33406413, 0.40365598, 0.40365598,
0.40365598, 0.40365598, 0.4819957 , 0.4819957 , 0.4819957 ,
0.4819957 , 0.5675831 , 0.5675831 , 0.5675831 , 0.5675831 ,
0.65688553, 0.65688553, 0.65688553, 0.65688553, 0.74199974,
0.74199974, 0.74199974, 0.74199974, 0.81767518, 0.81767518,
0.81767518, 0.81767518, 0.87952872, 0.87952872, 0.87952872,
0.87952872, 0.92592644, 0.92592644, 0.92592644, 0.92592644,
0.95777449, 0.95777449, 0.95777449, 0.95777449, 0.97772552,
0.97772552, 0.97772552, 0.97772552, 0.98912736, 0.98912736,
0.98912736, 0.98912736, 0.99508255, 0.99508255, 0.99508255,
0.99508255, 0.99793468, 0.99793468, 0.99793468, 0.99793468,
0.99919234, 0.99919234, 0.99919234, 0.99919234, 0.99970524,
0.99970524, 0.99970524, 0.99970524, 0.99989867, 0.99989867,
0.99989867, 0.99989867, 0.99997121, 0.99997121, 0.99997121]), 'vx': array([-1.99997846, -1.99997846, -1.99997846, -1.99997846, -1.9999242 ,
-1.9999242 , -1.9999242 , -1.9999242 , -1.99977955, -1.99977955,
-1.99977955, -1.99977955, -1.99939615, -1.99939615, -1.99939615,
-1.99939615, -1.99845642, -1.99845642, -1.99845642, -1.99845642,
-1.99632559, -1.99632559, -1.99632559, -1.99632559, -1.99187246,
-1.99187246, -1.99187246, -1.99187246, -1.98331711, -1.98331711,
-1.98331711, -1.98331711, -1.96822029, -1.96822029, -1.96822029,
-1.96822029, -1.94371206, -1.94371206, -1.94371206, -1.94371206,
-1.9069393 , -1.9069393 , -1.9069393 , -1.9069393 , -1.85554164,
-1.85554164, -1.85554164, -1.85554164, -1.78792749, -1.78792749,
-1.78792749, -1.78792749, -1.70446081, -1.70446081, -1.70446081,
-1.70446081, -1.61130027, -1.61130027, -1.61130027, -1.61130027,
-1.51343381, -1.51343381, -1.51343381, -1.51343381, -1.4129628 ,
-1.4129628 , -1.4129628 , -1.4129628 , -1.31068056, -1.31068056,
-1.31068056, -1.31068056, -1.20701548, -1.20701548, -1.20701548,
-1.20701548, -1.10227287, -1.10227287, -1.10227287, -1.10227287,
-0.99702848, -0.99702848, -0.99702848, -0.99702848, -0.89212641,
-0.89212641, -0.89212641, -0.89212641, -0.78809065, -0.78809065,
-0.78809065, -0.78809065, -0.68550554, -0.68550554, -0.68550554,
-0.68550554, -0.58520707, -0.58520707, -0.58520707, -0.58520707,
-0.48811927, -0.48811927, -0.48811927, -0.48811927, -0.39498294,
-0.39498294, -0.39498294, -0.39498294, -0.30710231, -0.30710231,
-0.30710231, -0.30710231, -0.22524033, -0.22524033, -0.22524033,
-0.22524033, -0.1530114 , -0.1530114 , -0.1530114 , -0.1530114 ,
-0.08453459, -0.08453459, -0.08453459, -0.08453459, -0.03239843,
-0.03239843, -0.03239843, -0.03239843, 0.03239843, 0.03239843,
0.03239843, 0.03239843, 0.08453459, 0.08453459, 0.08453459,
0.08453459, 0.1530114 , 0.1530114 , 0.1530114 , 0.1530114 ,
0.22524033, 0.22524033, 0.22524033, 0.22524033, 0.30710231,
0.30710231, 0.30710231, 0.30710231, 0.39498294, 0.39498294,
0.39498294, 0.39498294, 0.48811927, 0.48811927, 0.48811927,
0.48811927, 0.58520707, 0.58520707, 0.58520707, 0.58520707,
0.68550554, 0.68550554, 0.68550554, 0.68550554, 0.78809065,
0.78809065, 0.78809065, 0.78809065, 0.89212641, 0.89212641,
0.89212641, 0.89212641, 0.99702848, 0.99702848, 0.99702848,
0.99702848, 1.10227287, 1.10227287, 1.10227287, 1.10227287,
1.20701548, 1.20701548, 1.20701548, 1.20701548, 1.31068056,
1.31068056, 1.31068056, 1.31068056, 1.4129628 , 1.4129628 ,
1.4129628 , 1.4129628 , 1.51343381, 1.51343381, 1.51343381,
1.51343381, 1.61130027, 1.61130027, 1.61130027, 1.61130027,
1.70446081, 1.70446081, 1.70446081, 1.70446081, 1.78792749,
1.78792749, 1.78792749, 1.78792749, 1.85554164, 1.85554164,
1.85554164, 1.85554164, 1.9069393 , 1.9069393 , 1.9069393 ,
1.9069393 , 1.94371206, 1.94371206, 1.94371206, 1.94371206,
1.96822029, 1.96822029, 1.96822029, 1.96822029, 1.98331711,
1.98331711, 1.98331711, 1.98331711, 1.99187246, 1.99187246,
1.99187246, 1.99187246, 1.99632559, 1.99632559, 1.99632559,
1.99632559, 1.99845642, 1.99845642, 1.99845642, 1.99845642,
1.99939615, 1.99939615, 1.99939615, 1.99939615, 1.99977955,
1.99977955, 1.99977955, 1.99977955, 1.9999242 , 1.9999242 ,
1.9999242 , 1.9999242 , 1.99997846, 1.99997846, 1.99997846]), 'P': array([0.39998388, 0.39998388, 0.39998388, 0.39998388, 0.39994328,
0.39994328, 0.39994328, 0.39994328, 0.39983506, 0.39983506,
0.39983506, 0.39983506, 0.39954836, 0.39954836, 0.39954836,
0.39954836, 0.39884643, 0.39884643, 0.39884643, 0.39884643,
0.39725894, 0.39725894, 0.39725894, 0.39725894, 0.39395951,
0.39395951, 0.39395951, 0.39395951, 0.3876887 , 0.3876887 ,
0.3876887 , 0.3876887 , 0.37683706, 0.37683706, 0.37683706,
0.37683706, 0.35978619, 0.35978619, 0.35978619, 0.35978619,
0.33546632, 0.33546632, 0.33546632, 0.33546632, 0.30387649,
0.30387649, 0.30387649, 0.30387649, 0.26617104, 0.26617104,
0.26617104, 0.26617104, 0.22440064, 0.22440064, 0.22440064,
0.22440064, 0.18486641, 0.18486641, 0.18486641, 0.18486641,
0.15047094, 0.15047094, 0.15047094, 0.15047094, 0.12150865,
0.12150865, 0.12150865, 0.12150865, 0.09758402, 0.09758402,
0.09758402, 0.09758402, 0.07809753, 0.07809753, 0.07809753,
0.07809753, 0.06241546, 0.06241546, 0.06241546, 0.06241546,
0.04993828, 0.04993828, 0.04993828, 0.04993828, 0.04010618,
0.04010618, 0.04010618, 0.04010618, 0.03238928, 0.03238928,
0.03238928, 0.03238928, 0.02634913, 0.02634913, 0.02634913,
0.02634913, 0.02162689, 0.02162689, 0.02162689, 0.02162689,
0.01794132, 0.01794132, 0.01794132, 0.01794132, 0.01508808,
0.01508808, 0.01508808, 0.01508808, 0.0128935 , 0.0128935 ,
0.0128935 , 0.0128935 , 0.01125253, 0.01125253, 0.01125253,
0.01125253, 0.01001855, 0.01001855, 0.01001855, 0.01001855,
0.00930588, 0.00930588, 0.00930588, 0.00930588, 0.00879073,
0.00879073, 0.00879073, 0.00879073, 0.00879073, 0.00879073,
0.00879073, 0.00879073, 0.00930588, 0.00930588, 0.00930588,
0.00930588, 0.01001855, 0.01001855, 0.01001855, 0.01001855,
0.01125253, 0.01125253, 0.01125253, 0.01125253, 0.0128935 ,
0.0128935 , 0.0128935 , 0.0128935 , 0.01508808, 0.01508808,
0.01508808, 0.01508808, 0.01794132, 0.01794132, 0.01794132,
0.01794132, 0.02162689, 0.02162689, 0.02162689, 0.02162689,
0.02634913, 0.02634913, 0.02634913, 0.02634913, 0.03238928,
0.03238928, 0.03238928, 0.03238928, 0.04010618, 0.04010618,
0.04010618, 0.04010618, 0.04993828, 0.04993828, 0.04993828,
0.04993828, 0.06241546, 0.06241546, 0.06241546, 0.06241546,
0.07809753, 0.07809753, 0.07809753, 0.07809753, 0.09758402,
0.09758402, 0.09758402, 0.09758402, 0.12150865, 0.12150865,
0.12150865, 0.12150865, 0.15047094, 0.15047094, 0.15047094,
0.15047094, 0.18486641, 0.18486641, 0.18486641, 0.18486641,
0.22440064, 0.22440064, 0.22440064, 0.22440064, 0.26617104,
0.26617104, 0.26617104, 0.26617104, 0.30387649, 0.30387649,
0.30387649, 0.30387649, 0.33546632, 0.33546632, 0.33546632,
0.33546632, 0.35978619, 0.35978619, 0.35978619, 0.35978619,
0.37683706, 0.37683706, 0.37683706, 0.37683706, 0.3876887 ,
0.3876887 , 0.3876887 , 0.3876887 , 0.39395951, 0.39395951,
0.39395951, 0.39395951, 0.39725894, 0.39725894, 0.39725894,
0.39725894, 0.39884643, 0.39884643, 0.39884643, 0.39884643,
0.39954836, 0.39954836, 0.39954836, 0.39954836, 0.39983506,
0.39983506, 0.39983506, 0.39983506, 0.39994328, 0.39994328,
0.39994328, 0.39994328, 0.39998388, 0.39998388, 0.39998388])}, {'rho': array([0.99993221, 0.99993221, 0.99993221, 0.99993221, 0.99977442,
0.99977442, 0.99977442, 0.99977442, 0.99938273, 0.99938273,
0.99938273, 0.99938273, 0.99840779, 0.99840779, 0.99840779,
0.99840779, 0.99616937, 0.99616937, 0.99616937, 0.99616937,
0.99142249, 0.99142249, 0.99142249, 0.99142249, 0.98216622,
0.98216622, 0.98216622, 0.98216622, 0.96562758, 0.96562758,
0.96562758, 0.96562758, 0.93861261, 0.93861261, 0.93861261,
0.93861261, 0.89828406, 0.89828406, 0.89828406, 0.89828406,
0.84315078, 0.84315078, 0.84315078, 0.84315078, 0.77388329,
0.77388329, 0.77388329, 0.77388329, 0.69382305, 0.69382305,
0.69382305, 0.69382305, 0.60771611, 0.60771611, 0.60771611,
0.60771611, 0.52233132, 0.52233132, 0.52233132, 0.52233132,
0.44272042, 0.44272042, 0.44272042, 0.44272042, 0.37066321,
0.37066321, 0.37066321, 0.37066321, 0.30711033, 0.30711033,
0.30711033, 0.30711033, 0.2523528 , 0.2523528 , 0.2523528 ,
0.2523528 , 0.20616202, 0.20616202, 0.20616202, 0.20616202,
0.1679338 , 0.1679338 , 0.1679338 , 0.1679338 , 0.13675014,
0.13675014, 0.13675014, 0.13675014, 0.11157336, 0.11157336,
0.11157336, 0.11157336, 0.09142644, 0.09142644, 0.09142644,
0.09142644, 0.07542674, 0.07542674, 0.07542674, 0.07542674,
0.06289114, 0.06289114, 0.06289114, 0.06289114, 0.05323726,
0.05323726, 0.05323726, 0.05323726, 0.04592933, 0.04592933,
0.04592933, 0.04592933, 0.04060411, 0.04060411, 0.04060411,
0.04060411, 0.03675686, 0.03675686, 0.03675686, 0.03675686,
0.03461818, 0.03461818, 0.03461818, 0.03461818, 0.03320159,
0.03320159, 0.03320159, 0.03320159, 0.03320159, 0.03320159,
0.03320159, 0.03320159, 0.03461818, 0.03461818, 0.03461818,
0.03461818, 0.03675686, 0.03675686, 0.03675686, 0.03675686,
0.04060411, 0.04060411, 0.04060411, 0.04060411, 0.04592933,
0.04592933, 0.04592933, 0.04592933, 0.05323726, 0.05323726,
0.05323726, 0.05323726, 0.06289114, 0.06289114, 0.06289114,
0.06289114, 0.07542674, 0.07542674, 0.07542674, 0.07542674,
0.09142644, 0.09142644, 0.09142644, 0.09142644, 0.11157336,
0.11157336, 0.11157336, 0.11157336, 0.13675014, 0.13675014,
0.13675014, 0.13675014, 0.1679338 , 0.1679338 , 0.1679338 ,
0.1679338 , 0.20616202, 0.20616202, 0.20616202, 0.20616202,
0.2523528 , 0.2523528 , 0.2523528 , 0.2523528 , 0.30711033,
0.30711033, 0.30711033, 0.30711033, 0.37066321, 0.37066321,
0.37066321, 0.37066321, 0.44272042, 0.44272042, 0.44272042,
0.44272042, 0.52233132, 0.52233132, 0.52233132, 0.52233132,
0.60771611, 0.60771611, 0.60771611, 0.60771611, 0.69382305,
0.69382305, 0.69382305, 0.69382305, 0.77388329, 0.77388329,
0.77388329, 0.77388329, 0.84315078, 0.84315078, 0.84315078,
0.84315078, 0.89828406, 0.89828406, 0.89828406, 0.89828406,
0.93861261, 0.93861261, 0.93861261, 0.93861261, 0.96562758,
0.96562758, 0.96562758, 0.96562758, 0.98216622, 0.98216622,
0.98216622, 0.98216622, 0.99142249, 0.99142249, 0.99142249,
0.99142249, 0.99616937, 0.99616937, 0.99616937, 0.99616937,
0.99840779, 0.99840779, 0.99840779, 0.99840779, 0.99938273,
0.99938273, 0.99938273, 0.99938273, 0.99977442, 0.99977442,
0.99977442, 0.99977442, 0.99993221, 0.99993221, 0.99993221]), 'vx': array([-1.99994929, -1.99994929, -1.99994929, -1.99994929, -1.99983127,
-1.99983127, -1.99983127, -1.99983127, -1.99953841, -1.99953841,
-1.99953841, -1.99953841, -1.99880972, -1.99880972, -1.99880972,
-1.99880972, -1.99713698, -1.99713698, -1.99713698, -1.99713698,
-1.99358761, -1.99358761, -1.99358761, -1.99358761, -1.98664859,
-1.98664859, -1.98664859, -1.98664859, -1.974168 , -1.974168 ,
-1.974168 , -1.974168 , -1.95350169, -1.95350169, -1.95350169,
-1.95350169, -1.92188774, -1.92188774, -1.92188774, -1.92188774,
-1.8769192 , -1.8769192 , -1.8769192 , -1.8769192 , -1.81687101,
-1.81687101, -1.81687101, -1.81687101, -1.7410477 , -1.7410477 ,
-1.7410477 , -1.7410477 , -1.653266 , -1.653266 , -1.653266 ,
-1.653266 , -1.55956427, -1.55956427, -1.55956427, -1.55956427,
-1.46285018, -1.46285018, -1.46285018, -1.46285018, -1.36421396,
-1.36421396, -1.36421396, -1.36421396, -1.26410153, -1.26410153,
-1.26410153, -1.26410153, -1.16284367, -1.16284367, -1.16284367,
-1.16284367, -1.06073717, -1.06073717, -1.06073717, -1.06073717,
-0.95846761, -0.95846761, -0.95846761, -0.95846761, -0.85670416,
-0.85670416, -0.85670416, -0.85670416, -0.75589367, -0.75589367,
-0.75589367, -0.75589367, -0.65662074, -0.65662074, -0.65662074,
-0.65662074, -0.55975149, -0.55975149, -0.55975149, -0.55975149,
-0.46604981, -0.46604981, -0.46604981, -0.46604981, -0.3763215 ,
-0.3763215 , -0.3763215 , -0.3763215 , -0.29188521, -0.29188521,
-0.29188521, -0.29188521, -0.21339782, -0.21339782, -0.21339782,
-0.21339782, -0.14476926, -0.14476926, -0.14476926, -0.14476926,
-0.07947731, -0.07947731, -0.07947731, -0.07947731, -0.03033494,
-0.03033494, -0.03033494, -0.03033494, 0.03033494, 0.03033494,
0.03033494, 0.03033494, 0.07947731, 0.07947731, 0.07947731,
0.07947731, 0.14476926, 0.14476926, 0.14476926, 0.14476926,
0.21339782, 0.21339782, 0.21339782, 0.21339782, 0.29188521,
0.29188521, 0.29188521, 0.29188521, 0.3763215 , 0.3763215 ,
0.3763215 , 0.3763215 , 0.46604981, 0.46604981, 0.46604981,
0.46604981, 0.55975149, 0.55975149, 0.55975149, 0.55975149,
0.65662074, 0.65662074, 0.65662074, 0.65662074, 0.75589367,
0.75589367, 0.75589367, 0.75589367, 0.85670416, 0.85670416,
0.85670416, 0.85670416, 0.95846761, 0.95846761, 0.95846761,
0.95846761, 1.06073717, 1.06073717, 1.06073717, 1.06073717,
1.16284367, 1.16284367, 1.16284367, 1.16284367, 1.26410153,
1.26410153, 1.26410153, 1.26410153, 1.36421396, 1.36421396,
1.36421396, 1.36421396, 1.46285018, 1.46285018, 1.46285018,
1.46285018, 1.55956427, 1.55956427, 1.55956427, 1.55956427,
1.653266 , 1.653266 , 1.653266 , 1.653266 , 1.7410477 ,
1.7410477 , 1.7410477 , 1.7410477 , 1.81687101, 1.81687101,
1.81687101, 1.81687101, 1.8769192 , 1.8769192 , 1.8769192 ,
1.8769192 , 1.92188774, 1.92188774, 1.92188774, 1.92188774,
1.95350169, 1.95350169, 1.95350169, 1.95350169, 1.974168 ,
1.974168 , 1.974168 , 1.974168 , 1.98664859, 1.98664859,
1.98664859, 1.98664859, 1.99358761, 1.99358761, 1.99358761,
1.99358761, 1.99713698, 1.99713698, 1.99713698, 1.99713698,
1.99880972, 1.99880972, 1.99880972, 1.99880972, 1.99953841,
1.99953841, 1.99953841, 1.99953841, 1.99983127, 1.99983127,
1.99983127, 1.99983127, 1.99994929, 1.99994929, 1.99994929]), 'P': array([0.39996205, 0.39996205, 0.39996205, 0.39996205, 0.39987375,
0.39987375, 0.39987375, 0.39987375, 0.39965472, 0.39965472,
0.39965472, 0.39965472, 0.3991102 , 0.3991102 , 0.3991102 ,
0.3991102 , 0.39786276, 0.39786276, 0.39786276, 0.39786276,
0.39522738, 0.39522738, 0.39522738, 0.39522738, 0.3901199 ,
0.3901199 , 0.3901199 , 0.3901199 , 0.38107966, 0.38107966,
0.38107966, 0.38107966, 0.36651324, 0.36651324, 0.36651324,
0.36651324, 0.34517082, 0.34517082, 0.34517082, 0.34517082,
0.31668048, 0.31668048, 0.31668048, 0.31668048, 0.28180827,
0.28180827, 0.28180827, 0.28180827, 0.24203834, 0.24203834,
0.24203834, 0.24203834, 0.20178049, 0.20178049, 0.20178049,
0.20178049, 0.16586829, 0.16586829, 0.16586829, 0.16586829,
0.13512706, 0.13512706, 0.13512706, 0.13512706, 0.10939173,
0.10939173, 0.10939173, 0.10939173, 0.08816908, 0.08816908,
0.08816908, 0.08816908, 0.07088001, 0.07088001, 0.07088001,
0.07088001, 0.05695154, 0.05695154, 0.05695154, 0.05695154,
0.04585165, 0.04585165, 0.04585165, 0.04585165, 0.03706835,
0.03706835, 0.03706835, 0.03706835, 0.03014005, 0.03014005,
0.03014005, 0.03014005, 0.02468875, 0.02468875, 0.02468875,
0.02468875, 0.02040122, 0.02040122, 0.02040122, 0.02040122,
0.01704141, 0.01704141, 0.01704141, 0.01704141, 0.01442848,
0.01442848, 0.01442848, 0.01442848, 0.01241054, 0.01241054,
0.01241054, 0.01241054, 0.01090155, 0.01090155, 0.01090155,
0.01090155, 0.00975937, 0.00975937, 0.00975937, 0.00975937,
0.00911402, 0.00911402, 0.00911402, 0.00911402, 0.00864033,
0.00864033, 0.00864033, 0.00864033, 0.00864033, 0.00864033,
0.00864033, 0.00864033, 0.00911402, 0.00911402, 0.00911402,
0.00911402, 0.00975937, 0.00975937, 0.00975937, 0.00975937,
0.01090155, 0.01090155, 0.01090155, 0.01090155, 0.01241054,
0.01241054, 0.01241054, 0.01241054, 0.01442848, 0.01442848,
0.01442848, 0.01442848, 0.01704141, 0.01704141, 0.01704141,
0.01704141, 0.02040122, 0.02040122, 0.02040122, 0.02040122,
0.02468875, 0.02468875, 0.02468875, 0.02468875, 0.03014005,
0.03014005, 0.03014005, 0.03014005, 0.03706835, 0.03706835,
0.03706835, 0.03706835, 0.04585165, 0.04585165, 0.04585165,
0.04585165, 0.05695154, 0.05695154, 0.05695154, 0.05695154,
0.07088001, 0.07088001, 0.07088001, 0.07088001, 0.08816908,
0.08816908, 0.08816908, 0.08816908, 0.10939173, 0.10939173,
0.10939173, 0.10939173, 0.13512706, 0.13512706, 0.13512706,
0.13512706, 0.16586829, 0.16586829, 0.16586829, 0.16586829,
0.20178049, 0.20178049, 0.20178049, 0.20178049, 0.24203834,
0.24203834, 0.24203834, 0.24203834, 0.28180827, 0.28180827,
0.28180827, 0.28180827, 0.31668048, 0.31668048, 0.31668048,
0.31668048, 0.34517082, 0.34517082, 0.34517082, 0.34517082,
0.36651324, 0.36651324, 0.36651324, 0.36651324, 0.38107966,
0.38107966, 0.38107966, 0.38107966, 0.3901199 , 0.3901199 ,
0.3901199 , 0.3901199 , 0.39522738, 0.39522738, 0.39522738,
0.39522738, 0.39786276, 0.39786276, 0.39786276, 0.39786276,
0.3991102 , 0.3991102 , 0.3991102 , 0.3991102 , 0.39965472,
0.39965472, 0.39965472, 0.39965472, 0.39987375, 0.39987375,
0.39987375, 0.39987375, 0.39996205, 0.39996205, 0.39996205])}, {'rho': array([0.999849 , 0.999849 , 0.999849 , 0.999849 , 0.99952432,
0.99952432, 0.99952432, 0.99952432, 0.99877407, 0.99877407,
0.99877407, 0.99877407, 0.9970195 , 0.9970195 , 0.9970195 ,
0.9970195 , 0.99324554, 0.99324554, 0.99324554, 0.99324554,
0.98575697, 0.98575697, 0.98575697, 0.98575697, 0.97210669,
0.97210669, 0.97210669, 0.97210669, 0.94930976, 0.94930976,
0.94930976, 0.94930976, 0.91446125, 0.91446125, 0.91446125,
0.91446125, 0.86563643, 0.86563643, 0.86563643, 0.86563643,
0.80272712, 0.80272712, 0.80272712, 0.80272712, 0.72797948,
0.72797948, 0.72797948, 0.72797948, 0.64577881, 0.64577881,
0.64577881, 0.64577881, 0.56148247, 0.56148247, 0.56148247,
0.56148247, 0.48134022, 0.48134022, 0.48134022, 0.48134022,
0.40756894, 0.40756894, 0.40756894, 0.40756894, 0.34134467,
0.34134467, 0.34134467, 0.34134467, 0.28325988, 0.28325988,
0.28325988, 0.28325988, 0.23338963, 0.23338963, 0.23338963,
0.23338963, 0.19140241, 0.19140241, 0.19140241, 0.19140241,
0.15665519, 0.15665519, 0.15665519, 0.15665519, 0.1282427 ,
0.1282427 , 0.1282427 , 0.1282427 , 0.10522841, 0.10522841,
0.10522841, 0.10522841, 0.0867382 , 0.0867382 , 0.0867382 ,
0.0867382 , 0.07199564, 0.07199564, 0.07199564, 0.07199564,
0.06041253, 0.06041253, 0.06041253, 0.06041253, 0.05145849,
0.05145849, 0.05145849, 0.05145849, 0.04465627, 0.04465627,
0.04465627, 0.04465627, 0.03969915, 0.03969915, 0.03969915,
0.03969915, 0.03609832, 0.03609832, 0.03609832, 0.03609832,
0.03413507, 0.03413507, 0.03413507, 0.03413507, 0.03282295,
0.03282295, 0.03282295, 0.03282295, 0.03282295, 0.03282295,
0.03282295, 0.03282295, 0.03413507, 0.03413507, 0.03413507,
0.03413507, 0.03609832, 0.03609832, 0.03609832, 0.03609832,
0.03969915, 0.03969915, 0.03969915, 0.03969915, 0.04465627,
0.04465627, 0.04465627, 0.04465627, 0.05145849, 0.05145849,
0.05145849, 0.05145849, 0.06041253, 0.06041253, 0.06041253,
0.06041253, 0.07199564, 0.07199564, 0.07199564, 0.07199564,
0.0867382 , 0.0867382 , 0.0867382 , 0.0867382 , 0.10522841,
0.10522841, 0.10522841, 0.10522841, 0.1282427 , 0.1282427 ,
0.1282427 , 0.1282427 , 0.15665519, 0.15665519, 0.15665519,
0.15665519, 0.19140241, 0.19140241, 0.19140241, 0.19140241,
0.23338963, 0.23338963, 0.23338963, 0.23338963, 0.28325988,
0.28325988, 0.28325988, 0.28325988, 0.34134467, 0.34134467,
0.34134467, 0.34134467, 0.40756894, 0.40756894, 0.40756894,
0.40756894, 0.48134022, 0.48134022, 0.48134022, 0.48134022,
0.56148247, 0.56148247, 0.56148247, 0.56148247, 0.64577881,
0.64577881, 0.64577881, 0.64577881, 0.72797948, 0.72797948,
0.72797948, 0.72797948, 0.80272712, 0.80272712, 0.80272712,
0.80272712, 0.86563643, 0.86563643, 0.86563643, 0.86563643,
0.91446125, 0.91446125, 0.91446125, 0.91446125, 0.94930976,
0.94930976, 0.94930976, 0.94930976, 0.97210669, 0.97210669,
0.97210669, 0.97210669, 0.98575697, 0.98575697, 0.98575697,
0.98575697, 0.99324554, 0.99324554, 0.99324554, 0.99324554,
0.9970195 , 0.9970195 , 0.9970195 , 0.9970195 , 0.99877407,
0.99877407, 0.99877407, 0.99877407, 0.99952432, 0.99952432,
0.99952432, 0.99952432, 0.999849 , 0.999849 , 0.999849 ]), 'vx': array([-1.99988705, -1.99988705, -1.99988705, -1.99988705, -1.99964423,
-1.99964423, -1.99964423, -1.99964423, -1.99908336, -1.99908336,
-1.99908336, -1.99908336, -1.99777191, -1.99777191, -1.99777191,
-1.99777191, -1.99495004, -1.99495004, -1.99495004, -1.99495004,
-1.98933996, -1.98933996, -1.98933996, -1.98933996, -1.97906089,
-1.97906089, -1.97906089, -1.97906089, -1.96170422, -1.96170422,
-1.96170422, -1.96170422, -1.9346307 , -1.9346307 , -1.9346307 ,
-1.9346307 , -1.8954137 , -1.8954137 , -1.8954137 , -1.8954137 ,
-1.84222299, -1.84222299, -1.84222299, -1.84222299, -1.77397591,
-1.77397591, -1.77397591, -1.77397591, -1.69213098, -1.69213098,
-1.69213098, -1.69213098, -1.60273146, -1.60273146, -1.60273146,
-1.60273146, -1.50965165, -1.50965165, -1.50965165, -1.50965165,
-1.41448143, -1.41448143, -1.41448143, -1.41448143, -1.3177811 ,
-1.3177811 , -1.3177811 , -1.3177811 , -1.21984198, -1.21984198,
-1.21984198, -1.21984198, -1.1209646 , -1.1209646 , -1.1209646 ,
-1.1209646 , -1.02146005, -1.02146005, -1.02146005, -1.02146005,
-0.9220936 , -0.9220936 , -0.9220936 , -0.9220936 , -0.82332093,
-0.82332093, -0.82332093, -0.82332093, -0.72558094, -0.72558094,
-0.72558094, -0.72558094, -0.62946753, -0.62946753, -0.62946753,
-0.62946753, -0.53583047, -0.53583047, -0.53583047, -0.53583047,
-0.44533278, -0.44533278, -0.44533278, -0.44533278, -0.35883117,
-0.35883117, -0.35883117, -0.35883117, -0.27766258, -0.27766258,
-0.27766258, -0.27766258, -0.20236083, -0.20236083, -0.20236083,
-0.20236083, -0.13714722, -0.13714722, -0.13714722, -0.13714722,
-0.0748494 , -0.0748494 , -0.0748494 , -0.0748494 , -0.02844381,
-0.02844381, -0.02844381, -0.02844381, 0.02844381, 0.02844381,
0.02844381, 0.02844381, 0.0748494 , 0.0748494 , 0.0748494 ,
0.0748494 , 0.13714722, 0.13714722, 0.13714722, 0.13714722,
0.20236083, 0.20236083, 0.20236083, 0.20236083, 0.27766258,
0.27766258, 0.27766258, 0.27766258, 0.35883117, 0.35883117,
0.35883117, 0.35883117, 0.44533278, 0.44533278, 0.44533278,
0.44533278, 0.53583047, 0.53583047, 0.53583047, 0.53583047,
0.62946753, 0.62946753, 0.62946753, 0.62946753, 0.72558094,
0.72558094, 0.72558094, 0.72558094, 0.82332093, 0.82332093,
0.82332093, 0.82332093, 0.9220936 , 0.9220936 , 0.9220936 ,
0.9220936 , 1.02146005, 1.02146005, 1.02146005, 1.02146005,
1.1209646 , 1.1209646 , 1.1209646 , 1.1209646 , 1.21984198,
1.21984198, 1.21984198, 1.21984198, 1.3177811 , 1.3177811 ,
1.3177811 , 1.3177811 , 1.41448143, 1.41448143, 1.41448143,
1.41448143, 1.50965165, 1.50965165, 1.50965165, 1.50965165,
1.60273146, 1.60273146, 1.60273146, 1.60273146, 1.69213098,
1.69213098, 1.69213098, 1.69213098, 1.77397591, 1.77397591,
1.77397591, 1.77397591, 1.84222299, 1.84222299, 1.84222299,
1.84222299, 1.8954137 , 1.8954137 , 1.8954137 , 1.8954137 ,
1.9346307 , 1.9346307 , 1.9346307 , 1.9346307 , 1.96170422,
1.96170422, 1.96170422, 1.96170422, 1.97906089, 1.97906089,
1.97906089, 1.97906089, 1.98933996, 1.98933996, 1.98933996,
1.98933996, 1.99495004, 1.99495004, 1.99495004, 1.99495004,
1.99777191, 1.99777191, 1.99777191, 1.99777191, 1.99908336,
1.99908336, 1.99908336, 1.99908336, 1.99964423, 1.99964423,
1.99964423, 1.99964423, 1.99988705, 1.99988705, 1.99988705]), 'P': array([0.39991548, 0.39991548, 0.39991548, 0.39991548, 0.39973385,
0.39973385, 0.39973385, 0.39973385, 0.39931459, 0.39931459,
0.39931459, 0.39931459, 0.39833583, 0.39833583, 0.39833583,
0.39833583, 0.3962371 , 0.3962371 , 0.3962371 , 0.3962371 ,
0.39209385, 0.39209385, 0.39209385, 0.39209385, 0.38460138,
0.38460138, 0.38460138, 0.38460138, 0.37223462, 0.37223462,
0.37223462, 0.37223462, 0.35363741, 0.35363741, 0.35363741,
0.35363741, 0.32813525, 0.32813525, 0.32813525, 0.32813525,
0.29610314, 0.29610314, 0.29610314, 0.29610314, 0.25879516,
0.25879516, 0.25879516, 0.25879516, 0.2187502 , 0.2187502 ,
0.2187502 , 0.2187502 , 0.18161211, 0.18161211, 0.18161211,
0.18161211, 0.1492622 , 0.1492622 , 0.1492622 , 0.1492622 ,
0.12181009, 0.12181009, 0.12181009, 0.12181009, 0.09889624,
0.09889624, 0.09889624, 0.09889624, 0.08001119, 0.08001119,
0.08001119, 0.08001119, 0.06461698, 0.06461698, 0.06461698,
0.06461698, 0.05220043, 0.05220043, 0.05220043, 0.05220043,
0.0422833 , 0.0422833 , 0.0422833 , 0.0422833 , 0.0344005 ,
0.0344005 , 0.0344005 , 0.0344005 , 0.02815268, 0.02815268,
0.02815268, 0.02815268, 0.02321147, 0.02321147, 0.02321147,
0.02321147, 0.01930433, 0.01930433, 0.01930433, 0.01930433,
0.0162308 , 0.0162308 , 0.0162308 , 0.0162308 , 0.01383051,
0.01383051, 0.01383051, 0.01383051, 0.01197008, 0.01197008,
0.01197008, 0.01197008, 0.01058021, 0.01058021, 0.01058021,
0.01058021, 0.00952099, 0.00952099, 0.00952099, 0.00952099,
0.00893663, 0.00893663, 0.00893663, 0.00893663, 0.00850133,
0.00850133, 0.00850133, 0.00850133, 0.00850133, 0.00850133,
0.00850133, 0.00850133, 0.00893663, 0.00893663, 0.00893663,
0.00893663, 0.00952099, 0.00952099, 0.00952099, 0.00952099,
0.01058021, 0.01058021, 0.01058021, 0.01058021, 0.01197008,
0.01197008, 0.01197008, 0.01197008, 0.01383051, 0.01383051,
0.01383051, 0.01383051, 0.0162308 , 0.0162308 , 0.0162308 ,
0.0162308 , 0.01930433, 0.01930433, 0.01930433, 0.01930433,
0.02321147, 0.02321147, 0.02321147, 0.02321147, 0.02815268,
0.02815268, 0.02815268, 0.02815268, 0.0344005 , 0.0344005 ,
0.0344005 , 0.0344005 , 0.0422833 , 0.0422833 , 0.0422833 ,
0.0422833 , 0.05220043, 0.05220043, 0.05220043, 0.05220043,
0.06461698, 0.06461698, 0.06461698, 0.06461698, 0.08001119,
0.08001119, 0.08001119, 0.08001119, 0.09889624, 0.09889624,
0.09889624, 0.09889624, 0.12181009, 0.12181009, 0.12181009,
0.12181009, 0.1492622 , 0.1492622 , 0.1492622 , 0.1492622 ,
0.18161211, 0.18161211, 0.18161211, 0.18161211, 0.2187502 ,
0.2187502 , 0.2187502 , 0.2187502 , 0.25879516, 0.25879516,
0.25879516, 0.25879516, 0.29610314, 0.29610314, 0.29610314,
0.29610314, 0.32813525, 0.32813525, 0.32813525, 0.32813525,
0.35363741, 0.35363741, 0.35363741, 0.35363741, 0.37223462,
0.37223462, 0.37223462, 0.37223462, 0.38460138, 0.38460138,
0.38460138, 0.38460138, 0.39209385, 0.39209385, 0.39209385,
0.39209385, 0.3962371 , 0.3962371 , 0.3962371 , 0.3962371 ,
0.39833583, 0.39833583, 0.39833583, 0.39833583, 0.39931459,
0.39931459, 0.39931459, 0.39931459, 0.39973385, 0.39973385,
0.39973385, 0.39973385, 0.39991548, 0.39991548, 0.39991548])}, {'rho': array([0.99968086, 0.99968086, 0.99968086, 0.99968086, 0.99904735,
0.99904735, 0.99904735, 0.99904735, 0.99768535, 0.99768535,
0.99768535, 0.99768535, 0.99469 , 0.99469 , 0.99469 ,
0.99469 , 0.98865158, 0.98865158, 0.98865158, 0.98865158,
0.97743175, 0.97743175, 0.97743175, 0.97743175, 0.95828971,
0.95828971, 0.95828971, 0.95828971, 0.92834661, 0.92834661,
0.92834661, 0.92834661, 0.8853768 , 0.8853768 , 0.8853768 ,
0.8853768 , 0.8286427 , 0.8286427 , 0.8286427 , 0.8286427 ,
0.75946561, 0.75946561, 0.75946561, 0.75946561, 0.68150433,
0.68150433, 0.68150433, 0.68150433, 0.59924388, 0.59924388,
0.59924388, 0.59924388, 0.51916445, 0.51916445, 0.51916445,
0.51916445, 0.44435622, 0.44435622, 0.44435622, 0.44435622,
0.37611909, 0.37611909, 0.37611909, 0.37611909, 0.31525272,
0.31525272, 0.31525272, 0.31525272, 0.26210199, 0.26210199,
0.26210199, 0.26210199, 0.21659335, 0.21659335, 0.21659335,
0.21659335, 0.17833401, 0.17833401, 0.17833401, 0.17833401,
0.14664183, 0.14664183, 0.14664183, 0.14664183, 0.12066146,
0.12066146, 0.12066146, 0.12066146, 0.09954839, 0.09954839,
0.09954839, 0.09954839, 0.0825182 , 0.0825182 , 0.0825182 ,
0.0825182 , 0.06889504, 0.06889504, 0.06889504, 0.06889504,
0.05815951, 0.05815951, 0.05815951, 0.05815951, 0.049832 ,
0.049832 , 0.049832 , 0.049832 , 0.04348546, 0.04348546,
0.04348546, 0.04348546, 0.03886386, 0.03886386, 0.03886386,
0.03886386, 0.03548794, 0.03548794, 0.03548794, 0.03548794,
0.03368503, 0.03368503, 0.03368503, 0.03368503, 0.03247044,
0.03247044, 0.03247044, 0.03247044, 0.03247044, 0.03247044,
0.03247044, 0.03247044, 0.03368503, 0.03368503, 0.03368503,
0.03368503, 0.03548794, 0.03548794, 0.03548794, 0.03548794,
0.03886386, 0.03886386, 0.03886386, 0.03886386, 0.04348546,
0.04348546, 0.04348546, 0.04348546, 0.049832 , 0.049832 ,
0.049832 , 0.049832 , 0.05815951, 0.05815951, 0.05815951,
0.05815951, 0.06889504, 0.06889504, 0.06889504, 0.06889504,
0.0825182 , 0.0825182 , 0.0825182 , 0.0825182 , 0.09954839,
0.09954839, 0.09954839, 0.09954839, 0.12066146, 0.12066146,
0.12066146, 0.12066146, 0.14664183, 0.14664183, 0.14664183,
0.14664183, 0.17833401, 0.17833401, 0.17833401, 0.17833401,
0.21659335, 0.21659335, 0.21659335, 0.21659335, 0.26210199,
0.26210199, 0.26210199, 0.26210199, 0.31525272, 0.31525272,
0.31525272, 0.31525272, 0.37611909, 0.37611909, 0.37611909,
0.37611909, 0.44435622, 0.44435622, 0.44435622, 0.44435622,
0.51916445, 0.51916445, 0.51916445, 0.51916445, 0.59924388,
0.59924388, 0.59924388, 0.59924388, 0.68150433, 0.68150433,
0.68150433, 0.68150433, 0.75946561, 0.75946561, 0.75946561,
0.75946561, 0.8286427 , 0.8286427 , 0.8286427 , 0.8286427 ,
0.8853768 , 0.8853768 , 0.8853768 , 0.8853768 , 0.92834661,
0.92834661, 0.92834661, 0.92834661, 0.95828971, 0.95828971,
0.95828971, 0.95828971, 0.97743175, 0.97743175, 0.97743175,
0.97743175, 0.98865158, 0.98865158, 0.98865158, 0.98865158,
0.99469 , 0.99469 , 0.99469 , 0.99469 , 0.99768535,
0.99768535, 0.99768535, 0.99768535, 0.99904735, 0.99904735,
0.99904735, 0.99904735, 0.99968086, 0.99968086, 0.99968086]), 'vx': array([-1.99976129, -1.99976129, -1.99976129, -1.99976129, -1.99928757,
-1.99928757, -1.99928757, -1.99928757, -1.99826937, -1.99826937,
-1.99826937, -1.99826937, -1.99602961, -1.99602961, -1.99602961,
-1.99602961, -1.99150811, -1.99150811, -1.99150811, -1.99150811,
-1.98307313, -1.98307313, -1.98307313, -1.98307313, -1.96855469,
-1.96855469, -1.96855469, -1.96855469, -1.94546306, -1.94546306,
-1.94546306, -1.94546306, -1.9113848 , -1.9113848 , -1.9113848 ,
-1.9113848 , -1.86439131, -1.86439131, -1.86439131, -1.86439131,
-1.80324961, -1.80324961, -1.80324961, -1.80324961, -1.7279512 ,
-1.7279512 , -1.7279512 , -1.7279512 , -1.64307535, -1.64307535,
-1.64307535, -1.64307535, -1.55362138, -1.55362138, -1.55362138,
-1.55362138, -1.46174726, -1.46174726, -1.46174726, -1.46174726,
-1.36829267, -1.36829267, -1.36829267, -1.36829267, -1.27355598,
-1.27355598, -1.27355598, -1.27355598, -1.17777205, -1.17777205,
-1.17777205, -1.17777205, -1.08123072, -1.08123072, -1.08123072,
-1.08123072, -0.98432119, -0.98432119, -0.98432119, -0.98432119,
-0.88773681, -0.88773681, -0.88773681, -0.88773681, -0.79181684,
-0.79181684, -0.79181684, -0.79181684, -0.69700308, -0.69700308,
-0.69700308, -0.69700308, -0.60390558, -0.60390558, -0.60390558,
-0.60390558, -0.51331502, -0.51331502, -0.51331502, -0.51331502,
-0.42585753, -0.42585753, -0.42585753, -0.42585753, -0.34241668,
-0.34241668, -0.34241668, -0.34241668, -0.26435547, -0.26435547,
-0.26435547, -0.26435547, -0.19206534, -0.19206534, -0.19206534,
-0.19206534, -0.13009378, -0.13009378, -0.13009378, -0.13009378,
-0.07061608, -0.07061608, -0.07061608, -0.07061608, -0.02671133,
-0.02671133, -0.02671133, -0.02671133, 0.02671133, 0.02671133,
0.02671133, 0.02671133, 0.07061608, 0.07061608, 0.07061608,
0.07061608, 0.13009378, 0.13009378, 0.13009378, 0.13009378,
0.19206534, 0.19206534, 0.19206534, 0.19206534, 0.26435547,
0.26435547, 0.26435547, 0.26435547, 0.34241668, 0.34241668,
0.34241668, 0.34241668, 0.42585753, 0.42585753, 0.42585753,
0.42585753, 0.51331502, 0.51331502, 0.51331502, 0.51331502,
0.60390558, 0.60390558, 0.60390558, 0.60390558, 0.69700308,
0.69700308, 0.69700308, 0.69700308, 0.79181684, 0.79181684,
0.79181684, 0.79181684, 0.88773681, 0.88773681, 0.88773681,
0.88773681, 0.98432119, 0.98432119, 0.98432119, 0.98432119,
1.08123072, 1.08123072, 1.08123072, 1.08123072, 1.17777205,
1.17777205, 1.17777205, 1.17777205, 1.27355598, 1.27355598,
1.27355598, 1.27355598, 1.36829267, 1.36829267, 1.36829267,
1.36829267, 1.46174726, 1.46174726, 1.46174726, 1.46174726,
1.55362138, 1.55362138, 1.55362138, 1.55362138, 1.64307535,
1.64307535, 1.64307535, 1.64307535, 1.7279512 , 1.7279512 ,
1.7279512 , 1.7279512 , 1.80324961, 1.80324961, 1.80324961,
1.80324961, 1.86439131, 1.86439131, 1.86439131, 1.86439131,
1.9113848 , 1.9113848 , 1.9113848 , 1.9113848 , 1.94546306,
1.94546306, 1.94546306, 1.94546306, 1.96855469, 1.96855469,
1.96855469, 1.96855469, 1.98307313, 1.98307313, 1.98307313,
1.98307313, 1.99150811, 1.99150811, 1.99150811, 1.99150811,
1.99602961, 1.99602961, 1.99602961, 1.99602961, 1.99826937,
1.99826937, 1.99826937, 1.99826937, 1.99928757, 1.99928757,
1.99928757, 1.99928757, 1.99976129, 1.99976129, 1.99976129]), 'P': array([0.39982141, 0.39982141, 0.39982141, 0.39982141, 0.39946719,
0.39946719, 0.39946719, 0.39946719, 0.39870684, 0.39870684,
0.39870684, 0.39870684, 0.39703884, 0.39703884, 0.39703884,
0.39703884, 0.39369048, 0.39369048, 0.39369048, 0.39369048,
0.38751064, 0.38751064, 0.38751064, 0.38751064, 0.37707294,
0.37707294, 0.37707294, 0.37707294, 0.36097737, 0.36097737,
0.36097737, 0.36097737, 0.33831756, 0.33831756, 0.33831756,
0.33831756, 0.30910205, 0.30910205, 0.30910205, 0.30910205,
0.27433245, 0.27433245, 0.27433245, 0.27433245, 0.23557782,
0.23557782, 0.23557782, 0.23557782, 0.1975858 , 0.1975858 ,
0.1975858 , 0.1975858 , 0.16381828, 0.16381828, 0.16381828,
0.16381828, 0.13476633, 0.13476633, 0.13476633, 0.13476633,
0.11022619, 0.11022619, 0.11022619, 0.11022619, 0.08977175,
0.08977175, 0.08977175, 0.08977175, 0.07291246, 0.07291246,
0.07291246, 0.07291246, 0.05915761, 0.05915761, 0.05915761,
0.05915761, 0.04805018, 0.04805018, 0.04805018, 0.04805018,
0.03915057, 0.03915057, 0.03915057, 0.03915057, 0.03204531,
0.03204531, 0.03204531, 0.03204531, 0.02638786, 0.02638786,
0.02638786, 0.02638786, 0.0218908 , 0.0218908 , 0.0218908 ,
0.0218908 , 0.0183185 , 0.0183185 , 0.0183185 , 0.0183185 ,
0.01549764, 0.01549764, 0.01549764, 0.01549764, 0.01328646,
0.01328646, 0.01328646, 0.01328646, 0.01156713, 0.01156713,
0.01156713, 0.01156713, 0.01028524, 0.01028524, 0.01028524,
0.01028524, 0.00930125, 0.00930125, 0.00930125, 0.00930125,
0.00877218, 0.00877218, 0.00877218, 0.00877218, 0.00837247,
0.00837247, 0.00837247, 0.00837247, 0.00837247, 0.00837247,
0.00837247, 0.00837247, 0.00877218, 0.00877218, 0.00877218,
0.00877218, 0.00930125, 0.00930125, 0.00930125, 0.00930125,
0.01028524, 0.01028524, 0.01028524, 0.01028524, 0.01156713,
0.01156713, 0.01156713, 0.01156713, 0.01328646, 0.01328646,
0.01328646, 0.01328646, 0.01549764, 0.01549764, 0.01549764,
0.01549764, 0.0183185 , 0.0183185 , 0.0183185 , 0.0183185 ,
0.0218908 , 0.0218908 , 0.0218908 , 0.0218908 , 0.02638786,
0.02638786, 0.02638786, 0.02638786, 0.03204531, 0.03204531,
0.03204531, 0.03204531, 0.03915057, 0.03915057, 0.03915057,
0.03915057, 0.04805018, 0.04805018, 0.04805018, 0.04805018,
0.05915761, 0.05915761, 0.05915761, 0.05915761, 0.07291246,
0.07291246, 0.07291246, 0.07291246, 0.08977175, 0.08977175,
0.08977175, 0.08977175, 0.11022619, 0.11022619, 0.11022619,
0.11022619, 0.13476633, 0.13476633, 0.13476633, 0.13476633,
0.16381828, 0.16381828, 0.16381828, 0.16381828, 0.1975858 ,
0.1975858 , 0.1975858 , 0.1975858 , 0.23557782, 0.23557782,
0.23557782, 0.23557782, 0.27433245, 0.27433245, 0.27433245,
0.27433245, 0.30910205, 0.30910205, 0.30910205, 0.30910205,
0.33831756, 0.33831756, 0.33831756, 0.33831756, 0.36097737,
0.36097737, 0.36097737, 0.36097737, 0.37707294, 0.37707294,
0.37707294, 0.37707294, 0.38751064, 0.38751064, 0.38751064,
0.38751064, 0.39369048, 0.39369048, 0.39369048, 0.39369048,
0.39703884, 0.39703884, 0.39703884, 0.39703884, 0.39870684,
0.39870684, 0.39870684, 0.39870684, 0.39946719, 0.39946719,
0.39946719, 0.39946719, 0.39982141, 0.39982141, 0.39982141])}, {'rho': array([0.99935842, 0.99935842, 0.99935842, 0.99935842, 0.99818385,
0.99818385, 0.99818385, 0.99818385, 0.9958364 , 0.9958364 ,
0.9958364 , 0.9958364 , 0.99097735, 0.99097735, 0.99097735,
0.99097735, 0.98179228, 0.98179228, 0.98179228, 0.98179228,
0.96579536, 0.96579536, 0.96579536, 0.96579536, 0.94020757,
0.94020757, 0.94020757, 0.94020757, 0.90261749, 0.90261749,
0.90261749, 0.90261749, 0.85178879, 0.85178879, 0.85178879,
0.85178879, 0.78827781, 0.78827781, 0.78827781, 0.78827781,
0.71478068, 0.71478068, 0.71478068, 0.71478068, 0.63550363,
0.63550363, 0.63550363, 0.63550363, 0.55595614, 0.55595614,
0.55595614, 0.55595614, 0.48067049, 0.48067049, 0.48067049,
0.48067049, 0.41103821, 0.41103821, 0.41103821, 0.41103821,
0.34796265, 0.34796265, 0.34796265, 0.34796265, 0.29198841,
0.29198841, 0.29198841, 0.29198841, 0.2432827 , 0.2432827 ,
0.2432827 , 0.2432827 , 0.20167143, 0.20167143, 0.20167143,
0.20167143, 0.16671549, 0.16671549, 0.16671549, 0.16671549,
0.13771315, 0.13771315, 0.13771315, 0.13771315, 0.1138762 ,
0.1138762 , 0.1138762 , 0.1138762 , 0.09444197, 0.09444197,
0.09444197, 0.09444197, 0.0787049 , 0.0787049 , 0.0787049 ,
0.0787049 , 0.06608221, 0.06608221, 0.06608221, 0.06608221,
0.05610415, 0.05610415, 0.05610415, 0.05610415, 0.04834004,
0.04834004, 0.04834004, 0.04834004, 0.04240575, 0.04240575,
0.04240575, 0.04240575, 0.0380912 , 0.0380912 , 0.0380912 ,
0.0380912 , 0.03492123, 0.03492123, 0.03492123, 0.03492123,
0.03326485, 0.03326485, 0.03326485, 0.03326485, 0.03214135,
0.03214135, 0.03214135, 0.03214135, 0.03214135, 0.03214135,
0.03214135, 0.03214135, 0.03326485, 0.03326485, 0.03326485,
0.03326485, 0.03492123, 0.03492123, 0.03492123, 0.03492123,
0.0380912 , 0.0380912 , 0.0380912 , 0.0380912 , 0.04240575,
0.04240575, 0.04240575, 0.04240575, 0.04834004, 0.04834004,
0.04834004, 0.04834004, 0.05610415, 0.05610415, 0.05610415,
0.05610415, 0.06608221, 0.06608221, 0.06608221, 0.06608221,
0.0787049 , 0.0787049 , 0.0787049 , 0.0787049 , 0.09444197,
0.09444197, 0.09444197, 0.09444197, 0.1138762 , 0.1138762 ,
0.1138762 , 0.1138762 , 0.13771315, 0.13771315, 0.13771315,
0.13771315, 0.16671549, 0.16671549, 0.16671549, 0.16671549,
0.20167143, 0.20167143, 0.20167143, 0.20167143, 0.2432827 ,
0.2432827 , 0.2432827 , 0.2432827 , 0.29198841, 0.29198841,
0.29198841, 0.29198841, 0.34796265, 0.34796265, 0.34796265,
0.34796265, 0.41103821, 0.41103821, 0.41103821, 0.41103821,
0.48067049, 0.48067049, 0.48067049, 0.48067049, 0.55595614,
0.55595614, 0.55595614, 0.55595614, 0.63550363, 0.63550363,
0.63550363, 0.63550363, 0.71478068, 0.71478068, 0.71478068,
0.71478068, 0.78827781, 0.78827781, 0.78827781, 0.78827781,
0.85178879, 0.85178879, 0.85178879, 0.85178879, 0.90261749,
0.90261749, 0.90261749, 0.90261749, 0.94020757, 0.94020757,
0.94020757, 0.94020757, 0.96579536, 0.96579536, 0.96579536,
0.96579536, 0.98179228, 0.98179228, 0.98179228, 0.98179228,
0.99097735, 0.99097735, 0.99097735, 0.99097735, 0.9958364 ,
0.9958364 , 0.9958364 , 0.9958364 , 0.99818385, 0.99818385,
0.99818385, 0.99818385, 0.99935842, 0.99935842, 0.99935842]), 'vx': array([-1.99952018, -1.99952018, -1.99952018, -1.99952018, -1.99864185,
-1.99864185, -1.99864185, -1.99864185, -1.99688652, -1.99688652,
-1.99688652, -1.99688652, -1.99324933, -1.99324933, -1.99324933,
-1.99324933, -1.9863528 , -1.9863528 , -1.9863528 , -1.9863528 ,
-1.97425674, -1.97425674, -1.97425674, -1.97425674, -1.95464263,
-1.95464263, -1.95464263, -1.95464263, -1.92514406, -1.92514406,
-1.92514406, -1.92514406, -1.88375677, -1.88375677, -1.88375677,
-1.88375677, -1.82911554, -1.82911554, -1.82911554, -1.82911554,
-1.76062129, -1.76062129, -1.76062129, -1.76062129, -1.68071322,
-1.68071322, -1.68071322, -1.68071322, -1.59492733, -1.59492733,
-1.59492733, -1.59492733, -1.5062706 , -1.5062706 , -1.5062706 ,
-1.5062706 , -1.41587855, -1.41587855, -1.41587855, -1.41587855,
-1.32420236, -1.32420236, -1.32420236, -1.32420236, -1.23142318,
-1.23142318, -1.23142318, -1.23142318, -1.13776667, -1.13776667,
-1.13776667, -1.13776667, -1.0435245 , -1.0435245 , -1.0435245 ,
-1.0435245 , -0.94917177, -0.94917177, -0.94917177, -0.94917177,
-0.85524436, -0.85524436, -0.85524436, -0.85524436, -0.76204779,
-0.76204779, -0.76204779, -0.76204779, -0.6700244 , -0.6700244 ,
-0.6700244 , -0.6700244 , -0.57980628, -0.57980628, -0.57980628,
-0.57980628, -0.49209337, -0.49209337, -0.49209337, -0.49209337,
-0.4075253 , -0.4075253 , -0.4075253 , -0.4075253 , -0.3269932 ,
-0.3269932 , -0.3269932 , -0.3269932 , -0.25189354, -0.25189354,
-0.25189354, -0.25189354, -0.18245433, -0.18245433, -0.18245433,
-0.18245433, -0.12356223, -0.12356223, -0.12356223, -0.12356223,
-0.06674555, -0.06674555, -0.06674555, -0.06674555, -0.02512498,
-0.02512498, -0.02512498, -0.02512498, 0.02512498, 0.02512498,
0.02512498, 0.02512498, 0.06674555, 0.06674555, 0.06674555,
0.06674555, 0.12356223, 0.12356223, 0.12356223, 0.12356223,
0.18245433, 0.18245433, 0.18245433, 0.18245433, 0.25189354,
0.25189354, 0.25189354, 0.25189354, 0.3269932 , 0.3269932 ,
0.3269932 , 0.3269932 , 0.4075253 , 0.4075253 , 0.4075253 ,
0.4075253 , 0.49209337, 0.49209337, 0.49209337, 0.49209337,
0.57980628, 0.57980628, 0.57980628, 0.57980628, 0.6700244 ,
0.6700244 , 0.6700244 , 0.6700244 , 0.76204779, 0.76204779,
0.76204779, 0.76204779, 0.85524436, 0.85524436, 0.85524436,
0.85524436, 0.94917177, 0.94917177, 0.94917177, 0.94917177,
1.0435245 , 1.0435245 , 1.0435245 , 1.0435245 , 1.13776667,
1.13776667, 1.13776667, 1.13776667, 1.23142318, 1.23142318,
1.23142318, 1.23142318, 1.32420236, 1.32420236, 1.32420236,
1.32420236, 1.41587855, 1.41587855, 1.41587855, 1.41587855,
1.5062706 , 1.5062706 , 1.5062706 , 1.5062706 , 1.59492733,
1.59492733, 1.59492733, 1.59492733, 1.68071322, 1.68071322,
1.68071322, 1.68071322, 1.76062129, 1.76062129, 1.76062129,
1.76062129, 1.82911554, 1.82911554, 1.82911554, 1.82911554,
1.88375677, 1.88375677, 1.88375677, 1.88375677, 1.92514406,
1.92514406, 1.92514406, 1.92514406, 1.95464263, 1.95464263,
1.95464263, 1.95464263, 1.97425674, 1.97425674, 1.97425674,
1.97425674, 1.9863528 , 1.9863528 , 1.9863528 , 1.9863528 ,
1.99324933, 1.99324933, 1.99324933, 1.99324933, 1.99688652,
1.99688652, 1.99688652, 1.99688652, 1.99864185, 1.99864185,
1.99864185, 1.99864185, 1.99952018, 1.99952018, 1.99952018]), 'P': array([0.39964109, 0.39964109, 0.39964109, 0.39964109, 0.39898484,
0.39898484, 0.39898484, 0.39898484, 0.39767625, 0.39767625,
0.39767625, 0.39767625, 0.39497692, 0.39497692, 0.39497692,
0.39497692, 0.38990315, 0.38990315, 0.38990315, 0.38990315,
0.38114224, 0.38114224, 0.38114224, 0.38114224, 0.36730165,
0.36730165, 0.36730165, 0.36730165, 0.34731065, 0.34731065,
0.34731065, 0.34731065, 0.32085982, 0.32085982, 0.32085982,
0.32085982, 0.28861299, 0.28861299, 0.28861299, 0.28861299,
0.25186678, 0.25186678, 0.25186678, 0.25186678, 0.21365403,
0.21365403, 0.21365403, 0.21365403, 0.17870252, 0.17870252,
0.17870252, 0.17870252, 0.14818267, 0.14818267, 0.14818267,
0.14818267, 0.12209924, 0.12209924, 0.12209924, 0.12209924,
0.10011945, 0.10011945, 0.10011945, 0.10011945, 0.0818088 ,
0.0818088 , 0.0818088 , 0.0818088 , 0.06670971, 0.06670971,
0.06670971, 0.06670971, 0.05437927, 0.05437927, 0.05437927,
0.05437927, 0.04440649, 0.04440649, 0.04440649, 0.04440649,
0.03638626, 0.03638626, 0.03638626, 0.03638626, 0.02995596,
0.02995596, 0.02995596, 0.02995596, 0.02481328, 0.02481328,
0.02481328, 0.02481328, 0.02070499, 0.02070499, 0.02070499,
0.02070499, 0.0174288 , 0.0174288 , 0.0174288 , 0.0174288 ,
0.01483202, 0.01483202, 0.01483202, 0.01483202, 0.01278983,
0.01278983, 0.01278983, 0.01278983, 0.01119743, 0.01119743,
0.01119743, 0.01119743, 0.01001381, 0.01001381, 0.01001381,
0.01001381, 0.0090983 , 0.0090983 , 0.0090983 , 0.0090983 ,
0.00861935, 0.00861935, 0.00861935, 0.00861935, 0.00825265,
0.00825265, 0.00825265, 0.00825265, 0.00825265, 0.00825265,
0.00825265, 0.00825265, 0.00861935, 0.00861935, 0.00861935,
0.00861935, 0.0090983 , 0.0090983 , 0.0090983 , 0.0090983 ,
0.01001381, 0.01001381, 0.01001381, 0.01001381, 0.01119743,
0.01119743, 0.01119743, 0.01119743, 0.01278983, 0.01278983,
0.01278983, 0.01278983, 0.01483202, 0.01483202, 0.01483202,
0.01483202, 0.0174288 , 0.0174288 , 0.0174288 , 0.0174288 ,
0.02070499, 0.02070499, 0.02070499, 0.02070499, 0.02481328,
0.02481328, 0.02481328, 0.02481328, 0.02995596, 0.02995596,
0.02995596, 0.02995596, 0.03638626, 0.03638626, 0.03638626,
0.03638626, 0.04440649, 0.04440649, 0.04440649, 0.04440649,
0.05437927, 0.05437927, 0.05437927, 0.05437927, 0.06670971,
0.06670971, 0.06670971, 0.06670971, 0.0818088 , 0.0818088 ,
0.0818088 , 0.0818088 , 0.10011945, 0.10011945, 0.10011945,
0.10011945, 0.12209924, 0.12209924, 0.12209924, 0.12209924,
0.14818267, 0.14818267, 0.14818267, 0.14818267, 0.17870252,
0.17870252, 0.17870252, 0.17870252, 0.21365403, 0.21365403,
0.21365403, 0.21365403, 0.25186678, 0.25186678, 0.25186678,
0.25186678, 0.28861299, 0.28861299, 0.28861299, 0.28861299,
0.32085982, 0.32085982, 0.32085982, 0.32085982, 0.34731065,
0.34731065, 0.34731065, 0.34731065, 0.36730165, 0.36730165,
0.36730165, 0.36730165, 0.38114224, 0.38114224, 0.38114224,
0.38114224, 0.38990315, 0.38990315, 0.38990315, 0.38990315,
0.39497692, 0.39497692, 0.39497692, 0.39497692, 0.39767625,
0.39767625, 0.39767625, 0.39767625, 0.39898484, 0.39898484,
0.39898484, 0.39898484, 0.39964109, 0.39964109, 0.39964109])}, {'rho': array([0.99877047, 0.99877047, 0.99877047, 0.99877047, 0.99669744,
0.99669744, 0.99669744, 0.99669744, 0.99285057, 0.99285057,
0.99285057, 0.99285057, 0.98534841, 0.98534841, 0.98534841,
0.98534841, 0.97204259, 0.97204259, 0.97204259, 0.97204259,
0.95029132, 0.95029132, 0.95029132, 0.95029132, 0.91759898,
0.91759898, 0.91759898, 0.91759898, 0.87234656, 0.87234656,
0.87234656, 0.87234656, 0.81445318, 0.81445318, 0.81445318,
0.81445318, 0.7457438 , 0.7457438 , 0.7457438 , 0.7457438 ,
0.66993745, 0.66993745, 0.66993745, 0.66993745, 0.59159085,
0.59159085, 0.59159085, 0.59159085, 0.51625046, 0.51625046,
0.51625046, 0.51625046, 0.44575447, 0.44575447, 0.44575447,
0.44575447, 0.38102775, 0.38102775, 0.38102775, 0.38102775,
0.32272363, 0.32272363, 0.32272363, 0.32272363, 0.27120152,
0.27120152, 0.27120152, 0.27120152, 0.22649938, 0.22649938,
0.22649938, 0.22649938, 0.18837223, 0.18837223, 0.18837223,
0.18837223, 0.15634393, 0.15634393, 0.15634393, 0.15634393,
0.12971893, 0.12971893, 0.12971893, 0.12971893, 0.10777842,
0.10777842, 0.10777842, 0.10777842, 0.08983298, 0.08983298,
0.08983298, 0.08983298, 0.07524656, 0.07524656, 0.07524656,
0.07524656, 0.06352115, 0.06352115, 0.06352115, 0.06352115,
0.05422287, 0.05422287, 0.05422287, 0.05422287, 0.04696748,
0.04696748, 0.04696748, 0.04696748, 0.04140756, 0.04140756,
0.04140756, 0.04140756, 0.03737502, 0.03737502, 0.03737502,
0.03737502, 0.0343942 , 0.0343942 , 0.0343942 , 0.0343942 ,
0.0328717 , 0.0328717 , 0.0328717 , 0.0328717 , 0.03183325,
0.03183325, 0.03183325, 0.03183325, 0.03183325, 0.03183325,
0.03183325, 0.03183325, 0.0328717 , 0.0328717 , 0.0328717 ,
0.0328717 , 0.0343942 , 0.0343942 , 0.0343942 , 0.0343942 ,
0.03737502, 0.03737502, 0.03737502, 0.03737502, 0.04140756,
0.04140756, 0.04140756, 0.04140756, 0.04696748, 0.04696748,
0.04696748, 0.04696748, 0.05422287, 0.05422287, 0.05422287,
0.05422287, 0.06352115, 0.06352115, 0.06352115, 0.06352115,
0.07524656, 0.07524656, 0.07524656, 0.07524656, 0.08983298,
0.08983298, 0.08983298, 0.08983298, 0.10777842, 0.10777842,
0.10777842, 0.10777842, 0.12971893, 0.12971893, 0.12971893,
0.12971893, 0.15634393, 0.15634393, 0.15634393, 0.15634393,
0.18837223, 0.18837223, 0.18837223, 0.18837223, 0.22649938,
0.22649938, 0.22649938, 0.22649938, 0.27120152, 0.27120152,
0.27120152, 0.27120152, 0.32272363, 0.32272363, 0.32272363,
0.32272363, 0.38102775, 0.38102775, 0.38102775, 0.38102775,
0.44575447, 0.44575447, 0.44575447, 0.44575447, 0.51625046,
0.51625046, 0.51625046, 0.51625046, 0.59159085, 0.59159085,
0.59159085, 0.59159085, 0.66993745, 0.66993745, 0.66993745,
0.66993745, 0.7457438 , 0.7457438 , 0.7457438 , 0.7457438 ,
0.81445318, 0.81445318, 0.81445318, 0.81445318, 0.87234656,
0.87234656, 0.87234656, 0.87234656, 0.91759898, 0.91759898,
0.91759898, 0.91759898, 0.95029132, 0.95029132, 0.95029132,
0.95029132, 0.97204259, 0.97204259, 0.97204259, 0.97204259,
0.98534841, 0.98534841, 0.98534841, 0.98534841, 0.99285057,
0.99285057, 0.99285057, 0.99285057, 0.99669744, 0.99669744,
0.99669744, 0.99669744, 0.99877047, 0.99877047, 0.99877047]), 'vx': array([-1.99908059, -1.99908059, -1.99908059, -1.99908059, -1.99753004,
-1.99753004, -1.99753004, -1.99753004, -1.99465134, -1.99465134,
-1.99465134, -1.99465134, -1.98902376, -1.98902376, -1.98902376,
-1.98902376, -1.97898693, -1.97898693, -1.97898693, -1.97898693,
-1.96239563, -1.96239563, -1.96239563, -1.96239563, -1.93696484,
-1.93696484, -1.93696484, -1.93696484, -1.90064228, -1.90064228,
-1.90064228, -1.90064228, -1.85193922, -1.85193922, -1.85193922,
-1.85193922, -1.7900464 , -1.7900464 , -1.7900464 , -1.7900464 ,
-1.71565593, -1.71565593, -1.71565593, -1.71565593, -1.63373525,
-1.63373525, -1.63373525, -1.63373525, -1.54823073, -1.54823073,
-1.54823073, -1.54823073, -1.46079235, -1.46079235, -1.46079235,
-1.46079235, -1.37199852, -1.37199852, -1.37199852, -1.37199852,
-1.28211147, -1.28211147, -1.28211147, -1.28211147, -1.1912692 ,
-1.1912692 , -1.1912692 , -1.1912692 , -1.0997101 , -1.0997101 ,
-1.0997101 , -1.0997101 , -1.00773223, -1.00773223, -1.00773223,
-1.00773223, -0.915865 , -0.915865 , -0.915865 , -0.915865 ,
-0.82447802, -0.82447802, -0.82447802, -0.82447802, -0.73388324,
-0.73388324, -0.73388324, -0.73388324, -0.64452211, -0.64452211,
-0.64452211, -0.64452211, -0.55705453, -0.55705453, -0.55705453,
-0.55705453, -0.47206535, -0.47206535, -0.47206535, -0.47206535,
-0.39024786, -0.39024786, -0.39024786, -0.39024786, -0.31248498,
-0.31248498, -0.31248498, -0.31248498, -0.24021394, -0.24021394,
-0.24021394, -0.24021394, -0.17347661, -0.17347661, -0.17347661,
-0.17347661, -0.11751026, -0.11751026, -0.11751026, -0.11751026,
-0.0632085 , -0.0632085 , -0.0632085 , -0.0632085 , -0.02367335,
-0.02367335, -0.02367335, -0.02367335, 0.02367335, 0.02367335,
0.02367335, 0.02367335, 0.0632085 , 0.0632085 , 0.0632085 ,
0.0632085 , 0.11751026, 0.11751026, 0.11751026, 0.11751026,
0.17347661, 0.17347661, 0.17347661, 0.17347661, 0.24021394,
0.24021394, 0.24021394, 0.24021394, 0.31248498, 0.31248498,
0.31248498, 0.31248498, 0.39024786, 0.39024786, 0.39024786,
0.39024786, 0.47206535, 0.47206535, 0.47206535, 0.47206535,
0.55705453, 0.55705453, 0.55705453, 0.55705453, 0.64452211,
0.64452211, 0.64452211, 0.64452211, 0.73388324, 0.73388324,
0.73388324, 0.73388324, 0.82447802, 0.82447802, 0.82447802,
0.82447802, 0.915865 , 0.915865 , 0.915865 , 0.915865 ,
1.00773223, 1.00773223, 1.00773223, 1.00773223, 1.0997101 ,
1.0997101 , 1.0997101 , 1.0997101 , 1.1912692 , 1.1912692 ,
1.1912692 , 1.1912692 , 1.28211147, 1.28211147, 1.28211147,
1.28211147, 1.37199852, 1.37199852, 1.37199852, 1.37199852,
1.46079235, 1.46079235, 1.46079235, 1.46079235, 1.54823073,
1.54823073, 1.54823073, 1.54823073, 1.63373525, 1.63373525,
1.63373525, 1.63373525, 1.71565593, 1.71565593, 1.71565593,
1.71565593, 1.7900464 , 1.7900464 , 1.7900464 , 1.7900464 ,
1.85193922, 1.85193922, 1.85193922, 1.85193922, 1.90064228,
1.90064228, 1.90064228, 1.90064228, 1.93696484, 1.93696484,
1.93696484, 1.93696484, 1.96239563, 1.96239563, 1.96239563,
1.96239563, 1.97898693, 1.97898693, 1.97898693, 1.97898693,
1.98902376, 1.98902376, 1.98902376, 1.98902376, 1.99465134,
1.99465134, 1.99465134, 1.99465134, 1.99753004, 1.99753004,
1.99753004, 1.99753004, 1.99908059, 1.99908059, 1.99908059]), 'P': array([0.39931253, 0.39931253, 0.39931253, 0.39931253, 0.39815553,
0.39815553, 0.39815553, 0.39815553, 0.39601547, 0.39601547,
0.39601547, 0.39601547, 0.39186124, 0.39186124, 0.39186124,
0.39186124, 0.38454724, 0.38454724, 0.38454724, 0.38454724,
0.37271856, 0.37271856, 0.37271856, 0.37271856, 0.35520322,
0.35520322, 0.35520322, 0.35520322, 0.33142852, 0.33142852,
0.33142852, 0.33142852, 0.30172162, 0.30172162, 0.30172162,
0.30172162, 0.26722998, 0.26722998, 0.26722998, 0.26722998,
0.22964847, 0.22964847, 0.22964847, 0.22964847, 0.19381543,
0.19381543, 0.19381543, 0.19381543, 0.16198249, 0.16198249,
0.16198249, 0.16198249, 0.13445089, 0.13445089, 0.13445089,
0.13445089, 0.11100538, 0.11100538, 0.11100538, 0.11100538,
0.091272 , 0.091272 , 0.091272 , 0.091272 , 0.07483306,
0.07483306, 0.07483306, 0.07483306, 0.06126859, 0.06126859,
0.06126859, 0.06126859, 0.0501795 , 0.0501795 , 0.0501795 ,
0.0501795 , 0.04119173, 0.04119173, 0.04119173, 0.04119173,
0.03393542, 0.03393542, 0.03393542, 0.03393542, 0.02809392,
0.02809392, 0.02809392, 0.02809392, 0.02340228, 0.02340228,
0.02340228, 0.02340228, 0.01963597, 0.01963597, 0.01963597,
0.01963597, 0.01662277, 0.01662277, 0.01662277, 0.01662277,
0.0142256 , 0.0142256 , 0.0142256 , 0.0142256 , 0.0123351 ,
0.0123351 , 0.0123351 , 0.0123351 , 0.01085733, 0.01085733,
0.01085733, 0.01085733, 0.0097635 , 0.0097635 , 0.0097635 ,
0.0097635 , 0.00891048, 0.00891048, 0.00891048, 0.00891048,
0.00847698, 0.00847698, 0.00847698, 0.00847698, 0.00814089,
0.00814089, 0.00814089, 0.00814089, 0.00814089, 0.00814089,
0.00814089, 0.00814089, 0.00847698, 0.00847698, 0.00847698,
0.00847698, 0.00891048, 0.00891048, 0.00891048, 0.00891048,
0.0097635 , 0.0097635 , 0.0097635 , 0.0097635 , 0.01085733,
0.01085733, 0.01085733, 0.01085733, 0.0123351 , 0.0123351 ,
0.0123351 , 0.0123351 , 0.0142256 , 0.0142256 , 0.0142256 ,
0.0142256 , 0.01662277, 0.01662277, 0.01662277, 0.01662277,
0.01963597, 0.01963597, 0.01963597, 0.01963597, 0.02340228,
0.02340228, 0.02340228, 0.02340228, 0.02809392, 0.02809392,
0.02809392, 0.02809392, 0.03393542, 0.03393542, 0.03393542,
0.03393542, 0.04119173, 0.04119173, 0.04119173, 0.04119173,
0.0501795 , 0.0501795 , 0.0501795 , 0.0501795 , 0.06126859,
0.06126859, 0.06126859, 0.06126859, 0.07483306, 0.07483306,
0.07483306, 0.07483306, 0.091272 , 0.091272 , 0.091272 ,
0.091272 , 0.11100538, 0.11100538, 0.11100538, 0.11100538,
0.13445089, 0.13445089, 0.13445089, 0.13445089, 0.16198249,
0.16198249, 0.16198249, 0.16198249, 0.19381543, 0.19381543,
0.19381543, 0.19381543, 0.22964847, 0.22964847, 0.22964847,
0.22964847, 0.26722998, 0.26722998, 0.26722998, 0.26722998,
0.30172162, 0.30172162, 0.30172162, 0.30172162, 0.33142852,
0.33142852, 0.33142852, 0.33142852, 0.35520322, 0.35520322,
0.35520322, 0.35520322, 0.37271856, 0.37271856, 0.37271856,
0.37271856, 0.38454724, 0.38454724, 0.38454724, 0.38454724,
0.39186124, 0.39186124, 0.39186124, 0.39186124, 0.39601547,
0.39601547, 0.39601547, 0.39601547, 0.39815553, 0.39815553,
0.39815553, 0.39815553, 0.39931253, 0.39931253, 0.39931253])}, {'rho': array([0.9977494 , 0.9977494 , 0.9977494 , 0.9977494 , 0.99426102,
0.99426102, 0.99426102, 0.99426102, 0.98825921, 0.98825921,
0.98825921, 0.98825921, 0.97721687, 0.97721687, 0.97721687,
0.97721687, 0.9588252 , 0.9588252 , 0.9588252 , 0.9588252 ,
0.93055227, 0.93055227, 0.93055227, 0.93055227, 0.89050924,
0.89050924, 0.89050924, 0.89050924, 0.8380853 , 0.8380853 ,
0.8380853 , 0.8380853 , 0.77437286, 0.77437286, 0.77437286,
0.77437286, 0.70235571, 0.70235571, 0.70235571, 0.70235571,
0.62603086, 0.62603086, 0.62603086, 0.62603086, 0.55093316,
0.55093316, 0.55093316, 0.55093316, 0.47999301, 0.47999301,
0.47999301, 0.47999301, 0.41411573, 0.41411573, 0.41411573,
0.41411573, 0.35398023, 0.35398023, 0.35398023, 0.35398023,
0.30006434, 0.30006434, 0.30006434, 0.30006434, 0.25258687,
0.25258687, 0.25258687, 0.25258687, 0.21148973, 0.21148973,
0.21148973, 0.21148973, 0.17648142, 0.17648142, 0.17648142,
0.17648142, 0.14704972, 0.14704972, 0.14704972, 0.14704972,
0.12253346, 0.12253346, 0.12253346, 0.12253346, 0.10227724,
0.10227724, 0.10227724, 0.10227724, 0.08565589, 0.08565589,
0.08565589, 0.08565589, 0.07210108, 0.07210108, 0.07210108,
0.07210108, 0.0611814 , 0.0611814 , 0.0611814 , 0.0611814 ,
0.05249557, 0.05249557, 0.05249557, 0.05249557, 0.04570138,
0.04570138, 0.04570138, 0.04570138, 0.0404826 , 0.0404826 ,
0.0404826 , 0.0404826 , 0.03670994, 0.03670994, 0.03670994,
0.03670994, 0.03390332, 0.03390332, 0.03390332, 0.03390332,
0.03250305, 0.03250305, 0.03250305, 0.03250305, 0.03154398,
0.03154398, 0.03154398, 0.03154398, 0.03154398, 0.03154398,
0.03154398, 0.03154398, 0.03250305, 0.03250305, 0.03250305,
0.03250305, 0.03390332, 0.03390332, 0.03390332, 0.03390332,
0.03670994, 0.03670994, 0.03670994, 0.03670994, 0.0404826 ,
0.0404826 , 0.0404826 , 0.0404826 , 0.04570138, 0.04570138,
0.04570138, 0.04570138, 0.05249557, 0.05249557, 0.05249557,
0.05249557, 0.0611814 , 0.0611814 , 0.0611814 , 0.0611814 ,
0.07210108, 0.07210108, 0.07210108, 0.07210108, 0.08565589,
0.08565589, 0.08565589, 0.08565589, 0.10227724, 0.10227724,
0.10227724, 0.10227724, 0.12253346, 0.12253346, 0.12253346,
0.12253346, 0.14704972, 0.14704972, 0.14704972, 0.14704972,
0.17648142, 0.17648142, 0.17648142, 0.17648142, 0.21148973,
0.21148973, 0.21148973, 0.21148973, 0.25258687, 0.25258687,
0.25258687, 0.25258687, 0.30006434, 0.30006434, 0.30006434,
0.30006434, 0.35398023, 0.35398023, 0.35398023, 0.35398023,
0.41411573, 0.41411573, 0.41411573, 0.41411573, 0.47999301,
0.47999301, 0.47999301, 0.47999301, 0.55093316, 0.55093316,
0.55093316, 0.55093316, 0.62603086, 0.62603086, 0.62603086,
0.62603086, 0.70235571, 0.70235571, 0.70235571, 0.70235571,
0.77437286, 0.77437286, 0.77437286, 0.77437286, 0.8380853 ,
0.8380853 , 0.8380853 , 0.8380853 , 0.89050924, 0.89050924,
0.89050924, 0.89050924, 0.93055227, 0.93055227, 0.93055227,
0.93055227, 0.9588252 , 0.9588252 , 0.9588252 , 0.9588252 ,
0.97721687, 0.97721687, 0.97721687, 0.97721687, 0.98825921,
0.98825921, 0.98825921, 0.98825921, 0.99426102, 0.99426102,
0.99426102, 0.99426102, 0.9977494 , 0.9977494 , 0.9977494 ]), 'vx': array([-1.99831719, -1.99831719, -1.99831719, -1.99831719, -1.9957063 ,
-1.9957063 , -1.9957063 , -1.9957063 , -1.99120791, -1.99120791,
-1.99120791, -1.99120791, -1.98289418, -1.98289418, -1.98289418,
-1.98289418, -1.96892164, -1.96892164, -1.96892164, -1.96892164,
-1.94708842, -1.94708842, -1.94708842, -1.94708842, -1.91533198,
-1.91533198, -1.91533198, -1.91533198, -1.87205044, -1.87205044,
-1.87205044, -1.87205044, -1.81628384, -1.81628384, -1.81628384,
-1.81628384, -1.74789252, -1.74789252, -1.74789252, -1.74789252,
-1.67014117, -1.67014117, -1.67014117, -1.67014117, -1.58781623,
-1.58781623, -1.58781623, -1.58781623, -1.50321406, -1.50321406,
-1.50321406, -1.50321406, -1.41718641, -1.41718641, -1.41718641,
-1.41718641, -1.33002805, -1.33002805, -1.33002805, -1.33002805,
-1.24191754, -1.24191754, -1.24191754, -1.24191754, -1.1529859 ,
-1.1529859 , -1.1529859 , -1.1529859 , -1.06348241, -1.06348241,
-1.06348241, -1.06348241, -0.97375295, -0.97375295, -0.97375295,
-0.97375295, -0.8842681 , -0.8842681 , -0.8842681 , -0.8842681 ,
-0.79531229, -0.79531229, -0.79531229, -0.79531229, -0.70720499,
-0.70720499, -0.70720499, -0.70720499, -0.62039393, -0.62039393,
-0.62039393, -0.62039393, -0.53553844, -0.53553844, -0.53553844,
-0.53553844, -0.45314097, -0.45314097, -0.45314097, -0.45314097,
-0.37394611, -0.37394611, -0.37394611, -0.37394611, -0.29882417,
-0.29882417, -0.29882417, -0.29882417, -0.22926025, -0.22926025,
-0.22926025, -0.22926025, -0.1650861 , -0.1650861 , -0.1650861 ,
-0.1650861 , -0.11189931, -0.11189931, -0.11189931, -0.11189931,
-0.05997783, -0.05997783, -0.05997783, -0.05997783, -0.02234588,
-0.02234588, -0.02234588, -0.02234588, 0.02234588, 0.02234588,
0.02234588, 0.02234588, 0.05997783, 0.05997783, 0.05997783,
0.05997783, 0.11189931, 0.11189931, 0.11189931, 0.11189931,
0.1650861 , 0.1650861 , 0.1650861 , 0.1650861 , 0.22926025,
0.22926025, 0.22926025, 0.22926025, 0.29882417, 0.29882417,
0.29882417, 0.29882417, 0.37394611, 0.37394611, 0.37394611,
0.37394611, 0.45314097, 0.45314097, 0.45314097, 0.45314097,
0.53553844, 0.53553844, 0.53553844, 0.53553844, 0.62039393,
0.62039393, 0.62039393, 0.62039393, 0.70720499, 0.70720499,
0.70720499, 0.70720499, 0.79531229, 0.79531229, 0.79531229,
0.79531229, 0.8842681 , 0.8842681 , 0.8842681 , 0.8842681 ,
0.97375295, 0.97375295, 0.97375295, 0.97375295, 1.06348241,
1.06348241, 1.06348241, 1.06348241, 1.1529859 , 1.1529859 ,
1.1529859 , 1.1529859 , 1.24191754, 1.24191754, 1.24191754,
1.24191754, 1.33002805, 1.33002805, 1.33002805, 1.33002805,
1.41718641, 1.41718641, 1.41718641, 1.41718641, 1.50321406,
1.50321406, 1.50321406, 1.50321406, 1.58781623, 1.58781623,
1.58781623, 1.58781623, 1.67014117, 1.67014117, 1.67014117,
1.67014117, 1.74789252, 1.74789252, 1.74789252, 1.74789252,
1.81628384, 1.81628384, 1.81628384, 1.81628384, 1.87205044,
1.87205044, 1.87205044, 1.87205044, 1.91533198, 1.91533198,
1.91533198, 1.91533198, 1.94708842, 1.94708842, 1.94708842,
1.94708842, 1.96892164, 1.96892164, 1.96892164, 1.96892164,
1.98289418, 1.98289418, 1.98289418, 1.98289418, 1.99120791,
1.99120791, 1.99120791, 1.99120791, 1.9957063 , 1.9957063 ,
1.9957063 , 1.9957063 , 1.99831719, 1.99831719, 1.99831719]), 'P': array([0.39874254, 0.39874254, 0.39874254, 0.39874254, 0.3967985 ,
0.3967985 , 0.3967985 , 0.3967985 , 0.39346894, 0.39346894,
0.39346894, 0.39346894, 0.38738 , 0.38738 , 0.38738 ,
0.38738 , 0.37733237, 0.37733237, 0.37733237, 0.37733237,
0.36208692, 0.36208692, 0.36208692, 0.36208692, 0.34086903,
0.34086903, 0.34086903, 0.34086903, 0.31369196, 0.31369196,
0.31369196, 0.31369196, 0.28143228, 0.28143228, 0.28143228,
0.28143228, 0.24539505, 0.24539505, 0.24539505, 0.24539505,
0.20904257, 0.20904257, 0.20904257, 0.20904257, 0.17608693,
0.17608693, 0.17608693, 0.17608693, 0.1472165 , 0.1472165 ,
0.1472165 , 0.1472165 , 0.12237566, 0.12237566, 0.12237566,
0.12237566, 0.10126204, 0.10126204, 0.10126204, 0.10126204,
0.08350028, 0.08350028, 0.08350028, 0.08350028, 0.06869941,
0.06869941, 0.06869941, 0.06869941, 0.05647672, 0.05647672,
0.05647672, 0.05647672, 0.0464733 , 0.0464733 , 0.0464733 ,
0.0464733 , 0.03834224, 0.03834224, 0.03834224, 0.03834224,
0.03175275, 0.03175275, 0.03175275, 0.03175275, 0.02642729,
0.02642729, 0.02642729, 0.02642729, 0.02213222, 0.02213222,
0.02213222, 0.02213222, 0.018669 , 0.018669 , 0.018669 ,
0.018669 , 0.0158899 , 0.0158899 , 0.0158899 , 0.0158899 ,
0.01367134, 0.01367134, 0.01367134, 0.01367134, 0.01191756,
0.01191756, 0.01191756, 0.01191756, 0.01054368, 0.01054368,
0.01054368, 0.01054368, 0.00953218, 0.00953218, 0.00953218,
0.00953218, 0.00873638, 0.00873638, 0.00873638, 0.00873638,
0.00834403, 0.00834403, 0.00834403, 0.00834403, 0.00803633,
0.00803633, 0.00803633, 0.00803633, 0.00803633, 0.00803633,
0.00803633, 0.00803633, 0.00834403, 0.00834403, 0.00834403,
0.00834403, 0.00873638, 0.00873638, 0.00873638, 0.00873638,
0.00953218, 0.00953218, 0.00953218, 0.00953218, 0.01054368,
0.01054368, 0.01054368, 0.01054368, 0.01191756, 0.01191756,
0.01191756, 0.01191756, 0.01367134, 0.01367134, 0.01367134,
0.01367134, 0.0158899 , 0.0158899 , 0.0158899 , 0.0158899 ,
0.018669 , 0.018669 , 0.018669 , 0.018669 , 0.02213222,
0.02213222, 0.02213222, 0.02213222, 0.02642729, 0.02642729,
0.02642729, 0.02642729, 0.03175275, 0.03175275, 0.03175275,
0.03175275, 0.03834224, 0.03834224, 0.03834224, 0.03834224,
0.0464733 , 0.0464733 , 0.0464733 , 0.0464733 , 0.05647672,
0.05647672, 0.05647672, 0.05647672, 0.06869941, 0.06869941,
0.06869941, 0.06869941, 0.08350028, 0.08350028, 0.08350028,
0.08350028, 0.10126204, 0.10126204, 0.10126204, 0.10126204,
0.12237566, 0.12237566, 0.12237566, 0.12237566, 0.1472165 ,
0.1472165 , 0.1472165 , 0.1472165 , 0.17608693, 0.17608693,
0.17608693, 0.17608693, 0.20904257, 0.20904257, 0.20904257,
0.20904257, 0.24539505, 0.24539505, 0.24539505, 0.24539505,
0.28143228, 0.28143228, 0.28143228, 0.28143228, 0.31369196,
0.31369196, 0.31369196, 0.31369196, 0.34086903, 0.34086903,
0.34086903, 0.34086903, 0.36208692, 0.36208692, 0.36208692,
0.36208692, 0.37733237, 0.37733237, 0.37733237, 0.37733237,
0.38738 , 0.38738 , 0.38738 , 0.38738 , 0.39346894,
0.39346894, 0.39346894, 0.39346894, 0.3967985 , 0.3967985 ,
0.3967985 , 0.3967985 , 0.39874254, 0.39874254, 0.39874254])}, {'rho': array([0.99605813, 0.99605813, 0.99605813, 0.99605813, 0.99045329,
0.99045329, 0.99045329, 0.99045329, 0.98152705, 0.98152705,
0.98152705, 0.98152705, 0.9660057 , 0.9660057 , 0.9660057 ,
0.9660057 , 0.94169868, 0.94169868, 0.94169868, 0.94169868,
0.90647287, 0.90647287, 0.90647287, 0.90647287, 0.85929998,
0.85929998, 0.85929998, 0.85929998, 0.8006496 , 0.8006496 ,
0.8006496 , 0.8006496 , 0.73271464, 0.73271464, 0.73271464,
0.73271464, 0.65912321, 0.65912321, 0.65912321, 0.65912321,
0.58464756, 0.58464756, 0.58464756, 0.58464756, 0.51355991,
0.51355991, 0.51355991, 0.51355991, 0.44694843, 0.44694843,
0.44694843, 0.44694843, 0.38544657, 0.38544657, 0.38544657,
0.38544657, 0.32957765, 0.32957765, 0.32957765, 0.32957765,
0.27968514, 0.27968514, 0.27968514, 0.27968514, 0.23587891,
0.23587891, 0.23587891, 0.23587891, 0.19803116, 0.19803116,
0.19803116, 0.19803116, 0.1658123 , 0.1658123 , 0.1658123 ,
0.1658123 , 0.13869035, 0.13869035, 0.13869035, 0.13869035,
0.1160511 , 0.1160511 , 0.1160511 , 0.1160511 , 0.09729602,
0.09729602, 0.09729602, 0.09729602, 0.08185673, 0.08185673,
0.08185673, 0.08185673, 0.06923142, 0.06923142, 0.06923142,
0.06923142, 0.05903707, 0.05903707, 0.05903707, 0.05903707,
0.05090512, 0.05090512, 0.05090512, 0.05090512, 0.0445306 ,
0.0445306 , 0.0445306 , 0.0445306 , 0.03962367, 0.03962367,
0.03962367, 0.03962367, 0.03609122, 0.03609122, 0.03609122,
0.03609122, 0.03344546, 0.03344546, 0.03344546, 0.03344546,
0.03215668, 0.03215668, 0.03215668, 0.03215668, 0.03127163,
0.03127163, 0.03127163, 0.03127163, 0.03127163, 0.03127163,
0.03127163, 0.03127163, 0.03215668, 0.03215668, 0.03215668,
0.03215668, 0.03344546, 0.03344546, 0.03344546, 0.03344546,
0.03609122, 0.03609122, 0.03609122, 0.03609122, 0.03962367,
0.03962367, 0.03962367, 0.03962367, 0.0445306 , 0.0445306 ,
0.0445306 , 0.0445306 , 0.05090512, 0.05090512, 0.05090512,
0.05090512, 0.05903707, 0.05903707, 0.05903707, 0.05903707,
0.06923142, 0.06923142, 0.06923142, 0.06923142, 0.08185673,
0.08185673, 0.08185673, 0.08185673, 0.09729602, 0.09729602,
0.09729602, 0.09729602, 0.1160511 , 0.1160511 , 0.1160511 ,
0.1160511 , 0.13869035, 0.13869035, 0.13869035, 0.13869035,
0.1658123 , 0.1658123 , 0.1658123 , 0.1658123 , 0.19803116,
0.19803116, 0.19803116, 0.19803116, 0.23587891, 0.23587891,
0.23587891, 0.23587891, 0.27968514, 0.27968514, 0.27968514,
0.27968514, 0.32957765, 0.32957765, 0.32957765, 0.32957765,
0.38544657, 0.38544657, 0.38544657, 0.38544657, 0.44694843,
0.44694843, 0.44694843, 0.44694843, 0.51355991, 0.51355991,
0.51355991, 0.51355991, 0.58464756, 0.58464756, 0.58464756,
0.58464756, 0.65912321, 0.65912321, 0.65912321, 0.65912321,
0.73271464, 0.73271464, 0.73271464, 0.73271464, 0.8006496 ,
0.8006496 , 0.8006496 , 0.8006496 , 0.85929998, 0.85929998,
0.85929998, 0.85929998, 0.90647287, 0.90647287, 0.90647287,
0.90647287, 0.94169868, 0.94169868, 0.94169868, 0.94169868,
0.9660057 , 0.9660057 , 0.9660057 , 0.9660057 , 0.98152705,
0.98152705, 0.98152705, 0.98152705, 0.99045329, 0.99045329,
0.99045329, 0.99045329, 0.99605813, 0.99605813, 0.99605813]), 'vx': array([-1.99705244, -1.99705244, -1.99705244, -1.99705244, -1.99285175,
-1.99285175, -1.99285175, -1.99285175, -1.98614251, -1.98614251,
-1.98614251, -1.98614251, -1.97438827, -1.97438827, -1.97438827,
-1.97438827, -1.95573085, -1.95573085, -1.95573085, -1.95573085,
-1.92807626, -1.92807626, -1.92807626, -1.92807626, -1.88974206,
-1.88974206, -1.88974206, -1.88974206, -1.83963153, -1.83963153,
-1.83963153, -1.83963153, -1.77727471, -1.77727471, -1.77727471,
-1.77727471, -1.70416641, -1.70416641, -1.70416641, -1.70416641,
-1.62516587, -1.62516587, -1.62516587, -1.62516587, -1.5433367 ,
-1.5433367 , -1.5433367 , -1.5433367 , -1.45994065, -1.45994065,
-1.45994065, -1.45994065, -1.37539964, -1.37539964, -1.37539964,
-1.37539964, -1.28987706, -1.28987706, -1.28987706, -1.28987706,
-1.20352061, -1.20352061, -1.20352061, -1.20352061, -1.11647055,
-1.11647055, -1.11647055, -1.11647055, -1.0289871 , -1.0289871 ,
-1.0289871 , -1.0289871 , -0.94146516, -0.94146516, -0.94146516,
-0.94146516, -0.85426046, -0.85426046, -0.85426046, -0.85426046,
-0.76763292, -0.76763292, -0.76763292, -0.76763292, -0.68190616,
-0.68190616, -0.68190616, -0.68190616, -0.59754128, -0.59754128,
-0.59754128, -0.59754128, -0.51516275, -0.51516275, -0.51516275,
-0.51516275, -0.43523915, -0.43523915, -0.43523915, -0.43523915,
-0.35854904, -0.35854904, -0.35854904, -0.35854904, -0.28594979,
-0.28594979, -0.28594979, -0.28594979, -0.21898158, -0.21898158,
-0.21898158, -0.21898158, -0.1572412 , -0.1572412 , -0.1572412 ,
-0.1572412 , -0.10669413, -0.10669413, -0.10669413, -0.10669413,
-0.05702841, -0.05702841, -0.05702841, -0.05702841, -0.02113285,
-0.02113285, -0.02113285, -0.02113285, 0.02113285, 0.02113285,
0.02113285, 0.02113285, 0.05702841, 0.05702841, 0.05702841,
0.05702841, 0.10669413, 0.10669413, 0.10669413, 0.10669413,
0.1572412 , 0.1572412 , 0.1572412 , 0.1572412 , 0.21898158,
0.21898158, 0.21898158, 0.21898158, 0.28594979, 0.28594979,
0.28594979, 0.28594979, 0.35854904, 0.35854904, 0.35854904,
0.35854904, 0.43523915, 0.43523915, 0.43523915, 0.43523915,
0.51516275, 0.51516275, 0.51516275, 0.51516275, 0.59754128,
0.59754128, 0.59754128, 0.59754128, 0.68190616, 0.68190616,
0.68190616, 0.68190616, 0.76763292, 0.76763292, 0.76763292,
0.76763292, 0.85426046, 0.85426046, 0.85426046, 0.85426046,
0.94146516, 0.94146516, 0.94146516, 0.94146516, 1.0289871 ,
1.0289871 , 1.0289871 , 1.0289871 , 1.11647055, 1.11647055,
1.11647055, 1.11647055, 1.20352061, 1.20352061, 1.20352061,
1.20352061, 1.28987706, 1.28987706, 1.28987706, 1.28987706,
1.37539964, 1.37539964, 1.37539964, 1.37539964, 1.45994065,
1.45994065, 1.45994065, 1.45994065, 1.5433367 , 1.5433367 ,
1.5433367 , 1.5433367 , 1.62516587, 1.62516587, 1.62516587,
1.62516587, 1.70416641, 1.70416641, 1.70416641, 1.70416641,
1.77727471, 1.77727471, 1.77727471, 1.77727471, 1.83963153,
1.83963153, 1.83963153, 1.83963153, 1.88974206, 1.88974206,
1.88974206, 1.88974206, 1.92807626, 1.92807626, 1.92807626,
1.92807626, 1.95573085, 1.95573085, 1.95573085, 1.95573085,
1.97438827, 1.97438827, 1.97438827, 1.97438827, 1.98614251,
1.98614251, 1.98614251, 1.98614251, 1.99285175, 1.99285175,
1.99285175, 1.99285175, 1.99705244, 1.99705244, 1.99705244]), 'P': array([0.39779984, 0.39779984, 0.39779984, 0.39779984, 0.39468265,
0.39468265, 0.39468265, 0.39468265, 0.38974908, 0.38974908,
0.38974908, 0.38974908, 0.38123566, 0.38123566, 0.38123566,
0.38123566, 0.36805554, 0.36805554, 0.36805554, 0.36805554,
0.34924877, 0.34924877, 0.34924877, 0.34924877, 0.324561 ,
0.324561 , 0.324561 , 0.324561 , 0.29457279, 0.29457279,
0.29457279, 0.29457279, 0.26045519, 0.26045519, 0.26045519,
0.26045519, 0.22427528, 0.22427528, 0.22427528, 0.22427528,
0.19041118, 0.19041118, 0.19041118, 0.19041118, 0.16032999,
0.16032999, 0.16032999, 0.16032999, 0.13417526, 0.13417526,
0.13417526, 0.13417526, 0.11173388, 0.11173388, 0.11173388,
0.11173388, 0.09267875, 0.09267875, 0.09267875, 0.09267875,
0.07665006, 0.07665006, 0.07665006, 0.07665006, 0.06328669,
0.06328669, 0.06328669, 0.06328669, 0.05224142, 0.05224142,
0.05224142, 0.05224142, 0.04318826, 0.04318826, 0.04318826,
0.04318826, 0.0358055 , 0.0358055 , 0.0358055 , 0.0358055 ,
0.02980072, 0.02980072, 0.02980072, 0.02980072, 0.02492949,
0.02492949, 0.02492949, 0.02492949, 0.02098449, 0.02098449,
0.02098449, 0.02098449, 0.01779138, 0.01779138, 0.01779138,
0.01779138, 0.01522133, 0.01522133, 0.01522133, 0.01522133,
0.01316322, 0.01316322, 0.01316322, 0.01316322, 0.01153318,
0.01153318, 0.01153318, 0.01153318, 0.01025378, 0.01025378,
0.01025378, 0.01025378, 0.00931797, 0.00931797, 0.00931797,
0.00931797, 0.00857471, 0.00857471, 0.00857471, 0.00857471,
0.00821961, 0.00821961, 0.00821961, 0.00821961, 0.00793821,
0.00793821, 0.00793821, 0.00793821, 0.00793821, 0.00793821,
0.00793821, 0.00793821, 0.00821961, 0.00821961, 0.00821961,
0.00821961, 0.00857471, 0.00857471, 0.00857471, 0.00857471,
0.00931797, 0.00931797, 0.00931797, 0.00931797, 0.01025378,
0.01025378, 0.01025378, 0.01025378, 0.01153318, 0.01153318,
0.01153318, 0.01153318, 0.01316322, 0.01316322, 0.01316322,
0.01316322, 0.01522133, 0.01522133, 0.01522133, 0.01522133,
0.01779138, 0.01779138, 0.01779138, 0.01779138, 0.02098449,
0.02098449, 0.02098449, 0.02098449, 0.02492949, 0.02492949,
0.02492949, 0.02492949, 0.02980072, 0.02980072, 0.02980072,
0.02980072, 0.0358055 , 0.0358055 , 0.0358055 , 0.0358055 ,
0.04318826, 0.04318826, 0.04318826, 0.04318826, 0.05224142,
0.05224142, 0.05224142, 0.05224142, 0.06328669, 0.06328669,
0.06328669, 0.06328669, 0.07665006, 0.07665006, 0.07665006,
0.07665006, 0.09267875, 0.09267875, 0.09267875, 0.09267875,
0.11173388, 0.11173388, 0.11173388, 0.11173388, 0.13417526,
0.13417526, 0.13417526, 0.13417526, 0.16032999, 0.16032999,
0.16032999, 0.16032999, 0.19041118, 0.19041118, 0.19041118,
0.19041118, 0.22427528, 0.22427528, 0.22427528, 0.22427528,
0.26045519, 0.26045519, 0.26045519, 0.26045519, 0.29457279,
0.29457279, 0.29457279, 0.29457279, 0.324561 , 0.324561 ,
0.324561 , 0.324561 , 0.34924877, 0.34924877, 0.34924877,
0.34924877, 0.36805554, 0.36805554, 0.36805554, 0.36805554,
0.38123566, 0.38123566, 0.38123566, 0.38123566, 0.38974908,
0.38974908, 0.38974908, 0.38974908, 0.39468265, 0.39468265,
0.39468265, 0.39468265, 0.39779984, 0.39779984, 0.39779984])}], 'minmod_hllc': [{'rho': array([0.99615448, 0.99615448, 0.99615448, 0.99615448, 0.99067376,
0.99067376, 0.99067376, 0.99067376, 0.98178812, 0.98178812,
0.98178812, 0.98178812, 0.96631722, 0.96631722, 0.96631722,
0.96631722, 0.94200777, 0.94200777, 0.94200777, 0.94200777,
0.90673392, 0.90673392, 0.90673392, 0.90673392, 0.85947908,
0.85947908, 0.85947908, 0.85947908, 0.80074229, 0.80074229,
0.80074229, 0.80074229, 0.73273792, 0.73273792, 0.73273792,
0.73273792, 0.65910051, 0.65910051, 0.65910051, 0.65910051,
0.58453712, 0.58453712, 0.58453712, 0.58453712, 0.51341489,
0.51341489, 0.51341489, 0.51341489, 0.44678137, 0.44678137,
0.44678137, 0.44678137, 0.38526945, 0.38526945, 0.38526945,
0.38526945, 0.32938852, 0.32938852, 0.32938852, 0.32938852,
0.27948578, 0.27948578, 0.27948578, 0.27948578, 0.23567556,
0.23567556, 0.23567556, 0.23567556, 0.19783362, 0.19783362,
0.19783362, 0.19783362, 0.16563022, 0.16563022, 0.16563022,
0.16563022, 0.13852619, 0.13852619, 0.13852619, 0.13852619,
0.11591599, 0.11591599, 0.11591599, 0.11591599, 0.09720849,
0.09720849, 0.09720849, 0.09720849, 0.08184086, 0.08184086,
0.08184086, 0.08184086, 0.06929484, 0.06929484, 0.06929484,
0.06929484, 0.05915203, 0.05915203, 0.05915203, 0.05915203,
0.05103646, 0.05103646, 0.05103646, 0.05103646, 0.04464094,
0.04464094, 0.04464094, 0.04464094, 0.03968772, 0.03968772,
0.03968772, 0.03968772, 0.03610206, 0.03610206, 0.03610206,
0.03610206, 0.03336904, 0.03336904, 0.03336904, 0.03336904,
0.03198975, 0.03198975, 0.03198975, 0.03198975, 0.03106627,
0.03106627, 0.03106627, 0.03106627, 0.03106627, 0.03106627,
0.03106627, 0.03106627, 0.03198975, 0.03198975, 0.03198975,
0.03198975, 0.03336904, 0.03336904, 0.03336904, 0.03336904,
0.03610206, 0.03610206, 0.03610206, 0.03610206, 0.03968772,
0.03968772, 0.03968772, 0.03968772, 0.04464094, 0.04464094,
0.04464094, 0.04464094, 0.05103646, 0.05103646, 0.05103646,
0.05103646, 0.05915203, 0.05915203, 0.05915203, 0.05915203,
0.06929484, 0.06929484, 0.06929484, 0.06929484, 0.08184086,
0.08184086, 0.08184086, 0.08184086, 0.09720849, 0.09720849,
0.09720849, 0.09720849, 0.11591599, 0.11591599, 0.11591599,
0.11591599, 0.13852619, 0.13852619, 0.13852619, 0.13852619,
0.16563022, 0.16563022, 0.16563022, 0.16563022, 0.19783362,
0.19783362, 0.19783362, 0.19783362, 0.23567556, 0.23567556,
0.23567556, 0.23567556, 0.27948578, 0.27948578, 0.27948578,
0.27948578, 0.32938852, 0.32938852, 0.32938852, 0.32938852,
0.38526945, 0.38526945, 0.38526945, 0.38526945, 0.44678137,
0.44678137, 0.44678137, 0.44678137, 0.51341489, 0.51341489,
0.51341489, 0.51341489, 0.58453712, 0.58453712, 0.58453712,
0.58453712, 0.65910051, 0.65910051, 0.65910051, 0.65910051,
0.73273792, 0.73273792, 0.73273792, 0.73273792, 0.80074229,
0.80074229, 0.80074229, 0.80074229, 0.85947908, 0.85947908,
0.85947908, 0.85947908, 0.90673392, 0.90673392, 0.90673392,
0.90673392, 0.94200777, 0.94200777, 0.94200777, 0.94200777,
0.96631722, 0.96631722, 0.96631722, 0.96631722, 0.98178812,
0.98178812, 0.98178812, 0.98178812, 0.99067376, 0.99067376,
0.99067376, 0.99067376, 0.99615448, 0.99615448, 0.99615448]), 'vx': array([-1.9971243 , -1.9971243 , -1.9971243 , -1.9971243 , -1.99301667,
-1.99301667, -1.99301667, -1.99301667, -1.98633771, -1.98633771,
-1.98633771, -1.98633771, -1.97462189, -1.97462189, -1.97462189,
-1.97462189, -1.95596274, -1.95596274, -1.95596274, -1.95596274,
-1.9282702 , -1.9282702 , -1.9282702 , -1.9282702 , -1.88986881,
-1.88986881, -1.88986881, -1.88986881, -1.83968895, -1.83968895,
-1.83968895, -1.83968895, -1.77729068, -1.77729068, -1.77729068,
-1.77729068, -1.70408962, -1.70408962, -1.70408962, -1.70408962,
-1.62490657, -1.62490657, -1.62490657, -1.62490657, -1.54288253,
-1.54288253, -1.54288253, -1.54288253, -1.45929744, -1.45929744,
-1.45929744, -1.45929744, -1.37460301, -1.37460301, -1.37460301,
-1.37460301, -1.28898371, -1.28898371, -1.28898371, -1.28898371,
-1.20255159, -1.20255159, -1.20255159, -1.20255159, -1.11547576,
-1.11547576, -1.11547576, -1.11547576, -1.02801532, -1.02801532,
-1.02801532, -1.02801532, -0.94055911, -0.94055911, -0.94055911,
-0.94055911, -0.85344532, -0.85344532, -0.85344532, -0.85344532,
-0.76692431, -0.76692431, -0.76692431, -0.76692431, -0.68132058,
-0.68132058, -0.68132058, -0.68132058, -0.59708218, -0.59708218,
-0.59708218, -0.59708218, -0.51482203, -0.51482203, -0.51482203,
-0.51482203, -0.43501962, -0.43501962, -0.43501962, -0.43501962,
-0.35845092, -0.35845092, -0.35845092, -0.35845092, -0.28602542,
-0.28602542, -0.28602542, -0.28602542, -0.21921856, -0.21921856,
-0.21921856, -0.21921856, -0.15742456, -0.15742456, -0.15742456,
-0.15742456, -0.10710953, -0.10710953, -0.10710953, -0.10710953,
-0.05755075, -0.05755075, -0.05755075, -0.05755075, -0.02124077,
-0.02124077, -0.02124077, -0.02124077, 0.02124077, 0.02124077,
0.02124077, 0.02124077, 0.05755075, 0.05755075, 0.05755075,
0.05755075, 0.10710953, 0.10710953, 0.10710953, 0.10710953,
0.15742456, 0.15742456, 0.15742456, 0.15742456, 0.21921856,
0.21921856, 0.21921856, 0.21921856, 0.28602542, 0.28602542,
0.28602542, 0.28602542, 0.35845092, 0.35845092, 0.35845092,
0.35845092, 0.43501962, 0.43501962, 0.43501962, 0.43501962,
0.51482203, 0.51482203, 0.51482203, 0.51482203, 0.59708218,
0.59708218, 0.59708218, 0.59708218, 0.68132058, 0.68132058,
0.68132058, 0.68132058, 0.76692431, 0.76692431, 0.76692431,
0.76692431, 0.85344532, 0.85344532, 0.85344532, 0.85344532,
0.94055911, 0.94055911, 0.94055911, 0.94055911, 1.02801532,
1.02801532, 1.02801532, 1.02801532, 1.11547576, 1.11547576,
1.11547576, 1.11547576, 1.20255159, 1.20255159, 1.20255159,
1.20255159, 1.28898371, 1.28898371, 1.28898371, 1.28898371,
1.37460301, 1.37460301, 1.37460301, 1.37460301, 1.45929744,
1.45929744, 1.45929744, 1.45929744, 1.54288253, 1.54288253,
1.54288253, 1.54288253, 1.62490657, 1.62490657, 1.62490657,
1.62490657, 1.70408962, 1.70408962, 1.70408962, 1.70408962,
1.77729068, 1.77729068, 1.77729068, 1.77729068, 1.83968895,
1.83968895, 1.83968895, 1.83968895, 1.88986881, 1.88986881,
1.88986881, 1.88986881, 1.9282702 , 1.9282702 , 1.9282702 ,
1.9282702 , 1.95596274, 1.95596274, 1.95596274, 1.95596274,
1.97462189, 1.97462189, 1.97462189, 1.97462189, 1.98633771,
1.98633771, 1.98633771, 1.98633771, 1.99301667, 1.99301667,
1.99301667, 1.99301667, 1.9971243 , 1.9971243 , 1.9971243 ]), 'P': array([0.39785335, 0.39785335, 0.39785335, 0.39785335, 0.39480468,
0.39480468, 0.39480468, 0.39480468, 0.38989202, 0.38989202,
0.38989202, 0.38989202, 0.38140375, 0.38140375, 0.38140375,
0.38140375, 0.36821799, 0.36821799, 0.36821799, 0.36821799,
0.34937986, 0.34937986, 0.34937986, 0.34937986, 0.32464373,
0.32464373, 0.32464373, 0.32464373, 0.29461246, 0.29461246,
0.29461246, 0.29461246, 0.26049006, 0.26049006, 0.26049006,
0.26049006, 0.22426407, 0.22426407, 0.22426407, 0.22426407,
0.19032737, 0.19032737, 0.19032737, 0.19032737, 0.16017926,
0.16017926, 0.16017926, 0.16017926, 0.13398511, 0.13398511,
0.13398511, 0.13398511, 0.11152626, 0.11152626, 0.11152626,
0.11152626, 0.09246986, 0.09246986, 0.09246986, 0.09246986,
0.07645237, 0.07645237, 0.07645237, 0.07645237, 0.06310898,
0.06310898, 0.06310898, 0.06310898, 0.05208913, 0.05208913,
0.05208913, 0.05208913, 0.04306339, 0.04306339, 0.04306339,
0.04306339, 0.03570472, 0.03570472, 0.03570472, 0.03570472,
0.02972125, 0.02972125, 0.02972125, 0.02972125, 0.02486829,
0.02486829, 0.02486829, 0.02486829, 0.02093881, 0.02093881,
0.02093881, 0.02093881, 0.01775854, 0.01775854, 0.01775854,
0.01775854, 0.0151983 , 0.0151983 , 0.0151983 , 0.0151983 ,
0.01314835, 0.01314835, 0.01314835, 0.01314835, 0.01152438,
0.01152438, 0.01152438, 0.01152438, 0.01025172, 0.01025172,
0.01025172, 0.01025172, 0.00932748, 0.00932748, 0.00932748,
0.00932748, 0.00858716, 0.00858716, 0.00858716, 0.00858716,
0.00823426, 0.00823426, 0.00823426, 0.00823426, 0.00795945,
0.00795945, 0.00795945, 0.00795945, 0.00795945, 0.00795945,
0.00795945, 0.00795945, 0.00823426, 0.00823426, 0.00823426,
0.00823426, 0.00858716, 0.00858716, 0.00858716, 0.00858716,
0.00932748, 0.00932748, 0.00932748, 0.00932748, 0.01025172,
0.01025172, 0.01025172, 0.01025172, 0.01152438, 0.01152438,
0.01152438, 0.01152438, 0.01314835, 0.01314835, 0.01314835,
0.01314835, 0.0151983 , 0.0151983 , 0.0151983 , 0.0151983 ,
0.01775854, 0.01775854, 0.01775854, 0.01775854, 0.02093881,
0.02093881, 0.02093881, 0.02093881, 0.02486829, 0.02486829,
0.02486829, 0.02486829, 0.02972125, 0.02972125, 0.02972125,
0.02972125, 0.03570472, 0.03570472, 0.03570472, 0.03570472,
0.04306339, 0.04306339, 0.04306339, 0.04306339, 0.05208913,
0.05208913, 0.05208913, 0.05208913, 0.06310898, 0.06310898,
0.06310898, 0.06310898, 0.07645237, 0.07645237, 0.07645237,
0.07645237, 0.09246986, 0.09246986, 0.09246986, 0.09246986,
0.11152626, 0.11152626, 0.11152626, 0.11152626, 0.13398511,
0.13398511, 0.13398511, 0.13398511, 0.16017926, 0.16017926,
0.16017926, 0.16017926, 0.19032737, 0.19032737, 0.19032737,
0.19032737, 0.22426407, 0.22426407, 0.22426407, 0.22426407,
0.26049006, 0.26049006, 0.26049006, 0.26049006, 0.29461246,
0.29461246, 0.29461246, 0.29461246, 0.32464373, 0.32464373,
0.32464373, 0.32464373, 0.34937986, 0.34937986, 0.34937986,
0.34937986, 0.36821799, 0.36821799, 0.36821799, 0.36821799,
0.38140375, 0.38140375, 0.38140375, 0.38140375, 0.38989202,
0.38989202, 0.38989202, 0.38989202, 0.39480468, 0.39480468,
0.39480468, 0.39480468, 0.39785335, 0.39785335, 0.39785335])}]}
minmod_hll
{'none_hll': [{'rho': array([0.96419618, 0.96419618, 0.96419618, 0.96419618, 0.94856345,
0.94856345, 0.94856345, 0.94856345, 0.92846989, 0.92846989,
0.92846989, 0.92846989, 0.90350094, 0.90350094, 0.90350094,
0.90350094, 0.87342902, 0.87342902, 0.87342902, 0.87342902,
0.83824081, 0.83824081, 0.83824081, 0.83824081, 0.79814653,
0.79814653, 0.79814653, 0.79814653, 0.75357317, 0.75357317,
0.75357317, 0.75357317, 0.70514458, 0.70514458, 0.70514458,
0.70514458, 0.65365111, 0.65365111, 0.65365111, 0.65365111,
0.60001104, 0.60001104, 0.60001104, 0.60001104, 0.54522543,
0.54522543, 0.54522543, 0.54522543, 0.49032848, 0.49032848,
0.49032848, 0.49032848, 0.43633611, 0.43633611, 0.43633611,
0.43633611, 0.38419602, 0.38419602, 0.38419602, 0.38419602,
0.33474317, 0.33474317, 0.33474317, 0.33474317, 0.28866399,
0.28866399, 0.28866399, 0.28866399, 0.24647248, 0.24647248,
0.24647248, 0.24647248, 0.20849936, 0.20849936, 0.20849936,
0.20849936, 0.17489435, 0.17489435, 0.17489435, 0.17489435,
0.14563973, 0.14563973, 0.14563973, 0.14563973, 0.12057143,
0.12057143, 0.12057143, 0.12057143, 0.09940075, 0.09940075,
0.09940075, 0.09940075, 0.08171926, 0.08171926, 0.08171926,
0.08171926, 0.06719973, 0.06719973, 0.06719973, 0.06719973,
0.05580633, 0.05580633, 0.05580633, 0.05580633, 0.04708329,
0.04708329, 0.04708329, 0.04708329, 0.04053564, 0.04053564,
0.04053564, 0.04053564, 0.03574567, 0.03574567, 0.03574567,
0.03574567, 0.03245842, 0.03245842, 0.03245842, 0.03245842,
0.03045782, 0.03045782, 0.03045782, 0.03045782, 0.02952462,
0.02952462, 0.02952462, 0.02952462, 0.02952462, 0.02952462,
0.02952462, 0.02952462, 0.03045782, 0.03045782, 0.03045782,
0.03045782, 0.03245842, 0.03245842, 0.03245842, 0.03245842,
0.03574567, 0.03574567, 0.03574567, 0.03574567, 0.04053564,
0.04053564, 0.04053564, 0.04053564, 0.04708329, 0.04708329,
0.04708329, 0.04708329, 0.05580633, 0.05580633, 0.05580633,
0.05580633, 0.06719973, 0.06719973, 0.06719973, 0.06719973,
0.08171926, 0.08171926, 0.08171926, 0.08171926, 0.09940075,
0.09940075, 0.09940075, 0.09940075, 0.12057143, 0.12057143,
0.12057143, 0.12057143, 0.14563973, 0.14563973, 0.14563973,
0.14563973, 0.17489435, 0.17489435, 0.17489435, 0.17489435,
0.20849936, 0.20849936, 0.20849936, 0.20849936, 0.24647248,
0.24647248, 0.24647248, 0.24647248, 0.28866399, 0.28866399,
0.28866399, 0.28866399, 0.33474317, 0.33474317, 0.33474317,
0.33474317, 0.38419602, 0.38419602, 0.38419602, 0.38419602,
0.43633611, 0.43633611, 0.43633611, 0.43633611, 0.49032848,
0.49032848, 0.49032848, 0.49032848, 0.54522543, 0.54522543,
0.54522543, 0.54522543, 0.60001104, 0.60001104, 0.60001104,
0.60001104, 0.65365111, 0.65365111, 0.65365111, 0.65365111,
0.70514458, 0.70514458, 0.70514458, 0.70514458, 0.75357317,
0.75357317, 0.75357317, 0.75357317, 0.79814653, 0.79814653,
0.79814653, 0.79814653, 0.83824081, 0.83824081, 0.83824081,
0.83824081, 0.87342902, 0.87342902, 0.87342902, 0.87342902,
0.90350094, 0.90350094, 0.90350094, 0.90350094, 0.92846989,
0.92846989, 0.92846989, 0.92846989, 0.94856345, 0.94856345,
0.94856345, 0.94856345, 0.96419618, 0.96419618, 0.96419618]), 'vx': array([-1.9735162 , -1.9735162 , -1.9735162 , -1.9735162 , -1.96198617,
-1.96198617, -1.96198617, -1.96198617, -1.94713741, -1.94713741,
-1.94713741, -1.94713741, -1.9286006 , -1.9286006 , -1.9286006 ,
-1.9286006 , -1.90609316, -1.90609316, -1.90609316, -1.90609316,
-1.87942368, -1.87942368, -1.87942368, -1.87942368, -1.84848554,
-1.84848554, -1.84848554, -1.84848554, -1.81324337, -1.81324337,
-1.81324337, -1.81324337, -1.77371591, -1.77371591, -1.77371591,
-1.77371591, -1.72995886, -1.72995886, -1.72995886, -1.72995886,
-1.68204971, -1.68204971, -1.68204971, -1.68204971, -1.63007606,
-1.63007606, -1.63007606, -1.63007606, -1.57412791, -1.57412791,
-1.57412791, -1.57412791, -1.51429382, -1.51429382, -1.51429382,
-1.51429382, -1.45066104, -1.45066104, -1.45066104, -1.45066104,
-1.38331937, -1.38331937, -1.38331937, -1.38331937, -1.31236896,
-1.31236896, -1.31236896, -1.31236896, -1.23793269, -1.23793269,
-1.23793269, -1.23793269, -1.16017364, -1.16017364, -1.16017364,
-1.16017364, -1.0793189 , -1.0793189 , -1.0793189 , -1.0793189 ,
-0.99569027, -0.99569027, -0.99569027, -0.99569027, -0.90974126,
-0.90974126, -0.90974126, -0.90974126, -0.82209689, -0.82209689,
-0.82209689, -0.82209689, -0.73357782, -0.73357782, -0.73357782,
-0.73357782, -0.64515024, -0.64515024, -0.64515024, -0.64515024,
-0.55811153, -0.55811153, -0.55811153, -0.55811153, -0.47333577,
-0.47333577, -0.47333577, -0.47333577, -0.39110478, -0.39110478,
-0.39110478, -0.39110478, -0.31048349, -0.31048349, -0.31048349,
-0.31048349, -0.22788052, -0.22788052, -0.22788052, -0.22788052,
-0.14005389, -0.14005389, -0.14005389, -0.14005389, -0.04732024,
-0.04732024, -0.04732024, -0.04732024, 0.04732024, 0.04732024,
0.04732024, 0.04732024, 0.14005389, 0.14005389, 0.14005389,
0.14005389, 0.22788052, 0.22788052, 0.22788052, 0.22788052,
0.31048349, 0.31048349, 0.31048349, 0.31048349, 0.39110478,
0.39110478, 0.39110478, 0.39110478, 0.47333577, 0.47333577,
0.47333577, 0.47333577, 0.55811153, 0.55811153, 0.55811153,
0.55811153, 0.64515024, 0.64515024, 0.64515024, 0.64515024,
0.73357782, 0.73357782, 0.73357782, 0.73357782, 0.82209689,
0.82209689, 0.82209689, 0.82209689, 0.90974126, 0.90974126,
0.90974126, 0.90974126, 0.99569027, 0.99569027, 0.99569027,
0.99569027, 1.0793189 , 1.0793189 , 1.0793189 , 1.0793189 ,
1.16017364, 1.16017364, 1.16017364, 1.16017364, 1.23793269,
1.23793269, 1.23793269, 1.23793269, 1.31236896, 1.31236896,
1.31236896, 1.31236896, 1.38331937, 1.38331937, 1.38331937,
1.38331937, 1.45066104, 1.45066104, 1.45066104, 1.45066104,
1.51429382, 1.51429382, 1.51429382, 1.51429382, 1.57412791,
1.57412791, 1.57412791, 1.57412791, 1.63007606, 1.63007606,
1.63007606, 1.63007606, 1.68204971, 1.68204971, 1.68204971,
1.68204971, 1.72995886, 1.72995886, 1.72995886, 1.72995886,
1.77371591, 1.77371591, 1.77371591, 1.77371591, 1.81324337,
1.81324337, 1.81324337, 1.81324337, 1.84848554, 1.84848554,
1.84848554, 1.84848554, 1.87942368, 1.87942368, 1.87942368,
1.87942368, 1.90609316, 1.90609316, 1.90609316, 1.90609316,
1.9286006 , 1.9286006 , 1.9286006 , 1.9286006 , 1.94713741,
1.94713741, 1.94713741, 1.94713741, 1.96198617, 1.96198617,
1.96198617, 1.96198617, 1.9735162 , 1.9735162 , 1.9735162 ]), 'P': array([0.38054351, 0.38054351, 0.38054351, 0.38054351, 0.37230539,
0.37230539, 0.37230539, 0.37230539, 0.36190457, 0.36190457,
0.36190457, 0.36190457, 0.34924812, 0.34924812, 0.34924812,
0.34924812, 0.33436459, 0.33436459, 0.33436459, 0.33436459,
0.31740499, 0.31740499, 0.31740499, 0.31740499, 0.29862981,
0.29862981, 0.29862981, 0.29862981, 0.27838616, 0.27838616,
0.27838616, 0.27838616, 0.25707978, 0.25707978, 0.25707978,
0.25707978, 0.23514605, 0.23514605, 0.23514605, 0.23514605,
0.21302338, 0.21302338, 0.21302338, 0.21302338, 0.19113058,
0.19113058, 0.19113058, 0.19113058, 0.169849 , 0.169849 ,
0.169849 , 0.169849 , 0.14950942, 0.14950942, 0.14950942,
0.14950942, 0.13038346, 0.13038346, 0.13038346, 0.13038346,
0.11267901, 0.11267901, 0.11267901, 0.11267901, 0.09653925,
0.09653925, 0.09653925, 0.09653925, 0.0820449 , 0.0820449 ,
0.0820449 , 0.0820449 , 0.06921912, 0.06921912, 0.06921912,
0.06921912, 0.05803452, 0.05803452, 0.05803452, 0.05803452,
0.04842177, 0.04842177, 0.04842177, 0.04842177, 0.04027886,
0.04027886, 0.04027886, 0.04027886, 0.03348044, 0.03348044,
0.03348044, 0.03348044, 0.02788644, 0.02788644, 0.02788644,
0.02788644, 0.02336489, 0.02336489, 0.02336489, 0.02336489,
0.01978647, 0.01978647, 0.01978647, 0.01978647, 0.01698927,
0.01698927, 0.01698927, 0.01698927, 0.0148221 , 0.0148221 ,
0.0148221 , 0.0148221 , 0.01317229, 0.01317229, 0.01317229,
0.01317229, 0.01200219, 0.01200219, 0.01200219, 0.01200219,
0.01127833, 0.01127833, 0.01127833, 0.01127833, 0.010939 ,
0.010939 , 0.010939 , 0.010939 , 0.010939 , 0.010939 ,
0.010939 , 0.010939 , 0.01127833, 0.01127833, 0.01127833,
0.01127833, 0.01200219, 0.01200219, 0.01200219, 0.01200219,
0.01317229, 0.01317229, 0.01317229, 0.01317229, 0.0148221 ,
0.0148221 , 0.0148221 , 0.0148221 , 0.01698927, 0.01698927,
0.01698927, 0.01698927, 0.01978647, 0.01978647, 0.01978647,
0.01978647, 0.02336489, 0.02336489, 0.02336489, 0.02336489,
0.02788644, 0.02788644, 0.02788644, 0.02788644, 0.03348044,
0.03348044, 0.03348044, 0.03348044, 0.04027886, 0.04027886,
0.04027886, 0.04027886, 0.04842177, 0.04842177, 0.04842177,
0.04842177, 0.05803452, 0.05803452, 0.05803452, 0.05803452,
0.06921912, 0.06921912, 0.06921912, 0.06921912, 0.0820449 ,
0.0820449 , 0.0820449 , 0.0820449 , 0.09653925, 0.09653925,
0.09653925, 0.09653925, 0.11267901, 0.11267901, 0.11267901,
0.11267901, 0.13038346, 0.13038346, 0.13038346, 0.13038346,
0.14950942, 0.14950942, 0.14950942, 0.14950942, 0.169849 ,
0.169849 , 0.169849 , 0.169849 , 0.19113058, 0.19113058,
0.19113058, 0.19113058, 0.21302338, 0.21302338, 0.21302338,
0.21302338, 0.23514605, 0.23514605, 0.23514605, 0.23514605,
0.25707978, 0.25707978, 0.25707978, 0.25707978, 0.27838616,
0.27838616, 0.27838616, 0.27838616, 0.29862981, 0.29862981,
0.29862981, 0.29862981, 0.31740499, 0.31740499, 0.31740499,
0.31740499, 0.33436459, 0.33436459, 0.33436459, 0.33436459,
0.34924812, 0.34924812, 0.34924812, 0.34924812, 0.36190457,
0.36190457, 0.36190457, 0.36190457, 0.37230539, 0.37230539,
0.37230539, 0.37230539, 0.38054351, 0.38054351, 0.38054351])}], 'minmod_rusanov': [{'rho': array([0.99614735, 0.99614735, 0.99614735, 0.99614735, 0.99065373,
0.99065373, 0.99065373, 0.99065373, 0.98173362, 0.98173362,
0.98173362, 0.98173362, 0.96619952, 0.96619952, 0.96619952,
0.96619952, 0.94178474, 0.94178474, 0.94178474, 0.94178474,
0.90636121, 0.90636121, 0.90636121, 0.90636121, 0.85892578,
0.85892578, 0.85892578, 0.85892578, 0.80000719, 0.80000719,
0.80000719, 0.80000719, 0.73175814, 0.73175814, 0.73175814,
0.73175814, 0.65735851, 0.65735851, 0.65735851, 0.65735851,
0.5814799 , 0.5814799 , 0.5814799 , 0.5814799 , 0.50913244,
0.50913244, 0.50913244, 0.50913244, 0.44187546, 0.44187546,
0.44187546, 0.44187546, 0.38043377, 0.38043377, 0.38043377,
0.38043377, 0.32522717, 0.32522717, 0.32522717, 0.32522717,
0.27639962, 0.27639962, 0.27639962, 0.27639962, 0.23384215,
0.23384215, 0.23384215, 0.23384215, 0.19724397, 0.19724397,
0.19724397, 0.19724397, 0.16613532, 0.16613532, 0.16613532,
0.16613532, 0.13991202, 0.13991202, 0.13991202, 0.13991202,
0.11795793, 0.11795793, 0.11795793, 0.11795793, 0.09969251,
0.09969251, 0.09969251, 0.09969251, 0.08458559, 0.08458559,
0.08458559, 0.08458559, 0.07216739, 0.07216739, 0.07216739,
0.07216739, 0.0620324 , 0.0620324 , 0.0620324 , 0.0620324 ,
0.05383949, 0.05383949, 0.05383949, 0.05383949, 0.0473094 ,
0.0473094 , 0.0473094 , 0.0473094 , 0.04222005, 0.04222005,
0.04222005, 0.04222005, 0.03839914, 0.03839914, 0.03839914,
0.03839914, 0.03571046, 0.03571046, 0.03571046, 0.03571046,
0.03401323, 0.03401323, 0.03401323, 0.03401323, 0.03304548,
0.03304548, 0.03304548, 0.03304548, 0.03304548, 0.03304548,
0.03304548, 0.03304548, 0.03401323, 0.03401323, 0.03401323,
0.03401323, 0.03571046, 0.03571046, 0.03571046, 0.03571046,
0.03839914, 0.03839914, 0.03839914, 0.03839914, 0.04222005,
0.04222005, 0.04222005, 0.04222005, 0.0473094 , 0.0473094 ,
0.0473094 , 0.0473094 , 0.05383949, 0.05383949, 0.05383949,
0.05383949, 0.0620324 , 0.0620324 , 0.0620324 , 0.0620324 ,
0.07216739, 0.07216739, 0.07216739, 0.07216739, 0.08458559,
0.08458559, 0.08458559, 0.08458559, 0.09969251, 0.09969251,
0.09969251, 0.09969251, 0.11795793, 0.11795793, 0.11795793,
0.11795793, 0.13991202, 0.13991202, 0.13991202, 0.13991202,
0.16613532, 0.16613532, 0.16613532, 0.16613532, 0.19724397,
0.19724397, 0.19724397, 0.19724397, 0.23384215, 0.23384215,
0.23384215, 0.23384215, 0.27639962, 0.27639962, 0.27639962,
0.27639962, 0.32522717, 0.32522717, 0.32522717, 0.32522717,
0.38043377, 0.38043377, 0.38043377, 0.38043377, 0.44187546,
0.44187546, 0.44187546, 0.44187546, 0.50913244, 0.50913244,
0.50913244, 0.50913244, 0.5814799 , 0.5814799 , 0.5814799 ,
0.5814799 , 0.65735851, 0.65735851, 0.65735851, 0.65735851,
0.73175814, 0.73175814, 0.73175814, 0.73175814, 0.80000719,
0.80000719, 0.80000719, 0.80000719, 0.85892578, 0.85892578,
0.85892578, 0.85892578, 0.90636121, 0.90636121, 0.90636121,
0.90636121, 0.94178474, 0.94178474, 0.94178474, 0.94178474,
0.96619952, 0.96619952, 0.96619952, 0.96619952, 0.98173362,
0.98173362, 0.98173362, 0.98173362, 0.99065373, 0.99065373,
0.99065373, 0.99065373, 0.99614735, 0.99614735, 0.99614735]), 'vx': array([-1.99712524, -1.99712524, -1.99712524, -1.99712524, -1.99301683,
-1.99301683, -1.99301683, -1.99301683, -1.98632983, -1.98632983,
-1.98632983, -1.98632983, -1.97459054, -1.97459054, -1.97459054,
-1.97459054, -1.95587489, -1.95587489, -1.95587489, -1.95587489,
-1.92806642, -1.92806642, -1.92806642, -1.92806642, -1.88945774,
-1.88945774, -1.88945774, -1.88945774, -1.83896574, -1.83896574,
-1.83896574, -1.83896574, -1.77629984, -1.77629984, -1.77629984,
-1.77629984, -1.70309876, -1.70309876, -1.70309876, -1.70309876,
-1.62432934, -1.62432934, -1.62432934, -1.62432934, -1.54277563,
-1.54277563, -1.54277563, -1.54277563, -1.45961365, -1.45961365,
-1.45961365, -1.45961365, -1.37537434, -1.37537434, -1.37537434,
-1.37537434, -1.29033379, -1.29033379, -1.29033379, -1.29033379,
-1.20468271, -1.20468271, -1.20468271, -1.20468271, -1.11859992,
-1.11859992, -1.11859992, -1.11859992, -1.03225286, -1.03225286,
-1.03225286, -1.03225286, -0.9459788 , -0.9459788 , -0.9459788 ,
-0.9459788 , -0.86003378, -0.86003378, -0.86003378, -0.86003378,
-0.77463461, -0.77463461, -0.77463461, -0.77463461, -0.69004628,
-0.69004628, -0.69004628, -0.69004628, -0.60660948, -0.60660948,
-0.60660948, -0.60660948, -0.52476896, -0.52476896, -0.52476896,
-0.52476896, -0.44510912, -0.44510912, -0.44510912, -0.44510912,
-0.3683858 , -0.3683858 , -0.3683858 , -0.3683858 , -0.29553659,
-0.29553659, -0.29553659, -0.29553659, -0.22763465, -0.22763465,
-0.22763465, -0.22763465, -0.16573019, -0.16573019, -0.16573019,
-0.16573019, -0.11056275, -0.11056275, -0.11056275, -0.11056275,
-0.06251183, -0.06251183, -0.06251183, -0.06251183, -0.02297991,
-0.02297991, -0.02297991, -0.02297991, 0.02297991, 0.02297991,
0.02297991, 0.02297991, 0.06251183, 0.06251183, 0.06251183,
0.06251183, 0.11056275, 0.11056275, 0.11056275, 0.11056275,
0.16573019, 0.16573019, 0.16573019, 0.16573019, 0.22763465,
0.22763465, 0.22763465, 0.22763465, 0.29553659, 0.29553659,
0.29553659, 0.29553659, 0.3683858 , 0.3683858 , 0.3683858 ,
0.3683858 , 0.44510912, 0.44510912, 0.44510912, 0.44510912,
0.52476896, 0.52476896, 0.52476896, 0.52476896, 0.60660948,
0.60660948, 0.60660948, 0.60660948, 0.69004628, 0.69004628,
0.69004628, 0.69004628, 0.77463461, 0.77463461, 0.77463461,
0.77463461, 0.86003378, 0.86003378, 0.86003378, 0.86003378,
0.9459788 , 0.9459788 , 0.9459788 , 0.9459788 , 1.03225286,
1.03225286, 1.03225286, 1.03225286, 1.11859992, 1.11859992,
1.11859992, 1.11859992, 1.20468271, 1.20468271, 1.20468271,
1.20468271, 1.29033379, 1.29033379, 1.29033379, 1.29033379,
1.37537434, 1.37537434, 1.37537434, 1.37537434, 1.45961365,
1.45961365, 1.45961365, 1.45961365, 1.54277563, 1.54277563,
1.54277563, 1.54277563, 1.62432934, 1.62432934, 1.62432934,
1.62432934, 1.70309876, 1.70309876, 1.70309876, 1.70309876,
1.77629984, 1.77629984, 1.77629984, 1.77629984, 1.83896574,
1.83896574, 1.83896574, 1.83896574, 1.88945774, 1.88945774,
1.88945774, 1.88945774, 1.92806642, 1.92806642, 1.92806642,
1.92806642, 1.95587489, 1.95587489, 1.95587489, 1.95587489,
1.97459054, 1.97459054, 1.97459054, 1.97459054, 1.98632983,
1.98632983, 1.98632983, 1.98632983, 1.99301683, 1.99301683,
1.99301683, 1.99301683, 1.99712524, 1.99712524, 1.99712524]), 'P': array([0.39785562, 0.39785562, 0.39785562, 0.39785562, 0.39481056,
0.39481056, 0.39481056, 0.39481056, 0.38990389, 0.38990389,
0.38990389, 0.38990389, 0.38143134, 0.38143134, 0.38143134,
0.38143134, 0.36827824, 0.36827824, 0.36827824, 0.36827824,
0.34950039, 0.34950039, 0.34950039, 0.34950039, 0.32485552,
0.32485552, 0.32485552, 0.32485552, 0.29492305, 0.29492305,
0.29492305, 0.29492305, 0.26078134, 0.26078134, 0.26078134,
0.26078134, 0.22425273, 0.22425273, 0.22425273, 0.22425273,
0.19008214, 0.19008214, 0.19008214, 0.19008214, 0.16000639,
0.16000639, 0.16000639, 0.16000639, 0.13399062, 0.13399062,
0.13399062, 0.13399062, 0.11175209, 0.11175209, 0.11175209,
0.11175209, 0.09291845, 0.09291845, 0.09291845, 0.09291845,
0.07709678, 0.07709678, 0.07709678, 0.07709678, 0.0639034 ,
0.0639034 , 0.0639034 , 0.0639034 , 0.05297927, 0.05297927,
0.05297927, 0.05297927, 0.04399018, 0.04399018, 0.04399018,
0.04399018, 0.03661626, 0.03661626, 0.03661626, 0.03661626,
0.03058018, 0.03058018, 0.03058018, 0.03058018, 0.02564979,
0.02564979, 0.02564979, 0.02564979, 0.02163179, 0.02163179,
0.02163179, 0.02163179, 0.01836692, 0.01836692, 0.01836692,
0.01836692, 0.01572533, 0.01572533, 0.01572533, 0.01572533,
0.01360245, 0.01360245, 0.01360245, 0.01360245, 0.01191531,
0.01191531, 0.01191531, 0.01191531, 0.01059914, 0.01059914,
0.01059914, 0.01059914, 0.0096042 , 0.0096042 , 0.0096042 ,
0.0096042 , 0.00889221, 0.00889221, 0.00889221, 0.00889221,
0.00842594, 0.00842594, 0.00842594, 0.00842594, 0.00813478,
0.00813478, 0.00813478, 0.00813478, 0.00813478, 0.00813478,
0.00813478, 0.00813478, 0.00842594, 0.00842594, 0.00842594,
0.00842594, 0.00889221, 0.00889221, 0.00889221, 0.00889221,
0.0096042 , 0.0096042 , 0.0096042 , 0.0096042 , 0.01059914,
0.01059914, 0.01059914, 0.01059914, 0.01191531, 0.01191531,
0.01191531, 0.01191531, 0.01360245, 0.01360245, 0.01360245,
0.01360245, 0.01572533, 0.01572533, 0.01572533, 0.01572533,
0.01836692, 0.01836692, 0.01836692, 0.01836692, 0.02163179,
0.02163179, 0.02163179, 0.02163179, 0.02564979, 0.02564979,
0.02564979, 0.02564979, 0.03058018, 0.03058018, 0.03058018,
0.03058018, 0.03661626, 0.03661626, 0.03661626, 0.03661626,
0.04399018, 0.04399018, 0.04399018, 0.04399018, 0.05297927,
0.05297927, 0.05297927, 0.05297927, 0.0639034 , 0.0639034 ,
0.0639034 , 0.0639034 , 0.07709678, 0.07709678, 0.07709678,
0.07709678, 0.09291845, 0.09291845, 0.09291845, 0.09291845,
0.11175209, 0.11175209, 0.11175209, 0.11175209, 0.13399062,
0.13399062, 0.13399062, 0.13399062, 0.16000639, 0.16000639,
0.16000639, 0.16000639, 0.19008214, 0.19008214, 0.19008214,
0.19008214, 0.22425273, 0.22425273, 0.22425273, 0.22425273,
0.26078134, 0.26078134, 0.26078134, 0.26078134, 0.29492305,
0.29492305, 0.29492305, 0.29492305, 0.32485552, 0.32485552,
0.32485552, 0.32485552, 0.34950039, 0.34950039, 0.34950039,
0.34950039, 0.36827824, 0.36827824, 0.36827824, 0.36827824,
0.38143134, 0.38143134, 0.38143134, 0.38143134, 0.38990389,
0.38990389, 0.38990389, 0.38990389, 0.39481056, 0.39481056,
0.39481056, 0.39481056, 0.39785562, 0.39785562, 0.39785562])}], 'minmod_hll': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2.]), 'P': array([0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99839187, 0.99839187, 0.99839187, 0.99839187,
0.92194491, 0.92194491, 0.92194491, 0.92194491, 0.59966323,
0.59966323, 0.59966323, 0.59966323, 0.59966323, 0.59966323,
0.59966323, 0.59966323, 0.92194491, 0.92194491, 0.92194491,
0.92194491, 0.99839187, 0.99839187, 0.99839187, 0.99839187,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99942977, -1.99942977, -1.99942977, -1.99942977,
-1.97190163, -1.97190163, -1.97190163, -1.97190163, -1.54331037,
-1.54331037, -1.54331037, -1.54331037, 1.54331037, 1.54331037,
1.54331037, 1.54331037, 1.97190163, 1.97190163, 1.97190163,
1.97190163, 1.99942977, 1.99942977, 1.99942977, 1.99942977,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39967398, 0.39967398, 0.39967398, 0.39967398,
0.38830121, 0.38830121, 0.38830121, 0.38830121, 0.35833291,
0.35833291, 0.35833291, 0.35833291, 0.35833291, 0.35833291,
0.35833291, 0.35833291, 0.38830121, 0.38830121, 0.38830121,
0.38830121, 0.39967398, 0.39967398, 0.39967398, 0.39967398,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999879,
0.99999879, 0.99999879, 0.99999879, 0.99988772, 0.99988772,
0.99988772, 0.99988772, 0.99637366, 0.99637366, 0.99637366,
0.99637366, 0.95162962, 0.95162962, 0.95162962, 0.95162962,
0.69843543, 0.69843543, 0.69843543, 0.69843543, 0.39367478,
0.39367478, 0.39367478, 0.39367478, 0.39367478, 0.39367478,
0.39367478, 0.39367478, 0.69843543, 0.69843543, 0.69843543,
0.69843543, 0.95162962, 0.95162962, 0.95162962, 0.95162962,
0.99637366, 0.99637366, 0.99637366, 0.99637366, 0.99988772,
0.99988772, 0.99988772, 0.99988772, 0.99999879, 0.99999879,
0.99999879, 0.99999879, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999939,
-1.99999939, -1.99999939, -1.99999939, -1.99994887, -1.99994887,
-1.99994887, -1.99994887, -1.99849604, -1.99849604, -1.99849604,
-1.99849604, -1.98064237, -1.98064237, -1.98064237, -1.98064237,
-1.8608366 , -1.8608366 , -1.8608366 , -1.8608366 , -1.14986475,
-1.14986475, -1.14986475, -1.14986475, 1.14986475, 1.14986475,
1.14986475, 1.14986475, 1.8608366 , 1.8608366 , 1.8608366 ,
1.8608366 , 1.98064237, 1.98064237, 1.98064237, 1.98064237,
1.99849604, 1.99849604, 1.99849604, 1.99849604, 1.99994887,
1.99994887, 1.99994887, 1.99994887, 1.99999939, 1.99999939,
1.99999939, 1.99999939, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999955,
0.39999955, 0.39999955, 0.39999955, 0.39996321, 0.39996321,
0.39996321, 0.39996321, 0.39895944, 0.39895944, 0.39895944,
0.39895944, 0.38757572, 0.38757572, 0.38757572, 0.38757572,
0.3264824 , 0.3264824 , 0.3264824 , 0.3264824 , 0.25121455,
0.25121455, 0.25121455, 0.25121455, 0.25121455, 0.25121455,
0.25121455, 0.25121455, 0.3264824 , 0.3264824 , 0.3264824 ,
0.3264824 , 0.38757572, 0.38757572, 0.38757572, 0.38757572,
0.39895944, 0.39895944, 0.39895944, 0.39895944, 0.39996321,
0.39996321, 0.39996321, 0.39996321, 0.39999955, 0.39999955,
0.39999955, 0.39999955, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999985, 0.99999985, 0.99999985, 0.99999985,
0.9999922 , 0.9999922 , 0.9999922 , 0.9999922 , 0.99978709,
0.99978709, 0.99978709, 0.99978709, 0.99672413, 0.99672413,
0.99672413, 0.99672413, 0.97001852, 0.97001852, 0.97001852,
0.97001852, 0.83010116, 0.83010116, 0.83010116, 0.83010116,
0.48512429, 0.48512429, 0.48512429, 0.48512429, 0.27825278,
0.27825278, 0.27825278, 0.27825278, 0.27825278, 0.27825278,
0.27825278, 0.27825278, 0.48512429, 0.48512429, 0.48512429,
0.48512429, 0.83010116, 0.83010116, 0.83010116, 0.83010116,
0.97001852, 0.97001852, 0.97001852, 0.97001852, 0.99672413,
0.99672413, 0.99672413, 0.99672413, 0.99978709, 0.99978709,
0.99978709, 0.99978709, 0.9999922 , 0.9999922 , 0.9999922 ,
0.9999922 , 0.99999985, 0.99999985, 0.99999985, 0.99999985,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999991, -1.99999991, -1.99999991, -1.99999991,
-1.99999556, -1.99999556, -1.99999556, -1.99999556, -1.99988775,
-1.99988775, -1.99988775, -1.99988775, -1.99840276, -1.99840276,
-1.99840276, -1.99840276, -1.98627149, -1.98627149, -1.98627149,
-1.98627149, -1.92341327, -1.92341327, -1.92341327, -1.92341327,
-1.6864559 , -1.6864559 , -1.6864559 , -1.6864559 , -0.86349076,
-0.86349076, -0.86349076, -0.86349076, 0.86349076, 0.86349076,
0.86349076, 0.86349076, 1.6864559 , 1.6864559 , 1.6864559 ,
1.6864559 , 1.92341327, 1.92341327, 1.92341327, 1.92341327,
1.98627149, 1.98627149, 1.98627149, 1.98627149, 1.99840276,
1.99840276, 1.99840276, 1.99840276, 1.99988775, 1.99988775,
1.99988775, 1.99988775, 1.99999556, 1.99999556, 1.99999556,
1.99999556, 1.99999991, 1.99999991, 1.99999991, 1.99999991,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.3999967 , 0.3999967 , 0.3999967 , 0.3999967 , 0.39991705,
0.39991705, 0.39991705, 0.39991705, 0.39883435, 0.39883435,
0.39883435, 0.39883435, 0.39025049, 0.39025049, 0.39025049,
0.39025049, 0.34912384, 0.34912384, 0.34912384, 0.34912384,
0.24285654, 0.24285654, 0.24285654, 0.24285654, 0.16774659,
0.16774659, 0.16774659, 0.16774659, 0.16774659, 0.16774659,
0.16774659, 0.16774659, 0.24285654, 0.24285654, 0.24285654,
0.24285654, 0.34912384, 0.34912384, 0.34912384, 0.34912384,
0.39025049, 0.39025049, 0.39025049, 0.39025049, 0.39883435,
0.39883435, 0.39883435, 0.39883435, 0.39991705, 0.39991705,
0.39991705, 0.39991705, 0.3999967 , 0.3999967 , 0.3999967 ,
0.3999967 , 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999941, 0.99999941, 0.99999941,
0.99999941, 0.99998531, 0.99998531, 0.99998531, 0.99998531,
0.9997628 , 0.9997628 , 0.9997628 , 0.9997628 , 0.99741834,
0.99741834, 0.99741834, 0.99741834, 0.98069681, 0.98069681,
0.98069681, 0.98069681, 0.90049586, 0.90049586, 0.90049586,
0.90049586, 0.65085366, 0.65085366, 0.65085366, 0.65085366,
0.34226389, 0.34226389, 0.34226389, 0.34226389, 0.20852393,
0.20852393, 0.20852393, 0.20852393, 0.20852393, 0.20852393,
0.20852393, 0.20852393, 0.34226389, 0.34226389, 0.34226389,
0.34226389, 0.65085366, 0.65085366, 0.65085366, 0.65085366,
0.90049586, 0.90049586, 0.90049586, 0.90049586, 0.98069681,
0.98069681, 0.98069681, 0.98069681, 0.99741834, 0.99741834,
0.99741834, 0.99741834, 0.9997628 , 0.9997628 , 0.9997628 ,
0.9997628 , 0.99998531, 0.99998531, 0.99998531, 0.99998531,
0.99999941, 0.99999941, 0.99999941, 0.99999941, 0.99999999,
0.99999999, 0.99999999, 0.99999999, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999961, -1.99999961, -1.99999961,
-1.99999961, -1.99999088, -1.99999088, -1.99999088, -1.99999088,
-1.99986101, -1.99986101, -1.99986101, -1.99986101, -1.99858351,
-1.99858351, -1.99858351, -1.99858351, -1.99010498, -1.99010498,
-1.99010498, -1.99010498, -1.95122576, -1.95122576, -1.95122576,
-1.95122576, -1.82157719, -1.82157719, -1.82157719, -1.82157719,
-1.47982673, -1.47982673, -1.47982673, -1.47982673, -0.66403625,
-0.66403625, -0.66403625, -0.66403625, 0.66403625, 0.66403625,
0.66403625, 0.66403625, 1.47982673, 1.47982673, 1.47982673,
1.47982673, 1.82157719, 1.82157719, 1.82157719, 1.82157719,
1.95122576, 1.95122576, 1.95122576, 1.95122576, 1.99010498,
1.99010498, 1.99010498, 1.99010498, 1.99858351, 1.99858351,
1.99858351, 1.99858351, 1.99986101, 1.99986101, 1.99986101,
1.99986101, 1.99999088, 1.99999088, 1.99999088, 1.99999088,
1.99999961, 1.99999961, 1.99999961, 1.99999961, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999971, 0.39999971, 0.39999971,
0.39999971, 0.39999319, 0.39999319, 0.39999319, 0.39999319,
0.39989644, 0.39989644, 0.39989644, 0.39989644, 0.39894942,
0.39894942, 0.39894942, 0.39894942, 0.39274383, 0.39274383,
0.39274383, 0.39274383, 0.36543198, 0.36543198, 0.36543198,
0.36543198, 0.28497352, 0.28497352, 0.28497352, 0.28497352,
0.17296714, 0.17296714, 0.17296714, 0.17296714, 0.11464047,
0.11464047, 0.11464047, 0.11464047, 0.11464047, 0.11464047,
0.11464047, 0.11464047, 0.17296714, 0.17296714, 0.17296714,
0.17296714, 0.28497352, 0.28497352, 0.28497352, 0.28497352,
0.36543198, 0.36543198, 0.36543198, 0.36543198, 0.39274383,
0.39274383, 0.39274383, 0.39274383, 0.39894942, 0.39894942,
0.39894942, 0.39894942, 0.39989644, 0.39989644, 0.39989644,
0.39989644, 0.39999319, 0.39999319, 0.39999319, 0.39999319,
0.39999971, 0.39999971, 0.39999971, 0.39999971, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.99999887, 0.99999887,
0.99999887, 0.99999887, 0.9999814 , 0.9999814 , 0.9999814 ,
0.9999814 , 0.99977747, 0.99977747, 0.99977747, 0.99977747,
0.99804051, 0.99804051, 0.99804051, 0.99804051, 0.9872238 ,
0.9872238 , 0.9872238 , 0.9872238 , 0.93857705, 0.93857705,
0.93857705, 0.93857705, 0.78360952, 0.78360952, 0.78360952,
0.78360952, 0.47710418, 0.47710418, 0.47710418, 0.47710418,
0.25180595, 0.25180595, 0.25180595, 0.25180595, 0.1638813 ,
0.1638813 , 0.1638813 , 0.1638813 , 0.1638813 , 0.1638813 ,
0.1638813 , 0.1638813 , 0.25180595, 0.25180595, 0.25180595,
0.25180595, 0.47710418, 0.47710418, 0.47710418, 0.47710418,
0.78360952, 0.78360952, 0.78360952, 0.78360952, 0.93857705,
0.93857705, 0.93857705, 0.93857705, 0.9872238 , 0.9872238 ,
0.9872238 , 0.9872238 , 0.99804051, 0.99804051, 0.99804051,
0.99804051, 0.99977747, 0.99977747, 0.99977747, 0.99977747,
0.9999814 , 0.9999814 , 0.9999814 , 0.9999814 , 0.99999887,
0.99999887, 0.99999887, 0.99999887, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999997,
-1.99999997, -1.99999997, -1.99999997, -1.99999923, -1.99999923,
-1.99999923, -1.99999923, -1.99998776, -1.99998776, -1.99998776,
-1.99998776, -1.99985981, -1.99985981, -1.99985981, -1.99985981,
-1.99882953, -1.99882953, -1.99882953, -1.99882953, -1.99281308,
-1.99281308, -1.99281308, -1.99281308, -1.96715956, -1.96715956,
-1.96715956, -1.96715956, -1.8851839 , -1.8851839 , -1.8851839 ,
-1.8851839 , -1.67777415, -1.67777415, -1.67777415, -1.67777415,
-1.27130664, -1.27130664, -1.27130664, -1.27130664, -0.52601961,
-0.52601961, -0.52601961, -0.52601961, 0.52601961, 0.52601961,
0.52601961, 0.52601961, 1.27130664, 1.27130664, 1.27130664,
1.27130664, 1.67777415, 1.67777415, 1.67777415, 1.67777415,
1.8851839 , 1.8851839 , 1.8851839 , 1.8851839 , 1.96715956,
1.96715956, 1.96715956, 1.96715956, 1.99281308, 1.99281308,
1.99281308, 1.99281308, 1.99882953, 1.99882953, 1.99882953,
1.99882953, 1.99985981, 1.99985981, 1.99985981, 1.99985981,
1.99998776, 1.99998776, 1.99998776, 1.99998776, 1.99999923,
1.99999923, 1.99999923, 1.99999923, 1.99999997, 1.99999997,
1.99999997, 1.99999997, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.39999943, 0.39999943,
0.39999943, 0.39999943, 0.39999085, 0.39999085, 0.39999085,
0.39999085, 0.39989526, 0.39989526, 0.39989526, 0.39989526,
0.3991272 , 0.3991272 , 0.3991272 , 0.3991272 , 0.39467278,
0.39467278, 0.39467278, 0.39467278, 0.37616893, 0.37616893,
0.37616893, 0.37616893, 0.3218281 , 0.3218281 , 0.3218281 ,
0.3218281 , 0.21484827, 0.21484827, 0.21484827, 0.21484827,
0.12366433, 0.12366433, 0.12366433, 0.12366433, 0.08206119,
0.08206119, 0.08206119, 0.08206119, 0.08206119, 0.08206119,
0.08206119, 0.08206119, 0.12366433, 0.12366433, 0.12366433,
0.12366433, 0.21484827, 0.21484827, 0.21484827, 0.21484827,
0.3218281 , 0.3218281 , 0.3218281 , 0.3218281 , 0.37616893,
0.37616893, 0.37616893, 0.37616893, 0.39467278, 0.39467278,
0.39467278, 0.39467278, 0.3991272 , 0.3991272 , 0.3991272 ,
0.3991272 , 0.39989526, 0.39989526, 0.39989526, 0.39989526,
0.39999085, 0.39999085, 0.39999085, 0.39999085, 0.39999943,
0.39999943, 0.39999943, 0.39999943, 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999991, 0.99999991, 0.99999991, 0.99999991, 0.99999845,
0.99999845, 0.99999845, 0.99999845, 0.9999803 , 0.9999803 ,
0.9999803 , 0.9999803 , 0.99980675, 0.99980675, 0.99980675,
0.99980675, 0.99853052, 0.99853052, 0.99853052, 0.99853052,
0.99132631, 0.99132631, 0.99132631, 0.99132631, 0.96043963,
0.96043963, 0.96043963, 0.96043963, 0.86149689, 0.86149689,
0.86149689, 0.86149689, 0.62919887, 0.62919887, 0.62919887,
0.62919887, 0.35143864, 0.35143864, 0.35143864, 0.35143864,
0.19386562, 0.19386562, 0.19386562, 0.19386562, 0.13391812,
0.13391812, 0.13391812, 0.13391812, 0.13391812, 0.13391812,
0.13391812, 0.13391812, 0.19386562, 0.19386562, 0.19386562,
0.19386562, 0.35143864, 0.35143864, 0.35143864, 0.35143864,
0.62919887, 0.62919887, 0.62919887, 0.62919887, 0.86149689,
0.86149689, 0.86149689, 0.86149689, 0.96043963, 0.96043963,
0.96043963, 0.96043963, 0.99132631, 0.99132631, 0.99132631,
0.99132631, 0.99853052, 0.99853052, 0.99853052, 0.99853052,
0.99980675, 0.99980675, 0.99980675, 0.99980675, 0.9999803 ,
0.9999803 , 0.9999803 , 0.9999803 , 0.99999845, 0.99999845,
0.99999845, 0.99999845, 0.99999991, 0.99999991, 0.99999991,
0.99999991, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999993, -1.99999993, -1.99999993, -1.99999993, -1.99999892,
-1.99999892, -1.99999892, -1.99999892, -1.99998652, -1.99998652,
-1.99998652, -1.99998652, -1.99987201, -1.99987201, -1.99987201,
-1.99987201, -1.99906639, -1.99906639, -1.99906639, -1.99906639,
-1.99475692, -1.99475692, -1.99475692, -1.99475692, -1.97724052,
-1.97724052, -1.97724052, -1.97724052, -1.92239345, -1.92239345,
-1.92239345, -1.92239345, -1.78517312, -1.78517312, -1.78517312,
-1.78517312, -1.5113457 , -1.5113457 , -1.5113457 , -1.5113457 ,
-1.08147149, -1.08147149, -1.08147149, -1.08147149, -0.42947786,
-0.42947786, -0.42947786, -0.42947786, 0.42947786, 0.42947786,
0.42947786, 0.42947786, 1.08147149, 1.08147149, 1.08147149,
1.08147149, 1.5113457 , 1.5113457 , 1.5113457 , 1.5113457 ,
1.78517312, 1.78517312, 1.78517312, 1.78517312, 1.92239345,
1.92239345, 1.92239345, 1.92239345, 1.97724052, 1.97724052,
1.97724052, 1.97724052, 1.99475692, 1.99475692, 1.99475692,
1.99475692, 1.99906639, 1.99906639, 1.99906639, 1.99906639,
1.99987201, 1.99987201, 1.99987201, 1.99987201, 1.99998652,
1.99998652, 1.99998652, 1.99998652, 1.99999892, 1.99999892,
1.99999892, 1.99999892, 1.99999993, 1.99999993, 1.99999993,
1.99999993, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999995, 0.39999995, 0.39999995, 0.39999995, 0.39999919,
0.39999919, 0.39999919, 0.39999919, 0.39998992, 0.39998992,
0.39998992, 0.39998992, 0.39990428, 0.39990428, 0.39990428,
0.39990428, 0.39930251, 0.39930251, 0.39930251, 0.39930251,
0.3960976 , 0.3960976 , 0.3960976 , 0.3960976 , 0.38329551,
0.38329551, 0.38329551, 0.38329551, 0.34542088, 0.34542088,
0.34542088, 0.34542088, 0.26266714, 0.26266714, 0.26266714,
0.26266714, 0.1576941 , 0.1576941 , 0.1576941 , 0.1576941 ,
0.09083226, 0.09083226, 0.09083226, 0.09083226, 0.06171329,
0.06171329, 0.06171329, 0.06171329, 0.06171329, 0.06171329,
0.06171329, 0.06171329, 0.09083226, 0.09083226, 0.09083226,
0.09083226, 0.1576941 , 0.1576941 , 0.1576941 , 0.1576941 ,
0.26266714, 0.26266714, 0.26266714, 0.26266714, 0.34542088,
0.34542088, 0.34542088, 0.34542088, 0.38329551, 0.38329551,
0.38329551, 0.38329551, 0.3960976 , 0.3960976 , 0.3960976 ,
0.3960976 , 0.39930251, 0.39930251, 0.39930251, 0.39930251,
0.39990428, 0.39990428, 0.39990428, 0.39990428, 0.39998992,
0.39998992, 0.39998992, 0.39998992, 0.39999919, 0.39999919,
0.39999919, 0.39999919, 0.39999995, 0.39999995, 0.39999995,
0.39999995, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999822, 0.99999822, 0.99999822, 0.99999822, 0.99998106,
0.99998106, 0.99998106, 0.99998106, 0.99983897, 0.99983897,
0.99983897, 0.99983897, 0.99890114, 0.99890114, 0.99890114,
0.99890114, 0.99398512, 0.99398512, 0.99398512, 0.99398512,
0.97370478, 0.97370478, 0.97370478, 0.97370478, 0.90883613,
0.90883613, 0.90883613, 0.90883613, 0.75034435, 0.75034435,
0.75034435, 0.75034435, 0.47937345, 0.47937345, 0.47937345,
0.47937345, 0.26645779, 0.26645779, 0.26645779, 0.26645779,
0.15553048, 0.15553048, 0.15553048, 0.15553048, 0.11304865,
0.11304865, 0.11304865, 0.11304865, 0.11304865, 0.11304865,
0.11304865, 0.11304865, 0.15553048, 0.15553048, 0.15553048,
0.15553048, 0.26645779, 0.26645779, 0.26645779, 0.26645779,
0.47937345, 0.47937345, 0.47937345, 0.47937345, 0.75034435,
0.75034435, 0.75034435, 0.75034435, 0.90883613, 0.90883613,
0.90883613, 0.90883613, 0.97370478, 0.97370478, 0.97370478,
0.97370478, 0.99398512, 0.99398512, 0.99398512, 0.99398512,
0.99890114, 0.99890114, 0.99890114, 0.99890114, 0.99983897,
0.99983897, 0.99983897, 0.99983897, 0.99998106, 0.99998106,
0.99998106, 0.99998106, 0.99999822, 0.99999822, 0.99999822,
0.99999822, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999999, -1.99999999, -1.99999999,
-1.99999999, -1.9999999 , -1.9999999 , -1.9999999 , -1.9999999 ,
-1.99999873, -1.99999873, -1.99999873, -1.99999873, -1.99998669,
-1.99998669, -1.99998669, -1.99998669, -1.99988955, -1.99988955,
-1.99988955, -1.99988955, -1.99926998, -1.99926998, -1.99926998,
-1.99926998, -1.99616089, -1.99616089, -1.99616089, -1.99616089,
-1.98393412, -1.98393412, -1.98393412, -1.98393412, -1.94604754,
-1.94604754, -1.94604754, -1.94604754, -1.85123448, -1.85123448,
-1.85123448, -1.85123448, -1.65457416, -1.65457416, -1.65457416,
-1.65457416, -1.34314169, -1.34314169, -1.34314169, -1.34314169,
-0.91937917, -0.91937917, -0.91937917, -0.91937917, -0.3602269 ,
-0.3602269 , -0.3602269 , -0.3602269 , 0.3602269 , 0.3602269 ,
0.3602269 , 0.3602269 , 0.91937917, 0.91937917, 0.91937917,
0.91937917, 1.34314169, 1.34314169, 1.34314169, 1.34314169,
1.65457416, 1.65457416, 1.65457416, 1.65457416, 1.85123448,
1.85123448, 1.85123448, 1.85123448, 1.94604754, 1.94604754,
1.94604754, 1.94604754, 1.98393412, 1.98393412, 1.98393412,
1.98393412, 1.99616089, 1.99616089, 1.99616089, 1.99616089,
1.99926998, 1.99926998, 1.99926998, 1.99926998, 1.99988955,
1.99988955, 1.99988955, 1.99988955, 1.99998669, 1.99998669,
1.99998669, 1.99998669, 1.99999873, 1.99999873, 1.99999873,
1.99999873, 1.9999999 , 1.9999999 , 1.9999999 , 1.9999999 ,
1.99999999, 1.99999999, 1.99999999, 1.99999999, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.39999905, 0.39999905, 0.39999905, 0.39999905, 0.39999004,
0.39999004, 0.39999004, 0.39999004, 0.39991737, 0.39991737,
0.39991737, 0.39991737, 0.39945421, 0.39945421, 0.39945421,
0.39945421, 0.39713715, 0.39713715, 0.39713715, 0.39713715,
0.38813528, 0.38813528, 0.38813528, 0.38813528, 0.3613379 ,
0.3613379 , 0.3613379 , 0.3613379 , 0.30087371, 0.30087371,
0.30087371, 0.30087371, 0.20141084, 0.20141084, 0.20141084,
0.20141084, 0.11704796, 0.11704796, 0.11704796, 0.11704796,
0.06912872, 0.06912872, 0.06912872, 0.06912872, 0.04853681,
0.04853681, 0.04853681, 0.04853681, 0.04853681, 0.04853681,
0.04853681, 0.04853681, 0.06912872, 0.06912872, 0.06912872,
0.06912872, 0.11704796, 0.11704796, 0.11704796, 0.11704796,
0.20141084, 0.20141084, 0.20141084, 0.20141084, 0.30087371,
0.30087371, 0.30087371, 0.30087371, 0.3613379 , 0.3613379 ,
0.3613379 , 0.3613379 , 0.38813528, 0.38813528, 0.38813528,
0.38813528, 0.39713715, 0.39713715, 0.39713715, 0.39713715,
0.39945421, 0.39945421, 0.39945421, 0.39945421, 0.39991737,
0.39991737, 0.39991737, 0.39991737, 0.39999004, 0.39999004,
0.39999004, 0.39999004, 0.39999905, 0.39999905, 0.39999905,
0.39999905, 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999984, 0.99999984, 0.99999984,
0.99999984, 0.99999815, 0.99999815, 0.99999815, 0.99999815,
0.99998284, 0.99998284, 0.99998284, 0.99998284, 0.99986909,
0.99986909, 0.99986909, 0.99986909, 0.99917794, 0.99917794,
0.99917794, 0.99917794, 0.99575787, 0.99575787, 0.99575787,
0.99575787, 0.98208444, 0.98208444, 0.98208444, 0.98208444,
0.93845324, 0.93845324, 0.93845324, 0.93845324, 0.82880412,
0.82880412, 0.82880412, 0.82880412, 0.61348768, 0.61348768,
0.61348768, 0.61348768, 0.36614028, 0.36614028, 0.36614028,
0.36614028, 0.20903449, 0.20903449, 0.20903449, 0.20903449,
0.12920479, 0.12920479, 0.12920479, 0.12920479, 0.09800524,
0.09800524, 0.09800524, 0.09800524, 0.09800524, 0.09800524,
0.09800524, 0.09800524, 0.12920479, 0.12920479, 0.12920479,
0.12920479, 0.20903449, 0.20903449, 0.20903449, 0.20903449,
0.36614028, 0.36614028, 0.36614028, 0.36614028, 0.61348768,
0.61348768, 0.61348768, 0.61348768, 0.82880412, 0.82880412,
0.82880412, 0.82880412, 0.93845324, 0.93845324, 0.93845324,
0.93845324, 0.98208444, 0.98208444, 0.98208444, 0.98208444,
0.99575787, 0.99575787, 0.99575787, 0.99575787, 0.99917794,
0.99917794, 0.99917794, 0.99917794, 0.99986909, 0.99986909,
0.99986909, 0.99986909, 0.99998284, 0.99998284, 0.99998284,
0.99998284, 0.99999815, 0.99999815, 0.99999815, 0.99999815,
0.99999984, 0.99999984, 0.99999984, 0.99999984, 0.99999999,
0.99999999, 0.99999999, 0.99999999, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999988, -1.99999988, -1.99999988,
-1.99999988, -1.99999866, -1.99999866, -1.99999866, -1.99999866,
-1.99998772, -1.99998772, -1.99998772, -1.99998772, -1.99990797,
-1.99990797, -1.99990797, -1.99990797, -1.99943592, -1.99943592,
-1.99943592, -1.99943592, -1.99717955, -1.99717955, -1.99717955,
-1.99717955, -1.98851793, -1.98851793, -1.98851793, -1.98851793,
-1.96180903, -1.96180903, -1.96180903, -1.96180903, -1.89460091,
-1.89460091, -1.89460091, -1.89460091, -1.75267665, -1.75267665,
-1.75267665, -1.75267665, -1.51016277, -1.51016277, -1.51016277,
-1.51016277, -1.18621185, -1.18621185, -1.18621185, -1.18621185,
-0.7860659 , -0.7860659 , -0.7860659 , -0.7860659 , -0.30832397,
-0.30832397, -0.30832397, -0.30832397, 0.30832397, 0.30832397,
0.30832397, 0.30832397, 0.7860659 , 0.7860659 , 0.7860659 ,
0.7860659 , 1.18621185, 1.18621185, 1.18621185, 1.18621185,
1.51016277, 1.51016277, 1.51016277, 1.51016277, 1.75267665,
1.75267665, 1.75267665, 1.75267665, 1.89460091, 1.89460091,
1.89460091, 1.89460091, 1.96180903, 1.96180903, 1.96180903,
1.96180903, 1.98851793, 1.98851793, 1.98851793, 1.98851793,
1.99717955, 1.99717955, 1.99717955, 1.99717955, 1.99943592,
1.99943592, 1.99943592, 1.99943592, 1.99990797, 1.99990797,
1.99990797, 1.99990797, 1.99998772, 1.99998772, 1.99998772,
1.99998772, 1.99999866, 1.99999866, 1.99999866, 1.99999866,
1.99999988, 1.99999988, 1.99999988, 1.99999988, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999991, 0.39999991, 0.39999991,
0.39999991, 0.399999 , 0.399999 , 0.399999 , 0.399999 ,
0.39999081, 0.39999081, 0.39999081, 0.39999081, 0.39993114,
0.39993114, 0.39993114, 0.39993114, 0.39957814, 0.39957814,
0.39957814, 0.39957814, 0.3978946 , 0.3978946 , 0.3978946 ,
0.3978946 , 0.39148834, 0.39148834, 0.39148834, 0.39148834,
0.37229028, 0.37229028, 0.37229028, 0.37229028, 0.32749061,
0.32749061, 0.32749061, 0.32749061, 0.24595055, 0.24595055,
0.24595055, 0.24595055, 0.1521573 , 0.1521573 , 0.1521573 ,
0.1521573 , 0.08900074, 0.08900074, 0.08900074, 0.08900074,
0.05452347, 0.05452347, 0.05452347, 0.05452347, 0.03964855,
0.03964855, 0.03964855, 0.03964855, 0.03964855, 0.03964855,
0.03964855, 0.03964855, 0.05452347, 0.05452347, 0.05452347,
0.05452347, 0.08900074, 0.08900074, 0.08900074, 0.08900074,
0.1521573 , 0.1521573 , 0.1521573 , 0.1521573 , 0.24595055,
0.24595055, 0.24595055, 0.24595055, 0.32749061, 0.32749061,
0.32749061, 0.32749061, 0.37229028, 0.37229028, 0.37229028,
0.37229028, 0.39148834, 0.39148834, 0.39148834, 0.39148834,
0.3978946 , 0.3978946 , 0.3978946 , 0.3978946 , 0.39957814,
0.39957814, 0.39957814, 0.39957814, 0.39993114, 0.39993114,
0.39993114, 0.39993114, 0.39999081, 0.39999081, 0.39999081,
0.39999081, 0.399999 , 0.399999 , 0.399999 , 0.399999 ,
0.39999991, 0.39999991, 0.39999991, 0.39999991, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999982, 0.99999982,
0.99999982, 0.99999982, 0.99999821, 0.99999821, 0.99999821,
0.99999821, 0.99998506, 0.99998506, 0.99998506, 0.99998506,
0.99989526, 0.99989526, 0.99989526, 0.99989526, 0.99938413,
0.99938413, 0.99938413, 0.99938413, 0.9969681 , 0.9969681 ,
0.9969681 , 0.9969681 , 0.98755151, 0.98755151, 0.98755151,
0.98755151, 0.9575973 , 0.9575973 , 0.9575973 , 0.9575973 ,
0.88079942, 0.88079942, 0.88079942, 0.88079942, 0.72339297,
0.72339297, 0.72339297, 0.72339297, 0.48191719, 0.48191719,
0.48191719, 0.48191719, 0.28572684, 0.28572684, 0.28572684,
0.28572684, 0.16953166, 0.16953166, 0.16953166, 0.16953166,
0.11045248, 0.11045248, 0.11045248, 0.11045248, 0.08680007,
0.08680007, 0.08680007, 0.08680007, 0.08680007, 0.08680007,
0.08680007, 0.08680007, 0.11045248, 0.11045248, 0.11045248,
0.11045248, 0.16953166, 0.16953166, 0.16953166, 0.16953166,
0.28572684, 0.28572684, 0.28572684, 0.28572684, 0.48191719,
0.48191719, 0.48191719, 0.48191719, 0.72339297, 0.72339297,
0.72339297, 0.72339297, 0.88079942, 0.88079942, 0.88079942,
0.88079942, 0.9575973 , 0.9575973 , 0.9575973 , 0.9575973 ,
0.98755151, 0.98755151, 0.98755151, 0.98755151, 0.9969681 ,
0.9969681 , 0.9969681 , 0.9969681 , 0.99938413, 0.99938413,
0.99938413, 0.99938413, 0.99989526, 0.99989526, 0.99989526,
0.99989526, 0.99998506, 0.99998506, 0.99998506, 0.99998506,
0.99999821, 0.99999821, 0.99999821, 0.99999821, 0.99999982,
0.99999982, 0.99999982, 0.99999982, 0.99999998, 0.99999998,
0.99999998, 0.99999998, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.99999987, -1.99999987,
-1.99999987, -1.99999987, -1.99999869, -1.99999869, -1.99999869,
-1.99999869, -1.99998917, -1.99998917, -1.99998917, -1.99998917,
-1.99992506, -1.99992506, -1.99992506, -1.99992506, -1.99956738,
-1.99956738, -1.99956738, -1.99956738, -1.99792181, -1.99792181,
-1.99792181, -1.99792181, -1.9917193 , -1.9917193 , -1.9917193 ,
-1.9917193 , -1.97261847, -1.97261847, -1.97261847, -1.97261847,
-1.92415623, -1.92415623, -1.92415623, -1.92415623, -1.82040341,
-1.82040341, -1.82040341, -1.82040341, -1.63201167, -1.63201167,
-1.63201167, -1.63201167, -1.36651981, -1.36651981, -1.36651981,
-1.36651981, -1.04671979, -1.04671979, -1.04671979, -1.04671979,
-0.6782087 , -0.6782087 , -0.6782087 , -0.6782087 , -0.26774582,
-0.26774582, -0.26774582, -0.26774582, 0.26774582, 0.26774582,
0.26774582, 0.26774582, 0.6782087 , 0.6782087 , 0.6782087 ,
0.6782087 , 1.04671979, 1.04671979, 1.04671979, 1.04671979,
1.36651981, 1.36651981, 1.36651981, 1.36651981, 1.63201167,
1.63201167, 1.63201167, 1.63201167, 1.82040341, 1.82040341,
1.82040341, 1.82040341, 1.92415623, 1.92415623, 1.92415623,
1.92415623, 1.97261847, 1.97261847, 1.97261847, 1.97261847,
1.9917193 , 1.9917193 , 1.9917193 , 1.9917193 , 1.99792181,
1.99792181, 1.99792181, 1.99792181, 1.99956738, 1.99956738,
1.99956738, 1.99956738, 1.99992506, 1.99992506, 1.99992506,
1.99992506, 1.99998917, 1.99998917, 1.99998917, 1.99998917,
1.99999869, 1.99999869, 1.99999869, 1.99999869, 1.99999987,
1.99999987, 1.99999987, 1.99999987, 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.3999999 , 0.3999999 ,
0.3999999 , 0.3999999 , 0.39999902, 0.39999902, 0.39999902,
0.39999902, 0.39999189, 0.39999189, 0.39999189, 0.39999189,
0.39994393, 0.39994393, 0.39994393, 0.39994393, 0.3996764 ,
0.3996764 , 0.3996764 , 0.3996764 , 0.39844766, 0.39844766,
0.39844766, 0.39844766, 0.3938459 , 0.3938459 , 0.3938459 ,
0.3938459 , 0.37996407, 0.37996407, 0.37996407, 0.37996407,
0.34664308, 0.34664308, 0.34664308, 0.34664308, 0.28330954,
0.28330954, 0.28330954, 0.28330954, 0.19183256, 0.19183256,
0.19183256, 0.19183256, 0.11635494, 0.11635494, 0.11635494,
0.11635494, 0.06966734, 0.06966734, 0.06966734, 0.06966734,
0.04441951, 0.04441951, 0.04441951, 0.04441951, 0.03339871,
0.03339871, 0.03339871, 0.03339871, 0.03339871, 0.03339871,
0.03339871, 0.03339871, 0.04441951, 0.04441951, 0.04441951,
0.04441951, 0.06966734, 0.06966734, 0.06966734, 0.06966734,
0.11635494, 0.11635494, 0.11635494, 0.11635494, 0.19183256,
0.19183256, 0.19183256, 0.19183256, 0.28330954, 0.28330954,
0.28330954, 0.28330954, 0.34664308, 0.34664308, 0.34664308,
0.34664308, 0.37996407, 0.37996407, 0.37996407, 0.37996407,
0.3938459 , 0.3938459 , 0.3938459 , 0.3938459 , 0.39844766,
0.39844766, 0.39844766, 0.39844766, 0.3996764 , 0.3996764 ,
0.3996764 , 0.3996764 , 0.39994393, 0.39994393, 0.39994393,
0.39994393, 0.39999189, 0.39999189, 0.39999189, 0.39999189,
0.39999902, 0.39999902, 0.39999902, 0.39999902, 0.3999999 ,
0.3999999 , 0.3999999 , 0.3999999 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999982,
0.99999982, 0.99999982, 0.99999982, 0.99999835, 0.99999835,
0.99999835, 0.99999835, 0.99998734, 0.99998734, 0.99998734,
0.99998734, 0.99991711, 0.99991711, 0.99991711, 0.99991711,
0.99953786, 0.99953786, 0.99953786, 0.99953786, 0.99781034,
0.99781034, 0.99781034, 0.99781034, 0.99121504, 0.99121504,
0.99121504, 0.99121504, 0.97029897, 0.97029897, 0.97029897,
0.97029897, 0.91578706, 0.91578706, 0.91578706, 0.91578706,
0.80012855, 0.80012855, 0.80012855, 0.80012855, 0.60045937,
0.60045937, 0.60045937, 0.60045937, 0.37949445, 0.37949445,
0.37949445, 0.37949445, 0.22889361, 0.22889361, 0.22889361,
0.22889361, 0.14163683, 0.14163683, 0.14163683, 0.14163683,
0.09663353, 0.09663353, 0.09663353, 0.09663353, 0.07820179,
0.07820179, 0.07820179, 0.07820179, 0.07820179, 0.07820179,
0.07820179, 0.07820179, 0.09663353, 0.09663353, 0.09663353,
0.09663353, 0.14163683, 0.14163683, 0.14163683, 0.14163683,
0.22889361, 0.22889361, 0.22889361, 0.22889361, 0.37949445,
0.37949445, 0.37949445, 0.37949445, 0.60045937, 0.60045937,
0.60045937, 0.60045937, 0.80012855, 0.80012855, 0.80012855,
0.80012855, 0.91578706, 0.91578706, 0.91578706, 0.91578706,
0.97029897, 0.97029897, 0.97029897, 0.97029897, 0.99121504,
0.99121504, 0.99121504, 0.99121504, 0.99781034, 0.99781034,
0.99781034, 0.99781034, 0.99953786, 0.99953786, 0.99953786,
0.99953786, 0.99991711, 0.99991711, 0.99991711, 0.99991711,
0.99998734, 0.99998734, 0.99998734, 0.99998734, 0.99999835,
0.99999835, 0.99999835, 0.99999835, 0.99999982, 0.99999982,
0.99999982, 0.99999982, 0.99999998, 0.99999998, 0.99999998,
0.99999998, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999986,
-1.99999986, -1.99999986, -1.99999986, -1.99999879, -1.99999879,
-1.99999879, -1.99999879, -1.99999074, -1.99999074, -1.99999074,
-1.99999074, -1.99993995, -1.99993995, -1.99993995, -1.99993995,
-1.9996698 , -1.9996698 , -1.9996698 , -1.9996698 , -1.99846471,
-1.99846471, -1.99846471, -1.99846471, -1.99398645, -1.99398645,
-1.99398645, -1.99398645, -1.98018643, -1.98018643, -1.98018643,
-1.98018643, -1.94480442, -1.94480442, -1.94480442, -1.94480442,
-1.86801764, -1.86801764, -1.86801764, -1.86801764, -1.72407007,
-1.72407007, -1.72407007, -1.72407007, -1.50364278, -1.50364278,
-1.50364278, -1.50364278, -1.23217304, -1.23217304, -1.23217304,
-1.23217304, -0.92597583, -0.92597583, -0.92597583, -0.92597583,
-0.59117574, -0.59117574, -0.59117574, -0.59117574, -0.23496487,
-0.23496487, -0.23496487, -0.23496487, 0.23496487, 0.23496487,
0.23496487, 0.23496487, 0.59117574, 0.59117574, 0.59117574,
0.59117574, 0.92597583, 0.92597583, 0.92597583, 0.92597583,
1.23217304, 1.23217304, 1.23217304, 1.23217304, 1.50364278,
1.50364278, 1.50364278, 1.50364278, 1.72407007, 1.72407007,
1.72407007, 1.72407007, 1.86801764, 1.86801764, 1.86801764,
1.86801764, 1.94480442, 1.94480442, 1.94480442, 1.94480442,
1.98018643, 1.98018643, 1.98018643, 1.98018643, 1.99398645,
1.99398645, 1.99398645, 1.99398645, 1.99846471, 1.99846471,
1.99846471, 1.99846471, 1.9996698 , 1.9996698 , 1.9996698 ,
1.9996698 , 1.99993995, 1.99993995, 1.99993995, 1.99993995,
1.99999074, 1.99999074, 1.99999074, 1.99999074, 1.99999879,
1.99999879, 1.99999879, 1.99999879, 1.99999986, 1.99999986,
1.99999986, 1.99999986, 1.99999999, 1.99999999, 1.99999999,
1.99999999, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.3999999 ,
0.3999999 , 0.3999999 , 0.3999999 , 0.39999909, 0.39999909,
0.39999909, 0.39999909, 0.39999307, 0.39999307, 0.39999307,
0.39999307, 0.39995507, 0.39995507, 0.39995507, 0.39995507,
0.39975298, 0.39975298, 0.39975298, 0.39975298, 0.39885266,
0.39885266, 0.39885266, 0.39885266, 0.39552278, 0.39552278,
0.39552278, 0.39552278, 0.38541506, 0.38541506, 0.38541506,
0.38541506, 0.36053293, 0.36053293, 0.36053293, 0.36053293,
0.31125907, 0.31125907, 0.31125907, 0.31125907, 0.23233608,
0.23233608, 0.23233608, 0.23233608, 0.14878873, 0.14878873,
0.14878873, 0.14878873, 0.0908745 , 0.0908745 , 0.0908745 ,
0.0908745 , 0.05614055, 0.05614055, 0.05614055, 0.05614055,
0.03721016, 0.03721016, 0.03721016, 0.03721016, 0.0288322 ,
0.0288322 , 0.0288322 , 0.0288322 , 0.0288322 , 0.0288322 ,
0.0288322 , 0.0288322 , 0.03721016, 0.03721016, 0.03721016,
0.03721016, 0.05614055, 0.05614055, 0.05614055, 0.05614055,
0.0908745 , 0.0908745 , 0.0908745 , 0.0908745 , 0.14878873,
0.14878873, 0.14878873, 0.14878873, 0.23233608, 0.23233608,
0.23233608, 0.23233608, 0.31125907, 0.31125907, 0.31125907,
0.31125907, 0.36053293, 0.36053293, 0.36053293, 0.36053293,
0.38541506, 0.38541506, 0.38541506, 0.38541506, 0.39552278,
0.39552278, 0.39552278, 0.39552278, 0.39885266, 0.39885266,
0.39885266, 0.39885266, 0.39975298, 0.39975298, 0.39975298,
0.39975298, 0.39995507, 0.39995507, 0.39995507, 0.39995507,
0.39999307, 0.39999307, 0.39999307, 0.39999307, 0.39999909,
0.39999909, 0.39999909, 0.39999909, 0.3999999 , 0.3999999 ,
0.3999999 , 0.3999999 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999853,
0.99999853, 0.99999853, 0.99999853, 0.99998948, 0.99998948,
0.99998948, 0.99998948, 0.99993492, 0.99993492, 0.99993492,
0.99993492, 0.99965273, 0.99965273, 0.99965273, 0.99965273,
0.99840561, 0.99840561, 0.99840561, 0.99840561, 0.99372391,
0.99372391, 0.99372391, 0.99372391, 0.97891212, 0.97891212,
0.97891212, 0.97891212, 0.93979064, 0.93979064, 0.93979064,
0.93979064, 0.85435217, 0.85435217, 0.85435217, 0.85435217,
0.70047105, 0.70047105, 0.70047105, 0.70047105, 0.48368405,
0.48368405, 0.48368405, 0.48368405, 0.30390714, 0.30390714,
0.30390714, 0.30390714, 0.18824623, 0.18824623, 0.18824623,
0.18824623, 0.12134774, 0.12134774, 0.12134774, 0.12134774,
0.08615572, 0.08615572, 0.08615572, 0.08615572, 0.07142817,
0.07142817, 0.07142817, 0.07142817, 0.07142817, 0.07142817,
0.07142817, 0.07142817, 0.08615572, 0.08615572, 0.08615572,
0.08615572, 0.12134774, 0.12134774, 0.12134774, 0.12134774,
0.18824623, 0.18824623, 0.18824623, 0.18824623, 0.30390714,
0.30390714, 0.30390714, 0.30390714, 0.48368405, 0.48368405,
0.48368405, 0.48368405, 0.70047105, 0.70047105, 0.70047105,
0.70047105, 0.85435217, 0.85435217, 0.85435217, 0.85435217,
0.93979064, 0.93979064, 0.93979064, 0.93979064, 0.97891212,
0.97891212, 0.97891212, 0.97891212, 0.99372391, 0.99372391,
0.99372391, 0.99372391, 0.99840561, 0.99840561, 0.99840561,
0.99840561, 0.99965273, 0.99965273, 0.99965273, 0.99965273,
0.99993492, 0.99993492, 0.99993492, 0.99993492, 0.99998948,
0.99998948, 0.99998948, 0.99998948, 0.99999853, 0.99999853,
0.99999853, 0.99999853, 0.99999982, 0.99999982, 0.99999982,
0.99999982, 0.99999998, 0.99999998, 0.99999998, 0.99999998,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999999, -1.99999999, -1.99999999, -1.99999999,
-1.99999987, -1.99999987, -1.99999987, -1.99999987, -1.99999891,
-1.99999891, -1.99999891, -1.99999891, -1.99999225, -1.99999225,
-1.99999225, -1.99999225, -1.99995243, -1.99995243, -1.99995243,
-1.99995243, -1.99974878, -1.99974878, -1.99974878, -1.99974878,
-1.99886312, -1.99886312, -1.99886312, -1.99886312, -1.99560883,
-1.99560883, -1.99560883, -1.99560883, -1.9855618 , -1.9855618 ,
-1.9855618 , -1.9855618 , -1.95950297, -1.95950297, -1.95950297,
-1.95950297, -1.90210338, -1.90210338, -1.90210338, -1.90210338,
-1.79222715, -1.79222715, -1.79222715, -1.79222715, -1.61230762,
-1.61230762, -1.61230762, -1.61230762, -1.3777013 , -1.3777013 ,
-1.3777013 , -1.3777013 , -1.11092251, -1.11092251, -1.11092251,
-1.11092251, -0.82278589, -0.82278589, -0.82278589, -0.82278589,
-0.52048968, -0.52048968, -0.52048968, -0.52048968, -0.20786432,
-0.20786432, -0.20786432, -0.20786432, 0.20786432, 0.20786432,
0.20786432, 0.20786432, 0.52048968, 0.52048968, 0.52048968,
0.52048968, 0.82278589, 0.82278589, 0.82278589, 0.82278589,
1.11092251, 1.11092251, 1.11092251, 1.11092251, 1.3777013 ,
1.3777013 , 1.3777013 , 1.3777013 , 1.61230762, 1.61230762,
1.61230762, 1.61230762, 1.79222715, 1.79222715, 1.79222715,
1.79222715, 1.90210338, 1.90210338, 1.90210338, 1.90210338,
1.95950297, 1.95950297, 1.95950297, 1.95950297, 1.9855618 ,
1.9855618 , 1.9855618 , 1.9855618 , 1.99560883, 1.99560883,
1.99560883, 1.99560883, 1.99886312, 1.99886312, 1.99886312,
1.99886312, 1.99974878, 1.99974878, 1.99974878, 1.99974878,
1.99995243, 1.99995243, 1.99995243, 1.99995243, 1.99999225,
1.99999225, 1.99999225, 1.99999225, 1.99999891, 1.99999891,
1.99999891, 1.99999891, 1.99999987, 1.99999987, 1.99999987,
1.99999987, 1.99999999, 1.99999999, 1.99999999, 1.99999999,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.3999999 , 0.3999999 , 0.3999999 , 0.3999999 , 0.39999919,
0.39999919, 0.39999919, 0.39999919, 0.3999942 , 0.3999942 ,
0.3999942 , 0.3999942 , 0.3999644 , 0.3999644 , 0.3999644 ,
0.3999644 , 0.39981205, 0.39981205, 0.39981205, 0.39981205,
0.39915011, 0.39915011, 0.39915011, 0.39915011, 0.3967264 ,
0.3967264 , 0.3967264 , 0.3967264 , 0.38932614, 0.38932614,
0.38932614, 0.38932614, 0.3707002 , 0.3707002 , 0.3707002 ,
0.3707002 , 0.33242647, 0.33242647, 0.33242647, 0.33242647,
0.26800883, 0.26800883, 0.26800883, 0.26800883, 0.18437304,
0.18437304, 0.18437304, 0.18437304, 0.11676345, 0.11676345,
0.11676345, 0.11676345, 0.07270821, 0.07270821, 0.07270821,
0.07270821, 0.04645228, 0.04645228, 0.04645228, 0.04645228,
0.03191354, 0.03191354, 0.03191354, 0.03191354, 0.02538131,
0.02538131, 0.02538131, 0.02538131, 0.02538131, 0.02538131,
0.02538131, 0.02538131, 0.03191354, 0.03191354, 0.03191354,
0.03191354, 0.04645228, 0.04645228, 0.04645228, 0.04645228,
0.07270821, 0.07270821, 0.07270821, 0.07270821, 0.11676345,
0.11676345, 0.11676345, 0.11676345, 0.18437304, 0.18437304,
0.18437304, 0.18437304, 0.26800883, 0.26800883, 0.26800883,
0.26800883, 0.33242647, 0.33242647, 0.33242647, 0.33242647,
0.3707002 , 0.3707002 , 0.3707002 , 0.3707002 , 0.38932614,
0.38932614, 0.38932614, 0.38932614, 0.3967264 , 0.3967264 ,
0.3967264 , 0.3967264 , 0.39915011, 0.39915011, 0.39915011,
0.39915011, 0.39981205, 0.39981205, 0.39981205, 0.39981205,
0.3999644 , 0.3999644 , 0.3999644 , 0.3999644 , 0.3999942 ,
0.3999942 , 0.3999942 , 0.3999942 , 0.39999919, 0.39999919,
0.39999919, 0.39999919, 0.3999999 , 0.3999999 , 0.3999999 ,
0.3999999 , 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
0.99999873, 0.99999873, 0.99999873, 0.99999873, 0.99999139,
0.99999139, 0.99999139, 0.99999139, 0.9999492 , 0.9999492 ,
0.9999492 , 0.9999492 , 0.99973872, 0.99973872, 0.99973872,
0.99973872, 0.99883156, 0.99883156, 0.99883156, 0.99883156,
0.99547245, 0.99547245, 0.99547245, 0.99547245, 0.98486244,
0.98486244, 0.98486244, 0.98486244, 0.95651715, 0.95651715,
0.95651715, 0.95651715, 0.89302034, 0.89302034, 0.89302034,
0.89302034, 0.7744703 , 0.7744703 , 0.7744703 , 0.7744703 ,
0.58918984, 0.58918984, 0.58918984, 0.58918984, 0.3907938 ,
0.3907938 , 0.3907938 , 0.3907938 , 0.24842829, 0.24842829,
0.24842829, 0.24842829, 0.15858747, 0.15858747, 0.15858747,
0.15858747, 0.10613862, 0.10613862, 0.10613862, 0.10613862,
0.07804312, 0.07804312, 0.07804312, 0.07804312, 0.06596678,
0.06596678, 0.06596678, 0.06596678, 0.06596678, 0.06596678,
0.06596678, 0.06596678, 0.07804312, 0.07804312, 0.07804312,
0.07804312, 0.10613862, 0.10613862, 0.10613862, 0.10613862,
0.15858747, 0.15858747, 0.15858747, 0.15858747, 0.24842829,
0.24842829, 0.24842829, 0.24842829, 0.3907938 , 0.3907938 ,
0.3907938 , 0.3907938 , 0.58918984, 0.58918984, 0.58918984,
0.58918984, 0.7744703 , 0.7744703 , 0.7744703 , 0.7744703 ,
0.89302034, 0.89302034, 0.89302034, 0.89302034, 0.95651715,
0.95651715, 0.95651715, 0.95651715, 0.98486244, 0.98486244,
0.98486244, 0.98486244, 0.99547245, 0.99547245, 0.99547245,
0.99547245, 0.99883156, 0.99883156, 0.99883156, 0.99883156,
0.99973872, 0.99973872, 0.99973872, 0.99973872, 0.9999492 ,
0.9999492 , 0.9999492 , 0.9999492 , 0.99999139, 0.99999139,
0.99999139, 0.99999139, 0.99999873, 0.99999873, 0.99999873,
0.99999873, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999999, -1.99999999, -1.99999999,
-1.99999999, -1.99999988, -1.99999988, -1.99999988, -1.99999988,
-1.99999905, -1.99999905, -1.99999905, -1.99999905, -1.99999363,
-1.99999363, -1.99999363, -1.99999363, -1.99996263, -1.99996263,
-1.99996263, -1.99996263, -1.99980927, -1.99980927, -1.99980927,
-1.99980927, -1.99915638, -1.99915638, -1.99915638, -1.99915638,
-1.99677918, -1.99677918, -1.99677918, -1.99677918, -1.98942127,
-1.98942127, -1.98942127, -1.98942127, -1.97010848, -1.97010848,
-1.97010848, -1.97010848, -1.92685579, -1.92685579, -1.92685579,
-1.92685579, -1.84274247, -1.84274247, -1.84274247, -1.84274247,
-1.69896886, -1.69896886, -1.69896886, -1.69896886, -1.4967822 ,
-1.4967822 , -1.4967822 , -1.4967822 , -1.25990867, -1.25990867,
-1.25990867, -1.25990867, -1.00356993, -1.00356993, -1.00356993,
-1.00356993, -0.73520455, -0.73520455, -0.73520455, -0.73520455,
-0.4621829 , -0.4621829 , -0.4621829 , -0.4621829 , -0.18511853,
-0.18511853, -0.18511853, -0.18511853, 0.18511853, 0.18511853,
0.18511853, 0.18511853, 0.4621829 , 0.4621829 , 0.4621829 ,
0.4621829 , 0.73520455, 0.73520455, 0.73520455, 0.73520455,
1.00356993, 1.00356993, 1.00356993, 1.00356993, 1.25990867,
1.25990867, 1.25990867, 1.25990867, 1.4967822 , 1.4967822 ,
1.4967822 , 1.4967822 , 1.69896886, 1.69896886, 1.69896886,
1.69896886, 1.84274247, 1.84274247, 1.84274247, 1.84274247,
1.92685579, 1.92685579, 1.92685579, 1.92685579, 1.97010848,
1.97010848, 1.97010848, 1.97010848, 1.98942127, 1.98942127,
1.98942127, 1.98942127, 1.99677918, 1.99677918, 1.99677918,
1.99677918, 1.99915638, 1.99915638, 1.99915638, 1.99915638,
1.99980927, 1.99980927, 1.99980927, 1.99980927, 1.99996263,
1.99996263, 1.99996263, 1.99996263, 1.99999363, 1.99999363,
1.99999363, 1.99999363, 1.99999905, 1.99999905, 1.99999905,
1.99999905, 1.99999988, 1.99999988, 1.99999988, 1.99999988,
1.99999999, 1.99999999, 1.99999999, 1.99999999, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.39999991, 0.39999991, 0.39999991, 0.39999991,
0.39999929, 0.39999929, 0.39999929, 0.39999929, 0.39999523,
0.39999523, 0.39999523, 0.39999523, 0.39997203, 0.39997203,
0.39997203, 0.39997203, 0.3998573 , 0.3998573 , 0.3998573 ,
0.3998573 , 0.39936918, 0.39936918, 0.39936918, 0.39936918,
0.39759656, 0.39759656, 0.39759656, 0.39759656, 0.3921548 ,
0.3921548 , 0.3921548 , 0.3921548 , 0.37818642, 0.37818642,
0.37818642, 0.37818642, 0.34849857, 0.34849857, 0.34849857,
0.34849857, 0.29650042, 0.29650042, 0.29650042, 0.29650042,
0.2208956 , 0.2208956 , 0.2208956 , 0.2208956 , 0.14629492,
0.14629492, 0.14629492, 0.14629492, 0.09330567, 0.09330567,
0.09330567, 0.09330567, 0.05957303, 0.05957303, 0.05957303,
0.05957303, 0.03932213, 0.03932213, 0.03932213, 0.03932213,
0.02792703, 0.02792703, 0.02792703, 0.02792703, 0.02269662,
0.02269662, 0.02269662, 0.02269662, 0.02269662, 0.02269662,
0.02269662, 0.02269662, 0.02792703, 0.02792703, 0.02792703,
0.02792703, 0.03932213, 0.03932213, 0.03932213, 0.03932213,
0.05957303, 0.05957303, 0.05957303, 0.05957303, 0.09330567,
0.09330567, 0.09330567, 0.09330567, 0.14629492, 0.14629492,
0.14629492, 0.14629492, 0.2208956 , 0.2208956 , 0.2208956 ,
0.2208956 , 0.29650042, 0.29650042, 0.29650042, 0.29650042,
0.34849857, 0.34849857, 0.34849857, 0.34849857, 0.37818642,
0.37818642, 0.37818642, 0.37818642, 0.3921548 , 0.3921548 ,
0.3921548 , 0.3921548 , 0.39759656, 0.39759656, 0.39759656,
0.39759656, 0.39936918, 0.39936918, 0.39936918, 0.39936918,
0.3998573 , 0.3998573 , 0.3998573 , 0.3998573 , 0.39997203,
0.39997203, 0.39997203, 0.39997203, 0.39999523, 0.39999523,
0.39999523, 0.39999523, 0.39999929, 0.39999929, 0.39999929,
0.39999929, 0.39999991, 0.39999991, 0.39999991, 0.39999991,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999985, 0.99999985, 0.99999985,
0.99999985, 0.99999892, 0.99999892, 0.99999892, 0.99999892,
0.99999303, 0.99999303, 0.99999303, 0.99999303, 0.99996053,
0.99996053, 0.99996053, 0.99996053, 0.99980322, 0.99980322,
0.99980322, 0.99980322, 0.99913934, 0.99913934, 0.99913934,
0.99913934, 0.99670847, 0.99670847, 0.99670847, 0.99670847,
0.98903707, 0.98903707, 0.98903707, 0.98903707, 0.96833192,
0.96833192, 0.96833192, 0.96833192, 0.92092038, 0.92092038,
0.92092038, 0.92092038, 0.82944669, 0.82944669, 0.82944669,
0.82944669, 0.68051663, 0.68051663, 0.68051663, 0.68051663,
0.48474848, 0.48474848, 0.48474848, 0.48474848, 0.32005625,
0.32005625, 0.32005625, 0.32005625, 0.20735316, 0.20735316,
0.20735316, 0.20735316, 0.13644564, 0.13644564, 0.13644564,
0.13644564, 0.0944557 , 0.0944557 , 0.0944557 , 0.0944557 ,
0.07160431, 0.07160431, 0.07160431, 0.07160431, 0.06148045,
0.06148045, 0.06148045, 0.06148045, 0.06148045, 0.06148045,
0.06148045, 0.06148045, 0.07160431, 0.07160431, 0.07160431,
0.07160431, 0.0944557 , 0.0944557 , 0.0944557 , 0.0944557 ,
0.13644564, 0.13644564, 0.13644564, 0.13644564, 0.20735316,
0.20735316, 0.20735316, 0.20735316, 0.32005625, 0.32005625,
0.32005625, 0.32005625, 0.48474848, 0.48474848, 0.48474848,
0.48474848, 0.68051663, 0.68051663, 0.68051663, 0.68051663,
0.82944669, 0.82944669, 0.82944669, 0.82944669, 0.92092038,
0.92092038, 0.92092038, 0.92092038, 0.96833192, 0.96833192,
0.96833192, 0.96833192, 0.98903707, 0.98903707, 0.98903707,
0.98903707, 0.99670847, 0.99670847, 0.99670847, 0.99670847,
0.99913934, 0.99913934, 0.99913934, 0.99913934, 0.99980322,
0.99980322, 0.99980322, 0.99980322, 0.99996053, 0.99996053,
0.99996053, 0.99996053, 0.99999303, 0.99999303, 0.99999303,
0.99999303, 0.99999892, 0.99999892, 0.99999892, 0.99999892,
0.99999985, 0.99999985, 0.99999985, 0.99999985, 0.99999998,
0.99999998, 0.99999998, 0.99999998, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999989, -1.99999989, -1.99999989,
-1.99999989, -1.99999919, -1.99999919, -1.99999919, -1.99999919,
-1.99999483, -1.99999483, -1.99999483, -1.99999483, -1.99997083,
-1.99997083, -1.99997083, -1.99997083, -1.99985541, -1.99985541,
-1.99985541, -1.99985541, -1.99937283, -1.99937283, -1.99937283,
-1.99937283, -1.99762886, -1.99762886, -1.99762886, -1.99762886,
-1.99221523, -1.99221523, -1.99221523, -1.99221523, -1.97783629,
-1.97783629, -1.97783629, -1.97783629, -1.94507807, -1.94507807,
-1.94507807, -1.94507807, -1.8802642 , -1.8802642 , -1.8802642 ,
-1.8802642 , -1.76657936, -1.76657936, -1.76657936, -1.76657936,
-1.59538283, -1.59538283, -1.59538283, -1.59538283, -1.3846481 ,
-1.3846481 , -1.3846481 , -1.3846481 , -1.15263124, -1.15263124,
-1.15263124, -1.15263124, -0.90932231, -0.90932231, -0.90932231,
-0.90932231, -0.6608509 , -0.6608509 , -0.6608509 , -0.6608509 ,
-0.41335342, -0.41335342, -0.41335342, -0.41335342, -0.16579062,
-0.16579062, -0.16579062, -0.16579062, 0.16579062, 0.16579062,
0.16579062, 0.16579062, 0.41335342, 0.41335342, 0.41335342,
0.41335342, 0.6608509 , 0.6608509 , 0.6608509 , 0.6608509 ,
0.90932231, 0.90932231, 0.90932231, 0.90932231, 1.15263124,
1.15263124, 1.15263124, 1.15263124, 1.3846481 , 1.3846481 ,
1.3846481 , 1.3846481 , 1.59538283, 1.59538283, 1.59538283,
1.59538283, 1.76657936, 1.76657936, 1.76657936, 1.76657936,
1.8802642 , 1.8802642 , 1.8802642 , 1.8802642 , 1.94507807,
1.94507807, 1.94507807, 1.94507807, 1.97783629, 1.97783629,
1.97783629, 1.97783629, 1.99221523, 1.99221523, 1.99221523,
1.99221523, 1.99762886, 1.99762886, 1.99762886, 1.99762886,
1.99937283, 1.99937283, 1.99937283, 1.99937283, 1.99985541,
1.99985541, 1.99985541, 1.99985541, 1.99997083, 1.99997083,
1.99997083, 1.99997083, 1.99999483, 1.99999483, 1.99999483,
1.99999483, 1.99999919, 1.99999919, 1.99999919, 1.99999919,
1.99999989, 1.99999989, 1.99999989, 1.99999989, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999992, 0.39999992, 0.39999992,
0.39999992, 0.3999994 , 0.3999994 , 0.3999994 , 0.3999994 ,
0.39999613, 0.39999613, 0.39999613, 0.39999613, 0.39997817,
0.39997817, 0.39997817, 0.39997817, 0.39989181, 0.39989181,
0.39989181, 0.39989181, 0.39953094, 0.39953094, 0.39953094,
0.39953094, 0.39822935, 0.39822935, 0.39822935, 0.39822935,
0.39421346, 0.39421346, 0.39421346, 0.39421346, 0.38372292,
0.38372292, 0.38372292, 0.38372292, 0.36074975, 0.36074975,
0.36074975, 0.36074975, 0.31885934, 0.31885934, 0.31885934,
0.31885934, 0.25467937, 0.25467937, 0.25467937, 0.25467937,
0.17819705, 0.17819705, 0.17819705, 0.17819705, 0.11737308,
0.11737308, 0.11737308, 0.11737308, 0.07607236, 0.07607236,
0.07607236, 0.07607236, 0.04988617, 0.04988617, 0.04988617,
0.04988617, 0.03394821, 0.03394821, 0.03394821, 0.03394821,
0.02484589, 0.02484589, 0.02484589, 0.02484589, 0.02055858,
0.02055858, 0.02055858, 0.02055858, 0.02055858, 0.02055858,
0.02055858, 0.02055858, 0.02484589, 0.02484589, 0.02484589,
0.02484589, 0.03394821, 0.03394821, 0.03394821, 0.03394821,
0.04988617, 0.04988617, 0.04988617, 0.04988617, 0.07607236,
0.07607236, 0.07607236, 0.07607236, 0.11737308, 0.11737308,
0.11737308, 0.11737308, 0.17819705, 0.17819705, 0.17819705,
0.17819705, 0.25467937, 0.25467937, 0.25467937, 0.25467937,
0.31885934, 0.31885934, 0.31885934, 0.31885934, 0.36074975,
0.36074975, 0.36074975, 0.36074975, 0.38372292, 0.38372292,
0.38372292, 0.38372292, 0.39421346, 0.39421346, 0.39421346,
0.39421346, 0.39822935, 0.39822935, 0.39822935, 0.39822935,
0.39953094, 0.39953094, 0.39953094, 0.39953094, 0.39989181,
0.39989181, 0.39989181, 0.39989181, 0.39997817, 0.39997817,
0.39997817, 0.39997817, 0.39999613, 0.39999613, 0.39999613,
0.39999613, 0.3999994 , 0.3999994 , 0.3999994 , 0.3999994 ,
0.39999992, 0.39999992, 0.39999992, 0.39999992, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999987, 0.99999987,
0.99999987, 0.99999987, 0.99999909, 0.99999909, 0.99999909,
0.99999909, 0.99999442, 0.99999442, 0.99999442, 0.99999442,
0.99996944, 0.99996944, 0.99996944, 0.99996944, 0.99985168,
0.99985168, 0.99985168, 0.99985168, 0.99936346, 0.99936346,
0.99936346, 0.99936346, 0.99759219, 0.99759219, 0.99759219,
0.99759219, 0.99200342, 0.99200342, 0.99200342, 0.99200342,
0.9767769 , 0.9767769 , 0.9767769 , 0.9767769 , 0.9412236 ,
0.9412236 , 0.9412236 , 0.9412236 , 0.87054386, 0.87054386,
0.87054386, 0.87054386, 0.75130495, 0.75130495, 0.75130495,
0.75130495, 0.57926246, 0.57926246, 0.57926246, 0.57926246,
0.40024973, 0.40024973, 0.40024973, 0.40024973, 0.26645668,
0.26645668, 0.26645668, 0.26645668, 0.17646832, 0.17646832,
0.17646832, 0.17646832, 0.11952627, 0.11952627, 0.11952627,
0.11952627, 0.08529551, 0.08529551, 0.08529551, 0.08529551,
0.06638144, 0.06638144, 0.06638144, 0.06638144, 0.05773675,
0.05773675, 0.05773675, 0.05773675, 0.05773675, 0.05773675,
0.05773675, 0.05773675, 0.06638144, 0.06638144, 0.06638144,
0.06638144, 0.08529551, 0.08529551, 0.08529551, 0.08529551,
0.11952627, 0.11952627, 0.11952627, 0.11952627, 0.17646832,
0.17646832, 0.17646832, 0.17646832, 0.26645668, 0.26645668,
0.26645668, 0.26645668, 0.40024973, 0.40024973, 0.40024973,
0.40024973, 0.57926246, 0.57926246, 0.57926246, 0.57926246,
0.75130495, 0.75130495, 0.75130495, 0.75130495, 0.87054386,
0.87054386, 0.87054386, 0.87054386, 0.9412236 , 0.9412236 ,
0.9412236 , 0.9412236 , 0.9767769 , 0.9767769 , 0.9767769 ,
0.9767769 , 0.99200342, 0.99200342, 0.99200342, 0.99200342,
0.99759219, 0.99759219, 0.99759219, 0.99759219, 0.99936346,
0.99936346, 0.99936346, 0.99936346, 0.99985168, 0.99985168,
0.99985168, 0.99985168, 0.99996944, 0.99996944, 0.99996944,
0.99996944, 0.99999442, 0.99999442, 0.99999442, 0.99999442,
0.99999909, 0.99999909, 0.99999909, 0.99999909, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999998, 0.99999998,
0.99999998, 0.99999998, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.9999999 , -1.9999999 ,
-1.9999999 , -1.9999999 , -1.99999932, -1.99999932, -1.99999932,
-1.99999932, -1.99999585, -1.99999585, -1.99999585, -1.99999585,
-1.99997734, -1.99997734, -1.99997734, -1.99997734, -1.99989049,
-1.99989049, -1.99989049, -1.99989049, -1.99953296, -1.99953296,
-1.99953296, -1.99953296, -1.99824897, -1.99824897, -1.99824897,
-1.99824897, -1.99425094, -1.99425094, -1.99425094, -1.99425094,
-1.98350927, -1.98350927, -1.98350927, -1.98350927, -1.95861122,
-1.95861122, -1.95861122, -1.95861122, -1.90841269, -1.90841269,
-1.90841269, -1.90841269, -1.81883102, -1.81883102, -1.81883102,
-1.81883102, -1.67695384, -1.67695384, -1.67695384, -1.67695384,
-1.49066109, -1.49066109, -1.49066109, -1.49066109, -1.27974678,
-1.27974678, -1.27974678, -1.27974678, -1.05626743, -1.05626743,
-1.05626743, -1.05626743, -0.82669042, -0.82669042, -0.82669042,
-0.82669042, -0.59757719, -0.59757719, -0.59757719, -0.59757719,
-0.37196921, -0.37196921, -0.37196921, -0.37196921, -0.14921138,
-0.14921138, -0.14921138, -0.14921138, 0.14921138, 0.14921138,
0.14921138, 0.14921138, 0.37196921, 0.37196921, 0.37196921,
0.37196921, 0.59757719, 0.59757719, 0.59757719, 0.59757719,
0.82669042, 0.82669042, 0.82669042, 0.82669042, 1.05626743,
1.05626743, 1.05626743, 1.05626743, 1.27974678, 1.27974678,
1.27974678, 1.27974678, 1.49066109, 1.49066109, 1.49066109,
1.49066109, 1.67695384, 1.67695384, 1.67695384, 1.67695384,
1.81883102, 1.81883102, 1.81883102, 1.81883102, 1.90841269,
1.90841269, 1.90841269, 1.90841269, 1.95861122, 1.95861122,
1.95861122, 1.95861122, 1.98350927, 1.98350927, 1.98350927,
1.98350927, 1.99425094, 1.99425094, 1.99425094, 1.99425094,
1.99824897, 1.99824897, 1.99824897, 1.99824897, 1.99953296,
1.99953296, 1.99953296, 1.99953296, 1.99989049, 1.99989049,
1.99989049, 1.99989049, 1.99997734, 1.99997734, 1.99997734,
1.99997734, 1.99999585, 1.99999585, 1.99999585, 1.99999585,
1.99999932, 1.99999932, 1.99999932, 1.99999932, 1.9999999 ,
1.9999999 , 1.9999999 , 1.9999999 , 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.39999993, 0.39999993,
0.39999993, 0.39999993, 0.39999949, 0.39999949, 0.39999949,
0.39999949, 0.39999689, 0.39999689, 0.39999689, 0.39999689,
0.39998304, 0.39998304, 0.39998304, 0.39998304, 0.39991806,
0.39991806, 0.39991806, 0.39991806, 0.39965065, 0.39965065,
0.39965065, 0.39965065, 0.39869171, 0.39869171, 0.39869171,
0.39869171, 0.39571932, 0.39571932, 0.39571932, 0.39571932,
0.38783206, 0.38783206, 0.38783206, 0.38783206, 0.37008927,
0.37008927, 0.37008927, 0.37008927, 0.33650467, 0.33650467,
0.33650467, 0.33650467, 0.28304854, 0.28304854, 0.28304854,
0.28304854, 0.21124808, 0.21124808, 0.21124808, 0.21124808,
0.14423471, 0.14423471, 0.14423471, 0.14423471, 0.09564562,
0.09564562, 0.09564562, 0.09564562, 0.06325264, 0.06325264,
0.06325264, 0.06325264, 0.04258376, 0.04258376, 0.04258376,
0.04258376, 0.02981479, 0.02981479, 0.02981479, 0.02981479,
0.02240799, 0.02240799, 0.02240799, 0.02240799, 0.01882236,
0.01882236, 0.01882236, 0.01882236, 0.01882236, 0.01882236,
0.01882236, 0.01882236, 0.02240799, 0.02240799, 0.02240799,
0.02240799, 0.02981479, 0.02981479, 0.02981479, 0.02981479,
0.04258376, 0.04258376, 0.04258376, 0.04258376, 0.06325264,
0.06325264, 0.06325264, 0.06325264, 0.09564562, 0.09564562,
0.09564562, 0.09564562, 0.14423471, 0.14423471, 0.14423471,
0.14423471, 0.21124808, 0.21124808, 0.21124808, 0.21124808,
0.28304854, 0.28304854, 0.28304854, 0.28304854, 0.33650467,
0.33650467, 0.33650467, 0.33650467, 0.37008927, 0.37008927,
0.37008927, 0.37008927, 0.38783206, 0.38783206, 0.38783206,
0.38783206, 0.39571932, 0.39571932, 0.39571932, 0.39571932,
0.39869171, 0.39869171, 0.39869171, 0.39869171, 0.39965065,
0.39965065, 0.39965065, 0.39965065, 0.39991806, 0.39991806,
0.39991806, 0.39991806, 0.39998304, 0.39998304, 0.39998304,
0.39998304, 0.39999689, 0.39999689, 0.39999689, 0.39999689,
0.39999949, 0.39999949, 0.39999949, 0.39999949, 0.39999993,
0.39999993, 0.39999993, 0.39999993, 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999989,
0.99999989, 0.99999989, 0.99999989, 0.99999925, 0.99999925,
0.99999925, 0.99999925, 0.99999556, 0.99999556, 0.99999556,
0.99999556, 0.99997641, 0.99997641, 0.99997641, 0.99997641,
0.99988813, 0.99988813, 0.99988813, 0.99988813, 0.99952767,
0.99952767, 0.99952767, 0.99952767, 0.99822984, 0.99822984,
0.99822984, 0.99822984, 0.99413331, 0.99413331, 0.99413331,
0.99413331, 0.98287358, 0.98287358, 0.98287358, 0.98287358,
0.95611358, 0.95611358, 0.95611358, 0.95611358, 0.90147495,
0.90147495, 0.90147495, 0.90147495, 0.80606099, 0.80606099,
0.80606099, 0.80606099, 0.6629508 , 0.6629508 , 0.6629508 ,
0.6629508 , 0.48526898, 0.48526898, 0.48526898, 0.48526898,
0.33418244, 0.33418244, 0.33418244, 0.33418244, 0.22557052,
0.22557052, 0.22557052, 0.22557052, 0.15279734, 0.15279734,
0.15279734, 0.15279734, 0.10633769, 0.10633769, 0.10633769,
0.10633769, 0.07797773, 0.07797773, 0.07797773, 0.07797773,
0.06207329, 0.06207329, 0.06207329, 0.06207329, 0.05456806,
0.05456806, 0.05456806, 0.05456806, 0.05456806, 0.05456806,
0.05456806, 0.05456806, 0.06207329, 0.06207329, 0.06207329,
0.06207329, 0.07797773, 0.07797773, 0.07797773, 0.07797773,
0.10633769, 0.10633769, 0.10633769, 0.10633769, 0.15279734,
0.15279734, 0.15279734, 0.15279734, 0.22557052, 0.22557052,
0.22557052, 0.22557052, 0.33418244, 0.33418244, 0.33418244,
0.33418244, 0.48526898, 0.48526898, 0.48526898, 0.48526898,
0.6629508 , 0.6629508 , 0.6629508 , 0.6629508 , 0.80606099,
0.80606099, 0.80606099, 0.80606099, 0.90147495, 0.90147495,
0.90147495, 0.90147495, 0.95611358, 0.95611358, 0.95611358,
0.95611358, 0.98287358, 0.98287358, 0.98287358, 0.98287358,
0.99413331, 0.99413331, 0.99413331, 0.99413331, 0.99822984,
0.99822984, 0.99822984, 0.99822984, 0.99952767, 0.99952767,
0.99952767, 0.99952767, 0.99988813, 0.99988813, 0.99988813,
0.99988813, 0.99997641, 0.99997641, 0.99997641, 0.99997641,
0.99999556, 0.99999556, 0.99999556, 0.99999556, 0.99999925,
0.99999925, 0.99999925, 0.99999925, 0.99999989, 0.99999989,
0.99999989, 0.99999989, 0.99999998, 0.99999998, 0.99999998,
0.99999998, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999992,
-1.99999992, -1.99999992, -1.99999992, -1.99999944, -1.99999944,
-1.99999944, -1.99999944, -1.99999669, -1.99999669, -1.99999669,
-1.99999669, -1.99998246, -1.99998246, -1.99998246, -1.99998246,
-1.99991711, -1.99991711, -1.99991711, -1.99991711, -1.99965168,
-1.99965168, -1.99965168, -1.99965168, -1.99870348, -1.99870348,
-1.99870348, -1.99870348, -1.99574184, -1.99574184, -1.99574184,
-1.99574184, -1.98769693, -1.98769693, -1.98769693, -1.98769693,
-1.96872988, -1.96872988, -1.96872988, -1.96872988, -1.92973713,
-1.92973713, -1.92973713, -1.92973713, -1.85887548, -1.85887548,
-1.85887548, -1.85887548, -1.74322835, -1.74322835, -1.74322835,
-1.74322835, -1.58095486, -1.58095486, -1.58095486, -1.58095486,
-1.38977869, -1.38977869, -1.38977869, -1.38977869, -1.18354233,
-1.18354233, -1.18354233, -1.18354233, -0.97008458, -0.97008458,
-0.97008458, -0.97008458, -0.75449891, -0.75449891, -0.75449891,
-0.75449891, -0.54325511, -0.54325511, -0.54325511, -0.54325511,
-0.33655969, -0.33655969, -0.33655969, -0.33655969, -0.13490112,
-0.13490112, -0.13490112, -0.13490112, 0.13490112, 0.13490112,
0.13490112, 0.13490112, 0.33655969, 0.33655969, 0.33655969,
0.33655969, 0.54325511, 0.54325511, 0.54325511, 0.54325511,
0.75449891, 0.75449891, 0.75449891, 0.75449891, 0.97008458,
0.97008458, 0.97008458, 0.97008458, 1.18354233, 1.18354233,
1.18354233, 1.18354233, 1.38977869, 1.38977869, 1.38977869,
1.38977869, 1.58095486, 1.58095486, 1.58095486, 1.58095486,
1.74322835, 1.74322835, 1.74322835, 1.74322835, 1.85887548,
1.85887548, 1.85887548, 1.85887548, 1.92973713, 1.92973713,
1.92973713, 1.92973713, 1.96872988, 1.96872988, 1.96872988,
1.96872988, 1.98769693, 1.98769693, 1.98769693, 1.98769693,
1.99574184, 1.99574184, 1.99574184, 1.99574184, 1.99870348,
1.99870348, 1.99870348, 1.99870348, 1.99965168, 1.99965168,
1.99965168, 1.99965168, 1.99991711, 1.99991711, 1.99991711,
1.99991711, 1.99998246, 1.99998246, 1.99998246, 1.99998246,
1.99999669, 1.99999669, 1.99999669, 1.99999669, 1.99999944,
1.99999944, 1.99999944, 1.99999944, 1.99999992, 1.99999992,
1.99999992, 1.99999992, 1.99999999, 1.99999999, 1.99999999,
1.99999999, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.39999994,
0.39999994, 0.39999994, 0.39999994, 0.39999958, 0.39999958,
0.39999958, 0.39999958, 0.39999752, 0.39999752, 0.39999752,
0.39999752, 0.39998688, 0.39998688, 0.39998688, 0.39998688,
0.39993797, 0.39993797, 0.39993797, 0.39993797, 0.39973943,
0.39973943, 0.39973943, 0.39973943, 0.39903091, 0.39903091,
0.39903091, 0.39903091, 0.3968254 , 0.3968254 , 0.3968254 ,
0.3968254 , 0.3908901 , 0.3908901 , 0.3908901 , 0.3908901 ,
0.37721105, 0.37721105, 0.37721105, 0.37721105, 0.35042673,
0.35042673, 0.35042673, 0.35042673, 0.30601973, 0.30601973,
0.30601973, 0.30601973, 0.2429103 , 0.2429103 , 0.2429103 ,
0.2429103 , 0.17315145, 0.17315145, 0.17315145, 0.17315145,
0.11794307, 0.11794307, 0.11794307, 0.11794307, 0.07926119,
0.07926119, 0.07926119, 0.07926119, 0.05354337, 0.05354337,
0.05354337, 0.05354337, 0.03697472, 0.03697472, 0.03697472,
0.03697472, 0.02657161, 0.02657161, 0.02657161, 0.02657161,
0.02044322, 0.02044322, 0.02044322, 0.02044322, 0.01738792,
0.01738792, 0.01738792, 0.01738792, 0.01738792, 0.01738792,
0.01738792, 0.01738792, 0.02044322, 0.02044322, 0.02044322,
0.02044322, 0.02657161, 0.02657161, 0.02657161, 0.02657161,
0.03697472, 0.03697472, 0.03697472, 0.03697472, 0.05354337,
0.05354337, 0.05354337, 0.05354337, 0.07926119, 0.07926119,
0.07926119, 0.07926119, 0.11794307, 0.11794307, 0.11794307,
0.11794307, 0.17315145, 0.17315145, 0.17315145, 0.17315145,
0.2429103 , 0.2429103 , 0.2429103 , 0.2429103 , 0.30601973,
0.30601973, 0.30601973, 0.30601973, 0.35042673, 0.35042673,
0.35042673, 0.35042673, 0.37721105, 0.37721105, 0.37721105,
0.37721105, 0.3908901 , 0.3908901 , 0.3908901 , 0.3908901 ,
0.3968254 , 0.3968254 , 0.3968254 , 0.3968254 , 0.39903091,
0.39903091, 0.39903091, 0.39903091, 0.39973943, 0.39973943,
0.39973943, 0.39973943, 0.39993797, 0.39993797, 0.39993797,
0.39993797, 0.39998688, 0.39998688, 0.39998688, 0.39998688,
0.39999752, 0.39999752, 0.39999752, 0.39999752, 0.39999958,
0.39999958, 0.39999958, 0.39999958, 0.39999994, 0.39999994,
0.39999994, 0.39999994, 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999939,
0.99999939, 0.99999939, 0.99999939, 0.99999649, 0.99999649,
0.99999649, 0.99999649, 0.99998183, 0.99998183, 0.99998183,
0.99998183, 0.99991558, 0.99991558, 0.99991558, 0.99991558,
0.99964859, 0.99964859, 0.99964859, 0.99964859, 0.99869334,
0.99869334, 0.99869334, 0.99869334, 0.99567568, 0.99567568,
0.99567568, 0.99567568, 0.98731173, 0.98731173, 0.98731173,
0.98731173, 0.96710867, 0.96710867, 0.96710867, 0.96710867,
0.92484524, 0.92484524, 0.92484524, 0.92484524, 0.84862997,
0.84862997, 0.84862997, 0.84862997, 0.73030183, 0.73030183,
0.73030183, 0.73030183, 0.57045438, 0.57045438, 0.57045438,
0.57045438, 0.40816609, 0.40816609, 0.40816609, 0.40816609,
0.28274734, 0.28274734, 0.28274734, 0.28274734, 0.19398103,
0.19398103, 0.19398103, 0.19398103, 0.13432377, 0.13432377,
0.13432377, 0.13432377, 0.09586862, 0.09586862, 0.09586862,
0.09586862, 0.07203503, 0.07203503, 0.07203503, 0.07203503,
0.05845869, 0.05845869, 0.05845869, 0.05845869, 0.05185684,
0.05185684, 0.05185684, 0.05185684, 0.05185684, 0.05185684,
0.05185684, 0.05185684, 0.05845869, 0.05845869, 0.05845869,
0.05845869, 0.07203503, 0.07203503, 0.07203503, 0.07203503,
0.09586862, 0.09586862, 0.09586862, 0.09586862, 0.13432377,
0.13432377, 0.13432377, 0.13432377, 0.19398103, 0.19398103,
0.19398103, 0.19398103, 0.28274734, 0.28274734, 0.28274734,
0.28274734, 0.40816609, 0.40816609, 0.40816609, 0.40816609,
0.57045438, 0.57045438, 0.57045438, 0.57045438, 0.73030183,
0.73030183, 0.73030183, 0.73030183, 0.84862997, 0.84862997,
0.84862997, 0.84862997, 0.92484524, 0.92484524, 0.92484524,
0.92484524, 0.96710867, 0.96710867, 0.96710867, 0.96710867,
0.98731173, 0.98731173, 0.98731173, 0.98731173, 0.99567568,
0.99567568, 0.99567568, 0.99567568, 0.99869334, 0.99869334,
0.99869334, 0.99869334, 0.99964859, 0.99964859, 0.99964859,
0.99964859, 0.99991558, 0.99991558, 0.99991558, 0.99991558,
0.99998183, 0.99998183, 0.99998183, 0.99998183, 0.99999649,
0.99999649, 0.99999649, 0.99999649, 0.99999939, 0.99999939,
0.99999939, 0.99999939, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999999, -1.99999999, -1.99999999, -1.99999999,
-1.99999993, -1.99999993, -1.99999993, -1.99999993, -1.99999954,
-1.99999954, -1.99999954, -1.99999954, -1.99999738, -1.99999738,
-1.99999738, -1.99999738, -1.99998647, -1.99998647, -1.99998647,
-1.99998647, -1.99993728, -1.99993728, -1.99993728, -1.99993728,
-1.99973987, -1.99973987, -1.99973987, -1.99973987, -1.99903782,
-1.99903782, -1.99903782, -1.99903782, -1.99683832, -1.99683832,
-1.99683832, -1.99683832, -1.99080138, -1.99080138, -1.99080138,
-1.99080138, -1.97633249, -1.97633249, -1.97633249, -1.97633249,
-1.94599313, -1.94599313, -1.94599313, -1.94599313, -1.88979468,
-1.88979468, -1.88979468, -1.88979468, -1.79631905, -1.79631905,
-1.79631905, -1.79631905, -1.6576443 , -1.6576443 , -1.6576443 ,
-1.6576443 , -1.48538656, -1.48538656, -1.48538656, -1.48538656,
-1.2953169 , -1.2953169 , -1.2953169 , -1.2953169 , -1.09614182,
-1.09614182, -1.09614182, -1.09614182, -0.89312519, -0.89312519,
-0.89312519, -0.89312519, -0.69159993, -0.69159993, -0.69159993,
-0.69159993, -0.49608761, -0.49608761, -0.49608761, -0.49608761,
-0.30589519, -0.30589519, -0.30589519, -0.30589519, -0.1224437 ,
-0.1224437 , -0.1224437 , -0.1224437 , 0.1224437 , 0.1224437 ,
0.1224437 , 0.1224437 , 0.30589519, 0.30589519, 0.30589519,
0.30589519, 0.49608761, 0.49608761, 0.49608761, 0.49608761,
0.69159993, 0.69159993, 0.69159993, 0.69159993, 0.89312519,
0.89312519, 0.89312519, 0.89312519, 1.09614182, 1.09614182,
1.09614182, 1.09614182, 1.2953169 , 1.2953169 , 1.2953169 ,
1.2953169 , 1.48538656, 1.48538656, 1.48538656, 1.48538656,
1.6576443 , 1.6576443 , 1.6576443 , 1.6576443 , 1.79631905,
1.79631905, 1.79631905, 1.79631905, 1.88979468, 1.88979468,
1.88979468, 1.88979468, 1.94599313, 1.94599313, 1.94599313,
1.94599313, 1.97633249, 1.97633249, 1.97633249, 1.97633249,
1.99080138, 1.99080138, 1.99080138, 1.99080138, 1.99683832,
1.99683832, 1.99683832, 1.99683832, 1.99903782, 1.99903782,
1.99903782, 1.99903782, 1.99973987, 1.99973987, 1.99973987,
1.99973987, 1.99993728, 1.99993728, 1.99993728, 1.99993728,
1.99998647, 1.99998647, 1.99998647, 1.99998647, 1.99999738,
1.99999738, 1.99999738, 1.99999738, 1.99999954, 1.99999954,
1.99999954, 1.99999954, 1.99999993, 1.99999993, 1.99999993,
1.99999993, 1.99999999, 1.99999999, 1.99999999, 1.99999999,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.39999995, 0.39999995, 0.39999995, 0.39999995, 0.39999966,
0.39999966, 0.39999966, 0.39999966, 0.39999804, 0.39999804,
0.39999804, 0.39999804, 0.39998987, 0.39998987, 0.39998987,
0.39998987, 0.39995307, 0.39995307, 0.39995307, 0.39995307,
0.39980539, 0.39980539, 0.39980539, 0.39980539, 0.3992806 ,
0.3992806 , 0.3992806 , 0.3992806 , 0.39764064, 0.39764064,
0.39764064, 0.39764064, 0.39317093, 0.39317093, 0.39317093,
0.39317093, 0.38264177, 0.38264177, 0.38264177, 0.38264177,
0.36137899, 0.36137899, 0.36137899, 0.36137899, 0.32475714,
0.32475714, 0.32475714, 0.32475714, 0.27081681, 0.27081681,
0.27081681, 0.27081681, 0.20299886, 0.20299886, 0.20299886,
0.20299886, 0.14255583, 0.14255583, 0.14255583, 0.14255583,
0.09774256, 0.09774256, 0.09774256, 0.09774256, 0.06676014,
0.06676014, 0.06676014, 0.06676014, 0.0460604 , 0.0460604 ,
0.0460604 , 0.0460604 , 0.03258929, 0.03258929, 0.03258929,
0.03258929, 0.02397966, 0.02397966, 0.02397966, 0.02397966,
0.01882915, 0.01882915, 0.01882915, 0.01882915, 0.01618681,
0.01618681, 0.01618681, 0.01618681, 0.01618681, 0.01618681,
0.01618681, 0.01618681, 0.01882915, 0.01882915, 0.01882915,
0.01882915, 0.02397966, 0.02397966, 0.02397966, 0.02397966,
0.03258929, 0.03258929, 0.03258929, 0.03258929, 0.0460604 ,
0.0460604 , 0.0460604 , 0.0460604 , 0.06676014, 0.06676014,
0.06676014, 0.06676014, 0.09774256, 0.09774256, 0.09774256,
0.09774256, 0.14255583, 0.14255583, 0.14255583, 0.14255583,
0.20299886, 0.20299886, 0.20299886, 0.20299886, 0.27081681,
0.27081681, 0.27081681, 0.27081681, 0.32475714, 0.32475714,
0.32475714, 0.32475714, 0.36137899, 0.36137899, 0.36137899,
0.36137899, 0.38264177, 0.38264177, 0.38264177, 0.38264177,
0.39317093, 0.39317093, 0.39317093, 0.39317093, 0.39764064,
0.39764064, 0.39764064, 0.39764064, 0.3992806 , 0.3992806 ,
0.3992806 , 0.3992806 , 0.39980539, 0.39980539, 0.39980539,
0.39980539, 0.39995307, 0.39995307, 0.39995307, 0.39995307,
0.39998987, 0.39998987, 0.39998987, 0.39998987, 0.39999804,
0.39999804, 0.39999804, 0.39999804, 0.39999966, 0.39999966,
0.39999966, 0.39999966, 0.39999995, 0.39999995, 0.39999995,
0.39999995, 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999992, 0.99999992, 0.99999992, 0.99999992,
0.9999995 , 0.9999995 , 0.9999995 , 0.9999995 , 0.99999723,
0.99999723, 0.99999723, 0.99999723, 0.99998603, 0.99998603,
0.99998603, 0.99998603, 0.99993626, 0.99993626, 0.99993626,
0.99993626, 0.99973797, 0.99973797, 0.99973797, 0.99973797,
0.99903226, 0.99903226, 0.99903226, 0.99903226, 0.99680035,
0.99680035, 0.99680035, 0.99680035, 0.9905648 , 0.9905648 ,
0.9905648 , 0.9905648 , 0.97527455, 0.97527455, 0.97527455,
0.97527455, 0.94256862, 0.94256862, 0.94256862, 0.94256862,
0.88183579, 0.88183579, 0.88183579, 0.88183579, 0.78418099,
0.78418099, 0.78418099, 0.78418099, 0.64735855, 0.64735855,
0.64735855, 0.64735855, 0.48541238, 0.48541238, 0.48541238,
0.48541238, 0.34650377, 0.34650377, 0.34650377, 0.34650377,
0.24248092, 0.24248092, 0.24248092, 0.24248092, 0.1691994 ,
0.1691994 , 0.1691994 , 0.1691994 , 0.11970527, 0.11970527,
0.11970527, 0.11970527, 0.08740499, 0.08740499, 0.08740499,
0.08740499, 0.06712094, 0.06712094, 0.06712094, 0.06712094,
0.05538396, 0.05538396, 0.05538396, 0.05538396, 0.04951554,
0.04951554, 0.04951554, 0.04951554, 0.04951554, 0.04951554,
0.04951554, 0.04951554, 0.05538396, 0.05538396, 0.05538396,
0.05538396, 0.06712094, 0.06712094, 0.06712094, 0.06712094,
0.08740499, 0.08740499, 0.08740499, 0.08740499, 0.11970527,
0.11970527, 0.11970527, 0.11970527, 0.1691994 , 0.1691994 ,
0.1691994 , 0.1691994 , 0.24248092, 0.24248092, 0.24248092,
0.24248092, 0.34650377, 0.34650377, 0.34650377, 0.34650377,
0.48541238, 0.48541238, 0.48541238, 0.48541238, 0.64735855,
0.64735855, 0.64735855, 0.64735855, 0.78418099, 0.78418099,
0.78418099, 0.78418099, 0.88183579, 0.88183579, 0.88183579,
0.88183579, 0.94256862, 0.94256862, 0.94256862, 0.94256862,
0.97527455, 0.97527455, 0.97527455, 0.97527455, 0.9905648 ,
0.9905648 , 0.9905648 , 0.9905648 , 0.99680035, 0.99680035,
0.99680035, 0.99680035, 0.99903226, 0.99903226, 0.99903226,
0.99903226, 0.99973797, 0.99973797, 0.99973797, 0.99973797,
0.99993626, 0.99993626, 0.99993626, 0.99993626, 0.99998603,
0.99998603, 0.99998603, 0.99998603, 0.99999723, 0.99999723,
0.99999723, 0.99999723, 0.9999995 , 0.9999995 , 0.9999995 ,
0.9999995 , 0.99999992, 0.99999992, 0.99999992, 0.99999992,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999999, -1.99999999, -1.99999999,
-1.99999999, -1.99999994, -1.99999994, -1.99999994, -1.99999994,
-1.99999963, -1.99999963, -1.99999963, -1.99999963, -1.99999794,
-1.99999794, -1.99999794, -1.99999794, -1.99998958, -1.99998958,
-1.99998958, -1.99998958, -1.99995256, -1.99995256, -1.99995256,
-1.99995256, -1.99980549, -1.99980549, -1.99980549, -1.99980549,
-1.99928452, -1.99928452, -1.99928452, -1.99928452, -1.99764753,
-1.99764753, -1.99764753, -1.99764753, -1.99311048, -1.99311048,
-1.99311048, -1.99311048, -1.98206428, -1.98206428, -1.98206428,
-1.98206428, -1.95844341, -1.95844341, -1.95844341, -1.95844341,
-1.91379852, -1.91379852, -1.91379852, -1.91379852, -1.83816147,
-1.83816147, -1.83816147, -1.83816147, -1.72200283, -1.72200283,
-1.72200283, -1.72200283, -1.5686055 , -1.5686055 , -1.5686055 ,
-1.5686055 , -1.39383447, -1.39383447, -1.39383447, -1.39383447,
-1.20815672, -1.20815672, -1.20815672, -1.20815672, -1.0169296 ,
-1.0169296 , -1.0169296 , -1.0169296 , -0.82477131, -0.82477131,
-0.82477131, -0.82477131, -0.6364046 , -0.6364046 , -0.6364046 ,
-0.6364046 , -0.4547917 , -0.4547917 , -0.4547917 , -0.4547917 ,
-0.2790745 , -0.2790745 , -0.2790745 , -0.2790745 , -0.11151766,
-0.11151766, -0.11151766, -0.11151766, 0.11151766, 0.11151766,
0.11151766, 0.11151766, 0.2790745 , 0.2790745 , 0.2790745 ,
0.2790745 , 0.4547917 , 0.4547917 , 0.4547917 , 0.4547917 ,
0.6364046 , 0.6364046 , 0.6364046 , 0.6364046 , 0.82477131,
0.82477131, 0.82477131, 0.82477131, 1.0169296 , 1.0169296 ,
1.0169296 , 1.0169296 , 1.20815672, 1.20815672, 1.20815672,
1.20815672, 1.39383447, 1.39383447, 1.39383447, 1.39383447,
1.5686055 , 1.5686055 , 1.5686055 , 1.5686055 , 1.72200283,
1.72200283, 1.72200283, 1.72200283, 1.83816147, 1.83816147,
1.83816147, 1.83816147, 1.91379852, 1.91379852, 1.91379852,
1.91379852, 1.95844341, 1.95844341, 1.95844341, 1.95844341,
1.98206428, 1.98206428, 1.98206428, 1.98206428, 1.99311048,
1.99311048, 1.99311048, 1.99311048, 1.99764753, 1.99764753,
1.99764753, 1.99764753, 1.99928452, 1.99928452, 1.99928452,
1.99928452, 1.99980549, 1.99980549, 1.99980549, 1.99980549,
1.99995256, 1.99995256, 1.99995256, 1.99995256, 1.99998958,
1.99998958, 1.99998958, 1.99998958, 1.99999794, 1.99999794,
1.99999794, 1.99999794, 1.99999963, 1.99999963, 1.99999963,
1.99999963, 1.99999994, 1.99999994, 1.99999994, 1.99999994,
1.99999999, 1.99999999, 1.99999999, 1.99999999, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.39999995, 0.39999995, 0.39999995, 0.39999995,
0.39999972, 0.39999972, 0.39999972, 0.39999972, 0.39999845,
0.39999845, 0.39999845, 0.39999845, 0.3999922 , 0.3999922 ,
0.3999922 , 0.3999922 , 0.3999645 , 0.3999645 , 0.3999645 ,
0.3999645 , 0.39985447, 0.39985447, 0.39985447, 0.39985447,
0.39946494, 0.39946494, 0.39946494, 0.39946494, 0.39824326,
0.39824326, 0.39824326, 0.39824326, 0.39487515, 0.39487515,
0.39487515, 0.39487515, 0.38678213, 0.38678213, 0.38678213,
0.38678213, 0.36997261, 0.36997261, 0.36997261, 0.36997261,
0.33997315, 0.33997315, 0.33997315, 0.33997315, 0.29399724,
0.29399724, 0.29399724, 0.29399724, 0.23259591, 0.23259591,
0.23259591, 0.23259591, 0.16883656, 0.16883656, 0.16883656,
0.16883656, 0.1184801 , 0.1184801 , 0.1184801 , 0.1184801 ,
0.08215271, 0.08215271, 0.08215271, 0.08215271, 0.05707693,
0.05707693, 0.05707693, 0.05707693, 0.04021806, 0.04021806,
0.04021806, 0.04021806, 0.02909278, 0.02909278, 0.02909278,
0.02909278, 0.02186882, 0.02186882, 0.02186882, 0.02186882,
0.01748226, 0.01748226, 0.01748226, 0.01748226, 0.01516957,
0.01516957, 0.01516957, 0.01516957, 0.01516957, 0.01516957,
0.01516957, 0.01516957, 0.01748226, 0.01748226, 0.01748226,
0.01748226, 0.02186882, 0.02186882, 0.02186882, 0.02186882,
0.02909278, 0.02909278, 0.02909278, 0.02909278, 0.04021806,
0.04021806, 0.04021806, 0.04021806, 0.05707693, 0.05707693,
0.05707693, 0.05707693, 0.08215271, 0.08215271, 0.08215271,
0.08215271, 0.1184801 , 0.1184801 , 0.1184801 , 0.1184801 ,
0.16883656, 0.16883656, 0.16883656, 0.16883656, 0.23259591,
0.23259591, 0.23259591, 0.23259591, 0.29399724, 0.29399724,
0.29399724, 0.29399724, 0.33997315, 0.33997315, 0.33997315,
0.33997315, 0.36997261, 0.36997261, 0.36997261, 0.36997261,
0.38678213, 0.38678213, 0.38678213, 0.38678213, 0.39487515,
0.39487515, 0.39487515, 0.39487515, 0.39824326, 0.39824326,
0.39824326, 0.39824326, 0.39946494, 0.39946494, 0.39946494,
0.39946494, 0.39985447, 0.39985447, 0.39985447, 0.39985447,
0.3999645 , 0.3999645 , 0.3999645 , 0.3999645 , 0.3999922 ,
0.3999922 , 0.3999922 , 0.3999922 , 0.39999845, 0.39999845,
0.39999845, 0.39999845, 0.39999972, 0.39999972, 0.39999972,
0.39999972, 0.39999995, 0.39999995, 0.39999995, 0.39999995,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999993, 0.99999993, 0.99999993,
0.99999993, 0.9999996 , 0.9999996 , 0.9999996 , 0.9999996 ,
0.99999783, 0.99999783, 0.99999783, 0.99999783, 0.99998928,
0.99998928, 0.99998928, 0.99998928, 0.99995186, 0.99995186,
0.99995186, 0.99995186, 0.99980426, 0.99980426, 0.99980426,
0.99980426, 0.99928131, 0.99928131, 0.99928131, 0.99928131,
0.99762508, 0.99762508, 0.99762508, 0.99762508, 0.99296268,
0.99296268, 0.99296268, 0.99296268, 0.98136837, 0.98136837,
0.98136837, 0.98136837, 0.95605219, 0.95605219, 0.95605219,
0.95605219, 0.90775469, 0.90775469, 0.90775469, 0.90775469,
0.8274799 , 0.8274799 , 0.8274799 , 0.8274799 , 0.71123499,
0.71123499, 0.71123499, 0.71123499, 0.56257394, 0.56257394,
0.56257394, 0.56257394, 0.41482443, 0.41482443, 0.41482443,
0.41482443, 0.29735686, 0.29735686, 0.29735686, 0.29735686,
0.21063026, 0.21063026, 0.21063026, 0.21063026, 0.14950195,
0.14950195, 0.14950195, 0.14950195, 0.10795008, 0.10795008,
0.10795008, 0.10795008, 0.08045076, 0.08045076, 0.08045076,
0.08045076, 0.06299373, 0.06299373, 0.06299373, 0.06299373,
0.05273851, 0.05273851, 0.05273851, 0.05273851, 0.04747753,
0.04747753, 0.04747753, 0.04747753, 0.04747753, 0.04747753,
0.04747753, 0.04747753, 0.05273851, 0.05273851, 0.05273851,
0.05273851, 0.06299373, 0.06299373, 0.06299373, 0.06299373,
0.08045076, 0.08045076, 0.08045076, 0.08045076, 0.10795008,
0.10795008, 0.10795008, 0.10795008, 0.14950195, 0.14950195,
0.14950195, 0.14950195, 0.21063026, 0.21063026, 0.21063026,
0.21063026, 0.29735686, 0.29735686, 0.29735686, 0.29735686,
0.41482443, 0.41482443, 0.41482443, 0.41482443, 0.56257394,
0.56257394, 0.56257394, 0.56257394, 0.71123499, 0.71123499,
0.71123499, 0.71123499, 0.8274799 , 0.8274799 , 0.8274799 ,
0.8274799 , 0.90775469, 0.90775469, 0.90775469, 0.90775469,
0.95605219, 0.95605219, 0.95605219, 0.95605219, 0.98136837,
0.98136837, 0.98136837, 0.98136837, 0.99296268, 0.99296268,
0.99296268, 0.99296268, 0.99762508, 0.99762508, 0.99762508,
0.99762508, 0.99928131, 0.99928131, 0.99928131, 0.99928131,
0.99980426, 0.99980426, 0.99980426, 0.99980426, 0.99995186,
0.99995186, 0.99995186, 0.99995186, 0.99998928, 0.99998928,
0.99998928, 0.99998928, 0.99999783, 0.99999783, 0.99999783,
0.99999783, 0.9999996 , 0.9999996 , 0.9999996 , 0.9999996 ,
0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999999,
0.99999999, 0.99999999, 0.99999999, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999995, -1.99999995, -1.99999995,
-1.99999995, -1.9999997 , -1.9999997 , -1.9999997 , -1.9999997 ,
-1.99999838, -1.99999838, -1.99999838, -1.99999838, -1.999992 ,
-1.999992 , -1.999992 , -1.999992 , -1.99996412, -1.99996412,
-1.99996412, -1.99996412, -1.9998544 , -1.9998544 , -1.9998544 ,
-1.9998544 , -1.99946704, -1.99946704, -1.99946704, -1.99946704,
-1.99824645, -1.99824645, -1.99824645, -1.99824645, -1.99483254,
-1.99483254, -1.99483254, -1.99483254, -1.98639614, -1.98639614,
-1.98639614, -1.98639614, -1.96800734, -1.96800734, -1.96800734,
-1.96800734, -1.93252426, -1.93252426, -1.93252426, -1.93252426,
-1.87126626, -1.87126626, -1.87126626, -1.87126626, -1.7751206 ,
-1.7751206 , -1.7751206 , -1.7751206 , -1.64074768, -1.64074768,
-1.64074768, -1.64074768, -1.48098841, -1.48098841, -1.48098841,
-1.48098841, -1.30798639, -1.30798639, -1.30798639, -1.30798639,
-1.12825891, -1.12825891, -1.12825891, -1.12825891, -0.94534791,
-0.94534791, -0.94534791, -0.94534791, -0.76396357, -0.76396357,
-0.76396357, -0.76396357, -0.58764765, -0.58764765, -0.58764765,
-0.58764765, -0.41836529, -0.41836529, -0.41836529, -0.41836529,
-0.25542058, -0.25542058, -0.25542058, -0.25542058, -0.10187127,
-0.10187127, -0.10187127, -0.10187127, 0.10187127, 0.10187127,
0.10187127, 0.10187127, 0.25542058, 0.25542058, 0.25542058,
0.25542058, 0.41836529, 0.41836529, 0.41836529, 0.41836529,
0.58764765, 0.58764765, 0.58764765, 0.58764765, 0.76396357,
0.76396357, 0.76396357, 0.76396357, 0.94534791, 0.94534791,
0.94534791, 0.94534791, 1.12825891, 1.12825891, 1.12825891,
1.12825891, 1.30798639, 1.30798639, 1.30798639, 1.30798639,
1.48098841, 1.48098841, 1.48098841, 1.48098841, 1.64074768,
1.64074768, 1.64074768, 1.64074768, 1.7751206 , 1.7751206 ,
1.7751206 , 1.7751206 , 1.87126626, 1.87126626, 1.87126626,
1.87126626, 1.93252426, 1.93252426, 1.93252426, 1.93252426,
1.96800734, 1.96800734, 1.96800734, 1.96800734, 1.98639614,
1.98639614, 1.98639614, 1.98639614, 1.99483254, 1.99483254,
1.99483254, 1.99483254, 1.99824645, 1.99824645, 1.99824645,
1.99824645, 1.99946704, 1.99946704, 1.99946704, 1.99946704,
1.9998544 , 1.9998544 , 1.9998544 , 1.9998544 , 1.99996412,
1.99996412, 1.99996412, 1.99996412, 1.999992 , 1.999992 ,
1.999992 , 1.999992 , 1.99999838, 1.99999838, 1.99999838,
1.99999838, 1.9999997 , 1.9999997 , 1.9999997 , 1.9999997 ,
1.99999995, 1.99999995, 1.99999995, 1.99999995, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999996, 0.39999996, 0.39999996,
0.39999996, 0.39999978, 0.39999978, 0.39999978, 0.39999978,
0.39999879, 0.39999879, 0.39999879, 0.39999879, 0.39999401,
0.39999401, 0.39999401, 0.39999401, 0.39997315, 0.39997315,
0.39997315, 0.39997315, 0.39989106, 0.39989106, 0.39989106,
0.39989106, 0.39960137, 0.39960137, 0.39960137, 0.39960137,
0.39868982, 0.39868982, 0.39868982, 0.39868982, 0.39615045,
0.39615045, 0.39615045, 0.39615045, 0.38993783, 0.38993783,
0.38993783, 0.38993783, 0.37669775, 0.37669775, 0.37669775,
0.37669775, 0.35227852, 0.35227852, 0.35227852, 0.35227852,
0.31341098, 0.31341098, 0.31341098, 0.31341098, 0.25954489,
0.25954489, 0.25954489, 0.25954489, 0.19612856, 0.19612856,
0.19612856, 0.19612856, 0.14111015, 0.14111015, 0.14111015,
0.14111015, 0.09961622, 0.09961622, 0.09961622, 0.09961622,
0.06999558, 0.06999558, 0.06999558, 0.06999558, 0.04947879,
0.04947879, 0.04947879, 0.04947879, 0.03558078, 0.03558078,
0.03558078, 0.03558078, 0.02625646, 0.02625646, 0.02625646,
0.02625646, 0.02012156, 0.02012156, 0.02012156, 0.02012156,
0.01634356, 0.01634356, 0.01634356, 0.01634356, 0.01429955,
0.01429955, 0.01429955, 0.01429955, 0.01429955, 0.01429955,
0.01429955, 0.01429955, 0.01634356, 0.01634356, 0.01634356,
0.01634356, 0.02012156, 0.02012156, 0.02012156, 0.02012156,
0.02625646, 0.02625646, 0.02625646, 0.02625646, 0.03558078,
0.03558078, 0.03558078, 0.03558078, 0.04947879, 0.04947879,
0.04947879, 0.04947879, 0.06999558, 0.06999558, 0.06999558,
0.06999558, 0.09961622, 0.09961622, 0.09961622, 0.09961622,
0.14111015, 0.14111015, 0.14111015, 0.14111015, 0.19612856,
0.19612856, 0.19612856, 0.19612856, 0.25954489, 0.25954489,
0.25954489, 0.25954489, 0.31341098, 0.31341098, 0.31341098,
0.31341098, 0.35227852, 0.35227852, 0.35227852, 0.35227852,
0.37669775, 0.37669775, 0.37669775, 0.37669775, 0.38993783,
0.38993783, 0.38993783, 0.38993783, 0.39615045, 0.39615045,
0.39615045, 0.39615045, 0.39868982, 0.39868982, 0.39868982,
0.39868982, 0.39960137, 0.39960137, 0.39960137, 0.39960137,
0.39989106, 0.39989106, 0.39989106, 0.39989106, 0.39997315,
0.39997315, 0.39997315, 0.39997315, 0.39999401, 0.39999401,
0.39999401, 0.39999401, 0.39999879, 0.39999879, 0.39999879,
0.39999879, 0.39999978, 0.39999978, 0.39999978, 0.39999978,
0.39999996, 0.39999996, 0.39999996, 0.39999996, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999968, 0.99999968, 0.99999968,
0.99999968, 0.99999831, 0.99999831, 0.99999831, 0.99999831,
0.99999178, 0.99999178, 0.99999178, 0.99999178, 0.99996362,
0.99996362, 0.99996362, 0.99996362, 0.99985355, 0.99985355,
0.99985355, 0.99985355, 0.99946503, 0.99946503, 0.99946503,
0.99946503, 0.99823265, 0.99823265, 0.99823265, 0.99823265,
0.99473829, 0.99473829, 0.99473829, 0.99473829, 0.98593371,
0.98593371, 0.98593371, 0.98593371, 0.96633684, 0.96633684,
0.96633684, 0.96633684, 0.92800166, 0.92800166, 0.92800166,
0.92800166, 0.86230381, 0.86230381, 0.86230381, 0.86230381,
0.7637657 , 0.7637657 , 0.7637657 , 0.7637657 , 0.63342418,
0.63342418, 0.63342418, 0.63342418, 0.48532735, 0.48532735,
0.48532735, 0.48532735, 0.3572482 , 0.3572482 , 0.3572482 ,
0.3572482 , 0.25800772, 0.25800772, 0.25800772, 0.25800772,
0.18513694, 0.18513694, 0.18513694, 0.18513694, 0.13365751,
0.13365751, 0.13365751, 0.13365751, 0.09833623, 0.09833623,
0.09833623, 0.09833623, 0.07466504, 0.07466504, 0.07466504,
0.07466504, 0.05948054, 0.05948054, 0.05948054, 0.05948054,
0.05044055, 0.05044055, 0.05044055, 0.05044055, 0.04569117,
0.04569117, 0.04569117, 0.04569117, 0.04569117, 0.04569117,
0.04569117, 0.04569117, 0.05044055, 0.05044055, 0.05044055,
0.05044055, 0.05948054, 0.05948054, 0.05948054, 0.05948054,
0.07466504, 0.07466504, 0.07466504, 0.07466504, 0.09833623,
0.09833623, 0.09833623, 0.09833623, 0.13365751, 0.13365751,
0.13365751, 0.13365751, 0.18513694, 0.18513694, 0.18513694,
0.18513694, 0.25800772, 0.25800772, 0.25800772, 0.25800772,
0.3572482 , 0.3572482 , 0.3572482 , 0.3572482 , 0.48532735,
0.48532735, 0.48532735, 0.48532735, 0.63342418, 0.63342418,
0.63342418, 0.63342418, 0.7637657 , 0.7637657 , 0.7637657 ,
0.7637657 , 0.86230381, 0.86230381, 0.86230381, 0.86230381,
0.92800166, 0.92800166, 0.92800166, 0.92800166, 0.96633684,
0.96633684, 0.96633684, 0.96633684, 0.98593371, 0.98593371,
0.98593371, 0.98593371, 0.99473829, 0.99473829, 0.99473829,
0.99473829, 0.99823265, 0.99823265, 0.99823265, 0.99823265,
0.99946503, 0.99946503, 0.99946503, 0.99946503, 0.99985355,
0.99985355, 0.99985355, 0.99985355, 0.99996362, 0.99996362,
0.99996362, 0.99996362, 0.99999178, 0.99999178, 0.99999178,
0.99999178, 0.99999831, 0.99999831, 0.99999831, 0.99999831,
0.99999968, 0.99999968, 0.99999968, 0.99999968, 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.99999999, 0.99999999,
0.99999999, 0.99999999, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.99999996, -1.99999996,
-1.99999996, -1.99999996, -1.99999976, -1.99999976, -1.99999976,
-1.99999976, -1.99999873, -1.99999873, -1.99999873, -1.99999873,
-1.99999386, -1.99999386, -1.99999386, -1.99999386, -1.99997286,
-1.99997286, -1.99997286, -1.99997286, -1.9998909 , -1.9998909 ,
-1.9998909 , -1.9998909 , -1.99960238, -1.99960238, -1.99960238,
-1.99960238, -1.99869083, -1.99869083, -1.99869083, -1.99869083,
-1.99611953, -1.99611953, -1.99611953, -1.99611953, -1.98967558,
-1.98967558, -1.98967558, -1.98967558, -1.97536781, -1.97536781,
-1.97536781, -1.97536781, -1.94718001, -1.94718001, -1.94718001,
-1.94718001, -1.89752562, -1.89752562, -1.89752562, -1.89752562,
-1.81822132, -1.81822132, -1.81822132, -1.81822132, -1.70275847,
-1.70275847, -1.70275847, -1.70275847, -1.55796713, -1.55796713,
-1.55796713, -1.55796713, -1.39732578, -1.39732578, -1.39732578,
-1.39732578, -1.2283551 , -1.2283551 , -1.2283551 , -1.2283551 ,
-1.05514603, -1.05514603, -1.05514603, -1.05514603, -0.8809212 ,
-0.8809212 , -0.8809212 , -0.8809212 , -0.70967418, -0.70967418,
-0.70967418, -0.70967418, -0.54426035, -0.54426035, -0.54426035,
-0.54426035, -0.38602243, -0.38602243, -0.38602243, -0.38602243,
-0.23441347, -0.23441347, -0.23441347, -0.23441347, -0.09330473,
-0.09330473, -0.09330473, -0.09330473, 0.09330473, 0.09330473,
0.09330473, 0.09330473, 0.23441347, 0.23441347, 0.23441347,
0.23441347, 0.38602243, 0.38602243, 0.38602243, 0.38602243,
0.54426035, 0.54426035, 0.54426035, 0.54426035, 0.70967418,
0.70967418, 0.70967418, 0.70967418, 0.8809212 , 0.8809212 ,
0.8809212 , 0.8809212 , 1.05514603, 1.05514603, 1.05514603,
1.05514603, 1.2283551 , 1.2283551 , 1.2283551 , 1.2283551 ,
1.39732578, 1.39732578, 1.39732578, 1.39732578, 1.55796713,
1.55796713, 1.55796713, 1.55796713, 1.70275847, 1.70275847,
1.70275847, 1.70275847, 1.81822132, 1.81822132, 1.81822132,
1.81822132, 1.89752562, 1.89752562, 1.89752562, 1.89752562,
1.94718001, 1.94718001, 1.94718001, 1.94718001, 1.97536781,
1.97536781, 1.97536781, 1.97536781, 1.98967558, 1.98967558,
1.98967558, 1.98967558, 1.99611953, 1.99611953, 1.99611953,
1.99611953, 1.99869083, 1.99869083, 1.99869083, 1.99869083,
1.99960238, 1.99960238, 1.99960238, 1.99960238, 1.9998909 ,
1.9998909 , 1.9998909 , 1.9998909 , 1.99997286, 1.99997286,
1.99997286, 1.99997286, 1.99999386, 1.99999386, 1.99999386,
1.99999386, 1.99999873, 1.99999873, 1.99999873, 1.99999873,
1.99999976, 1.99999976, 1.99999976, 1.99999976, 1.99999996,
1.99999996, 1.99999996, 1.99999996, 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.39999982, 0.39999982, 0.39999982,
0.39999982, 0.39999905, 0.39999905, 0.39999905, 0.39999905,
0.39999541, 0.39999541, 0.39999541, 0.39999541, 0.39997969,
0.39997969, 0.39997969, 0.39997969, 0.39991836, 0.39991836,
0.39991836, 0.39991836, 0.39970256, 0.39970256, 0.39970256,
0.39970256, 0.39902146, 0.39902146, 0.39902146, 0.39902146,
0.39710599, 0.39710599, 0.39710599, 0.39710599, 0.39234224,
0.39234224, 0.39234224, 0.39234224, 0.38194788, 0.38194788,
0.38194788, 0.38194788, 0.36218582, 0.36218582, 0.36218582,
0.36218582, 0.32957587, 0.32957587, 0.32957587, 0.32957587,
0.28277833, 0.28277833, 0.28277833, 0.28277833, 0.22349797,
0.22349797, 0.22349797, 0.22349797, 0.16521855, 0.16521855,
0.16521855, 0.16521855, 0.11894933, 0.11894933, 0.11894933,
0.11894933, 0.08476462, 0.08476462, 0.08476462, 0.08476462,
0.06039836, 0.06039836, 0.06039836, 0.06039836, 0.04344652,
0.04344652, 0.04344652, 0.04344652, 0.03183454, 0.03183454,
0.03183454, 0.03183454, 0.02392348, 0.02392348, 0.02392348,
0.02392348, 0.01865463, 0.01865463, 0.01865463, 0.01865463,
0.01537017, 0.01537017, 0.01537017, 0.01537017, 0.01354907,
0.01354907, 0.01354907, 0.01354907, 0.01354907, 0.01354907,
0.01354907, 0.01354907, 0.01537017, 0.01537017, 0.01537017,
0.01537017, 0.01865463, 0.01865463, 0.01865463, 0.01865463,
0.02392348, 0.02392348, 0.02392348, 0.02392348, 0.03183454,
0.03183454, 0.03183454, 0.03183454, 0.04344652, 0.04344652,
0.04344652, 0.04344652, 0.06039836, 0.06039836, 0.06039836,
0.06039836, 0.08476462, 0.08476462, 0.08476462, 0.08476462,
0.11894933, 0.11894933, 0.11894933, 0.11894933, 0.16521855,
0.16521855, 0.16521855, 0.16521855, 0.22349797, 0.22349797,
0.22349797, 0.22349797, 0.28277833, 0.28277833, 0.28277833,
0.28277833, 0.32957587, 0.32957587, 0.32957587, 0.32957587,
0.36218582, 0.36218582, 0.36218582, 0.36218582, 0.38194788,
0.38194788, 0.38194788, 0.38194788, 0.39234224, 0.39234224,
0.39234224, 0.39234224, 0.39710599, 0.39710599, 0.39710599,
0.39710599, 0.39902146, 0.39902146, 0.39902146, 0.39902146,
0.39970256, 0.39970256, 0.39970256, 0.39970256, 0.39991836,
0.39991836, 0.39991836, 0.39991836, 0.39997969, 0.39997969,
0.39997969, 0.39997969, 0.39999541, 0.39999541, 0.39999541,
0.39999541, 0.39999905, 0.39999905, 0.39999905, 0.39999905,
0.39999982, 0.39999982, 0.39999982, 0.39999982, 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999975, 0.99999975,
0.99999975, 0.99999975, 0.99999868, 0.99999868, 0.99999868,
0.99999868, 0.99999371, 0.99999371, 0.99999371, 0.99999371,
0.99997251, 0.99997251, 0.99997251, 0.99997251, 0.99989028,
0.99989028, 0.99989028, 0.99989028, 0.99960101, 0.99960101,
0.99960101, 0.99960101, 0.99868193, 0.99868193, 0.99868193,
0.99868193, 0.99605802, 0.99605802, 0.99605802, 0.99605802,
0.98936469, 0.98936469, 0.98936469, 0.98936469, 0.97419766,
0.97419766, 0.97419766, 0.97419766, 0.94382586, 0.94382586,
0.94382586, 0.94382586, 0.89027011, 0.89027011, 0.89027011,
0.89027011, 0.80722138, 0.80722138, 0.80722138, 0.80722138,
0.69386278, 0.69386278, 0.69386278, 0.69386278, 0.55552979,
0.55552979, 0.55552979, 0.55552979, 0.42047088, 0.42047088,
0.42047088, 0.42047088, 0.31041417, 0.31041417, 0.31041417,
0.31041417, 0.22624719, 0.22624719, 0.22624719, 0.22624719,
0.16451704, 0.16451704, 0.16451704, 0.16451704, 0.12073053,
0.12073053, 0.12073053, 0.12073053, 0.09035898, 0.09035898,
0.09035898, 0.09035898, 0.06979381, 0.06979381, 0.06979381,
0.06979381, 0.05645555, 0.05645555, 0.05645555, 0.05645555,
0.04842794, 0.04842794, 0.04842794, 0.04842794, 0.04411581,
0.04411581, 0.04411581, 0.04411581, 0.04411581, 0.04411581,
0.04411581, 0.04411581, 0.04842794, 0.04842794, 0.04842794,
0.04842794, 0.05645555, 0.05645555, 0.05645555, 0.05645555,
0.06979381, 0.06979381, 0.06979381, 0.06979381, 0.09035898,
0.09035898, 0.09035898, 0.09035898, 0.12073053, 0.12073053,
0.12073053, 0.12073053, 0.16451704, 0.16451704, 0.16451704,
0.16451704, 0.22624719, 0.22624719, 0.22624719, 0.22624719,
0.31041417, 0.31041417, 0.31041417, 0.31041417, 0.42047088,
0.42047088, 0.42047088, 0.42047088, 0.55552979, 0.55552979,
0.55552979, 0.55552979, 0.69386278, 0.69386278, 0.69386278,
0.69386278, 0.80722138, 0.80722138, 0.80722138, 0.80722138,
0.89027011, 0.89027011, 0.89027011, 0.89027011, 0.94382586,
0.94382586, 0.94382586, 0.94382586, 0.97419766, 0.97419766,
0.97419766, 0.97419766, 0.98936469, 0.98936469, 0.98936469,
0.98936469, 0.99605802, 0.99605802, 0.99605802, 0.99605802,
0.99868193, 0.99868193, 0.99868193, 0.99868193, 0.99960101,
0.99960101, 0.99960101, 0.99960101, 0.99989028, 0.99989028,
0.99989028, 0.99989028, 0.99997251, 0.99997251, 0.99997251,
0.99997251, 0.99999371, 0.99999371, 0.99999371, 0.99999371,
0.99999868, 0.99999868, 0.99999868, 0.99999868, 0.99999975,
0.99999975, 0.99999975, 0.99999975, 0.99999996, 0.99999996,
0.99999996, 0.99999996, 0.99999999, 0.99999999, 0.99999999,
0.99999999, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999997,
-1.99999997, -1.99999997, -1.99999997, -1.99999981, -1.99999981,
-1.99999981, -1.99999981, -1.99999901, -1.99999901, -1.99999901,
-1.99999901, -1.9999953 , -1.9999953 , -1.9999953 , -1.9999953 ,
-1.99997947, -1.99997947, -1.99997947, -1.99997947, -1.99991817,
-1.99991817, -1.99991817, -1.99991817, -1.99970295, -1.99970295,
-1.99970295, -1.99970295, -1.99902124, -1.99902124, -1.99902124,
-1.99902124, -1.99708302, -1.99708302, -1.99708302, -1.99708302,
-1.99216124, -1.99216124, -1.99216124, -1.99216124, -1.98103831,
-1.98103831, -1.98103831, -1.98103831, -1.95867062, -1.95867062,
-1.95867062, -1.95867062, -1.91844218, -1.91844218, -1.91844218,
-1.91844218, -1.85300303, -1.85300303, -1.85300303, -1.85300303,
-1.75534443, -1.75534443, -1.75534443, -1.75534443, -1.62587543,
-1.62587543, -1.62587543, -1.62587543, -1.47723802, -1.47723802,
-1.47723802, -1.47723802, -1.31873327, -1.31873327, -1.31873327,
-1.31873327, -1.1548521 , -1.1548521 , -1.1548521 , -1.1548521 ,
-0.98840454, -0.98840454, -0.98840454, -0.98840454, -0.82281519,
-0.82281519, -0.82281519, -0.82281519, -0.66100451, -0.66100451,
-0.66100451, -0.66100451, -0.50540566, -0.50540566, -0.50540566,
-0.50540566, -0.35713663, -0.35713663, -0.35713663, -0.35713663,
-0.21564818, -0.21564818, -0.21564818, -0.21564818, -0.08565761,
-0.08565761, -0.08565761, -0.08565761, 0.08565761, 0.08565761,
0.08565761, 0.08565761, 0.21564818, 0.21564818, 0.21564818,
0.21564818, 0.35713663, 0.35713663, 0.35713663, 0.35713663,
0.50540566, 0.50540566, 0.50540566, 0.50540566, 0.66100451,
0.66100451, 0.66100451, 0.66100451, 0.82281519, 0.82281519,
0.82281519, 0.82281519, 0.98840454, 0.98840454, 0.98840454,
0.98840454, 1.1548521 , 1.1548521 , 1.1548521 , 1.1548521 ,
1.31873327, 1.31873327, 1.31873327, 1.31873327, 1.47723802,
1.47723802, 1.47723802, 1.47723802, 1.62587543, 1.62587543,
1.62587543, 1.62587543, 1.75534443, 1.75534443, 1.75534443,
1.75534443, 1.85300303, 1.85300303, 1.85300303, 1.85300303,
1.91844218, 1.91844218, 1.91844218, 1.91844218, 1.95867062,
1.95867062, 1.95867062, 1.95867062, 1.98103831, 1.98103831,
1.98103831, 1.98103831, 1.99216124, 1.99216124, 1.99216124,
1.99216124, 1.99708302, 1.99708302, 1.99708302, 1.99708302,
1.99902124, 1.99902124, 1.99902124, 1.99902124, 1.99970295,
1.99970295, 1.99970295, 1.99970295, 1.99991817, 1.99991817,
1.99991817, 1.99991817, 1.99997947, 1.99997947, 1.99997947,
1.99997947, 1.9999953 , 1.9999953 , 1.9999953 , 1.9999953 ,
1.99999901, 1.99999901, 1.99999901, 1.99999901, 1.99999981,
1.99999981, 1.99999981, 1.99999981, 1.99999997, 1.99999997,
1.99999997, 1.99999997, 1.99999999, 1.99999999, 1.99999999,
1.99999999, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.39999986, 0.39999986,
0.39999986, 0.39999986, 0.39999926, 0.39999926, 0.39999926,
0.39999926, 0.39999648, 0.39999648, 0.39999648, 0.39999648,
0.39998464, 0.39998464, 0.39998464, 0.39998464, 0.39993877,
0.39993877, 0.39993877, 0.39993877, 0.39977777, 0.39977777,
0.39977777, 0.39977777, 0.39926821, 0.39926821, 0.39926821,
0.39926821, 0.39782273, 0.39782273, 0.39782273, 0.39782273,
0.39417358, 0.39417358, 0.39417358, 0.39417358, 0.38603726,
0.38603726, 0.38603726, 0.38603726, 0.37012752, 0.37012752,
0.37012752, 0.37012752, 0.34297519, 0.34297519, 0.34297519,
0.34297519, 0.30254848, 0.30254848, 0.30254848, 0.30254848,
0.24934358, 0.24934358, 0.24934358, 0.24934358, 0.19022025,
0.19022025, 0.19022025, 0.19022025, 0.13990083, 0.13990083,
0.13990083, 0.13990083, 0.10127816, 0.10127816, 0.10127816,
0.10127816, 0.07296711, 0.07296711, 0.07296711, 0.07296711,
0.05273961, 0.05273961, 0.05273961, 0.05273961, 0.03858578,
0.03858578, 0.03858578, 0.03858578, 0.02876121, 0.02876121,
0.02876121, 0.02876121, 0.02197969, 0.02197969, 0.02197969,
0.02197969, 0.01740798, 0.01740798, 0.01740798, 0.01740798,
0.01453013, 0.01453013, 0.01453013, 0.01453013, 0.01289683,
0.01289683, 0.01289683, 0.01289683, 0.01289683, 0.01289683,
0.01289683, 0.01289683, 0.01453013, 0.01453013, 0.01453013,
0.01453013, 0.01740798, 0.01740798, 0.01740798, 0.01740798,
0.02197969, 0.02197969, 0.02197969, 0.02197969, 0.02876121,
0.02876121, 0.02876121, 0.02876121, 0.03858578, 0.03858578,
0.03858578, 0.03858578, 0.05273961, 0.05273961, 0.05273961,
0.05273961, 0.07296711, 0.07296711, 0.07296711, 0.07296711,
0.10127816, 0.10127816, 0.10127816, 0.10127816, 0.13990083,
0.13990083, 0.13990083, 0.13990083, 0.19022025, 0.19022025,
0.19022025, 0.19022025, 0.24934358, 0.24934358, 0.24934358,
0.24934358, 0.30254848, 0.30254848, 0.30254848, 0.30254848,
0.34297519, 0.34297519, 0.34297519, 0.34297519, 0.37012752,
0.37012752, 0.37012752, 0.37012752, 0.38603726, 0.38603726,
0.38603726, 0.38603726, 0.39417358, 0.39417358, 0.39417358,
0.39417358, 0.39782273, 0.39782273, 0.39782273, 0.39782273,
0.39926821, 0.39926821, 0.39926821, 0.39926821, 0.39977777,
0.39977777, 0.39977777, 0.39977777, 0.39993877, 0.39993877,
0.39993877, 0.39993877, 0.39998464, 0.39998464, 0.39998464,
0.39998464, 0.39999648, 0.39999648, 0.39999648, 0.39999648,
0.39999926, 0.39999926, 0.39999926, 0.39999926, 0.39999986,
0.39999986, 0.39999986, 0.39999986, 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.9999998 ,
0.9999998 , 0.9999998 , 0.9999998 , 0.99999898, 0.99999898,
0.99999898, 0.99999898, 0.99999519, 0.99999519, 0.99999519,
0.99999519, 0.99997921, 0.99997921, 0.99997921, 0.99997921,
0.9999177 , 0.9999177 , 0.9999177 , 0.9999177 , 0.99970193,
0.99970193, 0.99970193, 0.99970193, 0.99901521, 0.99901521,
0.99901521, 0.99901521, 0.99704189, 0.99704189, 0.99704189,
0.99704189, 0.99194959, 0.99194959, 0.99194959, 0.99194959,
0.98021521, 0.98021521, 0.98021521, 0.98021521, 0.95619655,
0.95619655, 0.95619655, 0.95619655, 0.91269691, 0.91269691,
0.91269691, 0.91269691, 0.84311018, 0.84311018, 0.84311018,
0.84311018, 0.74475779, 0.74475779, 0.74475779, 0.74475779,
0.62086525, 0.62086525, 0.62086525, 0.62086525, 0.4851469 ,
0.4851469 , 0.4851469 , 0.4851469 , 0.36665175, 0.36665175,
0.36665175, 0.36665175, 0.27218245, 0.27218245, 0.27218245,
0.27218245, 0.20036728, 0.20036728, 0.20036728, 0.20036728,
0.14766957, 0.14766957, 0.14766957, 0.14766957, 0.11004216,
0.11004216, 0.11004216, 0.11004216, 0.08365907, 0.08365907,
0.08365907, 0.08365907, 0.06564286, 0.06564286, 0.06564286,
0.06564286, 0.05382506, 0.05382506, 0.05382506, 0.05382506,
0.04665258, 0.04665258, 0.04665258, 0.04665258, 0.04271899,
0.04271899, 0.04271899, 0.04271899, 0.04271899, 0.04271899,
0.04271899, 0.04271899, 0.04665258, 0.04665258, 0.04665258,
0.04665258, 0.05382506, 0.05382506, 0.05382506, 0.05382506,
0.06564286, 0.06564286, 0.06564286, 0.06564286, 0.08365907,
0.08365907, 0.08365907, 0.08365907, 0.11004216, 0.11004216,
0.11004216, 0.11004216, 0.14766957, 0.14766957, 0.14766957,
0.14766957, 0.20036728, 0.20036728, 0.20036728, 0.20036728,
0.27218245, 0.27218245, 0.27218245, 0.27218245, 0.36665175,
0.36665175, 0.36665175, 0.36665175, 0.4851469 , 0.4851469 ,
0.4851469 , 0.4851469 , 0.62086525, 0.62086525, 0.62086525,
0.62086525, 0.74475779, 0.74475779, 0.74475779, 0.74475779,
0.84311018, 0.84311018, 0.84311018, 0.84311018, 0.91269691,
0.91269691, 0.91269691, 0.91269691, 0.95619655, 0.95619655,
0.95619655, 0.95619655, 0.98021521, 0.98021521, 0.98021521,
0.98021521, 0.99194959, 0.99194959, 0.99194959, 0.99194959,
0.99704189, 0.99704189, 0.99704189, 0.99704189, 0.99901521,
0.99901521, 0.99901521, 0.99901521, 0.99970193, 0.99970193,
0.99970193, 0.99970193, 0.9999177 , 0.9999177 , 0.9999177 ,
0.9999177 , 0.99997921, 0.99997921, 0.99997921, 0.99997921,
0.99999519, 0.99999519, 0.99999519, 0.99999519, 0.99999898,
0.99999898, 0.99999898, 0.99999898, 0.9999998 , 0.9999998 ,
0.9999998 , 0.9999998 , 0.99999996, 0.99999996, 0.99999996,
0.99999996, 0.99999999, 0.99999999, 0.99999999, 0.99999999,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999997, -1.99999997, -1.99999997, -1.99999997, -1.99999985,
-1.99999985, -1.99999985, -1.99999985, -1.99999923, -1.99999923,
-1.99999923, -1.99999923, -1.9999964 , -1.9999964 , -1.9999964 ,
-1.9999964 , -1.99998447, -1.99998447, -1.99998447, -1.99998447,
-1.99993857, -1.99993857, -1.99993857, -1.99993857, -1.9997778 ,
-1.9997778 , -1.9997778 , -1.9997778 , -1.99926735, -1.99926735,
-1.99926735, -1.99926735, -1.99780536, -1.99780536, -1.99780536,
-1.99780536, -1.99404683, -1.99404683, -1.99404683, -1.99404683,
-1.98540873, -1.98540873, -1.98540873, -1.98540873, -1.96768674,
-1.96768674, -1.96768674, -1.96768674, -1.93513433, -1.93513433,
-1.93513433, -1.93513433, -1.88113567, -1.88113567, -1.88113567,
-1.88113567, -1.79913223, -1.79913223, -1.79913223, -1.79913223,
-1.68535351, -1.68535351, -1.68535351, -1.68535351, -1.548809 ,
-1.548809 , -1.548809 , -1.548809 , -1.40030833, -1.40030833,
-1.40030833, -1.40030833, -1.24549729, -1.24549729, -1.24549729,
-1.24549729, -1.08707762, -1.08707762, -1.08707762, -1.08707762,
-0.92766277, -0.92766277, -0.92766277, -0.92766277, -0.77023219,
-0.77023219, -0.77023219, -0.77023219, -0.61716861, -0.61716861,
-0.61716861, -0.61716861, -0.47043739, -0.47043739, -0.47043739,
-0.47043739, -0.33120496, -0.33120496, -0.33120496, -0.33120496,
-0.19880321, -0.19880321, -0.19880321, -0.19880321, -0.07879987,
-0.07879987, -0.07879987, -0.07879987, 0.07879987, 0.07879987,
0.07879987, 0.07879987, 0.19880321, 0.19880321, 0.19880321,
0.19880321, 0.33120496, 0.33120496, 0.33120496, 0.33120496,
0.47043739, 0.47043739, 0.47043739, 0.47043739, 0.61716861,
0.61716861, 0.61716861, 0.61716861, 0.77023219, 0.77023219,
0.77023219, 0.77023219, 0.92766277, 0.92766277, 0.92766277,
0.92766277, 1.08707762, 1.08707762, 1.08707762, 1.08707762,
1.24549729, 1.24549729, 1.24549729, 1.24549729, 1.40030833,
1.40030833, 1.40030833, 1.40030833, 1.548809 , 1.548809 ,
1.548809 , 1.548809 , 1.68535351, 1.68535351, 1.68535351,
1.68535351, 1.79913223, 1.79913223, 1.79913223, 1.79913223,
1.88113567, 1.88113567, 1.88113567, 1.88113567, 1.93513433,
1.93513433, 1.93513433, 1.93513433, 1.96768674, 1.96768674,
1.96768674, 1.96768674, 1.98540873, 1.98540873, 1.98540873,
1.98540873, 1.99404683, 1.99404683, 1.99404683, 1.99404683,
1.99780536, 1.99780536, 1.99780536, 1.99780536, 1.99926735,
1.99926735, 1.99926735, 1.99926735, 1.9997778 , 1.9997778 ,
1.9997778 , 1.9997778 , 1.99993857, 1.99993857, 1.99993857,
1.99993857, 1.99998447, 1.99998447, 1.99998447, 1.99998447,
1.9999964 , 1.9999964 , 1.9999964 , 1.9999964 , 1.99999923,
1.99999923, 1.99999923, 1.99999923, 1.99999985, 1.99999985,
1.99999985, 1.99999985, 1.99999997, 1.99999997, 1.99999997,
1.99999997, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999998, 0.39999998, 0.39999998, 0.39999998, 0.39999989,
0.39999989, 0.39999989, 0.39999989, 0.39999943, 0.39999943,
0.39999943, 0.39999943, 0.39999731, 0.39999731, 0.39999731,
0.39999731, 0.39998838, 0.39998838, 0.39998838, 0.39998838,
0.39995403, 0.39995403, 0.39995403, 0.39995403, 0.39983375,
0.39983375, 0.39983375, 0.39983375, 0.3994521 , 0.3994521 ,
0.3994521 , 0.3994521 , 0.39836087, 0.39836087, 0.39836087,
0.39836087, 0.39556797, 0.39556797, 0.39556797, 0.39556797,
0.38921587, 0.38921587, 0.38921587, 0.38921587, 0.37646798,
0.37646798, 0.37646798, 0.37646798, 0.35401533, 0.35401533,
0.35401533, 0.35401533, 0.31937688, 0.31937688, 0.31937688,
0.31937688, 0.27233327, 0.27233327, 0.27233327, 0.27233327,
0.21553987, 0.21553987, 0.21553987, 0.21553987, 0.16210813,
0.16210813, 0.16210813, 0.16210813, 0.11938562, 0.11938562,
0.11938562, 0.11938562, 0.08712103, 0.08712103, 0.08712103,
0.08712103, 0.06349711, 0.06349711, 0.06349711, 0.06349711,
0.04656451, 0.04656451, 0.04656451, 0.04656451, 0.03461305,
0.03461305, 0.03461305, 0.03461305, 0.0262067 , 0.0262067 ,
0.0262067 , 0.0262067 , 0.02033995, 0.02033995, 0.02033995,
0.02033995, 0.01633725, 0.01633725, 0.01633725, 0.01633725,
0.01379911, 0.01379911, 0.01379911, 0.01379911, 0.01232617,
0.01232617, 0.01232617, 0.01232617, 0.01232617, 0.01232617,
0.01232617, 0.01232617, 0.01379911, 0.01379911, 0.01379911,
0.01379911, 0.01633725, 0.01633725, 0.01633725, 0.01633725,
0.02033995, 0.02033995, 0.02033995, 0.02033995, 0.0262067 ,
0.0262067 , 0.0262067 , 0.0262067 , 0.03461305, 0.03461305,
0.03461305, 0.03461305, 0.04656451, 0.04656451, 0.04656451,
0.04656451, 0.06349711, 0.06349711, 0.06349711, 0.06349711,
0.08712103, 0.08712103, 0.08712103, 0.08712103, 0.11938562,
0.11938562, 0.11938562, 0.11938562, 0.16210813, 0.16210813,
0.16210813, 0.16210813, 0.21553987, 0.21553987, 0.21553987,
0.21553987, 0.27233327, 0.27233327, 0.27233327, 0.27233327,
0.31937688, 0.31937688, 0.31937688, 0.31937688, 0.35401533,
0.35401533, 0.35401533, 0.35401533, 0.37646798, 0.37646798,
0.37646798, 0.37646798, 0.38921587, 0.38921587, 0.38921587,
0.38921587, 0.39556797, 0.39556797, 0.39556797, 0.39556797,
0.39836087, 0.39836087, 0.39836087, 0.39836087, 0.3994521 ,
0.3994521 , 0.3994521 , 0.3994521 , 0.39983375, 0.39983375,
0.39983375, 0.39983375, 0.39995403, 0.39995403, 0.39995403,
0.39995403, 0.39998838, 0.39998838, 0.39998838, 0.39998838,
0.39999731, 0.39999731, 0.39999731, 0.39999731, 0.39999943,
0.39999943, 0.39999943, 0.39999943, 0.39999989, 0.39999989,
0.39999989, 0.39999989, 0.39999998, 0.39999998, 0.39999998,
0.39999998, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999984, 0.99999984, 0.99999984, 0.99999984, 0.99999921,
0.99999921, 0.99999921, 0.99999921, 0.99999632, 0.99999632,
0.99999632, 0.99999632, 0.99998428, 0.99998428, 0.99998428,
0.99998428, 0.99993821, 0.99993821, 0.99993821, 0.99993821,
0.999777 , 0.999777 , 0.999777 , 0.999777 , 0.99926307,
0.99926307, 0.99926307, 0.99926307, 0.99777717, 0.99777717,
0.99777717, 0.99777717, 0.99390084, 0.99390084, 0.99390084,
0.99390084, 0.98482677, 0.98482677, 0.98482677, 0.98482677,
0.96586705, 0.96586705, 0.96586705, 0.96586705, 0.93065556,
0.93065556, 0.93065556, 0.93065556, 0.87265822, 0.87265822,
0.87265822, 0.87265822, 0.78793454, 0.78793454, 0.78793454,
0.78793454, 0.67801361, 0.67801361, 0.67801361, 0.67801361,
0.54918923, 0.54918923, 0.54918923, 0.54918923, 0.4253138 ,
0.4253138 , 0.4253138 , 0.4253138 , 0.32209197, 0.32209197,
0.32209197, 0.32209197, 0.24076956, 0.24076956, 0.24076956,
0.24076956, 0.17909602, 0.17909602, 0.17909602, 0.17909602,
0.13374278, 0.13374278, 0.13374278, 0.13374278, 0.10109783,
0.10109783, 0.10109783, 0.10109783, 0.0779702 , 0.0779702 ,
0.0779702 , 0.0779702 , 0.06206786, 0.06206786, 0.06206786,
0.06206786, 0.05151796, 0.05151796, 0.05151796, 0.05151796,
0.04507666, 0.04507666, 0.04507666, 0.04507666, 0.04147447,
0.04147447, 0.04147447, 0.04147447, 0.04147447, 0.04147447,
0.04147447, 0.04147447, 0.04507666, 0.04507666, 0.04507666,
0.04507666, 0.05151796, 0.05151796, 0.05151796, 0.05151796,
0.06206786, 0.06206786, 0.06206786, 0.06206786, 0.0779702 ,
0.0779702 , 0.0779702 , 0.0779702 , 0.10109783, 0.10109783,
0.10109783, 0.10109783, 0.13374278, 0.13374278, 0.13374278,
0.13374278, 0.17909602, 0.17909602, 0.17909602, 0.17909602,
0.24076956, 0.24076956, 0.24076956, 0.24076956, 0.32209197,
0.32209197, 0.32209197, 0.32209197, 0.4253138 , 0.4253138 ,
0.4253138 , 0.4253138 , 0.54918923, 0.54918923, 0.54918923,
0.54918923, 0.67801361, 0.67801361, 0.67801361, 0.67801361,
0.78793454, 0.78793454, 0.78793454, 0.78793454, 0.87265822,
0.87265822, 0.87265822, 0.87265822, 0.93065556, 0.93065556,
0.93065556, 0.93065556, 0.96586705, 0.96586705, 0.96586705,
0.96586705, 0.98482677, 0.98482677, 0.98482677, 0.98482677,
0.99390084, 0.99390084, 0.99390084, 0.99390084, 0.99777717,
0.99777717, 0.99777717, 0.99777717, 0.99926307, 0.99926307,
0.99926307, 0.99926307, 0.999777 , 0.999777 , 0.999777 ,
0.999777 , 0.99993821, 0.99993821, 0.99993821, 0.99993821,
0.99998428, 0.99998428, 0.99998428, 0.99998428, 0.99999632,
0.99999632, 0.99999632, 0.99999632, 0.99999921, 0.99999921,
0.99999921, 0.99999921, 0.99999984, 0.99999984, 0.99999984,
0.99999984, 0.99999997, 0.99999997, 0.99999997, 0.99999997,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999998, -1.99999998, -1.99999998, -1.99999998,
-1.99999988, -1.99999988, -1.99999988, -1.99999988, -1.99999941,
-1.99999941, -1.99999941, -1.99999941, -1.99999725, -1.99999725,
-1.99999725, -1.99999725, -1.99998825, -1.99998825, -1.99998825,
-1.99998825, -1.99995385, -1.99995385, -1.99995385, -1.99995385,
-1.9998336 , -1.9998336 , -1.9998336 , -1.9998336 , -1.99945098,
-1.99945098, -1.99945098, -1.99945098, -1.99834757, -1.99834757,
-1.99834757, -1.99834757, -1.99547801, -1.99547801, -1.99547801,
-1.99547801, -1.98877722, -1.98877722, -1.98877722, -1.98877722,
-1.97476121, -1.97476121, -1.97476121, -1.97476121, -1.94846819,
-1.94846819, -1.94846819, -1.94846819, -1.90395536, -1.90395536,
-1.90395536, -1.90395536, -1.83514393, -1.83514393, -1.83514393,
-1.83514393, -1.73695291, -1.73695291, -1.73695291, -1.73695291,
-1.61276681, -1.61276681, -1.61276681, -1.61276681, -1.47411138,
-1.47411138, -1.47411138, -1.47411138, -1.32789865, -1.32789865,
-1.32789865, -1.32789865, -1.17749415, -1.17749415, -1.17749415,
-1.17749415, -1.02468689, -1.02468689, -1.02468689, -1.02468689,
-0.87230414, -0.87230414, -0.87230414, -0.87230414, -0.72248267,
-0.72248267, -0.72248267, -0.72248267, -0.57751416, -0.57751416,
-0.57751416, -0.57751416, -0.43882441, -0.43882441, -0.43882441,
-0.43882441, -0.30782015, -0.30782015, -0.30782015, -0.30782015,
-0.18361953, -0.18361953, -0.18361953, -0.18361953, -0.07262519,
-0.07262519, -0.07262519, -0.07262519, 0.07262519, 0.07262519,
0.07262519, 0.07262519, 0.18361953, 0.18361953, 0.18361953,
0.18361953, 0.30782015, 0.30782015, 0.30782015, 0.30782015,
0.43882441, 0.43882441, 0.43882441, 0.43882441, 0.57751416,
0.57751416, 0.57751416, 0.57751416, 0.72248267, 0.72248267,
0.72248267, 0.72248267, 0.87230414, 0.87230414, 0.87230414,
0.87230414, 1.02468689, 1.02468689, 1.02468689, 1.02468689,
1.17749415, 1.17749415, 1.17749415, 1.17749415, 1.32789865,
1.32789865, 1.32789865, 1.32789865, 1.47411138, 1.47411138,
1.47411138, 1.47411138, 1.61276681, 1.61276681, 1.61276681,
1.61276681, 1.73695291, 1.73695291, 1.73695291, 1.73695291,
1.83514393, 1.83514393, 1.83514393, 1.83514393, 1.90395536,
1.90395536, 1.90395536, 1.90395536, 1.94846819, 1.94846819,
1.94846819, 1.94846819, 1.97476121, 1.97476121, 1.97476121,
1.97476121, 1.98877722, 1.98877722, 1.98877722, 1.98877722,
1.99547801, 1.99547801, 1.99547801, 1.99547801, 1.99834757,
1.99834757, 1.99834757, 1.99834757, 1.99945098, 1.99945098,
1.99945098, 1.99945098, 1.9998336 , 1.9998336 , 1.9998336 ,
1.9998336 , 1.99995385, 1.99995385, 1.99995385, 1.99995385,
1.99998825, 1.99998825, 1.99998825, 1.99998825, 1.99999725,
1.99999725, 1.99999725, 1.99999725, 1.99999941, 1.99999941,
1.99999941, 1.99999941, 1.99999988, 1.99999988, 1.99999988,
1.99999988, 1.99999998, 1.99999998, 1.99999998, 1.99999998,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999998, 0.39999998, 0.39999998, 0.39999998,
0.39999991, 0.39999991, 0.39999991, 0.39999991, 0.39999956,
0.39999956, 0.39999956, 0.39999956, 0.39999794, 0.39999794,
0.39999794, 0.39999794, 0.39999121, 0.39999121, 0.39999121,
0.39999121, 0.39996546, 0.39996546, 0.39996546, 0.39996546,
0.3998755 , 0.3998755 , 0.3998755 , 0.3998755 , 0.39958935,
0.39958935, 0.39958935, 0.39958935, 0.39876524, 0.39876524,
0.39876524, 0.39876524, 0.39662932, 0.39662932, 0.39662932,
0.39662932, 0.39168182, 0.39168182, 0.39168182, 0.39168182,
0.38151098, 0.38151098, 0.38151098, 0.38151098, 0.36306193,
0.36306193, 0.36306193, 0.36306193, 0.33362418, 0.33362418,
0.33362418, 0.33362418, 0.2922219 , 0.2922219 , 0.2922219 ,
0.2922219 , 0.24009531, 0.24009531, 0.24009531, 0.24009531,
0.18518057, 0.18518057, 0.18518057, 0.18518057, 0.13886248,
0.13886248, 0.13886248, 0.13886248, 0.10277415, 0.10277415,
0.10277415, 0.10277415, 0.0756898 , 0.0756898 , 0.0756898 ,
0.0756898 , 0.05582374, 0.05582374, 0.05582374, 0.05582374,
0.04152302, 0.04152302, 0.04152302, 0.04152302, 0.03132411,
0.03132411, 0.03132411, 0.03132411, 0.02405844, 0.02405844,
0.02405844, 0.02405844, 0.01894139, 0.01894139, 0.01894139,
0.01894139, 0.01540908, 0.01540908, 0.01540908, 0.01540908,
0.01315829, 0.01315829, 0.01315829, 0.01315829, 0.01182391,
0.01182391, 0.01182391, 0.01182391, 0.01182391, 0.01182391,
0.01182391, 0.01182391, 0.01315829, 0.01315829, 0.01315829,
0.01315829, 0.01540908, 0.01540908, 0.01540908, 0.01540908,
0.01894139, 0.01894139, 0.01894139, 0.01894139, 0.02405844,
0.02405844, 0.02405844, 0.02405844, 0.03132411, 0.03132411,
0.03132411, 0.03132411, 0.04152302, 0.04152302, 0.04152302,
0.04152302, 0.05582374, 0.05582374, 0.05582374, 0.05582374,
0.0756898 , 0.0756898 , 0.0756898 , 0.0756898 , 0.10277415,
0.10277415, 0.10277415, 0.10277415, 0.13886248, 0.13886248,
0.13886248, 0.13886248, 0.18518057, 0.18518057, 0.18518057,
0.18518057, 0.24009531, 0.24009531, 0.24009531, 0.24009531,
0.2922219 , 0.2922219 , 0.2922219 , 0.2922219 , 0.33362418,
0.33362418, 0.33362418, 0.33362418, 0.36306193, 0.36306193,
0.36306193, 0.36306193, 0.38151098, 0.38151098, 0.38151098,
0.38151098, 0.39168182, 0.39168182, 0.39168182, 0.39168182,
0.39662932, 0.39662932, 0.39662932, 0.39662932, 0.39876524,
0.39876524, 0.39876524, 0.39876524, 0.39958935, 0.39958935,
0.39958935, 0.39958935, 0.3998755 , 0.3998755 , 0.3998755 ,
0.3998755 , 0.39996546, 0.39996546, 0.39996546, 0.39996546,
0.39999121, 0.39999121, 0.39999121, 0.39999121, 0.39999794,
0.39999794, 0.39999794, 0.39999794, 0.39999956, 0.39999956,
0.39999956, 0.39999956, 0.39999991, 0.39999991, 0.39999991,
0.39999991, 0.39999998, 0.39999998, 0.39999998, 0.39999998,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
0.99999938, 0.99999938, 0.99999938, 0.99999938, 0.99999719,
0.99999719, 0.99999719, 0.99999719, 0.99998811, 0.99998811,
0.99998811, 0.99998811, 0.99995357, 0.99995357, 0.99995357,
0.99995357, 0.99983296, 0.99983296, 0.99983296, 0.99983296,
0.99944781, 0.99944781, 0.99944781, 0.99944781, 0.99832778,
0.99832778, 0.99832778, 0.99832778, 0.995376 , 0.995376 ,
0.995376 , 0.995376 , 0.9883634 , 0.9883634 , 0.9883634 ,
0.9883634 , 0.97342446, 0.97342446, 0.97342446, 0.97342446,
0.94501452, 0.94501452, 0.94501452, 0.94501452, 0.89691208,
0.89691208, 0.89691208, 0.89691208, 0.82442705, 0.82442705,
0.82442705, 0.82442705, 0.72711886, 0.72711886, 0.72711886,
0.72711886, 0.60957253, 0.60957253, 0.60957253, 0.60957253,
0.48481294, 0.48481294, 0.48481294, 0.48481294, 0.37491929,
0.37491929, 0.37491929, 0.37491929, 0.2850944 , 0.2850944 ,
0.2850944 , 0.2850944 , 0.2147617 , 0.2147617 , 0.2147617 ,
0.2147617 , 0.16146404, 0.16146404, 0.16146404, 0.16146404,
0.12209872, 0.12209872, 0.12209872, 0.12209872, 0.09352365,
0.09352365, 0.09352365, 0.09352365, 0.07309985, 0.07309985,
0.07309985, 0.07309985, 0.05895984, 0.05895984, 0.05895984,
0.05895984, 0.0494793 , 0.0494793 , 0.0494793 , 0.0494793 ,
0.04366997, 0.04366997, 0.04366997, 0.04366997, 0.04036077,
0.04036077, 0.04036077, 0.04036077, 0.04036077, 0.04036077,
0.04036077, 0.04036077, 0.04366997, 0.04366997, 0.04366997,
0.04366997, 0.0494793 , 0.0494793 , 0.0494793 , 0.0494793 ,
0.05895984, 0.05895984, 0.05895984, 0.05895984, 0.07309985,
0.07309985, 0.07309985, 0.07309985, 0.09352365, 0.09352365,
0.09352365, 0.09352365, 0.12209872, 0.12209872, 0.12209872,
0.12209872, 0.16146404, 0.16146404, 0.16146404, 0.16146404,
0.2147617 , 0.2147617 , 0.2147617 , 0.2147617 , 0.2850944 ,
0.2850944 , 0.2850944 , 0.2850944 , 0.37491929, 0.37491929,
0.37491929, 0.37491929, 0.48481294, 0.48481294, 0.48481294,
0.48481294, 0.60957253, 0.60957253, 0.60957253, 0.60957253,
0.72711886, 0.72711886, 0.72711886, 0.72711886, 0.82442705,
0.82442705, 0.82442705, 0.82442705, 0.89691208, 0.89691208,
0.89691208, 0.89691208, 0.94501452, 0.94501452, 0.94501452,
0.94501452, 0.97342446, 0.97342446, 0.97342446, 0.97342446,
0.9883634 , 0.9883634 , 0.9883634 , 0.9883634 , 0.995376 ,
0.995376 , 0.995376 , 0.995376 , 0.99832778, 0.99832778,
0.99832778, 0.99832778, 0.99944781, 0.99944781, 0.99944781,
0.99944781, 0.99983296, 0.99983296, 0.99983296, 0.99983296,
0.99995357, 0.99995357, 0.99995357, 0.99995357, 0.99998811,
0.99998811, 0.99998811, 0.99998811, 0.99999719, 0.99999719,
0.99999719, 0.99999719, 0.99999938, 0.99999938, 0.99999938,
0.99999938, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999998, -1.99999998, -1.99999998,
-1.99999998, -1.99999991, -1.99999991, -1.99999991, -1.99999991,
-1.99999954, -1.99999954, -1.99999954, -1.99999954, -1.9999979 ,
-1.9999979 , -1.9999979 , -1.9999979 , -1.99999111, -1.99999111,
-1.99999111, -1.99999111, -1.9999653 , -1.9999653 , -1.9999653 ,
-1.9999653 , -1.99987527, -1.99987527, -1.99987527, -1.99987527,
-1.99958817, -1.99958817, -1.99958817, -1.99958817, -1.99875497,
-1.99875497, -1.99875497, -1.99875497, -1.9965647 , -1.9965647 ,
-1.9965647 , -1.9965647 , -1.99137278, -1.99137278, -1.99137278,
-1.99137278, -1.9803092 , -1.9803092 , -1.9803092 , -1.9803092 ,
-1.95911942, -1.95911942, -1.95911942, -1.95911942, -1.92248902,
-1.92248902, -1.92248902, -1.92248902, -1.86479922, -1.86479922,
-1.86479922, -1.86479922, -1.78093371, -1.78093371, -1.78093371,
-1.78093371, -1.66965519, -1.66965519, -1.66965519, -1.66965519,
-1.54084363, -1.54084363, -1.54084363, -1.54084363, -1.40299425,
-1.40299425, -1.40299425, -1.40299425, -1.26014899, -1.26014899,
-1.26014899, -1.26014899, -1.11439619, -1.11439619, -1.11439619,
-1.11439619, -0.96737508, -0.96737508, -0.96737508, -0.96737508,
-0.82171027, -0.82171027, -0.82171027, -0.82171027, -0.67901436,
-0.67901436, -0.67901436, -0.67901436, -0.54145975, -0.54145975,
-0.54145975, -0.54145975, -0.41012748, -0.41012748, -0.41012748,
-0.41012748, -0.28664905, -0.28664905, -0.28664905, -0.28664905,
-0.16988576, -0.16988576, -0.16988576, -0.16988576, -0.06704588,
-0.06704588, -0.06704588, -0.06704588, 0.06704588, 0.06704588,
0.06704588, 0.06704588, 0.16988576, 0.16988576, 0.16988576,
0.16988576, 0.28664905, 0.28664905, 0.28664905, 0.28664905,
0.41012748, 0.41012748, 0.41012748, 0.41012748, 0.54145975,
0.54145975, 0.54145975, 0.54145975, 0.67901436, 0.67901436,
0.67901436, 0.67901436, 0.82171027, 0.82171027, 0.82171027,
0.82171027, 0.96737508, 0.96737508, 0.96737508, 0.96737508,
1.11439619, 1.11439619, 1.11439619, 1.11439619, 1.26014899,
1.26014899, 1.26014899, 1.26014899, 1.40299425, 1.40299425,
1.40299425, 1.40299425, 1.54084363, 1.54084363, 1.54084363,
1.54084363, 1.66965519, 1.66965519, 1.66965519, 1.66965519,
1.78093371, 1.78093371, 1.78093371, 1.78093371, 1.86479922,
1.86479922, 1.86479922, 1.86479922, 1.92248902, 1.92248902,
1.92248902, 1.92248902, 1.95911942, 1.95911942, 1.95911942,
1.95911942, 1.9803092 , 1.9803092 , 1.9803092 , 1.9803092 ,
1.99137278, 1.99137278, 1.99137278, 1.99137278, 1.9965647 ,
1.9965647 , 1.9965647 , 1.9965647 , 1.99875497, 1.99875497,
1.99875497, 1.99875497, 1.99958817, 1.99958817, 1.99958817,
1.99958817, 1.99987527, 1.99987527, 1.99987527, 1.99987527,
1.9999653 , 1.9999653 , 1.9999653 , 1.9999653 , 1.99999111,
1.99999111, 1.99999111, 1.99999111, 1.9999979 , 1.9999979 ,
1.9999979 , 1.9999979 , 1.99999954, 1.99999954, 1.99999954,
1.99999954, 1.99999991, 1.99999991, 1.99999991, 1.99999991,
1.99999998, 1.99999998, 1.99999998, 1.99999998, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.39999966, 0.39999966, 0.39999966, 0.39999966, 0.39999843,
0.39999843, 0.39999843, 0.39999843, 0.39999335, 0.39999335,
0.39999335, 0.39999335, 0.39997403, 0.39997403, 0.39997403,
0.39997403, 0.39990667, 0.39990667, 0.39990667, 0.39990667,
0.39969193, 0.39969193, 0.39969193, 0.39969193, 0.39906934,
0.39906934, 0.39906934, 0.39906934, 0.39743694, 0.39743694,
0.39743694, 0.39743694, 0.39359154, 0.39359154, 0.39359154,
0.39359154, 0.3855081 , 0.3855081 , 0.3855081 , 0.3855081 ,
0.37043655, 0.37043655, 0.37043655, 0.37043655, 0.34560898,
0.34560898, 0.34560898, 0.34560898, 0.30947529, 0.30947529,
0.30947529, 0.30947529, 0.26261525, 0.26261525, 0.26261525,
0.26261525, 0.208592 , 0.208592 , 0.208592 , 0.208592 ,
0.15944849, 0.15944849, 0.15944849, 0.15944849, 0.1197856 ,
0.1197856 , 0.1197856 , 0.1197856 , 0.08926176, 0.08926176,
0.08926176, 0.08926176, 0.06637685, 0.06637685, 0.06637685,
0.06637685, 0.04954963, 0.04954963, 0.04954963, 0.04954963,
0.03735614, 0.03735614, 0.03735614, 0.03735614, 0.02856719,
0.02856719, 0.02856719, 0.02856719, 0.02223482, 0.02223482,
0.02223482, 0.02223482, 0.01773686, 0.01773686, 0.01773686,
0.01773686, 0.01459793, 0.01459793, 0.01459793, 0.01459793,
0.01259288, 0.01259288, 0.01259288, 0.01259288, 0.01137947,
0.01137947, 0.01137947, 0.01137947, 0.01137947, 0.01137947,
0.01137947, 0.01137947, 0.01259288, 0.01259288, 0.01259288,
0.01259288, 0.01459793, 0.01459793, 0.01459793, 0.01459793,
0.01773686, 0.01773686, 0.01773686, 0.01773686, 0.02223482,
0.02223482, 0.02223482, 0.02223482, 0.02856719, 0.02856719,
0.02856719, 0.02856719, 0.03735614, 0.03735614, 0.03735614,
0.03735614, 0.04954963, 0.04954963, 0.04954963, 0.04954963,
0.06637685, 0.06637685, 0.06637685, 0.06637685, 0.08926176,
0.08926176, 0.08926176, 0.08926176, 0.1197856 , 0.1197856 ,
0.1197856 , 0.1197856 , 0.15944849, 0.15944849, 0.15944849,
0.15944849, 0.208592 , 0.208592 , 0.208592 , 0.208592 ,
0.26261525, 0.26261525, 0.26261525, 0.26261525, 0.30947529,
0.30947529, 0.30947529, 0.30947529, 0.34560898, 0.34560898,
0.34560898, 0.34560898, 0.37043655, 0.37043655, 0.37043655,
0.37043655, 0.3855081 , 0.3855081 , 0.3855081 , 0.3855081 ,
0.39359154, 0.39359154, 0.39359154, 0.39359154, 0.39743694,
0.39743694, 0.39743694, 0.39743694, 0.39906934, 0.39906934,
0.39906934, 0.39906934, 0.39969193, 0.39969193, 0.39969193,
0.39969193, 0.39990667, 0.39990667, 0.39990667, 0.39990667,
0.39997403, 0.39997403, 0.39997403, 0.39997403, 0.39999335,
0.39999335, 0.39999335, 0.39999335, 0.39999843, 0.39999843,
0.39999843, 0.39999843, 0.39999966, 0.39999966, 0.39999966,
0.39999966, 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999952, 0.99999952, 0.99999952, 0.99999952,
0.99999785, 0.99999785, 0.99999785, 0.99999785, 0.999991 ,
0.999991 , 0.999991 , 0.999991 , 0.99996508, 0.99996508,
0.99996508, 0.99996508, 0.99987473, 0.99987473, 0.99987473,
0.99987473, 0.99958576, 0.99958576, 0.99958576, 0.99958576,
0.99874079, 0.99874079, 0.99874079, 0.99874079, 0.99649254,
0.99649254, 0.99649254, 0.99649254, 0.99107677, 0.99107677,
0.99107677, 0.99107677, 0.97932735, 0.97932735, 0.97932735,
0.97932735, 0.95647671, 0.95647671, 0.95647671, 0.95647671,
0.91676303, 0.91676303, 0.91676303, 0.91676303, 0.85513775,
0.85513775, 0.85513775, 0.85513775, 0.76967449, 0.76967449,
0.76967449, 0.76967449, 0.66358127, 0.66358127, 0.66358127,
0.66358127, 0.5434507 , 0.5434507 , 0.5434507 , 0.5434507 ,
0.42945006, 0.42945006, 0.42945006, 0.42945006, 0.33254838,
0.33254838, 0.33254838, 0.33254838, 0.25421441, 0.25421441,
0.25421441, 0.25421441, 0.19307197, 0.19307197, 0.19307197,
0.19307197, 0.14670948, 0.14670948, 0.14670948, 0.14670948,
0.112261 , 0.112261 , 0.112261 , 0.112261 , 0.08704653,
0.08704653, 0.08704653, 0.08704653, 0.06889346, 0.06889346,
0.06889346, 0.06889346, 0.05623531, 0.05623531, 0.05623531,
0.05623531, 0.04766596, 0.04766596, 0.04766596, 0.04766596,
0.04240806, 0.04240806, 0.04240806, 0.04240806, 0.03936017,
0.03936017, 0.03936017, 0.03936017, 0.03936017, 0.03936017,
0.03936017, 0.03936017, 0.04240806, 0.04240806, 0.04240806,
0.04240806, 0.04766596, 0.04766596, 0.04766596, 0.04766596,
0.05623531, 0.05623531, 0.05623531, 0.05623531, 0.06889346,
0.06889346, 0.06889346, 0.06889346, 0.08704653, 0.08704653,
0.08704653, 0.08704653, 0.112261 , 0.112261 , 0.112261 ,
0.112261 , 0.14670948, 0.14670948, 0.14670948, 0.14670948,
0.19307197, 0.19307197, 0.19307197, 0.19307197, 0.25421441,
0.25421441, 0.25421441, 0.25421441, 0.33254838, 0.33254838,
0.33254838, 0.33254838, 0.42945006, 0.42945006, 0.42945006,
0.42945006, 0.5434507 , 0.5434507 , 0.5434507 , 0.5434507 ,
0.66358127, 0.66358127, 0.66358127, 0.66358127, 0.76967449,
0.76967449, 0.76967449, 0.76967449, 0.85513775, 0.85513775,
0.85513775, 0.85513775, 0.91676303, 0.91676303, 0.91676303,
0.91676303, 0.95647671, 0.95647671, 0.95647671, 0.95647671,
0.97932735, 0.97932735, 0.97932735, 0.97932735, 0.99107677,
0.99107677, 0.99107677, 0.99107677, 0.99649254, 0.99649254,
0.99649254, 0.99649254, 0.99874079, 0.99874079, 0.99874079,
0.99874079, 0.99958576, 0.99958576, 0.99958576, 0.99958576,
0.99987473, 0.99987473, 0.99987473, 0.99987473, 0.99996508,
0.99996508, 0.99996508, 0.99996508, 0.999991 , 0.999991 ,
0.999991 , 0.999991 , 0.99999785, 0.99999785, 0.99999785,
0.99999785, 0.99999952, 0.99999952, 0.99999952, 0.99999952,
0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999993, -1.99999993, -1.99999993,
-1.99999993, -1.99999964, -1.99999964, -1.99999964, -1.99999964,
-1.99999839, -1.99999839, -1.99999839, -1.99999839, -1.99999327,
-1.99999327, -1.99999327, -1.99999327, -1.99997389, -1.99997389,
-1.99997389, -1.99997389, -1.99990641, -1.99990641, -1.99990641,
-1.99990641, -1.9996908 , -1.9996908 , -1.9996908 , -1.9996908 ,
-1.99906136, -1.99906136, -1.99906136, -1.99906136, -1.99739004,
-1.99739004, -1.99739004, -1.99739004, -1.99337187, -1.99337187,
-1.99337187, -1.99337187, -1.9846562 , -1.9846562 , -1.9846562 ,
-1.9846562 , -1.96762156, -1.96762156, -1.96762156, -1.96762156,
-1.93754755, -1.93754755, -1.93754755, -1.93754755, -1.88924251,
-1.88924251, -1.88924251, -1.88924251, -1.81781489, -1.81781489,
-1.81781489, -1.81781489, -1.71991447, -1.71991447, -1.71991447,
-1.71991447, -1.60116196, -1.60116196, -1.60116196, -1.60116196,
-1.47144134, -1.47144134, -1.47144134, -1.47144134, -1.3359148 ,
-1.3359148 , -1.3359148 , -1.3359148 , -1.19691932, -1.19691932,
-1.19691932, -1.19691932, -1.05589588, -1.05589588, -1.05589588,
-1.05589588, -0.91470039, -0.91470039, -0.91470039, -0.91470039,
-0.77534663, -0.77534663, -0.77534663, -0.77534663, -0.63931759,
-0.63931759, -0.63931759, -0.63931759, -0.50854933, -0.50854933,
-0.50854933, -0.50854933, -0.3839803 , -0.3839803 , -0.3839803 ,
-0.3839803 , -0.26741646, -0.26741646, -0.26741646, -0.26741646,
-0.1574274 , -0.1574274 , -0.1574274 , -0.1574274 , -0.06198908,
-0.06198908, -0.06198908, -0.06198908, 0.06198908, 0.06198908,
0.06198908, 0.06198908, 0.1574274 , 0.1574274 , 0.1574274 ,
0.1574274 , 0.26741646, 0.26741646, 0.26741646, 0.26741646,
0.3839803 , 0.3839803 , 0.3839803 , 0.3839803 , 0.50854933,
0.50854933, 0.50854933, 0.50854933, 0.63931759, 0.63931759,
0.63931759, 0.63931759, 0.77534663, 0.77534663, 0.77534663,
0.77534663, 0.91470039, 0.91470039, 0.91470039, 0.91470039,
1.05589588, 1.05589588, 1.05589588, 1.05589588, 1.19691932,
1.19691932, 1.19691932, 1.19691932, 1.3359148 , 1.3359148 ,
1.3359148 , 1.3359148 , 1.47144134, 1.47144134, 1.47144134,
1.47144134, 1.60116196, 1.60116196, 1.60116196, 1.60116196,
1.71991447, 1.71991447, 1.71991447, 1.71991447, 1.81781489,
1.81781489, 1.81781489, 1.81781489, 1.88924251, 1.88924251,
1.88924251, 1.88924251, 1.93754755, 1.93754755, 1.93754755,
1.93754755, 1.96762156, 1.96762156, 1.96762156, 1.96762156,
1.9846562 , 1.9846562 , 1.9846562 , 1.9846562 , 1.99337187,
1.99337187, 1.99337187, 1.99337187, 1.99739004, 1.99739004,
1.99739004, 1.99739004, 1.99906136, 1.99906136, 1.99906136,
1.99906136, 1.9996908 , 1.9996908 , 1.9996908 , 1.9996908 ,
1.99990641, 1.99990641, 1.99990641, 1.99990641, 1.99997389,
1.99997389, 1.99997389, 1.99997389, 1.99999327, 1.99999327,
1.99999327, 1.99999327, 1.99999839, 1.99999839, 1.99999839,
1.99999839, 1.99999964, 1.99999964, 1.99999964, 1.99999964,
1.99999993, 1.99999993, 1.99999993, 1.99999993, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999995, 0.39999995, 0.39999995,
0.39999995, 0.39999973, 0.39999973, 0.39999973, 0.39999973,
0.3999988 , 0.3999988 , 0.3999988 , 0.3999988 , 0.39999496,
0.39999496, 0.39999496, 0.39999496, 0.39998046, 0.39998046,
0.39998046, 0.39998046, 0.39992997, 0.39992997, 0.39992997,
0.39992997, 0.39976868, 0.39976868, 0.39976868, 0.39976868,
0.39929817, 0.39929817, 0.39929817, 0.39929817, 0.39805133,
0.39805133, 0.39805133, 0.39805133, 0.39506813, 0.39506813,
0.39506813, 0.39506813, 0.38866612, 0.38866612, 0.38866612,
0.38866612, 0.37641899, 0.37641899, 0.37641899, 0.37641899,
0.35562813, 0.35562813, 0.35562813, 0.35562813, 0.32434966,
0.32434966, 0.32434966, 0.32434966, 0.28247683, 0.28247683,
0.28247683, 0.28247683, 0.23177116, 0.23177116, 0.23177116,
0.23177116, 0.18080242, 0.18080242, 0.18080242, 0.18080242,
0.13798317, 0.13798317, 0.13798317, 0.13798317, 0.10412517,
0.10412517, 0.10412517, 0.10412517, 0.07819326, 0.07819326,
0.07819326, 0.07819326, 0.0587263 , 0.0587263 , 0.0587263 ,
0.0587263 , 0.04436624, 0.04436624, 0.04436624, 0.04436624,
0.03387337, 0.03387337, 0.03387337, 0.03387337, 0.02623154,
0.02623154, 0.02623154, 0.02623154, 0.02067224, 0.02067224,
0.02067224, 0.02067224, 0.01669043, 0.01669043, 0.01669043,
0.01669043, 0.01388395, 0.01388395, 0.01388395, 0.01388395,
0.01209108, 0.01209108, 0.01209108, 0.01209108, 0.01098426,
0.01098426, 0.01098426, 0.01098426, 0.01098426, 0.01098426,
0.01098426, 0.01098426, 0.01209108, 0.01209108, 0.01209108,
0.01209108, 0.01388395, 0.01388395, 0.01388395, 0.01388395,
0.01669043, 0.01669043, 0.01669043, 0.01669043, 0.02067224,
0.02067224, 0.02067224, 0.02067224, 0.02623154, 0.02623154,
0.02623154, 0.02623154, 0.03387337, 0.03387337, 0.03387337,
0.03387337, 0.04436624, 0.04436624, 0.04436624, 0.04436624,
0.0587263 , 0.0587263 , 0.0587263 , 0.0587263 , 0.07819326,
0.07819326, 0.07819326, 0.07819326, 0.10412517, 0.10412517,
0.10412517, 0.10412517, 0.13798317, 0.13798317, 0.13798317,
0.13798317, 0.18080242, 0.18080242, 0.18080242, 0.18080242,
0.23177116, 0.23177116, 0.23177116, 0.23177116, 0.28247683,
0.28247683, 0.28247683, 0.28247683, 0.32434966, 0.32434966,
0.32434966, 0.32434966, 0.35562813, 0.35562813, 0.35562813,
0.35562813, 0.37641899, 0.37641899, 0.37641899, 0.37641899,
0.38866612, 0.38866612, 0.38866612, 0.38866612, 0.39506813,
0.39506813, 0.39506813, 0.39506813, 0.39805133, 0.39805133,
0.39805133, 0.39805133, 0.39929817, 0.39929817, 0.39929817,
0.39929817, 0.39976868, 0.39976868, 0.39976868, 0.39976868,
0.39992997, 0.39992997, 0.39992997, 0.39992997, 0.39998046,
0.39998046, 0.39998046, 0.39998046, 0.39999496, 0.39999496,
0.39999496, 0.39999496, 0.3999988 , 0.3999988 , 0.3999988 ,
0.3999988 , 0.39999973, 0.39999973, 0.39999973, 0.39999973,
0.39999995, 0.39999995, 0.39999995, 0.39999995, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999992, 0.99999992,
0.99999992, 0.99999992, 0.99999963, 0.99999963, 0.99999963,
0.99999963, 0.99999836, 0.99999836, 0.99999836, 0.99999836,
0.99999319, 0.99999319, 0.99999319, 0.99999319, 0.99997372,
0.99997372, 0.99997372, 0.99997372, 0.99990597, 0.99990597,
0.99990597, 0.99990597, 0.99968892, 0.99968892, 0.99968892,
0.99968892, 0.99905101, 0.99905101, 0.99905101, 0.99905101,
0.99733839, 0.99733839, 0.99733839, 0.99733839, 0.99315887,
0.99315887, 0.99315887, 0.99315887, 0.98393456, 0.98393456,
0.98393456, 0.98393456, 0.96561069, 0.96561069, 0.96561069,
0.96561069, 0.9329643 , 0.9329643 , 0.9329643 , 0.9329643 ,
0.88087503, 0.88087503, 0.88087503, 0.88087503, 0.80638656,
0.80638656, 0.80638656, 0.80638656, 0.71079384, 0.71079384,
0.71079384, 0.71079384, 0.59940636, 0.59940636, 0.59940636,
0.59940636, 0.48434368, 0.48434368, 0.48434368, 0.48434368,
0.38219468, 0.38219468, 0.38219468, 0.38219468, 0.29684256,
0.29684256, 0.29684256, 0.29684256, 0.22828342, 0.22828342,
0.22828342, 0.22828342, 0.17485227, 0.17485227, 0.17485227,
0.17485227, 0.13424276, 0.13424276, 0.13424276, 0.13424276,
0.10387026, 0.10387026, 0.10387026, 0.10387026, 0.08145991,
0.08145991, 0.08145991, 0.08145991, 0.06522931, 0.06522931,
0.06522931, 0.06522931, 0.05382942, 0.05382942, 0.05382942,
0.05382942, 0.04604366, 0.04604366, 0.04604366, 0.04604366,
0.0412709 , 0.0412709 , 0.0412709 , 0.0412709 , 0.03845788,
0.03845788, 0.03845788, 0.03845788, 0.03845788, 0.03845788,
0.03845788, 0.03845788, 0.0412709 , 0.0412709 , 0.0412709 ,
0.0412709 , 0.04604366, 0.04604366, 0.04604366, 0.04604366,
0.05382942, 0.05382942, 0.05382942, 0.05382942, 0.06522931,
0.06522931, 0.06522931, 0.06522931, 0.08145991, 0.08145991,
0.08145991, 0.08145991, 0.10387026, 0.10387026, 0.10387026,
0.10387026, 0.13424276, 0.13424276, 0.13424276, 0.13424276,
0.17485227, 0.17485227, 0.17485227, 0.17485227, 0.22828342,
0.22828342, 0.22828342, 0.22828342, 0.29684256, 0.29684256,
0.29684256, 0.29684256, 0.38219468, 0.38219468, 0.38219468,
0.38219468, 0.48434368, 0.48434368, 0.48434368, 0.48434368,
0.59940636, 0.59940636, 0.59940636, 0.59940636, 0.71079384,
0.71079384, 0.71079384, 0.71079384, 0.80638656, 0.80638656,
0.80638656, 0.80638656, 0.88087503, 0.88087503, 0.88087503,
0.88087503, 0.9329643 , 0.9329643 , 0.9329643 , 0.9329643 ,
0.96561069, 0.96561069, 0.96561069, 0.96561069, 0.98393456,
0.98393456, 0.98393456, 0.98393456, 0.99315887, 0.99315887,
0.99315887, 0.99315887, 0.99733839, 0.99733839, 0.99733839,
0.99733839, 0.99905101, 0.99905101, 0.99905101, 0.99905101,
0.99968892, 0.99968892, 0.99968892, 0.99968892, 0.99990597,
0.99990597, 0.99990597, 0.99990597, 0.99997372, 0.99997372,
0.99997372, 0.99997372, 0.99999319, 0.99999319, 0.99999319,
0.99999319, 0.99999836, 0.99999836, 0.99999836, 0.99999836,
0.99999963, 0.99999963, 0.99999963, 0.99999963, 0.99999992,
0.99999992, 0.99999992, 0.99999992, 0.99999999, 0.99999999,
0.99999999, 0.99999999, 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.99999994, -1.99999994,
-1.99999994, -1.99999994, -1.99999973, -1.99999973, -1.99999973,
-1.99999973, -1.99999877, -1.99999877, -1.99999877, -1.99999877,
-1.99999491, -1.99999491, -1.99999491, -1.99999491, -1.99998035,
-1.99998035, -1.99998035, -1.99998035, -1.99992972, -1.99992972,
-1.99992972, -1.99992972, -1.99976766, -1.99976766, -1.99976766,
-1.99976766, -1.99929196, -1.99929196, -1.99929196, -1.99929196,
-1.99801697, -1.99801697, -1.99801697, -1.99801697, -1.9949107 ,
-1.9949107 , -1.9949107 , -1.9949107 , -1.98805831, -1.98805831,
-1.98805831, -1.98805831, -1.97439986, -1.97439986, -1.97439986,
-1.97439986, -1.94977566, -1.94977566, -1.94977566, -1.94977566,
-1.90941203, -1.90941203, -1.90941203, -1.90941203, -1.84866471,
-1.84866471, -1.84866471, -1.84866471, -1.76366311, -1.76366311,
-1.76366311, -1.76366311, -1.65549375, -1.65549375, -1.65549375,
-1.65549375, -1.53389774, -1.53389774, -1.53389774, -1.53389774,
-1.405382 , -1.405382 , -1.405382 , -1.405382 , -1.27292111,
-1.27292111, -1.27292111, -1.27292111, -1.13795294, -1.13795294,
-1.13795294, -1.13795294, -1.00171316, -1.00171316, -1.00171316,
-1.00171316, -0.86617309, -0.86617309, -0.86617309, -0.86617309,
-0.73274404, -0.73274404, -0.73274404, -0.73274404, -0.60294603,
-0.60294603, -0.60294603, -0.60294603, -0.47841029, -0.47841029,
-0.47841029, -0.47841029, -0.36007584, -0.36007584, -0.36007584,
-0.36007584, -0.24989289, -0.24989289, -0.24989289, -0.24989289,
-0.14609889, -0.14609889, -0.14609889, -0.14609889, -0.05739379,
-0.05739379, -0.05739379, -0.05739379, 0.05739379, 0.05739379,
0.05739379, 0.05739379, 0.14609889, 0.14609889, 0.14609889,
0.14609889, 0.24989289, 0.24989289, 0.24989289, 0.24989289,
0.36007584, 0.36007584, 0.36007584, 0.36007584, 0.47841029,
0.47841029, 0.47841029, 0.47841029, 0.60294603, 0.60294603,
0.60294603, 0.60294603, 0.73274404, 0.73274404, 0.73274404,
0.73274404, 0.86617309, 0.86617309, 0.86617309, 0.86617309,
1.00171316, 1.00171316, 1.00171316, 1.00171316, 1.13795294,
1.13795294, 1.13795294, 1.13795294, 1.27292111, 1.27292111,
1.27292111, 1.27292111, 1.405382 , 1.405382 , 1.405382 ,
1.405382 , 1.53389774, 1.53389774, 1.53389774, 1.53389774,
1.65549375, 1.65549375, 1.65549375, 1.65549375, 1.76366311,
1.76366311, 1.76366311, 1.76366311, 1.84866471, 1.84866471,
1.84866471, 1.84866471, 1.90941203, 1.90941203, 1.90941203,
1.90941203, 1.94977566, 1.94977566, 1.94977566, 1.94977566,
1.97439986, 1.97439986, 1.97439986, 1.97439986, 1.98805831,
1.98805831, 1.98805831, 1.98805831, 1.9949107 , 1.9949107 ,
1.9949107 , 1.9949107 , 1.99801697, 1.99801697, 1.99801697,
1.99801697, 1.99929196, 1.99929196, 1.99929196, 1.99929196,
1.99976766, 1.99976766, 1.99976766, 1.99976766, 1.99992972,
1.99992972, 1.99992972, 1.99992972, 1.99998035, 1.99998035,
1.99998035, 1.99998035, 1.99999491, 1.99999491, 1.99999491,
1.99999491, 1.99999877, 1.99999877, 1.99999877, 1.99999877,
1.99999973, 1.99999973, 1.99999973, 1.99999973, 1.99999994,
1.99999994, 1.99999994, 1.99999994, 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.39999996, 0.39999996,
0.39999996, 0.39999996, 0.39999979, 0.39999979, 0.39999979,
0.39999979, 0.39999908, 0.39999908, 0.39999908, 0.39999908,
0.39999619, 0.39999619, 0.39999619, 0.39999619, 0.39998529,
0.39998529, 0.39998529, 0.39998529, 0.39994741, 0.39994741,
0.39994741, 0.39994741, 0.39982617, 0.39982617, 0.39982617,
0.39982617, 0.39947049, 0.39947049, 0.39947049, 0.39947049,
0.39851861, 0.39851861, 0.39851861, 0.39851861, 0.39620818,
0.39620818, 0.39620818, 0.39620818, 0.39115387, 0.39115387,
0.39115387, 0.39115387, 0.38125012, 0.38125012, 0.38125012,
0.38125012, 0.36395394, 0.36395394, 0.36395394, 0.36395394,
0.33709582, 0.33709582, 0.33709582, 0.33709582, 0.29994892,
0.29994892, 0.29994892, 0.29994892, 0.25360165, 0.25360165,
0.25360165, 0.25360165, 0.2025411 , 0.2025411 , 0.2025411 ,
0.2025411 , 0.15714021, 0.15714021, 0.15714021, 0.15714021,
0.12016518, 0.12016518, 0.12016518, 0.12016518, 0.09121302,
0.09121302, 0.09121302, 0.09121302, 0.06905716, 0.06905716,
0.06905716, 0.06905716, 0.05239009, 0.05239009, 0.05239009,
0.05239009, 0.04003804, 0.04003804, 0.04003804, 0.04003804,
0.03093253, 0.03093253, 0.03093253, 0.03093253, 0.02423424,
0.02423424, 0.02423424, 0.02423424, 0.01932145, 0.01932145,
0.01932145, 0.01932145, 0.01577437, 0.01577437, 0.01577437,
0.01577437, 0.01325147, 0.01325147, 0.01325147, 0.01325147,
0.01164337, 0.01164337, 0.01164337, 0.01164337, 0.01063126,
0.01063126, 0.01063126, 0.01063126, 0.01063126, 0.01063126,
0.01063126, 0.01063126, 0.01164337, 0.01164337, 0.01164337,
0.01164337, 0.01325147, 0.01325147, 0.01325147, 0.01325147,
0.01577437, 0.01577437, 0.01577437, 0.01577437, 0.01932145,
0.01932145, 0.01932145, 0.01932145, 0.02423424, 0.02423424,
0.02423424, 0.02423424, 0.03093253, 0.03093253, 0.03093253,
0.03093253, 0.04003804, 0.04003804, 0.04003804, 0.04003804,
0.05239009, 0.05239009, 0.05239009, 0.05239009, 0.06905716,
0.06905716, 0.06905716, 0.06905716, 0.09121302, 0.09121302,
0.09121302, 0.09121302, 0.12016518, 0.12016518, 0.12016518,
0.12016518, 0.15714021, 0.15714021, 0.15714021, 0.15714021,
0.2025411 , 0.2025411 , 0.2025411 , 0.2025411 , 0.25360165,
0.25360165, 0.25360165, 0.25360165, 0.29994892, 0.29994892,
0.29994892, 0.29994892, 0.33709582, 0.33709582, 0.33709582,
0.33709582, 0.36395394, 0.36395394, 0.36395394, 0.36395394,
0.38125012, 0.38125012, 0.38125012, 0.38125012, 0.39115387,
0.39115387, 0.39115387, 0.39115387, 0.39620818, 0.39620818,
0.39620818, 0.39620818, 0.39851861, 0.39851861, 0.39851861,
0.39851861, 0.39947049, 0.39947049, 0.39947049, 0.39947049,
0.39982617, 0.39982617, 0.39982617, 0.39982617, 0.39994741,
0.39994741, 0.39994741, 0.39994741, 0.39998529, 0.39998529,
0.39998529, 0.39998529, 0.39999619, 0.39999619, 0.39999619,
0.39999619, 0.39999908, 0.39999908, 0.39999908, 0.39999908,
0.39999979, 0.39999979, 0.39999979, 0.39999979, 0.39999996,
0.39999996, 0.39999996, 0.39999996, 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.4 , 0.4 , 0.4 ])}, {'rho': array([0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999972, 0.99999972,
0.99999972, 0.99999972, 0.99999875, 0.99999875, 0.99999875,
0.99999875, 0.99999485, 0.99999485, 0.99999485, 0.99999485,
0.9999802 , 0.9999802 , 0.9999802 , 0.9999802 , 0.99992935,
0.99992935, 0.99992935, 0.99992935, 0.99976618, 0.99976618,
0.99976618, 0.99976618, 0.9992843 , 0.9992843 , 0.9992843 ,
0.9992843 , 0.99797962, 0.99797962, 0.99797962, 0.99797962,
0.99475654, 0.99475654, 0.99475654, 0.99475654, 0.98752732,
0.98752732, 0.98752732, 0.98752732, 0.97287605, 0.97287605,
0.97287605, 0.97287605, 0.94614979, 0.94614979, 0.94614979,
0.94614979, 0.90235853, 0.90235853, 0.90235853, 0.90235853,
0.83788792, 0.83788792, 0.83788792, 0.83788792, 0.75246353,
0.75246353, 0.75246353, 0.75246353, 0.65034201, 0.65034201,
0.65034201, 0.65034201, 0.53834592, 0.53834592, 0.53834592,
0.53834592, 0.43297187, 0.43297187, 0.43297187, 0.43297187,
0.34191758, 0.34191758, 0.34191758, 0.34191758, 0.26662504,
0.26662504, 0.26662504, 0.26662504, 0.20636921, 0.20636921,
0.20636921, 0.20636921, 0.15943395, 0.15943395, 0.15943395,
0.15943395, 0.1236147 , 0.1236147 , 0.1236147 , 0.1236147 ,
0.09665137, 0.09665137, 0.09665137, 0.09665137, 0.07660383,
0.07660383, 0.07660383, 0.07660383, 0.06201277, 0.06201277,
0.06201277, 0.06201277, 0.05169102, 0.05169102, 0.05169102,
0.05169102, 0.04458477, 0.04458477, 0.04458477, 0.04458477,
0.04024194, 0.04024194, 0.04024194, 0.04024194, 0.03764146,
0.03764146, 0.03764146, 0.03764146, 0.03764146, 0.03764146,
0.03764146, 0.03764146, 0.04024194, 0.04024194, 0.04024194,
0.04024194, 0.04458477, 0.04458477, 0.04458477, 0.04458477,
0.05169102, 0.05169102, 0.05169102, 0.05169102, 0.06201277,
0.06201277, 0.06201277, 0.06201277, 0.07660383, 0.07660383,
0.07660383, 0.07660383, 0.09665137, 0.09665137, 0.09665137,
0.09665137, 0.1236147 , 0.1236147 , 0.1236147 , 0.1236147 ,
0.15943395, 0.15943395, 0.15943395, 0.15943395, 0.20636921,
0.20636921, 0.20636921, 0.20636921, 0.26662504, 0.26662504,
0.26662504, 0.26662504, 0.34191758, 0.34191758, 0.34191758,
0.34191758, 0.43297187, 0.43297187, 0.43297187, 0.43297187,
0.53834592, 0.53834592, 0.53834592, 0.53834592, 0.65034201,
0.65034201, 0.65034201, 0.65034201, 0.75246353, 0.75246353,
0.75246353, 0.75246353, 0.83788792, 0.83788792, 0.83788792,
0.83788792, 0.90235853, 0.90235853, 0.90235853, 0.90235853,
0.94614979, 0.94614979, 0.94614979, 0.94614979, 0.97287605,
0.97287605, 0.97287605, 0.97287605, 0.98752732, 0.98752732,
0.98752732, 0.98752732, 0.99475654, 0.99475654, 0.99475654,
0.99475654, 0.99797962, 0.99797962, 0.99797962, 0.99797962,
0.9992843 , 0.9992843 , 0.9992843 , 0.9992843 , 0.99976618,
0.99976618, 0.99976618, 0.99976618, 0.99992935, 0.99992935,
0.99992935, 0.99992935, 0.9999802 , 0.9999802 , 0.9999802 ,
0.9999802 , 0.99999485, 0.99999485, 0.99999485, 0.99999485,
0.99999875, 0.99999875, 0.99999875, 0.99999875, 0.99999972,
0.99999972, 0.99999972, 0.99999972, 0.99999994, 0.99999994,
0.99999994, 0.99999994, 0.99999999, 0.99999999, 0.99999999]), 'vx': array([-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999996,
-1.99999996, -1.99999996, -1.99999996, -1.99999979, -1.99999979,
-1.99999979, -1.99999979, -1.99999906, -1.99999906, -1.99999906,
-1.99999906, -1.99999614, -1.99999614, -1.99999614, -1.99999614,
-1.99998519, -1.99998519, -1.99998519, -1.99998519, -1.99994718,
-1.99994718, -1.99994718, -1.99994718, -1.99982529, -1.99982529,
-1.99982529, -1.99982529, -1.99946564, -1.99946564, -1.99946564,
-1.99946564, -1.99849325, -1.99849325, -1.99849325, -1.99849325,
-1.9960945 , -1.9960945 , -1.9960945 , -1.9960945 , -1.99071753,
-1.99071753, -1.99071753, -1.99071753, -1.97979529, -1.97979529,
-1.97979529, -1.97979529, -1.95969325, -1.95969325, -1.95969325,
-1.95969325, -1.9260533 , -1.9260533 , -1.9260533 , -1.9260533 ,
-1.8744613 , -1.8744613 , -1.8744613 , -1.8744613 , -1.80108753,
-1.80108753, -1.80108753, -1.80108753, -1.70418906, -1.70418906,
-1.70418906, -1.70418906, -1.59086057, -1.59086057, -1.59086057,
-1.59086057, -1.46917595, -1.46917595, -1.46917595, -1.46917595,
-1.34294017, -1.34294017, -1.34294017, -1.34294017, -1.21386875,
-1.21386875, -1.21386875, -1.21386875, -1.0829478 , -1.0829478 ,
-1.0829478 , -1.0829478 , -0.9515668 , -0.9515668 , -0.9515668 ,
-0.9515668 , -0.82136318, -0.82136318, -0.82136318, -0.82136318,
-0.69349483, -0.69349483, -0.69349483, -0.69349483, -0.56951744,
-0.56951744, -0.56951744, -0.56951744, -0.45072611, -0.45072611,
-0.45072611, -0.45072611, -0.33815522, -0.33815522, -0.33815522,
-0.33815522, -0.23388523, -0.23388523, -0.23388523, -0.23388523,
-0.13577758, -0.13577758, -0.13577758, -0.13577758, -0.05320859,
-0.05320859, -0.05320859, -0.05320859, 0.05320859, 0.05320859,
0.05320859, 0.05320859, 0.13577758, 0.13577758, 0.13577758,
0.13577758, 0.23388523, 0.23388523, 0.23388523, 0.23388523,
0.33815522, 0.33815522, 0.33815522, 0.33815522, 0.45072611,
0.45072611, 0.45072611, 0.45072611, 0.56951744, 0.56951744,
0.56951744, 0.56951744, 0.69349483, 0.69349483, 0.69349483,
0.69349483, 0.82136318, 0.82136318, 0.82136318, 0.82136318,
0.9515668 , 0.9515668 , 0.9515668 , 0.9515668 , 1.0829478 ,
1.0829478 , 1.0829478 , 1.0829478 , 1.21386875, 1.21386875,
1.21386875, 1.21386875, 1.34294017, 1.34294017, 1.34294017,
1.34294017, 1.46917595, 1.46917595, 1.46917595, 1.46917595,
1.59086057, 1.59086057, 1.59086057, 1.59086057, 1.70418906,
1.70418906, 1.70418906, 1.70418906, 1.80108753, 1.80108753,
1.80108753, 1.80108753, 1.8744613 , 1.8744613 , 1.8744613 ,
1.8744613 , 1.9260533 , 1.9260533 , 1.9260533 , 1.9260533 ,
1.95969325, 1.95969325, 1.95969325, 1.95969325, 1.97979529,
1.97979529, 1.97979529, 1.97979529, 1.99071753, 1.99071753,
1.99071753, 1.99071753, 1.9960945 , 1.9960945 , 1.9960945 ,
1.9960945 , 1.99849325, 1.99849325, 1.99849325, 1.99849325,
1.99946564, 1.99946564, 1.99946564, 1.99946564, 1.99982529,
1.99982529, 1.99982529, 1.99982529, 1.99994718, 1.99994718,
1.99994718, 1.99994718, 1.99998519, 1.99998519, 1.99998519,
1.99998519, 1.99999614, 1.99999614, 1.99999614, 1.99999614,
1.99999906, 1.99999906, 1.99999906, 1.99999906, 1.99999979,
1.99999979, 1.99999979, 1.99999979, 1.99999996, 1.99999996,
1.99999996, 1.99999996, 1.99999999, 1.99999999, 1.99999999]), 'P': array([0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.39999984, 0.39999984,
0.39999984, 0.39999984, 0.3999993 , 0.3999993 , 0.3999993 ,
0.3999993 , 0.39999711, 0.39999711, 0.39999711, 0.39999711,
0.39998892, 0.39998892, 0.39998892, 0.39998892, 0.39996047,
0.39996047, 0.39996047, 0.39996047, 0.39986928, 0.39986928,
0.39986928, 0.39986928, 0.39960032, 0.39960032, 0.39960032,
0.39960032, 0.39887394, 0.39887394, 0.39887394, 0.39887394,
0.39708723, 0.39708723, 0.39708723, 0.39708723, 0.39310833,
0.39310833, 0.39310833, 0.39310833, 0.3851351 , 0.3851351 ,
0.3851351 , 0.3851351 , 0.37083367, 0.37083367, 0.37083367,
0.37083367, 0.34794549, 0.34794549, 0.34794549, 0.34794549,
0.31525266, 0.31525266, 0.31525266, 0.31525266, 0.27330886,
0.27330886, 0.27330886, 0.27330886, 0.22430201, 0.22430201,
0.22430201, 0.22430201, 0.17699197, 0.17699197, 0.17699197,
0.17699197, 0.1372282 , 0.1372282 , 0.1372282 , 0.1372282 ,
0.10535854, 0.10535854, 0.10535854, 0.10535854, 0.08050037,
0.08050037, 0.08050037, 0.08050037, 0.06145781, 0.06145781,
0.06145781, 0.06145781, 0.04709924, 0.04709924, 0.04709924,
0.04709924, 0.03638839, 0.03638839, 0.03638839, 0.03638839,
0.02842595, 0.02842595, 0.02842595, 0.02842595, 0.02251183,
0.02251183, 0.02251183, 0.02251183, 0.01814435, 0.01814435,
0.01814435, 0.01814435, 0.01496692, 0.01496692, 0.01496692,
0.01496692, 0.012688 , 0.012688 , 0.012688 , 0.012688 ,
0.011242 , 0.011242 , 0.011242 , 0.011242 , 0.01031464,
0.01031464, 0.01031464, 0.01031464, 0.01031464, 0.01031464,
0.01031464, 0.01031464, 0.011242 , 0.011242 , 0.011242 ,
0.011242 , 0.012688 , 0.012688 , 0.012688 , 0.012688 ,
0.01496692, 0.01496692, 0.01496692, 0.01496692, 0.01814435,
0.01814435, 0.01814435, 0.01814435, 0.02251183, 0.02251183,
0.02251183, 0.02251183, 0.02842595, 0.02842595, 0.02842595,
0.02842595, 0.03638839, 0.03638839, 0.03638839, 0.03638839,
0.04709924, 0.04709924, 0.04709924, 0.04709924, 0.06145781,
0.06145781, 0.06145781, 0.06145781, 0.08050037, 0.08050037,
0.08050037, 0.08050037, 0.10535854, 0.10535854, 0.10535854,
0.10535854, 0.1372282 , 0.1372282 , 0.1372282 , 0.1372282 ,
0.17699197, 0.17699197, 0.17699197, 0.17699197, 0.22430201,
0.22430201, 0.22430201, 0.22430201, 0.27330886, 0.27330886,
0.27330886, 0.27330886, 0.31525266, 0.31525266, 0.31525266,
0.31525266, 0.34794549, 0.34794549, 0.34794549, 0.34794549,
0.37083367, 0.37083367, 0.37083367, 0.37083367, 0.3851351 ,
0.3851351 , 0.3851351 , 0.3851351 , 0.39310833, 0.39310833,
0.39310833, 0.39310833, 0.39708723, 0.39708723, 0.39708723,
0.39708723, 0.39887394, 0.39887394, 0.39887394, 0.39887394,
0.39960032, 0.39960032, 0.39960032, 0.39960032, 0.39986928,
0.39986928, 0.39986928, 0.39986928, 0.39996047, 0.39996047,
0.39996047, 0.39996047, 0.39998892, 0.39998892, 0.39998892,
0.39998892, 0.39999711, 0.39999711, 0.39999711, 0.39999711,
0.3999993 , 0.3999993 , 0.3999993 , 0.3999993 , 0.39999984,
0.39999984, 0.39999984, 0.39999984, 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.39999999, 0.39999999, 0.39999999])}, {'rho': array([0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999978,
0.99999978, 0.99999978, 0.99999978, 0.99999905, 0.99999905,
0.99999905, 0.99999905, 0.9999961 , 0.9999961 , 0.9999961 ,
0.9999961 , 0.99998508, 0.99998508, 0.99998508, 0.99998508,
0.99994688, 0.99994688, 0.99994688, 0.99994688, 0.99982412,
0.99982412, 0.99982412, 0.99982412, 0.9994599 , 0.9994599 ,
0.9994599 , 0.9994599 , 0.99846599, 0.99846599, 0.99846599,
0.99846599, 0.99598231, 0.99598231, 0.99598231, 0.99598231,
0.99032624, 0.99032624, 0.99032624, 0.99032624, 0.97864407,
0.97864407, 0.97864407, 0.97864407, 0.95685053, 0.95685053,
0.95685053, 0.95685053, 0.92022314, 0.92022314, 0.92022314,
0.92022314, 0.86478281, 0.86478281, 0.86478281, 0.86478281,
0.78907489, 0.78907489, 0.78907489, 0.78907489, 0.69570313,
0.69570313, 0.69570313, 0.69570313, 0.59020465, 0.59020465,
0.59020465, 0.59020465, 0.48382089, 0.48382089, 0.48382089,
0.48382089, 0.38859599, 0.38859599, 0.38859599, 0.38859599,
0.30752598, 0.30752598, 0.30752598, 0.30752598, 0.24092418,
0.24092418, 0.24092418, 0.24092418, 0.18773926, 0.18773926,
0.18773926, 0.18773926, 0.1462786 , 0.1462786 , 0.1462786 ,
0.1462786 , 0.11447901, 0.11447901, 0.11447901, 0.11447901,
0.09038663, 0.09038663, 0.09038663, 0.09038663, 0.07235759,
0.07235759, 0.07235759, 0.07235759, 0.05916941, 0.05916941,
0.05916941, 0.05916941, 0.04977932, 0.04977932, 0.04977932,
0.04977932, 0.04326679, 0.04326679, 0.04326679, 0.04326679,
0.03930737, 0.03930737, 0.03930737, 0.03930737, 0.03690037,
0.03690037, 0.03690037, 0.03690037, 0.03690037, 0.03690037,
0.03690037, 0.03690037, 0.03930737, 0.03930737, 0.03930737,
0.03930737, 0.04326679, 0.04326679, 0.04326679, 0.04326679,
0.04977932, 0.04977932, 0.04977932, 0.04977932, 0.05916941,
0.05916941, 0.05916941, 0.05916941, 0.07235759, 0.07235759,
0.07235759, 0.07235759, 0.09038663, 0.09038663, 0.09038663,
0.09038663, 0.11447901, 0.11447901, 0.11447901, 0.11447901,
0.1462786 , 0.1462786 , 0.1462786 , 0.1462786 , 0.18773926,
0.18773926, 0.18773926, 0.18773926, 0.24092418, 0.24092418,
0.24092418, 0.24092418, 0.30752598, 0.30752598, 0.30752598,
0.30752598, 0.38859599, 0.38859599, 0.38859599, 0.38859599,
0.48382089, 0.48382089, 0.48382089, 0.48382089, 0.59020465,
0.59020465, 0.59020465, 0.59020465, 0.69570313, 0.69570313,
0.69570313, 0.69570313, 0.78907489, 0.78907489, 0.78907489,
0.78907489, 0.86478281, 0.86478281, 0.86478281, 0.86478281,
0.92022314, 0.92022314, 0.92022314, 0.92022314, 0.95685053,
0.95685053, 0.95685053, 0.95685053, 0.97864407, 0.97864407,
0.97864407, 0.97864407, 0.99032624, 0.99032624, 0.99032624,
0.99032624, 0.99598231, 0.99598231, 0.99598231, 0.99598231,
0.99846599, 0.99846599, 0.99846599, 0.99846599, 0.9994599 ,
0.9994599 , 0.9994599 , 0.9994599 , 0.99982412, 0.99982412,
0.99982412, 0.99982412, 0.99994688, 0.99994688, 0.99994688,
0.99994688, 0.99998508, 0.99998508, 0.99998508, 0.99998508,
0.9999961 , 0.9999961 , 0.9999961 , 0.9999961 , 0.99999905,
0.99999905, 0.99999905, 0.99999905, 0.99999978, 0.99999978,
0.99999978, 0.99999978, 0.99999996, 0.99999996, 0.99999996]), 'vx': array([-1.99999997, -1.99999997, -1.99999997, -1.99999997, -1.99999984,
-1.99999984, -1.99999984, -1.99999984, -1.99999929, -1.99999929,
-1.99999929, -1.99999929, -1.99999708, -1.99999708, -1.99999708,
-1.99999708, -1.99998884, -1.99998884, -1.99998884, -1.99998884,
-1.99996027, -1.99996027, -1.99996027, -1.99996027, -1.99986853,
-1.99986853, -1.99986853, -1.99986853, -1.99959653, -1.99959653,
-1.99959653, -1.99959653, -1.9988551 , -1.9988551 , -1.9988551 ,
-1.9988551 , -1.99700459, -1.99700459, -1.99700459, -1.99700459,
-1.99279326, -1.99279326, -1.99279326, -1.99279326, -1.98408222,
-1.98408222, -1.98408222, -1.98408222, -1.96772297, -1.96772297,
-1.96772297, -1.96772297, -1.93977123, -1.93977123, -1.93977123,
-1.93977123, -1.89605496, -1.89605496, -1.89605496, -1.89605496,
-1.8328246 , -1.8328246 , -1.8328246 , -1.8328246 , -1.74737057,
-1.74737057, -1.74737057, -1.74737057, -1.64272474, -1.64272474,
-1.64272474, -1.64272474, -1.52780341, -1.52780341, -1.52780341,
-1.52780341, -1.40754959, -1.40754959, -1.40754959, -1.40754959,
-1.28410474, -1.28410474, -1.28410474, -1.28410474, -1.15854062,
-1.15854062, -1.15854062, -1.15854062, -1.03166727, -1.03166727,
-1.03166727, -1.03166727, -0.90506816, -0.90506816, -0.90506816,
-0.90506816, -0.77989359, -0.77989359, -0.77989359, -0.77989359,
-0.65726835, -0.65726835, -0.65726835, -0.65726835, -0.53868102,
-0.53868102, -0.53868102, -0.53868102, -0.42522663, -0.42522663,
-0.42522663, -0.42522663, -0.31799886, -0.31799886, -0.31799886,
-0.31799886, -0.21922957, -0.21922957, -0.21922957, -0.21922957,
-0.12635918, -0.12635918, -0.12635918, -0.12635918, -0.04938981,
-0.04938981, -0.04938981, -0.04938981, 0.04938981, 0.04938981,
0.04938981, 0.04938981, 0.12635918, 0.12635918, 0.12635918,
0.12635918, 0.21922957, 0.21922957, 0.21922957, 0.21922957,
0.31799886, 0.31799886, 0.31799886, 0.31799886, 0.42522663,
0.42522663, 0.42522663, 0.42522663, 0.53868102, 0.53868102,
0.53868102, 0.53868102, 0.65726835, 0.65726835, 0.65726835,
0.65726835, 0.77989359, 0.77989359, 0.77989359, 0.77989359,
0.90506816, 0.90506816, 0.90506816, 0.90506816, 1.03166727,
1.03166727, 1.03166727, 1.03166727, 1.15854062, 1.15854062,
1.15854062, 1.15854062, 1.28410474, 1.28410474, 1.28410474,
1.28410474, 1.40754959, 1.40754959, 1.40754959, 1.40754959,
1.52780341, 1.52780341, 1.52780341, 1.52780341, 1.64272474,
1.64272474, 1.64272474, 1.64272474, 1.74737057, 1.74737057,
1.74737057, 1.74737057, 1.8328246 , 1.8328246 , 1.8328246 ,
1.8328246 , 1.89605496, 1.89605496, 1.89605496, 1.89605496,
1.93977123, 1.93977123, 1.93977123, 1.93977123, 1.96772297,
1.96772297, 1.96772297, 1.96772297, 1.98408222, 1.98408222,
1.98408222, 1.98408222, 1.99279326, 1.99279326, 1.99279326,
1.99279326, 1.99700459, 1.99700459, 1.99700459, 1.99700459,
1.9988551 , 1.9988551 , 1.9988551 , 1.9988551 , 1.99959653,
1.99959653, 1.99959653, 1.99959653, 1.99986853, 1.99986853,
1.99986853, 1.99986853, 1.99996027, 1.99996027, 1.99996027,
1.99996027, 1.99998884, 1.99998884, 1.99998884, 1.99998884,
1.99999708, 1.99999708, 1.99999708, 1.99999708, 1.99999929,
1.99999929, 1.99999929, 1.99999929, 1.99999984, 1.99999984,
1.99999984, 1.99999984, 1.99999997, 1.99999997, 1.99999997]), 'P': array([0.39999998, 0.39999998, 0.39999998, 0.39999998, 0.39999988,
0.39999988, 0.39999988, 0.39999988, 0.39999947, 0.39999947,
0.39999947, 0.39999947, 0.39999781, 0.39999781, 0.39999781,
0.39999781, 0.39999165, 0.39999165, 0.39999165, 0.39999165,
0.39997027, 0.39997027, 0.39997027, 0.39997027, 0.39990163,
0.39990163, 0.39990163, 0.39990163, 0.39969818, 0.39969818,
0.39969818, 0.39969818, 0.3991441 , 0.3991441 , 0.3991441 ,
0.3991441 , 0.39776424, 0.39776424, 0.39776424, 0.39776424,
0.39464004, 0.39464004, 0.39464004, 0.39464004, 0.38824706,
0.38824706, 0.38824706, 0.38824706, 0.37648831, 0.37648831,
0.37648831, 0.37648831, 0.35712158, 0.35712158, 0.35712158,
0.35712158, 0.32858541, 0.32858541, 0.32858541, 0.32858541,
0.29082844, 0.29082844, 0.29082844, 0.29082844, 0.24527872,
0.24527872, 0.24527872, 0.24527872, 0.19727416, 0.19727416,
0.19727416, 0.19727416, 0.15512923, 0.15512923, 0.15512923,
0.15512923, 0.12052423, 0.12052423, 0.12052423, 0.12052423,
0.09300262, 0.09300262, 0.09300262, 0.09300262, 0.07155261,
0.07155261, 0.07155261, 0.07155261, 0.05509219, 0.05509219,
0.05509219, 0.05509219, 0.04264011, 0.04264011, 0.04264011,
0.04264011, 0.03328308, 0.03328308, 0.03328308, 0.03328308,
0.02626985, 0.02626985, 0.02626985, 0.02626985, 0.02101632,
0.02101632, 0.02101632, 0.02101632, 0.01711118, 0.01711118,
0.01711118, 0.01711118, 0.01425083, 0.01425083, 0.01425083,
0.01425083, 0.01218344, 0.01218344, 0.01218344, 0.01218344,
0.01088058, 0.01088058, 0.01088058, 0.01088058, 0.01002955,
0.01002955, 0.01002955, 0.01002955, 0.01002955, 0.01002955,
0.01002955, 0.01002955, 0.01088058, 0.01088058, 0.01088058,
0.01088058, 0.01218344, 0.01218344, 0.01218344, 0.01218344,
0.01425083, 0.01425083, 0.01425083, 0.01425083, 0.01711118,
0.01711118, 0.01711118, 0.01711118, 0.02101632, 0.02101632,
0.02101632, 0.02101632, 0.02626985, 0.02626985, 0.02626985,
0.02626985, 0.03328308, 0.03328308, 0.03328308, 0.03328308,
0.04264011, 0.04264011, 0.04264011, 0.04264011, 0.05509219,
0.05509219, 0.05509219, 0.05509219, 0.07155261, 0.07155261,
0.07155261, 0.07155261, 0.09300262, 0.09300262, 0.09300262,
0.09300262, 0.12052423, 0.12052423, 0.12052423, 0.12052423,
0.15512923, 0.15512923, 0.15512923, 0.15512923, 0.19727416,
0.19727416, 0.19727416, 0.19727416, 0.24527872, 0.24527872,
0.24527872, 0.24527872, 0.29082844, 0.29082844, 0.29082844,
0.29082844, 0.32858541, 0.32858541, 0.32858541, 0.32858541,
0.35712158, 0.35712158, 0.35712158, 0.35712158, 0.37648831,
0.37648831, 0.37648831, 0.37648831, 0.38824706, 0.38824706,
0.38824706, 0.38824706, 0.39464004, 0.39464004, 0.39464004,
0.39464004, 0.39776424, 0.39776424, 0.39776424, 0.39776424,
0.3991441 , 0.3991441 , 0.3991441 , 0.3991441 , 0.39969818,
0.39969818, 0.39969818, 0.39969818, 0.39990163, 0.39990163,
0.39990163, 0.39990163, 0.39997027, 0.39997027, 0.39997027,
0.39997027, 0.39999165, 0.39999165, 0.39999165, 0.39999165,
0.39999781, 0.39999781, 0.39999781, 0.39999781, 0.39999947,
0.39999947, 0.39999947, 0.39999947, 0.39999988, 0.39999988,
0.39999988, 0.39999988, 0.39999998, 0.39999998, 0.39999998])}, {'rho': array([0.99999985, 0.99999985, 0.99999985, 0.99999985, 0.99999927,
0.99999927, 0.99999927, 0.99999927, 0.99999704, 0.99999704,
0.99999704, 0.99999704, 0.99998875, 0.99998875, 0.99998875,
0.99998875, 0.99996003, 0.99996003, 0.99996003, 0.99996003,
0.9998676 , 0.9998676 , 0.9998676 , 0.9998676 , 0.99959219,
0.99959219, 0.99959219, 0.99959219, 0.99883504, 0.99883504,
0.99883504, 0.99883504, 0.99692253, 0.99692253, 0.99692253,
0.99692253, 0.99250442, 0.99250442, 0.99250442, 0.99250442,
0.98321443, 0.98321443, 0.98321443, 0.98321443, 0.96551012,
0.96551012, 0.96551012, 0.96551012, 0.93502374, 0.93502374,
0.93502374, 0.93502374, 0.88763449, 0.88763449, 0.88763449,
0.88763449, 0.8210454 , 0.8210454 , 0.8210454 , 0.8210454 ,
0.73630061, 0.73630061, 0.73630061, 0.73630061, 0.63823743,
0.63823743, 0.63823743, 0.63823743, 0.53373246, 0.53373246,
0.53373246, 0.53373246, 0.43599461, 0.43599461, 0.43599461,
0.43599461, 0.35031012, 0.35031012, 0.35031012, 0.35031012,
0.27805916, 0.27805916, 0.27805916, 0.27805916, 0.21894703,
0.21894703, 0.21894703, 0.21894703, 0.17180593, 0.17180593,
0.17180593, 0.17180593, 0.13496697, 0.13496697, 0.13496697,
0.13496697, 0.10656575, 0.10656575, 0.10656575, 0.10656575,
0.08491109, 0.08491109, 0.08491109, 0.08491109, 0.06862012,
0.06862012, 0.06862012, 0.06862012, 0.05664009, 0.05664009,
0.05664009, 0.05664009, 0.04806144, 0.04806144, 0.04806144,
0.04806144, 0.04207122, 0.04207122, 0.04207122, 0.04207122,
0.03845555, 0.03845555, 0.03845555, 0.03845555, 0.03622561,
0.03622561, 0.03622561, 0.03622561, 0.03622561, 0.03622561,
0.03622561, 0.03622561, 0.03845555, 0.03845555, 0.03845555,
0.03845555, 0.04207122, 0.04207122, 0.04207122, 0.04207122,
0.04806144, 0.04806144, 0.04806144, 0.04806144, 0.05664009,
0.05664009, 0.05664009, 0.05664009, 0.06862012, 0.06862012,
0.06862012, 0.06862012, 0.08491109, 0.08491109, 0.08491109,
0.08491109, 0.10656575, 0.10656575, 0.10656575, 0.10656575,
0.13496697, 0.13496697, 0.13496697, 0.13496697, 0.17180593,
0.17180593, 0.17180593, 0.17180593, 0.21894703, 0.21894703,
0.21894703, 0.21894703, 0.27805916, 0.27805916, 0.27805916,
0.27805916, 0.35031012, 0.35031012, 0.35031012, 0.35031012,
0.43599461, 0.43599461, 0.43599461, 0.43599461, 0.53373246,
0.53373246, 0.53373246, 0.53373246, 0.63823743, 0.63823743,
0.63823743, 0.63823743, 0.73630061, 0.73630061, 0.73630061,
0.73630061, 0.8210454 , 0.8210454 , 0.8210454 , 0.8210454 ,
0.88763449, 0.88763449, 0.88763449, 0.88763449, 0.93502374,
0.93502374, 0.93502374, 0.93502374, 0.96551012, 0.96551012,
0.96551012, 0.96551012, 0.98321443, 0.98321443, 0.98321443,
0.98321443, 0.99250442, 0.99250442, 0.99250442, 0.99250442,
0.99692253, 0.99692253, 0.99692253, 0.99692253, 0.99883504,
0.99883504, 0.99883504, 0.99883504, 0.99959219, 0.99959219,
0.99959219, 0.99959219, 0.9998676 , 0.9998676 , 0.9998676 ,
0.9998676 , 0.99996003, 0.99996003, 0.99996003, 0.99996003,
0.99998875, 0.99998875, 0.99998875, 0.99998875, 0.99999704,
0.99999704, 0.99999704, 0.99999704, 0.99999927, 0.99999927,
0.99999927, 0.99999927, 0.99999985, 0.99999985, 0.99999985]), 'vx': array([-1.99999989, -1.99999989, -1.99999989, -1.99999989, -1.99999945,
-1.99999945, -1.99999945, -1.99999945, -1.99999779, -1.99999779,
-1.99999779, -1.99999779, -1.99999159, -1.99999159, -1.99999159,
-1.99999159, -1.9999701 , -1.9999701 , -1.9999701 , -1.9999701 ,
-1.999901 , -1.999901 , -1.999901 , -1.999901 , -1.99969523,
-1.99969523, -1.99969523, -1.99969523, -1.99913002, -1.99913002,
-1.99913002, -1.99913002, -1.99770379, -1.99770379, -1.99770379,
-1.99770379, -1.99441129, -1.99441129, -1.99441129, -1.99441129,
-1.98748181, -1.98748181, -1.98748181, -1.98748181, -1.97421069,
-1.97421069, -1.97421069, -1.97421069, -1.951062 , -1.951062 ,
-1.951062 , -1.951062 , -1.91412209, -1.91412209, -1.91412209,
-1.91412209, -1.85973564, -1.85973564, -1.85973564, -1.85973564,
-1.78501081, -1.78501081, -1.78501081, -1.78501081, -1.68973692,
-1.68973692, -1.68973692, -1.68973692, -1.58167982, -1.58167982,
-1.58167982, -1.58167982, -1.46723781, -1.46723781, -1.46723781,
-1.46723781, -1.34917209, -1.34917209, -1.34917209, -1.34917209,
-1.22873451, -1.22873451, -1.22873451, -1.22873451, -1.10667593,
-1.10667593, -1.10667593, -1.10667593, -0.98389766, -0.98389766,
-0.98389766, -0.98389766, -0.86186374, -0.86186374, -0.86186374,
-0.86186374, -0.74143354, -0.74143354, -0.74143354, -0.74143354,
-0.62375092, -0.62375092, -0.62375092, -0.62375092, -0.51015791,
-0.51015791, -0.51015791, -0.51015791, -0.40167983, -0.40167983,
-0.40167983, -0.40167983, -0.29941936, -0.29941936, -0.29941936,
-0.29941936, -0.20578565, -0.20578565, -0.20578565, -0.20578565,
-0.11775423, -0.11775423, -0.11775423, -0.11775423, -0.04590013,
-0.04590013, -0.04590013, -0.04590013, 0.04590013, 0.04590013,
0.04590013, 0.04590013, 0.11775423, 0.11775423, 0.11775423,
0.11775423, 0.20578565, 0.20578565, 0.20578565, 0.20578565,
0.29941936, 0.29941936, 0.29941936, 0.29941936, 0.40167983,
0.40167983, 0.40167983, 0.40167983, 0.51015791, 0.51015791,
0.51015791, 0.51015791, 0.62375092, 0.62375092, 0.62375092,
0.62375092, 0.74143354, 0.74143354, 0.74143354, 0.74143354,
0.86186374, 0.86186374, 0.86186374, 0.86186374, 0.98389766,
0.98389766, 0.98389766, 0.98389766, 1.10667593, 1.10667593,
1.10667593, 1.10667593, 1.22873451, 1.22873451, 1.22873451,
1.22873451, 1.34917209, 1.34917209, 1.34917209, 1.34917209,
1.46723781, 1.46723781, 1.46723781, 1.46723781, 1.58167982,
1.58167982, 1.58167982, 1.58167982, 1.68973692, 1.68973692,
1.68973692, 1.68973692, 1.78501081, 1.78501081, 1.78501081,
1.78501081, 1.85973564, 1.85973564, 1.85973564, 1.85973564,
1.91412209, 1.91412209, 1.91412209, 1.91412209, 1.951062 ,
1.951062 , 1.951062 , 1.951062 , 1.97421069, 1.97421069,
1.97421069, 1.97421069, 1.98748181, 1.98748181, 1.98748181,
1.98748181, 1.99441129, 1.99441129, 1.99441129, 1.99441129,
1.99770379, 1.99770379, 1.99770379, 1.99770379, 1.99913002,
1.99913002, 1.99913002, 1.99913002, 1.99969523, 1.99969523,
1.99969523, 1.99969523, 1.999901 , 1.999901 , 1.999901 ,
1.999901 , 1.9999701 , 1.9999701 , 1.9999701 , 1.9999701 ,
1.99999159, 1.99999159, 1.99999159, 1.99999159, 1.99999779,
1.99999779, 1.99999779, 1.99999779, 1.99999945, 1.99999945,
1.99999945, 1.99999945, 1.99999989, 1.99999989, 1.99999989]), 'P': array([0.39999991, 0.39999991, 0.39999991, 0.39999991, 0.39999959,
0.39999959, 0.39999959, 0.39999959, 0.39999835, 0.39999835,
0.39999835, 0.39999835, 0.3999937 , 0.3999937 , 0.3999937 ,
0.3999937 , 0.39997763, 0.39997763, 0.39997763, 0.39997763,
0.39992592, 0.39992592, 0.39992592, 0.39992592, 0.399772 ,
0.399772 , 0.399772 , 0.399772 , 0.39934947, 0.39934947,
0.39934947, 0.39934947, 0.3982851 , 0.3982851 , 0.3982851 ,
0.3982851 , 0.39583774, 0.39583774, 0.39583774, 0.39583774,
0.39073083, 0.39073083, 0.39073083, 0.39073083, 0.3811129 ,
0.3811129 , 0.3811129 , 0.3811129 , 0.36483467, 0.36483467,
0.36483467, 0.36483467, 0.3401215 , 0.3401215 , 0.3401215 ,
0.3401215 , 0.30640378, 0.30640378, 0.30640378, 0.30640378,
0.26470256, 0.26470256, 0.26470256, 0.26470256, 0.21761913,
0.21761913, 0.21761913, 0.21761913, 0.17367368, 0.17367368,
0.17367368, 0.17367368, 0.13657873, 0.13657873, 0.13657873,
0.13657873, 0.10648915, 0.10648915, 0.10648915, 0.10648915,
0.08263428, 0.08263428, 0.08263428, 0.08263428, 0.06402751,
0.06402751, 0.06402751, 0.06402751, 0.04972303, 0.04972303,
0.04972303, 0.04972303, 0.03884924, 0.03884924, 0.03884924,
0.03884924, 0.03061895, 0.03061895, 0.03061895, 0.03061895,
0.02440068, 0.02440068, 0.02440068, 0.02440068, 0.01970868,
0.01970868, 0.01970868, 0.01970868, 0.01619841, 0.01619841,
0.01619841, 0.01619841, 0.01361226, 0.01361226, 0.01361226,
0.01361226, 0.01172956, 0.01172956, 0.01172956, 0.01172956,
0.0105538 , 0.0105538 , 0.0105538 , 0.0105538 , 0.00977192,
0.00977192, 0.00977192, 0.00977192, 0.00977192, 0.00977192,
0.00977192, 0.00977192, 0.0105538 , 0.0105538 , 0.0105538 ,
0.0105538 , 0.01172956, 0.01172956, 0.01172956, 0.01172956,
0.01361226, 0.01361226, 0.01361226, 0.01361226, 0.01619841,
0.01619841, 0.01619841, 0.01619841, 0.01970868, 0.01970868,
0.01970868, 0.01970868, 0.02440068, 0.02440068, 0.02440068,
0.02440068, 0.03061895, 0.03061895, 0.03061895, 0.03061895,
0.03884924, 0.03884924, 0.03884924, 0.03884924, 0.04972303,
0.04972303, 0.04972303, 0.04972303, 0.06402751, 0.06402751,
0.06402751, 0.06402751, 0.08263428, 0.08263428, 0.08263428,
0.08263428, 0.10648915, 0.10648915, 0.10648915, 0.10648915,
0.13657873, 0.13657873, 0.13657873, 0.13657873, 0.17367368,
0.17367368, 0.17367368, 0.17367368, 0.21761913, 0.21761913,
0.21761913, 0.21761913, 0.26470256, 0.26470256, 0.26470256,
0.26470256, 0.30640378, 0.30640378, 0.30640378, 0.30640378,
0.3401215 , 0.3401215 , 0.3401215 , 0.3401215 , 0.36483467,
0.36483467, 0.36483467, 0.36483467, 0.3811129 , 0.3811129 ,
0.3811129 , 0.3811129 , 0.39073083, 0.39073083, 0.39073083,
0.39073083, 0.39583774, 0.39583774, 0.39583774, 0.39583774,
0.3982851 , 0.3982851 , 0.3982851 , 0.3982851 , 0.39934947,
0.39934947, 0.39934947, 0.39934947, 0.399772 , 0.399772 ,
0.399772 , 0.399772 , 0.39992592, 0.39992592, 0.39992592,
0.39992592, 0.39997763, 0.39997763, 0.39997763, 0.39997763,
0.3999937 , 0.3999937 , 0.3999937 , 0.3999937 , 0.39999835,
0.39999835, 0.39999835, 0.39999835, 0.39999959, 0.39999959,
0.39999959, 0.39999959, 0.39999991, 0.39999991, 0.39999991])}, {'rho': array([0.9999995 , 0.9999995 , 0.9999995 , 0.9999995 , 0.99999775,
0.99999775, 0.99999775, 0.99999775, 0.99999151, 0.99999151,
0.99999151, 0.99999151, 0.9999699 , 0.9999699 , 0.9999699 ,
0.9999699 , 0.99990026, 0.99990026, 0.99990026, 0.99990026,
0.99969192, 0.99969192, 0.99969192, 0.99969192, 0.99911516,
0.99911516, 0.99911516, 0.99911516, 0.99764348, 0.99764348,
0.99764348, 0.99764348, 0.9941977 , 0.9941977 , 0.9941977 ,
0.9941977 , 0.9868287 , 0.9868287 , 0.9868287 , 0.9868287 ,
0.97249805, 0.97249805, 0.97249805, 0.97249805, 0.94724114,
0.94724114, 0.94724114, 0.94724114, 0.90696367, 0.90696367,
0.90696367, 0.90696367, 0.84879949, 0.84879949, 0.84879949,
0.84879949, 0.77255426, 0.77255426, 0.77255426, 0.77255426,
0.68175915, 0.68175915, 0.68175915, 0.68175915, 0.58187946,
0.58187946, 0.58187946, 0.58187946, 0.48324306, 0.48324306,
0.48324306, 0.48324306, 0.39424599, 0.39424599, 0.39424599,
0.39424599, 0.31723201, 0.31723201, 0.31723201, 0.31723201,
0.25270654, 0.25270654, 0.25270654, 0.25270654, 0.20005976,
0.20005976, 0.20005976, 0.20005976, 0.15808723, 0.15808723,
0.15808723, 0.15808723, 0.12517052, 0.12517052, 0.12517052,
0.12517052, 0.0996631 , 0.0996631 , 0.0996631 , 0.0996631 ,
0.0800948 , 0.0800948 , 0.0800948 , 0.0800948 , 0.06530948,
0.06530948, 0.06530948, 0.06530948, 0.05437734, 0.05437734,
0.05437734, 0.05437734, 0.04651053, 0.04651053, 0.04651053,
0.04651053, 0.04098266, 0.04098266, 0.04098266, 0.04098266,
0.03767661, 0.03767661, 0.03767661, 0.03767661, 0.03560945,
0.03560945, 0.03560945, 0.03560945, 0.03560945, 0.03560945,
0.03560945, 0.03560945, 0.03767661, 0.03767661, 0.03767661,
0.03767661, 0.04098266, 0.04098266, 0.04098266, 0.04098266,
0.04651053, 0.04651053, 0.04651053, 0.04651053, 0.05437734,
0.05437734, 0.05437734, 0.05437734, 0.06530948, 0.06530948,
0.06530948, 0.06530948, 0.0800948 , 0.0800948 , 0.0800948 ,
0.0800948 , 0.0996631 , 0.0996631 , 0.0996631 , 0.0996631 ,
0.12517052, 0.12517052, 0.12517052, 0.12517052, 0.15808723,
0.15808723, 0.15808723, 0.15808723, 0.20005976, 0.20005976,
0.20005976, 0.20005976, 0.25270654, 0.25270654, 0.25270654,
0.25270654, 0.31723201, 0.31723201, 0.31723201, 0.31723201,
0.39424599, 0.39424599, 0.39424599, 0.39424599, 0.48324306,
0.48324306, 0.48324306, 0.48324306, 0.58187946, 0.58187946,
0.58187946, 0.58187946, 0.68175915, 0.68175915, 0.68175915,
0.68175915, 0.77255426, 0.77255426, 0.77255426, 0.77255426,
0.84879949, 0.84879949, 0.84879949, 0.84879949, 0.90696367,
0.90696367, 0.90696367, 0.90696367, 0.94724114, 0.94724114,
0.94724114, 0.94724114, 0.97249805, 0.97249805, 0.97249805,
0.97249805, 0.9868287 , 0.9868287 , 0.9868287 , 0.9868287 ,
0.9941977 , 0.9941977 , 0.9941977 , 0.9941977 , 0.99764348,
0.99764348, 0.99764348, 0.99764348, 0.99911516, 0.99911516,
0.99911516, 0.99911516, 0.99969192, 0.99969192, 0.99969192,
0.99969192, 0.99990026, 0.99990026, 0.99990026, 0.99990026,
0.9999699 , 0.9999699 , 0.9999699 , 0.9999699 , 0.99999151,
0.99999151, 0.99999151, 0.99999151, 0.99999775, 0.99999775,
0.99999775, 0.99999775, 0.9999995 , 0.9999995 , 0.9999995 ]), 'vx': array([-1.99999963, -1.99999963, -1.99999963, -1.99999963, -1.99999832,
-1.99999832, -1.99999832, -1.99999832, -1.99999365, -1.99999365,
-1.99999365, -1.99999365, -1.99997748, -1.99997748, -1.99997748,
-1.99997748, -1.99992541, -1.99992541, -1.99992541, -1.99992541,
-1.99976969, -1.99976969, -1.99976969, -1.99976969, -1.99933891,
-1.99933891, -1.99933891, -1.99933891, -1.99824065, -1.99824065,
-1.99824065, -1.99824065, -1.99567083, -1.99567083, -1.99567083,
-1.99567083, -1.99017235, -1.99017235, -1.99017235, -1.99017235,
-1.97944047, -1.97944047, -1.97944047, -1.97944047, -1.96033591,
-1.96033591, -1.96033591, -1.96033591, -1.92922225, -1.92922225,
-1.92922225, -1.92922225, -1.88254952, -1.88254952, -1.88254952,
-1.88254952, -1.81738377, -1.81738377, -1.81738377, -1.81738377,
-1.7320712 , -1.7320712 , -1.7320712 , -1.7320712 , -1.63119279,
-1.63119279, -1.63119279, -1.63119279, -1.5224141 , -1.5224141 ,
-1.5224141 , -1.5224141 , -1.40952663, -1.40952663, -1.40952663,
-1.40952663, -1.29399695, -1.29399695, -1.29399695, -1.29399695,
-1.17663739, -1.17663739, -1.17663739, -1.17663739, -1.05806176,
-1.05806176, -1.05806176, -1.05806176, -0.93935673, -0.93935673,
-0.93935673, -0.93935673, -0.82164211, -0.82164211, -0.82164211,
-0.82164211, -0.70568889, -0.70568889, -0.70568889, -0.70568889,
-0.59266476, -0.59266476, -0.59266476, -0.59266476, -0.48371266,
-0.48371266, -0.48371266, -0.48371266, -0.37988588, -0.37988588,
-0.37988588, -0.37988588, -0.28225582, -0.28225582, -0.28225582,
-0.28225582, -0.19343253, -0.19343253, -0.19343253, -0.19343253,
-0.10988534, -0.10988534, -0.10988534, -0.10988534, -0.0427074 ,
-0.0427074 , -0.0427074 , -0.0427074 , 0.0427074 , 0.0427074 ,
0.0427074 , 0.0427074 , 0.10988534, 0.10988534, 0.10988534,
0.10988534, 0.19343253, 0.19343253, 0.19343253, 0.19343253,
0.28225582, 0.28225582, 0.28225582, 0.28225582, 0.37988588,
0.37988588, 0.37988588, 0.37988588, 0.48371266, 0.48371266,
0.48371266, 0.48371266, 0.59266476, 0.59266476, 0.59266476,
0.59266476, 0.70568889, 0.70568889, 0.70568889, 0.70568889,
0.82164211, 0.82164211, 0.82164211, 0.82164211, 0.93935673,
0.93935673, 0.93935673, 0.93935673, 1.05806176, 1.05806176,
1.05806176, 1.05806176, 1.17663739, 1.17663739, 1.17663739,
1.17663739, 1.29399695, 1.29399695, 1.29399695, 1.29399695,
1.40952663, 1.40952663, 1.40952663, 1.40952663, 1.5224141 ,
1.5224141 , 1.5224141 , 1.5224141 , 1.63119279, 1.63119279,
1.63119279, 1.63119279, 1.7320712 , 1.7320712 , 1.7320712 ,
1.7320712 , 1.81738377, 1.81738377, 1.81738377, 1.81738377,
1.88254952, 1.88254952, 1.88254952, 1.88254952, 1.92922225,
1.92922225, 1.92922225, 1.92922225, 1.96033591, 1.96033591,
1.96033591, 1.96033591, 1.97944047, 1.97944047, 1.97944047,
1.97944047, 1.99017235, 1.99017235, 1.99017235, 1.99017235,
1.99567083, 1.99567083, 1.99567083, 1.99567083, 1.99824065,
1.99824065, 1.99824065, 1.99824065, 1.99933891, 1.99933891,
1.99933891, 1.99933891, 1.99976969, 1.99976969, 1.99976969,
1.99976969, 1.99992541, 1.99992541, 1.99992541, 1.99992541,
1.99997748, 1.99997748, 1.99997748, 1.99997748, 1.99999365,
1.99999365, 1.99999365, 1.99999365, 1.99999832, 1.99999832,
1.99999832, 1.99999832, 1.99999963, 1.99999963, 1.99999963]), 'P': array([0.39999972, 0.39999972, 0.39999972, 0.39999972, 0.39999874,
0.39999874, 0.39999874, 0.39999874, 0.39999525, 0.39999525,
0.39999525, 0.39999525, 0.39998315, 0.39998315, 0.39998315,
0.39998315, 0.39994419, 0.39994419, 0.39994419, 0.39994419,
0.39982769, 0.39982769, 0.39982769, 0.39982769, 0.39950557,
0.39950557, 0.39950557, 0.39950557, 0.39868543, 0.39868543,
0.39868543, 0.39868543, 0.39677235, 0.39677235, 0.39677235,
0.39677235, 0.39270661, 0.39270661, 0.39270661, 0.39270661,
0.38487747, 0.38487747, 0.38487747, 0.38487747, 0.3712801 ,
0.3712801 , 0.3712801 , 0.3712801 , 0.35003692, 0.35003692,
0.35003692, 0.35003692, 0.32016663, 0.32016663, 0.32016663,
0.32016663, 0.28215814, 0.28215814, 0.28215814, 0.28215814,
0.23766321, 0.23766321, 0.23766321, 0.23766321, 0.19261647,
0.19261647, 0.19261647, 0.19261647, 0.15337765, 0.15337765,
0.15337765, 0.15337765, 0.12086577, 0.12086577, 0.12086577,
0.12086577, 0.09464989, 0.09464989, 0.09464989, 0.09464989,
0.07388122, 0.07388122, 0.07388122, 0.07388122, 0.0576594 ,
0.0576594 , 0.0576594 , 0.0576594 , 0.04515925, 0.04515925,
0.04515925, 0.04515925, 0.03560064, 0.03560064, 0.03560064,
0.03560064, 0.02831583, 0.02831583, 0.02831583, 0.02831583,
0.02276887, 0.02276887, 0.02276887, 0.02276887, 0.0185577 ,
0.0185577 , 0.0185577 , 0.0185577 , 0.01538723, 0.01538723,
0.01538723, 0.01538723, 0.01304001, 0.01304001, 0.01304001,
0.01304001, 0.01131957, 0.01131957, 0.01131957, 0.01131957,
0.01025723, 0.01025723, 0.01025723, 0.01025723, 0.00953828,
0.00953828, 0.00953828, 0.00953828, 0.00953828, 0.00953828,
0.00953828, 0.00953828, 0.01025723, 0.01025723, 0.01025723,
0.01025723, 0.01131957, 0.01131957, 0.01131957, 0.01131957,
0.01304001, 0.01304001, 0.01304001, 0.01304001, 0.01538723,
0.01538723, 0.01538723, 0.01538723, 0.0185577 , 0.0185577 ,
0.0185577 , 0.0185577 , 0.02276887, 0.02276887, 0.02276887,
0.02276887, 0.02831583, 0.02831583, 0.02831583, 0.02831583,
0.03560064, 0.03560064, 0.03560064, 0.03560064, 0.04515925,
0.04515925, 0.04515925, 0.04515925, 0.0576594 , 0.0576594 ,
0.0576594 , 0.0576594 , 0.07388122, 0.07388122, 0.07388122,
0.07388122, 0.09464989, 0.09464989, 0.09464989, 0.09464989,
0.12086577, 0.12086577, 0.12086577, 0.12086577, 0.15337765,
0.15337765, 0.15337765, 0.15337765, 0.19261647, 0.19261647,
0.19261647, 0.19261647, 0.23766321, 0.23766321, 0.23766321,
0.23766321, 0.28215814, 0.28215814, 0.28215814, 0.28215814,
0.32016663, 0.32016663, 0.32016663, 0.32016663, 0.35003692,
0.35003692, 0.35003692, 0.35003692, 0.3712801 , 0.3712801 ,
0.3712801 , 0.3712801 , 0.38487747, 0.38487747, 0.38487747,
0.38487747, 0.39270661, 0.39270661, 0.39270661, 0.39270661,
0.39677235, 0.39677235, 0.39677235, 0.39677235, 0.39868543,
0.39868543, 0.39868543, 0.39868543, 0.39950557, 0.39950557,
0.39950557, 0.39950557, 0.39982769, 0.39982769, 0.39982769,
0.39982769, 0.39994419, 0.39994419, 0.39994419, 0.39994419,
0.39998315, 0.39998315, 0.39998315, 0.39998315, 0.39999525,
0.39999525, 0.39999525, 0.39999525, 0.39999874, 0.39999874,
0.39999874, 0.39999874, 0.39999972, 0.39999972, 0.39999972])}, {'rho': array([0.99999847, 0.99999847, 0.99999847, 0.99999847, 0.99999357,
0.99999357, 0.99999357, 0.99999357, 0.99997732, 0.99997732,
0.99997732, 0.99997732, 0.99992482, 0.99992482, 0.99992482,
0.99992482, 0.99976716, 0.99976716, 0.99976716, 0.99976716,
0.99932783, 0.99932783, 0.99932783, 0.99932783, 0.99819613,
0.99819613, 0.99819613, 0.99819613, 0.99551258, 0.99551258,
0.99551258, 0.99551258, 0.98968135, 0.98968135, 0.98968135,
0.98968135, 0.97812118, 0.97812118, 0.97812118, 0.97812118,
0.95728984, 0.95728984, 0.95728984, 0.95728984, 0.92324227,
0.92324227, 0.92324227, 0.92324227, 0.87276271, 0.87276271,
0.87276271, 0.87276271, 0.8047176 , 0.8047176 , 0.8047176 ,
0.8047176 , 0.72116255, 0.72116255, 0.72116255, 0.72116255,
0.62714836, 0.62714836, 0.62714836, 0.62714836, 0.52957021,
0.52957021, 0.52957021, 0.52957021, 0.43858686, 0.43858686,
0.43858686, 0.43858686, 0.35783746, 0.35783746, 0.35783746,
0.35783746, 0.28857469, 0.28857469, 0.28857469, 0.28857469,
0.2307988 , 0.2307988 , 0.2307988 , 0.2307988 , 0.1837447 ,
0.1837447 , 0.1837447 , 0.1837447 , 0.14619579, 0.14619579,
0.14619579, 0.14619579, 0.11662939, 0.11662939, 0.11662939,
0.11662939, 0.09360282, 0.09360282, 0.09360282, 0.09360282,
0.07583372, 0.07583372, 0.07583372, 0.07583372, 0.0623598 ,
0.0623598 , 0.0623598 , 0.0623598 , 0.05234262, 0.05234262,
0.05234262, 0.05234262, 0.04510453, 0.04510453, 0.04510453,
0.04510453, 0.03998822, 0.03998822, 0.03998822, 0.03998822,
0.03696215, 0.03696215, 0.03696215, 0.03696215, 0.03504521,
0.03504521, 0.03504521, 0.03504521, 0.03504521, 0.03504521,
0.03504521, 0.03504521, 0.03696215, 0.03696215, 0.03696215,
0.03696215, 0.03998822, 0.03998822, 0.03998822, 0.03998822,
0.04510453, 0.04510453, 0.04510453, 0.04510453, 0.05234262,
0.05234262, 0.05234262, 0.05234262, 0.0623598 , 0.0623598 ,
0.0623598 , 0.0623598 , 0.07583372, 0.07583372, 0.07583372,
0.07583372, 0.09360282, 0.09360282, 0.09360282, 0.09360282,
0.11662939, 0.11662939, 0.11662939, 0.11662939, 0.14619579,
0.14619579, 0.14619579, 0.14619579, 0.1837447 , 0.1837447 ,
0.1837447 , 0.1837447 , 0.2307988 , 0.2307988 , 0.2307988 ,
0.2307988 , 0.28857469, 0.28857469, 0.28857469, 0.28857469,
0.35783746, 0.35783746, 0.35783746, 0.35783746, 0.43858686,
0.43858686, 0.43858686, 0.43858686, 0.52957021, 0.52957021,
0.52957021, 0.52957021, 0.62714836, 0.62714836, 0.62714836,
0.62714836, 0.72116255, 0.72116255, 0.72116255, 0.72116255,
0.8047176 , 0.8047176 , 0.8047176 , 0.8047176 , 0.87276271,
0.87276271, 0.87276271, 0.87276271, 0.92324227, 0.92324227,
0.92324227, 0.92324227, 0.95728984, 0.95728984, 0.95728984,
0.95728984, 0.97812118, 0.97812118, 0.97812118, 0.97812118,
0.98968135, 0.98968135, 0.98968135, 0.98968135, 0.99551258,
0.99551258, 0.99551258, 0.99551258, 0.99819613, 0.99819613,
0.99819613, 0.99819613, 0.99932783, 0.99932783, 0.99932783,
0.99932783, 0.99976716, 0.99976716, 0.99976716, 0.99976716,
0.99992482, 0.99992482, 0.99992482, 0.99992482, 0.99997732,
0.99997732, 0.99997732, 0.99997732, 0.99999357, 0.99999357,
0.99999357, 0.99999357, 0.99999847, 0.99999847, 0.99999847]), 'vx': array([-1.99999886, -1.99999886, -1.99999886, -1.99999886, -1.99999519,
-1.99999519, -1.99999519, -1.99999519, -1.99998304, -1.99998304,
-1.99998304, -1.99998304, -1.99994377, -1.99994377, -1.99994377,
-1.99994377, -1.9998259 , -1.9998259 , -1.9998259 , -1.9998259 ,
-1.99949762, -1.99949762, -1.99949762, -1.99949762, -1.99865259,
-1.99865259, -1.99865259, -1.99865259, -1.99665 , -1.99665 ,
-1.99665 , -1.99665 , -1.99229744, -1.99229744, -1.99229744,
-1.99229744, -1.98364593, -1.98364593, -1.98364593, -1.98364593,
-1.96793482, -1.96793482, -1.96793482, -1.96793482, -1.94182029,
-1.94182029, -1.94182029, -1.94182029, -1.90188121, -1.90188121,
-1.90188121, -1.90188121, -1.84517809, -1.84517809, -1.84517809,
-1.84517809, -1.76960221, -1.76960221, -1.76960221, -1.76960221,
-1.67650008, -1.67650008, -1.67650008, -1.67650008, -1.57350313,
-1.57350313, -1.57350313, -1.57350313, -1.46554675, -1.46554675,
-1.46554675, -1.46554675, -1.35474156, -1.35474156, -1.35474156,
-1.35474156, -1.24188933, -1.24188933, -1.24188933, -1.24188933,
-1.12760981, -1.12760981, -1.12760981, -1.12760981, -1.01250337,
-1.01250337, -1.01250337, -1.01250337, -0.89775199, -0.89775199,
-0.89775199, -0.89775199, -0.78412707, -0.78412707, -0.78412707,
-0.78412707, -0.67240099, -0.67240099, -0.67240099, -0.67240099,
-0.56376681, -0.56376681, -0.56376681, -0.56376681, -0.45914055,
-0.45914055, -0.45914055, -0.45914055, -0.35967195, -0.35967195,
-0.35967195, -0.35967195, -0.26636932, -0.26636932, -0.26636932,
-0.26636932, -0.18206513, -0.18206513, -0.18206513, -0.18206513,
-0.10268501, -0.10268501, -0.10268501, -0.10268501, -0.03978378,
-0.03978378, -0.03978378, -0.03978378, 0.03978378, 0.03978378,
0.03978378, 0.03978378, 0.10268501, 0.10268501, 0.10268501,
0.10268501, 0.18206513, 0.18206513, 0.18206513, 0.18206513,
0.26636932, 0.26636932, 0.26636932, 0.26636932, 0.35967195,
0.35967195, 0.35967195, 0.35967195, 0.45914055, 0.45914055,
0.45914055, 0.45914055, 0.56376681, 0.56376681, 0.56376681,
0.56376681, 0.67240099, 0.67240099, 0.67240099, 0.67240099,
0.78412707, 0.78412707, 0.78412707, 0.78412707, 0.89775199,
0.89775199, 0.89775199, 0.89775199, 1.01250337, 1.01250337,
1.01250337, 1.01250337, 1.12760981, 1.12760981, 1.12760981,
1.12760981, 1.24188933, 1.24188933, 1.24188933, 1.24188933,
1.35474156, 1.35474156, 1.35474156, 1.35474156, 1.46554675,
1.46554675, 1.46554675, 1.46554675, 1.57350313, 1.57350313,
1.57350313, 1.57350313, 1.67650008, 1.67650008, 1.67650008,
1.67650008, 1.76960221, 1.76960221, 1.76960221, 1.76960221,
1.84517809, 1.84517809, 1.84517809, 1.84517809, 1.90188121,
1.90188121, 1.90188121, 1.90188121, 1.94182029, 1.94182029,
1.94182029, 1.94182029, 1.96793482, 1.96793482, 1.96793482,
1.96793482, 1.98364593, 1.98364593, 1.98364593, 1.98364593,
1.99229744, 1.99229744, 1.99229744, 1.99229744, 1.99665 ,
1.99665 , 1.99665 , 1.99665 , 1.99865259, 1.99865259,
1.99865259, 1.99865259, 1.99949762, 1.99949762, 1.99949762,
1.99949762, 1.9998259 , 1.9998259 , 1.9998259 , 1.9998259 ,
1.99994377, 1.99994377, 1.99994377, 1.99994377, 1.99998304,
1.99998304, 1.99998304, 1.99998304, 1.99999519, 1.99999519,
1.99999519, 1.99999519, 1.99999886, 1.99999886, 1.99999886]), 'P': array([0.39999914, 0.39999914, 0.39999914, 0.39999914, 0.3999964 ,
0.3999964 , 0.3999964 , 0.3999964 , 0.39998731, 0.39998731,
0.39998731, 0.39998731, 0.39995792, 0.39995792, 0.39995792,
0.39995792, 0.39986973, 0.39986973, 0.39986973, 0.39986973,
0.39962422, 0.39962422, 0.39962422, 0.39962422, 0.39899287,
0.39899287, 0.39899287, 0.39899287, 0.3975003 , 0.3975003 ,
0.3975003 , 0.3975003 , 0.39427349, 0.39427349, 0.39427349,
0.39427349, 0.38792864, 0.38792864, 0.38792864, 0.38792864,
0.37663634, 0.37663634, 0.37663634, 0.37663634, 0.35850421,
0.35850421, 0.35850421, 0.35850421, 0.33225106, 0.33225106,
0.33225106, 0.33225106, 0.29786124, 0.29786124, 0.29786124,
0.29786124, 0.25659571, 0.25659571, 0.25659571, 0.25659571,
0.21172167, 0.21172167, 0.21172167, 0.21172167, 0.17074616,
0.17074616, 0.17074616, 0.17074616, 0.13602374, 0.13602374,
0.13602374, 0.13602374, 0.10753076, 0.10753076, 0.10753076,
0.10753076, 0.08461296, 0.08461296, 0.08461296, 0.08461296,
0.06644791, 0.06644791, 0.06644791, 0.06644791, 0.05223703,
0.05223703, 0.05223703, 0.05223703, 0.04125001, 0.04125001,
0.04125001, 0.04125001, 0.03279609, 0.03279609, 0.03279609,
0.03279609, 0.02631068, 0.02631068, 0.02631068, 0.02631068,
0.02133519, 0.02133519, 0.02133519, 0.02133519, 0.01753846,
0.01753846, 0.01753846, 0.01753846, 0.01466246, 0.01466246,
0.01466246, 0.01466246, 0.01252489, 0.01252489, 0.01252489,
0.01252489, 0.01094784, 0.01094784, 0.01094784, 0.01094784,
0.0099871 , 0.0099871 , 0.0099871 , 0.0099871 , 0.0093257 ,
0.0093257 , 0.0093257 , 0.0093257 , 0.0093257 , 0.0093257 ,
0.0093257 , 0.0093257 , 0.0099871 , 0.0099871 , 0.0099871 ,
0.0099871 , 0.01094784, 0.01094784, 0.01094784, 0.01094784,
0.01252489, 0.01252489, 0.01252489, 0.01252489, 0.01466246,
0.01466246, 0.01466246, 0.01466246, 0.01753846, 0.01753846,
0.01753846, 0.01753846, 0.02133519, 0.02133519, 0.02133519,
0.02133519, 0.02631068, 0.02631068, 0.02631068, 0.02631068,
0.03279609, 0.03279609, 0.03279609, 0.03279609, 0.04125001,
0.04125001, 0.04125001, 0.04125001, 0.05223703, 0.05223703,
0.05223703, 0.05223703, 0.06644791, 0.06644791, 0.06644791,
0.06644791, 0.08461296, 0.08461296, 0.08461296, 0.08461296,
0.10753076, 0.10753076, 0.10753076, 0.10753076, 0.13602374,
0.13602374, 0.13602374, 0.13602374, 0.17074616, 0.17074616,
0.17074616, 0.17074616, 0.21172167, 0.21172167, 0.21172167,
0.21172167, 0.25659571, 0.25659571, 0.25659571, 0.25659571,
0.29786124, 0.29786124, 0.29786124, 0.29786124, 0.33225106,
0.33225106, 0.33225106, 0.33225106, 0.35850421, 0.35850421,
0.35850421, 0.35850421, 0.37663634, 0.37663634, 0.37663634,
0.37663634, 0.38792864, 0.38792864, 0.38792864, 0.38792864,
0.39427349, 0.39427349, 0.39427349, 0.39427349, 0.3975003 ,
0.3975003 , 0.3975003 , 0.3975003 , 0.39899287, 0.39899287,
0.39899287, 0.39899287, 0.39962422, 0.39962422, 0.39962422,
0.39962422, 0.39986973, 0.39986973, 0.39986973, 0.39986973,
0.39995792, 0.39995792, 0.39995792, 0.39995792, 0.39998731,
0.39998731, 0.39998731, 0.39998731, 0.3999964 , 0.3999964 ,
0.3999964 , 0.3999964 , 0.39999914, 0.39999914, 0.39999914])}, {'rho': array([0.99999566, 0.99999566, 0.99999566, 0.99999566, 0.99998283,
0.99998283, 0.99998283, 0.99998283, 0.99994331, 0.99994331,
0.99994331, 0.99994331, 0.99982395, 0.99982395, 0.99982395,
0.99982395, 0.99948933, 0.99948933, 0.99948933, 0.99948933,
0.9986196 , 0.9986196 , 0.9986196 , 0.9986196 , 0.99653253,
0.99653253, 0.99653253, 0.99653253, 0.99192857, 0.99192857,
0.99192857, 0.99192857, 0.98263354, 0.98263354, 0.98263354,
0.98263354, 0.96552537, 0.96552537, 0.96552537, 0.96552537,
0.93689349, 0.93689349, 0.93689349, 0.93689349, 0.89334911,
0.89334911, 0.89334911, 0.89334911, 0.83306104, 0.83306104,
0.83306104, 0.83306104, 0.7568574 , 0.7568574 , 0.7568574 ,
0.7568574 , 0.66886528, 0.66886528, 0.66886528, 0.66886528,
0.57434604, 0.57434604, 0.57434604, 0.57434604, 0.48263253,
0.48263253, 0.48263253, 0.48263253, 0.39923911, 0.39923911,
0.39923911, 0.39923911, 0.32605056, 0.32605056, 0.32605056,
0.32605056, 0.26366261, 0.26366261, 0.26366261, 0.26366261,
0.21178267, 0.21178267, 0.21178267, 0.21178267, 0.16957807,
0.16957807, 0.16957807, 0.16957807, 0.13582335, 0.13582335,
0.13582335, 0.13582335, 0.10913615, 0.10913615, 0.10913615,
0.10913615, 0.08824699, 0.08824699, 0.08824699, 0.08824699,
0.07204686, 0.07204686, 0.07204686, 0.07204686, 0.05971767,
0.05971767, 0.05971767, 0.05971767, 0.0505044 , 0.0505044 ,
0.0505044 , 0.0505044 , 0.04382509, 0.04382509, 0.04382509,
0.04382509, 0.03907704, 0.03907704, 0.03907704, 0.03907704,
0.03630491, 0.03630491, 0.03630491, 0.03630491, 0.03452707,
0.03452707, 0.03452707, 0.03452707, 0.03452707, 0.03452707,
0.03452707, 0.03452707, 0.03630491, 0.03630491, 0.03630491,
0.03630491, 0.03907704, 0.03907704, 0.03907704, 0.03907704,
0.04382509, 0.04382509, 0.04382509, 0.04382509, 0.0505044 ,
0.0505044 , 0.0505044 , 0.0505044 , 0.05971767, 0.05971767,
0.05971767, 0.05971767, 0.07204686, 0.07204686, 0.07204686,
0.07204686, 0.08824699, 0.08824699, 0.08824699, 0.08824699,
0.10913615, 0.10913615, 0.10913615, 0.10913615, 0.13582335,
0.13582335, 0.13582335, 0.13582335, 0.16957807, 0.16957807,
0.16957807, 0.16957807, 0.21178267, 0.21178267, 0.21178267,
0.21178267, 0.26366261, 0.26366261, 0.26366261, 0.26366261,
0.32605056, 0.32605056, 0.32605056, 0.32605056, 0.39923911,
0.39923911, 0.39923911, 0.39923911, 0.48263253, 0.48263253,
0.48263253, 0.48263253, 0.57434604, 0.57434604, 0.57434604,
0.57434604, 0.66886528, 0.66886528, 0.66886528, 0.66886528,
0.7568574 , 0.7568574 , 0.7568574 , 0.7568574 , 0.83306104,
0.83306104, 0.83306104, 0.83306104, 0.89334911, 0.89334911,
0.89334911, 0.89334911, 0.93689349, 0.93689349, 0.93689349,
0.93689349, 0.96552537, 0.96552537, 0.96552537, 0.96552537,
0.98263354, 0.98263354, 0.98263354, 0.98263354, 0.99192857,
0.99192857, 0.99192857, 0.99192857, 0.99653253, 0.99653253,
0.99653253, 0.99653253, 0.9986196 , 0.9986196 , 0.9986196 ,
0.9986196 , 0.99948933, 0.99948933, 0.99948933, 0.99948933,
0.99982395, 0.99982395, 0.99982395, 0.99982395, 0.99994331,
0.99994331, 0.99994331, 0.99994331, 0.99998283, 0.99998283,
0.99998283, 0.99998283, 0.99999566, 0.99999566, 0.99999566]), 'vx': array([-1.99999675, -1.99999675, -1.99999675, -1.99999675, -1.99998715,
-1.99998715, -1.99998715, -1.99998715, -1.9999576 , -1.9999576 ,
-1.9999576 , -1.9999576 , -1.99986834, -1.99986834, -1.99986834,
-1.99986834, -1.99961822, -1.99961822, -1.99961822, -1.99961822,
-1.99896851, -1.99896851, -1.99896851, -1.99896851, -1.99741024,
-1.99741024, -1.99741024, -1.99741024, -1.99397261, -1.99397261,
-1.99397261, -1.99397261, -1.98701925, -1.98701925, -1.98701925,
-1.98701925, -1.97414468, -1.97414468, -1.97414468, -1.97414468,
-1.95230703, -1.95230703, -1.95230703, -1.95230703, -1.91824244,
-1.91824244, -1.91824244, -1.91824244, -1.86901264, -1.86901264,
-1.86901264, -1.86901264, -1.80239983, -1.80239983, -1.80239983,
-1.80239983, -1.71777174, -1.71777174, -1.71777174, -1.71777174,
-1.62075227, -1.62075227, -1.62075227, -1.62075227, -1.5176673 ,
-1.5176673 , -1.5176673 , -1.5176673 , -1.41130546, -1.41130546,
-1.41130546, -1.41130546, -1.30281595, -1.30281595, -1.30281595,
-1.30281595, -1.1926813 , -1.1926813 , -1.1926813 , -1.1926813 ,
-1.08144071, -1.08144071, -1.08144071, -1.08144071, -0.9698171 ,
-0.9698171 , -0.9698171 , -0.9698171 , -0.85882329, -0.85882329,
-0.85882329, -0.85882329, -0.74907381, -0.74907381, -0.74907381,
-0.74907381, -0.64135792, -0.64135792, -0.64135792, -0.64135792,
-0.5368285 , -0.5368285 , -0.5368285 , -0.5368285 , -0.43626287,
-0.43626287, -0.43626287, -0.43626287, -0.34088793, -0.34088793,
-0.34088793, -0.34088793, -0.25163926, -0.25163926, -0.25163926,
-0.25163926, -0.17159155, -0.17159155, -0.17159155, -0.17159155,
-0.09609388, -0.09609388, -0.09609388, -0.09609388, -0.03710493,
-0.03710493, -0.03710493, -0.03710493, 0.03710493, 0.03710493,
0.03710493, 0.03710493, 0.09609388, 0.09609388, 0.09609388,
0.09609388, 0.17159155, 0.17159155, 0.17159155, 0.17159155,
0.25163926, 0.25163926, 0.25163926, 0.25163926, 0.34088793,
0.34088793, 0.34088793, 0.34088793, 0.43626287, 0.43626287,
0.43626287, 0.43626287, 0.5368285 , 0.5368285 , 0.5368285 ,
0.5368285 , 0.64135792, 0.64135792, 0.64135792, 0.64135792,
0.74907381, 0.74907381, 0.74907381, 0.74907381, 0.85882329,
0.85882329, 0.85882329, 0.85882329, 0.9698171 , 0.9698171 ,
0.9698171 , 0.9698171 , 1.08144071, 1.08144071, 1.08144071,
1.08144071, 1.1926813 , 1.1926813 , 1.1926813 , 1.1926813 ,
1.30281595, 1.30281595, 1.30281595, 1.30281595, 1.41130546,
1.41130546, 1.41130546, 1.41130546, 1.5176673 , 1.5176673 ,
1.5176673 , 1.5176673 , 1.62075227, 1.62075227, 1.62075227,
1.62075227, 1.71777174, 1.71777174, 1.71777174, 1.71777174,
1.80239983, 1.80239983, 1.80239983, 1.80239983, 1.86901264,
1.86901264, 1.86901264, 1.86901264, 1.91824244, 1.91824244,
1.91824244, 1.91824244, 1.95230703, 1.95230703, 1.95230703,
1.95230703, 1.97414468, 1.97414468, 1.97414468, 1.97414468,
1.98701925, 1.98701925, 1.98701925, 1.98701925, 1.99397261,
1.99397261, 1.99397261, 1.99397261, 1.99741024, 1.99741024,
1.99741024, 1.99741024, 1.99896851, 1.99896851, 1.99896851,
1.99896851, 1.99961822, 1.99961822, 1.99961822, 1.99961822,
1.99986834, 1.99986834, 1.99986834, 1.99986834, 1.9999576 ,
1.9999576 , 1.9999576 , 1.9999576 , 1.99998715, 1.99998715,
1.99998715, 1.99998715, 1.99999675, 1.99999675, 1.99999675]), 'P': array([0.39999757, 0.39999757, 0.39999757, 0.39999757, 0.39999039,
0.39999039, 0.39999039, 0.39999039, 0.39996827, 0.39996827,
0.39996827, 0.39996827, 0.39990149, 0.39990149, 0.39990149,
0.39990149, 0.3997144 , 0.3997144 , 0.3997144 , 0.3997144 ,
0.3992288 , 0.3992288 , 0.3992288 , 0.3992288 , 0.39806632,
0.39806632, 0.39806632, 0.39806632, 0.39551257, 0.39551257,
0.39551257, 0.39551257, 0.3903916 , 0.3903916 , 0.3903916 ,
0.3903916 , 0.38106417, 0.38106417, 0.38106417, 0.38106417,
0.36569 , 0.36569 , 0.36569 , 0.36569 , 0.34279115,
0.34279115, 0.34279115, 0.34279115, 0.31191214, 0.31191214,
0.31191214, 0.31191214, 0.27393752, 0.27393752, 0.27393752,
0.27393752, 0.23071361, 0.23071361, 0.23071361, 0.23071361,
0.18851007, 0.18851007, 0.18851007, 0.18851007, 0.15183356,
0.15183356, 0.15183356, 0.15183356, 0.12119467, 0.12119467,
0.12119467, 0.12119467, 0.09617199, 0.09617199, 0.09617199,
0.09617199, 0.07605835, 0.07605835, 0.07605835, 0.07605835,
0.06009841, 0.06009841, 0.06009841, 0.06009841, 0.04759159,
0.04759159, 0.04759159, 0.04759159, 0.03787746, 0.03787746,
0.03787746, 0.03787746, 0.03035827, 0.03035827, 0.03035827,
0.03035827, 0.02455267, 0.02455267, 0.02455267, 0.02455267,
0.02006904, 0.02006904, 0.02006904, 0.02006904, 0.01663084,
0.01663084, 0.01663084, 0.01663084, 0.01401174, 0.01401174,
0.01401174, 0.01401174, 0.0120593 , 0.0120593 , 0.0120593 ,
0.0120593 , 0.01060965, 0.01060965, 0.01060965, 0.01060965,
0.00974025, 0.00974025, 0.00974025, 0.00974025, 0.00913165,
0.00913165, 0.00913165, 0.00913165, 0.00913165, 0.00913165,
0.00913165, 0.00913165, 0.00974025, 0.00974025, 0.00974025,
0.00974025, 0.01060965, 0.01060965, 0.01060965, 0.01060965,
0.0120593 , 0.0120593 , 0.0120593 , 0.0120593 , 0.01401174,
0.01401174, 0.01401174, 0.01401174, 0.01663084, 0.01663084,
0.01663084, 0.01663084, 0.02006904, 0.02006904, 0.02006904,
0.02006904, 0.02455267, 0.02455267, 0.02455267, 0.02455267,
0.03035827, 0.03035827, 0.03035827, 0.03035827, 0.03787746,
0.03787746, 0.03787746, 0.03787746, 0.04759159, 0.04759159,
0.04759159, 0.04759159, 0.06009841, 0.06009841, 0.06009841,
0.06009841, 0.07605835, 0.07605835, 0.07605835, 0.07605835,
0.09617199, 0.09617199, 0.09617199, 0.09617199, 0.12119467,
0.12119467, 0.12119467, 0.12119467, 0.15183356, 0.15183356,
0.15183356, 0.15183356, 0.18851007, 0.18851007, 0.18851007,
0.18851007, 0.23071361, 0.23071361, 0.23071361, 0.23071361,
0.27393752, 0.27393752, 0.27393752, 0.27393752, 0.31191214,
0.31191214, 0.31191214, 0.31191214, 0.34279115, 0.34279115,
0.34279115, 0.34279115, 0.36569 , 0.36569 , 0.36569 ,
0.36569 , 0.38106417, 0.38106417, 0.38106417, 0.38106417,
0.3903916 , 0.3903916 , 0.3903916 , 0.3903916 , 0.39551257,
0.39551257, 0.39551257, 0.39551257, 0.39806632, 0.39806632,
0.39806632, 0.39806632, 0.3992288 , 0.3992288 , 0.3992288 ,
0.3992288 , 0.3997144 , 0.3997144 , 0.3997144 , 0.3997144 ,
0.39990149, 0.39990149, 0.39990149, 0.39990149, 0.39996827,
0.39996827, 0.39996827, 0.39996827, 0.39999039, 0.39999039,
0.39999039, 0.39999039, 0.39999757, 0.39999757, 0.39999757])}, {'rho': array([0.99998847, 0.99998847, 0.99998847, 0.99998847, 0.99995701,
0.99995701, 0.99995701, 0.99995701, 0.99986688, 0.99986688,
0.99986688, 0.99986688, 0.99961198, 0.99961198, 0.99961198,
0.99961198, 0.99894398, 0.99894398, 0.99894398, 0.99894398,
0.99732287, 0.99732287, 0.99732287, 0.99732287, 0.99369558,
0.99369558, 0.99369558, 0.99369558, 0.9862448 , 0.9862448 ,
0.9862448 , 0.9862448 , 0.97225128, 0.97225128, 0.97225128,
0.97225128, 0.94829355, 0.94829355, 0.94829355, 0.94829355,
0.91094941, 0.91094941, 0.91094941, 0.91094941, 0.85789256,
0.85789256, 0.85789256, 0.85789256, 0.78897867, 0.78897867,
0.78897867, 0.78897867, 0.70702155, 0.70702155, 0.70702155,
0.70702155, 0.61699851, 0.61699851, 0.61699851, 0.61699851,
0.52578519, 0.52578519, 0.52578519, 0.52578519, 0.44081147,
0.44081147, 0.44081147, 0.44081147, 0.36459482, 0.36459482,
0.36459482, 0.36459482, 0.29823676, 0.29823676, 0.29823676,
0.29823676, 0.2419276 , 0.2419276 , 0.2419276 , 0.2419276 ,
0.19520709, 0.19520709, 0.19520709, 0.19520709, 0.1572058 ,
0.1572058 , 0.1572058 , 0.1572058 , 0.12672261, 0.12672261,
0.12672261, 0.12672261, 0.1025238 , 0.1025238 , 0.1025238 ,
0.1025238 , 0.08348797, 0.08348797, 0.08348797, 0.08348797,
0.06866448, 0.06866448, 0.06866448, 0.06866448, 0.05733948,
0.05733948, 0.05733948, 0.05733948, 0.04883664, 0.04883664,
0.04883664, 0.04883664, 0.04265685, 0.04265685, 0.04265685,
0.04265685, 0.03823985, 0.03823985, 0.03823985, 0.03823985,
0.03569867, 0.03569867, 0.03569867, 0.03569867, 0.03404996,
0.03404996, 0.03404996, 0.03404996, 0.03404996, 0.03404996,
0.03404996, 0.03404996, 0.03569867, 0.03569867, 0.03569867,
0.03569867, 0.03823985, 0.03823985, 0.03823985, 0.03823985,
0.04265685, 0.04265685, 0.04265685, 0.04265685, 0.04883664,
0.04883664, 0.04883664, 0.04883664, 0.05733948, 0.05733948,
0.05733948, 0.05733948, 0.06866448, 0.06866448, 0.06866448,
0.06866448, 0.08348797, 0.08348797, 0.08348797, 0.08348797,
0.1025238 , 0.1025238 , 0.1025238 , 0.1025238 , 0.12672261,
0.12672261, 0.12672261, 0.12672261, 0.1572058 , 0.1572058 ,
0.1572058 , 0.1572058 , 0.19520709, 0.19520709, 0.19520709,
0.19520709, 0.2419276 , 0.2419276 , 0.2419276 , 0.2419276 ,
0.29823676, 0.29823676, 0.29823676, 0.29823676, 0.36459482,
0.36459482, 0.36459482, 0.36459482, 0.44081147, 0.44081147,
0.44081147, 0.44081147, 0.52578519, 0.52578519, 0.52578519,
0.52578519, 0.61699851, 0.61699851, 0.61699851, 0.61699851,
0.70702155, 0.70702155, 0.70702155, 0.70702155, 0.78897867,
0.78897867, 0.78897867, 0.78897867, 0.85789256, 0.85789256,
0.85789256, 0.85789256, 0.91094941, 0.91094941, 0.91094941,
0.91094941, 0.94829355, 0.94829355, 0.94829355, 0.94829355,
0.97225128, 0.97225128, 0.97225128, 0.97225128, 0.9862448 ,
0.9862448 , 0.9862448 , 0.9862448 , 0.99369558, 0.99369558,
0.99369558, 0.99369558, 0.99732287, 0.99732287, 0.99732287,
0.99732287, 0.99894398, 0.99894398, 0.99894398, 0.99894398,
0.99961198, 0.99961198, 0.99961198, 0.99961198, 0.99986688,
0.99986688, 0.99986688, 0.99986688, 0.99995701, 0.99995701,
0.99995701, 0.99995701, 0.99998847, 0.99998847, 0.99998847]), 'vx': array([-1.99999137, -1.99999137, -1.99999137, -1.99999137, -1.99996784,
-1.99996784, -1.99996784, -1.99996784, -1.99990043, -1.99990043,
-1.99990043, -1.99990043, -1.99970985, -1.99970985, -1.99970985,
-1.99970985, -1.99921065, -1.99921065, -1.99921065, -1.99921065,
-1.99799978, -1.99799978, -1.99799978, -1.99799978, -1.99529058,
-1.99529058, -1.99529058, -1.99529058, -1.98971828, -1.98971828,
-1.98971828, -1.98971828, -1.97920517, -1.97920517, -1.97920517,
-1.97920517, -1.96101325, -1.96101325, -1.96101325, -1.96101325,
-1.93206382, -1.93206382, -1.93206382, -1.93206382, -1.88944595,
-1.88944595, -1.88944595, -1.88944595, -1.83086286, -1.83086286,
-1.83086286, -1.83086286, -1.75493987, -1.75493987, -1.75493987,
-1.75493987, -1.6643763 , -1.6643763 , -1.6643763 , -1.6643763 ,
-1.56616266, -1.56616266, -1.56616266, -1.56616266, -1.4641092 ,
-1.4641092 , -1.4641092 , -1.4641092 , -1.35970933, -1.35970933,
-1.35970933, -1.35970933, -1.25362276, -1.25362276, -1.25362276,
-1.25362276, -1.14620091, -1.14620091, -1.14620091, -1.14620091,
-1.03796511, -1.03796511, -1.03796511, -1.03796511, -0.92976499,
-0.92976499, -0.92976499, -0.92976499, -0.82233856, -0.82233856,
-0.82233856, -0.82233856, -0.71626507, -0.71626507, -0.71626507,
-0.71626507, -0.61235476, -0.61235476, -0.61235476, -0.61235476,
-0.51166547, -0.51166547, -0.51166547, -0.51166547, -0.41492292,
-0.41492292, -0.41492292, -0.41492292, -0.32340294, -0.32340294,
-0.32340294, -0.32340294, -0.23796036, -0.23796036, -0.23796036,
-0.23796036, -0.16193087, -0.16193087, -0.16193087, -0.16193087,
-0.09005938, -0.09005938, -0.09005938, -0.09005938, -0.03464946,
-0.03464946, -0.03464946, -0.03464946, 0.03464946, 0.03464946,
0.03464946, 0.03464946, 0.09005938, 0.09005938, 0.09005938,
0.09005938, 0.16193087, 0.16193087, 0.16193087, 0.16193087,
0.23796036, 0.23796036, 0.23796036, 0.23796036, 0.32340294,
0.32340294, 0.32340294, 0.32340294, 0.41492292, 0.41492292,
0.41492292, 0.41492292, 0.51166547, 0.51166547, 0.51166547,
0.51166547, 0.61235476, 0.61235476, 0.61235476, 0.61235476,
0.71626507, 0.71626507, 0.71626507, 0.71626507, 0.82233856,
0.82233856, 0.82233856, 0.82233856, 0.92976499, 0.92976499,
0.92976499, 0.92976499, 1.03796511, 1.03796511, 1.03796511,
1.03796511, 1.14620091, 1.14620091, 1.14620091, 1.14620091,
1.25362276, 1.25362276, 1.25362276, 1.25362276, 1.35970933,
1.35970933, 1.35970933, 1.35970933, 1.4641092 , 1.4641092 ,
1.4641092 , 1.4641092 , 1.56616266, 1.56616266, 1.56616266,
1.56616266, 1.6643763 , 1.6643763 , 1.6643763 , 1.6643763 ,
1.75493987, 1.75493987, 1.75493987, 1.75493987, 1.83086286,
1.83086286, 1.83086286, 1.83086286, 1.88944595, 1.88944595,
1.88944595, 1.88944595, 1.93206382, 1.93206382, 1.93206382,
1.93206382, 1.96101325, 1.96101325, 1.96101325, 1.96101325,
1.97920517, 1.97920517, 1.97920517, 1.97920517, 1.98971828,
1.98971828, 1.98971828, 1.98971828, 1.99529058, 1.99529058,
1.99529058, 1.99529058, 1.99799978, 1.99799978, 1.99799978,
1.99799978, 1.99921065, 1.99921065, 1.99921065, 1.99921065,
1.99970985, 1.99970985, 1.99970985, 1.99970985, 1.99990043,
1.99990043, 1.99990043, 1.99990043, 1.99996784, 1.99996784,
1.99996784, 1.99996784, 1.99999137, 1.99999137, 1.99999137]), 'P': array([0.39999354, 0.39999354, 0.39999354, 0.39999354, 0.39997593,
0.39997593, 0.39997593, 0.39997593, 0.39992549, 0.39992549,
0.39992549, 0.39992549, 0.39978293, 0.39978293, 0.39978293,
0.39978293, 0.39940972, 0.39940972, 0.39940972, 0.39940972,
0.39850575, 0.39850575, 0.39850575, 0.39850575, 0.3964899 ,
0.3964899 , 0.3964899 , 0.3964899 , 0.39237226, 0.39237226,
0.39237226, 0.39237226, 0.38470646, 0.38470646, 0.38470646,
0.38470646, 0.37175201, 0.37175201, 0.37175201, 0.37175201,
0.35192374, 0.35192374, 0.35192374, 0.35192374, 0.32441495,
0.32441495, 0.32441495, 0.32441495, 0.28965157, 0.28965157,
0.28965157, 0.28965157, 0.24903872, 0.24903872, 0.24903872,
0.24903872, 0.20647569, 0.20647569, 0.20647569, 0.20647569,
0.16816214, 0.16816214, 0.16816214, 0.16816214, 0.13554277,
0.13554277, 0.13554277, 0.13554277, 0.10849608, 0.10849608,
0.10849608, 0.10849608, 0.08645297, 0.08645297, 0.08645297,
0.08645297, 0.0687285 , 0.0687285 , 0.0687285 , 0.0687285 ,
0.05464577, 0.05464577, 0.05464577, 0.05464577, 0.04358466,
0.04358466, 0.04358466, 0.04358466, 0.03494858, 0.03494858,
0.03494858, 0.03494858, 0.0282257 , 0.0282257 , 0.0282257 ,
0.0282257 , 0.02300204, 0.02300204, 0.02300204, 0.02300204,
0.01894477, 0.01894477, 0.01894477, 0.01894477, 0.01581851,
0.01581851, 0.01581851, 0.01581851, 0.0134249 , 0.0134249 ,
0.0134249 , 0.0134249 , 0.01163695, 0.01163695, 0.01163695,
0.01163695, 0.01030101, 0.01030101, 0.01030101, 0.01030101,
0.00951395, 0.00951395, 0.00951395, 0.00951395, 0.00895395,
0.00895395, 0.00895395, 0.00895395, 0.00895395, 0.00895395,
0.00895395, 0.00895395, 0.00951395, 0.00951395, 0.00951395,
0.00951395, 0.01030101, 0.01030101, 0.01030101, 0.01030101,
0.01163695, 0.01163695, 0.01163695, 0.01163695, 0.0134249 ,
0.0134249 , 0.0134249 , 0.0134249 , 0.01581851, 0.01581851,
0.01581851, 0.01581851, 0.01894477, 0.01894477, 0.01894477,
0.01894477, 0.02300204, 0.02300204, 0.02300204, 0.02300204,
0.0282257 , 0.0282257 , 0.0282257 , 0.0282257 , 0.03494858,
0.03494858, 0.03494858, 0.03494858, 0.04358466, 0.04358466,
0.04358466, 0.04358466, 0.05464577, 0.05464577, 0.05464577,
0.05464577, 0.0687285 , 0.0687285 , 0.0687285 , 0.0687285 ,
0.08645297, 0.08645297, 0.08645297, 0.08645297, 0.10849608,
0.10849608, 0.10849608, 0.10849608, 0.13554277, 0.13554277,
0.13554277, 0.13554277, 0.16816214, 0.16816214, 0.16816214,
0.16816214, 0.20647569, 0.20647569, 0.20647569, 0.20647569,
0.24903872, 0.24903872, 0.24903872, 0.24903872, 0.28965157,
0.28965157, 0.28965157, 0.28965157, 0.32441495, 0.32441495,
0.32441495, 0.32441495, 0.35192374, 0.35192374, 0.35192374,
0.35192374, 0.37175201, 0.37175201, 0.37175201, 0.37175201,
0.38470646, 0.38470646, 0.38470646, 0.38470646, 0.39237226,
0.39237226, 0.39237226, 0.39237226, 0.3964899 , 0.3964899 ,
0.3964899 , 0.3964899 , 0.39850575, 0.39850575, 0.39850575,
0.39850575, 0.39940972, 0.39940972, 0.39940972, 0.39940972,
0.39978293, 0.39978293, 0.39978293, 0.39978293, 0.39992549,
0.39992549, 0.39992549, 0.39992549, 0.39997593, 0.39997593,
0.39997593, 0.39997593, 0.39999354, 0.39999354, 0.39999354])}, {'rho': array([0.99997121, 0.99997121, 0.99997121, 0.99997121, 0.99989867,
0.99989867, 0.99989867, 0.99989867, 0.99970524, 0.99970524,
0.99970524, 0.99970524, 0.99919234, 0.99919234, 0.99919234,
0.99919234, 0.99793468, 0.99793468, 0.99793468, 0.99793468,
0.99508255, 0.99508255, 0.99508255, 0.99508255, 0.98912736,
0.98912736, 0.98912736, 0.98912736, 0.97772552, 0.97772552,
0.97772552, 0.97772552, 0.95777449, 0.95777449, 0.95777449,
0.95777449, 0.92592644, 0.92592644, 0.92592644, 0.92592644,
0.87952872, 0.87952872, 0.87952872, 0.87952872, 0.81767518,
0.81767518, 0.81767518, 0.81767518, 0.74199974, 0.74199974,
0.74199974, 0.74199974, 0.65688553, 0.65688553, 0.65688553,
0.65688553, 0.5675831 , 0.5675831 , 0.5675831 , 0.5675831 ,
0.4819957 , 0.4819957 , 0.4819957 , 0.4819957 , 0.40365598,
0.40365598, 0.40365598, 0.40365598, 0.33406413, 0.33406413,
0.33406413, 0.33406413, 0.27383208, 0.27383208, 0.27383208,
0.27383208, 0.22289308, 0.22289308, 0.22289308, 0.22289308,
0.18069594, 0.18069594, 0.18069594, 0.18069594, 0.1463409 ,
0.1463409 , 0.1463409 , 0.1463409 , 0.11869357, 0.11869357,
0.11869357, 0.11869357, 0.09665729, 0.09665729, 0.09665729,
0.09665729, 0.07923849, 0.07923849, 0.07923849, 0.07923849,
0.06562854, 0.06562854, 0.06562854, 0.06562854, 0.05518928,
0.05518928, 0.05518928, 0.05518928, 0.04731768, 0.04731768,
0.04731768, 0.04731768, 0.04158686, 0.04158686, 0.04158686,
0.04158686, 0.03746873, 0.03746873, 0.03746873, 0.03746873,
0.035138 , 0.035138 , 0.035138 , 0.035138 , 0.03360944,
0.03360944, 0.03360944, 0.03360944, 0.03360944, 0.03360944,
0.03360944, 0.03360944, 0.035138 , 0.035138 , 0.035138 ,
0.035138 , 0.03746873, 0.03746873, 0.03746873, 0.03746873,
0.04158686, 0.04158686, 0.04158686, 0.04158686, 0.04731768,
0.04731768, 0.04731768, 0.04731768, 0.05518928, 0.05518928,
0.05518928, 0.05518928, 0.06562854, 0.06562854, 0.06562854,
0.06562854, 0.07923849, 0.07923849, 0.07923849, 0.07923849,
0.09665729, 0.09665729, 0.09665729, 0.09665729, 0.11869357,
0.11869357, 0.11869357, 0.11869357, 0.1463409 , 0.1463409 ,
0.1463409 , 0.1463409 , 0.18069594, 0.18069594, 0.18069594,
0.18069594, 0.22289308, 0.22289308, 0.22289308, 0.22289308,
0.27383208, 0.27383208, 0.27383208, 0.27383208, 0.33406413,
0.33406413, 0.33406413, 0.33406413, 0.40365598, 0.40365598,
0.40365598, 0.40365598, 0.4819957 , 0.4819957 , 0.4819957 ,
0.4819957 , 0.5675831 , 0.5675831 , 0.5675831 , 0.5675831 ,
0.65688553, 0.65688553, 0.65688553, 0.65688553, 0.74199974,
0.74199974, 0.74199974, 0.74199974, 0.81767518, 0.81767518,
0.81767518, 0.81767518, 0.87952872, 0.87952872, 0.87952872,
0.87952872, 0.92592644, 0.92592644, 0.92592644, 0.92592644,
0.95777449, 0.95777449, 0.95777449, 0.95777449, 0.97772552,
0.97772552, 0.97772552, 0.97772552, 0.98912736, 0.98912736,
0.98912736, 0.98912736, 0.99508255, 0.99508255, 0.99508255,
0.99508255, 0.99793468, 0.99793468, 0.99793468, 0.99793468,
0.99919234, 0.99919234, 0.99919234, 0.99919234, 0.99970524,
0.99970524, 0.99970524, 0.99970524, 0.99989867, 0.99989867,
0.99989867, 0.99989867, 0.99997121, 0.99997121, 0.99997121]), 'vx': array([-1.99997846, -1.99997846, -1.99997846, -1.99997846, -1.9999242 ,
-1.9999242 , -1.9999242 , -1.9999242 , -1.99977955, -1.99977955,
-1.99977955, -1.99977955, -1.99939615, -1.99939615, -1.99939615,
-1.99939615, -1.99845642, -1.99845642, -1.99845642, -1.99845642,
-1.99632559, -1.99632559, -1.99632559, -1.99632559, -1.99187246,
-1.99187246, -1.99187246, -1.99187246, -1.98331711, -1.98331711,
-1.98331711, -1.98331711, -1.96822029, -1.96822029, -1.96822029,
-1.96822029, -1.94371206, -1.94371206, -1.94371206, -1.94371206,
-1.9069393 , -1.9069393 , -1.9069393 , -1.9069393 , -1.85554164,
-1.85554164, -1.85554164, -1.85554164, -1.78792749, -1.78792749,
-1.78792749, -1.78792749, -1.70446081, -1.70446081, -1.70446081,
-1.70446081, -1.61130027, -1.61130027, -1.61130027, -1.61130027,
-1.51343381, -1.51343381, -1.51343381, -1.51343381, -1.4129628 ,
-1.4129628 , -1.4129628 , -1.4129628 , -1.31068056, -1.31068056,
-1.31068056, -1.31068056, -1.20701548, -1.20701548, -1.20701548,
-1.20701548, -1.10227287, -1.10227287, -1.10227287, -1.10227287,
-0.99702848, -0.99702848, -0.99702848, -0.99702848, -0.89212641,
-0.89212641, -0.89212641, -0.89212641, -0.78809065, -0.78809065,
-0.78809065, -0.78809065, -0.68550554, -0.68550554, -0.68550554,
-0.68550554, -0.58520707, -0.58520707, -0.58520707, -0.58520707,
-0.48811927, -0.48811927, -0.48811927, -0.48811927, -0.39498294,
-0.39498294, -0.39498294, -0.39498294, -0.30710231, -0.30710231,
-0.30710231, -0.30710231, -0.22524033, -0.22524033, -0.22524033,
-0.22524033, -0.1530114 , -0.1530114 , -0.1530114 , -0.1530114 ,
-0.08453459, -0.08453459, -0.08453459, -0.08453459, -0.03239843,
-0.03239843, -0.03239843, -0.03239843, 0.03239843, 0.03239843,
0.03239843, 0.03239843, 0.08453459, 0.08453459, 0.08453459,
0.08453459, 0.1530114 , 0.1530114 , 0.1530114 , 0.1530114 ,
0.22524033, 0.22524033, 0.22524033, 0.22524033, 0.30710231,
0.30710231, 0.30710231, 0.30710231, 0.39498294, 0.39498294,
0.39498294, 0.39498294, 0.48811927, 0.48811927, 0.48811927,
0.48811927, 0.58520707, 0.58520707, 0.58520707, 0.58520707,
0.68550554, 0.68550554, 0.68550554, 0.68550554, 0.78809065,
0.78809065, 0.78809065, 0.78809065, 0.89212641, 0.89212641,
0.89212641, 0.89212641, 0.99702848, 0.99702848, 0.99702848,
0.99702848, 1.10227287, 1.10227287, 1.10227287, 1.10227287,
1.20701548, 1.20701548, 1.20701548, 1.20701548, 1.31068056,
1.31068056, 1.31068056, 1.31068056, 1.4129628 , 1.4129628 ,
1.4129628 , 1.4129628 , 1.51343381, 1.51343381, 1.51343381,
1.51343381, 1.61130027, 1.61130027, 1.61130027, 1.61130027,
1.70446081, 1.70446081, 1.70446081, 1.70446081, 1.78792749,
1.78792749, 1.78792749, 1.78792749, 1.85554164, 1.85554164,
1.85554164, 1.85554164, 1.9069393 , 1.9069393 , 1.9069393 ,
1.9069393 , 1.94371206, 1.94371206, 1.94371206, 1.94371206,
1.96822029, 1.96822029, 1.96822029, 1.96822029, 1.98331711,
1.98331711, 1.98331711, 1.98331711, 1.99187246, 1.99187246,
1.99187246, 1.99187246, 1.99632559, 1.99632559, 1.99632559,
1.99632559, 1.99845642, 1.99845642, 1.99845642, 1.99845642,
1.99939615, 1.99939615, 1.99939615, 1.99939615, 1.99977955,
1.99977955, 1.99977955, 1.99977955, 1.9999242 , 1.9999242 ,
1.9999242 , 1.9999242 , 1.99997846, 1.99997846, 1.99997846]), 'P': array([0.39998388, 0.39998388, 0.39998388, 0.39998388, 0.39994328,
0.39994328, 0.39994328, 0.39994328, 0.39983506, 0.39983506,
0.39983506, 0.39983506, 0.39954836, 0.39954836, 0.39954836,
0.39954836, 0.39884643, 0.39884643, 0.39884643, 0.39884643,
0.39725894, 0.39725894, 0.39725894, 0.39725894, 0.39395951,
0.39395951, 0.39395951, 0.39395951, 0.3876887 , 0.3876887 ,
0.3876887 , 0.3876887 , 0.37683706, 0.37683706, 0.37683706,
0.37683706, 0.35978619, 0.35978619, 0.35978619, 0.35978619,
0.33546632, 0.33546632, 0.33546632, 0.33546632, 0.30387649,
0.30387649, 0.30387649, 0.30387649, 0.26617104, 0.26617104,
0.26617104, 0.26617104, 0.22440064, 0.22440064, 0.22440064,
0.22440064, 0.18486641, 0.18486641, 0.18486641, 0.18486641,
0.15047094, 0.15047094, 0.15047094, 0.15047094, 0.12150865,
0.12150865, 0.12150865, 0.12150865, 0.09758402, 0.09758402,
0.09758402, 0.09758402, 0.07809753, 0.07809753, 0.07809753,
0.07809753, 0.06241546, 0.06241546, 0.06241546, 0.06241546,
0.04993828, 0.04993828, 0.04993828, 0.04993828, 0.04010618,
0.04010618, 0.04010618, 0.04010618, 0.03238928, 0.03238928,
0.03238928, 0.03238928, 0.02634913, 0.02634913, 0.02634913,
0.02634913, 0.02162689, 0.02162689, 0.02162689, 0.02162689,
0.01794132, 0.01794132, 0.01794132, 0.01794132, 0.01508808,
0.01508808, 0.01508808, 0.01508808, 0.0128935 , 0.0128935 ,
0.0128935 , 0.0128935 , 0.01125253, 0.01125253, 0.01125253,
0.01125253, 0.01001855, 0.01001855, 0.01001855, 0.01001855,
0.00930588, 0.00930588, 0.00930588, 0.00930588, 0.00879073,
0.00879073, 0.00879073, 0.00879073, 0.00879073, 0.00879073,
0.00879073, 0.00879073, 0.00930588, 0.00930588, 0.00930588,
0.00930588, 0.01001855, 0.01001855, 0.01001855, 0.01001855,
0.01125253, 0.01125253, 0.01125253, 0.01125253, 0.0128935 ,
0.0128935 , 0.0128935 , 0.0128935 , 0.01508808, 0.01508808,
0.01508808, 0.01508808, 0.01794132, 0.01794132, 0.01794132,
0.01794132, 0.02162689, 0.02162689, 0.02162689, 0.02162689,
0.02634913, 0.02634913, 0.02634913, 0.02634913, 0.03238928,
0.03238928, 0.03238928, 0.03238928, 0.04010618, 0.04010618,
0.04010618, 0.04010618, 0.04993828, 0.04993828, 0.04993828,
0.04993828, 0.06241546, 0.06241546, 0.06241546, 0.06241546,
0.07809753, 0.07809753, 0.07809753, 0.07809753, 0.09758402,
0.09758402, 0.09758402, 0.09758402, 0.12150865, 0.12150865,
0.12150865, 0.12150865, 0.15047094, 0.15047094, 0.15047094,
0.15047094, 0.18486641, 0.18486641, 0.18486641, 0.18486641,
0.22440064, 0.22440064, 0.22440064, 0.22440064, 0.26617104,
0.26617104, 0.26617104, 0.26617104, 0.30387649, 0.30387649,
0.30387649, 0.30387649, 0.33546632, 0.33546632, 0.33546632,
0.33546632, 0.35978619, 0.35978619, 0.35978619, 0.35978619,
0.37683706, 0.37683706, 0.37683706, 0.37683706, 0.3876887 ,
0.3876887 , 0.3876887 , 0.3876887 , 0.39395951, 0.39395951,
0.39395951, 0.39395951, 0.39725894, 0.39725894, 0.39725894,
0.39725894, 0.39884643, 0.39884643, 0.39884643, 0.39884643,
0.39954836, 0.39954836, 0.39954836, 0.39954836, 0.39983506,
0.39983506, 0.39983506, 0.39983506, 0.39994328, 0.39994328,
0.39994328, 0.39994328, 0.39998388, 0.39998388, 0.39998388])}, {'rho': array([0.99993221, 0.99993221, 0.99993221, 0.99993221, 0.99977442,
0.99977442, 0.99977442, 0.99977442, 0.99938273, 0.99938273,
0.99938273, 0.99938273, 0.99840779, 0.99840779, 0.99840779,
0.99840779, 0.99616937, 0.99616937, 0.99616937, 0.99616937,
0.99142249, 0.99142249, 0.99142249, 0.99142249, 0.98216622,
0.98216622, 0.98216622, 0.98216622, 0.96562758, 0.96562758,
0.96562758, 0.96562758, 0.93861261, 0.93861261, 0.93861261,
0.93861261, 0.89828406, 0.89828406, 0.89828406, 0.89828406,
0.84315078, 0.84315078, 0.84315078, 0.84315078, 0.77388329,
0.77388329, 0.77388329, 0.77388329, 0.69382305, 0.69382305,
0.69382305, 0.69382305, 0.60771611, 0.60771611, 0.60771611,
0.60771611, 0.52233132, 0.52233132, 0.52233132, 0.52233132,
0.44272042, 0.44272042, 0.44272042, 0.44272042, 0.37066321,
0.37066321, 0.37066321, 0.37066321, 0.30711033, 0.30711033,
0.30711033, 0.30711033, 0.2523528 , 0.2523528 , 0.2523528 ,
0.2523528 , 0.20616202, 0.20616202, 0.20616202, 0.20616202,
0.1679338 , 0.1679338 , 0.1679338 , 0.1679338 , 0.13675014,
0.13675014, 0.13675014, 0.13675014, 0.11157336, 0.11157336,
0.11157336, 0.11157336, 0.09142644, 0.09142644, 0.09142644,
0.09142644, 0.07542674, 0.07542674, 0.07542674, 0.07542674,
0.06289114, 0.06289114, 0.06289114, 0.06289114, 0.05323726,
0.05323726, 0.05323726, 0.05323726, 0.04592933, 0.04592933,
0.04592933, 0.04592933, 0.04060411, 0.04060411, 0.04060411,
0.04060411, 0.03675686, 0.03675686, 0.03675686, 0.03675686,
0.03461818, 0.03461818, 0.03461818, 0.03461818, 0.03320159,
0.03320159, 0.03320159, 0.03320159, 0.03320159, 0.03320159,
0.03320159, 0.03320159, 0.03461818, 0.03461818, 0.03461818,
0.03461818, 0.03675686, 0.03675686, 0.03675686, 0.03675686,
0.04060411, 0.04060411, 0.04060411, 0.04060411, 0.04592933,
0.04592933, 0.04592933, 0.04592933, 0.05323726, 0.05323726,
0.05323726, 0.05323726, 0.06289114, 0.06289114, 0.06289114,
0.06289114, 0.07542674, 0.07542674, 0.07542674, 0.07542674,
0.09142644, 0.09142644, 0.09142644, 0.09142644, 0.11157336,
0.11157336, 0.11157336, 0.11157336, 0.13675014, 0.13675014,
0.13675014, 0.13675014, 0.1679338 , 0.1679338 , 0.1679338 ,
0.1679338 , 0.20616202, 0.20616202, 0.20616202, 0.20616202,
0.2523528 , 0.2523528 , 0.2523528 , 0.2523528 , 0.30711033,
0.30711033, 0.30711033, 0.30711033, 0.37066321, 0.37066321,
0.37066321, 0.37066321, 0.44272042, 0.44272042, 0.44272042,
0.44272042, 0.52233132, 0.52233132, 0.52233132, 0.52233132,
0.60771611, 0.60771611, 0.60771611, 0.60771611, 0.69382305,
0.69382305, 0.69382305, 0.69382305, 0.77388329, 0.77388329,
0.77388329, 0.77388329, 0.84315078, 0.84315078, 0.84315078,
0.84315078, 0.89828406, 0.89828406, 0.89828406, 0.89828406,
0.93861261, 0.93861261, 0.93861261, 0.93861261, 0.96562758,
0.96562758, 0.96562758, 0.96562758, 0.98216622, 0.98216622,
0.98216622, 0.98216622, 0.99142249, 0.99142249, 0.99142249,
0.99142249, 0.99616937, 0.99616937, 0.99616937, 0.99616937,
0.99840779, 0.99840779, 0.99840779, 0.99840779, 0.99938273,
0.99938273, 0.99938273, 0.99938273, 0.99977442, 0.99977442,
0.99977442, 0.99977442, 0.99993221, 0.99993221, 0.99993221]), 'vx': array([-1.99994929, -1.99994929, -1.99994929, -1.99994929, -1.99983127,
-1.99983127, -1.99983127, -1.99983127, -1.99953841, -1.99953841,
-1.99953841, -1.99953841, -1.99880972, -1.99880972, -1.99880972,
-1.99880972, -1.99713698, -1.99713698, -1.99713698, -1.99713698,
-1.99358761, -1.99358761, -1.99358761, -1.99358761, -1.98664859,
-1.98664859, -1.98664859, -1.98664859, -1.974168 , -1.974168 ,
-1.974168 , -1.974168 , -1.95350169, -1.95350169, -1.95350169,
-1.95350169, -1.92188774, -1.92188774, -1.92188774, -1.92188774,
-1.8769192 , -1.8769192 , -1.8769192 , -1.8769192 , -1.81687101,
-1.81687101, -1.81687101, -1.81687101, -1.7410477 , -1.7410477 ,
-1.7410477 , -1.7410477 , -1.653266 , -1.653266 , -1.653266 ,
-1.653266 , -1.55956427, -1.55956427, -1.55956427, -1.55956427,
-1.46285018, -1.46285018, -1.46285018, -1.46285018, -1.36421396,
-1.36421396, -1.36421396, -1.36421396, -1.26410153, -1.26410153,
-1.26410153, -1.26410153, -1.16284367, -1.16284367, -1.16284367,
-1.16284367, -1.06073717, -1.06073717, -1.06073717, -1.06073717,
-0.95846761, -0.95846761, -0.95846761, -0.95846761, -0.85670416,
-0.85670416, -0.85670416, -0.85670416, -0.75589367, -0.75589367,
-0.75589367, -0.75589367, -0.65662074, -0.65662074, -0.65662074,
-0.65662074, -0.55975149, -0.55975149, -0.55975149, -0.55975149,
-0.46604981, -0.46604981, -0.46604981, -0.46604981, -0.3763215 ,
-0.3763215 , -0.3763215 , -0.3763215 , -0.29188521, -0.29188521,
-0.29188521, -0.29188521, -0.21339782, -0.21339782, -0.21339782,
-0.21339782, -0.14476926, -0.14476926, -0.14476926, -0.14476926,
-0.07947731, -0.07947731, -0.07947731, -0.07947731, -0.03033494,
-0.03033494, -0.03033494, -0.03033494, 0.03033494, 0.03033494,
0.03033494, 0.03033494, 0.07947731, 0.07947731, 0.07947731,
0.07947731, 0.14476926, 0.14476926, 0.14476926, 0.14476926,
0.21339782, 0.21339782, 0.21339782, 0.21339782, 0.29188521,
0.29188521, 0.29188521, 0.29188521, 0.3763215 , 0.3763215 ,
0.3763215 , 0.3763215 , 0.46604981, 0.46604981, 0.46604981,
0.46604981, 0.55975149, 0.55975149, 0.55975149, 0.55975149,
0.65662074, 0.65662074, 0.65662074, 0.65662074, 0.75589367,
0.75589367, 0.75589367, 0.75589367, 0.85670416, 0.85670416,
0.85670416, 0.85670416, 0.95846761, 0.95846761, 0.95846761,
0.95846761, 1.06073717, 1.06073717, 1.06073717, 1.06073717,
1.16284367, 1.16284367, 1.16284367, 1.16284367, 1.26410153,
1.26410153, 1.26410153, 1.26410153, 1.36421396, 1.36421396,
1.36421396, 1.36421396, 1.46285018, 1.46285018, 1.46285018,
1.46285018, 1.55956427, 1.55956427, 1.55956427, 1.55956427,
1.653266 , 1.653266 , 1.653266 , 1.653266 , 1.7410477 ,
1.7410477 , 1.7410477 , 1.7410477 , 1.81687101, 1.81687101,
1.81687101, 1.81687101, 1.8769192 , 1.8769192 , 1.8769192 ,
1.8769192 , 1.92188774, 1.92188774, 1.92188774, 1.92188774,
1.95350169, 1.95350169, 1.95350169, 1.95350169, 1.974168 ,
1.974168 , 1.974168 , 1.974168 , 1.98664859, 1.98664859,
1.98664859, 1.98664859, 1.99358761, 1.99358761, 1.99358761,
1.99358761, 1.99713698, 1.99713698, 1.99713698, 1.99713698,
1.99880972, 1.99880972, 1.99880972, 1.99880972, 1.99953841,
1.99953841, 1.99953841, 1.99953841, 1.99983127, 1.99983127,
1.99983127, 1.99983127, 1.99994929, 1.99994929, 1.99994929]), 'P': array([0.39996205, 0.39996205, 0.39996205, 0.39996205, 0.39987375,
0.39987375, 0.39987375, 0.39987375, 0.39965472, 0.39965472,
0.39965472, 0.39965472, 0.3991102 , 0.3991102 , 0.3991102 ,
0.3991102 , 0.39786276, 0.39786276, 0.39786276, 0.39786276,
0.39522738, 0.39522738, 0.39522738, 0.39522738, 0.3901199 ,
0.3901199 , 0.3901199 , 0.3901199 , 0.38107966, 0.38107966,
0.38107966, 0.38107966, 0.36651324, 0.36651324, 0.36651324,
0.36651324, 0.34517082, 0.34517082, 0.34517082, 0.34517082,
0.31668048, 0.31668048, 0.31668048, 0.31668048, 0.28180827,
0.28180827, 0.28180827, 0.28180827, 0.24203834, 0.24203834,
0.24203834, 0.24203834, 0.20178049, 0.20178049, 0.20178049,
0.20178049, 0.16586829, 0.16586829, 0.16586829, 0.16586829,
0.13512706, 0.13512706, 0.13512706, 0.13512706, 0.10939173,
0.10939173, 0.10939173, 0.10939173, 0.08816908, 0.08816908,
0.08816908, 0.08816908, 0.07088001, 0.07088001, 0.07088001,
0.07088001, 0.05695154, 0.05695154, 0.05695154, 0.05695154,
0.04585165, 0.04585165, 0.04585165, 0.04585165, 0.03706835,
0.03706835, 0.03706835, 0.03706835, 0.03014005, 0.03014005,
0.03014005, 0.03014005, 0.02468875, 0.02468875, 0.02468875,
0.02468875, 0.02040122, 0.02040122, 0.02040122, 0.02040122,
0.01704141, 0.01704141, 0.01704141, 0.01704141, 0.01442848,
0.01442848, 0.01442848, 0.01442848, 0.01241054, 0.01241054,
0.01241054, 0.01241054, 0.01090155, 0.01090155, 0.01090155,
0.01090155, 0.00975937, 0.00975937, 0.00975937, 0.00975937,
0.00911402, 0.00911402, 0.00911402, 0.00911402, 0.00864033,
0.00864033, 0.00864033, 0.00864033, 0.00864033, 0.00864033,
0.00864033, 0.00864033, 0.00911402, 0.00911402, 0.00911402,
0.00911402, 0.00975937, 0.00975937, 0.00975937, 0.00975937,
0.01090155, 0.01090155, 0.01090155, 0.01090155, 0.01241054,
0.01241054, 0.01241054, 0.01241054, 0.01442848, 0.01442848,
0.01442848, 0.01442848, 0.01704141, 0.01704141, 0.01704141,
0.01704141, 0.02040122, 0.02040122, 0.02040122, 0.02040122,
0.02468875, 0.02468875, 0.02468875, 0.02468875, 0.03014005,
0.03014005, 0.03014005, 0.03014005, 0.03706835, 0.03706835,
0.03706835, 0.03706835, 0.04585165, 0.04585165, 0.04585165,
0.04585165, 0.05695154, 0.05695154, 0.05695154, 0.05695154,
0.07088001, 0.07088001, 0.07088001, 0.07088001, 0.08816908,
0.08816908, 0.08816908, 0.08816908, 0.10939173, 0.10939173,
0.10939173, 0.10939173, 0.13512706, 0.13512706, 0.13512706,
0.13512706, 0.16586829, 0.16586829, 0.16586829, 0.16586829,
0.20178049, 0.20178049, 0.20178049, 0.20178049, 0.24203834,
0.24203834, 0.24203834, 0.24203834, 0.28180827, 0.28180827,
0.28180827, 0.28180827, 0.31668048, 0.31668048, 0.31668048,
0.31668048, 0.34517082, 0.34517082, 0.34517082, 0.34517082,
0.36651324, 0.36651324, 0.36651324, 0.36651324, 0.38107966,
0.38107966, 0.38107966, 0.38107966, 0.3901199 , 0.3901199 ,
0.3901199 , 0.3901199 , 0.39522738, 0.39522738, 0.39522738,
0.39522738, 0.39786276, 0.39786276, 0.39786276, 0.39786276,
0.3991102 , 0.3991102 , 0.3991102 , 0.3991102 , 0.39965472,
0.39965472, 0.39965472, 0.39965472, 0.39987375, 0.39987375,
0.39987375, 0.39987375, 0.39996205, 0.39996205, 0.39996205])}, {'rho': array([0.999849 , 0.999849 , 0.999849 , 0.999849 , 0.99952432,
0.99952432, 0.99952432, 0.99952432, 0.99877407, 0.99877407,
0.99877407, 0.99877407, 0.9970195 , 0.9970195 , 0.9970195 ,
0.9970195 , 0.99324554, 0.99324554, 0.99324554, 0.99324554,
0.98575697, 0.98575697, 0.98575697, 0.98575697, 0.97210669,
0.97210669, 0.97210669, 0.97210669, 0.94930976, 0.94930976,
0.94930976, 0.94930976, 0.91446125, 0.91446125, 0.91446125,
0.91446125, 0.86563643, 0.86563643, 0.86563643, 0.86563643,
0.80272712, 0.80272712, 0.80272712, 0.80272712, 0.72797948,
0.72797948, 0.72797948, 0.72797948, 0.64577881, 0.64577881,
0.64577881, 0.64577881, 0.56148247, 0.56148247, 0.56148247,
0.56148247, 0.48134022, 0.48134022, 0.48134022, 0.48134022,
0.40756894, 0.40756894, 0.40756894, 0.40756894, 0.34134467,
0.34134467, 0.34134467, 0.34134467, 0.28325988, 0.28325988,
0.28325988, 0.28325988, 0.23338963, 0.23338963, 0.23338963,
0.23338963, 0.19140241, 0.19140241, 0.19140241, 0.19140241,
0.15665519, 0.15665519, 0.15665519, 0.15665519, 0.1282427 ,
0.1282427 , 0.1282427 , 0.1282427 , 0.10522841, 0.10522841,
0.10522841, 0.10522841, 0.0867382 , 0.0867382 , 0.0867382 ,
0.0867382 , 0.07199564, 0.07199564, 0.07199564, 0.07199564,
0.06041253, 0.06041253, 0.06041253, 0.06041253, 0.05145849,
0.05145849, 0.05145849, 0.05145849, 0.04465627, 0.04465627,
0.04465627, 0.04465627, 0.03969915, 0.03969915, 0.03969915,
0.03969915, 0.03609832, 0.03609832, 0.03609832, 0.03609832,
0.03413507, 0.03413507, 0.03413507, 0.03413507, 0.03282295,
0.03282295, 0.03282295, 0.03282295, 0.03282295, 0.03282295,
0.03282295, 0.03282295, 0.03413507, 0.03413507, 0.03413507,
0.03413507, 0.03609832, 0.03609832, 0.03609832, 0.03609832,
0.03969915, 0.03969915, 0.03969915, 0.03969915, 0.04465627,
0.04465627, 0.04465627, 0.04465627, 0.05145849, 0.05145849,
0.05145849, 0.05145849, 0.06041253, 0.06041253, 0.06041253,
0.06041253, 0.07199564, 0.07199564, 0.07199564, 0.07199564,
0.0867382 , 0.0867382 , 0.0867382 , 0.0867382 , 0.10522841,
0.10522841, 0.10522841, 0.10522841, 0.1282427 , 0.1282427 ,
0.1282427 , 0.1282427 , 0.15665519, 0.15665519, 0.15665519,
0.15665519, 0.19140241, 0.19140241, 0.19140241, 0.19140241,
0.23338963, 0.23338963, 0.23338963, 0.23338963, 0.28325988,
0.28325988, 0.28325988, 0.28325988, 0.34134467, 0.34134467,
0.34134467, 0.34134467, 0.40756894, 0.40756894, 0.40756894,
0.40756894, 0.48134022, 0.48134022, 0.48134022, 0.48134022,
0.56148247, 0.56148247, 0.56148247, 0.56148247, 0.64577881,
0.64577881, 0.64577881, 0.64577881, 0.72797948, 0.72797948,
0.72797948, 0.72797948, 0.80272712, 0.80272712, 0.80272712,
0.80272712, 0.86563643, 0.86563643, 0.86563643, 0.86563643,
0.91446125, 0.91446125, 0.91446125, 0.91446125, 0.94930976,
0.94930976, 0.94930976, 0.94930976, 0.97210669, 0.97210669,
0.97210669, 0.97210669, 0.98575697, 0.98575697, 0.98575697,
0.98575697, 0.99324554, 0.99324554, 0.99324554, 0.99324554,
0.9970195 , 0.9970195 , 0.9970195 , 0.9970195 , 0.99877407,
0.99877407, 0.99877407, 0.99877407, 0.99952432, 0.99952432,
0.99952432, 0.99952432, 0.999849 , 0.999849 , 0.999849 ]), 'vx': array([-1.99988705, -1.99988705, -1.99988705, -1.99988705, -1.99964423,
-1.99964423, -1.99964423, -1.99964423, -1.99908336, -1.99908336,
-1.99908336, -1.99908336, -1.99777191, -1.99777191, -1.99777191,
-1.99777191, -1.99495004, -1.99495004, -1.99495004, -1.99495004,
-1.98933996, -1.98933996, -1.98933996, -1.98933996, -1.97906089,
-1.97906089, -1.97906089, -1.97906089, -1.96170422, -1.96170422,
-1.96170422, -1.96170422, -1.9346307 , -1.9346307 , -1.9346307 ,
-1.9346307 , -1.8954137 , -1.8954137 , -1.8954137 , -1.8954137 ,
-1.84222299, -1.84222299, -1.84222299, -1.84222299, -1.77397591,
-1.77397591, -1.77397591, -1.77397591, -1.69213098, -1.69213098,
-1.69213098, -1.69213098, -1.60273146, -1.60273146, -1.60273146,
-1.60273146, -1.50965165, -1.50965165, -1.50965165, -1.50965165,
-1.41448143, -1.41448143, -1.41448143, -1.41448143, -1.3177811 ,
-1.3177811 , -1.3177811 , -1.3177811 , -1.21984198, -1.21984198,
-1.21984198, -1.21984198, -1.1209646 , -1.1209646 , -1.1209646 ,
-1.1209646 , -1.02146005, -1.02146005, -1.02146005, -1.02146005,
-0.9220936 , -0.9220936 , -0.9220936 , -0.9220936 , -0.82332093,
-0.82332093, -0.82332093, -0.82332093, -0.72558094, -0.72558094,
-0.72558094, -0.72558094, -0.62946753, -0.62946753, -0.62946753,
-0.62946753, -0.53583047, -0.53583047, -0.53583047, -0.53583047,
-0.44533278, -0.44533278, -0.44533278, -0.44533278, -0.35883117,
-0.35883117, -0.35883117, -0.35883117, -0.27766258, -0.27766258,
-0.27766258, -0.27766258, -0.20236083, -0.20236083, -0.20236083,
-0.20236083, -0.13714722, -0.13714722, -0.13714722, -0.13714722,
-0.0748494 , -0.0748494 , -0.0748494 , -0.0748494 , -0.02844381,
-0.02844381, -0.02844381, -0.02844381, 0.02844381, 0.02844381,
0.02844381, 0.02844381, 0.0748494 , 0.0748494 , 0.0748494 ,
0.0748494 , 0.13714722, 0.13714722, 0.13714722, 0.13714722,
0.20236083, 0.20236083, 0.20236083, 0.20236083, 0.27766258,
0.27766258, 0.27766258, 0.27766258, 0.35883117, 0.35883117,
0.35883117, 0.35883117, 0.44533278, 0.44533278, 0.44533278,
0.44533278, 0.53583047, 0.53583047, 0.53583047, 0.53583047,
0.62946753, 0.62946753, 0.62946753, 0.62946753, 0.72558094,
0.72558094, 0.72558094, 0.72558094, 0.82332093, 0.82332093,
0.82332093, 0.82332093, 0.9220936 , 0.9220936 , 0.9220936 ,
0.9220936 , 1.02146005, 1.02146005, 1.02146005, 1.02146005,
1.1209646 , 1.1209646 , 1.1209646 , 1.1209646 , 1.21984198,
1.21984198, 1.21984198, 1.21984198, 1.3177811 , 1.3177811 ,
1.3177811 , 1.3177811 , 1.41448143, 1.41448143, 1.41448143,
1.41448143, 1.50965165, 1.50965165, 1.50965165, 1.50965165,
1.60273146, 1.60273146, 1.60273146, 1.60273146, 1.69213098,
1.69213098, 1.69213098, 1.69213098, 1.77397591, 1.77397591,
1.77397591, 1.77397591, 1.84222299, 1.84222299, 1.84222299,
1.84222299, 1.8954137 , 1.8954137 , 1.8954137 , 1.8954137 ,
1.9346307 , 1.9346307 , 1.9346307 , 1.9346307 , 1.96170422,
1.96170422, 1.96170422, 1.96170422, 1.97906089, 1.97906089,
1.97906089, 1.97906089, 1.98933996, 1.98933996, 1.98933996,
1.98933996, 1.99495004, 1.99495004, 1.99495004, 1.99495004,
1.99777191, 1.99777191, 1.99777191, 1.99777191, 1.99908336,
1.99908336, 1.99908336, 1.99908336, 1.99964423, 1.99964423,
1.99964423, 1.99964423, 1.99988705, 1.99988705, 1.99988705]), 'P': array([0.39991548, 0.39991548, 0.39991548, 0.39991548, 0.39973385,
0.39973385, 0.39973385, 0.39973385, 0.39931459, 0.39931459,
0.39931459, 0.39931459, 0.39833583, 0.39833583, 0.39833583,
0.39833583, 0.3962371 , 0.3962371 , 0.3962371 , 0.3962371 ,
0.39209385, 0.39209385, 0.39209385, 0.39209385, 0.38460138,
0.38460138, 0.38460138, 0.38460138, 0.37223462, 0.37223462,
0.37223462, 0.37223462, 0.35363741, 0.35363741, 0.35363741,
0.35363741, 0.32813525, 0.32813525, 0.32813525, 0.32813525,
0.29610314, 0.29610314, 0.29610314, 0.29610314, 0.25879516,
0.25879516, 0.25879516, 0.25879516, 0.2187502 , 0.2187502 ,
0.2187502 , 0.2187502 , 0.18161211, 0.18161211, 0.18161211,
0.18161211, 0.1492622 , 0.1492622 , 0.1492622 , 0.1492622 ,
0.12181009, 0.12181009, 0.12181009, 0.12181009, 0.09889624,
0.09889624, 0.09889624, 0.09889624, 0.08001119, 0.08001119,
0.08001119, 0.08001119, 0.06461698, 0.06461698, 0.06461698,
0.06461698, 0.05220043, 0.05220043, 0.05220043, 0.05220043,
0.0422833 , 0.0422833 , 0.0422833 , 0.0422833 , 0.0344005 ,
0.0344005 , 0.0344005 , 0.0344005 , 0.02815268, 0.02815268,
0.02815268, 0.02815268, 0.02321147, 0.02321147, 0.02321147,
0.02321147, 0.01930433, 0.01930433, 0.01930433, 0.01930433,
0.0162308 , 0.0162308 , 0.0162308 , 0.0162308 , 0.01383051,
0.01383051, 0.01383051, 0.01383051, 0.01197008, 0.01197008,
0.01197008, 0.01197008, 0.01058021, 0.01058021, 0.01058021,
0.01058021, 0.00952099, 0.00952099, 0.00952099, 0.00952099,
0.00893663, 0.00893663, 0.00893663, 0.00893663, 0.00850133,
0.00850133, 0.00850133, 0.00850133, 0.00850133, 0.00850133,
0.00850133, 0.00850133, 0.00893663, 0.00893663, 0.00893663,
0.00893663, 0.00952099, 0.00952099, 0.00952099, 0.00952099,
0.01058021, 0.01058021, 0.01058021, 0.01058021, 0.01197008,
0.01197008, 0.01197008, 0.01197008, 0.01383051, 0.01383051,
0.01383051, 0.01383051, 0.0162308 , 0.0162308 , 0.0162308 ,
0.0162308 , 0.01930433, 0.01930433, 0.01930433, 0.01930433,
0.02321147, 0.02321147, 0.02321147, 0.02321147, 0.02815268,
0.02815268, 0.02815268, 0.02815268, 0.0344005 , 0.0344005 ,
0.0344005 , 0.0344005 , 0.0422833 , 0.0422833 , 0.0422833 ,
0.0422833 , 0.05220043, 0.05220043, 0.05220043, 0.05220043,
0.06461698, 0.06461698, 0.06461698, 0.06461698, 0.08001119,
0.08001119, 0.08001119, 0.08001119, 0.09889624, 0.09889624,
0.09889624, 0.09889624, 0.12181009, 0.12181009, 0.12181009,
0.12181009, 0.1492622 , 0.1492622 , 0.1492622 , 0.1492622 ,
0.18161211, 0.18161211, 0.18161211, 0.18161211, 0.2187502 ,
0.2187502 , 0.2187502 , 0.2187502 , 0.25879516, 0.25879516,
0.25879516, 0.25879516, 0.29610314, 0.29610314, 0.29610314,
0.29610314, 0.32813525, 0.32813525, 0.32813525, 0.32813525,
0.35363741, 0.35363741, 0.35363741, 0.35363741, 0.37223462,
0.37223462, 0.37223462, 0.37223462, 0.38460138, 0.38460138,
0.38460138, 0.38460138, 0.39209385, 0.39209385, 0.39209385,
0.39209385, 0.3962371 , 0.3962371 , 0.3962371 , 0.3962371 ,
0.39833583, 0.39833583, 0.39833583, 0.39833583, 0.39931459,
0.39931459, 0.39931459, 0.39931459, 0.39973385, 0.39973385,
0.39973385, 0.39973385, 0.39991548, 0.39991548, 0.39991548])}, {'rho': array([0.99968086, 0.99968086, 0.99968086, 0.99968086, 0.99904735,
0.99904735, 0.99904735, 0.99904735, 0.99768535, 0.99768535,
0.99768535, 0.99768535, 0.99469 , 0.99469 , 0.99469 ,
0.99469 , 0.98865158, 0.98865158, 0.98865158, 0.98865158,
0.97743175, 0.97743175, 0.97743175, 0.97743175, 0.95828971,
0.95828971, 0.95828971, 0.95828971, 0.92834661, 0.92834661,
0.92834661, 0.92834661, 0.8853768 , 0.8853768 , 0.8853768 ,
0.8853768 , 0.8286427 , 0.8286427 , 0.8286427 , 0.8286427 ,
0.75946561, 0.75946561, 0.75946561, 0.75946561, 0.68150433,
0.68150433, 0.68150433, 0.68150433, 0.59924388, 0.59924388,
0.59924388, 0.59924388, 0.51916445, 0.51916445, 0.51916445,
0.51916445, 0.44435622, 0.44435622, 0.44435622, 0.44435622,
0.37611909, 0.37611909, 0.37611909, 0.37611909, 0.31525272,
0.31525272, 0.31525272, 0.31525272, 0.26210199, 0.26210199,
0.26210199, 0.26210199, 0.21659335, 0.21659335, 0.21659335,
0.21659335, 0.17833401, 0.17833401, 0.17833401, 0.17833401,
0.14664183, 0.14664183, 0.14664183, 0.14664183, 0.12066146,
0.12066146, 0.12066146, 0.12066146, 0.09954839, 0.09954839,
0.09954839, 0.09954839, 0.0825182 , 0.0825182 , 0.0825182 ,
0.0825182 , 0.06889504, 0.06889504, 0.06889504, 0.06889504,
0.05815951, 0.05815951, 0.05815951, 0.05815951, 0.049832 ,
0.049832 , 0.049832 , 0.049832 , 0.04348546, 0.04348546,
0.04348546, 0.04348546, 0.03886386, 0.03886386, 0.03886386,
0.03886386, 0.03548794, 0.03548794, 0.03548794, 0.03548794,
0.03368503, 0.03368503, 0.03368503, 0.03368503, 0.03247044,
0.03247044, 0.03247044, 0.03247044, 0.03247044, 0.03247044,
0.03247044, 0.03247044, 0.03368503, 0.03368503, 0.03368503,
0.03368503, 0.03548794, 0.03548794, 0.03548794, 0.03548794,
0.03886386, 0.03886386, 0.03886386, 0.03886386, 0.04348546,
0.04348546, 0.04348546, 0.04348546, 0.049832 , 0.049832 ,
0.049832 , 0.049832 , 0.05815951, 0.05815951, 0.05815951,
0.05815951, 0.06889504, 0.06889504, 0.06889504, 0.06889504,
0.0825182 , 0.0825182 , 0.0825182 , 0.0825182 , 0.09954839,
0.09954839, 0.09954839, 0.09954839, 0.12066146, 0.12066146,
0.12066146, 0.12066146, 0.14664183, 0.14664183, 0.14664183,
0.14664183, 0.17833401, 0.17833401, 0.17833401, 0.17833401,
0.21659335, 0.21659335, 0.21659335, 0.21659335, 0.26210199,
0.26210199, 0.26210199, 0.26210199, 0.31525272, 0.31525272,
0.31525272, 0.31525272, 0.37611909, 0.37611909, 0.37611909,
0.37611909, 0.44435622, 0.44435622, 0.44435622, 0.44435622,
0.51916445, 0.51916445, 0.51916445, 0.51916445, 0.59924388,
0.59924388, 0.59924388, 0.59924388, 0.68150433, 0.68150433,
0.68150433, 0.68150433, 0.75946561, 0.75946561, 0.75946561,
0.75946561, 0.8286427 , 0.8286427 , 0.8286427 , 0.8286427 ,
0.8853768 , 0.8853768 , 0.8853768 , 0.8853768 , 0.92834661,
0.92834661, 0.92834661, 0.92834661, 0.95828971, 0.95828971,
0.95828971, 0.95828971, 0.97743175, 0.97743175, 0.97743175,
0.97743175, 0.98865158, 0.98865158, 0.98865158, 0.98865158,
0.99469 , 0.99469 , 0.99469 , 0.99469 , 0.99768535,
0.99768535, 0.99768535, 0.99768535, 0.99904735, 0.99904735,
0.99904735, 0.99904735, 0.99968086, 0.99968086, 0.99968086]), 'vx': array([-1.99976129, -1.99976129, -1.99976129, -1.99976129, -1.99928757,
-1.99928757, -1.99928757, -1.99928757, -1.99826937, -1.99826937,
-1.99826937, -1.99826937, -1.99602961, -1.99602961, -1.99602961,
-1.99602961, -1.99150811, -1.99150811, -1.99150811, -1.99150811,
-1.98307313, -1.98307313, -1.98307313, -1.98307313, -1.96855469,
-1.96855469, -1.96855469, -1.96855469, -1.94546306, -1.94546306,
-1.94546306, -1.94546306, -1.9113848 , -1.9113848 , -1.9113848 ,
-1.9113848 , -1.86439131, -1.86439131, -1.86439131, -1.86439131,
-1.80324961, -1.80324961, -1.80324961, -1.80324961, -1.7279512 ,
-1.7279512 , -1.7279512 , -1.7279512 , -1.64307535, -1.64307535,
-1.64307535, -1.64307535, -1.55362138, -1.55362138, -1.55362138,
-1.55362138, -1.46174726, -1.46174726, -1.46174726, -1.46174726,
-1.36829267, -1.36829267, -1.36829267, -1.36829267, -1.27355598,
-1.27355598, -1.27355598, -1.27355598, -1.17777205, -1.17777205,
-1.17777205, -1.17777205, -1.08123072, -1.08123072, -1.08123072,
-1.08123072, -0.98432119, -0.98432119, -0.98432119, -0.98432119,
-0.88773681, -0.88773681, -0.88773681, -0.88773681, -0.79181684,
-0.79181684, -0.79181684, -0.79181684, -0.69700308, -0.69700308,
-0.69700308, -0.69700308, -0.60390558, -0.60390558, -0.60390558,
-0.60390558, -0.51331502, -0.51331502, -0.51331502, -0.51331502,
-0.42585753, -0.42585753, -0.42585753, -0.42585753, -0.34241668,
-0.34241668, -0.34241668, -0.34241668, -0.26435547, -0.26435547,
-0.26435547, -0.26435547, -0.19206534, -0.19206534, -0.19206534,
-0.19206534, -0.13009378, -0.13009378, -0.13009378, -0.13009378,
-0.07061608, -0.07061608, -0.07061608, -0.07061608, -0.02671133,
-0.02671133, -0.02671133, -0.02671133, 0.02671133, 0.02671133,
0.02671133, 0.02671133, 0.07061608, 0.07061608, 0.07061608,
0.07061608, 0.13009378, 0.13009378, 0.13009378, 0.13009378,
0.19206534, 0.19206534, 0.19206534, 0.19206534, 0.26435547,
0.26435547, 0.26435547, 0.26435547, 0.34241668, 0.34241668,
0.34241668, 0.34241668, 0.42585753, 0.42585753, 0.42585753,
0.42585753, 0.51331502, 0.51331502, 0.51331502, 0.51331502,
0.60390558, 0.60390558, 0.60390558, 0.60390558, 0.69700308,
0.69700308, 0.69700308, 0.69700308, 0.79181684, 0.79181684,
0.79181684, 0.79181684, 0.88773681, 0.88773681, 0.88773681,
0.88773681, 0.98432119, 0.98432119, 0.98432119, 0.98432119,
1.08123072, 1.08123072, 1.08123072, 1.08123072, 1.17777205,
1.17777205, 1.17777205, 1.17777205, 1.27355598, 1.27355598,
1.27355598, 1.27355598, 1.36829267, 1.36829267, 1.36829267,
1.36829267, 1.46174726, 1.46174726, 1.46174726, 1.46174726,
1.55362138, 1.55362138, 1.55362138, 1.55362138, 1.64307535,
1.64307535, 1.64307535, 1.64307535, 1.7279512 , 1.7279512 ,
1.7279512 , 1.7279512 , 1.80324961, 1.80324961, 1.80324961,
1.80324961, 1.86439131, 1.86439131, 1.86439131, 1.86439131,
1.9113848 , 1.9113848 , 1.9113848 , 1.9113848 , 1.94546306,
1.94546306, 1.94546306, 1.94546306, 1.96855469, 1.96855469,
1.96855469, 1.96855469, 1.98307313, 1.98307313, 1.98307313,
1.98307313, 1.99150811, 1.99150811, 1.99150811, 1.99150811,
1.99602961, 1.99602961, 1.99602961, 1.99602961, 1.99826937,
1.99826937, 1.99826937, 1.99826937, 1.99928757, 1.99928757,
1.99928757, 1.99928757, 1.99976129, 1.99976129, 1.99976129]), 'P': array([0.39982141, 0.39982141, 0.39982141, 0.39982141, 0.39946719,
0.39946719, 0.39946719, 0.39946719, 0.39870684, 0.39870684,
0.39870684, 0.39870684, 0.39703884, 0.39703884, 0.39703884,
0.39703884, 0.39369048, 0.39369048, 0.39369048, 0.39369048,
0.38751064, 0.38751064, 0.38751064, 0.38751064, 0.37707294,
0.37707294, 0.37707294, 0.37707294, 0.36097737, 0.36097737,
0.36097737, 0.36097737, 0.33831756, 0.33831756, 0.33831756,
0.33831756, 0.30910205, 0.30910205, 0.30910205, 0.30910205,
0.27433245, 0.27433245, 0.27433245, 0.27433245, 0.23557782,
0.23557782, 0.23557782, 0.23557782, 0.1975858 , 0.1975858 ,
0.1975858 , 0.1975858 , 0.16381828, 0.16381828, 0.16381828,
0.16381828, 0.13476633, 0.13476633, 0.13476633, 0.13476633,
0.11022619, 0.11022619, 0.11022619, 0.11022619, 0.08977175,
0.08977175, 0.08977175, 0.08977175, 0.07291246, 0.07291246,
0.07291246, 0.07291246, 0.05915761, 0.05915761, 0.05915761,
0.05915761, 0.04805018, 0.04805018, 0.04805018, 0.04805018,
0.03915057, 0.03915057, 0.03915057, 0.03915057, 0.03204531,
0.03204531, 0.03204531, 0.03204531, 0.02638786, 0.02638786,
0.02638786, 0.02638786, 0.0218908 , 0.0218908 , 0.0218908 ,
0.0218908 , 0.0183185 , 0.0183185 , 0.0183185 , 0.0183185 ,
0.01549764, 0.01549764, 0.01549764, 0.01549764, 0.01328646,
0.01328646, 0.01328646, 0.01328646, 0.01156713, 0.01156713,
0.01156713, 0.01156713, 0.01028524, 0.01028524, 0.01028524,
0.01028524, 0.00930125, 0.00930125, 0.00930125, 0.00930125,
0.00877218, 0.00877218, 0.00877218, 0.00877218, 0.00837247,
0.00837247, 0.00837247, 0.00837247, 0.00837247, 0.00837247,
0.00837247, 0.00837247, 0.00877218, 0.00877218, 0.00877218,
0.00877218, 0.00930125, 0.00930125, 0.00930125, 0.00930125,
0.01028524, 0.01028524, 0.01028524, 0.01028524, 0.01156713,
0.01156713, 0.01156713, 0.01156713, 0.01328646, 0.01328646,
0.01328646, 0.01328646, 0.01549764, 0.01549764, 0.01549764,
0.01549764, 0.0183185 , 0.0183185 , 0.0183185 , 0.0183185 ,
0.0218908 , 0.0218908 , 0.0218908 , 0.0218908 , 0.02638786,
0.02638786, 0.02638786, 0.02638786, 0.03204531, 0.03204531,
0.03204531, 0.03204531, 0.03915057, 0.03915057, 0.03915057,
0.03915057, 0.04805018, 0.04805018, 0.04805018, 0.04805018,
0.05915761, 0.05915761, 0.05915761, 0.05915761, 0.07291246,
0.07291246, 0.07291246, 0.07291246, 0.08977175, 0.08977175,
0.08977175, 0.08977175, 0.11022619, 0.11022619, 0.11022619,
0.11022619, 0.13476633, 0.13476633, 0.13476633, 0.13476633,
0.16381828, 0.16381828, 0.16381828, 0.16381828, 0.1975858 ,
0.1975858 , 0.1975858 , 0.1975858 , 0.23557782, 0.23557782,
0.23557782, 0.23557782, 0.27433245, 0.27433245, 0.27433245,
0.27433245, 0.30910205, 0.30910205, 0.30910205, 0.30910205,
0.33831756, 0.33831756, 0.33831756, 0.33831756, 0.36097737,
0.36097737, 0.36097737, 0.36097737, 0.37707294, 0.37707294,
0.37707294, 0.37707294, 0.38751064, 0.38751064, 0.38751064,
0.38751064, 0.39369048, 0.39369048, 0.39369048, 0.39369048,
0.39703884, 0.39703884, 0.39703884, 0.39703884, 0.39870684,
0.39870684, 0.39870684, 0.39870684, 0.39946719, 0.39946719,
0.39946719, 0.39946719, 0.39982141, 0.39982141, 0.39982141])}, {'rho': array([0.99935842, 0.99935842, 0.99935842, 0.99935842, 0.99818385,
0.99818385, 0.99818385, 0.99818385, 0.9958364 , 0.9958364 ,
0.9958364 , 0.9958364 , 0.99097735, 0.99097735, 0.99097735,
0.99097735, 0.98179228, 0.98179228, 0.98179228, 0.98179228,
0.96579536, 0.96579536, 0.96579536, 0.96579536, 0.94020757,
0.94020757, 0.94020757, 0.94020757, 0.90261749, 0.90261749,
0.90261749, 0.90261749, 0.85178879, 0.85178879, 0.85178879,
0.85178879, 0.78827781, 0.78827781, 0.78827781, 0.78827781,
0.71478068, 0.71478068, 0.71478068, 0.71478068, 0.63550363,
0.63550363, 0.63550363, 0.63550363, 0.55595614, 0.55595614,
0.55595614, 0.55595614, 0.48067049, 0.48067049, 0.48067049,
0.48067049, 0.41103821, 0.41103821, 0.41103821, 0.41103821,
0.34796265, 0.34796265, 0.34796265, 0.34796265, 0.29198841,
0.29198841, 0.29198841, 0.29198841, 0.2432827 , 0.2432827 ,
0.2432827 , 0.2432827 , 0.20167143, 0.20167143, 0.20167143,
0.20167143, 0.16671549, 0.16671549, 0.16671549, 0.16671549,
0.13771315, 0.13771315, 0.13771315, 0.13771315, 0.1138762 ,
0.1138762 , 0.1138762 , 0.1138762 , 0.09444197, 0.09444197,
0.09444197, 0.09444197, 0.0787049 , 0.0787049 , 0.0787049 ,
0.0787049 , 0.06608221, 0.06608221, 0.06608221, 0.06608221,
0.05610415, 0.05610415, 0.05610415, 0.05610415, 0.04834004,
0.04834004, 0.04834004, 0.04834004, 0.04240575, 0.04240575,
0.04240575, 0.04240575, 0.0380912 , 0.0380912 , 0.0380912 ,
0.0380912 , 0.03492123, 0.03492123, 0.03492123, 0.03492123,
0.03326485, 0.03326485, 0.03326485, 0.03326485, 0.03214135,
0.03214135, 0.03214135, 0.03214135, 0.03214135, 0.03214135,
0.03214135, 0.03214135, 0.03326485, 0.03326485, 0.03326485,
0.03326485, 0.03492123, 0.03492123, 0.03492123, 0.03492123,
0.0380912 , 0.0380912 , 0.0380912 , 0.0380912 , 0.04240575,
0.04240575, 0.04240575, 0.04240575, 0.04834004, 0.04834004,
0.04834004, 0.04834004, 0.05610415, 0.05610415, 0.05610415,
0.05610415, 0.06608221, 0.06608221, 0.06608221, 0.06608221,
0.0787049 , 0.0787049 , 0.0787049 , 0.0787049 , 0.09444197,
0.09444197, 0.09444197, 0.09444197, 0.1138762 , 0.1138762 ,
0.1138762 , 0.1138762 , 0.13771315, 0.13771315, 0.13771315,
0.13771315, 0.16671549, 0.16671549, 0.16671549, 0.16671549,
0.20167143, 0.20167143, 0.20167143, 0.20167143, 0.2432827 ,
0.2432827 , 0.2432827 , 0.2432827 , 0.29198841, 0.29198841,
0.29198841, 0.29198841, 0.34796265, 0.34796265, 0.34796265,
0.34796265, 0.41103821, 0.41103821, 0.41103821, 0.41103821,
0.48067049, 0.48067049, 0.48067049, 0.48067049, 0.55595614,
0.55595614, 0.55595614, 0.55595614, 0.63550363, 0.63550363,
0.63550363, 0.63550363, 0.71478068, 0.71478068, 0.71478068,
0.71478068, 0.78827781, 0.78827781, 0.78827781, 0.78827781,
0.85178879, 0.85178879, 0.85178879, 0.85178879, 0.90261749,
0.90261749, 0.90261749, 0.90261749, 0.94020757, 0.94020757,
0.94020757, 0.94020757, 0.96579536, 0.96579536, 0.96579536,
0.96579536, 0.98179228, 0.98179228, 0.98179228, 0.98179228,
0.99097735, 0.99097735, 0.99097735, 0.99097735, 0.9958364 ,
0.9958364 , 0.9958364 , 0.9958364 , 0.99818385, 0.99818385,
0.99818385, 0.99818385, 0.99935842, 0.99935842, 0.99935842]), 'vx': array([-1.99952018, -1.99952018, -1.99952018, -1.99952018, -1.99864185,
-1.99864185, -1.99864185, -1.99864185, -1.99688652, -1.99688652,
-1.99688652, -1.99688652, -1.99324933, -1.99324933, -1.99324933,
-1.99324933, -1.9863528 , -1.9863528 , -1.9863528 , -1.9863528 ,
-1.97425674, -1.97425674, -1.97425674, -1.97425674, -1.95464263,
-1.95464263, -1.95464263, -1.95464263, -1.92514406, -1.92514406,
-1.92514406, -1.92514406, -1.88375677, -1.88375677, -1.88375677,
-1.88375677, -1.82911554, -1.82911554, -1.82911554, -1.82911554,
-1.76062129, -1.76062129, -1.76062129, -1.76062129, -1.68071322,
-1.68071322, -1.68071322, -1.68071322, -1.59492733, -1.59492733,
-1.59492733, -1.59492733, -1.5062706 , -1.5062706 , -1.5062706 ,
-1.5062706 , -1.41587855, -1.41587855, -1.41587855, -1.41587855,
-1.32420236, -1.32420236, -1.32420236, -1.32420236, -1.23142318,
-1.23142318, -1.23142318, -1.23142318, -1.13776667, -1.13776667,
-1.13776667, -1.13776667, -1.0435245 , -1.0435245 , -1.0435245 ,
-1.0435245 , -0.94917177, -0.94917177, -0.94917177, -0.94917177,
-0.85524436, -0.85524436, -0.85524436, -0.85524436, -0.76204779,
-0.76204779, -0.76204779, -0.76204779, -0.6700244 , -0.6700244 ,
-0.6700244 , -0.6700244 , -0.57980628, -0.57980628, -0.57980628,
-0.57980628, -0.49209337, -0.49209337, -0.49209337, -0.49209337,
-0.4075253 , -0.4075253 , -0.4075253 , -0.4075253 , -0.3269932 ,
-0.3269932 , -0.3269932 , -0.3269932 , -0.25189354, -0.25189354,
-0.25189354, -0.25189354, -0.18245433, -0.18245433, -0.18245433,
-0.18245433, -0.12356223, -0.12356223, -0.12356223, -0.12356223,
-0.06674555, -0.06674555, -0.06674555, -0.06674555, -0.02512498,
-0.02512498, -0.02512498, -0.02512498, 0.02512498, 0.02512498,
0.02512498, 0.02512498, 0.06674555, 0.06674555, 0.06674555,
0.06674555, 0.12356223, 0.12356223, 0.12356223, 0.12356223,
0.18245433, 0.18245433, 0.18245433, 0.18245433, 0.25189354,
0.25189354, 0.25189354, 0.25189354, 0.3269932 , 0.3269932 ,
0.3269932 , 0.3269932 , 0.4075253 , 0.4075253 , 0.4075253 ,
0.4075253 , 0.49209337, 0.49209337, 0.49209337, 0.49209337,
0.57980628, 0.57980628, 0.57980628, 0.57980628, 0.6700244 ,
0.6700244 , 0.6700244 , 0.6700244 , 0.76204779, 0.76204779,
0.76204779, 0.76204779, 0.85524436, 0.85524436, 0.85524436,
0.85524436, 0.94917177, 0.94917177, 0.94917177, 0.94917177,
1.0435245 , 1.0435245 , 1.0435245 , 1.0435245 , 1.13776667,
1.13776667, 1.13776667, 1.13776667, 1.23142318, 1.23142318,
1.23142318, 1.23142318, 1.32420236, 1.32420236, 1.32420236,
1.32420236, 1.41587855, 1.41587855, 1.41587855, 1.41587855,
1.5062706 , 1.5062706 , 1.5062706 , 1.5062706 , 1.59492733,
1.59492733, 1.59492733, 1.59492733, 1.68071322, 1.68071322,
1.68071322, 1.68071322, 1.76062129, 1.76062129, 1.76062129,
1.76062129, 1.82911554, 1.82911554, 1.82911554, 1.82911554,
1.88375677, 1.88375677, 1.88375677, 1.88375677, 1.92514406,
1.92514406, 1.92514406, 1.92514406, 1.95464263, 1.95464263,
1.95464263, 1.95464263, 1.97425674, 1.97425674, 1.97425674,
1.97425674, 1.9863528 , 1.9863528 , 1.9863528 , 1.9863528 ,
1.99324933, 1.99324933, 1.99324933, 1.99324933, 1.99688652,
1.99688652, 1.99688652, 1.99688652, 1.99864185, 1.99864185,
1.99864185, 1.99864185, 1.99952018, 1.99952018, 1.99952018]), 'P': array([0.39964109, 0.39964109, 0.39964109, 0.39964109, 0.39898484,
0.39898484, 0.39898484, 0.39898484, 0.39767625, 0.39767625,
0.39767625, 0.39767625, 0.39497692, 0.39497692, 0.39497692,
0.39497692, 0.38990315, 0.38990315, 0.38990315, 0.38990315,
0.38114224, 0.38114224, 0.38114224, 0.38114224, 0.36730165,
0.36730165, 0.36730165, 0.36730165, 0.34731065, 0.34731065,
0.34731065, 0.34731065, 0.32085982, 0.32085982, 0.32085982,
0.32085982, 0.28861299, 0.28861299, 0.28861299, 0.28861299,
0.25186678, 0.25186678, 0.25186678, 0.25186678, 0.21365403,
0.21365403, 0.21365403, 0.21365403, 0.17870252, 0.17870252,
0.17870252, 0.17870252, 0.14818267, 0.14818267, 0.14818267,
0.14818267, 0.12209924, 0.12209924, 0.12209924, 0.12209924,
0.10011945, 0.10011945, 0.10011945, 0.10011945, 0.0818088 ,
0.0818088 , 0.0818088 , 0.0818088 , 0.06670971, 0.06670971,
0.06670971, 0.06670971, 0.05437927, 0.05437927, 0.05437927,
0.05437927, 0.04440649, 0.04440649, 0.04440649, 0.04440649,
0.03638626, 0.03638626, 0.03638626, 0.03638626, 0.02995596,
0.02995596, 0.02995596, 0.02995596, 0.02481328, 0.02481328,
0.02481328, 0.02481328, 0.02070499, 0.02070499, 0.02070499,
0.02070499, 0.0174288 , 0.0174288 , 0.0174288 , 0.0174288 ,
0.01483202, 0.01483202, 0.01483202, 0.01483202, 0.01278983,
0.01278983, 0.01278983, 0.01278983, 0.01119743, 0.01119743,
0.01119743, 0.01119743, 0.01001381, 0.01001381, 0.01001381,
0.01001381, 0.0090983 , 0.0090983 , 0.0090983 , 0.0090983 ,
0.00861935, 0.00861935, 0.00861935, 0.00861935, 0.00825265,
0.00825265, 0.00825265, 0.00825265, 0.00825265, 0.00825265,
0.00825265, 0.00825265, 0.00861935, 0.00861935, 0.00861935,
0.00861935, 0.0090983 , 0.0090983 , 0.0090983 , 0.0090983 ,
0.01001381, 0.01001381, 0.01001381, 0.01001381, 0.01119743,
0.01119743, 0.01119743, 0.01119743, 0.01278983, 0.01278983,
0.01278983, 0.01278983, 0.01483202, 0.01483202, 0.01483202,
0.01483202, 0.0174288 , 0.0174288 , 0.0174288 , 0.0174288 ,
0.02070499, 0.02070499, 0.02070499, 0.02070499, 0.02481328,
0.02481328, 0.02481328, 0.02481328, 0.02995596, 0.02995596,
0.02995596, 0.02995596, 0.03638626, 0.03638626, 0.03638626,
0.03638626, 0.04440649, 0.04440649, 0.04440649, 0.04440649,
0.05437927, 0.05437927, 0.05437927, 0.05437927, 0.06670971,
0.06670971, 0.06670971, 0.06670971, 0.0818088 , 0.0818088 ,
0.0818088 , 0.0818088 , 0.10011945, 0.10011945, 0.10011945,
0.10011945, 0.12209924, 0.12209924, 0.12209924, 0.12209924,
0.14818267, 0.14818267, 0.14818267, 0.14818267, 0.17870252,
0.17870252, 0.17870252, 0.17870252, 0.21365403, 0.21365403,
0.21365403, 0.21365403, 0.25186678, 0.25186678, 0.25186678,
0.25186678, 0.28861299, 0.28861299, 0.28861299, 0.28861299,
0.32085982, 0.32085982, 0.32085982, 0.32085982, 0.34731065,
0.34731065, 0.34731065, 0.34731065, 0.36730165, 0.36730165,
0.36730165, 0.36730165, 0.38114224, 0.38114224, 0.38114224,
0.38114224, 0.38990315, 0.38990315, 0.38990315, 0.38990315,
0.39497692, 0.39497692, 0.39497692, 0.39497692, 0.39767625,
0.39767625, 0.39767625, 0.39767625, 0.39898484, 0.39898484,
0.39898484, 0.39898484, 0.39964109, 0.39964109, 0.39964109])}, {'rho': array([0.99877047, 0.99877047, 0.99877047, 0.99877047, 0.99669744,
0.99669744, 0.99669744, 0.99669744, 0.99285057, 0.99285057,
0.99285057, 0.99285057, 0.98534841, 0.98534841, 0.98534841,
0.98534841, 0.97204259, 0.97204259, 0.97204259, 0.97204259,
0.95029132, 0.95029132, 0.95029132, 0.95029132, 0.91759898,
0.91759898, 0.91759898, 0.91759898, 0.87234656, 0.87234656,
0.87234656, 0.87234656, 0.81445318, 0.81445318, 0.81445318,
0.81445318, 0.7457438 , 0.7457438 , 0.7457438 , 0.7457438 ,
0.66993745, 0.66993745, 0.66993745, 0.66993745, 0.59159085,
0.59159085, 0.59159085, 0.59159085, 0.51625046, 0.51625046,
0.51625046, 0.51625046, 0.44575447, 0.44575447, 0.44575447,
0.44575447, 0.38102775, 0.38102775, 0.38102775, 0.38102775,
0.32272363, 0.32272363, 0.32272363, 0.32272363, 0.27120152,
0.27120152, 0.27120152, 0.27120152, 0.22649938, 0.22649938,
0.22649938, 0.22649938, 0.18837223, 0.18837223, 0.18837223,
0.18837223, 0.15634393, 0.15634393, 0.15634393, 0.15634393,
0.12971893, 0.12971893, 0.12971893, 0.12971893, 0.10777842,
0.10777842, 0.10777842, 0.10777842, 0.08983298, 0.08983298,
0.08983298, 0.08983298, 0.07524656, 0.07524656, 0.07524656,
0.07524656, 0.06352115, 0.06352115, 0.06352115, 0.06352115,
0.05422287, 0.05422287, 0.05422287, 0.05422287, 0.04696748,
0.04696748, 0.04696748, 0.04696748, 0.04140756, 0.04140756,
0.04140756, 0.04140756, 0.03737502, 0.03737502, 0.03737502,
0.03737502, 0.0343942 , 0.0343942 , 0.0343942 , 0.0343942 ,
0.0328717 , 0.0328717 , 0.0328717 , 0.0328717 , 0.03183325,
0.03183325, 0.03183325, 0.03183325, 0.03183325, 0.03183325,
0.03183325, 0.03183325, 0.0328717 , 0.0328717 , 0.0328717 ,
0.0328717 , 0.0343942 , 0.0343942 , 0.0343942 , 0.0343942 ,
0.03737502, 0.03737502, 0.03737502, 0.03737502, 0.04140756,
0.04140756, 0.04140756, 0.04140756, 0.04696748, 0.04696748,
0.04696748, 0.04696748, 0.05422287, 0.05422287, 0.05422287,
0.05422287, 0.06352115, 0.06352115, 0.06352115, 0.06352115,
0.07524656, 0.07524656, 0.07524656, 0.07524656, 0.08983298,
0.08983298, 0.08983298, 0.08983298, 0.10777842, 0.10777842,
0.10777842, 0.10777842, 0.12971893, 0.12971893, 0.12971893,
0.12971893, 0.15634393, 0.15634393, 0.15634393, 0.15634393,
0.18837223, 0.18837223, 0.18837223, 0.18837223, 0.22649938,
0.22649938, 0.22649938, 0.22649938, 0.27120152, 0.27120152,
0.27120152, 0.27120152, 0.32272363, 0.32272363, 0.32272363,
0.32272363, 0.38102775, 0.38102775, 0.38102775, 0.38102775,
0.44575447, 0.44575447, 0.44575447, 0.44575447, 0.51625046,
0.51625046, 0.51625046, 0.51625046, 0.59159085, 0.59159085,
0.59159085, 0.59159085, 0.66993745, 0.66993745, 0.66993745,
0.66993745, 0.7457438 , 0.7457438 , 0.7457438 , 0.7457438 ,
0.81445318, 0.81445318, 0.81445318, 0.81445318, 0.87234656,
0.87234656, 0.87234656, 0.87234656, 0.91759898, 0.91759898,
0.91759898, 0.91759898, 0.95029132, 0.95029132, 0.95029132,
0.95029132, 0.97204259, 0.97204259, 0.97204259, 0.97204259,
0.98534841, 0.98534841, 0.98534841, 0.98534841, 0.99285057,
0.99285057, 0.99285057, 0.99285057, 0.99669744, 0.99669744,
0.99669744, 0.99669744, 0.99877047, 0.99877047, 0.99877047]), 'vx': array([-1.99908059, -1.99908059, -1.99908059, -1.99908059, -1.99753004,
-1.99753004, -1.99753004, -1.99753004, -1.99465134, -1.99465134,
-1.99465134, -1.99465134, -1.98902376, -1.98902376, -1.98902376,
-1.98902376, -1.97898693, -1.97898693, -1.97898693, -1.97898693,
-1.96239563, -1.96239563, -1.96239563, -1.96239563, -1.93696484,
-1.93696484, -1.93696484, -1.93696484, -1.90064228, -1.90064228,
-1.90064228, -1.90064228, -1.85193922, -1.85193922, -1.85193922,
-1.85193922, -1.7900464 , -1.7900464 , -1.7900464 , -1.7900464 ,
-1.71565593, -1.71565593, -1.71565593, -1.71565593, -1.63373525,
-1.63373525, -1.63373525, -1.63373525, -1.54823073, -1.54823073,
-1.54823073, -1.54823073, -1.46079235, -1.46079235, -1.46079235,
-1.46079235, -1.37199852, -1.37199852, -1.37199852, -1.37199852,
-1.28211147, -1.28211147, -1.28211147, -1.28211147, -1.1912692 ,
-1.1912692 , -1.1912692 , -1.1912692 , -1.0997101 , -1.0997101 ,
-1.0997101 , -1.0997101 , -1.00773223, -1.00773223, -1.00773223,
-1.00773223, -0.915865 , -0.915865 , -0.915865 , -0.915865 ,
-0.82447802, -0.82447802, -0.82447802, -0.82447802, -0.73388324,
-0.73388324, -0.73388324, -0.73388324, -0.64452211, -0.64452211,
-0.64452211, -0.64452211, -0.55705453, -0.55705453, -0.55705453,
-0.55705453, -0.47206535, -0.47206535, -0.47206535, -0.47206535,
-0.39024786, -0.39024786, -0.39024786, -0.39024786, -0.31248498,
-0.31248498, -0.31248498, -0.31248498, -0.24021394, -0.24021394,
-0.24021394, -0.24021394, -0.17347661, -0.17347661, -0.17347661,
-0.17347661, -0.11751026, -0.11751026, -0.11751026, -0.11751026,
-0.0632085 , -0.0632085 , -0.0632085 , -0.0632085 , -0.02367335,
-0.02367335, -0.02367335, -0.02367335, 0.02367335, 0.02367335,
0.02367335, 0.02367335, 0.0632085 , 0.0632085 , 0.0632085 ,
0.0632085 , 0.11751026, 0.11751026, 0.11751026, 0.11751026,
0.17347661, 0.17347661, 0.17347661, 0.17347661, 0.24021394,
0.24021394, 0.24021394, 0.24021394, 0.31248498, 0.31248498,
0.31248498, 0.31248498, 0.39024786, 0.39024786, 0.39024786,
0.39024786, 0.47206535, 0.47206535, 0.47206535, 0.47206535,
0.55705453, 0.55705453, 0.55705453, 0.55705453, 0.64452211,
0.64452211, 0.64452211, 0.64452211, 0.73388324, 0.73388324,
0.73388324, 0.73388324, 0.82447802, 0.82447802, 0.82447802,
0.82447802, 0.915865 , 0.915865 , 0.915865 , 0.915865 ,
1.00773223, 1.00773223, 1.00773223, 1.00773223, 1.0997101 ,
1.0997101 , 1.0997101 , 1.0997101 , 1.1912692 , 1.1912692 ,
1.1912692 , 1.1912692 , 1.28211147, 1.28211147, 1.28211147,
1.28211147, 1.37199852, 1.37199852, 1.37199852, 1.37199852,
1.46079235, 1.46079235, 1.46079235, 1.46079235, 1.54823073,
1.54823073, 1.54823073, 1.54823073, 1.63373525, 1.63373525,
1.63373525, 1.63373525, 1.71565593, 1.71565593, 1.71565593,
1.71565593, 1.7900464 , 1.7900464 , 1.7900464 , 1.7900464 ,
1.85193922, 1.85193922, 1.85193922, 1.85193922, 1.90064228,
1.90064228, 1.90064228, 1.90064228, 1.93696484, 1.93696484,
1.93696484, 1.93696484, 1.96239563, 1.96239563, 1.96239563,
1.96239563, 1.97898693, 1.97898693, 1.97898693, 1.97898693,
1.98902376, 1.98902376, 1.98902376, 1.98902376, 1.99465134,
1.99465134, 1.99465134, 1.99465134, 1.99753004, 1.99753004,
1.99753004, 1.99753004, 1.99908059, 1.99908059, 1.99908059]), 'P': array([0.39931253, 0.39931253, 0.39931253, 0.39931253, 0.39815553,
0.39815553, 0.39815553, 0.39815553, 0.39601547, 0.39601547,
0.39601547, 0.39601547, 0.39186124, 0.39186124, 0.39186124,
0.39186124, 0.38454724, 0.38454724, 0.38454724, 0.38454724,
0.37271856, 0.37271856, 0.37271856, 0.37271856, 0.35520322,
0.35520322, 0.35520322, 0.35520322, 0.33142852, 0.33142852,
0.33142852, 0.33142852, 0.30172162, 0.30172162, 0.30172162,
0.30172162, 0.26722998, 0.26722998, 0.26722998, 0.26722998,
0.22964847, 0.22964847, 0.22964847, 0.22964847, 0.19381543,
0.19381543, 0.19381543, 0.19381543, 0.16198249, 0.16198249,
0.16198249, 0.16198249, 0.13445089, 0.13445089, 0.13445089,
0.13445089, 0.11100538, 0.11100538, 0.11100538, 0.11100538,
0.091272 , 0.091272 , 0.091272 , 0.091272 , 0.07483306,
0.07483306, 0.07483306, 0.07483306, 0.06126859, 0.06126859,
0.06126859, 0.06126859, 0.0501795 , 0.0501795 , 0.0501795 ,
0.0501795 , 0.04119173, 0.04119173, 0.04119173, 0.04119173,
0.03393542, 0.03393542, 0.03393542, 0.03393542, 0.02809392,
0.02809392, 0.02809392, 0.02809392, 0.02340228, 0.02340228,
0.02340228, 0.02340228, 0.01963597, 0.01963597, 0.01963597,
0.01963597, 0.01662277, 0.01662277, 0.01662277, 0.01662277,
0.0142256 , 0.0142256 , 0.0142256 , 0.0142256 , 0.0123351 ,
0.0123351 , 0.0123351 , 0.0123351 , 0.01085733, 0.01085733,
0.01085733, 0.01085733, 0.0097635 , 0.0097635 , 0.0097635 ,
0.0097635 , 0.00891048, 0.00891048, 0.00891048, 0.00891048,
0.00847698, 0.00847698, 0.00847698, 0.00847698, 0.00814089,
0.00814089, 0.00814089, 0.00814089, 0.00814089, 0.00814089,
0.00814089, 0.00814089, 0.00847698, 0.00847698, 0.00847698,
0.00847698, 0.00891048, 0.00891048, 0.00891048, 0.00891048,
0.0097635 , 0.0097635 , 0.0097635 , 0.0097635 , 0.01085733,
0.01085733, 0.01085733, 0.01085733, 0.0123351 , 0.0123351 ,
0.0123351 , 0.0123351 , 0.0142256 , 0.0142256 , 0.0142256 ,
0.0142256 , 0.01662277, 0.01662277, 0.01662277, 0.01662277,
0.01963597, 0.01963597, 0.01963597, 0.01963597, 0.02340228,
0.02340228, 0.02340228, 0.02340228, 0.02809392, 0.02809392,
0.02809392, 0.02809392, 0.03393542, 0.03393542, 0.03393542,
0.03393542, 0.04119173, 0.04119173, 0.04119173, 0.04119173,
0.0501795 , 0.0501795 , 0.0501795 , 0.0501795 , 0.06126859,
0.06126859, 0.06126859, 0.06126859, 0.07483306, 0.07483306,
0.07483306, 0.07483306, 0.091272 , 0.091272 , 0.091272 ,
0.091272 , 0.11100538, 0.11100538, 0.11100538, 0.11100538,
0.13445089, 0.13445089, 0.13445089, 0.13445089, 0.16198249,
0.16198249, 0.16198249, 0.16198249, 0.19381543, 0.19381543,
0.19381543, 0.19381543, 0.22964847, 0.22964847, 0.22964847,
0.22964847, 0.26722998, 0.26722998, 0.26722998, 0.26722998,
0.30172162, 0.30172162, 0.30172162, 0.30172162, 0.33142852,
0.33142852, 0.33142852, 0.33142852, 0.35520322, 0.35520322,
0.35520322, 0.35520322, 0.37271856, 0.37271856, 0.37271856,
0.37271856, 0.38454724, 0.38454724, 0.38454724, 0.38454724,
0.39186124, 0.39186124, 0.39186124, 0.39186124, 0.39601547,
0.39601547, 0.39601547, 0.39601547, 0.39815553, 0.39815553,
0.39815553, 0.39815553, 0.39931253, 0.39931253, 0.39931253])}, {'rho': array([0.9977494 , 0.9977494 , 0.9977494 , 0.9977494 , 0.99426102,
0.99426102, 0.99426102, 0.99426102, 0.98825921, 0.98825921,
0.98825921, 0.98825921, 0.97721687, 0.97721687, 0.97721687,
0.97721687, 0.9588252 , 0.9588252 , 0.9588252 , 0.9588252 ,
0.93055227, 0.93055227, 0.93055227, 0.93055227, 0.89050924,
0.89050924, 0.89050924, 0.89050924, 0.8380853 , 0.8380853 ,
0.8380853 , 0.8380853 , 0.77437286, 0.77437286, 0.77437286,
0.77437286, 0.70235571, 0.70235571, 0.70235571, 0.70235571,
0.62603086, 0.62603086, 0.62603086, 0.62603086, 0.55093316,
0.55093316, 0.55093316, 0.55093316, 0.47999301, 0.47999301,
0.47999301, 0.47999301, 0.41411573, 0.41411573, 0.41411573,
0.41411573, 0.35398023, 0.35398023, 0.35398023, 0.35398023,
0.30006434, 0.30006434, 0.30006434, 0.30006434, 0.25258687,
0.25258687, 0.25258687, 0.25258687, 0.21148973, 0.21148973,
0.21148973, 0.21148973, 0.17648142, 0.17648142, 0.17648142,
0.17648142, 0.14704972, 0.14704972, 0.14704972, 0.14704972,
0.12253346, 0.12253346, 0.12253346, 0.12253346, 0.10227724,
0.10227724, 0.10227724, 0.10227724, 0.08565589, 0.08565589,
0.08565589, 0.08565589, 0.07210108, 0.07210108, 0.07210108,
0.07210108, 0.0611814 , 0.0611814 , 0.0611814 , 0.0611814 ,
0.05249557, 0.05249557, 0.05249557, 0.05249557, 0.04570138,
0.04570138, 0.04570138, 0.04570138, 0.0404826 , 0.0404826 ,
0.0404826 , 0.0404826 , 0.03670994, 0.03670994, 0.03670994,
0.03670994, 0.03390332, 0.03390332, 0.03390332, 0.03390332,
0.03250305, 0.03250305, 0.03250305, 0.03250305, 0.03154398,
0.03154398, 0.03154398, 0.03154398, 0.03154398, 0.03154398,
0.03154398, 0.03154398, 0.03250305, 0.03250305, 0.03250305,
0.03250305, 0.03390332, 0.03390332, 0.03390332, 0.03390332,
0.03670994, 0.03670994, 0.03670994, 0.03670994, 0.0404826 ,
0.0404826 , 0.0404826 , 0.0404826 , 0.04570138, 0.04570138,
0.04570138, 0.04570138, 0.05249557, 0.05249557, 0.05249557,
0.05249557, 0.0611814 , 0.0611814 , 0.0611814 , 0.0611814 ,
0.07210108, 0.07210108, 0.07210108, 0.07210108, 0.08565589,
0.08565589, 0.08565589, 0.08565589, 0.10227724, 0.10227724,
0.10227724, 0.10227724, 0.12253346, 0.12253346, 0.12253346,
0.12253346, 0.14704972, 0.14704972, 0.14704972, 0.14704972,
0.17648142, 0.17648142, 0.17648142, 0.17648142, 0.21148973,
0.21148973, 0.21148973, 0.21148973, 0.25258687, 0.25258687,
0.25258687, 0.25258687, 0.30006434, 0.30006434, 0.30006434,
0.30006434, 0.35398023, 0.35398023, 0.35398023, 0.35398023,
0.41411573, 0.41411573, 0.41411573, 0.41411573, 0.47999301,
0.47999301, 0.47999301, 0.47999301, 0.55093316, 0.55093316,
0.55093316, 0.55093316, 0.62603086, 0.62603086, 0.62603086,
0.62603086, 0.70235571, 0.70235571, 0.70235571, 0.70235571,
0.77437286, 0.77437286, 0.77437286, 0.77437286, 0.8380853 ,
0.8380853 , 0.8380853 , 0.8380853 , 0.89050924, 0.89050924,
0.89050924, 0.89050924, 0.93055227, 0.93055227, 0.93055227,
0.93055227, 0.9588252 , 0.9588252 , 0.9588252 , 0.9588252 ,
0.97721687, 0.97721687, 0.97721687, 0.97721687, 0.98825921,
0.98825921, 0.98825921, 0.98825921, 0.99426102, 0.99426102,
0.99426102, 0.99426102, 0.9977494 , 0.9977494 , 0.9977494 ]), 'vx': array([-1.99831719, -1.99831719, -1.99831719, -1.99831719, -1.9957063 ,
-1.9957063 , -1.9957063 , -1.9957063 , -1.99120791, -1.99120791,
-1.99120791, -1.99120791, -1.98289418, -1.98289418, -1.98289418,
-1.98289418, -1.96892164, -1.96892164, -1.96892164, -1.96892164,
-1.94708842, -1.94708842, -1.94708842, -1.94708842, -1.91533198,
-1.91533198, -1.91533198, -1.91533198, -1.87205044, -1.87205044,
-1.87205044, -1.87205044, -1.81628384, -1.81628384, -1.81628384,
-1.81628384, -1.74789252, -1.74789252, -1.74789252, -1.74789252,
-1.67014117, -1.67014117, -1.67014117, -1.67014117, -1.58781623,
-1.58781623, -1.58781623, -1.58781623, -1.50321406, -1.50321406,
-1.50321406, -1.50321406, -1.41718641, -1.41718641, -1.41718641,
-1.41718641, -1.33002805, -1.33002805, -1.33002805, -1.33002805,
-1.24191754, -1.24191754, -1.24191754, -1.24191754, -1.1529859 ,
-1.1529859 , -1.1529859 , -1.1529859 , -1.06348241, -1.06348241,
-1.06348241, -1.06348241, -0.97375295, -0.97375295, -0.97375295,
-0.97375295, -0.8842681 , -0.8842681 , -0.8842681 , -0.8842681 ,
-0.79531229, -0.79531229, -0.79531229, -0.79531229, -0.70720499,
-0.70720499, -0.70720499, -0.70720499, -0.62039393, -0.62039393,
-0.62039393, -0.62039393, -0.53553844, -0.53553844, -0.53553844,
-0.53553844, -0.45314097, -0.45314097, -0.45314097, -0.45314097,
-0.37394611, -0.37394611, -0.37394611, -0.37394611, -0.29882417,
-0.29882417, -0.29882417, -0.29882417, -0.22926025, -0.22926025,
-0.22926025, -0.22926025, -0.1650861 , -0.1650861 , -0.1650861 ,
-0.1650861 , -0.11189931, -0.11189931, -0.11189931, -0.11189931,
-0.05997783, -0.05997783, -0.05997783, -0.05997783, -0.02234588,
-0.02234588, -0.02234588, -0.02234588, 0.02234588, 0.02234588,
0.02234588, 0.02234588, 0.05997783, 0.05997783, 0.05997783,
0.05997783, 0.11189931, 0.11189931, 0.11189931, 0.11189931,
0.1650861 , 0.1650861 , 0.1650861 , 0.1650861 , 0.22926025,
0.22926025, 0.22926025, 0.22926025, 0.29882417, 0.29882417,
0.29882417, 0.29882417, 0.37394611, 0.37394611, 0.37394611,
0.37394611, 0.45314097, 0.45314097, 0.45314097, 0.45314097,
0.53553844, 0.53553844, 0.53553844, 0.53553844, 0.62039393,
0.62039393, 0.62039393, 0.62039393, 0.70720499, 0.70720499,
0.70720499, 0.70720499, 0.79531229, 0.79531229, 0.79531229,
0.79531229, 0.8842681 , 0.8842681 , 0.8842681 , 0.8842681 ,
0.97375295, 0.97375295, 0.97375295, 0.97375295, 1.06348241,
1.06348241, 1.06348241, 1.06348241, 1.1529859 , 1.1529859 ,
1.1529859 , 1.1529859 , 1.24191754, 1.24191754, 1.24191754,
1.24191754, 1.33002805, 1.33002805, 1.33002805, 1.33002805,
1.41718641, 1.41718641, 1.41718641, 1.41718641, 1.50321406,
1.50321406, 1.50321406, 1.50321406, 1.58781623, 1.58781623,
1.58781623, 1.58781623, 1.67014117, 1.67014117, 1.67014117,
1.67014117, 1.74789252, 1.74789252, 1.74789252, 1.74789252,
1.81628384, 1.81628384, 1.81628384, 1.81628384, 1.87205044,
1.87205044, 1.87205044, 1.87205044, 1.91533198, 1.91533198,
1.91533198, 1.91533198, 1.94708842, 1.94708842, 1.94708842,
1.94708842, 1.96892164, 1.96892164, 1.96892164, 1.96892164,
1.98289418, 1.98289418, 1.98289418, 1.98289418, 1.99120791,
1.99120791, 1.99120791, 1.99120791, 1.9957063 , 1.9957063 ,
1.9957063 , 1.9957063 , 1.99831719, 1.99831719, 1.99831719]), 'P': array([0.39874254, 0.39874254, 0.39874254, 0.39874254, 0.3967985 ,
0.3967985 , 0.3967985 , 0.3967985 , 0.39346894, 0.39346894,
0.39346894, 0.39346894, 0.38738 , 0.38738 , 0.38738 ,
0.38738 , 0.37733237, 0.37733237, 0.37733237, 0.37733237,
0.36208692, 0.36208692, 0.36208692, 0.36208692, 0.34086903,
0.34086903, 0.34086903, 0.34086903, 0.31369196, 0.31369196,
0.31369196, 0.31369196, 0.28143228, 0.28143228, 0.28143228,
0.28143228, 0.24539505, 0.24539505, 0.24539505, 0.24539505,
0.20904257, 0.20904257, 0.20904257, 0.20904257, 0.17608693,
0.17608693, 0.17608693, 0.17608693, 0.1472165 , 0.1472165 ,
0.1472165 , 0.1472165 , 0.12237566, 0.12237566, 0.12237566,
0.12237566, 0.10126204, 0.10126204, 0.10126204, 0.10126204,
0.08350028, 0.08350028, 0.08350028, 0.08350028, 0.06869941,
0.06869941, 0.06869941, 0.06869941, 0.05647672, 0.05647672,
0.05647672, 0.05647672, 0.0464733 , 0.0464733 , 0.0464733 ,
0.0464733 , 0.03834224, 0.03834224, 0.03834224, 0.03834224,
0.03175275, 0.03175275, 0.03175275, 0.03175275, 0.02642729,
0.02642729, 0.02642729, 0.02642729, 0.02213222, 0.02213222,
0.02213222, 0.02213222, 0.018669 , 0.018669 , 0.018669 ,
0.018669 , 0.0158899 , 0.0158899 , 0.0158899 , 0.0158899 ,
0.01367134, 0.01367134, 0.01367134, 0.01367134, 0.01191756,
0.01191756, 0.01191756, 0.01191756, 0.01054368, 0.01054368,
0.01054368, 0.01054368, 0.00953218, 0.00953218, 0.00953218,
0.00953218, 0.00873638, 0.00873638, 0.00873638, 0.00873638,
0.00834403, 0.00834403, 0.00834403, 0.00834403, 0.00803633,
0.00803633, 0.00803633, 0.00803633, 0.00803633, 0.00803633,
0.00803633, 0.00803633, 0.00834403, 0.00834403, 0.00834403,
0.00834403, 0.00873638, 0.00873638, 0.00873638, 0.00873638,
0.00953218, 0.00953218, 0.00953218, 0.00953218, 0.01054368,
0.01054368, 0.01054368, 0.01054368, 0.01191756, 0.01191756,
0.01191756, 0.01191756, 0.01367134, 0.01367134, 0.01367134,
0.01367134, 0.0158899 , 0.0158899 , 0.0158899 , 0.0158899 ,
0.018669 , 0.018669 , 0.018669 , 0.018669 , 0.02213222,
0.02213222, 0.02213222, 0.02213222, 0.02642729, 0.02642729,
0.02642729, 0.02642729, 0.03175275, 0.03175275, 0.03175275,
0.03175275, 0.03834224, 0.03834224, 0.03834224, 0.03834224,
0.0464733 , 0.0464733 , 0.0464733 , 0.0464733 , 0.05647672,
0.05647672, 0.05647672, 0.05647672, 0.06869941, 0.06869941,
0.06869941, 0.06869941, 0.08350028, 0.08350028, 0.08350028,
0.08350028, 0.10126204, 0.10126204, 0.10126204, 0.10126204,
0.12237566, 0.12237566, 0.12237566, 0.12237566, 0.1472165 ,
0.1472165 , 0.1472165 , 0.1472165 , 0.17608693, 0.17608693,
0.17608693, 0.17608693, 0.20904257, 0.20904257, 0.20904257,
0.20904257, 0.24539505, 0.24539505, 0.24539505, 0.24539505,
0.28143228, 0.28143228, 0.28143228, 0.28143228, 0.31369196,
0.31369196, 0.31369196, 0.31369196, 0.34086903, 0.34086903,
0.34086903, 0.34086903, 0.36208692, 0.36208692, 0.36208692,
0.36208692, 0.37733237, 0.37733237, 0.37733237, 0.37733237,
0.38738 , 0.38738 , 0.38738 , 0.38738 , 0.39346894,
0.39346894, 0.39346894, 0.39346894, 0.3967985 , 0.3967985 ,
0.3967985 , 0.3967985 , 0.39874254, 0.39874254, 0.39874254])}, {'rho': array([0.99605813, 0.99605813, 0.99605813, 0.99605813, 0.99045329,
0.99045329, 0.99045329, 0.99045329, 0.98152705, 0.98152705,
0.98152705, 0.98152705, 0.9660057 , 0.9660057 , 0.9660057 ,
0.9660057 , 0.94169868, 0.94169868, 0.94169868, 0.94169868,
0.90647287, 0.90647287, 0.90647287, 0.90647287, 0.85929998,
0.85929998, 0.85929998, 0.85929998, 0.8006496 , 0.8006496 ,
0.8006496 , 0.8006496 , 0.73271464, 0.73271464, 0.73271464,
0.73271464, 0.65912321, 0.65912321, 0.65912321, 0.65912321,
0.58464756, 0.58464756, 0.58464756, 0.58464756, 0.51355991,
0.51355991, 0.51355991, 0.51355991, 0.44694843, 0.44694843,
0.44694843, 0.44694843, 0.38544657, 0.38544657, 0.38544657,
0.38544657, 0.32957765, 0.32957765, 0.32957765, 0.32957765,
0.27968514, 0.27968514, 0.27968514, 0.27968514, 0.23587891,
0.23587891, 0.23587891, 0.23587891, 0.19803116, 0.19803116,
0.19803116, 0.19803116, 0.1658123 , 0.1658123 , 0.1658123 ,
0.1658123 , 0.13869035, 0.13869035, 0.13869035, 0.13869035,
0.1160511 , 0.1160511 , 0.1160511 , 0.1160511 , 0.09729602,
0.09729602, 0.09729602, 0.09729602, 0.08185673, 0.08185673,
0.08185673, 0.08185673, 0.06923142, 0.06923142, 0.06923142,
0.06923142, 0.05903707, 0.05903707, 0.05903707, 0.05903707,
0.05090512, 0.05090512, 0.05090512, 0.05090512, 0.0445306 ,
0.0445306 , 0.0445306 , 0.0445306 , 0.03962367, 0.03962367,
0.03962367, 0.03962367, 0.03609122, 0.03609122, 0.03609122,
0.03609122, 0.03344546, 0.03344546, 0.03344546, 0.03344546,
0.03215668, 0.03215668, 0.03215668, 0.03215668, 0.03127163,
0.03127163, 0.03127163, 0.03127163, 0.03127163, 0.03127163,
0.03127163, 0.03127163, 0.03215668, 0.03215668, 0.03215668,
0.03215668, 0.03344546, 0.03344546, 0.03344546, 0.03344546,
0.03609122, 0.03609122, 0.03609122, 0.03609122, 0.03962367,
0.03962367, 0.03962367, 0.03962367, 0.0445306 , 0.0445306 ,
0.0445306 , 0.0445306 , 0.05090512, 0.05090512, 0.05090512,
0.05090512, 0.05903707, 0.05903707, 0.05903707, 0.05903707,
0.06923142, 0.06923142, 0.06923142, 0.06923142, 0.08185673,
0.08185673, 0.08185673, 0.08185673, 0.09729602, 0.09729602,
0.09729602, 0.09729602, 0.1160511 , 0.1160511 , 0.1160511 ,
0.1160511 , 0.13869035, 0.13869035, 0.13869035, 0.13869035,
0.1658123 , 0.1658123 , 0.1658123 , 0.1658123 , 0.19803116,
0.19803116, 0.19803116, 0.19803116, 0.23587891, 0.23587891,
0.23587891, 0.23587891, 0.27968514, 0.27968514, 0.27968514,
0.27968514, 0.32957765, 0.32957765, 0.32957765, 0.32957765,
0.38544657, 0.38544657, 0.38544657, 0.38544657, 0.44694843,
0.44694843, 0.44694843, 0.44694843, 0.51355991, 0.51355991,
0.51355991, 0.51355991, 0.58464756, 0.58464756, 0.58464756,
0.58464756, 0.65912321, 0.65912321, 0.65912321, 0.65912321,
0.73271464, 0.73271464, 0.73271464, 0.73271464, 0.8006496 ,
0.8006496 , 0.8006496 , 0.8006496 , 0.85929998, 0.85929998,
0.85929998, 0.85929998, 0.90647287, 0.90647287, 0.90647287,
0.90647287, 0.94169868, 0.94169868, 0.94169868, 0.94169868,
0.9660057 , 0.9660057 , 0.9660057 , 0.9660057 , 0.98152705,
0.98152705, 0.98152705, 0.98152705, 0.99045329, 0.99045329,
0.99045329, 0.99045329, 0.99605813, 0.99605813, 0.99605813]), 'vx': array([-1.99705244, -1.99705244, -1.99705244, -1.99705244, -1.99285175,
-1.99285175, -1.99285175, -1.99285175, -1.98614251, -1.98614251,
-1.98614251, -1.98614251, -1.97438827, -1.97438827, -1.97438827,
-1.97438827, -1.95573085, -1.95573085, -1.95573085, -1.95573085,
-1.92807626, -1.92807626, -1.92807626, -1.92807626, -1.88974206,
-1.88974206, -1.88974206, -1.88974206, -1.83963153, -1.83963153,
-1.83963153, -1.83963153, -1.77727471, -1.77727471, -1.77727471,
-1.77727471, -1.70416641, -1.70416641, -1.70416641, -1.70416641,
-1.62516587, -1.62516587, -1.62516587, -1.62516587, -1.5433367 ,
-1.5433367 , -1.5433367 , -1.5433367 , -1.45994065, -1.45994065,
-1.45994065, -1.45994065, -1.37539964, -1.37539964, -1.37539964,
-1.37539964, -1.28987706, -1.28987706, -1.28987706, -1.28987706,
-1.20352061, -1.20352061, -1.20352061, -1.20352061, -1.11647055,
-1.11647055, -1.11647055, -1.11647055, -1.0289871 , -1.0289871 ,
-1.0289871 , -1.0289871 , -0.94146516, -0.94146516, -0.94146516,
-0.94146516, -0.85426046, -0.85426046, -0.85426046, -0.85426046,
-0.76763292, -0.76763292, -0.76763292, -0.76763292, -0.68190616,
-0.68190616, -0.68190616, -0.68190616, -0.59754128, -0.59754128,
-0.59754128, -0.59754128, -0.51516275, -0.51516275, -0.51516275,
-0.51516275, -0.43523915, -0.43523915, -0.43523915, -0.43523915,
-0.35854904, -0.35854904, -0.35854904, -0.35854904, -0.28594979,
-0.28594979, -0.28594979, -0.28594979, -0.21898158, -0.21898158,
-0.21898158, -0.21898158, -0.1572412 , -0.1572412 , -0.1572412 ,
-0.1572412 , -0.10669413, -0.10669413, -0.10669413, -0.10669413,
-0.05702841, -0.05702841, -0.05702841, -0.05702841, -0.02113285,
-0.02113285, -0.02113285, -0.02113285, 0.02113285, 0.02113285,
0.02113285, 0.02113285, 0.05702841, 0.05702841, 0.05702841,
0.05702841, 0.10669413, 0.10669413, 0.10669413, 0.10669413,
0.1572412 , 0.1572412 , 0.1572412 , 0.1572412 , 0.21898158,
0.21898158, 0.21898158, 0.21898158, 0.28594979, 0.28594979,
0.28594979, 0.28594979, 0.35854904, 0.35854904, 0.35854904,
0.35854904, 0.43523915, 0.43523915, 0.43523915, 0.43523915,
0.51516275, 0.51516275, 0.51516275, 0.51516275, 0.59754128,
0.59754128, 0.59754128, 0.59754128, 0.68190616, 0.68190616,
0.68190616, 0.68190616, 0.76763292, 0.76763292, 0.76763292,
0.76763292, 0.85426046, 0.85426046, 0.85426046, 0.85426046,
0.94146516, 0.94146516, 0.94146516, 0.94146516, 1.0289871 ,
1.0289871 , 1.0289871 , 1.0289871 , 1.11647055, 1.11647055,
1.11647055, 1.11647055, 1.20352061, 1.20352061, 1.20352061,
1.20352061, 1.28987706, 1.28987706, 1.28987706, 1.28987706,
1.37539964, 1.37539964, 1.37539964, 1.37539964, 1.45994065,
1.45994065, 1.45994065, 1.45994065, 1.5433367 , 1.5433367 ,
1.5433367 , 1.5433367 , 1.62516587, 1.62516587, 1.62516587,
1.62516587, 1.70416641, 1.70416641, 1.70416641, 1.70416641,
1.77727471, 1.77727471, 1.77727471, 1.77727471, 1.83963153,
1.83963153, 1.83963153, 1.83963153, 1.88974206, 1.88974206,
1.88974206, 1.88974206, 1.92807626, 1.92807626, 1.92807626,
1.92807626, 1.95573085, 1.95573085, 1.95573085, 1.95573085,
1.97438827, 1.97438827, 1.97438827, 1.97438827, 1.98614251,
1.98614251, 1.98614251, 1.98614251, 1.99285175, 1.99285175,
1.99285175, 1.99285175, 1.99705244, 1.99705244, 1.99705244]), 'P': array([0.39779984, 0.39779984, 0.39779984, 0.39779984, 0.39468265,
0.39468265, 0.39468265, 0.39468265, 0.38974908, 0.38974908,
0.38974908, 0.38974908, 0.38123566, 0.38123566, 0.38123566,
0.38123566, 0.36805554, 0.36805554, 0.36805554, 0.36805554,
0.34924877, 0.34924877, 0.34924877, 0.34924877, 0.324561 ,
0.324561 , 0.324561 , 0.324561 , 0.29457279, 0.29457279,
0.29457279, 0.29457279, 0.26045519, 0.26045519, 0.26045519,
0.26045519, 0.22427528, 0.22427528, 0.22427528, 0.22427528,
0.19041118, 0.19041118, 0.19041118, 0.19041118, 0.16032999,
0.16032999, 0.16032999, 0.16032999, 0.13417526, 0.13417526,
0.13417526, 0.13417526, 0.11173388, 0.11173388, 0.11173388,
0.11173388, 0.09267875, 0.09267875, 0.09267875, 0.09267875,
0.07665006, 0.07665006, 0.07665006, 0.07665006, 0.06328669,
0.06328669, 0.06328669, 0.06328669, 0.05224142, 0.05224142,
0.05224142, 0.05224142, 0.04318826, 0.04318826, 0.04318826,
0.04318826, 0.0358055 , 0.0358055 , 0.0358055 , 0.0358055 ,
0.02980072, 0.02980072, 0.02980072, 0.02980072, 0.02492949,
0.02492949, 0.02492949, 0.02492949, 0.02098449, 0.02098449,
0.02098449, 0.02098449, 0.01779138, 0.01779138, 0.01779138,
0.01779138, 0.01522133, 0.01522133, 0.01522133, 0.01522133,
0.01316322, 0.01316322, 0.01316322, 0.01316322, 0.01153318,
0.01153318, 0.01153318, 0.01153318, 0.01025378, 0.01025378,
0.01025378, 0.01025378, 0.00931797, 0.00931797, 0.00931797,
0.00931797, 0.00857471, 0.00857471, 0.00857471, 0.00857471,
0.00821961, 0.00821961, 0.00821961, 0.00821961, 0.00793821,
0.00793821, 0.00793821, 0.00793821, 0.00793821, 0.00793821,
0.00793821, 0.00793821, 0.00821961, 0.00821961, 0.00821961,
0.00821961, 0.00857471, 0.00857471, 0.00857471, 0.00857471,
0.00931797, 0.00931797, 0.00931797, 0.00931797, 0.01025378,
0.01025378, 0.01025378, 0.01025378, 0.01153318, 0.01153318,
0.01153318, 0.01153318, 0.01316322, 0.01316322, 0.01316322,
0.01316322, 0.01522133, 0.01522133, 0.01522133, 0.01522133,
0.01779138, 0.01779138, 0.01779138, 0.01779138, 0.02098449,
0.02098449, 0.02098449, 0.02098449, 0.02492949, 0.02492949,
0.02492949, 0.02492949, 0.02980072, 0.02980072, 0.02980072,
0.02980072, 0.0358055 , 0.0358055 , 0.0358055 , 0.0358055 ,
0.04318826, 0.04318826, 0.04318826, 0.04318826, 0.05224142,
0.05224142, 0.05224142, 0.05224142, 0.06328669, 0.06328669,
0.06328669, 0.06328669, 0.07665006, 0.07665006, 0.07665006,
0.07665006, 0.09267875, 0.09267875, 0.09267875, 0.09267875,
0.11173388, 0.11173388, 0.11173388, 0.11173388, 0.13417526,
0.13417526, 0.13417526, 0.13417526, 0.16032999, 0.16032999,
0.16032999, 0.16032999, 0.19041118, 0.19041118, 0.19041118,
0.19041118, 0.22427528, 0.22427528, 0.22427528, 0.22427528,
0.26045519, 0.26045519, 0.26045519, 0.26045519, 0.29457279,
0.29457279, 0.29457279, 0.29457279, 0.324561 , 0.324561 ,
0.324561 , 0.324561 , 0.34924877, 0.34924877, 0.34924877,
0.34924877, 0.36805554, 0.36805554, 0.36805554, 0.36805554,
0.38123566, 0.38123566, 0.38123566, 0.38123566, 0.38974908,
0.38974908, 0.38974908, 0.38974908, 0.39468265, 0.39468265,
0.39468265, 0.39468265, 0.39779984, 0.39779984, 0.39779984])}], 'minmod_hllc': [{'rho': array([0.99615448, 0.99615448, 0.99615448, 0.99615448, 0.99067376,
0.99067376, 0.99067376, 0.99067376, 0.98178812, 0.98178812,
0.98178812, 0.98178812, 0.96631722, 0.96631722, 0.96631722,
0.96631722, 0.94200777, 0.94200777, 0.94200777, 0.94200777,
0.90673392, 0.90673392, 0.90673392, 0.90673392, 0.85947908,
0.85947908, 0.85947908, 0.85947908, 0.80074229, 0.80074229,
0.80074229, 0.80074229, 0.73273792, 0.73273792, 0.73273792,
0.73273792, 0.65910051, 0.65910051, 0.65910051, 0.65910051,
0.58453712, 0.58453712, 0.58453712, 0.58453712, 0.51341489,
0.51341489, 0.51341489, 0.51341489, 0.44678137, 0.44678137,
0.44678137, 0.44678137, 0.38526945, 0.38526945, 0.38526945,
0.38526945, 0.32938852, 0.32938852, 0.32938852, 0.32938852,
0.27948578, 0.27948578, 0.27948578, 0.27948578, 0.23567556,
0.23567556, 0.23567556, 0.23567556, 0.19783362, 0.19783362,
0.19783362, 0.19783362, 0.16563022, 0.16563022, 0.16563022,
0.16563022, 0.13852619, 0.13852619, 0.13852619, 0.13852619,
0.11591599, 0.11591599, 0.11591599, 0.11591599, 0.09720849,
0.09720849, 0.09720849, 0.09720849, 0.08184086, 0.08184086,
0.08184086, 0.08184086, 0.06929484, 0.06929484, 0.06929484,
0.06929484, 0.05915203, 0.05915203, 0.05915203, 0.05915203,
0.05103646, 0.05103646, 0.05103646, 0.05103646, 0.04464094,
0.04464094, 0.04464094, 0.04464094, 0.03968772, 0.03968772,
0.03968772, 0.03968772, 0.03610206, 0.03610206, 0.03610206,
0.03610206, 0.03336904, 0.03336904, 0.03336904, 0.03336904,
0.03198975, 0.03198975, 0.03198975, 0.03198975, 0.03106627,
0.03106627, 0.03106627, 0.03106627, 0.03106627, 0.03106627,
0.03106627, 0.03106627, 0.03198975, 0.03198975, 0.03198975,
0.03198975, 0.03336904, 0.03336904, 0.03336904, 0.03336904,
0.03610206, 0.03610206, 0.03610206, 0.03610206, 0.03968772,
0.03968772, 0.03968772, 0.03968772, 0.04464094, 0.04464094,
0.04464094, 0.04464094, 0.05103646, 0.05103646, 0.05103646,
0.05103646, 0.05915203, 0.05915203, 0.05915203, 0.05915203,
0.06929484, 0.06929484, 0.06929484, 0.06929484, 0.08184086,
0.08184086, 0.08184086, 0.08184086, 0.09720849, 0.09720849,
0.09720849, 0.09720849, 0.11591599, 0.11591599, 0.11591599,
0.11591599, 0.13852619, 0.13852619, 0.13852619, 0.13852619,
0.16563022, 0.16563022, 0.16563022, 0.16563022, 0.19783362,
0.19783362, 0.19783362, 0.19783362, 0.23567556, 0.23567556,
0.23567556, 0.23567556, 0.27948578, 0.27948578, 0.27948578,
0.27948578, 0.32938852, 0.32938852, 0.32938852, 0.32938852,
0.38526945, 0.38526945, 0.38526945, 0.38526945, 0.44678137,
0.44678137, 0.44678137, 0.44678137, 0.51341489, 0.51341489,
0.51341489, 0.51341489, 0.58453712, 0.58453712, 0.58453712,
0.58453712, 0.65910051, 0.65910051, 0.65910051, 0.65910051,
0.73273792, 0.73273792, 0.73273792, 0.73273792, 0.80074229,
0.80074229, 0.80074229, 0.80074229, 0.85947908, 0.85947908,
0.85947908, 0.85947908, 0.90673392, 0.90673392, 0.90673392,
0.90673392, 0.94200777, 0.94200777, 0.94200777, 0.94200777,
0.96631722, 0.96631722, 0.96631722, 0.96631722, 0.98178812,
0.98178812, 0.98178812, 0.98178812, 0.99067376, 0.99067376,
0.99067376, 0.99067376, 0.99615448, 0.99615448, 0.99615448]), 'vx': array([-1.9971243 , -1.9971243 , -1.9971243 , -1.9971243 , -1.99301667,
-1.99301667, -1.99301667, -1.99301667, -1.98633771, -1.98633771,
-1.98633771, -1.98633771, -1.97462189, -1.97462189, -1.97462189,
-1.97462189, -1.95596274, -1.95596274, -1.95596274, -1.95596274,
-1.9282702 , -1.9282702 , -1.9282702 , -1.9282702 , -1.88986881,
-1.88986881, -1.88986881, -1.88986881, -1.83968895, -1.83968895,
-1.83968895, -1.83968895, -1.77729068, -1.77729068, -1.77729068,
-1.77729068, -1.70408962, -1.70408962, -1.70408962, -1.70408962,
-1.62490657, -1.62490657, -1.62490657, -1.62490657, -1.54288253,
-1.54288253, -1.54288253, -1.54288253, -1.45929744, -1.45929744,
-1.45929744, -1.45929744, -1.37460301, -1.37460301, -1.37460301,
-1.37460301, -1.28898371, -1.28898371, -1.28898371, -1.28898371,
-1.20255159, -1.20255159, -1.20255159, -1.20255159, -1.11547576,
-1.11547576, -1.11547576, -1.11547576, -1.02801532, -1.02801532,
-1.02801532, -1.02801532, -0.94055911, -0.94055911, -0.94055911,
-0.94055911, -0.85344532, -0.85344532, -0.85344532, -0.85344532,
-0.76692431, -0.76692431, -0.76692431, -0.76692431, -0.68132058,
-0.68132058, -0.68132058, -0.68132058, -0.59708218, -0.59708218,
-0.59708218, -0.59708218, -0.51482203, -0.51482203, -0.51482203,
-0.51482203, -0.43501962, -0.43501962, -0.43501962, -0.43501962,
-0.35845092, -0.35845092, -0.35845092, -0.35845092, -0.28602542,
-0.28602542, -0.28602542, -0.28602542, -0.21921856, -0.21921856,
-0.21921856, -0.21921856, -0.15742456, -0.15742456, -0.15742456,
-0.15742456, -0.10710953, -0.10710953, -0.10710953, -0.10710953,
-0.05755075, -0.05755075, -0.05755075, -0.05755075, -0.02124077,
-0.02124077, -0.02124077, -0.02124077, 0.02124077, 0.02124077,
0.02124077, 0.02124077, 0.05755075, 0.05755075, 0.05755075,
0.05755075, 0.10710953, 0.10710953, 0.10710953, 0.10710953,
0.15742456, 0.15742456, 0.15742456, 0.15742456, 0.21921856,
0.21921856, 0.21921856, 0.21921856, 0.28602542, 0.28602542,
0.28602542, 0.28602542, 0.35845092, 0.35845092, 0.35845092,
0.35845092, 0.43501962, 0.43501962, 0.43501962, 0.43501962,
0.51482203, 0.51482203, 0.51482203, 0.51482203, 0.59708218,
0.59708218, 0.59708218, 0.59708218, 0.68132058, 0.68132058,
0.68132058, 0.68132058, 0.76692431, 0.76692431, 0.76692431,
0.76692431, 0.85344532, 0.85344532, 0.85344532, 0.85344532,
0.94055911, 0.94055911, 0.94055911, 0.94055911, 1.02801532,
1.02801532, 1.02801532, 1.02801532, 1.11547576, 1.11547576,
1.11547576, 1.11547576, 1.20255159, 1.20255159, 1.20255159,
1.20255159, 1.28898371, 1.28898371, 1.28898371, 1.28898371,
1.37460301, 1.37460301, 1.37460301, 1.37460301, 1.45929744,
1.45929744, 1.45929744, 1.45929744, 1.54288253, 1.54288253,
1.54288253, 1.54288253, 1.62490657, 1.62490657, 1.62490657,
1.62490657, 1.70408962, 1.70408962, 1.70408962, 1.70408962,
1.77729068, 1.77729068, 1.77729068, 1.77729068, 1.83968895,
1.83968895, 1.83968895, 1.83968895, 1.88986881, 1.88986881,
1.88986881, 1.88986881, 1.9282702 , 1.9282702 , 1.9282702 ,
1.9282702 , 1.95596274, 1.95596274, 1.95596274, 1.95596274,
1.97462189, 1.97462189, 1.97462189, 1.97462189, 1.98633771,
1.98633771, 1.98633771, 1.98633771, 1.99301667, 1.99301667,
1.99301667, 1.99301667, 1.9971243 , 1.9971243 , 1.9971243 ]), 'P': array([0.39785335, 0.39785335, 0.39785335, 0.39785335, 0.39480468,
0.39480468, 0.39480468, 0.39480468, 0.38989202, 0.38989202,
0.38989202, 0.38989202, 0.38140375, 0.38140375, 0.38140375,
0.38140375, 0.36821799, 0.36821799, 0.36821799, 0.36821799,
0.34937986, 0.34937986, 0.34937986, 0.34937986, 0.32464373,
0.32464373, 0.32464373, 0.32464373, 0.29461246, 0.29461246,
0.29461246, 0.29461246, 0.26049006, 0.26049006, 0.26049006,
0.26049006, 0.22426407, 0.22426407, 0.22426407, 0.22426407,
0.19032737, 0.19032737, 0.19032737, 0.19032737, 0.16017926,
0.16017926, 0.16017926, 0.16017926, 0.13398511, 0.13398511,
0.13398511, 0.13398511, 0.11152626, 0.11152626, 0.11152626,
0.11152626, 0.09246986, 0.09246986, 0.09246986, 0.09246986,
0.07645237, 0.07645237, 0.07645237, 0.07645237, 0.06310898,
0.06310898, 0.06310898, 0.06310898, 0.05208913, 0.05208913,
0.05208913, 0.05208913, 0.04306339, 0.04306339, 0.04306339,
0.04306339, 0.03570472, 0.03570472, 0.03570472, 0.03570472,
0.02972125, 0.02972125, 0.02972125, 0.02972125, 0.02486829,
0.02486829, 0.02486829, 0.02486829, 0.02093881, 0.02093881,
0.02093881, 0.02093881, 0.01775854, 0.01775854, 0.01775854,
0.01775854, 0.0151983 , 0.0151983 , 0.0151983 , 0.0151983 ,
0.01314835, 0.01314835, 0.01314835, 0.01314835, 0.01152438,
0.01152438, 0.01152438, 0.01152438, 0.01025172, 0.01025172,
0.01025172, 0.01025172, 0.00932748, 0.00932748, 0.00932748,
0.00932748, 0.00858716, 0.00858716, 0.00858716, 0.00858716,
0.00823426, 0.00823426, 0.00823426, 0.00823426, 0.00795945,
0.00795945, 0.00795945, 0.00795945, 0.00795945, 0.00795945,
0.00795945, 0.00795945, 0.00823426, 0.00823426, 0.00823426,
0.00823426, 0.00858716, 0.00858716, 0.00858716, 0.00858716,
0.00932748, 0.00932748, 0.00932748, 0.00932748, 0.01025172,
0.01025172, 0.01025172, 0.01025172, 0.01152438, 0.01152438,
0.01152438, 0.01152438, 0.01314835, 0.01314835, 0.01314835,
0.01314835, 0.0151983 , 0.0151983 , 0.0151983 , 0.0151983 ,
0.01775854, 0.01775854, 0.01775854, 0.01775854, 0.02093881,
0.02093881, 0.02093881, 0.02093881, 0.02486829, 0.02486829,
0.02486829, 0.02486829, 0.02972125, 0.02972125, 0.02972125,
0.02972125, 0.03570472, 0.03570472, 0.03570472, 0.03570472,
0.04306339, 0.04306339, 0.04306339, 0.04306339, 0.05208913,
0.05208913, 0.05208913, 0.05208913, 0.06310898, 0.06310898,
0.06310898, 0.06310898, 0.07645237, 0.07645237, 0.07645237,
0.07645237, 0.09246986, 0.09246986, 0.09246986, 0.09246986,
0.11152626, 0.11152626, 0.11152626, 0.11152626, 0.13398511,
0.13398511, 0.13398511, 0.13398511, 0.16017926, 0.16017926,
0.16017926, 0.16017926, 0.19032737, 0.19032737, 0.19032737,
0.19032737, 0.22426407, 0.22426407, 0.22426407, 0.22426407,
0.26049006, 0.26049006, 0.26049006, 0.26049006, 0.29461246,
0.29461246, 0.29461246, 0.29461246, 0.32464373, 0.32464373,
0.32464373, 0.32464373, 0.34937986, 0.34937986, 0.34937986,
0.34937986, 0.36821799, 0.36821799, 0.36821799, 0.36821799,
0.38140375, 0.38140375, 0.38140375, 0.38140375, 0.38989202,
0.38989202, 0.38989202, 0.38989202, 0.39480468, 0.39480468,
0.39480468, 0.39480468, 0.39785335, 0.39785335, 0.39785335])}]}
minmod_hllc
{'none_hll': [{'rho': array([0.96419618, 0.96419618, 0.96419618, 0.96419618, 0.94856345,
0.94856345, 0.94856345, 0.94856345, 0.92846989, 0.92846989,
0.92846989, 0.92846989, 0.90350094, 0.90350094, 0.90350094,
0.90350094, 0.87342902, 0.87342902, 0.87342902, 0.87342902,
0.83824081, 0.83824081, 0.83824081, 0.83824081, 0.79814653,
0.79814653, 0.79814653, 0.79814653, 0.75357317, 0.75357317,
0.75357317, 0.75357317, 0.70514458, 0.70514458, 0.70514458,
0.70514458, 0.65365111, 0.65365111, 0.65365111, 0.65365111,
0.60001104, 0.60001104, 0.60001104, 0.60001104, 0.54522543,
0.54522543, 0.54522543, 0.54522543, 0.49032848, 0.49032848,
0.49032848, 0.49032848, 0.43633611, 0.43633611, 0.43633611,
0.43633611, 0.38419602, 0.38419602, 0.38419602, 0.38419602,
0.33474317, 0.33474317, 0.33474317, 0.33474317, 0.28866399,
0.28866399, 0.28866399, 0.28866399, 0.24647248, 0.24647248,
0.24647248, 0.24647248, 0.20849936, 0.20849936, 0.20849936,
0.20849936, 0.17489435, 0.17489435, 0.17489435, 0.17489435,
0.14563973, 0.14563973, 0.14563973, 0.14563973, 0.12057143,
0.12057143, 0.12057143, 0.12057143, 0.09940075, 0.09940075,
0.09940075, 0.09940075, 0.08171926, 0.08171926, 0.08171926,
0.08171926, 0.06719973, 0.06719973, 0.06719973, 0.06719973,
0.05580633, 0.05580633, 0.05580633, 0.05580633, 0.04708329,
0.04708329, 0.04708329, 0.04708329, 0.04053564, 0.04053564,
0.04053564, 0.04053564, 0.03574567, 0.03574567, 0.03574567,
0.03574567, 0.03245842, 0.03245842, 0.03245842, 0.03245842,
0.03045782, 0.03045782, 0.03045782, 0.03045782, 0.02952462,
0.02952462, 0.02952462, 0.02952462, 0.02952462, 0.02952462,
0.02952462, 0.02952462, 0.03045782, 0.03045782, 0.03045782,
0.03045782, 0.03245842, 0.03245842, 0.03245842, 0.03245842,
0.03574567, 0.03574567, 0.03574567, 0.03574567, 0.04053564,
0.04053564, 0.04053564, 0.04053564, 0.04708329, 0.04708329,
0.04708329, 0.04708329, 0.05580633, 0.05580633, 0.05580633,
0.05580633, 0.06719973, 0.06719973, 0.06719973, 0.06719973,
0.08171926, 0.08171926, 0.08171926, 0.08171926, 0.09940075,
0.09940075, 0.09940075, 0.09940075, 0.12057143, 0.12057143,
0.12057143, 0.12057143, 0.14563973, 0.14563973, 0.14563973,
0.14563973, 0.17489435, 0.17489435, 0.17489435, 0.17489435,
0.20849936, 0.20849936, 0.20849936, 0.20849936, 0.24647248,
0.24647248, 0.24647248, 0.24647248, 0.28866399, 0.28866399,
0.28866399, 0.28866399, 0.33474317, 0.33474317, 0.33474317,
0.33474317, 0.38419602, 0.38419602, 0.38419602, 0.38419602,
0.43633611, 0.43633611, 0.43633611, 0.43633611, 0.49032848,
0.49032848, 0.49032848, 0.49032848, 0.54522543, 0.54522543,
0.54522543, 0.54522543, 0.60001104, 0.60001104, 0.60001104,
0.60001104, 0.65365111, 0.65365111, 0.65365111, 0.65365111,
0.70514458, 0.70514458, 0.70514458, 0.70514458, 0.75357317,
0.75357317, 0.75357317, 0.75357317, 0.79814653, 0.79814653,
0.79814653, 0.79814653, 0.83824081, 0.83824081, 0.83824081,
0.83824081, 0.87342902, 0.87342902, 0.87342902, 0.87342902,
0.90350094, 0.90350094, 0.90350094, 0.90350094, 0.92846989,
0.92846989, 0.92846989, 0.92846989, 0.94856345, 0.94856345,
0.94856345, 0.94856345, 0.96419618, 0.96419618, 0.96419618]), 'vx': array([-1.9735162 , -1.9735162 , -1.9735162 , -1.9735162 , -1.96198617,
-1.96198617, -1.96198617, -1.96198617, -1.94713741, -1.94713741,
-1.94713741, -1.94713741, -1.9286006 , -1.9286006 , -1.9286006 ,
-1.9286006 , -1.90609316, -1.90609316, -1.90609316, -1.90609316,
-1.87942368, -1.87942368, -1.87942368, -1.87942368, -1.84848554,
-1.84848554, -1.84848554, -1.84848554, -1.81324337, -1.81324337,
-1.81324337, -1.81324337, -1.77371591, -1.77371591, -1.77371591,
-1.77371591, -1.72995886, -1.72995886, -1.72995886, -1.72995886,
-1.68204971, -1.68204971, -1.68204971, -1.68204971, -1.63007606,
-1.63007606, -1.63007606, -1.63007606, -1.57412791, -1.57412791,
-1.57412791, -1.57412791, -1.51429382, -1.51429382, -1.51429382,
-1.51429382, -1.45066104, -1.45066104, -1.45066104, -1.45066104,
-1.38331937, -1.38331937, -1.38331937, -1.38331937, -1.31236896,
-1.31236896, -1.31236896, -1.31236896, -1.23793269, -1.23793269,
-1.23793269, -1.23793269, -1.16017364, -1.16017364, -1.16017364,
-1.16017364, -1.0793189 , -1.0793189 , -1.0793189 , -1.0793189 ,
-0.99569027, -0.99569027, -0.99569027, -0.99569027, -0.90974126,
-0.90974126, -0.90974126, -0.90974126, -0.82209689, -0.82209689,
-0.82209689, -0.82209689, -0.73357782, -0.73357782, -0.73357782,
-0.73357782, -0.64515024, -0.64515024, -0.64515024, -0.64515024,
-0.55811153, -0.55811153, -0.55811153, -0.55811153, -0.47333577,
-0.47333577, -0.47333577, -0.47333577, -0.39110478, -0.39110478,
-0.39110478, -0.39110478, -0.31048349, -0.31048349, -0.31048349,
-0.31048349, -0.22788052, -0.22788052, -0.22788052, -0.22788052,
-0.14005389, -0.14005389, -0.14005389, -0.14005389, -0.04732024,
-0.04732024, -0.04732024, -0.04732024, 0.04732024, 0.04732024,
0.04732024, 0.04732024, 0.14005389, 0.14005389, 0.14005389,
0.14005389, 0.22788052, 0.22788052, 0.22788052, 0.22788052,
0.31048349, 0.31048349, 0.31048349, 0.31048349, 0.39110478,
0.39110478, 0.39110478, 0.39110478, 0.47333577, 0.47333577,
0.47333577, 0.47333577, 0.55811153, 0.55811153, 0.55811153,
0.55811153, 0.64515024, 0.64515024, 0.64515024, 0.64515024,
0.73357782, 0.73357782, 0.73357782, 0.73357782, 0.82209689,
0.82209689, 0.82209689, 0.82209689, 0.90974126, 0.90974126,
0.90974126, 0.90974126, 0.99569027, 0.99569027, 0.99569027,
0.99569027, 1.0793189 , 1.0793189 , 1.0793189 , 1.0793189 ,
1.16017364, 1.16017364, 1.16017364, 1.16017364, 1.23793269,
1.23793269, 1.23793269, 1.23793269, 1.31236896, 1.31236896,
1.31236896, 1.31236896, 1.38331937, 1.38331937, 1.38331937,
1.38331937, 1.45066104, 1.45066104, 1.45066104, 1.45066104,
1.51429382, 1.51429382, 1.51429382, 1.51429382, 1.57412791,
1.57412791, 1.57412791, 1.57412791, 1.63007606, 1.63007606,
1.63007606, 1.63007606, 1.68204971, 1.68204971, 1.68204971,
1.68204971, 1.72995886, 1.72995886, 1.72995886, 1.72995886,
1.77371591, 1.77371591, 1.77371591, 1.77371591, 1.81324337,
1.81324337, 1.81324337, 1.81324337, 1.84848554, 1.84848554,
1.84848554, 1.84848554, 1.87942368, 1.87942368, 1.87942368,
1.87942368, 1.90609316, 1.90609316, 1.90609316, 1.90609316,
1.9286006 , 1.9286006 , 1.9286006 , 1.9286006 , 1.94713741,
1.94713741, 1.94713741, 1.94713741, 1.96198617, 1.96198617,
1.96198617, 1.96198617, 1.9735162 , 1.9735162 , 1.9735162 ]), 'P': array([0.38054351, 0.38054351, 0.38054351, 0.38054351, 0.37230539,
0.37230539, 0.37230539, 0.37230539, 0.36190457, 0.36190457,
0.36190457, 0.36190457, 0.34924812, 0.34924812, 0.34924812,
0.34924812, 0.33436459, 0.33436459, 0.33436459, 0.33436459,
0.31740499, 0.31740499, 0.31740499, 0.31740499, 0.29862981,
0.29862981, 0.29862981, 0.29862981, 0.27838616, 0.27838616,
0.27838616, 0.27838616, 0.25707978, 0.25707978, 0.25707978,
0.25707978, 0.23514605, 0.23514605, 0.23514605, 0.23514605,
0.21302338, 0.21302338, 0.21302338, 0.21302338, 0.19113058,
0.19113058, 0.19113058, 0.19113058, 0.169849 , 0.169849 ,
0.169849 , 0.169849 , 0.14950942, 0.14950942, 0.14950942,
0.14950942, 0.13038346, 0.13038346, 0.13038346, 0.13038346,
0.11267901, 0.11267901, 0.11267901, 0.11267901, 0.09653925,
0.09653925, 0.09653925, 0.09653925, 0.0820449 , 0.0820449 ,
0.0820449 , 0.0820449 , 0.06921912, 0.06921912, 0.06921912,
0.06921912, 0.05803452, 0.05803452, 0.05803452, 0.05803452,
0.04842177, 0.04842177, 0.04842177, 0.04842177, 0.04027886,
0.04027886, 0.04027886, 0.04027886, 0.03348044, 0.03348044,
0.03348044, 0.03348044, 0.02788644, 0.02788644, 0.02788644,
0.02788644, 0.02336489, 0.02336489, 0.02336489, 0.02336489,
0.01978647, 0.01978647, 0.01978647, 0.01978647, 0.01698927,
0.01698927, 0.01698927, 0.01698927, 0.0148221 , 0.0148221 ,
0.0148221 , 0.0148221 , 0.01317229, 0.01317229, 0.01317229,
0.01317229, 0.01200219, 0.01200219, 0.01200219, 0.01200219,
0.01127833, 0.01127833, 0.01127833, 0.01127833, 0.010939 ,
0.010939 , 0.010939 , 0.010939 , 0.010939 , 0.010939 ,
0.010939 , 0.010939 , 0.01127833, 0.01127833, 0.01127833,
0.01127833, 0.01200219, 0.01200219, 0.01200219, 0.01200219,
0.01317229, 0.01317229, 0.01317229, 0.01317229, 0.0148221 ,
0.0148221 , 0.0148221 , 0.0148221 , 0.01698927, 0.01698927,
0.01698927, 0.01698927, 0.01978647, 0.01978647, 0.01978647,
0.01978647, 0.02336489, 0.02336489, 0.02336489, 0.02336489,
0.02788644, 0.02788644, 0.02788644, 0.02788644, 0.03348044,
0.03348044, 0.03348044, 0.03348044, 0.04027886, 0.04027886,
0.04027886, 0.04027886, 0.04842177, 0.04842177, 0.04842177,
0.04842177, 0.05803452, 0.05803452, 0.05803452, 0.05803452,
0.06921912, 0.06921912, 0.06921912, 0.06921912, 0.0820449 ,
0.0820449 , 0.0820449 , 0.0820449 , 0.09653925, 0.09653925,
0.09653925, 0.09653925, 0.11267901, 0.11267901, 0.11267901,
0.11267901, 0.13038346, 0.13038346, 0.13038346, 0.13038346,
0.14950942, 0.14950942, 0.14950942, 0.14950942, 0.169849 ,
0.169849 , 0.169849 , 0.169849 , 0.19113058, 0.19113058,
0.19113058, 0.19113058, 0.21302338, 0.21302338, 0.21302338,
0.21302338, 0.23514605, 0.23514605, 0.23514605, 0.23514605,
0.25707978, 0.25707978, 0.25707978, 0.25707978, 0.27838616,
0.27838616, 0.27838616, 0.27838616, 0.29862981, 0.29862981,
0.29862981, 0.29862981, 0.31740499, 0.31740499, 0.31740499,
0.31740499, 0.33436459, 0.33436459, 0.33436459, 0.33436459,
0.34924812, 0.34924812, 0.34924812, 0.34924812, 0.36190457,
0.36190457, 0.36190457, 0.36190457, 0.37230539, 0.37230539,
0.37230539, 0.37230539, 0.38054351, 0.38054351, 0.38054351])}], 'minmod_rusanov': [{'rho': array([0.99614735, 0.99614735, 0.99614735, 0.99614735, 0.99065373,
0.99065373, 0.99065373, 0.99065373, 0.98173362, 0.98173362,
0.98173362, 0.98173362, 0.96619952, 0.96619952, 0.96619952,
0.96619952, 0.94178474, 0.94178474, 0.94178474, 0.94178474,
0.90636121, 0.90636121, 0.90636121, 0.90636121, 0.85892578,
0.85892578, 0.85892578, 0.85892578, 0.80000719, 0.80000719,
0.80000719, 0.80000719, 0.73175814, 0.73175814, 0.73175814,
0.73175814, 0.65735851, 0.65735851, 0.65735851, 0.65735851,
0.5814799 , 0.5814799 , 0.5814799 , 0.5814799 , 0.50913244,
0.50913244, 0.50913244, 0.50913244, 0.44187546, 0.44187546,
0.44187546, 0.44187546, 0.38043377, 0.38043377, 0.38043377,
0.38043377, 0.32522717, 0.32522717, 0.32522717, 0.32522717,
0.27639962, 0.27639962, 0.27639962, 0.27639962, 0.23384215,
0.23384215, 0.23384215, 0.23384215, 0.19724397, 0.19724397,
0.19724397, 0.19724397, 0.16613532, 0.16613532, 0.16613532,
0.16613532, 0.13991202, 0.13991202, 0.13991202, 0.13991202,
0.11795793, 0.11795793, 0.11795793, 0.11795793, 0.09969251,
0.09969251, 0.09969251, 0.09969251, 0.08458559, 0.08458559,
0.08458559, 0.08458559, 0.07216739, 0.07216739, 0.07216739,
0.07216739, 0.0620324 , 0.0620324 , 0.0620324 , 0.0620324 ,
0.05383949, 0.05383949, 0.05383949, 0.05383949, 0.0473094 ,
0.0473094 , 0.0473094 , 0.0473094 , 0.04222005, 0.04222005,
0.04222005, 0.04222005, 0.03839914, 0.03839914, 0.03839914,
0.03839914, 0.03571046, 0.03571046, 0.03571046, 0.03571046,
0.03401323, 0.03401323, 0.03401323, 0.03401323, 0.03304548,
0.03304548, 0.03304548, 0.03304548, 0.03304548, 0.03304548,
0.03304548, 0.03304548, 0.03401323, 0.03401323, 0.03401323,
0.03401323, 0.03571046, 0.03571046, 0.03571046, 0.03571046,
0.03839914, 0.03839914, 0.03839914, 0.03839914, 0.04222005,
0.04222005, 0.04222005, 0.04222005, 0.0473094 , 0.0473094 ,
0.0473094 , 0.0473094 , 0.05383949, 0.05383949, 0.05383949,
0.05383949, 0.0620324 , 0.0620324 , 0.0620324 , 0.0620324 ,
0.07216739, 0.07216739, 0.07216739, 0.07216739, 0.08458559,
0.08458559, 0.08458559, 0.08458559, 0.09969251, 0.09969251,
0.09969251, 0.09969251, 0.11795793, 0.11795793, 0.11795793,
0.11795793, 0.13991202, 0.13991202, 0.13991202, 0.13991202,
0.16613532, 0.16613532, 0.16613532, 0.16613532, 0.19724397,
0.19724397, 0.19724397, 0.19724397, 0.23384215, 0.23384215,
0.23384215, 0.23384215, 0.27639962, 0.27639962, 0.27639962,
0.27639962, 0.32522717, 0.32522717, 0.32522717, 0.32522717,
0.38043377, 0.38043377, 0.38043377, 0.38043377, 0.44187546,
0.44187546, 0.44187546, 0.44187546, 0.50913244, 0.50913244,
0.50913244, 0.50913244, 0.5814799 , 0.5814799 , 0.5814799 ,
0.5814799 , 0.65735851, 0.65735851, 0.65735851, 0.65735851,
0.73175814, 0.73175814, 0.73175814, 0.73175814, 0.80000719,
0.80000719, 0.80000719, 0.80000719, 0.85892578, 0.85892578,
0.85892578, 0.85892578, 0.90636121, 0.90636121, 0.90636121,
0.90636121, 0.94178474, 0.94178474, 0.94178474, 0.94178474,
0.96619952, 0.96619952, 0.96619952, 0.96619952, 0.98173362,
0.98173362, 0.98173362, 0.98173362, 0.99065373, 0.99065373,
0.99065373, 0.99065373, 0.99614735, 0.99614735, 0.99614735]), 'vx': array([-1.99712524, -1.99712524, -1.99712524, -1.99712524, -1.99301683,
-1.99301683, -1.99301683, -1.99301683, -1.98632983, -1.98632983,
-1.98632983, -1.98632983, -1.97459054, -1.97459054, -1.97459054,
-1.97459054, -1.95587489, -1.95587489, -1.95587489, -1.95587489,
-1.92806642, -1.92806642, -1.92806642, -1.92806642, -1.88945774,
-1.88945774, -1.88945774, -1.88945774, -1.83896574, -1.83896574,
-1.83896574, -1.83896574, -1.77629984, -1.77629984, -1.77629984,
-1.77629984, -1.70309876, -1.70309876, -1.70309876, -1.70309876,
-1.62432934, -1.62432934, -1.62432934, -1.62432934, -1.54277563,
-1.54277563, -1.54277563, -1.54277563, -1.45961365, -1.45961365,
-1.45961365, -1.45961365, -1.37537434, -1.37537434, -1.37537434,
-1.37537434, -1.29033379, -1.29033379, -1.29033379, -1.29033379,
-1.20468271, -1.20468271, -1.20468271, -1.20468271, -1.11859992,
-1.11859992, -1.11859992, -1.11859992, -1.03225286, -1.03225286,
-1.03225286, -1.03225286, -0.9459788 , -0.9459788 , -0.9459788 ,
-0.9459788 , -0.86003378, -0.86003378, -0.86003378, -0.86003378,
-0.77463461, -0.77463461, -0.77463461, -0.77463461, -0.69004628,
-0.69004628, -0.69004628, -0.69004628, -0.60660948, -0.60660948,
-0.60660948, -0.60660948, -0.52476896, -0.52476896, -0.52476896,
-0.52476896, -0.44510912, -0.44510912, -0.44510912, -0.44510912,
-0.3683858 , -0.3683858 , -0.3683858 , -0.3683858 , -0.29553659,
-0.29553659, -0.29553659, -0.29553659, -0.22763465, -0.22763465,
-0.22763465, -0.22763465, -0.16573019, -0.16573019, -0.16573019,
-0.16573019, -0.11056275, -0.11056275, -0.11056275, -0.11056275,
-0.06251183, -0.06251183, -0.06251183, -0.06251183, -0.02297991,
-0.02297991, -0.02297991, -0.02297991, 0.02297991, 0.02297991,
0.02297991, 0.02297991, 0.06251183, 0.06251183, 0.06251183,
0.06251183, 0.11056275, 0.11056275, 0.11056275, 0.11056275,
0.16573019, 0.16573019, 0.16573019, 0.16573019, 0.22763465,
0.22763465, 0.22763465, 0.22763465, 0.29553659, 0.29553659,
0.29553659, 0.29553659, 0.3683858 , 0.3683858 , 0.3683858 ,
0.3683858 , 0.44510912, 0.44510912, 0.44510912, 0.44510912,
0.52476896, 0.52476896, 0.52476896, 0.52476896, 0.60660948,
0.60660948, 0.60660948, 0.60660948, 0.69004628, 0.69004628,
0.69004628, 0.69004628, 0.77463461, 0.77463461, 0.77463461,
0.77463461, 0.86003378, 0.86003378, 0.86003378, 0.86003378,
0.9459788 , 0.9459788 , 0.9459788 , 0.9459788 , 1.03225286,
1.03225286, 1.03225286, 1.03225286, 1.11859992, 1.11859992,
1.11859992, 1.11859992, 1.20468271, 1.20468271, 1.20468271,
1.20468271, 1.29033379, 1.29033379, 1.29033379, 1.29033379,
1.37537434, 1.37537434, 1.37537434, 1.37537434, 1.45961365,
1.45961365, 1.45961365, 1.45961365, 1.54277563, 1.54277563,
1.54277563, 1.54277563, 1.62432934, 1.62432934, 1.62432934,
1.62432934, 1.70309876, 1.70309876, 1.70309876, 1.70309876,
1.77629984, 1.77629984, 1.77629984, 1.77629984, 1.83896574,
1.83896574, 1.83896574, 1.83896574, 1.88945774, 1.88945774,
1.88945774, 1.88945774, 1.92806642, 1.92806642, 1.92806642,
1.92806642, 1.95587489, 1.95587489, 1.95587489, 1.95587489,
1.97459054, 1.97459054, 1.97459054, 1.97459054, 1.98632983,
1.98632983, 1.98632983, 1.98632983, 1.99301683, 1.99301683,
1.99301683, 1.99301683, 1.99712524, 1.99712524, 1.99712524]), 'P': array([0.39785562, 0.39785562, 0.39785562, 0.39785562, 0.39481056,
0.39481056, 0.39481056, 0.39481056, 0.38990389, 0.38990389,
0.38990389, 0.38990389, 0.38143134, 0.38143134, 0.38143134,
0.38143134, 0.36827824, 0.36827824, 0.36827824, 0.36827824,
0.34950039, 0.34950039, 0.34950039, 0.34950039, 0.32485552,
0.32485552, 0.32485552, 0.32485552, 0.29492305, 0.29492305,
0.29492305, 0.29492305, 0.26078134, 0.26078134, 0.26078134,
0.26078134, 0.22425273, 0.22425273, 0.22425273, 0.22425273,
0.19008214, 0.19008214, 0.19008214, 0.19008214, 0.16000639,
0.16000639, 0.16000639, 0.16000639, 0.13399062, 0.13399062,
0.13399062, 0.13399062, 0.11175209, 0.11175209, 0.11175209,
0.11175209, 0.09291845, 0.09291845, 0.09291845, 0.09291845,
0.07709678, 0.07709678, 0.07709678, 0.07709678, 0.0639034 ,
0.0639034 , 0.0639034 , 0.0639034 , 0.05297927, 0.05297927,
0.05297927, 0.05297927, 0.04399018, 0.04399018, 0.04399018,
0.04399018, 0.03661626, 0.03661626, 0.03661626, 0.03661626,
0.03058018, 0.03058018, 0.03058018, 0.03058018, 0.02564979,
0.02564979, 0.02564979, 0.02564979, 0.02163179, 0.02163179,
0.02163179, 0.02163179, 0.01836692, 0.01836692, 0.01836692,
0.01836692, 0.01572533, 0.01572533, 0.01572533, 0.01572533,
0.01360245, 0.01360245, 0.01360245, 0.01360245, 0.01191531,
0.01191531, 0.01191531, 0.01191531, 0.01059914, 0.01059914,
0.01059914, 0.01059914, 0.0096042 , 0.0096042 , 0.0096042 ,
0.0096042 , 0.00889221, 0.00889221, 0.00889221, 0.00889221,
0.00842594, 0.00842594, 0.00842594, 0.00842594, 0.00813478,
0.00813478, 0.00813478, 0.00813478, 0.00813478, 0.00813478,
0.00813478, 0.00813478, 0.00842594, 0.00842594, 0.00842594,
0.00842594, 0.00889221, 0.00889221, 0.00889221, 0.00889221,
0.0096042 , 0.0096042 , 0.0096042 , 0.0096042 , 0.01059914,
0.01059914, 0.01059914, 0.01059914, 0.01191531, 0.01191531,
0.01191531, 0.01191531, 0.01360245, 0.01360245, 0.01360245,
0.01360245, 0.01572533, 0.01572533, 0.01572533, 0.01572533,
0.01836692, 0.01836692, 0.01836692, 0.01836692, 0.02163179,
0.02163179, 0.02163179, 0.02163179, 0.02564979, 0.02564979,
0.02564979, 0.02564979, 0.03058018, 0.03058018, 0.03058018,
0.03058018, 0.03661626, 0.03661626, 0.03661626, 0.03661626,
0.04399018, 0.04399018, 0.04399018, 0.04399018, 0.05297927,
0.05297927, 0.05297927, 0.05297927, 0.0639034 , 0.0639034 ,
0.0639034 , 0.0639034 , 0.07709678, 0.07709678, 0.07709678,
0.07709678, 0.09291845, 0.09291845, 0.09291845, 0.09291845,
0.11175209, 0.11175209, 0.11175209, 0.11175209, 0.13399062,
0.13399062, 0.13399062, 0.13399062, 0.16000639, 0.16000639,
0.16000639, 0.16000639, 0.19008214, 0.19008214, 0.19008214,
0.19008214, 0.22425273, 0.22425273, 0.22425273, 0.22425273,
0.26078134, 0.26078134, 0.26078134, 0.26078134, 0.29492305,
0.29492305, 0.29492305, 0.29492305, 0.32485552, 0.32485552,
0.32485552, 0.32485552, 0.34950039, 0.34950039, 0.34950039,
0.34950039, 0.36827824, 0.36827824, 0.36827824, 0.36827824,
0.38143134, 0.38143134, 0.38143134, 0.38143134, 0.38990389,
0.38990389, 0.38990389, 0.38990389, 0.39481056, 0.39481056,
0.39481056, 0.39481056, 0.39785562, 0.39785562, 0.39785562])}], 'minmod_hll': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2.,
-2., -2., -2., -2., -2., -2., -2., -2., -2., -2., -2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2., 2.,
2., 2., 2., 2., 2., 2., 2., 2.]), 'P': array([0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4,
0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4, 0.4])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99839187, 0.99839187, 0.99839187, 0.99839187,
0.92194491, 0.92194491, 0.92194491, 0.92194491, 0.59966323,
0.59966323, 0.59966323, 0.59966323, 0.59966323, 0.59966323,
0.59966323, 0.59966323, 0.92194491, 0.92194491, 0.92194491,
0.92194491, 0.99839187, 0.99839187, 0.99839187, 0.99839187,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99942977, -1.99942977, -1.99942977, -1.99942977,
-1.97190163, -1.97190163, -1.97190163, -1.97190163, -1.54331037,
-1.54331037, -1.54331037, -1.54331037, 1.54331037, 1.54331037,
1.54331037, 1.54331037, 1.97190163, 1.97190163, 1.97190163,
1.97190163, 1.99942977, 1.99942977, 1.99942977, 1.99942977,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39967398, 0.39967398, 0.39967398, 0.39967398,
0.38830121, 0.38830121, 0.38830121, 0.38830121, 0.35833291,
0.35833291, 0.35833291, 0.35833291, 0.35833291, 0.35833291,
0.35833291, 0.35833291, 0.38830121, 0.38830121, 0.38830121,
0.38830121, 0.39967398, 0.39967398, 0.39967398, 0.39967398,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999879,
0.99999879, 0.99999879, 0.99999879, 0.99988772, 0.99988772,
0.99988772, 0.99988772, 0.99637366, 0.99637366, 0.99637366,
0.99637366, 0.95162962, 0.95162962, 0.95162962, 0.95162962,
0.69843543, 0.69843543, 0.69843543, 0.69843543, 0.39367478,
0.39367478, 0.39367478, 0.39367478, 0.39367478, 0.39367478,
0.39367478, 0.39367478, 0.69843543, 0.69843543, 0.69843543,
0.69843543, 0.95162962, 0.95162962, 0.95162962, 0.95162962,
0.99637366, 0.99637366, 0.99637366, 0.99637366, 0.99988772,
0.99988772, 0.99988772, 0.99988772, 0.99999879, 0.99999879,
0.99999879, 0.99999879, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999939,
-1.99999939, -1.99999939, -1.99999939, -1.99994887, -1.99994887,
-1.99994887, -1.99994887, -1.99849604, -1.99849604, -1.99849604,
-1.99849604, -1.98064237, -1.98064237, -1.98064237, -1.98064237,
-1.8608366 , -1.8608366 , -1.8608366 , -1.8608366 , -1.14986475,
-1.14986475, -1.14986475, -1.14986475, 1.14986475, 1.14986475,
1.14986475, 1.14986475, 1.8608366 , 1.8608366 , 1.8608366 ,
1.8608366 , 1.98064237, 1.98064237, 1.98064237, 1.98064237,
1.99849604, 1.99849604, 1.99849604, 1.99849604, 1.99994887,
1.99994887, 1.99994887, 1.99994887, 1.99999939, 1.99999939,
1.99999939, 1.99999939, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999955,
0.39999955, 0.39999955, 0.39999955, 0.39996321, 0.39996321,
0.39996321, 0.39996321, 0.39895944, 0.39895944, 0.39895944,
0.39895944, 0.38757572, 0.38757572, 0.38757572, 0.38757572,
0.3264824 , 0.3264824 , 0.3264824 , 0.3264824 , 0.25121455,
0.25121455, 0.25121455, 0.25121455, 0.25121455, 0.25121455,
0.25121455, 0.25121455, 0.3264824 , 0.3264824 , 0.3264824 ,
0.3264824 , 0.38757572, 0.38757572, 0.38757572, 0.38757572,
0.39895944, 0.39895944, 0.39895944, 0.39895944, 0.39996321,
0.39996321, 0.39996321, 0.39996321, 0.39999955, 0.39999955,
0.39999955, 0.39999955, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999985, 0.99999985, 0.99999985, 0.99999985,
0.9999922 , 0.9999922 , 0.9999922 , 0.9999922 , 0.99978709,
0.99978709, 0.99978709, 0.99978709, 0.99672413, 0.99672413,
0.99672413, 0.99672413, 0.97001852, 0.97001852, 0.97001852,
0.97001852, 0.83010116, 0.83010116, 0.83010116, 0.83010116,
0.48512429, 0.48512429, 0.48512429, 0.48512429, 0.27825278,
0.27825278, 0.27825278, 0.27825278, 0.27825278, 0.27825278,
0.27825278, 0.27825278, 0.48512429, 0.48512429, 0.48512429,
0.48512429, 0.83010116, 0.83010116, 0.83010116, 0.83010116,
0.97001852, 0.97001852, 0.97001852, 0.97001852, 0.99672413,
0.99672413, 0.99672413, 0.99672413, 0.99978709, 0.99978709,
0.99978709, 0.99978709, 0.9999922 , 0.9999922 , 0.9999922 ,
0.9999922 , 0.99999985, 0.99999985, 0.99999985, 0.99999985,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999991, -1.99999991, -1.99999991, -1.99999991,
-1.99999556, -1.99999556, -1.99999556, -1.99999556, -1.99988775,
-1.99988775, -1.99988775, -1.99988775, -1.99840276, -1.99840276,
-1.99840276, -1.99840276, -1.98627149, -1.98627149, -1.98627149,
-1.98627149, -1.92341327, -1.92341327, -1.92341327, -1.92341327,
-1.6864559 , -1.6864559 , -1.6864559 , -1.6864559 , -0.86349076,
-0.86349076, -0.86349076, -0.86349076, 0.86349076, 0.86349076,
0.86349076, 0.86349076, 1.6864559 , 1.6864559 , 1.6864559 ,
1.6864559 , 1.92341327, 1.92341327, 1.92341327, 1.92341327,
1.98627149, 1.98627149, 1.98627149, 1.98627149, 1.99840276,
1.99840276, 1.99840276, 1.99840276, 1.99988775, 1.99988775,
1.99988775, 1.99988775, 1.99999556, 1.99999556, 1.99999556,
1.99999556, 1.99999991, 1.99999991, 1.99999991, 1.99999991,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.3999967 , 0.3999967 , 0.3999967 , 0.3999967 , 0.39991705,
0.39991705, 0.39991705, 0.39991705, 0.39883435, 0.39883435,
0.39883435, 0.39883435, 0.39025049, 0.39025049, 0.39025049,
0.39025049, 0.34912384, 0.34912384, 0.34912384, 0.34912384,
0.24285654, 0.24285654, 0.24285654, 0.24285654, 0.16774659,
0.16774659, 0.16774659, 0.16774659, 0.16774659, 0.16774659,
0.16774659, 0.16774659, 0.24285654, 0.24285654, 0.24285654,
0.24285654, 0.34912384, 0.34912384, 0.34912384, 0.34912384,
0.39025049, 0.39025049, 0.39025049, 0.39025049, 0.39883435,
0.39883435, 0.39883435, 0.39883435, 0.39991705, 0.39991705,
0.39991705, 0.39991705, 0.3999967 , 0.3999967 , 0.3999967 ,
0.3999967 , 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999941, 0.99999941, 0.99999941,
0.99999941, 0.99998531, 0.99998531, 0.99998531, 0.99998531,
0.9997628 , 0.9997628 , 0.9997628 , 0.9997628 , 0.99741834,
0.99741834, 0.99741834, 0.99741834, 0.98069681, 0.98069681,
0.98069681, 0.98069681, 0.90049586, 0.90049586, 0.90049586,
0.90049586, 0.65085366, 0.65085366, 0.65085366, 0.65085366,
0.34226389, 0.34226389, 0.34226389, 0.34226389, 0.20852393,
0.20852393, 0.20852393, 0.20852393, 0.20852393, 0.20852393,
0.20852393, 0.20852393, 0.34226389, 0.34226389, 0.34226389,
0.34226389, 0.65085366, 0.65085366, 0.65085366, 0.65085366,
0.90049586, 0.90049586, 0.90049586, 0.90049586, 0.98069681,
0.98069681, 0.98069681, 0.98069681, 0.99741834, 0.99741834,
0.99741834, 0.99741834, 0.9997628 , 0.9997628 , 0.9997628 ,
0.9997628 , 0.99998531, 0.99998531, 0.99998531, 0.99998531,
0.99999941, 0.99999941, 0.99999941, 0.99999941, 0.99999999,
0.99999999, 0.99999999, 0.99999999, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999961, -1.99999961, -1.99999961,
-1.99999961, -1.99999088, -1.99999088, -1.99999088, -1.99999088,
-1.99986101, -1.99986101, -1.99986101, -1.99986101, -1.99858351,
-1.99858351, -1.99858351, -1.99858351, -1.99010498, -1.99010498,
-1.99010498, -1.99010498, -1.95122576, -1.95122576, -1.95122576,
-1.95122576, -1.82157719, -1.82157719, -1.82157719, -1.82157719,
-1.47982673, -1.47982673, -1.47982673, -1.47982673, -0.66403625,
-0.66403625, -0.66403625, -0.66403625, 0.66403625, 0.66403625,
0.66403625, 0.66403625, 1.47982673, 1.47982673, 1.47982673,
1.47982673, 1.82157719, 1.82157719, 1.82157719, 1.82157719,
1.95122576, 1.95122576, 1.95122576, 1.95122576, 1.99010498,
1.99010498, 1.99010498, 1.99010498, 1.99858351, 1.99858351,
1.99858351, 1.99858351, 1.99986101, 1.99986101, 1.99986101,
1.99986101, 1.99999088, 1.99999088, 1.99999088, 1.99999088,
1.99999961, 1.99999961, 1.99999961, 1.99999961, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999971, 0.39999971, 0.39999971,
0.39999971, 0.39999319, 0.39999319, 0.39999319, 0.39999319,
0.39989644, 0.39989644, 0.39989644, 0.39989644, 0.39894942,
0.39894942, 0.39894942, 0.39894942, 0.39274383, 0.39274383,
0.39274383, 0.39274383, 0.36543198, 0.36543198, 0.36543198,
0.36543198, 0.28497352, 0.28497352, 0.28497352, 0.28497352,
0.17296714, 0.17296714, 0.17296714, 0.17296714, 0.11464047,
0.11464047, 0.11464047, 0.11464047, 0.11464047, 0.11464047,
0.11464047, 0.11464047, 0.17296714, 0.17296714, 0.17296714,
0.17296714, 0.28497352, 0.28497352, 0.28497352, 0.28497352,
0.36543198, 0.36543198, 0.36543198, 0.36543198, 0.39274383,
0.39274383, 0.39274383, 0.39274383, 0.39894942, 0.39894942,
0.39894942, 0.39894942, 0.39989644, 0.39989644, 0.39989644,
0.39989644, 0.39999319, 0.39999319, 0.39999319, 0.39999319,
0.39999971, 0.39999971, 0.39999971, 0.39999971, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.99999887, 0.99999887,
0.99999887, 0.99999887, 0.9999814 , 0.9999814 , 0.9999814 ,
0.9999814 , 0.99977747, 0.99977747, 0.99977747, 0.99977747,
0.99804051, 0.99804051, 0.99804051, 0.99804051, 0.9872238 ,
0.9872238 , 0.9872238 , 0.9872238 , 0.93857705, 0.93857705,
0.93857705, 0.93857705, 0.78360952, 0.78360952, 0.78360952,
0.78360952, 0.47710418, 0.47710418, 0.47710418, 0.47710418,
0.25180595, 0.25180595, 0.25180595, 0.25180595, 0.1638813 ,
0.1638813 , 0.1638813 , 0.1638813 , 0.1638813 , 0.1638813 ,
0.1638813 , 0.1638813 , 0.25180595, 0.25180595, 0.25180595,
0.25180595, 0.47710418, 0.47710418, 0.47710418, 0.47710418,
0.78360952, 0.78360952, 0.78360952, 0.78360952, 0.93857705,
0.93857705, 0.93857705, 0.93857705, 0.9872238 , 0.9872238 ,
0.9872238 , 0.9872238 , 0.99804051, 0.99804051, 0.99804051,
0.99804051, 0.99977747, 0.99977747, 0.99977747, 0.99977747,
0.9999814 , 0.9999814 , 0.9999814 , 0.9999814 , 0.99999887,
0.99999887, 0.99999887, 0.99999887, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999997,
-1.99999997, -1.99999997, -1.99999997, -1.99999923, -1.99999923,
-1.99999923, -1.99999923, -1.99998776, -1.99998776, -1.99998776,
-1.99998776, -1.99985981, -1.99985981, -1.99985981, -1.99985981,
-1.99882953, -1.99882953, -1.99882953, -1.99882953, -1.99281308,
-1.99281308, -1.99281308, -1.99281308, -1.96715956, -1.96715956,
-1.96715956, -1.96715956, -1.8851839 , -1.8851839 , -1.8851839 ,
-1.8851839 , -1.67777415, -1.67777415, -1.67777415, -1.67777415,
-1.27130664, -1.27130664, -1.27130664, -1.27130664, -0.52601961,
-0.52601961, -0.52601961, -0.52601961, 0.52601961, 0.52601961,
0.52601961, 0.52601961, 1.27130664, 1.27130664, 1.27130664,
1.27130664, 1.67777415, 1.67777415, 1.67777415, 1.67777415,
1.8851839 , 1.8851839 , 1.8851839 , 1.8851839 , 1.96715956,
1.96715956, 1.96715956, 1.96715956, 1.99281308, 1.99281308,
1.99281308, 1.99281308, 1.99882953, 1.99882953, 1.99882953,
1.99882953, 1.99985981, 1.99985981, 1.99985981, 1.99985981,
1.99998776, 1.99998776, 1.99998776, 1.99998776, 1.99999923,
1.99999923, 1.99999923, 1.99999923, 1.99999997, 1.99999997,
1.99999997, 1.99999997, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.39999943, 0.39999943,
0.39999943, 0.39999943, 0.39999085, 0.39999085, 0.39999085,
0.39999085, 0.39989526, 0.39989526, 0.39989526, 0.39989526,
0.3991272 , 0.3991272 , 0.3991272 , 0.3991272 , 0.39467278,
0.39467278, 0.39467278, 0.39467278, 0.37616893, 0.37616893,
0.37616893, 0.37616893, 0.3218281 , 0.3218281 , 0.3218281 ,
0.3218281 , 0.21484827, 0.21484827, 0.21484827, 0.21484827,
0.12366433, 0.12366433, 0.12366433, 0.12366433, 0.08206119,
0.08206119, 0.08206119, 0.08206119, 0.08206119, 0.08206119,
0.08206119, 0.08206119, 0.12366433, 0.12366433, 0.12366433,
0.12366433, 0.21484827, 0.21484827, 0.21484827, 0.21484827,
0.3218281 , 0.3218281 , 0.3218281 , 0.3218281 , 0.37616893,
0.37616893, 0.37616893, 0.37616893, 0.39467278, 0.39467278,
0.39467278, 0.39467278, 0.3991272 , 0.3991272 , 0.3991272 ,
0.3991272 , 0.39989526, 0.39989526, 0.39989526, 0.39989526,
0.39999085, 0.39999085, 0.39999085, 0.39999085, 0.39999943,
0.39999943, 0.39999943, 0.39999943, 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999991, 0.99999991, 0.99999991, 0.99999991, 0.99999845,
0.99999845, 0.99999845, 0.99999845, 0.9999803 , 0.9999803 ,
0.9999803 , 0.9999803 , 0.99980675, 0.99980675, 0.99980675,
0.99980675, 0.99853052, 0.99853052, 0.99853052, 0.99853052,
0.99132631, 0.99132631, 0.99132631, 0.99132631, 0.96043963,
0.96043963, 0.96043963, 0.96043963, 0.86149689, 0.86149689,
0.86149689, 0.86149689, 0.62919887, 0.62919887, 0.62919887,
0.62919887, 0.35143864, 0.35143864, 0.35143864, 0.35143864,
0.19386562, 0.19386562, 0.19386562, 0.19386562, 0.13391812,
0.13391812, 0.13391812, 0.13391812, 0.13391812, 0.13391812,
0.13391812, 0.13391812, 0.19386562, 0.19386562, 0.19386562,
0.19386562, 0.35143864, 0.35143864, 0.35143864, 0.35143864,
0.62919887, 0.62919887, 0.62919887, 0.62919887, 0.86149689,
0.86149689, 0.86149689, 0.86149689, 0.96043963, 0.96043963,
0.96043963, 0.96043963, 0.99132631, 0.99132631, 0.99132631,
0.99132631, 0.99853052, 0.99853052, 0.99853052, 0.99853052,
0.99980675, 0.99980675, 0.99980675, 0.99980675, 0.9999803 ,
0.9999803 , 0.9999803 , 0.9999803 , 0.99999845, 0.99999845,
0.99999845, 0.99999845, 0.99999991, 0.99999991, 0.99999991,
0.99999991, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999993, -1.99999993, -1.99999993, -1.99999993, -1.99999892,
-1.99999892, -1.99999892, -1.99999892, -1.99998652, -1.99998652,
-1.99998652, -1.99998652, -1.99987201, -1.99987201, -1.99987201,
-1.99987201, -1.99906639, -1.99906639, -1.99906639, -1.99906639,
-1.99475692, -1.99475692, -1.99475692, -1.99475692, -1.97724052,
-1.97724052, -1.97724052, -1.97724052, -1.92239345, -1.92239345,
-1.92239345, -1.92239345, -1.78517312, -1.78517312, -1.78517312,
-1.78517312, -1.5113457 , -1.5113457 , -1.5113457 , -1.5113457 ,
-1.08147149, -1.08147149, -1.08147149, -1.08147149, -0.42947786,
-0.42947786, -0.42947786, -0.42947786, 0.42947786, 0.42947786,
0.42947786, 0.42947786, 1.08147149, 1.08147149, 1.08147149,
1.08147149, 1.5113457 , 1.5113457 , 1.5113457 , 1.5113457 ,
1.78517312, 1.78517312, 1.78517312, 1.78517312, 1.92239345,
1.92239345, 1.92239345, 1.92239345, 1.97724052, 1.97724052,
1.97724052, 1.97724052, 1.99475692, 1.99475692, 1.99475692,
1.99475692, 1.99906639, 1.99906639, 1.99906639, 1.99906639,
1.99987201, 1.99987201, 1.99987201, 1.99987201, 1.99998652,
1.99998652, 1.99998652, 1.99998652, 1.99999892, 1.99999892,
1.99999892, 1.99999892, 1.99999993, 1.99999993, 1.99999993,
1.99999993, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999995, 0.39999995, 0.39999995, 0.39999995, 0.39999919,
0.39999919, 0.39999919, 0.39999919, 0.39998992, 0.39998992,
0.39998992, 0.39998992, 0.39990428, 0.39990428, 0.39990428,
0.39990428, 0.39930251, 0.39930251, 0.39930251, 0.39930251,
0.3960976 , 0.3960976 , 0.3960976 , 0.3960976 , 0.38329551,
0.38329551, 0.38329551, 0.38329551, 0.34542088, 0.34542088,
0.34542088, 0.34542088, 0.26266714, 0.26266714, 0.26266714,
0.26266714, 0.1576941 , 0.1576941 , 0.1576941 , 0.1576941 ,
0.09083226, 0.09083226, 0.09083226, 0.09083226, 0.06171329,
0.06171329, 0.06171329, 0.06171329, 0.06171329, 0.06171329,
0.06171329, 0.06171329, 0.09083226, 0.09083226, 0.09083226,
0.09083226, 0.1576941 , 0.1576941 , 0.1576941 , 0.1576941 ,
0.26266714, 0.26266714, 0.26266714, 0.26266714, 0.34542088,
0.34542088, 0.34542088, 0.34542088, 0.38329551, 0.38329551,
0.38329551, 0.38329551, 0.3960976 , 0.3960976 , 0.3960976 ,
0.3960976 , 0.39930251, 0.39930251, 0.39930251, 0.39930251,
0.39990428, 0.39990428, 0.39990428, 0.39990428, 0.39998992,
0.39998992, 0.39998992, 0.39998992, 0.39999919, 0.39999919,
0.39999919, 0.39999919, 0.39999995, 0.39999995, 0.39999995,
0.39999995, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999822, 0.99999822, 0.99999822, 0.99999822, 0.99998106,
0.99998106, 0.99998106, 0.99998106, 0.99983897, 0.99983897,
0.99983897, 0.99983897, 0.99890114, 0.99890114, 0.99890114,
0.99890114, 0.99398512, 0.99398512, 0.99398512, 0.99398512,
0.97370478, 0.97370478, 0.97370478, 0.97370478, 0.90883613,
0.90883613, 0.90883613, 0.90883613, 0.75034435, 0.75034435,
0.75034435, 0.75034435, 0.47937345, 0.47937345, 0.47937345,
0.47937345, 0.26645779, 0.26645779, 0.26645779, 0.26645779,
0.15553048, 0.15553048, 0.15553048, 0.15553048, 0.11304865,
0.11304865, 0.11304865, 0.11304865, 0.11304865, 0.11304865,
0.11304865, 0.11304865, 0.15553048, 0.15553048, 0.15553048,
0.15553048, 0.26645779, 0.26645779, 0.26645779, 0.26645779,
0.47937345, 0.47937345, 0.47937345, 0.47937345, 0.75034435,
0.75034435, 0.75034435, 0.75034435, 0.90883613, 0.90883613,
0.90883613, 0.90883613, 0.97370478, 0.97370478, 0.97370478,
0.97370478, 0.99398512, 0.99398512, 0.99398512, 0.99398512,
0.99890114, 0.99890114, 0.99890114, 0.99890114, 0.99983897,
0.99983897, 0.99983897, 0.99983897, 0.99998106, 0.99998106,
0.99998106, 0.99998106, 0.99999822, 0.99999822, 0.99999822,
0.99999822, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999999, -1.99999999, -1.99999999,
-1.99999999, -1.9999999 , -1.9999999 , -1.9999999 , -1.9999999 ,
-1.99999873, -1.99999873, -1.99999873, -1.99999873, -1.99998669,
-1.99998669, -1.99998669, -1.99998669, -1.99988955, -1.99988955,
-1.99988955, -1.99988955, -1.99926998, -1.99926998, -1.99926998,
-1.99926998, -1.99616089, -1.99616089, -1.99616089, -1.99616089,
-1.98393412, -1.98393412, -1.98393412, -1.98393412, -1.94604754,
-1.94604754, -1.94604754, -1.94604754, -1.85123448, -1.85123448,
-1.85123448, -1.85123448, -1.65457416, -1.65457416, -1.65457416,
-1.65457416, -1.34314169, -1.34314169, -1.34314169, -1.34314169,
-0.91937917, -0.91937917, -0.91937917, -0.91937917, -0.3602269 ,
-0.3602269 , -0.3602269 , -0.3602269 , 0.3602269 , 0.3602269 ,
0.3602269 , 0.3602269 , 0.91937917, 0.91937917, 0.91937917,
0.91937917, 1.34314169, 1.34314169, 1.34314169, 1.34314169,
1.65457416, 1.65457416, 1.65457416, 1.65457416, 1.85123448,
1.85123448, 1.85123448, 1.85123448, 1.94604754, 1.94604754,
1.94604754, 1.94604754, 1.98393412, 1.98393412, 1.98393412,
1.98393412, 1.99616089, 1.99616089, 1.99616089, 1.99616089,
1.99926998, 1.99926998, 1.99926998, 1.99926998, 1.99988955,
1.99988955, 1.99988955, 1.99988955, 1.99998669, 1.99998669,
1.99998669, 1.99998669, 1.99999873, 1.99999873, 1.99999873,
1.99999873, 1.9999999 , 1.9999999 , 1.9999999 , 1.9999999 ,
1.99999999, 1.99999999, 1.99999999, 1.99999999, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.39999905, 0.39999905, 0.39999905, 0.39999905, 0.39999004,
0.39999004, 0.39999004, 0.39999004, 0.39991737, 0.39991737,
0.39991737, 0.39991737, 0.39945421, 0.39945421, 0.39945421,
0.39945421, 0.39713715, 0.39713715, 0.39713715, 0.39713715,
0.38813528, 0.38813528, 0.38813528, 0.38813528, 0.3613379 ,
0.3613379 , 0.3613379 , 0.3613379 , 0.30087371, 0.30087371,
0.30087371, 0.30087371, 0.20141084, 0.20141084, 0.20141084,
0.20141084, 0.11704796, 0.11704796, 0.11704796, 0.11704796,
0.06912872, 0.06912872, 0.06912872, 0.06912872, 0.04853681,
0.04853681, 0.04853681, 0.04853681, 0.04853681, 0.04853681,
0.04853681, 0.04853681, 0.06912872, 0.06912872, 0.06912872,
0.06912872, 0.11704796, 0.11704796, 0.11704796, 0.11704796,
0.20141084, 0.20141084, 0.20141084, 0.20141084, 0.30087371,
0.30087371, 0.30087371, 0.30087371, 0.3613379 , 0.3613379 ,
0.3613379 , 0.3613379 , 0.38813528, 0.38813528, 0.38813528,
0.38813528, 0.39713715, 0.39713715, 0.39713715, 0.39713715,
0.39945421, 0.39945421, 0.39945421, 0.39945421, 0.39991737,
0.39991737, 0.39991737, 0.39991737, 0.39999004, 0.39999004,
0.39999004, 0.39999004, 0.39999905, 0.39999905, 0.39999905,
0.39999905, 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999984, 0.99999984, 0.99999984,
0.99999984, 0.99999815, 0.99999815, 0.99999815, 0.99999815,
0.99998284, 0.99998284, 0.99998284, 0.99998284, 0.99986909,
0.99986909, 0.99986909, 0.99986909, 0.99917794, 0.99917794,
0.99917794, 0.99917794, 0.99575787, 0.99575787, 0.99575787,
0.99575787, 0.98208444, 0.98208444, 0.98208444, 0.98208444,
0.93845324, 0.93845324, 0.93845324, 0.93845324, 0.82880412,
0.82880412, 0.82880412, 0.82880412, 0.61348768, 0.61348768,
0.61348768, 0.61348768, 0.36614028, 0.36614028, 0.36614028,
0.36614028, 0.20903449, 0.20903449, 0.20903449, 0.20903449,
0.12920479, 0.12920479, 0.12920479, 0.12920479, 0.09800524,
0.09800524, 0.09800524, 0.09800524, 0.09800524, 0.09800524,
0.09800524, 0.09800524, 0.12920479, 0.12920479, 0.12920479,
0.12920479, 0.20903449, 0.20903449, 0.20903449, 0.20903449,
0.36614028, 0.36614028, 0.36614028, 0.36614028, 0.61348768,
0.61348768, 0.61348768, 0.61348768, 0.82880412, 0.82880412,
0.82880412, 0.82880412, 0.93845324, 0.93845324, 0.93845324,
0.93845324, 0.98208444, 0.98208444, 0.98208444, 0.98208444,
0.99575787, 0.99575787, 0.99575787, 0.99575787, 0.99917794,
0.99917794, 0.99917794, 0.99917794, 0.99986909, 0.99986909,
0.99986909, 0.99986909, 0.99998284, 0.99998284, 0.99998284,
0.99998284, 0.99999815, 0.99999815, 0.99999815, 0.99999815,
0.99999984, 0.99999984, 0.99999984, 0.99999984, 0.99999999,
0.99999999, 0.99999999, 0.99999999, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999988, -1.99999988, -1.99999988,
-1.99999988, -1.99999866, -1.99999866, -1.99999866, -1.99999866,
-1.99998772, -1.99998772, -1.99998772, -1.99998772, -1.99990797,
-1.99990797, -1.99990797, -1.99990797, -1.99943592, -1.99943592,
-1.99943592, -1.99943592, -1.99717955, -1.99717955, -1.99717955,
-1.99717955, -1.98851793, -1.98851793, -1.98851793, -1.98851793,
-1.96180903, -1.96180903, -1.96180903, -1.96180903, -1.89460091,
-1.89460091, -1.89460091, -1.89460091, -1.75267665, -1.75267665,
-1.75267665, -1.75267665, -1.51016277, -1.51016277, -1.51016277,
-1.51016277, -1.18621185, -1.18621185, -1.18621185, -1.18621185,
-0.7860659 , -0.7860659 , -0.7860659 , -0.7860659 , -0.30832397,
-0.30832397, -0.30832397, -0.30832397, 0.30832397, 0.30832397,
0.30832397, 0.30832397, 0.7860659 , 0.7860659 , 0.7860659 ,
0.7860659 , 1.18621185, 1.18621185, 1.18621185, 1.18621185,
1.51016277, 1.51016277, 1.51016277, 1.51016277, 1.75267665,
1.75267665, 1.75267665, 1.75267665, 1.89460091, 1.89460091,
1.89460091, 1.89460091, 1.96180903, 1.96180903, 1.96180903,
1.96180903, 1.98851793, 1.98851793, 1.98851793, 1.98851793,
1.99717955, 1.99717955, 1.99717955, 1.99717955, 1.99943592,
1.99943592, 1.99943592, 1.99943592, 1.99990797, 1.99990797,
1.99990797, 1.99990797, 1.99998772, 1.99998772, 1.99998772,
1.99998772, 1.99999866, 1.99999866, 1.99999866, 1.99999866,
1.99999988, 1.99999988, 1.99999988, 1.99999988, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999991, 0.39999991, 0.39999991,
0.39999991, 0.399999 , 0.399999 , 0.399999 , 0.399999 ,
0.39999081, 0.39999081, 0.39999081, 0.39999081, 0.39993114,
0.39993114, 0.39993114, 0.39993114, 0.39957814, 0.39957814,
0.39957814, 0.39957814, 0.3978946 , 0.3978946 , 0.3978946 ,
0.3978946 , 0.39148834, 0.39148834, 0.39148834, 0.39148834,
0.37229028, 0.37229028, 0.37229028, 0.37229028, 0.32749061,
0.32749061, 0.32749061, 0.32749061, 0.24595055, 0.24595055,
0.24595055, 0.24595055, 0.1521573 , 0.1521573 , 0.1521573 ,
0.1521573 , 0.08900074, 0.08900074, 0.08900074, 0.08900074,
0.05452347, 0.05452347, 0.05452347, 0.05452347, 0.03964855,
0.03964855, 0.03964855, 0.03964855, 0.03964855, 0.03964855,
0.03964855, 0.03964855, 0.05452347, 0.05452347, 0.05452347,
0.05452347, 0.08900074, 0.08900074, 0.08900074, 0.08900074,
0.1521573 , 0.1521573 , 0.1521573 , 0.1521573 , 0.24595055,
0.24595055, 0.24595055, 0.24595055, 0.32749061, 0.32749061,
0.32749061, 0.32749061, 0.37229028, 0.37229028, 0.37229028,
0.37229028, 0.39148834, 0.39148834, 0.39148834, 0.39148834,
0.3978946 , 0.3978946 , 0.3978946 , 0.3978946 , 0.39957814,
0.39957814, 0.39957814, 0.39957814, 0.39993114, 0.39993114,
0.39993114, 0.39993114, 0.39999081, 0.39999081, 0.39999081,
0.39999081, 0.399999 , 0.399999 , 0.399999 , 0.399999 ,
0.39999991, 0.39999991, 0.39999991, 0.39999991, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999982, 0.99999982,
0.99999982, 0.99999982, 0.99999821, 0.99999821, 0.99999821,
0.99999821, 0.99998506, 0.99998506, 0.99998506, 0.99998506,
0.99989526, 0.99989526, 0.99989526, 0.99989526, 0.99938413,
0.99938413, 0.99938413, 0.99938413, 0.9969681 , 0.9969681 ,
0.9969681 , 0.9969681 , 0.98755151, 0.98755151, 0.98755151,
0.98755151, 0.9575973 , 0.9575973 , 0.9575973 , 0.9575973 ,
0.88079942, 0.88079942, 0.88079942, 0.88079942, 0.72339297,
0.72339297, 0.72339297, 0.72339297, 0.48191719, 0.48191719,
0.48191719, 0.48191719, 0.28572684, 0.28572684, 0.28572684,
0.28572684, 0.16953166, 0.16953166, 0.16953166, 0.16953166,
0.11045248, 0.11045248, 0.11045248, 0.11045248, 0.08680007,
0.08680007, 0.08680007, 0.08680007, 0.08680007, 0.08680007,
0.08680007, 0.08680007, 0.11045248, 0.11045248, 0.11045248,
0.11045248, 0.16953166, 0.16953166, 0.16953166, 0.16953166,
0.28572684, 0.28572684, 0.28572684, 0.28572684, 0.48191719,
0.48191719, 0.48191719, 0.48191719, 0.72339297, 0.72339297,
0.72339297, 0.72339297, 0.88079942, 0.88079942, 0.88079942,
0.88079942, 0.9575973 , 0.9575973 , 0.9575973 , 0.9575973 ,
0.98755151, 0.98755151, 0.98755151, 0.98755151, 0.9969681 ,
0.9969681 , 0.9969681 , 0.9969681 , 0.99938413, 0.99938413,
0.99938413, 0.99938413, 0.99989526, 0.99989526, 0.99989526,
0.99989526, 0.99998506, 0.99998506, 0.99998506, 0.99998506,
0.99999821, 0.99999821, 0.99999821, 0.99999821, 0.99999982,
0.99999982, 0.99999982, 0.99999982, 0.99999998, 0.99999998,
0.99999998, 0.99999998, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.99999987, -1.99999987,
-1.99999987, -1.99999987, -1.99999869, -1.99999869, -1.99999869,
-1.99999869, -1.99998917, -1.99998917, -1.99998917, -1.99998917,
-1.99992506, -1.99992506, -1.99992506, -1.99992506, -1.99956738,
-1.99956738, -1.99956738, -1.99956738, -1.99792181, -1.99792181,
-1.99792181, -1.99792181, -1.9917193 , -1.9917193 , -1.9917193 ,
-1.9917193 , -1.97261847, -1.97261847, -1.97261847, -1.97261847,
-1.92415623, -1.92415623, -1.92415623, -1.92415623, -1.82040341,
-1.82040341, -1.82040341, -1.82040341, -1.63201167, -1.63201167,
-1.63201167, -1.63201167, -1.36651981, -1.36651981, -1.36651981,
-1.36651981, -1.04671979, -1.04671979, -1.04671979, -1.04671979,
-0.6782087 , -0.6782087 , -0.6782087 , -0.6782087 , -0.26774582,
-0.26774582, -0.26774582, -0.26774582, 0.26774582, 0.26774582,
0.26774582, 0.26774582, 0.6782087 , 0.6782087 , 0.6782087 ,
0.6782087 , 1.04671979, 1.04671979, 1.04671979, 1.04671979,
1.36651981, 1.36651981, 1.36651981, 1.36651981, 1.63201167,
1.63201167, 1.63201167, 1.63201167, 1.82040341, 1.82040341,
1.82040341, 1.82040341, 1.92415623, 1.92415623, 1.92415623,
1.92415623, 1.97261847, 1.97261847, 1.97261847, 1.97261847,
1.9917193 , 1.9917193 , 1.9917193 , 1.9917193 , 1.99792181,
1.99792181, 1.99792181, 1.99792181, 1.99956738, 1.99956738,
1.99956738, 1.99956738, 1.99992506, 1.99992506, 1.99992506,
1.99992506, 1.99998917, 1.99998917, 1.99998917, 1.99998917,
1.99999869, 1.99999869, 1.99999869, 1.99999869, 1.99999987,
1.99999987, 1.99999987, 1.99999987, 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.3999999 , 0.3999999 ,
0.3999999 , 0.3999999 , 0.39999902, 0.39999902, 0.39999902,
0.39999902, 0.39999189, 0.39999189, 0.39999189, 0.39999189,
0.39994393, 0.39994393, 0.39994393, 0.39994393, 0.3996764 ,
0.3996764 , 0.3996764 , 0.3996764 , 0.39844766, 0.39844766,
0.39844766, 0.39844766, 0.3938459 , 0.3938459 , 0.3938459 ,
0.3938459 , 0.37996407, 0.37996407, 0.37996407, 0.37996407,
0.34664308, 0.34664308, 0.34664308, 0.34664308, 0.28330954,
0.28330954, 0.28330954, 0.28330954, 0.19183256, 0.19183256,
0.19183256, 0.19183256, 0.11635494, 0.11635494, 0.11635494,
0.11635494, 0.06966734, 0.06966734, 0.06966734, 0.06966734,
0.04441951, 0.04441951, 0.04441951, 0.04441951, 0.03339871,
0.03339871, 0.03339871, 0.03339871, 0.03339871, 0.03339871,
0.03339871, 0.03339871, 0.04441951, 0.04441951, 0.04441951,
0.04441951, 0.06966734, 0.06966734, 0.06966734, 0.06966734,
0.11635494, 0.11635494, 0.11635494, 0.11635494, 0.19183256,
0.19183256, 0.19183256, 0.19183256, 0.28330954, 0.28330954,
0.28330954, 0.28330954, 0.34664308, 0.34664308, 0.34664308,
0.34664308, 0.37996407, 0.37996407, 0.37996407, 0.37996407,
0.3938459 , 0.3938459 , 0.3938459 , 0.3938459 , 0.39844766,
0.39844766, 0.39844766, 0.39844766, 0.3996764 , 0.3996764 ,
0.3996764 , 0.3996764 , 0.39994393, 0.39994393, 0.39994393,
0.39994393, 0.39999189, 0.39999189, 0.39999189, 0.39999189,
0.39999902, 0.39999902, 0.39999902, 0.39999902, 0.3999999 ,
0.3999999 , 0.3999999 , 0.3999999 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999982,
0.99999982, 0.99999982, 0.99999982, 0.99999835, 0.99999835,
0.99999835, 0.99999835, 0.99998734, 0.99998734, 0.99998734,
0.99998734, 0.99991711, 0.99991711, 0.99991711, 0.99991711,
0.99953786, 0.99953786, 0.99953786, 0.99953786, 0.99781034,
0.99781034, 0.99781034, 0.99781034, 0.99121504, 0.99121504,
0.99121504, 0.99121504, 0.97029897, 0.97029897, 0.97029897,
0.97029897, 0.91578706, 0.91578706, 0.91578706, 0.91578706,
0.80012855, 0.80012855, 0.80012855, 0.80012855, 0.60045937,
0.60045937, 0.60045937, 0.60045937, 0.37949445, 0.37949445,
0.37949445, 0.37949445, 0.22889361, 0.22889361, 0.22889361,
0.22889361, 0.14163683, 0.14163683, 0.14163683, 0.14163683,
0.09663353, 0.09663353, 0.09663353, 0.09663353, 0.07820179,
0.07820179, 0.07820179, 0.07820179, 0.07820179, 0.07820179,
0.07820179, 0.07820179, 0.09663353, 0.09663353, 0.09663353,
0.09663353, 0.14163683, 0.14163683, 0.14163683, 0.14163683,
0.22889361, 0.22889361, 0.22889361, 0.22889361, 0.37949445,
0.37949445, 0.37949445, 0.37949445, 0.60045937, 0.60045937,
0.60045937, 0.60045937, 0.80012855, 0.80012855, 0.80012855,
0.80012855, 0.91578706, 0.91578706, 0.91578706, 0.91578706,
0.97029897, 0.97029897, 0.97029897, 0.97029897, 0.99121504,
0.99121504, 0.99121504, 0.99121504, 0.99781034, 0.99781034,
0.99781034, 0.99781034, 0.99953786, 0.99953786, 0.99953786,
0.99953786, 0.99991711, 0.99991711, 0.99991711, 0.99991711,
0.99998734, 0.99998734, 0.99998734, 0.99998734, 0.99999835,
0.99999835, 0.99999835, 0.99999835, 0.99999982, 0.99999982,
0.99999982, 0.99999982, 0.99999998, 0.99999998, 0.99999998,
0.99999998, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999986,
-1.99999986, -1.99999986, -1.99999986, -1.99999879, -1.99999879,
-1.99999879, -1.99999879, -1.99999074, -1.99999074, -1.99999074,
-1.99999074, -1.99993995, -1.99993995, -1.99993995, -1.99993995,
-1.9996698 , -1.9996698 , -1.9996698 , -1.9996698 , -1.99846471,
-1.99846471, -1.99846471, -1.99846471, -1.99398645, -1.99398645,
-1.99398645, -1.99398645, -1.98018643, -1.98018643, -1.98018643,
-1.98018643, -1.94480442, -1.94480442, -1.94480442, -1.94480442,
-1.86801764, -1.86801764, -1.86801764, -1.86801764, -1.72407007,
-1.72407007, -1.72407007, -1.72407007, -1.50364278, -1.50364278,
-1.50364278, -1.50364278, -1.23217304, -1.23217304, -1.23217304,
-1.23217304, -0.92597583, -0.92597583, -0.92597583, -0.92597583,
-0.59117574, -0.59117574, -0.59117574, -0.59117574, -0.23496487,
-0.23496487, -0.23496487, -0.23496487, 0.23496487, 0.23496487,
0.23496487, 0.23496487, 0.59117574, 0.59117574, 0.59117574,
0.59117574, 0.92597583, 0.92597583, 0.92597583, 0.92597583,
1.23217304, 1.23217304, 1.23217304, 1.23217304, 1.50364278,
1.50364278, 1.50364278, 1.50364278, 1.72407007, 1.72407007,
1.72407007, 1.72407007, 1.86801764, 1.86801764, 1.86801764,
1.86801764, 1.94480442, 1.94480442, 1.94480442, 1.94480442,
1.98018643, 1.98018643, 1.98018643, 1.98018643, 1.99398645,
1.99398645, 1.99398645, 1.99398645, 1.99846471, 1.99846471,
1.99846471, 1.99846471, 1.9996698 , 1.9996698 , 1.9996698 ,
1.9996698 , 1.99993995, 1.99993995, 1.99993995, 1.99993995,
1.99999074, 1.99999074, 1.99999074, 1.99999074, 1.99999879,
1.99999879, 1.99999879, 1.99999879, 1.99999986, 1.99999986,
1.99999986, 1.99999986, 1.99999999, 1.99999999, 1.99999999,
1.99999999, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.3999999 ,
0.3999999 , 0.3999999 , 0.3999999 , 0.39999909, 0.39999909,
0.39999909, 0.39999909, 0.39999307, 0.39999307, 0.39999307,
0.39999307, 0.39995507, 0.39995507, 0.39995507, 0.39995507,
0.39975298, 0.39975298, 0.39975298, 0.39975298, 0.39885266,
0.39885266, 0.39885266, 0.39885266, 0.39552278, 0.39552278,
0.39552278, 0.39552278, 0.38541506, 0.38541506, 0.38541506,
0.38541506, 0.36053293, 0.36053293, 0.36053293, 0.36053293,
0.31125907, 0.31125907, 0.31125907, 0.31125907, 0.23233608,
0.23233608, 0.23233608, 0.23233608, 0.14878873, 0.14878873,
0.14878873, 0.14878873, 0.0908745 , 0.0908745 , 0.0908745 ,
0.0908745 , 0.05614055, 0.05614055, 0.05614055, 0.05614055,
0.03721016, 0.03721016, 0.03721016, 0.03721016, 0.0288322 ,
0.0288322 , 0.0288322 , 0.0288322 , 0.0288322 , 0.0288322 ,
0.0288322 , 0.0288322 , 0.03721016, 0.03721016, 0.03721016,
0.03721016, 0.05614055, 0.05614055, 0.05614055, 0.05614055,
0.0908745 , 0.0908745 , 0.0908745 , 0.0908745 , 0.14878873,
0.14878873, 0.14878873, 0.14878873, 0.23233608, 0.23233608,
0.23233608, 0.23233608, 0.31125907, 0.31125907, 0.31125907,
0.31125907, 0.36053293, 0.36053293, 0.36053293, 0.36053293,
0.38541506, 0.38541506, 0.38541506, 0.38541506, 0.39552278,
0.39552278, 0.39552278, 0.39552278, 0.39885266, 0.39885266,
0.39885266, 0.39885266, 0.39975298, 0.39975298, 0.39975298,
0.39975298, 0.39995507, 0.39995507, 0.39995507, 0.39995507,
0.39999307, 0.39999307, 0.39999307, 0.39999307, 0.39999909,
0.39999909, 0.39999909, 0.39999909, 0.3999999 , 0.3999999 ,
0.3999999 , 0.3999999 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999853,
0.99999853, 0.99999853, 0.99999853, 0.99998948, 0.99998948,
0.99998948, 0.99998948, 0.99993492, 0.99993492, 0.99993492,
0.99993492, 0.99965273, 0.99965273, 0.99965273, 0.99965273,
0.99840561, 0.99840561, 0.99840561, 0.99840561, 0.99372391,
0.99372391, 0.99372391, 0.99372391, 0.97891212, 0.97891212,
0.97891212, 0.97891212, 0.93979064, 0.93979064, 0.93979064,
0.93979064, 0.85435217, 0.85435217, 0.85435217, 0.85435217,
0.70047105, 0.70047105, 0.70047105, 0.70047105, 0.48368405,
0.48368405, 0.48368405, 0.48368405, 0.30390714, 0.30390714,
0.30390714, 0.30390714, 0.18824623, 0.18824623, 0.18824623,
0.18824623, 0.12134774, 0.12134774, 0.12134774, 0.12134774,
0.08615572, 0.08615572, 0.08615572, 0.08615572, 0.07142817,
0.07142817, 0.07142817, 0.07142817, 0.07142817, 0.07142817,
0.07142817, 0.07142817, 0.08615572, 0.08615572, 0.08615572,
0.08615572, 0.12134774, 0.12134774, 0.12134774, 0.12134774,
0.18824623, 0.18824623, 0.18824623, 0.18824623, 0.30390714,
0.30390714, 0.30390714, 0.30390714, 0.48368405, 0.48368405,
0.48368405, 0.48368405, 0.70047105, 0.70047105, 0.70047105,
0.70047105, 0.85435217, 0.85435217, 0.85435217, 0.85435217,
0.93979064, 0.93979064, 0.93979064, 0.93979064, 0.97891212,
0.97891212, 0.97891212, 0.97891212, 0.99372391, 0.99372391,
0.99372391, 0.99372391, 0.99840561, 0.99840561, 0.99840561,
0.99840561, 0.99965273, 0.99965273, 0.99965273, 0.99965273,
0.99993492, 0.99993492, 0.99993492, 0.99993492, 0.99998948,
0.99998948, 0.99998948, 0.99998948, 0.99999853, 0.99999853,
0.99999853, 0.99999853, 0.99999982, 0.99999982, 0.99999982,
0.99999982, 0.99999998, 0.99999998, 0.99999998, 0.99999998,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999999, -1.99999999, -1.99999999, -1.99999999,
-1.99999987, -1.99999987, -1.99999987, -1.99999987, -1.99999891,
-1.99999891, -1.99999891, -1.99999891, -1.99999225, -1.99999225,
-1.99999225, -1.99999225, -1.99995243, -1.99995243, -1.99995243,
-1.99995243, -1.99974878, -1.99974878, -1.99974878, -1.99974878,
-1.99886312, -1.99886312, -1.99886312, -1.99886312, -1.99560883,
-1.99560883, -1.99560883, -1.99560883, -1.9855618 , -1.9855618 ,
-1.9855618 , -1.9855618 , -1.95950297, -1.95950297, -1.95950297,
-1.95950297, -1.90210338, -1.90210338, -1.90210338, -1.90210338,
-1.79222715, -1.79222715, -1.79222715, -1.79222715, -1.61230762,
-1.61230762, -1.61230762, -1.61230762, -1.3777013 , -1.3777013 ,
-1.3777013 , -1.3777013 , -1.11092251, -1.11092251, -1.11092251,
-1.11092251, -0.82278589, -0.82278589, -0.82278589, -0.82278589,
-0.52048968, -0.52048968, -0.52048968, -0.52048968, -0.20786432,
-0.20786432, -0.20786432, -0.20786432, 0.20786432, 0.20786432,
0.20786432, 0.20786432, 0.52048968, 0.52048968, 0.52048968,
0.52048968, 0.82278589, 0.82278589, 0.82278589, 0.82278589,
1.11092251, 1.11092251, 1.11092251, 1.11092251, 1.3777013 ,
1.3777013 , 1.3777013 , 1.3777013 , 1.61230762, 1.61230762,
1.61230762, 1.61230762, 1.79222715, 1.79222715, 1.79222715,
1.79222715, 1.90210338, 1.90210338, 1.90210338, 1.90210338,
1.95950297, 1.95950297, 1.95950297, 1.95950297, 1.9855618 ,
1.9855618 , 1.9855618 , 1.9855618 , 1.99560883, 1.99560883,
1.99560883, 1.99560883, 1.99886312, 1.99886312, 1.99886312,
1.99886312, 1.99974878, 1.99974878, 1.99974878, 1.99974878,
1.99995243, 1.99995243, 1.99995243, 1.99995243, 1.99999225,
1.99999225, 1.99999225, 1.99999225, 1.99999891, 1.99999891,
1.99999891, 1.99999891, 1.99999987, 1.99999987, 1.99999987,
1.99999987, 1.99999999, 1.99999999, 1.99999999, 1.99999999,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.3999999 , 0.3999999 , 0.3999999 , 0.3999999 , 0.39999919,
0.39999919, 0.39999919, 0.39999919, 0.3999942 , 0.3999942 ,
0.3999942 , 0.3999942 , 0.3999644 , 0.3999644 , 0.3999644 ,
0.3999644 , 0.39981205, 0.39981205, 0.39981205, 0.39981205,
0.39915011, 0.39915011, 0.39915011, 0.39915011, 0.3967264 ,
0.3967264 , 0.3967264 , 0.3967264 , 0.38932614, 0.38932614,
0.38932614, 0.38932614, 0.3707002 , 0.3707002 , 0.3707002 ,
0.3707002 , 0.33242647, 0.33242647, 0.33242647, 0.33242647,
0.26800883, 0.26800883, 0.26800883, 0.26800883, 0.18437304,
0.18437304, 0.18437304, 0.18437304, 0.11676345, 0.11676345,
0.11676345, 0.11676345, 0.07270821, 0.07270821, 0.07270821,
0.07270821, 0.04645228, 0.04645228, 0.04645228, 0.04645228,
0.03191354, 0.03191354, 0.03191354, 0.03191354, 0.02538131,
0.02538131, 0.02538131, 0.02538131, 0.02538131, 0.02538131,
0.02538131, 0.02538131, 0.03191354, 0.03191354, 0.03191354,
0.03191354, 0.04645228, 0.04645228, 0.04645228, 0.04645228,
0.07270821, 0.07270821, 0.07270821, 0.07270821, 0.11676345,
0.11676345, 0.11676345, 0.11676345, 0.18437304, 0.18437304,
0.18437304, 0.18437304, 0.26800883, 0.26800883, 0.26800883,
0.26800883, 0.33242647, 0.33242647, 0.33242647, 0.33242647,
0.3707002 , 0.3707002 , 0.3707002 , 0.3707002 , 0.38932614,
0.38932614, 0.38932614, 0.38932614, 0.3967264 , 0.3967264 ,
0.3967264 , 0.3967264 , 0.39915011, 0.39915011, 0.39915011,
0.39915011, 0.39981205, 0.39981205, 0.39981205, 0.39981205,
0.3999644 , 0.3999644 , 0.3999644 , 0.3999644 , 0.3999942 ,
0.3999942 , 0.3999942 , 0.3999942 , 0.39999919, 0.39999919,
0.39999919, 0.39999919, 0.3999999 , 0.3999999 , 0.3999999 ,
0.3999999 , 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
0.99999873, 0.99999873, 0.99999873, 0.99999873, 0.99999139,
0.99999139, 0.99999139, 0.99999139, 0.9999492 , 0.9999492 ,
0.9999492 , 0.9999492 , 0.99973872, 0.99973872, 0.99973872,
0.99973872, 0.99883156, 0.99883156, 0.99883156, 0.99883156,
0.99547245, 0.99547245, 0.99547245, 0.99547245, 0.98486244,
0.98486244, 0.98486244, 0.98486244, 0.95651715, 0.95651715,
0.95651715, 0.95651715, 0.89302034, 0.89302034, 0.89302034,
0.89302034, 0.7744703 , 0.7744703 , 0.7744703 , 0.7744703 ,
0.58918984, 0.58918984, 0.58918984, 0.58918984, 0.3907938 ,
0.3907938 , 0.3907938 , 0.3907938 , 0.24842829, 0.24842829,
0.24842829, 0.24842829, 0.15858747, 0.15858747, 0.15858747,
0.15858747, 0.10613862, 0.10613862, 0.10613862, 0.10613862,
0.07804312, 0.07804312, 0.07804312, 0.07804312, 0.06596678,
0.06596678, 0.06596678, 0.06596678, 0.06596678, 0.06596678,
0.06596678, 0.06596678, 0.07804312, 0.07804312, 0.07804312,
0.07804312, 0.10613862, 0.10613862, 0.10613862, 0.10613862,
0.15858747, 0.15858747, 0.15858747, 0.15858747, 0.24842829,
0.24842829, 0.24842829, 0.24842829, 0.3907938 , 0.3907938 ,
0.3907938 , 0.3907938 , 0.58918984, 0.58918984, 0.58918984,
0.58918984, 0.7744703 , 0.7744703 , 0.7744703 , 0.7744703 ,
0.89302034, 0.89302034, 0.89302034, 0.89302034, 0.95651715,
0.95651715, 0.95651715, 0.95651715, 0.98486244, 0.98486244,
0.98486244, 0.98486244, 0.99547245, 0.99547245, 0.99547245,
0.99547245, 0.99883156, 0.99883156, 0.99883156, 0.99883156,
0.99973872, 0.99973872, 0.99973872, 0.99973872, 0.9999492 ,
0.9999492 , 0.9999492 , 0.9999492 , 0.99999139, 0.99999139,
0.99999139, 0.99999139, 0.99999873, 0.99999873, 0.99999873,
0.99999873, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999999, -1.99999999, -1.99999999,
-1.99999999, -1.99999988, -1.99999988, -1.99999988, -1.99999988,
-1.99999905, -1.99999905, -1.99999905, -1.99999905, -1.99999363,
-1.99999363, -1.99999363, -1.99999363, -1.99996263, -1.99996263,
-1.99996263, -1.99996263, -1.99980927, -1.99980927, -1.99980927,
-1.99980927, -1.99915638, -1.99915638, -1.99915638, -1.99915638,
-1.99677918, -1.99677918, -1.99677918, -1.99677918, -1.98942127,
-1.98942127, -1.98942127, -1.98942127, -1.97010848, -1.97010848,
-1.97010848, -1.97010848, -1.92685579, -1.92685579, -1.92685579,
-1.92685579, -1.84274247, -1.84274247, -1.84274247, -1.84274247,
-1.69896886, -1.69896886, -1.69896886, -1.69896886, -1.4967822 ,
-1.4967822 , -1.4967822 , -1.4967822 , -1.25990867, -1.25990867,
-1.25990867, -1.25990867, -1.00356993, -1.00356993, -1.00356993,
-1.00356993, -0.73520455, -0.73520455, -0.73520455, -0.73520455,
-0.4621829 , -0.4621829 , -0.4621829 , -0.4621829 , -0.18511853,
-0.18511853, -0.18511853, -0.18511853, 0.18511853, 0.18511853,
0.18511853, 0.18511853, 0.4621829 , 0.4621829 , 0.4621829 ,
0.4621829 , 0.73520455, 0.73520455, 0.73520455, 0.73520455,
1.00356993, 1.00356993, 1.00356993, 1.00356993, 1.25990867,
1.25990867, 1.25990867, 1.25990867, 1.4967822 , 1.4967822 ,
1.4967822 , 1.4967822 , 1.69896886, 1.69896886, 1.69896886,
1.69896886, 1.84274247, 1.84274247, 1.84274247, 1.84274247,
1.92685579, 1.92685579, 1.92685579, 1.92685579, 1.97010848,
1.97010848, 1.97010848, 1.97010848, 1.98942127, 1.98942127,
1.98942127, 1.98942127, 1.99677918, 1.99677918, 1.99677918,
1.99677918, 1.99915638, 1.99915638, 1.99915638, 1.99915638,
1.99980927, 1.99980927, 1.99980927, 1.99980927, 1.99996263,
1.99996263, 1.99996263, 1.99996263, 1.99999363, 1.99999363,
1.99999363, 1.99999363, 1.99999905, 1.99999905, 1.99999905,
1.99999905, 1.99999988, 1.99999988, 1.99999988, 1.99999988,
1.99999999, 1.99999999, 1.99999999, 1.99999999, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.39999991, 0.39999991, 0.39999991, 0.39999991,
0.39999929, 0.39999929, 0.39999929, 0.39999929, 0.39999523,
0.39999523, 0.39999523, 0.39999523, 0.39997203, 0.39997203,
0.39997203, 0.39997203, 0.3998573 , 0.3998573 , 0.3998573 ,
0.3998573 , 0.39936918, 0.39936918, 0.39936918, 0.39936918,
0.39759656, 0.39759656, 0.39759656, 0.39759656, 0.3921548 ,
0.3921548 , 0.3921548 , 0.3921548 , 0.37818642, 0.37818642,
0.37818642, 0.37818642, 0.34849857, 0.34849857, 0.34849857,
0.34849857, 0.29650042, 0.29650042, 0.29650042, 0.29650042,
0.2208956 , 0.2208956 , 0.2208956 , 0.2208956 , 0.14629492,
0.14629492, 0.14629492, 0.14629492, 0.09330567, 0.09330567,
0.09330567, 0.09330567, 0.05957303, 0.05957303, 0.05957303,
0.05957303, 0.03932213, 0.03932213, 0.03932213, 0.03932213,
0.02792703, 0.02792703, 0.02792703, 0.02792703, 0.02269662,
0.02269662, 0.02269662, 0.02269662, 0.02269662, 0.02269662,
0.02269662, 0.02269662, 0.02792703, 0.02792703, 0.02792703,
0.02792703, 0.03932213, 0.03932213, 0.03932213, 0.03932213,
0.05957303, 0.05957303, 0.05957303, 0.05957303, 0.09330567,
0.09330567, 0.09330567, 0.09330567, 0.14629492, 0.14629492,
0.14629492, 0.14629492, 0.2208956 , 0.2208956 , 0.2208956 ,
0.2208956 , 0.29650042, 0.29650042, 0.29650042, 0.29650042,
0.34849857, 0.34849857, 0.34849857, 0.34849857, 0.37818642,
0.37818642, 0.37818642, 0.37818642, 0.3921548 , 0.3921548 ,
0.3921548 , 0.3921548 , 0.39759656, 0.39759656, 0.39759656,
0.39759656, 0.39936918, 0.39936918, 0.39936918, 0.39936918,
0.3998573 , 0.3998573 , 0.3998573 , 0.3998573 , 0.39997203,
0.39997203, 0.39997203, 0.39997203, 0.39999523, 0.39999523,
0.39999523, 0.39999523, 0.39999929, 0.39999929, 0.39999929,
0.39999929, 0.39999991, 0.39999991, 0.39999991, 0.39999991,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999985, 0.99999985, 0.99999985,
0.99999985, 0.99999892, 0.99999892, 0.99999892, 0.99999892,
0.99999303, 0.99999303, 0.99999303, 0.99999303, 0.99996053,
0.99996053, 0.99996053, 0.99996053, 0.99980322, 0.99980322,
0.99980322, 0.99980322, 0.99913934, 0.99913934, 0.99913934,
0.99913934, 0.99670847, 0.99670847, 0.99670847, 0.99670847,
0.98903707, 0.98903707, 0.98903707, 0.98903707, 0.96833192,
0.96833192, 0.96833192, 0.96833192, 0.92092038, 0.92092038,
0.92092038, 0.92092038, 0.82944669, 0.82944669, 0.82944669,
0.82944669, 0.68051663, 0.68051663, 0.68051663, 0.68051663,
0.48474848, 0.48474848, 0.48474848, 0.48474848, 0.32005625,
0.32005625, 0.32005625, 0.32005625, 0.20735316, 0.20735316,
0.20735316, 0.20735316, 0.13644564, 0.13644564, 0.13644564,
0.13644564, 0.0944557 , 0.0944557 , 0.0944557 , 0.0944557 ,
0.07160431, 0.07160431, 0.07160431, 0.07160431, 0.06148045,
0.06148045, 0.06148045, 0.06148045, 0.06148045, 0.06148045,
0.06148045, 0.06148045, 0.07160431, 0.07160431, 0.07160431,
0.07160431, 0.0944557 , 0.0944557 , 0.0944557 , 0.0944557 ,
0.13644564, 0.13644564, 0.13644564, 0.13644564, 0.20735316,
0.20735316, 0.20735316, 0.20735316, 0.32005625, 0.32005625,
0.32005625, 0.32005625, 0.48474848, 0.48474848, 0.48474848,
0.48474848, 0.68051663, 0.68051663, 0.68051663, 0.68051663,
0.82944669, 0.82944669, 0.82944669, 0.82944669, 0.92092038,
0.92092038, 0.92092038, 0.92092038, 0.96833192, 0.96833192,
0.96833192, 0.96833192, 0.98903707, 0.98903707, 0.98903707,
0.98903707, 0.99670847, 0.99670847, 0.99670847, 0.99670847,
0.99913934, 0.99913934, 0.99913934, 0.99913934, 0.99980322,
0.99980322, 0.99980322, 0.99980322, 0.99996053, 0.99996053,
0.99996053, 0.99996053, 0.99999303, 0.99999303, 0.99999303,
0.99999303, 0.99999892, 0.99999892, 0.99999892, 0.99999892,
0.99999985, 0.99999985, 0.99999985, 0.99999985, 0.99999998,
0.99999998, 0.99999998, 0.99999998, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999989, -1.99999989, -1.99999989,
-1.99999989, -1.99999919, -1.99999919, -1.99999919, -1.99999919,
-1.99999483, -1.99999483, -1.99999483, -1.99999483, -1.99997083,
-1.99997083, -1.99997083, -1.99997083, -1.99985541, -1.99985541,
-1.99985541, -1.99985541, -1.99937283, -1.99937283, -1.99937283,
-1.99937283, -1.99762886, -1.99762886, -1.99762886, -1.99762886,
-1.99221523, -1.99221523, -1.99221523, -1.99221523, -1.97783629,
-1.97783629, -1.97783629, -1.97783629, -1.94507807, -1.94507807,
-1.94507807, -1.94507807, -1.8802642 , -1.8802642 , -1.8802642 ,
-1.8802642 , -1.76657936, -1.76657936, -1.76657936, -1.76657936,
-1.59538283, -1.59538283, -1.59538283, -1.59538283, -1.3846481 ,
-1.3846481 , -1.3846481 , -1.3846481 , -1.15263124, -1.15263124,
-1.15263124, -1.15263124, -0.90932231, -0.90932231, -0.90932231,
-0.90932231, -0.6608509 , -0.6608509 , -0.6608509 , -0.6608509 ,
-0.41335342, -0.41335342, -0.41335342, -0.41335342, -0.16579062,
-0.16579062, -0.16579062, -0.16579062, 0.16579062, 0.16579062,
0.16579062, 0.16579062, 0.41335342, 0.41335342, 0.41335342,
0.41335342, 0.6608509 , 0.6608509 , 0.6608509 , 0.6608509 ,
0.90932231, 0.90932231, 0.90932231, 0.90932231, 1.15263124,
1.15263124, 1.15263124, 1.15263124, 1.3846481 , 1.3846481 ,
1.3846481 , 1.3846481 , 1.59538283, 1.59538283, 1.59538283,
1.59538283, 1.76657936, 1.76657936, 1.76657936, 1.76657936,
1.8802642 , 1.8802642 , 1.8802642 , 1.8802642 , 1.94507807,
1.94507807, 1.94507807, 1.94507807, 1.97783629, 1.97783629,
1.97783629, 1.97783629, 1.99221523, 1.99221523, 1.99221523,
1.99221523, 1.99762886, 1.99762886, 1.99762886, 1.99762886,
1.99937283, 1.99937283, 1.99937283, 1.99937283, 1.99985541,
1.99985541, 1.99985541, 1.99985541, 1.99997083, 1.99997083,
1.99997083, 1.99997083, 1.99999483, 1.99999483, 1.99999483,
1.99999483, 1.99999919, 1.99999919, 1.99999919, 1.99999919,
1.99999989, 1.99999989, 1.99999989, 1.99999989, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999992, 0.39999992, 0.39999992,
0.39999992, 0.3999994 , 0.3999994 , 0.3999994 , 0.3999994 ,
0.39999613, 0.39999613, 0.39999613, 0.39999613, 0.39997817,
0.39997817, 0.39997817, 0.39997817, 0.39989181, 0.39989181,
0.39989181, 0.39989181, 0.39953094, 0.39953094, 0.39953094,
0.39953094, 0.39822935, 0.39822935, 0.39822935, 0.39822935,
0.39421346, 0.39421346, 0.39421346, 0.39421346, 0.38372292,
0.38372292, 0.38372292, 0.38372292, 0.36074975, 0.36074975,
0.36074975, 0.36074975, 0.31885934, 0.31885934, 0.31885934,
0.31885934, 0.25467937, 0.25467937, 0.25467937, 0.25467937,
0.17819705, 0.17819705, 0.17819705, 0.17819705, 0.11737308,
0.11737308, 0.11737308, 0.11737308, 0.07607236, 0.07607236,
0.07607236, 0.07607236, 0.04988617, 0.04988617, 0.04988617,
0.04988617, 0.03394821, 0.03394821, 0.03394821, 0.03394821,
0.02484589, 0.02484589, 0.02484589, 0.02484589, 0.02055858,
0.02055858, 0.02055858, 0.02055858, 0.02055858, 0.02055858,
0.02055858, 0.02055858, 0.02484589, 0.02484589, 0.02484589,
0.02484589, 0.03394821, 0.03394821, 0.03394821, 0.03394821,
0.04988617, 0.04988617, 0.04988617, 0.04988617, 0.07607236,
0.07607236, 0.07607236, 0.07607236, 0.11737308, 0.11737308,
0.11737308, 0.11737308, 0.17819705, 0.17819705, 0.17819705,
0.17819705, 0.25467937, 0.25467937, 0.25467937, 0.25467937,
0.31885934, 0.31885934, 0.31885934, 0.31885934, 0.36074975,
0.36074975, 0.36074975, 0.36074975, 0.38372292, 0.38372292,
0.38372292, 0.38372292, 0.39421346, 0.39421346, 0.39421346,
0.39421346, 0.39822935, 0.39822935, 0.39822935, 0.39822935,
0.39953094, 0.39953094, 0.39953094, 0.39953094, 0.39989181,
0.39989181, 0.39989181, 0.39989181, 0.39997817, 0.39997817,
0.39997817, 0.39997817, 0.39999613, 0.39999613, 0.39999613,
0.39999613, 0.3999994 , 0.3999994 , 0.3999994 , 0.3999994 ,
0.39999992, 0.39999992, 0.39999992, 0.39999992, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999987, 0.99999987,
0.99999987, 0.99999987, 0.99999909, 0.99999909, 0.99999909,
0.99999909, 0.99999442, 0.99999442, 0.99999442, 0.99999442,
0.99996944, 0.99996944, 0.99996944, 0.99996944, 0.99985168,
0.99985168, 0.99985168, 0.99985168, 0.99936346, 0.99936346,
0.99936346, 0.99936346, 0.99759219, 0.99759219, 0.99759219,
0.99759219, 0.99200342, 0.99200342, 0.99200342, 0.99200342,
0.9767769 , 0.9767769 , 0.9767769 , 0.9767769 , 0.9412236 ,
0.9412236 , 0.9412236 , 0.9412236 , 0.87054386, 0.87054386,
0.87054386, 0.87054386, 0.75130495, 0.75130495, 0.75130495,
0.75130495, 0.57926246, 0.57926246, 0.57926246, 0.57926246,
0.40024973, 0.40024973, 0.40024973, 0.40024973, 0.26645668,
0.26645668, 0.26645668, 0.26645668, 0.17646832, 0.17646832,
0.17646832, 0.17646832, 0.11952627, 0.11952627, 0.11952627,
0.11952627, 0.08529551, 0.08529551, 0.08529551, 0.08529551,
0.06638144, 0.06638144, 0.06638144, 0.06638144, 0.05773675,
0.05773675, 0.05773675, 0.05773675, 0.05773675, 0.05773675,
0.05773675, 0.05773675, 0.06638144, 0.06638144, 0.06638144,
0.06638144, 0.08529551, 0.08529551, 0.08529551, 0.08529551,
0.11952627, 0.11952627, 0.11952627, 0.11952627, 0.17646832,
0.17646832, 0.17646832, 0.17646832, 0.26645668, 0.26645668,
0.26645668, 0.26645668, 0.40024973, 0.40024973, 0.40024973,
0.40024973, 0.57926246, 0.57926246, 0.57926246, 0.57926246,
0.75130495, 0.75130495, 0.75130495, 0.75130495, 0.87054386,
0.87054386, 0.87054386, 0.87054386, 0.9412236 , 0.9412236 ,
0.9412236 , 0.9412236 , 0.9767769 , 0.9767769 , 0.9767769 ,
0.9767769 , 0.99200342, 0.99200342, 0.99200342, 0.99200342,
0.99759219, 0.99759219, 0.99759219, 0.99759219, 0.99936346,
0.99936346, 0.99936346, 0.99936346, 0.99985168, 0.99985168,
0.99985168, 0.99985168, 0.99996944, 0.99996944, 0.99996944,
0.99996944, 0.99999442, 0.99999442, 0.99999442, 0.99999442,
0.99999909, 0.99999909, 0.99999909, 0.99999909, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999998, 0.99999998,
0.99999998, 0.99999998, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.9999999 , -1.9999999 ,
-1.9999999 , -1.9999999 , -1.99999932, -1.99999932, -1.99999932,
-1.99999932, -1.99999585, -1.99999585, -1.99999585, -1.99999585,
-1.99997734, -1.99997734, -1.99997734, -1.99997734, -1.99989049,
-1.99989049, -1.99989049, -1.99989049, -1.99953296, -1.99953296,
-1.99953296, -1.99953296, -1.99824897, -1.99824897, -1.99824897,
-1.99824897, -1.99425094, -1.99425094, -1.99425094, -1.99425094,
-1.98350927, -1.98350927, -1.98350927, -1.98350927, -1.95861122,
-1.95861122, -1.95861122, -1.95861122, -1.90841269, -1.90841269,
-1.90841269, -1.90841269, -1.81883102, -1.81883102, -1.81883102,
-1.81883102, -1.67695384, -1.67695384, -1.67695384, -1.67695384,
-1.49066109, -1.49066109, -1.49066109, -1.49066109, -1.27974678,
-1.27974678, -1.27974678, -1.27974678, -1.05626743, -1.05626743,
-1.05626743, -1.05626743, -0.82669042, -0.82669042, -0.82669042,
-0.82669042, -0.59757719, -0.59757719, -0.59757719, -0.59757719,
-0.37196921, -0.37196921, -0.37196921, -0.37196921, -0.14921138,
-0.14921138, -0.14921138, -0.14921138, 0.14921138, 0.14921138,
0.14921138, 0.14921138, 0.37196921, 0.37196921, 0.37196921,
0.37196921, 0.59757719, 0.59757719, 0.59757719, 0.59757719,
0.82669042, 0.82669042, 0.82669042, 0.82669042, 1.05626743,
1.05626743, 1.05626743, 1.05626743, 1.27974678, 1.27974678,
1.27974678, 1.27974678, 1.49066109, 1.49066109, 1.49066109,
1.49066109, 1.67695384, 1.67695384, 1.67695384, 1.67695384,
1.81883102, 1.81883102, 1.81883102, 1.81883102, 1.90841269,
1.90841269, 1.90841269, 1.90841269, 1.95861122, 1.95861122,
1.95861122, 1.95861122, 1.98350927, 1.98350927, 1.98350927,
1.98350927, 1.99425094, 1.99425094, 1.99425094, 1.99425094,
1.99824897, 1.99824897, 1.99824897, 1.99824897, 1.99953296,
1.99953296, 1.99953296, 1.99953296, 1.99989049, 1.99989049,
1.99989049, 1.99989049, 1.99997734, 1.99997734, 1.99997734,
1.99997734, 1.99999585, 1.99999585, 1.99999585, 1.99999585,
1.99999932, 1.99999932, 1.99999932, 1.99999932, 1.9999999 ,
1.9999999 , 1.9999999 , 1.9999999 , 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.39999993, 0.39999993,
0.39999993, 0.39999993, 0.39999949, 0.39999949, 0.39999949,
0.39999949, 0.39999689, 0.39999689, 0.39999689, 0.39999689,
0.39998304, 0.39998304, 0.39998304, 0.39998304, 0.39991806,
0.39991806, 0.39991806, 0.39991806, 0.39965065, 0.39965065,
0.39965065, 0.39965065, 0.39869171, 0.39869171, 0.39869171,
0.39869171, 0.39571932, 0.39571932, 0.39571932, 0.39571932,
0.38783206, 0.38783206, 0.38783206, 0.38783206, 0.37008927,
0.37008927, 0.37008927, 0.37008927, 0.33650467, 0.33650467,
0.33650467, 0.33650467, 0.28304854, 0.28304854, 0.28304854,
0.28304854, 0.21124808, 0.21124808, 0.21124808, 0.21124808,
0.14423471, 0.14423471, 0.14423471, 0.14423471, 0.09564562,
0.09564562, 0.09564562, 0.09564562, 0.06325264, 0.06325264,
0.06325264, 0.06325264, 0.04258376, 0.04258376, 0.04258376,
0.04258376, 0.02981479, 0.02981479, 0.02981479, 0.02981479,
0.02240799, 0.02240799, 0.02240799, 0.02240799, 0.01882236,
0.01882236, 0.01882236, 0.01882236, 0.01882236, 0.01882236,
0.01882236, 0.01882236, 0.02240799, 0.02240799, 0.02240799,
0.02240799, 0.02981479, 0.02981479, 0.02981479, 0.02981479,
0.04258376, 0.04258376, 0.04258376, 0.04258376, 0.06325264,
0.06325264, 0.06325264, 0.06325264, 0.09564562, 0.09564562,
0.09564562, 0.09564562, 0.14423471, 0.14423471, 0.14423471,
0.14423471, 0.21124808, 0.21124808, 0.21124808, 0.21124808,
0.28304854, 0.28304854, 0.28304854, 0.28304854, 0.33650467,
0.33650467, 0.33650467, 0.33650467, 0.37008927, 0.37008927,
0.37008927, 0.37008927, 0.38783206, 0.38783206, 0.38783206,
0.38783206, 0.39571932, 0.39571932, 0.39571932, 0.39571932,
0.39869171, 0.39869171, 0.39869171, 0.39869171, 0.39965065,
0.39965065, 0.39965065, 0.39965065, 0.39991806, 0.39991806,
0.39991806, 0.39991806, 0.39998304, 0.39998304, 0.39998304,
0.39998304, 0.39999689, 0.39999689, 0.39999689, 0.39999689,
0.39999949, 0.39999949, 0.39999949, 0.39999949, 0.39999993,
0.39999993, 0.39999993, 0.39999993, 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999989,
0.99999989, 0.99999989, 0.99999989, 0.99999925, 0.99999925,
0.99999925, 0.99999925, 0.99999556, 0.99999556, 0.99999556,
0.99999556, 0.99997641, 0.99997641, 0.99997641, 0.99997641,
0.99988813, 0.99988813, 0.99988813, 0.99988813, 0.99952767,
0.99952767, 0.99952767, 0.99952767, 0.99822984, 0.99822984,
0.99822984, 0.99822984, 0.99413331, 0.99413331, 0.99413331,
0.99413331, 0.98287358, 0.98287358, 0.98287358, 0.98287358,
0.95611358, 0.95611358, 0.95611358, 0.95611358, 0.90147495,
0.90147495, 0.90147495, 0.90147495, 0.80606099, 0.80606099,
0.80606099, 0.80606099, 0.6629508 , 0.6629508 , 0.6629508 ,
0.6629508 , 0.48526898, 0.48526898, 0.48526898, 0.48526898,
0.33418244, 0.33418244, 0.33418244, 0.33418244, 0.22557052,
0.22557052, 0.22557052, 0.22557052, 0.15279734, 0.15279734,
0.15279734, 0.15279734, 0.10633769, 0.10633769, 0.10633769,
0.10633769, 0.07797773, 0.07797773, 0.07797773, 0.07797773,
0.06207329, 0.06207329, 0.06207329, 0.06207329, 0.05456806,
0.05456806, 0.05456806, 0.05456806, 0.05456806, 0.05456806,
0.05456806, 0.05456806, 0.06207329, 0.06207329, 0.06207329,
0.06207329, 0.07797773, 0.07797773, 0.07797773, 0.07797773,
0.10633769, 0.10633769, 0.10633769, 0.10633769, 0.15279734,
0.15279734, 0.15279734, 0.15279734, 0.22557052, 0.22557052,
0.22557052, 0.22557052, 0.33418244, 0.33418244, 0.33418244,
0.33418244, 0.48526898, 0.48526898, 0.48526898, 0.48526898,
0.6629508 , 0.6629508 , 0.6629508 , 0.6629508 , 0.80606099,
0.80606099, 0.80606099, 0.80606099, 0.90147495, 0.90147495,
0.90147495, 0.90147495, 0.95611358, 0.95611358, 0.95611358,
0.95611358, 0.98287358, 0.98287358, 0.98287358, 0.98287358,
0.99413331, 0.99413331, 0.99413331, 0.99413331, 0.99822984,
0.99822984, 0.99822984, 0.99822984, 0.99952767, 0.99952767,
0.99952767, 0.99952767, 0.99988813, 0.99988813, 0.99988813,
0.99988813, 0.99997641, 0.99997641, 0.99997641, 0.99997641,
0.99999556, 0.99999556, 0.99999556, 0.99999556, 0.99999925,
0.99999925, 0.99999925, 0.99999925, 0.99999989, 0.99999989,
0.99999989, 0.99999989, 0.99999998, 0.99999998, 0.99999998,
0.99999998, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999992,
-1.99999992, -1.99999992, -1.99999992, -1.99999944, -1.99999944,
-1.99999944, -1.99999944, -1.99999669, -1.99999669, -1.99999669,
-1.99999669, -1.99998246, -1.99998246, -1.99998246, -1.99998246,
-1.99991711, -1.99991711, -1.99991711, -1.99991711, -1.99965168,
-1.99965168, -1.99965168, -1.99965168, -1.99870348, -1.99870348,
-1.99870348, -1.99870348, -1.99574184, -1.99574184, -1.99574184,
-1.99574184, -1.98769693, -1.98769693, -1.98769693, -1.98769693,
-1.96872988, -1.96872988, -1.96872988, -1.96872988, -1.92973713,
-1.92973713, -1.92973713, -1.92973713, -1.85887548, -1.85887548,
-1.85887548, -1.85887548, -1.74322835, -1.74322835, -1.74322835,
-1.74322835, -1.58095486, -1.58095486, -1.58095486, -1.58095486,
-1.38977869, -1.38977869, -1.38977869, -1.38977869, -1.18354233,
-1.18354233, -1.18354233, -1.18354233, -0.97008458, -0.97008458,
-0.97008458, -0.97008458, -0.75449891, -0.75449891, -0.75449891,
-0.75449891, -0.54325511, -0.54325511, -0.54325511, -0.54325511,
-0.33655969, -0.33655969, -0.33655969, -0.33655969, -0.13490112,
-0.13490112, -0.13490112, -0.13490112, 0.13490112, 0.13490112,
0.13490112, 0.13490112, 0.33655969, 0.33655969, 0.33655969,
0.33655969, 0.54325511, 0.54325511, 0.54325511, 0.54325511,
0.75449891, 0.75449891, 0.75449891, 0.75449891, 0.97008458,
0.97008458, 0.97008458, 0.97008458, 1.18354233, 1.18354233,
1.18354233, 1.18354233, 1.38977869, 1.38977869, 1.38977869,
1.38977869, 1.58095486, 1.58095486, 1.58095486, 1.58095486,
1.74322835, 1.74322835, 1.74322835, 1.74322835, 1.85887548,
1.85887548, 1.85887548, 1.85887548, 1.92973713, 1.92973713,
1.92973713, 1.92973713, 1.96872988, 1.96872988, 1.96872988,
1.96872988, 1.98769693, 1.98769693, 1.98769693, 1.98769693,
1.99574184, 1.99574184, 1.99574184, 1.99574184, 1.99870348,
1.99870348, 1.99870348, 1.99870348, 1.99965168, 1.99965168,
1.99965168, 1.99965168, 1.99991711, 1.99991711, 1.99991711,
1.99991711, 1.99998246, 1.99998246, 1.99998246, 1.99998246,
1.99999669, 1.99999669, 1.99999669, 1.99999669, 1.99999944,
1.99999944, 1.99999944, 1.99999944, 1.99999992, 1.99999992,
1.99999992, 1.99999992, 1.99999999, 1.99999999, 1.99999999,
1.99999999, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.39999994,
0.39999994, 0.39999994, 0.39999994, 0.39999958, 0.39999958,
0.39999958, 0.39999958, 0.39999752, 0.39999752, 0.39999752,
0.39999752, 0.39998688, 0.39998688, 0.39998688, 0.39998688,
0.39993797, 0.39993797, 0.39993797, 0.39993797, 0.39973943,
0.39973943, 0.39973943, 0.39973943, 0.39903091, 0.39903091,
0.39903091, 0.39903091, 0.3968254 , 0.3968254 , 0.3968254 ,
0.3968254 , 0.3908901 , 0.3908901 , 0.3908901 , 0.3908901 ,
0.37721105, 0.37721105, 0.37721105, 0.37721105, 0.35042673,
0.35042673, 0.35042673, 0.35042673, 0.30601973, 0.30601973,
0.30601973, 0.30601973, 0.2429103 , 0.2429103 , 0.2429103 ,
0.2429103 , 0.17315145, 0.17315145, 0.17315145, 0.17315145,
0.11794307, 0.11794307, 0.11794307, 0.11794307, 0.07926119,
0.07926119, 0.07926119, 0.07926119, 0.05354337, 0.05354337,
0.05354337, 0.05354337, 0.03697472, 0.03697472, 0.03697472,
0.03697472, 0.02657161, 0.02657161, 0.02657161, 0.02657161,
0.02044322, 0.02044322, 0.02044322, 0.02044322, 0.01738792,
0.01738792, 0.01738792, 0.01738792, 0.01738792, 0.01738792,
0.01738792, 0.01738792, 0.02044322, 0.02044322, 0.02044322,
0.02044322, 0.02657161, 0.02657161, 0.02657161, 0.02657161,
0.03697472, 0.03697472, 0.03697472, 0.03697472, 0.05354337,
0.05354337, 0.05354337, 0.05354337, 0.07926119, 0.07926119,
0.07926119, 0.07926119, 0.11794307, 0.11794307, 0.11794307,
0.11794307, 0.17315145, 0.17315145, 0.17315145, 0.17315145,
0.2429103 , 0.2429103 , 0.2429103 , 0.2429103 , 0.30601973,
0.30601973, 0.30601973, 0.30601973, 0.35042673, 0.35042673,
0.35042673, 0.35042673, 0.37721105, 0.37721105, 0.37721105,
0.37721105, 0.3908901 , 0.3908901 , 0.3908901 , 0.3908901 ,
0.3968254 , 0.3968254 , 0.3968254 , 0.3968254 , 0.39903091,
0.39903091, 0.39903091, 0.39903091, 0.39973943, 0.39973943,
0.39973943, 0.39973943, 0.39993797, 0.39993797, 0.39993797,
0.39993797, 0.39998688, 0.39998688, 0.39998688, 0.39998688,
0.39999752, 0.39999752, 0.39999752, 0.39999752, 0.39999958,
0.39999958, 0.39999958, 0.39999958, 0.39999994, 0.39999994,
0.39999994, 0.39999994, 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999939,
0.99999939, 0.99999939, 0.99999939, 0.99999649, 0.99999649,
0.99999649, 0.99999649, 0.99998183, 0.99998183, 0.99998183,
0.99998183, 0.99991558, 0.99991558, 0.99991558, 0.99991558,
0.99964859, 0.99964859, 0.99964859, 0.99964859, 0.99869334,
0.99869334, 0.99869334, 0.99869334, 0.99567568, 0.99567568,
0.99567568, 0.99567568, 0.98731173, 0.98731173, 0.98731173,
0.98731173, 0.96710867, 0.96710867, 0.96710867, 0.96710867,
0.92484524, 0.92484524, 0.92484524, 0.92484524, 0.84862997,
0.84862997, 0.84862997, 0.84862997, 0.73030183, 0.73030183,
0.73030183, 0.73030183, 0.57045438, 0.57045438, 0.57045438,
0.57045438, 0.40816609, 0.40816609, 0.40816609, 0.40816609,
0.28274734, 0.28274734, 0.28274734, 0.28274734, 0.19398103,
0.19398103, 0.19398103, 0.19398103, 0.13432377, 0.13432377,
0.13432377, 0.13432377, 0.09586862, 0.09586862, 0.09586862,
0.09586862, 0.07203503, 0.07203503, 0.07203503, 0.07203503,
0.05845869, 0.05845869, 0.05845869, 0.05845869, 0.05185684,
0.05185684, 0.05185684, 0.05185684, 0.05185684, 0.05185684,
0.05185684, 0.05185684, 0.05845869, 0.05845869, 0.05845869,
0.05845869, 0.07203503, 0.07203503, 0.07203503, 0.07203503,
0.09586862, 0.09586862, 0.09586862, 0.09586862, 0.13432377,
0.13432377, 0.13432377, 0.13432377, 0.19398103, 0.19398103,
0.19398103, 0.19398103, 0.28274734, 0.28274734, 0.28274734,
0.28274734, 0.40816609, 0.40816609, 0.40816609, 0.40816609,
0.57045438, 0.57045438, 0.57045438, 0.57045438, 0.73030183,
0.73030183, 0.73030183, 0.73030183, 0.84862997, 0.84862997,
0.84862997, 0.84862997, 0.92484524, 0.92484524, 0.92484524,
0.92484524, 0.96710867, 0.96710867, 0.96710867, 0.96710867,
0.98731173, 0.98731173, 0.98731173, 0.98731173, 0.99567568,
0.99567568, 0.99567568, 0.99567568, 0.99869334, 0.99869334,
0.99869334, 0.99869334, 0.99964859, 0.99964859, 0.99964859,
0.99964859, 0.99991558, 0.99991558, 0.99991558, 0.99991558,
0.99998183, 0.99998183, 0.99998183, 0.99998183, 0.99999649,
0.99999649, 0.99999649, 0.99999649, 0.99999939, 0.99999939,
0.99999939, 0.99999939, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999999, -1.99999999, -1.99999999, -1.99999999,
-1.99999993, -1.99999993, -1.99999993, -1.99999993, -1.99999954,
-1.99999954, -1.99999954, -1.99999954, -1.99999738, -1.99999738,
-1.99999738, -1.99999738, -1.99998647, -1.99998647, -1.99998647,
-1.99998647, -1.99993728, -1.99993728, -1.99993728, -1.99993728,
-1.99973987, -1.99973987, -1.99973987, -1.99973987, -1.99903782,
-1.99903782, -1.99903782, -1.99903782, -1.99683832, -1.99683832,
-1.99683832, -1.99683832, -1.99080138, -1.99080138, -1.99080138,
-1.99080138, -1.97633249, -1.97633249, -1.97633249, -1.97633249,
-1.94599313, -1.94599313, -1.94599313, -1.94599313, -1.88979468,
-1.88979468, -1.88979468, -1.88979468, -1.79631905, -1.79631905,
-1.79631905, -1.79631905, -1.6576443 , -1.6576443 , -1.6576443 ,
-1.6576443 , -1.48538656, -1.48538656, -1.48538656, -1.48538656,
-1.2953169 , -1.2953169 , -1.2953169 , -1.2953169 , -1.09614182,
-1.09614182, -1.09614182, -1.09614182, -0.89312519, -0.89312519,
-0.89312519, -0.89312519, -0.69159993, -0.69159993, -0.69159993,
-0.69159993, -0.49608761, -0.49608761, -0.49608761, -0.49608761,
-0.30589519, -0.30589519, -0.30589519, -0.30589519, -0.1224437 ,
-0.1224437 , -0.1224437 , -0.1224437 , 0.1224437 , 0.1224437 ,
0.1224437 , 0.1224437 , 0.30589519, 0.30589519, 0.30589519,
0.30589519, 0.49608761, 0.49608761, 0.49608761, 0.49608761,
0.69159993, 0.69159993, 0.69159993, 0.69159993, 0.89312519,
0.89312519, 0.89312519, 0.89312519, 1.09614182, 1.09614182,
1.09614182, 1.09614182, 1.2953169 , 1.2953169 , 1.2953169 ,
1.2953169 , 1.48538656, 1.48538656, 1.48538656, 1.48538656,
1.6576443 , 1.6576443 , 1.6576443 , 1.6576443 , 1.79631905,
1.79631905, 1.79631905, 1.79631905, 1.88979468, 1.88979468,
1.88979468, 1.88979468, 1.94599313, 1.94599313, 1.94599313,
1.94599313, 1.97633249, 1.97633249, 1.97633249, 1.97633249,
1.99080138, 1.99080138, 1.99080138, 1.99080138, 1.99683832,
1.99683832, 1.99683832, 1.99683832, 1.99903782, 1.99903782,
1.99903782, 1.99903782, 1.99973987, 1.99973987, 1.99973987,
1.99973987, 1.99993728, 1.99993728, 1.99993728, 1.99993728,
1.99998647, 1.99998647, 1.99998647, 1.99998647, 1.99999738,
1.99999738, 1.99999738, 1.99999738, 1.99999954, 1.99999954,
1.99999954, 1.99999954, 1.99999993, 1.99999993, 1.99999993,
1.99999993, 1.99999999, 1.99999999, 1.99999999, 1.99999999,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.39999995, 0.39999995, 0.39999995, 0.39999995, 0.39999966,
0.39999966, 0.39999966, 0.39999966, 0.39999804, 0.39999804,
0.39999804, 0.39999804, 0.39998987, 0.39998987, 0.39998987,
0.39998987, 0.39995307, 0.39995307, 0.39995307, 0.39995307,
0.39980539, 0.39980539, 0.39980539, 0.39980539, 0.3992806 ,
0.3992806 , 0.3992806 , 0.3992806 , 0.39764064, 0.39764064,
0.39764064, 0.39764064, 0.39317093, 0.39317093, 0.39317093,
0.39317093, 0.38264177, 0.38264177, 0.38264177, 0.38264177,
0.36137899, 0.36137899, 0.36137899, 0.36137899, 0.32475714,
0.32475714, 0.32475714, 0.32475714, 0.27081681, 0.27081681,
0.27081681, 0.27081681, 0.20299886, 0.20299886, 0.20299886,
0.20299886, 0.14255583, 0.14255583, 0.14255583, 0.14255583,
0.09774256, 0.09774256, 0.09774256, 0.09774256, 0.06676014,
0.06676014, 0.06676014, 0.06676014, 0.0460604 , 0.0460604 ,
0.0460604 , 0.0460604 , 0.03258929, 0.03258929, 0.03258929,
0.03258929, 0.02397966, 0.02397966, 0.02397966, 0.02397966,
0.01882915, 0.01882915, 0.01882915, 0.01882915, 0.01618681,
0.01618681, 0.01618681, 0.01618681, 0.01618681, 0.01618681,
0.01618681, 0.01618681, 0.01882915, 0.01882915, 0.01882915,
0.01882915, 0.02397966, 0.02397966, 0.02397966, 0.02397966,
0.03258929, 0.03258929, 0.03258929, 0.03258929, 0.0460604 ,
0.0460604 , 0.0460604 , 0.0460604 , 0.06676014, 0.06676014,
0.06676014, 0.06676014, 0.09774256, 0.09774256, 0.09774256,
0.09774256, 0.14255583, 0.14255583, 0.14255583, 0.14255583,
0.20299886, 0.20299886, 0.20299886, 0.20299886, 0.27081681,
0.27081681, 0.27081681, 0.27081681, 0.32475714, 0.32475714,
0.32475714, 0.32475714, 0.36137899, 0.36137899, 0.36137899,
0.36137899, 0.38264177, 0.38264177, 0.38264177, 0.38264177,
0.39317093, 0.39317093, 0.39317093, 0.39317093, 0.39764064,
0.39764064, 0.39764064, 0.39764064, 0.3992806 , 0.3992806 ,
0.3992806 , 0.3992806 , 0.39980539, 0.39980539, 0.39980539,
0.39980539, 0.39995307, 0.39995307, 0.39995307, 0.39995307,
0.39998987, 0.39998987, 0.39998987, 0.39998987, 0.39999804,
0.39999804, 0.39999804, 0.39999804, 0.39999966, 0.39999966,
0.39999966, 0.39999966, 0.39999995, 0.39999995, 0.39999995,
0.39999995, 0.39999999, 0.39999999, 0.39999999, 0.39999999,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999992, 0.99999992, 0.99999992, 0.99999992,
0.9999995 , 0.9999995 , 0.9999995 , 0.9999995 , 0.99999723,
0.99999723, 0.99999723, 0.99999723, 0.99998603, 0.99998603,
0.99998603, 0.99998603, 0.99993626, 0.99993626, 0.99993626,
0.99993626, 0.99973797, 0.99973797, 0.99973797, 0.99973797,
0.99903226, 0.99903226, 0.99903226, 0.99903226, 0.99680035,
0.99680035, 0.99680035, 0.99680035, 0.9905648 , 0.9905648 ,
0.9905648 , 0.9905648 , 0.97527455, 0.97527455, 0.97527455,
0.97527455, 0.94256862, 0.94256862, 0.94256862, 0.94256862,
0.88183579, 0.88183579, 0.88183579, 0.88183579, 0.78418099,
0.78418099, 0.78418099, 0.78418099, 0.64735855, 0.64735855,
0.64735855, 0.64735855, 0.48541238, 0.48541238, 0.48541238,
0.48541238, 0.34650377, 0.34650377, 0.34650377, 0.34650377,
0.24248092, 0.24248092, 0.24248092, 0.24248092, 0.1691994 ,
0.1691994 , 0.1691994 , 0.1691994 , 0.11970527, 0.11970527,
0.11970527, 0.11970527, 0.08740499, 0.08740499, 0.08740499,
0.08740499, 0.06712094, 0.06712094, 0.06712094, 0.06712094,
0.05538396, 0.05538396, 0.05538396, 0.05538396, 0.04951554,
0.04951554, 0.04951554, 0.04951554, 0.04951554, 0.04951554,
0.04951554, 0.04951554, 0.05538396, 0.05538396, 0.05538396,
0.05538396, 0.06712094, 0.06712094, 0.06712094, 0.06712094,
0.08740499, 0.08740499, 0.08740499, 0.08740499, 0.11970527,
0.11970527, 0.11970527, 0.11970527, 0.1691994 , 0.1691994 ,
0.1691994 , 0.1691994 , 0.24248092, 0.24248092, 0.24248092,
0.24248092, 0.34650377, 0.34650377, 0.34650377, 0.34650377,
0.48541238, 0.48541238, 0.48541238, 0.48541238, 0.64735855,
0.64735855, 0.64735855, 0.64735855, 0.78418099, 0.78418099,
0.78418099, 0.78418099, 0.88183579, 0.88183579, 0.88183579,
0.88183579, 0.94256862, 0.94256862, 0.94256862, 0.94256862,
0.97527455, 0.97527455, 0.97527455, 0.97527455, 0.9905648 ,
0.9905648 , 0.9905648 , 0.9905648 , 0.99680035, 0.99680035,
0.99680035, 0.99680035, 0.99903226, 0.99903226, 0.99903226,
0.99903226, 0.99973797, 0.99973797, 0.99973797, 0.99973797,
0.99993626, 0.99993626, 0.99993626, 0.99993626, 0.99998603,
0.99998603, 0.99998603, 0.99998603, 0.99999723, 0.99999723,
0.99999723, 0.99999723, 0.9999995 , 0.9999995 , 0.9999995 ,
0.9999995 , 0.99999992, 0.99999992, 0.99999992, 0.99999992,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999999, -1.99999999, -1.99999999,
-1.99999999, -1.99999994, -1.99999994, -1.99999994, -1.99999994,
-1.99999963, -1.99999963, -1.99999963, -1.99999963, -1.99999794,
-1.99999794, -1.99999794, -1.99999794, -1.99998958, -1.99998958,
-1.99998958, -1.99998958, -1.99995256, -1.99995256, -1.99995256,
-1.99995256, -1.99980549, -1.99980549, -1.99980549, -1.99980549,
-1.99928452, -1.99928452, -1.99928452, -1.99928452, -1.99764753,
-1.99764753, -1.99764753, -1.99764753, -1.99311048, -1.99311048,
-1.99311048, -1.99311048, -1.98206428, -1.98206428, -1.98206428,
-1.98206428, -1.95844341, -1.95844341, -1.95844341, -1.95844341,
-1.91379852, -1.91379852, -1.91379852, -1.91379852, -1.83816147,
-1.83816147, -1.83816147, -1.83816147, -1.72200283, -1.72200283,
-1.72200283, -1.72200283, -1.5686055 , -1.5686055 , -1.5686055 ,
-1.5686055 , -1.39383447, -1.39383447, -1.39383447, -1.39383447,
-1.20815672, -1.20815672, -1.20815672, -1.20815672, -1.0169296 ,
-1.0169296 , -1.0169296 , -1.0169296 , -0.82477131, -0.82477131,
-0.82477131, -0.82477131, -0.6364046 , -0.6364046 , -0.6364046 ,
-0.6364046 , -0.4547917 , -0.4547917 , -0.4547917 , -0.4547917 ,
-0.2790745 , -0.2790745 , -0.2790745 , -0.2790745 , -0.11151766,
-0.11151766, -0.11151766, -0.11151766, 0.11151766, 0.11151766,
0.11151766, 0.11151766, 0.2790745 , 0.2790745 , 0.2790745 ,
0.2790745 , 0.4547917 , 0.4547917 , 0.4547917 , 0.4547917 ,
0.6364046 , 0.6364046 , 0.6364046 , 0.6364046 , 0.82477131,
0.82477131, 0.82477131, 0.82477131, 1.0169296 , 1.0169296 ,
1.0169296 , 1.0169296 , 1.20815672, 1.20815672, 1.20815672,
1.20815672, 1.39383447, 1.39383447, 1.39383447, 1.39383447,
1.5686055 , 1.5686055 , 1.5686055 , 1.5686055 , 1.72200283,
1.72200283, 1.72200283, 1.72200283, 1.83816147, 1.83816147,
1.83816147, 1.83816147, 1.91379852, 1.91379852, 1.91379852,
1.91379852, 1.95844341, 1.95844341, 1.95844341, 1.95844341,
1.98206428, 1.98206428, 1.98206428, 1.98206428, 1.99311048,
1.99311048, 1.99311048, 1.99311048, 1.99764753, 1.99764753,
1.99764753, 1.99764753, 1.99928452, 1.99928452, 1.99928452,
1.99928452, 1.99980549, 1.99980549, 1.99980549, 1.99980549,
1.99995256, 1.99995256, 1.99995256, 1.99995256, 1.99998958,
1.99998958, 1.99998958, 1.99998958, 1.99999794, 1.99999794,
1.99999794, 1.99999794, 1.99999963, 1.99999963, 1.99999963,
1.99999963, 1.99999994, 1.99999994, 1.99999994, 1.99999994,
1.99999999, 1.99999999, 1.99999999, 1.99999999, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.39999995, 0.39999995, 0.39999995, 0.39999995,
0.39999972, 0.39999972, 0.39999972, 0.39999972, 0.39999845,
0.39999845, 0.39999845, 0.39999845, 0.3999922 , 0.3999922 ,
0.3999922 , 0.3999922 , 0.3999645 , 0.3999645 , 0.3999645 ,
0.3999645 , 0.39985447, 0.39985447, 0.39985447, 0.39985447,
0.39946494, 0.39946494, 0.39946494, 0.39946494, 0.39824326,
0.39824326, 0.39824326, 0.39824326, 0.39487515, 0.39487515,
0.39487515, 0.39487515, 0.38678213, 0.38678213, 0.38678213,
0.38678213, 0.36997261, 0.36997261, 0.36997261, 0.36997261,
0.33997315, 0.33997315, 0.33997315, 0.33997315, 0.29399724,
0.29399724, 0.29399724, 0.29399724, 0.23259591, 0.23259591,
0.23259591, 0.23259591, 0.16883656, 0.16883656, 0.16883656,
0.16883656, 0.1184801 , 0.1184801 , 0.1184801 , 0.1184801 ,
0.08215271, 0.08215271, 0.08215271, 0.08215271, 0.05707693,
0.05707693, 0.05707693, 0.05707693, 0.04021806, 0.04021806,
0.04021806, 0.04021806, 0.02909278, 0.02909278, 0.02909278,
0.02909278, 0.02186882, 0.02186882, 0.02186882, 0.02186882,
0.01748226, 0.01748226, 0.01748226, 0.01748226, 0.01516957,
0.01516957, 0.01516957, 0.01516957, 0.01516957, 0.01516957,
0.01516957, 0.01516957, 0.01748226, 0.01748226, 0.01748226,
0.01748226, 0.02186882, 0.02186882, 0.02186882, 0.02186882,
0.02909278, 0.02909278, 0.02909278, 0.02909278, 0.04021806,
0.04021806, 0.04021806, 0.04021806, 0.05707693, 0.05707693,
0.05707693, 0.05707693, 0.08215271, 0.08215271, 0.08215271,
0.08215271, 0.1184801 , 0.1184801 , 0.1184801 , 0.1184801 ,
0.16883656, 0.16883656, 0.16883656, 0.16883656, 0.23259591,
0.23259591, 0.23259591, 0.23259591, 0.29399724, 0.29399724,
0.29399724, 0.29399724, 0.33997315, 0.33997315, 0.33997315,
0.33997315, 0.36997261, 0.36997261, 0.36997261, 0.36997261,
0.38678213, 0.38678213, 0.38678213, 0.38678213, 0.39487515,
0.39487515, 0.39487515, 0.39487515, 0.39824326, 0.39824326,
0.39824326, 0.39824326, 0.39946494, 0.39946494, 0.39946494,
0.39946494, 0.39985447, 0.39985447, 0.39985447, 0.39985447,
0.3999645 , 0.3999645 , 0.3999645 , 0.3999645 , 0.3999922 ,
0.3999922 , 0.3999922 , 0.3999922 , 0.39999845, 0.39999845,
0.39999845, 0.39999845, 0.39999972, 0.39999972, 0.39999972,
0.39999972, 0.39999995, 0.39999995, 0.39999995, 0.39999995,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999993, 0.99999993, 0.99999993,
0.99999993, 0.9999996 , 0.9999996 , 0.9999996 , 0.9999996 ,
0.99999783, 0.99999783, 0.99999783, 0.99999783, 0.99998928,
0.99998928, 0.99998928, 0.99998928, 0.99995186, 0.99995186,
0.99995186, 0.99995186, 0.99980426, 0.99980426, 0.99980426,
0.99980426, 0.99928131, 0.99928131, 0.99928131, 0.99928131,
0.99762508, 0.99762508, 0.99762508, 0.99762508, 0.99296268,
0.99296268, 0.99296268, 0.99296268, 0.98136837, 0.98136837,
0.98136837, 0.98136837, 0.95605219, 0.95605219, 0.95605219,
0.95605219, 0.90775469, 0.90775469, 0.90775469, 0.90775469,
0.8274799 , 0.8274799 , 0.8274799 , 0.8274799 , 0.71123499,
0.71123499, 0.71123499, 0.71123499, 0.56257394, 0.56257394,
0.56257394, 0.56257394, 0.41482443, 0.41482443, 0.41482443,
0.41482443, 0.29735686, 0.29735686, 0.29735686, 0.29735686,
0.21063026, 0.21063026, 0.21063026, 0.21063026, 0.14950195,
0.14950195, 0.14950195, 0.14950195, 0.10795008, 0.10795008,
0.10795008, 0.10795008, 0.08045076, 0.08045076, 0.08045076,
0.08045076, 0.06299373, 0.06299373, 0.06299373, 0.06299373,
0.05273851, 0.05273851, 0.05273851, 0.05273851, 0.04747753,
0.04747753, 0.04747753, 0.04747753, 0.04747753, 0.04747753,
0.04747753, 0.04747753, 0.05273851, 0.05273851, 0.05273851,
0.05273851, 0.06299373, 0.06299373, 0.06299373, 0.06299373,
0.08045076, 0.08045076, 0.08045076, 0.08045076, 0.10795008,
0.10795008, 0.10795008, 0.10795008, 0.14950195, 0.14950195,
0.14950195, 0.14950195, 0.21063026, 0.21063026, 0.21063026,
0.21063026, 0.29735686, 0.29735686, 0.29735686, 0.29735686,
0.41482443, 0.41482443, 0.41482443, 0.41482443, 0.56257394,
0.56257394, 0.56257394, 0.56257394, 0.71123499, 0.71123499,
0.71123499, 0.71123499, 0.8274799 , 0.8274799 , 0.8274799 ,
0.8274799 , 0.90775469, 0.90775469, 0.90775469, 0.90775469,
0.95605219, 0.95605219, 0.95605219, 0.95605219, 0.98136837,
0.98136837, 0.98136837, 0.98136837, 0.99296268, 0.99296268,
0.99296268, 0.99296268, 0.99762508, 0.99762508, 0.99762508,
0.99762508, 0.99928131, 0.99928131, 0.99928131, 0.99928131,
0.99980426, 0.99980426, 0.99980426, 0.99980426, 0.99995186,
0.99995186, 0.99995186, 0.99995186, 0.99998928, 0.99998928,
0.99998928, 0.99998928, 0.99999783, 0.99999783, 0.99999783,
0.99999783, 0.9999996 , 0.9999996 , 0.9999996 , 0.9999996 ,
0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999999,
0.99999999, 0.99999999, 0.99999999, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999995, -1.99999995, -1.99999995,
-1.99999995, -1.9999997 , -1.9999997 , -1.9999997 , -1.9999997 ,
-1.99999838, -1.99999838, -1.99999838, -1.99999838, -1.999992 ,
-1.999992 , -1.999992 , -1.999992 , -1.99996412, -1.99996412,
-1.99996412, -1.99996412, -1.9998544 , -1.9998544 , -1.9998544 ,
-1.9998544 , -1.99946704, -1.99946704, -1.99946704, -1.99946704,
-1.99824645, -1.99824645, -1.99824645, -1.99824645, -1.99483254,
-1.99483254, -1.99483254, -1.99483254, -1.98639614, -1.98639614,
-1.98639614, -1.98639614, -1.96800734, -1.96800734, -1.96800734,
-1.96800734, -1.93252426, -1.93252426, -1.93252426, -1.93252426,
-1.87126626, -1.87126626, -1.87126626, -1.87126626, -1.7751206 ,
-1.7751206 , -1.7751206 , -1.7751206 , -1.64074768, -1.64074768,
-1.64074768, -1.64074768, -1.48098841, -1.48098841, -1.48098841,
-1.48098841, -1.30798639, -1.30798639, -1.30798639, -1.30798639,
-1.12825891, -1.12825891, -1.12825891, -1.12825891, -0.94534791,
-0.94534791, -0.94534791, -0.94534791, -0.76396357, -0.76396357,
-0.76396357, -0.76396357, -0.58764765, -0.58764765, -0.58764765,
-0.58764765, -0.41836529, -0.41836529, -0.41836529, -0.41836529,
-0.25542058, -0.25542058, -0.25542058, -0.25542058, -0.10187127,
-0.10187127, -0.10187127, -0.10187127, 0.10187127, 0.10187127,
0.10187127, 0.10187127, 0.25542058, 0.25542058, 0.25542058,
0.25542058, 0.41836529, 0.41836529, 0.41836529, 0.41836529,
0.58764765, 0.58764765, 0.58764765, 0.58764765, 0.76396357,
0.76396357, 0.76396357, 0.76396357, 0.94534791, 0.94534791,
0.94534791, 0.94534791, 1.12825891, 1.12825891, 1.12825891,
1.12825891, 1.30798639, 1.30798639, 1.30798639, 1.30798639,
1.48098841, 1.48098841, 1.48098841, 1.48098841, 1.64074768,
1.64074768, 1.64074768, 1.64074768, 1.7751206 , 1.7751206 ,
1.7751206 , 1.7751206 , 1.87126626, 1.87126626, 1.87126626,
1.87126626, 1.93252426, 1.93252426, 1.93252426, 1.93252426,
1.96800734, 1.96800734, 1.96800734, 1.96800734, 1.98639614,
1.98639614, 1.98639614, 1.98639614, 1.99483254, 1.99483254,
1.99483254, 1.99483254, 1.99824645, 1.99824645, 1.99824645,
1.99824645, 1.99946704, 1.99946704, 1.99946704, 1.99946704,
1.9998544 , 1.9998544 , 1.9998544 , 1.9998544 , 1.99996412,
1.99996412, 1.99996412, 1.99996412, 1.999992 , 1.999992 ,
1.999992 , 1.999992 , 1.99999838, 1.99999838, 1.99999838,
1.99999838, 1.9999997 , 1.9999997 , 1.9999997 , 1.9999997 ,
1.99999995, 1.99999995, 1.99999995, 1.99999995, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999996, 0.39999996, 0.39999996,
0.39999996, 0.39999978, 0.39999978, 0.39999978, 0.39999978,
0.39999879, 0.39999879, 0.39999879, 0.39999879, 0.39999401,
0.39999401, 0.39999401, 0.39999401, 0.39997315, 0.39997315,
0.39997315, 0.39997315, 0.39989106, 0.39989106, 0.39989106,
0.39989106, 0.39960137, 0.39960137, 0.39960137, 0.39960137,
0.39868982, 0.39868982, 0.39868982, 0.39868982, 0.39615045,
0.39615045, 0.39615045, 0.39615045, 0.38993783, 0.38993783,
0.38993783, 0.38993783, 0.37669775, 0.37669775, 0.37669775,
0.37669775, 0.35227852, 0.35227852, 0.35227852, 0.35227852,
0.31341098, 0.31341098, 0.31341098, 0.31341098, 0.25954489,
0.25954489, 0.25954489, 0.25954489, 0.19612856, 0.19612856,
0.19612856, 0.19612856, 0.14111015, 0.14111015, 0.14111015,
0.14111015, 0.09961622, 0.09961622, 0.09961622, 0.09961622,
0.06999558, 0.06999558, 0.06999558, 0.06999558, 0.04947879,
0.04947879, 0.04947879, 0.04947879, 0.03558078, 0.03558078,
0.03558078, 0.03558078, 0.02625646, 0.02625646, 0.02625646,
0.02625646, 0.02012156, 0.02012156, 0.02012156, 0.02012156,
0.01634356, 0.01634356, 0.01634356, 0.01634356, 0.01429955,
0.01429955, 0.01429955, 0.01429955, 0.01429955, 0.01429955,
0.01429955, 0.01429955, 0.01634356, 0.01634356, 0.01634356,
0.01634356, 0.02012156, 0.02012156, 0.02012156, 0.02012156,
0.02625646, 0.02625646, 0.02625646, 0.02625646, 0.03558078,
0.03558078, 0.03558078, 0.03558078, 0.04947879, 0.04947879,
0.04947879, 0.04947879, 0.06999558, 0.06999558, 0.06999558,
0.06999558, 0.09961622, 0.09961622, 0.09961622, 0.09961622,
0.14111015, 0.14111015, 0.14111015, 0.14111015, 0.19612856,
0.19612856, 0.19612856, 0.19612856, 0.25954489, 0.25954489,
0.25954489, 0.25954489, 0.31341098, 0.31341098, 0.31341098,
0.31341098, 0.35227852, 0.35227852, 0.35227852, 0.35227852,
0.37669775, 0.37669775, 0.37669775, 0.37669775, 0.38993783,
0.38993783, 0.38993783, 0.38993783, 0.39615045, 0.39615045,
0.39615045, 0.39615045, 0.39868982, 0.39868982, 0.39868982,
0.39868982, 0.39960137, 0.39960137, 0.39960137, 0.39960137,
0.39989106, 0.39989106, 0.39989106, 0.39989106, 0.39997315,
0.39997315, 0.39997315, 0.39997315, 0.39999401, 0.39999401,
0.39999401, 0.39999401, 0.39999879, 0.39999879, 0.39999879,
0.39999879, 0.39999978, 0.39999978, 0.39999978, 0.39999978,
0.39999996, 0.39999996, 0.39999996, 0.39999996, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999968, 0.99999968, 0.99999968,
0.99999968, 0.99999831, 0.99999831, 0.99999831, 0.99999831,
0.99999178, 0.99999178, 0.99999178, 0.99999178, 0.99996362,
0.99996362, 0.99996362, 0.99996362, 0.99985355, 0.99985355,
0.99985355, 0.99985355, 0.99946503, 0.99946503, 0.99946503,
0.99946503, 0.99823265, 0.99823265, 0.99823265, 0.99823265,
0.99473829, 0.99473829, 0.99473829, 0.99473829, 0.98593371,
0.98593371, 0.98593371, 0.98593371, 0.96633684, 0.96633684,
0.96633684, 0.96633684, 0.92800166, 0.92800166, 0.92800166,
0.92800166, 0.86230381, 0.86230381, 0.86230381, 0.86230381,
0.7637657 , 0.7637657 , 0.7637657 , 0.7637657 , 0.63342418,
0.63342418, 0.63342418, 0.63342418, 0.48532735, 0.48532735,
0.48532735, 0.48532735, 0.3572482 , 0.3572482 , 0.3572482 ,
0.3572482 , 0.25800772, 0.25800772, 0.25800772, 0.25800772,
0.18513694, 0.18513694, 0.18513694, 0.18513694, 0.13365751,
0.13365751, 0.13365751, 0.13365751, 0.09833623, 0.09833623,
0.09833623, 0.09833623, 0.07466504, 0.07466504, 0.07466504,
0.07466504, 0.05948054, 0.05948054, 0.05948054, 0.05948054,
0.05044055, 0.05044055, 0.05044055, 0.05044055, 0.04569117,
0.04569117, 0.04569117, 0.04569117, 0.04569117, 0.04569117,
0.04569117, 0.04569117, 0.05044055, 0.05044055, 0.05044055,
0.05044055, 0.05948054, 0.05948054, 0.05948054, 0.05948054,
0.07466504, 0.07466504, 0.07466504, 0.07466504, 0.09833623,
0.09833623, 0.09833623, 0.09833623, 0.13365751, 0.13365751,
0.13365751, 0.13365751, 0.18513694, 0.18513694, 0.18513694,
0.18513694, 0.25800772, 0.25800772, 0.25800772, 0.25800772,
0.3572482 , 0.3572482 , 0.3572482 , 0.3572482 , 0.48532735,
0.48532735, 0.48532735, 0.48532735, 0.63342418, 0.63342418,
0.63342418, 0.63342418, 0.7637657 , 0.7637657 , 0.7637657 ,
0.7637657 , 0.86230381, 0.86230381, 0.86230381, 0.86230381,
0.92800166, 0.92800166, 0.92800166, 0.92800166, 0.96633684,
0.96633684, 0.96633684, 0.96633684, 0.98593371, 0.98593371,
0.98593371, 0.98593371, 0.99473829, 0.99473829, 0.99473829,
0.99473829, 0.99823265, 0.99823265, 0.99823265, 0.99823265,
0.99946503, 0.99946503, 0.99946503, 0.99946503, 0.99985355,
0.99985355, 0.99985355, 0.99985355, 0.99996362, 0.99996362,
0.99996362, 0.99996362, 0.99999178, 0.99999178, 0.99999178,
0.99999178, 0.99999831, 0.99999831, 0.99999831, 0.99999831,
0.99999968, 0.99999968, 0.99999968, 0.99999968, 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.99999999, 0.99999999,
0.99999999, 0.99999999, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.99999996, -1.99999996,
-1.99999996, -1.99999996, -1.99999976, -1.99999976, -1.99999976,
-1.99999976, -1.99999873, -1.99999873, -1.99999873, -1.99999873,
-1.99999386, -1.99999386, -1.99999386, -1.99999386, -1.99997286,
-1.99997286, -1.99997286, -1.99997286, -1.9998909 , -1.9998909 ,
-1.9998909 , -1.9998909 , -1.99960238, -1.99960238, -1.99960238,
-1.99960238, -1.99869083, -1.99869083, -1.99869083, -1.99869083,
-1.99611953, -1.99611953, -1.99611953, -1.99611953, -1.98967558,
-1.98967558, -1.98967558, -1.98967558, -1.97536781, -1.97536781,
-1.97536781, -1.97536781, -1.94718001, -1.94718001, -1.94718001,
-1.94718001, -1.89752562, -1.89752562, -1.89752562, -1.89752562,
-1.81822132, -1.81822132, -1.81822132, -1.81822132, -1.70275847,
-1.70275847, -1.70275847, -1.70275847, -1.55796713, -1.55796713,
-1.55796713, -1.55796713, -1.39732578, -1.39732578, -1.39732578,
-1.39732578, -1.2283551 , -1.2283551 , -1.2283551 , -1.2283551 ,
-1.05514603, -1.05514603, -1.05514603, -1.05514603, -0.8809212 ,
-0.8809212 , -0.8809212 , -0.8809212 , -0.70967418, -0.70967418,
-0.70967418, -0.70967418, -0.54426035, -0.54426035, -0.54426035,
-0.54426035, -0.38602243, -0.38602243, -0.38602243, -0.38602243,
-0.23441347, -0.23441347, -0.23441347, -0.23441347, -0.09330473,
-0.09330473, -0.09330473, -0.09330473, 0.09330473, 0.09330473,
0.09330473, 0.09330473, 0.23441347, 0.23441347, 0.23441347,
0.23441347, 0.38602243, 0.38602243, 0.38602243, 0.38602243,
0.54426035, 0.54426035, 0.54426035, 0.54426035, 0.70967418,
0.70967418, 0.70967418, 0.70967418, 0.8809212 , 0.8809212 ,
0.8809212 , 0.8809212 , 1.05514603, 1.05514603, 1.05514603,
1.05514603, 1.2283551 , 1.2283551 , 1.2283551 , 1.2283551 ,
1.39732578, 1.39732578, 1.39732578, 1.39732578, 1.55796713,
1.55796713, 1.55796713, 1.55796713, 1.70275847, 1.70275847,
1.70275847, 1.70275847, 1.81822132, 1.81822132, 1.81822132,
1.81822132, 1.89752562, 1.89752562, 1.89752562, 1.89752562,
1.94718001, 1.94718001, 1.94718001, 1.94718001, 1.97536781,
1.97536781, 1.97536781, 1.97536781, 1.98967558, 1.98967558,
1.98967558, 1.98967558, 1.99611953, 1.99611953, 1.99611953,
1.99611953, 1.99869083, 1.99869083, 1.99869083, 1.99869083,
1.99960238, 1.99960238, 1.99960238, 1.99960238, 1.9998909 ,
1.9998909 , 1.9998909 , 1.9998909 , 1.99997286, 1.99997286,
1.99997286, 1.99997286, 1.99999386, 1.99999386, 1.99999386,
1.99999386, 1.99999873, 1.99999873, 1.99999873, 1.99999873,
1.99999976, 1.99999976, 1.99999976, 1.99999976, 1.99999996,
1.99999996, 1.99999996, 1.99999996, 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.39999982, 0.39999982, 0.39999982,
0.39999982, 0.39999905, 0.39999905, 0.39999905, 0.39999905,
0.39999541, 0.39999541, 0.39999541, 0.39999541, 0.39997969,
0.39997969, 0.39997969, 0.39997969, 0.39991836, 0.39991836,
0.39991836, 0.39991836, 0.39970256, 0.39970256, 0.39970256,
0.39970256, 0.39902146, 0.39902146, 0.39902146, 0.39902146,
0.39710599, 0.39710599, 0.39710599, 0.39710599, 0.39234224,
0.39234224, 0.39234224, 0.39234224, 0.38194788, 0.38194788,
0.38194788, 0.38194788, 0.36218582, 0.36218582, 0.36218582,
0.36218582, 0.32957587, 0.32957587, 0.32957587, 0.32957587,
0.28277833, 0.28277833, 0.28277833, 0.28277833, 0.22349797,
0.22349797, 0.22349797, 0.22349797, 0.16521855, 0.16521855,
0.16521855, 0.16521855, 0.11894933, 0.11894933, 0.11894933,
0.11894933, 0.08476462, 0.08476462, 0.08476462, 0.08476462,
0.06039836, 0.06039836, 0.06039836, 0.06039836, 0.04344652,
0.04344652, 0.04344652, 0.04344652, 0.03183454, 0.03183454,
0.03183454, 0.03183454, 0.02392348, 0.02392348, 0.02392348,
0.02392348, 0.01865463, 0.01865463, 0.01865463, 0.01865463,
0.01537017, 0.01537017, 0.01537017, 0.01537017, 0.01354907,
0.01354907, 0.01354907, 0.01354907, 0.01354907, 0.01354907,
0.01354907, 0.01354907, 0.01537017, 0.01537017, 0.01537017,
0.01537017, 0.01865463, 0.01865463, 0.01865463, 0.01865463,
0.02392348, 0.02392348, 0.02392348, 0.02392348, 0.03183454,
0.03183454, 0.03183454, 0.03183454, 0.04344652, 0.04344652,
0.04344652, 0.04344652, 0.06039836, 0.06039836, 0.06039836,
0.06039836, 0.08476462, 0.08476462, 0.08476462, 0.08476462,
0.11894933, 0.11894933, 0.11894933, 0.11894933, 0.16521855,
0.16521855, 0.16521855, 0.16521855, 0.22349797, 0.22349797,
0.22349797, 0.22349797, 0.28277833, 0.28277833, 0.28277833,
0.28277833, 0.32957587, 0.32957587, 0.32957587, 0.32957587,
0.36218582, 0.36218582, 0.36218582, 0.36218582, 0.38194788,
0.38194788, 0.38194788, 0.38194788, 0.39234224, 0.39234224,
0.39234224, 0.39234224, 0.39710599, 0.39710599, 0.39710599,
0.39710599, 0.39902146, 0.39902146, 0.39902146, 0.39902146,
0.39970256, 0.39970256, 0.39970256, 0.39970256, 0.39991836,
0.39991836, 0.39991836, 0.39991836, 0.39997969, 0.39997969,
0.39997969, 0.39997969, 0.39999541, 0.39999541, 0.39999541,
0.39999541, 0.39999905, 0.39999905, 0.39999905, 0.39999905,
0.39999982, 0.39999982, 0.39999982, 0.39999982, 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999975, 0.99999975,
0.99999975, 0.99999975, 0.99999868, 0.99999868, 0.99999868,
0.99999868, 0.99999371, 0.99999371, 0.99999371, 0.99999371,
0.99997251, 0.99997251, 0.99997251, 0.99997251, 0.99989028,
0.99989028, 0.99989028, 0.99989028, 0.99960101, 0.99960101,
0.99960101, 0.99960101, 0.99868193, 0.99868193, 0.99868193,
0.99868193, 0.99605802, 0.99605802, 0.99605802, 0.99605802,
0.98936469, 0.98936469, 0.98936469, 0.98936469, 0.97419766,
0.97419766, 0.97419766, 0.97419766, 0.94382586, 0.94382586,
0.94382586, 0.94382586, 0.89027011, 0.89027011, 0.89027011,
0.89027011, 0.80722138, 0.80722138, 0.80722138, 0.80722138,
0.69386278, 0.69386278, 0.69386278, 0.69386278, 0.55552979,
0.55552979, 0.55552979, 0.55552979, 0.42047088, 0.42047088,
0.42047088, 0.42047088, 0.31041417, 0.31041417, 0.31041417,
0.31041417, 0.22624719, 0.22624719, 0.22624719, 0.22624719,
0.16451704, 0.16451704, 0.16451704, 0.16451704, 0.12073053,
0.12073053, 0.12073053, 0.12073053, 0.09035898, 0.09035898,
0.09035898, 0.09035898, 0.06979381, 0.06979381, 0.06979381,
0.06979381, 0.05645555, 0.05645555, 0.05645555, 0.05645555,
0.04842794, 0.04842794, 0.04842794, 0.04842794, 0.04411581,
0.04411581, 0.04411581, 0.04411581, 0.04411581, 0.04411581,
0.04411581, 0.04411581, 0.04842794, 0.04842794, 0.04842794,
0.04842794, 0.05645555, 0.05645555, 0.05645555, 0.05645555,
0.06979381, 0.06979381, 0.06979381, 0.06979381, 0.09035898,
0.09035898, 0.09035898, 0.09035898, 0.12073053, 0.12073053,
0.12073053, 0.12073053, 0.16451704, 0.16451704, 0.16451704,
0.16451704, 0.22624719, 0.22624719, 0.22624719, 0.22624719,
0.31041417, 0.31041417, 0.31041417, 0.31041417, 0.42047088,
0.42047088, 0.42047088, 0.42047088, 0.55552979, 0.55552979,
0.55552979, 0.55552979, 0.69386278, 0.69386278, 0.69386278,
0.69386278, 0.80722138, 0.80722138, 0.80722138, 0.80722138,
0.89027011, 0.89027011, 0.89027011, 0.89027011, 0.94382586,
0.94382586, 0.94382586, 0.94382586, 0.97419766, 0.97419766,
0.97419766, 0.97419766, 0.98936469, 0.98936469, 0.98936469,
0.98936469, 0.99605802, 0.99605802, 0.99605802, 0.99605802,
0.99868193, 0.99868193, 0.99868193, 0.99868193, 0.99960101,
0.99960101, 0.99960101, 0.99960101, 0.99989028, 0.99989028,
0.99989028, 0.99989028, 0.99997251, 0.99997251, 0.99997251,
0.99997251, 0.99999371, 0.99999371, 0.99999371, 0.99999371,
0.99999868, 0.99999868, 0.99999868, 0.99999868, 0.99999975,
0.99999975, 0.99999975, 0.99999975, 0.99999996, 0.99999996,
0.99999996, 0.99999996, 0.99999999, 0.99999999, 0.99999999,
0.99999999, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999997,
-1.99999997, -1.99999997, -1.99999997, -1.99999981, -1.99999981,
-1.99999981, -1.99999981, -1.99999901, -1.99999901, -1.99999901,
-1.99999901, -1.9999953 , -1.9999953 , -1.9999953 , -1.9999953 ,
-1.99997947, -1.99997947, -1.99997947, -1.99997947, -1.99991817,
-1.99991817, -1.99991817, -1.99991817, -1.99970295, -1.99970295,
-1.99970295, -1.99970295, -1.99902124, -1.99902124, -1.99902124,
-1.99902124, -1.99708302, -1.99708302, -1.99708302, -1.99708302,
-1.99216124, -1.99216124, -1.99216124, -1.99216124, -1.98103831,
-1.98103831, -1.98103831, -1.98103831, -1.95867062, -1.95867062,
-1.95867062, -1.95867062, -1.91844218, -1.91844218, -1.91844218,
-1.91844218, -1.85300303, -1.85300303, -1.85300303, -1.85300303,
-1.75534443, -1.75534443, -1.75534443, -1.75534443, -1.62587543,
-1.62587543, -1.62587543, -1.62587543, -1.47723802, -1.47723802,
-1.47723802, -1.47723802, -1.31873327, -1.31873327, -1.31873327,
-1.31873327, -1.1548521 , -1.1548521 , -1.1548521 , -1.1548521 ,
-0.98840454, -0.98840454, -0.98840454, -0.98840454, -0.82281519,
-0.82281519, -0.82281519, -0.82281519, -0.66100451, -0.66100451,
-0.66100451, -0.66100451, -0.50540566, -0.50540566, -0.50540566,
-0.50540566, -0.35713663, -0.35713663, -0.35713663, -0.35713663,
-0.21564818, -0.21564818, -0.21564818, -0.21564818, -0.08565761,
-0.08565761, -0.08565761, -0.08565761, 0.08565761, 0.08565761,
0.08565761, 0.08565761, 0.21564818, 0.21564818, 0.21564818,
0.21564818, 0.35713663, 0.35713663, 0.35713663, 0.35713663,
0.50540566, 0.50540566, 0.50540566, 0.50540566, 0.66100451,
0.66100451, 0.66100451, 0.66100451, 0.82281519, 0.82281519,
0.82281519, 0.82281519, 0.98840454, 0.98840454, 0.98840454,
0.98840454, 1.1548521 , 1.1548521 , 1.1548521 , 1.1548521 ,
1.31873327, 1.31873327, 1.31873327, 1.31873327, 1.47723802,
1.47723802, 1.47723802, 1.47723802, 1.62587543, 1.62587543,
1.62587543, 1.62587543, 1.75534443, 1.75534443, 1.75534443,
1.75534443, 1.85300303, 1.85300303, 1.85300303, 1.85300303,
1.91844218, 1.91844218, 1.91844218, 1.91844218, 1.95867062,
1.95867062, 1.95867062, 1.95867062, 1.98103831, 1.98103831,
1.98103831, 1.98103831, 1.99216124, 1.99216124, 1.99216124,
1.99216124, 1.99708302, 1.99708302, 1.99708302, 1.99708302,
1.99902124, 1.99902124, 1.99902124, 1.99902124, 1.99970295,
1.99970295, 1.99970295, 1.99970295, 1.99991817, 1.99991817,
1.99991817, 1.99991817, 1.99997947, 1.99997947, 1.99997947,
1.99997947, 1.9999953 , 1.9999953 , 1.9999953 , 1.9999953 ,
1.99999901, 1.99999901, 1.99999901, 1.99999901, 1.99999981,
1.99999981, 1.99999981, 1.99999981, 1.99999997, 1.99999997,
1.99999997, 1.99999997, 1.99999999, 1.99999999, 1.99999999,
1.99999999, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.39999986, 0.39999986,
0.39999986, 0.39999986, 0.39999926, 0.39999926, 0.39999926,
0.39999926, 0.39999648, 0.39999648, 0.39999648, 0.39999648,
0.39998464, 0.39998464, 0.39998464, 0.39998464, 0.39993877,
0.39993877, 0.39993877, 0.39993877, 0.39977777, 0.39977777,
0.39977777, 0.39977777, 0.39926821, 0.39926821, 0.39926821,
0.39926821, 0.39782273, 0.39782273, 0.39782273, 0.39782273,
0.39417358, 0.39417358, 0.39417358, 0.39417358, 0.38603726,
0.38603726, 0.38603726, 0.38603726, 0.37012752, 0.37012752,
0.37012752, 0.37012752, 0.34297519, 0.34297519, 0.34297519,
0.34297519, 0.30254848, 0.30254848, 0.30254848, 0.30254848,
0.24934358, 0.24934358, 0.24934358, 0.24934358, 0.19022025,
0.19022025, 0.19022025, 0.19022025, 0.13990083, 0.13990083,
0.13990083, 0.13990083, 0.10127816, 0.10127816, 0.10127816,
0.10127816, 0.07296711, 0.07296711, 0.07296711, 0.07296711,
0.05273961, 0.05273961, 0.05273961, 0.05273961, 0.03858578,
0.03858578, 0.03858578, 0.03858578, 0.02876121, 0.02876121,
0.02876121, 0.02876121, 0.02197969, 0.02197969, 0.02197969,
0.02197969, 0.01740798, 0.01740798, 0.01740798, 0.01740798,
0.01453013, 0.01453013, 0.01453013, 0.01453013, 0.01289683,
0.01289683, 0.01289683, 0.01289683, 0.01289683, 0.01289683,
0.01289683, 0.01289683, 0.01453013, 0.01453013, 0.01453013,
0.01453013, 0.01740798, 0.01740798, 0.01740798, 0.01740798,
0.02197969, 0.02197969, 0.02197969, 0.02197969, 0.02876121,
0.02876121, 0.02876121, 0.02876121, 0.03858578, 0.03858578,
0.03858578, 0.03858578, 0.05273961, 0.05273961, 0.05273961,
0.05273961, 0.07296711, 0.07296711, 0.07296711, 0.07296711,
0.10127816, 0.10127816, 0.10127816, 0.10127816, 0.13990083,
0.13990083, 0.13990083, 0.13990083, 0.19022025, 0.19022025,
0.19022025, 0.19022025, 0.24934358, 0.24934358, 0.24934358,
0.24934358, 0.30254848, 0.30254848, 0.30254848, 0.30254848,
0.34297519, 0.34297519, 0.34297519, 0.34297519, 0.37012752,
0.37012752, 0.37012752, 0.37012752, 0.38603726, 0.38603726,
0.38603726, 0.38603726, 0.39417358, 0.39417358, 0.39417358,
0.39417358, 0.39782273, 0.39782273, 0.39782273, 0.39782273,
0.39926821, 0.39926821, 0.39926821, 0.39926821, 0.39977777,
0.39977777, 0.39977777, 0.39977777, 0.39993877, 0.39993877,
0.39993877, 0.39993877, 0.39998464, 0.39998464, 0.39998464,
0.39998464, 0.39999648, 0.39999648, 0.39999648, 0.39999648,
0.39999926, 0.39999926, 0.39999926, 0.39999926, 0.39999986,
0.39999986, 0.39999986, 0.39999986, 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.9999998 ,
0.9999998 , 0.9999998 , 0.9999998 , 0.99999898, 0.99999898,
0.99999898, 0.99999898, 0.99999519, 0.99999519, 0.99999519,
0.99999519, 0.99997921, 0.99997921, 0.99997921, 0.99997921,
0.9999177 , 0.9999177 , 0.9999177 , 0.9999177 , 0.99970193,
0.99970193, 0.99970193, 0.99970193, 0.99901521, 0.99901521,
0.99901521, 0.99901521, 0.99704189, 0.99704189, 0.99704189,
0.99704189, 0.99194959, 0.99194959, 0.99194959, 0.99194959,
0.98021521, 0.98021521, 0.98021521, 0.98021521, 0.95619655,
0.95619655, 0.95619655, 0.95619655, 0.91269691, 0.91269691,
0.91269691, 0.91269691, 0.84311018, 0.84311018, 0.84311018,
0.84311018, 0.74475779, 0.74475779, 0.74475779, 0.74475779,
0.62086525, 0.62086525, 0.62086525, 0.62086525, 0.4851469 ,
0.4851469 , 0.4851469 , 0.4851469 , 0.36665175, 0.36665175,
0.36665175, 0.36665175, 0.27218245, 0.27218245, 0.27218245,
0.27218245, 0.20036728, 0.20036728, 0.20036728, 0.20036728,
0.14766957, 0.14766957, 0.14766957, 0.14766957, 0.11004216,
0.11004216, 0.11004216, 0.11004216, 0.08365907, 0.08365907,
0.08365907, 0.08365907, 0.06564286, 0.06564286, 0.06564286,
0.06564286, 0.05382506, 0.05382506, 0.05382506, 0.05382506,
0.04665258, 0.04665258, 0.04665258, 0.04665258, 0.04271899,
0.04271899, 0.04271899, 0.04271899, 0.04271899, 0.04271899,
0.04271899, 0.04271899, 0.04665258, 0.04665258, 0.04665258,
0.04665258, 0.05382506, 0.05382506, 0.05382506, 0.05382506,
0.06564286, 0.06564286, 0.06564286, 0.06564286, 0.08365907,
0.08365907, 0.08365907, 0.08365907, 0.11004216, 0.11004216,
0.11004216, 0.11004216, 0.14766957, 0.14766957, 0.14766957,
0.14766957, 0.20036728, 0.20036728, 0.20036728, 0.20036728,
0.27218245, 0.27218245, 0.27218245, 0.27218245, 0.36665175,
0.36665175, 0.36665175, 0.36665175, 0.4851469 , 0.4851469 ,
0.4851469 , 0.4851469 , 0.62086525, 0.62086525, 0.62086525,
0.62086525, 0.74475779, 0.74475779, 0.74475779, 0.74475779,
0.84311018, 0.84311018, 0.84311018, 0.84311018, 0.91269691,
0.91269691, 0.91269691, 0.91269691, 0.95619655, 0.95619655,
0.95619655, 0.95619655, 0.98021521, 0.98021521, 0.98021521,
0.98021521, 0.99194959, 0.99194959, 0.99194959, 0.99194959,
0.99704189, 0.99704189, 0.99704189, 0.99704189, 0.99901521,
0.99901521, 0.99901521, 0.99901521, 0.99970193, 0.99970193,
0.99970193, 0.99970193, 0.9999177 , 0.9999177 , 0.9999177 ,
0.9999177 , 0.99997921, 0.99997921, 0.99997921, 0.99997921,
0.99999519, 0.99999519, 0.99999519, 0.99999519, 0.99999898,
0.99999898, 0.99999898, 0.99999898, 0.9999998 , 0.9999998 ,
0.9999998 , 0.9999998 , 0.99999996, 0.99999996, 0.99999996,
0.99999996, 0.99999999, 0.99999999, 0.99999999, 0.99999999,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-1.99999997, -1.99999997, -1.99999997, -1.99999997, -1.99999985,
-1.99999985, -1.99999985, -1.99999985, -1.99999923, -1.99999923,
-1.99999923, -1.99999923, -1.9999964 , -1.9999964 , -1.9999964 ,
-1.9999964 , -1.99998447, -1.99998447, -1.99998447, -1.99998447,
-1.99993857, -1.99993857, -1.99993857, -1.99993857, -1.9997778 ,
-1.9997778 , -1.9997778 , -1.9997778 , -1.99926735, -1.99926735,
-1.99926735, -1.99926735, -1.99780536, -1.99780536, -1.99780536,
-1.99780536, -1.99404683, -1.99404683, -1.99404683, -1.99404683,
-1.98540873, -1.98540873, -1.98540873, -1.98540873, -1.96768674,
-1.96768674, -1.96768674, -1.96768674, -1.93513433, -1.93513433,
-1.93513433, -1.93513433, -1.88113567, -1.88113567, -1.88113567,
-1.88113567, -1.79913223, -1.79913223, -1.79913223, -1.79913223,
-1.68535351, -1.68535351, -1.68535351, -1.68535351, -1.548809 ,
-1.548809 , -1.548809 , -1.548809 , -1.40030833, -1.40030833,
-1.40030833, -1.40030833, -1.24549729, -1.24549729, -1.24549729,
-1.24549729, -1.08707762, -1.08707762, -1.08707762, -1.08707762,
-0.92766277, -0.92766277, -0.92766277, -0.92766277, -0.77023219,
-0.77023219, -0.77023219, -0.77023219, -0.61716861, -0.61716861,
-0.61716861, -0.61716861, -0.47043739, -0.47043739, -0.47043739,
-0.47043739, -0.33120496, -0.33120496, -0.33120496, -0.33120496,
-0.19880321, -0.19880321, -0.19880321, -0.19880321, -0.07879987,
-0.07879987, -0.07879987, -0.07879987, 0.07879987, 0.07879987,
0.07879987, 0.07879987, 0.19880321, 0.19880321, 0.19880321,
0.19880321, 0.33120496, 0.33120496, 0.33120496, 0.33120496,
0.47043739, 0.47043739, 0.47043739, 0.47043739, 0.61716861,
0.61716861, 0.61716861, 0.61716861, 0.77023219, 0.77023219,
0.77023219, 0.77023219, 0.92766277, 0.92766277, 0.92766277,
0.92766277, 1.08707762, 1.08707762, 1.08707762, 1.08707762,
1.24549729, 1.24549729, 1.24549729, 1.24549729, 1.40030833,
1.40030833, 1.40030833, 1.40030833, 1.548809 , 1.548809 ,
1.548809 , 1.548809 , 1.68535351, 1.68535351, 1.68535351,
1.68535351, 1.79913223, 1.79913223, 1.79913223, 1.79913223,
1.88113567, 1.88113567, 1.88113567, 1.88113567, 1.93513433,
1.93513433, 1.93513433, 1.93513433, 1.96768674, 1.96768674,
1.96768674, 1.96768674, 1.98540873, 1.98540873, 1.98540873,
1.98540873, 1.99404683, 1.99404683, 1.99404683, 1.99404683,
1.99780536, 1.99780536, 1.99780536, 1.99780536, 1.99926735,
1.99926735, 1.99926735, 1.99926735, 1.9997778 , 1.9997778 ,
1.9997778 , 1.9997778 , 1.99993857, 1.99993857, 1.99993857,
1.99993857, 1.99998447, 1.99998447, 1.99998447, 1.99998447,
1.9999964 , 1.9999964 , 1.9999964 , 1.9999964 , 1.99999923,
1.99999923, 1.99999923, 1.99999923, 1.99999985, 1.99999985,
1.99999985, 1.99999985, 1.99999997, 1.99999997, 1.99999997,
1.99999997, 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.39999998, 0.39999998, 0.39999998, 0.39999998, 0.39999989,
0.39999989, 0.39999989, 0.39999989, 0.39999943, 0.39999943,
0.39999943, 0.39999943, 0.39999731, 0.39999731, 0.39999731,
0.39999731, 0.39998838, 0.39998838, 0.39998838, 0.39998838,
0.39995403, 0.39995403, 0.39995403, 0.39995403, 0.39983375,
0.39983375, 0.39983375, 0.39983375, 0.3994521 , 0.3994521 ,
0.3994521 , 0.3994521 , 0.39836087, 0.39836087, 0.39836087,
0.39836087, 0.39556797, 0.39556797, 0.39556797, 0.39556797,
0.38921587, 0.38921587, 0.38921587, 0.38921587, 0.37646798,
0.37646798, 0.37646798, 0.37646798, 0.35401533, 0.35401533,
0.35401533, 0.35401533, 0.31937688, 0.31937688, 0.31937688,
0.31937688, 0.27233327, 0.27233327, 0.27233327, 0.27233327,
0.21553987, 0.21553987, 0.21553987, 0.21553987, 0.16210813,
0.16210813, 0.16210813, 0.16210813, 0.11938562, 0.11938562,
0.11938562, 0.11938562, 0.08712103, 0.08712103, 0.08712103,
0.08712103, 0.06349711, 0.06349711, 0.06349711, 0.06349711,
0.04656451, 0.04656451, 0.04656451, 0.04656451, 0.03461305,
0.03461305, 0.03461305, 0.03461305, 0.0262067 , 0.0262067 ,
0.0262067 , 0.0262067 , 0.02033995, 0.02033995, 0.02033995,
0.02033995, 0.01633725, 0.01633725, 0.01633725, 0.01633725,
0.01379911, 0.01379911, 0.01379911, 0.01379911, 0.01232617,
0.01232617, 0.01232617, 0.01232617, 0.01232617, 0.01232617,
0.01232617, 0.01232617, 0.01379911, 0.01379911, 0.01379911,
0.01379911, 0.01633725, 0.01633725, 0.01633725, 0.01633725,
0.02033995, 0.02033995, 0.02033995, 0.02033995, 0.0262067 ,
0.0262067 , 0.0262067 , 0.0262067 , 0.03461305, 0.03461305,
0.03461305, 0.03461305, 0.04656451, 0.04656451, 0.04656451,
0.04656451, 0.06349711, 0.06349711, 0.06349711, 0.06349711,
0.08712103, 0.08712103, 0.08712103, 0.08712103, 0.11938562,
0.11938562, 0.11938562, 0.11938562, 0.16210813, 0.16210813,
0.16210813, 0.16210813, 0.21553987, 0.21553987, 0.21553987,
0.21553987, 0.27233327, 0.27233327, 0.27233327, 0.27233327,
0.31937688, 0.31937688, 0.31937688, 0.31937688, 0.35401533,
0.35401533, 0.35401533, 0.35401533, 0.37646798, 0.37646798,
0.37646798, 0.37646798, 0.38921587, 0.38921587, 0.38921587,
0.38921587, 0.39556797, 0.39556797, 0.39556797, 0.39556797,
0.39836087, 0.39836087, 0.39836087, 0.39836087, 0.3994521 ,
0.3994521 , 0.3994521 , 0.3994521 , 0.39983375, 0.39983375,
0.39983375, 0.39983375, 0.39995403, 0.39995403, 0.39995403,
0.39995403, 0.39998838, 0.39998838, 0.39998838, 0.39998838,
0.39999731, 0.39999731, 0.39999731, 0.39999731, 0.39999943,
0.39999943, 0.39999943, 0.39999943, 0.39999989, 0.39999989,
0.39999989, 0.39999989, 0.39999998, 0.39999998, 0.39999998,
0.39999998, 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999984, 0.99999984, 0.99999984, 0.99999984, 0.99999921,
0.99999921, 0.99999921, 0.99999921, 0.99999632, 0.99999632,
0.99999632, 0.99999632, 0.99998428, 0.99998428, 0.99998428,
0.99998428, 0.99993821, 0.99993821, 0.99993821, 0.99993821,
0.999777 , 0.999777 , 0.999777 , 0.999777 , 0.99926307,
0.99926307, 0.99926307, 0.99926307, 0.99777717, 0.99777717,
0.99777717, 0.99777717, 0.99390084, 0.99390084, 0.99390084,
0.99390084, 0.98482677, 0.98482677, 0.98482677, 0.98482677,
0.96586705, 0.96586705, 0.96586705, 0.96586705, 0.93065556,
0.93065556, 0.93065556, 0.93065556, 0.87265822, 0.87265822,
0.87265822, 0.87265822, 0.78793454, 0.78793454, 0.78793454,
0.78793454, 0.67801361, 0.67801361, 0.67801361, 0.67801361,
0.54918923, 0.54918923, 0.54918923, 0.54918923, 0.4253138 ,
0.4253138 , 0.4253138 , 0.4253138 , 0.32209197, 0.32209197,
0.32209197, 0.32209197, 0.24076956, 0.24076956, 0.24076956,
0.24076956, 0.17909602, 0.17909602, 0.17909602, 0.17909602,
0.13374278, 0.13374278, 0.13374278, 0.13374278, 0.10109783,
0.10109783, 0.10109783, 0.10109783, 0.0779702 , 0.0779702 ,
0.0779702 , 0.0779702 , 0.06206786, 0.06206786, 0.06206786,
0.06206786, 0.05151796, 0.05151796, 0.05151796, 0.05151796,
0.04507666, 0.04507666, 0.04507666, 0.04507666, 0.04147447,
0.04147447, 0.04147447, 0.04147447, 0.04147447, 0.04147447,
0.04147447, 0.04147447, 0.04507666, 0.04507666, 0.04507666,
0.04507666, 0.05151796, 0.05151796, 0.05151796, 0.05151796,
0.06206786, 0.06206786, 0.06206786, 0.06206786, 0.0779702 ,
0.0779702 , 0.0779702 , 0.0779702 , 0.10109783, 0.10109783,
0.10109783, 0.10109783, 0.13374278, 0.13374278, 0.13374278,
0.13374278, 0.17909602, 0.17909602, 0.17909602, 0.17909602,
0.24076956, 0.24076956, 0.24076956, 0.24076956, 0.32209197,
0.32209197, 0.32209197, 0.32209197, 0.4253138 , 0.4253138 ,
0.4253138 , 0.4253138 , 0.54918923, 0.54918923, 0.54918923,
0.54918923, 0.67801361, 0.67801361, 0.67801361, 0.67801361,
0.78793454, 0.78793454, 0.78793454, 0.78793454, 0.87265822,
0.87265822, 0.87265822, 0.87265822, 0.93065556, 0.93065556,
0.93065556, 0.93065556, 0.96586705, 0.96586705, 0.96586705,
0.96586705, 0.98482677, 0.98482677, 0.98482677, 0.98482677,
0.99390084, 0.99390084, 0.99390084, 0.99390084, 0.99777717,
0.99777717, 0.99777717, 0.99777717, 0.99926307, 0.99926307,
0.99926307, 0.99926307, 0.999777 , 0.999777 , 0.999777 ,
0.999777 , 0.99993821, 0.99993821, 0.99993821, 0.99993821,
0.99998428, 0.99998428, 0.99998428, 0.99998428, 0.99999632,
0.99999632, 0.99999632, 0.99999632, 0.99999921, 0.99999921,
0.99999921, 0.99999921, 0.99999984, 0.99999984, 0.99999984,
0.99999984, 0.99999997, 0.99999997, 0.99999997, 0.99999997,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -1.99999998, -1.99999998, -1.99999998, -1.99999998,
-1.99999988, -1.99999988, -1.99999988, -1.99999988, -1.99999941,
-1.99999941, -1.99999941, -1.99999941, -1.99999725, -1.99999725,
-1.99999725, -1.99999725, -1.99998825, -1.99998825, -1.99998825,
-1.99998825, -1.99995385, -1.99995385, -1.99995385, -1.99995385,
-1.9998336 , -1.9998336 , -1.9998336 , -1.9998336 , -1.99945098,
-1.99945098, -1.99945098, -1.99945098, -1.99834757, -1.99834757,
-1.99834757, -1.99834757, -1.99547801, -1.99547801, -1.99547801,
-1.99547801, -1.98877722, -1.98877722, -1.98877722, -1.98877722,
-1.97476121, -1.97476121, -1.97476121, -1.97476121, -1.94846819,
-1.94846819, -1.94846819, -1.94846819, -1.90395536, -1.90395536,
-1.90395536, -1.90395536, -1.83514393, -1.83514393, -1.83514393,
-1.83514393, -1.73695291, -1.73695291, -1.73695291, -1.73695291,
-1.61276681, -1.61276681, -1.61276681, -1.61276681, -1.47411138,
-1.47411138, -1.47411138, -1.47411138, -1.32789865, -1.32789865,
-1.32789865, -1.32789865, -1.17749415, -1.17749415, -1.17749415,
-1.17749415, -1.02468689, -1.02468689, -1.02468689, -1.02468689,
-0.87230414, -0.87230414, -0.87230414, -0.87230414, -0.72248267,
-0.72248267, -0.72248267, -0.72248267, -0.57751416, -0.57751416,
-0.57751416, -0.57751416, -0.43882441, -0.43882441, -0.43882441,
-0.43882441, -0.30782015, -0.30782015, -0.30782015, -0.30782015,
-0.18361953, -0.18361953, -0.18361953, -0.18361953, -0.07262519,
-0.07262519, -0.07262519, -0.07262519, 0.07262519, 0.07262519,
0.07262519, 0.07262519, 0.18361953, 0.18361953, 0.18361953,
0.18361953, 0.30782015, 0.30782015, 0.30782015, 0.30782015,
0.43882441, 0.43882441, 0.43882441, 0.43882441, 0.57751416,
0.57751416, 0.57751416, 0.57751416, 0.72248267, 0.72248267,
0.72248267, 0.72248267, 0.87230414, 0.87230414, 0.87230414,
0.87230414, 1.02468689, 1.02468689, 1.02468689, 1.02468689,
1.17749415, 1.17749415, 1.17749415, 1.17749415, 1.32789865,
1.32789865, 1.32789865, 1.32789865, 1.47411138, 1.47411138,
1.47411138, 1.47411138, 1.61276681, 1.61276681, 1.61276681,
1.61276681, 1.73695291, 1.73695291, 1.73695291, 1.73695291,
1.83514393, 1.83514393, 1.83514393, 1.83514393, 1.90395536,
1.90395536, 1.90395536, 1.90395536, 1.94846819, 1.94846819,
1.94846819, 1.94846819, 1.97476121, 1.97476121, 1.97476121,
1.97476121, 1.98877722, 1.98877722, 1.98877722, 1.98877722,
1.99547801, 1.99547801, 1.99547801, 1.99547801, 1.99834757,
1.99834757, 1.99834757, 1.99834757, 1.99945098, 1.99945098,
1.99945098, 1.99945098, 1.9998336 , 1.9998336 , 1.9998336 ,
1.9998336 , 1.99995385, 1.99995385, 1.99995385, 1.99995385,
1.99998825, 1.99998825, 1.99998825, 1.99998825, 1.99999725,
1.99999725, 1.99999725, 1.99999725, 1.99999941, 1.99999941,
1.99999941, 1.99999941, 1.99999988, 1.99999988, 1.99999988,
1.99999988, 1.99999998, 1.99999998, 1.99999998, 1.99999998,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.39999998, 0.39999998, 0.39999998, 0.39999998,
0.39999991, 0.39999991, 0.39999991, 0.39999991, 0.39999956,
0.39999956, 0.39999956, 0.39999956, 0.39999794, 0.39999794,
0.39999794, 0.39999794, 0.39999121, 0.39999121, 0.39999121,
0.39999121, 0.39996546, 0.39996546, 0.39996546, 0.39996546,
0.3998755 , 0.3998755 , 0.3998755 , 0.3998755 , 0.39958935,
0.39958935, 0.39958935, 0.39958935, 0.39876524, 0.39876524,
0.39876524, 0.39876524, 0.39662932, 0.39662932, 0.39662932,
0.39662932, 0.39168182, 0.39168182, 0.39168182, 0.39168182,
0.38151098, 0.38151098, 0.38151098, 0.38151098, 0.36306193,
0.36306193, 0.36306193, 0.36306193, 0.33362418, 0.33362418,
0.33362418, 0.33362418, 0.2922219 , 0.2922219 , 0.2922219 ,
0.2922219 , 0.24009531, 0.24009531, 0.24009531, 0.24009531,
0.18518057, 0.18518057, 0.18518057, 0.18518057, 0.13886248,
0.13886248, 0.13886248, 0.13886248, 0.10277415, 0.10277415,
0.10277415, 0.10277415, 0.0756898 , 0.0756898 , 0.0756898 ,
0.0756898 , 0.05582374, 0.05582374, 0.05582374, 0.05582374,
0.04152302, 0.04152302, 0.04152302, 0.04152302, 0.03132411,
0.03132411, 0.03132411, 0.03132411, 0.02405844, 0.02405844,
0.02405844, 0.02405844, 0.01894139, 0.01894139, 0.01894139,
0.01894139, 0.01540908, 0.01540908, 0.01540908, 0.01540908,
0.01315829, 0.01315829, 0.01315829, 0.01315829, 0.01182391,
0.01182391, 0.01182391, 0.01182391, 0.01182391, 0.01182391,
0.01182391, 0.01182391, 0.01315829, 0.01315829, 0.01315829,
0.01315829, 0.01540908, 0.01540908, 0.01540908, 0.01540908,
0.01894139, 0.01894139, 0.01894139, 0.01894139, 0.02405844,
0.02405844, 0.02405844, 0.02405844, 0.03132411, 0.03132411,
0.03132411, 0.03132411, 0.04152302, 0.04152302, 0.04152302,
0.04152302, 0.05582374, 0.05582374, 0.05582374, 0.05582374,
0.0756898 , 0.0756898 , 0.0756898 , 0.0756898 , 0.10277415,
0.10277415, 0.10277415, 0.10277415, 0.13886248, 0.13886248,
0.13886248, 0.13886248, 0.18518057, 0.18518057, 0.18518057,
0.18518057, 0.24009531, 0.24009531, 0.24009531, 0.24009531,
0.2922219 , 0.2922219 , 0.2922219 , 0.2922219 , 0.33362418,
0.33362418, 0.33362418, 0.33362418, 0.36306193, 0.36306193,
0.36306193, 0.36306193, 0.38151098, 0.38151098, 0.38151098,
0.38151098, 0.39168182, 0.39168182, 0.39168182, 0.39168182,
0.39662932, 0.39662932, 0.39662932, 0.39662932, 0.39876524,
0.39876524, 0.39876524, 0.39876524, 0.39958935, 0.39958935,
0.39958935, 0.39958935, 0.3998755 , 0.3998755 , 0.3998755 ,
0.3998755 , 0.39996546, 0.39996546, 0.39996546, 0.39996546,
0.39999121, 0.39999121, 0.39999121, 0.39999121, 0.39999794,
0.39999794, 0.39999794, 0.39999794, 0.39999956, 0.39999956,
0.39999956, 0.39999956, 0.39999991, 0.39999991, 0.39999991,
0.39999991, 0.39999998, 0.39999998, 0.39999998, 0.39999998,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
0.99999938, 0.99999938, 0.99999938, 0.99999938, 0.99999719,
0.99999719, 0.99999719, 0.99999719, 0.99998811, 0.99998811,
0.99998811, 0.99998811, 0.99995357, 0.99995357, 0.99995357,
0.99995357, 0.99983296, 0.99983296, 0.99983296, 0.99983296,
0.99944781, 0.99944781, 0.99944781, 0.99944781, 0.99832778,
0.99832778, 0.99832778, 0.99832778, 0.995376 , 0.995376 ,
0.995376 , 0.995376 , 0.9883634 , 0.9883634 , 0.9883634 ,
0.9883634 , 0.97342446, 0.97342446, 0.97342446, 0.97342446,
0.94501452, 0.94501452, 0.94501452, 0.94501452, 0.89691208,
0.89691208, 0.89691208, 0.89691208, 0.82442705, 0.82442705,
0.82442705, 0.82442705, 0.72711886, 0.72711886, 0.72711886,
0.72711886, 0.60957253, 0.60957253, 0.60957253, 0.60957253,
0.48481294, 0.48481294, 0.48481294, 0.48481294, 0.37491929,
0.37491929, 0.37491929, 0.37491929, 0.2850944 , 0.2850944 ,
0.2850944 , 0.2850944 , 0.2147617 , 0.2147617 , 0.2147617 ,
0.2147617 , 0.16146404, 0.16146404, 0.16146404, 0.16146404,
0.12209872, 0.12209872, 0.12209872, 0.12209872, 0.09352365,
0.09352365, 0.09352365, 0.09352365, 0.07309985, 0.07309985,
0.07309985, 0.07309985, 0.05895984, 0.05895984, 0.05895984,
0.05895984, 0.0494793 , 0.0494793 , 0.0494793 , 0.0494793 ,
0.04366997, 0.04366997, 0.04366997, 0.04366997, 0.04036077,
0.04036077, 0.04036077, 0.04036077, 0.04036077, 0.04036077,
0.04036077, 0.04036077, 0.04366997, 0.04366997, 0.04366997,
0.04366997, 0.0494793 , 0.0494793 , 0.0494793 , 0.0494793 ,
0.05895984, 0.05895984, 0.05895984, 0.05895984, 0.07309985,
0.07309985, 0.07309985, 0.07309985, 0.09352365, 0.09352365,
0.09352365, 0.09352365, 0.12209872, 0.12209872, 0.12209872,
0.12209872, 0.16146404, 0.16146404, 0.16146404, 0.16146404,
0.2147617 , 0.2147617 , 0.2147617 , 0.2147617 , 0.2850944 ,
0.2850944 , 0.2850944 , 0.2850944 , 0.37491929, 0.37491929,
0.37491929, 0.37491929, 0.48481294, 0.48481294, 0.48481294,
0.48481294, 0.60957253, 0.60957253, 0.60957253, 0.60957253,
0.72711886, 0.72711886, 0.72711886, 0.72711886, 0.82442705,
0.82442705, 0.82442705, 0.82442705, 0.89691208, 0.89691208,
0.89691208, 0.89691208, 0.94501452, 0.94501452, 0.94501452,
0.94501452, 0.97342446, 0.97342446, 0.97342446, 0.97342446,
0.9883634 , 0.9883634 , 0.9883634 , 0.9883634 , 0.995376 ,
0.995376 , 0.995376 , 0.995376 , 0.99832778, 0.99832778,
0.99832778, 0.99832778, 0.99944781, 0.99944781, 0.99944781,
0.99944781, 0.99983296, 0.99983296, 0.99983296, 0.99983296,
0.99995357, 0.99995357, 0.99995357, 0.99995357, 0.99998811,
0.99998811, 0.99998811, 0.99998811, 0.99999719, 0.99999719,
0.99999719, 0.99999719, 0.99999938, 0.99999938, 0.99999938,
0.99999938, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -1.99999998, -1.99999998, -1.99999998,
-1.99999998, -1.99999991, -1.99999991, -1.99999991, -1.99999991,
-1.99999954, -1.99999954, -1.99999954, -1.99999954, -1.9999979 ,
-1.9999979 , -1.9999979 , -1.9999979 , -1.99999111, -1.99999111,
-1.99999111, -1.99999111, -1.9999653 , -1.9999653 , -1.9999653 ,
-1.9999653 , -1.99987527, -1.99987527, -1.99987527, -1.99987527,
-1.99958817, -1.99958817, -1.99958817, -1.99958817, -1.99875497,
-1.99875497, -1.99875497, -1.99875497, -1.9965647 , -1.9965647 ,
-1.9965647 , -1.9965647 , -1.99137278, -1.99137278, -1.99137278,
-1.99137278, -1.9803092 , -1.9803092 , -1.9803092 , -1.9803092 ,
-1.95911942, -1.95911942, -1.95911942, -1.95911942, -1.92248902,
-1.92248902, -1.92248902, -1.92248902, -1.86479922, -1.86479922,
-1.86479922, -1.86479922, -1.78093371, -1.78093371, -1.78093371,
-1.78093371, -1.66965519, -1.66965519, -1.66965519, -1.66965519,
-1.54084363, -1.54084363, -1.54084363, -1.54084363, -1.40299425,
-1.40299425, -1.40299425, -1.40299425, -1.26014899, -1.26014899,
-1.26014899, -1.26014899, -1.11439619, -1.11439619, -1.11439619,
-1.11439619, -0.96737508, -0.96737508, -0.96737508, -0.96737508,
-0.82171027, -0.82171027, -0.82171027, -0.82171027, -0.67901436,
-0.67901436, -0.67901436, -0.67901436, -0.54145975, -0.54145975,
-0.54145975, -0.54145975, -0.41012748, -0.41012748, -0.41012748,
-0.41012748, -0.28664905, -0.28664905, -0.28664905, -0.28664905,
-0.16988576, -0.16988576, -0.16988576, -0.16988576, -0.06704588,
-0.06704588, -0.06704588, -0.06704588, 0.06704588, 0.06704588,
0.06704588, 0.06704588, 0.16988576, 0.16988576, 0.16988576,
0.16988576, 0.28664905, 0.28664905, 0.28664905, 0.28664905,
0.41012748, 0.41012748, 0.41012748, 0.41012748, 0.54145975,
0.54145975, 0.54145975, 0.54145975, 0.67901436, 0.67901436,
0.67901436, 0.67901436, 0.82171027, 0.82171027, 0.82171027,
0.82171027, 0.96737508, 0.96737508, 0.96737508, 0.96737508,
1.11439619, 1.11439619, 1.11439619, 1.11439619, 1.26014899,
1.26014899, 1.26014899, 1.26014899, 1.40299425, 1.40299425,
1.40299425, 1.40299425, 1.54084363, 1.54084363, 1.54084363,
1.54084363, 1.66965519, 1.66965519, 1.66965519, 1.66965519,
1.78093371, 1.78093371, 1.78093371, 1.78093371, 1.86479922,
1.86479922, 1.86479922, 1.86479922, 1.92248902, 1.92248902,
1.92248902, 1.92248902, 1.95911942, 1.95911942, 1.95911942,
1.95911942, 1.9803092 , 1.9803092 , 1.9803092 , 1.9803092 ,
1.99137278, 1.99137278, 1.99137278, 1.99137278, 1.9965647 ,
1.9965647 , 1.9965647 , 1.9965647 , 1.99875497, 1.99875497,
1.99875497, 1.99875497, 1.99958817, 1.99958817, 1.99958817,
1.99958817, 1.99987527, 1.99987527, 1.99987527, 1.99987527,
1.9999653 , 1.9999653 , 1.9999653 , 1.9999653 , 1.99999111,
1.99999111, 1.99999111, 1.99999111, 1.9999979 , 1.9999979 ,
1.9999979 , 1.9999979 , 1.99999954, 1.99999954, 1.99999954,
1.99999954, 1.99999991, 1.99999991, 1.99999991, 1.99999991,
1.99999998, 1.99999998, 1.99999998, 1.99999998, 2. ,
2. , 2. , 2. , 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.39999999, 0.39999999, 0.39999999,
0.39999999, 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.39999966, 0.39999966, 0.39999966, 0.39999966, 0.39999843,
0.39999843, 0.39999843, 0.39999843, 0.39999335, 0.39999335,
0.39999335, 0.39999335, 0.39997403, 0.39997403, 0.39997403,
0.39997403, 0.39990667, 0.39990667, 0.39990667, 0.39990667,
0.39969193, 0.39969193, 0.39969193, 0.39969193, 0.39906934,
0.39906934, 0.39906934, 0.39906934, 0.39743694, 0.39743694,
0.39743694, 0.39743694, 0.39359154, 0.39359154, 0.39359154,
0.39359154, 0.3855081 , 0.3855081 , 0.3855081 , 0.3855081 ,
0.37043655, 0.37043655, 0.37043655, 0.37043655, 0.34560898,
0.34560898, 0.34560898, 0.34560898, 0.30947529, 0.30947529,
0.30947529, 0.30947529, 0.26261525, 0.26261525, 0.26261525,
0.26261525, 0.208592 , 0.208592 , 0.208592 , 0.208592 ,
0.15944849, 0.15944849, 0.15944849, 0.15944849, 0.1197856 ,
0.1197856 , 0.1197856 , 0.1197856 , 0.08926176, 0.08926176,
0.08926176, 0.08926176, 0.06637685, 0.06637685, 0.06637685,
0.06637685, 0.04954963, 0.04954963, 0.04954963, 0.04954963,
0.03735614, 0.03735614, 0.03735614, 0.03735614, 0.02856719,
0.02856719, 0.02856719, 0.02856719, 0.02223482, 0.02223482,
0.02223482, 0.02223482, 0.01773686, 0.01773686, 0.01773686,
0.01773686, 0.01459793, 0.01459793, 0.01459793, 0.01459793,
0.01259288, 0.01259288, 0.01259288, 0.01259288, 0.01137947,
0.01137947, 0.01137947, 0.01137947, 0.01137947, 0.01137947,
0.01137947, 0.01137947, 0.01259288, 0.01259288, 0.01259288,
0.01259288, 0.01459793, 0.01459793, 0.01459793, 0.01459793,
0.01773686, 0.01773686, 0.01773686, 0.01773686, 0.02223482,
0.02223482, 0.02223482, 0.02223482, 0.02856719, 0.02856719,
0.02856719, 0.02856719, 0.03735614, 0.03735614, 0.03735614,
0.03735614, 0.04954963, 0.04954963, 0.04954963, 0.04954963,
0.06637685, 0.06637685, 0.06637685, 0.06637685, 0.08926176,
0.08926176, 0.08926176, 0.08926176, 0.1197856 , 0.1197856 ,
0.1197856 , 0.1197856 , 0.15944849, 0.15944849, 0.15944849,
0.15944849, 0.208592 , 0.208592 , 0.208592 , 0.208592 ,
0.26261525, 0.26261525, 0.26261525, 0.26261525, 0.30947529,
0.30947529, 0.30947529, 0.30947529, 0.34560898, 0.34560898,
0.34560898, 0.34560898, 0.37043655, 0.37043655, 0.37043655,
0.37043655, 0.3855081 , 0.3855081 , 0.3855081 , 0.3855081 ,
0.39359154, 0.39359154, 0.39359154, 0.39359154, 0.39743694,
0.39743694, 0.39743694, 0.39743694, 0.39906934, 0.39906934,
0.39906934, 0.39906934, 0.39969193, 0.39969193, 0.39969193,
0.39969193, 0.39990667, 0.39990667, 0.39990667, 0.39990667,
0.39997403, 0.39997403, 0.39997403, 0.39997403, 0.39999335,
0.39999335, 0.39999335, 0.39999335, 0.39999843, 0.39999843,
0.39999843, 0.39999843, 0.39999966, 0.39999966, 0.39999966,
0.39999966, 0.39999993, 0.39999993, 0.39999993, 0.39999993,
0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999952, 0.99999952, 0.99999952, 0.99999952,
0.99999785, 0.99999785, 0.99999785, 0.99999785, 0.999991 ,
0.999991 , 0.999991 , 0.999991 , 0.99996508, 0.99996508,
0.99996508, 0.99996508, 0.99987473, 0.99987473, 0.99987473,
0.99987473, 0.99958576, 0.99958576, 0.99958576, 0.99958576,
0.99874079, 0.99874079, 0.99874079, 0.99874079, 0.99649254,
0.99649254, 0.99649254, 0.99649254, 0.99107677, 0.99107677,
0.99107677, 0.99107677, 0.97932735, 0.97932735, 0.97932735,
0.97932735, 0.95647671, 0.95647671, 0.95647671, 0.95647671,
0.91676303, 0.91676303, 0.91676303, 0.91676303, 0.85513775,
0.85513775, 0.85513775, 0.85513775, 0.76967449, 0.76967449,
0.76967449, 0.76967449, 0.66358127, 0.66358127, 0.66358127,
0.66358127, 0.5434507 , 0.5434507 , 0.5434507 , 0.5434507 ,
0.42945006, 0.42945006, 0.42945006, 0.42945006, 0.33254838,
0.33254838, 0.33254838, 0.33254838, 0.25421441, 0.25421441,
0.25421441, 0.25421441, 0.19307197, 0.19307197, 0.19307197,
0.19307197, 0.14670948, 0.14670948, 0.14670948, 0.14670948,
0.112261 , 0.112261 , 0.112261 , 0.112261 , 0.08704653,
0.08704653, 0.08704653, 0.08704653, 0.06889346, 0.06889346,
0.06889346, 0.06889346, 0.05623531, 0.05623531, 0.05623531,
0.05623531, 0.04766596, 0.04766596, 0.04766596, 0.04766596,
0.04240806, 0.04240806, 0.04240806, 0.04240806, 0.03936017,
0.03936017, 0.03936017, 0.03936017, 0.03936017, 0.03936017,
0.03936017, 0.03936017, 0.04240806, 0.04240806, 0.04240806,
0.04240806, 0.04766596, 0.04766596, 0.04766596, 0.04766596,
0.05623531, 0.05623531, 0.05623531, 0.05623531, 0.06889346,
0.06889346, 0.06889346, 0.06889346, 0.08704653, 0.08704653,
0.08704653, 0.08704653, 0.112261 , 0.112261 , 0.112261 ,
0.112261 , 0.14670948, 0.14670948, 0.14670948, 0.14670948,
0.19307197, 0.19307197, 0.19307197, 0.19307197, 0.25421441,
0.25421441, 0.25421441, 0.25421441, 0.33254838, 0.33254838,
0.33254838, 0.33254838, 0.42945006, 0.42945006, 0.42945006,
0.42945006, 0.5434507 , 0.5434507 , 0.5434507 , 0.5434507 ,
0.66358127, 0.66358127, 0.66358127, 0.66358127, 0.76967449,
0.76967449, 0.76967449, 0.76967449, 0.85513775, 0.85513775,
0.85513775, 0.85513775, 0.91676303, 0.91676303, 0.91676303,
0.91676303, 0.95647671, 0.95647671, 0.95647671, 0.95647671,
0.97932735, 0.97932735, 0.97932735, 0.97932735, 0.99107677,
0.99107677, 0.99107677, 0.99107677, 0.99649254, 0.99649254,
0.99649254, 0.99649254, 0.99874079, 0.99874079, 0.99874079,
0.99874079, 0.99958576, 0.99958576, 0.99958576, 0.99958576,
0.99987473, 0.99987473, 0.99987473, 0.99987473, 0.99996508,
0.99996508, 0.99996508, 0.99996508, 0.999991 , 0.999991 ,
0.999991 , 0.999991 , 0.99999785, 0.99999785, 0.99999785,
0.99999785, 0.99999952, 0.99999952, 0.99999952, 0.99999952,
0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -2. ,
-2. , -2. , -2. , -1.99999999, -1.99999999,
-1.99999999, -1.99999999, -1.99999993, -1.99999993, -1.99999993,
-1.99999993, -1.99999964, -1.99999964, -1.99999964, -1.99999964,
-1.99999839, -1.99999839, -1.99999839, -1.99999839, -1.99999327,
-1.99999327, -1.99999327, -1.99999327, -1.99997389, -1.99997389,
-1.99997389, -1.99997389, -1.99990641, -1.99990641, -1.99990641,
-1.99990641, -1.9996908 , -1.9996908 , -1.9996908 , -1.9996908 ,
-1.99906136, -1.99906136, -1.99906136, -1.99906136, -1.99739004,
-1.99739004, -1.99739004, -1.99739004, -1.99337187, -1.99337187,
-1.99337187, -1.99337187, -1.9846562 , -1.9846562 , -1.9846562 ,
-1.9846562 , -1.96762156, -1.96762156, -1.96762156, -1.96762156,
-1.93754755, -1.93754755, -1.93754755, -1.93754755, -1.88924251,
-1.88924251, -1.88924251, -1.88924251, -1.81781489, -1.81781489,
-1.81781489, -1.81781489, -1.71991447, -1.71991447, -1.71991447,
-1.71991447, -1.60116196, -1.60116196, -1.60116196, -1.60116196,
-1.47144134, -1.47144134, -1.47144134, -1.47144134, -1.3359148 ,
-1.3359148 , -1.3359148 , -1.3359148 , -1.19691932, -1.19691932,
-1.19691932, -1.19691932, -1.05589588, -1.05589588, -1.05589588,
-1.05589588, -0.91470039, -0.91470039, -0.91470039, -0.91470039,
-0.77534663, -0.77534663, -0.77534663, -0.77534663, -0.63931759,
-0.63931759, -0.63931759, -0.63931759, -0.50854933, -0.50854933,
-0.50854933, -0.50854933, -0.3839803 , -0.3839803 , -0.3839803 ,
-0.3839803 , -0.26741646, -0.26741646, -0.26741646, -0.26741646,
-0.1574274 , -0.1574274 , -0.1574274 , -0.1574274 , -0.06198908,
-0.06198908, -0.06198908, -0.06198908, 0.06198908, 0.06198908,
0.06198908, 0.06198908, 0.1574274 , 0.1574274 , 0.1574274 ,
0.1574274 , 0.26741646, 0.26741646, 0.26741646, 0.26741646,
0.3839803 , 0.3839803 , 0.3839803 , 0.3839803 , 0.50854933,
0.50854933, 0.50854933, 0.50854933, 0.63931759, 0.63931759,
0.63931759, 0.63931759, 0.77534663, 0.77534663, 0.77534663,
0.77534663, 0.91470039, 0.91470039, 0.91470039, 0.91470039,
1.05589588, 1.05589588, 1.05589588, 1.05589588, 1.19691932,
1.19691932, 1.19691932, 1.19691932, 1.3359148 , 1.3359148 ,
1.3359148 , 1.3359148 , 1.47144134, 1.47144134, 1.47144134,
1.47144134, 1.60116196, 1.60116196, 1.60116196, 1.60116196,
1.71991447, 1.71991447, 1.71991447, 1.71991447, 1.81781489,
1.81781489, 1.81781489, 1.81781489, 1.88924251, 1.88924251,
1.88924251, 1.88924251, 1.93754755, 1.93754755, 1.93754755,
1.93754755, 1.96762156, 1.96762156, 1.96762156, 1.96762156,
1.9846562 , 1.9846562 , 1.9846562 , 1.9846562 , 1.99337187,
1.99337187, 1.99337187, 1.99337187, 1.99739004, 1.99739004,
1.99739004, 1.99739004, 1.99906136, 1.99906136, 1.99906136,
1.99906136, 1.9996908 , 1.9996908 , 1.9996908 , 1.9996908 ,
1.99990641, 1.99990641, 1.99990641, 1.99990641, 1.99997389,
1.99997389, 1.99997389, 1.99997389, 1.99999327, 1.99999327,
1.99999327, 1.99999327, 1.99999839, 1.99999839, 1.99999839,
1.99999839, 1.99999964, 1.99999964, 1.99999964, 1.99999964,
1.99999993, 1.99999993, 1.99999993, 1.99999993, 1.99999999,
1.99999999, 1.99999999, 1.99999999, 2. , 2. ,
2. , 2. , 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.39999995, 0.39999995, 0.39999995,
0.39999995, 0.39999973, 0.39999973, 0.39999973, 0.39999973,
0.3999988 , 0.3999988 , 0.3999988 , 0.3999988 , 0.39999496,
0.39999496, 0.39999496, 0.39999496, 0.39998046, 0.39998046,
0.39998046, 0.39998046, 0.39992997, 0.39992997, 0.39992997,
0.39992997, 0.39976868, 0.39976868, 0.39976868, 0.39976868,
0.39929817, 0.39929817, 0.39929817, 0.39929817, 0.39805133,
0.39805133, 0.39805133, 0.39805133, 0.39506813, 0.39506813,
0.39506813, 0.39506813, 0.38866612, 0.38866612, 0.38866612,
0.38866612, 0.37641899, 0.37641899, 0.37641899, 0.37641899,
0.35562813, 0.35562813, 0.35562813, 0.35562813, 0.32434966,
0.32434966, 0.32434966, 0.32434966, 0.28247683, 0.28247683,
0.28247683, 0.28247683, 0.23177116, 0.23177116, 0.23177116,
0.23177116, 0.18080242, 0.18080242, 0.18080242, 0.18080242,
0.13798317, 0.13798317, 0.13798317, 0.13798317, 0.10412517,
0.10412517, 0.10412517, 0.10412517, 0.07819326, 0.07819326,
0.07819326, 0.07819326, 0.0587263 , 0.0587263 , 0.0587263 ,
0.0587263 , 0.04436624, 0.04436624, 0.04436624, 0.04436624,
0.03387337, 0.03387337, 0.03387337, 0.03387337, 0.02623154,
0.02623154, 0.02623154, 0.02623154, 0.02067224, 0.02067224,
0.02067224, 0.02067224, 0.01669043, 0.01669043, 0.01669043,
0.01669043, 0.01388395, 0.01388395, 0.01388395, 0.01388395,
0.01209108, 0.01209108, 0.01209108, 0.01209108, 0.01098426,
0.01098426, 0.01098426, 0.01098426, 0.01098426, 0.01098426,
0.01098426, 0.01098426, 0.01209108, 0.01209108, 0.01209108,
0.01209108, 0.01388395, 0.01388395, 0.01388395, 0.01388395,
0.01669043, 0.01669043, 0.01669043, 0.01669043, 0.02067224,
0.02067224, 0.02067224, 0.02067224, 0.02623154, 0.02623154,
0.02623154, 0.02623154, 0.03387337, 0.03387337, 0.03387337,
0.03387337, 0.04436624, 0.04436624, 0.04436624, 0.04436624,
0.0587263 , 0.0587263 , 0.0587263 , 0.0587263 , 0.07819326,
0.07819326, 0.07819326, 0.07819326, 0.10412517, 0.10412517,
0.10412517, 0.10412517, 0.13798317, 0.13798317, 0.13798317,
0.13798317, 0.18080242, 0.18080242, 0.18080242, 0.18080242,
0.23177116, 0.23177116, 0.23177116, 0.23177116, 0.28247683,
0.28247683, 0.28247683, 0.28247683, 0.32434966, 0.32434966,
0.32434966, 0.32434966, 0.35562813, 0.35562813, 0.35562813,
0.35562813, 0.37641899, 0.37641899, 0.37641899, 0.37641899,
0.38866612, 0.38866612, 0.38866612, 0.38866612, 0.39506813,
0.39506813, 0.39506813, 0.39506813, 0.39805133, 0.39805133,
0.39805133, 0.39805133, 0.39929817, 0.39929817, 0.39929817,
0.39929817, 0.39976868, 0.39976868, 0.39976868, 0.39976868,
0.39992997, 0.39992997, 0.39992997, 0.39992997, 0.39998046,
0.39998046, 0.39998046, 0.39998046, 0.39999496, 0.39999496,
0.39999496, 0.39999496, 0.3999988 , 0.3999988 , 0.3999988 ,
0.3999988 , 0.39999973, 0.39999973, 0.39999973, 0.39999973,
0.39999995, 0.39999995, 0.39999995, 0.39999995, 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.4 , 0.4 ,
0.4 , 0.4 , 0.4 , 0.4 , 0.4 ])}, {'rho': array([1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999992, 0.99999992,
0.99999992, 0.99999992, 0.99999963, 0.99999963, 0.99999963,
0.99999963, 0.99999836, 0.99999836, 0.99999836, 0.99999836,
0.99999319, 0.99999319, 0.99999319, 0.99999319, 0.99997372,
0.99997372, 0.99997372, 0.99997372, 0.99990597, 0.99990597,
0.99990597, 0.99990597, 0.99968892, 0.99968892, 0.99968892,
0.99968892, 0.99905101, 0.99905101, 0.99905101, 0.99905101,
0.99733839, 0.99733839, 0.99733839, 0.99733839, 0.99315887,
0.99315887, 0.99315887, 0.99315887, 0.98393456, 0.98393456,
0.98393456, 0.98393456, 0.96561069, 0.96561069, 0.96561069,
0.96561069, 0.9329643 , 0.9329643 , 0.9329643 , 0.9329643 ,
0.88087503, 0.88087503, 0.88087503, 0.88087503, 0.80638656,
0.80638656, 0.80638656, 0.80638656, 0.71079384, 0.71079384,
0.71079384, 0.71079384, 0.59940636, 0.59940636, 0.59940636,
0.59940636, 0.48434368, 0.48434368, 0.48434368, 0.48434368,
0.38219468, 0.38219468, 0.38219468, 0.38219468, 0.29684256,
0.29684256, 0.29684256, 0.29684256, 0.22828342, 0.22828342,
0.22828342, 0.22828342, 0.17485227, 0.17485227, 0.17485227,
0.17485227, 0.13424276, 0.13424276, 0.13424276, 0.13424276,
0.10387026, 0.10387026, 0.10387026, 0.10387026, 0.08145991,
0.08145991, 0.08145991, 0.08145991, 0.06522931, 0.06522931,
0.06522931, 0.06522931, 0.05382942, 0.05382942, 0.05382942,
0.05382942, 0.04604366, 0.04604366, 0.04604366, 0.04604366,
0.0412709 , 0.0412709 , 0.0412709 , 0.0412709 , 0.03845788,
0.03845788, 0.03845788, 0.03845788, 0.03845788, 0.03845788,
0.03845788, 0.03845788, 0.0412709 , 0.0412709 , 0.0412709 ,
0.0412709 , 0.04604366, 0.04604366, 0.04604366, 0.04604366,
0.05382942, 0.05382942, 0.05382942, 0.05382942, 0.06522931,
0.06522931, 0.06522931, 0.06522931, 0.08145991, 0.08145991,
0.08145991, 0.08145991, 0.10387026, 0.10387026, 0.10387026,
0.10387026, 0.13424276, 0.13424276, 0.13424276, 0.13424276,
0.17485227, 0.17485227, 0.17485227, 0.17485227, 0.22828342,
0.22828342, 0.22828342, 0.22828342, 0.29684256, 0.29684256,
0.29684256, 0.29684256, 0.38219468, 0.38219468, 0.38219468,
0.38219468, 0.48434368, 0.48434368, 0.48434368, 0.48434368,
0.59940636, 0.59940636, 0.59940636, 0.59940636, 0.71079384,
0.71079384, 0.71079384, 0.71079384, 0.80638656, 0.80638656,
0.80638656, 0.80638656, 0.88087503, 0.88087503, 0.88087503,
0.88087503, 0.9329643 , 0.9329643 , 0.9329643 , 0.9329643 ,
0.96561069, 0.96561069, 0.96561069, 0.96561069, 0.98393456,
0.98393456, 0.98393456, 0.98393456, 0.99315887, 0.99315887,
0.99315887, 0.99315887, 0.99733839, 0.99733839, 0.99733839,
0.99733839, 0.99905101, 0.99905101, 0.99905101, 0.99905101,
0.99968892, 0.99968892, 0.99968892, 0.99968892, 0.99990597,
0.99990597, 0.99990597, 0.99990597, 0.99997372, 0.99997372,
0.99997372, 0.99997372, 0.99999319, 0.99999319, 0.99999319,
0.99999319, 0.99999836, 0.99999836, 0.99999836, 0.99999836,
0.99999963, 0.99999963, 0.99999963, 0.99999963, 0.99999992,
0.99999992, 0.99999992, 0.99999992, 0.99999999, 0.99999999,
0.99999999, 0.99999999, 1. , 1. , 1. ]), 'vx': array([-2. , -2. , -2. , -2. , -1.99999999,
-1.99999999, -1.99999999, -1.99999999, -1.99999994, -1.99999994,
-1.99999994, -1.99999994, -1.99999973, -1.99999973, -1.99999973,
-1.99999973, -1.99999877, -1.99999877, -1.99999877, -1.99999877,
-1.99999491, -1.99999491, -1.99999491, -1.99999491, -1.99998035,
-1.99998035, -1.99998035, -1.99998035, -1.99992972, -1.99992972,
-1.99992972, -1.99992972, -1.99976766, -1.99976766, -1.99976766,
-1.99976766, -1.99929196, -1.99929196, -1.99929196, -1.99929196,
-1.99801697, -1.99801697, -1.99801697, -1.99801697, -1.9949107 ,
-1.9949107 , -1.9949107 , -1.9949107 , -1.98805831, -1.98805831,
-1.98805831, -1.98805831, -1.97439986, -1.97439986, -1.97439986,
-1.97439986, -1.94977566, -1.94977566, -1.94977566, -1.94977566,
-1.90941203, -1.90941203, -1.90941203, -1.90941203, -1.84866471,
-1.84866471, -1.84866471, -1.84866471, -1.76366311, -1.76366311,
-1.76366311, -1.76366311, -1.65549375, -1.65549375, -1.65549375,
-1.65549375, -1.53389774, -1.53389774, -1.53389774, -1.53389774,
-1.405382 , -1.405382 , -1.405382 , -1.405382 , -1.27292111,
-1.27292111, -1.27292111, -1.27292111, -1.13795294, -1.13795294,
-1.13795294, -1.13795294, -1.00171316, -1.00171316, -1.00171316,
-1.00171316, -0.86617309, -0.86617309, -0.86617309, -0.86617309,
-0.73274404, -0.73274404, -0.73274404, -0.73274404, -0.60294603,
-0.60294603, -0.60294603, -0.60294603, -0.47841029, -0.47841029,
-0.47841029, -0.47841029, -0.36007584, -0.36007584, -0.36007584,
-0.36007584, -0.24989289, -0.24989289, -0.24989289, -0.24989289,
-0.14609889, -0.14609889, -0.14609889, -0.14609889, -0.05739379,
-0.05739379, -0.05739379, -0.05739379, 0.05739379, 0.05739379,
0.05739379, 0.05739379, 0.14609889, 0.14609889, 0.14609889,
0.14609889, 0.24989289, 0.24989289, 0.24989289, 0.24989289,
0.36007584, 0.36007584, 0.36007584, 0.36007584, 0.47841029,
0.47841029, 0.47841029, 0.47841029, 0.60294603, 0.60294603,
0.60294603, 0.60294603, 0.73274404, 0.73274404, 0.73274404,
0.73274404, 0.86617309, 0.86617309, 0.86617309, 0.86617309,
1.00171316, 1.00171316, 1.00171316, 1.00171316, 1.13795294,
1.13795294, 1.13795294, 1.13795294, 1.27292111, 1.27292111,
1.27292111, 1.27292111, 1.405382 , 1.405382 , 1.405382 ,
1.405382 , 1.53389774, 1.53389774, 1.53389774, 1.53389774,
1.65549375, 1.65549375, 1.65549375, 1.65549375, 1.76366311,
1.76366311, 1.76366311, 1.76366311, 1.84866471, 1.84866471,
1.84866471, 1.84866471, 1.90941203, 1.90941203, 1.90941203,
1.90941203, 1.94977566, 1.94977566, 1.94977566, 1.94977566,
1.97439986, 1.97439986, 1.97439986, 1.97439986, 1.98805831,
1.98805831, 1.98805831, 1.98805831, 1.9949107 , 1.9949107 ,
1.9949107 , 1.9949107 , 1.99801697, 1.99801697, 1.99801697,
1.99801697, 1.99929196, 1.99929196, 1.99929196, 1.99929196,
1.99976766, 1.99976766, 1.99976766, 1.99976766, 1.99992972,
1.99992972, 1.99992972, 1.99992972, 1.99998035, 1.99998035,
1.99998035, 1.99998035, 1.99999491, 1.99999491, 1.99999491,
1.99999491, 1.99999877, 1.99999877, 1.99999877, 1.99999877,
1.99999973, 1.99999973, 1.99999973, 1.99999973, 1.99999994,
1.99999994, 1.99999994, 1.99999994, 1.99999999, 1.99999999,
1.99999999, 1.99999999, 2. , 2. , 2. ]), 'P': array([0.4 , 0.4 , 0.4 , 0.4 , 0.39999999,
0.39999999, 0.39999999, 0.39999999, 0.39999996, 0.39999996,
0.39999996, 0.39999996, 0.39999979, 0.39999979, 0.39999979,
0.39999979, 0.39999908, 0.39999908, 0.39999908, 0.39999908,
0.39999619, 0.39999619, 0.39999619, 0.39999619, 0.39998529,
0.39998529, 0.39998529, 0.39998529, 0.39994741, 0.39994741,
0.39994741, 0.39994741, 0.39982617, 0.39982617, 0.39982617,
0.39982617, 0.39947049, 0.39947049, 0.39947049, 0.39947049,
0.39851861, 0.39851861, 0.39851861, 0.39851861, 0.39620818,
0.39620818, 0.39620818, 0.39620818, 0.39115387, 0.39115387,
0.39115387, 0.39115387, 0.38125012, 0.38125012, 0.38125012,
0.38125012, 0.36395394, 0.36395394, 0.36395394, 0.36395394,
0.33709582, 0.33709582, 0.33709582, 0.33709582, 0.29994892,
0.29994892, 0.29994892, 0.29994892, 0.25360165, 0.25360165,
0.25360165, 0.25360165, 0.2025411 , 0.2025411 , 0.2025411 ,
0.2025411 , 0.15714021, 0.15714021, 0.15714021, 0.15714021,
0.12016518, 0.12016518, 0.12016518, 0.12016518, 0.09121302,
0.09121302, 0.09121302, 0.09121302, 0.06905716, 0.06905716,
0.06905716, 0.06905716, 0.05239009, 0.05239009, 0.05239009,
0.05239009, 0.04003804, 0.04003804, 0.04003804, 0.04003804,
0.03093253, 0.03093253, 0.03093253, 0.03093253, 0.02423424,
0.02423424, 0.02423424, 0.02423424, 0.01932145, 0.01932145,
0.01932145, 0.01932145, 0.01577437, 0.01577437, 0.01577437,
0.01577437, 0.01325147, 0.01325147, 0.01325147, 0.01325147,
0.01164337, 0.01164337, 0.01164337, 0.01164337, 0.01063126,
0.01063126, 0.01063126, 0.01063126, 0.01063126, 0.01063126,
0.01063126, 0.01063126, 0.01164337, 0.01164337, 0.01164337,
0.01164337, 0.01325147, 0.01325147, 0.01325147, 0.01325147,
0.01577437, 0.01577437, 0.01577437, 0.01577437, 0.01932145,
0.01932145, 0.01932145, 0.01932145, 0.02423424, 0.02423424,
0.02423424, 0.02423424, 0.03093253, 0.03093253, 0.03093253,
0.03093253, 0.04003804, 0.04003804, 0.04003804, 0.04003804,
0.05239009, 0.05239009, 0.05239009, 0.05239009, 0.06905716,
0.06905716, 0.06905716, 0.06905716, 0.09121302, 0.09121302,
0.09121302, 0.09121302, 0.12016518, 0.12016518, 0.12016518,
0.12016518, 0.15714021, 0.15714021, 0.15714021, 0.15714021,
0.2025411 , 0.2025411 , 0.2025411 , 0.2025411 , 0.25360165,
0.25360165, 0.25360165, 0.25360165, 0.29994892, 0.29994892,
0.29994892, 0.29994892, 0.33709582, 0.33709582, 0.33709582,
0.33709582, 0.36395394, 0.36395394, 0.36395394, 0.36395394,
0.38125012, 0.38125012, 0.38125012, 0.38125012, 0.39115387,
0.39115387, 0.39115387, 0.39115387, 0.39620818, 0.39620818,
0.39620818, 0.39620818, 0.39851861, 0.39851861, 0.39851861,
0.39851861, 0.39947049, 0.39947049, 0.39947049, 0.39947049,
0.39982617, 0.39982617, 0.39982617, 0.39982617, 0.39994741,
0.39994741, 0.39994741, 0.39994741, 0.39998529, 0.39998529,
0.39998529, 0.39998529, 0.39999619, 0.39999619, 0.39999619,
0.39999619, 0.39999908, 0.39999908, 0.39999908, 0.39999908,
0.39999979, 0.39999979, 0.39999979, 0.39999979, 0.39999996,
0.39999996, 0.39999996, 0.39999996, 0.39999999, 0.39999999,
0.39999999, 0.39999999, 0.4 , 0.4 , 0.4 ])}, {'rho': array([0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999972, 0.99999972,
0.99999972, 0.99999972, 0.99999875, 0.99999875, 0.99999875,
0.99999875, 0.99999485, 0.99999485, 0.99999485, 0.99999485,
0.9999802 , 0.9999802 , 0.9999802 , 0.9999802 , 0.99992935,
0.99992935, 0.99992935, 0.99992935, 0.99976618, 0.99976618,
0.99976618, 0.99976618, 0.9992843 , 0.9992843 , 0.9992843 ,
0.9992843 , 0.99797962, 0.99797962, 0.99797962, 0.99797962,
0.99475654, 0.99475654, 0.99475654, 0.99475654, 0.98752732,
0.98752732, 0.98752732, 0.98752732, 0.97287605, 0.97287605,
0.97287605, 0.97287605, 0.94614979, 0.94614979, 0.94614979,
0.94614979, 0.90235853, 0.90235853, 0.90235853, 0.90235853,
0.83788792, 0.83788792, 0.83788792, 0.83788792, 0.75246353,
0.75246353, 0.75246353, 0.75246353, 0.65034201, 0.65034201,
0.65034201, 0.65034201, 0.53834592, 0.53834592, 0.53834592,
0.53834592, 0.43297187, 0.43297187, 0.43297187, 0.43297187,
0.34191758, 0.34191758, 0.34191758, 0.34191758, 0.26662504,
0.26662504, 0.26662504, 0.26662504, 0.20636921, 0.20636921,
0.20636921, 0.20636921, 0.15943395, 0.15943395, 0.15943395,
0.15943395, 0.1236147 , 0.1236147 , 0.1236147 , 0.1236147 ,
0.09665137, 0.09665137, 0.09665137, 0.09665137, 0.07660383,
0.07660383, 0.07660383, 0.07660383, 0.06201277, 0.06201277,
0.06201277, 0.06201277, 0.05169102, 0.05169102, 0.05169102,
0.05169102, 0.04458477, 0.04458477, 0.04458477, 0.04458477,
0.04024194, 0.04024194, 0.04024194, 0.04024194, 0.03764146,
0.03764146, 0.03764146, 0.03764146, 0.03764146, 0.03764146,
0.03764146, 0.03764146, 0.04024194, 0.04024194, 0.04024194,
0.04024194, 0.04458477, 0.04458477, 0.04458477, 0.04458477,
0.05169102, 0.05169102, 0.05169102, 0.05169102, 0.06201277,
0.06201277, 0.06201277, 0.06201277, 0.07660383, 0.07660383,
0.07660383, 0.07660383, 0.09665137, 0.09665137, 0.09665137,
0.09665137, 0.1236147 , 0.1236147 , 0.1236147 , 0.1236147 ,
0.15943395, 0.15943395, 0.15943395, 0.15943395, 0.20636921,
0.20636921, 0.20636921, 0.20636921, 0.26662504, 0.26662504,
0.26662504, 0.26662504, 0.34191758, 0.34191758, 0.34191758,
0.34191758, 0.43297187, 0.43297187, 0.43297187, 0.43297187,
0.53834592, 0.53834592, 0.53834592, 0.53834592, 0.65034201,
0.65034201, 0.65034201, 0.65034201, 0.75246353, 0.75246353,
0.75246353, 0.75246353, 0.83788792, 0.83788792, 0.83788792,
0.83788792, 0.90235853, 0.90235853, 0.90235853, 0.90235853,
0.94614979, 0.94614979, 0.94614979, 0.94614979, 0.97287605,
0.97287605, 0.97287605, 0.97287605, 0.98752732, 0.98752732,
0.98752732, 0.98752732, 0.99475654, 0.99475654, 0.99475654,
0.99475654, 0.99797962, 0.99797962, 0.99797962, 0.99797962,
0.9992843 , 0.9992843 , 0.9992843 , 0.9992843 , 0.99976618,
0.99976618, 0.99976618, 0.99976618, 0.99992935, 0.99992935,
0.99992935, 0.99992935, 0.9999802 , 0.9999802 , 0.9999802 ,
0.9999802 , 0.99999485, 0.99999485, 0.99999485, 0.99999485,
0.99999875, 0.99999875, 0.99999875, 0.99999875, 0.99999972,
0.99999972, 0.99999972, 0.99999972, 0.99999994, 0.99999994,
0.99999994, 0.99999994, 0.99999999, 0.99999999, 0.99999999]), 'vx': array([-1.99999999, -1.99999999, -1.99999999, -1.99999999, -1.99999996,
-1.99999996, -1.99999996, -1.99999996, -1.99999979, -1.99999979,
-1.99999979, -1.99999979, -1.99999906, -1.99999906, -1.99999906,
-1.99999906, -1.99999614, -1.99999614, -1.99999614, -1.99999614,
-1.99998519, -1.99998519, -1.99998519, -1.99998519, -1.99994718,
-1.99994718, -1.99994718, -1.99994718, -1.99982529, -1.99982529,
-1.99982529, -1.99982529, -1.99946564, -1.99946564, -1.99946564,
-1.99946564, -1.99849325, -1.99849325, -1.99849325, -1.99849325,
-1.9960945 , -1.9960945 , -1.9960945 , -1.9960945 , -1.99071753,
-1.99071753, -1.99071753, -1.99071753, -1.97979529, -1.97979529,
-1.97979529, -1.97979529, -1.95969325, -1.95969325, -1.95969325,
-1.95969325, -1.9260533 , -1.9260533 , -1.9260533 , -1.9260533 ,
-1.8744613 , -1.8744613 , -1.8744613 , -1.8744613 , -1.80108753,
-1.80108753, -1.80108753, -1.80108753, -1.70418906, -1.70418906,
-1.70418906, -1.70418906, -1.59086057, -1.59086057, -1.59086057,
-1.59086057, -1.46917595, -1.46917595, -1.46917595, -1.46917595,
-1.34294017, -1.34294017, -1.34294017, -1.34294017, -1.21386875,
-1.21386875, -1.21386875, -1.21386875, -1.0829478 , -1.0829478 ,
-1.0829478 , -1.0829478 , -0.9515668 , -0.9515668 , -0.9515668 ,
-0.9515668 , -0.82136318, -0.82136318, -0.82136318, -0.82136318,
-0.69349483, -0.69349483, -0.69349483, -0.69349483, -0.56951744,
-0.56951744, -0.56951744, -0.56951744, -0.45072611, -0.45072611,
-0.45072611, -0.45072611, -0.33815522, -0.33815522, -0.33815522,
-0.33815522, -0.23388523, -0.23388523, -0.23388523, -0.23388523,
-0.13577758, -0.13577758, -0.13577758, -0.13577758, -0.05320859,
-0.05320859, -0.05320859, -0.05320859, 0.05320859, 0.05320859,
0.05320859, 0.05320859, 0.13577758, 0.13577758, 0.13577758,
0.13577758, 0.23388523, 0.23388523, 0.23388523, 0.23388523,
0.33815522, 0.33815522, 0.33815522, 0.33815522, 0.45072611,
0.45072611, 0.45072611, 0.45072611, 0.56951744, 0.56951744,
0.56951744, 0.56951744, 0.69349483, 0.69349483, 0.69349483,
0.69349483, 0.82136318, 0.82136318, 0.82136318, 0.82136318,
0.9515668 , 0.9515668 , 0.9515668 , 0.9515668 , 1.0829478 ,
1.0829478 , 1.0829478 , 1.0829478 , 1.21386875, 1.21386875,
1.21386875, 1.21386875, 1.34294017, 1.34294017, 1.34294017,
1.34294017, 1.46917595, 1.46917595, 1.46917595, 1.46917595,
1.59086057, 1.59086057, 1.59086057, 1.59086057, 1.70418906,
1.70418906, 1.70418906, 1.70418906, 1.80108753, 1.80108753,
1.80108753, 1.80108753, 1.8744613 , 1.8744613 , 1.8744613 ,
1.8744613 , 1.9260533 , 1.9260533 , 1.9260533 , 1.9260533 ,
1.95969325, 1.95969325, 1.95969325, 1.95969325, 1.97979529,
1.97979529, 1.97979529, 1.97979529, 1.99071753, 1.99071753,
1.99071753, 1.99071753, 1.9960945 , 1.9960945 , 1.9960945 ,
1.9960945 , 1.99849325, 1.99849325, 1.99849325, 1.99849325,
1.99946564, 1.99946564, 1.99946564, 1.99946564, 1.99982529,
1.99982529, 1.99982529, 1.99982529, 1.99994718, 1.99994718,
1.99994718, 1.99994718, 1.99998519, 1.99998519, 1.99998519,
1.99998519, 1.99999614, 1.99999614, 1.99999614, 1.99999614,
1.99999906, 1.99999906, 1.99999906, 1.99999906, 1.99999979,
1.99999979, 1.99999979, 1.99999979, 1.99999996, 1.99999996,
1.99999996, 1.99999996, 1.99999999, 1.99999999, 1.99999999]), 'P': array([0.39999999, 0.39999999, 0.39999999, 0.39999999, 0.39999997,
0.39999997, 0.39999997, 0.39999997, 0.39999984, 0.39999984,
0.39999984, 0.39999984, 0.3999993 , 0.3999993 , 0.3999993 ,
0.3999993 , 0.39999711, 0.39999711, 0.39999711, 0.39999711,
0.39998892, 0.39998892, 0.39998892, 0.39998892, 0.39996047,
0.39996047, 0.39996047, 0.39996047, 0.39986928, 0.39986928,
0.39986928, 0.39986928, 0.39960032, 0.39960032, 0.39960032,
0.39960032, 0.39887394, 0.39887394, 0.39887394, 0.39887394,
0.39708723, 0.39708723, 0.39708723, 0.39708723, 0.39310833,
0.39310833, 0.39310833, 0.39310833, 0.3851351 , 0.3851351 ,
0.3851351 , 0.3851351 , 0.37083367, 0.37083367, 0.37083367,
0.37083367, 0.34794549, 0.34794549, 0.34794549, 0.34794549,
0.31525266, 0.31525266, 0.31525266, 0.31525266, 0.27330886,
0.27330886, 0.27330886, 0.27330886, 0.22430201, 0.22430201,
0.22430201, 0.22430201, 0.17699197, 0.17699197, 0.17699197,
0.17699197, 0.1372282 , 0.1372282 , 0.1372282 , 0.1372282 ,
0.10535854, 0.10535854, 0.10535854, 0.10535854, 0.08050037,
0.08050037, 0.08050037, 0.08050037, 0.06145781, 0.06145781,
0.06145781, 0.06145781, 0.04709924, 0.04709924, 0.04709924,
0.04709924, 0.03638839, 0.03638839, 0.03638839, 0.03638839,
0.02842595, 0.02842595, 0.02842595, 0.02842595, 0.02251183,
0.02251183, 0.02251183, 0.02251183, 0.01814435, 0.01814435,
0.01814435, 0.01814435, 0.01496692, 0.01496692, 0.01496692,
0.01496692, 0.012688 , 0.012688 , 0.012688 , 0.012688 ,
0.011242 , 0.011242 , 0.011242 , 0.011242 , 0.01031464,
0.01031464, 0.01031464, 0.01031464, 0.01031464, 0.01031464,
0.01031464, 0.01031464, 0.011242 , 0.011242 , 0.011242 ,
0.011242 , 0.012688 , 0.012688 , 0.012688 , 0.012688 ,
0.01496692, 0.01496692, 0.01496692, 0.01496692, 0.01814435,
0.01814435, 0.01814435, 0.01814435, 0.02251183, 0.02251183,
0.02251183, 0.02251183, 0.02842595, 0.02842595, 0.02842595,
0.02842595, 0.03638839, 0.03638839, 0.03638839, 0.03638839,
0.04709924, 0.04709924, 0.04709924, 0.04709924, 0.06145781,
0.06145781, 0.06145781, 0.06145781, 0.08050037, 0.08050037,
0.08050037, 0.08050037, 0.10535854, 0.10535854, 0.10535854,
0.10535854, 0.1372282 , 0.1372282 , 0.1372282 , 0.1372282 ,
0.17699197, 0.17699197, 0.17699197, 0.17699197, 0.22430201,
0.22430201, 0.22430201, 0.22430201, 0.27330886, 0.27330886,
0.27330886, 0.27330886, 0.31525266, 0.31525266, 0.31525266,
0.31525266, 0.34794549, 0.34794549, 0.34794549, 0.34794549,
0.37083367, 0.37083367, 0.37083367, 0.37083367, 0.3851351 ,
0.3851351 , 0.3851351 , 0.3851351 , 0.39310833, 0.39310833,
0.39310833, 0.39310833, 0.39708723, 0.39708723, 0.39708723,
0.39708723, 0.39887394, 0.39887394, 0.39887394, 0.39887394,
0.39960032, 0.39960032, 0.39960032, 0.39960032, 0.39986928,
0.39986928, 0.39986928, 0.39986928, 0.39996047, 0.39996047,
0.39996047, 0.39996047, 0.39998892, 0.39998892, 0.39998892,
0.39998892, 0.39999711, 0.39999711, 0.39999711, 0.39999711,
0.3999993 , 0.3999993 , 0.3999993 , 0.3999993 , 0.39999984,
0.39999984, 0.39999984, 0.39999984, 0.39999997, 0.39999997,
0.39999997, 0.39999997, 0.39999999, 0.39999999, 0.39999999])}, {'rho': array([0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999978,
0.99999978, 0.99999978, 0.99999978, 0.99999905, 0.99999905,
0.99999905, 0.99999905, 0.9999961 , 0.9999961 , 0.9999961 ,
0.9999961 , 0.99998508, 0.99998508, 0.99998508, 0.99998508,
0.99994688, 0.99994688, 0.99994688, 0.99994688, 0.99982412,
0.99982412, 0.99982412, 0.99982412, 0.9994599 , 0.9994599 ,
0.9994599 , 0.9994599 , 0.99846599, 0.99846599, 0.99846599,
0.99846599, 0.99598231, 0.99598231, 0.99598231, 0.99598231,
0.99032624, 0.99032624, 0.99032624, 0.99032624, 0.97864407,
0.97864407, 0.97864407, 0.97864407, 0.95685053, 0.95685053,
0.95685053, 0.95685053, 0.92022314, 0.92022314, 0.92022314,
0.92022314, 0.86478281, 0.86478281, 0.86478281, 0.86478281,
0.78907489, 0.78907489, 0.78907489, 0.78907489, 0.69570313,
0.69570313, 0.69570313, 0.69570313, 0.59020465, 0.59020465,
0.59020465, 0.59020465, 0.48382089, 0.48382089, 0.48382089,
0.48382089, 0.38859599, 0.38859599, 0.38859599, 0.38859599,
0.30752598, 0.30752598, 0.30752598, 0.30752598, 0.24092418,
0.24092418, 0.24092418, 0.24092418, 0.18773926, 0.18773926,
0.18773926, 0.18773926, 0.1462786 , 0.1462786 , 0.1462786 ,
0.1462786 , 0.11447901, 0.11447901, 0.11447901, 0.11447901,
0.09038663, 0.09038663, 0.09038663, 0.09038663, 0.07235759,
0.07235759, 0.07235759, 0.07235759, 0.05916941, 0.05916941,
0.05916941, 0.05916941, 0.04977932, 0.04977932, 0.04977932,
0.04977932, 0.04326679, 0.04326679, 0.04326679, 0.04326679,
0.03930737, 0.03930737, 0.03930737, 0.03930737, 0.03690037,
0.03690037, 0.03690037, 0.03690037, 0.03690037, 0.03690037,
0.03690037, 0.03690037, 0.03930737, 0.03930737, 0.03930737,
0.03930737, 0.04326679, 0.04326679, 0.04326679, 0.04326679,
0.04977932, 0.04977932, 0.04977932, 0.04977932, 0.05916941,
0.05916941, 0.05916941, 0.05916941, 0.07235759, 0.07235759,
0.07235759, 0.07235759, 0.09038663, 0.09038663, 0.09038663,
0.09038663, 0.11447901, 0.11447901, 0.11447901, 0.11447901,
0.1462786 , 0.1462786 , 0.1462786 , 0.1462786 , 0.18773926,
0.18773926, 0.18773926, 0.18773926, 0.24092418, 0.24092418,
0.24092418, 0.24092418, 0.30752598, 0.30752598, 0.30752598,
0.30752598, 0.38859599, 0.38859599, 0.38859599, 0.38859599,
0.48382089, 0.48382089, 0.48382089, 0.48382089, 0.59020465,
0.59020465, 0.59020465, 0.59020465, 0.69570313, 0.69570313,
0.69570313, 0.69570313, 0.78907489, 0.78907489, 0.78907489,
0.78907489, 0.86478281, 0.86478281, 0.86478281, 0.86478281,
0.92022314, 0.92022314, 0.92022314, 0.92022314, 0.95685053,
0.95685053, 0.95685053, 0.95685053, 0.97864407, 0.97864407,
0.97864407, 0.97864407, 0.99032624, 0.99032624, 0.99032624,
0.99032624, 0.99598231, 0.99598231, 0.99598231, 0.99598231,
0.99846599, 0.99846599, 0.99846599, 0.99846599, 0.9994599 ,
0.9994599 , 0.9994599 , 0.9994599 , 0.99982412, 0.99982412,
0.99982412, 0.99982412, 0.99994688, 0.99994688, 0.99994688,
0.99994688, 0.99998508, 0.99998508, 0.99998508, 0.99998508,
0.9999961 , 0.9999961 , 0.9999961 , 0.9999961 , 0.99999905,
0.99999905, 0.99999905, 0.99999905, 0.99999978, 0.99999978,
0.99999978, 0.99999978, 0.99999996, 0.99999996, 0.99999996]), 'vx': array([-1.99999997, -1.99999997, -1.99999997, -1.99999997, -1.99999984,
-1.99999984, -1.99999984, -1.99999984, -1.99999929, -1.99999929,
-1.99999929, -1.99999929, -1.99999708, -1.99999708, -1.99999708,
-1.99999708, -1.99998884, -1.99998884, -1.99998884, -1.99998884,
-1.99996027, -1.99996027, -1.99996027, -1.99996027, -1.99986853,
-1.99986853, -1.99986853, -1.99986853, -1.99959653, -1.99959653,
-1.99959653, -1.99959653, -1.9988551 , -1.9988551 , -1.9988551 ,
-1.9988551 , -1.99700459, -1.99700459, -1.99700459, -1.99700459,
-1.99279326, -1.99279326, -1.99279326, -1.99279326, -1.98408222,
-1.98408222, -1.98408222, -1.98408222, -1.96772297, -1.96772297,
-1.96772297, -1.96772297, -1.93977123, -1.93977123, -1.93977123,
-1.93977123, -1.89605496, -1.89605496, -1.89605496, -1.89605496,
-1.8328246 , -1.8328246 , -1.8328246 , -1.8328246 , -1.74737057,
-1.74737057, -1.74737057, -1.74737057, -1.64272474, -1.64272474,
-1.64272474, -1.64272474, -1.52780341, -1.52780341, -1.52780341,
-1.52780341, -1.40754959, -1.40754959, -1.40754959, -1.40754959,
-1.28410474, -1.28410474, -1.28410474, -1.28410474, -1.15854062,
-1.15854062, -1.15854062, -1.15854062, -1.03166727, -1.03166727,
-1.03166727, -1.03166727, -0.90506816, -0.90506816, -0.90506816,
-0.90506816, -0.77989359, -0.77989359, -0.77989359, -0.77989359,
-0.65726835, -0.65726835, -0.65726835, -0.65726835, -0.53868102,
-0.53868102, -0.53868102, -0.53868102, -0.42522663, -0.42522663,
-0.42522663, -0.42522663, -0.31799886, -0.31799886, -0.31799886,
-0.31799886, -0.21922957, -0.21922957, -0.21922957, -0.21922957,
-0.12635918, -0.12635918, -0.12635918, -0.12635918, -0.04938981,
-0.04938981, -0.04938981, -0.04938981, 0.04938981, 0.04938981,
0.04938981, 0.04938981, 0.12635918, 0.12635918, 0.12635918,
0.12635918, 0.21922957, 0.21922957, 0.21922957, 0.21922957,
0.31799886, 0.31799886, 0.31799886, 0.31799886, 0.42522663,
0.42522663, 0.42522663, 0.42522663, 0.53868102, 0.53868102,
0.53868102, 0.53868102, 0.65726835, 0.65726835, 0.65726835,
0.65726835, 0.77989359, 0.77989359, 0.77989359, 0.77989359,
0.90506816, 0.90506816, 0.90506816, 0.90506816, 1.03166727,
1.03166727, 1.03166727, 1.03166727, 1.15854062, 1.15854062,
1.15854062, 1.15854062, 1.28410474, 1.28410474, 1.28410474,
1.28410474, 1.40754959, 1.40754959, 1.40754959, 1.40754959,
1.52780341, 1.52780341, 1.52780341, 1.52780341, 1.64272474,
1.64272474, 1.64272474, 1.64272474, 1.74737057, 1.74737057,
1.74737057, 1.74737057, 1.8328246 , 1.8328246 , 1.8328246 ,
1.8328246 , 1.89605496, 1.89605496, 1.89605496, 1.89605496,
1.93977123, 1.93977123, 1.93977123, 1.93977123, 1.96772297,
1.96772297, 1.96772297, 1.96772297, 1.98408222, 1.98408222,
1.98408222, 1.98408222, 1.99279326, 1.99279326, 1.99279326,
1.99279326, 1.99700459, 1.99700459, 1.99700459, 1.99700459,
1.9988551 , 1.9988551 , 1.9988551 , 1.9988551 , 1.99959653,
1.99959653, 1.99959653, 1.99959653, 1.99986853, 1.99986853,
1.99986853, 1.99986853, 1.99996027, 1.99996027, 1.99996027,
1.99996027, 1.99998884, 1.99998884, 1.99998884, 1.99998884,
1.99999708, 1.99999708, 1.99999708, 1.99999708, 1.99999929,
1.99999929, 1.99999929, 1.99999929, 1.99999984, 1.99999984,
1.99999984, 1.99999984, 1.99999997, 1.99999997, 1.99999997]), 'P': array([0.39999998, 0.39999998, 0.39999998, 0.39999998, 0.39999988,
0.39999988, 0.39999988, 0.39999988, 0.39999947, 0.39999947,
0.39999947, 0.39999947, 0.39999781, 0.39999781, 0.39999781,
0.39999781, 0.39999165, 0.39999165, 0.39999165, 0.39999165,
0.39997027, 0.39997027, 0.39997027, 0.39997027, 0.39990163,
0.39990163, 0.39990163, 0.39990163, 0.39969818, 0.39969818,
0.39969818, 0.39969818, 0.3991441 , 0.3991441 , 0.3991441 ,
0.3991441 , 0.39776424, 0.39776424, 0.39776424, 0.39776424,
0.39464004, 0.39464004, 0.39464004, 0.39464004, 0.38824706,
0.38824706, 0.38824706, 0.38824706, 0.37648831, 0.37648831,
0.37648831, 0.37648831, 0.35712158, 0.35712158, 0.35712158,
0.35712158, 0.32858541, 0.32858541, 0.32858541, 0.32858541,
0.29082844, 0.29082844, 0.29082844, 0.29082844, 0.24527872,
0.24527872, 0.24527872, 0.24527872, 0.19727416, 0.19727416,
0.19727416, 0.19727416, 0.15512923, 0.15512923, 0.15512923,
0.15512923, 0.12052423, 0.12052423, 0.12052423, 0.12052423,
0.09300262, 0.09300262, 0.09300262, 0.09300262, 0.07155261,
0.07155261, 0.07155261, 0.07155261, 0.05509219, 0.05509219,
0.05509219, 0.05509219, 0.04264011, 0.04264011, 0.04264011,
0.04264011, 0.03328308, 0.03328308, 0.03328308, 0.03328308,
0.02626985, 0.02626985, 0.02626985, 0.02626985, 0.02101632,
0.02101632, 0.02101632, 0.02101632, 0.01711118, 0.01711118,
0.01711118, 0.01711118, 0.01425083, 0.01425083, 0.01425083,
0.01425083, 0.01218344, 0.01218344, 0.01218344, 0.01218344,
0.01088058, 0.01088058, 0.01088058, 0.01088058, 0.01002955,
0.01002955, 0.01002955, 0.01002955, 0.01002955, 0.01002955,
0.01002955, 0.01002955, 0.01088058, 0.01088058, 0.01088058,
0.01088058, 0.01218344, 0.01218344, 0.01218344, 0.01218344,
0.01425083, 0.01425083, 0.01425083, 0.01425083, 0.01711118,
0.01711118, 0.01711118, 0.01711118, 0.02101632, 0.02101632,
0.02101632, 0.02101632, 0.02626985, 0.02626985, 0.02626985,
0.02626985, 0.03328308, 0.03328308, 0.03328308, 0.03328308,
0.04264011, 0.04264011, 0.04264011, 0.04264011, 0.05509219,
0.05509219, 0.05509219, 0.05509219, 0.07155261, 0.07155261,
0.07155261, 0.07155261, 0.09300262, 0.09300262, 0.09300262,
0.09300262, 0.12052423, 0.12052423, 0.12052423, 0.12052423,
0.15512923, 0.15512923, 0.15512923, 0.15512923, 0.19727416,
0.19727416, 0.19727416, 0.19727416, 0.24527872, 0.24527872,
0.24527872, 0.24527872, 0.29082844, 0.29082844, 0.29082844,
0.29082844, 0.32858541, 0.32858541, 0.32858541, 0.32858541,
0.35712158, 0.35712158, 0.35712158, 0.35712158, 0.37648831,
0.37648831, 0.37648831, 0.37648831, 0.38824706, 0.38824706,
0.38824706, 0.38824706, 0.39464004, 0.39464004, 0.39464004,
0.39464004, 0.39776424, 0.39776424, 0.39776424, 0.39776424,
0.3991441 , 0.3991441 , 0.3991441 , 0.3991441 , 0.39969818,
0.39969818, 0.39969818, 0.39969818, 0.39990163, 0.39990163,
0.39990163, 0.39990163, 0.39997027, 0.39997027, 0.39997027,
0.39997027, 0.39999165, 0.39999165, 0.39999165, 0.39999165,
0.39999781, 0.39999781, 0.39999781, 0.39999781, 0.39999947,
0.39999947, 0.39999947, 0.39999947, 0.39999988, 0.39999988,
0.39999988, 0.39999988, 0.39999998, 0.39999998, 0.39999998])}, {'rho': array([0.99999985, 0.99999985, 0.99999985, 0.99999985, 0.99999927,
0.99999927, 0.99999927, 0.99999927, 0.99999704, 0.99999704,
0.99999704, 0.99999704, 0.99998875, 0.99998875, 0.99998875,
0.99998875, 0.99996003, 0.99996003, 0.99996003, 0.99996003,
0.9998676 , 0.9998676 , 0.9998676 , 0.9998676 , 0.99959219,
0.99959219, 0.99959219, 0.99959219, 0.99883504, 0.99883504,
0.99883504, 0.99883504, 0.99692253, 0.99692253, 0.99692253,
0.99692253, 0.99250442, 0.99250442, 0.99250442, 0.99250442,
0.98321443, 0.98321443, 0.98321443, 0.98321443, 0.96551012,
0.96551012, 0.96551012, 0.96551012, 0.93502374, 0.93502374,
0.93502374, 0.93502374, 0.88763449, 0.88763449, 0.88763449,
0.88763449, 0.8210454 , 0.8210454 , 0.8210454 , 0.8210454 ,
0.73630061, 0.73630061, 0.73630061, 0.73630061, 0.63823743,
0.63823743, 0.63823743, 0.63823743, 0.53373246, 0.53373246,
0.53373246, 0.53373246, 0.43599461, 0.43599461, 0.43599461,
0.43599461, 0.35031012, 0.35031012, 0.35031012, 0.35031012,
0.27805916, 0.27805916, 0.27805916, 0.27805916, 0.21894703,
0.21894703, 0.21894703, 0.21894703, 0.17180593, 0.17180593,
0.17180593, 0.17180593, 0.13496697, 0.13496697, 0.13496697,
0.13496697, 0.10656575, 0.10656575, 0.10656575, 0.10656575,
0.08491109, 0.08491109, 0.08491109, 0.08491109, 0.06862012,
0.06862012, 0.06862012, 0.06862012, 0.05664009, 0.05664009,
0.05664009, 0.05664009, 0.04806144, 0.04806144, 0.04806144,
0.04806144, 0.04207122, 0.04207122, 0.04207122, 0.04207122,
0.03845555, 0.03845555, 0.03845555, 0.03845555, 0.03622561,
0.03622561, 0.03622561, 0.03622561, 0.03622561, 0.03622561,
0.03622561, 0.03622561, 0.03845555, 0.03845555, 0.03845555,
0.03845555, 0.04207122, 0.04207122, 0.04207122, 0.04207122,
0.04806144, 0.04806144, 0.04806144, 0.04806144, 0.05664009,
0.05664009, 0.05664009, 0.05664009, 0.06862012, 0.06862012,
0.06862012, 0.06862012, 0.08491109, 0.08491109, 0.08491109,
0.08491109, 0.10656575, 0.10656575, 0.10656575, 0.10656575,
0.13496697, 0.13496697, 0.13496697, 0.13496697, 0.17180593,
0.17180593, 0.17180593, 0.17180593, 0.21894703, 0.21894703,
0.21894703, 0.21894703, 0.27805916, 0.27805916, 0.27805916,
0.27805916, 0.35031012, 0.35031012, 0.35031012, 0.35031012,
0.43599461, 0.43599461, 0.43599461, 0.43599461, 0.53373246,
0.53373246, 0.53373246, 0.53373246, 0.63823743, 0.63823743,
0.63823743, 0.63823743, 0.73630061, 0.73630061, 0.73630061,
0.73630061, 0.8210454 , 0.8210454 , 0.8210454 , 0.8210454 ,
0.88763449, 0.88763449, 0.88763449, 0.88763449, 0.93502374,
0.93502374, 0.93502374, 0.93502374, 0.96551012, 0.96551012,
0.96551012, 0.96551012, 0.98321443, 0.98321443, 0.98321443,
0.98321443, 0.99250442, 0.99250442, 0.99250442, 0.99250442,
0.99692253, 0.99692253, 0.99692253, 0.99692253, 0.99883504,
0.99883504, 0.99883504, 0.99883504, 0.99959219, 0.99959219,
0.99959219, 0.99959219, 0.9998676 , 0.9998676 , 0.9998676 ,
0.9998676 , 0.99996003, 0.99996003, 0.99996003, 0.99996003,
0.99998875, 0.99998875, 0.99998875, 0.99998875, 0.99999704,
0.99999704, 0.99999704, 0.99999704, 0.99999927, 0.99999927,
0.99999927, 0.99999927, 0.99999985, 0.99999985, 0.99999985]), 'vx': array([-1.99999989, -1.99999989, -1.99999989, -1.99999989, -1.99999945,
-1.99999945, -1.99999945, -1.99999945, -1.99999779, -1.99999779,
-1.99999779, -1.99999779, -1.99999159, -1.99999159, -1.99999159,
-1.99999159, -1.9999701 , -1.9999701 , -1.9999701 , -1.9999701 ,
-1.999901 , -1.999901 , -1.999901 , -1.999901 , -1.99969523,
-1.99969523, -1.99969523, -1.99969523, -1.99913002, -1.99913002,
-1.99913002, -1.99913002, -1.99770379, -1.99770379, -1.99770379,
-1.99770379, -1.99441129, -1.99441129, -1.99441129, -1.99441129,
-1.98748181, -1.98748181, -1.98748181, -1.98748181, -1.97421069,
-1.97421069, -1.97421069, -1.97421069, -1.951062 , -1.951062 ,
-1.951062 , -1.951062 , -1.91412209, -1.91412209, -1.91412209,
-1.91412209, -1.85973564, -1.85973564, -1.85973564, -1.85973564,
-1.78501081, -1.78501081, -1.78501081, -1.78501081, -1.68973692,
-1.68973692, -1.68973692, -1.68973692, -1.58167982, -1.58167982,
-1.58167982, -1.58167982, -1.46723781, -1.46723781, -1.46723781,
-1.46723781, -1.34917209, -1.34917209, -1.34917209, -1.34917209,
-1.22873451, -1.22873451, -1.22873451, -1.22873451, -1.10667593,
-1.10667593, -1.10667593, -1.10667593, -0.98389766, -0.98389766,
-0.98389766, -0.98389766, -0.86186374, -0.86186374, -0.86186374,
-0.86186374, -0.74143354, -0.74143354, -0.74143354, -0.74143354,
-0.62375092, -0.62375092, -0.62375092, -0.62375092, -0.51015791,
-0.51015791, -0.51015791, -0.51015791, -0.40167983, -0.40167983,
-0.40167983, -0.40167983, -0.29941936, -0.29941936, -0.29941936,
-0.29941936, -0.20578565, -0.20578565, -0.20578565, -0.20578565,
-0.11775423, -0.11775423, -0.11775423, -0.11775423, -0.04590013,
-0.04590013, -0.04590013, -0.04590013, 0.04590013, 0.04590013,
0.04590013, 0.04590013, 0.11775423, 0.11775423, 0.11775423,
0.11775423, 0.20578565, 0.20578565, 0.20578565, 0.20578565,
0.29941936, 0.29941936, 0.29941936, 0.29941936, 0.40167983,
0.40167983, 0.40167983, 0.40167983, 0.51015791, 0.51015791,
0.51015791, 0.51015791, 0.62375092, 0.62375092, 0.62375092,
0.62375092, 0.74143354, 0.74143354, 0.74143354, 0.74143354,
0.86186374, 0.86186374, 0.86186374, 0.86186374, 0.98389766,
0.98389766, 0.98389766, 0.98389766, 1.10667593, 1.10667593,
1.10667593, 1.10667593, 1.22873451, 1.22873451, 1.22873451,
1.22873451, 1.34917209, 1.34917209, 1.34917209, 1.34917209,
1.46723781, 1.46723781, 1.46723781, 1.46723781, 1.58167982,
1.58167982, 1.58167982, 1.58167982, 1.68973692, 1.68973692,
1.68973692, 1.68973692, 1.78501081, 1.78501081, 1.78501081,
1.78501081, 1.85973564, 1.85973564, 1.85973564, 1.85973564,
1.91412209, 1.91412209, 1.91412209, 1.91412209, 1.951062 ,
1.951062 , 1.951062 , 1.951062 , 1.97421069, 1.97421069,
1.97421069, 1.97421069, 1.98748181, 1.98748181, 1.98748181,
1.98748181, 1.99441129, 1.99441129, 1.99441129, 1.99441129,
1.99770379, 1.99770379, 1.99770379, 1.99770379, 1.99913002,
1.99913002, 1.99913002, 1.99913002, 1.99969523, 1.99969523,
1.99969523, 1.99969523, 1.999901 , 1.999901 , 1.999901 ,
1.999901 , 1.9999701 , 1.9999701 , 1.9999701 , 1.9999701 ,
1.99999159, 1.99999159, 1.99999159, 1.99999159, 1.99999779,
1.99999779, 1.99999779, 1.99999779, 1.99999945, 1.99999945,
1.99999945, 1.99999945, 1.99999989, 1.99999989, 1.99999989]), 'P': array([0.39999991, 0.39999991, 0.39999991, 0.39999991, 0.39999959,
0.39999959, 0.39999959, 0.39999959, 0.39999835, 0.39999835,
0.39999835, 0.39999835, 0.3999937 , 0.3999937 , 0.3999937 ,
0.3999937 , 0.39997763, 0.39997763, 0.39997763, 0.39997763,
0.39992592, 0.39992592, 0.39992592, 0.39992592, 0.399772 ,
0.399772 , 0.399772 , 0.399772 , 0.39934947, 0.39934947,
0.39934947, 0.39934947, 0.3982851 , 0.3982851 , 0.3982851 ,
0.3982851 , 0.39583774, 0.39583774, 0.39583774, 0.39583774,
0.39073083, 0.39073083, 0.39073083, 0.39073083, 0.3811129 ,
0.3811129 , 0.3811129 , 0.3811129 , 0.36483467, 0.36483467,
0.36483467, 0.36483467, 0.3401215 , 0.3401215 , 0.3401215 ,
0.3401215 , 0.30640378, 0.30640378, 0.30640378, 0.30640378,
0.26470256, 0.26470256, 0.26470256, 0.26470256, 0.21761913,
0.21761913, 0.21761913, 0.21761913, 0.17367368, 0.17367368,
0.17367368, 0.17367368, 0.13657873, 0.13657873, 0.13657873,
0.13657873, 0.10648915, 0.10648915, 0.10648915, 0.10648915,
0.08263428, 0.08263428, 0.08263428, 0.08263428, 0.06402751,
0.06402751, 0.06402751, 0.06402751, 0.04972303, 0.04972303,
0.04972303, 0.04972303, 0.03884924, 0.03884924, 0.03884924,
0.03884924, 0.03061895, 0.03061895, 0.03061895, 0.03061895,
0.02440068, 0.02440068, 0.02440068, 0.02440068, 0.01970868,
0.01970868, 0.01970868, 0.01970868, 0.01619841, 0.01619841,
0.01619841, 0.01619841, 0.01361226, 0.01361226, 0.01361226,
0.01361226, 0.01172956, 0.01172956, 0.01172956, 0.01172956,
0.0105538 , 0.0105538 , 0.0105538 , 0.0105538 , 0.00977192,
0.00977192, 0.00977192, 0.00977192, 0.00977192, 0.00977192,
0.00977192, 0.00977192, 0.0105538 , 0.0105538 , 0.0105538 ,
0.0105538 , 0.01172956, 0.01172956, 0.01172956, 0.01172956,
0.01361226, 0.01361226, 0.01361226, 0.01361226, 0.01619841,
0.01619841, 0.01619841, 0.01619841, 0.01970868, 0.01970868,
0.01970868, 0.01970868, 0.02440068, 0.02440068, 0.02440068,
0.02440068, 0.03061895, 0.03061895, 0.03061895, 0.03061895,
0.03884924, 0.03884924, 0.03884924, 0.03884924, 0.04972303,
0.04972303, 0.04972303, 0.04972303, 0.06402751, 0.06402751,
0.06402751, 0.06402751, 0.08263428, 0.08263428, 0.08263428,
0.08263428, 0.10648915, 0.10648915, 0.10648915, 0.10648915,
0.13657873, 0.13657873, 0.13657873, 0.13657873, 0.17367368,
0.17367368, 0.17367368, 0.17367368, 0.21761913, 0.21761913,
0.21761913, 0.21761913, 0.26470256, 0.26470256, 0.26470256,
0.26470256, 0.30640378, 0.30640378, 0.30640378, 0.30640378,
0.3401215 , 0.3401215 , 0.3401215 , 0.3401215 , 0.36483467,
0.36483467, 0.36483467, 0.36483467, 0.3811129 , 0.3811129 ,
0.3811129 , 0.3811129 , 0.39073083, 0.39073083, 0.39073083,
0.39073083, 0.39583774, 0.39583774, 0.39583774, 0.39583774,
0.3982851 , 0.3982851 , 0.3982851 , 0.3982851 , 0.39934947,
0.39934947, 0.39934947, 0.39934947, 0.399772 , 0.399772 ,
0.399772 , 0.399772 , 0.39992592, 0.39992592, 0.39992592,
0.39992592, 0.39997763, 0.39997763, 0.39997763, 0.39997763,
0.3999937 , 0.3999937 , 0.3999937 , 0.3999937 , 0.39999835,
0.39999835, 0.39999835, 0.39999835, 0.39999959, 0.39999959,
0.39999959, 0.39999959, 0.39999991, 0.39999991, 0.39999991])}, {'rho': array([0.9999995 , 0.9999995 , 0.9999995 , 0.9999995 , 0.99999775,
0.99999775, 0.99999775, 0.99999775, 0.99999151, 0.99999151,
0.99999151, 0.99999151, 0.9999699 , 0.9999699 , 0.9999699 ,
0.9999699 , 0.99990026, 0.99990026, 0.99990026, 0.99990026,
0.99969192, 0.99969192, 0.99969192, 0.99969192, 0.99911516,
0.99911516, 0.99911516, 0.99911516, 0.99764348, 0.99764348,
0.99764348, 0.99764348, 0.9941977 , 0.9941977 , 0.9941977 ,
0.9941977 , 0.9868287 , 0.9868287 , 0.9868287 , 0.9868287 ,
0.97249805, 0.97249805, 0.97249805, 0.97249805, 0.94724114,
0.94724114, 0.94724114, 0.94724114, 0.90696367, 0.90696367,
0.90696367, 0.90696367, 0.84879949, 0.84879949, 0.84879949,
0.84879949, 0.77255426, 0.77255426, 0.77255426, 0.77255426,
0.68175915, 0.68175915, 0.68175915, 0.68175915, 0.58187946,
0.58187946, 0.58187946, 0.58187946, 0.48324306, 0.48324306,
0.48324306, 0.48324306, 0.39424599, 0.39424599, 0.39424599,
0.39424599, 0.31723201, 0.31723201, 0.31723201, 0.31723201,
0.25270654, 0.25270654, 0.25270654, 0.25270654, 0.20005976,
0.20005976, 0.20005976, 0.20005976, 0.15808723, 0.15808723,
0.15808723, 0.15808723, 0.12517052, 0.12517052, 0.12517052,
0.12517052, 0.0996631 , 0.0996631 , 0.0996631 , 0.0996631 ,
0.0800948 , 0.0800948 , 0.0800948 , 0.0800948 , 0.06530948,
0.06530948, 0.06530948, 0.06530948, 0.05437734, 0.05437734,
0.05437734, 0.05437734, 0.04651053, 0.04651053, 0.04651053,
0.04651053, 0.04098266, 0.04098266, 0.04098266, 0.04098266,
0.03767661, 0.03767661, 0.03767661, 0.03767661, 0.03560945,
0.03560945, 0.03560945, 0.03560945, 0.03560945, 0.03560945,
0.03560945, 0.03560945, 0.03767661, 0.03767661, 0.03767661,
0.03767661, 0.04098266, 0.04098266, 0.04098266, 0.04098266,
0.04651053, 0.04651053, 0.04651053, 0.04651053, 0.05437734,
0.05437734, 0.05437734, 0.05437734, 0.06530948, 0.06530948,
0.06530948, 0.06530948, 0.0800948 , 0.0800948 , 0.0800948 ,
0.0800948 , 0.0996631 , 0.0996631 , 0.0996631 , 0.0996631 ,
0.12517052, 0.12517052, 0.12517052, 0.12517052, 0.15808723,
0.15808723, 0.15808723, 0.15808723, 0.20005976, 0.20005976,
0.20005976, 0.20005976, 0.25270654, 0.25270654, 0.25270654,
0.25270654, 0.31723201, 0.31723201, 0.31723201, 0.31723201,
0.39424599, 0.39424599, 0.39424599, 0.39424599, 0.48324306,
0.48324306, 0.48324306, 0.48324306, 0.58187946, 0.58187946,
0.58187946, 0.58187946, 0.68175915, 0.68175915, 0.68175915,
0.68175915, 0.77255426, 0.77255426, 0.77255426, 0.77255426,
0.84879949, 0.84879949, 0.84879949, 0.84879949, 0.90696367,
0.90696367, 0.90696367, 0.90696367, 0.94724114, 0.94724114,
0.94724114, 0.94724114, 0.97249805, 0.97249805, 0.97249805,
0.97249805, 0.9868287 , 0.9868287 , 0.9868287 , 0.9868287 ,
0.9941977 , 0.9941977 , 0.9941977 , 0.9941977 , 0.99764348,
0.99764348, 0.99764348, 0.99764348, 0.99911516, 0.99911516,
0.99911516, 0.99911516, 0.99969192, 0.99969192, 0.99969192,
0.99969192, 0.99990026, 0.99990026, 0.99990026, 0.99990026,
0.9999699 , 0.9999699 , 0.9999699 , 0.9999699 , 0.99999151,
0.99999151, 0.99999151, 0.99999151, 0.99999775, 0.99999775,
0.99999775, 0.99999775, 0.9999995 , 0.9999995 , 0.9999995 ]), 'vx': array([-1.99999963, -1.99999963, -1.99999963, -1.99999963, -1.99999832,
-1.99999832, -1.99999832, -1.99999832, -1.99999365, -1.99999365,
-1.99999365, -1.99999365, -1.99997748, -1.99997748, -1.99997748,
-1.99997748, -1.99992541, -1.99992541, -1.99992541, -1.99992541,
-1.99976969, -1.99976969, -1.99976969, -1.99976969, -1.99933891,
-1.99933891, -1.99933891, -1.99933891, -1.99824065, -1.99824065,
-1.99824065, -1.99824065, -1.99567083, -1.99567083, -1.99567083,
-1.99567083, -1.99017235, -1.99017235, -1.99017235, -1.99017235,
-1.97944047, -1.97944047, -1.97944047, -1.97944047, -1.96033591,
-1.96033591, -1.96033591, -1.96033591, -1.92922225, -1.92922225,
-1.92922225, -1.92922225, -1.88254952, -1.88254952, -1.88254952,
-1.88254952, -1.81738377, -1.81738377, -1.81738377, -1.81738377,
-1.7320712 , -1.7320712 , -1.7320712 , -1.7320712 , -1.63119279,
-1.63119279, -1.63119279, -1.63119279, -1.5224141 , -1.5224141 ,
-1.5224141 , -1.5224141 , -1.40952663, -1.40952663, -1.40952663,
-1.40952663, -1.29399695, -1.29399695, -1.29399695, -1.29399695,
-1.17663739, -1.17663739, -1.17663739, -1.17663739, -1.05806176,
-1.05806176, -1.05806176, -1.05806176, -0.93935673, -0.93935673,
-0.93935673, -0.93935673, -0.82164211, -0.82164211, -0.82164211,
-0.82164211, -0.70568889, -0.70568889, -0.70568889, -0.70568889,
-0.59266476, -0.59266476, -0.59266476, -0.59266476, -0.48371266,
-0.48371266, -0.48371266, -0.48371266, -0.37988588, -0.37988588,
-0.37988588, -0.37988588, -0.28225582, -0.28225582, -0.28225582,
-0.28225582, -0.19343253, -0.19343253, -0.19343253, -0.19343253,
-0.10988534, -0.10988534, -0.10988534, -0.10988534, -0.0427074 ,
-0.0427074 , -0.0427074 , -0.0427074 , 0.0427074 , 0.0427074 ,
0.0427074 , 0.0427074 , 0.10988534, 0.10988534, 0.10988534,
0.10988534, 0.19343253, 0.19343253, 0.19343253, 0.19343253,
0.28225582, 0.28225582, 0.28225582, 0.28225582, 0.37988588,
0.37988588, 0.37988588, 0.37988588, 0.48371266, 0.48371266,
0.48371266, 0.48371266, 0.59266476, 0.59266476, 0.59266476,
0.59266476, 0.70568889, 0.70568889, 0.70568889, 0.70568889,
0.82164211, 0.82164211, 0.82164211, 0.82164211, 0.93935673,
0.93935673, 0.93935673, 0.93935673, 1.05806176, 1.05806176,
1.05806176, 1.05806176, 1.17663739, 1.17663739, 1.17663739,
1.17663739, 1.29399695, 1.29399695, 1.29399695, 1.29399695,
1.40952663, 1.40952663, 1.40952663, 1.40952663, 1.5224141 ,
1.5224141 , 1.5224141 , 1.5224141 , 1.63119279, 1.63119279,
1.63119279, 1.63119279, 1.7320712 , 1.7320712 , 1.7320712 ,
1.7320712 , 1.81738377, 1.81738377, 1.81738377, 1.81738377,
1.88254952, 1.88254952, 1.88254952, 1.88254952, 1.92922225,
1.92922225, 1.92922225, 1.92922225, 1.96033591, 1.96033591,
1.96033591, 1.96033591, 1.97944047, 1.97944047, 1.97944047,
1.97944047, 1.99017235, 1.99017235, 1.99017235, 1.99017235,
1.99567083, 1.99567083, 1.99567083, 1.99567083, 1.99824065,
1.99824065, 1.99824065, 1.99824065, 1.99933891, 1.99933891,
1.99933891, 1.99933891, 1.99976969, 1.99976969, 1.99976969,
1.99976969, 1.99992541, 1.99992541, 1.99992541, 1.99992541,
1.99997748, 1.99997748, 1.99997748, 1.99997748, 1.99999365,
1.99999365, 1.99999365, 1.99999365, 1.99999832, 1.99999832,
1.99999832, 1.99999832, 1.99999963, 1.99999963, 1.99999963]), 'P': array([0.39999972, 0.39999972, 0.39999972, 0.39999972, 0.39999874,
0.39999874, 0.39999874, 0.39999874, 0.39999525, 0.39999525,
0.39999525, 0.39999525, 0.39998315, 0.39998315, 0.39998315,
0.39998315, 0.39994419, 0.39994419, 0.39994419, 0.39994419,
0.39982769, 0.39982769, 0.39982769, 0.39982769, 0.39950557,
0.39950557, 0.39950557, 0.39950557, 0.39868543, 0.39868543,
0.39868543, 0.39868543, 0.39677235, 0.39677235, 0.39677235,
0.39677235, 0.39270661, 0.39270661, 0.39270661, 0.39270661,
0.38487747, 0.38487747, 0.38487747, 0.38487747, 0.3712801 ,
0.3712801 , 0.3712801 , 0.3712801 , 0.35003692, 0.35003692,
0.35003692, 0.35003692, 0.32016663, 0.32016663, 0.32016663,
0.32016663, 0.28215814, 0.28215814, 0.28215814, 0.28215814,
0.23766321, 0.23766321, 0.23766321, 0.23766321, 0.19261647,
0.19261647, 0.19261647, 0.19261647, 0.15337765, 0.15337765,
0.15337765, 0.15337765, 0.12086577, 0.12086577, 0.12086577,
0.12086577, 0.09464989, 0.09464989, 0.09464989, 0.09464989,
0.07388122, 0.07388122, 0.07388122, 0.07388122, 0.0576594 ,
0.0576594 , 0.0576594 , 0.0576594 , 0.04515925, 0.04515925,
0.04515925, 0.04515925, 0.03560064, 0.03560064, 0.03560064,
0.03560064, 0.02831583, 0.02831583, 0.02831583, 0.02831583,
0.02276887, 0.02276887, 0.02276887, 0.02276887, 0.0185577 ,
0.0185577 , 0.0185577 , 0.0185577 , 0.01538723, 0.01538723,
0.01538723, 0.01538723, 0.01304001, 0.01304001, 0.01304001,
0.01304001, 0.01131957, 0.01131957, 0.01131957, 0.01131957,
0.01025723, 0.01025723, 0.01025723, 0.01025723, 0.00953828,
0.00953828, 0.00953828, 0.00953828, 0.00953828, 0.00953828,
0.00953828, 0.00953828, 0.01025723, 0.01025723, 0.01025723,
0.01025723, 0.01131957, 0.01131957, 0.01131957, 0.01131957,
0.01304001, 0.01304001, 0.01304001, 0.01304001, 0.01538723,
0.01538723, 0.01538723, 0.01538723, 0.0185577 , 0.0185577 ,
0.0185577 , 0.0185577 , 0.02276887, 0.02276887, 0.02276887,
0.02276887, 0.02831583, 0.02831583, 0.02831583, 0.02831583,
0.03560064, 0.03560064, 0.03560064, 0.03560064, 0.04515925,
0.04515925, 0.04515925, 0.04515925, 0.0576594 , 0.0576594 ,
0.0576594 , 0.0576594 , 0.07388122, 0.07388122, 0.07388122,
0.07388122, 0.09464989, 0.09464989, 0.09464989, 0.09464989,
0.12086577, 0.12086577, 0.12086577, 0.12086577, 0.15337765,
0.15337765, 0.15337765, 0.15337765, 0.19261647, 0.19261647,
0.19261647, 0.19261647, 0.23766321, 0.23766321, 0.23766321,
0.23766321, 0.28215814, 0.28215814, 0.28215814, 0.28215814,
0.32016663, 0.32016663, 0.32016663, 0.32016663, 0.35003692,
0.35003692, 0.35003692, 0.35003692, 0.3712801 , 0.3712801 ,
0.3712801 , 0.3712801 , 0.38487747, 0.38487747, 0.38487747,
0.38487747, 0.39270661, 0.39270661, 0.39270661, 0.39270661,
0.39677235, 0.39677235, 0.39677235, 0.39677235, 0.39868543,
0.39868543, 0.39868543, 0.39868543, 0.39950557, 0.39950557,
0.39950557, 0.39950557, 0.39982769, 0.39982769, 0.39982769,
0.39982769, 0.39994419, 0.39994419, 0.39994419, 0.39994419,
0.39998315, 0.39998315, 0.39998315, 0.39998315, 0.39999525,
0.39999525, 0.39999525, 0.39999525, 0.39999874, 0.39999874,
0.39999874, 0.39999874, 0.39999972, 0.39999972, 0.39999972])}, {'rho': array([0.99999847, 0.99999847, 0.99999847, 0.99999847, 0.99999357,
0.99999357, 0.99999357, 0.99999357, 0.99997732, 0.99997732,
0.99997732, 0.99997732, 0.99992482, 0.99992482, 0.99992482,
0.99992482, 0.99976716, 0.99976716, 0.99976716, 0.99976716,
0.99932783, 0.99932783, 0.99932783, 0.99932783, 0.99819613,
0.99819613, 0.99819613, 0.99819613, 0.99551258, 0.99551258,
0.99551258, 0.99551258, 0.98968135, 0.98968135, 0.98968135,
0.98968135, 0.97812118, 0.97812118, 0.97812118, 0.97812118,
0.95728984, 0.95728984, 0.95728984, 0.95728984, 0.92324227,
0.92324227, 0.92324227, 0.92324227, 0.87276271, 0.87276271,
0.87276271, 0.87276271, 0.8047176 , 0.8047176 , 0.8047176 ,
0.8047176 , 0.72116255, 0.72116255, 0.72116255, 0.72116255,
0.62714836, 0.62714836, 0.62714836, 0.62714836, 0.52957021,
0.52957021, 0.52957021, 0.52957021, 0.43858686, 0.43858686,
0.43858686, 0.43858686, 0.35783746, 0.35783746, 0.35783746,
0.35783746, 0.28857469, 0.28857469, 0.28857469, 0.28857469,
0.2307988 , 0.2307988 , 0.2307988 , 0.2307988 , 0.1837447 ,
0.1837447 , 0.1837447 , 0.1837447 , 0.14619579, 0.14619579,
0.14619579, 0.14619579, 0.11662939, 0.11662939, 0.11662939,
0.11662939, 0.09360282, 0.09360282, 0.09360282, 0.09360282,
0.07583372, 0.07583372, 0.07583372, 0.07583372, 0.0623598 ,
0.0623598 , 0.0623598 , 0.0623598 , 0.05234262, 0.05234262,
0.05234262, 0.05234262, 0.04510453, 0.04510453, 0.04510453,
0.04510453, 0.03998822, 0.03998822, 0.03998822, 0.03998822,
0.03696215, 0.03696215, 0.03696215, 0.03696215, 0.03504521,
0.03504521, 0.03504521, 0.03504521, 0.03504521, 0.03504521,
0.03504521, 0.03504521, 0.03696215, 0.03696215, 0.03696215,
0.03696215, 0.03998822, 0.03998822, 0.03998822, 0.03998822,
0.04510453, 0.04510453, 0.04510453, 0.04510453, 0.05234262,
0.05234262, 0.05234262, 0.05234262, 0.0623598 , 0.0623598 ,
0.0623598 , 0.0623598 , 0.07583372, 0.07583372, 0.07583372,
0.07583372, 0.09360282, 0.09360282, 0.09360282, 0.09360282,
0.11662939, 0.11662939, 0.11662939, 0.11662939, 0.14619579,
0.14619579, 0.14619579, 0.14619579, 0.1837447 , 0.1837447 ,
0.1837447 , 0.1837447 , 0.2307988 , 0.2307988 , 0.2307988 ,
0.2307988 , 0.28857469, 0.28857469, 0.28857469, 0.28857469,
0.35783746, 0.35783746, 0.35783746, 0.35783746, 0.43858686,
0.43858686, 0.43858686, 0.43858686, 0.52957021, 0.52957021,
0.52957021, 0.52957021, 0.62714836, 0.62714836, 0.62714836,
0.62714836, 0.72116255, 0.72116255, 0.72116255, 0.72116255,
0.8047176 , 0.8047176 , 0.8047176 , 0.8047176 , 0.87276271,
0.87276271, 0.87276271, 0.87276271, 0.92324227, 0.92324227,
0.92324227, 0.92324227, 0.95728984, 0.95728984, 0.95728984,
0.95728984, 0.97812118, 0.97812118, 0.97812118, 0.97812118,
0.98968135, 0.98968135, 0.98968135, 0.98968135, 0.99551258,
0.99551258, 0.99551258, 0.99551258, 0.99819613, 0.99819613,
0.99819613, 0.99819613, 0.99932783, 0.99932783, 0.99932783,
0.99932783, 0.99976716, 0.99976716, 0.99976716, 0.99976716,
0.99992482, 0.99992482, 0.99992482, 0.99992482, 0.99997732,
0.99997732, 0.99997732, 0.99997732, 0.99999357, 0.99999357,
0.99999357, 0.99999357, 0.99999847, 0.99999847, 0.99999847]), 'vx': array([-1.99999886, -1.99999886, -1.99999886, -1.99999886, -1.99999519,
-1.99999519, -1.99999519, -1.99999519, -1.99998304, -1.99998304,
-1.99998304, -1.99998304, -1.99994377, -1.99994377, -1.99994377,
-1.99994377, -1.9998259 , -1.9998259 , -1.9998259 , -1.9998259 ,
-1.99949762, -1.99949762, -1.99949762, -1.99949762, -1.99865259,
-1.99865259, -1.99865259, -1.99865259, -1.99665 , -1.99665 ,
-1.99665 , -1.99665 , -1.99229744, -1.99229744, -1.99229744,
-1.99229744, -1.98364593, -1.98364593, -1.98364593, -1.98364593,
-1.96793482, -1.96793482, -1.96793482, -1.96793482, -1.94182029,
-1.94182029, -1.94182029, -1.94182029, -1.90188121, -1.90188121,
-1.90188121, -1.90188121, -1.84517809, -1.84517809, -1.84517809,
-1.84517809, -1.76960221, -1.76960221, -1.76960221, -1.76960221,
-1.67650008, -1.67650008, -1.67650008, -1.67650008, -1.57350313,
-1.57350313, -1.57350313, -1.57350313, -1.46554675, -1.46554675,
-1.46554675, -1.46554675, -1.35474156, -1.35474156, -1.35474156,
-1.35474156, -1.24188933, -1.24188933, -1.24188933, -1.24188933,
-1.12760981, -1.12760981, -1.12760981, -1.12760981, -1.01250337,
-1.01250337, -1.01250337, -1.01250337, -0.89775199, -0.89775199,
-0.89775199, -0.89775199, -0.78412707, -0.78412707, -0.78412707,
-0.78412707, -0.67240099, -0.67240099, -0.67240099, -0.67240099,
-0.56376681, -0.56376681, -0.56376681, -0.56376681, -0.45914055,
-0.45914055, -0.45914055, -0.45914055, -0.35967195, -0.35967195,
-0.35967195, -0.35967195, -0.26636932, -0.26636932, -0.26636932,
-0.26636932, -0.18206513, -0.18206513, -0.18206513, -0.18206513,
-0.10268501, -0.10268501, -0.10268501, -0.10268501, -0.03978378,
-0.03978378, -0.03978378, -0.03978378, 0.03978378, 0.03978378,
0.03978378, 0.03978378, 0.10268501, 0.10268501, 0.10268501,
0.10268501, 0.18206513, 0.18206513, 0.18206513, 0.18206513,
0.26636932, 0.26636932, 0.26636932, 0.26636932, 0.35967195,
0.35967195, 0.35967195, 0.35967195, 0.45914055, 0.45914055,
0.45914055, 0.45914055, 0.56376681, 0.56376681, 0.56376681,
0.56376681, 0.67240099, 0.67240099, 0.67240099, 0.67240099,
0.78412707, 0.78412707, 0.78412707, 0.78412707, 0.89775199,
0.89775199, 0.89775199, 0.89775199, 1.01250337, 1.01250337,
1.01250337, 1.01250337, 1.12760981, 1.12760981, 1.12760981,
1.12760981, 1.24188933, 1.24188933, 1.24188933, 1.24188933,
1.35474156, 1.35474156, 1.35474156, 1.35474156, 1.46554675,
1.46554675, 1.46554675, 1.46554675, 1.57350313, 1.57350313,
1.57350313, 1.57350313, 1.67650008, 1.67650008, 1.67650008,
1.67650008, 1.76960221, 1.76960221, 1.76960221, 1.76960221,
1.84517809, 1.84517809, 1.84517809, 1.84517809, 1.90188121,
1.90188121, 1.90188121, 1.90188121, 1.94182029, 1.94182029,
1.94182029, 1.94182029, 1.96793482, 1.96793482, 1.96793482,
1.96793482, 1.98364593, 1.98364593, 1.98364593, 1.98364593,
1.99229744, 1.99229744, 1.99229744, 1.99229744, 1.99665 ,
1.99665 , 1.99665 , 1.99665 , 1.99865259, 1.99865259,
1.99865259, 1.99865259, 1.99949762, 1.99949762, 1.99949762,
1.99949762, 1.9998259 , 1.9998259 , 1.9998259 , 1.9998259 ,
1.99994377, 1.99994377, 1.99994377, 1.99994377, 1.99998304,
1.99998304, 1.99998304, 1.99998304, 1.99999519, 1.99999519,
1.99999519, 1.99999519, 1.99999886, 1.99999886, 1.99999886]), 'P': array([0.39999914, 0.39999914, 0.39999914, 0.39999914, 0.3999964 ,
0.3999964 , 0.3999964 , 0.3999964 , 0.39998731, 0.39998731,
0.39998731, 0.39998731, 0.39995792, 0.39995792, 0.39995792,
0.39995792, 0.39986973, 0.39986973, 0.39986973, 0.39986973,
0.39962422, 0.39962422, 0.39962422, 0.39962422, 0.39899287,
0.39899287, 0.39899287, 0.39899287, 0.3975003 , 0.3975003 ,
0.3975003 , 0.3975003 , 0.39427349, 0.39427349, 0.39427349,
0.39427349, 0.38792864, 0.38792864, 0.38792864, 0.38792864,
0.37663634, 0.37663634, 0.37663634, 0.37663634, 0.35850421,
0.35850421, 0.35850421, 0.35850421, 0.33225106, 0.33225106,
0.33225106, 0.33225106, 0.29786124, 0.29786124, 0.29786124,
0.29786124, 0.25659571, 0.25659571, 0.25659571, 0.25659571,
0.21172167, 0.21172167, 0.21172167, 0.21172167, 0.17074616,
0.17074616, 0.17074616, 0.17074616, 0.13602374, 0.13602374,
0.13602374, 0.13602374, 0.10753076, 0.10753076, 0.10753076,
0.10753076, 0.08461296, 0.08461296, 0.08461296, 0.08461296,
0.06644791, 0.06644791, 0.06644791, 0.06644791, 0.05223703,
0.05223703, 0.05223703, 0.05223703, 0.04125001, 0.04125001,
0.04125001, 0.04125001, 0.03279609, 0.03279609, 0.03279609,
0.03279609, 0.02631068, 0.02631068, 0.02631068, 0.02631068,
0.02133519, 0.02133519, 0.02133519, 0.02133519, 0.01753846,
0.01753846, 0.01753846, 0.01753846, 0.01466246, 0.01466246,
0.01466246, 0.01466246, 0.01252489, 0.01252489, 0.01252489,
0.01252489, 0.01094784, 0.01094784, 0.01094784, 0.01094784,
0.0099871 , 0.0099871 , 0.0099871 , 0.0099871 , 0.0093257 ,
0.0093257 , 0.0093257 , 0.0093257 , 0.0093257 , 0.0093257 ,
0.0093257 , 0.0093257 , 0.0099871 , 0.0099871 , 0.0099871 ,
0.0099871 , 0.01094784, 0.01094784, 0.01094784, 0.01094784,
0.01252489, 0.01252489, 0.01252489, 0.01252489, 0.01466246,
0.01466246, 0.01466246, 0.01466246, 0.01753846, 0.01753846,
0.01753846, 0.01753846, 0.02133519, 0.02133519, 0.02133519,
0.02133519, 0.02631068, 0.02631068, 0.02631068, 0.02631068,
0.03279609, 0.03279609, 0.03279609, 0.03279609, 0.04125001,
0.04125001, 0.04125001, 0.04125001, 0.05223703, 0.05223703,
0.05223703, 0.05223703, 0.06644791, 0.06644791, 0.06644791,
0.06644791, 0.08461296, 0.08461296, 0.08461296, 0.08461296,
0.10753076, 0.10753076, 0.10753076, 0.10753076, 0.13602374,
0.13602374, 0.13602374, 0.13602374, 0.17074616, 0.17074616,
0.17074616, 0.17074616, 0.21172167, 0.21172167, 0.21172167,
0.21172167, 0.25659571, 0.25659571, 0.25659571, 0.25659571,
0.29786124, 0.29786124, 0.29786124, 0.29786124, 0.33225106,
0.33225106, 0.33225106, 0.33225106, 0.35850421, 0.35850421,
0.35850421, 0.35850421, 0.37663634, 0.37663634, 0.37663634,
0.37663634, 0.38792864, 0.38792864, 0.38792864, 0.38792864,
0.39427349, 0.39427349, 0.39427349, 0.39427349, 0.3975003 ,
0.3975003 , 0.3975003 , 0.3975003 , 0.39899287, 0.39899287,
0.39899287, 0.39899287, 0.39962422, 0.39962422, 0.39962422,
0.39962422, 0.39986973, 0.39986973, 0.39986973, 0.39986973,
0.39995792, 0.39995792, 0.39995792, 0.39995792, 0.39998731,
0.39998731, 0.39998731, 0.39998731, 0.3999964 , 0.3999964 ,
0.3999964 , 0.3999964 , 0.39999914, 0.39999914, 0.39999914])}, {'rho': array([0.99999566, 0.99999566, 0.99999566, 0.99999566, 0.99998283,
0.99998283, 0.99998283, 0.99998283, 0.99994331, 0.99994331,
0.99994331, 0.99994331, 0.99982395, 0.99982395, 0.99982395,
0.99982395, 0.99948933, 0.99948933, 0.99948933, 0.99948933,
0.9986196 , 0.9986196 , 0.9986196 , 0.9986196 , 0.99653253,
0.99653253, 0.99653253, 0.99653253, 0.99192857, 0.99192857,
0.99192857, 0.99192857, 0.98263354, 0.98263354, 0.98263354,
0.98263354, 0.96552537, 0.96552537, 0.96552537, 0.96552537,
0.93689349, 0.93689349, 0.93689349, 0.93689349, 0.89334911,
0.89334911, 0.89334911, 0.89334911, 0.83306104, 0.83306104,
0.83306104, 0.83306104, 0.7568574 , 0.7568574 , 0.7568574 ,
0.7568574 , 0.66886528, 0.66886528, 0.66886528, 0.66886528,
0.57434604, 0.57434604, 0.57434604, 0.57434604, 0.48263253,
0.48263253, 0.48263253, 0.48263253, 0.39923911, 0.39923911,
0.39923911, 0.39923911, 0.32605056, 0.32605056, 0.32605056,
0.32605056, 0.26366261, 0.26366261, 0.26366261, 0.26366261,
0.21178267, 0.21178267, 0.21178267, 0.21178267, 0.16957807,
0.16957807, 0.16957807, 0.16957807, 0.13582335, 0.13582335,
0.13582335, 0.13582335, 0.10913615, 0.10913615, 0.10913615,
0.10913615, 0.08824699, 0.08824699, 0.08824699, 0.08824699,
0.07204686, 0.07204686, 0.07204686, 0.07204686, 0.05971767,
0.05971767, 0.05971767, 0.05971767, 0.0505044 , 0.0505044 ,
0.0505044 , 0.0505044 , 0.04382509, 0.04382509, 0.04382509,
0.04382509, 0.03907704, 0.03907704, 0.03907704, 0.03907704,
0.03630491, 0.03630491, 0.03630491, 0.03630491, 0.03452707,
0.03452707, 0.03452707, 0.03452707, 0.03452707, 0.03452707,
0.03452707, 0.03452707, 0.03630491, 0.03630491, 0.03630491,
0.03630491, 0.03907704, 0.03907704, 0.03907704, 0.03907704,
0.04382509, 0.04382509, 0.04382509, 0.04382509, 0.0505044 ,
0.0505044 , 0.0505044 , 0.0505044 , 0.05971767, 0.05971767,
0.05971767, 0.05971767, 0.07204686, 0.07204686, 0.07204686,
0.07204686, 0.08824699, 0.08824699, 0.08824699, 0.08824699,
0.10913615, 0.10913615, 0.10913615, 0.10913615, 0.13582335,
0.13582335, 0.13582335, 0.13582335, 0.16957807, 0.16957807,
0.16957807, 0.16957807, 0.21178267, 0.21178267, 0.21178267,
0.21178267, 0.26366261, 0.26366261, 0.26366261, 0.26366261,
0.32605056, 0.32605056, 0.32605056, 0.32605056, 0.39923911,
0.39923911, 0.39923911, 0.39923911, 0.48263253, 0.48263253,
0.48263253, 0.48263253, 0.57434604, 0.57434604, 0.57434604,
0.57434604, 0.66886528, 0.66886528, 0.66886528, 0.66886528,
0.7568574 , 0.7568574 , 0.7568574 , 0.7568574 , 0.83306104,
0.83306104, 0.83306104, 0.83306104, 0.89334911, 0.89334911,
0.89334911, 0.89334911, 0.93689349, 0.93689349, 0.93689349,
0.93689349, 0.96552537, 0.96552537, 0.96552537, 0.96552537,
0.98263354, 0.98263354, 0.98263354, 0.98263354, 0.99192857,
0.99192857, 0.99192857, 0.99192857, 0.99653253, 0.99653253,
0.99653253, 0.99653253, 0.9986196 , 0.9986196 , 0.9986196 ,
0.9986196 , 0.99948933, 0.99948933, 0.99948933, 0.99948933,
0.99982395, 0.99982395, 0.99982395, 0.99982395, 0.99994331,
0.99994331, 0.99994331, 0.99994331, 0.99998283, 0.99998283,
0.99998283, 0.99998283, 0.99999566, 0.99999566, 0.99999566]), 'vx': array([-1.99999675, -1.99999675, -1.99999675, -1.99999675, -1.99998715,
-1.99998715, -1.99998715, -1.99998715, -1.9999576 , -1.9999576 ,
-1.9999576 , -1.9999576 , -1.99986834, -1.99986834, -1.99986834,
-1.99986834, -1.99961822, -1.99961822, -1.99961822, -1.99961822,
-1.99896851, -1.99896851, -1.99896851, -1.99896851, -1.99741024,
-1.99741024, -1.99741024, -1.99741024, -1.99397261, -1.99397261,
-1.99397261, -1.99397261, -1.98701925, -1.98701925, -1.98701925,
-1.98701925, -1.97414468, -1.97414468, -1.97414468, -1.97414468,
-1.95230703, -1.95230703, -1.95230703, -1.95230703, -1.91824244,
-1.91824244, -1.91824244, -1.91824244, -1.86901264, -1.86901264,
-1.86901264, -1.86901264, -1.80239983, -1.80239983, -1.80239983,
-1.80239983, -1.71777174, -1.71777174, -1.71777174, -1.71777174,
-1.62075227, -1.62075227, -1.62075227, -1.62075227, -1.5176673 ,
-1.5176673 , -1.5176673 , -1.5176673 , -1.41130546, -1.41130546,
-1.41130546, -1.41130546, -1.30281595, -1.30281595, -1.30281595,
-1.30281595, -1.1926813 , -1.1926813 , -1.1926813 , -1.1926813 ,
-1.08144071, -1.08144071, -1.08144071, -1.08144071, -0.9698171 ,
-0.9698171 , -0.9698171 , -0.9698171 , -0.85882329, -0.85882329,
-0.85882329, -0.85882329, -0.74907381, -0.74907381, -0.74907381,
-0.74907381, -0.64135792, -0.64135792, -0.64135792, -0.64135792,
-0.5368285 , -0.5368285 , -0.5368285 , -0.5368285 , -0.43626287,
-0.43626287, -0.43626287, -0.43626287, -0.34088793, -0.34088793,
-0.34088793, -0.34088793, -0.25163926, -0.25163926, -0.25163926,
-0.25163926, -0.17159155, -0.17159155, -0.17159155, -0.17159155,
-0.09609388, -0.09609388, -0.09609388, -0.09609388, -0.03710493,
-0.03710493, -0.03710493, -0.03710493, 0.03710493, 0.03710493,
0.03710493, 0.03710493, 0.09609388, 0.09609388, 0.09609388,
0.09609388, 0.17159155, 0.17159155, 0.17159155, 0.17159155,
0.25163926, 0.25163926, 0.25163926, 0.25163926, 0.34088793,
0.34088793, 0.34088793, 0.34088793, 0.43626287, 0.43626287,
0.43626287, 0.43626287, 0.5368285 , 0.5368285 , 0.5368285 ,
0.5368285 , 0.64135792, 0.64135792, 0.64135792, 0.64135792,
0.74907381, 0.74907381, 0.74907381, 0.74907381, 0.85882329,
0.85882329, 0.85882329, 0.85882329, 0.9698171 , 0.9698171 ,
0.9698171 , 0.9698171 , 1.08144071, 1.08144071, 1.08144071,
1.08144071, 1.1926813 , 1.1926813 , 1.1926813 , 1.1926813 ,
1.30281595, 1.30281595, 1.30281595, 1.30281595, 1.41130546,
1.41130546, 1.41130546, 1.41130546, 1.5176673 , 1.5176673 ,
1.5176673 , 1.5176673 , 1.62075227, 1.62075227, 1.62075227,
1.62075227, 1.71777174, 1.71777174, 1.71777174, 1.71777174,
1.80239983, 1.80239983, 1.80239983, 1.80239983, 1.86901264,
1.86901264, 1.86901264, 1.86901264, 1.91824244, 1.91824244,
1.91824244, 1.91824244, 1.95230703, 1.95230703, 1.95230703,
1.95230703, 1.97414468, 1.97414468, 1.97414468, 1.97414468,
1.98701925, 1.98701925, 1.98701925, 1.98701925, 1.99397261,
1.99397261, 1.99397261, 1.99397261, 1.99741024, 1.99741024,
1.99741024, 1.99741024, 1.99896851, 1.99896851, 1.99896851,
1.99896851, 1.99961822, 1.99961822, 1.99961822, 1.99961822,
1.99986834, 1.99986834, 1.99986834, 1.99986834, 1.9999576 ,
1.9999576 , 1.9999576 , 1.9999576 , 1.99998715, 1.99998715,
1.99998715, 1.99998715, 1.99999675, 1.99999675, 1.99999675]), 'P': array([0.39999757, 0.39999757, 0.39999757, 0.39999757, 0.39999039,
0.39999039, 0.39999039, 0.39999039, 0.39996827, 0.39996827,
0.39996827, 0.39996827, 0.39990149, 0.39990149, 0.39990149,
0.39990149, 0.3997144 , 0.3997144 , 0.3997144 , 0.3997144 ,
0.3992288 , 0.3992288 , 0.3992288 , 0.3992288 , 0.39806632,
0.39806632, 0.39806632, 0.39806632, 0.39551257, 0.39551257,
0.39551257, 0.39551257, 0.3903916 , 0.3903916 , 0.3903916 ,
0.3903916 , 0.38106417, 0.38106417, 0.38106417, 0.38106417,
0.36569 , 0.36569 , 0.36569 , 0.36569 , 0.34279115,
0.34279115, 0.34279115, 0.34279115, 0.31191214, 0.31191214,
0.31191214, 0.31191214, 0.27393752, 0.27393752, 0.27393752,
0.27393752, 0.23071361, 0.23071361, 0.23071361, 0.23071361,
0.18851007, 0.18851007, 0.18851007, 0.18851007, 0.15183356,
0.15183356, 0.15183356, 0.15183356, 0.12119467, 0.12119467,
0.12119467, 0.12119467, 0.09617199, 0.09617199, 0.09617199,
0.09617199, 0.07605835, 0.07605835, 0.07605835, 0.07605835,
0.06009841, 0.06009841, 0.06009841, 0.06009841, 0.04759159,
0.04759159, 0.04759159, 0.04759159, 0.03787746, 0.03787746,
0.03787746, 0.03787746, 0.03035827, 0.03035827, 0.03035827,
0.03035827, 0.02455267, 0.02455267, 0.02455267, 0.02455267,
0.02006904, 0.02006904, 0.02006904, 0.02006904, 0.01663084,
0.01663084, 0.01663084, 0.01663084, 0.01401174, 0.01401174,
0.01401174, 0.01401174, 0.0120593 , 0.0120593 , 0.0120593 ,
0.0120593 , 0.01060965, 0.01060965, 0.01060965, 0.01060965,
0.00974025, 0.00974025, 0.00974025, 0.00974025, 0.00913165,
0.00913165, 0.00913165, 0.00913165, 0.00913165, 0.00913165,
0.00913165, 0.00913165, 0.00974025, 0.00974025, 0.00974025,
0.00974025, 0.01060965, 0.01060965, 0.01060965, 0.01060965,
0.0120593 , 0.0120593 , 0.0120593 , 0.0120593 , 0.01401174,
0.01401174, 0.01401174, 0.01401174, 0.01663084, 0.01663084,
0.01663084, 0.01663084, 0.02006904, 0.02006904, 0.02006904,
0.02006904, 0.02455267, 0.02455267, 0.02455267, 0.02455267,
0.03035827, 0.03035827, 0.03035827, 0.03035827, 0.03787746,
0.03787746, 0.03787746, 0.03787746, 0.04759159, 0.04759159,
0.04759159, 0.04759159, 0.06009841, 0.06009841, 0.06009841,
0.06009841, 0.07605835, 0.07605835, 0.07605835, 0.07605835,
0.09617199, 0.09617199, 0.09617199, 0.09617199, 0.12119467,
0.12119467, 0.12119467, 0.12119467, 0.15183356, 0.15183356,
0.15183356, 0.15183356, 0.18851007, 0.18851007, 0.18851007,
0.18851007, 0.23071361, 0.23071361, 0.23071361, 0.23071361,
0.27393752, 0.27393752, 0.27393752, 0.27393752, 0.31191214,
0.31191214, 0.31191214, 0.31191214, 0.34279115, 0.34279115,
0.34279115, 0.34279115, 0.36569 , 0.36569 , 0.36569 ,
0.36569 , 0.38106417, 0.38106417, 0.38106417, 0.38106417,
0.3903916 , 0.3903916 , 0.3903916 , 0.3903916 , 0.39551257,
0.39551257, 0.39551257, 0.39551257, 0.39806632, 0.39806632,
0.39806632, 0.39806632, 0.3992288 , 0.3992288 , 0.3992288 ,
0.3992288 , 0.3997144 , 0.3997144 , 0.3997144 , 0.3997144 ,
0.39990149, 0.39990149, 0.39990149, 0.39990149, 0.39996827,
0.39996827, 0.39996827, 0.39996827, 0.39999039, 0.39999039,
0.39999039, 0.39999039, 0.39999757, 0.39999757, 0.39999757])}, {'rho': array([0.99998847, 0.99998847, 0.99998847, 0.99998847, 0.99995701,
0.99995701, 0.99995701, 0.99995701, 0.99986688, 0.99986688,
0.99986688, 0.99986688, 0.99961198, 0.99961198, 0.99961198,
0.99961198, 0.99894398, 0.99894398, 0.99894398, 0.99894398,
0.99732287, 0.99732287, 0.99732287, 0.99732287, 0.99369558,
0.99369558, 0.99369558, 0.99369558, 0.9862448 , 0.9862448 ,
0.9862448 , 0.9862448 , 0.97225128, 0.97225128, 0.97225128,
0.97225128, 0.94829355, 0.94829355, 0.94829355, 0.94829355,
0.91094941, 0.91094941, 0.91094941, 0.91094941, 0.85789256,
0.85789256, 0.85789256, 0.85789256, 0.78897867, 0.78897867,
0.78897867, 0.78897867, 0.70702155, 0.70702155, 0.70702155,
0.70702155, 0.61699851, 0.61699851, 0.61699851, 0.61699851,
0.52578519, 0.52578519, 0.52578519, 0.52578519, 0.44081147,
0.44081147, 0.44081147, 0.44081147, 0.36459482, 0.36459482,
0.36459482, 0.36459482, 0.29823676, 0.29823676, 0.29823676,
0.29823676, 0.2419276 , 0.2419276 , 0.2419276 , 0.2419276 ,
0.19520709, 0.19520709, 0.19520709, 0.19520709, 0.1572058 ,
0.1572058 , 0.1572058 , 0.1572058 , 0.12672261, 0.12672261,
0.12672261, 0.12672261, 0.1025238 , 0.1025238 , 0.1025238 ,
0.1025238 , 0.08348797, 0.08348797, 0.08348797, 0.08348797,
0.06866448, 0.06866448, 0.06866448, 0.06866448, 0.05733948,
0.05733948, 0.05733948, 0.05733948, 0.04883664, 0.04883664,
0.04883664, 0.04883664, 0.04265685, 0.04265685, 0.04265685,
0.04265685, 0.03823985, 0.03823985, 0.03823985, 0.03823985,
0.03569867, 0.03569867, 0.03569867, 0.03569867, 0.03404996,
0.03404996, 0.03404996, 0.03404996, 0.03404996, 0.03404996,
0.03404996, 0.03404996, 0.03569867, 0.03569867, 0.03569867,
0.03569867, 0.03823985, 0.03823985, 0.03823985, 0.03823985,
0.04265685, 0.04265685, 0.04265685, 0.04265685, 0.04883664,
0.04883664, 0.04883664, 0.04883664, 0.05733948, 0.05733948,
0.05733948, 0.05733948, 0.06866448, 0.06866448, 0.06866448,
0.06866448, 0.08348797, 0.08348797, 0.08348797, 0.08348797,
0.1025238 , 0.1025238 , 0.1025238 , 0.1025238 , 0.12672261,
0.12672261, 0.12672261, 0.12672261, 0.1572058 , 0.1572058 ,
0.1572058 , 0.1572058 , 0.19520709, 0.19520709, 0.19520709,
0.19520709, 0.2419276 , 0.2419276 , 0.2419276 , 0.2419276 ,
0.29823676, 0.29823676, 0.29823676, 0.29823676, 0.36459482,
0.36459482, 0.36459482, 0.36459482, 0.44081147, 0.44081147,
0.44081147, 0.44081147, 0.52578519, 0.52578519, 0.52578519,
0.52578519, 0.61699851, 0.61699851, 0.61699851, 0.61699851,
0.70702155, 0.70702155, 0.70702155, 0.70702155, 0.78897867,
0.78897867, 0.78897867, 0.78897867, 0.85789256, 0.85789256,
0.85789256, 0.85789256, 0.91094941, 0.91094941, 0.91094941,
0.91094941, 0.94829355, 0.94829355, 0.94829355, 0.94829355,
0.97225128, 0.97225128, 0.97225128, 0.97225128, 0.9862448 ,
0.9862448 , 0.9862448 , 0.9862448 , 0.99369558, 0.99369558,
0.99369558, 0.99369558, 0.99732287, 0.99732287, 0.99732287,
0.99732287, 0.99894398, 0.99894398, 0.99894398, 0.99894398,
0.99961198, 0.99961198, 0.99961198, 0.99961198, 0.99986688,
0.99986688, 0.99986688, 0.99986688, 0.99995701, 0.99995701,
0.99995701, 0.99995701, 0.99998847, 0.99998847, 0.99998847]), 'vx': array([-1.99999137, -1.99999137, -1.99999137, -1.99999137, -1.99996784,
-1.99996784, -1.99996784, -1.99996784, -1.99990043, -1.99990043,
-1.99990043, -1.99990043, -1.99970985, -1.99970985, -1.99970985,
-1.99970985, -1.99921065, -1.99921065, -1.99921065, -1.99921065,
-1.99799978, -1.99799978, -1.99799978, -1.99799978, -1.99529058,
-1.99529058, -1.99529058, -1.99529058, -1.98971828, -1.98971828,
-1.98971828, -1.98971828, -1.97920517, -1.97920517, -1.97920517,
-1.97920517, -1.96101325, -1.96101325, -1.96101325, -1.96101325,
-1.93206382, -1.93206382, -1.93206382, -1.93206382, -1.88944595,
-1.88944595, -1.88944595, -1.88944595, -1.83086286, -1.83086286,
-1.83086286, -1.83086286, -1.75493987, -1.75493987, -1.75493987,
-1.75493987, -1.6643763 , -1.6643763 , -1.6643763 , -1.6643763 ,
-1.56616266, -1.56616266, -1.56616266, -1.56616266, -1.4641092 ,
-1.4641092 , -1.4641092 , -1.4641092 , -1.35970933, -1.35970933,
-1.35970933, -1.35970933, -1.25362276, -1.25362276, -1.25362276,
-1.25362276, -1.14620091, -1.14620091, -1.14620091, -1.14620091,
-1.03796511, -1.03796511, -1.03796511, -1.03796511, -0.92976499,
-0.92976499, -0.92976499, -0.92976499, -0.82233856, -0.82233856,
-0.82233856, -0.82233856, -0.71626507, -0.71626507, -0.71626507,
-0.71626507, -0.61235476, -0.61235476, -0.61235476, -0.61235476,
-0.51166547, -0.51166547, -0.51166547, -0.51166547, -0.41492292,
-0.41492292, -0.41492292, -0.41492292, -0.32340294, -0.32340294,
-0.32340294, -0.32340294, -0.23796036, -0.23796036, -0.23796036,
-0.23796036, -0.16193087, -0.16193087, -0.16193087, -0.16193087,
-0.09005938, -0.09005938, -0.09005938, -0.09005938, -0.03464946,
-0.03464946, -0.03464946, -0.03464946, 0.03464946, 0.03464946,
0.03464946, 0.03464946, 0.09005938, 0.09005938, 0.09005938,
0.09005938, 0.16193087, 0.16193087, 0.16193087, 0.16193087,
0.23796036, 0.23796036, 0.23796036, 0.23796036, 0.32340294,
0.32340294, 0.32340294, 0.32340294, 0.41492292, 0.41492292,
0.41492292, 0.41492292, 0.51166547, 0.51166547, 0.51166547,
0.51166547, 0.61235476, 0.61235476, 0.61235476, 0.61235476,
0.71626507, 0.71626507, 0.71626507, 0.71626507, 0.82233856,
0.82233856, 0.82233856, 0.82233856, 0.92976499, 0.92976499,
0.92976499, 0.92976499, 1.03796511, 1.03796511, 1.03796511,
1.03796511, 1.14620091, 1.14620091, 1.14620091, 1.14620091,
1.25362276, 1.25362276, 1.25362276, 1.25362276, 1.35970933,
1.35970933, 1.35970933, 1.35970933, 1.4641092 , 1.4641092 ,
1.4641092 , 1.4641092 , 1.56616266, 1.56616266, 1.56616266,
1.56616266, 1.6643763 , 1.6643763 , 1.6643763 , 1.6643763 ,
1.75493987, 1.75493987, 1.75493987, 1.75493987, 1.83086286,
1.83086286, 1.83086286, 1.83086286, 1.88944595, 1.88944595,
1.88944595, 1.88944595, 1.93206382, 1.93206382, 1.93206382,
1.93206382, 1.96101325, 1.96101325, 1.96101325, 1.96101325,
1.97920517, 1.97920517, 1.97920517, 1.97920517, 1.98971828,
1.98971828, 1.98971828, 1.98971828, 1.99529058, 1.99529058,
1.99529058, 1.99529058, 1.99799978, 1.99799978, 1.99799978,
1.99799978, 1.99921065, 1.99921065, 1.99921065, 1.99921065,
1.99970985, 1.99970985, 1.99970985, 1.99970985, 1.99990043,
1.99990043, 1.99990043, 1.99990043, 1.99996784, 1.99996784,
1.99996784, 1.99996784, 1.99999137, 1.99999137, 1.99999137]), 'P': array([0.39999354, 0.39999354, 0.39999354, 0.39999354, 0.39997593,
0.39997593, 0.39997593, 0.39997593, 0.39992549, 0.39992549,
0.39992549, 0.39992549, 0.39978293, 0.39978293, 0.39978293,
0.39978293, 0.39940972, 0.39940972, 0.39940972, 0.39940972,
0.39850575, 0.39850575, 0.39850575, 0.39850575, 0.3964899 ,
0.3964899 , 0.3964899 , 0.3964899 , 0.39237226, 0.39237226,
0.39237226, 0.39237226, 0.38470646, 0.38470646, 0.38470646,
0.38470646, 0.37175201, 0.37175201, 0.37175201, 0.37175201,
0.35192374, 0.35192374, 0.35192374, 0.35192374, 0.32441495,
0.32441495, 0.32441495, 0.32441495, 0.28965157, 0.28965157,
0.28965157, 0.28965157, 0.24903872, 0.24903872, 0.24903872,
0.24903872, 0.20647569, 0.20647569, 0.20647569, 0.20647569,
0.16816214, 0.16816214, 0.16816214, 0.16816214, 0.13554277,
0.13554277, 0.13554277, 0.13554277, 0.10849608, 0.10849608,
0.10849608, 0.10849608, 0.08645297, 0.08645297, 0.08645297,
0.08645297, 0.0687285 , 0.0687285 , 0.0687285 , 0.0687285 ,
0.05464577, 0.05464577, 0.05464577, 0.05464577, 0.04358466,
0.04358466, 0.04358466, 0.04358466, 0.03494858, 0.03494858,
0.03494858, 0.03494858, 0.0282257 , 0.0282257 , 0.0282257 ,
0.0282257 , 0.02300204, 0.02300204, 0.02300204, 0.02300204,
0.01894477, 0.01894477, 0.01894477, 0.01894477, 0.01581851,
0.01581851, 0.01581851, 0.01581851, 0.0134249 , 0.0134249 ,
0.0134249 , 0.0134249 , 0.01163695, 0.01163695, 0.01163695,
0.01163695, 0.01030101, 0.01030101, 0.01030101, 0.01030101,
0.00951395, 0.00951395, 0.00951395, 0.00951395, 0.00895395,
0.00895395, 0.00895395, 0.00895395, 0.00895395, 0.00895395,
0.00895395, 0.00895395, 0.00951395, 0.00951395, 0.00951395,
0.00951395, 0.01030101, 0.01030101, 0.01030101, 0.01030101,
0.01163695, 0.01163695, 0.01163695, 0.01163695, 0.0134249 ,
0.0134249 , 0.0134249 , 0.0134249 , 0.01581851, 0.01581851,
0.01581851, 0.01581851, 0.01894477, 0.01894477, 0.01894477,
0.01894477, 0.02300204, 0.02300204, 0.02300204, 0.02300204,
0.0282257 , 0.0282257 , 0.0282257 , 0.0282257 , 0.03494858,
0.03494858, 0.03494858, 0.03494858, 0.04358466, 0.04358466,
0.04358466, 0.04358466, 0.05464577, 0.05464577, 0.05464577,
0.05464577, 0.0687285 , 0.0687285 , 0.0687285 , 0.0687285 ,
0.08645297, 0.08645297, 0.08645297, 0.08645297, 0.10849608,
0.10849608, 0.10849608, 0.10849608, 0.13554277, 0.13554277,
0.13554277, 0.13554277, 0.16816214, 0.16816214, 0.16816214,
0.16816214, 0.20647569, 0.20647569, 0.20647569, 0.20647569,
0.24903872, 0.24903872, 0.24903872, 0.24903872, 0.28965157,
0.28965157, 0.28965157, 0.28965157, 0.32441495, 0.32441495,
0.32441495, 0.32441495, 0.35192374, 0.35192374, 0.35192374,
0.35192374, 0.37175201, 0.37175201, 0.37175201, 0.37175201,
0.38470646, 0.38470646, 0.38470646, 0.38470646, 0.39237226,
0.39237226, 0.39237226, 0.39237226, 0.3964899 , 0.3964899 ,
0.3964899 , 0.3964899 , 0.39850575, 0.39850575, 0.39850575,
0.39850575, 0.39940972, 0.39940972, 0.39940972, 0.39940972,
0.39978293, 0.39978293, 0.39978293, 0.39978293, 0.39992549,
0.39992549, 0.39992549, 0.39992549, 0.39997593, 0.39997593,
0.39997593, 0.39997593, 0.39999354, 0.39999354, 0.39999354])}, {'rho': array([0.99997121, 0.99997121, 0.99997121, 0.99997121, 0.99989867,
0.99989867, 0.99989867, 0.99989867, 0.99970524, 0.99970524,
0.99970524, 0.99970524, 0.99919234, 0.99919234, 0.99919234,
0.99919234, 0.99793468, 0.99793468, 0.99793468, 0.99793468,
0.99508255, 0.99508255, 0.99508255, 0.99508255, 0.98912736,
0.98912736, 0.98912736, 0.98912736, 0.97772552, 0.97772552,
0.97772552, 0.97772552, 0.95777449, 0.95777449, 0.95777449,
0.95777449, 0.92592644, 0.92592644, 0.92592644, 0.92592644,
0.87952872, 0.87952872, 0.87952872, 0.87952872, 0.81767518,
0.81767518, 0.81767518, 0.81767518, 0.74199974, 0.74199974,
0.74199974, 0.74199974, 0.65688553, 0.65688553, 0.65688553,
0.65688553, 0.5675831 , 0.5675831 , 0.5675831 , 0.5675831 ,
0.4819957 , 0.4819957 , 0.4819957 , 0.4819957 , 0.40365598,
0.40365598, 0.40365598, 0.40365598, 0.33406413, 0.33406413,
0.33406413, 0.33406413, 0.27383208, 0.27383208, 0.27383208,
0.27383208, 0.22289308, 0.22289308, 0.22289308, 0.22289308,
0.18069594, 0.18069594, 0.18069594, 0.18069594, 0.1463409 ,
0.1463409 , 0.1463409 , 0.1463409 , 0.11869357, 0.11869357,
0.11869357, 0.11869357, 0.09665729, 0.09665729, 0.09665729,
0.09665729, 0.07923849, 0.07923849, 0.07923849, 0.07923849,
0.06562854, 0.06562854, 0.06562854, 0.06562854, 0.05518928,
0.05518928, 0.05518928, 0.05518928, 0.04731768, 0.04731768,
0.04731768, 0.04731768, 0.04158686, 0.04158686, 0.04158686,
0.04158686, 0.03746873, 0.03746873, 0.03746873, 0.03746873,
0.035138 , 0.035138 , 0.035138 , 0.035138 , 0.03360944,
0.03360944, 0.03360944, 0.03360944, 0.03360944, 0.03360944,
0.03360944, 0.03360944, 0.035138 , 0.035138 , 0.035138 ,
0.035138 , 0.03746873, 0.03746873, 0.03746873, 0.03746873,
0.04158686, 0.04158686, 0.04158686, 0.04158686, 0.04731768,
0.04731768, 0.04731768, 0.04731768, 0.05518928, 0.05518928,
0.05518928, 0.05518928, 0.06562854, 0.06562854, 0.06562854,
0.06562854, 0.07923849, 0.07923849, 0.07923849, 0.07923849,
0.09665729, 0.09665729, 0.09665729, 0.09665729, 0.11869357,
0.11869357, 0.11869357, 0.11869357, 0.1463409 , 0.1463409 ,
0.1463409 , 0.1463409 , 0.18069594, 0.18069594, 0.18069594,
0.18069594, 0.22289308, 0.22289308, 0.22289308, 0.22289308,
0.27383208, 0.27383208, 0.27383208, 0.27383208, 0.33406413,
0.33406413, 0.33406413, 0.33406413, 0.40365598, 0.40365598,
0.40365598, 0.40365598, 0.4819957 , 0.4819957 , 0.4819957 ,
0.4819957 , 0.5675831 , 0.5675831 , 0.5675831 , 0.5675831 ,
0.65688553, 0.65688553, 0.65688553, 0.65688553, 0.74199974,
0.74199974, 0.74199974, 0.74199974, 0.81767518, 0.81767518,
0.81767518, 0.81767518, 0.87952872, 0.87952872, 0.87952872,
0.87952872, 0.92592644, 0.92592644, 0.92592644, 0.92592644,
0.95777449, 0.95777449, 0.95777449, 0.95777449, 0.97772552,
0.97772552, 0.97772552, 0.97772552, 0.98912736, 0.98912736,
0.98912736, 0.98912736, 0.99508255, 0.99508255, 0.99508255,
0.99508255, 0.99793468, 0.99793468, 0.99793468, 0.99793468,
0.99919234, 0.99919234, 0.99919234, 0.99919234, 0.99970524,
0.99970524, 0.99970524, 0.99970524, 0.99989867, 0.99989867,
0.99989867, 0.99989867, 0.99997121, 0.99997121, 0.99997121]), 'vx': array([-1.99997846, -1.99997846, -1.99997846, -1.99997846, -1.9999242 ,
-1.9999242 , -1.9999242 , -1.9999242 , -1.99977955, -1.99977955,
-1.99977955, -1.99977955, -1.99939615, -1.99939615, -1.99939615,
-1.99939615, -1.99845642, -1.99845642, -1.99845642, -1.99845642,
-1.99632559, -1.99632559, -1.99632559, -1.99632559, -1.99187246,
-1.99187246, -1.99187246, -1.99187246, -1.98331711, -1.98331711,
-1.98331711, -1.98331711, -1.96822029, -1.96822029, -1.96822029,
-1.96822029, -1.94371206, -1.94371206, -1.94371206, -1.94371206,
-1.9069393 , -1.9069393 , -1.9069393 , -1.9069393 , -1.85554164,
-1.85554164, -1.85554164, -1.85554164, -1.78792749, -1.78792749,
-1.78792749, -1.78792749, -1.70446081, -1.70446081, -1.70446081,
-1.70446081, -1.61130027, -1.61130027, -1.61130027, -1.61130027,
-1.51343381, -1.51343381, -1.51343381, -1.51343381, -1.4129628 ,
-1.4129628 , -1.4129628 , -1.4129628 , -1.31068056, -1.31068056,
-1.31068056, -1.31068056, -1.20701548, -1.20701548, -1.20701548,
-1.20701548, -1.10227287, -1.10227287, -1.10227287, -1.10227287,
-0.99702848, -0.99702848, -0.99702848, -0.99702848, -0.89212641,
-0.89212641, -0.89212641, -0.89212641, -0.78809065, -0.78809065,
-0.78809065, -0.78809065, -0.68550554, -0.68550554, -0.68550554,
-0.68550554, -0.58520707, -0.58520707, -0.58520707, -0.58520707,
-0.48811927, -0.48811927, -0.48811927, -0.48811927, -0.39498294,
-0.39498294, -0.39498294, -0.39498294, -0.30710231, -0.30710231,
-0.30710231, -0.30710231, -0.22524033, -0.22524033, -0.22524033,
-0.22524033, -0.1530114 , -0.1530114 , -0.1530114 , -0.1530114 ,
-0.08453459, -0.08453459, -0.08453459, -0.08453459, -0.03239843,
-0.03239843, -0.03239843, -0.03239843, 0.03239843, 0.03239843,
0.03239843, 0.03239843, 0.08453459, 0.08453459, 0.08453459,
0.08453459, 0.1530114 , 0.1530114 , 0.1530114 , 0.1530114 ,
0.22524033, 0.22524033, 0.22524033, 0.22524033, 0.30710231,
0.30710231, 0.30710231, 0.30710231, 0.39498294, 0.39498294,
0.39498294, 0.39498294, 0.48811927, 0.48811927, 0.48811927,
0.48811927, 0.58520707, 0.58520707, 0.58520707, 0.58520707,
0.68550554, 0.68550554, 0.68550554, 0.68550554, 0.78809065,
0.78809065, 0.78809065, 0.78809065, 0.89212641, 0.89212641,
0.89212641, 0.89212641, 0.99702848, 0.99702848, 0.99702848,
0.99702848, 1.10227287, 1.10227287, 1.10227287, 1.10227287,
1.20701548, 1.20701548, 1.20701548, 1.20701548, 1.31068056,
1.31068056, 1.31068056, 1.31068056, 1.4129628 , 1.4129628 ,
1.4129628 , 1.4129628 , 1.51343381, 1.51343381, 1.51343381,
1.51343381, 1.61130027, 1.61130027, 1.61130027, 1.61130027,
1.70446081, 1.70446081, 1.70446081, 1.70446081, 1.78792749,
1.78792749, 1.78792749, 1.78792749, 1.85554164, 1.85554164,
1.85554164, 1.85554164, 1.9069393 , 1.9069393 , 1.9069393 ,
1.9069393 , 1.94371206, 1.94371206, 1.94371206, 1.94371206,
1.96822029, 1.96822029, 1.96822029, 1.96822029, 1.98331711,
1.98331711, 1.98331711, 1.98331711, 1.99187246, 1.99187246,
1.99187246, 1.99187246, 1.99632559, 1.99632559, 1.99632559,
1.99632559, 1.99845642, 1.99845642, 1.99845642, 1.99845642,
1.99939615, 1.99939615, 1.99939615, 1.99939615, 1.99977955,
1.99977955, 1.99977955, 1.99977955, 1.9999242 , 1.9999242 ,
1.9999242 , 1.9999242 , 1.99997846, 1.99997846, 1.99997846]), 'P': array([0.39998388, 0.39998388, 0.39998388, 0.39998388, 0.39994328,
0.39994328, 0.39994328, 0.39994328, 0.39983506, 0.39983506,
0.39983506, 0.39983506, 0.39954836, 0.39954836, 0.39954836,
0.39954836, 0.39884643, 0.39884643, 0.39884643, 0.39884643,
0.39725894, 0.39725894, 0.39725894, 0.39725894, 0.39395951,
0.39395951, 0.39395951, 0.39395951, 0.3876887 , 0.3876887 ,
0.3876887 , 0.3876887 , 0.37683706, 0.37683706, 0.37683706,
0.37683706, 0.35978619, 0.35978619, 0.35978619, 0.35978619,
0.33546632, 0.33546632, 0.33546632, 0.33546632, 0.30387649,
0.30387649, 0.30387649, 0.30387649, 0.26617104, 0.26617104,
0.26617104, 0.26617104, 0.22440064, 0.22440064, 0.22440064,
0.22440064, 0.18486641, 0.18486641, 0.18486641, 0.18486641,
0.15047094, 0.15047094, 0.15047094, 0.15047094, 0.12150865,
0.12150865, 0.12150865, 0.12150865, 0.09758402, 0.09758402,
0.09758402, 0.09758402, 0.07809753, 0.07809753, 0.07809753,
0.07809753, 0.06241546, 0.06241546, 0.06241546, 0.06241546,
0.04993828, 0.04993828, 0.04993828, 0.04993828, 0.04010618,
0.04010618, 0.04010618, 0.04010618, 0.03238928, 0.03238928,
0.03238928, 0.03238928, 0.02634913, 0.02634913, 0.02634913,
0.02634913, 0.02162689, 0.02162689, 0.02162689, 0.02162689,
0.01794132, 0.01794132, 0.01794132, 0.01794132, 0.01508808,
0.01508808, 0.01508808, 0.01508808, 0.0128935 , 0.0128935 ,
0.0128935 , 0.0128935 , 0.01125253, 0.01125253, 0.01125253,
0.01125253, 0.01001855, 0.01001855, 0.01001855, 0.01001855,
0.00930588, 0.00930588, 0.00930588, 0.00930588, 0.00879073,
0.00879073, 0.00879073, 0.00879073, 0.00879073, 0.00879073,
0.00879073, 0.00879073, 0.00930588, 0.00930588, 0.00930588,
0.00930588, 0.01001855, 0.01001855, 0.01001855, 0.01001855,
0.01125253, 0.01125253, 0.01125253, 0.01125253, 0.0128935 ,
0.0128935 , 0.0128935 , 0.0128935 , 0.01508808, 0.01508808,
0.01508808, 0.01508808, 0.01794132, 0.01794132, 0.01794132,
0.01794132, 0.02162689, 0.02162689, 0.02162689, 0.02162689,
0.02634913, 0.02634913, 0.02634913, 0.02634913, 0.03238928,
0.03238928, 0.03238928, 0.03238928, 0.04010618, 0.04010618,
0.04010618, 0.04010618, 0.04993828, 0.04993828, 0.04993828,
0.04993828, 0.06241546, 0.06241546, 0.06241546, 0.06241546,
0.07809753, 0.07809753, 0.07809753, 0.07809753, 0.09758402,
0.09758402, 0.09758402, 0.09758402, 0.12150865, 0.12150865,
0.12150865, 0.12150865, 0.15047094, 0.15047094, 0.15047094,
0.15047094, 0.18486641, 0.18486641, 0.18486641, 0.18486641,
0.22440064, 0.22440064, 0.22440064, 0.22440064, 0.26617104,
0.26617104, 0.26617104, 0.26617104, 0.30387649, 0.30387649,
0.30387649, 0.30387649, 0.33546632, 0.33546632, 0.33546632,
0.33546632, 0.35978619, 0.35978619, 0.35978619, 0.35978619,
0.37683706, 0.37683706, 0.37683706, 0.37683706, 0.3876887 ,
0.3876887 , 0.3876887 , 0.3876887 , 0.39395951, 0.39395951,
0.39395951, 0.39395951, 0.39725894, 0.39725894, 0.39725894,
0.39725894, 0.39884643, 0.39884643, 0.39884643, 0.39884643,
0.39954836, 0.39954836, 0.39954836, 0.39954836, 0.39983506,
0.39983506, 0.39983506, 0.39983506, 0.39994328, 0.39994328,
0.39994328, 0.39994328, 0.39998388, 0.39998388, 0.39998388])}, {'rho': array([0.99993221, 0.99993221, 0.99993221, 0.99993221, 0.99977442,
0.99977442, 0.99977442, 0.99977442, 0.99938273, 0.99938273,
0.99938273, 0.99938273, 0.99840779, 0.99840779, 0.99840779,
0.99840779, 0.99616937, 0.99616937, 0.99616937, 0.99616937,
0.99142249, 0.99142249, 0.99142249, 0.99142249, 0.98216622,
0.98216622, 0.98216622, 0.98216622, 0.96562758, 0.96562758,
0.96562758, 0.96562758, 0.93861261, 0.93861261, 0.93861261,
0.93861261, 0.89828406, 0.89828406, 0.89828406, 0.89828406,
0.84315078, 0.84315078, 0.84315078, 0.84315078, 0.77388329,
0.77388329, 0.77388329, 0.77388329, 0.69382305, 0.69382305,
0.69382305, 0.69382305, 0.60771611, 0.60771611, 0.60771611,
0.60771611, 0.52233132, 0.52233132, 0.52233132, 0.52233132,
0.44272042, 0.44272042, 0.44272042, 0.44272042, 0.37066321,
0.37066321, 0.37066321, 0.37066321, 0.30711033, 0.30711033,
0.30711033, 0.30711033, 0.2523528 , 0.2523528 , 0.2523528 ,
0.2523528 , 0.20616202, 0.20616202, 0.20616202, 0.20616202,
0.1679338 , 0.1679338 , 0.1679338 , 0.1679338 , 0.13675014,
0.13675014, 0.13675014, 0.13675014, 0.11157336, 0.11157336,
0.11157336, 0.11157336, 0.09142644, 0.09142644, 0.09142644,
0.09142644, 0.07542674, 0.07542674, 0.07542674, 0.07542674,
0.06289114, 0.06289114, 0.06289114, 0.06289114, 0.05323726,
0.05323726, 0.05323726, 0.05323726, 0.04592933, 0.04592933,
0.04592933, 0.04592933, 0.04060411, 0.04060411, 0.04060411,
0.04060411, 0.03675686, 0.03675686, 0.03675686, 0.03675686,
0.03461818, 0.03461818, 0.03461818, 0.03461818, 0.03320159,
0.03320159, 0.03320159, 0.03320159, 0.03320159, 0.03320159,
0.03320159, 0.03320159, 0.03461818, 0.03461818, 0.03461818,
0.03461818, 0.03675686, 0.03675686, 0.03675686, 0.03675686,
0.04060411, 0.04060411, 0.04060411, 0.04060411, 0.04592933,
0.04592933, 0.04592933, 0.04592933, 0.05323726, 0.05323726,
0.05323726, 0.05323726, 0.06289114, 0.06289114, 0.06289114,
0.06289114, 0.07542674, 0.07542674, 0.07542674, 0.07542674,
0.09142644, 0.09142644, 0.09142644, 0.09142644, 0.11157336,
0.11157336, 0.11157336, 0.11157336, 0.13675014, 0.13675014,
0.13675014, 0.13675014, 0.1679338 , 0.1679338 , 0.1679338 ,
0.1679338 , 0.20616202, 0.20616202, 0.20616202, 0.20616202,
0.2523528 , 0.2523528 , 0.2523528 , 0.2523528 , 0.30711033,
0.30711033, 0.30711033, 0.30711033, 0.37066321, 0.37066321,
0.37066321, 0.37066321, 0.44272042, 0.44272042, 0.44272042,
0.44272042, 0.52233132, 0.52233132, 0.52233132, 0.52233132,
0.60771611, 0.60771611, 0.60771611, 0.60771611, 0.69382305,
0.69382305, 0.69382305, 0.69382305, 0.77388329, 0.77388329,
0.77388329, 0.77388329, 0.84315078, 0.84315078, 0.84315078,
0.84315078, 0.89828406, 0.89828406, 0.89828406, 0.89828406,
0.93861261, 0.93861261, 0.93861261, 0.93861261, 0.96562758,
0.96562758, 0.96562758, 0.96562758, 0.98216622, 0.98216622,
0.98216622, 0.98216622, 0.99142249, 0.99142249, 0.99142249,
0.99142249, 0.99616937, 0.99616937, 0.99616937, 0.99616937,
0.99840779, 0.99840779, 0.99840779, 0.99840779, 0.99938273,
0.99938273, 0.99938273, 0.99938273, 0.99977442, 0.99977442,
0.99977442, 0.99977442, 0.99993221, 0.99993221, 0.99993221]), 'vx': array([-1.99994929, -1.99994929, -1.99994929, -1.99994929, -1.99983127,
-1.99983127, -1.99983127, -1.99983127, -1.99953841, -1.99953841,
-1.99953841, -1.99953841, -1.99880972, -1.99880972, -1.99880972,
-1.99880972, -1.99713698, -1.99713698, -1.99713698, -1.99713698,
-1.99358761, -1.99358761, -1.99358761, -1.99358761, -1.98664859,
-1.98664859, -1.98664859, -1.98664859, -1.974168 , -1.974168 ,
-1.974168 , -1.974168 , -1.95350169, -1.95350169, -1.95350169,
-1.95350169, -1.92188774, -1.92188774, -1.92188774, -1.92188774,
-1.8769192 , -1.8769192 , -1.8769192 , -1.8769192 , -1.81687101,
-1.81687101, -1.81687101, -1.81687101, -1.7410477 , -1.7410477 ,
-1.7410477 , -1.7410477 , -1.653266 , -1.653266 , -1.653266 ,
-1.653266 , -1.55956427, -1.55956427, -1.55956427, -1.55956427,
-1.46285018, -1.46285018, -1.46285018, -1.46285018, -1.36421396,
-1.36421396, -1.36421396, -1.36421396, -1.26410153, -1.26410153,
-1.26410153, -1.26410153, -1.16284367, -1.16284367, -1.16284367,
-1.16284367, -1.06073717, -1.06073717, -1.06073717, -1.06073717,
-0.95846761, -0.95846761, -0.95846761, -0.95846761, -0.85670416,
-0.85670416, -0.85670416, -0.85670416, -0.75589367, -0.75589367,
-0.75589367, -0.75589367, -0.65662074, -0.65662074, -0.65662074,
-0.65662074, -0.55975149, -0.55975149, -0.55975149, -0.55975149,
-0.46604981, -0.46604981, -0.46604981, -0.46604981, -0.3763215 ,
-0.3763215 , -0.3763215 , -0.3763215 , -0.29188521, -0.29188521,
-0.29188521, -0.29188521, -0.21339782, -0.21339782, -0.21339782,
-0.21339782, -0.14476926, -0.14476926, -0.14476926, -0.14476926,
-0.07947731, -0.07947731, -0.07947731, -0.07947731, -0.03033494,
-0.03033494, -0.03033494, -0.03033494, 0.03033494, 0.03033494,
0.03033494, 0.03033494, 0.07947731, 0.07947731, 0.07947731,
0.07947731, 0.14476926, 0.14476926, 0.14476926, 0.14476926,
0.21339782, 0.21339782, 0.21339782, 0.21339782, 0.29188521,
0.29188521, 0.29188521, 0.29188521, 0.3763215 , 0.3763215 ,
0.3763215 , 0.3763215 , 0.46604981, 0.46604981, 0.46604981,
0.46604981, 0.55975149, 0.55975149, 0.55975149, 0.55975149,
0.65662074, 0.65662074, 0.65662074, 0.65662074, 0.75589367,
0.75589367, 0.75589367, 0.75589367, 0.85670416, 0.85670416,
0.85670416, 0.85670416, 0.95846761, 0.95846761, 0.95846761,
0.95846761, 1.06073717, 1.06073717, 1.06073717, 1.06073717,
1.16284367, 1.16284367, 1.16284367, 1.16284367, 1.26410153,
1.26410153, 1.26410153, 1.26410153, 1.36421396, 1.36421396,
1.36421396, 1.36421396, 1.46285018, 1.46285018, 1.46285018,
1.46285018, 1.55956427, 1.55956427, 1.55956427, 1.55956427,
1.653266 , 1.653266 , 1.653266 , 1.653266 , 1.7410477 ,
1.7410477 , 1.7410477 , 1.7410477 , 1.81687101, 1.81687101,
1.81687101, 1.81687101, 1.8769192 , 1.8769192 , 1.8769192 ,
1.8769192 , 1.92188774, 1.92188774, 1.92188774, 1.92188774,
1.95350169, 1.95350169, 1.95350169, 1.95350169, 1.974168 ,
1.974168 , 1.974168 , 1.974168 , 1.98664859, 1.98664859,
1.98664859, 1.98664859, 1.99358761, 1.99358761, 1.99358761,
1.99358761, 1.99713698, 1.99713698, 1.99713698, 1.99713698,
1.99880972, 1.99880972, 1.99880972, 1.99880972, 1.99953841,
1.99953841, 1.99953841, 1.99953841, 1.99983127, 1.99983127,
1.99983127, 1.99983127, 1.99994929, 1.99994929, 1.99994929]), 'P': array([0.39996205, 0.39996205, 0.39996205, 0.39996205, 0.39987375,
0.39987375, 0.39987375, 0.39987375, 0.39965472, 0.39965472,
0.39965472, 0.39965472, 0.3991102 , 0.3991102 , 0.3991102 ,
0.3991102 , 0.39786276, 0.39786276, 0.39786276, 0.39786276,
0.39522738, 0.39522738, 0.39522738, 0.39522738, 0.3901199 ,
0.3901199 , 0.3901199 , 0.3901199 , 0.38107966, 0.38107966,
0.38107966, 0.38107966, 0.36651324, 0.36651324, 0.36651324,
0.36651324, 0.34517082, 0.34517082, 0.34517082, 0.34517082,
0.31668048, 0.31668048, 0.31668048, 0.31668048, 0.28180827,
0.28180827, 0.28180827, 0.28180827, 0.24203834, 0.24203834,
0.24203834, 0.24203834, 0.20178049, 0.20178049, 0.20178049,
0.20178049, 0.16586829, 0.16586829, 0.16586829, 0.16586829,
0.13512706, 0.13512706, 0.13512706, 0.13512706, 0.10939173,
0.10939173, 0.10939173, 0.10939173, 0.08816908, 0.08816908,
0.08816908, 0.08816908, 0.07088001, 0.07088001, 0.07088001,
0.07088001, 0.05695154, 0.05695154, 0.05695154, 0.05695154,
0.04585165, 0.04585165, 0.04585165, 0.04585165, 0.03706835,
0.03706835, 0.03706835, 0.03706835, 0.03014005, 0.03014005,
0.03014005, 0.03014005, 0.02468875, 0.02468875, 0.02468875,
0.02468875, 0.02040122, 0.02040122, 0.02040122, 0.02040122,
0.01704141, 0.01704141, 0.01704141, 0.01704141, 0.01442848,
0.01442848, 0.01442848, 0.01442848, 0.01241054, 0.01241054,
0.01241054, 0.01241054, 0.01090155, 0.01090155, 0.01090155,
0.01090155, 0.00975937, 0.00975937, 0.00975937, 0.00975937,
0.00911402, 0.00911402, 0.00911402, 0.00911402, 0.00864033,
0.00864033, 0.00864033, 0.00864033, 0.00864033, 0.00864033,
0.00864033, 0.00864033, 0.00911402, 0.00911402, 0.00911402,
0.00911402, 0.00975937, 0.00975937, 0.00975937, 0.00975937,
0.01090155, 0.01090155, 0.01090155, 0.01090155, 0.01241054,
0.01241054, 0.01241054, 0.01241054, 0.01442848, 0.01442848,
0.01442848, 0.01442848, 0.01704141, 0.01704141, 0.01704141,
0.01704141, 0.02040122, 0.02040122, 0.02040122, 0.02040122,
0.02468875, 0.02468875, 0.02468875, 0.02468875, 0.03014005,
0.03014005, 0.03014005, 0.03014005, 0.03706835, 0.03706835,
0.03706835, 0.03706835, 0.04585165, 0.04585165, 0.04585165,
0.04585165, 0.05695154, 0.05695154, 0.05695154, 0.05695154,
0.07088001, 0.07088001, 0.07088001, 0.07088001, 0.08816908,
0.08816908, 0.08816908, 0.08816908, 0.10939173, 0.10939173,
0.10939173, 0.10939173, 0.13512706, 0.13512706, 0.13512706,
0.13512706, 0.16586829, 0.16586829, 0.16586829, 0.16586829,
0.20178049, 0.20178049, 0.20178049, 0.20178049, 0.24203834,
0.24203834, 0.24203834, 0.24203834, 0.28180827, 0.28180827,
0.28180827, 0.28180827, 0.31668048, 0.31668048, 0.31668048,
0.31668048, 0.34517082, 0.34517082, 0.34517082, 0.34517082,
0.36651324, 0.36651324, 0.36651324, 0.36651324, 0.38107966,
0.38107966, 0.38107966, 0.38107966, 0.3901199 , 0.3901199 ,
0.3901199 , 0.3901199 , 0.39522738, 0.39522738, 0.39522738,
0.39522738, 0.39786276, 0.39786276, 0.39786276, 0.39786276,
0.3991102 , 0.3991102 , 0.3991102 , 0.3991102 , 0.39965472,
0.39965472, 0.39965472, 0.39965472, 0.39987375, 0.39987375,
0.39987375, 0.39987375, 0.39996205, 0.39996205, 0.39996205])}, {'rho': array([0.999849 , 0.999849 , 0.999849 , 0.999849 , 0.99952432,
0.99952432, 0.99952432, 0.99952432, 0.99877407, 0.99877407,
0.99877407, 0.99877407, 0.9970195 , 0.9970195 , 0.9970195 ,
0.9970195 , 0.99324554, 0.99324554, 0.99324554, 0.99324554,
0.98575697, 0.98575697, 0.98575697, 0.98575697, 0.97210669,
0.97210669, 0.97210669, 0.97210669, 0.94930976, 0.94930976,
0.94930976, 0.94930976, 0.91446125, 0.91446125, 0.91446125,
0.91446125, 0.86563643, 0.86563643, 0.86563643, 0.86563643,
0.80272712, 0.80272712, 0.80272712, 0.80272712, 0.72797948,
0.72797948, 0.72797948, 0.72797948, 0.64577881, 0.64577881,
0.64577881, 0.64577881, 0.56148247, 0.56148247, 0.56148247,
0.56148247, 0.48134022, 0.48134022, 0.48134022, 0.48134022,
0.40756894, 0.40756894, 0.40756894, 0.40756894, 0.34134467,
0.34134467, 0.34134467, 0.34134467, 0.28325988, 0.28325988,
0.28325988, 0.28325988, 0.23338963, 0.23338963, 0.23338963,
0.23338963, 0.19140241, 0.19140241, 0.19140241, 0.19140241,
0.15665519, 0.15665519, 0.15665519, 0.15665519, 0.1282427 ,
0.1282427 , 0.1282427 , 0.1282427 , 0.10522841, 0.10522841,
0.10522841, 0.10522841, 0.0867382 , 0.0867382 , 0.0867382 ,
0.0867382 , 0.07199564, 0.07199564, 0.07199564, 0.07199564,
0.06041253, 0.06041253, 0.06041253, 0.06041253, 0.05145849,
0.05145849, 0.05145849, 0.05145849, 0.04465627, 0.04465627,
0.04465627, 0.04465627, 0.03969915, 0.03969915, 0.03969915,
0.03969915, 0.03609832, 0.03609832, 0.03609832, 0.03609832,
0.03413507, 0.03413507, 0.03413507, 0.03413507, 0.03282295,
0.03282295, 0.03282295, 0.03282295, 0.03282295, 0.03282295,
0.03282295, 0.03282295, 0.03413507, 0.03413507, 0.03413507,
0.03413507, 0.03609832, 0.03609832, 0.03609832, 0.03609832,
0.03969915, 0.03969915, 0.03969915, 0.03969915, 0.04465627,
0.04465627, 0.04465627, 0.04465627, 0.05145849, 0.05145849,
0.05145849, 0.05145849, 0.06041253, 0.06041253, 0.06041253,
0.06041253, 0.07199564, 0.07199564, 0.07199564, 0.07199564,
0.0867382 , 0.0867382 , 0.0867382 , 0.0867382 , 0.10522841,
0.10522841, 0.10522841, 0.10522841, 0.1282427 , 0.1282427 ,
0.1282427 , 0.1282427 , 0.15665519, 0.15665519, 0.15665519,
0.15665519, 0.19140241, 0.19140241, 0.19140241, 0.19140241,
0.23338963, 0.23338963, 0.23338963, 0.23338963, 0.28325988,
0.28325988, 0.28325988, 0.28325988, 0.34134467, 0.34134467,
0.34134467, 0.34134467, 0.40756894, 0.40756894, 0.40756894,
0.40756894, 0.48134022, 0.48134022, 0.48134022, 0.48134022,
0.56148247, 0.56148247, 0.56148247, 0.56148247, 0.64577881,
0.64577881, 0.64577881, 0.64577881, 0.72797948, 0.72797948,
0.72797948, 0.72797948, 0.80272712, 0.80272712, 0.80272712,
0.80272712, 0.86563643, 0.86563643, 0.86563643, 0.86563643,
0.91446125, 0.91446125, 0.91446125, 0.91446125, 0.94930976,
0.94930976, 0.94930976, 0.94930976, 0.97210669, 0.97210669,
0.97210669, 0.97210669, 0.98575697, 0.98575697, 0.98575697,
0.98575697, 0.99324554, 0.99324554, 0.99324554, 0.99324554,
0.9970195 , 0.9970195 , 0.9970195 , 0.9970195 , 0.99877407,
0.99877407, 0.99877407, 0.99877407, 0.99952432, 0.99952432,
0.99952432, 0.99952432, 0.999849 , 0.999849 , 0.999849 ]), 'vx': array([-1.99988705, -1.99988705, -1.99988705, -1.99988705, -1.99964423,
-1.99964423, -1.99964423, -1.99964423, -1.99908336, -1.99908336,
-1.99908336, -1.99908336, -1.99777191, -1.99777191, -1.99777191,
-1.99777191, -1.99495004, -1.99495004, -1.99495004, -1.99495004,
-1.98933996, -1.98933996, -1.98933996, -1.98933996, -1.97906089,
-1.97906089, -1.97906089, -1.97906089, -1.96170422, -1.96170422,
-1.96170422, -1.96170422, -1.9346307 , -1.9346307 , -1.9346307 ,
-1.9346307 , -1.8954137 , -1.8954137 , -1.8954137 , -1.8954137 ,
-1.84222299, -1.84222299, -1.84222299, -1.84222299, -1.77397591,
-1.77397591, -1.77397591, -1.77397591, -1.69213098, -1.69213098,
-1.69213098, -1.69213098, -1.60273146, -1.60273146, -1.60273146,
-1.60273146, -1.50965165, -1.50965165, -1.50965165, -1.50965165,
-1.41448143, -1.41448143, -1.41448143, -1.41448143, -1.3177811 ,
-1.3177811 , -1.3177811 , -1.3177811 , -1.21984198, -1.21984198,
-1.21984198, -1.21984198, -1.1209646 , -1.1209646 , -1.1209646 ,
-1.1209646 , -1.02146005, -1.02146005, -1.02146005, -1.02146005,
-0.9220936 , -0.9220936 , -0.9220936 , -0.9220936 , -0.82332093,
-0.82332093, -0.82332093, -0.82332093, -0.72558094, -0.72558094,
-0.72558094, -0.72558094, -0.62946753, -0.62946753, -0.62946753,
-0.62946753, -0.53583047, -0.53583047, -0.53583047, -0.53583047,
-0.44533278, -0.44533278, -0.44533278, -0.44533278, -0.35883117,
-0.35883117, -0.35883117, -0.35883117, -0.27766258, -0.27766258,
-0.27766258, -0.27766258, -0.20236083, -0.20236083, -0.20236083,
-0.20236083, -0.13714722, -0.13714722, -0.13714722, -0.13714722,
-0.0748494 , -0.0748494 , -0.0748494 , -0.0748494 , -0.02844381,
-0.02844381, -0.02844381, -0.02844381, 0.02844381, 0.02844381,
0.02844381, 0.02844381, 0.0748494 , 0.0748494 , 0.0748494 ,
0.0748494 , 0.13714722, 0.13714722, 0.13714722, 0.13714722,
0.20236083, 0.20236083, 0.20236083, 0.20236083, 0.27766258,
0.27766258, 0.27766258, 0.27766258, 0.35883117, 0.35883117,
0.35883117, 0.35883117, 0.44533278, 0.44533278, 0.44533278,
0.44533278, 0.53583047, 0.53583047, 0.53583047, 0.53583047,
0.62946753, 0.62946753, 0.62946753, 0.62946753, 0.72558094,
0.72558094, 0.72558094, 0.72558094, 0.82332093, 0.82332093,
0.82332093, 0.82332093, 0.9220936 , 0.9220936 , 0.9220936 ,
0.9220936 , 1.02146005, 1.02146005, 1.02146005, 1.02146005,
1.1209646 , 1.1209646 , 1.1209646 , 1.1209646 , 1.21984198,
1.21984198, 1.21984198, 1.21984198, 1.3177811 , 1.3177811 ,
1.3177811 , 1.3177811 , 1.41448143, 1.41448143, 1.41448143,
1.41448143, 1.50965165, 1.50965165, 1.50965165, 1.50965165,
1.60273146, 1.60273146, 1.60273146, 1.60273146, 1.69213098,
1.69213098, 1.69213098, 1.69213098, 1.77397591, 1.77397591,
1.77397591, 1.77397591, 1.84222299, 1.84222299, 1.84222299,
1.84222299, 1.8954137 , 1.8954137 , 1.8954137 , 1.8954137 ,
1.9346307 , 1.9346307 , 1.9346307 , 1.9346307 , 1.96170422,
1.96170422, 1.96170422, 1.96170422, 1.97906089, 1.97906089,
1.97906089, 1.97906089, 1.98933996, 1.98933996, 1.98933996,
1.98933996, 1.99495004, 1.99495004, 1.99495004, 1.99495004,
1.99777191, 1.99777191, 1.99777191, 1.99777191, 1.99908336,
1.99908336, 1.99908336, 1.99908336, 1.99964423, 1.99964423,
1.99964423, 1.99964423, 1.99988705, 1.99988705, 1.99988705]), 'P': array([0.39991548, 0.39991548, 0.39991548, 0.39991548, 0.39973385,
0.39973385, 0.39973385, 0.39973385, 0.39931459, 0.39931459,
0.39931459, 0.39931459, 0.39833583, 0.39833583, 0.39833583,
0.39833583, 0.3962371 , 0.3962371 , 0.3962371 , 0.3962371 ,
0.39209385, 0.39209385, 0.39209385, 0.39209385, 0.38460138,
0.38460138, 0.38460138, 0.38460138, 0.37223462, 0.37223462,
0.37223462, 0.37223462, 0.35363741, 0.35363741, 0.35363741,
0.35363741, 0.32813525, 0.32813525, 0.32813525, 0.32813525,
0.29610314, 0.29610314, 0.29610314, 0.29610314, 0.25879516,
0.25879516, 0.25879516, 0.25879516, 0.2187502 , 0.2187502 ,
0.2187502 , 0.2187502 , 0.18161211, 0.18161211, 0.18161211,
0.18161211, 0.1492622 , 0.1492622 , 0.1492622 , 0.1492622 ,
0.12181009, 0.12181009, 0.12181009, 0.12181009, 0.09889624,
0.09889624, 0.09889624, 0.09889624, 0.08001119, 0.08001119,
0.08001119, 0.08001119, 0.06461698, 0.06461698, 0.06461698,
0.06461698, 0.05220043, 0.05220043, 0.05220043, 0.05220043,
0.0422833 , 0.0422833 , 0.0422833 , 0.0422833 , 0.0344005 ,
0.0344005 , 0.0344005 , 0.0344005 , 0.02815268, 0.02815268,
0.02815268, 0.02815268, 0.02321147, 0.02321147, 0.02321147,
0.02321147, 0.01930433, 0.01930433, 0.01930433, 0.01930433,
0.0162308 , 0.0162308 , 0.0162308 , 0.0162308 , 0.01383051,
0.01383051, 0.01383051, 0.01383051, 0.01197008, 0.01197008,
0.01197008, 0.01197008, 0.01058021, 0.01058021, 0.01058021,
0.01058021, 0.00952099, 0.00952099, 0.00952099, 0.00952099,
0.00893663, 0.00893663, 0.00893663, 0.00893663, 0.00850133,
0.00850133, 0.00850133, 0.00850133, 0.00850133, 0.00850133,
0.00850133, 0.00850133, 0.00893663, 0.00893663, 0.00893663,
0.00893663, 0.00952099, 0.00952099, 0.00952099, 0.00952099,
0.01058021, 0.01058021, 0.01058021, 0.01058021, 0.01197008,
0.01197008, 0.01197008, 0.01197008, 0.01383051, 0.01383051,
0.01383051, 0.01383051, 0.0162308 , 0.0162308 , 0.0162308 ,
0.0162308 , 0.01930433, 0.01930433, 0.01930433, 0.01930433,
0.02321147, 0.02321147, 0.02321147, 0.02321147, 0.02815268,
0.02815268, 0.02815268, 0.02815268, 0.0344005 , 0.0344005 ,
0.0344005 , 0.0344005 , 0.0422833 , 0.0422833 , 0.0422833 ,
0.0422833 , 0.05220043, 0.05220043, 0.05220043, 0.05220043,
0.06461698, 0.06461698, 0.06461698, 0.06461698, 0.08001119,
0.08001119, 0.08001119, 0.08001119, 0.09889624, 0.09889624,
0.09889624, 0.09889624, 0.12181009, 0.12181009, 0.12181009,
0.12181009, 0.1492622 , 0.1492622 , 0.1492622 , 0.1492622 ,
0.18161211, 0.18161211, 0.18161211, 0.18161211, 0.2187502 ,
0.2187502 , 0.2187502 , 0.2187502 , 0.25879516, 0.25879516,
0.25879516, 0.25879516, 0.29610314, 0.29610314, 0.29610314,
0.29610314, 0.32813525, 0.32813525, 0.32813525, 0.32813525,
0.35363741, 0.35363741, 0.35363741, 0.35363741, 0.37223462,
0.37223462, 0.37223462, 0.37223462, 0.38460138, 0.38460138,
0.38460138, 0.38460138, 0.39209385, 0.39209385, 0.39209385,
0.39209385, 0.3962371 , 0.3962371 , 0.3962371 , 0.3962371 ,
0.39833583, 0.39833583, 0.39833583, 0.39833583, 0.39931459,
0.39931459, 0.39931459, 0.39931459, 0.39973385, 0.39973385,
0.39973385, 0.39973385, 0.39991548, 0.39991548, 0.39991548])}, {'rho': array([0.99968086, 0.99968086, 0.99968086, 0.99968086, 0.99904735,
0.99904735, 0.99904735, 0.99904735, 0.99768535, 0.99768535,
0.99768535, 0.99768535, 0.99469 , 0.99469 , 0.99469 ,
0.99469 , 0.98865158, 0.98865158, 0.98865158, 0.98865158,
0.97743175, 0.97743175, 0.97743175, 0.97743175, 0.95828971,
0.95828971, 0.95828971, 0.95828971, 0.92834661, 0.92834661,
0.92834661, 0.92834661, 0.8853768 , 0.8853768 , 0.8853768 ,
0.8853768 , 0.8286427 , 0.8286427 , 0.8286427 , 0.8286427 ,
0.75946561, 0.75946561, 0.75946561, 0.75946561, 0.68150433,
0.68150433, 0.68150433, 0.68150433, 0.59924388, 0.59924388,
0.59924388, 0.59924388, 0.51916445, 0.51916445, 0.51916445,
0.51916445, 0.44435622, 0.44435622, 0.44435622, 0.44435622,
0.37611909, 0.37611909, 0.37611909, 0.37611909, 0.31525272,
0.31525272, 0.31525272, 0.31525272, 0.26210199, 0.26210199,
0.26210199, 0.26210199, 0.21659335, 0.21659335, 0.21659335,
0.21659335, 0.17833401, 0.17833401, 0.17833401, 0.17833401,
0.14664183, 0.14664183, 0.14664183, 0.14664183, 0.12066146,
0.12066146, 0.12066146, 0.12066146, 0.09954839, 0.09954839,
0.09954839, 0.09954839, 0.0825182 , 0.0825182 , 0.0825182 ,
0.0825182 , 0.06889504, 0.06889504, 0.06889504, 0.06889504,
0.05815951, 0.05815951, 0.05815951, 0.05815951, 0.049832 ,
0.049832 , 0.049832 , 0.049832 , 0.04348546, 0.04348546,
0.04348546, 0.04348546, 0.03886386, 0.03886386, 0.03886386,
0.03886386, 0.03548794, 0.03548794, 0.03548794, 0.03548794,
0.03368503, 0.03368503, 0.03368503, 0.03368503, 0.03247044,
0.03247044, 0.03247044, 0.03247044, 0.03247044, 0.03247044,
0.03247044, 0.03247044, 0.03368503, 0.03368503, 0.03368503,
0.03368503, 0.03548794, 0.03548794, 0.03548794, 0.03548794,
0.03886386, 0.03886386, 0.03886386, 0.03886386, 0.04348546,
0.04348546, 0.04348546, 0.04348546, 0.049832 , 0.049832 ,
0.049832 , 0.049832 , 0.05815951, 0.05815951, 0.05815951,
0.05815951, 0.06889504, 0.06889504, 0.06889504, 0.06889504,
0.0825182 , 0.0825182 , 0.0825182 , 0.0825182 , 0.09954839,
0.09954839, 0.09954839, 0.09954839, 0.12066146, 0.12066146,
0.12066146, 0.12066146, 0.14664183, 0.14664183, 0.14664183,
0.14664183, 0.17833401, 0.17833401, 0.17833401, 0.17833401,
0.21659335, 0.21659335, 0.21659335, 0.21659335, 0.26210199,
0.26210199, 0.26210199, 0.26210199, 0.31525272, 0.31525272,
0.31525272, 0.31525272, 0.37611909, 0.37611909, 0.37611909,
0.37611909, 0.44435622, 0.44435622, 0.44435622, 0.44435622,
0.51916445, 0.51916445, 0.51916445, 0.51916445, 0.59924388,
0.59924388, 0.59924388, 0.59924388, 0.68150433, 0.68150433,
0.68150433, 0.68150433, 0.75946561, 0.75946561, 0.75946561,
0.75946561, 0.8286427 , 0.8286427 , 0.8286427 , 0.8286427 ,
0.8853768 , 0.8853768 , 0.8853768 , 0.8853768 , 0.92834661,
0.92834661, 0.92834661, 0.92834661, 0.95828971, 0.95828971,
0.95828971, 0.95828971, 0.97743175, 0.97743175, 0.97743175,
0.97743175, 0.98865158, 0.98865158, 0.98865158, 0.98865158,
0.99469 , 0.99469 , 0.99469 , 0.99469 , 0.99768535,
0.99768535, 0.99768535, 0.99768535, 0.99904735, 0.99904735,
0.99904735, 0.99904735, 0.99968086, 0.99968086, 0.99968086]), 'vx': array([-1.99976129, -1.99976129, -1.99976129, -1.99976129, -1.99928757,
-1.99928757, -1.99928757, -1.99928757, -1.99826937, -1.99826937,
-1.99826937, -1.99826937, -1.99602961, -1.99602961, -1.99602961,
-1.99602961, -1.99150811, -1.99150811, -1.99150811, -1.99150811,
-1.98307313, -1.98307313, -1.98307313, -1.98307313, -1.96855469,
-1.96855469, -1.96855469, -1.96855469, -1.94546306, -1.94546306,
-1.94546306, -1.94546306, -1.9113848 , -1.9113848 , -1.9113848 ,
-1.9113848 , -1.86439131, -1.86439131, -1.86439131, -1.86439131,
-1.80324961, -1.80324961, -1.80324961, -1.80324961, -1.7279512 ,
-1.7279512 , -1.7279512 , -1.7279512 , -1.64307535, -1.64307535,
-1.64307535, -1.64307535, -1.55362138, -1.55362138, -1.55362138,
-1.55362138, -1.46174726, -1.46174726, -1.46174726, -1.46174726,
-1.36829267, -1.36829267, -1.36829267, -1.36829267, -1.27355598,
-1.27355598, -1.27355598, -1.27355598, -1.17777205, -1.17777205,
-1.17777205, -1.17777205, -1.08123072, -1.08123072, -1.08123072,
-1.08123072, -0.98432119, -0.98432119, -0.98432119, -0.98432119,
-0.88773681, -0.88773681, -0.88773681, -0.88773681, -0.79181684,
-0.79181684, -0.79181684, -0.79181684, -0.69700308, -0.69700308,
-0.69700308, -0.69700308, -0.60390558, -0.60390558, -0.60390558,
-0.60390558, -0.51331502, -0.51331502, -0.51331502, -0.51331502,
-0.42585753, -0.42585753, -0.42585753, -0.42585753, -0.34241668,
-0.34241668, -0.34241668, -0.34241668, -0.26435547, -0.26435547,
-0.26435547, -0.26435547, -0.19206534, -0.19206534, -0.19206534,
-0.19206534, -0.13009378, -0.13009378, -0.13009378, -0.13009378,
-0.07061608, -0.07061608, -0.07061608, -0.07061608, -0.02671133,
-0.02671133, -0.02671133, -0.02671133, 0.02671133, 0.02671133,
0.02671133, 0.02671133, 0.07061608, 0.07061608, 0.07061608,
0.07061608, 0.13009378, 0.13009378, 0.13009378, 0.13009378,
0.19206534, 0.19206534, 0.19206534, 0.19206534, 0.26435547,
0.26435547, 0.26435547, 0.26435547, 0.34241668, 0.34241668,
0.34241668, 0.34241668, 0.42585753, 0.42585753, 0.42585753,
0.42585753, 0.51331502, 0.51331502, 0.51331502, 0.51331502,
0.60390558, 0.60390558, 0.60390558, 0.60390558, 0.69700308,
0.69700308, 0.69700308, 0.69700308, 0.79181684, 0.79181684,
0.79181684, 0.79181684, 0.88773681, 0.88773681, 0.88773681,
0.88773681, 0.98432119, 0.98432119, 0.98432119, 0.98432119,
1.08123072, 1.08123072, 1.08123072, 1.08123072, 1.17777205,
1.17777205, 1.17777205, 1.17777205, 1.27355598, 1.27355598,
1.27355598, 1.27355598, 1.36829267, 1.36829267, 1.36829267,
1.36829267, 1.46174726, 1.46174726, 1.46174726, 1.46174726,
1.55362138, 1.55362138, 1.55362138, 1.55362138, 1.64307535,
1.64307535, 1.64307535, 1.64307535, 1.7279512 , 1.7279512 ,
1.7279512 , 1.7279512 , 1.80324961, 1.80324961, 1.80324961,
1.80324961, 1.86439131, 1.86439131, 1.86439131, 1.86439131,
1.9113848 , 1.9113848 , 1.9113848 , 1.9113848 , 1.94546306,
1.94546306, 1.94546306, 1.94546306, 1.96855469, 1.96855469,
1.96855469, 1.96855469, 1.98307313, 1.98307313, 1.98307313,
1.98307313, 1.99150811, 1.99150811, 1.99150811, 1.99150811,
1.99602961, 1.99602961, 1.99602961, 1.99602961, 1.99826937,
1.99826937, 1.99826937, 1.99826937, 1.99928757, 1.99928757,
1.99928757, 1.99928757, 1.99976129, 1.99976129, 1.99976129]), 'P': array([0.39982141, 0.39982141, 0.39982141, 0.39982141, 0.39946719,
0.39946719, 0.39946719, 0.39946719, 0.39870684, 0.39870684,
0.39870684, 0.39870684, 0.39703884, 0.39703884, 0.39703884,
0.39703884, 0.39369048, 0.39369048, 0.39369048, 0.39369048,
0.38751064, 0.38751064, 0.38751064, 0.38751064, 0.37707294,
0.37707294, 0.37707294, 0.37707294, 0.36097737, 0.36097737,
0.36097737, 0.36097737, 0.33831756, 0.33831756, 0.33831756,
0.33831756, 0.30910205, 0.30910205, 0.30910205, 0.30910205,
0.27433245, 0.27433245, 0.27433245, 0.27433245, 0.23557782,
0.23557782, 0.23557782, 0.23557782, 0.1975858 , 0.1975858 ,
0.1975858 , 0.1975858 , 0.16381828, 0.16381828, 0.16381828,
0.16381828, 0.13476633, 0.13476633, 0.13476633, 0.13476633,
0.11022619, 0.11022619, 0.11022619, 0.11022619, 0.08977175,
0.08977175, 0.08977175, 0.08977175, 0.07291246, 0.07291246,
0.07291246, 0.07291246, 0.05915761, 0.05915761, 0.05915761,
0.05915761, 0.04805018, 0.04805018, 0.04805018, 0.04805018,
0.03915057, 0.03915057, 0.03915057, 0.03915057, 0.03204531,
0.03204531, 0.03204531, 0.03204531, 0.02638786, 0.02638786,
0.02638786, 0.02638786, 0.0218908 , 0.0218908 , 0.0218908 ,
0.0218908 , 0.0183185 , 0.0183185 , 0.0183185 , 0.0183185 ,
0.01549764, 0.01549764, 0.01549764, 0.01549764, 0.01328646,
0.01328646, 0.01328646, 0.01328646, 0.01156713, 0.01156713,
0.01156713, 0.01156713, 0.01028524, 0.01028524, 0.01028524,
0.01028524, 0.00930125, 0.00930125, 0.00930125, 0.00930125,
0.00877218, 0.00877218, 0.00877218, 0.00877218, 0.00837247,
0.00837247, 0.00837247, 0.00837247, 0.00837247, 0.00837247,
0.00837247, 0.00837247, 0.00877218, 0.00877218, 0.00877218,
0.00877218, 0.00930125, 0.00930125, 0.00930125, 0.00930125,
0.01028524, 0.01028524, 0.01028524, 0.01028524, 0.01156713,
0.01156713, 0.01156713, 0.01156713, 0.01328646, 0.01328646,
0.01328646, 0.01328646, 0.01549764, 0.01549764, 0.01549764,
0.01549764, 0.0183185 , 0.0183185 , 0.0183185 , 0.0183185 ,
0.0218908 , 0.0218908 , 0.0218908 , 0.0218908 , 0.02638786,
0.02638786, 0.02638786, 0.02638786, 0.03204531, 0.03204531,
0.03204531, 0.03204531, 0.03915057, 0.03915057, 0.03915057,
0.03915057, 0.04805018, 0.04805018, 0.04805018, 0.04805018,
0.05915761, 0.05915761, 0.05915761, 0.05915761, 0.07291246,
0.07291246, 0.07291246, 0.07291246, 0.08977175, 0.08977175,
0.08977175, 0.08977175, 0.11022619, 0.11022619, 0.11022619,
0.11022619, 0.13476633, 0.13476633, 0.13476633, 0.13476633,
0.16381828, 0.16381828, 0.16381828, 0.16381828, 0.1975858 ,
0.1975858 , 0.1975858 , 0.1975858 , 0.23557782, 0.23557782,
0.23557782, 0.23557782, 0.27433245, 0.27433245, 0.27433245,
0.27433245, 0.30910205, 0.30910205, 0.30910205, 0.30910205,
0.33831756, 0.33831756, 0.33831756, 0.33831756, 0.36097737,
0.36097737, 0.36097737, 0.36097737, 0.37707294, 0.37707294,
0.37707294, 0.37707294, 0.38751064, 0.38751064, 0.38751064,
0.38751064, 0.39369048, 0.39369048, 0.39369048, 0.39369048,
0.39703884, 0.39703884, 0.39703884, 0.39703884, 0.39870684,
0.39870684, 0.39870684, 0.39870684, 0.39946719, 0.39946719,
0.39946719, 0.39946719, 0.39982141, 0.39982141, 0.39982141])}, {'rho': array([0.99935842, 0.99935842, 0.99935842, 0.99935842, 0.99818385,
0.99818385, 0.99818385, 0.99818385, 0.9958364 , 0.9958364 ,
0.9958364 , 0.9958364 , 0.99097735, 0.99097735, 0.99097735,
0.99097735, 0.98179228, 0.98179228, 0.98179228, 0.98179228,
0.96579536, 0.96579536, 0.96579536, 0.96579536, 0.94020757,
0.94020757, 0.94020757, 0.94020757, 0.90261749, 0.90261749,
0.90261749, 0.90261749, 0.85178879, 0.85178879, 0.85178879,
0.85178879, 0.78827781, 0.78827781, 0.78827781, 0.78827781,
0.71478068, 0.71478068, 0.71478068, 0.71478068, 0.63550363,
0.63550363, 0.63550363, 0.63550363, 0.55595614, 0.55595614,
0.55595614, 0.55595614, 0.48067049, 0.48067049, 0.48067049,
0.48067049, 0.41103821, 0.41103821, 0.41103821, 0.41103821,
0.34796265, 0.34796265, 0.34796265, 0.34796265, 0.29198841,
0.29198841, 0.29198841, 0.29198841, 0.2432827 , 0.2432827 ,
0.2432827 , 0.2432827 , 0.20167143, 0.20167143, 0.20167143,
0.20167143, 0.16671549, 0.16671549, 0.16671549, 0.16671549,
0.13771315, 0.13771315, 0.13771315, 0.13771315, 0.1138762 ,
0.1138762 , 0.1138762 , 0.1138762 , 0.09444197, 0.09444197,
0.09444197, 0.09444197, 0.0787049 , 0.0787049 , 0.0787049 ,
0.0787049 , 0.06608221, 0.06608221, 0.06608221, 0.06608221,
0.05610415, 0.05610415, 0.05610415, 0.05610415, 0.04834004,
0.04834004, 0.04834004, 0.04834004, 0.04240575, 0.04240575,
0.04240575, 0.04240575, 0.0380912 , 0.0380912 , 0.0380912 ,
0.0380912 , 0.03492123, 0.03492123, 0.03492123, 0.03492123,
0.03326485, 0.03326485, 0.03326485, 0.03326485, 0.03214135,
0.03214135, 0.03214135, 0.03214135, 0.03214135, 0.03214135,
0.03214135, 0.03214135, 0.03326485, 0.03326485, 0.03326485,
0.03326485, 0.03492123, 0.03492123, 0.03492123, 0.03492123,
0.0380912 , 0.0380912 , 0.0380912 , 0.0380912 , 0.04240575,
0.04240575, 0.04240575, 0.04240575, 0.04834004, 0.04834004,
0.04834004, 0.04834004, 0.05610415, 0.05610415, 0.05610415,
0.05610415, 0.06608221, 0.06608221, 0.06608221, 0.06608221,
0.0787049 , 0.0787049 , 0.0787049 , 0.0787049 , 0.09444197,
0.09444197, 0.09444197, 0.09444197, 0.1138762 , 0.1138762 ,
0.1138762 , 0.1138762 , 0.13771315, 0.13771315, 0.13771315,
0.13771315, 0.16671549, 0.16671549, 0.16671549, 0.16671549,
0.20167143, 0.20167143, 0.20167143, 0.20167143, 0.2432827 ,
0.2432827 , 0.2432827 , 0.2432827 , 0.29198841, 0.29198841,
0.29198841, 0.29198841, 0.34796265, 0.34796265, 0.34796265,
0.34796265, 0.41103821, 0.41103821, 0.41103821, 0.41103821,
0.48067049, 0.48067049, 0.48067049, 0.48067049, 0.55595614,
0.55595614, 0.55595614, 0.55595614, 0.63550363, 0.63550363,
0.63550363, 0.63550363, 0.71478068, 0.71478068, 0.71478068,
0.71478068, 0.78827781, 0.78827781, 0.78827781, 0.78827781,
0.85178879, 0.85178879, 0.85178879, 0.85178879, 0.90261749,
0.90261749, 0.90261749, 0.90261749, 0.94020757, 0.94020757,
0.94020757, 0.94020757, 0.96579536, 0.96579536, 0.96579536,
0.96579536, 0.98179228, 0.98179228, 0.98179228, 0.98179228,
0.99097735, 0.99097735, 0.99097735, 0.99097735, 0.9958364 ,
0.9958364 , 0.9958364 , 0.9958364 , 0.99818385, 0.99818385,
0.99818385, 0.99818385, 0.99935842, 0.99935842, 0.99935842]), 'vx': array([-1.99952018, -1.99952018, -1.99952018, -1.99952018, -1.99864185,
-1.99864185, -1.99864185, -1.99864185, -1.99688652, -1.99688652,
-1.99688652, -1.99688652, -1.99324933, -1.99324933, -1.99324933,
-1.99324933, -1.9863528 , -1.9863528 , -1.9863528 , -1.9863528 ,
-1.97425674, -1.97425674, -1.97425674, -1.97425674, -1.95464263,
-1.95464263, -1.95464263, -1.95464263, -1.92514406, -1.92514406,
-1.92514406, -1.92514406, -1.88375677, -1.88375677, -1.88375677,
-1.88375677, -1.82911554, -1.82911554, -1.82911554, -1.82911554,
-1.76062129, -1.76062129, -1.76062129, -1.76062129, -1.68071322,
-1.68071322, -1.68071322, -1.68071322, -1.59492733, -1.59492733,
-1.59492733, -1.59492733, -1.5062706 , -1.5062706 , -1.5062706 ,
-1.5062706 , -1.41587855, -1.41587855, -1.41587855, -1.41587855,
-1.32420236, -1.32420236, -1.32420236, -1.32420236, -1.23142318,
-1.23142318, -1.23142318, -1.23142318, -1.13776667, -1.13776667,
-1.13776667, -1.13776667, -1.0435245 , -1.0435245 , -1.0435245 ,
-1.0435245 , -0.94917177, -0.94917177, -0.94917177, -0.94917177,
-0.85524436, -0.85524436, -0.85524436, -0.85524436, -0.76204779,
-0.76204779, -0.76204779, -0.76204779, -0.6700244 , -0.6700244 ,
-0.6700244 , -0.6700244 , -0.57980628, -0.57980628, -0.57980628,
-0.57980628, -0.49209337, -0.49209337, -0.49209337, -0.49209337,
-0.4075253 , -0.4075253 , -0.4075253 , -0.4075253 , -0.3269932 ,
-0.3269932 , -0.3269932 , -0.3269932 , -0.25189354, -0.25189354,
-0.25189354, -0.25189354, -0.18245433, -0.18245433, -0.18245433,
-0.18245433, -0.12356223, -0.12356223, -0.12356223, -0.12356223,
-0.06674555, -0.06674555, -0.06674555, -0.06674555, -0.02512498,
-0.02512498, -0.02512498, -0.02512498, 0.02512498, 0.02512498,
0.02512498, 0.02512498, 0.06674555, 0.06674555, 0.06674555,
0.06674555, 0.12356223, 0.12356223, 0.12356223, 0.12356223,
0.18245433, 0.18245433, 0.18245433, 0.18245433, 0.25189354,
0.25189354, 0.25189354, 0.25189354, 0.3269932 , 0.3269932 ,
0.3269932 , 0.3269932 , 0.4075253 , 0.4075253 , 0.4075253 ,
0.4075253 , 0.49209337, 0.49209337, 0.49209337, 0.49209337,
0.57980628, 0.57980628, 0.57980628, 0.57980628, 0.6700244 ,
0.6700244 , 0.6700244 , 0.6700244 , 0.76204779, 0.76204779,
0.76204779, 0.76204779, 0.85524436, 0.85524436, 0.85524436,
0.85524436, 0.94917177, 0.94917177, 0.94917177, 0.94917177,
1.0435245 , 1.0435245 , 1.0435245 , 1.0435245 , 1.13776667,
1.13776667, 1.13776667, 1.13776667, 1.23142318, 1.23142318,
1.23142318, 1.23142318, 1.32420236, 1.32420236, 1.32420236,
1.32420236, 1.41587855, 1.41587855, 1.41587855, 1.41587855,
1.5062706 , 1.5062706 , 1.5062706 , 1.5062706 , 1.59492733,
1.59492733, 1.59492733, 1.59492733, 1.68071322, 1.68071322,
1.68071322, 1.68071322, 1.76062129, 1.76062129, 1.76062129,
1.76062129, 1.82911554, 1.82911554, 1.82911554, 1.82911554,
1.88375677, 1.88375677, 1.88375677, 1.88375677, 1.92514406,
1.92514406, 1.92514406, 1.92514406, 1.95464263, 1.95464263,
1.95464263, 1.95464263, 1.97425674, 1.97425674, 1.97425674,
1.97425674, 1.9863528 , 1.9863528 , 1.9863528 , 1.9863528 ,
1.99324933, 1.99324933, 1.99324933, 1.99324933, 1.99688652,
1.99688652, 1.99688652, 1.99688652, 1.99864185, 1.99864185,
1.99864185, 1.99864185, 1.99952018, 1.99952018, 1.99952018]), 'P': array([0.39964109, 0.39964109, 0.39964109, 0.39964109, 0.39898484,
0.39898484, 0.39898484, 0.39898484, 0.39767625, 0.39767625,
0.39767625, 0.39767625, 0.39497692, 0.39497692, 0.39497692,
0.39497692, 0.38990315, 0.38990315, 0.38990315, 0.38990315,
0.38114224, 0.38114224, 0.38114224, 0.38114224, 0.36730165,
0.36730165, 0.36730165, 0.36730165, 0.34731065, 0.34731065,
0.34731065, 0.34731065, 0.32085982, 0.32085982, 0.32085982,
0.32085982, 0.28861299, 0.28861299, 0.28861299, 0.28861299,
0.25186678, 0.25186678, 0.25186678, 0.25186678, 0.21365403,
0.21365403, 0.21365403, 0.21365403, 0.17870252, 0.17870252,
0.17870252, 0.17870252, 0.14818267, 0.14818267, 0.14818267,
0.14818267, 0.12209924, 0.12209924, 0.12209924, 0.12209924,
0.10011945, 0.10011945, 0.10011945, 0.10011945, 0.0818088 ,
0.0818088 , 0.0818088 , 0.0818088 , 0.06670971, 0.06670971,
0.06670971, 0.06670971, 0.05437927, 0.05437927, 0.05437927,
0.05437927, 0.04440649, 0.04440649, 0.04440649, 0.04440649,
0.03638626, 0.03638626, 0.03638626, 0.03638626, 0.02995596,
0.02995596, 0.02995596, 0.02995596, 0.02481328, 0.02481328,
0.02481328, 0.02481328, 0.02070499, 0.02070499, 0.02070499,
0.02070499, 0.0174288 , 0.0174288 , 0.0174288 , 0.0174288 ,
0.01483202, 0.01483202, 0.01483202, 0.01483202, 0.01278983,
0.01278983, 0.01278983, 0.01278983, 0.01119743, 0.01119743,
0.01119743, 0.01119743, 0.01001381, 0.01001381, 0.01001381,
0.01001381, 0.0090983 , 0.0090983 , 0.0090983 , 0.0090983 ,
0.00861935, 0.00861935, 0.00861935, 0.00861935, 0.00825265,
0.00825265, 0.00825265, 0.00825265, 0.00825265, 0.00825265,
0.00825265, 0.00825265, 0.00861935, 0.00861935, 0.00861935,
0.00861935, 0.0090983 , 0.0090983 , 0.0090983 , 0.0090983 ,
0.01001381, 0.01001381, 0.01001381, 0.01001381, 0.01119743,
0.01119743, 0.01119743, 0.01119743, 0.01278983, 0.01278983,
0.01278983, 0.01278983, 0.01483202, 0.01483202, 0.01483202,
0.01483202, 0.0174288 , 0.0174288 , 0.0174288 , 0.0174288 ,
0.02070499, 0.02070499, 0.02070499, 0.02070499, 0.02481328,
0.02481328, 0.02481328, 0.02481328, 0.02995596, 0.02995596,
0.02995596, 0.02995596, 0.03638626, 0.03638626, 0.03638626,
0.03638626, 0.04440649, 0.04440649, 0.04440649, 0.04440649,
0.05437927, 0.05437927, 0.05437927, 0.05437927, 0.06670971,
0.06670971, 0.06670971, 0.06670971, 0.0818088 , 0.0818088 ,
0.0818088 , 0.0818088 , 0.10011945, 0.10011945, 0.10011945,
0.10011945, 0.12209924, 0.12209924, 0.12209924, 0.12209924,
0.14818267, 0.14818267, 0.14818267, 0.14818267, 0.17870252,
0.17870252, 0.17870252, 0.17870252, 0.21365403, 0.21365403,
0.21365403, 0.21365403, 0.25186678, 0.25186678, 0.25186678,
0.25186678, 0.28861299, 0.28861299, 0.28861299, 0.28861299,
0.32085982, 0.32085982, 0.32085982, 0.32085982, 0.34731065,
0.34731065, 0.34731065, 0.34731065, 0.36730165, 0.36730165,
0.36730165, 0.36730165, 0.38114224, 0.38114224, 0.38114224,
0.38114224, 0.38990315, 0.38990315, 0.38990315, 0.38990315,
0.39497692, 0.39497692, 0.39497692, 0.39497692, 0.39767625,
0.39767625, 0.39767625, 0.39767625, 0.39898484, 0.39898484,
0.39898484, 0.39898484, 0.39964109, 0.39964109, 0.39964109])}, {'rho': array([0.99877047, 0.99877047, 0.99877047, 0.99877047, 0.99669744,
0.99669744, 0.99669744, 0.99669744, 0.99285057, 0.99285057,
0.99285057, 0.99285057, 0.98534841, 0.98534841, 0.98534841,
0.98534841, 0.97204259, 0.97204259, 0.97204259, 0.97204259,
0.95029132, 0.95029132, 0.95029132, 0.95029132, 0.91759898,
0.91759898, 0.91759898, 0.91759898, 0.87234656, 0.87234656,
0.87234656, 0.87234656, 0.81445318, 0.81445318, 0.81445318,
0.81445318, 0.7457438 , 0.7457438 , 0.7457438 , 0.7457438 ,
0.66993745, 0.66993745, 0.66993745, 0.66993745, 0.59159085,
0.59159085, 0.59159085, 0.59159085, 0.51625046, 0.51625046,
0.51625046, 0.51625046, 0.44575447, 0.44575447, 0.44575447,
0.44575447, 0.38102775, 0.38102775, 0.38102775, 0.38102775,
0.32272363, 0.32272363, 0.32272363, 0.32272363, 0.27120152,
0.27120152, 0.27120152, 0.27120152, 0.22649938, 0.22649938,
0.22649938, 0.22649938, 0.18837223, 0.18837223, 0.18837223,
0.18837223, 0.15634393, 0.15634393, 0.15634393, 0.15634393,
0.12971893, 0.12971893, 0.12971893, 0.12971893, 0.10777842,
0.10777842, 0.10777842, 0.10777842, 0.08983298, 0.08983298,
0.08983298, 0.08983298, 0.07524656, 0.07524656, 0.07524656,
0.07524656, 0.06352115, 0.06352115, 0.06352115, 0.06352115,
0.05422287, 0.05422287, 0.05422287, 0.05422287, 0.04696748,
0.04696748, 0.04696748, 0.04696748, 0.04140756, 0.04140756,
0.04140756, 0.04140756, 0.03737502, 0.03737502, 0.03737502,
0.03737502, 0.0343942 , 0.0343942 , 0.0343942 , 0.0343942 ,
0.0328717 , 0.0328717 , 0.0328717 , 0.0328717 , 0.03183325,
0.03183325, 0.03183325, 0.03183325, 0.03183325, 0.03183325,
0.03183325, 0.03183325, 0.0328717 , 0.0328717 , 0.0328717 ,
0.0328717 , 0.0343942 , 0.0343942 , 0.0343942 , 0.0343942 ,
0.03737502, 0.03737502, 0.03737502, 0.03737502, 0.04140756,
0.04140756, 0.04140756, 0.04140756, 0.04696748, 0.04696748,
0.04696748, 0.04696748, 0.05422287, 0.05422287, 0.05422287,
0.05422287, 0.06352115, 0.06352115, 0.06352115, 0.06352115,
0.07524656, 0.07524656, 0.07524656, 0.07524656, 0.08983298,
0.08983298, 0.08983298, 0.08983298, 0.10777842, 0.10777842,
0.10777842, 0.10777842, 0.12971893, 0.12971893, 0.12971893,
0.12971893, 0.15634393, 0.15634393, 0.15634393, 0.15634393,
0.18837223, 0.18837223, 0.18837223, 0.18837223, 0.22649938,
0.22649938, 0.22649938, 0.22649938, 0.27120152, 0.27120152,
0.27120152, 0.27120152, 0.32272363, 0.32272363, 0.32272363,
0.32272363, 0.38102775, 0.38102775, 0.38102775, 0.38102775,
0.44575447, 0.44575447, 0.44575447, 0.44575447, 0.51625046,
0.51625046, 0.51625046, 0.51625046, 0.59159085, 0.59159085,
0.59159085, 0.59159085, 0.66993745, 0.66993745, 0.66993745,
0.66993745, 0.7457438 , 0.7457438 , 0.7457438 , 0.7457438 ,
0.81445318, 0.81445318, 0.81445318, 0.81445318, 0.87234656,
0.87234656, 0.87234656, 0.87234656, 0.91759898, 0.91759898,
0.91759898, 0.91759898, 0.95029132, 0.95029132, 0.95029132,
0.95029132, 0.97204259, 0.97204259, 0.97204259, 0.97204259,
0.98534841, 0.98534841, 0.98534841, 0.98534841, 0.99285057,
0.99285057, 0.99285057, 0.99285057, 0.99669744, 0.99669744,
0.99669744, 0.99669744, 0.99877047, 0.99877047, 0.99877047]), 'vx': array([-1.99908059, -1.99908059, -1.99908059, -1.99908059, -1.99753004,
-1.99753004, -1.99753004, -1.99753004, -1.99465134, -1.99465134,
-1.99465134, -1.99465134, -1.98902376, -1.98902376, -1.98902376,
-1.98902376, -1.97898693, -1.97898693, -1.97898693, -1.97898693,
-1.96239563, -1.96239563, -1.96239563, -1.96239563, -1.93696484,
-1.93696484, -1.93696484, -1.93696484, -1.90064228, -1.90064228,
-1.90064228, -1.90064228, -1.85193922, -1.85193922, -1.85193922,
-1.85193922, -1.7900464 , -1.7900464 , -1.7900464 , -1.7900464 ,
-1.71565593, -1.71565593, -1.71565593, -1.71565593, -1.63373525,
-1.63373525, -1.63373525, -1.63373525, -1.54823073, -1.54823073,
-1.54823073, -1.54823073, -1.46079235, -1.46079235, -1.46079235,
-1.46079235, -1.37199852, -1.37199852, -1.37199852, -1.37199852,
-1.28211147, -1.28211147, -1.28211147, -1.28211147, -1.1912692 ,
-1.1912692 , -1.1912692 , -1.1912692 , -1.0997101 , -1.0997101 ,
-1.0997101 , -1.0997101 , -1.00773223, -1.00773223, -1.00773223,
-1.00773223, -0.915865 , -0.915865 , -0.915865 , -0.915865 ,
-0.82447802, -0.82447802, -0.82447802, -0.82447802, -0.73388324,
-0.73388324, -0.73388324, -0.73388324, -0.64452211, -0.64452211,
-0.64452211, -0.64452211, -0.55705453, -0.55705453, -0.55705453,
-0.55705453, -0.47206535, -0.47206535, -0.47206535, -0.47206535,
-0.39024786, -0.39024786, -0.39024786, -0.39024786, -0.31248498,
-0.31248498, -0.31248498, -0.31248498, -0.24021394, -0.24021394,
-0.24021394, -0.24021394, -0.17347661, -0.17347661, -0.17347661,
-0.17347661, -0.11751026, -0.11751026, -0.11751026, -0.11751026,
-0.0632085 , -0.0632085 , -0.0632085 , -0.0632085 , -0.02367335,
-0.02367335, -0.02367335, -0.02367335, 0.02367335, 0.02367335,
0.02367335, 0.02367335, 0.0632085 , 0.0632085 , 0.0632085 ,
0.0632085 , 0.11751026, 0.11751026, 0.11751026, 0.11751026,
0.17347661, 0.17347661, 0.17347661, 0.17347661, 0.24021394,
0.24021394, 0.24021394, 0.24021394, 0.31248498, 0.31248498,
0.31248498, 0.31248498, 0.39024786, 0.39024786, 0.39024786,
0.39024786, 0.47206535, 0.47206535, 0.47206535, 0.47206535,
0.55705453, 0.55705453, 0.55705453, 0.55705453, 0.64452211,
0.64452211, 0.64452211, 0.64452211, 0.73388324, 0.73388324,
0.73388324, 0.73388324, 0.82447802, 0.82447802, 0.82447802,
0.82447802, 0.915865 , 0.915865 , 0.915865 , 0.915865 ,
1.00773223, 1.00773223, 1.00773223, 1.00773223, 1.0997101 ,
1.0997101 , 1.0997101 , 1.0997101 , 1.1912692 , 1.1912692 ,
1.1912692 , 1.1912692 , 1.28211147, 1.28211147, 1.28211147,
1.28211147, 1.37199852, 1.37199852, 1.37199852, 1.37199852,
1.46079235, 1.46079235, 1.46079235, 1.46079235, 1.54823073,
1.54823073, 1.54823073, 1.54823073, 1.63373525, 1.63373525,
1.63373525, 1.63373525, 1.71565593, 1.71565593, 1.71565593,
1.71565593, 1.7900464 , 1.7900464 , 1.7900464 , 1.7900464 ,
1.85193922, 1.85193922, 1.85193922, 1.85193922, 1.90064228,
1.90064228, 1.90064228, 1.90064228, 1.93696484, 1.93696484,
1.93696484, 1.93696484, 1.96239563, 1.96239563, 1.96239563,
1.96239563, 1.97898693, 1.97898693, 1.97898693, 1.97898693,
1.98902376, 1.98902376, 1.98902376, 1.98902376, 1.99465134,
1.99465134, 1.99465134, 1.99465134, 1.99753004, 1.99753004,
1.99753004, 1.99753004, 1.99908059, 1.99908059, 1.99908059]), 'P': array([0.39931253, 0.39931253, 0.39931253, 0.39931253, 0.39815553,
0.39815553, 0.39815553, 0.39815553, 0.39601547, 0.39601547,
0.39601547, 0.39601547, 0.39186124, 0.39186124, 0.39186124,
0.39186124, 0.38454724, 0.38454724, 0.38454724, 0.38454724,
0.37271856, 0.37271856, 0.37271856, 0.37271856, 0.35520322,
0.35520322, 0.35520322, 0.35520322, 0.33142852, 0.33142852,
0.33142852, 0.33142852, 0.30172162, 0.30172162, 0.30172162,
0.30172162, 0.26722998, 0.26722998, 0.26722998, 0.26722998,
0.22964847, 0.22964847, 0.22964847, 0.22964847, 0.19381543,
0.19381543, 0.19381543, 0.19381543, 0.16198249, 0.16198249,
0.16198249, 0.16198249, 0.13445089, 0.13445089, 0.13445089,
0.13445089, 0.11100538, 0.11100538, 0.11100538, 0.11100538,
0.091272 , 0.091272 , 0.091272 , 0.091272 , 0.07483306,
0.07483306, 0.07483306, 0.07483306, 0.06126859, 0.06126859,
0.06126859, 0.06126859, 0.0501795 , 0.0501795 , 0.0501795 ,
0.0501795 , 0.04119173, 0.04119173, 0.04119173, 0.04119173,
0.03393542, 0.03393542, 0.03393542, 0.03393542, 0.02809392,
0.02809392, 0.02809392, 0.02809392, 0.02340228, 0.02340228,
0.02340228, 0.02340228, 0.01963597, 0.01963597, 0.01963597,
0.01963597, 0.01662277, 0.01662277, 0.01662277, 0.01662277,
0.0142256 , 0.0142256 , 0.0142256 , 0.0142256 , 0.0123351 ,
0.0123351 , 0.0123351 , 0.0123351 , 0.01085733, 0.01085733,
0.01085733, 0.01085733, 0.0097635 , 0.0097635 , 0.0097635 ,
0.0097635 , 0.00891048, 0.00891048, 0.00891048, 0.00891048,
0.00847698, 0.00847698, 0.00847698, 0.00847698, 0.00814089,
0.00814089, 0.00814089, 0.00814089, 0.00814089, 0.00814089,
0.00814089, 0.00814089, 0.00847698, 0.00847698, 0.00847698,
0.00847698, 0.00891048, 0.00891048, 0.00891048, 0.00891048,
0.0097635 , 0.0097635 , 0.0097635 , 0.0097635 , 0.01085733,
0.01085733, 0.01085733, 0.01085733, 0.0123351 , 0.0123351 ,
0.0123351 , 0.0123351 , 0.0142256 , 0.0142256 , 0.0142256 ,
0.0142256 , 0.01662277, 0.01662277, 0.01662277, 0.01662277,
0.01963597, 0.01963597, 0.01963597, 0.01963597, 0.02340228,
0.02340228, 0.02340228, 0.02340228, 0.02809392, 0.02809392,
0.02809392, 0.02809392, 0.03393542, 0.03393542, 0.03393542,
0.03393542, 0.04119173, 0.04119173, 0.04119173, 0.04119173,
0.0501795 , 0.0501795 , 0.0501795 , 0.0501795 , 0.06126859,
0.06126859, 0.06126859, 0.06126859, 0.07483306, 0.07483306,
0.07483306, 0.07483306, 0.091272 , 0.091272 , 0.091272 ,
0.091272 , 0.11100538, 0.11100538, 0.11100538, 0.11100538,
0.13445089, 0.13445089, 0.13445089, 0.13445089, 0.16198249,
0.16198249, 0.16198249, 0.16198249, 0.19381543, 0.19381543,
0.19381543, 0.19381543, 0.22964847, 0.22964847, 0.22964847,
0.22964847, 0.26722998, 0.26722998, 0.26722998, 0.26722998,
0.30172162, 0.30172162, 0.30172162, 0.30172162, 0.33142852,
0.33142852, 0.33142852, 0.33142852, 0.35520322, 0.35520322,
0.35520322, 0.35520322, 0.37271856, 0.37271856, 0.37271856,
0.37271856, 0.38454724, 0.38454724, 0.38454724, 0.38454724,
0.39186124, 0.39186124, 0.39186124, 0.39186124, 0.39601547,
0.39601547, 0.39601547, 0.39601547, 0.39815553, 0.39815553,
0.39815553, 0.39815553, 0.39931253, 0.39931253, 0.39931253])}, {'rho': array([0.9977494 , 0.9977494 , 0.9977494 , 0.9977494 , 0.99426102,
0.99426102, 0.99426102, 0.99426102, 0.98825921, 0.98825921,
0.98825921, 0.98825921, 0.97721687, 0.97721687, 0.97721687,
0.97721687, 0.9588252 , 0.9588252 , 0.9588252 , 0.9588252 ,
0.93055227, 0.93055227, 0.93055227, 0.93055227, 0.89050924,
0.89050924, 0.89050924, 0.89050924, 0.8380853 , 0.8380853 ,
0.8380853 , 0.8380853 , 0.77437286, 0.77437286, 0.77437286,
0.77437286, 0.70235571, 0.70235571, 0.70235571, 0.70235571,
0.62603086, 0.62603086, 0.62603086, 0.62603086, 0.55093316,
0.55093316, 0.55093316, 0.55093316, 0.47999301, 0.47999301,
0.47999301, 0.47999301, 0.41411573, 0.41411573, 0.41411573,
0.41411573, 0.35398023, 0.35398023, 0.35398023, 0.35398023,
0.30006434, 0.30006434, 0.30006434, 0.30006434, 0.25258687,
0.25258687, 0.25258687, 0.25258687, 0.21148973, 0.21148973,
0.21148973, 0.21148973, 0.17648142, 0.17648142, 0.17648142,
0.17648142, 0.14704972, 0.14704972, 0.14704972, 0.14704972,
0.12253346, 0.12253346, 0.12253346, 0.12253346, 0.10227724,
0.10227724, 0.10227724, 0.10227724, 0.08565589, 0.08565589,
0.08565589, 0.08565589, 0.07210108, 0.07210108, 0.07210108,
0.07210108, 0.0611814 , 0.0611814 , 0.0611814 , 0.0611814 ,
0.05249557, 0.05249557, 0.05249557, 0.05249557, 0.04570138,
0.04570138, 0.04570138, 0.04570138, 0.0404826 , 0.0404826 ,
0.0404826 , 0.0404826 , 0.03670994, 0.03670994, 0.03670994,
0.03670994, 0.03390332, 0.03390332, 0.03390332, 0.03390332,
0.03250305, 0.03250305, 0.03250305, 0.03250305, 0.03154398,
0.03154398, 0.03154398, 0.03154398, 0.03154398, 0.03154398,
0.03154398, 0.03154398, 0.03250305, 0.03250305, 0.03250305,
0.03250305, 0.03390332, 0.03390332, 0.03390332, 0.03390332,
0.03670994, 0.03670994, 0.03670994, 0.03670994, 0.0404826 ,
0.0404826 , 0.0404826 , 0.0404826 , 0.04570138, 0.04570138,
0.04570138, 0.04570138, 0.05249557, 0.05249557, 0.05249557,
0.05249557, 0.0611814 , 0.0611814 , 0.0611814 , 0.0611814 ,
0.07210108, 0.07210108, 0.07210108, 0.07210108, 0.08565589,
0.08565589, 0.08565589, 0.08565589, 0.10227724, 0.10227724,
0.10227724, 0.10227724, 0.12253346, 0.12253346, 0.12253346,
0.12253346, 0.14704972, 0.14704972, 0.14704972, 0.14704972,
0.17648142, 0.17648142, 0.17648142, 0.17648142, 0.21148973,
0.21148973, 0.21148973, 0.21148973, 0.25258687, 0.25258687,
0.25258687, 0.25258687, 0.30006434, 0.30006434, 0.30006434,
0.30006434, 0.35398023, 0.35398023, 0.35398023, 0.35398023,
0.41411573, 0.41411573, 0.41411573, 0.41411573, 0.47999301,
0.47999301, 0.47999301, 0.47999301, 0.55093316, 0.55093316,
0.55093316, 0.55093316, 0.62603086, 0.62603086, 0.62603086,
0.62603086, 0.70235571, 0.70235571, 0.70235571, 0.70235571,
0.77437286, 0.77437286, 0.77437286, 0.77437286, 0.8380853 ,
0.8380853 , 0.8380853 , 0.8380853 , 0.89050924, 0.89050924,
0.89050924, 0.89050924, 0.93055227, 0.93055227, 0.93055227,
0.93055227, 0.9588252 , 0.9588252 , 0.9588252 , 0.9588252 ,
0.97721687, 0.97721687, 0.97721687, 0.97721687, 0.98825921,
0.98825921, 0.98825921, 0.98825921, 0.99426102, 0.99426102,
0.99426102, 0.99426102, 0.9977494 , 0.9977494 , 0.9977494 ]), 'vx': array([-1.99831719, -1.99831719, -1.99831719, -1.99831719, -1.9957063 ,
-1.9957063 , -1.9957063 , -1.9957063 , -1.99120791, -1.99120791,
-1.99120791, -1.99120791, -1.98289418, -1.98289418, -1.98289418,
-1.98289418, -1.96892164, -1.96892164, -1.96892164, -1.96892164,
-1.94708842, -1.94708842, -1.94708842, -1.94708842, -1.91533198,
-1.91533198, -1.91533198, -1.91533198, -1.87205044, -1.87205044,
-1.87205044, -1.87205044, -1.81628384, -1.81628384, -1.81628384,
-1.81628384, -1.74789252, -1.74789252, -1.74789252, -1.74789252,
-1.67014117, -1.67014117, -1.67014117, -1.67014117, -1.58781623,
-1.58781623, -1.58781623, -1.58781623, -1.50321406, -1.50321406,
-1.50321406, -1.50321406, -1.41718641, -1.41718641, -1.41718641,
-1.41718641, -1.33002805, -1.33002805, -1.33002805, -1.33002805,
-1.24191754, -1.24191754, -1.24191754, -1.24191754, -1.1529859 ,
-1.1529859 , -1.1529859 , -1.1529859 , -1.06348241, -1.06348241,
-1.06348241, -1.06348241, -0.97375295, -0.97375295, -0.97375295,
-0.97375295, -0.8842681 , -0.8842681 , -0.8842681 , -0.8842681 ,
-0.79531229, -0.79531229, -0.79531229, -0.79531229, -0.70720499,
-0.70720499, -0.70720499, -0.70720499, -0.62039393, -0.62039393,
-0.62039393, -0.62039393, -0.53553844, -0.53553844, -0.53553844,
-0.53553844, -0.45314097, -0.45314097, -0.45314097, -0.45314097,
-0.37394611, -0.37394611, -0.37394611, -0.37394611, -0.29882417,
-0.29882417, -0.29882417, -0.29882417, -0.22926025, -0.22926025,
-0.22926025, -0.22926025, -0.1650861 , -0.1650861 , -0.1650861 ,
-0.1650861 , -0.11189931, -0.11189931, -0.11189931, -0.11189931,
-0.05997783, -0.05997783, -0.05997783, -0.05997783, -0.02234588,
-0.02234588, -0.02234588, -0.02234588, 0.02234588, 0.02234588,
0.02234588, 0.02234588, 0.05997783, 0.05997783, 0.05997783,
0.05997783, 0.11189931, 0.11189931, 0.11189931, 0.11189931,
0.1650861 , 0.1650861 , 0.1650861 , 0.1650861 , 0.22926025,
0.22926025, 0.22926025, 0.22926025, 0.29882417, 0.29882417,
0.29882417, 0.29882417, 0.37394611, 0.37394611, 0.37394611,
0.37394611, 0.45314097, 0.45314097, 0.45314097, 0.45314097,
0.53553844, 0.53553844, 0.53553844, 0.53553844, 0.62039393,
0.62039393, 0.62039393, 0.62039393, 0.70720499, 0.70720499,
0.70720499, 0.70720499, 0.79531229, 0.79531229, 0.79531229,
0.79531229, 0.8842681 , 0.8842681 , 0.8842681 , 0.8842681 ,
0.97375295, 0.97375295, 0.97375295, 0.97375295, 1.06348241,
1.06348241, 1.06348241, 1.06348241, 1.1529859 , 1.1529859 ,
1.1529859 , 1.1529859 , 1.24191754, 1.24191754, 1.24191754,
1.24191754, 1.33002805, 1.33002805, 1.33002805, 1.33002805,
1.41718641, 1.41718641, 1.41718641, 1.41718641, 1.50321406,
1.50321406, 1.50321406, 1.50321406, 1.58781623, 1.58781623,
1.58781623, 1.58781623, 1.67014117, 1.67014117, 1.67014117,
1.67014117, 1.74789252, 1.74789252, 1.74789252, 1.74789252,
1.81628384, 1.81628384, 1.81628384, 1.81628384, 1.87205044,
1.87205044, 1.87205044, 1.87205044, 1.91533198, 1.91533198,
1.91533198, 1.91533198, 1.94708842, 1.94708842, 1.94708842,
1.94708842, 1.96892164, 1.96892164, 1.96892164, 1.96892164,
1.98289418, 1.98289418, 1.98289418, 1.98289418, 1.99120791,
1.99120791, 1.99120791, 1.99120791, 1.9957063 , 1.9957063 ,
1.9957063 , 1.9957063 , 1.99831719, 1.99831719, 1.99831719]), 'P': array([0.39874254, 0.39874254, 0.39874254, 0.39874254, 0.3967985 ,
0.3967985 , 0.3967985 , 0.3967985 , 0.39346894, 0.39346894,
0.39346894, 0.39346894, 0.38738 , 0.38738 , 0.38738 ,
0.38738 , 0.37733237, 0.37733237, 0.37733237, 0.37733237,
0.36208692, 0.36208692, 0.36208692, 0.36208692, 0.34086903,
0.34086903, 0.34086903, 0.34086903, 0.31369196, 0.31369196,
0.31369196, 0.31369196, 0.28143228, 0.28143228, 0.28143228,
0.28143228, 0.24539505, 0.24539505, 0.24539505, 0.24539505,
0.20904257, 0.20904257, 0.20904257, 0.20904257, 0.17608693,
0.17608693, 0.17608693, 0.17608693, 0.1472165 , 0.1472165 ,
0.1472165 , 0.1472165 , 0.12237566, 0.12237566, 0.12237566,
0.12237566, 0.10126204, 0.10126204, 0.10126204, 0.10126204,
0.08350028, 0.08350028, 0.08350028, 0.08350028, 0.06869941,
0.06869941, 0.06869941, 0.06869941, 0.05647672, 0.05647672,
0.05647672, 0.05647672, 0.0464733 , 0.0464733 , 0.0464733 ,
0.0464733 , 0.03834224, 0.03834224, 0.03834224, 0.03834224,
0.03175275, 0.03175275, 0.03175275, 0.03175275, 0.02642729,
0.02642729, 0.02642729, 0.02642729, 0.02213222, 0.02213222,
0.02213222, 0.02213222, 0.018669 , 0.018669 , 0.018669 ,
0.018669 , 0.0158899 , 0.0158899 , 0.0158899 , 0.0158899 ,
0.01367134, 0.01367134, 0.01367134, 0.01367134, 0.01191756,
0.01191756, 0.01191756, 0.01191756, 0.01054368, 0.01054368,
0.01054368, 0.01054368, 0.00953218, 0.00953218, 0.00953218,
0.00953218, 0.00873638, 0.00873638, 0.00873638, 0.00873638,
0.00834403, 0.00834403, 0.00834403, 0.00834403, 0.00803633,
0.00803633, 0.00803633, 0.00803633, 0.00803633, 0.00803633,
0.00803633, 0.00803633, 0.00834403, 0.00834403, 0.00834403,
0.00834403, 0.00873638, 0.00873638, 0.00873638, 0.00873638,
0.00953218, 0.00953218, 0.00953218, 0.00953218, 0.01054368,
0.01054368, 0.01054368, 0.01054368, 0.01191756, 0.01191756,
0.01191756, 0.01191756, 0.01367134, 0.01367134, 0.01367134,
0.01367134, 0.0158899 , 0.0158899 , 0.0158899 , 0.0158899 ,
0.018669 , 0.018669 , 0.018669 , 0.018669 , 0.02213222,
0.02213222, 0.02213222, 0.02213222, 0.02642729, 0.02642729,
0.02642729, 0.02642729, 0.03175275, 0.03175275, 0.03175275,
0.03175275, 0.03834224, 0.03834224, 0.03834224, 0.03834224,
0.0464733 , 0.0464733 , 0.0464733 , 0.0464733 , 0.05647672,
0.05647672, 0.05647672, 0.05647672, 0.06869941, 0.06869941,
0.06869941, 0.06869941, 0.08350028, 0.08350028, 0.08350028,
0.08350028, 0.10126204, 0.10126204, 0.10126204, 0.10126204,
0.12237566, 0.12237566, 0.12237566, 0.12237566, 0.1472165 ,
0.1472165 , 0.1472165 , 0.1472165 , 0.17608693, 0.17608693,
0.17608693, 0.17608693, 0.20904257, 0.20904257, 0.20904257,
0.20904257, 0.24539505, 0.24539505, 0.24539505, 0.24539505,
0.28143228, 0.28143228, 0.28143228, 0.28143228, 0.31369196,
0.31369196, 0.31369196, 0.31369196, 0.34086903, 0.34086903,
0.34086903, 0.34086903, 0.36208692, 0.36208692, 0.36208692,
0.36208692, 0.37733237, 0.37733237, 0.37733237, 0.37733237,
0.38738 , 0.38738 , 0.38738 , 0.38738 , 0.39346894,
0.39346894, 0.39346894, 0.39346894, 0.3967985 , 0.3967985 ,
0.3967985 , 0.3967985 , 0.39874254, 0.39874254, 0.39874254])}, {'rho': array([0.99605813, 0.99605813, 0.99605813, 0.99605813, 0.99045329,
0.99045329, 0.99045329, 0.99045329, 0.98152705, 0.98152705,
0.98152705, 0.98152705, 0.9660057 , 0.9660057 , 0.9660057 ,
0.9660057 , 0.94169868, 0.94169868, 0.94169868, 0.94169868,
0.90647287, 0.90647287, 0.90647287, 0.90647287, 0.85929998,
0.85929998, 0.85929998, 0.85929998, 0.8006496 , 0.8006496 ,
0.8006496 , 0.8006496 , 0.73271464, 0.73271464, 0.73271464,
0.73271464, 0.65912321, 0.65912321, 0.65912321, 0.65912321,
0.58464756, 0.58464756, 0.58464756, 0.58464756, 0.51355991,
0.51355991, 0.51355991, 0.51355991, 0.44694843, 0.44694843,
0.44694843, 0.44694843, 0.38544657, 0.38544657, 0.38544657,
0.38544657, 0.32957765, 0.32957765, 0.32957765, 0.32957765,
0.27968514, 0.27968514, 0.27968514, 0.27968514, 0.23587891,
0.23587891, 0.23587891, 0.23587891, 0.19803116, 0.19803116,
0.19803116, 0.19803116, 0.1658123 , 0.1658123 , 0.1658123 ,
0.1658123 , 0.13869035, 0.13869035, 0.13869035, 0.13869035,
0.1160511 , 0.1160511 , 0.1160511 , 0.1160511 , 0.09729602,
0.09729602, 0.09729602, 0.09729602, 0.08185673, 0.08185673,
0.08185673, 0.08185673, 0.06923142, 0.06923142, 0.06923142,
0.06923142, 0.05903707, 0.05903707, 0.05903707, 0.05903707,
0.05090512, 0.05090512, 0.05090512, 0.05090512, 0.0445306 ,
0.0445306 , 0.0445306 , 0.0445306 , 0.03962367, 0.03962367,
0.03962367, 0.03962367, 0.03609122, 0.03609122, 0.03609122,
0.03609122, 0.03344546, 0.03344546, 0.03344546, 0.03344546,
0.03215668, 0.03215668, 0.03215668, 0.03215668, 0.03127163,
0.03127163, 0.03127163, 0.03127163, 0.03127163, 0.03127163,
0.03127163, 0.03127163, 0.03215668, 0.03215668, 0.03215668,
0.03215668, 0.03344546, 0.03344546, 0.03344546, 0.03344546,
0.03609122, 0.03609122, 0.03609122, 0.03609122, 0.03962367,
0.03962367, 0.03962367, 0.03962367, 0.0445306 , 0.0445306 ,
0.0445306 , 0.0445306 , 0.05090512, 0.05090512, 0.05090512,
0.05090512, 0.05903707, 0.05903707, 0.05903707, 0.05903707,
0.06923142, 0.06923142, 0.06923142, 0.06923142, 0.08185673,
0.08185673, 0.08185673, 0.08185673, 0.09729602, 0.09729602,
0.09729602, 0.09729602, 0.1160511 , 0.1160511 , 0.1160511 ,
0.1160511 , 0.13869035, 0.13869035, 0.13869035, 0.13869035,
0.1658123 , 0.1658123 , 0.1658123 , 0.1658123 , 0.19803116,
0.19803116, 0.19803116, 0.19803116, 0.23587891, 0.23587891,
0.23587891, 0.23587891, 0.27968514, 0.27968514, 0.27968514,
0.27968514, 0.32957765, 0.32957765, 0.32957765, 0.32957765,
0.38544657, 0.38544657, 0.38544657, 0.38544657, 0.44694843,
0.44694843, 0.44694843, 0.44694843, 0.51355991, 0.51355991,
0.51355991, 0.51355991, 0.58464756, 0.58464756, 0.58464756,
0.58464756, 0.65912321, 0.65912321, 0.65912321, 0.65912321,
0.73271464, 0.73271464, 0.73271464, 0.73271464, 0.8006496 ,
0.8006496 , 0.8006496 , 0.8006496 , 0.85929998, 0.85929998,
0.85929998, 0.85929998, 0.90647287, 0.90647287, 0.90647287,
0.90647287, 0.94169868, 0.94169868, 0.94169868, 0.94169868,
0.9660057 , 0.9660057 , 0.9660057 , 0.9660057 , 0.98152705,
0.98152705, 0.98152705, 0.98152705, 0.99045329, 0.99045329,
0.99045329, 0.99045329, 0.99605813, 0.99605813, 0.99605813]), 'vx': array([-1.99705244, -1.99705244, -1.99705244, -1.99705244, -1.99285175,
-1.99285175, -1.99285175, -1.99285175, -1.98614251, -1.98614251,
-1.98614251, -1.98614251, -1.97438827, -1.97438827, -1.97438827,
-1.97438827, -1.95573085, -1.95573085, -1.95573085, -1.95573085,
-1.92807626, -1.92807626, -1.92807626, -1.92807626, -1.88974206,
-1.88974206, -1.88974206, -1.88974206, -1.83963153, -1.83963153,
-1.83963153, -1.83963153, -1.77727471, -1.77727471, -1.77727471,
-1.77727471, -1.70416641, -1.70416641, -1.70416641, -1.70416641,
-1.62516587, -1.62516587, -1.62516587, -1.62516587, -1.5433367 ,
-1.5433367 , -1.5433367 , -1.5433367 , -1.45994065, -1.45994065,
-1.45994065, -1.45994065, -1.37539964, -1.37539964, -1.37539964,
-1.37539964, -1.28987706, -1.28987706, -1.28987706, -1.28987706,
-1.20352061, -1.20352061, -1.20352061, -1.20352061, -1.11647055,
-1.11647055, -1.11647055, -1.11647055, -1.0289871 , -1.0289871 ,
-1.0289871 , -1.0289871 , -0.94146516, -0.94146516, -0.94146516,
-0.94146516, -0.85426046, -0.85426046, -0.85426046, -0.85426046,
-0.76763292, -0.76763292, -0.76763292, -0.76763292, -0.68190616,
-0.68190616, -0.68190616, -0.68190616, -0.59754128, -0.59754128,
-0.59754128, -0.59754128, -0.51516275, -0.51516275, -0.51516275,
-0.51516275, -0.43523915, -0.43523915, -0.43523915, -0.43523915,
-0.35854904, -0.35854904, -0.35854904, -0.35854904, -0.28594979,
-0.28594979, -0.28594979, -0.28594979, -0.21898158, -0.21898158,
-0.21898158, -0.21898158, -0.1572412 , -0.1572412 , -0.1572412 ,
-0.1572412 , -0.10669413, -0.10669413, -0.10669413, -0.10669413,
-0.05702841, -0.05702841, -0.05702841, -0.05702841, -0.02113285,
-0.02113285, -0.02113285, -0.02113285, 0.02113285, 0.02113285,
0.02113285, 0.02113285, 0.05702841, 0.05702841, 0.05702841,
0.05702841, 0.10669413, 0.10669413, 0.10669413, 0.10669413,
0.1572412 , 0.1572412 , 0.1572412 , 0.1572412 , 0.21898158,
0.21898158, 0.21898158, 0.21898158, 0.28594979, 0.28594979,
0.28594979, 0.28594979, 0.35854904, 0.35854904, 0.35854904,
0.35854904, 0.43523915, 0.43523915, 0.43523915, 0.43523915,
0.51516275, 0.51516275, 0.51516275, 0.51516275, 0.59754128,
0.59754128, 0.59754128, 0.59754128, 0.68190616, 0.68190616,
0.68190616, 0.68190616, 0.76763292, 0.76763292, 0.76763292,
0.76763292, 0.85426046, 0.85426046, 0.85426046, 0.85426046,
0.94146516, 0.94146516, 0.94146516, 0.94146516, 1.0289871 ,
1.0289871 , 1.0289871 , 1.0289871 , 1.11647055, 1.11647055,
1.11647055, 1.11647055, 1.20352061, 1.20352061, 1.20352061,
1.20352061, 1.28987706, 1.28987706, 1.28987706, 1.28987706,
1.37539964, 1.37539964, 1.37539964, 1.37539964, 1.45994065,
1.45994065, 1.45994065, 1.45994065, 1.5433367 , 1.5433367 ,
1.5433367 , 1.5433367 , 1.62516587, 1.62516587, 1.62516587,
1.62516587, 1.70416641, 1.70416641, 1.70416641, 1.70416641,
1.77727471, 1.77727471, 1.77727471, 1.77727471, 1.83963153,
1.83963153, 1.83963153, 1.83963153, 1.88974206, 1.88974206,
1.88974206, 1.88974206, 1.92807626, 1.92807626, 1.92807626,
1.92807626, 1.95573085, 1.95573085, 1.95573085, 1.95573085,
1.97438827, 1.97438827, 1.97438827, 1.97438827, 1.98614251,
1.98614251, 1.98614251, 1.98614251, 1.99285175, 1.99285175,
1.99285175, 1.99285175, 1.99705244, 1.99705244, 1.99705244]), 'P': array([0.39779984, 0.39779984, 0.39779984, 0.39779984, 0.39468265,
0.39468265, 0.39468265, 0.39468265, 0.38974908, 0.38974908,
0.38974908, 0.38974908, 0.38123566, 0.38123566, 0.38123566,
0.38123566, 0.36805554, 0.36805554, 0.36805554, 0.36805554,
0.34924877, 0.34924877, 0.34924877, 0.34924877, 0.324561 ,
0.324561 , 0.324561 , 0.324561 , 0.29457279, 0.29457279,
0.29457279, 0.29457279, 0.26045519, 0.26045519, 0.26045519,
0.26045519, 0.22427528, 0.22427528, 0.22427528, 0.22427528,
0.19041118, 0.19041118, 0.19041118, 0.19041118, 0.16032999,
0.16032999, 0.16032999, 0.16032999, 0.13417526, 0.13417526,
0.13417526, 0.13417526, 0.11173388, 0.11173388, 0.11173388,
0.11173388, 0.09267875, 0.09267875, 0.09267875, 0.09267875,
0.07665006, 0.07665006, 0.07665006, 0.07665006, 0.06328669,
0.06328669, 0.06328669, 0.06328669, 0.05224142, 0.05224142,
0.05224142, 0.05224142, 0.04318826, 0.04318826, 0.04318826,
0.04318826, 0.0358055 , 0.0358055 , 0.0358055 , 0.0358055 ,
0.02980072, 0.02980072, 0.02980072, 0.02980072, 0.02492949,
0.02492949, 0.02492949, 0.02492949, 0.02098449, 0.02098449,
0.02098449, 0.02098449, 0.01779138, 0.01779138, 0.01779138,
0.01779138, 0.01522133, 0.01522133, 0.01522133, 0.01522133,
0.01316322, 0.01316322, 0.01316322, 0.01316322, 0.01153318,
0.01153318, 0.01153318, 0.01153318, 0.01025378, 0.01025378,
0.01025378, 0.01025378, 0.00931797, 0.00931797, 0.00931797,
0.00931797, 0.00857471, 0.00857471, 0.00857471, 0.00857471,
0.00821961, 0.00821961, 0.00821961, 0.00821961, 0.00793821,
0.00793821, 0.00793821, 0.00793821, 0.00793821, 0.00793821,
0.00793821, 0.00793821, 0.00821961, 0.00821961, 0.00821961,
0.00821961, 0.00857471, 0.00857471, 0.00857471, 0.00857471,
0.00931797, 0.00931797, 0.00931797, 0.00931797, 0.01025378,
0.01025378, 0.01025378, 0.01025378, 0.01153318, 0.01153318,
0.01153318, 0.01153318, 0.01316322, 0.01316322, 0.01316322,
0.01316322, 0.01522133, 0.01522133, 0.01522133, 0.01522133,
0.01779138, 0.01779138, 0.01779138, 0.01779138, 0.02098449,
0.02098449, 0.02098449, 0.02098449, 0.02492949, 0.02492949,
0.02492949, 0.02492949, 0.02980072, 0.02980072, 0.02980072,
0.02980072, 0.0358055 , 0.0358055 , 0.0358055 , 0.0358055 ,
0.04318826, 0.04318826, 0.04318826, 0.04318826, 0.05224142,
0.05224142, 0.05224142, 0.05224142, 0.06328669, 0.06328669,
0.06328669, 0.06328669, 0.07665006, 0.07665006, 0.07665006,
0.07665006, 0.09267875, 0.09267875, 0.09267875, 0.09267875,
0.11173388, 0.11173388, 0.11173388, 0.11173388, 0.13417526,
0.13417526, 0.13417526, 0.13417526, 0.16032999, 0.16032999,
0.16032999, 0.16032999, 0.19041118, 0.19041118, 0.19041118,
0.19041118, 0.22427528, 0.22427528, 0.22427528, 0.22427528,
0.26045519, 0.26045519, 0.26045519, 0.26045519, 0.29457279,
0.29457279, 0.29457279, 0.29457279, 0.324561 , 0.324561 ,
0.324561 , 0.324561 , 0.34924877, 0.34924877, 0.34924877,
0.34924877, 0.36805554, 0.36805554, 0.36805554, 0.36805554,
0.38123566, 0.38123566, 0.38123566, 0.38123566, 0.38974908,
0.38974908, 0.38974908, 0.38974908, 0.39468265, 0.39468265,
0.39468265, 0.39468265, 0.39779984, 0.39779984, 0.39779984])}], 'minmod_hllc': [{'rho': array([0.99615448, 0.99615448, 0.99615448, 0.99615448, 0.99067376,
0.99067376, 0.99067376, 0.99067376, 0.98178812, 0.98178812,
0.98178812, 0.98178812, 0.96631722, 0.96631722, 0.96631722,
0.96631722, 0.94200777, 0.94200777, 0.94200777, 0.94200777,
0.90673392, 0.90673392, 0.90673392, 0.90673392, 0.85947908,
0.85947908, 0.85947908, 0.85947908, 0.80074229, 0.80074229,
0.80074229, 0.80074229, 0.73273792, 0.73273792, 0.73273792,
0.73273792, 0.65910051, 0.65910051, 0.65910051, 0.65910051,
0.58453712, 0.58453712, 0.58453712, 0.58453712, 0.51341489,
0.51341489, 0.51341489, 0.51341489, 0.44678137, 0.44678137,
0.44678137, 0.44678137, 0.38526945, 0.38526945, 0.38526945,
0.38526945, 0.32938852, 0.32938852, 0.32938852, 0.32938852,
0.27948578, 0.27948578, 0.27948578, 0.27948578, 0.23567556,
0.23567556, 0.23567556, 0.23567556, 0.19783362, 0.19783362,
0.19783362, 0.19783362, 0.16563022, 0.16563022, 0.16563022,
0.16563022, 0.13852619, 0.13852619, 0.13852619, 0.13852619,
0.11591599, 0.11591599, 0.11591599, 0.11591599, 0.09720849,
0.09720849, 0.09720849, 0.09720849, 0.08184086, 0.08184086,
0.08184086, 0.08184086, 0.06929484, 0.06929484, 0.06929484,
0.06929484, 0.05915203, 0.05915203, 0.05915203, 0.05915203,
0.05103646, 0.05103646, 0.05103646, 0.05103646, 0.04464094,
0.04464094, 0.04464094, 0.04464094, 0.03968772, 0.03968772,
0.03968772, 0.03968772, 0.03610206, 0.03610206, 0.03610206,
0.03610206, 0.03336904, 0.03336904, 0.03336904, 0.03336904,
0.03198975, 0.03198975, 0.03198975, 0.03198975, 0.03106627,
0.03106627, 0.03106627, 0.03106627, 0.03106627, 0.03106627,
0.03106627, 0.03106627, 0.03198975, 0.03198975, 0.03198975,
0.03198975, 0.03336904, 0.03336904, 0.03336904, 0.03336904,
0.03610206, 0.03610206, 0.03610206, 0.03610206, 0.03968772,
0.03968772, 0.03968772, 0.03968772, 0.04464094, 0.04464094,
0.04464094, 0.04464094, 0.05103646, 0.05103646, 0.05103646,
0.05103646, 0.05915203, 0.05915203, 0.05915203, 0.05915203,
0.06929484, 0.06929484, 0.06929484, 0.06929484, 0.08184086,
0.08184086, 0.08184086, 0.08184086, 0.09720849, 0.09720849,
0.09720849, 0.09720849, 0.11591599, 0.11591599, 0.11591599,
0.11591599, 0.13852619, 0.13852619, 0.13852619, 0.13852619,
0.16563022, 0.16563022, 0.16563022, 0.16563022, 0.19783362,
0.19783362, 0.19783362, 0.19783362, 0.23567556, 0.23567556,
0.23567556, 0.23567556, 0.27948578, 0.27948578, 0.27948578,
0.27948578, 0.32938852, 0.32938852, 0.32938852, 0.32938852,
0.38526945, 0.38526945, 0.38526945, 0.38526945, 0.44678137,
0.44678137, 0.44678137, 0.44678137, 0.51341489, 0.51341489,
0.51341489, 0.51341489, 0.58453712, 0.58453712, 0.58453712,
0.58453712, 0.65910051, 0.65910051, 0.65910051, 0.65910051,
0.73273792, 0.73273792, 0.73273792, 0.73273792, 0.80074229,
0.80074229, 0.80074229, 0.80074229, 0.85947908, 0.85947908,
0.85947908, 0.85947908, 0.90673392, 0.90673392, 0.90673392,
0.90673392, 0.94200777, 0.94200777, 0.94200777, 0.94200777,
0.96631722, 0.96631722, 0.96631722, 0.96631722, 0.98178812,
0.98178812, 0.98178812, 0.98178812, 0.99067376, 0.99067376,
0.99067376, 0.99067376, 0.99615448, 0.99615448, 0.99615448]), 'vx': array([-1.9971243 , -1.9971243 , -1.9971243 , -1.9971243 , -1.99301667,
-1.99301667, -1.99301667, -1.99301667, -1.98633771, -1.98633771,
-1.98633771, -1.98633771, -1.97462189, -1.97462189, -1.97462189,
-1.97462189, -1.95596274, -1.95596274, -1.95596274, -1.95596274,
-1.9282702 , -1.9282702 , -1.9282702 , -1.9282702 , -1.88986881,
-1.88986881, -1.88986881, -1.88986881, -1.83968895, -1.83968895,
-1.83968895, -1.83968895, -1.77729068, -1.77729068, -1.77729068,
-1.77729068, -1.70408962, -1.70408962, -1.70408962, -1.70408962,
-1.62490657, -1.62490657, -1.62490657, -1.62490657, -1.54288253,
-1.54288253, -1.54288253, -1.54288253, -1.45929744, -1.45929744,
-1.45929744, -1.45929744, -1.37460301, -1.37460301, -1.37460301,
-1.37460301, -1.28898371, -1.28898371, -1.28898371, -1.28898371,
-1.20255159, -1.20255159, -1.20255159, -1.20255159, -1.11547576,
-1.11547576, -1.11547576, -1.11547576, -1.02801532, -1.02801532,
-1.02801532, -1.02801532, -0.94055911, -0.94055911, -0.94055911,
-0.94055911, -0.85344532, -0.85344532, -0.85344532, -0.85344532,
-0.76692431, -0.76692431, -0.76692431, -0.76692431, -0.68132058,
-0.68132058, -0.68132058, -0.68132058, -0.59708218, -0.59708218,
-0.59708218, -0.59708218, -0.51482203, -0.51482203, -0.51482203,
-0.51482203, -0.43501962, -0.43501962, -0.43501962, -0.43501962,
-0.35845092, -0.35845092, -0.35845092, -0.35845092, -0.28602542,
-0.28602542, -0.28602542, -0.28602542, -0.21921856, -0.21921856,
-0.21921856, -0.21921856, -0.15742456, -0.15742456, -0.15742456,
-0.15742456, -0.10710953, -0.10710953, -0.10710953, -0.10710953,
-0.05755075, -0.05755075, -0.05755075, -0.05755075, -0.02124077,
-0.02124077, -0.02124077, -0.02124077, 0.02124077, 0.02124077,
0.02124077, 0.02124077, 0.05755075, 0.05755075, 0.05755075,
0.05755075, 0.10710953, 0.10710953, 0.10710953, 0.10710953,
0.15742456, 0.15742456, 0.15742456, 0.15742456, 0.21921856,
0.21921856, 0.21921856, 0.21921856, 0.28602542, 0.28602542,
0.28602542, 0.28602542, 0.35845092, 0.35845092, 0.35845092,
0.35845092, 0.43501962, 0.43501962, 0.43501962, 0.43501962,
0.51482203, 0.51482203, 0.51482203, 0.51482203, 0.59708218,
0.59708218, 0.59708218, 0.59708218, 0.68132058, 0.68132058,
0.68132058, 0.68132058, 0.76692431, 0.76692431, 0.76692431,
0.76692431, 0.85344532, 0.85344532, 0.85344532, 0.85344532,
0.94055911, 0.94055911, 0.94055911, 0.94055911, 1.02801532,
1.02801532, 1.02801532, 1.02801532, 1.11547576, 1.11547576,
1.11547576, 1.11547576, 1.20255159, 1.20255159, 1.20255159,
1.20255159, 1.28898371, 1.28898371, 1.28898371, 1.28898371,
1.37460301, 1.37460301, 1.37460301, 1.37460301, 1.45929744,
1.45929744, 1.45929744, 1.45929744, 1.54288253, 1.54288253,
1.54288253, 1.54288253, 1.62490657, 1.62490657, 1.62490657,
1.62490657, 1.70408962, 1.70408962, 1.70408962, 1.70408962,
1.77729068, 1.77729068, 1.77729068, 1.77729068, 1.83968895,
1.83968895, 1.83968895, 1.83968895, 1.88986881, 1.88986881,
1.88986881, 1.88986881, 1.9282702 , 1.9282702 , 1.9282702 ,
1.9282702 , 1.95596274, 1.95596274, 1.95596274, 1.95596274,
1.97462189, 1.97462189, 1.97462189, 1.97462189, 1.98633771,
1.98633771, 1.98633771, 1.98633771, 1.99301667, 1.99301667,
1.99301667, 1.99301667, 1.9971243 , 1.9971243 , 1.9971243 ]), 'P': array([0.39785335, 0.39785335, 0.39785335, 0.39785335, 0.39480468,
0.39480468, 0.39480468, 0.39480468, 0.38989202, 0.38989202,
0.38989202, 0.38989202, 0.38140375, 0.38140375, 0.38140375,
0.38140375, 0.36821799, 0.36821799, 0.36821799, 0.36821799,
0.34937986, 0.34937986, 0.34937986, 0.34937986, 0.32464373,
0.32464373, 0.32464373, 0.32464373, 0.29461246, 0.29461246,
0.29461246, 0.29461246, 0.26049006, 0.26049006, 0.26049006,
0.26049006, 0.22426407, 0.22426407, 0.22426407, 0.22426407,
0.19032737, 0.19032737, 0.19032737, 0.19032737, 0.16017926,
0.16017926, 0.16017926, 0.16017926, 0.13398511, 0.13398511,
0.13398511, 0.13398511, 0.11152626, 0.11152626, 0.11152626,
0.11152626, 0.09246986, 0.09246986, 0.09246986, 0.09246986,
0.07645237, 0.07645237, 0.07645237, 0.07645237, 0.06310898,
0.06310898, 0.06310898, 0.06310898, 0.05208913, 0.05208913,
0.05208913, 0.05208913, 0.04306339, 0.04306339, 0.04306339,
0.04306339, 0.03570472, 0.03570472, 0.03570472, 0.03570472,
0.02972125, 0.02972125, 0.02972125, 0.02972125, 0.02486829,
0.02486829, 0.02486829, 0.02486829, 0.02093881, 0.02093881,
0.02093881, 0.02093881, 0.01775854, 0.01775854, 0.01775854,
0.01775854, 0.0151983 , 0.0151983 , 0.0151983 , 0.0151983 ,
0.01314835, 0.01314835, 0.01314835, 0.01314835, 0.01152438,
0.01152438, 0.01152438, 0.01152438, 0.01025172, 0.01025172,
0.01025172, 0.01025172, 0.00932748, 0.00932748, 0.00932748,
0.00932748, 0.00858716, 0.00858716, 0.00858716, 0.00858716,
0.00823426, 0.00823426, 0.00823426, 0.00823426, 0.00795945,
0.00795945, 0.00795945, 0.00795945, 0.00795945, 0.00795945,
0.00795945, 0.00795945, 0.00823426, 0.00823426, 0.00823426,
0.00823426, 0.00858716, 0.00858716, 0.00858716, 0.00858716,
0.00932748, 0.00932748, 0.00932748, 0.00932748, 0.01025172,
0.01025172, 0.01025172, 0.01025172, 0.01152438, 0.01152438,
0.01152438, 0.01152438, 0.01314835, 0.01314835, 0.01314835,
0.01314835, 0.0151983 , 0.0151983 , 0.0151983 , 0.0151983 ,
0.01775854, 0.01775854, 0.01775854, 0.01775854, 0.02093881,
0.02093881, 0.02093881, 0.02093881, 0.02486829, 0.02486829,
0.02486829, 0.02486829, 0.02972125, 0.02972125, 0.02972125,
0.02972125, 0.03570472, 0.03570472, 0.03570472, 0.03570472,
0.04306339, 0.04306339, 0.04306339, 0.04306339, 0.05208913,
0.05208913, 0.05208913, 0.05208913, 0.06310898, 0.06310898,
0.06310898, 0.06310898, 0.07645237, 0.07645237, 0.07645237,
0.07645237, 0.09246986, 0.09246986, 0.09246986, 0.09246986,
0.11152626, 0.11152626, 0.11152626, 0.11152626, 0.13398511,
0.13398511, 0.13398511, 0.13398511, 0.16017926, 0.16017926,
0.16017926, 0.16017926, 0.19032737, 0.19032737, 0.19032737,
0.19032737, 0.22426407, 0.22426407, 0.22426407, 0.22426407,
0.26049006, 0.26049006, 0.26049006, 0.26049006, 0.29461246,
0.29461246, 0.29461246, 0.29461246, 0.32464373, 0.32464373,
0.32464373, 0.32464373, 0.34937986, 0.34937986, 0.34937986,
0.34937986, 0.36821799, 0.36821799, 0.36821799, 0.36821799,
0.38140375, 0.38140375, 0.38140375, 0.38140375, 0.38989202,
0.38989202, 0.38989202, 0.38989202, 0.39480468, 0.39480468,
0.39480468, 0.39480468, 0.39785335, 0.39785335, 0.39785335])}]}
running none hll
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 14.45 ms [DataInserterUtility][rank=0]
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 : 3.42 us (52.5%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (0.2%)
patch tree reduce : 931.00 ns (0.2%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 712.00 ns (0.1%)
LB compute : 557.02 us (94.5%)
LB move op cnt : 0
LB apply : 3.28 us (0.6%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running none hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.43 us (2.0%)
patch tree reduce : 2.21 us (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 494.64 us (94.9%)
LB move op cnt : 0
LB apply : 4.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (68.2%)
Info: cfl dt = 0.00012527870714644892 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.3428e+05 | 65536 | 2 | 2.797e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.00012527870714644892
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (1.3%)
patch tree reduce : 2.12 us (0.4%)
gen split merge : 1.06 us (0.2%)
split / merge op : 0/0
apply split merge : 1.41 us (0.3%)
LB compute : 470.07 us (95.4%)
LB move op cnt : 0
LB apply : 3.88 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (71.5%)
Info: cfl dt = 0.00012194328524833338 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4979e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.095339622105459 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00012527870714644892, dt = 0.00012194328524833338
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.5%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 378.14 us (95.1%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.4%)
Info: cfl dt = 0.00011872603833498025 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6112e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0888336013267907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0002472219923947823, dt = 0.00011872603833498025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.7%)
patch tree reduce : 2.36 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 370.21 us (94.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (61.2%)
Info: cfl dt = 0.00011582136182458723 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7096e+05 | 65536 | 2 | 1.767e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.419323766548947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00036594803072976254, dt = 0.00011582136182458723
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 337.17 us (89.0%)
LB move op cnt : 0
LB apply : 25.23 us (6.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.7%)
Info: cfl dt = 0.00011331937527520993 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5953e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9236330831770956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00048176939255434976, dt = 0.00011331937527520993
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.4%)
patch tree reduce : 2.26 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 380.23 us (90.2%)
LB move op cnt : 0
LB apply : 24.76 us (5.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (64.7%)
Info: cfl dt = 0.00011118831923885228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1213e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.565414128938464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005950887678295597, dt = 0.00011118831923885228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.4%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 392.22 us (95.1%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.0%)
Info: cfl dt = 0.0001093661346982433 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3947e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6841581756731125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.000706277087068412, dt = 0.0001093661346982433
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.3%)
patch tree reduce : 1.87 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 421.76 us (95.6%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (63.3%)
Info: cfl dt = 0.00010779301620595844 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5632e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.741391974890893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008156432217666553, dt = 0.00010779301620595844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.6%)
patch tree reduce : 2.37 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 364.18 us (94.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (64.8%)
Info: cfl dt = 0.00010641928608971432 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4268e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6212134668949805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009234362379726138, dt = 0.00010641928608971432
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.3%)
patch tree reduce : 2.11 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 440.90 us (95.5%)
LB move op cnt : 0
LB apply : 3.91 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.0%)
Info: cfl dt = 0.00010520569763276211 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5760e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.675011047488583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010298555240623281, dt = 0.00010520569763276211
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 334.21 us (94.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (63.0%)
Info: cfl dt = 0.00010412181761245932 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5472e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.627891414582266 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011350612216950902, dt = 0.00010412181761245932
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.4%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 419.40 us (95.3%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.5%)
Info: cfl dt = 0.00010314418535258154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4876e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.566740095902076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012391830393075494, dt = 0.00010314418535258154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.5%)
patch tree reduce : 2.11 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 376.79 us (94.9%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.6%)
Info: cfl dt = 0.00010225470808944258 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5516e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5788542454150427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001342327224660131, dt = 0.00010225470808944258
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 319.94 us (94.2%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.3%)
Info: cfl dt = 0.00010143937470752879 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2760e+05 | 65536 | 2 | 2.000e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8401541035458837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014445819327495734, dt = 0.00010143937470752879
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.2%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 621.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 402.86 us (95.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (64.3%)
Info: cfl dt = 0.0001006872604494412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2480e+05 | 65536 | 2 | 2.018e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8098344736286758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015460213074571022, dt = 0.0001006872604494412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.3%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 711.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 391.90 us (95.5%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (65.6%)
Info: cfl dt = 9.998977007890212e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3069e+05 | 65536 | 2 | 1.982e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.829014555937664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016467085679065434, dt = 9.998977007890212e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 302.69 us (94.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.8%)
Info: cfl dt = 9.934006785392846e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2794e+05 | 65536 | 2 | 1.998e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8012654568155921 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017466983379854455, dt = 9.934006785392846e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 2.50 us (0.8%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 300.14 us (94.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.7%)
Info: cfl dt = 9.873265090298851e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2484e+05 | 65536 | 2 | 2.017e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.772623326301838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001846038405839374, dt = 9.873265090298851e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.1%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 418.16 us (95.8%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (68.6%)
Info: cfl dt = 9.81630303713794e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2539e+05 | 65536 | 2 | 2.014e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7647522395935566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019447710567423624, dt = 9.81630303713794e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (1.1%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 652.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 384.12 us (95.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.3%)
Info: cfl dt = 9.762749344868406e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2325e+05 | 65536 | 2 | 2.027e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7430427469051377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020429340871137417, dt = 9.762749344868406e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.3%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 532.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 365.91 us (95.2%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.10 us (93.5%)
Info: cfl dt = 9.712292642033374e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2358e+05 | 65536 | 2 | 2.025e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.735315300392355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002140561580562426, dt = 9.712292642033374e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 387.72 us (95.3%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.7%)
Info: cfl dt = 9.66466826547552e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2374e+05 | 65536 | 2 | 2.024e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7271660603699508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00223768450698276, dt = 9.66466826547552e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (1.2%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 373.52 us (95.5%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.2%)
Info: cfl dt = 9.61964838018187e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1909e+05 | 65536 | 2 | 2.054e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6940105137575971 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002334331189637515, dt = 9.61964838018187e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 344.98 us (94.7%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (67.4%)
Info: cfl dt = 9.577034552609458e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5402e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.399150900694393 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002430527673439334, dt = 9.577034552609458e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 310.61 us (94.0%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.5%)
Info: cfl dt = 9.53665213479679e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4986e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.366615744514853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025262980189654284, dt = 9.53665213479679e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.5%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 362.74 us (94.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.6%)
Info: cfl dt = 9.498345985165533e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8686e+05 | 65536 | 2 | 1.694e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0266409528639233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002621664540313396, dt = 9.498345985165533e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.78 us (6.9%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 321.43 us (89.4%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.8%)
Info: cfl dt = 9.461977177452718e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2982e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.242644229633445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027166480001650515, dt = 9.461977177452718e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 342.06 us (94.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.7%)
Info: cfl dt = 9.427420442175475e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9507e+05 | 65536 | 2 | 1.659e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.053422364625543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028112677719395788, dt = 9.427420442175475e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 342.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.2%)
Info: cfl dt = 9.394562153527339e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5626e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3628067417839596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0029055419763613336, dt = 9.394562153527339e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 2.38 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 356.77 us (94.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.3%)
Info: cfl dt = 9.363298724961119e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5777e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3623699104662137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002999487597896607, dt = 9.363298724961119e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 315.92 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.5%)
Info: cfl dt = 9.333535314768472e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8519e+05 | 65536 | 2 | 1.701e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9812025577132748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030931205851462184, dt = 9.333535314768472e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 343.02 us (94.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.9%)
Info: cfl dt = 9.305184767593385e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5627e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3393003416297726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003186455938293903, dt = 9.305184767593385e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.4%)
LB compute : 342.94 us (94.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.7%)
Info: cfl dt = 9.278166737417008e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3394e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2181056695163655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003279507785969837, dt = 9.278166737417008e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 307.92 us (94.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.2%)
Info: cfl dt = 9.252406951761004e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7699e+05 | 65536 | 2 | 1.738e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9213823579395757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003372289453344007, dt = 9.252406951761004e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 317.53 us (94.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.1%)
Info: cfl dt = 9.227836587161003e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5557e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.315445467217029 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003464813522861617, dt = 9.227836587161003e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 298.32 us (94.0%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.0%)
Info: cfl dt = 9.204391733446075e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5671e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.31507063985215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003557091888733227, dt = 9.204391733446075e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (2.0%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 294.81 us (93.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.2%)
Info: cfl dt = 9.182012929826866e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5572e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.304152503532486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036491358060676874, dt = 9.182012929826866e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 298.10 us (94.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (60.5%)
Info: cfl dt = 9.160644759788798e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3115e+05 | 65536 | 2 | 1.979e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.670268309302537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003740955935365956, dt = 9.160644759788798e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 327.06 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.2%)
Info: cfl dt = 9.140235494727e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3242e+05 | 65536 | 2 | 1.971e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6727760492230468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003832562382963844, dt = 9.140235494727e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 343.18 us (94.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.0%)
Info: cfl dt = 9.120736778441642e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2822e+05 | 65536 | 2 | 1.997e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6479583810188252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003923964737911114, dt = 9.120736778441642e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 334.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.9%)
Info: cfl dt = 9.102103346245955e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3058e+05 | 65536 | 2 | 1.982e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6562857069867916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0040151721056955305, dt = 9.102103346245955e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.4%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 342.38 us (94.8%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (60.6%)
Info: cfl dt = 9.084292773674417e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3665e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.683252013779126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00410619313915799, dt = 9.084292773674417e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 323.69 us (94.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.0%)
Info: cfl dt = 9.067265250722153e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3732e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.683278085277293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004197036066894734, dt = 9.067265250722153e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 319.79 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (59.3%)
Info: cfl dt = 9.050983378275315e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3128e+05 | 65536 | 2 | 1.978e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6500195238207258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004287708719401956, dt = 9.050983378275315e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 314.98 us (94.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.6%)
Info: cfl dt = 9.035411983983322e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3633e+05 | 65536 | 2 | 1.949e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.672197147527818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004378218553184709, dt = 9.035411983983322e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 282.44 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.3%)
Info: cfl dt = 9.020517955268955e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3434e+05 | 65536 | 2 | 1.960e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6594185147767275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004468572673024542, dt = 9.020517955268955e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 346.61 us (94.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.5%)
Info: cfl dt = 9.006270087519534e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2614e+05 | 65536 | 2 | 2.009e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6160459811621042 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004558777852577232, dt = 9.006270087519534e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 350.28 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.8%)
Info: cfl dt = 8.992638945783673e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2618e+05 | 65536 | 2 | 2.009e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6136956351244405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046488405534524276, dt = 8.992638945783673e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 315.57 us (94.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (64.0%)
Info: cfl dt = 8.979596738528579e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6653e+05 | 65536 | 2 | 1.405e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.304542825242221 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004738766942910264, dt = 8.979596738528579e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 322.07 us (94.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.9%)
Info: cfl dt = 8.967117202203327e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7231e+05 | 65536 | 2 | 1.388e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3297156204388774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00482856291029555, dt = 8.967117202203327e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 370.57 us (94.9%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.2%)
Info: cfl dt = 8.955175495512559e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1657e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.051936031370668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004918234082317583, dt = 8.955175495512559e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 313.90 us (94.4%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (61.1%)
Info: cfl dt = 8.943748102439046e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8121e+05 | 65536 | 2 | 1.719e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.87523378357055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0050077858372727085, dt = 8.943748102439046e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 2.31 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 331.07 us (94.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.9%)
Info: cfl dt = 8.932812743167362e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2584e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.092145003693545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005097223318297099, dt = 8.932812743167362e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 2.27 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 340.03 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.3%)
Info: cfl dt = 8.922348292158211e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3957e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1569631512682035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005186551445728773, dt = 8.922348292158211e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 303.70 us (94.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.1%)
Info: cfl dt = 8.912334702706868e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4009e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1569415830354646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005275774928650355, dt = 8.912334702706868e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.41 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 307.63 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (63.6%)
Info: cfl dt = 8.902752937391787e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4851e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.195744927365226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0053648982756774235, dt = 8.902752937391787e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.6%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 342.52 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.6%)
Info: cfl dt = 8.893584903883428e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6113e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2551067439011407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005453925805051342, dt = 8.893584903883428e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 324.21 us (94.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.4%)
Info: cfl dt = 8.884813395639143e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6270e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.260448014250215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005542861654090176, dt = 8.884813395639143e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 290.93 us (93.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.7%)
Info: cfl dt = 8.876422037058785e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5892e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2397719762774773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005631709788046568, dt = 8.876422037058785e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 2.59 us (0.8%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 314.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.3%)
Info: cfl dt = 8.86839523271837e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6526e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2685816202277653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0057204740084171556, dt = 8.86839523271837e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 341.18 us (94.6%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.2%)
Info: cfl dt = 8.860718120336847e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6150e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2482005393408633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00580915796074434, dt = 8.860718120336847e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.4%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 355.06 us (94.9%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.8%)
Info: cfl dt = 8.853376527164225e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5929e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.235532015371012 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005897765141947708, dt = 8.853376527164225e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.8%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 336.46 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.2%)
Info: cfl dt = 8.846356929509018e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5424e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.209130506831772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00598629890721935, dt = 8.846356929509018e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 324.73 us (94.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.9%)
Info: cfl dt = 8.839646415149146e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6015e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2360781233227525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00607476247651444, dt = 8.839646415149146e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 324.73 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.7%)
Info: cfl dt = 8.83323264839402e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5917e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2296409846137073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006163158940665932, dt = 8.83323264839402e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 292.24 us (93.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (60.5%)
Info: cfl dt = 8.827103837586521e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5646e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.214869914172776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006251491267149872, dt = 8.827103837586521e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 299.10 us (93.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.9%)
Info: cfl dt = 8.821248704852441e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9820e+05 | 65536 | 2 | 1.646e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.930819965327255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006339762305525737, dt = 8.821248704852441e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.9%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 306.69 us (94.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (62.6%)
Info: cfl dt = 8.815656457921915e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4323e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.14774652870666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006427974792574262, dt = 8.815656457921915e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 316.40 us (94.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.3%)
Info: cfl dt = 8.810316763862651e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5451e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.200998235075593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006516131357153481, dt = 8.810316763862651e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.5%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 382.16 us (95.0%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.4%)
Info: cfl dt = 8.805219724578464e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5807e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.216896571011201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006604234524792108, dt = 8.805219724578464e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 342.90 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.5%)
Info: cfl dt = 8.800355853939225e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6508e+05 | 65536 | 2 | 1.795e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7658454848041818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0066922867220378926, dt = 8.800355853939225e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.3%)
patch tree reduce : 2.23 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 409.71 us (95.3%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.8%)
Info: cfl dt = 8.795716056419379e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4614e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.156716789754839 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006780290280577285, dt = 8.795716056419379e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 352.81 us (94.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (61.9%)
Info: cfl dt = 8.791291607132533e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5986e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.22189602814561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0068682474411414784, dt = 8.791291607132533e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 330.79 us (94.5%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.6%)
Info: cfl dt = 8.787074133158679e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5580e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.201159217151563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006956160357212804, dt = 8.787074133158679e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.6%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 374.50 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.2%)
Info: cfl dt = 8.783055596069159e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7025e+05 | 65536 | 2 | 1.770e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.78713094208151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007044031098544391, dt = 8.783055596069159e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 322.52 us (94.6%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (60.4%)
Info: cfl dt = 8.779228275561854e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6226e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2302452405593383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007131861654505082, dt = 8.779228275561854e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 324.99 us (94.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (61.3%)
Info: cfl dt = 8.775584754126193e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7481e+05 | 65536 | 2 | 1.749e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8075484392858217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0072196539372607, dt = 8.775584754126193e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 356.58 us (94.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.2%)
Info: cfl dt = 8.772117902663718e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4529e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.146538466830916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007307409784801962, dt = 8.772117902663718e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 311.40 us (94.0%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.1%)
Info: cfl dt = 8.768820866995769e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2287e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0376934966935147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007395130963828599, dt = 8.768820866995769e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 359.62 us (94.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.5%)
Info: cfl dt = 8.765687055195054e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4626e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.149568890985292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007482819172498557, dt = 8.765687055195054e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 313.09 us (94.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.0%)
Info: cfl dt = 8.762710125682677e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2514e+05 | 65536 | 2 | 2.016e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5656121146267175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007570476043050507, dt = 8.762710125682677e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.82 us (1.3%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 346.57 us (95.2%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (63.5%)
Info: cfl dt = 8.759883976036588e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2930e+05 | 65536 | 2 | 1.990e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.585075217914736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007658103144307334, dt = 8.759883976036588e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 335.48 us (94.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.0%)
Info: cfl dt = 8.757202732461461e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2686e+05 | 65536 | 2 | 2.005e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5728504027650472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0077457019840676995, dt = 8.757202732461461e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.3%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 355.35 us (95.0%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (64.3%)
Info: cfl dt = 8.754660739873665e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2970e+05 | 65536 | 2 | 1.988e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5860149171993205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007833274011392314, dt = 8.754660739873665e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 302.04 us (87.8%)
LB move op cnt : 0
LB apply : 24.97 us (7.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.0%)
Info: cfl dt = 8.75225255255848e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3516e+05 | 65536 | 2 | 1.955e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6117980345011171 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00792082061879105, dt = 8.75225255255848e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 297.97 us (93.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (55.5%)
Info: cfl dt = 8.749972925359743e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2949e+05 | 65536 | 2 | 1.989e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5841000380548962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008008343144316634, dt = 8.749972925359743e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 339.29 us (94.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.0%)
Info: cfl dt = 8.747816805365116e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2537e+05 | 65536 | 2 | 2.014e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.563872513378292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008095842873570232, dt = 8.747816805365116e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 348.36 us (94.9%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (68.6%)
Info: cfl dt = 8.745779324052669e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2960e+05 | 65536 | 2 | 1.988e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5838398530861018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008183321041623884, dt = 8.745779324052669e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 320.19 us (94.3%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.4%)
Info: cfl dt = 8.743855789867165e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2668e+05 | 65536 | 2 | 2.006e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.56943300302806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00827077883486441, dt = 8.743855789867165e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.3%)
patch tree reduce : 2.78 us (0.7%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 373.64 us (95.0%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (66.9%)
Info: cfl dt = 8.742041681196493e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2832e+05 | 65536 | 2 | 1.996e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5769758551258486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008358217392763082, dt = 8.742041681196493e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 303.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.6%)
Info: cfl dt = 8.740332639720941e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1703e+05 | 65536 | 2 | 2.067e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5224350080472682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008445637809575047, dt = 8.740332639720941e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 356.46 us (94.9%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.8%)
Info: cfl dt = 8.738724464109897e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2247e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0283715539887317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008533041135972256, dt = 8.738724464109897e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 355.90 us (92.1%)
LB move op cnt : 0
LB apply : 7.35 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (65.8%)
Info: cfl dt = 8.737213104042461e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3754e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.100339461621568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008620428380613354, dt = 8.737213104042461e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 319.45 us (94.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.8%)
Info: cfl dt = 8.73579465452996e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4606e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1408827980032537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008707800511653778, dt = 8.73579465452996e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.25 us (3.2%)
patch tree reduce : 4.30 us (1.2%)
gen split merge : 1.64 us (0.5%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 316.93 us (91.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (67.1%)
Info: cfl dt = 8.7344653505202e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2724e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0502044451429713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008795158458199078, dt = 8.7344653505202e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 322.52 us (93.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.4%)
Info: cfl dt = 8.73322156176444e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2641e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0458870774974316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008882503111704281, dt = 8.73322156176444e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (2.0%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 280.55 us (93.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.9%)
Info: cfl dt = 8.732059787929678e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2409e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.034493283442915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008969835327321925, dt = 8.732059787929678e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 290.41 us (93.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.0%)
Info: cfl dt = 8.730976653939953e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1921e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0108081114874548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009057155925201222, dt = 8.730976653939953e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 288.82 us (93.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.5%)
Info: cfl dt = 8.729968905531573e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3038e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0641218203005627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009144465691740622, dt = 8.729968905531573e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 337.80 us (94.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.3%)
Info: cfl dt = 8.729033405008344e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2776e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0513265465160586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009231765380795938, dt = 8.729033405008344e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 322.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.6%)
Info: cfl dt = 8.728167127183772e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4448e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.13125883692612 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00931905571484602, dt = 8.728167127183772e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 290.10 us (93.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.2%)
Info: cfl dt = 8.727367155498257e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4452e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.131278024961645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009406337386117859, dt = 8.727367155498257e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 349.48 us (94.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.2%)
Info: cfl dt = 8.72663067830014e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8074e+05 | 65536 | 2 | 1.721e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8252930605973419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009493611057672841, dt = 8.72663067830014e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.0%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 294.52 us (93.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.2%)
Info: cfl dt = 8.725954985280303e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5672e+05 | 65536 | 2 | 1.837e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.70999733423513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009580877364455842, dt = 8.725954985280303e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 335.90 us (94.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.4%)
Info: cfl dt = 8.725337464050765e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1590e+05 | 65536 | 2 | 2.075e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5142134349069476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009668136914308645, dt = 8.725337464050765e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 349.04 us (94.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.6%)
Info: cfl dt = 8.724775596858477e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7798e+05 | 65536 | 2 | 1.734e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.811656016831932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009755390288949152, dt = 8.724775596858477e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.4%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 347.93 us (94.8%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.3%)
Info: cfl dt = 8.724266957426127e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2288e+05 | 65536 | 2 | 2.030e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5474327329031772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009842638044917737, dt = 8.724266957426127e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.3%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 377.81 us (95.3%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.4%)
Info: cfl dt = 8.723809207912435e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2077e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0164906970771 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009929880714491999, dt = 8.723809207912435e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 294.18 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.7%)
Info: cfl dt = 8.723400095984954e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3474e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0833501263583862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010017118806571123, dt = 8.723400095984954e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 304.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.1%)
Info: cfl dt = 8.723037451998974e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2964e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.058812403277291 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010104352807530971, dt = 8.723037451998974e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 289.15 us (93.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.4%)
Info: cfl dt = 8.722719186276549e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3537e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0861806258432836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010191583182050962, dt = 8.722719186276549e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 321.67 us (94.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.9%)
Info: cfl dt = 8.722443286480211e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3232e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.071488856934953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010278810373913727, dt = 8.722443286480211e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 298.43 us (93.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.3%)
Info: cfl dt = 8.722207815076305e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3124e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.066240724217757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010366034806778529, dt = 8.722207815076305e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 291.24 us (93.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (59.8%)
Info: cfl dt = 8.722010906883284e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3188e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0692397314846427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010453256884929292, dt = 8.722010906883284e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 285.90 us (93.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.4%)
Info: cfl dt = 8.721850766700673e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2955e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0580308945830015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010540476993998125, dt = 8.721850766700673e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.0%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 295.69 us (93.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (63.2%)
Info: cfl dt = 8.721725667014773e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1890e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.006996685867737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010627695501665133, dt = 8.721725667014773e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 318.14 us (94.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.9%)
Info: cfl dt = 8.721466016291845e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3556e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0867744575784366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01071491275833528, dt = 8.721466016291845e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 328.89 us (94.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (63.9%)
Info: cfl dt = 8.721023117149361e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4391e+05 | 65536 | 2 | 1.906e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6476334677651523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010802127418498198, dt = 8.721023117149361e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 320.19 us (94.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (61.5%)
Info: cfl dt = 8.720626934646868e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1791e+05 | 65536 | 2 | 2.061e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5229590563411473 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010889337649669692, dt = 8.720626934646868e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 372.16 us (95.0%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (63.5%)
Info: cfl dt = 8.720275570138364e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2496e+05 | 65536 | 2 | 2.017e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.556700621248513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01097654391901616, dt = 8.720275570138364e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.4%)
patch tree reduce : 2.48 us (0.6%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 371.81 us (94.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.7%)
Info: cfl dt = 8.719967184282732e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3869e+05 | 65536 | 2 | 1.935e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6223943318716434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011063746674717543, dt = 8.719967184282732e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 322.83 us (94.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.6%)
Info: cfl dt = 8.719700001790935e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3982e+05 | 65536 | 2 | 1.929e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6277535484024197 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01115094634656037, dt = 8.719700001790935e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 323.14 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.9%)
Info: cfl dt = 8.719472301950401e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3777e+05 | 65536 | 2 | 1.940e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6178940374810356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01123814334657828, dt = 8.719472301950401e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.5%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 339.83 us (94.7%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.9%)
Info: cfl dt = 8.719282417328234e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4095e+05 | 65536 | 2 | 1.922e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6330567911462326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011325338069597785, dt = 8.719282417328234e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.4%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 368.38 us (94.8%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.0%)
Info: cfl dt = 8.719128733171533e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3926e+05 | 65536 | 2 | 1.932e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6249280786366354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011412530893771066, dt = 8.719128733171533e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.9%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 304.00 us (93.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.5%)
Info: cfl dt = 8.719009686068282e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2978e+05 | 65536 | 2 | 1.987e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5794954124698706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011499722181102782, dt = 8.719009686068282e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 305.22 us (94.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.2%)
Info: cfl dt = 8.718923762653743e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3961e+05 | 65536 | 2 | 1.930e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6265836166581396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011586912277963466, dt = 8.718923762653743e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 296.20 us (94.0%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (59.8%)
Info: cfl dt = 8.71886949835884e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5084e+05 | 65536 | 2 | 1.868e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6803145394883217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011674101515590004, dt = 8.71886949835884e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 337.82 us (94.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (61.5%)
Info: cfl dt = 8.718845476197027e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3283e+05 | 65536 | 2 | 1.969e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.594081831281493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011761290210573592, dt = 8.718845476197027e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 350.76 us (94.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 8.71885032558626e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4040e+05 | 65536 | 2 | 1.925e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6302954253743511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011848478665335562, dt = 8.71885032558626e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 333.94 us (94.5%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (60.6%)
Info: cfl dt = 8.718882755312888e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3644e+05 | 65536 | 2 | 1.948e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6113266255402423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011935667168591424, dt = 6.433283140857594e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.4%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 358.52 us (94.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.6%)
Info: cfl dt = 8.7189260948722e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3965e+05 | 65536 | 2 | 1.930e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2002798367038332 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 253.923883592 (s) [Godunov][rank=0]
running minmod rusanov
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.85 ms [DataInserterUtility][rank=0]
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 : 4.33 us (57.2%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (0.5%)
patch tree reduce : 1.03 us (0.2%)
gen split merge : 1.03 us (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 415.34 us (97.2%)
LB move op cnt : 0
LB apply : 3.04 us (0.7%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.87 us (2.4%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 385.83 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (64.8%)
Info: cfl dt = 0.00012527870714644892 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8741e+05 | 65536 | 2 | 1.692e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.00012527870714644892
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.3%)
patch tree reduce : 1.92 us (0.4%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 421.82 us (95.6%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (64.6%)
Info: cfl dt = 0.00012194328524833338 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5608e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.138617712122608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00012527870714644892, dt = 0.00012194328524833338
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 335.99 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.0%)
Info: cfl dt = 0.00011699661083727856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0756e+05 | 65536 | 2 | 1.608e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7300812244447363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0002472219923947823, dt = 0.00011699661083727856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 330.50 us (94.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (65.2%)
Info: cfl dt = 0.00011292989361501563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5200e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9048937547037545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00036421860323206085, dt = 0.00011292989361501563
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 303.57 us (94.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.7%)
Info: cfl dt = 0.00010995299130608725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2775e+05 | 65536 | 2 | 2.000e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0331921578748995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004771484968470765, dt = 0.00010995299130608725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 337.68 us (94.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.6%)
Info: cfl dt = 0.00010775972900684009 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2618e+05 | 65536 | 2 | 2.009e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9700712241448952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005871014881531638, dt = 0.00010775972900684009
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 332.76 us (94.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (61.9%)
Info: cfl dt = 0.00010599979793972441 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3331e+05 | 65536 | 2 | 1.966e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9730089906394355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006948612171600038, dt = 0.00010599979793972441
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 300.63 us (93.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (60.5%)
Info: cfl dt = 0.00010440354420906809 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3452e+05 | 65536 | 2 | 1.959e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9478422916222846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008008610150997283, dt = 0.00010440354420906809
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 327.92 us (94.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.4%)
Info: cfl dt = 0.00010284242359807741 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2801e+05 | 65536 | 2 | 1.998e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.881181679297086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009052645593087964, dt = 0.00010284242359807741
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 339.11 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.8%)
Info: cfl dt = 0.00010140496147951495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2694e+05 | 65536 | 2 | 2.005e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8469814769025208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010081069829068737, dt = 0.00010140496147951495
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 329.62 us (94.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (61.6%)
Info: cfl dt = 0.00010015895322089624 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2114e+05 | 65536 | 2 | 2.041e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7888450589152844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011095119443863886, dt = 0.00010015895322089624
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.4%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 356.17 us (94.9%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.3%)
Info: cfl dt = 9.917383558861744e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2169e+05 | 65536 | 2 | 2.037e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7699148653257424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012096708976072849, dt = 9.917383558861744e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.4%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 361.65 us (94.9%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.8%)
Info: cfl dt = 9.835343207164333e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2499e+05 | 65536 | 2 | 2.017e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7704484291075018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013088447331959024, dt = 9.835343207164333e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.4%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 378.51 us (94.9%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.4%)
Info: cfl dt = 9.765806550475957e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2180e+05 | 65536 | 2 | 2.037e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.73859909313226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014071981652675457, dt = 9.765806550475957e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.3%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 363.61 us (95.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.3%)
Info: cfl dt = 9.70733968323717e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2599e+05 | 65536 | 2 | 2.010e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7487862651219201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015048562307723053, dt = 9.70733968323717e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 321.65 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.0%)
Info: cfl dt = 9.655853688093257e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4920e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3953375626041384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001601929627604677, dt = 9.655853688093257e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.6%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 307.09 us (94.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (60.7%)
Info: cfl dt = 9.608625760598223e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5937e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4365463658905004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016984881644856095, dt = 9.608625760598223e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 328.73 us (94.3%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (64.4%)
Info: cfl dt = 9.564792091147684e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5979e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.426834924496763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017945744220915919, dt = 9.564792091147684e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 300.10 us (93.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (63.5%)
Info: cfl dt = 9.522665243729501e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5584e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.395050927908809 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018902223430030687, dt = 9.522665243729501e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.0%)
patch tree reduce : 1.79 us (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 535.64 us (96.5%)
LB move op cnt : 0
LB apply : 3.39 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (60.3%)
Info: cfl dt = 9.481223484503838e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8759e+05 | 65536 | 2 | 1.691e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0274801309789527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019854489954403637, dt = 9.481223484503838e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 322.83 us (88.6%)
LB move op cnt : 0
LB apply : 24.74 us (6.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (59.4%)
Info: cfl dt = 9.439966382495066e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5594e+05 | 65536 | 2 | 1.841e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.853820599523854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002080261230285402, dt = 9.439966382495066e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 331.80 us (94.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.8%)
Info: cfl dt = 9.398782818609322e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3974e+05 | 65536 | 2 | 1.929e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7617426392968782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0021746608941103527, dt = 9.398782818609322e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 303.36 us (94.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.6%)
Info: cfl dt = 9.35741275668243e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4405e+05 | 65536 | 2 | 1.905e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7763020948686092 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002268648722296446, dt = 9.35741275668243e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 309.26 us (94.2%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.4%)
Info: cfl dt = 9.312983741130983e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6171e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3732532160555735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023622228498632702, dt = 9.312983741130983e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (2.0%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 282.16 us (93.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.7%)
Info: cfl dt = 9.272135756662832e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7031e+05 | 65536 | 2 | 1.393e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4060135911193075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00245535268727458, dt = 9.272135756662832e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (2.0%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 283.35 us (93.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.6%)
Info: cfl dt = 9.234665527059427e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3982e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2401552829982205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025480740448412084, dt = 9.234665527059427e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 299.24 us (94.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (61.6%)
Info: cfl dt = 9.197703109568877e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9160e+05 | 65536 | 2 | 1.674e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9864671488966885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002640420700111803, dt = 9.197703109568877e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.2%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 284.90 us (93.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.5%)
Info: cfl dt = 9.16067110765547e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6399e+05 | 65536 | 2 | 1.412e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.344262184777061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027323977312074914, dt = 9.16067110765547e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 369.59 us (95.1%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.1%)
Info: cfl dt = 9.125534611421453e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4573e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2429678670279 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002824004442284046, dt = 9.125534611421453e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 273.28 us (93.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.2%)
Info: cfl dt = 9.092628172738182e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0795e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.044993585079512 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0029152597883982606, dt = 9.092628172738182e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.8%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 274.66 us (93.4%)
LB move op cnt : 0
LB apply : 3.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (62.7%)
Info: cfl dt = 9.062241410961811e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5668e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2810138051519075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030061860701256424, dt = 9.062241410961811e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (2.0%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 275.64 us (93.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.2%)
Info: cfl dt = 9.034562605544078e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6074e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2935827897981675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030968084842352603, dt = 9.034562605544078e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (2.0%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 280.53 us (93.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (62.0%)
Info: cfl dt = 9.009607849952474e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5678e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2669025508989376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031871541102907013, dt = 9.009607849952474e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.9%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 276.71 us (93.3%)
LB move op cnt : 0
LB apply : 4.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (60.5%)
Info: cfl dt = 8.987189017651928e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6226e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2877965906417472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003277250188790226, dt = 8.987189017651928e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 311.86 us (93.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.1%)
Info: cfl dt = 8.967099010696914e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5790e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2605480741585855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003367122078966745, dt = 8.967099010696914e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.9%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 301.04 us (93.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.6%)
Info: cfl dt = 8.949120248017741e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6120e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2717599488811726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034567930690737143, dt = 8.949120248017741e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.0%)
patch tree reduce : 2.42 us (0.8%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 278.05 us (93.2%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (62.1%)
Info: cfl dt = 8.933017427100763e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5015e+05 | 65536 | 2 | 1.872e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7213185731373053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0035462842715538916, dt = 8.933017427100763e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.1%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 295.57 us (93.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.7%)
Info: cfl dt = 8.918541711542779e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8971e+05 | 65536 | 2 | 1.682e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9123113204956261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036356144458248993, dt = 8.918541711542779e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 286.38 us (93.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.3%)
Info: cfl dt = 8.905438701889205e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7276e+05 | 65536 | 2 | 1.758e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.826188437707609 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003724799862940327, dt = 8.905438701889205e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 308.15 us (94.0%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.1%)
Info: cfl dt = 8.893458114370353e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5929e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2468091966093406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003813854249959219, dt = 8.893458114370353e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 2.81 us (0.9%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 308.69 us (93.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.1%)
Info: cfl dt = 8.882365119085722e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0744e+05 | 65536 | 2 | 1.608e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9904702359482513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0039027888311029225, dt = 8.882365119085722e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.4%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 348.24 us (94.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.0%)
Info: cfl dt = 8.871958047026054e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5815e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.235408483093908 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00399161248229378, dt = 8.871958047026054e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 273.75 us (93.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.8%)
Info: cfl dt = 8.862054305489141e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6392e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2609217305755887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00408033206276404, dt = 8.862054305489141e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 318.83 us (94.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.0%)
Info: cfl dt = 8.852511068037879e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6445e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.260976474865146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0041689526058189316, dt = 8.852511068037879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.0%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 314.02 us (93.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (60.9%)
Info: cfl dt = 8.843232096838793e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6515e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2619281602135266 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00425747771649931, dt = 8.843232096838793e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 277.87 us (93.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (64.7%)
Info: cfl dt = 8.834167036794524e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6776e+05 | 65536 | 2 | 1.401e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.272257553094173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004345910037467698, dt = 8.834167036794524e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 334.29 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.7%)
Info: cfl dt = 8.825306014102054e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6744e+05 | 65536 | 2 | 1.402e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.268367365032988 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0044342517078356436, dt = 8.825306014102054e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 313.10 us (94.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.1%)
Info: cfl dt = 8.816671448112624e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9636e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9214994856443015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004522504767976664, dt = 8.816671448112624e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.8%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 277.23 us (93.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (63.2%)
Info: cfl dt = 8.808308578787945e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5540e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2055611640279427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00461067148245779, dt = 8.808308578787945e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 319.65 us (94.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.1%)
Info: cfl dt = 8.800275859493844e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0926e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9802440088152766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00469875456824567, dt = 8.800275859493844e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 268.72 us (93.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.2%)
Info: cfl dt = 8.792636345506915e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4048e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.129328774018164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004786757326840608, dt = 8.792636345506915e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 303.07 us (94.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.7%)
Info: cfl dt = 8.785446576674976e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9170e+05 | 65536 | 2 | 1.673e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8918923639389384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004874683690295678, dt = 8.785446576674976e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (0.2%)
patch tree reduce : 2.16 us (0.1%)
gen split merge : 852.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1.14 us (0.0%)
LB compute : 3.69 ms (99.5%)
LB move op cnt : 0
LB apply : 3.59 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (72.7%)
Info: cfl dt = 8.77875758194941e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7739e+05 | 65536 | 2 | 1.737e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8212886683579528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004962538156062428, dt = 8.77875758194941e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.0%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 282.42 us (93.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (60.8%)
Info: cfl dt = 8.77260681326726e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1914e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0212351758878486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005050325731881922, dt = 8.77260681326726e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (0.7%)
patch tree reduce : 1.85 us (0.2%)
gen split merge : 872.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.14 us (0.1%)
LB compute : 923.02 us (97.6%)
LB move op cnt : 0
LB apply : 4.95 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.14 us (72.7%)
Info: cfl dt = 8.767014078881186e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3015e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0728553700587344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005138051800014595, dt = 8.767014078881186e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 305.11 us (93.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.0%)
Info: cfl dt = 8.761980402256515e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1080e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9783543193957485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0052257219408034065, dt = 8.761980402256515e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 319.62 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (66.9%)
Info: cfl dt = 8.757488866664063e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3260e+05 | 65536 | 2 | 1.970e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6008215291287906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005313341744825972, dt = 8.757488866664063e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.9%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 304.53 us (93.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (59.0%)
Info: cfl dt = 8.75350692233837e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6329e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.228702249072184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005400916633492612, dt = 8.75350692233837e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.2%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 273.98 us (92.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.0%)
Info: cfl dt = 8.749989954904952e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2733e+05 | 65536 | 2 | 2.002e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5739513126965696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005488451702715996, dt = 8.749989954904952e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.3%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 358.48 us (90.2%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.8%)
Info: cfl dt = 8.746885372376098e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9970e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9211754844417466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005575951602265045, dt = 8.746885372376098e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 2.58 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 331.40 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.1%)
Info: cfl dt = 8.744136591402676e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6146e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2172156491540242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005663420455988806, dt = 8.744136591402676e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 318.98 us (94.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.3%)
Info: cfl dt = 8.74167416273142e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5354e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1784824686298645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0057508618219028335, dt = 8.74167416273142e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 327.87 us (94.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.3%)
Info: cfl dt = 8.739363525427659e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5000e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1608883017492535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005838278563530148, dt = 8.739363525427659e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 311.07 us (94.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.6%)
Info: cfl dt = 8.737180236574057e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4885e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.154796818663886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005925672198784425, dt = 8.737180236574057e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 286.73 us (93.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.3%)
Info: cfl dt = 8.735106143345141e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6531e+05 | 65536 | 2 | 1.794e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7533125763739164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006013044001150165, dt = 8.735106143345141e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 310.39 us (93.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (66.3%)
Info: cfl dt = 8.73313106256497e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7459e+05 | 65536 | 2 | 1.381e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.277238747096404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006100395062583617, dt = 8.73313106256497e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 297.65 us (93.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.5%)
Info: cfl dt = 8.731253775091966e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3285e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.076492669892598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006187726373209267, dt = 8.731253775091966e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 290.86 us (93.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.6%)
Info: cfl dt = 8.729482695650472e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5606e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.187383662943261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006275038910960186, dt = 8.729482695650472e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 274.16 us (93.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.4%)
Info: cfl dt = 8.727829567969003e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5139e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1645238143096655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006362333737916691, dt = 8.727829567969003e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 314.63 us (94.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.0%)
Info: cfl dt = 8.726308778312026e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5694e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1907267036397418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006449612033596381, dt = 8.726308778312026e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 319.52 us (94.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (59.8%)
Info: cfl dt = 8.724934764850626e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0307e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.932111052521687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006536875121379501, dt = 8.724934764850626e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 292.91 us (93.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.2%)
Info: cfl dt = 8.723720638102222e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3463e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0830887616834235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006624124469028008, dt = 8.723720638102222e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.6%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 311.06 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.0%)
Info: cfl dt = 8.722676727468478e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1855e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.005723741726749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00671136167540903, dt = 8.722676727468478e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 318.73 us (94.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.2%)
Info: cfl dt = 8.721809383937703e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5823e+05 | 65536 | 2 | 1.829e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7164762700193372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006798588442683715, dt = 8.721809383937703e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 325.87 us (94.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.6%)
Info: cfl dt = 8.72112024035518e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3852e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.100957694777899 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006885806536523092, dt = 8.72112024035518e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 313.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.1%)
Info: cfl dt = 8.720605972674997e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6440e+05 | 65536 | 2 | 1.798e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7456949900662766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006973017738926644, dt = 8.720605972674997e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 327.74 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.7%)
Info: cfl dt = 8.720258543136782e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3805e+05 | 65536 | 2 | 1.939e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6193914877194564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0070602237986533934, dt = 8.720258543136782e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 324.06 us (94.0%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (62.0%)
Info: cfl dt = 8.720065857413108e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8895e+05 | 65536 | 2 | 2.268e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3841182786809285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0071474263840847615, dt = 8.720065857413108e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 364.21 us (94.9%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.4%)
Info: cfl dt = 8.720012733155833e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4123e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1135206715052037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0072346270426588925, dt = 8.720012733155833e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 290.75 us (93.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.1%)
Info: cfl dt = 8.720082059053476e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5293e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1695519543359323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007321827169990451, dt = 8.720082059053476e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 283.11 us (93.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (61.4%)
Info: cfl dt = 8.720256021285693e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5223e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.166207616680066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007409027990580986, dt = 8.720256021285693e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 323.69 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.4%)
Info: cfl dt = 8.720517292976696e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5279e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1689380310154487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007496230550793842, dt = 8.720517292976696e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 2.47 us (0.7%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 310.65 us (93.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.3%)
Info: cfl dt = 8.720850075127165e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9301e+05 | 65536 | 2 | 1.668e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8826238688295405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007583435723723609, dt = 8.720850075127165e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 332.89 us (94.2%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (64.0%)
Info: cfl dt = 8.720958032590434e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4970e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.154274367229371 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00767064422447488, dt = 8.720958032590434e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 304.72 us (93.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.5%)
Info: cfl dt = 8.72106093178788e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5735e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.190959890104891 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0077578538048007845, dt = 8.72106093178788e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 277.95 us (93.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (60.6%)
Info: cfl dt = 8.721244935542794e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4942e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1529877306242704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007845064414118664, dt = 8.721244935542794e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 308.81 us (93.5%)
LB move op cnt : 0
LB apply : 4.94 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.3%)
Info: cfl dt = 8.72150138495626e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5161e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1635569046361085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007932276863474091, dt = 8.72150138495626e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 29.64 us (8.7%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 293.56 us (85.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.3%)
Info: cfl dt = 8.721822233005544e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4965e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1541920986980996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008019491877323653, dt = 8.721822233005544e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 280.02 us (93.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (60.1%)
Info: cfl dt = 8.722203736325332e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5449e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.177500810623637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008106710099653709, dt = 8.722203736325332e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 313.96 us (94.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.0%)
Info: cfl dt = 8.722592097934234e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4553e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.134643164764705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008193932137016961, dt = 8.722592097934234e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 325.14 us (94.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.8%)
Info: cfl dt = 8.72299413314737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5312e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1711248527120706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008281158057996304, dt = 8.72299413314737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.7%)
patch tree reduce : 2.40 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 334.45 us (94.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.5%)
Info: cfl dt = 8.723415969009605e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5271e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.169238118967148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008368387999327778, dt = 8.723415969009605e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 339.10 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.2%)
Info: cfl dt = 8.723862774923204e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8257e+05 | 65536 | 2 | 1.713e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8332668624779913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008455622159017875, dt = 8.723862774923204e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 302.66 us (93.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.3%)
Info: cfl dt = 8.724339105214602e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3761e+05 | 65536 | 2 | 1.941e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6178720715846262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008542860786767107, dt = 8.724339105214602e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.3%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 358.09 us (95.0%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (67.6%)
Info: cfl dt = 8.72484897346446e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3630e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0909234458248975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008630104177819254, dt = 8.72484897346446e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 295.79 us (94.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (64.1%)
Info: cfl dt = 8.725395786423685e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5056e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1593956887728027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008717352667553899, dt = 8.725395786423685e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 325.27 us (94.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.1%)
Info: cfl dt = 8.725982226301725e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4370e+05 | 65536 | 2 | 1.907e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.647371995817662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008804606625418135, dt = 8.725982226301725e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (2.0%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 275.58 us (93.4%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.8%)
Info: cfl dt = 8.726610136377267e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3459e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0831233268130185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008891866447681153, dt = 8.726610136377267e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.1%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 279.81 us (93.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.4%)
Info: cfl dt = 8.727280442898074e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4061e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1121211536945013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008979132549044925, dt = 8.727280442898074e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (2.0%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 282.62 us (93.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.8%)
Info: cfl dt = 8.727993130922761e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3942e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1066175083685366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009066405353473906, dt = 8.727993130922761e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.9%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 278.43 us (93.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.9%)
Info: cfl dt = 8.72874728001668e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3590e+05 | 65536 | 2 | 1.951e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6104407242774827 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009153685284783133, dt = 8.72874728001668e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 302.58 us (93.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.4%)
Info: cfl dt = 8.729541156074399e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3172e+05 | 65536 | 2 | 1.976e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5905472244953693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0092409727575833, dt = 8.729541156074399e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 331.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.5%)
Info: cfl dt = 8.730372367395858e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3099e+05 | 65536 | 2 | 1.980e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5871984475358938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009328268169144043, dt = 8.730372367395858e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 309.54 us (94.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.9%)
Info: cfl dt = 8.731238145567088e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7057e+05 | 65536 | 2 | 1.769e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7771322789279278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009415571892818001, dt = 8.731238145567088e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (2.0%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 275.09 us (93.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.5%)
Info: cfl dt = 8.732127468108235e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5868e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1999354225632537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009502884274273673, dt = 8.732127468108235e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.9%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 305.74 us (93.8%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.6%)
Info: cfl dt = 8.733054478710443e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0374e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.936610094268251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009590205548954756, dt = 8.733054478710443e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.0%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 289.00 us (93.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (63.4%)
Info: cfl dt = 8.734011957762702e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7730e+05 | 65536 | 2 | 1.737e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8099914258335497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00967753609374186, dt = 8.734011957762702e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.9%)
patch tree reduce : 2.31 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 295.45 us (93.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.2%)
Info: cfl dt = 8.734995074679144e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6303e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2214853912895967 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009764876213319488, dt = 8.734995074679144e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 336.70 us (94.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.6%)
Info: cfl dt = 8.73600060573938e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5835e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.199289451941034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009852226164066278, dt = 8.73600060573938e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (2.0%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 269.51 us (92.8%)
LB move op cnt : 0
LB apply : 4.52 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.6%)
Info: cfl dt = 8.737026424309855e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5746e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1952777505891525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009939586170123672, dt = 8.737026424309855e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.8%)
patch tree reduce : 22.04 us (6.7%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 291.27 us (87.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.4%)
Info: cfl dt = 8.738070333473149e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2011e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.016262716670437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01002695643436677, dt = 8.738070333473149e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 294.29 us (93.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.0%)
Info: cfl dt = 8.739131501291448e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5313e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1750227180488624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010114337137701502, dt = 8.739131501291448e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 293.85 us (93.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.8%)
Info: cfl dt = 8.740210242693088e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5112e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1656333377295898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010201728452714416, dt = 8.740210242693088e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 341.04 us (94.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.9%)
Info: cfl dt = 8.741308147365861e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7511e+05 | 65536 | 2 | 1.747e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.800946224612035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010289130555141347, dt = 8.741308147365861e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 326.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.1%)
Info: cfl dt = 8.742430944622608e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3780e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1022259992930366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010376543636615006, dt = 8.742430944622608e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 321.40 us (94.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.3%)
Info: cfl dt = 8.743580794273593e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5511e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1856163268420477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010463967946061232, dt = 8.743580794273593e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 306.95 us (94.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.1%)
Info: cfl dt = 8.744757556660001e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5363e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.178758448316931 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010551403754003968, dt = 8.744757556660001e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 318.28 us (94.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.3%)
Info: cfl dt = 8.745959536505092e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5854e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2026539675368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010638851329570568, dt = 8.745959536505092e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.0%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 292.67 us (93.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.1%)
Info: cfl dt = 8.747183960266661e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4607e+05 | 65536 | 2 | 1.894e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6626450615849595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010726310924935619, dt = 8.747183960266661e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 332.65 us (94.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.2%)
Info: cfl dt = 8.748427312450496e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3428e+05 | 65536 | 2 | 1.961e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6062001462143283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010813782764538286, dt = 8.748427312450496e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 300.03 us (93.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.7%)
Info: cfl dt = 8.749686562038205e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4163e+05 | 65536 | 2 | 1.918e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.641745947398136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01090126703766279, dt = 8.749686562038205e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 301.46 us (94.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.5%)
Info: cfl dt = 8.750965649549065e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4972e+05 | 65536 | 2 | 1.874e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6808753817017874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010988763903283173, dt = 8.750965649549065e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.4%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 360.16 us (94.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.3%)
Info: cfl dt = 8.752244754234534e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4293e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1291705333347677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011076273559778664, dt = 8.752244754234534e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 304.46 us (93.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.5%)
Info: cfl dt = 8.753528220074958e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3068e+05 | 65536 | 2 | 1.982e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5898286826882544 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011163796007321009, dt = 8.753528220074958e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.4%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 364.64 us (94.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.0%)
Info: cfl dt = 8.754816488813481e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1803e+05 | 65536 | 2 | 2.061e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5292125301613786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011251331289521759, dt = 8.754816488813481e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 345.40 us (95.0%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.1%)
Info: cfl dt = 8.756107371734413e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4215e+05 | 65536 | 2 | 1.915e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6454619970622335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011338879454409893, dt = 8.756107371734413e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 360.69 us (95.0%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.2%)
Info: cfl dt = 8.757426230084379e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5386e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.183026415832047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011426440528127238, dt = 8.757426230084379e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 313.21 us (94.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (65.9%)
Info: cfl dt = 8.758756026896923e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9448e+05 | 65536 | 2 | 1.661e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8977013078878195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011514014790428082, dt = 8.758756026896923e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 311.08 us (94.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.1%)
Info: cfl dt = 8.760084378530697e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5037e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1668604844717043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01160160235069705, dt = 8.760084378530697e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 337.91 us (94.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.6%)
Info: cfl dt = 8.761402203782283e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9826e+05 | 65536 | 2 | 1.646e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9164392970546071 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011689203194482358, dt = 8.761402203782283e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 338.24 us (94.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.0%)
Info: cfl dt = 8.762705564043834e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3537e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.095328856924427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01177681721652018, dt = 8.762705564043834e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 2.33 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 305.88 us (93.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.3%)
Info: cfl dt = 8.763997803071866e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5716e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2005335434856557 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011864444272160619, dt = 8.763997803071866e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 308.80 us (93.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.5%)
Info: cfl dt = 8.765271486827176e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1214e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9841350464806138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011952084250191338, dt = 4.7915749808662145e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 322.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (63.3%)
Info: cfl dt = 8.765951667778165e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4905e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1819308579087924 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 275.83882853700004 (s) [Godunov][rank=0]
running minmod hll
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.07 ms [DataInserterUtility][rank=0]
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 : 3.83 us (58.9%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (0.4%)
patch tree reduce : 932.00 ns (0.2%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 401.68 us (97.2%)
LB move op cnt : 0
LB apply : 3.36 us (0.8%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.70 us (2.9%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 343.87 us (93.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.5%)
Info: cfl dt = 0.00012527870714644892 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4955e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.00012527870714644892
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 303.07 us (94.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (63.2%)
Info: cfl dt = 0.00012194328524833338 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0199e+05 | 65536 | 2 | 1.630e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.766367320712319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00012527870714644892, dt = 0.00012194328524833338
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.5%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 294.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.7%)
Info: cfl dt = 0.00011718301918563436 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5663e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.058742232081299 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0002472219923947823, dt = 0.00011718301918563436
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 2.27 us (0.8%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 279.94 us (93.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.4%)
Info: cfl dt = 0.00011303765833387629 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3688e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.812250648029213 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00036440501158041663, dt = 0.00011303765833387629
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.7%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 287.69 us (93.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.7%)
Info: cfl dt = 0.0001096717358561042 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5064e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.798152731527481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004774426699142929, dt = 0.0001096717358561042
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.9%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 276.67 us (93.4%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.2%)
Info: cfl dt = 0.0001069708779112097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5280e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7278661243565843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005871144057703971, dt = 0.0001069708779112097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.9%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 264.89 us (93.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (63.3%)
Info: cfl dt = 0.0001047357523269304 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5712e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6860605077528303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006940852836816068, dt = 0.0001047357523269304
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 326.21 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.6%)
Info: cfl dt = 0.00010275836129966528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4424e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5558621556688372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007988210360085372, dt = 0.00010275836129966528
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.5%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 323.72 us (94.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.8%)
Info: cfl dt = 0.00010093838217613247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4730e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5248910396054987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009015793973082025, dt = 0.00010093838217613247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 317.31 us (94.1%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (62.6%)
Info: cfl dt = 9.92821161030289e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4123e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.446467604888428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001002517779484335, dt = 9.92821161030289e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 319.54 us (94.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.8%)
Info: cfl dt = 9.781253688156573e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5155e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4626063331161205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001101799895587364, dt = 9.781253688156573e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 340.51 us (94.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (61.7%)
Info: cfl dt = 9.62988746606766e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5016e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4187338383125865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011996124324689297, dt = 9.62988746606766e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 332.03 us (94.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.3%)
Info: cfl dt = 9.515124903138496e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4329e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.344950598253724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012959113071296063, dt = 9.515124903138496e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 322.10 us (94.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (66.3%)
Info: cfl dt = 9.42272688249683e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5262e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3657780552840406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013910625561609914, dt = 9.42272688249683e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 328.91 us (94.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.1%)
Info: cfl dt = 9.345804464402766e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2831e+05 | 65536 | 2 | 1.996e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6993443951316265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014852898249859596, dt = 9.345804464402766e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (1.8%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 349.40 us (94.5%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.3%)
Info: cfl dt = 9.285856321597753e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4030e+05 | 65536 | 2 | 1.926e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7470447369274802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015787478696299873, dt = 9.285856321597753e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.4%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 379.04 us (95.0%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.6%)
Info: cfl dt = 9.236852173515522e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4308e+05 | 65536 | 2 | 1.910e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7500082271883077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016716064328459648, dt = 9.236852173515522e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 348.15 us (94.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (63.9%)
Info: cfl dt = 9.201410536704986e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4308e+05 | 65536 | 2 | 1.910e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.740782405389229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00176397495458112, dt = 9.201410536704986e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (0.8%)
patch tree reduce : 2.19 us (0.3%)
gen split merge : 1.01 us (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 632.68 us (97.1%)
LB move op cnt : 0
LB apply : 3.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (63.9%)
Info: cfl dt = 9.163730568344315e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4930e+05 | 65536 | 2 | 1.876e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.76552104041694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018559890599481699, dt = 9.163730568344315e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 335.89 us (94.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.2%)
Info: cfl dt = 9.109931011426401e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4148e+05 | 65536 | 2 | 1.919e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7189584196126346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001947626365631613, dt = 9.109931011426401e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 304.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (57.6%)
Info: cfl dt = 9.058898998533345e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3652e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6840385753294984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002038725675745877, dt = 9.058898998533345e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 293.56 us (93.9%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.1%)
Info: cfl dt = 9.011113763576538e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4144e+05 | 65536 | 2 | 1.919e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6990899877951917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0021293146657312104, dt = 9.011113763576538e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 325.98 us (94.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.1%)
Info: cfl dt = 8.967033877089488e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4226e+05 | 65536 | 2 | 1.915e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6941465555867148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002219425803366976, dt = 8.967033877089488e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 298.40 us (94.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (62.4%)
Info: cfl dt = 8.927006876295973e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3958e+05 | 65536 | 2 | 1.930e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6726896984458368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002309096142137871, dt = 8.927006876295973e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.7%)
patch tree reduce : 2.47 us (0.7%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 353.33 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.9%)
Info: cfl dt = 8.891246897792028e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4047e+05 | 65536 | 2 | 1.925e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6695932402060145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023983662109008305, dt = 8.891246897792028e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.5%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 310.08 us (94.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.6%)
Info: cfl dt = 8.859823285369457e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3860e+05 | 65536 | 2 | 1.935e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6537615252393543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002487278679878751, dt = 8.859823285369457e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 310.84 us (94.0%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (61.2%)
Info: cfl dt = 8.832595674722342e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3845e+05 | 65536 | 2 | 1.936e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6471864832850978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025758769127324456, dt = 8.832595674722342e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 308.81 us (93.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.0%)
Info: cfl dt = 8.809296079429369e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3818e+05 | 65536 | 2 | 1.938e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6408192366331509 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002664202869479669, dt = 8.809296079429369e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 298.73 us (94.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (60.9%)
Info: cfl dt = 8.789607199068497e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4244e+05 | 65536 | 2 | 1.914e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.657112785304236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027522958302739625, dt = 8.789607199068497e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 298.13 us (93.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (61.9%)
Info: cfl dt = 8.773174525067891e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1042e+05 | 65536 | 2 | 2.111e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4987753399460768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028401919022646473, dt = 8.773174525067891e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.4%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 380.75 us (95.1%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (67.8%)
Info: cfl dt = 8.759611795648598e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4469e+05 | 65536 | 2 | 1.901e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6611298328920896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0029279236475153263, dt = 8.759611795648598e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 343.07 us (94.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.9%)
Info: cfl dt = 8.748530527003208e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2898e+05 | 65536 | 2 | 1.992e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5830078097978284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003015519765471812, dt = 8.748530527003208e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 375.50 us (95.0%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (65.2%)
Info: cfl dt = 8.739547749644054e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1162e+05 | 65536 | 2 | 2.103e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.497545642835319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003103005070741844, dt = 8.739547749644054e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 345.73 us (94.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.0%)
Info: cfl dt = 8.732285360504853e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3879e+05 | 65536 | 2 | 1.934e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6264449849037939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031904005482382846, dt = 8.732285360504853e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.4%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 345.93 us (94.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.3%)
Info: cfl dt = 8.726376393282223e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9242e+05 | 65536 | 2 | 1.670e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8823662021051766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003277723401843333, dt = 8.726376393282223e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 318.53 us (94.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 8.72147732413459e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5686e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.189956370681853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033649871657761552, dt = 8.72147732413459e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (2.0%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 269.94 us (93.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.3%)
Info: cfl dt = 8.717284659111767e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9639e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.899060152695573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003452201939017501, dt = 8.717284659111767e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.9%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 275.20 us (93.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.0%)
Info: cfl dt = 8.71354752228806e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4236e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1182424527051262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0035393747856086186, dt = 8.71354752228806e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 281.29 us (93.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.0%)
Info: cfl dt = 8.710075484043388e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2915e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0541427281115503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003626510260831499, dt = 8.710075484043388e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 288.11 us (93.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.8%)
Info: cfl dt = 8.70674131860144e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3899e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1003826113295756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003713611015671933, dt = 8.70674131860144e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 318.06 us (94.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.1%)
Info: cfl dt = 8.703478497678402e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0650e+05 | 65536 | 2 | 2.138e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4659181350653037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0038006784288579475, dt = 8.703478497678402e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.3%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 383.76 us (95.1%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.2%)
Info: cfl dt = 8.700273238483163e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3598e+05 | 65536 | 2 | 1.951e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6063264063999672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0038877132138347313, dt = 8.700273238483163e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 301.88 us (94.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (59.5%)
Info: cfl dt = 8.697153114481726e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2609e+05 | 65536 | 2 | 2.010e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.558455321060866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003974715946219563, dt = 8.697153114481726e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 330.64 us (94.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (68.8%)
Info: cfl dt = 8.694174314207124e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4832e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1418334775292087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00406168747736438, dt = 8.694174314207124e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 309.84 us (93.8%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.4%)
Info: cfl dt = 8.691306630150777e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4544e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1273631197357226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004148629220506452, dt = 8.691306630150777e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 298.78 us (93.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.4%)
Info: cfl dt = 8.688632298978991e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3612e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0821391172063697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0042355422868079595, dt = 8.688632298978991e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 320.82 us (93.6%)
LB move op cnt : 0
LB apply : 4.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.93 us (66.1%)
Info: cfl dt = 8.686349410697861e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3838e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0923253431564643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004322428609797749, dt = 8.686349410697861e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 314.83 us (93.9%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.7%)
Info: cfl dt = 8.684496043784134e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3655e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.083007724050514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004409292103904728, dt = 8.684496043784134e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 327.27 us (94.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.9%)
Info: cfl dt = 8.683090981899234e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2894e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0462963524292332 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004496137064342569, dt = 8.683090981899234e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 300.14 us (93.9%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.8%)
Info: cfl dt = 8.682134585737051e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1301e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9699397169545672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004582967974161562, dt = 8.682134585737051e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 281.99 us (93.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.0%)
Info: cfl dt = 8.681610575881261e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3011e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.051303914141681 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004669789320018932, dt = 8.681610575881261e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 319.89 us (94.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (61.5%)
Info: cfl dt = 8.681488641487771e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2160e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0105923191630093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004756605425777744, dt = 8.681488641487771e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.8%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 322.02 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.2%)
Info: cfl dt = 8.681727977092717e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2818e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0419353753307896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004843420312192622, dt = 8.681727977092717e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 2.43 us (0.8%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 286.29 us (93.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (59.3%)
Info: cfl dt = 8.682280138964458e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3211e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.060746487090223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004930237591963549, dt = 8.682280138964458e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 278.00 us (93.3%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.1%)
Info: cfl dt = 8.683092732621294e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3189e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.059822056857395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005017060393353193, dt = 8.683092732621294e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.0%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 287.46 us (93.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.0%)
Info: cfl dt = 8.684113028126001e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2948e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0485077559063325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005103891320679406, dt = 8.684113028126001e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (2.0%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 292.43 us (93.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.9%)
Info: cfl dt = 8.685291030986368e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4331e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1147103769974698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005190732450960666, dt = 8.685291030986368e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.9%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 289.50 us (93.5%)
LB move op cnt : 0
LB apply : 4.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.6%)
Info: cfl dt = 8.686582067120355e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4606e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1281614995944182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00527758536127053, dt = 8.686582067120355e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.8%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 285.34 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.9%)
Info: cfl dt = 8.687977321167774e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5073e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1507189171672154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005364451181941734, dt = 8.687977321167774e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 287.15 us (93.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.8%)
Info: cfl dt = 8.689458894013918e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5072e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1510394861906676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005451330955153412, dt = 8.689458894013918e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.4%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 335.70 us (94.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.9%)
Info: cfl dt = 8.690996931186986e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4990e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.147514373188478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005538225544093551, dt = 8.690996931186986e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 329.56 us (94.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.7%)
Info: cfl dt = 8.692571029956123e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4814e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1394584422805942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005625135513405421, dt = 8.692571029956123e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 292.55 us (93.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.0%)
Info: cfl dt = 8.694169490018779e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3510e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.077567482787481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0057120612237049825, dt = 8.694169490018779e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.2%)
patch tree reduce : 1.91 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.2%)
LB compute : 426.11 us (95.5%)
LB move op cnt : 0
LB apply : 4.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (63.8%)
Info: cfl dt = 8.695787879913286e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4607e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.130356901747501 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00579900291860517, dt = 8.695787879913286e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 331.04 us (94.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (63.8%)
Info: cfl dt = 8.697421640689146e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4785e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.139284061197896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005885960797404303, dt = 8.697421640689146e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 328.02 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.2%)
Info: cfl dt = 8.69906014189377e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4919e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1460807368509216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005972935013811195, dt = 8.69906014189377e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 285.39 us (93.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.5%)
Info: cfl dt = 8.700870606776872e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3699e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.088179332026985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006059925615230132, dt = 8.700870606776872e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 331.98 us (94.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.2%)
Info: cfl dt = 8.702864796808555e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5457e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.172632068655291 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006146934321297901, dt = 8.702864796808555e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (2.0%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 273.55 us (93.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (60.8%)
Info: cfl dt = 8.705039958846133e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5716e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1855275483942185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006233962969265987, dt = 8.705039958846133e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 311.09 us (94.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.4%)
Info: cfl dt = 8.707383787761825e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5885e+05 | 65536 | 2 | 1.826e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.715945295175134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006321013368854448, dt = 8.707383787761825e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 329.67 us (94.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.1%)
Info: cfl dt = 8.70987768444605e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3344e+05 | 65536 | 2 | 1.965e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5948710454449562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006408087206732066, dt = 8.70987768444605e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 314.98 us (94.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (64.3%)
Info: cfl dt = 8.71249906085787e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3477e+05 | 65536 | 2 | 1.958e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6017028422418786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006495185983576526, dt = 8.71249906085787e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.6%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 365.67 us (94.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.2%)
Info: cfl dt = 8.715223075130829e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3219e+05 | 65536 | 2 | 1.973e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5898354078472565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006582310974185105, dt = 8.715223075130829e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 307.08 us (94.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.8%)
Info: cfl dt = 8.718024016663651e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3090e+05 | 65536 | 2 | 1.981e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5841670414818967 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006669463204936413, dt = 8.718024016663651e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 310.27 us (94.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (61.4%)
Info: cfl dt = 8.719598379592434e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2329e+05 | 65536 | 2 | 2.027e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5482164319387015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00675664344510305, dt = 8.719598379592434e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.78 us (1.3%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 359.48 us (95.4%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (64.3%)
Info: cfl dt = 8.721057472971456e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3345e+05 | 65536 | 2 | 1.965e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5971645729331239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006843839428898974, dt = 8.721057472971456e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 310.36 us (94.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.7%)
Info: cfl dt = 8.722461417194882e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2026e+05 | 65536 | 2 | 2.046e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.53422894340885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006931050003628688, dt = 8.722461417194882e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.3%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.45 us (0.4%)
LB compute : 350.56 us (95.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.9%)
Info: cfl dt = 8.723805497794106e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2302e+05 | 65536 | 2 | 2.029e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5477262281008386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007018274617800637, dt = 8.723805497794106e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 350.71 us (94.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.0%)
Info: cfl dt = 8.725112420766874e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8630e+05 | 65536 | 2 | 1.697e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.851187569872744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007105512672778578, dt = 8.725112420766874e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 343.59 us (94.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 8.726431115475917e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4487e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.132213112556162 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0071927637969862466, dt = 8.726431115475917e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 350.41 us (94.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (61.6%)
Info: cfl dt = 8.727761761486927e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1812e+05 | 65536 | 2 | 2.060e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5249502159784718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007280028108141006, dt = 8.727761761486927e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 353.12 us (94.6%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.8%)
Info: cfl dt = 8.72909522565386e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5650e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1885899541971536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007367305725755875, dt = 8.72909522565386e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.9%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 275.80 us (93.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.7%)
Info: cfl dt = 8.730405508969359e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5048e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1600803310620096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0074545966780124135, dt = 8.730405508969359e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 314.68 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.4%)
Info: cfl dt = 8.731704372382083e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4997e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.157952346395005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0075419007331021075, dt = 8.731704372382083e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 334.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.0%)
Info: cfl dt = 8.733130053383146e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5084e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1624473711003014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007629217776825928, dt = 8.733130053383146e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 307.58 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.2%)
Info: cfl dt = 8.734652987469971e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4554e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1373817504384687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00771654907735976, dt = 8.734652987469971e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 313.33 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.3%)
Info: cfl dt = 8.736250753387335e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4805e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.149793048382568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00780389560723446, dt = 8.736250753387335e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.8%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 271.82 us (93.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (61.9%)
Info: cfl dt = 8.736712785005195e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4966e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1579191383327427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007891258114768334, dt = 8.736712785005195e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 303.34 us (93.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.8%)
Info: cfl dt = 8.736699199631566e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4688e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.144651757975697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007978625242618385, dt = 8.736699199631566e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.9%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 300.82 us (93.7%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (60.2%)
Info: cfl dt = 8.736702803589447e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2966e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.062006418306985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0080659922346147, dt = 8.736702803589447e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 296.51 us (94.0%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (63.2%)
Info: cfl dt = 8.736740590855765e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5569e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1869573435791527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008153359262650595, dt = 8.736740590855765e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 314.73 us (94.0%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.4%)
Info: cfl dt = 8.736808500422236e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6333e+05 | 65536 | 2 | 1.414e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2236316002073133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008240726668559153, dt = 8.736808500422236e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 306.24 us (93.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.4%)
Info: cfl dt = 8.7369035888658e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5133e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.166070759058019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008328094753563374, dt = 8.7369035888658e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 293.29 us (93.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (62.6%)
Info: cfl dt = 8.736994402042445e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8763e+05 | 65536 | 2 | 1.691e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.860361010376997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008415463789452033, dt = 8.736994402042445e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 342.43 us (94.3%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.0%)
Info: cfl dt = 8.736862903438961e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6600e+05 | 65536 | 2 | 1.406e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2364860657683843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008502833733472458, dt = 8.736862903438961e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 350.73 us (94.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (63.5%)
Info: cfl dt = 8.736251837765799e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0696e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9531277657087371 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008590202362506847, dt = 8.736251837765799e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.9%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 276.20 us (93.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (60.5%)
Info: cfl dt = 8.735744615918362e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5461e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.181676145136555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008677564880884505, dt = 8.735744615918362e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 307.89 us (94.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (63.1%)
Info: cfl dt = 8.735336732799125e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4965e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1577459431889547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008764922327043689, dt = 8.735336732799125e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.0%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 312.84 us (93.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.7%)
Info: cfl dt = 8.735023928279213e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6254e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2194944929549645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00885227569437168, dt = 8.735023928279213e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 303.40 us (93.9%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.8%)
Info: cfl dt = 8.734804225830183e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8266e+05 | 65536 | 2 | 1.713e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8361002121788912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008939625933654471, dt = 8.734804225830183e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.0%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 301.27 us (93.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.0%)
Info: cfl dt = 8.734645157847008e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3730e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.618441385785631 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009026973975912773, dt = 8.734645157847008e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 301.83 us (94.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.9%)
Info: cfl dt = 8.734527558465694e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3791e+05 | 65536 | 2 | 1.939e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6213041527969507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009114320427491242, dt = 8.734527558465694e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 308.87 us (94.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.1%)
Info: cfl dt = 8.734452483351247e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3678e+05 | 65536 | 2 | 1.946e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6158570372978125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009201665703075899, dt = 8.734452483351247e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.1%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 298.95 us (93.5%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (59.4%)
Info: cfl dt = 8.734420248199669e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0247e+05 | 65536 | 2 | 2.167e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4512474663741064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009289010227909412, dt = 8.734420248199669e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.4%)
patch tree reduce : 1.91 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 407.39 us (95.2%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.0%)
Info: cfl dt = 8.734430619049606e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1256e+05 | 65536 | 2 | 2.097e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4996423408695245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009376354430391408, dt = 8.734430619049606e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 315.72 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.2%)
Info: cfl dt = 8.734482972092895e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6093e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.211541310539383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009463698736581904, dt = 8.734482972092895e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 335.34 us (94.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.7%)
Info: cfl dt = 8.734576424447764e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7822e+05 | 65536 | 2 | 1.733e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8146822555557445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009551043566302833, dt = 8.734576424447764e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 318.74 us (94.2%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.4%)
Info: cfl dt = 8.734709939205363e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5502e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1831982181980716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00963838933054731, dt = 8.734709939205363e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 346.02 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.6%)
Info: cfl dt = 8.734882405392116e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5108e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.164324500924914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009725736429939364, dt = 8.734882405392116e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.9%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 301.67 us (93.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.2%)
Info: cfl dt = 8.735092692446169e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5130e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.165415636207563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009813085253993286, dt = 8.735092692446169e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 354.51 us (94.7%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.7%)
Info: cfl dt = 8.735339684758034e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9006e+05 | 65536 | 2 | 1.680e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8716227595153476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009900436180917748, dt = 8.735339684758034e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 327.72 us (94.2%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.5%)
Info: cfl dt = 8.735622296904615e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5046e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.161524178974014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009987789577765329, dt = 8.735622296904615e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.74 us (7.7%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 293.73 us (88.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.9%)
Info: cfl dt = 8.735939472914647e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6276e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2206291517175027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010075145800734375, dt = 8.735939472914647e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 312.72 us (94.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.0%)
Info: cfl dt = 8.736290173451259e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7043e+05 | 65536 | 2 | 1.769e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7776215357011227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010162505195463523, dt = 8.736290173451259e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 305.88 us (93.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.3%)
Info: cfl dt = 8.736548510173812e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6779e+05 | 65536 | 2 | 1.401e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.24491424028231 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010249868097198035, dt = 8.736548510173812e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (2.0%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 276.87 us (93.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (60.3%)
Info: cfl dt = 8.73660541251432e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5277e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1729098982645962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010337233582299772, dt = 8.73660541251432e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 340.09 us (94.4%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.5%)
Info: cfl dt = 8.736705287624564e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5404e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.179030344308507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010424599636424916, dt = 8.736705287624564e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.5%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 343.85 us (94.6%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.5%)
Info: cfl dt = 8.736824045646857e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9027e+05 | 65536 | 2 | 1.679e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8729844996775904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010511966689301162, dt = 8.736824045646857e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 272.84 us (93.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (59.0%)
Info: cfl dt = 8.736963487693017e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5208e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1696473761776485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01059933492975763, dt = 8.736963487693017e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.4%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 349.54 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.3%)
Info: cfl dt = 8.737125033224265e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4950e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.157301982887334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010686704564634561, dt = 8.737125033224265e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.3%)
LB compute : 364.79 us (94.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.3%)
Info: cfl dt = 8.737309726353583e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5755e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1959896958671488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010774075814966803, dt = 8.737309726353583e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (2.0%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 286.92 us (93.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (66.9%)
Info: cfl dt = 8.737518238953227e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6173e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2160875207342485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010861448912230339, dt = 8.737518238953227e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 273.98 us (93.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.9%)
Info: cfl dt = 8.73775094324501e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6257e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.220191322866113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010948824094619872, dt = 8.73775094324501e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 276.32 us (93.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (61.5%)
Info: cfl dt = 8.738007971843367e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5104e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1649090087230722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011036201604052323, dt = 8.738007971843367e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 2.30 us (0.7%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 320.58 us (94.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.1%)
Info: cfl dt = 8.738289266408744e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4860e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1532577888031152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011123581683770756, dt = 8.738289266408744e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 292.60 us (93.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.1%)
Info: cfl dt = 8.738594615956994e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7872e+05 | 65536 | 2 | 1.730e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8178683630413581 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011210964576434843, dt = 8.738594615956994e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.1%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 278.12 us (93.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.2%)
Info: cfl dt = 8.738923685910866e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5315e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.175256425452304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011298350522594413, dt = 8.738923685910866e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 344.31 us (94.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.2%)
Info: cfl dt = 8.739276039108813e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4565e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1392981417297405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011385739759453522, dt = 8.739276039108813e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 2.23 us (0.8%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 277.18 us (93.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.2%)
Info: cfl dt = 8.73965115011352e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5109e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1654952579573057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011473132519844609, dt = 8.73965115011352e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 304.66 us (93.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.2%)
Info: cfl dt = 8.740048414257344e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2214e+05 | 65536 | 2 | 2.034e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.546531445564016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011560529031345744, dt = 8.740048414257344e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 349.05 us (94.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.0%)
Info: cfl dt = 8.740467154430311e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1093e+05 | 65536 | 2 | 2.108e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4927992968949724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011647929515488317, dt = 8.740467154430311e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 356.63 us (94.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.1%)
Info: cfl dt = 8.740906621442522e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6017e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.209389044593606 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01173533418703262, dt = 8.740906621442522e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.9%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 281.21 us (93.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.2%)
Info: cfl dt = 8.741380746024249e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3743e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.100333494626078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011822743253247045, dt = 8.741380746024249e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 309.06 us (93.8%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.7%)
Info: cfl dt = 8.741740739338656e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0652e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9520251993846072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011910157060707287, dt = 8.741740739338656e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.9%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 298.25 us (93.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.0%)
Info: cfl dt = 8.741793697462328e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5699e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.194439182147268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011997574468100673, dt = 2.4255318993270103e-06
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 337.33 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (67.2%)
Info: cfl dt = 8.741795308148302e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5467e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.06057961560816437 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 298.31226983100004 (s) [Godunov][rank=0]
running minmod hllc
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.54 ms [DataInserterUtility][rank=0]
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 : 4.43 us (53.7%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (0.5%)
patch tree reduce : 1.04 us (0.3%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 369.44 us (96.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=False
Info: time since start : 298.50153882300003 (s) [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (1.8%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 375.58 us (94.5%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (69.8%)
Info: cfl dt = 0.00012527870714644892 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3094e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.00012527870714644892
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.9%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 294.52 us (93.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.6%)
Info: cfl dt = 0.00011491835702067434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4227e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0436260520472933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00012527870714644892, dt = 0.00011491835702067434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 323.84 us (94.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (64.1%)
Info: cfl dt = 0.00010848394947730952 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4989e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8400294155610752 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00024019706416712327, dt = 5.980293583287676e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 272.04 us (93.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (63.4%)
Info: cfl dt = 0.00010594199324641106 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2359e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3915293220924918 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 299.17770179900003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.00030000000000000003, dt = 0.00010594199324641106
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.16 us (2.4%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 358.09 us (93.7%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (65.3%)
Info: cfl dt = 0.00010221985046710813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5401e+05 | 65536 | 2 | 1.851e-01 | 0.0% | 1.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0602077932770126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00040594199324641106, dt = 0.00010221985046710813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 305.52 us (94.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.7%)
Info: cfl dt = 9.940743635085057e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5906e+05 | 65536 | 2 | 1.825e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.016177126944538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005081618437135192, dt = 9.183815628648084e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 346.22 us (94.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (65.7%)
Info: cfl dt = 9.734706951725335e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5042e+05 | 65536 | 2 | 1.870e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7678292087300862 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 299.812102873 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0006000000000000001, dt = 9.734706951725335e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (1.9%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 377.42 us (94.6%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (64.4%)
Info: cfl dt = 9.553994764088308e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4188e+05 | 65536 | 2 | 1.917e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.82815856496298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006973470695172534, dt = 9.553994764088308e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 301.25 us (94.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.7%)
Info: cfl dt = 9.396019805026513e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2315e+05 | 65536 | 2 | 2.028e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6959400112872354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007928870171581364, dt = 9.396019805026513e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 336.45 us (94.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.2%)
Info: cfl dt = 9.254291640036874e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3920e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.266872751172521 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008868472152084015, dt = 1.3152784791598568e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 331.96 us (94.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.4%)
Info: cfl dt = 9.234562915172376e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9356e+05 | 65536 | 2 | 1.665e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.2843457676665648 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 300.59758295200004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0009000000000000001, dt = 9.234562915172376e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (1.9%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 389.61 us (94.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (70.8%)
Info: cfl dt = 9.116049315871748e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4139e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.239038325482446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.000992345629151724, dt = 9.116049315871748e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.5%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 322.18 us (94.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.0%)
Info: cfl dt = 9.032242978932553e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4453e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2260433190191917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010835061223104414, dt = 9.032242978932553e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 280.34 us (93.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (65.6%)
Info: cfl dt = 8.967266565412177e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4770e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.22131146048551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001173828552099767, dt = 2.6171447900233142e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 295.38 us (93.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.5%)
Info: cfl dt = 8.95148745074646e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1283e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5934949320120751 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 301.27027588000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0012000000000000001, dt = 8.95148745074646e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (1.7%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 399.44 us (94.8%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (67.6%)
Info: cfl dt = 8.901914242865769e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8113e+05 | 65536 | 2 | 1.720e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8740832001714083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012895148745074648, dt = 8.901914242865769e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 305.57 us (94.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.6%)
Info: cfl dt = 8.86061467209516e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1820e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0449621016013366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013785340169361225, dt = 8.86061467209516e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (2.0%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 267.55 us (93.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (63.4%)
Info: cfl dt = 8.783513275469647e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3664e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1252292699230955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001467140163657074, dt = 3.2859836342926003e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.0%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 277.41 us (93.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (61.5%)
Info: cfl dt = 8.756279105624041e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3595e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7869046459377671 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 301.97634872000003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0015, dt = 8.756279105624041e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (1.9%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 360.04 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (59.9%)
Info: cfl dt = 8.70476067154091e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4202e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.126104067569838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015875627910562405, dt = 8.70476067154091e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 21.45 us (6.0%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 319.39 us (89.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.3%)
Info: cfl dt = 8.677072304520434e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4568e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1310730573967773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016746103977716496, dt = 8.677072304520434e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 284.38 us (93.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 8.664004338829552e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3860e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0905710408848193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001761381120816854, dt = 3.8618879183146236e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 351.10 us (94.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.5%)
Info: cfl dt = 8.658534043982387e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2645e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9046807149983581 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 302.655108326 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0018000000000000002, dt = 8.658534043982387e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.67 us (2.0%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 357.99 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (69.7%)
Info: cfl dt = 8.652201900075913e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7155e+05 | 65536 | 2 | 1.764e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7671949401600442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001886585340439824, dt = 8.652201900075913e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 325.04 us (94.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.3%)
Info: cfl dt = 8.648834556540598e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0160e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9087406826587305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001973107359440583, dt = 8.648834556540598e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.7%)
patch tree reduce : 1.44 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 285.28 us (94.1%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.5%)
Info: cfl dt = 8.647392502852098e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1013e+05 | 65536 | 2 | 2.113e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.473405676931362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020595957050059894, dt = 4.040429499401095e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.4%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 993.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 417.39 us (95.2%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (67.8%)
Info: cfl dt = 8.646377454635924e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3500e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9654684835955603 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 303.44289343400004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0021000000000000003, dt = 8.646377454635924e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (1.9%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 358.56 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (66.8%)
Info: cfl dt = 8.646568827585427e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7828e+05 | 65536 | 2 | 1.732e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7966876715159803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0021864637745463594, dt = 8.646568827585427e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 299.96 us (94.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.7%)
Info: cfl dt = 8.647084739651214e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1699e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.980577470676826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0022729294628222136, dt = 8.647084739651214e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.7%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 277.44 us (93.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (64.6%)
Info: cfl dt = 8.647625093329625e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6676e+05 | 65536 | 2 | 1.787e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7421018301260613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002359400310218726, dt = 4.0599689781274304e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 284.41 us (93.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.2%)
Info: cfl dt = 8.647675832769331e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7744e+05 | 65536 | 2 | 1.736e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8417697351737823 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 304.207195022 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0024000000000000002, dt = 8.647675832769331e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.74 us (1.9%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 377.07 us (94.3%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (62.6%)
Info: cfl dt = 8.648121191276903e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3583e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.070318781974886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024864767583276937, dt = 8.648121191276903e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 312.02 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.9%)
Info: cfl dt = 8.64853778573483e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6420e+05 | 65536 | 2 | 1.799e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7301537614260303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025729579702404625, dt = 8.64853778573483e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 308.49 us (93.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.9%)
Info: cfl dt = 8.649194018710041e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6028e+05 | 65536 | 2 | 1.819e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.711605239774392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0026594433480978106, dt = 4.0556651902189534e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (2.0%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 268.01 us (93.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.7%)
Info: cfl dt = 8.649745430796865e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3297e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9645791396193422 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 304.942829657 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0027, dt = 8.649745430796865e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.0%)
patch tree reduce : 1.25 us (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 353.70 us (94.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (68.3%)
Info: cfl dt = 8.64896825280737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9444e+05 | 65536 | 2 | 1.661e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8741597661492995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027864974543079686, dt = 8.64896825280737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.7%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 363.61 us (94.7%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.6%)
Info: cfl dt = 8.649624563934173e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3759e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.078998390160272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002872987136836042, dt = 8.649624563934173e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 360.85 us (94.3%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (67.6%)
Info: cfl dt = 8.651969300185913e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3426e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0633346410187916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002959483382475384, dt = 4.051661752461607e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 367.19 us (94.9%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.2%)
Info: cfl dt = 8.652841269271073e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3892e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9768774127774049 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 305.641576681 (s) [Godunov][rank=0]
amr::Godunov: t = 0.003, dt = 8.652841269271073e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.0%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 356.76 us (94.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (69.1%)
Info: cfl dt = 8.654453917460065e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1083e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 1.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9527517514613395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030865284126927106, dt = 8.654453917460065e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 294.12 us (94.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.0%)
Info: cfl dt = 8.65671423442124e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3637e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.07450149564937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031730729518673114, dt = 8.65671423442124e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 326.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.3%)
Info: cfl dt = 8.659655068753714e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6193e+05 | 65536 | 2 | 1.811e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7210607043567607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003259640094211524, dt = 4.035990578847657e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.7%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 339.39 us (94.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (68.0%)
Info: cfl dt = 8.661194581361244e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3298e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.959922411366162 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 306.36295059400004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0033000000000000004, dt = 8.661194581361244e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.34 us (2.2%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 363.87 us (94.0%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (69.6%)
Info: cfl dt = 8.664739901468513e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8117e+05 | 65536 | 2 | 1.719e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.813515439213181 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033866119458136126, dt = 8.664739901468513e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.1%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 267.78 us (93.0%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 8.670004704717195e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9559e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8828988205100283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034732593448282977, dt = 8.670004704717195e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 287.82 us (94.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.3%)
Info: cfl dt = 8.676245844917356e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3402e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.067054773913914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0035599593918754697, dt = 4.0040608124530634e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 315.22 us (94.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.6%)
Info: cfl dt = 8.679372556665296e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4114e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.970281822849509 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 307.07861131600004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0036000000000000003, dt = 8.679372556665296e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.19 us (2.1%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 420.22 us (94.5%)
LB move op cnt : 0
LB apply : 4.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (64.2%)
Info: cfl dt = 8.686096404390896e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4294e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.111792743053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036867937255666535, dt = 8.686096404390896e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 306.50 us (94.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.0%)
Info: cfl dt = 8.692889213445625e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3796e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0896826662679326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0037736546896105626, dt = 8.692889213445625e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 300.92 us (94.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.1%)
Info: cfl dt = 8.69954462446715e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9147e+05 | 65536 | 2 | 1.674e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8693433424853512 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003860583581745019, dt = 3.941641825498145e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 310.84 us (94.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.5%)
Info: cfl dt = 8.702470269050462e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3221e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.935827766758154 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 307.790691041 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0039000000000000003, dt = 8.702470269050462e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.54 us (3.2%)
patch tree reduce : 1.83 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 395.12 us (93.4%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (65.8%)
Info: cfl dt = 8.708713239366488e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8046e+05 | 65536 | 2 | 1.723e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8187472507286109 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003987024702690505, dt = 8.708713239366488e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 318.95 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.4%)
Info: cfl dt = 8.714632900268238e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5083e+05 | 65536 | 2 | 1.868e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6783036464836742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00407411183508417, dt = 8.714632900268238e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 295.41 us (94.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (59.4%)
Info: cfl dt = 8.717233868258081e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0617e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9443675038987316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004161258164086853, dt = 3.874183591314785e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 316.22 us (94.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.6%)
Info: cfl dt = 8.718086054567651e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3544e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9266857704758023 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 308.541853972 (s) [Godunov][rank=0]
amr::Godunov: t = 0.004200000000000001, dt = 8.718086054567651e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (2.0%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 349.37 us (94.0%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (67.7%)
Info: cfl dt = 8.719908754607113e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4889e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1497060462059454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004287180860545677, dt = 8.719908754607113e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 325.62 us (94.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.9%)
Info: cfl dt = 8.721600979997866e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0081e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9198780089571517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004374379948091749, dt = 8.721600979997866e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 279.93 us (93.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.2%)
Info: cfl dt = 8.723204126841614e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7966e+05 | 65536 | 2 | 1.726e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8189268034365123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004461595957891727, dt = 3.840404210827316e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 300.16 us (94.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.5%)
Info: cfl dt = 8.723886216303521e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4966e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9486029637208423 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 309.25268551 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0045000000000000005, dt = 8.723886216303521e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (1.9%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 363.02 us (94.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (65.7%)
Info: cfl dt = 8.725434464589254e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4357e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.125687744814342 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004587238862163036, dt = 8.725434464589254e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 305.39 us (93.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (70.5%)
Info: cfl dt = 8.727052331685808e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8843e+05 | 65536 | 2 | 1.687e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8617446615379418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046744932068089285, dt = 8.727052331685808e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 310.33 us (94.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.5%)
Info: cfl dt = 8.728736138154766e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3151e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0686435074650595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004761763730125787, dt = 3.8236269874213774e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (2.0%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 268.32 us (93.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.6%)
Info: cfl dt = 8.729484564289757e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7241e+05 | 65536 | 2 | 1.760e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.782209447345945 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 309.977479513 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0048000000000000004, dt = 8.729484564289757e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (1.7%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 384.61 us (94.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (67.9%)
Info: cfl dt = 8.731230521893499e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4342e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.126291228761729 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004887294845642898, dt = 8.731230521893499e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 372.12 us (94.7%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.5%)
Info: cfl dt = 8.732994411527102e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1769e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0033384318476504 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004974607150861833, dt = 8.732994411527102e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.7%)
patch tree reduce : 1.48 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 291.61 us (94.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (63.4%)
Info: cfl dt = 8.73230980034144e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2209e+05 | 65536 | 2 | 2.035e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.545114455158184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005061937094977104, dt = 3.80629050228962e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.4%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 365.50 us (95.0%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.3%)
Info: cfl dt = 8.732022280422373e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2369e+05 | 65536 | 2 | 2.025e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6767918394112289 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 310.76558229 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0051, dt = 8.732022280422373e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.75 us (1.8%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 973.00 ns (0.2%)
LB compute : 404.62 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (68.3%)
Info: cfl dt = 8.73131911171658e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5156e+05 | 65536 | 2 | 1.864e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6863120696929392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005187320222804224, dt = 8.73131911171658e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.9%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 282.75 us (93.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.7%)
Info: cfl dt = 8.730684279559798e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2092e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.018843845087567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00527463341392139, dt = 8.730684279559798e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 317.01 us (94.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (61.4%)
Info: cfl dt = 8.730154286493676e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3523e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0873203484982814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005361940256716988, dt = 3.8059743283012405e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.42 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 276.23 us (93.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.1%)
Info: cfl dt = 8.7299859702493e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1900e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8759945500391553 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 311.490260292 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0054, dt = 8.7299859702493e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.59 us (2.3%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 350.56 us (93.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (71.6%)
Info: cfl dt = 8.729612276464052e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4490e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1335524004548163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005487299859702493, dt = 8.729612276464052e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 321.48 us (94.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (60.7%)
Info: cfl dt = 8.729359715576613e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9424e+05 | 65536 | 2 | 1.662e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8905221053689234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005574595982467134, dt = 8.729359715576613e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 291.81 us (94.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.9%)
Info: cfl dt = 8.729236983959588e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8297e+05 | 65536 | 2 | 1.711e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8363904331623917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0056618895796229, dt = 3.811042037710037e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.9%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 279.35 us (93.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.4%)
Info: cfl dt = 8.729253550429847e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4532e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9322585132683402 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 312.203253878 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0057, dt = 8.729253550429847e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.89 us (2.1%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 357.33 us (94.0%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (64.2%)
Info: cfl dt = 8.729322330412918e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4345e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1263890456095287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005787292535504298, dt = 8.729322330412918e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 284.90 us (93.7%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.6%)
Info: cfl dt = 8.729537723591171e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2173e+05 | 65536 | 2 | 2.037e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5427685211537754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005874585758808427, dt = 8.729537723591171e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.4%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 393.45 us (95.3%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.6%)
Info: cfl dt = 8.729904279413475e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8943e+05 | 65536 | 2 | 1.683e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.867432632189073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0059618811360443395, dt = 3.8118863955660665e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 361.44 us (94.9%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.0%)
Info: cfl dt = 8.730126508294311e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0185e+05 | 65536 | 2 | 2.171e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6320592531405338 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 313.03338759 (s) [Godunov][rank=0]
amr::Godunov: t = 0.006, dt = 8.730126508294311e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 29.58 us (6.6%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 402.92 us (90.3%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (64.4%)
Info: cfl dt = 8.730701095356109e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2326e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0297718569531926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006087301265082943, dt = 8.730701095356109e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 327.32 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.1%)
Info: cfl dt = 8.731453253979241e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3885e+05 | 65536 | 2 | 1.934e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6251071415733802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006174608276036504, dt = 8.731453253979241e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 342.09 us (94.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.4%)
Info: cfl dt = 8.732400693377047e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0690e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9516235564973201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006261922808576297, dt = 3.807719142370422e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 326.80 us (94.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.8%)
Info: cfl dt = 8.732870256222189e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1352e+05 | 65536 | 2 | 2.090e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6557721615586246 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 313.830576442 (s) [Godunov][rank=0]
amr::Godunov: t = 0.006300000000000001, dt = 8.732870256222189e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (1.6%)
patch tree reduce : 1.55 us (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 423.56 us (95.2%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (61.9%)
Info: cfl dt = 8.7340413618581e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2942e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0599713655611107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006387328702562223, dt = 8.7340413618581e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 334.59 us (94.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.1%)
Info: cfl dt = 8.735336161977945e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2454e+05 | 65536 | 2 | 2.019e-01 | 0.0% | 1.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5570795943725029 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006474669116180804, dt = 8.735336161977945e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.4%)
patch tree reduce : 1.85 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 418.22 us (95.5%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (64.8%)
Info: cfl dt = 8.736724728947535e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3703e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0970892821455758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006562022477800584, dt = 3.797752219941719e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 322.78 us (94.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.1%)
Info: cfl dt = 8.737335543853118e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3424e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9059051419752606 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 314.56834269800004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.006600000000000001, dt = 8.737335543853118e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.03 us (1.9%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 402.79 us (94.8%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (69.3%)
Info: cfl dt = 8.738808823069244e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7912e+05 | 65536 | 2 | 1.729e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.819618079178775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006687373355438532, dt = 8.738808823069244e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 343.03 us (94.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (64.5%)
Info: cfl dt = 8.740354583684669e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2426e+05 | 65536 | 2 | 2.021e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5565528803905992 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006774761443669224, dt = 8.740354583684669e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 350.57 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.2%)
Info: cfl dt = 8.742049944163726e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2780e+05 | 65536 | 2 | 1.999e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5738281683678537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006862164989506071, dt = 3.783501049392946e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.4%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 401.83 us (95.3%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (62.7%)
Info: cfl dt = 8.74277654356507e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9706e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8252180108930496 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 315.38668428200003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.006900000000000001, dt = 8.74277654356507e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.95 us (1.8%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 1.52 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 414.22 us (94.6%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (68.1%)
Info: cfl dt = 8.744473628748896e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3856e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1062061498199673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0069874277654356515, dt = 8.744473628748896e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 310.60 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.8%)
Info: cfl dt = 8.746178803657986e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3375e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0835104513278275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007074872501723141, dt = 8.746178803657986e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 304.23 us (94.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (59.6%)
Info: cfl dt = 8.746563558385106e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1859e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.011093881944679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007162334289759721, dt = 3.766571024027988e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.9%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 320.79 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.6%)
Info: cfl dt = 8.746560851334685e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1981e+05 | 65536 | 2 | 2.049e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6617089170405619 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 316.121609808 (s) [Godunov][rank=0]
amr::Godunov: t = 0.007200000000000001, dt = 8.746560851334685e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (1.6%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 423.83 us (95.0%)
LB move op cnt : 0
LB apply : 4.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (70.5%)
Info: cfl dt = 8.746514606534937e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3886e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.108566821628127 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007287465608513347, dt = 8.746514606534937e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 315.74 us (94.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (61.9%)
Info: cfl dt = 8.746475848359028e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1194e+05 | 65536 | 2 | 2.101e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.498761241138001 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007374930754578696, dt = 8.746475848359028e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.4%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 382.50 us (95.1%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.6%)
Info: cfl dt = 8.74646576091356e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3201e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0756237154683705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007462395513062286, dt = 3.760448693771422e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 342.12 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.1%)
Info: cfl dt = 8.746479259411267e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3301e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8944616343929676 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 316.8604017 (s) [Godunov][rank=0]
amr::Godunov: t = 0.007500000000000001, dt = 8.746479259411267e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 408.97 us (95.2%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.1%)
Info: cfl dt = 8.746518173167396e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4400e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.133219768780428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007587464792594113, dt = 8.746518173167396e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 330.97 us (94.5%)
LB move op cnt : 0
LB apply : 3.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.3%)
Info: cfl dt = 8.746585126564726e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9882e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 1.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.916149114556342 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007674929974325787, dt = 8.746585126564726e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 314.46 us (94.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.3%)
Info: cfl dt = 8.746614402024218e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8751e+05 | 65536 | 2 | 1.691e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.861861747815181 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007762395825591435, dt = 3.7604174408565824e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 312.00 us (93.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.2%)
Info: cfl dt = 8.746620435019193e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3111e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8905322164843802 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 317.58261982600004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0078000000000000005, dt = 8.746620435019193e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.18 us (2.0%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 389.76 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.3%)
Info: cfl dt = 8.746334123766859e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9703e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9075998625336514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007887466204350192, dt = 8.746334123766859e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.6%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 313.64 us (94.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (65.1%)
Info: cfl dt = 8.74597344306839e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2018e+05 | 65536 | 2 | 2.047e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5382912858827091 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00797492954558786, dt = 8.74597344306839e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 346.49 us (94.8%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.1%)
Info: cfl dt = 8.745774911508152e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8570e+05 | 65536 | 2 | 1.699e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8530001044776467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008062389280018544, dt = 3.761071998145682e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 314.60 us (94.0%)
LB move op cnt : 0
LB apply : 4.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (60.8%)
Info: cfl dt = 8.745746686178591e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3391e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8964574396660624 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 318.353034276 (s) [Godunov][rank=0]
amr::Godunov: t = 0.008100000000000001, dt = 8.745746686178591e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (1.9%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 353.70 us (94.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (63.6%)
Info: cfl dt = 8.745751693275464e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8911e+05 | 65536 | 2 | 1.684e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8693424264593002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008187457466861787, dt = 8.745751693275464e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 302.59 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.2%)
Info: cfl dt = 8.745884009338847e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3709e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.099837882184761 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008274914983794542, dt = 8.745884009338847e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.9%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 274.76 us (93.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.8%)
Info: cfl dt = 8.746098841886285e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3834e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1058913089088307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008362373823887931, dt = 3.7626176112070045e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 310.24 us (94.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (62.2%)
Info: cfl dt = 8.746203189581876e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4999e+05 | 65536 | 2 | 1.873e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7233822530419591 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 319.08936095 (s) [Godunov][rank=0]
amr::Godunov: t = 0.008400000000000001, dt = 8.746203189581876e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (1.8%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 386.39 us (94.9%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.2%)
Info: cfl dt = 8.746475061979321e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7768e+05 | 65536 | 2 | 1.735e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8145610137524397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00848746203189582, dt = 8.746475061979321e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (2.0%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 281.46 us (93.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.6%)
Info: cfl dt = 8.746785784543684e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6822e+05 | 65536 | 2 | 1.780e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7691259610569896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008574926782515613, dt = 8.746785784543684e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 285.83 us (93.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.8%)
Info: cfl dt = 8.747133810360284e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5146e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.169168599774807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00866239464036105, dt = 3.760535963895188e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 334.62 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.0%)
Info: cfl dt = 8.747290870934661e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4391e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.916997078485644 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 319.812827817 (s) [Godunov][rank=0]
amr::Godunov: t = 0.008700000000000001, dt = 8.747290870934661e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.6%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 394.26 us (95.1%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.6%)
Info: cfl dt = 8.747688298708604e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3662e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0979804711573307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008787472908709348, dt = 8.747688298708604e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 302.31 us (94.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.3%)
Info: cfl dt = 8.748117666138426e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8812e+05 | 65536 | 2 | 1.689e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.864995324011813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008874949791696434, dt = 8.748117666138426e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.4%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 355.89 us (94.9%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (66.3%)
Info: cfl dt = 8.748576050165185e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1981e+05 | 65536 | 2 | 2.049e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5368324562548057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008962430968357818, dt = 3.7569031642183115e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.6%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 397.04 us (94.7%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (62.5%)
Info: cfl dt = 8.748773981395722e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2523e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8775686410546772 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 320.569256815 (s) [Godunov][rank=0]
amr::Godunov: t = 0.009000000000000001, dt = 8.748773981395722e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.68 us (1.9%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 391.82 us (94.6%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (69.9%)
Info: cfl dt = 8.749268073995033e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2939e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.063570692945054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009087487739813958, dt = 8.749268073995033e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 341.26 us (94.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.9%)
Info: cfl dt = 8.749782694168411e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0423e+05 | 65536 | 2 | 1.621e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9427901031903445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009174980420553909, dt = 8.749782694168411e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 314.52 us (94.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.2%)
Info: cfl dt = 8.750313945529046e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2494e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0424086604872658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009262478247495593, dt = 3.7521752504408173e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.4%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 351.86 us (94.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.9%)
Info: cfl dt = 8.750535929354954e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2440e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8747344851069792 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 321.27061206900004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.009300000000000001, dt = 8.750535929354954e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.70 us (1.7%)
patch tree reduce : 1.56 us (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 438.53 us (95.2%)
LB move op cnt : 0
LB apply : 3.88 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (70.3%)
Info: cfl dt = 8.75108481980247e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2191e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0280256589455146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00938750535929355, dt = 8.75108481980247e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 321.68 us (94.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.24 us (94.5%)
Info: cfl dt = 8.751642874206313e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8626e+05 | 65536 | 2 | 1.697e-01 | 0.0% | 1.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8568028093120077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009475016207491575, dt = 8.751642874206313e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 312.50 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.2%)
Info: cfl dt = 8.752239575146192e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3091e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0715443065609023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009562532636233639, dt = 3.746736376636188e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.4%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 350.89 us (94.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.4%)
Info: cfl dt = 8.752496988872681e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2874e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8823989765284915 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 321.982960207 (s) [Godunov][rank=0]
amr::Godunov: t = 0.009600000000000001, dt = 8.752496988872681e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (1.9%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 377.28 us (94.8%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (68.0%)
Info: cfl dt = 8.753130979975445e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1273e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9843509954513923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009687524969888728, dt = 8.753130979975445e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 322.84 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (60.7%)
Info: cfl dt = 8.753779367069832e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3068e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.070823520921515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009775056279688481, dt = 8.753779367069832e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 331.92 us (94.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.3%)
Info: cfl dt = 8.754452101345273e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2771e+05 | 65536 | 2 | 2.000e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5758290049349104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00986259407335918, dt = 3.74059266408204e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.4%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 400.62 us (95.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.5%)
Info: cfl dt = 8.754752373943097e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1354e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8497292189028627 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 322.729748041 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0099, dt = 8.754752373943097e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (1.5%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 424.62 us (95.3%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.5%)
Info: cfl dt = 8.755207459720286e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2491e+05 | 65536 | 2 | 2.017e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5625432308762808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009987547523739431, dt = 8.755207459720286e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.2%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 993.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 405.04 us (95.4%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (65.2%)
Info: cfl dt = 8.754991032784403e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6206e+05 | 65536 | 2 | 1.810e-01 | 0.0% | 1.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7412887561190422 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010075099598336634, dt = 8.754991032784403e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 319.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.6%)
Info: cfl dt = 8.754796643794683e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9952e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.921411080062245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010162649508664478, dt = 3.7350491335522845e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 311.86 us (94.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (59.6%)
Info: cfl dt = 8.754734136690713e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0702e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8350873112349728 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 323.51887263000003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0102, dt = 8.754734136690713e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (1.8%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 399.39 us (94.9%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (68.3%)
Info: cfl dt = 8.754591438504014e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1990e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.01932779843066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010287547341366908, dt = 8.754591438504014e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 315.41 us (94.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.2%)
Info: cfl dt = 8.75448775764747e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0506e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9479715630232974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010375093255751948, dt = 8.75448775764747e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 299.06 us (93.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (61.2%)
Info: cfl dt = 8.754407150876579e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2620e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0495932337491634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010462638133328423, dt = 3.73618666715779e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 322.41 us (94.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.8%)
Info: cfl dt = 8.754385493427577e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3611e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8950486690518162 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 324.22031062300005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0105, dt = 8.754385493427577e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 339.77 us (94.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (71.5%)
Info: cfl dt = 8.754345552078403e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0944e+05 | 65536 | 2 | 2.118e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4880954197770588 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010587543854934276, dt = 8.754345552078403e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 341.18 us (94.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.3%)
Info: cfl dt = 8.754344182565297e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2631e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.050093836467421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010675087310455059, dt = 8.754344182565297e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 293.68 us (93.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.0%)
Info: cfl dt = 8.754385474030125e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3279e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.081226758230977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010762630752280712, dt = 3.736924771928843e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.0%)
patch tree reduce : 1.45 us (0.5%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 289.00 us (93.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (59.2%)
Info: cfl dt = 8.754419639018969e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3717e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8973994995284664 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 324.96439508400005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0108, dt = 8.754419639018969e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (1.8%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 376.15 us (94.6%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.5%)
Info: cfl dt = 8.754523352746775e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3126e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0739042370273344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01088754419639019, dt = 8.754523352746775e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 322.21 us (94.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.1%)
Info: cfl dt = 8.754672013981818e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3801e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1064030506483435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010975089429917657, dt = 8.754672013981818e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 292.64 us (93.9%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (59.1%)
Info: cfl dt = 8.754869973460886e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2992e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0675452038307753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011062636150057476, dt = 3.7363849942524674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.4%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 350.87 us (94.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.9%)
Info: cfl dt = 8.754979028402775e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9556e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8118657596528808 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 325.67393565400005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0111, dt = 8.754979028402775e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.74 us (1.8%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 409.43 us (94.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (67.6%)
Info: cfl dt = 8.755209759668229e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2279e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0332946245775165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011187549790284029, dt = 8.755209759668229e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (0.8%)
patch tree reduce : 1.65 us (0.2%)
gen split merge : 961.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.10 us (0.2%)
LB compute : 693.17 us (97.1%)
LB move op cnt : 0
LB apply : 4.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (69.3%)
Info: cfl dt = 8.755420099093397e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1592e+05 | 65536 | 2 | 2.074e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5193730698990662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01127510188788071, dt = 8.755420099093397e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 347.51 us (94.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.0%)
Info: cfl dt = 8.755657537602883e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7897e+05 | 65536 | 2 | 1.729e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8226430622297514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011362656088871645, dt = 3.73439111283555e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 314.02 us (94.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.6%)
Info: cfl dt = 8.75575370881894e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8389e+05 | 65536 | 2 | 1.707e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7874906279842423 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 326.458390542 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0114, dt = 8.75575370881894e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.10 us (2.0%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 389.18 us (94.6%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (64.7%)
Info: cfl dt = 8.755993967586703e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.7077e+05 | 65536 | 2 | 2.420e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3023077979834543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01148755753708819, dt = 8.755993967586703e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.4%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 343.01 us (94.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.8%)
Info: cfl dt = 8.756235779612817e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2133e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0265220056548787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011575117476764058, dt = 8.756235779612817e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 298.85 us (94.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.6%)
Info: cfl dt = 8.756479180806843e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3061e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.071187165516849 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011662679834560187, dt = 3.73201654398133e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 324.83 us (94.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.3%)
Info: cfl dt = 8.756578148808492e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3428e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8902892745668053 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 327.23791858000004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0117, dt = 8.756578148808492e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.97 us (2.0%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 374.79 us (94.2%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.46 us (73.6%)
Info: cfl dt = 8.756824449841148e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3379e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0865934259748458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011787565781488086, dt = 8.756824449841148e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 324.57 us (94.2%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.6%)
Info: cfl dt = 8.757072055445958e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2068e+05 | 65536 | 2 | 2.044e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.542548074661413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011875134025986497, dt = 8.757072055445958e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.5%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 373.05 us (94.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (61.8%)
Info: cfl dt = 8.757320815970906e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3069e+05 | 65536 | 2 | 1.982e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5907596201510832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011962704746540957, dt = 3.729525345904337e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 334.81 us (94.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.4%)
Info: cfl dt = 8.757422036845767e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3352e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8881451340588897 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 328.01537586 (s) [Godunov][rank=0]
none_hll
{'none_hll': [{'rho': array([0.96262329, 0.96262329, 0.96262329, 0.96262329, 0.95292015,
0.95292015, 0.95292015, 0.95292015, 0.94187655, 0.94187655,
0.94187655, 0.94187655, 0.92958523, 0.92958523, 0.92958523,
0.92958523, 0.91614889, 0.91614889, 0.91614889, 0.91614889,
0.9016891 , 0.9016891 , 0.9016891 , 0.9016891 , 0.88633863,
0.88633863, 0.88633863, 0.88633863, 0.87023469, 0.87023469,
0.87023469, 0.87023469, 0.85351349, 0.85351349, 0.85351349,
0.85351349, 0.8363065 , 0.8363065 , 0.8363065 , 0.8363065 ,
0.81873804, 0.81873804, 0.81873804, 0.81873804, 0.80092415,
0.80092415, 0.80092415, 0.80092415, 0.78297243, 0.78297243,
0.78297243, 0.78297243, 0.76498267, 0.76498267, 0.76498267,
0.76498267, 0.74704803, 0.74704803, 0.74704803, 0.74704803,
0.72925675, 0.72925675, 0.72925675, 0.72925675, 0.71169435,
0.71169435, 0.71169435, 0.71169435, 0.69444628, 0.69444628,
0.69444628, 0.69444628, 0.6776013 , 0.6776013 , 0.6776013 ,
0.6776013 , 0.66125559, 0.66125559, 0.66125559, 0.66125559,
0.64551785, 0.64551785, 0.64551785, 0.64551785, 0.63051555,
0.63051555, 0.63051555, 0.63051555, 0.61640212, 0.61640212,
0.61640212, 0.61640212, 0.6033641 , 0.6033641 , 0.6033641 ,
0.6033641 , 0.59162547, 0.59162547, 0.59162547, 0.59162547,
0.58144321, 0.58144321, 0.58144321, 0.58144321, 0.57308387,
0.57308387, 0.57308387, 0.57308387, 0.5667695 , 0.5667695 ,
0.5667695 , 0.5667695 , 0.56259223, 0.56259223, 0.56259223,
0.56259223, 0.5604295 , 0.5604295 , 0.5604295 , 0.5604295 ,
0.55993197, 0.55993197, 0.55993197, 0.55993197, 0.56064241,
0.56064241, 0.56064241, 0.56064241, 0.56220257, 0.56220257,
0.56220257, 0.56220257, 0.56453573, 0.56453573, 0.56453573,
0.56453573, 0.56792111, 0.56792111, 0.56792111, 0.56792111,
0.57302161, 0.57302161, 0.57302161, 0.57302161, 0.58094766,
0.58094766, 0.58094766, 0.58094766, 0.59338194, 0.59338194,
0.59338194, 0.59338194, 0.61278127, 0.61278127, 0.61278127,
0.61278127, 0.64267222, 0.64267222, 0.64267222, 0.64267222,
0.68810064, 0.68810064, 0.68810064, 0.68810064, 0.75635209,
0.75635209, 0.75635209, 0.75635209, 0.85813623, 0.85813623,
0.85813623, 0.85813623, 1.00951022, 1.00951022, 1.00951022,
1.00951022, 1.23478014, 1.23478014, 1.23478014, 1.23478014,
1.57016034, 1.57016034, 1.57016034, 1.57016034, 2.02902941,
2.02902941, 2.02902941, 2.02902941, 2.54214966, 2.54214966,
2.54214966, 2.54214966, 3.0202242 , 3.0202242 , 3.0202242 ,
3.0202242 , 3.31178259, 3.31178259, 3.31178259, 3.31178259,
3.22437971, 3.22437971, 3.22437971, 3.22437971, 2.65275743,
2.65275743, 2.65275743, 2.65275743, 1.80505429, 1.80505429,
1.80505429, 1.80505429, 1.19452145, 1.19452145, 1.19452145,
1.19452145, 1.01387818, 1.01387818, 1.01387818, 1.01387818,
1.0001771 , 1.0001771 , 1.0001771 , 1.0001771 , 1.00000035,
1.00000035, 1.00000035, 1.00000035, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.41419412e+00, 1.41419412e+00, 1.41419412e+00, 1.41419412e+00,
1.78883739e+00, 1.78883739e+00, 1.78883739e+00, 1.78883739e+00,
2.21825857e+00, 2.21825857e+00, 2.21825857e+00, 2.21825857e+00,
2.70047651e+00, 2.70047651e+00, 2.70047651e+00, 2.70047651e+00,
3.23311666e+00, 3.23311666e+00, 3.23311666e+00, 3.23311666e+00,
3.81304395e+00, 3.81304395e+00, 3.81304395e+00, 3.81304395e+00,
4.43661839e+00, 4.43661839e+00, 4.43661839e+00, 4.43661839e+00,
5.09991584e+00, 5.09991584e+00, 5.09991584e+00, 5.09991584e+00,
5.79890026e+00, 5.79890026e+00, 5.79890026e+00, 5.79890026e+00,
6.52954505e+00, 6.52954505e+00, 6.52954505e+00, 6.52954505e+00,
7.28790743e+00, 7.28790743e+00, 7.28790743e+00, 7.28790743e+00,
8.07016183e+00, 8.07016183e+00, 8.07016183e+00, 8.07016183e+00,
8.87259884e+00, 8.87259884e+00, 8.87259884e+00, 8.87259884e+00,
9.69159468e+00, 9.69159468e+00, 9.69159468e+00, 9.69159468e+00,
1.05235545e+01, 1.05235545e+01, 1.05235545e+01, 1.05235545e+01,
1.13648293e+01, 1.13648293e+01, 1.13648293e+01, 1.13648293e+01,
1.22116044e+01, 1.22116044e+01, 1.22116044e+01, 1.22116044e+01,
1.30597527e+01, 1.30597527e+01, 1.30597527e+01, 1.30597527e+01,
1.39046431e+01, 1.39046431e+01, 1.39046431e+01, 1.39046431e+01,
1.47408898e+01, 1.47408898e+01, 1.47408898e+01, 1.47408898e+01,
1.55620288e+01, 1.55620288e+01, 1.55620288e+01, 1.55620288e+01,
1.63601078e+01, 1.63601078e+01, 1.63601078e+01, 1.63601078e+01,
1.71251997e+01, 1.71251997e+01, 1.71251997e+01, 1.71251997e+01,
1.78448993e+01, 1.78448993e+01, 1.78448993e+01, 1.78448993e+01,
1.85039895e+01, 1.85039895e+01, 1.85039895e+01, 1.85039895e+01,
1.90846801e+01, 1.90846801e+01, 1.90846801e+01, 1.90846801e+01,
1.95681279e+01, 1.95681279e+01, 1.95681279e+01, 1.95681279e+01,
1.99380647e+01, 1.99380647e+01, 1.99380647e+01, 1.99380647e+01,
2.01866601e+01, 2.01866601e+01, 2.01866601e+01, 2.01866601e+01,
2.03205654e+01, 2.03205654e+01, 2.03205654e+01, 2.03205654e+01,
2.03625340e+01, 2.03625340e+01, 2.03625340e+01, 2.03625340e+01,
2.03450671e+01, 2.03450671e+01, 2.03450671e+01, 2.03450671e+01,
2.02991317e+01, 2.02991317e+01, 2.02991317e+01, 2.02991317e+01,
2.02456046e+01, 2.02456046e+01, 2.02456046e+01, 2.02456046e+01,
2.01946657e+01, 2.01946657e+01, 2.01946657e+01, 2.01946657e+01,
2.01495851e+01, 2.01495851e+01, 2.01495851e+01, 2.01495851e+01,
2.01104796e+01, 2.01104796e+01, 2.01104796e+01, 2.01104796e+01,
2.00765652e+01, 2.00765652e+01, 2.00765652e+01, 2.00765652e+01,
2.00469486e+01, 2.00469486e+01, 2.00469486e+01, 2.00469486e+01,
2.00208526e+01, 2.00208526e+01, 2.00208526e+01, 2.00208526e+01,
1.99976473e+01, 1.99976473e+01, 1.99976473e+01, 1.99976473e+01,
1.99768232e+01, 1.99768232e+01, 1.99768232e+01, 1.99768232e+01,
1.99579134e+01, 1.99579134e+01, 1.99579134e+01, 1.99579134e+01,
1.99401110e+01, 1.99401110e+01, 1.99401110e+01, 1.99401110e+01,
1.99203376e+01, 1.99203376e+01, 1.99203376e+01, 1.99203376e+01,
1.98860888e+01, 1.98860888e+01, 1.98860888e+01, 1.98860888e+01,
1.98001469e+01, 1.98001469e+01, 1.98001469e+01, 1.98001469e+01,
1.95757462e+01, 1.95757462e+01, 1.95757462e+01, 1.95757462e+01,
1.90484237e+01, 1.90484237e+01, 1.90484237e+01, 1.90484237e+01,
1.79421767e+01, 1.79421767e+01, 1.79421767e+01, 1.79421767e+01,
1.58163176e+01, 1.58163176e+01, 1.58163176e+01, 1.58163176e+01,
1.20498338e+01, 1.20498338e+01, 1.20498338e+01, 1.20498338e+01,
6.43761226e+00, 6.43761226e+00, 6.43761226e+00, 6.43761226e+00,
1.39778927e+00, 1.39778927e+00, 1.39778927e+00, 1.39778927e+00,
5.17644049e-02, 5.17644049e-02, 5.17644049e-02, 5.17644049e-02,
1.82914635e-04, 1.82914635e-04, 1.82914635e-04, 1.82914635e-04,
7.98774300e-08, 7.98774300e-08, 7.98774300e-08, 7.98774300e-08,
2.66087619e-11, 2.66087619e-11, 2.66087619e-11, 2.66087619e-11,
8.81761175e-15, 8.81761175e-15, 8.81761175e-15, 8.81761175e-15,
2.88036046e-18, 2.88036046e-18, 2.88036046e-18, 2.88036046e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.48220610e+02, 9.48220610e+02, 9.48220610e+02, 9.48220610e+02,
9.34902944e+02, 9.34902944e+02, 9.34902944e+02, 9.34902944e+02,
9.19831060e+02, 9.19831060e+02, 9.19831060e+02, 9.19831060e+02,
9.03151270e+02, 9.03151270e+02, 9.03151270e+02, 9.03151270e+02,
8.85026662e+02, 8.85026662e+02, 8.85026662e+02, 8.85026662e+02,
8.65646386e+02, 8.65646386e+02, 8.65646386e+02, 8.65646386e+02,
8.45213155e+02, 8.45213155e+02, 8.45213155e+02, 8.45213155e+02,
8.23932702e+02, 8.23932702e+02, 8.23932702e+02, 8.23932702e+02,
8.02005750e+02, 8.02005750e+02, 8.02005750e+02, 8.02005750e+02,
7.79622496e+02, 7.79622496e+02, 7.79622496e+02, 7.79622496e+02,
7.56959321e+02, 7.56959321e+02, 7.56959321e+02, 7.56959321e+02,
7.34177328e+02, 7.34177328e+02, 7.34177328e+02, 7.34177328e+02,
7.11422289e+02, 7.11422289e+02, 7.11422289e+02, 7.11422289e+02,
6.88825627e+02, 6.88825627e+02, 6.88825627e+02, 6.88825627e+02,
6.66506181e+02, 6.66506181e+02, 6.66506181e+02, 6.66506181e+02,
6.44572547e+02, 6.44572547e+02, 6.44572547e+02, 6.44572547e+02,
6.23125941e+02, 6.23125941e+02, 6.23125941e+02, 6.23125941e+02,
6.02263562e+02, 6.02263562e+02, 6.02263562e+02, 6.02263562e+02,
5.82082578e+02, 5.82082578e+02, 5.82082578e+02, 5.82082578e+02,
5.62684871e+02, 5.62684871e+02, 5.62684871e+02, 5.62684871e+02,
5.44182753e+02, 5.44182753e+02, 5.44182753e+02, 5.44182753e+02,
5.26705766e+02, 5.26705766e+02, 5.26705766e+02, 5.26705766e+02,
5.10408370e+02, 5.10408370e+02, 5.10408370e+02, 5.10408370e+02,
4.95477456e+02, 4.95477456e+02, 4.95477456e+02, 4.95477456e+02,
4.82136707e+02, 4.82136707e+02, 4.82136707e+02, 4.82136707e+02,
4.70641376e+02, 4.70641376e+02, 4.70641376e+02, 4.70641376e+02,
4.61252431e+02, 4.61252431e+02, 4.61252431e+02, 4.61252431e+02,
4.54177107e+02, 4.54177107e+02, 4.54177107e+02, 4.54177107e+02,
4.49473996e+02, 4.49473996e+02, 4.49473996e+02, 4.49473996e+02,
4.46955714e+02, 4.46955714e+02, 4.46955714e+02, 4.46955714e+02,
4.46165009e+02, 4.46165009e+02, 4.46165009e+02, 4.46165009e+02,
4.46485695e+02, 4.46485695e+02, 4.46485695e+02, 4.46485695e+02,
4.47339548e+02, 4.47339548e+02, 4.47339548e+02, 4.47339548e+02,
4.48337508e+02, 4.48337508e+02, 4.48337508e+02, 4.48337508e+02,
4.49289395e+02, 4.49289395e+02, 4.49289395e+02, 4.49289395e+02,
4.50134048e+02, 4.50134048e+02, 4.50134048e+02, 4.50134048e+02,
4.50869836e+02, 4.50869836e+02, 4.50869836e+02, 4.50869836e+02,
4.51512780e+02, 4.51512780e+02, 4.51512780e+02, 4.51512780e+02,
4.52081898e+02, 4.52081898e+02, 4.52081898e+02, 4.52081898e+02,
4.52595215e+02, 4.52595215e+02, 4.52595215e+02, 4.52595215e+02,
4.53069511e+02, 4.53069511e+02, 4.53069511e+02, 4.53069511e+02,
4.53521071e+02, 4.53521071e+02, 4.53521071e+02, 4.53521071e+02,
4.53965340e+02, 4.53965340e+02, 4.53965340e+02, 4.53965340e+02,
4.54407381e+02, 4.54407381e+02, 4.54407381e+02, 4.54407381e+02,
4.54782427e+02, 4.54782427e+02, 4.54782427e+02, 4.54782427e+02,
4.54679238e+02, 4.54679238e+02, 4.54679238e+02, 4.54679238e+02,
4.52448893e+02, 4.52448893e+02, 4.52448893e+02, 4.52448893e+02,
4.43824090e+02, 4.43824090e+02, 4.43824090e+02, 4.43824090e+02,
4.20337686e+02, 4.20337686e+02, 4.20337686e+02, 4.20337686e+02,
3.69484546e+02, 3.69484546e+02, 3.69484546e+02, 3.69484546e+02,
2.80602938e+02, 2.80602938e+02, 2.80602938e+02, 2.80602938e+02,
1.60681588e+02, 1.60681588e+02, 1.60681588e+02, 1.60681588e+02,
5.29503080e+01, 5.29503080e+01, 5.29503080e+01, 5.29503080e+01,
5.56597022e+00, 5.56597022e+00, 5.56597022e+00, 5.56597022e+00,
7.81466416e-02, 7.81466416e-02, 7.81466416e-02, 7.81466416e-02,
1.00355924e-02, 1.00355924e-02, 1.00355924e-02, 1.00355924e-02,
1.00000095e-02, 1.00000095e-02, 1.00000095e-02, 1.00000095e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_rusanov': [{'rho': array([0.99009996, 0.99009996, 0.99009996, 0.99009996, 0.98079728,
0.98079728, 0.98079728, 0.98079728, 0.97117513, 0.97117513,
0.97117513, 0.97117513, 0.95762729, 0.95762729, 0.95762729,
0.95762729, 0.94142953, 0.94142953, 0.94142953, 0.94142953,
0.92272455, 0.92272455, 0.92272455, 0.92272455, 0.90213778,
0.90213778, 0.90213778, 0.90213778, 0.88019506, 0.88019506,
0.88019506, 0.88019506, 0.8573279 , 0.8573279 , 0.8573279 ,
0.8573279 , 0.83388586, 0.83388586, 0.83388586, 0.83388586,
0.8103593 , 0.8103593 , 0.8103593 , 0.8103593 , 0.78735681,
0.78735681, 0.78735681, 0.78735681, 0.76511282, 0.76511282,
0.76511282, 0.76511282, 0.74361635, 0.74361635, 0.74361635,
0.74361635, 0.72287492, 0.72287492, 0.72287492, 0.72287492,
0.70291453, 0.70291453, 0.70291453, 0.70291453, 0.68379431,
0.68379431, 0.68379431, 0.68379431, 0.66561946, 0.66561946,
0.66561946, 0.66561946, 0.64854061, 0.64854061, 0.64854061,
0.64854061, 0.63273412, 0.63273412, 0.63273412, 0.63273412,
0.61836564, 0.61836564, 0.61836564, 0.61836564, 0.60555414,
0.60555414, 0.60555414, 0.60555414, 0.59436881, 0.59436881,
0.59436881, 0.59436881, 0.58488492, 0.58488492, 0.58488492,
0.58488492, 0.57726939, 0.57726939, 0.57726939, 0.57726939,
0.57177743, 0.57177743, 0.57177743, 0.57177743, 0.56855526,
0.56855526, 0.56855526, 0.56855526, 0.56733881, 0.56733881,
0.56733881, 0.56733881, 0.56730464, 0.56730464, 0.56730464,
0.56730464, 0.56754209, 0.56754209, 0.56754209, 0.56754209,
0.5676676 , 0.5676676 , 0.5676676 , 0.5676676 , 0.56747076,
0.56747076, 0.56747076, 0.56747076, 0.56700475, 0.56700475,
0.56700475, 0.56700475, 0.56673193, 0.56673193, 0.56673193,
0.56673193, 0.56658818, 0.56658818, 0.56658818, 0.56658818,
0.56660117, 0.56660117, 0.56660117, 0.56660117, 0.56721514,
0.56721514, 0.56721514, 0.56721514, 0.56947087, 0.56947087,
0.56947087, 0.56947087, 0.57522826, 0.57522826, 0.57522826,
0.57522826, 0.58788102, 0.58788102, 0.58788102, 0.58788102,
0.61339093, 0.61339093, 0.61339093, 0.61339093, 0.66191566,
0.66191566, 0.66191566, 0.66191566, 0.7503941 , 0.7503941 ,
0.7503941 , 0.7503941 , 0.90622262, 0.90622262, 0.90622262,
0.90622262, 1.17163176, 1.17163176, 1.17163176, 1.17163176,
1.60647461, 1.60647461, 1.60647461, 1.60647461, 2.28018986,
2.28018986, 2.28018986, 2.28018986, 3.12452995, 3.12452995,
3.12452995, 3.12452995, 3.74154011, 3.74154011, 3.74154011,
3.74154011, 3.94349823, 3.94349823, 3.94349823, 3.94349823,
3.47975134, 3.47975134, 3.47975134, 3.47975134, 1.76601771,
1.76601771, 1.76601771, 1.76601771, 1.04278667, 1.04278667,
1.04278667, 1.04278667, 1.00063976, 1.00063976, 1.00063976,
1.00063976, 1.000002 , 1.000002 , 1.000002 , 1.000002 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.71214413e-01, 3.71214413e-01, 3.71214413e-01, 3.71214413e-01,
7.24051149e-01, 7.24051149e-01, 7.24051149e-01, 7.24051149e-01,
1.09070799e+00, 1.09070799e+00, 1.09070799e+00, 1.09070799e+00,
1.61244052e+00, 1.61244052e+00, 1.61244052e+00, 1.61244052e+00,
2.24398795e+00, 2.24398795e+00, 2.24398795e+00, 2.24398795e+00,
2.98433948e+00, 2.98433948e+00, 2.98433948e+00, 2.98433948e+00,
3.81323583e+00, 3.81323583e+00, 3.81323583e+00, 3.81323583e+00,
4.71361364e+00, 4.71361364e+00, 4.71361364e+00, 4.71361364e+00,
5.67171883e+00, 5.67171883e+00, 5.67171883e+00, 5.67171883e+00,
6.67789199e+00, 6.67789199e+00, 6.67789199e+00, 6.67789199e+00,
7.70441370e+00, 7.70441370e+00, 7.70441370e+00, 7.70441370e+00,
8.73273268e+00, 8.73273268e+00, 8.73273268e+00, 8.73273268e+00,
9.75221103e+00, 9.75221103e+00, 9.75221103e+00, 9.75221103e+00,
1.07599049e+01, 1.07599049e+01, 1.07599049e+01, 1.07599049e+01,
1.17540097e+01, 1.17540097e+01, 1.17540097e+01, 1.17540097e+01,
1.27317276e+01, 1.27317276e+01, 1.27317276e+01, 1.27317276e+01,
1.36888505e+01, 1.36888505e+01, 1.36888505e+01, 1.36888505e+01,
1.46193231e+01, 1.46193231e+01, 1.46193231e+01, 1.46193231e+01,
1.55146881e+01, 1.55146881e+01, 1.55146881e+01, 1.55146881e+01,
1.63636987e+01, 1.63636987e+01, 1.63636987e+01, 1.63636987e+01,
1.71524418e+01, 1.71524418e+01, 1.71524418e+01, 1.71524418e+01,
1.78652593e+01, 1.78652593e+01, 1.78652593e+01, 1.78652593e+01,
1.84866404e+01, 1.84866404e+01, 1.84866404e+01, 1.84866404e+01,
1.90040865e+01, 1.90040865e+01, 1.90040865e+01, 1.90040865e+01,
1.94113585e+01, 1.94113585e+01, 1.94113585e+01, 1.94113585e+01,
1.97105480e+01, 1.97105480e+01, 1.97105480e+01, 1.97105480e+01,
1.99120445e+01, 1.99120445e+01, 1.99120445e+01, 1.99120445e+01,
2.00328035e+01, 2.00328035e+01, 2.00328035e+01, 2.00328035e+01,
2.00939353e+01, 2.00939353e+01, 2.00939353e+01, 2.00939353e+01,
2.01167707e+01, 2.01167707e+01, 2.01167707e+01, 2.01167707e+01,
2.01197792e+01, 2.01197792e+01, 2.01197792e+01, 2.01197792e+01,
2.01074074e+01, 2.01074074e+01, 2.01074074e+01, 2.01074074e+01,
2.00728629e+01, 2.00728629e+01, 2.00728629e+01, 2.00728629e+01,
2.00133514e+01, 2.00133514e+01, 2.00133514e+01, 2.00133514e+01,
1.99495226e+01, 1.99495226e+01, 1.99495226e+01, 1.99495226e+01,
1.98997208e+01, 1.98997208e+01, 1.98997208e+01, 1.98997208e+01,
1.98634959e+01, 1.98634959e+01, 1.98634959e+01, 1.98634959e+01,
1.98359993e+01, 1.98359993e+01, 1.98359993e+01, 1.98359993e+01,
1.98148995e+01, 1.98148995e+01, 1.98148995e+01, 1.98148995e+01,
1.97990188e+01, 1.97990188e+01, 1.97990188e+01, 1.97990188e+01,
1.97864598e+01, 1.97864598e+01, 1.97864598e+01, 1.97864598e+01,
1.97757303e+01, 1.97757303e+01, 1.97757303e+01, 1.97757303e+01,
1.97670663e+01, 1.97670663e+01, 1.97670663e+01, 1.97670663e+01,
1.97606562e+01, 1.97606562e+01, 1.97606562e+01, 1.97606562e+01,
1.97563225e+01, 1.97563225e+01, 1.97563225e+01, 1.97563225e+01,
1.97574019e+01, 1.97574019e+01, 1.97574019e+01, 1.97574019e+01,
1.97535996e+01, 1.97535996e+01, 1.97535996e+01, 1.97535996e+01,
1.97149405e+01, 1.97149405e+01, 1.97149405e+01, 1.97149405e+01,
1.95165373e+01, 1.95165373e+01, 1.95165373e+01, 1.95165373e+01,
1.86180277e+01, 1.86180277e+01, 1.86180277e+01, 1.86180277e+01,
1.50712409e+01, 1.50712409e+01, 1.50712409e+01, 1.50712409e+01,
6.44555578e+00, 6.44555578e+00, 6.44555578e+00, 6.44555578e+00,
3.40134655e-01, 3.40134655e-01, 3.40134655e-01, 3.40134655e-01,
1.99855938e-03, 1.99855938e-03, 1.99855938e-03, 1.99855938e-03,
9.27909710e-07, 9.27909710e-07, 9.27909710e-07, 9.27909710e-07,
1.31626259e-10, 1.31626259e-10, 1.31626259e-10, 1.31626259e-10,
1.91069012e-14, 1.91069012e-14, 1.91069012e-14, 1.91069012e-14,
2.79872002e-18, 2.79872002e-18, 2.79872002e-18, 2.79872002e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.86186200e+02, 9.86186200e+02, 9.86186200e+02, 9.86186200e+02,
9.73240468e+02, 9.73240468e+02, 9.73240468e+02, 9.73240468e+02,
9.59914409e+02, 9.59914409e+02, 9.59914409e+02, 9.59914409e+02,
9.41247070e+02, 9.41247070e+02, 9.41247070e+02, 9.41247070e+02,
9.19065173e+02, 9.19065173e+02, 9.19065173e+02, 9.19065173e+02,
8.93636756e+02, 8.93636756e+02, 8.93636756e+02, 8.93636756e+02,
8.65883271e+02, 8.65883271e+02, 8.65883271e+02, 8.65883271e+02,
8.36573980e+02, 8.36573980e+02, 8.36573980e+02, 8.36573980e+02,
8.06320572e+02, 8.06320572e+02, 8.06320572e+02, 8.06320572e+02,
7.75553698e+02, 7.75553698e+02, 7.75553698e+02, 7.75553698e+02,
7.45017133e+02, 7.45017133e+02, 7.45017133e+02, 7.45017133e+02,
7.15593221e+02, 7.15593221e+02, 7.15593221e+02, 7.15593221e+02,
6.87450247e+02, 6.87450247e+02, 6.87450247e+02, 6.87450247e+02,
6.60567105e+02, 6.60567105e+02, 6.60567105e+02, 6.60567105e+02,
6.34933561e+02, 6.34933561e+02, 6.34933561e+02, 6.34933561e+02,
6.10559907e+02, 6.10559907e+02, 6.10559907e+02, 6.10559907e+02,
5.87481408e+02, 5.87481408e+02, 5.87481408e+02, 5.87481408e+02,
5.65766844e+02, 5.65766844e+02, 5.65766844e+02, 5.65766844e+02,
5.45524542e+02, 5.45524542e+02, 5.45524542e+02, 5.45524542e+02,
5.26905041e+02, 5.26905041e+02, 5.26905041e+02, 5.26905041e+02,
5.10095754e+02, 5.10095754e+02, 5.10095754e+02, 5.10095754e+02,
4.95301417e+02, 4.95301417e+02, 4.95301417e+02, 4.95301417e+02,
4.82707232e+02, 4.82707232e+02, 4.82707232e+02, 4.82707232e+02,
4.72431235e+02, 4.72431235e+02, 4.72431235e+02, 4.72431235e+02,
4.64480159e+02, 4.64480159e+02, 4.64480159e+02, 4.64480159e+02,
4.58720544e+02, 4.58720544e+02, 4.58720544e+02, 4.58720544e+02,
4.54880415e+02, 4.54880415e+02, 4.54880415e+02, 4.54880415e+02,
4.52586923e+02, 4.52586923e+02, 4.52586923e+02, 4.52586923e+02,
4.51430708e+02, 4.51430708e+02, 4.51430708e+02, 4.51430708e+02,
4.51009436e+02, 4.51009436e+02, 4.51009436e+02, 4.51009436e+02,
4.50953318e+02, 4.50953318e+02, 4.50953318e+02, 4.50953318e+02,
4.51185590e+02, 4.51185590e+02, 4.51185590e+02, 4.51185590e+02,
4.51834808e+02, 4.51834808e+02, 4.51834808e+02, 4.51834808e+02,
4.52955367e+02, 4.52955367e+02, 4.52955367e+02, 4.52955367e+02,
4.54157312e+02, 4.54157312e+02, 4.54157312e+02, 4.54157312e+02,
4.55095241e+02, 4.55095241e+02, 4.55095241e+02, 4.55095241e+02,
4.55772371e+02, 4.55772371e+02, 4.55772371e+02, 4.55772371e+02,
4.56264237e+02, 4.56264237e+02, 4.56264237e+02, 4.56264237e+02,
4.56633348e+02, 4.56633348e+02, 4.56633348e+02, 4.56633348e+02,
4.56929937e+02, 4.56929937e+02, 4.56929937e+02, 4.56929937e+02,
4.57171489e+02, 4.57171489e+02, 4.57171489e+02, 4.57171489e+02,
4.57363668e+02, 4.57363668e+02, 4.57363668e+02, 4.57363668e+02,
4.57531378e+02, 4.57531378e+02, 4.57531378e+02, 4.57531378e+02,
4.57709652e+02, 4.57709652e+02, 4.57709652e+02, 4.57709652e+02,
4.57932536e+02, 4.57932536e+02, 4.57932536e+02, 4.57932536e+02,
4.58295200e+02, 4.58295200e+02, 4.58295200e+02, 4.58295200e+02,
4.58599054e+02, 4.58599054e+02, 4.58599054e+02, 4.58599054e+02,
4.57718786e+02, 4.57718786e+02, 4.57718786e+02, 4.57718786e+02,
4.48917912e+02, 4.48917912e+02, 4.48917912e+02, 4.48917912e+02,
4.03800359e+02, 4.03800359e+02, 4.03800359e+02, 4.03800359e+02,
2.58647864e+02, 2.58647864e+02, 2.58647864e+02, 2.58647864e+02,
5.37325288e+01, 5.37325288e+01, 5.37325288e+01, 5.37325288e+01,
1.31811609e+00, 1.31811609e+00, 1.31811609e+00, 1.31811609e+00,
1.12593786e-02, 1.12593786e-02, 1.12593786e-02, 1.12593786e-02,
1.00001109e-02, 1.00001109e-02, 1.00001109e-02, 1.00001109e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hll': [{'rho': array([0.99116492, 0.99116492, 0.99116492, 0.99116492, 0.98271154,
0.98271154, 0.98271154, 0.98271154, 0.97383884, 0.97383884,
0.97383884, 0.97383884, 0.96101554, 0.96101554, 0.96101554,
0.96101554, 0.9454558 , 0.9454558 , 0.9454558 , 0.9454558 ,
0.92712036, 0.92712036, 0.92712036, 0.92712036, 0.90667211,
0.90667211, 0.90667211, 0.90667211, 0.88466881, 0.88466881,
0.88466881, 0.88466881, 0.86164034, 0.86164034, 0.86164034,
0.86164034, 0.83800032, 0.83800032, 0.83800032, 0.83800032,
0.81424415, 0.81424415, 0.81424415, 0.81424415, 0.79085525,
0.79085525, 0.79085525, 0.79085525, 0.76804363, 0.76804363,
0.76804363, 0.76804363, 0.74583711, 0.74583711, 0.74583711,
0.74583711, 0.72421952, 0.72421952, 0.72421952, 0.72421952,
0.70319112, 0.70319112, 0.70319112, 0.70319112, 0.68277247,
0.68277247, 0.68277247, 0.68277247, 0.66301832, 0.66301832,
0.66301832, 0.66301832, 0.64404414, 0.64404414, 0.64404414,
0.64404414, 0.62606083, 0.62606083, 0.62606083, 0.62606083,
0.60941523, 0.60941523, 0.60941523, 0.60941523, 0.59461799,
0.59461799, 0.59461799, 0.59461799, 0.5823152 , 0.5823152 ,
0.5823152 , 0.5823152 , 0.57313802, 0.57313802, 0.57313802,
0.57313802, 0.56738503, 0.56738503, 0.56738503, 0.56738503,
0.56465216, 0.56465216, 0.56465216, 0.56465216, 0.56382693,
0.56382693, 0.56382693, 0.56382693, 0.56387318, 0.56387318,
0.56387318, 0.56387318, 0.5652006 , 0.5652006 , 0.5652006 ,
0.5652006 , 0.56626977, 0.56626977, 0.56626977, 0.56626977,
0.56702881, 0.56702881, 0.56702881, 0.56702881, 0.56788545,
0.56788545, 0.56788545, 0.56788545, 0.56880776, 0.56880776,
0.56880776, 0.56880776, 0.56941945, 0.56941945, 0.56941945,
0.56941945, 0.56962086, 0.56962086, 0.56962086, 0.56962086,
0.56956418, 0.56956418, 0.56956418, 0.56956418, 0.56936331,
0.56936331, 0.56936331, 0.56936331, 0.56934572, 0.56934572,
0.56934572, 0.56934572, 0.57000584, 0.57000584, 0.57000584,
0.57000584, 0.5729765 , 0.5729765 , 0.5729765 , 0.5729765 ,
0.58176493, 0.58176493, 0.58176493, 0.58176493, 0.60341244,
0.60341244, 0.60341244, 0.60341244, 0.65159534, 0.65159534,
0.65159534, 0.65159534, 0.75225793, 0.75225793, 0.75225793,
0.75225793, 0.95396517, 0.95396517, 0.95396517, 0.95396517,
1.34573563, 1.34573563, 1.34573563, 1.34573563, 2.05647412,
2.05647412, 2.05647412, 2.05647412, 3.13720518, 3.13720518,
3.13720518, 3.13720518, 4.01618199, 4.01618199, 4.01618199,
4.01618199, 4.2713159 , 4.2713159 , 4.2713159 , 4.2713159 ,
3.78406763, 3.78406763, 3.78406763, 3.78406763, 1.92016659,
1.92016659, 1.92016659, 1.92016659, 1.058216 , 1.058216 ,
1.058216 , 1.058216 , 1.00081398, 1.00081398, 1.00081398,
1.00081398, 1.00000178, 1.00000178, 1.00000178, 1.00000178,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.31199970e-01, 3.31199970e-01, 3.31199970e-01, 3.31199970e-01,
6.51382280e-01, 6.51382280e-01, 6.51382280e-01, 6.51382280e-01,
9.88854278e-01, 9.88854278e-01, 9.88854278e-01, 9.88854278e-01,
1.48150489e+00, 1.48150489e+00, 1.48150489e+00, 1.48150489e+00,
2.08633147e+00, 2.08633147e+00, 2.08633147e+00, 2.08633147e+00,
2.80957124e+00, 2.80957124e+00, 2.80957124e+00, 2.80957124e+00,
3.62985549e+00, 3.62985549e+00, 3.62985549e+00, 3.62985549e+00,
4.52930744e+00, 4.52930744e+00, 4.52930744e+00, 4.52930744e+00,
5.49031544e+00, 5.49031544e+00, 5.49031544e+00, 5.49031544e+00,
6.50069839e+00, 6.50069839e+00, 6.50069839e+00, 6.50069839e+00,
7.53409154e+00, 7.53409154e+00, 7.53409154e+00, 7.53409154e+00,
8.57574859e+00, 8.57574859e+00, 8.57574859e+00, 8.57574859e+00,
9.61670434e+00, 9.61670434e+00, 9.61670434e+00, 9.61670434e+00,
1.06548968e+01, 1.06548968e+01, 1.06548968e+01, 1.06548968e+01,
1.16895560e+01, 1.16895560e+01, 1.16895560e+01, 1.16895560e+01,
1.27199525e+01, 1.27199525e+01, 1.27199525e+01, 1.27199525e+01,
1.37443488e+01, 1.37443488e+01, 1.37443488e+01, 1.37443488e+01,
1.47589251e+01, 1.47589251e+01, 1.47589251e+01, 1.47589251e+01,
1.57563221e+01, 1.57563221e+01, 1.57563221e+01, 1.57563221e+01,
1.67233146e+01, 1.67233146e+01, 1.67233146e+01, 1.67233146e+01,
1.76379476e+01, 1.76379476e+01, 1.76379476e+01, 1.76379476e+01,
1.84673647e+01, 1.84673647e+01, 1.84673647e+01, 1.84673647e+01,
1.91692758e+01, 1.91692758e+01, 1.91692758e+01, 1.91692758e+01,
1.97016293e+01, 1.97016293e+01, 1.97016293e+01, 1.97016293e+01,
2.00421597e+01, 2.00421597e+01, 2.00421597e+01, 2.00421597e+01,
2.02074474e+01, 2.02074474e+01, 2.02074474e+01, 2.02074474e+01,
2.02533362e+01, 2.02533362e+01, 2.02533362e+01, 2.02533362e+01,
2.02422335e+01, 2.02422335e+01, 2.02422335e+01, 2.02422335e+01,
2.01551609e+01, 2.01551609e+01, 2.01551609e+01, 2.01551609e+01,
2.00814099e+01, 2.00814099e+01, 2.00814099e+01, 2.00814099e+01,
2.00377810e+01, 2.00377810e+01, 2.00377810e+01, 2.00377810e+01,
2.00059391e+01, 2.00059391e+01, 2.00059391e+01, 2.00059391e+01,
1.99778740e+01, 1.99778740e+01, 1.99778740e+01, 1.99778740e+01,
1.99509217e+01, 1.99509217e+01, 1.99509217e+01, 1.99509217e+01,
1.99248183e+01, 1.99248183e+01, 1.99248183e+01, 1.99248183e+01,
1.99001676e+01, 1.99001676e+01, 1.99001676e+01, 1.99001676e+01,
1.98776007e+01, 1.98776007e+01, 1.98776007e+01, 1.98776007e+01,
1.98572942e+01, 1.98572942e+01, 1.98572942e+01, 1.98572942e+01,
1.98397324e+01, 1.98397324e+01, 1.98397324e+01, 1.98397324e+01,
1.98254040e+01, 1.98254040e+01, 1.98254040e+01, 1.98254040e+01,
1.98131310e+01, 1.98131310e+01, 1.98131310e+01, 1.98131310e+01,
1.98012050e+01, 1.98012050e+01, 1.98012050e+01, 1.98012050e+01,
1.97898387e+01, 1.97898387e+01, 1.97898387e+01, 1.97898387e+01,
1.97795675e+01, 1.97795675e+01, 1.97795675e+01, 1.97795675e+01,
1.97699816e+01, 1.97699816e+01, 1.97699816e+01, 1.97699816e+01,
1.97635691e+01, 1.97635691e+01, 1.97635691e+01, 1.97635691e+01,
1.97536393e+01, 1.97536393e+01, 1.97536393e+01, 1.97536393e+01,
1.97149813e+01, 1.97149813e+01, 1.97149813e+01, 1.97149813e+01,
1.95399511e+01, 1.95399511e+01, 1.95399511e+01, 1.95399511e+01,
1.87505825e+01, 1.87505825e+01, 1.87505825e+01, 1.87505825e+01,
1.56266522e+01, 1.56266522e+01, 1.56266522e+01, 1.56266522e+01,
6.97439322e+00, 6.97439322e+00, 6.97439322e+00, 6.97439322e+00,
3.92821064e-01, 3.92821064e-01, 3.92821064e-01, 3.92821064e-01,
1.89489077e-03, 1.89489077e-03, 1.89489077e-03, 1.89489077e-03,
6.66095396e-07, 6.66095396e-07, 6.66095396e-07, 6.66095396e-07,
9.40368073e-11, 9.40368073e-11, 9.40368073e-11, 9.40368073e-11,
1.38270964e-14, 1.38270964e-14, 1.38270964e-14, 1.38270964e-14,
2.07028270e-18, 2.07028270e-18, 2.07028270e-18, 2.07028270e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87667905e+02, 9.87667905e+02, 9.87667905e+02, 9.87667905e+02,
9.75896749e+02, 9.75896749e+02, 9.75896749e+02, 9.75896749e+02,
9.63596793e+02, 9.63596793e+02, 9.63596793e+02, 9.63596793e+02,
9.45903496e+02, 9.45903496e+02, 9.45903496e+02, 9.45903496e+02,
9.24560147e+02, 9.24560147e+02, 9.24560147e+02, 9.24560147e+02,
8.99586589e+02, 8.99586589e+02, 8.99586589e+02, 8.99586589e+02,
8.71962692e+02, 8.71962692e+02, 8.71962692e+02, 8.71962692e+02,
8.42509302e+02, 8.42509302e+02, 8.42509302e+02, 8.42509302e+02,
8.11982832e+02, 8.11982832e+02, 8.11982832e+02, 8.11982832e+02,
7.80909598e+02, 7.80909598e+02, 7.80909598e+02, 7.80909598e+02,
7.50021347e+02, 7.50021347e+02, 7.50021347e+02, 7.50021347e+02,
7.20044660e+02, 7.20044660e+02, 7.20044660e+02, 7.20044660e+02,
6.91139600e+02, 6.91139600e+02, 6.91139600e+02, 6.91139600e+02,
6.63330665e+02, 6.63330665e+02, 6.63330665e+02, 6.63330665e+02,
6.36575468e+02, 6.36575468e+02, 6.36575468e+02, 6.36575468e+02,
6.10854195e+02, 6.10854195e+02, 6.10854195e+02, 6.10854195e+02,
5.86171830e+02, 5.86171830e+02, 5.86171830e+02, 5.86171830e+02,
5.62573606e+02, 5.62573606e+02, 5.62573606e+02, 5.62573606e+02,
5.40173609e+02, 5.40173609e+02, 5.40173609e+02, 5.40173609e+02,
5.19191018e+02, 5.19191018e+02, 5.19191018e+02, 5.19191018e+02,
4.99991749e+02, 4.99991749e+02, 4.99991749e+02, 4.99991749e+02,
4.83112346e+02, 4.83112346e+02, 4.83112346e+02, 4.83112346e+02,
4.69214163e+02, 4.69214163e+02, 4.69214163e+02, 4.69214163e+02,
4.58903184e+02, 4.58903184e+02, 4.58903184e+02, 4.58903184e+02,
4.52409336e+02, 4.52409336e+02, 4.52409336e+02, 4.52409336e+02,
4.49287031e+02, 4.49287031e+02, 4.49287031e+02, 4.49287031e+02,
4.48422944e+02, 4.48422944e+02, 4.48422944e+02, 4.48422944e+02,
4.48631188e+02, 4.48631188e+02, 4.48631188e+02, 4.48631188e+02,
4.50271228e+02, 4.50271228e+02, 4.50271228e+02, 4.50271228e+02,
4.51662913e+02, 4.51662913e+02, 4.51662913e+02, 4.51662913e+02,
4.52490638e+02, 4.52490638e+02, 4.52490638e+02, 4.52490638e+02,
4.53096587e+02, 4.53096587e+02, 4.53096587e+02, 4.53096587e+02,
4.53627004e+02, 4.53627004e+02, 4.53627004e+02, 4.53627004e+02,
4.54138029e+02, 4.54138029e+02, 4.54138029e+02, 4.54138029e+02,
4.54640997e+02, 4.54640997e+02, 4.54640997e+02, 4.54640997e+02,
4.55121718e+02, 4.55121718e+02, 4.55121718e+02, 4.55121718e+02,
4.55558744e+02, 4.55558744e+02, 4.55558744e+02, 4.55558744e+02,
4.55935595e+02, 4.55935595e+02, 4.55935595e+02, 4.55935595e+02,
4.56261121e+02, 4.56261121e+02, 4.56261121e+02, 4.56261121e+02,
4.56558739e+02, 4.56558739e+02, 4.56558739e+02, 4.56558739e+02,
4.56826197e+02, 4.56826197e+02, 4.56826197e+02, 4.56826197e+02,
4.57052328e+02, 4.57052328e+02, 4.57052328e+02, 4.57052328e+02,
4.57257152e+02, 4.57257152e+02, 4.57257152e+02, 4.57257152e+02,
4.57467024e+02, 4.57467024e+02, 4.57467024e+02, 4.57467024e+02,
4.57704540e+02, 4.57704540e+02, 4.57704540e+02, 4.57704540e+02,
4.58066570e+02, 4.58066570e+02, 4.58066570e+02, 4.58066570e+02,
4.58479576e+02, 4.58479576e+02, 4.58479576e+02, 4.58479576e+02,
4.57718684e+02, 4.57718684e+02, 4.57718684e+02, 4.57718684e+02,
4.49845047e+02, 4.49845047e+02, 4.49845047e+02, 4.49845047e+02,
4.09389299e+02, 4.09389299e+02, 4.09389299e+02, 4.09389299e+02,
2.68194998e+02, 2.68194998e+02, 2.68194998e+02, 2.68194998e+02,
5.60520652e+01, 5.60520652e+01, 5.60520652e+01, 5.60520652e+01,
1.14557313e+00, 1.14557313e+00, 1.14557313e+00, 1.14557313e+00,
1.08687798e-02, 1.08687798e-02, 1.08687798e-02, 1.08687798e-02,
1.00000791e-02, 1.00000791e-02, 1.00000791e-02, 1.00000791e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hllc': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99854666, 0.99854666, 0.99854666, 0.99854666,
0.96845715, 0.96845715, 0.96845715, 0.96845715, 0.81981135,
0.81981135, 0.81981135, 0.81981135, 1.13644411, 1.13644411,
1.13644411, 1.13644411, 1.07459565, 1.07459565, 1.07459565,
1.07459565, 1.00214509, 1.00214509, 1.00214509, 1.00214509,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.44580810e-02, 5.44580810e-02, 5.44580810e-02, 5.44580810e-02,
1.19786475e+00, 1.19786475e+00, 1.19786475e+00, 1.19786475e+00,
7.52224860e+00, 7.52224860e+00, 7.52224860e+00, 7.52224860e+00,
9.36380750e+00, 9.36380750e+00, 9.36380750e+00, 9.36380750e+00,
1.09132154e+00, 1.09132154e+00, 1.09132154e+00, 1.09132154e+00,
4.34109741e-03, 4.34109741e-03, 4.34109741e-03, 4.34109741e-03,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.97973078e+02, 9.97973078e+02, 9.97973078e+02, 9.97973078e+02,
9.57196315e+02, 9.57196315e+02, 9.57196315e+02, 9.57196315e+02,
7.89728589e+02, 7.89728589e+02, 7.89728589e+02, 7.89728589e+02,
2.18172604e+02, 2.18172604e+02, 2.18172604e+02, 2.18172604e+02,
7.20466733e+00, 7.20466733e+00, 7.20466733e+00, 7.20466733e+00,
1.36969674e-02, 1.36969674e-02, 1.36969674e-02, 1.36969674e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999529,
0.99999529, 0.99999529, 0.99999529, 0.99981164, 0.99981164,
0.99981164, 0.99981164, 0.99702376, 0.99702376, 0.99702376,
0.99702376, 0.97590016, 0.97590016, 0.97590016, 0.97590016,
0.88930972, 0.88930972, 0.88930972, 0.88930972, 0.71365932,
0.71365932, 0.71365932, 0.71365932, 1.0710902 , 1.0710902 ,
1.0710902 , 1.0710902 , 1.31137332, 1.31137332, 1.31137332,
1.31137332, 1.04072233, 1.04072233, 1.04072233, 1.04072233,
1.00111398, 1.00111398, 1.00111398, 1.00111398, 1.00000029,
1.00000029, 1.00000029, 1.00000029, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.76253247e-04, 1.76253247e-04, 1.76253247e-04, 1.76253247e-04,
7.04865623e-03, 7.04865623e-03, 7.04865623e-03, 7.04865623e-03,
1.11518467e-01, 1.11518467e-01, 1.11518467e-01, 1.11518467e-01,
9.09502205e-01, 9.09502205e-01, 9.09502205e-01, 9.09502205e-01,
4.30216737e+00, 4.30216737e+00, 4.30216737e+00, 4.30216737e+00,
1.18379965e+01, 1.18379965e+01, 1.18379965e+01, 1.18379965e+01,
1.62384269e+01, 1.62384269e+01, 1.62384269e+01, 1.62384269e+01,
5.70889156e+00, 5.70889156e+00, 5.70889156e+00, 5.70889156e+00,
2.30200189e-01, 2.30200189e-01, 2.30200189e-01, 2.30200189e-01,
4.83684047e-04, 4.83684047e-04, 4.83684047e-04, 4.83684047e-04,
3.42098651e-08, 3.42098651e-08, 3.42098651e-08, 3.42098651e-08,
1.01319811e-12, 1.01319811e-12, 1.01319811e-12, 1.01319811e-12,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99993405e+02, 9.99993405e+02, 9.99993405e+02, 9.99993405e+02,
9.99736354e+02, 9.99736354e+02, 9.99736354e+02, 9.99736354e+02,
9.95842977e+02, 9.95842977e+02, 9.95842977e+02, 9.95842977e+02,
9.66708286e+02, 9.66708286e+02, 9.66708286e+02, 9.66708286e+02,
8.52052998e+02, 8.52052998e+02, 8.52052998e+02, 8.52052998e+02,
6.72236296e+02, 6.72236296e+02, 6.72236296e+02, 6.72236296e+02,
3.62410250e+02, 3.62410250e+02, 3.62410250e+02, 3.62410250e+02,
6.19189240e+01, 6.19189240e+01, 6.19189240e+01, 6.19189240e+01,
6.26948951e-01, 6.26948951e-01, 6.26948951e-01, 6.26948951e-01,
1.01072359e-02, 1.01072359e-02, 1.01072359e-02, 1.01072359e-02,
1.00000040e-02, 1.00000040e-02, 1.00000040e-02, 1.00000040e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999888, 0.99999888, 0.99999888, 0.99999888,
0.99997445, 0.99997445, 0.99997445, 0.99997445, 0.99964871,
0.99964871, 0.99964871, 0.99964871, 0.99689733, 0.99689733,
0.99689733, 0.99689733, 0.98193702, 0.98193702, 0.98193702,
0.98193702, 0.9295722 , 0.9295722 , 0.9295722 , 0.9295722 ,
0.81296623, 0.81296623, 0.81296623, 0.81296623, 0.63611418,
0.63611418, 0.63611418, 0.63611418, 0.88414578, 0.88414578,
0.88414578, 0.88414578, 1.57593929, 1.57593929, 1.57593929,
1.57593929, 1.1715463 , 1.1715463 , 1.1715463 , 1.1715463 ,
1.01116974, 1.01116974, 1.01116974, 1.01116974, 1.0000899 ,
1.0000899 , 1.0000899 , 1.0000899 , 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
7.97153187e-09, 7.97153187e-09, 7.97153187e-09, 7.97153187e-09,
9.70027498e-07, 9.70027498e-07, 9.70027498e-07, 9.70027498e-07,
4.20269589e-05, 4.20269589e-05, 4.20269589e-05, 4.20269589e-05,
9.55942471e-04, 9.55942471e-04, 9.55942471e-04, 9.55942471e-04,
1.31460868e-02, 1.31460868e-02, 1.31460868e-02, 1.31460868e-02,
1.16219529e-01, 1.16219529e-01, 1.16219529e-01, 1.16219529e-01,
6.79969081e-01, 6.79969081e-01, 6.79969081e-01, 6.79969081e-01,
2.70215530e+00, 2.70215530e+00, 2.70215530e+00, 2.70215530e+00,
7.57490575e+00, 7.57490575e+00, 7.57490575e+00, 7.57490575e+00,
1.47743231e+01, 1.47743231e+01, 1.47743231e+01, 1.47743231e+01,
2.03840035e+01, 2.03840035e+01, 2.03840035e+01, 2.03840035e+01,
1.19115601e+01, 1.19115601e+01, 1.19115601e+01, 1.19115601e+01,
1.63710471e+00, 1.63710471e+00, 1.63710471e+00, 1.63710471e+00,
2.10715183e-02, 2.10715183e-02, 2.10715183e-02, 2.10715183e-02,
1.32818490e-05, 1.32818490e-05, 1.32818490e-05, 1.32818490e-05,
1.21621831e-09, 1.21621831e-09, 1.21621831e-09, 1.21621831e-09,
8.57861505e-14, 8.57861505e-14, 8.57861505e-14, 8.57861505e-14,
4.41228789e-18, 4.41228789e-18, 4.41228789e-18, 4.41228789e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999964e+02, 9.99999964e+02, 9.99999964e+02, 9.99999964e+02,
9.99998427e+02, 9.99998427e+02, 9.99998427e+02, 9.99998427e+02,
9.99964233e+02, 9.99964233e+02, 9.99964233e+02, 9.99964233e+02,
9.99508326e+02, 9.99508326e+02, 9.99508326e+02, 9.99508326e+02,
9.95664278e+02, 9.95664278e+02, 9.95664278e+02, 9.95664278e+02,
9.74918203e+02, 9.74918203e+02, 9.74918203e+02, 9.74918203e+02,
9.03858041e+02, 9.03858041e+02, 9.03858041e+02, 9.03858041e+02,
7.52615431e+02, 7.52615431e+02, 7.52615431e+02, 7.52615431e+02,
5.88404204e+02, 5.88404204e+02, 5.88404204e+02, 5.88404204e+02,
4.31076258e+02, 4.31076258e+02, 4.31076258e+02, 4.31076258e+02,
1.87860435e+02, 1.87860435e+02, 1.87860435e+02, 1.87860435e+02,
8.76910821e+00, 8.76910821e+00, 8.76910821e+00, 8.76910821e+00,
2.98951467e-02, 2.98951467e-02, 2.98951467e-02, 2.98951467e-02,
1.00015908e-02, 1.00015908e-02, 1.00015908e-02, 1.00015908e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999979, 0.99999979,
0.99999979, 0.99999979, 0.9999963 , 0.9999963 , 0.9999963 ,
0.9999963 , 0.99995364, 0.99995364, 0.99995364, 0.99995364,
0.99957767, 0.99957767, 0.99957767, 0.99957767, 0.99718309,
0.99718309, 0.99718309, 0.99718309, 0.98626394, 0.98626394,
0.98626394, 0.98626394, 0.95106797, 0.95106797, 0.95106797,
0.95106797, 0.87123171, 0.87123171, 0.87123171, 0.87123171,
0.74547768, 0.74547768, 0.74547768, 0.74547768, 0.58374479,
0.58374479, 0.58374479, 0.58374479, 0.73207392, 0.73207392,
0.73207392, 0.73207392, 1.60503247, 1.60503247, 1.60503247,
1.60503247, 1.47308433, 1.47308433, 1.47308433, 1.47308433,
1.05348836, 1.05348836, 1.05348836, 1.05348836, 1.00182288,
1.00182288, 1.00182288, 1.00182288, 1.00000147, 1.00000147,
1.00000147, 1.00000147, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
6.26870362e-13, 6.26870362e-13, 6.26870362e-13, 6.26870362e-13,
1.08486278e-10, 1.08486278e-10, 1.08486278e-10, 1.08486278e-10,
7.72018265e-09, 7.72018265e-09, 7.72018265e-09, 7.72018265e-09,
3.08421177e-07, 3.08421177e-07, 3.08421177e-07, 3.08421177e-07,
7.88931508e-06, 7.88931508e-06, 7.88931508e-06, 7.88931508e-06,
1.38505209e-04, 1.38505209e-04, 1.38505209e-04, 1.38505209e-04,
1.73457409e-03, 1.73457409e-03, 1.73457409e-03, 1.73457409e-03,
1.58044887e-02, 1.58044887e-02, 1.58044887e-02, 1.58044887e-02,
1.05496410e-01, 1.05496410e-01, 1.05496410e-01, 1.05496410e-01,
5.16306177e-01, 5.16306177e-01, 5.16306177e-01, 5.16306177e-01,
1.86327287e+00, 1.86327287e+00, 1.86327287e+00, 1.86327287e+00,
5.07718607e+00, 5.07718607e+00, 5.07718607e+00, 5.07718607e+00,
1.06862908e+01, 1.06862908e+01, 1.06862908e+01, 1.06862908e+01,
1.67930222e+01, 1.67930222e+01, 1.67930222e+01, 1.67930222e+01,
2.18771845e+01, 2.18771845e+01, 2.18771845e+01, 2.18771845e+01,
1.69221015e+01, 1.69221015e+01, 1.69221015e+01, 1.69221015e+01,
5.93555418e+00, 5.93555418e+00, 5.93555418e+00, 5.93555418e+00,
2.67386567e-01, 2.67386567e-01, 2.67386567e-01, 2.67386567e-01,
9.03539515e-04, 9.03539515e-04, 9.03539515e-04, 9.03539515e-04,
1.74483618e-07, 1.74483618e-07, 1.74483618e-07, 1.74483618e-07,
2.04118254e-11, 2.04118254e-11, 2.04118254e-11, 2.04118254e-11,
2.17016642e-15, 2.17016642e-15, 2.17016642e-15, 2.17016642e-15,
1.97944057e-19, 1.97944057e-19, 1.97944057e-19, 1.97944057e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999705e+02, 9.99999705e+02, 9.99999705e+02, 9.99999705e+02,
9.99994818e+02, 9.99994818e+02, 9.99994818e+02, 9.99994818e+02,
9.99935102e+02, 9.99935102e+02, 9.99935102e+02, 9.99935102e+02,
9.99408895e+02, 9.99408895e+02, 9.99408895e+02, 9.99408895e+02,
9.96061988e+02, 9.96061988e+02, 9.96061988e+02, 9.96061988e+02,
9.80877450e+02, 9.80877450e+02, 9.80877450e+02, 9.80877450e+02,
9.32612348e+02, 9.32612348e+02, 9.32612348e+02, 9.32612348e+02,
8.26315203e+02, 8.26315203e+02, 8.26315203e+02, 8.26315203e+02,
6.66605385e+02, 6.66605385e+02, 6.66605385e+02, 6.66605385e+02,
5.27625315e+02, 5.27625315e+02, 5.27625315e+02, 5.27625315e+02,
4.48693030e+02, 4.48693030e+02, 4.48693030e+02, 4.48693030e+02,
3.34282701e+02, 3.34282701e+02, 3.34282701e+02, 3.34282701e+02,
5.93797144e+01, 5.93797144e+01, 5.93797144e+01, 5.93797144e+01,
6.98066976e-01, 6.98066976e-01, 6.98066976e-01, 6.98066976e-01,
1.02408618e-02, 1.02408618e-02, 1.02408618e-02, 1.02408618e-02,
1.00000206e-02, 1.00000206e-02, 1.00000206e-02, 1.00000206e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999945,
0.99999945, 0.99999945, 0.99999945, 0.99999352, 0.99999352,
0.99999352, 0.99999352, 0.99994026, 0.99994026, 0.99994026,
0.99994026, 0.99956877, 0.99956877, 0.99956877, 0.99956877,
0.99757146, 0.99757146, 0.99757146, 0.99757146, 0.98940582,
0.98940582, 0.98940582, 0.98940582, 0.96438863, 0.96438863,
0.96438863, 0.96438863, 0.90735626, 0.90735626, 0.90735626,
0.90735626, 0.80924072, 0.80924072, 0.80924072, 0.80924072,
0.69259558, 0.69259558, 0.69259558, 0.69259558, 0.55553296,
0.55553296, 0.55553296, 0.55553296, 0.63553693, 0.63553693,
0.63553693, 0.63553693, 1.41397872, 1.41397872, 1.41397872,
1.41397872, 1.81820124, 1.81820124, 1.81820124, 1.81820124,
1.20387024, 1.20387024, 1.20387024, 1.20387024, 1.01269879,
1.01269879, 1.01269879, 1.01269879, 1.00012068, 1.00012068,
1.00012068, 1.00012068, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.25264676e-14, 1.25264676e-14, 1.25264676e-14, 1.25264676e-14,
1.20223771e-12, 1.20223771e-12, 1.20223771e-12, 1.20223771e-12,
6.76403932e-11, 6.76403932e-11, 6.76403932e-11, 6.76403932e-11,
2.53837542e-09, 2.53837542e-09, 2.53837542e-09, 2.53837542e-09,
6.79851771e-08, 6.79851771e-08, 6.79851771e-08, 6.79851771e-08,
1.35400957e-06, 1.35400957e-06, 1.35400957e-06, 1.35400957e-06,
2.05807406e-05, 2.05807406e-05, 2.05807406e-05, 2.05807406e-05,
2.42573789e-04, 2.42573789e-04, 2.42573789e-04, 2.42573789e-04,
2.23546366e-03, 2.23546366e-03, 2.23546366e-03, 2.23546366e-03,
1.61374184e-02, 1.61374184e-02, 1.61374184e-02, 1.61374184e-02,
9.09392120e-02, 9.09392120e-02, 9.09392120e-02, 9.09392120e-02,
3.97807519e-01, 3.97807519e-01, 3.97807519e-01, 3.97807519e-01,
1.34962483e+00, 1.34962483e+00, 1.34962483e+00, 1.34962483e+00,
3.59635188e+00, 3.59635188e+00, 3.59635188e+00, 3.59635188e+00,
7.76598011e+00, 7.76598011e+00, 7.76598011e+00, 7.76598011e+00,
1.32165654e+01, 1.32165654e+01, 1.32165654e+01, 1.32165654e+01,
1.80416341e+01, 1.80416341e+01, 1.80416341e+01, 1.80416341e+01,
2.21202361e+01, 2.21202361e+01, 2.21202361e+01, 2.21202361e+01,
1.94936742e+01, 1.94936742e+01, 1.94936742e+01, 1.94936742e+01,
1.19370184e+01, 1.19370184e+01, 1.19370184e+01, 1.19370184e+01,
1.76105690e+00, 1.76105690e+00, 1.76105690e+00, 1.76105690e+00,
2.41795528e-02, 2.41795528e-02, 2.41795528e-02, 2.41795528e-02,
1.84851625e-05, 1.84851625e-05, 1.84851625e-05, 1.84851625e-05,
2.29350661e-09, 2.29350661e-09, 2.29350661e-09, 2.29350661e-09,
2.81251593e-13, 2.81251593e-13, 2.81251593e-13, 2.81251593e-13,
3.33754952e-17, 3.33754952e-17, 3.33754952e-17, 3.33754952e-17,
3.64817469e-21, 3.64817469e-21, 3.64817469e-21, 3.64817469e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999949e+02, 9.99999949e+02, 9.99999949e+02, 9.99999949e+02,
9.99999230e+02, 9.99999230e+02, 9.99999230e+02, 9.99999230e+02,
9.99990924e+02, 9.99990924e+02, 9.99990924e+02, 9.99990924e+02,
9.99916362e+02, 9.99916362e+02, 9.99916362e+02, 9.99916362e+02,
9.99396422e+02, 9.99396422e+02, 9.99396422e+02, 9.99396422e+02,
9.96603842e+02, 9.96603842e+02, 9.96603842e+02, 9.96603842e+02,
9.85228286e+02, 9.85228286e+02, 9.85228286e+02, 9.85228286e+02,
9.50716061e+02, 9.50716061e+02, 9.50716061e+02, 9.50716061e+02,
8.73656108e+02, 8.73656108e+02, 8.73656108e+02, 8.73656108e+02,
7.45930207e+02, 7.45930207e+02, 7.45930207e+02, 7.45930207e+02,
5.98241504e+02, 5.98241504e+02, 5.98241504e+02, 5.98241504e+02,
4.88987461e+02, 4.88987461e+02, 4.88987461e+02, 4.88987461e+02,
4.47945739e+02, 4.47945739e+02, 4.47945739e+02, 4.47945739e+02,
4.21683465e+02, 4.21683465e+02, 4.21683465e+02, 4.21683465e+02,
1.87467920e+02, 1.87467920e+02, 1.87467920e+02, 1.87467920e+02,
9.17847574e+00, 9.17847574e+00, 9.17847574e+00, 9.17847574e+00,
3.36232559e-02, 3.36232559e-02, 3.36232559e-02, 3.36232559e-02,
1.00022223e-02, 1.00022223e-02, 1.00022223e-02, 1.00022223e-02,
1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999992, 0.99999992, 0.99999992, 0.99999992,
0.99999906, 0.99999906, 0.99999906, 0.99999906, 0.9999913 ,
0.9999913 , 0.9999913 , 0.9999913 , 0.99993411, 0.99993411,
0.99993411, 0.99993411, 0.99959236, 0.99959236, 0.99959236,
0.99959236, 0.99795381, 0.99795381, 0.99795381, 0.99795381,
0.99173747, 0.99173747, 0.99173747, 0.99173747, 0.97334866,
0.97334866, 0.97334866, 0.97334866, 0.93132225, 0.93132225,
0.93132225, 0.93132225, 0.85670103, 0.85670103, 0.85670103,
0.85670103, 0.75179519, 0.75179519, 0.75179519, 0.75179519,
0.65703686, 0.65703686, 0.65703686, 0.65703686, 0.54101531,
0.54101531, 0.54101531, 0.54101531, 0.58205108, 0.58205108,
0.58205108, 0.58205108, 1.1130807 , 1.1130807 , 1.1130807 ,
1.1130807 , 1.96862265, 1.96862265, 1.96862265, 1.96862265,
1.57590593, 1.57590593, 1.57590593, 1.57590593, 1.05786987,
1.05786987, 1.05786987, 1.05786987, 1.00204055, 1.00204055,
1.00204055, 1.00204055, 1.0000019 , 1.0000019 , 1.0000019 ,
1.0000019 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.32029549e-14, 1.32029549e-14, 1.32029549e-14, 1.32029549e-14,
6.26759693e-13, 6.26759693e-13, 6.26759693e-13, 6.26759693e-13,
2.24647978e-11, 2.24647978e-11, 2.24647978e-11, 2.24647978e-11,
6.13853404e-10, 6.13853404e-10, 6.13853404e-10, 6.13853404e-10,
1.31518549e-08, 1.31518549e-08, 1.31518549e-08, 1.31518549e-08,
2.25105226e-07, 2.25105226e-07, 2.25105226e-07, 2.25105226e-07,
3.11704412e-06, 3.11704412e-06, 3.11704412e-06, 3.11704412e-06,
3.51988240e-05, 3.51988240e-05, 3.51988240e-05, 3.51988240e-05,
3.25473435e-04, 3.25473435e-04, 3.25473435e-04, 3.25473435e-04,
2.46554838e-03, 2.46554838e-03, 2.46554838e-03, 2.46554838e-03,
1.52545971e-02, 1.52545971e-02, 1.52545971e-02, 1.52545971e-02,
7.66123068e-02, 7.66123068e-02, 7.66123068e-02, 7.66123068e-02,
3.10021140e-01, 3.10021140e-01, 3.10021140e-01, 3.10021140e-01,
1.00682526e+00, 1.00682526e+00, 1.00682526e+00, 1.00682526e+00,
2.63965332e+00, 2.63965332e+00, 2.63965332e+00, 2.63965332e+00,
5.70034900e+00, 5.70034900e+00, 5.70034900e+00, 5.70034900e+00,
1.04061053e+01, 1.04061053e+01, 1.04061053e+01, 1.04061053e+01,
1.52105883e+01, 1.52105883e+01, 1.52105883e+01, 1.52105883e+01,
1.89069479e+01, 1.89069479e+01, 1.89069479e+01, 1.89069479e+01,
2.15955068e+01, 2.15955068e+01, 2.15955068e+01, 2.15955068e+01,
2.04770440e+01, 2.04770440e+01, 2.04770440e+01, 2.04770440e+01,
1.67010242e+01, 1.67010242e+01, 1.67010242e+01, 1.67010242e+01,
6.26776546e+00, 6.26776546e+00, 6.26776546e+00, 6.26776546e+00,
2.93122578e-01, 2.93122578e-01, 2.93122578e-01, 2.93122578e-01,
1.07322557e-03, 1.07322557e-03, 1.07322557e-03, 1.07322557e-03,
2.25735626e-07, 2.25735626e-07, 2.25735626e-07, 2.25735626e-07,
2.90996976e-11, 2.90996976e-11, 2.90996976e-11, 2.90996976e-11,
3.74345106e-15, 3.74345106e-15, 3.74345106e-15, 3.74345106e-15,
4.59216061e-19, 4.59216061e-19, 4.59216061e-19, 4.59216061e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999883e+02, 9.99999883e+02, 9.99999883e+02, 9.99999883e+02,
9.99998683e+02, 9.99998683e+02, 9.99998683e+02, 9.99998683e+02,
9.99987822e+02, 9.99987822e+02, 9.99987822e+02, 9.99987822e+02,
9.99907753e+02, 9.99907753e+02, 9.99907753e+02, 9.99907753e+02,
9.99429417e+02, 9.99429417e+02, 9.99429417e+02, 9.99429417e+02,
9.97137849e+02, 9.97137849e+02, 9.97137849e+02, 9.97137849e+02,
9.88467410e+02, 9.88467410e+02, 9.88467410e+02, 9.88467410e+02,
9.63001130e+02, 9.63001130e+02, 9.63001130e+02, 9.63001130e+02,
9.05679035e+02, 9.05679035e+02, 9.05679035e+02, 9.05679035e+02,
8.06647957e+02, 8.06647957e+02, 8.06647957e+02, 8.06647957e+02,
6.73299670e+02, 6.73299670e+02, 6.73299670e+02, 6.73299670e+02,
5.52322864e+02, 5.52322864e+02, 5.52322864e+02, 5.52322864e+02,
4.63896638e+02, 4.63896638e+02, 4.63896638e+02, 4.63896638e+02,
4.40267965e+02, 4.40267965e+02, 4.40267965e+02, 4.40267965e+02,
4.55404885e+02, 4.55404885e+02, 4.55404885e+02, 4.55404885e+02,
3.30608875e+02, 3.30608875e+02, 3.30608875e+02, 3.30608875e+02,
6.09057285e+01, 6.09057285e+01, 6.09057285e+01, 6.09057285e+01,
7.84789333e-01, 7.84789333e-01, 7.84789333e-01, 7.84789333e-01,
1.03005361e-02, 1.03005361e-02, 1.03005361e-02, 1.03005361e-02,
1.00000267e-02, 1.00000267e-02, 1.00000267e-02, 1.00000267e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999871, 0.99999871, 0.99999871, 0.99999871,
0.99998991, 0.99998991, 0.99998991, 0.99998991, 0.99993341,
0.99993341, 0.99993341, 0.99993341, 0.9996311 , 0.9996311 ,
0.9996311 , 0.9996311 , 0.99829672, 0.99829672, 0.99829672,
0.99829672, 0.99350175, 0.99350175, 0.99350175, 0.99350175,
0.97967166, 0.97967166, 0.97967166, 0.97967166, 0.94797565,
0.94797565, 0.94797565, 0.94797565, 0.89016937, 0.89016937,
0.89016937, 0.89016937, 0.80411713, 0.80411713, 0.80411713,
0.80411713, 0.70435588, 0.70435588, 0.70435588, 0.70435588,
0.63219176, 0.63219176, 0.63219176, 0.63219176, 0.53878399,
0.53878399, 0.53878399, 0.53878399, 0.55643947, 0.55643947,
0.55643947, 0.55643947, 0.8772511 , 0.8772511 , 0.8772511 ,
0.8772511 , 1.82224154, 1.82224154, 1.82224154, 1.82224154,
2.01854416, 2.01854416, 2.01854416, 2.01854416, 1.22314586,
1.22314586, 1.22314586, 1.22314586, 1.01361896, 1.01361896,
1.01361896, 1.01361896, 1.00014201, 1.00014201, 1.00014201,
1.00014201, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.66827014e-15, 5.66827014e-15, 5.66827014e-15, 5.66827014e-15,
2.06506951e-13, 2.06506951e-13, 2.06506951e-13, 2.06506951e-13,
5.66830764e-12, 5.66830764e-12, 5.66830764e-12, 5.66830764e-12,
1.27515789e-10, 1.27515789e-10, 1.27515789e-10, 1.27515789e-10,
2.36717323e-09, 2.36717323e-09, 2.36717323e-09, 2.36717323e-09,
3.66285384e-08, 3.66285384e-08, 3.66285384e-08, 3.66285384e-08,
4.75793331e-07, 4.75793331e-07, 4.75793331e-07, 4.75793331e-07,
5.21185121e-06, 5.21185121e-06, 5.21185121e-06, 5.21185121e-06,
4.82519858e-05, 4.82519858e-05, 4.82519858e-05, 4.82519858e-05,
3.77579977e-04, 3.77579977e-04, 3.77579977e-04, 3.77579977e-04,
2.49179255e-03, 2.49179255e-03, 2.49179255e-03, 2.49179255e-03,
1.38047063e-02, 1.38047063e-02, 1.38047063e-02, 1.38047063e-02,
6.37665597e-02, 6.37665597e-02, 6.37665597e-02, 6.37665597e-02,
2.43683102e-01, 2.43683102e-01, 2.43683102e-01, 2.43683102e-01,
7.66223944e-01, 7.66223944e-01, 7.66223944e-01, 7.66223944e-01,
1.98617391e+00, 1.98617391e+00, 1.98617391e+00, 1.98617391e+00,
4.30205955e+00, 4.30205955e+00, 4.30205955e+00, 4.30205955e+00,
8.00059653e+00, 8.00059653e+00, 8.00059653e+00, 8.00059653e+00,
1.25346822e+01, 1.25346822e+01, 1.25346822e+01, 1.25346822e+01,
1.68111435e+01, 1.68111435e+01, 1.68111435e+01, 1.68111435e+01,
1.95788515e+01, 1.95788515e+01, 1.95788515e+01, 1.95788515e+01,
2.10731533e+01, 2.10731533e+01, 2.10731533e+01, 2.10731533e+01,
2.05578258e+01, 2.05578258e+01, 2.05578258e+01, 2.05578258e+01,
1.90079024e+01, 1.90079024e+01, 1.90079024e+01, 1.90079024e+01,
1.21008552e+01, 1.21008552e+01, 1.21008552e+01, 1.21008552e+01,
1.89958249e+00, 1.89958249e+00, 1.89958249e+00, 1.89958249e+00,
2.69248743e-02, 2.69248743e-02, 2.69248743e-02, 2.69248743e-02,
2.23176477e-05, 2.23176477e-05, 2.23176477e-05, 2.23176477e-05,
2.89290650e-09, 2.89290650e-09, 2.89290650e-09, 2.89290650e-09,
3.71325919e-13, 3.71325919e-13, 3.71325919e-13, 3.71325919e-13,
4.73822364e-17, 4.73822364e-17, 4.73822364e-17, 4.73822364e-17,
4.48577786e-21, 4.48577786e-21, 4.48577786e-21, 4.48577786e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999982e+02, 9.99999982e+02, 9.99999982e+02, 9.99999982e+02,
9.99999805e+02, 9.99999805e+02, 9.99999805e+02, 9.99999805e+02,
9.99998195e+02, 9.99998195e+02, 9.99998195e+02, 9.99998195e+02,
9.99985872e+02, 9.99985872e+02, 9.99985872e+02, 9.99985872e+02,
9.99906771e+02, 9.99906771e+02, 9.99906771e+02, 9.99906771e+02,
9.99483625e+02, 9.99483625e+02, 9.99483625e+02, 9.99483625e+02,
9.97617059e+02, 9.97617059e+02, 9.97617059e+02, 9.97617059e+02,
9.90923338e+02, 9.90923338e+02, 9.90923338e+02, 9.90923338e+02,
9.71719329e+02, 9.71719329e+02, 9.71719329e+02, 9.71719329e+02,
9.28208660e+02, 9.28208660e+02, 9.28208660e+02, 9.28208660e+02,
8.50492018e+02, 8.50492018e+02, 8.50492018e+02, 8.50492018e+02,
7.38645328e+02, 7.38645328e+02, 7.38645328e+02, 7.38645328e+02,
6.14927640e+02, 6.14927640e+02, 6.14927640e+02, 6.14927640e+02,
5.21794916e+02, 5.21794916e+02, 5.21794916e+02, 5.21794916e+02,
4.51902595e+02, 4.51902595e+02, 4.51902595e+02, 4.51902595e+02,
4.36518666e+02, 4.36518666e+02, 4.36518666e+02, 4.36518666e+02,
4.58585341e+02, 4.58585341e+02, 4.58585341e+02, 4.58585341e+02,
4.14979500e+02, 4.14979500e+02, 4.14979500e+02, 4.14979500e+02,
1.85583423e+02, 1.85583423e+02, 1.85583423e+02, 1.85583423e+02,
9.86901789e+00, 9.86901789e+00, 9.86901789e+00, 9.86901789e+00,
3.72214496e-02, 3.72214496e-02, 3.72214496e-02, 3.72214496e-02,
1.00026945e-02, 1.00026945e-02, 1.00026945e-02, 1.00026945e-02,
1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999981, 0.99999981,
0.99999981, 0.99999981, 0.99999845, 0.99999845, 0.99999845,
0.99999845, 0.99998928, 0.99998928, 0.99998928, 0.99998928,
0.9999362 , 0.9999362 , 0.9999362 , 0.9999362 , 0.99967491,
0.99967491, 0.99967491, 0.99967491, 0.99859164, 0.99859164,
0.99859164, 0.99859164, 0.99485567, 0.99485567, 0.99485567,
0.99485567, 0.98427987, 0.98427987, 0.98427987, 0.98427987,
0.95996373, 0.95996373, 0.95996373, 0.95996373, 0.91464439,
0.91464439, 0.91464439, 0.91464439, 0.8452093 , 0.8452093 ,
0.8452093 , 0.8452093 , 0.75573999, 0.75573999, 0.75573999,
0.75573999, 0.66831355, 0.66831355, 0.66831355, 0.66831355,
0.61265528, 0.61265528, 0.61265528, 0.61265528, 0.54245435,
0.54245435, 0.54245435, 0.54245435, 0.54720556, 0.54720556,
0.54720556, 0.54720556, 0.73287 , 0.73287 , 0.73287 ,
0.73287 , 1.49708567, 1.49708567, 1.49708567, 1.49708567,
2.23159213, 2.23159213, 2.23159213, 2.23159213, 1.65090941,
1.65090941, 1.65090941, 1.65090941, 1.06180375, 1.06180375,
1.06180375, 1.06180375, 1.00222479, 1.00222479, 1.00222479,
1.00222479, 1.00000228, 1.00000228, 1.00000228, 1.00000228,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.18160649e-15, 1.18160649e-15, 1.18160649e-15, 1.18160649e-15,
5.46295183e-14, 5.46295183e-14, 5.46295183e-14, 5.46295183e-14,
1.23457577e-12, 1.23457577e-12, 1.23457577e-12, 1.23457577e-12,
2.43162832e-11, 2.43162832e-11, 2.43162832e-11, 2.43162832e-11,
4.08347672e-10, 4.08347672e-10, 4.08347672e-10, 4.08347672e-10,
5.88078054e-09, 5.88078054e-09, 5.88078054e-09, 5.88078054e-09,
7.29422461e-08, 7.29422461e-08, 7.29422461e-08, 7.29422461e-08,
7.81392346e-07, 7.81392346e-07, 7.81392346e-07, 7.81392346e-07,
7.23903884e-06, 7.23903884e-06, 7.23903884e-06, 7.23903884e-06,
5.79920652e-05, 5.79920652e-05, 5.79920652e-05, 5.79920652e-05,
4.01085979e-04, 4.01085979e-04, 4.01085979e-04, 4.01085979e-04,
2.38716000e-03, 2.38716000e-03, 2.38716000e-03, 2.38716000e-03,
1.21649982e-02, 1.21649982e-02, 1.21649982e-02, 1.21649982e-02,
5.27208845e-02, 5.27208845e-02, 5.27208845e-02, 5.27208845e-02,
1.92824879e-01, 1.92824879e-01, 1.92824879e-01, 1.92824879e-01,
5.91551803e-01, 5.91551803e-01, 5.91551803e-01, 5.91551803e-01,
1.52124836e+00, 1.52124836e+00, 1.52124836e+00, 1.52124836e+00,
3.30736543e+00, 3.30736543e+00, 3.30736543e+00, 3.30736543e+00,
6.19589413e+00, 6.19589413e+00, 6.19589413e+00, 6.19589413e+00,
1.02215292e+01, 1.02215292e+01, 1.02215292e+01, 1.02215292e+01,
1.42224996e+01, 1.42224996e+01, 1.42224996e+01, 1.42224996e+01,
1.79365451e+01, 1.79365451e+01, 1.79365451e+01, 1.79365451e+01,
2.00798991e+01, 2.00798991e+01, 2.00798991e+01, 2.00798991e+01,
2.07710129e+01, 2.07710129e+01, 2.07710129e+01, 2.07710129e+01,
2.03738724e+01, 2.03738724e+01, 2.03738724e+01, 2.03738724e+01,
1.98546337e+01, 1.98546337e+01, 1.98546337e+01, 1.98546337e+01,
1.64879617e+01, 1.64879617e+01, 1.64879617e+01, 1.64879617e+01,
6.52271251e+00, 6.52271251e+00, 6.52271251e+00, 6.52271251e+00,
3.18021766e-01, 3.18021766e-01, 3.18021766e-01, 3.18021766e-01,
1.23367760e-03, 1.23367760e-03, 1.23367760e-03, 1.23367760e-03,
2.70934864e-07, 2.70934864e-07, 2.70934864e-07, 2.70934864e-07,
3.52019501e-11, 3.52019501e-11, 3.52019501e-11, 3.52019501e-11,
4.64992921e-15, 4.64992921e-15, 4.64992921e-15, 4.64992921e-15,
6.02331549e-19, 6.02331549e-19, 6.02331549e-19, 6.02331549e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999971e+02, 9.99999971e+02, 9.99999971e+02, 9.99999971e+02,
9.99999729e+02, 9.99999729e+02, 9.99999729e+02, 9.99999729e+02,
9.99997830e+02, 9.99997830e+02, 9.99997830e+02, 9.99997830e+02,
9.99984993e+02, 9.99984993e+02, 9.99984993e+02, 9.99984993e+02,
9.99910685e+02, 9.99910685e+02, 9.99910685e+02, 9.99910685e+02,
9.99544941e+02, 9.99544941e+02, 9.99544941e+02, 9.99544941e+02,
9.98029370e+02, 9.98029370e+02, 9.98029370e+02, 9.98029370e+02,
9.92810695e+02, 9.92810695e+02, 9.92810695e+02, 9.92810695e+02,
9.78097477e+02, 9.78097477e+02, 9.78097477e+02, 9.78097477e+02,
9.44564417e+02, 9.44564417e+02, 9.44564417e+02, 9.44564417e+02,
8.83069293e+02, 8.83069293e+02, 8.83069293e+02, 8.83069293e+02,
7.91287043e+02, 7.91287043e+02, 7.91287043e+02, 7.91287043e+02,
6.77341634e+02, 6.77341634e+02, 6.77341634e+02, 6.77341634e+02,
5.71866254e+02, 5.71866254e+02, 5.71866254e+02, 5.71866254e+02,
4.98838482e+02, 4.98838482e+02, 4.98838482e+02, 4.98838482e+02,
4.47748470e+02, 4.47748470e+02, 4.47748470e+02, 4.47748470e+02,
4.36925122e+02, 4.36925122e+02, 4.36925122e+02, 4.36925122e+02,
4.54783175e+02, 4.54783175e+02, 4.54783175e+02, 4.54783175e+02,
4.45896460e+02, 4.45896460e+02, 4.45896460e+02, 4.45896460e+02,
3.20411762e+02, 3.20411762e+02, 3.20411762e+02, 3.20411762e+02,
6.15900758e+01, 6.15900758e+01, 6.15900758e+01, 6.15900758e+01,
8.63421907e-01, 8.63421907e-01, 8.63421907e-01, 8.63421907e-01,
1.03623773e-02, 1.03623773e-02, 1.03623773e-02, 1.03623773e-02,
1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999976,
0.99999976, 0.99999976, 0.99999976, 0.99999829, 0.99999829,
0.99999829, 0.99999829, 0.99998925, 0.99998925, 0.99998925,
0.99998925, 0.99994097, 0.99994097, 0.99994097, 0.99994097,
0.99971837, 0.99971837, 0.99971837, 0.99971837, 0.99883983,
0.99883983, 0.99883983, 0.99883983, 0.99590578, 0.99590578,
0.99590578, 0.99590578, 0.98771715, 0.98771715, 0.98771715,
0.98771715, 0.9688216 , 0.9688216 , 0.9688216 , 0.9688216 ,
0.93291927, 0.93291927, 0.93291927, 0.93291927, 0.87626891,
0.87626891, 0.87626891, 0.87626891, 0.79977768, 0.79977768,
0.79977768, 0.79977768, 0.71616692, 0.71616692, 0.71616692,
0.71616692, 0.6411649 , 0.6411649 , 0.6411649 , 0.6411649 ,
0.59775517, 0.59775517, 0.59775517, 0.59775517, 0.54673392,
0.54673392, 0.54673392, 0.54673392, 0.54631056, 0.54631056,
0.54631056, 0.54631056, 0.65073939, 0.65073939, 0.65073939,
0.65073939, 1.1624501 , 1.1624501 , 1.1624501 , 1.1624501 ,
2.15930703, 2.15930703, 2.15930703, 2.15930703, 2.16998 ,
2.16998 , 2.16998 , 2.16998 , 1.23507778, 1.23507778,
1.23507778, 1.23507778, 1.0142605 , 1.0142605 , 1.0142605 ,
1.0142605 , 1.00015687, 1.00015687, 1.00015687, 1.00015687,
1.00000003, 1.00000003, 1.00000003, 1.00000003, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.27454384e-14, 1.27454384e-14, 1.27454384e-14, 1.27454384e-14,
2.47272091e-13, 2.47272091e-13, 2.47272091e-13, 2.47272091e-13,
4.40240671e-12, 4.40240671e-12, 4.40240671e-12, 4.40240671e-12,
6.86645339e-11, 6.86645339e-11, 6.86645339e-11, 6.86645339e-11,
9.37022264e-10, 9.37022264e-10, 9.37022264e-10, 9.37022264e-10,
1.12236099e-08, 1.12236099e-08, 1.12236099e-08, 1.12236099e-08,
1.18207072e-07, 1.18207072e-07, 1.18207072e-07, 1.18207072e-07,
1.09557226e-06, 1.09557226e-06, 1.09557226e-06, 1.09557226e-06,
8.93418660e-06, 8.93418660e-06, 8.93418660e-06, 8.93418660e-06,
6.40278059e-05, 6.40278059e-05, 6.40278059e-05, 6.40278059e-05,
4.02322799e-04, 4.02322799e-04, 4.02322799e-04, 4.02322799e-04,
2.20855552e-03, 2.20855552e-03, 2.20855552e-03, 2.20855552e-03,
1.05384211e-02, 1.05384211e-02, 1.05384211e-02, 1.05384211e-02,
4.34263931e-02, 4.34263931e-02, 4.34263931e-02, 4.34263931e-02,
1.53409739e-01, 1.53409739e-01, 1.53409739e-01, 1.53409739e-01,
4.61635401e-01, 4.61635401e-01, 4.61635401e-01, 4.61635401e-01,
1.18057615e+00, 1.18057615e+00, 1.18057615e+00, 1.18057615e+00,
2.57891597e+00, 2.57891597e+00, 2.57891597e+00, 2.57891597e+00,
4.88068740e+00, 4.88068740e+00, 4.88068740e+00, 4.88068740e+00,
8.19631338e+00, 8.19631338e+00, 8.19631338e+00, 8.19631338e+00,
1.20755557e+01, 1.20755557e+01, 1.20755557e+01, 1.20755557e+01,
1.56119331e+01, 1.56119331e+01, 1.56119331e+01, 1.56119331e+01,
1.86987153e+01, 1.86987153e+01, 1.86987153e+01, 1.86987153e+01,
2.03804546e+01, 2.03804546e+01, 2.03804546e+01, 2.03804546e+01,
2.06321628e+01, 2.06321628e+01, 2.06321628e+01, 2.06321628e+01,
2.02171402e+01, 2.02171402e+01, 2.02171402e+01, 2.02171402e+01,
2.00646475e+01, 2.00646475e+01, 2.00646475e+01, 2.00646475e+01,
1.86620483e+01, 1.86620483e+01, 1.86620483e+01, 1.86620483e+01,
1.20985558e+01, 1.20985558e+01, 1.20985558e+01, 1.20985558e+01,
1.97692771e+00, 1.97692771e+00, 1.97692771e+00, 1.97692771e+00,
2.87213238e-02, 2.87213238e-02, 2.87213238e-02, 2.87213238e-02,
2.50770351e-05, 2.50770351e-05, 2.50770351e-05, 2.50770351e-05,
3.37123734e-09, 3.37123734e-09, 3.37123734e-09, 3.37123734e-09,
4.42163288e-13, 4.42163288e-13, 4.42163288e-13, 4.42163288e-13,
5.71495239e-17, 5.71495239e-17, 5.71495239e-17, 5.71495239e-17,
4.50269287e-21, 4.50269287e-21, 4.50269287e-21, 4.50269287e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
9.99999666e+02, 9.99999666e+02, 9.99999666e+02, 9.99999666e+02,
9.99997604e+02, 9.99997604e+02, 9.99997604e+02, 9.99997604e+02,
9.99984947e+02, 9.99984947e+02, 9.99984947e+02, 9.99984947e+02,
9.99917367e+02, 9.99917367e+02, 9.99917367e+02, 9.99917367e+02,
9.99605771e+02, 9.99605771e+02, 9.99605771e+02, 9.99605771e+02,
9.98376476e+02, 9.98376476e+02, 9.98376476e+02, 9.98376476e+02,
9.94276002e+02, 9.94276002e+02, 9.94276002e+02, 9.94276002e+02,
9.82867864e+02, 9.82867864e+02, 9.82867864e+02, 9.82867864e+02,
9.56722442e+02, 9.56722442e+02, 9.56722442e+02, 9.56722442e+02,
9.07673554e+02, 9.07673554e+02, 9.07673554e+02, 9.07673554e+02,
8.31875435e+02, 8.31875435e+02, 8.31875435e+02, 8.31875435e+02,
7.32668167e+02, 7.32668167e+02, 7.32668167e+02, 7.32668167e+02,
6.27675900e+02, 6.27675900e+02, 6.27675900e+02, 6.27675900e+02,
5.40641296e+02, 5.40641296e+02, 5.40641296e+02, 5.40641296e+02,
4.81411714e+02, 4.81411714e+02, 4.81411714e+02, 4.81411714e+02,
4.46388141e+02, 4.46388141e+02, 4.46388141e+02, 4.46388141e+02,
4.39501351e+02, 4.39501351e+02, 4.39501351e+02, 4.39501351e+02,
4.52157297e+02, 4.52157297e+02, 4.52157297e+02, 4.52157297e+02,
4.52775903e+02, 4.52775903e+02, 4.52775903e+02, 4.52775903e+02,
4.01828833e+02, 4.01828833e+02, 4.01828833e+02, 4.01828833e+02,
1.79447659e+02, 1.79447659e+02, 1.79447659e+02, 1.79447659e+02,
1.01968433e+01, 1.01968433e+01, 1.01968433e+01, 1.01968433e+01,
3.95481482e-02, 3.95481482e-02, 3.95481482e-02, 3.95481482e-02,
1.00030400e-02, 1.00030400e-02, 1.00030400e-02, 1.00030400e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999973, 0.99999973, 0.99999973, 0.99999973, 0.99999822,
0.99999822, 0.99999822, 0.99999822, 0.99998963, 0.99998963,
0.99998963, 0.99998963, 0.99994668, 0.99994668, 0.99994668,
0.99994668, 0.99975882, 0.99975882, 0.99975882, 0.99975882,
0.99904627, 0.99904627, 0.99904627, 0.99904627, 0.99672714,
0.99672714, 0.99672714, 0.99672714, 0.99032541, 0.99032541,
0.99032541, 0.99032541, 0.97549498, 0.97549498, 0.97549498,
0.97549498, 0.94682189, 0.94682189, 0.94682189, 0.94682189,
0.90035943, 0.90035943, 0.90035943, 0.90035943, 0.83595399,
0.83595399, 0.83595399, 0.83595399, 0.75816608, 0.75816608,
0.75816608, 0.75816608, 0.68548506, 0.68548506, 0.68548506,
0.68548506, 0.6201578 , 0.6201578 , 0.6201578 , 0.6201578 ,
0.58688385, 0.58688385, 0.58688385, 0.58688385, 0.55035053,
0.55035053, 0.55035053, 0.55035053, 0.54815759, 0.54815759,
0.54815759, 0.54815759, 0.6060835 , 0.6060835 , 0.6060835 ,
0.6060835 , 0.93361729, 0.93361729, 0.93361729, 0.93361729,
1.87007459, 1.87007459, 1.87007459, 1.87007459, 2.43252002,
2.43252002, 2.43252002, 2.43252002, 1.69813853, 1.69813853,
1.69813853, 1.69813853, 1.06363124, 1.06363124, 1.06363124,
1.06363124, 1.00230929, 1.00230929, 1.00230929, 1.00230929,
1.00000249, 1.00000249, 1.00000249, 1.00000249, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.17918877e-15, 1.17918877e-15, 1.17918877e-15, 1.17918877e-15,
4.63192568e-14, 4.63192568e-14, 4.63192568e-14, 4.63192568e-14,
7.72269119e-13, 7.72269119e-13, 7.72269119e-13, 7.72269119e-13,
1.13606117e-11, 1.13606117e-11, 1.13606117e-11, 1.13606117e-11,
1.48668973e-10, 1.48668973e-10, 1.48668973e-10, 1.48668973e-10,
1.73273478e-09, 1.73273478e-09, 1.73273478e-09, 1.73273478e-09,
1.80065644e-08, 1.80065644e-08, 1.80065644e-08, 1.80065644e-08,
1.66938246e-07, 1.66938246e-07, 1.66938246e-07, 1.66938246e-07,
1.38047343e-06, 1.38047343e-06, 1.38047343e-06, 1.38047343e-06,
1.01730358e-05, 1.01730358e-05, 1.01730358e-05, 1.01730358e-05,
6.66926861e-05, 6.66926861e-05, 6.66926861e-05, 6.66926861e-05,
3.87946266e-04, 3.87946266e-04, 3.87946266e-04, 3.87946266e-04,
1.99495582e-03, 1.99495582e-03, 1.99495582e-03, 1.99495582e-03,
9.02485988e-03, 9.02485988e-03, 9.02485988e-03, 9.02485988e-03,
3.56969786e-02, 3.56969786e-02, 3.56969786e-02, 3.56969786e-02,
1.22599309e-01, 1.22599309e-01, 1.22599309e-01, 1.22599309e-01,
3.63265196e-01, 3.63265196e-01, 3.63265196e-01, 3.63265196e-01,
9.25486637e-01, 9.25486637e-01, 9.25486637e-01, 9.25486637e-01,
2.03251679e+00, 2.03251679e+00, 2.03251679e+00, 2.03251679e+00,
3.88754026e+00, 3.88754026e+00, 3.88754026e+00, 3.88754026e+00,
6.59692847e+00, 6.59692847e+00, 6.59692847e+00, 6.59692847e+00,
1.00916624e+01, 1.00916624e+01, 1.00916624e+01, 1.00916624e+01,
1.36128329e+01, 1.36128329e+01, 1.36128329e+01, 1.36128329e+01,
1.67200615e+01, 1.67200615e+01, 1.67200615e+01, 1.67200615e+01,
1.92196842e+01, 1.92196842e+01, 1.92196842e+01, 1.92196842e+01,
2.05019813e+01, 2.05019813e+01, 2.05019813e+01, 2.05019813e+01,
2.05553746e+01, 2.05553746e+01, 2.05553746e+01, 2.05553746e+01,
2.01200849e+01, 2.01200849e+01, 2.01200849e+01, 2.01200849e+01,
2.00852609e+01, 2.00852609e+01, 2.00852609e+01, 2.00852609e+01,
1.95505845e+01, 1.95505845e+01, 1.95505845e+01, 1.95505845e+01,
1.62261910e+01, 1.62261910e+01, 1.62261910e+01, 1.62261910e+01,
6.54866545e+00, 6.54866545e+00, 6.54866545e+00, 6.54866545e+00,
3.24170699e-01, 3.24170699e-01, 3.24170699e-01, 3.24170699e-01,
1.29707680e-03, 1.29707680e-03, 1.29707680e-03, 1.29707680e-03,
2.95706974e-07, 2.95706974e-07, 2.95706974e-07, 2.95706974e-07,
3.91707739e-11, 3.91707739e-11, 3.91707739e-11, 3.91707739e-11,
5.29501501e-15, 5.29501501e-15, 5.29501501e-15, 5.29501501e-15,
6.89647830e-19, 6.89647830e-19, 6.89647830e-19, 6.89647830e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999948e+02, 9.99999948e+02, 9.99999948e+02, 9.99999948e+02,
9.99999619e+02, 9.99999619e+02, 9.99999619e+02, 9.99999619e+02,
9.99997505e+02, 9.99997505e+02, 9.99997505e+02, 9.99997505e+02,
9.99985485e+02, 9.99985485e+02, 9.99985485e+02, 9.99985485e+02,
9.99925359e+02, 9.99925359e+02, 9.99925359e+02, 9.99925359e+02,
9.99662381e+02, 9.99662381e+02, 9.99662381e+02, 9.99662381e+02,
9.98665240e+02, 9.98665240e+02, 9.98665240e+02, 9.98665240e+02,
9.95422968e+02, 9.95422968e+02, 9.95422968e+02, 9.95422968e+02,
9.86494880e+02, 9.86494880e+02, 9.86494880e+02, 9.86494880e+02,
9.65922616e+02, 9.65922616e+02, 9.65922616e+02, 9.65922616e+02,
9.26549448e+02, 9.26549448e+02, 9.26549448e+02, 9.26549448e+02,
8.63811003e+02, 8.63811003e+02, 8.63811003e+02, 8.63811003e+02,
7.79005137e+02, 7.79005137e+02, 7.79005137e+02, 7.79005137e+02,
6.79897934e+02, 6.79897934e+02, 6.79897934e+02, 6.79897934e+02,
5.89818941e+02, 5.89818941e+02, 5.89818941e+02, 5.89818941e+02,
5.17012382e+02, 5.17012382e+02, 5.17012382e+02, 5.17012382e+02,
4.68673522e+02, 4.68673522e+02, 4.68673522e+02, 4.68673522e+02,
4.45586337e+02, 4.45586337e+02, 4.45586337e+02, 4.45586337e+02,
4.42497030e+02, 4.42497030e+02, 4.42497030e+02, 4.42497030e+02,
4.51096789e+02, 4.51096789e+02, 4.51096789e+02, 4.51096789e+02,
4.53476996e+02, 4.53476996e+02, 4.53476996e+02, 4.53476996e+02,
4.36824668e+02, 4.36824668e+02, 4.36824668e+02, 4.36824668e+02,
3.07120077e+02, 3.07120077e+02, 3.07120077e+02, 3.07120077e+02,
5.92749963e+01, 5.92749963e+01, 5.92749963e+01, 5.92749963e+01,
8.68726123e-01, 8.68726123e-01, 8.68726123e-01, 8.68726123e-01,
1.03848280e-02, 1.03848280e-02, 1.03848280e-02, 1.03848280e-02,
1.00000350e-02, 1.00000350e-02, 1.00000350e-02, 1.00000350e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999996, 0.99999996, 0.99999996,
0.99999996, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
0.99999822, 0.99999822, 0.99999822, 0.99999822, 0.99999028,
0.99999028, 0.99999028, 0.99999028, 0.99995266, 0.99995266,
0.99995266, 0.99995266, 0.99979512, 0.99979512, 0.99979512,
0.99979512, 0.99921684, 0.99921684, 0.99921684, 0.99921684,
0.99737403, 0.99737403, 0.99737403, 0.99737403, 0.9923308 ,
0.9923308 , 0.9923308 , 0.9923308 , 0.98059926, 0.98059926,
0.98059926, 0.98059926, 0.95755427, 0.95755427, 0.95755427,
0.95755427, 0.91927574, 0.91927574, 0.91927574, 0.91927574,
0.86476987, 0.86476987, 0.86476987, 0.86476987, 0.79618357,
0.79618357, 0.79618357, 0.79618357, 0.72306218, 0.72306218,
0.72306218, 0.72306218, 0.66150523, 0.66150523, 0.66150523,
0.66150523, 0.60422085, 0.60422085, 0.60422085, 0.60422085,
0.57924424, 0.57924424, 0.57924424, 0.57924424, 0.55336757,
0.55336757, 0.55336757, 0.55336757, 0.55041993, 0.55041993,
0.55041993, 0.55041993, 0.58277776, 0.58277776, 0.58277776,
0.58277776, 0.78662431, 0.78662431, 0.78662431, 0.78662431,
1.48769623, 1.48769623, 1.48769623, 1.48769623, 2.43758196,
2.43758196, 2.43758196, 2.43758196, 2.27678193, 2.27678193,
2.27678193, 2.27678193, 1.23532054, 1.23532054, 1.23532054,
1.23532054, 1.0142013 , 1.0142013 , 1.0142013 , 1.0142013 ,
1.00015564, 1.00015564, 1.00015564, 1.00015564, 1.00000003,
1.00000003, 1.00000003, 1.00000003, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
7.84780571e-15, 7.84780571e-15, 7.84780571e-15, 7.84780571e-15,
1.31247225e-13, 1.31247225e-13, 1.31247225e-13, 1.31247225e-13,
1.86099744e-12, 1.86099744e-12, 1.86099744e-12, 1.86099744e-12,
2.35229555e-11, 2.35229555e-11, 2.35229555e-11, 2.35229555e-11,
2.68230159e-10, 2.68230159e-10, 2.68230159e-10, 2.68230159e-10,
2.75761076e-09, 2.75761076e-09, 2.75761076e-09, 2.75761076e-09,
2.55719231e-08, 2.55719231e-08, 2.55719231e-08, 2.55719231e-08,
2.13858422e-07, 2.13858422e-07, 2.13858422e-07, 2.13858422e-07,
1.61179086e-06, 1.61179086e-06, 1.61179086e-06, 1.61179086e-06,
1.09330523e-05, 1.09330523e-05, 1.09330523e-05, 1.09330523e-05,
6.66147485e-05, 6.66147485e-05, 6.66147485e-05, 6.66147485e-05,
3.63590132e-04, 3.63590132e-04, 3.63590132e-04, 3.63590132e-04,
1.77131328e-03, 1.77131328e-03, 1.77131328e-03, 1.77131328e-03,
7.66654068e-03, 7.66654068e-03, 7.66654068e-03, 7.66654068e-03,
2.93110700e-02, 2.93110700e-02, 2.93110700e-02, 2.93110700e-02,
9.83453389e-02, 9.83453389e-02, 9.83453389e-02, 9.83453389e-02,
2.87757346e-01, 2.87757346e-01, 2.87757346e-01, 2.87757346e-01,
7.31271666e-01, 7.31271666e-01, 7.31271666e-01, 7.31271666e-01,
1.61513497e+00, 1.61513497e+00, 1.61513497e+00, 1.61513497e+00,
3.12319769e+00, 3.12319769e+00, 3.12319769e+00, 3.12319769e+00,
5.36427327e+00, 5.36427327e+00, 5.36427327e+00, 5.36427327e+00,
8.35732099e+00, 8.35732099e+00, 8.35732099e+00, 8.35732099e+00,
1.16892047e+01, 1.16892047e+01, 1.16892047e+01, 1.16892047e+01,
1.49052400e+01, 1.49052400e+01, 1.49052400e+01, 1.49052400e+01,
1.76214127e+01, 1.76214127e+01, 1.76214127e+01, 1.76214127e+01,
1.95882774e+01, 1.95882774e+01, 1.95882774e+01, 1.95882774e+01,
2.05031852e+01, 2.05031852e+01, 2.05031852e+01, 2.05031852e+01,
2.04829872e+01, 2.04829872e+01, 2.04829872e+01, 2.04829872e+01,
2.00863226e+01, 2.00863226e+01, 2.00863226e+01, 2.00863226e+01,
2.00679880e+01, 2.00679880e+01, 2.00679880e+01, 2.00679880e+01,
1.98869708e+01, 1.98869708e+01, 1.98869708e+01, 1.98869708e+01,
1.83990451e+01, 1.83990451e+01, 1.83990451e+01, 1.83990451e+01,
1.18973605e+01, 1.18973605e+01, 1.18973605e+01, 1.18973605e+01,
1.92593412e+00, 1.92593412e+00, 1.92593412e+00, 1.92593412e+00,
2.78926539e-02, 2.78926539e-02, 2.78926539e-02, 2.78926539e-02,
2.46303900e-05, 2.46303900e-05, 2.46303900e-05, 2.46303900e-05,
3.45965769e-09, 3.45965769e-09, 3.45965769e-09, 3.45965769e-09,
4.70814125e-13, 4.70814125e-13, 4.70814125e-13, 4.70814125e-13,
6.25944971e-17, 6.25944971e-17, 6.25944971e-17, 6.25944971e-17,
1.40917331e-20, 1.40917331e-20, 1.40917331e-20, 1.40917331e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999940e+02, 9.99999940e+02, 9.99999940e+02, 9.99999940e+02,
9.99999591e+02, 9.99999591e+02, 9.99999591e+02, 9.99999591e+02,
9.99997508e+02, 9.99997508e+02, 9.99997508e+02, 9.99997508e+02,
9.99986396e+02, 9.99986396e+02, 9.99986396e+02, 9.99986396e+02,
9.99933726e+02, 9.99933726e+02, 9.99933726e+02, 9.99933726e+02,
9.99713187e+02, 9.99713187e+02, 9.99713187e+02, 9.99713187e+02,
9.98903881e+02, 9.98903881e+02, 9.98903881e+02, 9.98903881e+02,
9.96326802e+02, 9.96326802e+02, 9.96326802e+02, 9.96326802e+02,
9.89287663e+02, 9.89287663e+02, 9.89287663e+02, 9.89287663e+02,
9.72982839e+02, 9.72982839e+02, 9.72982839e+02, 9.72982839e+02,
9.41213875e+02, 9.41213875e+02, 9.41213875e+02, 9.41213875e+02,
8.89161214e+02, 8.89161214e+02, 8.89161214e+02, 8.89161214e+02,
8.16557244e+02, 8.16557244e+02, 8.16557244e+02, 8.16557244e+02,
7.27792873e+02, 7.27792873e+02, 7.27792873e+02, 7.27792873e+02,
6.36091679e+02, 6.36091679e+02, 6.36091679e+02, 6.36091679e+02,
5.60608656e+02, 5.60608656e+02, 5.60608656e+02, 5.60608656e+02,
4.99456928e+02, 4.99456928e+02, 4.99456928e+02, 4.99456928e+02,
4.59916263e+02, 4.59916263e+02, 4.59916263e+02, 4.59916263e+02,
4.44832936e+02, 4.44832936e+02, 4.44832936e+02, 4.44832936e+02,
4.44855833e+02, 4.44855833e+02, 4.44855833e+02, 4.44855833e+02,
4.51329612e+02, 4.51329612e+02, 4.51329612e+02, 4.51329612e+02,
4.53075538e+02, 4.53075538e+02, 4.53075538e+02, 4.53075538e+02,
4.48914983e+02, 4.48914983e+02, 4.48914983e+02, 4.48914983e+02,
3.89344412e+02, 3.89344412e+02, 3.89344412e+02, 3.89344412e+02,
1.69288930e+02, 1.69288930e+02, 1.69288930e+02, 1.69288930e+02,
9.65027996e+00, 9.65027996e+00, 9.65027996e+00, 9.65027996e+00,
3.79449184e-02, 3.79449184e-02, 3.79449184e-02, 3.79449184e-02,
1.00029784e-02, 1.00029784e-02, 1.00029784e-02, 1.00029784e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.9999997 , 0.9999997 , 0.9999997 ,
0.9999997 , 0.99999828, 0.99999828, 0.99999828, 0.99999828,
0.99999108, 0.99999108, 0.99999108, 0.99999108, 0.9999585 ,
0.9999585 , 0.9999585 , 0.9999585 , 0.99982697, 0.99982697,
0.99982697, 0.99982697, 0.99935725, 0.99935725, 0.99935725,
0.99935725, 0.99788644, 0.99788644, 0.99788644, 0.99788644,
0.99388871, 0.99388871, 0.99388871, 0.99388871, 0.98455003,
0.98455003, 0.98455003, 0.98455003, 0.96593499, 0.96593499,
0.96593499, 0.96593499, 0.9342993 , 0.9342993 , 0.9342993 ,
0.9342993 , 0.88804292, 0.88804292, 0.88804292, 0.88804292,
0.82849089, 0.82849089, 0.82849089, 0.82849089, 0.75995557,
0.75995557, 0.75995557, 0.75995557, 0.6948101 , 0.6948101 ,
0.6948101 , 0.6948101 , 0.64178791, 0.64178791, 0.64178791,
0.64178791, 0.59207003, 0.59207003, 0.59207003, 0.59207003,
0.57419756, 0.57419756, 0.57419756, 0.57419756, 0.55596457,
0.55596457, 0.55596457, 0.55596457, 0.5528484 , 0.5528484 ,
0.5528484 , 0.5528484 , 0.57066328, 0.57066328, 0.57066328,
0.57066328, 0.69535413, 0.69535413, 0.69535413, 0.69535413,
1.17867884, 1.17867884, 1.17867884, 1.17867884, 2.21167836,
2.21167836, 2.21167836, 2.21167836, 2.60264521, 2.60264521,
2.60264521, 2.60264521, 1.7128863 , 1.7128863 , 1.7128863 ,
1.7128863 , 1.06202573, 1.06202573, 1.06202573, 1.06202573,
1.00220672, 1.00220672, 1.00220672, 1.00220672, 1.00000228,
1.00000228, 1.00000228, 1.00000228, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.82667535e-16, 5.82667535e-16, 5.82667535e-16, 5.82667535e-16,
2.37807029e-14, 2.37807029e-14, 2.37807029e-14, 2.37807029e-14,
3.03202404e-13, 3.03202404e-13, 3.03202404e-13, 3.03202404e-13,
3.71371250e-12, 3.71371250e-12, 3.71371250e-12, 3.71371250e-12,
4.16077225e-11, 4.16077225e-11, 4.16077225e-11, 4.16077225e-11,
4.24016982e-10, 4.24016982e-10, 4.24016982e-10, 4.24016982e-10,
3.93302512e-09, 3.93302512e-09, 3.93302512e-09, 3.93302512e-09,
3.32002473e-08, 3.32002473e-08, 3.32002473e-08, 3.32002473e-08,
2.54903725e-07, 2.54903725e-07, 2.54903725e-07, 2.54903725e-07,
1.77822075e-06, 1.77822075e-06, 1.77822075e-06, 1.77822075e-06,
1.12541158e-05, 1.12541158e-05, 1.12541158e-05, 1.12541158e-05,
6.44841773e-05, 6.44841773e-05, 6.44841773e-05, 6.44841773e-05,
3.33602038e-04, 3.33602038e-04, 3.33602038e-04, 3.33602038e-04,
1.55281901e-03, 1.55281901e-03, 1.55281901e-03, 1.55281901e-03,
6.47471971e-03, 6.47471971e-03, 6.47471971e-03, 6.47471971e-03,
2.40547896e-02, 2.40547896e-02, 2.40547896e-02, 2.40547896e-02,
7.91410207e-02, 7.91410207e-02, 7.91410207e-02, 7.91410207e-02,
2.29173025e-01, 2.29173025e-01, 2.29173025e-01, 2.29173025e-01,
5.81473724e-01, 5.81473724e-01, 5.81473724e-01, 5.81473724e-01,
1.29181150e+00, 1.29181150e+00, 1.29181150e+00, 1.29181150e+00,
2.52541673e+00, 2.52541673e+00, 2.52541673e+00, 2.52541673e+00,
4.39364483e+00, 4.39364483e+00, 4.39364483e+00, 4.39364483e+00,
6.92177553e+00, 6.92177553e+00, 6.92177553e+00, 6.92177553e+00,
1.00062705e+01, 1.00062705e+01, 1.00062705e+01, 1.00062705e+01,
1.30551463e+01, 1.30551463e+01, 1.30551463e+01, 1.30551463e+01,
1.59467542e+01, 1.59467542e+01, 1.59467542e+01, 1.59467542e+01,
1.83397628e+01, 1.83397628e+01, 1.83397628e+01, 1.83397628e+01,
1.98657446e+01, 1.98657446e+01, 1.98657446e+01, 1.98657446e+01,
2.04639329e+01, 2.04639329e+01, 2.04639329e+01, 2.04639329e+01,
2.03869143e+01, 2.03869143e+01, 2.03869143e+01, 2.03869143e+01,
2.00832064e+01, 2.00832064e+01, 2.00832064e+01, 2.00832064e+01,
2.00558910e+01, 2.00558910e+01, 2.00558910e+01, 2.00558910e+01,
1.99917512e+01, 1.99917512e+01, 1.99917512e+01, 1.99917512e+01,
1.93663021e+01, 1.93663021e+01, 1.93663021e+01, 1.93663021e+01,
1.59156770e+01, 1.59156770e+01, 1.59156770e+01, 1.59156770e+01,
6.34602264e+00, 6.34602264e+00, 6.34602264e+00, 6.34602264e+00,
3.03838005e-01, 3.03838005e-01, 3.03838005e-01, 3.03838005e-01,
1.18263967e-03, 1.18263967e-03, 1.18263967e-03, 1.18263967e-03,
2.70515192e-07, 2.70515192e-07, 2.70515192e-07, 2.70515192e-07,
3.73495771e-11, 3.73495771e-11, 3.73495771e-11, 3.73495771e-11,
5.26225555e-15, 5.26225555e-15, 5.26225555e-15, 5.26225555e-15,
7.33233058e-19, 7.33233058e-19, 7.33233058e-19, 7.33233058e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
9.99999933e+02, 9.99999933e+02, 9.99999933e+02, 9.99999933e+02,
9.99999579e+02, 9.99999579e+02, 9.99999579e+02, 9.99999579e+02,
9.99997587e+02, 9.99997587e+02, 9.99997587e+02, 9.99997587e+02,
9.99987518e+02, 9.99987518e+02, 9.99987518e+02, 9.99987518e+02,
9.99941901e+02, 9.99941901e+02, 9.99941901e+02, 9.99941901e+02,
9.99757768e+02, 9.99757768e+02, 9.99757768e+02, 9.99757768e+02,
9.99100354e+02, 9.99100354e+02, 9.99100354e+02, 9.99100354e+02,
9.97043041e+02, 9.97043041e+02, 9.97043041e+02, 9.97043041e+02,
9.91459711e+02, 9.91459711e+02, 9.91459711e+02, 9.91459711e+02,
9.78461298e+02, 9.78461298e+02, 9.78461298e+02, 9.78461298e+02,
9.52721066e+02, 9.52721066e+02, 9.52721066e+02, 9.52721066e+02,
9.09464048e+02, 9.09464048e+02, 9.09464048e+02, 9.09464048e+02,
8.47290240e+02, 8.47290240e+02, 8.47290240e+02, 8.47290240e+02,
7.69147303e+02, 7.69147303e+02, 7.69147303e+02, 7.69147303e+02,
6.81824841e+02, 6.81824841e+02, 6.81824841e+02, 6.81824841e+02,
6.01613262e+02, 6.01613262e+02, 6.01613262e+02, 6.01613262e+02,
5.36678519e+02, 5.36678519e+02, 5.36678519e+02, 5.36678519e+02,
4.86252372e+02, 4.86252372e+02, 4.86252372e+02, 4.86252372e+02,
4.54602117e+02, 4.54602117e+02, 4.54602117e+02, 4.54602117e+02,
4.44345600e+02, 4.44345600e+02, 4.44345600e+02, 4.44345600e+02,
4.46359684e+02, 4.46359684e+02, 4.46359684e+02, 4.46359684e+02,
4.51901635e+02, 4.51901635e+02, 4.51901635e+02, 4.51901635e+02,
4.52889504e+02, 4.52889504e+02, 4.52889504e+02, 4.52889504e+02,
4.52265646e+02, 4.52265646e+02, 4.52265646e+02, 4.52265646e+02,
4.29084128e+02, 4.29084128e+02, 4.29084128e+02, 4.29084128e+02,
2.92805528e+02, 2.92805528e+02, 2.92805528e+02, 2.92805528e+02,
5.43708093e+01, 5.43708093e+01, 5.43708093e+01, 5.43708093e+01,
7.81644380e-01, 7.81644380e-01, 7.81644380e-01, 7.81644380e-01,
1.03355903e-02, 1.03355903e-02, 1.03355903e-02, 1.03355903e-02,
1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.9999997 , 0.9999997 ,
0.9999997 , 0.9999997 , 0.99999837, 0.99999837, 0.99999837,
0.99999837, 0.99999195, 0.99999195, 0.99999195, 0.99999195,
0.99996397, 0.99996397, 0.99996397, 0.99996397, 0.9998545 ,
0.9998545 , 0.9998545 , 0.9998545 , 0.9994726 , 0.9994726 ,
0.9994726 , 0.9994726 , 0.9982943 , 0.9982943 , 0.9982943 ,
0.9982943 , 0.99510915, 0.99510915, 0.99510915, 0.99510915,
0.98763719, 0.98763719, 0.98763719, 0.98763719, 0.97253998,
0.97253998, 0.97253998, 0.97253998, 0.94633146, 0.94633146,
0.94633146, 0.94633146, 0.90701242, 0.90701242, 0.90701242,
0.90701242, 0.85516088, 0.85516088, 0.85516088, 0.85516088,
0.79324114, 0.79324114, 0.79324114, 0.79324114, 0.72928116,
0.72928116, 0.72928116, 0.72928116, 0.67174921, 0.67174921,
0.67174921, 0.67174921, 0.62584268, 0.62584268, 0.62584268,
0.62584268, 0.58259287, 0.58259287, 0.58259287, 0.58259287,
0.57068029, 0.57068029, 0.57068029, 0.57068029, 0.55836177,
0.55836177, 0.55836177, 0.55836177, 0.55573867, 0.55573867,
0.55573867, 0.55573867, 0.56443057, 0.56443057, 0.56443057,
0.56443057, 0.6395892 , 0.6395892 , 0.6395892 , 0.6395892 ,
0.96358615, 0.96358615, 0.96358615, 0.96358615, 1.83549949,
1.83549949, 1.83549949, 1.83549949, 2.66715283, 2.66715283,
2.66715283, 2.66715283, 2.3438958 , 2.3438958 , 2.3438958 ,
2.3438958 , 1.22354901, 1.22354901, 1.22354901, 1.22354901,
1.01330763, 1.01330763, 1.01330763, 1.01330763, 1.00013509,
1.00013509, 1.00013509, 1.00013509, 1.00000003, 1.00000003,
1.00000003, 1.00000003, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
3.27252719e-15, 3.27252719e-15, 3.27252719e-15, 3.27252719e-15,
5.02048681e-14, 5.02048681e-14, 5.02048681e-14, 5.02048681e-14,
5.87307060e-13, 5.87307060e-13, 5.87307060e-13, 5.87307060e-13,
6.46241559e-12, 6.46241559e-12, 6.46241559e-12, 6.46241559e-12,
6.53785309e-11, 6.53785309e-11, 6.53785309e-11, 6.53785309e-11,
6.06614778e-10, 6.06614778e-10, 6.06614778e-10, 6.06614778e-10,
5.16153797e-09, 5.16153797e-09, 5.16153797e-09, 5.16153797e-09,
4.02536022e-08, 4.02536022e-08, 4.02536022e-08, 4.02536022e-08,
2.87499828e-07, 2.87499828e-07, 2.87499828e-07, 2.87499828e-07,
1.87827130e-06, 1.87827130e-06, 1.87827130e-06, 1.87827130e-06,
1.12063726e-05, 1.12063726e-05, 1.12063726e-05, 1.12063726e-05,
6.09321654e-05, 6.09321654e-05, 6.09321654e-05, 6.09321654e-05,
3.01124184e-04, 3.01124184e-04, 3.01124184e-04, 3.01124184e-04,
1.34806658e-03, 1.34806658e-03, 1.34806658e-03, 1.34806658e-03,
5.44437268e-03, 5.44437268e-03, 5.44437268e-03, 5.44437268e-03,
1.97371145e-02, 1.97371145e-02, 1.97371145e-02, 1.97371145e-02,
6.38597905e-02, 6.38597905e-02, 6.38597905e-02, 6.38597905e-02,
1.83325531e-01, 1.83325531e-01, 1.83325531e-01, 1.83325531e-01,
4.64737704e-01, 4.64737704e-01, 4.64737704e-01, 4.64737704e-01,
1.03856729e+00, 1.03856729e+00, 1.03856729e+00, 1.03856729e+00,
2.05236016e+00, 2.05236016e+00, 2.05236016e+00, 2.05236016e+00,
3.61812720e+00, 3.61812720e+00, 3.61812720e+00, 3.61812720e+00,
5.77166819e+00, 5.77166819e+00, 5.77166819e+00, 5.77166819e+00,
8.48843316e+00, 8.48843316e+00, 8.48843316e+00, 8.48843316e+00,
1.14236988e+01, 1.14236988e+01, 1.14236988e+01, 1.14236988e+01,
1.42358355e+01, 1.42358355e+01, 1.42358355e+01, 1.42358355e+01,
1.68025698e+01, 1.68025698e+01, 1.68025698e+01, 1.68025698e+01,
1.88802206e+01, 1.88802206e+01, 1.88802206e+01, 1.88802206e+01,
2.00711843e+01, 2.00711843e+01, 2.00711843e+01, 2.00711843e+01,
2.04384777e+01, 2.04384777e+01, 2.04384777e+01, 2.04384777e+01,
2.02877280e+01, 2.02877280e+01, 2.02877280e+01, 2.02877280e+01,
2.00672694e+01, 2.00672694e+01, 2.00672694e+01, 2.00672694e+01,
2.00505256e+01, 2.00505256e+01, 2.00505256e+01, 2.00505256e+01,
2.00195354e+01, 2.00195354e+01, 2.00195354e+01, 2.00195354e+01,
1.97774623e+01, 1.97774623e+01, 1.97774623e+01, 1.97774623e+01,
1.81444582e+01, 1.81444582e+01, 1.81444582e+01, 1.81444582e+01,
1.15550729e+01, 1.15550729e+01, 1.15550729e+01, 1.15550729e+01,
1.77081733e+00, 1.77081733e+00, 1.77081733e+00, 1.77081733e+00,
2.44888120e-02, 2.44888120e-02, 2.44888120e-02, 2.44888120e-02,
2.06002983e-05, 2.06002983e-05, 2.06002983e-05, 2.06002983e-05,
2.98049908e-09, 2.98049908e-09, 2.98049908e-09, 2.98049908e-09,
4.19450571e-13, 4.19450571e-13, 4.19450571e-13, 4.19450571e-13,
5.78774071e-17, 5.78774071e-17, 5.78774071e-17, 5.78774071e-17,
4.37610151e-21, 4.37610151e-21, 4.37610151e-21, 4.37610151e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
9.99999930e+02, 9.99999930e+02, 9.99999930e+02, 9.99999930e+02,
9.99999581e+02, 9.99999581e+02, 9.99999581e+02, 9.99999581e+02,
9.99997720e+02, 9.99997720e+02, 9.99997720e+02, 9.99997720e+02,
9.99988733e+02, 9.99988733e+02, 9.99988733e+02, 9.99988733e+02,
9.99949561e+02, 9.99949561e+02, 9.99949561e+02, 9.99949561e+02,
9.99796311e+02, 9.99796311e+02, 9.99796311e+02, 9.99796311e+02,
9.99261774e+02, 9.99261774e+02, 9.99261774e+02, 9.99261774e+02,
9.97613331e+02, 9.97613331e+02, 9.97613331e+02, 9.97613331e+02,
9.93162704e+02, 9.93162704e+02, 9.93162704e+02, 9.93162704e+02,
9.82750522e+02, 9.82750522e+02, 9.82750522e+02, 9.82750522e+02,
9.61824610e+02, 9.61824610e+02, 9.61824610e+02, 9.61824610e+02,
9.25831706e+02, 9.25831706e+02, 9.25831706e+02, 9.25831706e+02,
8.72601859e+02, 8.72601859e+02, 8.72601859e+02, 8.72601859e+02,
8.03814503e+02, 8.03814503e+02, 8.03814503e+02, 8.03814503e+02,
7.23838409e+02, 7.23838409e+02, 7.23838409e+02, 7.23838409e+02,
6.43384851e+02, 6.43384851e+02, 6.43384851e+02, 6.43384851e+02,
5.74112241e+02, 5.74112241e+02, 5.74112241e+02, 5.74112241e+02,
5.17349942e+02, 5.17349942e+02, 5.17349942e+02, 5.17349942e+02,
4.75919956e+02, 4.75919956e+02, 4.75919956e+02, 4.75919956e+02,
4.51607155e+02, 4.51607155e+02, 4.51607155e+02, 4.51607155e+02,
4.44470585e+02, 4.44470585e+02, 4.44470585e+02, 4.44470585e+02,
4.47515366e+02, 4.47515366e+02, 4.47515366e+02, 4.47515366e+02,
4.52054920e+02, 4.52054920e+02, 4.52054920e+02, 4.52054920e+02,
4.52910758e+02, 4.52910758e+02, 4.52910758e+02, 4.52910758e+02,
4.53087888e+02, 4.53087888e+02, 4.53087888e+02, 4.53087888e+02,
4.45232329e+02, 4.45232329e+02, 4.45232329e+02, 4.45232329e+02,
3.77819444e+02, 3.77819444e+02, 3.77819444e+02, 3.77819444e+02,
1.56913286e+02, 1.56913286e+02, 1.56913286e+02, 1.56913286e+02,
8.48730097e+00, 8.48730097e+00, 8.48730097e+00, 8.48730097e+00,
3.29887631e-02, 3.29887631e-02, 3.29887631e-02, 3.29887631e-02,
1.00024710e-02, 1.00024710e-02, 1.00024710e-02, 1.00024710e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999971,
0.99999971, 0.99999971, 0.99999971, 0.99999849, 0.99999849,
0.99999849, 0.99999849, 0.99999283, 0.99999283, 0.99999283,
0.99999283, 0.99996896, 0.99996896, 0.99996896, 0.99996896,
0.99987805, 0.99987805, 0.99987805, 0.99987805, 0.99956724,
0.99956724, 0.99956724, 0.99956724, 0.99862027, 0.99862027,
0.99862027, 0.99862027, 0.99607172, 0.99607172, 0.99607172,
0.99607172, 0.99006817, 0.99006817, 0.99006817, 0.99006817,
0.97778423, 0.97778423, 0.97778423, 0.97778423, 0.95603297,
0.95603297, 0.95603297, 0.95603297, 0.92259283, 0.92259283,
0.92259283, 0.92259283, 0.87738557, 0.87738557, 0.87738557,
0.87738557, 0.82228577, 0.82228577, 0.82228577, 0.82228577,
0.76124912, 0.76124912, 0.76124912, 0.76124912, 0.7039925 ,
0.7039925 , 0.7039925 , 0.7039925 , 0.65236277, 0.65236277,
0.65236277, 0.65236277, 0.6131337 , 0.6131337 , 0.6131337 ,
0.6131337 , 0.57531994, 0.57531994, 0.57531994, 0.57531994,
0.56785759, 0.56785759, 0.56785759, 0.56785759, 0.56038513,
0.56038513, 0.56038513, 0.56038513, 0.55900443, 0.55900443,
0.55900443, 0.55900443, 0.56184189, 0.56184189, 0.56184189,
0.56184189, 0.60586371, 0.60586371, 0.60586371, 0.60586371,
0.81871248, 0.81871248, 0.81871248, 0.81871248, 1.4581625 ,
1.4581625 , 1.4581625 , 1.4581625 , 2.52120104, 2.52120104,
2.52120104, 2.52120104, 2.74380791, 2.74380791, 2.74380791,
2.74380791, 1.69735103, 1.69735103, 1.69735103, 1.69735103,
1.0575523 , 1.0575523 , 1.0575523 , 1.0575523 , 1.00195343,
1.00195343, 1.00195343, 1.00195343, 1.00000178, 1.00000178,
1.00000178, 1.00000178, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.91889946e-15, 5.91889946e-15, 5.91889946e-15, 5.91889946e-15,
9.30184492e-14, 9.30184492e-14, 9.30184492e-14, 9.30184492e-14,
1.00936002e-12, 1.00936002e-12, 1.00936002e-12, 1.00936002e-12,
1.01033815e-11, 1.01033815e-11, 1.01033815e-11, 1.01033815e-11,
9.37627227e-11, 9.37627227e-11, 9.37627227e-11, 9.37627227e-11,
8.03306517e-10, 8.03306517e-10, 8.03306517e-10, 8.03306517e-10,
6.34932257e-09, 6.34932257e-09, 6.34932257e-09, 6.34932257e-09,
4.62683708e-08, 4.62683708e-08, 4.62683708e-08, 4.62683708e-08,
3.10550365e-07, 3.10550365e-07, 3.10550365e-07, 3.10550365e-07,
1.91739687e-06, 1.91739687e-06, 1.91739687e-06, 1.91739687e-06,
1.08719093e-05, 1.08719093e-05, 1.08719093e-05, 1.08719093e-05,
5.64951242e-05, 5.64951242e-05, 5.64951242e-05, 5.64951242e-05,
2.68353586e-04, 2.68353586e-04, 2.68353586e-04, 2.68353586e-04,
1.16148888e-03, 1.16148888e-03, 1.16148888e-03, 1.16148888e-03,
4.56296110e-03, 4.56296110e-03, 4.56296110e-03, 4.56296110e-03,
1.61948234e-02, 1.61948234e-02, 1.61948234e-02, 1.61948234e-02,
5.16501942e-02, 5.16501942e-02, 5.16501942e-02, 5.16501942e-02,
1.47193741e-01, 1.47193741e-01, 1.47193741e-01, 1.47193741e-01,
3.73008312e-01, 3.73008312e-01, 3.73008312e-01, 3.73008312e-01,
8.38464798e-01, 8.38464798e-01, 8.38464798e-01, 8.38464798e-01,
1.67451578e+00, 1.67451578e+00, 1.67451578e+00, 1.67451578e+00,
2.99122036e+00, 2.99122036e+00, 2.99122036e+00, 2.99122036e+00,
4.83584276e+00, 4.83584276e+00, 4.83584276e+00, 4.83584276e+00,
7.19273469e+00, 7.19273469e+00, 7.19273469e+00, 7.19273469e+00,
9.93587440e+00, 9.93587440e+00, 9.93587440e+00, 9.93587440e+00,
1.26632029e+01, 1.26632029e+01, 1.26632029e+01, 1.26632029e+01,
1.52391788e+01, 1.52391788e+01, 1.52391788e+01, 1.52391788e+01,
1.75131368e+01, 1.75131368e+01, 1.75131368e+01, 1.75131368e+01,
1.92750068e+01, 1.92750068e+01, 1.92750068e+01, 1.92750068e+01,
2.02071764e+01, 2.02071764e+01, 2.02071764e+01, 2.02071764e+01,
2.04224324e+01, 2.04224324e+01, 2.04224324e+01, 2.04224324e+01,
2.02143397e+01, 2.02143397e+01, 2.02143397e+01, 2.02143397e+01,
2.00448842e+01, 2.00448842e+01, 2.00448842e+01, 2.00448842e+01,
2.00355481e+01, 2.00355481e+01, 2.00355481e+01, 2.00355481e+01,
2.00263366e+01, 2.00263366e+01, 2.00263366e+01, 2.00263366e+01,
1.99415493e+01, 1.99415493e+01, 1.99415493e+01, 1.99415493e+01,
1.92029402e+01, 1.92029402e+01, 1.92029402e+01, 1.92029402e+01,
1.55549094e+01, 1.55549094e+01, 1.55549094e+01, 1.55549094e+01,
5.98150672e+00, 5.98150672e+00, 5.98150672e+00, 5.98150672e+00,
2.65685194e-01, 2.65685194e-01, 2.65685194e-01, 2.65685194e-01,
9.54732742e-04, 9.54732742e-04, 9.54732742e-04, 9.54732742e-04,
2.10803427e-07, 2.10803427e-07, 2.10803427e-07, 2.10803427e-07,
3.02033655e-11, 3.02033655e-11, 3.02033655e-11, 3.02033655e-11,
4.41057656e-15, 4.41057656e-15, 4.41057656e-15, 4.41057656e-15,
6.12854624e-19, 6.12854624e-19, 6.12854624e-19, 6.12854624e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999928e+02, 9.99999928e+02, 9.99999928e+02, 9.99999928e+02,
9.99999593e+02, 9.99999593e+02, 9.99999593e+02, 9.99999593e+02,
9.99997886e+02, 9.99997886e+02, 9.99997886e+02, 9.99997886e+02,
9.99989959e+02, 9.99989959e+02, 9.99989959e+02, 9.99989959e+02,
9.99956542e+02, 9.99956542e+02, 9.99956542e+02, 9.99956542e+02,
9.99829284e+02, 9.99829284e+02, 9.99829284e+02, 9.99829284e+02,
9.99394226e+02, 9.99394226e+02, 9.99394226e+02, 9.99394226e+02,
9.98069219e+02, 9.98069219e+02, 9.98069219e+02, 9.98069219e+02,
9.94506766e+02, 9.94506766e+02, 9.94506766e+02, 9.94506766e+02,
9.86133189e+02, 9.86133189e+02, 9.86133189e+02, 9.86133189e+02,
9.69074355e+02, 9.69074355e+02, 9.69074355e+02, 9.69074355e+02,
9.39098214e+02, 9.39098214e+02, 9.39098214e+02, 9.39098214e+02,
8.93564448e+02, 8.93564448e+02, 8.93564448e+02, 8.93564448e+02,
8.33059937e+02, 8.33059937e+02, 8.33059937e+02, 8.33059937e+02,
7.60987238e+02, 7.60987238e+02, 7.60987238e+02, 7.60987238e+02,
6.83226607e+02, 6.83226607e+02, 6.83226607e+02, 6.83226607e+02,
6.12243005e+02, 6.12243005e+02, 6.12243005e+02, 6.12243005e+02,
5.51401650e+02, 5.51401650e+02, 5.51401650e+02, 5.51401650e+02,
5.01944900e+02, 5.01944900e+02, 5.01944900e+02, 5.01944900e+02,
4.67782716e+02, 4.67782716e+02, 4.67782716e+02, 4.67782716e+02,
4.49784516e+02, 4.49784516e+02, 4.49784516e+02, 4.49784516e+02,
4.45064233e+02, 4.45064233e+02, 4.45064233e+02, 4.45064233e+02,
4.48787029e+02, 4.48787029e+02, 4.48787029e+02, 4.48787029e+02,
4.51978695e+02, 4.51978695e+02, 4.51978695e+02, 4.51978695e+02,
4.52793680e+02, 4.52793680e+02, 4.52793680e+02, 4.52793680e+02,
4.53282403e+02, 4.53282403e+02, 4.53282403e+02, 4.53282403e+02,
4.50955061e+02, 4.50955061e+02, 4.50955061e+02, 4.50955061e+02,
4.22213148e+02, 4.22213148e+02, 4.22213148e+02, 4.22213148e+02,
2.77875953e+02, 2.77875953e+02, 2.77875953e+02, 2.77875953e+02,
4.81022077e+01, 4.81022077e+01, 4.81022077e+01, 4.81022077e+01,
6.43549685e-01, 6.43549685e-01, 6.43549685e-01, 6.43549685e-01,
1.02488911e-02, 1.02488911e-02, 1.02488911e-02, 1.02488911e-02,
1.00000249e-02, 1.00000249e-02, 1.00000249e-02, 1.00000249e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999995, 0.99999995, 0.99999995, 0.99999995,
0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999862,
0.99999862, 0.99999862, 0.99999862, 0.99999367, 0.99999367,
0.99999367, 0.99999367, 0.99997341, 0.99997341, 0.99997341,
0.99997341, 0.99989805, 0.99989805, 0.99989805, 0.99989805,
0.99964482, 0.99964482, 0.99964482, 0.99964482, 0.99888164,
0.99888164, 0.99888164, 0.99888164, 0.99683513, 0.99683513,
0.99683513, 0.99683513, 0.99199451, 0.99199451, 0.99199451,
0.99199451, 0.9819733 , 0.9819733 , 0.9819733 , 0.9819733 ,
0.96389763, 0.96389763, 0.96389763, 0.96389763, 0.93545495,
0.93545495, 0.93545495, 0.93545495, 0.89604286, 0.89604286,
0.89604286, 0.89604286, 0.84702851, 0.84702851, 0.84702851,
0.84702851, 0.79079924, 0.79079924, 0.79079924, 0.79079924,
0.73376007, 0.73376007, 0.73376007, 0.73376007, 0.68273638,
0.68273638, 0.68273638, 0.68273638, 0.63612561, 0.63612561,
0.63612561, 0.63612561, 0.60307654, 0.60307654, 0.60307654,
0.60307654, 0.57002222, 0.57002222, 0.57002222, 0.57002222,
0.56543931, 0.56543931, 0.56543931, 0.56543931, 0.56183756,
0.56183756, 0.56183756, 0.56183756, 0.56199531, 0.56199531,
0.56199531, 0.56199531, 0.56171758, 0.56171758, 0.56171758,
0.56171758, 0.58609083, 0.58609083, 0.58609083, 0.58609083,
0.72311334, 0.72311334, 0.72311334, 0.72311334, 1.17609219,
1.17609219, 1.17609219, 1.17609219, 2.18113668, 2.18113668,
2.18113668, 2.18113668, 2.86626909, 2.86626909, 2.86626909,
2.86626909, 2.37228972, 2.37228972, 2.37228972, 2.37228972,
1.2039004 , 1.2039004 , 1.2039004 , 1.2039004 , 1.01187606,
1.01187606, 1.01187606, 1.01187606, 1.00010508, 1.00010508,
1.00010508, 1.00010508, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.33539348e-14, 1.33539348e-14, 1.33539348e-14, 1.33539348e-14,
1.55607325e-13, 1.55607325e-13, 1.55607325e-13, 1.55607325e-13,
1.56402128e-12, 1.56402128e-12, 1.56402128e-12, 1.56402128e-12,
1.45324292e-11, 1.45324292e-11, 1.45324292e-11, 1.45324292e-11,
1.25185482e-10, 1.25185482e-10, 1.25185482e-10, 1.25185482e-10,
1.00094143e-09, 1.00094143e-09, 1.00094143e-09, 1.00094143e-09,
7.42144171e-09, 7.42144171e-09, 7.42144171e-09, 7.42144171e-09,
5.09825802e-08, 5.09825802e-08, 5.09825802e-08, 5.09825802e-08,
3.24157733e-07, 3.24157733e-07, 3.24157733e-07, 3.24157733e-07,
1.90508651e-06, 1.90508651e-06, 1.90508651e-06, 1.90508651e-06,
1.03318499e-05, 1.03318499e-05, 1.03318499e-05, 1.03318499e-05,
5.16016816e-05, 5.16016816e-05, 5.16016816e-05, 5.16016816e-05,
2.36752814e-04, 2.36752814e-04, 2.36752814e-04, 2.36752814e-04,
9.94861791e-04, 9.94861791e-04, 9.94861791e-04, 9.94861791e-04,
3.81489106e-03, 3.81489106e-03, 3.81489106e-03, 3.81489106e-03,
1.32911013e-02, 1.32911013e-02, 1.32911013e-02, 1.32911013e-02,
4.18617207e-02, 4.18617207e-02, 4.18617207e-02, 4.18617207e-02,
1.18555604e-01, 1.18555604e-01, 1.18555604e-01, 1.18555604e-01,
3.00441076e-01, 3.00441076e-01, 3.00441076e-01, 3.00441076e-01,
6.79231840e-01, 6.79231840e-01, 6.79231840e-01, 6.79231840e-01,
1.37049927e+00, 1.37049927e+00, 1.37049927e+00, 1.37049927e+00,
2.48027947e+00, 2.48027947e+00, 2.48027947e+00, 2.48027947e+00,
4.06534852e+00, 4.06534852e+00, 4.06534852e+00, 4.06534852e+00,
6.11874426e+00, 6.11874426e+00, 6.11874426e+00, 6.11874426e+00,
8.59698769e+00, 8.59698769e+00, 8.59698769e+00, 8.59698769e+00,
1.11984851e+01, 1.11984851e+01, 1.11984851e+01, 1.11984851e+01,
1.37435738e+01, 1.37435738e+01, 1.37435738e+01, 1.37435738e+01,
1.61020009e+01, 1.61020009e+01, 1.61020009e+01, 1.61020009e+01,
1.81047370e+01, 1.81047370e+01, 1.81047370e+01, 1.81047370e+01,
1.95637081e+01, 1.95637081e+01, 1.95637081e+01, 1.95637081e+01,
2.02802090e+01, 2.02802090e+01, 2.02802090e+01, 2.02802090e+01,
2.03974866e+01, 2.03974866e+01, 2.03974866e+01, 2.03974866e+01,
2.01688547e+01, 2.01688547e+01, 2.01688547e+01, 2.01688547e+01,
2.00346701e+01, 2.00346701e+01, 2.00346701e+01, 2.00346701e+01,
2.00176538e+01, 2.00176538e+01, 2.00176538e+01, 2.00176538e+01,
2.00209769e+01, 2.00209769e+01, 2.00209769e+01, 2.00209769e+01,
1.99976377e+01, 1.99976377e+01, 1.99976377e+01, 1.99976377e+01,
1.96779963e+01, 1.96779963e+01, 1.96779963e+01, 1.96779963e+01,
1.78764303e+01, 1.78764303e+01, 1.78764303e+01, 1.78764303e+01,
1.11193485e+01, 1.11193485e+01, 1.11193485e+01, 1.11193485e+01,
1.55576781e+00, 1.55576781e+00, 1.55576781e+00, 1.55576781e+00,
1.98900933e-02, 1.98900933e-02, 1.98900933e-02, 1.98900933e-02,
1.52255734e-05, 1.52255734e-05, 1.52255734e-05, 1.52255734e-05,
2.23363364e-09, 2.23363364e-09, 2.23363364e-09, 2.23363364e-09,
3.21107467e-13, 3.21107467e-13, 3.21107467e-13, 3.21107467e-13,
4.55567759e-17, 4.55567759e-17, 4.55567759e-17, 4.55567759e-17,
4.26370518e-21, 4.26370518e-21, 4.26370518e-21, 4.26370518e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999929e+02, 9.99999929e+02, 9.99999929e+02, 9.99999929e+02,
9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
9.99998069e+02, 9.99998069e+02, 9.99998069e+02, 9.99998069e+02,
9.99991142e+02, 9.99991142e+02, 9.99991142e+02, 9.99991142e+02,
9.99962776e+02, 9.99962776e+02, 9.99962776e+02, 9.99962776e+02,
9.99857270e+02, 9.99857270e+02, 9.99857270e+02, 9.99857270e+02,
9.99502814e+02, 9.99502814e+02, 9.99502814e+02, 9.99502814e+02,
9.98434853e+02, 9.98434853e+02, 9.98434853e+02, 9.98434853e+02,
9.95573298e+02, 9.95573298e+02, 9.95573298e+02, 9.95573298e+02,
9.88816876e+02, 9.88816876e+02, 9.88816876e+02, 9.88816876e+02,
9.74879194e+02, 9.74879194e+02, 9.74879194e+02, 9.74879194e+02,
9.49898234e+02, 9.49898234e+02, 9.49898234e+02, 9.49898234e+02,
9.10986409e+02, 9.10986409e+02, 9.10986409e+02, 9.10986409e+02,
8.57855860e+02, 8.57855860e+02, 8.57855860e+02, 8.57855860e+02,
7.93072862e+02, 7.93072862e+02, 7.93072862e+02, 7.93072862e+02,
7.20578542e+02, 7.20578542e+02, 7.20578542e+02, 7.20578542e+02,
6.48800650e+02, 6.48800650e+02, 6.48800650e+02, 6.48800650e+02,
5.86389112e+02, 5.86389112e+02, 5.86389112e+02, 5.86389112e+02,
5.32725608e+02, 5.32725608e+02, 5.32725608e+02, 5.32725608e+02,
4.89778956e+02, 4.89778956e+02, 4.89778956e+02, 4.89778956e+02,
4.61519534e+02, 4.61519534e+02, 4.61519534e+02, 4.61519534e+02,
4.48525367e+02, 4.48525367e+02, 4.48525367e+02, 4.48525367e+02,
4.45928711e+02, 4.45928711e+02, 4.45928711e+02, 4.45928711e+02,
4.49956676e+02, 4.49956676e+02, 4.49956676e+02, 4.49956676e+02,
4.52076499e+02, 4.52076499e+02, 4.52076499e+02, 4.52076499e+02,
4.52643316e+02, 4.52643316e+02, 4.52643316e+02, 4.52643316e+02,
4.53164778e+02, 4.53164778e+02, 4.53164778e+02, 4.53164778e+02,
4.52705085e+02, 4.52705085e+02, 4.52705085e+02, 4.52705085e+02,
4.42106466e+02, 4.42106466e+02, 4.42106466e+02, 4.42106466e+02,
3.66606419e+02, 3.66606419e+02, 3.66606419e+02, 3.66606419e+02,
1.43278417e+02, 1.43278417e+02, 1.43278417e+02, 1.43278417e+02,
7.05131525e+00, 7.05131525e+00, 7.05131525e+00, 7.05131525e+00,
2.69964841e-02, 2.69964841e-02, 2.69964841e-02, 2.69964841e-02,
1.00018104e-02, 1.00018104e-02, 1.00018104e-02, 1.00018104e-02,
1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999995, 0.99999995, 0.99999995,
0.99999995, 0.99999974, 0.99999974, 0.99999974, 0.99999974,
0.99999876, 0.99999876, 0.99999876, 0.99999876, 0.99999446,
0.99999446, 0.99999446, 0.99999446, 0.99997733, 0.99997733,
0.99997733, 0.99997733, 0.99991492, 0.99991492, 0.99991492,
0.99991492, 0.99970841, 0.99970841, 0.99970841, 0.99970841,
0.99909185, 0.99909185, 0.99909185, 0.99909185, 0.99744342,
0.99744342, 0.99744342, 0.99744342, 0.99352897, 0.99352897,
0.99352897, 0.99352897, 0.98533607, 0.98533607, 0.98533607,
0.98533607, 0.9703007 , 0.9703007 , 0.9703007 , 0.9703007 ,
0.94611525, 0.94611525, 0.94611525, 0.94611525, 0.91178545,
0.91178545, 0.91178545, 0.91178545, 0.8681275 , 0.8681275 ,
0.8681275 , 0.8681275 , 0.81711896, 0.81711896, 0.81711896,
0.81711896, 0.76228815, 0.76228815, 0.76228815, 0.76228815,
0.71063528, 0.71063528, 0.71063528, 0.71063528, 0.66449658,
0.66449658, 0.66449658, 0.66449658, 0.62236199, 0.62236199,
0.62236199, 0.62236199, 0.59504764, 0.59504764, 0.59504764,
0.59504764, 0.56660492, 0.56660492, 0.56660492, 0.56660492,
0.56344579, 0.56344579, 0.56344579, 0.56344579, 0.56277418,
0.56277418, 0.56277418, 0.56277418, 0.56425748, 0.56425748,
0.56425748, 0.56425748, 0.56271208, 0.56271208, 0.56271208,
0.56271208, 0.57532902, 0.57532902, 0.57532902, 0.57532902,
0.66138282, 0.66138282, 0.66138282, 0.66138282, 0.97477241,
0.97477241, 0.97477241, 0.97477241, 1.76866995, 1.76866995,
1.76866995, 1.76866995, 2.79140624, 2.79140624, 2.79140624,
2.79140624, 2.85504716, 2.85504716, 2.85504716, 2.85504716,
1.6572704 , 1.6572704 , 1.6572704 , 1.6572704 , 1.05142481,
1.05142481, 1.05142481, 1.05142481, 1.00163012, 1.00163012,
1.00163012, 1.00163012, 1.00000124, 1.00000124, 1.00000124,
1.00000124, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.24969420e-13, 2.24969420e-13, 2.24969420e-13, 2.24969420e-13,
2.25206716e-12, 2.25206716e-12, 2.25206716e-12, 2.25206716e-12,
1.95360740e-11, 1.95360740e-11, 1.95360740e-11, 1.95360740e-11,
1.57777129e-10, 1.57777129e-10, 1.57777129e-10, 1.57777129e-10,
1.18752511e-09, 1.18752511e-09, 1.18752511e-09, 1.18752511e-09,
8.32407101e-09, 8.32407101e-09, 8.32407101e-09, 8.32407101e-09,
5.42910740e-08, 5.42910740e-08, 5.42910740e-08, 5.42910740e-08,
3.29113213e-07, 3.29113213e-07, 3.29113213e-07, 3.29113213e-07,
1.85184067e-06, 1.85184067e-06, 1.85184067e-06, 1.85184067e-06,
9.65592764e-06, 9.65592764e-06, 9.65592764e-06, 9.65592764e-06,
4.65650184e-05, 4.65650184e-05, 4.65650184e-05, 4.65650184e-05,
2.07190385e-04, 2.07190385e-04, 2.07190385e-04, 2.07190385e-04,
8.48170242e-04, 8.48170242e-04, 8.48170242e-04, 8.48170242e-04,
3.18354794e-03, 3.18354794e-03, 3.18354794e-03, 3.18354794e-03,
1.09115255e-02, 1.09115255e-02, 1.09115255e-02, 1.09115255e-02,
3.39908368e-02, 3.39908368e-02, 3.39908368e-02, 3.39908368e-02,
9.57478717e-02, 9.57478717e-02, 9.57478717e-02, 9.57478717e-02,
2.42712876e-01, 2.42712876e-01, 2.42712876e-01, 2.42712876e-01,
5.51793377e-01, 5.51793377e-01, 5.51793377e-01, 5.51793377e-01,
1.12446443e+00, 1.12446443e+00, 1.12446443e+00, 1.12446443e+00,
2.06118893e+00, 2.06118893e+00, 2.06118893e+00, 2.06118893e+00,
3.42552666e+00, 3.42552666e+00, 3.42552666e+00, 3.42552666e+00,
5.22314600e+00, 5.22314600e+00, 5.22314600e+00, 5.22314600e+00,
7.41906287e+00, 7.41906287e+00, 7.41906287e+00, 7.41906287e+00,
9.88411479e+00, 9.88411479e+00, 9.88411479e+00, 9.88411479e+00,
1.23254490e+01, 1.23254490e+01, 1.23254490e+01, 1.23254490e+01,
1.46753619e+01, 1.46753619e+01, 1.46753619e+01, 1.46753619e+01,
1.68362063e+01, 1.68362063e+01, 1.68362063e+01, 1.68362063e+01,
1.85972036e+01, 1.85972036e+01, 1.85972036e+01, 1.85972036e+01,
1.97810316e+01, 1.97810316e+01, 1.97810316e+01, 1.97810316e+01,
2.03056736e+01, 2.03056736e+01, 2.03056736e+01, 2.03056736e+01,
2.03583742e+01, 2.03583742e+01, 2.03583742e+01, 2.03583742e+01,
2.01400339e+01, 2.01400339e+01, 2.01400339e+01, 2.01400339e+01,
2.00353247e+01, 2.00353247e+01, 2.00353247e+01, 2.00353247e+01,
2.00086210e+01, 2.00086210e+01, 2.00086210e+01, 2.00086210e+01,
2.00116248e+01, 2.00116248e+01, 2.00116248e+01, 2.00116248e+01,
2.00091285e+01, 2.00091285e+01, 2.00091285e+01, 2.00091285e+01,
1.98825700e+01, 1.98825700e+01, 1.98825700e+01, 1.98825700e+01,
1.90344265e+01, 1.90344265e+01, 1.90344265e+01, 1.90344265e+01,
1.51585367e+01, 1.51585367e+01, 1.51585367e+01, 1.51585367e+01,
5.49808022e+00, 5.49808022e+00, 5.49808022e+00, 5.49808022e+00,
2.20110268e-01, 2.20110268e-01, 2.20110268e-01, 2.20110268e-01,
7.04288698e-04, 7.04288698e-04, 7.04288698e-04, 7.04288698e-04,
1.46929013e-07, 1.46929013e-07, 1.46929013e-07, 1.46929013e-07,
2.17393213e-11, 2.17393213e-11, 2.17393213e-11, 2.17393213e-11,
3.25874024e-15, 3.25874024e-15, 3.25874024e-15, 3.25874024e-15,
4.93883641e-19, 4.93883641e-19, 4.93883641e-19, 4.93883641e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999931e+02, 9.99999931e+02, 9.99999931e+02, 9.99999931e+02,
9.99999639e+02, 9.99999639e+02, 9.99999639e+02, 9.99999639e+02,
9.99998258e+02, 9.99998258e+02, 9.99998258e+02, 9.99998258e+02,
9.99992248e+02, 9.99992248e+02, 9.99992248e+02, 9.99992248e+02,
9.99968265e+02, 9.99968265e+02, 9.99968265e+02, 9.99968265e+02,
9.99880890e+02, 9.99880890e+02, 9.99880890e+02, 9.99880890e+02,
9.99591810e+02, 9.99591810e+02, 9.99591810e+02, 9.99591810e+02,
9.98728953e+02, 9.98728953e+02, 9.98728953e+02, 9.98728953e+02,
9.96423469e+02, 9.96423469e+02, 9.96423469e+02, 9.96423469e+02,
9.90956621e+02, 9.90956621e+02, 9.90956621e+02, 9.90956621e+02,
9.79547910e+02, 9.79547910e+02, 9.79547910e+02, 9.79547910e+02,
9.58721154e+02, 9.58721154e+02, 9.58721154e+02, 9.58721154e+02,
9.25505523e+02, 9.25505523e+02, 9.25505523e+02, 9.25505523e+02,
8.78949351e+02, 8.78949351e+02, 8.78949351e+02, 8.78949351e+02,
8.20748601e+02, 8.20748601e+02, 8.20748601e+02, 8.20748601e+02,
7.54214683e+02, 7.54214683e+02, 7.54214683e+02, 7.54214683e+02,
6.84375067e+02, 6.84375067e+02, 6.84375067e+02, 6.84375067e+02,
6.20368568e+02, 6.20368568e+02, 6.20368568e+02, 6.20368568e+02,
5.64370431e+02, 5.64370431e+02, 5.64370431e+02, 5.64370431e+02,
5.17160227e+02, 5.17160227e+02, 5.17160227e+02, 5.17160227e+02,
4.80250812e+02, 4.80250812e+02, 4.80250812e+02, 4.80250812e+02,
4.56943598e+02, 4.56943598e+02, 4.56943598e+02, 4.56943598e+02,
4.47678145e+02, 4.47678145e+02, 4.47678145e+02, 4.47678145e+02,
4.46796826e+02, 4.46796826e+02, 4.46796826e+02, 4.46796826e+02,
4.50880096e+02, 4.50880096e+02, 4.50880096e+02, 4.50880096e+02,
4.52357569e+02, 4.52357569e+02, 4.52357569e+02, 4.52357569e+02,
4.52616932e+02, 4.52616932e+02, 4.52616932e+02, 4.52616932e+02,
4.52970783e+02, 4.52970783e+02, 4.52970783e+02, 4.52970783e+02,
4.53046444e+02, 4.53046444e+02, 4.53046444e+02, 4.53046444e+02,
4.49923083e+02, 4.49923083e+02, 4.49923083e+02, 4.49923083e+02,
4.15828843e+02, 4.15828843e+02, 4.15828843e+02, 4.15828843e+02,
2.62221323e+02, 2.62221323e+02, 2.62221323e+02, 2.62221323e+02,
4.12019102e+01, 4.12019102e+01, 4.12019102e+01, 4.12019102e+01,
4.94445574e-01, 4.94445574e-01, 4.94445574e-01, 4.94445574e-01,
1.01642073e-02, 1.01642073e-02, 1.01642073e-02, 1.01642073e-02,
1.00000174e-02, 1.00000174e-02, 1.00000174e-02, 1.00000174e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999976, 0.99999976, 0.99999976,
0.99999976, 0.99999889, 0.99999889, 0.99999889, 0.99999889,
0.99999519, 0.99999519, 0.99999519, 0.99999519, 0.99998075,
0.99998075, 0.99998075, 0.99998075, 0.9999291 , 0.9999291 ,
0.9999291 , 0.9999291 , 0.99976052, 0.99976052, 0.99976052,
0.99976052, 0.99926135, 0.99926135, 0.99926135, 0.99926135,
0.99793005, 0.99793005, 0.99793005, 0.99793005, 0.99475663,
0.99475663, 0.99475663, 0.99475663, 0.98804657, 0.98804657,
0.98804657, 0.98804657, 0.97553184, 0.97553184, 0.97553184,
0.97553184, 0.95497685, 0.95497685, 0.95497685, 0.95497685,
0.92511099, 0.92511099, 0.92511099, 0.92511099, 0.88625836,
0.88625836, 0.88625836, 0.88625836, 0.84008392, 0.84008392,
0.84008392, 0.84008392, 0.78876117, 0.78876117, 0.78876117,
0.78876117, 0.73758834, 0.73758834, 0.73758834, 0.73758834,
0.69072274, 0.69072274, 0.69072274, 0.69072274, 0.64901095,
0.64901095, 0.64901095, 0.64901095, 0.61063333, 0.61063333,
0.61063333, 0.61063333, 0.58838435, 0.58838435, 0.58838435,
0.58838435, 0.56482776, 0.56482776, 0.56482776, 0.56482776,
0.56211874, 0.56211874, 0.56211874, 0.56211874, 0.56323644,
0.56323644, 0.56323644, 0.56323644, 0.56573502, 0.56573502,
0.56573502, 0.56573502, 0.56392989, 0.56392989, 0.56392989,
0.56392989, 0.56998742, 0.56998742, 0.56998742, 0.56998742,
0.62261429, 0.62261429, 0.62261429, 0.62261429, 0.83494329,
0.83494329, 0.83494329, 0.83494329, 1.42257004, 1.42257004,
1.42257004, 1.42257004, 2.51165741, 2.51165741, 2.51165741,
2.51165741, 3.03556687, 3.03556687, 3.03556687, 3.03556687,
2.3649753 , 2.3649753 , 2.3649753 , 2.3649753 , 1.18082651,
1.18082651, 1.18082651, 1.18082651, 1.01021472, 1.01021472,
1.01021472, 1.01021472, 1.0000747 , 1.0000747 , 1.0000747 ,
1.0000747 , 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.83938532e-12, 2.83938532e-12, 2.83938532e-12, 2.83938532e-12,
2.48780551e-11, 2.48780551e-11, 2.48780551e-11, 2.48780551e-11,
1.89659153e-10, 1.89659153e-10, 1.89659153e-10, 1.89659153e-10,
1.35318050e-09, 1.35318050e-09, 1.35318050e-09, 1.35318050e-09,
9.02461193e-09, 9.02461193e-09, 9.02461193e-09, 9.02461193e-09,
5.62089401e-08, 5.62089401e-08, 5.62089401e-08, 5.62089401e-08,
3.26589983e-07, 3.26589983e-07, 3.26589983e-07, 3.26589983e-07,
1.76783166e-06, 1.76783166e-06, 1.76783166e-06, 1.76783166e-06,
8.90072519e-06, 8.90072519e-06, 8.90072519e-06, 8.90072519e-06,
4.16033994e-05, 4.16033994e-05, 4.16033994e-05, 4.16033994e-05,
1.80121521e-04, 1.80121521e-04, 1.80121521e-04, 1.80121521e-04,
7.20378916e-04, 7.20378916e-04, 7.20378916e-04, 7.20378916e-04,
2.65286556e-03, 2.65286556e-03, 2.65286556e-03, 2.65286556e-03,
8.96132297e-03, 8.96132297e-03, 8.96132297e-03, 8.96132297e-03,
2.76450137e-02, 2.76450137e-02, 2.76450137e-02, 2.76450137e-02,
7.75091590e-02, 7.75091590e-02, 7.75091590e-02, 7.75091590e-02,
1.96575287e-01, 1.96575287e-01, 1.96575287e-01, 1.96575287e-01,
4.49321350e-01, 4.49321350e-01, 4.49321350e-01, 4.49321350e-01,
9.24431499e-01, 9.24431499e-01, 9.24431499e-01, 9.24431499e-01,
1.71576116e+00, 1.71576116e+00, 1.71576116e+00, 1.71576116e+00,
2.89106042e+00, 2.89106042e+00, 2.89106042e+00, 2.89106042e+00,
4.46780650e+00, 4.46780650e+00, 4.46780650e+00, 4.46780650e+00,
6.41677343e+00, 6.41677343e+00, 6.41677343e+00, 6.41677343e+00,
8.68601329e+00, 8.68601329e+00, 8.68601329e+00, 8.68601329e+00,
1.10249054e+01, 1.10249054e+01, 1.10249054e+01, 1.10249054e+01,
1.33220447e+01, 1.33220447e+01, 1.33220447e+01, 1.33220447e+01,
1.54925996e+01, 1.54925996e+01, 1.54925996e+01, 1.54925996e+01,
1.74546801e+01, 1.74546801e+01, 1.74546801e+01, 1.74546801e+01,
1.89986134e+01, 1.89986134e+01, 1.89986134e+01, 1.89986134e+01,
1.99480450e+01, 1.99480450e+01, 1.99480450e+01, 1.99480450e+01,
2.03051988e+01, 2.03051988e+01, 2.03051988e+01, 2.03051988e+01,
2.03097963e+01, 2.03097963e+01, 2.03097963e+01, 2.03097963e+01,
2.01135364e+01, 2.01135364e+01, 2.01135364e+01, 2.01135364e+01,
2.00395134e+01, 2.00395134e+01, 2.00395134e+01, 2.00395134e+01,
2.00112282e+01, 2.00112282e+01, 2.00112282e+01, 2.00112282e+01,
2.00045207e+01, 2.00045207e+01, 2.00045207e+01, 2.00045207e+01,
2.00069683e+01, 2.00069683e+01, 2.00069683e+01, 2.00069683e+01,
1.99578722e+01, 1.99578722e+01, 1.99578722e+01, 1.99578722e+01,
1.95688870e+01, 1.95688870e+01, 1.95688870e+01, 1.95688870e+01,
1.75969855e+01, 1.75969855e+01, 1.75969855e+01, 1.75969855e+01,
1.06108424e+01, 1.06108424e+01, 1.06108424e+01, 1.06108424e+01,
1.32398591e+00, 1.32398591e+00, 1.32398591e+00, 1.32398591e+00,
1.52470806e-02, 1.52470806e-02, 1.52470806e-02, 1.52470806e-02,
1.02514744e-05, 1.02514744e-05, 1.02514744e-05, 1.02514744e-05,
1.51595044e-09, 1.51595044e-09, 1.51595044e-09, 1.51595044e-09,
2.21449669e-13, 2.21449669e-13, 2.21449669e-13, 2.21449669e-13,
3.21821680e-17, 3.21821680e-17, 3.21821680e-17, 3.21821680e-17,
4.22583135e-21, 4.22583135e-21, 4.22583135e-21, 4.22583135e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999934e+02, 9.99999934e+02, 9.99999934e+02, 9.99999934e+02,
9.99999667e+02, 9.99999667e+02, 9.99999667e+02, 9.99999667e+02,
9.99998443e+02, 9.99998443e+02, 9.99998443e+02, 9.99998443e+02,
9.99993260e+02, 9.99993260e+02, 9.99993260e+02, 9.99993260e+02,
9.99973046e+02, 9.99973046e+02, 9.99973046e+02, 9.99973046e+02,
9.99900744e+02, 9.99900744e+02, 9.99900744e+02, 9.99900744e+02,
9.99664753e+02, 9.99664753e+02, 9.99664753e+02, 9.99664753e+02,
9.98966129e+02, 9.98966129e+02, 9.98966129e+02, 9.98966129e+02,
9.97103821e+02, 9.97103821e+02, 9.97103821e+02, 9.97103821e+02,
9.92669836e+02, 9.92669836e+02, 9.92669836e+02, 9.92669836e+02,
9.83316822e+02, 9.83316822e+02, 9.83316822e+02, 9.83316822e+02,
9.65949266e+02, 9.65949266e+02, 9.65949266e+02, 9.65949266e+02,
9.37629572e+02, 9.37629572e+02, 9.37629572e+02, 9.37629572e+02,
8.96925524e+02, 8.96925524e+02, 8.96925524e+02, 8.96925524e+02,
8.44757270e+02, 8.44757270e+02, 8.44757270e+02, 8.44757270e+02,
7.83932229e+02, 7.83932229e+02, 7.83932229e+02, 7.83932229e+02,
7.17860197e+02, 7.17860197e+02, 7.17860197e+02, 7.17860197e+02,
6.53411534e+02, 6.53411534e+02, 6.53411534e+02, 6.53411534e+02,
5.96226302e+02, 5.96226302e+02, 5.96226302e+02, 5.96226302e+02,
5.45775399e+02, 5.45775399e+02, 5.45775399e+02, 5.45775399e+02,
5.04059456e+02, 5.04059456e+02, 5.04059456e+02, 5.04059456e+02,
4.72707776e+02, 4.72707776e+02, 4.72707776e+02, 4.72707776e+02,
4.53820542e+02, 4.53820542e+02, 4.53820542e+02, 4.53820542e+02,
4.47282842e+02, 4.47282842e+02, 4.47282842e+02, 4.47282842e+02,
4.47539085e+02, 4.47539085e+02, 4.47539085e+02, 4.47539085e+02,
4.51468618e+02, 4.51468618e+02, 4.51468618e+02, 4.51468618e+02,
4.52679279e+02, 4.52679279e+02, 4.52679279e+02, 4.52679279e+02,
4.52744959e+02, 4.52744959e+02, 4.52744959e+02, 4.52744959e+02,
4.52862141e+02, 4.52862141e+02, 4.52862141e+02, 4.52862141e+02,
4.53025731e+02, 4.53025731e+02, 4.53025731e+02, 4.53025731e+02,
4.52509333e+02, 4.52509333e+02, 4.52509333e+02, 4.52509333e+02,
4.39197326e+02, 4.39197326e+02, 4.39197326e+02, 4.39197326e+02,
3.55061144e+02, 3.55061144e+02, 3.55061144e+02, 3.55061144e+02,
1.28955744e+02, 1.28955744e+02, 1.28955744e+02, 1.28955744e+02,
5.63751354e+00, 5.63751354e+00, 5.63751354e+00, 5.63751354e+00,
2.16308297e-02, 2.16308297e-02, 2.16308297e-02, 2.16308297e-02,
1.00012116e-02, 1.00012116e-02, 1.00012116e-02, 1.00012116e-02,
1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999978, 0.99999978,
0.99999978, 0.99999978, 0.99999901, 0.99999901, 0.99999901,
0.99999901, 0.99999584, 0.99999584, 0.99999584, 0.99999584,
0.9999837 , 0.9999837 , 0.9999837 , 0.9999837 , 0.99994098,
0.99994098, 0.99994098, 0.99994098, 0.99980323, 0.99980323,
0.99980323, 0.99980323, 0.99939833, 0.99939833, 0.99939833,
0.99939833, 0.99832066, 0.99832066, 0.99832066, 0.99832066,
0.99574245, 0.99574245, 0.99574245, 0.99574245, 0.99023874,
0.99023874, 0.99023874, 0.99023874, 0.97981742, 0.97981742,
0.97981742, 0.97981742, 0.96235966, 0.96235966, 0.96235966,
0.96235966, 0.93641648, 0.93641648, 0.93641648, 0.93641648,
0.90189237, 0.90189237, 0.90189237, 0.90189237, 0.86005507,
0.86005507, 0.86005507, 0.86005507, 0.81274868, 0.81274868,
0.81274868, 0.81274868, 0.76311269, 0.76311269, 0.76311269,
0.76311269, 0.71642 , 0.71642 , 0.71642 , 0.71642 ,
0.67333822, 0.67333822, 0.67333822, 0.67333822, 0.63583393,
0.63583393, 0.63583393, 0.63583393, 0.6007504 , 0.6007504 ,
0.6007504 , 0.6007504 , 0.58279291, 0.58279291, 0.58279291,
0.58279291, 0.56410322, 0.56410322, 0.56410322, 0.56410322,
0.56160416, 0.56160416, 0.56160416, 0.56160416, 0.56332121,
0.56332121, 0.56332121, 0.56332121, 0.56656977, 0.56656977,
0.56656977, 0.56656977, 0.56500324, 0.56500324, 0.56500324,
0.56500324, 0.56762 , 0.56762 , 0.56762 , 0.56762 ,
0.59894803, 0.59894803, 0.59894803, 0.59894803, 0.74001262,
0.74001262, 0.74001262, 0.74001262, 1.16399112, 1.16399112,
1.16399112, 1.16399112, 2.10522387, 2.10522387, 2.10522387,
2.10522387, 3.01416422, 3.01416422, 3.01416422, 3.01416422,
2.93378532, 2.93378532, 2.93378532, 2.93378532, 1.60066424,
1.60066424, 1.60066424, 1.60066424, 1.0447292 , 1.0447292 ,
1.0447292 , 1.0447292 , 1.00129844, 1.00129844, 1.00129844,
1.00129844, 1.0000008 , 1.0000008 , 1.0000008 , 1.0000008 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.79929625e-11, 2.79929625e-11, 2.79929625e-11, 2.79929625e-11,
2.19420258e-10, 2.19420258e-10, 2.19420258e-10, 2.19420258e-10,
1.49116083e-09, 1.49116083e-09, 1.49116083e-09, 1.49116083e-09,
9.51188129e-09, 9.51188129e-09, 9.51188129e-09, 9.51188129e-09,
5.68485475e-08, 5.68485475e-08, 5.68485475e-08, 5.68485475e-08,
3.17985043e-07, 3.17985043e-07, 3.17985043e-07, 3.17985043e-07,
1.66248056e-06, 1.66248056e-06, 1.66248056e-06, 1.66248056e-06,
8.11135729e-06, 8.11135729e-06, 8.11135729e-06, 8.11135729e-06,
3.68655451e-05, 3.68655451e-05, 3.68655451e-05, 3.68655451e-05,
1.55738945e-04, 1.55738945e-04, 1.55738945e-04, 1.55738945e-04,
6.09972860e-04, 6.09972860e-04, 6.09972860e-04, 6.09972860e-04,
2.20822367e-03, 2.20822367e-03, 2.20822367e-03, 2.20822367e-03,
7.36278800e-03, 7.36278800e-03, 7.36278800e-03, 7.36278800e-03,
2.25170918e-02, 2.25170918e-02, 2.25170918e-02, 2.25170918e-02,
6.28736376e-02, 6.28736376e-02, 6.28736376e-02, 6.28736376e-02,
1.59557051e-01, 1.59557051e-01, 1.59557051e-01, 1.59557051e-01,
3.66605239e-01, 3.66605239e-01, 3.66605239e-01, 3.66605239e-01,
7.61197294e-01, 7.61197294e-01, 7.61197294e-01, 7.61197294e-01,
1.42997959e+00, 1.42997959e+00, 1.42997959e+00, 1.42997959e+00,
2.44258800e+00, 2.44258800e+00, 2.44258800e+00, 2.44258800e+00,
3.82666940e+00, 3.82666940e+00, 3.82666940e+00, 3.82666940e+00,
5.56323490e+00, 5.56323490e+00, 5.56323490e+00, 5.56323490e+00,
7.61102512e+00, 7.61102512e+00, 7.61102512e+00, 7.61102512e+00,
9.84104209e+00, 9.84104209e+00, 9.84104209e+00, 9.84104209e+00,
1.20553642e+01, 1.20553642e+01, 1.20553642e+01, 1.20553642e+01,
1.42019457e+01, 1.42019457e+01, 1.42019457e+01, 1.42019457e+01,
1.62097468e+01, 1.62097468e+01, 1.62097468e+01, 1.62097468e+01,
1.79765031e+01, 1.79765031e+01, 1.79765031e+01, 1.79765031e+01,
1.93158941e+01, 1.93158941e+01, 1.93158941e+01, 1.93158941e+01,
2.00703083e+01, 2.00703083e+01, 2.00703083e+01, 2.00703083e+01,
2.03013658e+01, 2.03013658e+01, 2.03013658e+01, 2.03013658e+01,
2.02568791e+01, 2.02568791e+01, 2.02568791e+01, 2.02568791e+01,
2.00856952e+01, 2.00856952e+01, 2.00856952e+01, 2.00856952e+01,
2.00397257e+01, 2.00397257e+01, 2.00397257e+01, 2.00397257e+01,
2.00181798e+01, 2.00181798e+01, 2.00181798e+01, 2.00181798e+01,
2.00054208e+01, 2.00054208e+01, 2.00054208e+01, 2.00054208e+01,
2.00025663e+01, 2.00025663e+01, 2.00025663e+01, 2.00025663e+01,
1.99793630e+01, 1.99793630e+01, 1.99793630e+01, 1.99793630e+01,
1.98071108e+01, 1.98071108e+01, 1.98071108e+01, 1.98071108e+01,
1.88547396e+01, 1.88547396e+01, 1.88547396e+01, 1.88547396e+01,
1.47204337e+01, 1.47204337e+01, 1.47204337e+01, 1.47204337e+01,
4.95781616e+00, 4.95781616e+00, 4.95781616e+00, 4.95781616e+00,
1.75493310e-01, 1.75493310e-01, 1.75493310e-01, 1.75493310e-01,
4.85757486e-04, 4.85757486e-04, 4.85757486e-04, 4.85757486e-04,
9.51110561e-08, 9.51110561e-08, 9.51110561e-08, 9.51110561e-08,
1.44293431e-11, 1.44293431e-11, 1.44293431e-11, 1.44293431e-11,
2.19762024e-15, 2.19762024e-15, 2.19762024e-15, 2.19762024e-15,
3.19887277e-19, 3.19887277e-19, 3.19887277e-19, 3.19887277e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999938e+02, 9.99999938e+02, 9.99999938e+02, 9.99999938e+02,
9.99999697e+02, 9.99999697e+02, 9.99999697e+02, 9.99999697e+02,
9.99998621e+02, 9.99998621e+02, 9.99998621e+02, 9.99998621e+02,
9.99994173e+02, 9.99994173e+02, 9.99994173e+02, 9.99994173e+02,
9.99977177e+02, 9.99977177e+02, 9.99977177e+02, 9.99977177e+02,
9.99917379e+02, 9.99917379e+02, 9.99917379e+02, 9.99917379e+02,
9.99724547e+02, 9.99724547e+02, 9.99724547e+02, 9.99724547e+02,
9.99157826e+02, 9.99157826e+02, 9.99157826e+02, 9.99157826e+02,
9.97650081e+02, 9.97650081e+02, 9.97650081e+02, 9.97650081e+02,
9.94046407e+02, 9.94046407e+02, 9.94046407e+02, 9.94046407e+02,
9.86368788e+02, 9.86368788e+02, 9.86368788e+02, 9.86368788e+02,
9.71884304e+02, 9.71884304e+02, 9.71884304e+02, 9.71884304e+02,
9.47768311e+02, 9.47768311e+02, 9.47768311e+02, 9.47768311e+02,
9.12263212e+02, 9.12263212e+02, 9.12263212e+02, 9.12263212e+02,
8.65625167e+02, 8.65625167e+02, 8.65625167e+02, 8.65625167e+02,
8.10053427e+02, 8.10053427e+02, 8.10053427e+02, 8.10053427e+02,
7.48503051e+02, 7.48503051e+02, 7.48503051e+02, 7.48503051e+02,
6.85291622e+02, 6.85291622e+02, 6.85291622e+02, 6.85291622e+02,
6.27294016e+02, 6.27294016e+02, 6.27294016e+02, 6.27294016e+02,
5.75413147e+02, 5.75413147e+02, 5.75413147e+02, 5.75413147e+02,
5.30001905e+02, 5.30001905e+02, 5.30001905e+02, 5.30001905e+02,
4.93087463e+02, 4.93087463e+02, 4.93087463e+02, 4.93087463e+02,
4.66655572e+02, 4.66655572e+02, 4.66655572e+02, 4.66655572e+02,
4.51807159e+02, 4.51807159e+02, 4.51807159e+02, 4.51807159e+02,
4.47311434e+02, 4.47311434e+02, 4.47311434e+02, 4.47311434e+02,
4.48215613e+02, 4.48215613e+02, 4.48215613e+02, 4.48215613e+02,
4.51762807e+02, 4.51762807e+02, 4.51762807e+02, 4.51762807e+02,
4.52868403e+02, 4.52868403e+02, 4.52868403e+02, 4.52868403e+02,
4.52955491e+02, 4.52955491e+02, 4.52955491e+02, 4.52955491e+02,
4.52909327e+02, 4.52909327e+02, 4.52909327e+02, 4.52909327e+02,
4.52981643e+02, 4.52981643e+02, 4.52981643e+02, 4.52981643e+02,
4.53214804e+02, 4.53214804e+02, 4.53214804e+02, 4.53214804e+02,
4.48990326e+02, 4.48990326e+02, 4.48990326e+02, 4.48990326e+02,
4.09131640e+02, 4.09131640e+02, 4.09131640e+02, 4.09131640e+02,
2.45517697e+02, 2.45517697e+02, 2.45517697e+02, 2.45517697e+02,
3.47160317e+01, 3.47160317e+01, 3.47160317e+01, 3.47160317e+01,
3.62894316e-01, 3.62894316e-01, 3.62894316e-01, 3.62894316e-01,
1.00998011e-02, 1.00998011e-02, 1.00998011e-02, 1.00998011e-02,
1.00000113e-02, 1.00000113e-02, 1.00000113e-02, 1.00000113e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.9999998 ,
0.9999998 , 0.9999998 , 0.9999998 , 0.99999913, 0.99999913,
0.99999913, 0.99999913, 0.99999642, 0.99999642, 0.99999642,
0.99999642, 0.99998623, 0.99998623, 0.99998623, 0.99998623,
0.99995092, 0.99995092, 0.99995092, 0.99995092, 0.99983826,
0.99983826, 0.99983826, 0.99983826, 0.99950927, 0.99950927,
0.99950927, 0.99950927, 0.99863513, 0.99863513, 0.99863513,
0.99863513, 0.9965366 , 0.9965366 , 0.9965366 , 0.9965366 ,
0.99201676, 0.99201676, 0.99201676, 0.99201676, 0.9833362 ,
0.9833362 , 0.9833362 , 0.9833362 , 0.9685206 , 0.9685206 ,
0.9685206 , 0.9685206 , 0.94602219, 0.94602219, 0.94602219,
0.94602219, 0.91540395, 0.91540395, 0.91540395, 0.91540395,
0.87753992, 0.87753992, 0.87753992, 0.87753992, 0.83410395,
0.83410395, 0.83410395, 0.83410395, 0.78704832, 0.78704832,
0.78704832, 0.78704832, 0.74068485, 0.74068485, 0.74068485,
0.74068485, 0.69785748, 0.69785748, 0.69785748, 0.69785748,
0.65816589, 0.65816589, 0.65816589, 0.65816589, 0.62460018,
0.62460018, 0.62460018, 0.62460018, 0.59255793, 0.59255793,
0.59255793, 0.59255793, 0.57817326, 0.57817326, 0.57817326,
0.57817326, 0.56387564, 0.56387564, 0.56387564, 0.56387564,
0.56157127, 0.56157127, 0.56157127, 0.56157127, 0.56360366,
0.56360366, 0.56360366, 0.56360366, 0.56687447, 0.56687447,
0.56687447, 0.56687447, 0.56576392, 0.56576392, 0.56576392,
0.56576392, 0.56670663, 0.56670663, 0.56670663, 0.56670663,
0.58490731, 0.58490731, 0.58490731, 0.58490731, 0.67692226,
0.67692226, 0.67692226, 0.67692226, 0.97656008, 0.97656008,
0.97656008, 0.97656008, 1.70128216, 1.70128216, 1.70128216,
1.70128216, 2.81354886, 2.81354886, 2.81354886, 2.81354886,
3.17648847, 3.17648847, 3.17648847, 3.17648847, 2.32407513,
2.32407513, 2.32407513, 2.32407513, 1.15871544, 1.15871544,
1.15871544, 1.15871544, 1.00857175, 1.00857175, 1.00857175,
1.00857175, 1.0000498 , 1.0000498 , 1.0000498 , 1.0000498 ,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.25428777e-10, 2.25428777e-10, 2.25428777e-10, 2.25428777e-10,
1.59940645e-09, 1.59940645e-09, 1.59940645e-09, 1.59940645e-09,
9.78961596e-09, 9.78961596e-09, 9.78961596e-09, 9.78961596e-09,
5.63719016e-08, 5.63719016e-08, 5.63719016e-08, 5.63719016e-08,
3.04684391e-07, 3.04684391e-07, 3.04684391e-07, 3.04684391e-07,
1.54374637e-06, 1.54374637e-06, 1.54374637e-06, 1.54374637e-06,
7.32124407e-06, 7.32124407e-06, 7.32124407e-06, 7.32124407e-06,
3.24422534e-05, 3.24422534e-05, 3.24422534e-05, 3.24422534e-05,
1.34046928e-04, 1.34046928e-04, 1.34046928e-04, 1.34046928e-04,
5.15190666e-04, 5.15190666e-04, 5.15190666e-04, 5.15190666e-04,
1.83655079e-03, 1.83655079e-03, 1.83655079e-03, 1.83655079e-03,
6.05207452e-03, 6.05207452e-03, 6.05207452e-03, 6.05207452e-03,
1.83647896e-02, 1.83647896e-02, 1.83647896e-02, 1.83647896e-02,
5.10941202e-02, 5.10941202e-02, 5.10941202e-02, 5.10941202e-02,
1.29756782e-01, 1.29756782e-01, 1.29756782e-01, 1.29756782e-01,
2.99620921e-01, 2.99620921e-01, 2.99620921e-01, 2.99620921e-01,
6.27596355e-01, 6.27596355e-01, 6.27596355e-01, 6.27596355e-01,
1.19286361e+00, 1.19286361e+00, 1.19286361e+00, 1.19286361e+00,
2.06504248e+00, 2.06504248e+00, 2.06504248e+00, 2.06504248e+00,
3.27992371e+00, 3.27992371e+00, 3.27992371e+00, 3.27992371e+00,
4.82922171e+00, 4.82922171e+00, 4.82922171e+00, 4.82922171e+00,
6.67464424e+00, 6.67464424e+00, 6.67464424e+00, 6.67464424e+00,
8.75964265e+00, 8.75964265e+00, 8.75964265e+00, 8.75964265e+00,
1.08803472e+01, 1.08803472e+01, 1.08803472e+01, 1.08803472e+01,
1.29739884e+01, 1.29739884e+01, 1.29739884e+01, 1.29739884e+01,
1.49859636e+01, 1.49859636e+01, 1.49859636e+01, 1.49859636e+01,
1.68387724e+01, 1.68387724e+01, 1.68387724e+01, 1.68387724e+01,
1.84176517e+01, 1.84176517e+01, 1.84176517e+01, 1.84176517e+01,
1.95597613e+01, 1.95597613e+01, 1.95597613e+01, 1.95597613e+01,
2.01515305e+01, 2.01515305e+01, 2.01515305e+01, 2.01515305e+01,
2.02967332e+01, 2.02967332e+01, 2.02967332e+01, 2.02967332e+01,
2.02120023e+01, 2.02120023e+01, 2.02120023e+01, 2.02120023e+01,
2.00605248e+01, 2.00605248e+01, 2.00605248e+01, 2.00605248e+01,
2.00318688e+01, 2.00318688e+01, 2.00318688e+01, 2.00318688e+01,
2.00221885e+01, 2.00221885e+01, 2.00221885e+01, 2.00221885e+01,
2.00111763e+01, 2.00111763e+01, 2.00111763e+01, 2.00111763e+01,
2.00014053e+01, 2.00014053e+01, 2.00014053e+01, 2.00014053e+01,
1.99837206e+01, 1.99837206e+01, 1.99837206e+01, 1.99837206e+01,
1.99044089e+01, 1.99044089e+01, 1.99044089e+01, 1.99044089e+01,
1.94532334e+01, 1.94532334e+01, 1.94532334e+01, 1.94532334e+01,
1.72959877e+01, 1.72959877e+01, 1.72959877e+01, 1.72959877e+01,
1.00492404e+01, 1.00492404e+01, 1.00492404e+01, 1.00492404e+01,
1.10583216e+00, 1.10583216e+00, 1.10583216e+00, 1.10583216e+00,
1.12632792e-02, 1.12632792e-02, 1.12632792e-02, 1.12632792e-02,
6.51995106e-06, 6.51995106e-06, 6.51995106e-06, 6.51995106e-06,
9.65569412e-10, 9.65569412e-10, 9.65569412e-10, 9.65569412e-10,
1.42316510e-13, 1.42316510e-13, 1.42316510e-13, 1.42316510e-13,
2.10270857e-17, 2.10270857e-17, 2.10270857e-17, 2.10270857e-17,
4.23110662e-21, 4.23110662e-21, 4.23110662e-21, 4.23110662e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
9.99999942e+02, 9.99999942e+02, 9.99999942e+02, 9.99999942e+02,
9.99999726e+02, 9.99999726e+02, 9.99999726e+02, 9.99999726e+02,
9.99998786e+02, 9.99998786e+02, 9.99998786e+02, 9.99998786e+02,
9.99994984e+02, 9.99994984e+02, 9.99994984e+02, 9.99994984e+02,
9.99980724e+02, 9.99980724e+02, 9.99980724e+02, 9.99980724e+02,
9.99931285e+02, 9.99931285e+02, 9.99931285e+02, 9.99931285e+02,
9.99773577e+02, 9.99773577e+02, 9.99773577e+02, 9.99773577e+02,
9.99313077e+02, 9.99313077e+02, 9.99313077e+02, 9.99313077e+02,
9.98089948e+02, 9.98089948e+02, 9.98089948e+02, 9.98089948e+02,
9.95155853e+02, 9.95155853e+02, 9.95155853e+02, 9.95155853e+02,
9.88846648e+02, 9.88846648e+02, 9.88846648e+02, 9.88846648e+02,
9.76766510e+02, 9.76766510e+02, 9.76766510e+02, 9.76766510e+02,
9.56255473e+02, 9.56255473e+02, 9.56255473e+02, 9.56255473e+02,
9.25357054e+02, 9.25357054e+02, 9.25357054e+02, 9.25357054e+02,
8.83782170e+02, 8.83782170e+02, 8.83782170e+02, 8.83782170e+02,
8.33130130e+02, 8.33130130e+02, 8.33130130e+02, 8.33130130e+02,
7.76085650e+02, 7.76085650e+02, 7.76085650e+02, 7.76085650e+02,
7.15578042e+02, 7.15578042e+02, 7.15578042e+02, 7.15578042e+02,
6.57188937e+02, 6.57188937e+02, 6.57188937e+02, 6.57188937e+02,
6.04619926e+02, 6.04619926e+02, 6.04619926e+02, 6.04619926e+02,
5.57478206e+02, 5.57478206e+02, 5.57478206e+02, 5.57478206e+02,
5.16581813e+02, 5.16581813e+02, 5.16581813e+02, 5.16581813e+02,
4.83986410e+02, 4.83986410e+02, 4.83986410e+02, 4.83986410e+02,
4.61832276e+02, 4.61832276e+02, 4.61832276e+02, 4.61832276e+02,
4.50505747e+02, 4.50505747e+02, 4.50505747e+02, 4.50505747e+02,
4.47530062e+02, 4.47530062e+02, 4.47530062e+02, 4.47530062e+02,
4.49051988e+02, 4.49051988e+02, 4.49051988e+02, 4.49051988e+02,
4.51904449e+02, 4.51904449e+02, 4.51904449e+02, 4.51904449e+02,
4.52866779e+02, 4.52866779e+02, 4.52866779e+02, 4.52866779e+02,
4.53094164e+02, 4.53094164e+02, 4.53094164e+02, 4.53094164e+02,
4.53054312e+02, 4.53054312e+02, 4.53054312e+02, 4.53054312e+02,
4.53063775e+02, 4.53063775e+02, 4.53063775e+02, 4.53063775e+02,
4.53395324e+02, 4.53395324e+02, 4.53395324e+02, 4.53395324e+02,
4.52569474e+02, 4.52569474e+02, 4.52569474e+02, 4.52569474e+02,
4.35977197e+02, 4.35977197e+02, 4.35977197e+02, 4.35977197e+02,
3.42570389e+02, 3.42570389e+02, 3.42570389e+02, 3.42570389e+02,
1.14587893e+02, 1.14587893e+02, 1.14587893e+02, 1.14587893e+02,
4.38695457e+00, 4.38695457e+00, 4.38695457e+00, 4.38695457e+00,
1.75831808e-02, 1.75831808e-02, 1.75831808e-02, 1.75831808e-02,
1.00007686e-02, 1.00007686e-02, 1.00007686e-02, 1.00007686e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999924,
0.99999924, 0.99999924, 0.99999924, 0.99999693, 0.99999693,
0.99999693, 0.99999693, 0.99998839, 0.99998839, 0.99998839,
0.99998839, 0.99995921, 0.99995921, 0.99995921, 0.99995921,
0.99986699, 0.99986699, 0.99986699, 0.99986699, 0.99959927,
0.99959927, 0.99959927, 0.99959927, 0.99888896, 0.99888896,
0.99888896, 0.99888896, 0.99717807, 0.99717807, 0.99717807,
0.99717807, 0.99346233, 0.99346233, 0.99346233, 0.99346233,
0.98623061, 0.98623061, 0.98623061, 0.98623061, 0.97366804,
0.97366804, 0.97366804, 0.97366804, 0.954191 , 0.954191 ,
0.954191 , 0.954191 , 0.92709612, 0.92709612, 0.92709612,
0.92709612, 0.89288639, 0.89288639, 0.89288639, 0.89288639,
0.85299165, 0.85299165, 0.85299165, 0.85299165, 0.80903108,
0.80903108, 0.80903108, 0.80903108, 0.7637975 , 0.7637975 ,
0.7637975 , 0.7637975 , 0.72115406, 0.72115406, 0.72115406,
0.72115406, 0.68149355, 0.68149355, 0.68149355, 0.68149355,
0.64480222, 0.64480222, 0.64480222, 0.64480222, 0.61500168,
0.61500168, 0.61500168, 0.61500168, 0.58590592, 0.58590592,
0.58590592, 0.58590592, 0.57439796, 0.57439796, 0.57439796,
0.57439796, 0.56387515, 0.56387515, 0.56387515, 0.56387515,
0.56183788, 0.56183788, 0.56183788, 0.56183788, 0.56406492,
0.56406492, 0.56406492, 0.56406492, 0.56696563, 0.56696563,
0.56696563, 0.56696563, 0.5662629 , 0.5662629 , 0.5662629 ,
0.5662629 , 0.56641131, 0.56641131, 0.56641131, 0.56641131,
0.576761 , 0.576761 , 0.576761 , 0.576761 , 0.63578575,
0.63578575, 0.63578575, 0.63578575, 0.84379069, 0.84379069,
0.84379069, 0.84379069, 1.38572903, 1.38572903, 1.38572903,
1.38572903, 2.44002612, 2.44002612, 2.44002612, 2.44002612,
3.20653483, 3.20653483, 3.20653483, 3.20653483, 2.97456245,
2.97456245, 2.97456245, 2.97456245, 1.53663558, 1.53663558,
1.53663558, 1.53663558, 1.0381715 , 1.0381715 , 1.0381715 ,
1.0381715 , 1.00099782, 1.00099782, 1.00099782, 1.00099782,
1.0000005 , 1.0000005 , 1.0000005 , 1.0000005 , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.52640217e-09, 1.52640217e-09, 1.52640217e-09, 1.52640217e-09,
9.88802864e-09, 9.88802864e-09, 9.88802864e-09, 9.88802864e-09,
5.49631705e-08, 5.49631705e-08, 5.49631705e-08, 5.49631705e-08,
2.87970269e-07, 2.87970269e-07, 2.87970269e-07, 2.87970269e-07,
1.41808509e-06, 1.41808509e-06, 1.41808509e-06, 1.41808509e-06,
6.55412036e-06, 6.55412036e-06, 6.55412036e-06, 6.55412036e-06,
2.83823463e-05, 2.83823463e-05, 2.83823463e-05, 2.83823463e-05,
1.14933820e-04, 1.14933820e-04, 1.14933820e-04, 1.14933820e-04,
4.34223292e-04, 4.34223292e-04, 4.34223292e-04, 4.34223292e-04,
1.52641599e-03, 1.52641599e-03, 1.52641599e-03, 1.52641599e-03,
4.97687894e-03, 4.97687894e-03, 4.97687894e-03, 4.97687894e-03,
1.49961991e-02, 1.49961991e-02, 1.49961991e-02, 1.49961991e-02,
4.15882459e-02, 4.15882459e-02, 4.15882459e-02, 4.15882459e-02,
1.05698320e-01, 1.05698320e-01, 1.05698320e-01, 1.05698320e-01,
2.45229407e-01, 2.45229407e-01, 2.45229407e-01, 2.45229407e-01,
5.17987106e-01, 5.17987106e-01, 5.17987106e-01, 5.17987106e-01,
9.95694132e-01, 9.95694132e-01, 9.95694132e-01, 9.95694132e-01,
1.74644988e+00, 1.74644988e+00, 1.74644988e+00, 1.74644988e+00,
2.81214874e+00, 2.81214874e+00, 2.81214874e+00, 2.81214874e+00,
4.19480869e+00, 4.19480869e+00, 4.19480869e+00, 4.19480869e+00,
5.86264757e+00, 5.86264757e+00, 5.86264757e+00, 5.86264757e+00,
7.77472797e+00, 7.77472797e+00, 7.77472797e+00, 7.77472797e+00,
9.80655654e+00, 9.80655654e+00, 9.80655654e+00, 9.80655654e+00,
1.18277382e+01, 1.18277382e+01, 1.18277382e+01, 1.18277382e+01,
1.37971680e+01, 1.37971680e+01, 1.37971680e+01, 1.37971680e+01,
1.56822647e+01, 1.56822647e+01, 1.56822647e+01, 1.56822647e+01,
1.73889246e+01, 1.73889246e+01, 1.73889246e+01, 1.73889246e+01,
1.87901005e+01, 1.87901005e+01, 1.87901005e+01, 1.87901005e+01,
1.97450558e+01, 1.97450558e+01, 1.97450558e+01, 1.97450558e+01,
2.01997684e+01, 2.01997684e+01, 2.01997684e+01, 2.01997684e+01,
2.02877405e+01, 2.02877405e+01, 2.02877405e+01, 2.02877405e+01,
2.01725864e+01, 2.01725864e+01, 2.01725864e+01, 2.01725864e+01,
2.00462536e+01, 2.00462536e+01, 2.00462536e+01, 2.00462536e+01,
2.00208235e+01, 2.00208235e+01, 2.00208235e+01, 2.00208235e+01,
2.00194733e+01, 2.00194733e+01, 2.00194733e+01, 2.00194733e+01,
2.00147202e+01, 2.00147202e+01, 2.00147202e+01, 2.00147202e+01,
2.00035230e+01, 2.00035230e+01, 2.00035230e+01, 2.00035230e+01,
1.99845714e+01, 1.99845714e+01, 1.99845714e+01, 1.99845714e+01,
1.99388525e+01, 1.99388525e+01, 1.99388525e+01, 1.99388525e+01,
1.97268563e+01, 1.97268563e+01, 1.97268563e+01, 1.97268563e+01,
1.86628873e+01, 1.86628873e+01, 1.86628873e+01, 1.86628873e+01,
1.42510014e+01, 1.42510014e+01, 1.42510014e+01, 1.42510014e+01,
4.38724950e+00, 4.38724950e+00, 4.38724950e+00, 4.38724950e+00,
1.35671717e-01, 1.35671717e-01, 1.35671717e-01, 1.35671717e-01,
3.19338310e-04, 3.19338310e-04, 3.19338310e-04, 3.19338310e-04,
5.91067532e-08, 5.91067532e-08, 5.91067532e-08, 5.91067532e-08,
9.14545156e-12, 9.14545156e-12, 9.14545156e-12, 9.14545156e-12,
1.40083653e-15, 1.40083653e-15, 1.40083653e-15, 1.40083653e-15,
2.06948752e-19, 2.06948752e-19, 2.06948752e-19, 2.06948752e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
9.99999947e+02, 9.99999947e+02, 9.99999947e+02, 9.99999947e+02,
9.99999755e+02, 9.99999755e+02, 9.99999755e+02, 9.99999755e+02,
9.99998938e+02, 9.99998938e+02, 9.99998938e+02, 9.99998938e+02,
9.99995700e+02, 9.99995700e+02, 9.99995700e+02, 9.99995700e+02,
9.99983753e+02, 9.99983753e+02, 9.99983753e+02, 9.99983753e+02,
9.99942888e+02, 9.99942888e+02, 9.99942888e+02, 9.99942888e+02,
9.99813799e+02, 9.99813799e+02, 9.99813799e+02, 9.99813799e+02,
9.99439043e+02, 9.99439043e+02, 9.99439043e+02, 9.99439043e+02,
9.98445046e+02, 9.98445046e+02, 9.98445046e+02, 9.98445046e+02,
9.96052372e+02, 9.96052372e+02, 9.96052372e+02, 9.96052372e+02,
9.90862868e+02, 9.90862868e+02, 9.90862868e+02, 9.90862868e+02,
9.80788585e+02, 9.80788585e+02, 9.80788585e+02, 9.80788585e+02,
9.63364916e+02, 9.63364916e+02, 9.63364916e+02, 9.63364916e+02,
9.36537037e+02, 9.36537037e+02, 9.36537037e+02, 9.36537037e+02,
8.99584844e+02, 8.99584844e+02, 8.99584844e+02, 8.99584844e+02,
8.53541949e+02, 8.53541949e+02, 8.53541949e+02, 8.53541949e+02,
8.00725978e+02, 8.00725978e+02, 8.00725978e+02, 8.00725978e+02,
7.43656312e+02, 7.43656312e+02, 7.43656312e+02, 7.43656312e+02,
6.86069806e+02, 6.86069806e+02, 6.86069806e+02, 6.86069806e+02,
6.33063024e+02, 6.33063024e+02, 6.33063024e+02, 6.33063024e+02,
5.84804742e+02, 5.84804742e+02, 5.84804742e+02, 5.84804742e+02,
5.41876353e+02, 5.41876353e+02, 5.41876353e+02, 5.41876353e+02,
5.05141177e+02, 5.05141177e+02, 5.05141177e+02, 5.05141177e+02,
4.76536346e+02, 4.76536346e+02, 4.76536346e+02, 4.76536346e+02,
4.58081353e+02, 4.58081353e+02, 4.58081353e+02, 4.58081353e+02,
4.49630363e+02, 4.49630363e+02, 4.49630363e+02, 4.49630363e+02,
4.47839670e+02, 4.47839670e+02, 4.47839670e+02, 4.47839670e+02,
4.49917497e+02, 4.49917497e+02, 4.49917497e+02, 4.49917497e+02,
4.52105100e+02, 4.52105100e+02, 4.52105100e+02, 4.52105100e+02,
4.52784421e+02, 4.52784421e+02, 4.52784421e+02, 4.52784421e+02,
4.53082540e+02, 4.53082540e+02, 4.53082540e+02, 4.53082540e+02,
4.53173248e+02, 4.53173248e+02, 4.53173248e+02, 4.53173248e+02,
4.53232634e+02, 4.53232634e+02, 4.53232634e+02, 4.53232634e+02,
4.53513027e+02, 4.53513027e+02, 4.53513027e+02, 4.53513027e+02,
4.53743580e+02, 4.53743580e+02, 4.53743580e+02, 4.53743580e+02,
4.47885607e+02, 4.47885607e+02, 4.47885607e+02, 4.47885607e+02,
4.01687163e+02, 4.01687163e+02, 4.01687163e+02, 4.01687163e+02,
2.28101815e+02, 2.28101815e+02, 2.28101815e+02, 2.28101815e+02,
2.86587243e+01, 2.86587243e+01, 2.86587243e+01, 2.86587243e+01,
2.56567373e-01, 2.56567373e-01, 2.56567373e-01, 2.56567373e-01,
1.00575986e-02, 1.00575986e-02, 1.00575986e-02, 1.00575986e-02,
1.00000070e-02, 1.00000070e-02, 1.00000070e-02, 1.00000070e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
0.99999934, 0.99999934, 0.99999934, 0.99999934, 0.99999737,
0.99999737, 0.99999737, 0.99999737, 0.99999024, 0.99999024,
0.99999024, 0.99999024, 0.99996611, 0.99996611, 0.99996611,
0.99996611, 0.99989058, 0.99989058, 0.99989058, 0.99989058,
0.99967241, 0.99967241, 0.99967241, 0.99967241, 0.9990943 ,
0.9990943 , 0.9990943 , 0.9990943 , 0.99769746, 0.99769746,
0.99769746, 0.99769746, 0.99464004, 0.99464004, 0.99464004,
0.99464004, 0.98861492, 0.98861492, 0.98861492, 0.98861492,
0.97797231, 0.97797231, 0.97797231, 0.97797231, 0.96114094,
0.96114094, 0.96114094, 0.96114094, 0.93721972, 0.93721972,
0.93721972, 0.93721972, 0.9063806 , 0.9063806 , 0.9063806 ,
0.9063806 , 0.86977129, 0.86977129, 0.86977129, 0.86977129,
0.8289238 , 0.8289238 , 0.8289238 , 0.8289238 , 0.78560018,
0.78560018, 0.78560018, 0.78560018, 0.74329928, 0.74329928,
0.74329928, 0.74329928, 0.70377185, 0.70377185, 0.70377185,
0.70377185, 0.66708371, 0.66708371, 0.66708371, 0.66708371,
0.6330064 , 0.6330064 , 0.6330064 , 0.6330064 , 0.60675478,
0.60675478, 0.60675478, 0.60675478, 0.58061389, 0.58061389,
0.58061389, 0.58061389, 0.57133748, 0.57133748, 0.57133748,
0.57133748, 0.56401096, 0.56401096, 0.56401096, 0.56401096,
0.56229948, 0.56229948, 0.56229948, 0.56229948, 0.56457284,
0.56457284, 0.56457284, 0.56457284, 0.56699615, 0.56699615,
0.56699615, 0.56699615, 0.56661875, 0.56661875, 0.56661875,
0.56661875, 0.56639427, 0.56639427, 0.56639427, 0.56639427,
0.57210261, 0.57210261, 0.57210261, 0.57210261, 0.60938253,
0.60938253, 0.60938253, 0.60938253, 0.75154823, 0.75154823,
0.75154823, 0.75154823, 1.14834311, 1.14834311, 1.14834311,
1.14834311, 2.00753778, 2.00753778, 2.00753778, 2.00753778,
3.07707073, 3.07707073, 3.07707073, 3.07707073, 3.28851254,
3.28851254, 3.28851254, 3.28851254, 2.25822824, 2.25822824,
2.25822824, 2.25822824, 1.136885 , 1.136885 , 1.136885 ,
1.136885 , 1.00702667, 1.00702667, 1.00702667, 1.00702667,
1.00003133, 1.00003133, 1.00003133, 1.00003133, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([8.88472523e-09, 8.88472523e-09, 8.88472523e-09, 8.88472523e-09,
5.29210904e-08, 5.29210904e-08, 5.29210904e-08, 5.29210904e-08,
2.68968990e-07, 2.68968990e-07, 2.68968990e-07, 2.68968990e-07,
1.29058596e-06, 1.29058596e-06, 1.29058596e-06, 1.29058596e-06,
5.82613011e-06, 5.82613011e-06, 5.82613011e-06, 5.82613011e-06,
2.47055828e-05, 2.47055828e-05, 2.47055828e-05, 2.47055828e-05,
9.82232922e-05, 9.82232922e-05, 9.82232922e-05, 9.82232922e-05,
3.65333376e-04, 3.65333376e-04, 3.65333376e-04, 3.65333376e-04,
1.26798274e-03, 1.26798274e-03, 1.26798274e-03, 1.26798274e-03,
4.09445985e-03, 4.09445985e-03, 4.09445985e-03, 4.09445985e-03,
1.22588183e-02, 1.22588183e-02, 1.22588183e-02, 1.22588183e-02,
3.38993827e-02, 3.38993827e-02, 3.38993827e-02, 3.38993827e-02,
8.62271626e-02, 8.62271626e-02, 8.62271626e-02, 8.62271626e-02,
2.00962075e-01, 2.00962075e-01, 2.00962075e-01, 2.00962075e-01,
4.27886788e-01, 4.27886788e-01, 4.27886788e-01, 4.27886788e-01,
8.31469810e-01, 8.31469810e-01, 8.31469810e-01, 8.31469810e-01,
1.47715354e+00, 1.47715354e+00, 1.47715354e+00, 1.47715354e+00,
2.41104027e+00, 2.41104027e+00, 2.41104027e+00, 2.41104027e+00,
3.64432706e+00, 3.64432706e+00, 3.64432706e+00, 3.64432706e+00,
5.15349521e+00, 5.15349521e+00, 5.15349521e+00, 5.15349521e+00,
6.89898043e+00, 6.89898043e+00, 6.89898043e+00, 6.89898043e+00,
8.82107363e+00, 8.82107363e+00, 8.82107363e+00, 8.82107363e+00,
1.07606034e+01, 1.07606034e+01, 1.07606034e+01, 1.07606034e+01,
1.26809719e+01, 1.26809719e+01, 1.26809719e+01, 1.26809719e+01,
1.45408992e+01, 1.45408992e+01, 1.45408992e+01, 1.45408992e+01,
1.63011956e+01, 1.63011956e+01, 1.63011956e+01, 1.63011956e+01,
1.78659797e+01, 1.78659797e+01, 1.78659797e+01, 1.78659797e+01,
1.91016597e+01, 1.91016597e+01, 1.91016597e+01, 1.91016597e+01,
1.98864085e+01, 1.98864085e+01, 1.98864085e+01, 1.98864085e+01,
2.02241697e+01, 2.02241697e+01, 2.02241697e+01, 2.02241697e+01,
2.02710826e+01, 2.02710826e+01, 2.02710826e+01, 2.02710826e+01,
2.01384385e+01, 2.01384385e+01, 2.01384385e+01, 2.01384385e+01,
2.00398023e+01, 2.00398023e+01, 2.00398023e+01, 2.00398023e+01,
2.00141317e+01, 2.00141317e+01, 2.00141317e+01, 2.00141317e+01,
2.00125047e+01, 2.00125047e+01, 2.00125047e+01, 2.00125047e+01,
2.00117339e+01, 2.00117339e+01, 2.00117339e+01, 2.00117339e+01,
2.00041797e+01, 2.00041797e+01, 2.00041797e+01, 2.00041797e+01,
1.99838495e+01, 1.99838495e+01, 1.99838495e+01, 1.99838495e+01,
1.99519757e+01, 1.99519757e+01, 1.99519757e+01, 1.99519757e+01,
1.98474175e+01, 1.98474175e+01, 1.98474175e+01, 1.98474175e+01,
1.93323898e+01, 1.93323898e+01, 1.93323898e+01, 1.93323898e+01,
1.69770632e+01, 1.69770632e+01, 1.69770632e+01, 1.69770632e+01,
9.43267908e+00, 9.43267908e+00, 9.43267908e+00, 9.43267908e+00,
8.98850413e-01, 8.98850413e-01, 8.98850413e-01, 8.98850413e-01,
7.99452553e-03, 7.99452553e-03, 7.99452553e-03, 7.99452553e-03,
3.95277914e-06, 3.95277914e-06, 3.95277914e-06, 3.95277914e-06,
5.87204713e-10, 5.87204713e-10, 5.87204713e-10, 5.87204713e-10,
8.74454638e-14, 8.74454638e-14, 8.74454638e-14, 8.74454638e-14,
1.31382467e-17, 1.31382467e-17, 1.31382467e-17, 1.31382467e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
9.99999952e+02, 9.99999952e+02, 9.99999952e+02, 9.99999952e+02,
9.99999782e+02, 9.99999782e+02, 9.99999782e+02, 9.99999782e+02,
9.99999076e+02, 9.99999076e+02, 9.99999076e+02, 9.99999076e+02,
9.99996325e+02, 9.99996325e+02, 9.99996325e+02, 9.99996325e+02,
9.99986331e+02, 9.99986331e+02, 9.99986331e+02, 9.99986331e+02,
9.99952558e+02, 9.99952558e+02, 9.99952558e+02, 9.99952558e+02,
9.99846811e+02, 9.99846811e+02, 9.99846811e+02, 9.99846811e+02,
9.99541417e+02, 9.99541417e+02, 9.99541417e+02, 9.99541417e+02,
9.98732356e+02, 9.98732356e+02, 9.98732356e+02, 9.98732356e+02,
9.96778496e+02, 9.96778496e+02, 9.96778496e+02, 9.96778496e+02,
9.92506573e+02, 9.92506573e+02, 9.92506573e+02, 9.92506573e+02,
9.84106027e+02, 9.84106027e+02, 9.84106027e+02, 9.84106027e+02,
9.69322749e+02, 9.69322749e+02, 9.69322749e+02, 9.69322749e+02,
9.46081288e+02, 9.46081288e+02, 9.46081288e+02, 9.46081288e+02,
9.13335017e+02, 9.13335017e+02, 9.13335017e+02, 9.13335017e+02,
8.71610214e+02, 8.71610214e+02, 8.71610214e+02, 8.71610214e+02,
8.22805647e+02, 8.22805647e+02, 8.22805647e+02, 8.22805647e+02,
7.69307087e+02, 7.69307087e+02, 7.69307087e+02, 7.69307087e+02,
7.13651394e+02, 7.13651394e+02, 7.13651394e+02, 7.13651394e+02,
6.60389331e+02, 6.60389331e+02, 6.60389331e+02, 6.60389331e+02,
6.11811082e+02, 6.11811082e+02, 6.11811082e+02, 6.11811082e+02,
5.67482808e+02, 5.67482808e+02, 5.67482808e+02, 5.67482808e+02,
5.28269968e+02, 5.28269968e+02, 5.28269968e+02, 5.28269968e+02,
4.95352222e+02, 4.95352222e+02, 4.95352222e+02, 4.95352222e+02,
4.70492622e+02, 4.70492622e+02, 4.70492622e+02, 4.70492622e+02,
4.55270406e+02, 4.55270406e+02, 4.55270406e+02, 4.55270406e+02,
4.49060619e+02, 4.49060619e+02, 4.49060619e+02, 4.49060619e+02,
4.48201927e+02, 4.48201927e+02, 4.48201927e+02, 4.48201927e+02,
4.50695933e+02, 4.50695933e+02, 4.50695933e+02, 4.50695933e+02,
4.52345569e+02, 4.52345569e+02, 4.52345569e+02, 4.52345569e+02,
4.52754082e+02, 4.52754082e+02, 4.52754082e+02, 4.52754082e+02,
4.52997015e+02, 4.52997015e+02, 4.52997015e+02, 4.52997015e+02,
4.53174880e+02, 4.53174880e+02, 4.53174880e+02, 4.53174880e+02,
4.53361382e+02, 4.53361382e+02, 4.53361382e+02, 4.53361382e+02,
4.53679663e+02, 4.53679663e+02, 4.53679663e+02, 4.53679663e+02,
4.54190653e+02, 4.54190653e+02, 4.54190653e+02, 4.54190653e+02,
4.52637868e+02, 4.52637868e+02, 4.52637868e+02, 4.52637868e+02,
4.32258483e+02, 4.32258483e+02, 4.32258483e+02, 4.32258483e+02,
3.29015504e+02, 3.29015504e+02, 3.29015504e+02, 3.29015504e+02,
1.00405385e+02, 1.00405385e+02, 1.00405385e+02, 1.00405385e+02,
3.29045820e+00, 3.29045820e+00, 3.29045820e+00, 3.29045820e+00,
1.46741752e-02, 1.46741752e-02, 1.46741752e-02, 1.46741752e-02,
1.00004659e-02, 1.00004659e-02, 1.00004659e-02, 1.00004659e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999997, 0.99999997,
0.99999997, 0.99999997, 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999943, 0.99999943, 0.99999943, 0.99999943,
0.99999776, 0.99999776, 0.99999776, 0.99999776, 0.9999918 ,
0.9999918 , 0.9999918 , 0.9999918 , 0.99997186, 0.99997186,
0.99997186, 0.99997186, 0.99990994, 0.99990994, 0.99990994,
0.99990994, 0.99973194, 0.99973194, 0.99973194, 0.99973194,
0.99926076, 0.99926076, 0.99926076, 0.99926076, 0.99811888,
0.99811888, 0.99811888, 0.99811888, 0.9956012 , 0.9956012 ,
0.9956012 , 0.9956012 , 0.99058136, 0.99058136, 0.99058136,
0.99058136, 0.98157355, 0.98157355, 0.98157355, 0.98157355,
0.96705453, 0.96705453, 0.96705453, 0.96705453, 0.94598589,
0.94598589, 0.94598589, 0.94598589, 0.91825438, 0.91825438,
0.91825438, 0.91825438, 0.88471667, 0.88471667, 0.88471667,
0.88471667, 0.84678775, 0.84678775, 0.84678775, 0.84678775,
0.8058432 , 0.8058432 , 0.8058432 , 0.8058432 , 0.76438015,
0.76438015, 0.76438015, 0.76438015, 0.72517919, 0.72517919,
0.72517919, 0.72517919, 0.68826098, 0.68826098, 0.68826098,
0.68826098, 0.65432311, 0.65432311, 0.65432311, 0.65432311,
0.62261428, 0.62261428, 0.62261428, 0.62261428, 0.59964198,
0.59964198, 0.59964198, 0.59964198, 0.57647962, 0.57647962,
0.57647962, 0.57647962, 0.56891377, 0.56891377, 0.56891377,
0.56891377, 0.5642295 , 0.5642295 , 0.5642295 , 0.5642295 ,
0.56291649, 0.56291649, 0.56291649, 0.56291649, 0.56496715,
0.56496715, 0.56496715, 0.56496715, 0.5670335 , 0.5670335 ,
0.5670335 , 0.5670335 , 0.56691285, 0.56691285, 0.56691285,
0.56691285, 0.56649394, 0.56649394, 0.56649394, 0.56649394,
0.56954649, 0.56954649, 0.56954649, 0.56954649, 0.59269675,
0.59269675, 0.59269675, 0.59269675, 0.68846425, 0.68846425,
0.68846425, 0.68846425, 0.97389537, 0.97389537, 0.97389537,
0.97389537, 1.63730131, 1.63730131, 1.63730131, 1.63730131,
2.75902555, 2.75902555, 2.75902555, 2.75902555, 3.37028342,
3.37028342, 3.37028342, 3.37028342, 2.98215238, 2.98215238,
2.98215238, 2.98215238, 1.46829751, 1.46829751, 1.46829751,
1.46829751, 1.03187752, 1.03187752, 1.03187752, 1.03187752,
1.00073195, 1.00073195, 1.00073195, 1.00073195, 1.0000003 ,
1.0000003 , 1.0000003 , 1.0000003 , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([4.52514197e-08, 4.52514197e-08, 4.52514197e-08, 4.52514197e-08,
2.49281931e-07, 2.49281931e-07, 2.49281931e-07, 2.49281931e-07,
1.16502486e-06, 1.16502486e-06, 1.16502486e-06, 1.16502486e-06,
5.14742918e-06, 5.14742918e-06, 5.14742918e-06, 5.14742918e-06,
2.14115184e-05, 2.14115184e-05, 2.14115184e-05, 2.14115184e-05,
8.37057786e-05, 8.37057786e-05, 8.37057786e-05, 8.37057786e-05,
3.06910769e-04, 3.06910769e-04, 3.06910769e-04, 3.06910769e-04,
1.05286130e-03, 1.05286130e-03, 1.05286130e-03, 1.05286130e-03,
3.36989687e-03, 3.36989687e-03, 3.36989687e-03, 3.36989687e-03,
1.00310100e-02, 1.00310100e-02, 1.00310100e-02, 1.00310100e-02,
2.76674775e-02, 2.76674775e-02, 2.76674775e-02, 2.76674775e-02,
7.04345400e-02, 7.04345400e-02, 7.04345400e-02, 7.04345400e-02,
1.64864079e-01, 1.64864079e-01, 1.64864079e-01, 1.64864079e-01,
3.53706435e-01, 3.53706435e-01, 3.53706435e-01, 3.53706435e-01,
6.94517417e-01, 6.94517417e-01, 6.94517417e-01, 6.94517417e-01,
1.24926788e+00, 1.24926788e+00, 1.24926788e+00, 1.24926788e+00,
2.06658717e+00, 2.06658717e+00, 2.06658717e+00, 2.06658717e+00,
3.16549040e+00, 3.16549040e+00, 3.16549040e+00, 3.16549040e+00,
4.53121338e+00, 4.53121338e+00, 4.53121338e+00, 4.53121338e+00,
6.12705253e+00, 6.12705253e+00, 6.12705253e+00, 6.12705253e+00,
7.91542783e+00, 7.91542783e+00, 7.91542783e+00, 7.91542783e+00,
9.77789566e+00, 9.77789566e+00, 9.77789566e+00, 9.77789566e+00,
1.16347704e+01, 1.16347704e+01, 1.16347704e+01, 1.16347704e+01,
1.34551790e+01, 1.34551790e+01, 1.34551790e+01, 1.34551790e+01,
1.52122136e+01, 1.52122136e+01, 1.52122136e+01, 1.52122136e+01,
1.68521553e+01, 1.68521553e+01, 1.68521553e+01, 1.68521553e+01,
1.82765818e+01, 1.82765818e+01, 1.82765818e+01, 1.82765818e+01,
1.93576979e+01, 1.93576979e+01, 1.93576979e+01, 1.93576979e+01,
1.99942621e+01, 1.99942621e+01, 1.99942621e+01, 1.99942621e+01,
2.02328594e+01, 2.02328594e+01, 2.02328594e+01, 2.02328594e+01,
2.02456712e+01, 2.02456712e+01, 2.02456712e+01, 2.02456712e+01,
2.01101923e+01, 2.01101923e+01, 2.01101923e+01, 2.01101923e+01,
2.00369389e+01, 2.00369389e+01, 2.00369389e+01, 2.00369389e+01,
2.00131267e+01, 2.00131267e+01, 2.00131267e+01, 2.00131267e+01,
2.00070966e+01, 2.00070966e+01, 2.00070966e+01, 2.00070966e+01,
2.00052693e+01, 2.00052693e+01, 2.00052693e+01, 2.00052693e+01,
1.99989897e+01, 1.99989897e+01, 1.99989897e+01, 1.99989897e+01,
1.99805077e+01, 1.99805077e+01, 1.99805077e+01, 1.99805077e+01,
1.99568809e+01, 1.99568809e+01, 1.99568809e+01, 1.99568809e+01,
1.98969783e+01, 1.98969783e+01, 1.98969783e+01, 1.98969783e+01,
1.96461093e+01, 1.96461093e+01, 1.96461093e+01, 1.96461093e+01,
1.84628990e+01, 1.84628990e+01, 1.84628990e+01, 1.84628990e+01,
1.37419915e+01, 1.37419915e+01, 1.37419915e+01, 1.37419915e+01,
3.80245394e+00, 3.80245394e+00, 3.80245394e+00, 3.80245394e+00,
1.00964393e-01, 1.00964393e-01, 1.00964393e-01, 1.00964393e-01,
1.97893986e-04, 1.97893986e-04, 1.97893986e-04, 1.97893986e-04,
3.50167417e-08, 3.50167417e-08, 3.50167417e-08, 3.50167417e-08,
5.53183762e-12, 5.53183762e-12, 5.53183762e-12, 5.53183762e-12,
8.51924516e-16, 8.51924516e-16, 8.51924516e-16, 8.51924516e-16,
1.36608685e-19, 1.36608685e-19, 1.36608685e-19, 1.36608685e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999956e+02, 9.99999956e+02, 9.99999956e+02, 9.99999956e+02,
9.99999807e+02, 9.99999807e+02, 9.99999807e+02, 9.99999807e+02,
9.99999199e+02, 9.99999199e+02, 9.99999199e+02, 9.99999199e+02,
9.99996868e+02, 9.99996868e+02, 9.99996868e+02, 9.99996868e+02,
9.99988517e+02, 9.99988517e+02, 9.99988517e+02, 9.99988517e+02,
9.99960606e+02, 9.99960606e+02, 9.99960606e+02, 9.99960606e+02,
9.99873918e+02, 9.99873918e+02, 9.99873918e+02, 9.99873918e+02,
9.99624741e+02, 9.99624741e+02, 9.99624741e+02, 9.99624741e+02,
9.98965280e+02, 9.98965280e+02, 9.98965280e+02, 9.98965280e+02,
9.97367799e+02, 9.97367799e+02, 9.97367799e+02, 9.97367799e+02,
9.93848786e+02, 9.93848786e+02, 9.93848786e+02, 9.93848786e+02,
9.86844939e+02, 9.86844939e+02, 9.86844939e+02, 9.86844939e+02,
9.74316549e+02, 9.74316549e+02, 9.74316549e+02, 9.74316549e+02,
9.54225804e+02, 9.54225804e+02, 9.54225804e+02, 9.54225804e+02,
9.25291883e+02, 9.25291883e+02, 9.25291883e+02, 9.25291883e+02,
8.87600888e+02, 8.87600888e+02, 8.87600888e+02, 8.87600888e+02,
8.42619539e+02, 8.42619539e+02, 8.42619539e+02, 8.42619539e+02,
7.92557878e+02, 7.92557878e+02, 7.92557878e+02, 7.92557878e+02,
7.39509078e+02, 7.39509078e+02, 7.39509078e+02, 7.39509078e+02,
6.86734806e+02, 6.86734806e+02, 6.86734806e+02, 6.86734806e+02,
6.37955173e+02, 6.37955173e+02, 6.37955173e+02, 6.37955173e+02,
5.93035458e+02, 5.93035458e+02, 5.93035458e+02, 5.93035458e+02,
5.52230567e+02, 5.52230567e+02, 5.52230567e+02, 5.52230567e+02,
5.16416992e+02, 5.16416992e+02, 5.16416992e+02, 5.16416992e+02,
4.86984397e+02, 4.86984397e+02, 4.86984397e+02, 4.86984397e+02,
4.65596969e+02, 4.65596969e+02, 4.65596969e+02, 4.65596969e+02,
4.53240066e+02, 4.53240066e+02, 4.53240066e+02, 4.53240066e+02,
4.48778450e+02, 4.48778450e+02, 4.48778450e+02, 4.48778450e+02,
4.48639462e+02, 4.48639462e+02, 4.48639462e+02, 4.48639462e+02,
4.51263622e+02, 4.51263622e+02, 4.51263622e+02, 4.51263622e+02,
4.52567685e+02, 4.52567685e+02, 4.52567685e+02, 4.52567685e+02,
4.52811496e+02, 4.52811496e+02, 4.52811496e+02, 4.52811496e+02,
4.52945111e+02, 4.52945111e+02, 4.52945111e+02, 4.52945111e+02,
4.53123466e+02, 4.53123466e+02, 4.53123466e+02, 4.53123466e+02,
4.53394325e+02, 4.53394325e+02, 4.53394325e+02, 4.53394325e+02,
4.53835168e+02, 4.53835168e+02, 4.53835168e+02, 4.53835168e+02,
4.54404144e+02, 4.54404144e+02, 4.54404144e+02, 4.54404144e+02,
4.54398815e+02, 4.54398815e+02, 4.54398815e+02, 4.54398815e+02,
4.46505808e+02, 4.46505808e+02, 4.46505808e+02, 4.46505808e+02,
3.93317262e+02, 3.93317262e+02, 3.93317262e+02, 3.93317262e+02,
2.10080070e+02, 2.10080070e+02, 2.10080070e+02, 2.10080070e+02,
2.32249751e+01, 2.32249751e+01, 2.32249751e+01, 2.32249751e+01,
1.73430791e-01, 1.73430791e-01, 1.73430791e-01, 1.73430791e-01,
1.00314003e-02, 1.00314003e-02, 1.00314003e-02, 1.00314003e-02,
1.00000041e-02, 1.00000041e-02, 1.00000041e-02, 1.00000041e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.99999988, 0.99999988,
0.99999988, 0.99999988, 0.99999951, 0.99999951, 0.99999951,
0.99999951, 0.9999981 , 0.9999981 , 0.9999981 , 0.9999981 ,
0.99999312, 0.99999312, 0.99999312, 0.99999312, 0.99997664,
0.99997664, 0.99997664, 0.99997664, 0.99992585, 0.99992585,
0.99992585, 0.99992585, 0.99978045, 0.99978045, 0.99978045,
0.99978045, 0.99939593, 0.99939593, 0.99939593, 0.99939593,
0.99846143, 0.99846143, 0.99846143, 0.99846143, 0.99638683,
0.99638683, 0.99638683, 0.99638683, 0.99220475, 0.99220475,
0.99220475, 0.99220475, 0.98458761, 0.98458761, 0.98458761,
0.98458761, 0.9720855 , 0.9720855 , 0.9720855 , 0.9720855 ,
0.95357426, 0.95357426, 0.95357426, 0.95357426, 0.92870343,
0.92870343, 0.92870343, 0.92870343, 0.89804865, 0.89804865,
0.89804865, 0.89804865, 0.86284217, 0.86284217, 0.86284217,
0.86284217, 0.82441149, 0.82441149, 0.82441149, 0.82441149,
0.78436898, 0.78436898, 0.78436898, 0.78436898, 0.74552409,
0.74552409, 0.74552409, 0.74552409, 0.70888758, 0.70888758,
0.70888758, 0.70888758, 0.67437483, 0.67437483, 0.67437483,
0.67437483, 0.6430066 , 0.6430066 , 0.6430066 , 0.6430066 ,
0.61348618, 0.61348618, 0.61348618, 0.61348618, 0.59349049,
0.59349049, 0.59349049, 0.59349049, 0.57331869, 0.57331869,
0.57331869, 0.57331869, 0.56704679, 0.56704679, 0.56704679,
0.56704679, 0.56447692, 0.56447692, 0.56447692, 0.56447692,
0.56362867, 0.56362867, 0.56362867, 0.56362867, 0.56531162,
0.56531162, 0.56531162, 0.56531162, 0.567019 , 0.567019 ,
0.567019 , 0.567019 , 0.56709383, 0.56709383, 0.56709383,
0.56709383, 0.5667092 , 0.5667092 , 0.5667092 , 0.5667092 ,
0.56824252, 0.56824252, 0.56824252, 0.56824252, 0.58236395,
0.58236395, 0.58236395, 0.58236395, 0.6459472 , 0.6459472 ,
0.6459472 , 0.6459472 , 0.84807929, 0.84807929, 0.84807929,
0.84807929, 1.34919174, 1.34919174, 1.34919174, 1.34919174,
2.33541132, 2.33541132, 2.33541132, 2.33541132, 3.2926407 ,
3.2926407 , 3.2926407 , 3.2926407 , 3.37752881, 3.37752881,
3.37752881, 3.37752881, 2.16954992, 2.16954992, 2.16954992,
2.16954992, 1.1172986 , 1.1172986 , 1.1172986 , 1.1172986 ,
1.00560841, 1.00560841, 1.00560841, 1.00560841, 1.00001853,
1.00001853, 1.00001853, 1.00001853, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.04607737e-07, 2.04607737e-07, 2.04607737e-07, 2.04607737e-07,
1.04753503e-06, 1.04753503e-06, 1.04753503e-06, 1.04753503e-06,
4.52318125e-06, 4.52318125e-06, 4.52318125e-06, 4.52318125e-06,
1.84864298e-05, 1.84864298e-05, 1.84864298e-05, 1.84864298e-05,
7.11599517e-05, 7.11599517e-05, 7.11599517e-05, 7.11599517e-05,
2.57499723e-04, 2.57499723e-04, 2.57499723e-04, 2.57499723e-04,
8.73945333e-04, 8.73945333e-04, 8.73945333e-04, 8.73945333e-04,
2.77466387e-03, 2.77466387e-03, 2.77466387e-03, 2.77466387e-03,
8.21545316e-03, 8.21545316e-03, 8.21545316e-03, 8.21545316e-03,
2.26072838e-02, 2.26072838e-02, 2.26072838e-02, 2.26072838e-02,
5.76012133e-02, 5.76012133e-02, 5.76012133e-02, 5.76012133e-02,
1.35378501e-01, 1.35378501e-01, 1.35378501e-01, 1.35378501e-01,
2.92554805e-01, 2.92554805e-01, 2.92554805e-01, 2.92554805e-01,
5.80205845e-01, 5.80205845e-01, 5.80205845e-01, 5.80205845e-01,
1.05628947e+00, 1.05628947e+00, 1.05628947e+00, 1.05628947e+00,
1.77052666e+00, 1.77052666e+00, 1.77052666e+00, 1.77052666e+00,
2.74829898e+00, 2.74829898e+00, 2.74829898e+00, 2.74829898e+00,
3.98331961e+00, 3.98331961e+00, 3.98331961e+00, 3.98331961e+00,
5.44451310e+00, 5.44451310e+00, 5.44451310e+00, 5.44451310e+00,
7.09514684e+00, 7.09514684e+00, 7.09514684e+00, 7.09514684e+00,
8.87295070e+00, 8.87295070e+00, 8.87295070e+00, 8.87295070e+00,
1.06594721e+01, 1.06594721e+01, 1.06594721e+01, 1.06594721e+01,
1.24293602e+01, 1.24293602e+01, 1.24293602e+01, 1.24293602e+01,
1.41607204e+01, 1.41607204e+01, 1.41607204e+01, 1.41607204e+01,
1.58187383e+01, 1.58187383e+01, 1.58187383e+01, 1.58187383e+01,
1.73419873e+01, 1.73419873e+01, 1.73419873e+01, 1.73419873e+01,
1.86283641e+01, 1.86283641e+01, 1.86283641e+01, 1.86283641e+01,
1.95639138e+01, 1.95639138e+01, 1.95639138e+01, 1.95639138e+01,
2.00736039e+01, 2.00736039e+01, 2.00736039e+01, 2.00736039e+01,
2.02330193e+01, 2.02330193e+01, 2.02330193e+01, 2.02330193e+01,
2.02158212e+01, 2.02158212e+01, 2.02158212e+01, 2.02158212e+01,
2.00862699e+01, 2.00862699e+01, 2.00862699e+01, 2.00862699e+01,
2.00336687e+01, 2.00336687e+01, 2.00336687e+01, 2.00336687e+01,
2.00150798e+01, 2.00150798e+01, 2.00150798e+01, 2.00150798e+01,
2.00060876e+01, 2.00060876e+01, 2.00060876e+01, 2.00060876e+01,
1.99998383e+01, 1.99998383e+01, 1.99998383e+01, 1.99998383e+01,
1.99906385e+01, 1.99906385e+01, 1.99906385e+01, 1.99906385e+01,
1.99726435e+01, 1.99726435e+01, 1.99726435e+01, 1.99726435e+01,
1.99540496e+01, 1.99540496e+01, 1.99540496e+01, 1.99540496e+01,
1.99172472e+01, 1.99172472e+01, 1.99172472e+01, 1.99172472e+01,
1.97905611e+01, 1.97905611e+01, 1.97905611e+01, 1.97905611e+01,
1.92093064e+01, 1.92093064e+01, 1.92093064e+01, 1.92093064e+01,
1.66360985e+01, 1.66360985e+01, 1.66360985e+01, 1.66360985e+01,
8.75489385e+00, 8.75489385e+00, 8.75489385e+00, 8.75489385e+00,
7.20452697e-01, 7.20452697e-01, 7.20452697e-01, 7.20452697e-01,
5.43172134e-03, 5.43172134e-03, 5.43172134e-03, 5.43172134e-03,
2.27604406e-06, 2.27604406e-06, 2.27604406e-06, 2.27604406e-06,
3.38472840e-10, 3.38472840e-10, 3.38472840e-10, 3.38472840e-10,
5.10071735e-14, 5.10071735e-14, 5.10071735e-14, 5.10071735e-14,
7.83554591e-18, 7.83554591e-18, 7.83554591e-18, 7.83554591e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999961e+02, 9.99999961e+02, 9.99999961e+02, 9.99999961e+02,
9.99999831e+02, 9.99999831e+02, 9.99999831e+02, 9.99999831e+02,
9.99999308e+02, 9.99999308e+02, 9.99999308e+02, 9.99999308e+02,
9.99997337e+02, 9.99997337e+02, 9.99997337e+02, 9.99997337e+02,
9.99990365e+02, 9.99990365e+02, 9.99990365e+02, 9.99990365e+02,
9.99967300e+02, 9.99967300e+02, 9.99967300e+02, 9.99967300e+02,
9.99896187e+02, 9.99896187e+02, 9.99896187e+02, 9.99896187e+02,
9.99692651e+02, 9.99692651e+02, 9.99692651e+02, 9.99692651e+02,
9.99154448e+02, 9.99154448e+02, 9.99154448e+02, 9.99154448e+02,
9.97846913e+02, 9.97846913e+02, 9.97846913e+02, 9.97846913e+02,
9.94946365e+02, 9.94946365e+02, 9.94946365e+02, 9.94946365e+02,
9.89107997e+02, 9.89107997e+02, 9.89107997e+02, 9.89107997e+02,
9.78502508e+02, 9.78502508e+02, 9.78502508e+02, 9.78502508e+02,
9.61171766e+02, 9.61171766e+02, 9.61171766e+02, 9.61171766e+02,
9.35679962e+02, 9.35679962e+02, 9.35679962e+02, 9.35679962e+02,
9.01743661e+02, 9.01743661e+02, 9.01743661e+02, 9.01743661e+02,
8.60410587e+02, 8.60410587e+02, 8.60410587e+02, 8.60410587e+02,
8.13626053e+02, 8.13626053e+02, 8.13626053e+02, 8.13626053e+02,
7.63416647e+02, 7.63416647e+02, 7.63416647e+02, 7.63416647e+02,
7.12019797e+02, 7.12019797e+02, 7.12019797e+02, 7.12019797e+02,
6.63120871e+02, 6.63120871e+02, 6.63120871e+02, 6.63120871e+02,
6.17966596e+02, 6.17966596e+02, 6.17966596e+02, 6.17966596e+02,
5.76387663e+02, 5.76387663e+02, 5.76387663e+02, 5.76387663e+02,
5.38762205e+02, 5.38762205e+02, 5.38762205e+02, 5.38762205e+02,
5.06102905e+02, 5.06102905e+02, 5.06102905e+02, 5.06102905e+02,
4.79873679e+02, 4.79873679e+02, 4.79873679e+02, 4.79873679e+02,
4.61632451e+02, 4.61632451e+02, 4.61632451e+02, 4.61632451e+02,
4.51822663e+02, 4.51822663e+02, 4.51822663e+02, 4.51822663e+02,
4.48755045e+02, 4.48755045e+02, 4.48755045e+02, 4.48755045e+02,
4.49111914e+02, 4.49111914e+02, 4.49111914e+02, 4.49111914e+02,
4.51654090e+02, 4.51654090e+02, 4.51654090e+02, 4.51654090e+02,
4.52718346e+02, 4.52718346e+02, 4.52718346e+02, 4.52718346e+02,
4.52919431e+02, 4.52919431e+02, 4.52919431e+02, 4.52919431e+02,
4.52976550e+02, 4.52976550e+02, 4.52976550e+02, 4.52976550e+02,
4.53103923e+02, 4.53103923e+02, 4.53103923e+02, 4.53103923e+02,
4.53388509e+02, 4.53388509e+02, 4.53388509e+02, 4.53388509e+02,
4.53898765e+02, 4.53898765e+02, 4.53898765e+02, 4.53898765e+02,
4.54482141e+02, 4.54482141e+02, 4.54482141e+02, 4.54482141e+02,
4.55085093e+02, 4.55085093e+02, 4.55085093e+02, 4.55085093e+02,
4.52596174e+02, 4.52596174e+02, 4.52596174e+02, 4.52596174e+02,
4.27900465e+02, 4.27900465e+02, 4.27900465e+02, 4.27900465e+02,
3.14451641e+02, 3.14451641e+02, 3.14451641e+02, 3.14451641e+02,
8.65631679e+01, 8.65631679e+01, 8.65631679e+01, 8.65631679e+01,
2.41830497e+00, 2.41830497e+00, 2.41830497e+00, 2.41830497e+00,
1.27132333e-02, 1.27132333e-02, 1.27132333e-02, 1.27132333e-02,
1.00002685e-02, 1.00002685e-02, 1.00002685e-02, 1.00002685e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999989,
0.99999989, 0.99999989, 0.99999989, 0.99999957, 0.99999957,
0.99999957, 0.99999957, 0.99999839, 0.99999839, 0.99999839,
0.99999839, 0.99999423, 0.99999423, 0.99999423, 0.99999423,
0.99998062, 0.99998062, 0.99998062, 0.99998062, 0.99993892,
0.99993892, 0.99993892, 0.99993892, 0.99982004, 0.99982004,
0.99982004, 0.99982004, 0.99950587, 0.99950587, 0.99950587,
0.99950587, 0.99874031, 0.99874031, 0.99874031, 0.99874031,
0.99702982, 0.99702982, 0.99702982, 0.99702982, 0.99354599,
0.99354599, 0.99354599, 0.99354599, 0.98711067, 0.98711067,
0.98711067, 0.98711067, 0.97636406, 0.97636406, 0.97636406,
0.97636406, 0.96013913, 0.96013913, 0.96013913, 0.96013913,
0.93789515, 0.93789515, 0.93789515, 0.93789515, 0.90994657,
0.90994657, 0.90994657, 0.90994657, 0.8773198 , 0.8773198 ,
0.8773198 , 0.8773198 , 0.84131053, 0.84131053, 0.84131053,
0.84131053, 0.80309318, 0.80309318, 0.80309318, 0.80309318,
0.76488582, 0.76488582, 0.76488582, 0.76488582, 0.72862882,
0.72862882, 0.72862882, 0.72862882, 0.69424027, 0.69424027,
0.69424027, 0.69424027, 0.66187235, 0.66187235, 0.66187235,
0.66187235, 0.63295763, 0.63295763, 0.63295763, 0.63295763,
0.60550311, 0.60550311, 0.60550311, 0.60550311, 0.58821214,
0.58821214, 0.58821214, 0.58821214, 0.57094445, 0.57094445,
0.57094445, 0.57094445, 0.56567273, 0.56567273, 0.56567273,
0.56567273, 0.56457433, 0.56457433, 0.56457433, 0.56457433,
0.56452234, 0.56452234, 0.56452234, 0.56452234, 0.56563963,
0.56563963, 0.56563963, 0.56563963, 0.56692819, 0.56692819,
0.56692819, 0.56692819, 0.56718804, 0.56718804, 0.56718804,
0.56718804, 0.56693567, 0.56693567, 0.56693567, 0.56693567,
0.56767338, 0.56767338, 0.56767338, 0.56767338, 0.57613836,
0.57613836, 0.57613836, 0.57613836, 0.61774062, 0.61774062,
0.61774062, 0.61774062, 0.75887044, 0.75887044, 0.75887044,
0.75887044, 1.13039106, 1.13039106, 1.13039106, 1.13039106,
1.91581709, 1.91581709, 1.91581709, 1.91581709, 3.05001354,
3.05001354, 3.05001354, 3.05001354, 3.50876949, 3.50876949,
3.50876949, 3.50876949, 2.9569208 , 2.9569208 , 2.9569208 ,
2.9569208 , 1.40056125, 1.40056125, 1.40056125, 1.40056125,
1.02615253, 1.02615253, 1.02615253, 1.02615253, 1.00051302,
1.00051302, 1.00051302, 1.00051302, 1.00000017, 1.00000017,
1.00000017, 1.00000017, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([8.31212456e-07, 8.31212456e-07, 8.31212456e-07, 8.31212456e-07,
3.97120544e-06, 3.97120544e-06, 3.97120544e-06, 3.97120544e-06,
1.59059987e-05, 1.59059987e-05, 1.59059987e-05, 1.59059987e-05,
6.03664366e-05, 6.03664366e-05, 6.03664366e-05, 6.03664366e-05,
2.15805643e-04, 2.15805643e-04, 2.15805643e-04, 2.15805643e-04,
7.25243296e-04, 7.25243296e-04, 7.25243296e-04, 7.25243296e-04,
2.28544773e-03, 2.28544773e-03, 2.28544773e-03, 2.28544773e-03,
6.73404888e-03, 6.73404888e-03, 6.73404888e-03, 6.73404888e-03,
1.84918575e-02, 1.84918575e-02, 1.84918575e-02, 1.84918575e-02,
4.71552363e-02, 4.71552363e-02, 4.71552363e-02, 4.71552363e-02,
1.11259276e-01, 1.11259276e-01, 1.11259276e-01, 1.11259276e-01,
2.42090826e-01, 2.42090826e-01, 2.42090826e-01, 2.42090826e-01,
4.84732171e-01, 4.84732171e-01, 4.84732171e-01, 4.84732171e-01,
8.92811756e-01, 8.92811756e-01, 8.92811756e-01, 8.92811756e-01,
1.51595482e+00, 1.51595482e+00, 1.51595482e+00, 1.51595482e+00,
2.38448316e+00, 2.38448316e+00, 2.38448316e+00, 2.38448316e+00,
3.49994899e+00, 3.49994899e+00, 3.49994899e+00, 3.49994899e+00,
4.83781455e+00, 4.83781455e+00, 4.83781455e+00, 4.83781455e+00,
6.36160827e+00, 6.36160827e+00, 6.36160827e+00, 6.36160827e+00,
8.03629840e+00, 8.03629840e+00, 8.03629840e+00, 8.03629840e+00,
9.75414415e+00, 9.75414415e+00, 9.75414415e+00, 9.75414415e+00,
1.14703604e+01, 1.14703604e+01, 1.14703604e+01, 1.14703604e+01,
1.31577649e+01, 1.31577649e+01, 1.31577649e+01, 1.31577649e+01,
1.48036949e+01, 1.48036949e+01, 1.48036949e+01, 1.48036949e+01,
1.63662284e+01, 1.63662284e+01, 1.63662284e+01, 1.63662284e+01,
1.77761853e+01, 1.77761853e+01, 1.77761853e+01, 1.77761853e+01,
1.89288293e+01, 1.89288293e+01, 1.89288293e+01, 1.89288293e+01,
1.97266212e+01, 1.97266212e+01, 1.97266212e+01, 1.97266212e+01,
2.01268304e+01, 2.01268304e+01, 2.01268304e+01, 2.01268304e+01,
2.02304156e+01, 2.02304156e+01, 2.02304156e+01, 2.02304156e+01,
2.01855356e+01, 2.01855356e+01, 2.01855356e+01, 2.01855356e+01,
2.00664233e+01, 2.00664233e+01, 2.00664233e+01, 2.00664233e+01,
2.00284165e+01, 2.00284165e+01, 2.00284165e+01, 2.00284165e+01,
2.00164011e+01, 2.00164011e+01, 2.00164011e+01, 2.00164011e+01,
2.00075438e+01, 2.00075438e+01, 2.00075438e+01, 2.00075438e+01,
1.99976330e+01, 1.99976330e+01, 1.99976330e+01, 1.99976330e+01,
1.99833671e+01, 1.99833671e+01, 1.99833671e+01, 1.99833671e+01,
1.99631313e+01, 1.99631313e+01, 1.99631313e+01, 1.99631313e+01,
1.99444762e+01, 1.99444762e+01, 1.99444762e+01, 1.99444762e+01,
1.99229151e+01, 1.99229151e+01, 1.99229151e+01, 1.99229151e+01,
1.98546912e+01, 1.98546912e+01, 1.98546912e+01, 1.98546912e+01,
1.95683651e+01, 1.95683651e+01, 1.95683651e+01, 1.95683651e+01,
1.82512117e+01, 1.82512117e+01, 1.82512117e+01, 1.82512117e+01,
1.31946812e+01, 1.31946812e+01, 1.31946812e+01, 1.31946812e+01,
3.22197950e+00, 3.22197950e+00, 3.22197950e+00, 3.22197950e+00,
7.26448767e-02, 7.26448767e-02, 7.26448767e-02, 7.26448767e-02,
1.16941338e-04, 1.16941338e-04, 1.16941338e-04, 1.16941338e-04,
2.00485498e-08, 2.00485498e-08, 2.00485498e-08, 2.00485498e-08,
3.19846760e-12, 3.19846760e-12, 3.19846760e-12, 3.19846760e-12,
4.91826059e-16, 4.91826059e-16, 4.91826059e-16, 4.91826059e-16,
6.67643390e-20, 6.67643390e-20, 6.67643390e-20, 6.67643390e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999969e+02, 9.99999969e+02, 9.99999969e+02, 9.99999969e+02,
9.99999851e+02, 9.99999851e+02, 9.99999851e+02, 9.99999851e+02,
9.99999405e+02, 9.99999405e+02, 9.99999405e+02, 9.99999405e+02,
9.99997741e+02, 9.99997741e+02, 9.99997741e+02, 9.99997741e+02,
9.99991925e+02, 9.99991925e+02, 9.99991925e+02, 9.99991925e+02,
9.99972864e+02, 9.99972864e+02, 9.99972864e+02, 9.99972864e+02,
9.99914490e+02, 9.99914490e+02, 9.99914490e+02, 9.99914490e+02,
9.99748065e+02, 9.99748065e+02, 9.99748065e+02, 9.99748065e+02,
9.99308322e+02, 9.99308322e+02, 9.99308322e+02, 9.99308322e+02,
9.98237056e+02, 9.98237056e+02, 9.98237056e+02, 9.98237056e+02,
9.95845011e+02, 9.95845011e+02, 9.95845011e+02, 9.95845011e+02,
9.90979078e+02, 9.90979078e+02, 9.90979078e+02, 9.90979078e+02,
9.82011051e+02, 9.82011051e+02, 9.82011051e+02, 9.82011051e+02,
9.67091266e+02, 9.67091266e+02, 9.67091266e+02, 9.67091266e+02,
9.44695117e+02, 9.44695117e+02, 9.44695117e+02, 9.44695117e+02,
9.14239174e+02, 9.14239174e+02, 9.14239174e+02, 9.14239174e+02,
8.76379529e+02, 8.76379529e+02, 8.76379529e+02, 8.76379529e+02,
8.32762793e+02, 8.32762793e+02, 8.32762793e+02, 8.32762793e+02,
7.85366006e+02, 7.85366006e+02, 7.85366006e+02, 7.85366006e+02,
7.35932360e+02, 7.35932360e+02, 7.35932360e+02, 7.35932360e+02,
6.87323424e+02, 6.87323424e+02, 6.87323424e+02, 6.87323424e+02,
6.42175077e+02, 6.42175077e+02, 6.42175077e+02, 6.42175077e+02,
6.00145773e+02, 6.00145773e+02, 6.00145773e+02, 6.00145773e+02,
5.61538265e+02, 5.61538265e+02, 5.61538265e+02, 5.61538265e+02,
5.26840609e+02, 5.26840609e+02, 5.26840609e+02, 5.26840609e+02,
4.97140791e+02, 4.97140791e+02, 4.97140791e+02, 4.97140791e+02,
4.73884379e+02, 4.73884379e+02, 4.73884379e+02, 4.73884379e+02,
4.58462049e+02, 4.58462049e+02, 4.58462049e+02, 4.58462049e+02,
4.50871407e+02, 4.50871407e+02, 4.50871407e+02, 4.50871407e+02,
4.48847969e+02, 4.48847969e+02, 4.48847969e+02, 4.48847969e+02,
4.49672702e+02, 4.49672702e+02, 4.49672702e+02, 4.49672702e+02,
4.51922948e+02, 4.51922948e+02, 4.51922948e+02, 4.51922948e+02,
4.52785224e+02, 4.52785224e+02, 4.52785224e+02, 4.52785224e+02,
4.53005867e+02, 4.53005867e+02, 4.53005867e+02, 4.53005867e+02,
4.53063737e+02, 4.53063737e+02, 4.53063737e+02, 4.53063737e+02,
4.53160041e+02, 4.53160041e+02, 4.53160041e+02, 4.53160041e+02,
4.53422261e+02, 4.53422261e+02, 4.53422261e+02, 4.53422261e+02,
4.53914136e+02, 4.53914136e+02, 4.53914136e+02, 4.53914136e+02,
4.54500339e+02, 4.54500339e+02, 4.54500339e+02, 4.54500339e+02,
4.55295261e+02, 4.55295261e+02, 4.55295261e+02, 4.55295261e+02,
4.55007290e+02, 4.55007290e+02, 4.55007290e+02, 4.55007290e+02,
4.44699313e+02, 4.44699313e+02, 4.44699313e+02, 4.44699313e+02,
3.84060326e+02, 3.84060326e+02, 3.84060326e+02, 3.84060326e+02,
1.91713252e+02, 1.91713252e+02, 1.91713252e+02, 1.91713252e+02,
1.83826676e+01, 1.83826676e+01, 1.83826676e+01, 1.83826676e+01,
1.13135376e-01, 1.13135376e-01, 1.13135376e-01, 1.13135376e-01,
1.00165770e-02, 1.00165770e-02, 1.00165770e-02, 1.00165770e-02,
1.00000024e-02, 1.00000024e-02, 1.00000024e-02, 1.00000024e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999963,
0.99999963, 0.99999963, 0.99999963, 0.99999863, 0.99999863,
0.99999863, 0.99999863, 0.99999517, 0.99999517, 0.99999517,
0.99999517, 0.99998392, 0.99998392, 0.99998392, 0.99998392,
0.99994967, 0.99994967, 0.99994967, 0.99994967, 0.99985237,
0.99985237, 0.99985237, 0.99985237, 0.99959542, 0.99959542,
0.99959542, 0.99959542, 0.9989677 , 0.9989677 , 0.9989677 ,
0.9989677 , 0.99755668, 0.99755668, 0.99755668, 0.99755668,
0.99465483, 0.99465483, 0.99465483, 0.99465483, 0.98922278,
0.98922278, 0.98922278, 0.98922278, 0.98000087, 0.98000087,
0.98000087, 0.98000087, 0.96581386, 0.96581386, 0.96581386,
0.96581386, 0.94597479, 0.94597479, 0.94597479, 0.94597479,
0.92056352, 0.92056352, 0.92056352, 0.92056352, 0.89039 ,
0.89039 , 0.89039 , 0.89039 , 0.85665144, 0.85665144,
0.85665144, 0.85665144, 0.82046164, 0.82046164, 0.82046164,
0.82046164, 0.78331999, 0.78331999, 0.78331999, 0.78331999,
0.74742401, 0.74742401, 0.74742401, 0.74742401, 0.71331198,
0.71331198, 0.71331198, 0.71331198, 0.68102127, 0.68102127,
0.68102127, 0.68102127, 0.65059716, 0.65059716, 0.65059716,
0.65059716, 0.6240258 , 0.6240258 , 0.6240258 , 0.6240258 ,
0.59855044, 0.59855044, 0.59855044, 0.59855044, 0.58370503,
0.58370503, 0.58370503, 0.58370503, 0.56923565, 0.56923565,
0.56923565, 0.56923565, 0.5647148 , 0.5647148 , 0.5647148 ,
0.5647148 , 0.5645406 , 0.5645406 , 0.5645406 , 0.5645406 ,
0.56538346, 0.56538346, 0.56538346, 0.56538346, 0.56608138,
0.56608138, 0.56608138, 0.56608138, 0.56681268, 0.56681268,
0.56681268, 0.56681268, 0.56720477, 0.56720477, 0.56720477,
0.56720477, 0.56710473, 0.56710473, 0.56710473, 0.56710473,
0.56748519, 0.56748519, 0.56748519, 0.56748519, 0.5725192 ,
0.5725192 , 0.5725192 , 0.5725192 , 0.59936974, 0.59936974,
0.59936974, 0.59936974, 0.69655554, 0.69655554, 0.69655554,
0.69655554, 0.9676065 , 0.9676065 , 0.9676065 , 0.9676065 ,
1.57749515, 1.57749515, 1.57749515, 1.57749515, 2.65892925,
2.65892925, 2.65892925, 2.65892925, 3.47677245, 3.47677245,
3.47677245, 3.47677245, 3.4415978 , 3.4415978 , 3.4415978 ,
3.4415978 , 2.06542454, 2.06542454, 2.06542454, 2.06542454,
1.09918894, 1.09918894, 1.09918894, 1.09918894, 1.00437867,
1.00437867, 1.00437867, 1.00437867, 1.00001045, 1.00001045,
1.00001045, 1.00001045, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.06442751e-06, 3.06442751e-06, 3.06442751e-06, 3.06442751e-06,
1.37096058e-05, 1.37096058e-05, 1.37096058e-05, 1.37096058e-05,
5.11071441e-05, 5.11071441e-05, 5.11071441e-05, 5.11071441e-05,
1.80696441e-04, 1.80696441e-04, 1.80696441e-04, 1.80696441e-04,
6.01731053e-04, 6.01731053e-04, 6.01731053e-04, 6.01731053e-04,
1.88320977e-03, 1.88320977e-03, 1.88320977e-03, 1.88320977e-03,
5.52400997e-03, 5.52400997e-03, 5.52400997e-03, 5.52400997e-03,
1.51400717e-02, 1.51400717e-02, 1.51400717e-02, 1.51400717e-02,
3.86400960e-02, 3.86400960e-02, 3.86400960e-02, 3.86400960e-02,
9.15052429e-02, 9.15052429e-02, 9.15052429e-02, 9.15052429e-02,
2.00411209e-01, 2.00411209e-01, 2.00411209e-01, 2.00411209e-01,
4.04958870e-01, 4.04958870e-01, 4.04958870e-01, 4.04958870e-01,
7.54311496e-01, 7.54311496e-01, 7.54311496e-01, 7.54311496e-01,
1.29704807e+00, 1.29704807e+00, 1.29704807e+00, 1.29704807e+00,
2.06709372e+00, 2.06709372e+00, 2.06709372e+00, 2.06709372e+00,
3.07296603e+00, 3.07296603e+00, 3.07296603e+00, 3.07296603e+00,
4.29705387e+00, 4.29705387e+00, 4.29705387e+00, 4.29705387e+00,
5.70596036e+00, 5.70596036e+00, 5.70596036e+00, 5.70596036e+00,
7.26745760e+00, 7.26745760e+00, 7.26745760e+00, 7.26745760e+00,
8.91729908e+00, 8.91729908e+00, 8.91729908e+00, 8.91729908e+00,
1.05722640e+01, 1.05722640e+01, 1.05722640e+01, 1.05722640e+01,
1.22139882e+01, 1.22139882e+01, 1.22139882e+01, 1.22139882e+01,
1.38271695e+01, 1.38271695e+01, 1.38271695e+01, 1.38271695e+01,
1.53909420e+01, 1.53909420e+01, 1.53909420e+01, 1.53909420e+01,
1.68595079e+01, 1.68595079e+01, 1.68595079e+01, 1.68595079e+01,
1.81589814e+01, 1.81589814e+01, 1.81589814e+01, 1.81589814e+01,
1.91837824e+01, 1.91837824e+01, 1.91837824e+01, 1.91837824e+01,
1.98529322e+01, 1.98529322e+01, 1.98529322e+01, 1.98529322e+01,
2.01599348e+01, 2.01599348e+01, 2.01599348e+01, 2.01599348e+01,
2.02242115e+01, 2.02242115e+01, 2.02242115e+01, 2.02242115e+01,
2.01558715e+01, 2.01558715e+01, 2.01558715e+01, 2.01558715e+01,
2.00527078e+01, 2.00527078e+01, 2.00527078e+01, 2.00527078e+01,
2.00224238e+01, 2.00224238e+01, 2.00224238e+01, 2.00224238e+01,
2.00150070e+01, 2.00150070e+01, 2.00150070e+01, 2.00150070e+01,
2.00079684e+01, 2.00079684e+01, 2.00079684e+01, 2.00079684e+01,
1.99973046e+01, 1.99973046e+01, 1.99973046e+01, 1.99973046e+01,
1.99790344e+01, 1.99790344e+01, 1.99790344e+01, 1.99790344e+01,
1.99548828e+01, 1.99548828e+01, 1.99548828e+01, 1.99548828e+01,
1.99337003e+01, 1.99337003e+01, 1.99337003e+01, 1.99337003e+01,
1.99182352e+01, 1.99182352e+01, 1.99182352e+01, 1.99182352e+01,
1.98796077e+01, 1.98796077e+01, 1.98796077e+01, 1.98796077e+01,
1.97369800e+01, 1.97369800e+01, 1.97369800e+01, 1.97369800e+01,
1.90826196e+01, 1.90826196e+01, 1.90826196e+01, 1.90826196e+01,
1.62655591e+01, 1.62655591e+01, 1.62655591e+01, 1.62655591e+01,
8.02647381e+00, 8.02647381e+00, 8.02647381e+00, 8.02647381e+00,
5.66390276e-01, 5.66390276e-01, 5.66390276e-01, 5.66390276e-01,
3.57075007e-03, 3.57075007e-03, 3.57075007e-03, 3.57075007e-03,
1.26227765e-06, 1.26227765e-06, 1.26227765e-06, 1.26227765e-06,
1.87417390e-10, 1.87417390e-10, 1.87417390e-10, 1.87417390e-10,
2.86649447e-14, 2.86649447e-14, 2.86649447e-14, 2.86649447e-14,
4.45854151e-18, 4.45854151e-18, 4.45854151e-18, 4.45854151e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999885e+02, 9.99999885e+02, 9.99999885e+02, 9.99999885e+02,
9.99999487e+02, 9.99999487e+02, 9.99999487e+02, 9.99999487e+02,
9.99998088e+02, 9.99998088e+02, 9.99998088e+02, 9.99998088e+02,
9.99993239e+02, 9.99993239e+02, 9.99993239e+02, 9.99993239e+02,
9.99977486e+02, 9.99977486e+02, 9.99977486e+02, 9.99977486e+02,
9.99929539e+02, 9.99929539e+02, 9.99929539e+02, 9.99929539e+02,
9.99793331e+02, 9.99793331e+02, 9.99793331e+02, 9.99793331e+02,
9.99433661e+02, 9.99433661e+02, 9.99433661e+02, 9.99433661e+02,
9.98555189e+02, 9.98555189e+02, 9.98555189e+02, 9.98555189e+02,
9.96581570e+02, 9.96581570e+02, 9.96581570e+02, 9.96581570e+02,
9.92526877e+02, 9.92526877e+02, 9.92526877e+02, 9.92526877e+02,
9.84951309e+02, 9.84951309e+02, 9.84951309e+02, 9.84951309e+02,
9.72131850e+02, 9.72131850e+02, 9.72131850e+02, 9.72131850e+02,
9.52508972e+02, 9.52508972e+02, 9.52508972e+02, 9.52508972e+02,
9.25264888e+02, 9.25264888e+02, 9.25264888e+02, 9.25264888e+02,
8.90701571e+02, 8.90701571e+02, 8.90701571e+02, 8.90701571e+02,
8.50150128e+02, 8.50150128e+02, 8.50150128e+02, 8.50150128e+02,
8.05448379e+02, 8.05448379e+02, 8.05448379e+02, 8.05448379e+02,
7.58271461e+02, 7.58271461e+02, 7.58271461e+02, 7.58271461e+02,
7.10634261e+02, 7.10634261e+02, 7.10634261e+02, 7.10634261e+02,
6.65455423e+02, 6.65455423e+02, 6.65455423e+02, 6.65455423e+02,
6.23352527e+02, 6.23352527e+02, 6.23352527e+02, 6.23352527e+02,
5.84182279e+02, 5.84182279e+02, 5.84182279e+02, 5.84182279e+02,
5.48269428e+02, 5.48269428e+02, 5.48269428e+02, 5.48269428e+02,
5.16272042e+02, 5.16272042e+02, 5.16272042e+02, 5.16272042e+02,
4.89358572e+02, 4.89358572e+02, 4.89358572e+02, 4.89358572e+02,
4.68892875e+02, 4.68892875e+02, 4.68892875e+02, 4.68892875e+02,
4.55991188e+02, 4.55991188e+02, 4.55991188e+02, 4.55991188e+02,
4.50239990e+02, 4.50239990e+02, 4.50239990e+02, 4.50239990e+02,
4.49001549e+02, 4.49001549e+02, 4.49001549e+02, 4.49001549e+02,
4.50267586e+02, 4.50267586e+02, 4.50267586e+02, 4.50267586e+02,
4.52156184e+02, 4.52156184e+02, 4.52156184e+02, 4.52156184e+02,
4.52802596e+02, 4.52802596e+02, 4.52802596e+02, 4.52802596e+02,
4.53038480e+02, 4.53038480e+02, 4.53038480e+02, 4.53038480e+02,
4.53140657e+02, 4.53140657e+02, 4.53140657e+02, 4.53140657e+02,
4.53267209e+02, 4.53267209e+02, 4.53267209e+02, 4.53267209e+02,
4.53531394e+02, 4.53531394e+02, 4.53531394e+02, 4.53531394e+02,
4.53971062e+02, 4.53971062e+02, 4.53971062e+02, 4.53971062e+02,
4.54514025e+02, 4.54514025e+02, 4.54514025e+02, 4.54514025e+02,
4.55259395e+02, 4.55259395e+02, 4.55259395e+02, 4.55259395e+02,
4.55867897e+02, 4.55867897e+02, 4.55867897e+02, 4.55867897e+02,
4.52235462e+02, 4.52235462e+02, 4.52235462e+02, 4.52235462e+02,
4.22918025e+02, 4.22918025e+02, 4.22918025e+02, 4.22918025e+02,
2.98696478e+02, 2.98696478e+02, 2.98696478e+02, 2.98696478e+02,
7.35671819e+01, 7.35671819e+01, 7.35671819e+01, 7.35671819e+01,
1.73816088e+00, 1.73816088e+00, 1.73816088e+00, 1.73816088e+00,
1.15098232e-02, 1.15098232e-02, 1.15098232e-02, 1.15098232e-02,
1.00001491e-02, 1.00001491e-02, 1.00001491e-02, 1.00001491e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999884,
0.99999884, 0.99999884, 0.99999884, 0.99999596, 0.99999596,
0.99999596, 0.99999596, 0.99998666, 0.99998666, 0.99998666,
0.99998666, 0.99995851, 0.99995851, 0.99995851, 0.99995851,
0.99987881, 0.99987881, 0.99987881, 0.99987881, 0.99966846,
0.99966846, 0.99966846, 0.99966846, 0.99915332, 0.99915332,
0.99915332, 0.99915332, 0.99798882, 0.99798882, 0.99798882,
0.99798882, 0.99557202, 0.99557202, 0.99557202, 0.99557202,
0.99099076, 0.99099076, 0.99099076, 0.99099076, 0.98309025,
0.98309025, 0.98309025, 0.98309025, 0.97071425, 0.97071425,
0.97071425, 0.97071425, 0.95306962, 0.95306962, 0.95306962,
0.95306962, 0.93003166, 0.93003166, 0.93003166, 0.93003166,
0.90219494, 0.90219494, 0.90219494, 0.90219494, 0.8706268 ,
0.8706268 , 0.8706268 , 0.8706268 , 0.83644936, 0.83644936,
0.83644936, 0.83644936, 0.80070998, 0.80070998, 0.80070998,
0.80070998, 0.76534052, 0.76534052, 0.76534052, 0.76534052,
0.73160157, 0.73160157, 0.73160157, 0.73160157, 0.69941663,
0.69941663, 0.69941663, 0.69941663, 0.66904404, 0.66904404,
0.66904404, 0.66904404, 0.640412 , 0.640412 , 0.640412 ,
0.640412 , 0.61609193, 0.61609193, 0.61609193, 0.61609193,
0.59253553, 0.59253553, 0.59253553, 0.59253553, 0.57985082,
0.57985082, 0.57985082, 0.57985082, 0.56807488, 0.56807488,
0.56807488, 0.56807488, 0.56414175, 0.56414175, 0.56414175,
0.56414175, 0.56447501, 0.56447501, 0.56447501, 0.56447501,
0.56608222, 0.56608222, 0.56608222, 0.56608222, 0.5665232 ,
0.5665232 , 0.5665232 , 0.5665232 , 0.56679339, 0.56679339,
0.56679339, 0.56679339, 0.56717873, 0.56717873, 0.56717873,
0.56717873, 0.5672011 , 0.5672011 , 0.5672011 , 0.5672011 ,
0.56745182, 0.56745182, 0.56745182, 0.56745182, 0.57048317,
0.57048317, 0.57048317, 0.57048317, 0.58763359, 0.58763359,
0.58763359, 0.58763359, 0.65365865, 0.65365865, 0.65365865,
0.65365865, 0.84867448, 0.84867448, 0.84867448, 0.84867448,
1.31307086, 1.31307086, 1.31307086, 1.31307086, 2.21646901,
2.21646901, 2.21646901, 2.21646901, 3.30517749, 3.30517749,
3.30517749, 3.30517749, 3.62340282, 3.62340282, 3.62340282,
3.62340282, 2.90056638, 2.90056638, 2.90056638, 2.90056638,
1.33694683, 1.33694683, 1.33694683, 1.33694683, 1.0212743 ,
1.0212743 , 1.0212743 , 1.0212743 , 1.00034859, 1.00034859,
1.00034859, 1.00034859, 1.0000001 , 1.0000001 , 1.0000001 ,
1.0000001 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.03392125e-05, 1.03392125e-05, 1.03392125e-05, 1.03392125e-05,
4.34400060e-05, 4.34400060e-05, 4.34400060e-05, 4.34400060e-05,
1.51141917e-04, 1.51141917e-04, 1.51141917e-04, 1.51141917e-04,
4.99195131e-04, 4.99195131e-04, 4.99195131e-04, 4.99195131e-04,
1.55234811e-03, 1.55234811e-03, 1.55234811e-03, 1.55234811e-03,
4.53464427e-03, 4.53464427e-03, 4.53464427e-03, 4.53464427e-03,
1.24067118e-02, 1.24067118e-02, 1.24067118e-02, 1.24067118e-02,
3.16898153e-02, 3.16898153e-02, 3.16898153e-02, 3.16898153e-02,
7.53087747e-02, 7.53087747e-02, 7.53087747e-02, 7.53087747e-02,
1.65962861e-01, 1.65962861e-01, 1.65962861e-01, 1.65962861e-01,
3.38287464e-01, 3.38287464e-01, 3.38287464e-01, 3.38287464e-01,
6.36985732e-01, 6.36985732e-01, 6.36985732e-01, 6.36985732e-01,
1.10885693e+00, 1.10885693e+00, 1.10885693e+00, 1.10885693e+00,
1.79021928e+00, 1.79021928e+00, 1.79021928e+00, 1.79021928e+00,
2.69557108e+00, 2.69557108e+00, 2.69557108e+00, 2.69557108e+00,
3.81416950e+00, 3.81416950e+00, 3.81416950e+00, 3.81416950e+00,
5.11690819e+00, 5.11690819e+00, 5.11690819e+00, 5.11690819e+00,
6.57068197e+00, 6.57068197e+00, 6.57068197e+00, 6.57068197e+00,
8.14009276e+00, 8.14009276e+00, 8.14009276e+00, 8.14009276e+00,
9.73476120e+00, 9.73476120e+00, 9.73476120e+00, 9.73476120e+00,
1.13275023e+01, 1.13275023e+01, 1.13275023e+01, 1.13275023e+01,
1.29006498e+01, 1.29006498e+01, 1.29006498e+01, 1.29006498e+01,
1.44427973e+01, 1.44427973e+01, 1.44427973e+01, 1.44427973e+01,
1.59276078e+01, 1.59276078e+01, 1.59276078e+01, 1.59276078e+01,
1.73033647e+01, 1.73033647e+01, 1.73033647e+01, 1.73033647e+01,
1.84940290e+01, 1.84940290e+01, 1.84940290e+01, 1.84940290e+01,
1.93974938e+01, 1.93974938e+01, 1.93974938e+01, 1.93974938e+01,
1.99500228e+01, 1.99500228e+01, 1.99500228e+01, 1.99500228e+01,
2.01786156e+01, 2.01786156e+01, 2.01786156e+01, 2.01786156e+01,
2.02141830e+01, 2.02141830e+01, 2.02141830e+01, 2.02141830e+01,
2.01270312e+01, 2.01270312e+01, 2.01270312e+01, 2.01270312e+01,
2.00438391e+01, 2.00438391e+01, 2.00438391e+01, 2.00438391e+01,
2.00180478e+01, 2.00180478e+01, 2.00180478e+01, 2.00180478e+01,
2.00116554e+01, 2.00116554e+01, 2.00116554e+01, 2.00116554e+01,
2.00060169e+01, 2.00060169e+01, 2.00060169e+01, 2.00060169e+01,
1.99957578e+01, 1.99957578e+01, 1.99957578e+01, 1.99957578e+01,
1.99760299e+01, 1.99760299e+01, 1.99760299e+01, 1.99760299e+01,
1.99495430e+01, 1.99495430e+01, 1.99495430e+01, 1.99495430e+01,
1.99258351e+01, 1.99258351e+01, 1.99258351e+01, 1.99258351e+01,
1.99068524e+01, 1.99068524e+01, 1.99068524e+01, 1.99068524e+01,
1.98862615e+01, 1.98862615e+01, 1.98862615e+01, 1.98862615e+01,
1.98134680e+01, 1.98134680e+01, 1.98134680e+01, 1.98134680e+01,
1.94905556e+01, 1.94905556e+01, 1.94905556e+01, 1.94905556e+01,
1.80230680e+01, 1.80230680e+01, 1.80230680e+01, 1.80230680e+01,
1.26076173e+01, 1.26076173e+01, 1.26076173e+01, 1.26076173e+01,
2.67311141e+00, 2.67311141e+00, 2.67311141e+00, 2.67311141e+00,
5.14361403e-02, 5.14361403e-02, 5.14361403e-02, 5.14361403e-02,
6.80950934e-05, 6.80950934e-05, 6.80950934e-05, 6.80950934e-05,
1.13412667e-08, 1.13412667e-08, 1.13412667e-08, 1.13412667e-08,
1.79486084e-12, 1.79486084e-12, 1.79486084e-12, 1.79486084e-12,
2.73952290e-16, 2.73952290e-16, 2.73952290e-16, 2.73952290e-16,
5.00064164e-20, 5.00064164e-20, 5.00064164e-20, 5.00064164e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
9.99998375e+02, 9.99998375e+02, 9.99998375e+02, 9.99998375e+02,
9.99994345e+02, 9.99994345e+02, 9.99994345e+02, 9.99994345e+02,
9.99981322e+02, 9.99981322e+02, 9.99981322e+02, 9.99981322e+02,
9.99941918e+02, 9.99941918e+02, 9.99941918e+02, 9.99941918e+02,
9.99830343e+02, 9.99830343e+02, 9.99830343e+02, 9.99830343e+02,
9.99535884e+02, 9.99535884e+02, 9.99535884e+02, 9.99535884e+02,
9.98814928e+02, 9.98814928e+02, 9.98814928e+02, 9.98814928e+02,
9.97185851e+02, 9.97185851e+02, 9.97185851e+02, 9.97185851e+02,
9.93807795e+02, 9.93807795e+02, 9.93807795e+02, 9.93807795e+02,
9.87414745e+02, 9.87414745e+02, 9.87414745e+02, 9.87414745e+02,
9.76420200e+02, 9.76420200e+02, 9.76420200e+02, 9.76420200e+02,
9.59272359e+02, 9.59272359e+02, 9.59272359e+02, 9.59272359e+02,
9.34979017e+02, 9.34979017e+02, 9.34979017e+02, 9.34979017e+02,
9.03531113e+02, 9.03531113e+02, 9.03531113e+02, 9.03531113e+02,
8.65943868e+02, 8.65943868e+02, 8.65943868e+02, 8.65943868e+02,
8.23870991e+02, 8.23870991e+02, 8.23870991e+02, 8.23870991e+02,
7.78998721e+02, 7.78998721e+02, 7.78998721e+02, 7.78998721e+02,
7.32829097e+02, 7.32829097e+02, 7.32829097e+02, 7.32829097e+02,
6.87867667e+02, 6.87867667e+02, 6.87867667e+02, 6.87867667e+02,
6.45811417e+02, 6.45811417e+02, 6.45811417e+02, 6.45811417e+02,
6.06420020e+02, 6.06420020e+02, 6.06420020e+02, 6.06420020e+02,
5.69812260e+02, 5.69812260e+02, 5.69812260e+02, 5.69812260e+02,
5.36391612e+02, 5.36391612e+02, 5.36391612e+02, 5.36391612e+02,
5.06909342e+02, 5.06909342e+02, 5.06909342e+02, 5.06909342e+02,
4.82613586e+02, 4.82613586e+02, 4.82613586e+02, 4.82613586e+02,
4.64771665e+02, 4.64771665e+02, 4.64771665e+02, 4.64771665e+02,
4.54120136e+02, 4.54120136e+02, 4.54120136e+02, 4.54120136e+02,
4.49846503e+02, 4.49846503e+02, 4.49846503e+02, 4.49846503e+02,
4.49195989e+02, 4.49195989e+02, 4.49195989e+02, 4.49195989e+02,
4.50838120e+02, 4.50838120e+02, 4.50838120e+02, 4.50838120e+02,
4.52365430e+02, 4.52365430e+02, 4.52365430e+02, 4.52365430e+02,
4.52826151e+02, 4.52826151e+02, 4.52826151e+02, 4.52826151e+02,
4.53036969e+02, 4.53036969e+02, 4.53036969e+02, 4.53036969e+02,
4.53180502e+02, 4.53180502e+02, 4.53180502e+02, 4.53180502e+02,
4.53367904e+02, 4.53367904e+02, 4.53367904e+02, 4.53367904e+02,
4.53682043e+02, 4.53682043e+02, 4.53682043e+02, 4.53682043e+02,
4.54101255e+02, 4.54101255e+02, 4.54101255e+02, 4.54101255e+02,
4.54550055e+02, 4.54550055e+02, 4.54550055e+02, 4.54550055e+02,
4.55181873e+02, 4.55181873e+02, 4.55181873e+02, 4.55181873e+02,
4.56088869e+02, 4.56088869e+02, 4.56088869e+02, 4.56088869e+02,
4.55314517e+02, 4.55314517e+02, 4.55314517e+02, 4.55314517e+02,
4.42432305e+02, 4.42432305e+02, 4.42432305e+02, 4.42432305e+02,
3.73791360e+02, 3.73791360e+02, 3.73791360e+02, 3.73791360e+02,
1.73331140e+02, 1.73331140e+02, 1.73331140e+02, 1.73331140e+02,
1.42286314e+01, 1.42286314e+01, 1.42286314e+01, 1.42286314e+01,
7.35026594e-02, 7.35026594e-02, 7.35026594e-02, 7.35026594e-02,
1.00088839e-02, 1.00088839e-02, 1.00088839e-02, 1.00088839e-02,
1.00000013e-02, 1.00000013e-02, 1.00000013e-02, 1.00000013e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999914, 0.99999914, 0.99999914, 0.99999914, 0.9999966 ,
0.9999966 , 0.9999966 , 0.9999966 , 0.99998894, 0.99998894,
0.99998894, 0.99998894, 0.99996579, 0.99996579, 0.99996579,
0.99996579, 0.99990045, 0.99990045, 0.99990045, 0.99990045,
0.99972809, 0.99972809, 0.99972809, 0.99972809, 0.99930503,
0.99930503, 0.99930503, 0.99930503, 0.99834358, 0.99834358,
0.99834358, 0.99834358, 0.99633101, 0.99633101, 0.99633101,
0.99633101, 0.99247048, 0.99247048, 0.99247048, 0.99247048,
0.98571275, 0.98571275, 0.98571275, 0.98571275, 0.97494122,
0.97494122, 0.97494122, 0.97494122, 0.95929193, 0.95929193,
0.95929193, 0.95929193, 0.93846719, 0.93846719, 0.93846719,
0.93846719, 0.91285499, 0.91285499, 0.91285499, 0.91285499,
0.88337065, 0.88337065, 0.88337065, 0.88337065, 0.85110869,
0.85110869, 0.85110869, 0.85110869, 0.81698796, 0.81698796,
0.81698796, 0.81698796, 0.78242051, 0.78242051, 0.78242051,
0.78242051, 0.74907398, 0.74907398, 0.74907398, 0.74907398,
0.7171757 , 0.7171757 , 0.7171757 , 0.7171757 , 0.68675454,
0.68675454, 0.68675454, 0.68675454, 0.65817399, 0.65817399,
0.65817399, 0.65817399, 0.63120015, 0.63120015, 0.63120015,
0.63120015, 0.60905285, 0.60905285, 0.60905285, 0.60905285,
0.58738819, 0.58738819, 0.58738819, 0.58738819, 0.57655812,
0.57655812, 0.57655812, 0.57655812, 0.56731141, 0.56731141,
0.56731141, 0.56731141, 0.5639553 , 0.5639553 , 0.5639553 ,
0.5639553 , 0.56439893, 0.56439893, 0.56439893, 0.56439893,
0.5666221 , 0.5666221 , 0.5666221 , 0.5666221 , 0.56689879,
0.56689879, 0.56689879, 0.56689879, 0.56688439, 0.56688439,
0.56688439, 0.56688439, 0.56712646, 0.56712646, 0.56712646,
0.56712646, 0.56724753, 0.56724753, 0.56724753, 0.56724753,
0.56747625, 0.56747625, 0.56747625, 0.56747625, 0.56936103,
0.56936103, 0.56936103, 0.56936103, 0.58025147, 0.58025147,
0.58025147, 0.58025147, 0.62459777, 0.62459777, 0.62459777,
0.62459777, 0.76306356, 0.76306356, 0.76306356, 0.76306356,
1.11089581, 1.11089581, 1.11089581, 1.11089581, 1.83047175,
1.83047175, 1.83047175, 1.83047175, 2.96543117, 2.96543117,
2.96543117, 2.96543117, 3.63638824, 3.63638824, 3.63638824,
3.63638824, 3.47481596, 3.47481596, 3.47481596, 3.47481596,
1.95403945, 1.95403945, 1.95403945, 1.95403945, 1.08283494,
1.08283494, 1.08283494, 1.08283494, 1.00335988, 1.00335988,
1.00335988, 1.00335988, 1.00000576, 1.00000576, 1.00000576,
1.00000576, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.21524399e-05, 3.21524399e-05, 3.21524399e-05, 3.21524399e-05,
1.27174228e-04, 1.27174228e-04, 1.27174228e-04, 1.27174228e-04,
4.13952526e-04, 4.13952526e-04, 4.13952526e-04, 4.13952526e-04,
1.28010235e-03, 1.28010235e-03, 1.28010235e-03, 1.28010235e-03,
3.72494678e-03, 3.72494678e-03, 3.72494678e-03, 3.72494678e-03,
1.01750372e-02, 1.01750372e-02, 1.01750372e-02, 1.01750372e-02,
2.60100958e-02, 2.60100958e-02, 2.60100958e-02, 2.60100958e-02,
6.20163885e-02, 6.20163885e-02, 6.20163885e-02, 6.20163885e-02,
1.37474769e-01, 1.37474769e-01, 1.37474769e-01, 1.37474769e-01,
2.82559370e-01, 2.82559370e-01, 2.82559370e-01, 2.82559370e-01,
5.37624629e-01, 5.37624629e-01, 5.37624629e-01, 5.37624629e-01,
9.47149548e-01, 9.47149548e-01, 9.47149548e-01, 9.47149548e-01,
1.54878183e+00, 1.54878183e+00, 1.54878183e+00, 1.54878183e+00,
2.36197526e+00, 2.36197526e+00, 2.36197526e+00, 2.36197526e+00,
3.38252055e+00, 3.38252055e+00, 3.38252055e+00, 3.38252055e+00,
4.58640867e+00, 4.58640867e+00, 4.58640867e+00, 4.58640867e+00,
5.94121401e+00, 5.94121401e+00, 5.94121401e+00, 5.94121401e+00,
7.41947260e+00, 7.41947260e+00, 7.41947260e+00, 7.41947260e+00,
8.95560830e+00, 8.95560830e+00, 8.95560830e+00, 8.95560830e+00,
1.04968275e+01, 1.04968275e+01, 1.04968275e+01, 1.04968275e+01,
1.20259513e+01, 1.20259513e+01, 1.20259513e+01, 1.20259513e+01,
1.35357208e+01, 1.35357208e+01, 1.35357208e+01, 1.35357208e+01,
1.50098538e+01, 1.50098538e+01, 1.50098538e+01, 1.50098538e+01,
1.64177832e+01, 1.64177832e+01, 1.64177832e+01, 1.64177832e+01,
1.77019691e+01, 1.77019691e+01, 1.77019691e+01, 1.77019691e+01,
1.87851353e+01, 1.87851353e+01, 1.87851353e+01, 1.87851353e+01,
1.95738145e+01, 1.95738145e+01, 1.95738145e+01, 1.95738145e+01,
2.00235953e+01, 2.00235953e+01, 2.00235953e+01, 2.00235953e+01,
2.01873321e+01, 2.01873321e+01, 2.01873321e+01, 2.01873321e+01,
2.01992370e+01, 2.01992370e+01, 2.01992370e+01, 2.01992370e+01,
2.01017551e+01, 2.01017551e+01, 2.01017551e+01, 2.01017551e+01,
2.00372744e+01, 2.00372744e+01, 2.00372744e+01, 2.00372744e+01,
2.00157926e+01, 2.00157926e+01, 2.00157926e+01, 2.00157926e+01,
2.00082959e+01, 2.00082959e+01, 2.00082959e+01, 2.00082959e+01,
2.00024907e+01, 2.00024907e+01, 2.00024907e+01, 2.00024907e+01,
1.99918498e+01, 1.99918498e+01, 1.99918498e+01, 1.99918498e+01,
1.99718075e+01, 1.99718075e+01, 1.99718075e+01, 1.99718075e+01,
1.99458177e+01, 1.99458177e+01, 1.99458177e+01, 1.99458177e+01,
1.99210292e+01, 1.99210292e+01, 1.99210292e+01, 1.99210292e+01,
1.98969554e+01, 1.98969554e+01, 1.98969554e+01, 1.98969554e+01,
1.98826323e+01, 1.98826323e+01, 1.98826323e+01, 1.98826323e+01,
1.98432269e+01, 1.98432269e+01, 1.98432269e+01, 1.98432269e+01,
1.96844946e+01, 1.96844946e+01, 1.96844946e+01, 1.96844946e+01,
1.89485092e+01, 1.89485092e+01, 1.89485092e+01, 1.89485092e+01,
1.58676586e+01, 1.58676586e+01, 1.58676586e+01, 1.58676586e+01,
7.25693697e+00, 7.25693697e+00, 7.25693697e+00, 7.25693697e+00,
4.34921777e-01, 4.34921777e-01, 4.34921777e-01, 4.34921777e-01,
2.27948590e-03, 2.27948590e-03, 2.27948590e-03, 2.27948590e-03,
6.88627382e-07, 6.88627382e-07, 6.88627382e-07, 6.88627382e-07,
1.03089844e-10, 1.03089844e-10, 1.03089844e-10, 1.03089844e-10,
1.60056279e-14, 1.60056279e-14, 1.60056279e-14, 1.60056279e-14,
2.53568291e-18, 2.53568291e-18, 2.53568291e-18, 2.53568291e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99998797e+02, 9.99998797e+02, 9.99998797e+02, 9.99998797e+02,
9.99995242e+02, 9.99995242e+02, 9.99995242e+02, 9.99995242e+02,
9.99984511e+02, 9.99984511e+02, 9.99984511e+02, 9.99984511e+02,
9.99952104e+02, 9.99952104e+02, 9.99952104e+02, 9.99952104e+02,
9.99860634e+02, 9.99860634e+02, 9.99860634e+02, 9.99860634e+02,
9.99619353e+02, 9.99619353e+02, 9.99619353e+02, 9.99619353e+02,
9.99027231e+02, 9.99027231e+02, 9.99027231e+02, 9.99027231e+02,
9.97682034e+02, 9.97682034e+02, 9.97682034e+02, 9.97682034e+02,
9.94868221e+02, 9.94868221e+02, 9.94868221e+02, 9.94868221e+02,
9.89478098e+02, 9.89478098e+02, 9.89478098e+02, 9.89478098e+02,
9.80065169e+02, 9.80065169e+02, 9.80065169e+02, 9.80065169e+02,
9.65118065e+02, 9.65118065e+02, 9.65118065e+02, 9.65118065e+02,
9.43523368e+02, 9.43523368e+02, 9.43523368e+02, 9.43523368e+02,
9.15006674e+02, 9.15006674e+02, 9.15006674e+02, 9.15006674e+02,
8.80278342e+02, 8.80278342e+02, 8.80278342e+02, 8.80278342e+02,
8.40775285e+02, 8.40775285e+02, 8.40775285e+02, 8.40775285e+02,
7.98145941e+02, 7.98145941e+02, 7.98145941e+02, 7.98145941e+02,
7.53755098e+02, 7.53755098e+02, 7.53755098e+02, 7.53755098e+02,
7.09452587e+02, 7.09452587e+02, 7.09452587e+02, 7.09452587e+02,
6.67485676e+02, 6.67485676e+02, 6.67485676e+02, 6.67485676e+02,
6.28046689e+02, 6.28046689e+02, 6.28046689e+02, 6.28046689e+02,
5.91112375e+02, 5.91112375e+02, 5.91112375e+02, 5.91112375e+02,
5.56843157e+02, 5.56843157e+02, 5.56843157e+02, 5.56843157e+02,
5.25742971e+02, 5.25742971e+02, 5.25742971e+02, 5.25742971e+02,
4.98632093e+02, 4.98632093e+02, 4.98632093e+02, 4.98632093e+02,
4.76795490e+02, 4.76795490e+02, 4.76795490e+02, 4.76795490e+02,
4.61393393e+02, 4.61393393e+02, 4.61393393e+02, 4.61393393e+02,
4.52740843e+02, 4.52740843e+02, 4.52740843e+02, 4.52740843e+02,
4.49648853e+02, 4.49648853e+02, 4.49648853e+02, 4.49648853e+02,
4.49459232e+02, 4.49459232e+02, 4.49459232e+02, 4.49459232e+02,
4.51321023e+02, 4.51321023e+02, 4.51321023e+02, 4.51321023e+02,
4.52531111e+02, 4.52531111e+02, 4.52531111e+02, 4.52531111e+02,
4.52874067e+02, 4.52874067e+02, 4.52874067e+02, 4.52874067e+02,
4.53039653e+02, 4.53039653e+02, 4.53039653e+02, 4.53039653e+02,
4.53200233e+02, 4.53200233e+02, 4.53200233e+02, 4.53200233e+02,
4.53441075e+02, 4.53441075e+02, 4.53441075e+02, 4.53441075e+02,
4.53821299e+02, 4.53821299e+02, 4.53821299e+02, 4.53821299e+02,
4.54260100e+02, 4.54260100e+02, 4.54260100e+02, 4.54260100e+02,
4.54669989e+02, 4.54669989e+02, 4.54669989e+02, 4.54669989e+02,
4.55190229e+02, 4.55190229e+02, 4.55190229e+02, 4.55190229e+02,
4.56011617e+02, 4.56011617e+02, 4.56011617e+02, 4.56011617e+02,
4.56384643e+02, 4.56384643e+02, 4.56384643e+02, 4.56384643e+02,
4.51490886e+02, 4.51490886e+02, 4.51490886e+02, 4.51490886e+02,
4.17208973e+02, 4.17208973e+02, 4.17208973e+02, 4.17208973e+02,
2.82109903e+02, 2.82109903e+02, 2.82109903e+02, 2.82109903e+02,
6.13627160e+01, 6.13627160e+01, 6.13627160e+01, 6.13627160e+01,
1.21031418e+00, 1.21031418e+00, 1.21031418e+00, 1.21031418e+00,
1.08068264e-02, 1.08068264e-02, 1.08068264e-02, 1.08068264e-02,
1.00000814e-02, 1.00000814e-02, 1.00000814e-02, 1.00000814e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999752, 0.99999752, 0.99999752, 0.99999752, 0.99999075,
0.99999075, 0.99999075, 0.99999075, 0.99997179, 0.99997179,
0.99997179, 0.99997179, 0.99991817, 0.99991817, 0.99991817,
0.99991817, 0.99977683, 0.99977683, 0.99977683, 0.99977683,
0.99942915, 0.99942915, 0.99942915, 0.99942915, 0.99863505,
0.99863505, 0.99863505, 0.99863505, 0.99695933, 0.99695933,
0.99695933, 0.99695933, 0.9937087 , 0.9937087 , 0.9937087 ,
0.9937087 , 0.98793721, 0.98793721, 0.98793721, 0.98793721,
0.9785829 , 0.9785829 , 0.9785829 , 0.9785829 , 0.96474136,
0.96474136, 0.96474136, 0.96474136, 0.94597339, 0.94597339,
0.94597339, 0.94597339, 0.92247486, 0.92247486, 0.92247486,
0.92247486, 0.89499831, 0.89499831, 0.89499831, 0.89499831,
0.86456812, 0.86456812, 0.86456812, 0.86456812, 0.83212124,
0.83212124, 0.83212124, 0.83212124, 0.79863526, 0.79863526,
0.79863526, 0.79863526, 0.76573988, 0.76573988, 0.76573988,
0.76573988, 0.73420588, 0.73420588, 0.73420588, 0.73420588,
0.703996 , 0.703996 , 0.703996 , 0.703996 , 0.67517948,
0.67517948, 0.67517948, 0.67517948, 0.64829444, 0.64829444,
0.64829444, 0.64829444, 0.62286674, 0.62286674, 0.62286674,
0.62286674, 0.60281401, 0.60281401, 0.60281401, 0.60281401,
0.58304717, 0.58304717, 0.58304717, 0.58304717, 0.5737585 ,
0.5737585 , 0.5737585 , 0.5737585 , 0.56680383, 0.56680383,
0.56680383, 0.56680383, 0.56406554, 0.56406554, 0.56406554,
0.56406554, 0.56445674, 0.56445674, 0.56445674, 0.56445674,
0.56689479, 0.56689479, 0.56689479, 0.56689479, 0.56721005,
0.56721005, 0.56721005, 0.56721005, 0.56705228, 0.56705228,
0.56705228, 0.56705228, 0.56711649, 0.56711649, 0.56711649,
0.56711649, 0.5672706 , 0.5672706 , 0.5672706 , 0.5672706 ,
0.56752476, 0.56752476, 0.56752476, 0.56752476, 0.5687617 ,
0.5687617 , 0.5687617 , 0.5687617 , 0.5756626 , 0.5756626 ,
0.5756626 , 0.5756626 , 0.60517122, 0.60517122, 0.60517122,
0.60517122, 0.70225684, 0.70225684, 0.70225684, 0.70225684,
0.95916964, 0.95916964, 0.95916964, 0.95916964, 1.52074205,
1.52074205, 1.52074205, 1.52074205, 2.53366254, 2.53366254,
2.53366254, 2.53366254, 3.51709808, 3.51709808, 3.51709808,
3.51709808, 3.71733154, 3.71733154, 3.71733154, 3.71733154,
2.81684948, 2.81684948, 2.81684948, 2.81684948, 1.27928976,
1.27928976, 1.27928976, 1.27928976, 1.01706333, 1.01706333,
1.01706333, 1.01706333, 1.00022545, 1.00022545, 1.00022545,
1.00022545, 1.00000005, 1.00000005, 1.00000005, 1.00000005,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([9.27169916e-05, 9.27169916e-05, 9.27169916e-05, 9.27169916e-05,
3.45942523e-04, 3.45942523e-04, 3.45942523e-04, 3.45942523e-04,
1.05548283e-03, 1.05548283e-03, 1.05548283e-03, 1.05548283e-03,
3.06180591e-03, 3.06180591e-03, 3.06180591e-03, 3.06180591e-03,
8.35099130e-03, 8.35099130e-03, 8.35099130e-03, 8.35099130e-03,
2.13637129e-02, 2.13637129e-02, 2.13637129e-02, 2.13637129e-02,
5.10980585e-02, 5.10980585e-02, 5.10980585e-02, 5.10980585e-02,
1.13904438e-01, 1.13904438e-01, 1.13904438e-01, 1.13904438e-01,
2.35977350e-01, 2.35977350e-01, 2.35977350e-01, 2.35977350e-01,
4.53511059e-01, 4.53511059e-01, 4.53511059e-01, 4.53511059e-01,
8.08290869e-01, 8.08290869e-01, 8.08290869e-01, 8.08290869e-01,
1.33838461e+00, 1.33838461e+00, 1.33838461e+00, 1.33838461e+00,
2.06718875e+00, 2.06718875e+00, 2.06718875e+00, 2.06718875e+00,
2.99650453e+00, 2.99650453e+00, 2.99650453e+00, 2.99650453e+00,
4.10776410e+00, 4.10776410e+00, 4.10776410e+00, 4.10776410e+00,
5.37093252e+00, 5.37093252e+00, 5.37093252e+00, 5.37093252e+00,
6.75756651e+00, 6.75756651e+00, 6.75756651e+00, 6.75756651e+00,
8.23003026e+00, 8.23003026e+00, 8.23003026e+00, 8.23003026e+00,
9.71810036e+00, 9.71810036e+00, 9.71810036e+00, 9.71810036e+00,
1.12035998e+01, 1.12035998e+01, 1.12035998e+01, 1.12035998e+01,
1.26747396e+01, 1.26747396e+01, 1.26747396e+01, 1.26747396e+01,
1.41241052e+01, 1.41241052e+01, 1.41241052e+01, 1.41241052e+01,
1.55324405e+01, 1.55324405e+01, 1.55324405e+01, 1.55324405e+01,
1.68648788e+01, 1.68648788e+01, 1.68648788e+01, 1.68648788e+01,
1.80587444e+01, 1.80587444e+01, 1.80587444e+01, 1.80587444e+01,
1.90363513e+01, 1.90363513e+01, 1.90363513e+01, 1.90363513e+01,
1.97169663e+01, 1.97169663e+01, 1.97169663e+01, 1.97169663e+01,
2.00776225e+01, 2.00776225e+01, 2.00776225e+01, 2.00776225e+01,
2.01888597e+01, 2.01888597e+01, 2.01888597e+01, 2.01888597e+01,
2.01801125e+01, 2.01801125e+01, 2.01801125e+01, 2.01801125e+01,
2.00812778e+01, 2.00812778e+01, 2.00812778e+01, 2.00812778e+01,
2.00318261e+01, 2.00318261e+01, 2.00318261e+01, 2.00318261e+01,
2.00146648e+01, 2.00146648e+01, 2.00146648e+01, 2.00146648e+01,
2.00061042e+01, 2.00061042e+01, 2.00061042e+01, 2.00061042e+01,
1.99986959e+01, 1.99986959e+01, 1.99986959e+01, 1.99986959e+01,
1.99863432e+01, 1.99863432e+01, 1.99863432e+01, 1.99863432e+01,
1.99656179e+01, 1.99656179e+01, 1.99656179e+01, 1.99656179e+01,
1.99415041e+01, 1.99415041e+01, 1.99415041e+01, 1.99415041e+01,
1.99167435e+01, 1.99167435e+01, 1.99167435e+01, 1.99167435e+01,
1.98912290e+01, 1.98912290e+01, 1.98912290e+01, 1.98912290e+01,
1.98732047e+01, 1.98732047e+01, 1.98732047e+01, 1.98732047e+01,
1.98526648e+01, 1.98526648e+01, 1.98526648e+01, 1.98526648e+01,
1.97731261e+01, 1.97731261e+01, 1.97731261e+01, 1.97731261e+01,
1.94093352e+01, 1.94093352e+01, 1.94093352e+01, 1.94093352e+01,
1.77776801e+01, 1.77776801e+01, 1.77776801e+01, 1.77776801e+01,
1.19820754e+01, 1.19820754e+01, 1.19820754e+01, 1.19820754e+01,
2.16019726e+00, 2.16019726e+00, 2.16019726e+00, 2.16019726e+00,
3.53014742e-02, 3.53014742e-02, 3.53014742e-02, 3.53014742e-02,
3.82045712e-05, 3.82045712e-05, 3.82045712e-05, 3.82045712e-05,
6.27267874e-09, 6.27267874e-09, 6.27267874e-09, 6.27267874e-09,
9.86981788e-13, 9.86981788e-13, 9.86981788e-13, 9.86981788e-13,
1.50628633e-16, 1.50628633e-16, 1.50628633e-16, 1.50628633e-16,
1.80645712e-20, 1.80645712e-20, 1.80645712e-20, 1.80645712e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99996531e+02, 9.99996531e+02, 9.99996531e+02, 9.99996531e+02,
9.99987056e+02, 9.99987056e+02, 9.99987056e+02, 9.99987056e+02,
9.99960508e+02, 9.99960508e+02, 9.99960508e+02, 9.99960508e+02,
9.99885444e+02, 9.99885444e+02, 9.99885444e+02, 9.99885444e+02,
9.99687580e+02, 9.99687580e+02, 9.99687580e+02, 9.99687580e+02,
9.99200940e+02, 9.99200940e+02, 9.99200940e+02, 9.99200940e+02,
9.98089767e+02, 9.98089767e+02, 9.98089767e+02, 9.98089767e+02,
9.95746369e+02, 9.95746369e+02, 9.95746369e+02, 9.95746369e+02,
9.91205796e+02, 9.91205796e+02, 9.91205796e+02, 9.91205796e+02,
9.83160321e+02, 9.83160321e+02, 9.83160321e+02, 9.83160321e+02,
9.70163089e+02, 9.70163089e+02, 9.70163089e+02, 9.70163089e+02,
9.51025501e+02, 9.51025501e+02, 9.51025501e+02, 9.51025501e+02,
9.25253700e+02, 9.25253700e+02, 9.25253700e+02, 9.25253700e+02,
8.93272718e+02, 8.93272718e+02, 8.93272718e+02, 8.93272718e+02,
8.56285555e+02, 8.56285555e+02, 8.56285555e+02, 8.56285555e+02,
8.15844374e+02, 8.15844374e+02, 8.15844374e+02, 8.15844374e+02,
7.73342136e+02, 7.73342136e+02, 7.73342136e+02, 7.73342136e+02,
7.30129913e+02, 7.30129913e+02, 7.30129913e+02, 7.30129913e+02,
6.88352942e+02, 6.88352942e+02, 6.88352942e+02, 6.88352942e+02,
6.49007221e+02, 6.49007221e+02, 6.49007221e+02, 6.49007221e+02,
6.11939746e+02, 6.11939746e+02, 6.11939746e+02, 6.11939746e+02,
5.77224777e+02, 5.77224777e+02, 5.77224777e+02, 5.77224777e+02,
5.45110602e+02, 5.45110602e+02, 5.45110602e+02, 5.45110602e+02,
5.16188887e+02, 5.16188887e+02, 5.16188887e+02, 5.16188887e+02,
4.91335604e+02, 4.91335604e+02, 4.91335604e+02, 4.91335604e+02,
4.71814716e+02, 4.71814716e+02, 4.71814716e+02, 4.71814716e+02,
4.58644756e+02, 4.58644756e+02, 4.58644756e+02, 4.58644756e+02,
4.51748779e+02, 4.51748779e+02, 4.51748779e+02, 4.51748779e+02,
4.49620320e+02, 4.49620320e+02, 4.49620320e+02, 4.49620320e+02,
4.49793173e+02, 4.49793173e+02, 4.49793173e+02, 4.49793173e+02,
4.51686270e+02, 4.51686270e+02, 4.51686270e+02, 4.51686270e+02,
4.52653139e+02, 4.52653139e+02, 4.52653139e+02, 4.52653139e+02,
4.52934776e+02, 4.52934776e+02, 4.52934776e+02, 4.52934776e+02,
4.53069098e+02, 4.53069098e+02, 4.53069098e+02, 4.53069098e+02,
4.53226281e+02, 4.53226281e+02, 4.53226281e+02, 4.53226281e+02,
4.53501144e+02, 4.53501144e+02, 4.53501144e+02, 4.53501144e+02,
4.53932351e+02, 4.53932351e+02, 4.53932351e+02, 4.53932351e+02,
4.54403842e+02, 4.54403842e+02, 4.54403842e+02, 4.54403842e+02,
4.54828470e+02, 4.54828470e+02, 4.54828470e+02, 4.54828470e+02,
4.55256571e+02, 4.55256571e+02, 4.55256571e+02, 4.55256571e+02,
4.55891222e+02, 4.55891222e+02, 4.55891222e+02, 4.55891222e+02,
4.56695880e+02, 4.56695880e+02, 4.56695880e+02, 4.56695880e+02,
4.55303353e+02, 4.55303353e+02, 4.55303353e+02, 4.55303353e+02,
4.39632542e+02, 4.39632542e+02, 4.39632542e+02, 4.39632542e+02,
3.62585344e+02, 3.62585344e+02, 3.62585344e+02, 3.62585344e+02,
1.55123980e+02, 1.55123980e+02, 1.55123980e+02, 1.55123980e+02,
1.06526829e+01, 1.06526829e+01, 1.06526829e+01, 1.06526829e+01,
4.72581949e-02, 4.72581949e-02, 4.72581949e-02, 4.72581949e-02,
1.00047111e-02, 1.00047111e-02, 1.00047111e-02, 1.00047111e-02,
1.00000007e-02, 1.00000007e-02, 1.00000007e-02, 1.00000007e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999334, 0.99999334, 0.99999334, 0.99999334, 0.99997652,
0.99997652, 0.99997652, 0.99997652, 0.99993274, 0.99993274,
0.99993274, 0.99993274, 0.9998167 , 0.9998167 , 0.9998167 ,
0.9998167 , 0.9995308 , 0.9995308 , 0.9995308 , 0.9995308 ,
0.9988747 , 0.9988747 , 0.9988747 , 0.9988747 , 0.99747962,
0.99747962, 0.99747962, 0.99747962, 0.99474458, 0.99474458,
0.99474458, 0.99474458, 0.98982255, 0.98982255, 0.98982255,
0.98982255, 0.98171633, 0.98171633, 0.98171633, 0.98171633,
0.96950664, 0.96950664, 0.96950664, 0.96950664, 0.95264288,
0.95264288, 0.95264288, 0.95264288, 0.93114717, 0.93114717,
0.93114717, 0.93114717, 0.90560556, 0.90560556, 0.90560556,
0.90560556, 0.8769476 , 0.8769476 , 0.8769476 , 0.8769476 ,
0.8461295 , 0.8461295 , 0.8461295 , 0.8461295 , 0.81392176,
0.81392176, 0.81392176, 0.81392176, 0.78165473, 0.78165473,
0.78165473, 0.78165473, 0.75050172, 0.75050172, 0.75050172,
0.75050172, 0.72057659, 0.72057659, 0.72057659, 0.72057659,
0.69190945, 0.69190945, 0.69190945, 0.69190945, 0.66457344,
0.66457344, 0.66457344, 0.66457344, 0.63931001, 0.63931001,
0.63931001, 0.63931001, 0.61533571, 0.61533571, 0.61533571,
0.61533571, 0.59728585, 0.59728585, 0.59728585, 0.59728585,
0.57944602, 0.57944602, 0.57944602, 0.57944602, 0.57141549,
0.57141549, 0.57141549, 0.57141549, 0.56646332, 0.56646332,
0.56646332, 0.56646332, 0.56429638, 0.56429638, 0.56429638,
0.56429638, 0.56474556, 0.56474556, 0.56474556, 0.56474556,
0.56696375, 0.56696375, 0.56696375, 0.56696375, 0.56741743,
0.56741743, 0.56741743, 0.56741743, 0.5672394 , 0.5672394 ,
0.5672394 , 0.5672394 , 0.56719598, 0.56719598, 0.56719598,
0.56719598, 0.56730067, 0.56730067, 0.56730067, 0.56730067,
0.56757971, 0.56757971, 0.56757971, 0.56757971, 0.5684633 ,
0.5684633 , 0.5684633 , 0.5684633 , 0.57284684, 0.57284684,
0.57284684, 0.57284684, 0.59231821, 0.59231821, 0.59231821,
0.59231821, 0.6596568 , 0.6596568 , 0.6596568 , 0.6596568 ,
0.84699717, 0.84699717, 0.84699717, 0.84699717, 1.27785893,
1.27785893, 1.27785893, 1.27785893, 2.10551451, 2.10551451,
2.10551451, 2.10551451, 3.24550952, 3.24550952, 3.24550952,
3.24550952, 3.77306813, 3.77306813, 3.77306813, 3.77306813,
3.47838258, 3.47838258, 3.47838258, 3.47838258, 1.83959453,
1.83959453, 1.83959453, 1.83959453, 1.0682824 , 1.0682824 ,
1.0682824 , 1.0682824 , 1.00250794, 1.00250794, 1.00250794,
1.00250794, 1.00000304, 1.00000304, 1.00000304, 1.00000304,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.49214926e-04, 2.49214926e-04, 2.49214926e-04, 2.49214926e-04,
8.78604657e-04, 8.78604657e-04, 8.78604657e-04, 8.78604657e-04,
2.51662102e-03, 2.51662102e-03, 2.51662102e-03, 2.51662102e-03,
6.85892762e-03, 6.85892762e-03, 6.85892762e-03, 6.85892762e-03,
1.75588961e-02, 1.75588961e-02, 1.75588961e-02, 1.75588961e-02,
4.21228901e-02, 4.21228901e-02, 4.21228901e-02, 4.21228901e-02,
9.43950927e-02, 9.43950927e-02, 9.43950927e-02, 9.43950927e-02,
1.97042335e-01, 1.97042335e-01, 1.97042335e-01, 1.97042335e-01,
3.82340085e-01, 3.82340085e-01, 3.82340085e-01, 3.82340085e-01,
6.89147758e-01, 6.89147758e-01, 6.89147758e-01, 6.89147758e-01,
1.15519736e+00, 1.15519736e+00, 1.15519736e+00, 1.15519736e+00,
1.80686376e+00, 1.80686376e+00, 1.80686376e+00, 1.80686376e+00,
2.65131500e+00, 2.65131500e+00, 2.65131500e+00, 2.65131500e+00,
3.67550739e+00, 3.67550739e+00, 3.67550739e+00, 3.67550739e+00,
4.85271275e+00, 4.85271275e+00, 4.85271275e+00, 4.85271275e+00,
6.15350432e+00, 6.15350432e+00, 6.15350432e+00, 6.15350432e+00,
7.55357680e+00, 7.55357680e+00, 7.55357680e+00, 7.55357680e+00,
8.98941000e+00, 8.98941000e+00, 8.98941000e+00, 8.98941000e+00,
1.04303820e+01, 1.04303820e+01, 1.04303820e+01, 1.04303820e+01,
1.18617350e+01, 1.18617350e+01, 1.18617350e+01, 1.18617350e+01,
1.32783330e+01, 1.32783330e+01, 1.32783330e+01, 1.32783330e+01,
1.46700989e+01, 1.46700989e+01, 1.46700989e+01, 1.46700989e+01,
1.60141500e+01, 1.60141500e+01, 1.60141500e+01, 1.60141500e+01,
1.72717577e+01, 1.72717577e+01, 1.72717577e+01, 1.72717577e+01,
1.83764937e+01, 1.83764937e+01, 1.83764937e+01, 1.83764937e+01,
1.92517132e+01, 1.92517132e+01, 1.92517132e+01, 1.92517132e+01,
1.98312363e+01, 1.98312363e+01, 1.98312363e+01, 1.98312363e+01,
2.01141790e+01, 2.01141790e+01, 2.01141790e+01, 2.01141790e+01,
2.01871661e+01, 2.01871661e+01, 2.01871661e+01, 2.01871661e+01,
2.01587304e+01, 2.01587304e+01, 2.01587304e+01, 2.01587304e+01,
2.00649247e+01, 2.00649247e+01, 2.00649247e+01, 2.00649247e+01,
2.00267116e+01, 2.00267116e+01, 2.00267116e+01, 2.00267116e+01,
2.00134137e+01, 2.00134137e+01, 2.00134137e+01, 2.00134137e+01,
2.00048366e+01, 2.00048366e+01, 2.00048366e+01, 2.00048366e+01,
1.99955344e+01, 1.99955344e+01, 1.99955344e+01, 1.99955344e+01,
1.99804744e+01, 1.99804744e+01, 1.99804744e+01, 1.99804744e+01,
1.99582608e+01, 1.99582608e+01, 1.99582608e+01, 1.99582608e+01,
1.99352201e+01, 1.99352201e+01, 1.99352201e+01, 1.99352201e+01,
1.99120283e+01, 1.99120283e+01, 1.99120283e+01, 1.99120283e+01,
1.98878907e+01, 1.98878907e+01, 1.98878907e+01, 1.98878907e+01,
1.98653154e+01, 1.98653154e+01, 1.98653154e+01, 1.98653154e+01,
1.98516094e+01, 1.98516094e+01, 1.98516094e+01, 1.98516094e+01,
1.98100006e+01, 1.98100006e+01, 1.98100006e+01, 1.98100006e+01,
1.96316470e+01, 1.96316470e+01, 1.96316470e+01, 1.96316470e+01,
1.88041286e+01, 1.88041286e+01, 1.88041286e+01, 1.88041286e+01,
1.54317797e+01, 1.54317797e+01, 1.54317797e+01, 1.54317797e+01,
6.46630891e+00, 6.46630891e+00, 6.46630891e+00, 6.46630891e+00,
3.26471041e-01, 3.26471041e-01, 3.26471041e-01, 3.26471041e-01,
1.39752195e-03, 1.39752195e-03, 1.39752195e-03, 1.39752195e-03,
3.61410681e-07, 3.61410681e-07, 3.61410681e-07, 3.61410681e-07,
5.50928989e-11, 5.50928989e-11, 5.50928989e-11, 5.50928989e-11,
8.73446544e-15, 8.73446544e-15, 8.73446544e-15, 8.73446544e-15,
1.37689406e-18, 1.37689406e-18, 1.37689406e-18, 1.37689406e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99990675e+02, 9.99990675e+02, 9.99990675e+02, 9.99990675e+02,
9.99967126e+02, 9.99967126e+02, 9.99967126e+02, 9.99967126e+02,
9.99905841e+02, 9.99905841e+02, 9.99905841e+02, 9.99905841e+02,
9.99743393e+02, 9.99743393e+02, 9.99743393e+02, 9.99743393e+02,
9.99343207e+02, 9.99343207e+02, 9.99343207e+02, 9.99343207e+02,
9.98425049e+02, 9.98425049e+02, 9.98425049e+02, 9.98425049e+02,
9.96473752e+02, 9.96473752e+02, 9.96473752e+02, 9.96473752e+02,
9.92651960e+02, 9.92651960e+02, 9.92651960e+02, 9.92651960e+02,
9.85786061e+02, 9.85786061e+02, 9.85786061e+02, 9.85786061e+02,
9.74510522e+02, 9.74510522e+02, 9.74510522e+02, 9.74510522e+02,
9.57600381e+02, 9.57600381e+02, 9.57600381e+02, 9.57600381e+02,
9.34386650e+02, 9.34386650e+02, 9.34386650e+02, 9.34386650e+02,
9.05034576e+02, 9.05034576e+02, 9.05034576e+02, 9.05034576e+02,
8.70506126e+02, 8.70506126e+02, 8.70506126e+02, 8.70506126e+02,
8.32221605e+02, 8.32221605e+02, 8.32221605e+02, 8.32221605e+02,
7.91601867e+02, 7.91601867e+02, 7.91601867e+02, 7.91601867e+02,
7.49771930e+02, 7.49771930e+02, 7.49771930e+02, 7.49771930e+02,
7.08448789e+02, 7.08448789e+02, 7.08448789e+02, 7.08448789e+02,
6.69249654e+02, 6.69249654e+02, 6.69249654e+02, 6.69249654e+02,
6.32199855e+02, 6.32199855e+02, 6.32199855e+02, 6.32199855e+02,
5.97271856e+02, 5.97271856e+02, 5.97271856e+02, 5.97271856e+02,
5.64593117e+02, 5.64593117e+02, 5.64593117e+02, 5.64593117e+02,
5.34481735e+02, 5.34481735e+02, 5.34481735e+02, 5.34481735e+02,
5.07617179e+02, 5.07617179e+02, 5.07617179e+02, 5.07617179e+02,
4.84923891e+02, 4.84923891e+02, 4.84923891e+02, 4.84923891e+02,
4.67588272e+02, 4.67588272e+02, 4.67588272e+02, 4.67588272e+02,
4.56440880e+02, 4.56440880e+02, 4.56440880e+02, 4.56440880e+02,
4.51073579e+02, 4.51073579e+02, 4.51073579e+02, 4.51073579e+02,
4.49670476e+02, 4.49670476e+02, 4.49670476e+02, 4.49670476e+02,
4.50197414e+02, 4.50197414e+02, 4.50197414e+02, 4.50197414e+02,
4.51964568e+02, 4.51964568e+02, 4.51964568e+02, 4.51964568e+02,
4.52734660e+02, 4.52734660e+02, 4.52734660e+02, 4.52734660e+02,
4.52988476e+02, 4.52988476e+02, 4.52988476e+02, 4.52988476e+02,
4.53122020e+02, 4.53122020e+02, 4.53122020e+02, 4.53122020e+02,
4.53277355e+02, 4.53277355e+02, 4.53277355e+02, 4.53277355e+02,
4.53570948e+02, 4.53570948e+02, 4.53570948e+02, 4.53570948e+02,
4.54027799e+02, 4.54027799e+02, 4.54027799e+02, 4.54027799e+02,
4.54514822e+02, 4.54514822e+02, 4.54514822e+02, 4.54514822e+02,
4.54967633e+02, 4.54967633e+02, 4.54967633e+02, 4.54967633e+02,
4.55383145e+02, 4.55383145e+02, 4.55383145e+02, 4.55383145e+02,
4.55885058e+02, 4.55885058e+02, 4.55885058e+02, 4.55885058e+02,
4.56660485e+02, 4.56660485e+02, 4.56660485e+02, 4.56660485e+02,
4.56707224e+02, 4.56707224e+02, 4.56707224e+02, 4.56707224e+02,
4.50332485e+02, 4.50332485e+02, 4.50332485e+02, 4.50332485e+02,
4.10745038e+02, 4.10745038e+02, 4.10745038e+02, 4.10745038e+02,
2.64438188e+02, 2.64438188e+02, 2.64438188e+02, 2.64438188e+02,
5.04920492e+01, 5.04920492e+01, 5.04920492e+01, 5.04920492e+01,
8.21200453e-01, 8.21200453e-01, 8.21200453e-01, 8.21200453e-01,
1.04110586e-02, 1.04110586e-02, 1.04110586e-02, 1.04110586e-02,
1.00000427e-02, 1.00000427e-02, 1.00000427e-02, 1.00000427e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99998324, 0.99998324, 0.99998324, 0.99998324, 0.99994409,
0.99994409, 0.99994409, 0.99994409, 0.99984947, 0.99984947,
0.99984947, 0.99984947, 0.99961409, 0.99961409, 0.99961409,
0.99961409, 0.99907186, 0.99907186, 0.99907186, 0.99907186,
0.99791058, 0.99791058, 0.99791058, 0.99791058, 0.99561098,
0.99561098, 0.99561098, 0.99561098, 0.99141916, 0.99141916,
0.99141916, 0.99141916, 0.98440893, 0.98440893, 0.98440893,
0.98440893, 0.97366694, 0.97366694, 0.97366694, 0.97366694,
0.95855926, 0.95855926, 0.95855926, 0.95855926, 0.93895505,
0.93895505, 0.93895505, 0.93895505, 0.91527616, 0.91527616,
0.91527616, 0.91527616, 0.88833959, 0.88833959, 0.88833959,
0.88833959, 0.85907786, 0.85907786, 0.85907786, 0.85907786,
0.82825782, 0.82825782, 0.82825782, 0.82825782, 0.79682367,
0.79682367, 0.79682367, 0.79682367, 0.7660904 , 0.7660904 ,
0.7660904 , 0.7660904 , 0.73649342, 0.73649342, 0.73649342,
0.73649342, 0.7080382 , 0.7080382 , 0.7080382 , 0.7080382 ,
0.68079751, 0.68079751, 0.68079751, 0.68079751, 0.65483468,
0.65483468, 0.65483468, 0.65483468, 0.63114051, 0.63114051,
0.63114051, 0.63114051, 0.60854849, 0.60854849, 0.60854849,
0.60854849, 0.59238504, 0.59238504, 0.59238504, 0.59238504,
0.57651033, 0.57651033, 0.57651033, 0.57651033, 0.56951125,
0.56951125, 0.56951125, 0.56951125, 0.5662106 , 0.5662106 ,
0.5662106 , 0.5662106 , 0.56457441, 0.56457441, 0.56457441,
0.56457441, 0.56518521, 0.56518521, 0.56518521, 0.56518521,
0.5669638 , 0.5669638 , 0.5669638 , 0.5669638 , 0.56753478,
0.56753478, 0.56753478, 0.56753478, 0.56741507, 0.56741507,
0.56741507, 0.56741507, 0.56730543, 0.56730543, 0.56730543,
0.56730543, 0.56737641, 0.56737641, 0.56737641, 0.56737641,
0.56765193, 0.56765193, 0.56765193, 0.56765193, 0.56833782,
0.56833782, 0.56833782, 0.56833782, 0.57115323, 0.57115323,
0.57115323, 0.57115323, 0.58390602, 0.58390602, 0.58390602,
0.58390602, 0.63015878, 0.63015878, 0.63015878, 0.63015878,
0.76511277, 0.76511277, 0.76511277, 0.76511277, 1.09098504,
1.09098504, 1.09098504, 1.09098504, 1.75190783, 1.75190783,
1.75190783, 1.75190783, 2.84524356, 2.84524356, 2.84524356,
2.84524356, 3.69818791, 3.69818791, 3.69818791, 3.69818791,
3.79299239, 3.79299239, 3.79299239, 3.79299239, 2.70622572,
2.70622572, 2.70622572, 2.70622572, 1.23074962, 1.23074962,
1.23074962, 1.23074962, 1.01357481, 1.01357481, 1.01357481,
1.01357481, 1.00013936, 1.00013936, 1.00013936, 1.00013936,
1.00000003, 1.00000003, 1.00000003, 1.00000003, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([6.27176089e-04, 6.27176089e-04, 6.27176089e-04, 6.27176089e-04,
2.09197510e-03, 2.09197510e-03, 2.09197510e-03, 2.09197510e-03,
5.63246589e-03, 5.63246589e-03, 5.63246589e-03, 5.63246589e-03,
1.44413910e-02, 1.44413910e-02, 1.44413910e-02, 1.44413910e-02,
3.47398084e-02, 3.47398084e-02, 3.47398084e-02, 3.47398084e-02,
7.82416435e-02, 7.82416435e-02, 7.82416435e-02, 7.82416435e-02,
1.64502448e-01, 1.64502448e-01, 1.64502448e-01, 1.64502448e-01,
3.22153674e-01, 3.22153674e-01, 3.22153674e-01, 3.22153674e-01,
5.87013093e-01, 5.87013093e-01, 5.87013093e-01, 5.87013093e-01,
9.95867432e-01, 9.95867432e-01, 9.95867432e-01, 9.95867432e-01,
1.57717960e+00, 1.57717960e+00, 1.57717960e+00, 1.57717960e+00,
2.34277075e+00, 2.34277075e+00, 2.34277075e+00, 2.34277075e+00,
3.28498965e+00, 3.28498965e+00, 3.28498965e+00, 3.28498965e+00,
4.38103253e+00, 4.38103253e+00, 4.38103253e+00, 4.38103253e+00,
5.60227400e+00, 5.60227400e+00, 5.60227400e+00, 5.60227400e+00,
6.92499000e+00, 6.92499000e+00, 6.92499000e+00, 6.92499000e+00,
8.30862980e+00, 8.30862980e+00, 8.30862980e+00, 8.30862980e+00,
9.70342488e+00, 9.70342488e+00, 9.70342488e+00, 9.70342488e+00,
1.10947376e+01, 1.10947376e+01, 1.10947376e+01, 1.10947376e+01,
1.24759421e+01, 1.24759421e+01, 1.24759421e+01, 1.24759421e+01,
1.38409096e+01, 1.38409096e+01, 1.38409096e+01, 1.38409096e+01,
1.51771753e+01, 1.51771753e+01, 1.51771753e+01, 1.51771753e+01,
1.64580614e+01, 1.64580614e+01, 1.64580614e+01, 1.64580614e+01,
1.76410460e+01, 1.76410460e+01, 1.76410460e+01, 1.76410460e+01,
1.86577470e+01, 1.86577470e+01, 1.86577470e+01, 1.86577470e+01,
1.94346504e+01, 1.94346504e+01, 1.94346504e+01, 1.94346504e+01,
1.99206783e+01, 1.99206783e+01, 1.99206783e+01, 1.99206783e+01,
2.01373825e+01, 2.01373825e+01, 2.01373825e+01, 2.01373825e+01,
2.01827557e+01, 2.01827557e+01, 2.01827557e+01, 2.01827557e+01,
2.01362430e+01, 2.01362430e+01, 2.01362430e+01, 2.01362430e+01,
2.00527163e+01, 2.00527163e+01, 2.00527163e+01, 2.00527163e+01,
2.00220889e+01, 2.00220889e+01, 2.00220889e+01, 2.00220889e+01,
2.00113415e+01, 2.00113415e+01, 2.00113415e+01, 2.00113415e+01,
2.00032017e+01, 2.00032017e+01, 2.00032017e+01, 2.00032017e+01,
1.99928716e+01, 1.99928716e+01, 1.99928716e+01, 1.99928716e+01,
1.99752195e+01, 1.99752195e+01, 1.99752195e+01, 1.99752195e+01,
1.99510048e+01, 1.99510048e+01, 1.99510048e+01, 1.99510048e+01,
1.99278369e+01, 1.99278369e+01, 1.99278369e+01, 1.99278369e+01,
1.99060511e+01, 1.99060511e+01, 1.99060511e+01, 1.99060511e+01,
1.98834898e+01, 1.98834898e+01, 1.98834898e+01, 1.98834898e+01,
1.98602307e+01, 1.98602307e+01, 1.98602307e+01, 1.98602307e+01,
1.98460230e+01, 1.98460230e+01, 1.98460230e+01, 1.98460230e+01,
1.98231060e+01, 1.98231060e+01, 1.98231060e+01, 1.98231060e+01,
1.97344284e+01, 1.97344284e+01, 1.97344284e+01, 1.97344284e+01,
1.93234157e+01, 1.93234157e+01, 1.93234157e+01, 1.93234157e+01,
1.75098690e+01, 1.75098690e+01, 1.75098690e+01, 1.75098690e+01,
1.13120733e+01, 1.13120733e+01, 1.13120733e+01, 1.13120733e+01,
1.72019020e+00, 1.72019020e+00, 1.72019020e+00, 1.72019020e+00,
2.39627567e-02, 2.39627567e-02, 2.39627567e-02, 2.39627567e-02,
2.10492230e-05, 2.10492230e-05, 2.10492230e-05, 2.10492230e-05,
3.37580296e-09, 3.37580296e-09, 3.37580296e-09, 3.37580296e-09,
5.24794943e-13, 5.24794943e-13, 5.24794943e-13, 5.24794943e-13,
8.00869120e-17, 8.00869120e-17, 8.00869120e-17, 8.00869120e-17,
1.80543624e-20, 1.80543624e-20, 1.80543624e-20, 1.80543624e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99976534e+02, 9.99976534e+02, 9.99976534e+02, 9.99976534e+02,
9.99921728e+02, 9.99921728e+02, 9.99921728e+02, 9.99921728e+02,
9.99789273e+02, 9.99789273e+02, 9.99789273e+02, 9.99789273e+02,
9.99459788e+02, 9.99459788e+02, 9.99459788e+02, 9.99459788e+02,
9.98700933e+02, 9.98700933e+02, 9.98700933e+02, 9.98700933e+02,
9.97076380e+02, 9.97076380e+02, 9.97076380e+02, 9.97076380e+02,
9.93862050e+02, 9.93862050e+02, 9.93862050e+02, 9.93862050e+02,
9.88011449e+02, 9.88011449e+02, 9.88011449e+02, 9.88011449e+02,
9.78251147e+02, 9.78251147e+02, 9.78251147e+02, 9.78251147e+02,
9.63351703e+02, 9.63351703e+02, 9.63351703e+02, 9.63351703e+02,
9.42510461e+02, 9.42510461e+02, 9.42510461e+02, 9.42510461e+02,
9.15662316e+02, 9.15662316e+02, 9.15662316e+02, 9.15662316e+02,
8.83529955e+02, 8.83529955e+02, 8.83529955e+02, 8.83529955e+02,
8.47375347e+02, 8.47375347e+02, 8.47375347e+02, 8.47375347e+02,
8.08589521e+02, 8.08589521e+02, 8.08589521e+02, 8.08589521e+02,
7.68302840e+02, 7.68302840e+02, 7.68302840e+02, 7.68302840e+02,
7.27777466e+02, 7.27777466e+02, 7.27777466e+02, 7.27777466e+02,
6.88776134e+02, 6.88776134e+02, 6.88776134e+02, 6.88776134e+02,
6.51822493e+02, 6.51822493e+02, 6.51822493e+02, 6.51822493e+02,
6.16850793e+02, 6.16850793e+02, 6.16850793e+02, 6.16850793e+02,
5.83873049e+02, 5.83873049e+02, 5.83873049e+02, 5.83873049e+02,
5.53077621e+02, 5.53077621e+02, 5.53077621e+02, 5.53077621e+02,
5.24847307e+02, 5.24847307e+02, 5.24847307e+02, 5.24847307e+02,
4.99936052e+02, 4.99936052e+02, 4.99936052e+02, 4.99936052e+02,
4.79307983e+02, 4.79307983e+02, 4.79307983e+02, 4.79307983e+02,
4.64037017e+02, 4.64037017e+02, 4.64037017e+02, 4.64037017e+02,
4.54717049e+02, 4.54717049e+02, 4.54717049e+02, 4.54717049e+02,
4.50630729e+02, 4.50630729e+02, 4.50630729e+02, 4.50630729e+02,
4.49766128e+02, 4.49766128e+02, 4.49766128e+02, 4.49766128e+02,
4.50635760e+02, 4.50635760e+02, 4.50635760e+02, 4.50635760e+02,
4.52192339e+02, 4.52192339e+02, 4.52192339e+02, 4.52192339e+02,
4.52791836e+02, 4.52791836e+02, 4.52791836e+02, 4.52791836e+02,
4.53026052e+02, 4.53026052e+02, 4.53026052e+02, 4.53026052e+02,
4.53174609e+02, 4.53174609e+02, 4.53174609e+02, 4.53174609e+02,
4.53352116e+02, 4.53352116e+02, 4.53352116e+02, 4.53352116e+02,
4.53668407e+02, 4.53668407e+02, 4.53668407e+02, 4.53668407e+02,
4.54129426e+02, 4.54129426e+02, 4.54129426e+02, 4.54129426e+02,
4.54606825e+02, 4.54606825e+02, 4.54606825e+02, 4.54606825e+02,
4.55071542e+02, 4.55071542e+02, 4.55071542e+02, 4.55071542e+02,
4.55519242e+02, 4.55519242e+02, 4.55519242e+02, 4.55519242e+02,
4.55942322e+02, 4.55942322e+02, 4.55942322e+02, 4.55942322e+02,
4.56555572e+02, 4.56555572e+02, 4.56555572e+02, 4.56555572e+02,
4.57153744e+02, 4.57153744e+02, 4.57153744e+02, 4.57153744e+02,
4.55012364e+02, 4.55012364e+02, 4.55012364e+02, 4.55012364e+02,
4.36291749e+02, 4.36291749e+02, 4.36291749e+02, 4.36291749e+02,
3.50253071e+02, 3.50253071e+02, 3.50253071e+02, 3.50253071e+02,
1.37331684e+02, 1.37331684e+02, 1.37331684e+02, 1.37331684e+02,
7.81961782e+00, 7.81961782e+00, 7.81961782e+00, 7.81961782e+00,
3.15710255e-02, 3.15710255e-02, 3.15710255e-02, 3.15710255e-02,
1.00025204e-02, 1.00025204e-02, 1.00025204e-02, 1.00025204e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99996035, 0.99996035, 0.99996035, 0.99996035, 0.99987476,
0.99987476, 0.99987476, 0.99987476, 0.99968276, 0.99968276,
0.99968276, 0.99968276, 0.99923411, 0.99923411, 0.99923411,
0.99923411, 0.99826762, 0.99826762, 0.99826762, 0.99826762,
0.99633541, 0.99633541, 0.99633541, 0.99633541, 0.99277013,
0.99277013, 0.99277013, 0.99277013, 0.98671964, 0.98671964,
0.98671964, 0.98671964, 0.977293 , 0.977293 , 0.977293 ,
0.977293 , 0.96379833, 0.96379833, 0.96379833, 0.96379833,
0.94597383, 0.94597383, 0.94597383, 0.94597383, 0.9240842 ,
0.9240842 , 0.9240842 , 0.9240842 , 0.89882269, 0.89882269,
0.89882269, 0.89882269, 0.87107325, 0.87107325, 0.87107325,
0.87107325, 0.84163799, 0.84163799, 0.84163799, 0.84163799,
0.81121158, 0.81121158, 0.81121158, 0.81121158, 0.7809964 ,
0.7809964 , 0.7809964 , 0.7809964 , 0.75175867, 0.75175867,
0.75175867, 0.75175867, 0.72358262, 0.72358262, 0.72358262,
0.72358262, 0.69646996, 0.69646996, 0.69646996, 0.69646996,
0.67055951, 0.67055951, 0.67055951, 0.67055951, 0.64587767,
0.64587767, 0.64587767, 0.64587767, 0.62371507, 0.62371507,
0.62371507, 0.62371507, 0.60245905, 0.60245905, 0.60245905,
0.60245905, 0.58804181, 0.58804181, 0.58804181, 0.58804181,
0.57415787, 0.57415787, 0.57415787, 0.57415787, 0.56801698,
0.56801698, 0.56801698, 0.56801698, 0.56600286, 0.56600286,
0.56600286, 0.56600286, 0.56486913, 0.56486913, 0.56486913,
0.56486913, 0.56568532, 0.56568532, 0.56568532, 0.56568532,
0.56697037, 0.56697037, 0.56697037, 0.56697037, 0.567595 ,
0.567595 , 0.567595 , 0.567595 , 0.56755691, 0.56755691,
0.56755691, 0.56755691, 0.56742984, 0.56742984, 0.56742984,
0.56742984, 0.56748199, 0.56748199, 0.56748199, 0.56748199,
0.56775104, 0.56775104, 0.56775104, 0.56775104, 0.56831532,
0.56831532, 0.56831532, 0.56831532, 0.57016477, 0.57016477,
0.57016477, 0.57016477, 0.57848067, 0.57848067, 0.57848067,
0.57848067, 0.60993862, 0.60993862, 0.60993862, 0.60993862,
0.70608446, 0.70608446, 0.70608446, 0.70608446, 0.94942581,
0.94942581, 0.94942581, 0.94942581, 1.46794713, 1.46794713,
1.46794713, 1.46794713, 2.399093 , 2.399093 , 2.399093 ,
2.399093 , 3.49161502, 3.49161502, 3.49161502, 3.49161502,
3.88909392, 3.88909392, 3.88909392, 3.88909392, 3.45166183,
3.45166183, 3.45166183, 3.45166183, 1.72693552, 1.72693552,
1.72693552, 1.72693552, 1.05571813, 1.05571813, 1.05571813,
1.05571813, 1.00183475, 1.00183475, 1.00183475, 1.00183475,
1.00000159, 1.00000159, 1.00000159, 1.00000159, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.48343235e-03, 1.48343235e-03, 1.48343235e-03, 1.48343235e-03,
4.68625754e-03, 4.68625754e-03, 4.68625754e-03, 4.68625754e-03,
1.18714812e-02, 1.18714812e-02, 1.18714812e-02, 1.18714812e-02,
2.86653854e-02, 2.86653854e-02, 2.86653854e-02, 2.86653854e-02,
6.48624680e-02, 6.48624680e-02, 6.48624680e-02, 6.48624680e-02,
1.37311383e-01, 1.37311383e-01, 1.37311383e-01, 1.37311383e-01,
2.71286993e-01, 2.71286993e-01, 2.71286993e-01, 2.71286993e-01,
4.99544165e-01, 4.99544165e-01, 4.99544165e-01, 4.99544165e-01,
8.57450278e-01, 8.57450278e-01, 8.57450278e-01, 8.57450278e-01,
1.37475596e+00, 1.37475596e+00, 1.37475596e+00, 1.37475596e+00,
2.06719154e+00, 2.06719154e+00, 2.06719154e+00, 2.06719154e+00,
2.93221227e+00, 2.93221227e+00, 2.93221227e+00, 2.93221227e+00,
3.95128996e+00, 3.95128996e+00, 3.95128996e+00, 3.95128996e+00,
5.09756199e+00, 5.09756199e+00, 5.09756199e+00, 5.09756199e+00,
6.34579257e+00, 6.34579257e+00, 6.34579257e+00, 6.34579257e+00,
7.67146094e+00, 7.67146094e+00, 7.67146094e+00, 7.67146094e+00,
9.01982632e+00, 9.01982632e+00, 9.01982632e+00, 9.01982632e+00,
1.03717565e+01, 1.03717565e+01, 1.03717565e+01, 1.03717565e+01,
1.17165199e+01, 1.17165199e+01, 1.17165199e+01, 1.17165199e+01,
1.30503359e+01, 1.30503359e+01, 1.30503359e+01, 1.30503359e+01,
1.43659229e+01, 1.43659229e+01, 1.43659229e+01, 1.43659229e+01,
1.56482456e+01, 1.56482456e+01, 1.56482456e+01, 1.56482456e+01,
1.68667491e+01, 1.68667491e+01, 1.68667491e+01, 1.68667491e+01,
1.79752388e+01, 1.79752388e+01, 1.79752388e+01, 1.79752388e+01,
1.89049267e+01, 1.89049267e+01, 1.89049267e+01, 1.89049267e+01,
1.95880409e+01, 1.95880409e+01, 1.95880409e+01, 1.95880409e+01,
1.99895045e+01, 1.99895045e+01, 1.99895045e+01, 1.99895045e+01,
2.01509131e+01, 2.01509131e+01, 2.01509131e+01, 2.01509131e+01,
2.01756935e+01, 2.01756935e+01, 2.01756935e+01, 2.01756935e+01,
2.01136639e+01, 2.01136639e+01, 2.01136639e+01, 2.01136639e+01,
2.00436849e+01, 2.00436849e+01, 2.00436849e+01, 2.00436849e+01,
2.00184695e+01, 2.00184695e+01, 2.00184695e+01, 2.00184695e+01,
2.00087073e+01, 2.00087073e+01, 2.00087073e+01, 2.00087073e+01,
2.00007501e+01, 2.00007501e+01, 2.00007501e+01, 2.00007501e+01,
1.99896154e+01, 1.99896154e+01, 1.99896154e+01, 1.99896154e+01,
1.99701656e+01, 1.99701656e+01, 1.99701656e+01, 1.99701656e+01,
1.99446240e+01, 1.99446240e+01, 1.99446240e+01, 1.99446240e+01,
1.99208683e+01, 1.99208683e+01, 1.99208683e+01, 1.99208683e+01,
1.98989526e+01, 1.98989526e+01, 1.98989526e+01, 1.98989526e+01,
1.98779645e+01, 1.98779645e+01, 1.98779645e+01, 1.98779645e+01,
1.98568827e+01, 1.98568827e+01, 1.98568827e+01, 1.98568827e+01,
1.98394425e+01, 1.98394425e+01, 1.98394425e+01, 1.98394425e+01,
1.98253039e+01, 1.98253039e+01, 1.98253039e+01, 1.98253039e+01,
1.97798791e+01, 1.97798791e+01, 1.97798791e+01, 1.97798791e+01,
1.95773152e+01, 1.95773152e+01, 1.95773152e+01, 1.95773152e+01,
1.86462995e+01, 1.86462995e+01, 1.86462995e+01, 1.86462995e+01,
1.49605093e+01, 1.49605093e+01, 1.49605093e+01, 1.49605093e+01,
5.66403104e+00, 5.66403104e+00, 5.66403104e+00, 5.66403104e+00,
2.39671368e-01, 2.39671368e-01, 2.39671368e-01, 2.39671368e-01,
8.33807575e-04, 8.33807575e-04, 8.33807575e-04, 8.33807575e-04,
1.88954541e-07, 1.88954541e-07, 1.88954541e-07, 1.88954541e-07,
2.94104736e-11, 2.94104736e-11, 2.94104736e-11, 2.94104736e-11,
4.70101359e-15, 4.70101359e-15, 4.70101359e-15, 4.70101359e-15,
7.41275834e-19, 7.41275834e-19, 7.41275834e-19, 7.41275834e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99944497e+02, 9.99944497e+02, 9.99944497e+02, 9.99944497e+02,
9.99824671e+02, 9.99824671e+02, 9.99824671e+02, 9.99824671e+02,
9.99555901e+02, 9.99555901e+02, 9.99555901e+02, 9.99555901e+02,
9.98927969e+02, 9.98927969e+02, 9.98927969e+02, 9.98927969e+02,
9.97575760e+02, 9.97575760e+02, 9.97575760e+02, 9.97575760e+02,
9.94874250e+02, 9.94874250e+02, 9.94874250e+02, 9.94874250e+02,
9.89895755e+02, 9.89895755e+02, 9.89895755e+02, 9.89895755e+02,
9.81464823e+02, 9.81464823e+02, 9.81464823e+02, 9.81464823e+02,
9.68372978e+02, 9.68372978e+02, 9.68372978e+02, 9.68372978e+02,
9.49721618e+02, 9.49721618e+02, 9.49721618e+02, 9.49721618e+02,
9.25246848e+02, 9.25246848e+02, 9.25246848e+02, 9.25246848e+02,
8.95440766e+02, 8.95440766e+02, 8.95440766e+02, 8.95440766e+02,
8.61389674e+02, 8.61389674e+02, 8.61389674e+02, 8.61389674e+02,
8.24419634e+02, 8.24419634e+02, 8.24419634e+02, 8.24419634e+02,
7.85711897e+02, 7.85711897e+02, 7.85711897e+02, 7.85711897e+02,
7.46248517e+02, 7.46248517e+02, 7.46248517e+02, 7.46248517e+02,
7.07596025e+02, 7.07596025e+02, 7.07596025e+02, 7.07596025e+02,
6.70801074e+02, 6.70801074e+02, 6.70801074e+02, 6.70801074e+02,
6.35877624e+02, 6.35877624e+02, 6.35877624e+02, 6.35877624e+02,
6.02787079e+02, 6.02787079e+02, 6.02787079e+02, 6.02787079e+02,
5.71599803e+02, 5.71599803e+02, 5.71599803e+02, 5.71599803e+02,
5.42561321e+02, 5.42561321e+02, 5.42561321e+02, 5.42561321e+02,
5.16114337e+02, 5.16114337e+02, 5.16114337e+02, 5.16114337e+02,
4.93068680e+02, 4.93068680e+02, 4.93068680e+02, 4.93068680e+02,
4.74411379e+02, 4.74411379e+02, 4.74411379e+02, 4.74411379e+02,
4.61084454e+02, 4.61084454e+02, 4.61084454e+02, 4.61084454e+02,
4.53401496e+02, 4.53401496e+02, 4.53401496e+02, 4.53401496e+02,
4.50361189e+02, 4.50361189e+02, 4.50361189e+02, 4.50361189e+02,
4.49900506e+02, 4.49900506e+02, 4.49900506e+02, 4.49900506e+02,
4.51070680e+02, 4.51070680e+02, 4.51070680e+02, 4.51070680e+02,
4.52380461e+02, 4.52380461e+02, 4.52380461e+02, 4.52380461e+02,
4.52845112e+02, 4.52845112e+02, 4.52845112e+02, 4.52845112e+02,
4.53055158e+02, 4.53055158e+02, 4.53055158e+02, 4.53055158e+02,
4.53218903e+02, 4.53218903e+02, 4.53218903e+02, 4.53218903e+02,
4.53431056e+02, 4.53431056e+02, 4.53431056e+02, 4.53431056e+02,
4.53786396e+02, 4.53786396e+02, 4.53786396e+02, 4.53786396e+02,
4.54248310e+02, 4.54248310e+02, 4.54248310e+02, 4.54248310e+02,
4.54702361e+02, 4.54702361e+02, 4.54702361e+02, 4.54702361e+02,
4.55162009e+02, 4.55162009e+02, 4.55162009e+02, 4.55162009e+02,
4.55624655e+02, 4.55624655e+02, 4.55624655e+02, 4.55624655e+02,
4.56025036e+02, 4.56025036e+02, 4.56025036e+02, 4.56025036e+02,
4.56514938e+02, 4.56514938e+02, 4.56514938e+02, 4.56514938e+02,
4.57215307e+02, 4.57215307e+02, 4.57215307e+02, 4.57215307e+02,
4.56862932e+02, 4.56862932e+02, 4.56862932e+02, 4.56862932e+02,
4.48795942e+02, 4.48795942e+02, 4.48795942e+02, 4.48795942e+02,
4.03414163e+02, 4.03414163e+02, 4.03414163e+02, 4.03414163e+02,
2.46087022e+02, 2.46087022e+02, 2.46087022e+02, 2.46087022e+02,
4.07741358e+01, 4.07741358e+01, 4.07741358e+01, 4.07741358e+01,
5.40974800e-01, 5.40974800e-01, 5.40974800e-01, 5.40974800e-01,
1.02032471e-02, 1.02032471e-02, 1.02032471e-02, 1.02032471e-02,
1.00000224e-02, 1.00000224e-02, 1.00000224e-02, 1.00000224e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99991158, 0.99991158, 0.99991158, 0.99991158, 0.99973526,
0.99973526, 0.99973526, 0.99973526, 0.99936862, 0.99936862,
0.99936862, 0.99936862, 0.9985633 , 0.9985633 , 0.9985633 ,
0.9985633 , 0.99694101, 0.99694101, 0.99694101, 0.99694101,
0.99391234, 0.99391234, 0.99391234, 0.99391234, 0.9887 ,
0.9887 , 0.9887 , 0.9887 , 0.98044802, 0.98044802,
0.98044802, 0.98044802, 0.968429 , 0.968429 , 0.968429 ,
0.968429 , 0.95227242, 0.95227242, 0.95227242, 0.95227242,
0.93209641, 0.93209641, 0.93209641, 0.93209641, 0.90846461,
0.90846461, 0.90846461, 0.90846461, 0.88219172, 0.88219172,
0.88219172, 0.88219172, 0.8540954 , 0.8540954 , 0.8540954 ,
0.8540954 , 0.82480124, 0.82480124, 0.82480124, 0.82480124,
0.7952339 , 0.7952339 , 0.7952339 , 0.7952339 , 0.7663955 ,
0.7663955 , 0.7663955 , 0.7663955 , 0.73852584, 0.73852584,
0.73852584, 0.73852584, 0.71164018, 0.71164018, 0.71164018,
0.71164018, 0.6857697 , 0.6857697 , 0.6857697 , 0.6857697 ,
0.66111252, 0.66111252, 0.66111252, 0.66111252, 0.63763059,
0.63763059, 0.63763059, 0.63763059, 0.6169687 , 0.6169687 ,
0.6169687 , 0.6169687 , 0.59702916, 0.59702916, 0.59702916,
0.59702916, 0.58420196, 0.58420196, 0.58420196, 0.58420196,
0.57229985, 0.57229985, 0.57229985, 0.57229985, 0.56689435,
0.56689435, 0.56689435, 0.56689435, 0.56582645, 0.56582645,
0.56582645, 0.56582645, 0.56516822, 0.56516822, 0.56516822,
0.56516822, 0.56616647, 0.56616647, 0.56616647, 0.56616647,
0.56702185, 0.56702185, 0.56702185, 0.56702185, 0.56762457,
0.56762457, 0.56762457, 0.56762457, 0.56765827, 0.56765827,
0.56765827, 0.56765827, 0.56756729, 0.56756729, 0.56756729,
0.56756729, 0.56761051, 0.56761051, 0.56761051, 0.56761051,
0.56786939, 0.56786939, 0.56786939, 0.56786939, 0.56835266,
0.56835266, 0.56835266, 0.56835266, 0.5696172 , 0.5696172 ,
0.5696172 , 0.5696172 , 0.57503406, 0.57503406, 0.57503406,
0.57503406, 0.59623637, 0.59623637, 0.59623637, 0.59623637,
0.66403011, 0.66403011, 0.66403011, 0.66403011, 0.84354865,
0.84354865, 0.84354865, 0.84354865, 1.24434905, 1.24434905,
1.24434905, 1.24434905, 2.00424343, 2.00424343, 2.00424343,
2.00424343, 3.13960403, 3.13960403, 3.13960403, 3.13960403,
3.85414213, 3.85414213, 3.85414213, 3.85414213, 3.84786708,
3.84786708, 3.84786708, 3.84786708, 2.5771983 , 2.5771983 ,
2.5771983 , 2.5771983 , 1.18896322, 1.18896322, 1.18896322,
1.18896322, 1.01065342, 1.01065342, 1.01065342, 1.01065342,
1.00008186, 1.00008186, 1.00008186, 1.00008186, 1.00000002,
1.00000002, 1.00000002, 1.00000002, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.30857813e-03, 3.30857813e-03, 3.30857813e-03, 3.30857813e-03,
9.90650995e-03, 9.90650995e-03, 9.90650995e-03, 9.90650995e-03,
2.36295980e-02, 2.36295980e-02, 2.36295980e-02, 2.36295980e-02,
5.37860149e-02, 5.37860149e-02, 5.37860149e-02, 5.37860149e-02,
1.14592327e-01, 1.14592327e-01, 1.14592327e-01, 1.14592327e-01,
2.28324216e-01, 2.28324216e-01, 2.28324216e-01, 2.28324216e-01,
4.24711771e-01, 4.24711771e-01, 4.24711771e-01, 4.24711771e-01,
7.37353653e-01, 7.37353653e-01, 7.37353653e-01, 7.37353653e-01,
1.19658658e+00, 1.19658658e+00, 1.19658658e+00, 1.19658658e+00,
1.82130732e+00, 1.82130732e+00, 1.82130732e+00, 1.82130732e+00,
2.61367668e+00, 2.61367668e+00, 2.61367668e+00, 2.61367668e+00,
3.55960001e+00, 3.55960001e+00, 3.55960001e+00, 3.55960001e+00,
4.63473086e+00, 4.63473086e+00, 4.63473086e+00, 4.63473086e+00,
5.81317888e+00, 5.81317888e+00, 5.81317888e+00, 5.81317888e+00,
7.07525107e+00, 7.07525107e+00, 7.07525107e+00, 7.07525107e+00,
8.37802334e+00, 8.37802334e+00, 8.37802334e+00, 8.37802334e+00,
9.69020641e+00, 9.69020641e+00, 9.69020641e+00, 9.69020641e+00,
1.09986461e+01, 1.09986461e+01, 1.09986461e+01, 1.09986461e+01,
1.22993392e+01, 1.22993392e+01, 1.22993392e+01, 1.22993392e+01,
1.35884048e+01, 1.35884048e+01, 1.35884048e+01, 1.35884048e+01,
1.48563893e+01, 1.48563893e+01, 1.48563893e+01, 1.48563893e+01,
1.60857753e+01, 1.60857753e+01, 1.60857753e+01, 1.60857753e+01,
1.72423634e+01, 1.72423634e+01, 1.72423634e+01, 1.72423634e+01,
1.82765856e+01, 1.82765856e+01, 1.82765856e+01, 1.82765856e+01,
1.91204857e+01, 1.91204857e+01, 1.91204857e+01, 1.91204857e+01,
1.97147730e+01, 1.97147730e+01, 1.97147730e+01, 1.97147730e+01,
2.00413906e+01, 2.00413906e+01, 2.00413906e+01, 2.00413906e+01,
2.01574495e+01, 2.01574495e+01, 2.01574495e+01, 2.01574495e+01,
2.01659188e+01, 2.01659188e+01, 2.01659188e+01, 2.01659188e+01,
2.00925092e+01, 2.00925092e+01, 2.00925092e+01, 2.00925092e+01,
2.00365890e+01, 2.00365890e+01, 2.00365890e+01, 2.00365890e+01,
2.00158066e+01, 2.00158066e+01, 2.00158066e+01, 2.00158066e+01,
2.00060951e+01, 2.00060951e+01, 2.00060951e+01, 2.00060951e+01,
1.99977273e+01, 1.99977273e+01, 1.99977273e+01, 1.99977273e+01,
1.99853901e+01, 1.99853901e+01, 1.99853901e+01, 1.99853901e+01,
1.99645055e+01, 1.99645055e+01, 1.99645055e+01, 1.99645055e+01,
1.99389693e+01, 1.99389693e+01, 1.99389693e+01, 1.99389693e+01,
1.99147513e+01, 1.99147513e+01, 1.99147513e+01, 1.99147513e+01,
1.98919906e+01, 1.98919906e+01, 1.98919906e+01, 1.98919906e+01,
1.98717727e+01, 1.98717727e+01, 1.98717727e+01, 1.98717727e+01,
1.98525425e+01, 1.98525425e+01, 1.98525425e+01, 1.98525425e+01,
1.98340626e+01, 1.98340626e+01, 1.98340626e+01, 1.98340626e+01,
1.98228656e+01, 1.98228656e+01, 1.98228656e+01, 1.98228656e+01,
1.97973138e+01, 1.97973138e+01, 1.97973138e+01, 1.97973138e+01,
1.96970829e+01, 1.96970829e+01, 1.96970829e+01, 1.96970829e+01,
1.92311319e+01, 1.92311319e+01, 1.92311319e+01, 1.92311319e+01,
1.72194921e+01, 1.72194921e+01, 1.72194921e+01, 1.72194921e+01,
1.05940203e+01, 1.05940203e+01, 1.05940203e+01, 1.05940203e+01,
1.33734950e+00, 1.33734950e+00, 1.33734950e+00, 1.33734950e+00,
1.58314232e-02, 1.58314232e-02, 1.58314232e-02, 1.58314232e-02,
1.13008501e-05, 1.13008501e-05, 1.13008501e-05, 1.13008501e-05,
1.78142403e-09, 1.78142403e-09, 1.78142403e-09, 1.78142403e-09,
2.75475972e-13, 2.75475972e-13, 2.75475972e-13, 2.75475972e-13,
4.22869040e-17, 4.22869040e-17, 4.22869040e-17, 4.22869040e-17,
4.15971299e-21, 4.15971299e-21, 4.15971299e-21, 4.15971299e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99876214e+02, 9.99876214e+02, 9.99876214e+02, 9.99876214e+02,
9.99629396e+02, 9.99629396e+02, 9.99629396e+02, 9.99629396e+02,
9.99116221e+02, 9.99116221e+02, 9.99116221e+02, 9.99116221e+02,
9.97989363e+02, 9.97989363e+02, 9.97989363e+02, 9.97989363e+02,
9.95720692e+02, 9.95720692e+02, 9.95720692e+02, 9.95720692e+02,
9.91489781e+02, 9.91489781e+02, 9.91489781e+02, 9.91489781e+02,
9.84221698e+02, 9.84221698e+02, 9.84221698e+02, 9.84221698e+02,
9.72748451e+02, 9.72748451e+02, 9.72748451e+02, 9.72748451e+02,
9.56108956e+02, 9.56108956e+02, 9.56108956e+02, 9.56108956e+02,
9.33872727e+02, 9.33872727e+02, 9.33872727e+02, 9.33872727e+02,
9.06315492e+02, 9.06315492e+02, 9.06315492e+02, 9.06315492e+02,
8.74337896e+02, 8.74337896e+02, 8.74337896e+02, 8.74337896e+02,
8.39171349e+02, 8.39171349e+02, 8.39171349e+02, 8.39171349e+02,
8.02021280e+02, 8.02021280e+02, 8.02021280e+02, 8.02021280e+02,
7.63802020e+02, 7.63802020e+02, 7.63802020e+02, 7.63802020e+02,
7.25718152e+02, 7.25718152e+02, 7.25718152e+02, 7.25718152e+02,
6.89144129e+02, 6.89144129e+02, 6.89144129e+02, 6.89144129e+02,
6.54324851e+02, 6.54324851e+02, 6.54324851e+02, 6.54324851e+02,
6.21229262e+02, 6.21229262e+02, 6.21229262e+02, 6.21229262e+02,
5.89863923e+02, 5.89863923e+02, 5.89863923e+02, 5.89863923e+02,
5.60333915e+02, 5.60333915e+02, 5.60333915e+02, 5.60333915e+02,
5.32945780e+02, 5.32945780e+02, 5.32945780e+02, 5.32945780e+02,
5.08201682e+02, 5.08201682e+02, 5.08201682e+02, 5.08201682e+02,
4.86948766e+02, 4.86948766e+02, 4.86948766e+02, 4.86948766e+02,
4.70169922e+02, 4.70169922e+02, 4.70169922e+02, 4.70169922e+02,
4.58655322e+02, 4.58655322e+02, 4.58655322e+02, 4.58655322e+02,
4.52421155e+02, 4.52421155e+02, 4.52421155e+02, 4.52421155e+02,
4.50227207e+02, 4.50227207e+02, 4.50227207e+02, 4.50227207e+02,
4.50078663e+02, 4.50078663e+02, 4.50078663e+02, 4.50078663e+02,
4.51471203e+02, 4.51471203e+02, 4.51471203e+02, 4.51471203e+02,
4.52529169e+02, 4.52529169e+02, 4.52529169e+02, 4.52529169e+02,
4.52901471e+02, 4.52901471e+02, 4.52901471e+02, 4.52901471e+02,
4.53088208e+02, 4.53088208e+02, 4.53088208e+02, 4.53088208e+02,
4.53261283e+02, 4.53261283e+02, 4.53261283e+02, 4.53261283e+02,
4.53508024e+02, 4.53508024e+02, 4.53508024e+02, 4.53508024e+02,
4.53907221e+02, 4.53907221e+02, 4.53907221e+02, 4.53907221e+02,
4.54378816e+02, 4.54378816e+02, 4.54378816e+02, 4.54378816e+02,
4.54816020e+02, 4.54816020e+02, 4.54816020e+02, 4.54816020e+02,
4.55254101e+02, 4.55254101e+02, 4.55254101e+02, 4.55254101e+02,
4.55702968e+02, 4.55702968e+02, 4.55702968e+02, 4.55702968e+02,
4.56112277e+02, 4.56112277e+02, 4.56112277e+02, 4.56112277e+02,
4.56533652e+02, 4.56533652e+02, 4.56533652e+02, 4.56533652e+02,
4.57147821e+02, 4.57147821e+02, 4.57147821e+02, 4.57147821e+02,
4.57487722e+02, 4.57487722e+02, 4.57487722e+02, 4.57487722e+02,
4.54489765e+02, 4.54489765e+02, 4.54489765e+02, 4.54489765e+02,
4.32367414e+02, 4.32367414e+02, 4.32367414e+02, 4.32367414e+02,
3.36891352e+02, 3.36891352e+02, 3.36891352e+02, 3.36891352e+02,
1.20082128e+02, 1.20082128e+02, 1.20082128e+02, 1.20082128e+02,
5.54711825e+00, 5.54711825e+00, 5.54711825e+00, 5.54711825e+00,
2.19907181e-02, 2.19907181e-02, 2.19907181e-02, 2.19907181e-02,
1.00013363e-02, 1.00013363e-02, 1.00013363e-02, 1.00013363e-02,
1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99981351, 0.99981351, 0.99981351, 0.99981351, 0.99947054,
0.99947054, 0.99947054, 0.99947054, 0.9988105 , 0.9988105 ,
0.9988105 , 0.9988105 , 0.99744661, 0.99744661, 0.99744661,
0.99744661, 0.99487737, 0.99487737, 0.99487737, 0.99487737,
0.99039499, 0.99039499, 0.99039499, 0.99039499, 0.98318849,
0.98318849, 0.98318849, 0.98318849, 0.97251404, 0.97251404,
0.97251404, 0.97251404, 0.95791416, 0.95791416, 0.95791416,
0.95791416, 0.9393737 , 0.9393737 , 0.9393737 , 0.9393737 ,
0.91732519, 0.91732519, 0.91732519, 0.91732519, 0.8924994 ,
0.8924994 , 0.8924994 , 0.8924994 , 0.86569902, 0.86569902,
0.86569902, 0.86569902, 0.83758007, 0.83758007, 0.83758007,
0.83758007, 0.80880936, 0.80880936, 0.80880936, 0.80880936,
0.78041711, 0.78041711, 0.78041711, 0.78041711, 0.75287396,
0.75287396, 0.75287396, 0.75287396, 0.7262632 , 0.7262632 ,
0.7262632 , 0.7262632 , 0.70056925, 0.70056925, 0.70056925,
0.70056925, 0.67584993, 0.67584993, 0.67584993, 0.67584993,
0.65238615, 0.65238615, 0.65238615, 0.65238615, 0.63003424,
0.63003424, 0.63003424, 0.63003424, 0.61084192, 0.61084192,
0.61084192, 0.61084192, 0.59222361, 0.59222361, 0.59222361,
0.59222361, 0.58082307, 0.58082307, 0.58082307, 0.58082307,
0.57084769, 0.57084769, 0.57084769, 0.57084769, 0.56609991,
0.56609991, 0.56609991, 0.56609991, 0.56568386, 0.56568386,
0.56568386, 0.56568386, 0.56548787, 0.56548787, 0.56548787,
0.56548787, 0.56657134, 0.56657134, 0.56657134, 0.56657134,
0.56710969, 0.56710969, 0.56710969, 0.56710969, 0.56763591,
0.56763591, 0.56763591, 0.56763591, 0.56774535, 0.56774535,
0.56774535, 0.56774535, 0.56770037, 0.56770037, 0.56770037,
0.56770037, 0.56775753, 0.56775753, 0.56775753, 0.56775753,
0.568006 , 0.568006 , 0.568006 , 0.568006 , 0.56842167,
0.56842167, 0.56842167, 0.56842167, 0.56933391, 0.56933391,
0.56933391, 0.56933391, 0.57288369, 0.57288369, 0.57288369,
0.57288369, 0.58706794, 0.58706794, 0.58706794, 0.58706794,
0.6343945 , 0.6343945 , 0.6343945 , 0.6343945 , 0.76532497,
0.76532497, 0.76532497, 0.76532497, 1.0710979 , 1.0710979 ,
1.0710979 , 1.0710979 , 1.67993717, 1.67993717, 1.67993717,
1.67993717, 2.70591502, 2.70591502, 2.70591502, 2.70591502,
3.70007988, 3.70007988, 3.70007988, 3.70007988, 3.98442962,
3.98442962, 3.98442962, 3.98442962, 3.39924656, 3.39924656,
3.39924656, 3.39924656, 1.61726694, 1.61726694, 1.61726694,
1.61726694, 1.04481323, 1.04481323, 1.04481323, 1.04481323,
1.00129504, 1.00129504, 1.00129504, 1.00129504, 1.00000081,
1.00000081, 1.00000081, 1.00000081, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([6.97829163e-03, 6.97829163e-03, 6.97829163e-03, 6.97829163e-03,
1.98144360e-02, 1.98144360e-02, 1.98144360e-02, 1.98144360e-02,
4.45271720e-02, 4.45271720e-02, 4.45271720e-02, 4.45271720e-02,
9.56332947e-02, 9.56332947e-02, 9.56332947e-02, 9.56332947e-02,
1.92056185e-01, 1.92056185e-01, 1.92056185e-01, 1.92056185e-01,
3.60758718e-01, 3.60758718e-01, 3.60758718e-01, 3.60758718e-01,
6.33292020e-01, 6.33292020e-01, 6.33292020e-01, 6.33292020e-01,
1.03998760e+00, 1.03998760e+00, 1.03998760e+00, 1.03998760e+00,
1.60218999e+00, 1.60218999e+00, 1.60218999e+00, 1.60218999e+00,
2.32628483e+00, 2.32628483e+00, 2.32628483e+00, 2.32628483e+00,
3.20261012e+00, 3.20261012e+00, 3.20261012e+00, 3.20261012e+00,
4.20983812e+00, 4.20983812e+00, 4.20983812e+00, 4.20983812e+00,
5.32266284e+00, 5.32266284e+00, 5.32266284e+00, 5.32266284e+00,
6.52018139e+00, 6.52018139e+00, 6.52018139e+00, 6.52018139e+00,
7.77578750e+00, 7.77578750e+00, 7.77578750e+00, 7.77578750e+00,
9.04696669e+00, 9.04696669e+00, 9.04696669e+00, 9.04696669e+00,
1.03198134e+01, 1.03198134e+01, 1.03198134e+01, 1.03198134e+01,
1.15876099e+01, 1.15876099e+01, 1.15876099e+01, 1.15876099e+01,
1.28468639e+01, 1.28468639e+01, 1.28468639e+01, 1.28468639e+01,
1.40930929e+01, 1.40930929e+01, 1.40930929e+01, 1.40930929e+01,
1.53148719e+01, 1.53148719e+01, 1.53148719e+01, 1.53148719e+01,
1.64919282e+01, 1.64919282e+01, 1.64919282e+01, 1.64919282e+01,
1.75867321e+01, 1.75867321e+01, 1.75867321e+01, 1.75867321e+01,
1.85470262e+01, 1.85470262e+01, 1.85470262e+01, 1.85470262e+01,
1.93069541e+01, 1.93069541e+01, 1.93069541e+01, 1.93069541e+01,
1.98179609e+01, 1.98179609e+01, 1.98179609e+01, 1.98179609e+01,
2.00793284e+01, 2.00793284e+01, 2.00793284e+01, 2.00793284e+01,
2.01586176e+01, 2.01586176e+01, 2.01586176e+01, 2.01586176e+01,
2.01524831e+01, 2.01524831e+01, 2.01524831e+01, 2.01524831e+01,
2.00752058e+01, 2.00752058e+01, 2.00752058e+01, 2.00752058e+01,
2.00307498e+01, 2.00307498e+01, 2.00307498e+01, 2.00307498e+01,
2.00136099e+01, 2.00136099e+01, 2.00136099e+01, 2.00136099e+01,
2.00037603e+01, 2.00037603e+01, 2.00037603e+01, 2.00037603e+01,
1.99945192e+01, 1.99945192e+01, 1.99945192e+01, 1.99945192e+01,
1.99804496e+01, 1.99804496e+01, 1.99804496e+01, 1.99804496e+01,
1.99580977e+01, 1.99580977e+01, 1.99580977e+01, 1.99580977e+01,
1.99332124e+01, 1.99332124e+01, 1.99332124e+01, 1.99332124e+01,
1.99091877e+01, 1.99091877e+01, 1.99091877e+01, 1.99091877e+01,
1.98860108e+01, 1.98860108e+01, 1.98860108e+01, 1.98860108e+01,
1.98654280e+01, 1.98654280e+01, 1.98654280e+01, 1.98654280e+01,
1.98471370e+01, 1.98471370e+01, 1.98471370e+01, 1.98471370e+01,
1.98298574e+01, 1.98298574e+01, 1.98298574e+01, 1.98298574e+01,
1.98171370e+01, 1.98171370e+01, 1.98171370e+01, 1.98171370e+01,
1.98030159e+01, 1.98030159e+01, 1.98030159e+01, 1.98030159e+01,
1.97516465e+01, 1.97516465e+01, 1.97516465e+01, 1.97516465e+01,
1.95204012e+01, 1.95204012e+01, 1.95204012e+01, 1.95204012e+01,
1.84745602e+01, 1.84745602e+01, 1.84745602e+01, 1.84745602e+01,
1.44416174e+01, 1.44416174e+01, 1.44416174e+01, 1.44416174e+01,
4.87006574e+00, 4.87006574e+00, 4.87006574e+00, 4.87006574e+00,
1.70878215e-01, 1.70878215e-01, 1.70878215e-01, 1.70878215e-01,
4.74222438e-04, 4.74222438e-04, 4.74222438e-04, 4.74222438e-04,
9.62797091e-08, 9.62797091e-08, 9.62797091e-08, 9.62797091e-08,
1.54134491e-11, 1.54134491e-11, 1.54134491e-11, 1.54134491e-11,
2.48678570e-15, 2.48678570e-15, 2.48678570e-15, 2.48678570e-15,
3.95125006e-19, 3.95125006e-19, 3.95125006e-19, 3.95125006e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99738937e+02, 9.99738937e+02, 9.99738937e+02, 9.99738937e+02,
9.99258865e+02, 9.99258865e+02, 9.99258865e+02, 9.99258865e+02,
9.98335213e+02, 9.98335213e+02, 9.98335213e+02, 9.98335213e+02,
9.96427546e+02, 9.96427546e+02, 9.96427546e+02, 9.96427546e+02,
9.92837210e+02, 9.92837210e+02, 9.92837210e+02, 9.92837210e+02,
9.86583249e+02, 9.86583249e+02, 9.86583249e+02, 9.86583249e+02,
9.76553906e+02, 9.76553906e+02, 9.76553906e+02, 9.76553906e+02,
9.61754277e+02, 9.61754277e+02, 9.61754277e+02, 9.61754277e+02,
9.41618962e+02, 9.41618962e+02, 9.41618962e+02, 9.41618962e+02,
9.16225667e+02, 9.16225667e+02, 9.16225667e+02, 9.16225667e+02,
8.86285914e+02, 8.86285914e+02, 8.86285914e+02, 8.86285914e+02,
8.52914522e+02, 8.52914522e+02, 8.52914522e+02, 8.52914522e+02,
8.17299685e+02, 8.17299685e+02, 8.17299685e+02, 8.17299685e+02,
7.80401265e+02, 7.80401265e+02, 7.80401265e+02, 7.80401265e+02,
7.43128313e+02, 7.43128313e+02, 7.43128313e+02, 7.43128313e+02,
7.06850048e+02, 7.06850048e+02, 7.06850048e+02, 7.06850048e+02,
6.72179206e+02, 6.72179206e+02, 6.72179206e+02, 6.72179206e+02,
6.39161893e+02, 6.39161893e+02, 6.39161893e+02, 6.39161893e+02,
6.07736695e+02, 6.07736695e+02, 6.07736695e+02, 6.07736695e+02,
5.77958609e+02, 5.77958609e+02, 5.77958609e+02, 5.77958609e+02,
5.49975461e+02, 5.49975461e+02, 5.49975461e+02, 5.49975461e+02,
5.24148628e+02, 5.24148628e+02, 5.24148628e+02, 5.24148628e+02,
5.01038900e+02, 5.01038900e+02, 5.01038900e+02, 5.01038900e+02,
4.81516564e+02, 4.81516564e+02, 4.81516564e+02, 4.81516564e+02,
4.66526226e+02, 4.66526226e+02, 4.66526226e+02, 4.66526226e+02,
4.56679419e+02, 4.56679419e+02, 4.56679419e+02, 4.56679419e+02,
4.51709116e+02, 4.51709116e+02, 4.51709116e+02, 4.51709116e+02,
4.50204516e+02, 4.50204516e+02, 4.50204516e+02, 4.50204516e+02,
4.50323474e+02, 4.50323474e+02, 4.50323474e+02, 4.50323474e+02,
4.51792099e+02, 4.51792099e+02, 4.51792099e+02, 4.51792099e+02,
4.52644533e+02, 4.52644533e+02, 4.52644533e+02, 4.52644533e+02,
4.52957374e+02, 4.52957374e+02, 4.52957374e+02, 4.52957374e+02,
4.53131411e+02, 4.53131411e+02, 4.53131411e+02, 4.53131411e+02,
4.53310711e+02, 4.53310711e+02, 4.53310711e+02, 4.53310711e+02,
4.53588206e+02, 4.53588206e+02, 4.53588206e+02, 4.53588206e+02,
4.54024216e+02, 4.54024216e+02, 4.54024216e+02, 4.54024216e+02,
4.54505579e+02, 4.54505579e+02, 4.54505579e+02, 4.54505579e+02,
4.54941322e+02, 4.54941322e+02, 4.54941322e+02, 4.54941322e+02,
4.55358316e+02, 4.55358316e+02, 4.55358316e+02, 4.55358316e+02,
4.55776216e+02, 4.55776216e+02, 4.55776216e+02, 4.55776216e+02,
4.56187451e+02, 4.56187451e+02, 4.56187451e+02, 4.56187451e+02,
4.56567868e+02, 4.56567868e+02, 4.56567868e+02, 4.56567868e+02,
4.57061252e+02, 4.57061252e+02, 4.57061252e+02, 4.57061252e+02,
4.57670049e+02, 4.57670049e+02, 4.57670049e+02, 4.57670049e+02,
4.56861977e+02, 4.56861977e+02, 4.56861977e+02, 4.56861977e+02,
4.46897134e+02, 4.46897134e+02, 4.46897134e+02, 4.46897134e+02,
3.95213842e+02, 3.95213842e+02, 3.95213842e+02, 3.95213842e+02,
2.27017462e+02, 2.27017462e+02, 2.27017462e+02, 2.27017462e+02,
3.24722316e+01, 3.24722316e+01, 3.24722316e+01, 3.24722316e+01,
3.44215454e-01, 3.44215454e-01, 3.44215454e-01, 3.44215454e-01,
1.00956522e-02, 1.00956522e-02, 1.00956522e-02, 1.00956522e-02,
1.00000114e-02, 1.00000114e-02, 1.00000114e-02, 1.00000114e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99962715, 0.99962715, 0.99962715, 0.99962715, 0.9989959 ,
0.9989959 , 0.9989959 , 0.9989959 , 0.99787399, 0.99787399,
0.99787399, 0.99787399, 0.99569077, 0.99569077, 0.99569077,
0.99569077, 0.99184415, 0.99184415, 0.99184415, 0.99184415,
0.98556472, 0.98556472, 0.98556472, 0.98556472, 0.97611065,
0.97611065, 0.97611065, 0.97611065, 0.96295756, 0.96295756,
0.96295756, 0.96295756, 0.94597218, 0.94597218, 0.94597218,
0.94597218, 0.92545827, 0.92545827, 0.92545827, 0.92545827,
0.90205196, 0.90205196, 0.90205196, 0.90205196, 0.87652198,
0.87652198, 0.87652198, 0.87652198, 0.84956063, 0.84956063,
0.84956063, 0.84956063, 0.82170304, 0.82170304, 0.82170304,
0.82170304, 0.79383738, 0.79383738, 0.79383738, 0.79383738,
0.76665912, 0.76665912, 0.76665912, 0.76665912, 0.74033691,
0.74033691, 0.74033691, 0.74033691, 0.71486688, 0.71486688,
0.71486688, 0.71486688, 0.69028102, 0.69028102, 0.69028102,
0.69028102, 0.6666371 , 0.6666371 , 0.6666371 , 0.6666371 ,
0.64432028, 0.64432028, 0.64432028, 0.64432028, 0.62304012,
0.62304012, 0.62304012, 0.62304012, 0.60528142, 0.60528142,
0.60528142, 0.60528142, 0.58800675, 0.58800675, 0.58800675,
0.58800675, 0.5778694 , 0.5778694 , 0.5778694 , 0.5778694 ,
0.56972246, 0.56972246, 0.56972246, 0.56972246, 0.56560315,
0.56560315, 0.56560315, 0.56560315, 0.56553233, 0.56553233,
0.56553233, 0.56553233, 0.56584834, 0.56584834, 0.56584834,
0.56584834, 0.56690991, 0.56690991, 0.56690991, 0.56690991,
0.56721384, 0.56721384, 0.56721384, 0.56721384, 0.56762924,
0.56762924, 0.56762924, 0.56762924, 0.56782241, 0.56782241,
0.56782241, 0.56782241, 0.56782868, 0.56782868, 0.56782868,
0.56782868, 0.56791572, 0.56791572, 0.56791572, 0.56791572,
0.56816164, 0.56816164, 0.56816164, 0.56816164, 0.56851365,
0.56851365, 0.56851365, 0.56851365, 0.56920152, 0.56920152,
0.56920152, 0.56920152, 0.57156713, 0.57156713, 0.57156713,
0.57156713, 0.58101327, 0.58101327, 0.58101327, 0.58101327,
0.61373599, 0.61373599, 0.61373599, 0.61373599, 0.70822132,
0.70822132, 0.70822132, 0.70822132, 0.93867528, 0.93867528,
0.93867528, 0.93867528, 1.41891316, 1.41891316, 1.41891316,
1.41891316, 2.27525624, 2.27525624, 2.27525624, 2.27525624,
3.41072177, 3.41072177, 3.41072177, 3.41072177, 3.98667427,
3.98667427, 3.98667427, 3.98667427, 3.87982047, 3.87982047,
3.87982047, 3.87982047, 2.43231843, 2.43231843, 2.43231843,
2.43231843, 1.15615318, 1.15615318, 1.15615318, 1.15615318,
1.00824283, 1.00824283, 1.00824283, 1.00824283, 1.0000454 ,
1.0000454 , 1.0000454 , 1.0000454 , 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.39530183e-02, 1.39530183e-02, 1.39530183e-02, 1.39530183e-02,
3.75848880e-02, 3.75848880e-02, 3.75848880e-02, 3.75848880e-02,
7.96128157e-02, 7.96128157e-02, 7.96128157e-02, 7.96128157e-02,
1.61508250e-01, 1.61508250e-01, 1.61508250e-01, 1.61508250e-01,
3.06150477e-01, 3.06150477e-01, 3.06150477e-01, 3.06150477e-01,
5.43251766e-01, 5.43251766e-01, 5.43251766e-01, 5.43251766e-01,
9.02556002e-01, 9.02556002e-01, 9.02556002e-01, 9.02556002e-01,
1.40720176e+00, 1.40720176e+00, 1.40720176e+00, 1.40720176e+00,
2.06726331e+00, 2.06726331e+00, 2.06726331e+00, 2.06726331e+00,
2.87738380e+00, 2.87738380e+00, 2.87738380e+00, 2.87738380e+00,
3.81959664e+00, 3.81959664e+00, 3.81959664e+00, 3.81959664e+00,
4.86989842e+00, 4.86989842e+00, 4.86989842e+00, 4.86989842e+00,
6.00593747e+00, 6.00593747e+00, 6.00593747e+00, 6.00593747e+00,
7.20976710e+00, 7.20976710e+00, 7.20976710e+00, 7.20976710e+00,
8.44013430e+00, 8.44013430e+00, 8.44013430e+00, 8.44013430e+00,
9.67820971e+00, 9.67820971e+00, 9.67820971e+00, 9.67820971e+00,
1.09131010e+01, 1.09131010e+01, 1.09131010e+01, 1.09131010e+01,
1.21419057e+01, 1.21419057e+01, 1.21419057e+01, 1.21419057e+01,
1.33619281e+01, 1.33619281e+01, 1.33619281e+01, 1.33619281e+01,
1.45669883e+01, 1.45669883e+01, 1.45669883e+01, 1.45669883e+01,
1.57435737e+01, 1.57435737e+01, 1.57435737e+01, 1.57435737e+01,
1.68686020e+01, 1.68686020e+01, 1.68686020e+01, 1.68686020e+01,
1.79014772e+01, 1.79014772e+01, 1.79014772e+01, 1.79014772e+01,
1.87882849e+01, 1.87882849e+01, 1.87882849e+01, 1.87882849e+01,
1.94668837e+01, 1.94668837e+01, 1.94668837e+01, 1.94668837e+01,
1.99006239e+01, 1.99006239e+01, 1.99006239e+01, 1.99006239e+01,
2.01050731e+01, 2.01050731e+01, 2.01050731e+01, 2.01050731e+01,
2.01571544e+01, 2.01571544e+01, 2.01571544e+01, 2.01571544e+01,
2.01363521e+01, 2.01363521e+01, 2.01363521e+01, 2.01363521e+01,
2.00613129e+01, 2.00613129e+01, 2.00613129e+01, 2.00613129e+01,
2.00257473e+01, 2.00257473e+01, 2.00257473e+01, 2.00257473e+01,
2.00113940e+01, 2.00113940e+01, 2.00113940e+01, 2.00113940e+01,
2.00016210e+01, 2.00016210e+01, 2.00016210e+01, 2.00016210e+01,
1.99912688e+01, 1.99912688e+01, 1.99912688e+01, 1.99912688e+01,
1.99751513e+01, 1.99751513e+01, 1.99751513e+01, 1.99751513e+01,
1.99512938e+01, 1.99512938e+01, 1.99512938e+01, 1.99512938e+01,
1.99269046e+01, 1.99269046e+01, 1.99269046e+01, 1.99269046e+01,
1.99037068e+01, 1.99037068e+01, 1.99037068e+01, 1.99037068e+01,
1.98807884e+01, 1.98807884e+01, 1.98807884e+01, 1.98807884e+01,
1.98596458e+01, 1.98596458e+01, 1.98596458e+01, 1.98596458e+01,
1.98416867e+01, 1.98416867e+01, 1.98416867e+01, 1.98416867e+01,
1.98257179e+01, 1.98257179e+01, 1.98257179e+01, 1.98257179e+01,
1.98115993e+01, 1.98115993e+01, 1.98115993e+01, 1.98115993e+01,
1.98022942e+01, 1.98022942e+01, 1.98022942e+01, 1.98022942e+01,
1.97745446e+01, 1.97745446e+01, 1.97745446e+01, 1.97745446e+01,
1.96599658e+01, 1.96599658e+01, 1.96599658e+01, 1.96599658e+01,
1.91316282e+01, 1.91316282e+01, 1.91316282e+01, 1.91316282e+01,
1.68989432e+01, 1.68989432e+01, 1.68989432e+01, 1.68989432e+01,
9.82776433e+00, 9.82776433e+00, 9.82776433e+00, 9.82776433e+00,
1.03966586e+00, 1.03966586e+00, 1.03966586e+00, 1.03966586e+00,
1.02686172e-02, 1.02686172e-02, 1.02686172e-02, 1.02686172e-02,
5.87596530e-06, 5.87596530e-06, 5.87596530e-06, 5.87596530e-06,
9.09802870e-10, 9.09802870e-10, 9.09802870e-10, 9.09802870e-10,
1.40162828e-13, 1.40162828e-13, 1.40162828e-13, 1.40162828e-13,
2.18096263e-17, 2.18096263e-17, 2.18096263e-17, 2.18096263e-17,
4.14673755e-21, 4.14673755e-21, 4.14673755e-21, 4.14673755e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99478084e+02, 9.99478084e+02, 9.99478084e+02, 9.99478084e+02,
9.98594612e+02, 9.98594612e+02, 9.98594612e+02, 9.98594612e+02,
9.97025182e+02, 9.97025182e+02, 9.97025182e+02, 9.97025182e+02,
9.93973403e+02, 9.93973403e+02, 9.93973403e+02, 9.93973403e+02,
9.88603735e+02, 9.88603735e+02, 9.88603735e+02, 9.88603735e+02,
9.79857278e+02, 9.79857278e+02, 9.79857278e+02, 9.79857278e+02,
9.66732858e+02, 9.66732858e+02, 9.66732858e+02, 9.66732858e+02,
9.48559568e+02, 9.48559568e+02, 9.48559568e+02, 9.48559568e+02,
9.25238470e+02, 9.25238470e+02, 9.25238470e+02, 9.25238470e+02,
8.97294073e+02, 8.97294073e+02, 8.97294073e+02, 8.97294073e+02,
8.65708163e+02, 8.65708163e+02, 8.65708163e+02, 8.65708163e+02,
8.31624879e+02, 8.31624879e+02, 8.31624879e+02, 8.31624879e+02,
7.96056352e+02, 7.96056352e+02, 7.96056352e+02, 7.96056352e+02,
7.59769847e+02, 7.59769847e+02, 7.59769847e+02, 7.59769847e+02,
7.23915193e+02, 7.23915193e+02, 7.23915193e+02, 7.23915193e+02,
6.89464378e+02, 6.89464378e+02, 6.89464378e+02, 6.89464378e+02,
6.56557931e+02, 6.56557931e+02, 6.56557931e+02, 6.56557931e+02,
6.25161940e+02, 6.25161940e+02, 6.25161940e+02, 6.25161940e+02,
5.95273088e+02, 5.95273088e+02, 5.95273088e+02, 5.95273088e+02,
5.66968750e+02, 5.66968750e+02, 5.66968750e+02, 5.66968750e+02,
5.40439673e+02, 5.40439673e+02, 5.40439673e+02, 5.40439673e+02,
5.16100425e+02, 5.16100425e+02, 5.16100425e+02, 5.16100425e+02,
4.94565963e+02, 4.94565963e+02, 4.94565963e+02, 4.94565963e+02,
4.76716435e+02, 4.76716435e+02, 4.76716435e+02, 4.76716435e+02,
4.63423824e+02, 4.63423824e+02, 4.63423824e+02, 4.63423824e+02,
4.55097958e+02, 4.55097958e+02, 4.55097958e+02, 4.55097958e+02,
4.51223672e+02, 4.51223672e+02, 4.51223672e+02, 4.51223672e+02,
4.50235886e+02, 4.50235886e+02, 4.50235886e+02, 4.50235886e+02,
4.50627214e+02, 4.50627214e+02, 4.50627214e+02, 4.50627214e+02,
4.52045781e+02, 4.52045781e+02, 4.52045781e+02, 4.52045781e+02,
4.52733619e+02, 4.52733619e+02, 4.52733619e+02, 4.52733619e+02,
4.53008677e+02, 4.53008677e+02, 4.53008677e+02, 4.53008677e+02,
4.53183711e+02, 4.53183711e+02, 4.53183711e+02, 4.53183711e+02,
4.53371405e+02, 4.53371405e+02, 4.53371405e+02, 4.53371405e+02,
4.53677995e+02, 4.53677995e+02, 4.53677995e+02, 4.53677995e+02,
4.54140504e+02, 4.54140504e+02, 4.54140504e+02, 4.54140504e+02,
4.54621285e+02, 4.54621285e+02, 4.54621285e+02, 4.54621285e+02,
4.55065003e+02, 4.55065003e+02, 4.55065003e+02, 4.55065003e+02,
4.55473454e+02, 4.55473454e+02, 4.55473454e+02, 4.55473454e+02,
4.55862605e+02, 4.55862605e+02, 4.55862605e+02, 4.55862605e+02,
4.56251236e+02, 4.56251236e+02, 4.56251236e+02, 4.56251236e+02,
4.56613227e+02, 4.56613227e+02, 4.56613227e+02, 4.56613227e+02,
4.57031953e+02, 4.57031953e+02, 4.57031953e+02, 4.57031953e+02,
4.57636572e+02, 4.57636572e+02, 4.57636572e+02, 4.57636572e+02,
4.57734018e+02, 4.57734018e+02, 4.57734018e+02, 4.57734018e+02,
4.53736791e+02, 4.53736791e+02, 4.53736791e+02, 4.53736791e+02,
4.27841681e+02, 4.27841681e+02, 4.27841681e+02, 4.27841681e+02,
3.22491407e+02, 3.22491407e+02, 3.22491407e+02, 3.22491407e+02,
1.03503221e+02, 1.03503221e+02, 1.03503221e+02, 1.03503221e+02,
3.92201766e+00, 3.92201766e+00, 3.92201766e+00, 3.92201766e+00,
1.65463831e-02, 1.65463831e-02, 1.65463831e-02, 1.65463831e-02,
1.00006926e-02, 1.00006926e-02, 1.00006926e-02, 1.00006926e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99929182, 0.99929182, 0.99929182, 0.99929182, 0.99819056,
0.99819056, 0.99819056, 0.99819056, 0.99638774, 0.99638774,
0.99638774, 0.99638774, 0.99307857, 0.99307857, 0.99307857,
0.99307857, 0.98762234, 0.98762234, 0.98762234, 0.98762234,
0.97927076, 0.97927076, 0.97927076, 0.97927076, 0.96745681,
0.96745681, 0.96745681, 0.96745681, 0.95194398, 0.95194398,
0.95194398, 0.95194398, 0.93291304, 0.93291304, 0.93291304,
0.93291304, 0.91089851, 0.91089851, 0.91089851, 0.91089851,
0.88661886, 0.88661886, 0.88661886, 0.88661886, 0.86077838,
0.86077838, 0.86077838, 0.86077838, 0.83390834, 0.83390834,
0.83390834, 0.83390834, 0.80667351, 0.80667351, 0.80667351,
0.80667351, 0.77989973, 0.77989973, 0.77989973, 0.77989973,
0.75387045, 0.75387045, 0.75387045, 0.75387045, 0.72866226,
0.72866226, 0.72866226, 0.72866226, 0.70425431, 0.70425431,
0.70425431, 0.70425431, 0.68070198, 0.68070198, 0.68070198,
0.68070198, 0.65806701, 0.65806701, 0.65806701, 0.65806701,
0.63686275, 0.63686275, 0.63686275, 0.63686275, 0.61660877,
0.61660877, 0.61660877, 0.61660877, 0.60023979, 0.60023979,
0.60023979, 0.60023979, 0.58434031, 0.58434031, 0.58434031,
0.58434031, 0.57531196, 0.57531196, 0.57531196, 0.57531196,
0.56885665, 0.56885665, 0.56885665, 0.56885665, 0.56535251,
0.56535251, 0.56535251, 0.56535251, 0.56542652, 0.56542652,
0.56542652, 0.56542652, 0.56613675, 0.56613675, 0.56613675,
0.56613675, 0.56722021, 0.56722021, 0.56722021, 0.56722021,
0.56734999, 0.56734999, 0.56734999, 0.56734999, 0.56761109,
0.56761109, 0.56761109, 0.56761109, 0.56787835, 0.56787835,
0.56787835, 0.56787835, 0.56795177, 0.56795177, 0.56795177,
0.56795177, 0.56808491, 0.56808491, 0.56808491, 0.56808491,
0.56833262, 0.56833262, 0.56833262, 0.56833262, 0.56862979,
0.56862979, 0.56862979, 0.56862979, 0.56915933, 0.56915933,
0.56915933, 0.56915933, 0.570773 , 0.570773 , 0.570773 ,
0.570773 , 0.57706088, 0.57706088, 0.57706088, 0.57706088,
0.59949934, 0.59949934, 0.59949934, 0.59949934, 0.66700177,
0.66700177, 0.66700177, 0.66700177, 0.83868505, 0.83868505,
0.83868505, 0.83868505, 1.21237055, 1.21237055, 1.21237055,
1.21237055, 1.91223289, 1.91223289, 1.91223289, 1.91223289,
3.007806 , 3.007806 , 3.007806 , 3.007806 , 3.87809533,
3.87809533, 3.87809533, 3.87809533, 4.06550349, 4.06550349,
4.06550349, 4.06550349, 3.31660165, 3.31660165, 3.31660165,
3.31660165, 1.51650855, 1.51650855, 1.51650855, 1.51650855,
1.03580283, 1.03580283, 1.03580283, 1.03580283, 1.00089283,
1.00089283, 1.00089283, 1.00089283, 1.00000042, 1.00000042,
1.00000042, 1.00000042, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.65061748e-02, 2.65061748e-02, 2.65061748e-02, 2.65061748e-02,
6.77521323e-02, 6.77521323e-02, 6.77521323e-02, 6.77521323e-02,
1.35347197e-01, 1.35347197e-01, 1.35347197e-01, 1.35347197e-01,
2.59685207e-01, 2.59685207e-01, 2.59685207e-01, 2.59685207e-01,
4.65425979e-01, 4.65425979e-01, 4.65425979e-01, 4.65425979e-01,
7.82144211e-01, 7.82144211e-01, 7.82144211e-01, 7.82144211e-01,
1.23395371e+00, 1.23395371e+00, 1.23395371e+00, 1.23395371e+00,
1.83410775e+00, 1.83410775e+00, 1.83410775e+00, 1.83410775e+00,
2.58131290e+00, 2.58131290e+00, 2.58131290e+00, 2.58131290e+00,
3.46116458e+00, 3.46116458e+00, 3.46116458e+00, 3.46116458e+00,
4.45155217e+00, 4.45155217e+00, 4.45155217e+00, 4.45155217e+00,
5.52969690e+00, 5.52969690e+00, 5.52969690e+00, 5.52969690e+00,
6.67852811e+00, 6.67852811e+00, 6.67852811e+00, 6.67852811e+00,
7.86873820e+00, 7.86873820e+00, 7.86873820e+00, 7.86873820e+00,
9.07107121e+00, 9.07107121e+00, 9.07107121e+00, 9.07107121e+00,
1.02736328e+01, 1.02736328e+01, 1.02736328e+01, 1.02736328e+01,
1.14723262e+01, 1.14723262e+01, 1.14723262e+01, 1.14723262e+01,
1.26646432e+01, 1.26646432e+01, 1.26646432e+01, 1.26646432e+01,
1.38470920e+01, 1.38470920e+01, 1.38470920e+01, 1.38470920e+01,
1.50122685e+01, 1.50122685e+01, 1.50122685e+01, 1.50122685e+01,
1.61443786e+01, 1.61443786e+01, 1.61443786e+01, 1.61443786e+01,
1.72174436e+01, 1.72174436e+01, 1.72174436e+01, 1.72174436e+01,
1.81881157e+01, 1.81881157e+01, 1.81881157e+01, 1.81881157e+01,
1.90020678e+01, 1.90020678e+01, 1.90020678e+01, 1.90020678e+01,
1.96026064e+01, 1.96026064e+01, 1.96026064e+01, 1.96026064e+01,
1.99654493e+01, 1.99654493e+01, 1.99654493e+01, 1.99654493e+01,
2.01215540e+01, 2.01215540e+01, 2.01215540e+01, 2.01215540e+01,
2.01536613e+01, 2.01536613e+01, 2.01536613e+01, 2.01536613e+01,
2.01186860e+01, 2.01186860e+01, 2.01186860e+01, 2.01186860e+01,
2.00503930e+01, 2.00503930e+01, 2.00503930e+01, 2.00503930e+01,
2.00214278e+01, 2.00214278e+01, 2.00214278e+01, 2.00214278e+01,
2.00088918e+01, 2.00088918e+01, 2.00088918e+01, 2.00088918e+01,
1.99992270e+01, 1.99992270e+01, 1.99992270e+01, 1.99992270e+01,
1.99879478e+01, 1.99879478e+01, 1.99879478e+01, 1.99879478e+01,
1.99697555e+01, 1.99697555e+01, 1.99697555e+01, 1.99697555e+01,
1.99444645e+01, 1.99444645e+01, 1.99444645e+01, 1.99444645e+01,
1.99203251e+01, 1.99203251e+01, 1.99203251e+01, 1.99203251e+01,
1.98978235e+01, 1.98978235e+01, 1.98978235e+01, 1.98978235e+01,
1.98758306e+01, 1.98758306e+01, 1.98758306e+01, 1.98758306e+01,
1.98547615e+01, 1.98547615e+01, 1.98547615e+01, 1.98547615e+01,
1.98366120e+01, 1.98366120e+01, 1.98366120e+01, 1.98366120e+01,
1.98210642e+01, 1.98210642e+01, 1.98210642e+01, 1.98210642e+01,
1.98067178e+01, 1.98067178e+01, 1.98067178e+01, 1.98067178e+01,
1.97979636e+01, 1.97979636e+01, 1.97979636e+01, 1.97979636e+01,
1.97829582e+01, 1.97829582e+01, 1.97829582e+01, 1.97829582e+01,
1.97247063e+01, 1.97247063e+01, 1.97247063e+01, 1.97247063e+01,
1.94611034e+01, 1.94611034e+01, 1.94611034e+01, 1.94611034e+01,
1.82839011e+01, 1.82839011e+01, 1.82839011e+01, 1.82839011e+01,
1.38817854e+01, 1.38817854e+01, 1.38817854e+01, 1.38817854e+01,
4.10564450e+00, 4.10564450e+00, 4.10564450e+00, 4.10564450e+00,
1.19559981e-01, 1.19559981e-01, 1.19559981e-01, 1.19559981e-01,
2.64879102e-04, 2.64879102e-04, 2.64879102e-04, 2.64879102e-04,
4.95793305e-08, 4.95793305e-08, 4.95793305e-08, 4.95793305e-08,
8.02645853e-12, 8.02645853e-12, 8.02645853e-12, 8.02645853e-12,
1.28397217e-15, 1.28397217e-15, 1.28397217e-15, 1.28397217e-15,
1.96745591e-19, 1.96745591e-19, 1.96745591e-19, 1.96745591e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99008791e+02, 9.99008791e+02, 9.99008791e+02, 9.99008791e+02,
9.97467896e+02, 9.97467896e+02, 9.97467896e+02, 9.97467896e+02,
9.94947317e+02, 9.94947317e+02, 9.94947317e+02, 9.94947317e+02,
9.90325847e+02, 9.90325847e+02, 9.90325847e+02, 9.90325847e+02,
9.82720519e+02, 9.82720519e+02, 9.82720519e+02, 9.82720519e+02,
9.71113593e+02, 9.71113593e+02, 9.71113593e+02, 9.71113593e+02,
9.54764008e+02, 9.54764008e+02, 9.54764008e+02, 9.54764008e+02,
9.33417401e+02, 9.33417401e+02, 9.33417401e+02, 9.33417401e+02,
9.07418550e+02, 9.07418550e+02, 9.07418550e+02, 9.07418550e+02,
8.77605065e+02, 8.77605065e+02, 8.77605065e+02, 8.77605065e+02,
8.45053460e+02, 8.45053460e+02, 8.45053460e+02, 8.45053460e+02,
8.10795758e+02, 8.10795758e+02, 8.10795758e+02, 8.10795758e+02,
7.75604847e+02, 7.75604847e+02, 7.75604847e+02, 7.75604847e+02,
7.40358342e+02, 7.40358342e+02, 7.40358342e+02, 7.40358342e+02,
7.06183106e+02, 7.06183106e+02, 7.06183106e+02, 7.06183106e+02,
6.73414104e+02, 6.73414104e+02, 6.73414104e+02, 6.73414104e+02,
6.42106090e+02, 6.42106090e+02, 6.42106090e+02, 6.42106090e+02,
6.12205307e+02, 6.12205307e+02, 6.12205307e+02, 6.12205307e+02,
5.83733464e+02, 5.83733464e+02, 5.83733464e+02, 5.83733464e+02,
5.56805862e+02, 5.56805862e+02, 5.56805862e+02, 5.56805862e+02,
5.31654012e+02, 5.31654012e+02, 5.31654012e+02, 5.31654012e+02,
5.08742192e+02, 5.08742192e+02, 5.08742192e+02, 5.08742192e+02,
4.88731625e+02, 4.88731625e+02, 4.88731625e+02, 4.88731625e+02,
4.72495806e+02, 4.72495806e+02, 4.72495806e+02, 4.72495806e+02,
4.60808275e+02, 4.60808275e+02, 4.60808275e+02, 4.60808275e+02,
4.53862047e+02, 4.53862047e+02, 4.53862047e+02, 4.53862047e+02,
4.50909195e+02, 4.50909195e+02, 4.50909195e+02, 4.50909195e+02,
4.50303363e+02, 4.50303363e+02, 4.50303363e+02, 4.50303363e+02,
4.50963314e+02, 4.50963314e+02, 4.50963314e+02, 4.50963314e+02,
4.52251030e+02, 4.52251030e+02, 4.52251030e+02, 4.52251030e+02,
4.52805650e+02, 4.52805650e+02, 4.52805650e+02, 4.52805650e+02,
4.53054444e+02, 4.53054444e+02, 4.53054444e+02, 4.53054444e+02,
4.53236462e+02, 4.53236462e+02, 4.53236462e+02, 4.53236462e+02,
4.53444188e+02, 4.53444188e+02, 4.53444188e+02, 4.53444188e+02,
4.53782015e+02, 4.53782015e+02, 4.53782015e+02, 4.53782015e+02,
4.54259731e+02, 4.54259731e+02, 4.54259731e+02, 4.54259731e+02,
4.54730412e+02, 4.54730412e+02, 4.54730412e+02, 4.54730412e+02,
4.55178339e+02, 4.55178339e+02, 4.55178339e+02, 4.55178339e+02,
4.55590920e+02, 4.55590920e+02, 4.55590920e+02, 4.55590920e+02,
4.55961244e+02, 4.55961244e+02, 4.55961244e+02, 4.55961244e+02,
4.56316460e+02, 4.56316460e+02, 4.56316460e+02, 4.56316460e+02,
4.56666544e+02, 4.56666544e+02, 4.56666544e+02, 4.56666544e+02,
4.57026199e+02, 4.57026199e+02, 4.57026199e+02, 4.57026199e+02,
4.57531552e+02, 4.57531552e+02, 4.57531552e+02, 4.57531552e+02,
4.58018403e+02, 4.58018403e+02, 4.58018403e+02, 4.58018403e+02,
4.56713026e+02, 4.56713026e+02, 4.56713026e+02, 4.56713026e+02,
4.44619433e+02, 4.44619433e+02, 4.44619433e+02, 4.44619433e+02,
3.86158645e+02, 3.86158645e+02, 3.86158645e+02, 3.86158645e+02,
2.07519215e+02, 2.07519215e+02, 2.07519215e+02, 2.07519215e+02,
2.53994497e+01, 2.53994497e+01, 2.53994497e+01, 2.53994497e+01,
2.14148688e-01, 2.14148688e-01, 2.14148688e-01, 2.14148688e-01,
1.00450120e-02, 1.00450120e-02, 1.00450120e-02, 1.00450120e-02,
1.00000059e-02, 1.00000059e-02, 1.00000059e-02, 1.00000059e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99871963, 0.99871963, 0.99871963, 0.99871963, 0.99689581,
0.99689581, 0.99689581, 0.99689581, 0.99415366, 0.99415366,
0.99415366, 0.99415366, 0.98939445, 0.98939445, 0.98939445,
0.98939445, 0.98204346, 0.98204346, 0.98204346, 0.98204346,
0.97146171, 0.97146171, 0.97146171, 0.97146171, 0.9573379 ,
0.9573379 , 0.9573379 , 0.9573379 , 0.93973497, 0.93973497,
0.93973497, 0.93973497, 0.91908294, 0.91908294, 0.91908294,
0.91908294, 0.89603722, 0.89603722, 0.89603722, 0.89603722,
0.87129459, 0.87129459, 0.87129459, 0.87129459, 0.84542383,
0.84542383, 0.84542383, 0.84542383, 0.81892298, 0.81892298,
0.81892298, 0.81892298, 0.79259907, 0.79259907, 0.79259907,
0.79259907, 0.76689349, 0.76689349, 0.76689349, 0.76689349,
0.74195878, 0.74195878, 0.74195878, 0.74195878, 0.71776989,
0.71776989, 0.71776989, 0.71776989, 0.69434792, 0.69434792,
0.69434792, 0.69434792, 0.67176942, 0.67176942, 0.67176942,
0.67176942, 0.65008496, 0.65008496, 0.65008496, 0.65008496,
0.62996773, 0.62996773, 0.62996773, 0.62996773, 0.61070758,
0.61070758, 0.61070758, 0.61070758, 0.59567443, 0.59567443,
0.59567443, 0.59567443, 0.58118471, 0.58118471, 0.58118471,
0.58118471, 0.57312756, 0.57312756, 0.57312756, 0.57312756,
0.56818316, 0.56818316, 0.56818316, 0.56818316, 0.56529871,
0.56529871, 0.56529871, 0.56529871, 0.56537711, 0.56537711,
0.56537711, 0.56537711, 0.56637301, 0.56637301, 0.56637301,
0.56637301, 0.56746355, 0.56746355, 0.56746355, 0.56746355,
0.56750707, 0.56750707, 0.56750707, 0.56750707, 0.56762621,
0.56762621, 0.56762621, 0.56762621, 0.56789882, 0.56789882,
0.56789882, 0.56789882, 0.56806145, 0.56806145, 0.56806145,
0.56806145, 0.56826163, 0.56826163, 0.56826163, 0.56826163,
0.56851406, 0.56851406, 0.56851406, 0.56851406, 0.56877122,
0.56877122, 0.56877122, 0.56877122, 0.56918068, 0.56918068,
0.56918068, 0.56918068, 0.57030245, 0.57030245, 0.57030245,
0.57030245, 0.5745043 , 0.5745043 , 0.5745043 , 0.5745043 ,
0.58979671, 0.58979671, 0.58979671, 0.58979671, 0.63756363,
0.63756363, 0.63756363, 0.63756363, 0.7640859 , 0.7640859 ,
0.7640859 , 0.7640859 , 1.05129673, 1.05129673, 1.05129673,
1.05129673, 1.61395351, 1.61395351, 1.61395351, 1.61395351,
2.56324844, 2.56324844, 2.56324844, 2.56324844, 3.64796108,
3.64796108, 3.64796108, 3.64796108, 4.10212289, 4.10212289,
4.10212289, 4.10212289, 3.88420625, 3.88420625, 3.88420625,
3.88420625, 2.28314086, 2.28314086, 2.28314086, 2.28314086,
1.12772592, 1.12772592, 1.12772592, 1.12772592, 1.00628402,
1.00628402, 1.00628402, 1.00628402, 1.00002417, 1.00002417,
1.00002417, 1.00002417, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([4.79346584e-02, 4.79346584e-02, 4.79346584e-02, 4.79346584e-02,
1.16295186e-01, 1.16295186e-01, 1.16295186e-01, 1.16295186e-01,
2.19249025e-01, 2.19249025e-01, 2.19249025e-01, 2.19249025e-01,
3.98505426e-01, 3.98505426e-01, 3.98505426e-01, 3.98505426e-01,
6.76753261e-01, 6.76753261e-01, 6.76753261e-01, 6.76753261e-01,
1.08029397e+00, 1.08029397e+00, 1.08029397e+00, 1.08029397e+00,
1.62453623e+00, 1.62453623e+00, 1.62453623e+00, 1.62453623e+00,
2.31205472e+00, 2.31205472e+00, 2.31205472e+00, 2.31205472e+00,
3.13205824e+00, 3.13205824e+00, 3.13205824e+00, 3.13205824e+00,
4.06476657e+00, 4.06476657e+00, 4.06476657e+00, 4.06476657e+00,
5.08775132e+00, 5.08775132e+00, 5.08775132e+00, 5.08775132e+00,
6.18246089e+00, 6.18246089e+00, 6.18246089e+00, 6.18246089e+00,
7.33022569e+00, 7.33022569e+00, 7.33022569e+00, 7.33022569e+00,
8.49610187e+00, 8.49610187e+00, 8.49610187e+00, 8.49610187e+00,
9.66738034e+00, 9.66738034e+00, 9.66738034e+00, 9.66738034e+00,
1.08365227e+01, 1.08365227e+01, 1.08365227e+01, 1.08365227e+01,
1.20006085e+01, 1.20006085e+01, 1.20006085e+01, 1.20006085e+01,
1.31582056e+01, 1.31582056e+01, 1.31582056e+01, 1.31582056e+01,
1.43045927e+01, 1.43045927e+01, 1.43045927e+01, 1.43045927e+01,
1.54308433e+01, 1.54308433e+01, 1.54308433e+01, 1.54308433e+01,
1.65188815e+01, 1.65188815e+01, 1.65188815e+01, 1.65188815e+01,
1.75398658e+01, 1.75398658e+01, 1.75398658e+01, 1.75398658e+01,
1.84481157e+01, 1.84481157e+01, 1.84481157e+01, 1.84481157e+01,
1.91900861e+01, 1.91900861e+01, 1.91900861e+01, 1.91900861e+01,
1.97162589e+01, 1.97162589e+01, 1.97162589e+01, 1.97162589e+01,
2.00152679e+01, 2.00152679e+01, 2.00152679e+01, 2.00152679e+01,
2.01312403e+01, 2.01312403e+01, 2.01312403e+01, 2.01312403e+01,
2.01482309e+01, 2.01482309e+01, 2.01482309e+01, 2.01482309e+01,
2.01006098e+01, 2.01006098e+01, 2.01006098e+01, 2.01006098e+01,
2.00417664e+01, 2.00417664e+01, 2.00417664e+01, 2.00417664e+01,
2.00177684e+01, 2.00177684e+01, 2.00177684e+01, 2.00177684e+01,
2.00061893e+01, 2.00061893e+01, 2.00061893e+01, 2.00061893e+01,
1.99964358e+01, 1.99964358e+01, 1.99964358e+01, 1.99964358e+01,
1.99841326e+01, 1.99841326e+01, 1.99841326e+01, 1.99841326e+01,
1.99640722e+01, 1.99640722e+01, 1.99640722e+01, 1.99640722e+01,
1.99380327e+01, 1.99380327e+01, 1.99380327e+01, 1.99380327e+01,
1.99138950e+01, 1.99138950e+01, 1.99138950e+01, 1.99138950e+01,
1.98915983e+01, 1.98915983e+01, 1.98915983e+01, 1.98915983e+01,
1.98706224e+01, 1.98706224e+01, 1.98706224e+01, 1.98706224e+01,
1.98504781e+01, 1.98504781e+01, 1.98504781e+01, 1.98504781e+01,
1.98321531e+01, 1.98321531e+01, 1.98321531e+01, 1.98321531e+01,
1.98164498e+01, 1.98164498e+01, 1.98164498e+01, 1.98164498e+01,
1.98028802e+01, 1.98028802e+01, 1.98028802e+01, 1.98028802e+01,
1.97923327e+01, 1.97923327e+01, 1.97923327e+01, 1.97923327e+01,
1.97838509e+01, 1.97838509e+01, 1.97838509e+01, 1.97838509e+01,
1.97535132e+01, 1.97535132e+01, 1.97535132e+01, 1.97535132e+01,
1.96225421e+01, 1.96225421e+01, 1.96225421e+01, 1.96225421e+01,
1.90212196e+01, 1.90212196e+01, 1.90212196e+01, 1.90212196e+01,
1.65525784e+01, 1.65525784e+01, 1.65525784e+01, 1.65525784e+01,
9.01356040e+00, 9.01356040e+00, 9.01356040e+00, 9.01356040e+00,
7.89629666e-01, 7.89629666e-01, 7.89629666e-01, 7.89629666e-01,
6.47563091e-03, 6.47563091e-03, 6.47563091e-03, 6.47563091e-03,
3.00072068e-06, 3.00072068e-06, 3.00072068e-06, 3.00072068e-06,
4.61483424e-10, 4.61483424e-10, 4.61483424e-10, 4.61483424e-10,
7.14105492e-14, 7.14105492e-14, 7.14105492e-14, 7.14105492e-14,
1.12055754e-17, 1.12055754e-17, 1.12055754e-17, 1.12055754e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.98208251e+02, 9.98208251e+02, 9.98208251e+02, 9.98208251e+02,
9.95657307e+02, 9.95657307e+02, 9.95657307e+02, 9.95657307e+02,
9.91826551e+02, 9.91826551e+02, 9.91826551e+02, 9.91826551e+02,
9.85188507e+02, 9.85188507e+02, 9.85188507e+02, 9.85188507e+02,
9.74962220e+02, 9.74962220e+02, 9.74962220e+02, 9.74962220e+02,
9.60296787e+02, 9.60296787e+02, 9.60296787e+02, 9.60296787e+02,
9.40822905e+02, 9.40822905e+02, 9.40822905e+02, 9.40822905e+02,
9.16712279e+02, 9.16712279e+02, 9.16712279e+02, 9.16712279e+02,
8.88653079e+02, 8.88653079e+02, 8.88653079e+02, 8.88653079e+02,
8.57635270e+02, 8.57635270e+02, 8.57635270e+02, 8.57635270e+02,
8.24683912e+02, 8.24683912e+02, 8.24683912e+02, 8.24683912e+02,
7.90625936e+02, 7.90625936e+02, 7.90625936e+02, 7.90625936e+02,
7.56152074e+02, 7.56152074e+02, 7.56152074e+02, 7.56152074e+02,
7.22323562e+02, 7.22323562e+02, 7.22323562e+02, 7.22323562e+02,
6.89748211e+02, 6.89748211e+02, 6.89748211e+02, 6.89748211e+02,
6.58562261e+02, 6.58562261e+02, 6.58562261e+02, 6.58562261e+02,
6.28705838e+02, 6.28705838e+02, 6.28705838e+02, 6.28705838e+02,
6.00181833e+02, 6.00181833e+02, 6.00181833e+02, 6.00181833e+02,
5.73028492e+02, 5.73028492e+02, 5.73028492e+02, 5.73028492e+02,
5.47394913e+02, 5.47394913e+02, 5.47394913e+02, 5.47394913e+02,
5.23556041e+02, 5.23556041e+02, 5.23556041e+02, 5.23556041e+02,
5.02022645e+02, 5.02022645e+02, 5.02022645e+02, 5.02022645e+02,
4.83490652e+02, 4.83490652e+02, 4.83490652e+02, 4.83490652e+02,
4.68807418e+02, 4.68807418e+02, 4.68807418e+02, 4.68807418e+02,
4.58628006e+02, 4.58628006e+02, 4.58628006e+02, 4.58628006e+02,
4.52917665e+02, 4.52917665e+02, 4.52917665e+02, 4.52917665e+02,
4.50722891e+02, 4.50722891e+02, 4.50722891e+02, 4.50722891e+02,
4.50404840e+02, 4.50404840e+02, 4.50404840e+02, 4.50404840e+02,
4.51305706e+02, 4.51305706e+02, 4.51305706e+02, 4.51305706e+02,
4.52417827e+02, 4.52417827e+02, 4.52417827e+02, 4.52417827e+02,
4.52869771e+02, 4.52869771e+02, 4.52869771e+02, 4.52869771e+02,
4.53098143e+02, 4.53098143e+02, 4.53098143e+02, 4.53098143e+02,
4.53288109e+02, 4.53288109e+02, 4.53288109e+02, 4.53288109e+02,
4.53522454e+02, 4.53522454e+02, 4.53522454e+02, 4.53522454e+02,
4.53898721e+02, 4.53898721e+02, 4.53898721e+02, 4.53898721e+02,
4.54383577e+02, 4.54383577e+02, 4.54383577e+02, 4.54383577e+02,
4.54840633e+02, 4.54840633e+02, 4.54840633e+02, 4.54840633e+02,
4.55282568e+02, 4.55282568e+02, 4.55282568e+02, 4.55282568e+02,
4.55699208e+02, 4.55699208e+02, 4.55699208e+02, 4.55699208e+02,
4.56064730e+02, 4.56064730e+02, 4.56064730e+02, 4.56064730e+02,
4.56394118e+02, 4.56394118e+02, 4.56394118e+02, 4.56394118e+02,
4.56721490e+02, 4.56721490e+02, 4.56721490e+02, 4.56721490e+02,
4.57041842e+02, 4.57041842e+02, 4.57041842e+02, 4.57041842e+02,
4.57452339e+02, 4.57452339e+02, 4.57452339e+02, 4.57452339e+02,
4.58033692e+02, 4.58033692e+02, 4.58033692e+02, 4.58033692e+02,
4.57888048e+02, 4.57888048e+02, 4.57888048e+02, 4.57888048e+02,
4.52727602e+02, 4.52727602e+02, 4.52727602e+02, 4.52727602e+02,
4.22759926e+02, 4.22759926e+02, 4.22759926e+02, 4.22759926e+02,
3.07068930e+02, 3.07068930e+02, 3.07068930e+02, 3.07068930e+02,
8.77696574e+01, 8.77696574e+01, 8.77696574e+01, 8.77696574e+01,
2.68785775e+00, 2.68785775e+00, 2.68785775e+00, 2.68785775e+00,
1.34301951e-02, 1.34301951e-02, 1.34301951e-02, 1.34301951e-02,
1.00003538e-02, 1.00003538e-02, 1.00003538e-02, 1.00003538e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99779253, 0.99779253, 0.99779253, 0.99779253, 0.99492087,
0.99492087, 0.99492087, 0.99492087, 0.99096776, 0.99096776,
0.99096776, 0.99096776, 0.98445746, 0.98445746, 0.98445746,
0.98445746, 0.97502252, 0.97502252, 0.97502252, 0.97502252,
0.9621987 , 0.9621987 , 0.9621987 , 0.9621987 , 0.94596677,
0.94596677, 0.94596677, 0.94596677, 0.92664513, 0.92664513,
0.92664513, 0.92664513, 0.90481789, 0.90481789, 0.90481789,
0.90481789, 0.88115819, 0.88115819, 0.88115819, 0.88115819,
0.85626688, 0.85626688, 0.85626688, 0.85626688, 0.83058143,
0.83058143, 0.83058143, 0.83058143, 0.80476657, 0.80476657,
0.80476657, 0.80476657, 0.77943364, 0.77943364, 0.77943364,
0.77943364, 0.75476663, 0.75476663, 0.75476663, 0.75476663,
0.73082127, 0.73082127, 0.73082127, 0.73082127, 0.70758612,
0.70758612, 0.70758612, 0.70758612, 0.6850841 , 0.6850841 ,
0.6850841 , 0.6850841 , 0.66342869, 0.66342869, 0.66342869,
0.66342869, 0.6426441 , 0.6426441 , 0.6426441 , 0.6426441 ,
0.62359474, 0.62359474, 0.62359474, 0.62359474, 0.60530901,
0.60530901, 0.60530901, 0.60530901, 0.59154744, 0.59154744,
0.59154744, 0.59154744, 0.57849861, 0.57849861, 0.57849861,
0.57849861, 0.57129468, 0.57129468, 0.57129468, 0.57129468,
0.56764504, 0.56764504, 0.56764504, 0.56764504, 0.56537656,
0.56537656, 0.56537656, 0.56537656, 0.56541728, 0.56541728,
0.56541728, 0.56541728, 0.566573 , 0.566573 , 0.566573 ,
0.566573 , 0.56761976, 0.56761976, 0.56761976, 0.56761976,
0.56766123, 0.56766123, 0.56766123, 0.56766123, 0.56769891,
0.56769891, 0.56769891, 0.56769891, 0.56789839, 0.56789839,
0.56789839, 0.56789839, 0.56815101, 0.56815101, 0.56815101,
0.56815101, 0.56843359, 0.56843359, 0.56843359, 0.56843359,
0.56870197, 0.56870197, 0.56870197, 0.56870197, 0.56893189,
0.56893189, 0.56893189, 0.56893189, 0.56925247, 0.56925247,
0.56925247, 0.56925247, 0.57003928, 0.57003928, 0.57003928,
0.57003928, 0.57286264, 0.57286264, 0.57286264, 0.57286264,
0.58324543, 0.58324543, 0.58324543, 0.58324543, 0.61675826,
0.61675826, 0.61675826, 0.61675826, 0.70906129, 0.70906129,
0.70906129, 0.70906129, 0.92724037, 0.92724037, 0.92724037,
0.92724037, 1.37323589, 1.37323589, 1.37323589, 1.37323589,
2.1635062 , 2.1635062 , 2.1635062 , 2.1635062 , 3.29148444,
3.29148444, 3.29148444, 3.29148444, 4.0332475 , 4.0332475 ,
4.0332475 , 4.0332475 , 4.12979469, 4.12979469, 4.12979469,
4.12979469, 3.20980045, 3.20980045, 3.20980045, 3.20980045,
1.4244878 , 1.4244878 , 1.4244878 , 1.4244878 , 1.02817994,
1.02817994, 1.02817994, 1.02817994, 1.00058696, 1.00058696,
1.00058696, 1.00058696, 1.00000021, 1.00000021, 1.00000021,
1.00000021, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([8.26770714e-02, 8.26770714e-02, 8.26770714e-02, 8.26770714e-02,
1.90444567e-01, 1.90444567e-01, 1.90444567e-01, 1.90444567e-01,
3.39156393e-01, 3.39156393e-01, 3.39156393e-01, 3.39156393e-01,
5.85196350e-01, 5.85196350e-01, 5.85196350e-01, 5.85196350e-01,
9.44102208e-01, 9.44102208e-01, 9.44102208e-01, 9.44102208e-01,
1.43650190e+00, 1.43650190e+00, 1.43650190e+00, 1.43650190e+00,
2.06747296e+00, 2.06747296e+00, 2.06747296e+00, 2.06747296e+00,
2.83007409e+00, 2.83007409e+00, 2.83007409e+00, 2.83007409e+00,
3.70711102e+00, 3.70711102e+00, 3.70711102e+00, 3.70711102e+00,
4.67711511e+00, 4.67711511e+00, 4.67711511e+00, 4.67711511e+00,
5.72031049e+00, 5.72031049e+00, 5.72031049e+00, 5.72031049e+00,
6.82230541e+00, 6.82230541e+00, 6.82230541e+00, 6.82230541e+00,
7.95228204e+00, 7.95228204e+00, 7.95228204e+00, 7.95228204e+00,
9.09250910e+00, 9.09250910e+00, 9.09250910e+00, 9.09250910e+00,
1.02322411e+01, 1.02322411e+01, 1.02322411e+01, 1.02322411e+01,
1.13687918e+01, 1.13687918e+01, 1.13687918e+01, 1.13687918e+01,
1.25004504e+01, 1.25004504e+01, 1.25004504e+01, 1.25004504e+01,
1.36248432e+01, 1.36248432e+01, 1.36248432e+01, 1.36248432e+01,
1.47363425e+01, 1.47363425e+01, 1.47363425e+01, 1.47363425e+01,
1.58243684e+01, 1.58243684e+01, 1.58243684e+01, 1.58243684e+01,
1.68684615e+01, 1.68684615e+01, 1.68684615e+01, 1.68684615e+01,
1.78370966e+01, 1.78370966e+01, 1.78370966e+01, 1.78370966e+01,
1.86828484e+01, 1.86828484e+01, 1.86828484e+01, 1.86828484e+01,
1.93540793e+01, 1.93540793e+01, 1.93540793e+01, 1.93540793e+01,
1.98100759e+01, 1.98100759e+01, 1.98100759e+01, 1.98100759e+01,
2.00526668e+01, 2.00526668e+01, 2.00526668e+01, 2.00526668e+01,
2.01358422e+01, 2.01358422e+01, 2.01358422e+01, 2.01358422e+01,
2.01409960e+01, 2.01409960e+01, 2.01409960e+01, 2.01409960e+01,
2.00831703e+01, 2.00831703e+01, 2.00831703e+01, 2.00831703e+01,
2.00347786e+01, 2.00347786e+01, 2.00347786e+01, 2.00347786e+01,
2.00146195e+01, 2.00146195e+01, 2.00146195e+01, 2.00146195e+01,
2.00034460e+01, 2.00034460e+01, 2.00034460e+01, 2.00034460e+01,
1.99933175e+01, 1.99933175e+01, 1.99933175e+01, 1.99933175e+01,
1.99796992e+01, 1.99796992e+01, 1.99796992e+01, 1.99796992e+01,
1.99579053e+01, 1.99579053e+01, 1.99579053e+01, 1.99579053e+01,
1.99319311e+01, 1.99319311e+01, 1.99319311e+01, 1.99319311e+01,
1.99078330e+01, 1.99078330e+01, 1.99078330e+01, 1.99078330e+01,
1.98854258e+01, 1.98854258e+01, 1.98854258e+01, 1.98854258e+01,
1.98650641e+01, 1.98650641e+01, 1.98650641e+01, 1.98650641e+01,
1.98461462e+01, 1.98461462e+01, 1.98461462e+01, 1.98461462e+01,
1.98282545e+01, 1.98282545e+01, 1.98282545e+01, 1.98282545e+01,
1.98124498e+01, 1.98124498e+01, 1.98124498e+01, 1.98124498e+01,
1.97991749e+01, 1.97991749e+01, 1.97991749e+01, 1.97991749e+01,
1.97873673e+01, 1.97873673e+01, 1.97873673e+01, 1.97873673e+01,
1.97808776e+01, 1.97808776e+01, 1.97808776e+01, 1.97808776e+01,
1.97645088e+01, 1.97645088e+01, 1.97645088e+01, 1.97645088e+01,
1.96988900e+01, 1.96988900e+01, 1.96988900e+01, 1.96988900e+01,
1.93964557e+01, 1.93964557e+01, 1.93964557e+01, 1.93964557e+01,
1.80772383e+01, 1.80772383e+01, 1.80772383e+01, 1.80772383e+01,
1.32758210e+01, 1.32758210e+01, 1.32758210e+01, 1.32758210e+01,
3.37432001e+00, 3.37432001e+00, 3.37432001e+00, 3.37432001e+00,
8.08064010e-02, 8.08064010e-02, 8.08064010e-02, 8.08064010e-02,
1.40942456e-04, 1.40942456e-04, 1.40942456e-04, 1.40942456e-04,
2.50612552e-08, 2.50612552e-08, 2.50612552e-08, 2.50612552e-08,
4.11745361e-12, 4.11745361e-12, 4.11745361e-12, 4.11745361e-12,
6.55937311e-16, 6.55937311e-16, 6.55937311e-16, 6.55937311e-16,
9.42282893e-20, 9.42282893e-20, 9.42282893e-20, 9.42282893e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.96911775e+02, 9.96911775e+02, 9.96911775e+02, 9.96911775e+02,
9.92897461e+02, 9.92897461e+02, 9.92897461e+02, 9.92897461e+02,
9.87381492e+02, 9.87381492e+02, 9.87381492e+02, 9.87381492e+02,
9.78316630e+02, 9.78316630e+02, 9.78316630e+02, 9.78316630e+02,
9.65224072e+02, 9.65224072e+02, 9.65224072e+02, 9.65224072e+02,
9.47511089e+02, 9.47511089e+02, 9.47511089e+02, 9.47511089e+02,
9.25225984e+02, 9.25225984e+02, 9.25225984e+02, 9.25225984e+02,
8.98896472e+02, 8.98896472e+02, 8.98896472e+02, 8.98896472e+02,
8.69413243e+02, 8.69413243e+02, 8.69413243e+02, 8.69413243e+02,
8.37771694e+02, 8.37771694e+02, 8.37771694e+02, 8.37771694e+02,
8.04845422e+02, 8.04845422e+02, 8.04845422e+02, 8.04845422e+02,
7.71265034e+02, 7.71265034e+02, 7.71265034e+02, 7.71265034e+02,
7.37891694e+02, 7.37891694e+02, 7.37891694e+02, 7.37891694e+02,
7.05581087e+02, 7.05581087e+02, 7.05581087e+02, 7.05581087e+02,
6.74524283e+02, 6.74524283e+02, 6.74524283e+02, 6.74524283e+02,
6.44761697e+02, 6.44761697e+02, 6.44761697e+02, 6.44761697e+02,
6.16250581e+02, 6.16250581e+02, 6.16250581e+02, 6.16250581e+02,
5.89001288e+02, 5.89001288e+02, 5.89001288e+02, 5.89001288e+02,
5.63080642e+02, 5.63080642e+02, 5.63080642e+02, 5.63080642e+02,
5.38671716e+02, 5.38671716e+02, 5.38671716e+02, 5.38671716e+02,
5.16092282e+02, 5.16092282e+02, 5.16092282e+02, 5.16092282e+02,
4.95896244e+02, 4.95896244e+02, 4.95896244e+02, 4.95896244e+02,
4.78802137e+02, 4.78802137e+02, 4.78802137e+02, 4.78802137e+02,
4.65608882e+02, 4.65608882e+02, 4.65608882e+02, 4.65608882e+02,
4.56832207e+02, 4.56832207e+02, 4.56832207e+02, 4.56832207e+02,
4.52212128e+02, 4.52212128e+02, 4.52212128e+02, 4.52212128e+02,
4.50635329e+02, 4.50635329e+02, 4.50635329e+02, 4.50635329e+02,
4.50539724e+02, 4.50539724e+02, 4.50539724e+02, 4.50539724e+02,
4.51634371e+02, 4.51634371e+02, 4.51634371e+02, 4.51634371e+02,
4.52552736e+02, 4.52552736e+02, 4.52552736e+02, 4.52552736e+02,
4.52930057e+02, 4.52930057e+02, 4.52930057e+02, 4.52930057e+02,
4.53144052e+02, 4.53144052e+02, 4.53144052e+02, 4.53144052e+02,
4.53341730e+02, 4.53341730e+02, 4.53341730e+02, 4.53341730e+02,
4.53605101e+02, 4.53605101e+02, 4.53605101e+02, 4.53605101e+02,
4.54020478e+02, 4.54020478e+02, 4.54020478e+02, 4.54020478e+02,
4.54510123e+02, 4.54510123e+02, 4.54510123e+02, 4.54510123e+02,
4.54955970e+02, 4.54955970e+02, 4.54955970e+02, 4.54955970e+02,
4.55384422e+02, 4.55384422e+02, 4.55384422e+02, 4.55384422e+02,
4.55795165e+02, 4.55795165e+02, 4.55795165e+02, 4.55795165e+02,
4.56163141e+02, 4.56163141e+02, 4.56163141e+02, 4.56163141e+02,
4.56482181e+02, 4.56482181e+02, 4.56482181e+02, 4.56482181e+02,
4.56781749e+02, 4.56781749e+02, 4.56781749e+02, 4.56781749e+02,
4.57078389e+02, 4.57078389e+02, 4.57078389e+02, 4.57078389e+02,
4.57417386e+02, 4.57417386e+02, 4.57417386e+02, 4.57417386e+02,
4.57936162e+02, 4.57936162e+02, 4.57936162e+02, 4.57936162e+02,
4.58275885e+02, 4.58275885e+02, 4.58275885e+02, 4.58275885e+02,
4.56396881e+02, 4.56396881e+02, 4.56396881e+02, 4.56396881e+02,
4.42008574e+02, 4.42008574e+02, 4.42008574e+02, 4.42008574e+02,
3.76142236e+02, 3.76142236e+02, 3.76142236e+02, 3.76142236e+02,
1.87877799e+02, 1.87877799e+02, 1.87877799e+02, 1.87877799e+02,
1.93878950e+01, 1.93878950e+01, 1.93878950e+01, 1.93878950e+01,
1.28441959e-01, 1.28441959e-01, 1.28441959e-01, 1.28441959e-01,
1.00206317e-02, 1.00206317e-02, 1.00206317e-02, 1.00206317e-02,
1.00000030e-02, 1.00000030e-02, 1.00000030e-02, 1.00000030e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99636432, 0.99636432, 0.99636432, 0.99636432, 0.99205876,
0.99205876, 0.99205876, 0.99205876, 0.98664933, 0.98664933,
0.98664933, 0.98664933, 0.97815371, 0.97815371, 0.97815371,
0.97815371, 0.9665772 , 0.9665772 , 0.9665772 , 0.9665772 ,
0.95164637, 0.95164637, 0.95164637, 0.95164637, 0.93362252,
0.93362252, 0.93362252, 0.93362252, 0.91299712, 0.91299712,
0.91299712, 0.91299712, 0.89041028, 0.89041028, 0.89041028,
0.89041028, 0.86647311, 0.86647311, 0.86647311, 0.86647311,
0.84164558, 0.84164558, 0.84164558, 0.84164558, 0.81642336,
0.81642336, 0.81642336, 0.81642336, 0.79148604, 0.79148604,
0.79148604, 0.79148604, 0.76710834, 0.76710834, 0.76710834,
0.76710834, 0.7434205 , 0.7434205 , 0.7434205 , 0.7434205 ,
0.72039324, 0.72039324, 0.72039324, 0.72039324, 0.69804488,
0.69804488, 0.69804488, 0.69804488, 0.67640665, 0.67640665,
0.67640665, 0.67640665, 0.65563302, 0.65563302, 0.65563302,
0.65563302, 0.63570432, 0.63570432, 0.63570432, 0.63570432,
0.61770755, 0.61770755, 0.61770755, 0.61770755, 0.60038962,
0.60038962, 0.60038962, 0.60038962, 0.58782557, 0.58782557,
0.58782557, 0.58782557, 0.57623676, 0.57623676, 0.57623676,
0.57623676, 0.56979185, 0.56979185, 0.56979185, 0.56979185,
0.56720324, 0.56720324, 0.56720324, 0.56720324, 0.56553241,
0.56553241, 0.56553241, 0.56553241, 0.56556965, 0.56556965,
0.56556965, 0.56556965, 0.56672103, 0.56672103, 0.56672103,
0.56672103, 0.56770851, 0.56770851, 0.56770851, 0.56770851,
0.56779669, 0.56779669, 0.56779669, 0.56779669, 0.56780547,
0.56780547, 0.56780547, 0.56780547, 0.56792996, 0.56792996,
0.56792996, 0.56792996, 0.56821566, 0.56821566, 0.56821566,
0.56821566, 0.5685916 , 0.5685916 , 0.5685916 , 0.5685916 ,
0.56888519, 0.56888519, 0.56888519, 0.56888519, 0.56910119,
0.56910119, 0.56910119, 0.56910119, 0.56936231, 0.56936231,
0.56936231, 0.56936231, 0.56991804, 0.56991804, 0.56991804,
0.56991804, 0.57182047, 0.57182047, 0.57182047, 0.57182047,
0.57885305, 0.57885305, 0.57885305, 0.57885305, 0.60219878,
0.60219878, 0.60219878, 0.60219878, 0.66890255, 0.66890255,
0.66890255, 0.66890255, 0.83282931, 0.83282931, 0.83282931,
0.83282931, 1.18191186, 1.18191186, 1.18191186, 1.18191186,
1.82871125, 1.82871125, 1.82871125, 1.82871125, 2.86090807,
2.86090807, 2.86090807, 2.86090807, 3.85054369, 3.85054369,
3.85054369, 3.85054369, 4.19989541, 4.19989541, 4.19989541,
4.19989541, 3.86486856, 3.86486856, 3.86486856, 3.86486856,
2.13052935, 2.13052935, 2.13052935, 2.13052935, 1.10421234,
1.10421234, 1.10421234, 1.10421234, 1.0046868 , 1.0046868 ,
1.0046868 , 1.0046868 , 1.00001224, 1.00001224, 1.00001224,
1.00001224, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.36253533e-01, 1.36253533e-01, 1.36253533e-01, 1.36253533e-01,
2.98133139e-01, 2.98133139e-01, 2.98133139e-01, 2.98133139e-01,
5.02180164e-01, 5.02180164e-01, 5.02180164e-01, 5.02180164e-01,
8.24685029e-01, 8.24685029e-01, 8.24685029e-01, 8.24685029e-01,
1.26777639e+00, 1.26777639e+00, 1.26777639e+00, 1.26777639e+00,
1.84570316e+00, 1.84570316e+00, 1.84570316e+00, 1.84570316e+00,
2.55320788e+00, 2.55320788e+00, 2.55320788e+00, 2.55320788e+00,
3.37646407e+00, 3.37646407e+00, 3.37646407e+00, 3.37646407e+00,
4.29528509e+00, 4.29528509e+00, 4.29528509e+00, 4.29528509e+00,
5.28957743e+00, 5.28957743e+00, 5.28957743e+00, 5.28957743e+00,
6.34426536e+00, 6.34426536e+00, 6.34426536e+00, 6.34426536e+00,
7.43855306e+00, 7.43855306e+00, 7.43855306e+00, 7.43855306e+00,
8.54650989e+00, 8.54650989e+00, 8.54650989e+00, 8.54650989e+00,
9.65778684e+00, 9.65778684e+00, 9.65778684e+00, 9.65778684e+00,
1.07675433e+01, 1.07675433e+01, 1.07675433e+01, 1.07675433e+01,
1.18732730e+01, 1.18732730e+01, 1.18732730e+01, 1.18732730e+01,
1.29739395e+01, 1.29739395e+01, 1.29739395e+01, 1.29739395e+01,
1.40664784e+01, 1.40664784e+01, 1.40664784e+01, 1.40664784e+01,
1.51440272e+01, 1.51440272e+01, 1.51440272e+01, 1.51440272e+01,
1.61942747e+01, 1.61942747e+01, 1.61942747e+01, 1.61942747e+01,
1.71943313e+01, 1.71943313e+01, 1.71943313e+01, 1.71943313e+01,
1.81102285e+01, 1.81102285e+01, 1.81102285e+01, 1.81102285e+01,
1.88935753e+01, 1.88935753e+01, 1.88935753e+01, 1.88935753e+01,
1.94958477e+01, 1.94958477e+01, 1.94958477e+01, 1.94958477e+01,
1.98864185e+01, 1.98864185e+01, 1.98864185e+01, 1.98864185e+01,
2.00798147e+01, 2.00798147e+01, 2.00798147e+01, 2.00798147e+01,
2.01365297e+01, 2.01365297e+01, 2.01365297e+01, 2.01365297e+01,
2.01309132e+01, 2.01309132e+01, 2.01309132e+01, 2.01309132e+01,
2.00684530e+01, 2.00684530e+01, 2.00684530e+01, 2.00684530e+01,
2.00289832e+01, 2.00289832e+01, 2.00289832e+01, 2.00289832e+01,
2.00117538e+01, 2.00117538e+01, 2.00117538e+01, 2.00117538e+01,
2.00007059e+01, 2.00007059e+01, 2.00007059e+01, 2.00007059e+01,
1.99899662e+01, 1.99899662e+01, 1.99899662e+01, 1.99899662e+01,
1.99747375e+01, 1.99747375e+01, 1.99747375e+01, 1.99747375e+01,
1.99513167e+01, 1.99513167e+01, 1.99513167e+01, 1.99513167e+01,
1.99258024e+01, 1.99258024e+01, 1.99258024e+01, 1.99258024e+01,
1.99020913e+01, 1.99020913e+01, 1.99020913e+01, 1.99020913e+01,
1.98796675e+01, 1.98796675e+01, 1.98796675e+01, 1.98796675e+01,
1.98594450e+01, 1.98594450e+01, 1.98594450e+01, 1.98594450e+01,
1.98414283e+01, 1.98414283e+01, 1.98414283e+01, 1.98414283e+01,
1.98245672e+01, 1.98245672e+01, 1.98245672e+01, 1.98245672e+01,
1.98089852e+01, 1.98089852e+01, 1.98089852e+01, 1.98089852e+01,
1.97956031e+01, 1.97956031e+01, 1.97956031e+01, 1.97956031e+01,
1.97837093e+01, 1.97837093e+01, 1.97837093e+01, 1.97837093e+01,
1.97755943e+01, 1.97755943e+01, 1.97755943e+01, 1.97755943e+01,
1.97672969e+01, 1.97672969e+01, 1.97672969e+01, 1.97672969e+01,
1.97336516e+01, 1.97336516e+01, 1.97336516e+01, 1.97336516e+01,
1.95824012e+01, 1.95824012e+01, 1.95824012e+01, 1.95824012e+01,
1.89016608e+01, 1.89016608e+01, 1.89016608e+01, 1.89016608e+01,
1.61684252e+01, 1.61684252e+01, 1.61684252e+01, 1.61684252e+01,
8.15698720e+00, 8.15698720e+00, 8.15698720e+00, 8.15698720e+00,
5.95654577e-01, 5.95654577e-01, 5.95654577e-01, 5.95654577e-01,
3.94968248e-03, 3.94968248e-03, 3.94968248e-03, 3.94968248e-03,
1.48333272e-06, 1.48333272e-06, 1.48333272e-06, 1.48333272e-06,
2.26392355e-10, 2.26392355e-10, 2.26392355e-10, 2.26392355e-10,
3.54863604e-14, 3.54863604e-14, 3.54863604e-14, 3.54863604e-14,
5.67765305e-18, 5.67765305e-18, 5.67765305e-18, 5.67765305e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.94915923e+02, 9.94915923e+02, 9.94915923e+02, 9.94915923e+02,
9.88901826e+02, 9.88901826e+02, 9.88901826e+02, 9.88901826e+02,
9.81366024e+02, 9.81366024e+02, 9.81366024e+02, 9.81366024e+02,
9.69562839e+02, 9.69562839e+02, 9.69562839e+02, 9.69562839e+02,
9.53547612e+02, 9.53547612e+02, 9.53547612e+02, 9.53547612e+02,
9.33005104e+02, 9.33005104e+02, 9.33005104e+02, 9.33005104e+02,
9.08377668e+02, 9.08377668e+02, 9.08377668e+02, 9.08377668e+02,
8.80425926e+02, 8.80425926e+02, 8.80425926e+02, 8.80425926e+02,
8.50101783e+02, 8.50101783e+02, 8.50101783e+02, 8.50101783e+02,
8.18296299e+02, 8.18296299e+02, 8.18296299e+02, 8.18296299e+02,
7.85675395e+02, 7.85675395e+02, 7.85675395e+02, 7.85675395e+02,
7.52902859e+02, 7.52902859e+02, 7.52902859e+02, 7.52902859e+02,
7.20897155e+02, 7.20897155e+02, 7.20897155e+02, 7.20897155e+02,
6.90007959e+02, 6.90007959e+02, 6.90007959e+02, 6.90007959e+02,
6.60368829e+02, 6.60368829e+02, 6.60368829e+02, 6.60368829e+02,
6.31916337e+02, 6.31916337e+02, 6.31916337e+02, 6.31916337e+02,
6.04645783e+02, 6.04645783e+02, 6.04645783e+02, 6.04645783e+02,
5.78584743e+02, 5.78584743e+02, 5.78584743e+02, 5.78584743e+02,
5.53823640e+02, 5.53823640e+02, 5.53823640e+02, 5.53823640e+02,
5.30581052e+02, 5.30581052e+02, 5.30581052e+02, 5.30581052e+02,
5.09216724e+02, 5.09216724e+02, 5.09216724e+02, 5.09216724e+02,
4.90322663e+02, 4.90322663e+02, 4.90322663e+02, 4.90322663e+02,
4.74628094e+02, 4.74628094e+02, 4.74628094e+02, 4.74628094e+02,
4.62859662e+02, 4.62859662e+02, 4.62859662e+02, 4.62859662e+02,
4.55372213e+02, 4.55372213e+02, 4.55372213e+02, 4.55372213e+02,
4.51700059e+02, 4.51700059e+02, 4.51700059e+02, 4.51700059e+02,
4.50624155e+02, 4.50624155e+02, 4.50624155e+02, 4.50624155e+02,
4.50729577e+02, 4.50729577e+02, 4.50729577e+02, 4.50729577e+02,
4.51910877e+02, 4.51910877e+02, 4.51910877e+02, 4.51910877e+02,
4.52662577e+02, 4.52662577e+02, 4.52662577e+02, 4.52662577e+02,
4.52987231e+02, 4.52987231e+02, 4.52987231e+02, 4.52987231e+02,
4.53194374e+02, 4.53194374e+02, 4.53194374e+02, 4.53194374e+02,
4.53400795e+02, 4.53400795e+02, 4.53400795e+02, 4.53400795e+02,
4.53694238e+02, 4.53694238e+02, 4.53694238e+02, 4.53694238e+02,
4.54143778e+02, 4.54143778e+02, 4.54143778e+02, 4.54143778e+02,
4.54633274e+02, 4.54633274e+02, 4.54633274e+02, 4.54633274e+02,
4.55075065e+02, 4.55075065e+02, 4.55075065e+02, 4.55075065e+02,
4.55489841e+02, 4.55489841e+02, 4.55489841e+02, 4.55489841e+02,
4.55884753e+02, 4.55884753e+02, 4.55884753e+02, 4.55884753e+02,
4.56250604e+02, 4.56250604e+02, 4.56250604e+02, 4.56250604e+02,
4.56569475e+02, 4.56569475e+02, 4.56569475e+02, 4.56569475e+02,
4.56850195e+02, 4.56850195e+02, 4.56850195e+02, 4.56850195e+02,
4.57127711e+02, 4.57127711e+02, 4.57127711e+02, 4.57127711e+02,
4.57412507e+02, 4.57412507e+02, 4.57412507e+02, 4.57412507e+02,
4.57820992e+02, 4.57820992e+02, 4.57820992e+02, 4.57820992e+02,
4.58356923e+02, 4.58356923e+02, 4.58356923e+02, 4.58356923e+02,
4.57913485e+02, 4.57913485e+02, 4.57913485e+02, 4.57913485e+02,
4.51520684e+02, 4.51520684e+02, 4.51520684e+02, 4.51520684e+02,
4.16998340e+02, 4.16998340e+02, 4.16998340e+02, 4.16998340e+02,
2.90460159e+02, 2.90460159e+02, 2.90460159e+02, 2.90460159e+02,
7.32958303e+01, 7.32958303e+01, 7.32958303e+01, 7.32958303e+01,
1.83484411e+00, 1.83484411e+00, 1.83484411e+00, 1.83484411e+00,
1.17220052e-02, 1.17220052e-02, 1.17220052e-02, 1.17220052e-02,
1.00001751e-02, 1.00001751e-02, 1.00001751e-02, 1.00001751e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99426946, 0.99426946, 0.99426946, 0.99426946, 0.98811149,
0.98811149, 0.98811149, 0.98811149, 0.98107232, 0.98107232,
0.98107232, 0.98107232, 0.97045921, 0.97045921, 0.97045921,
0.97045921, 0.95682737, 0.95682737, 0.95682737, 0.95682737,
0.94004521, 0.94004521, 0.94004521, 0.94004521, 0.92060887,
0.92060887, 0.92060887, 0.92060887, 0.89908557, 0.89908557,
0.89908557, 0.89908557, 0.87609083, 0.87609083, 0.87609083,
0.87609083, 0.85212027, 0.85212027, 0.85212027, 0.85212027,
0.82756445, 0.82756445, 0.82756445, 0.82756445, 0.80306007,
0.80306007, 0.80306007, 0.80306007, 0.77900808, 0.77900808,
0.77900808, 0.77900808, 0.75557607, 0.75557607, 0.75557607,
0.75557607, 0.73277632, 0.73277632, 0.73277632, 0.73277632,
0.71060835, 0.71060835, 0.71060835, 0.71060835, 0.68909145,
0.68909145, 0.68909145, 0.68909145, 0.66826654, 0.66826654,
0.66826654, 0.66826654, 0.64834169, 0.64834169, 0.64834169,
0.64834169, 0.62923142, 0.62923142, 0.62923142, 0.62923142,
0.61227339, 0.61227339, 0.61227339, 0.61227339, 0.5959292 ,
0.5959292 , 0.5959292 , 0.5959292 , 0.58448008, 0.58448008,
0.58448008, 0.58448008, 0.57434928, 0.57434928, 0.57434928,
0.57434928, 0.56859881, 0.56859881, 0.56859881, 0.56859881,
0.56684346, 0.56684346, 0.56684346, 0.56684346, 0.56569203,
0.56569203, 0.56569203, 0.56569203, 0.56583937, 0.56583937,
0.56583937, 0.56583937, 0.56683174, 0.56683174, 0.56683174,
0.56683174, 0.56774694, 0.56774694, 0.56774694, 0.56774694,
0.56791077, 0.56791077, 0.56791077, 0.56791077, 0.56792256,
0.56792256, 0.56792256, 0.56792256, 0.56800423, 0.56800423,
0.56800423, 0.56800423, 0.56828226, 0.56828226, 0.56828226,
0.56828226, 0.56872634, 0.56872634, 0.56872634, 0.56872634,
0.5690527 , 0.5690527 , 0.5690527 , 0.5690527 , 0.56926962,
0.56926962, 0.56926962, 0.56926962, 0.56949685, 0.56949685,
0.56949685, 0.56949685, 0.569897 , 0.569897 , 0.569897 ,
0.569897 , 0.57117768, 0.57117768, 0.57117768, 0.57117768,
0.57592859, 0.57592859, 0.57592859, 0.57592859, 0.59209704,
0.59209704, 0.59209704, 0.59209704, 0.63988261, 0.63988261,
0.63988261, 0.63988261, 0.76179894, 0.76179894, 0.76179894,
0.76179894, 1.03182564, 1.03182564, 1.03182564, 1.03182564,
1.55348275, 1.55348275, 1.55348275, 1.55348275, 2.43068895,
2.43068895, 2.43068895, 2.43068895, 3.55229101, 3.55229101,
3.55229101, 3.55229101, 4.16458528, 4.16458528, 4.16458528,
4.16458528, 4.1800089 , 4.1800089 , 4.1800089 , 4.1800089 ,
3.07676045, 3.07676045, 3.07676045, 3.07676045, 1.34520374,
1.34520374, 1.34520374, 1.34520374, 1.02204848, 1.02204848,
1.02204848, 1.02204848, 1.00037232, 1.00037232, 1.00037232,
1.00037232, 1.00000011, 1.00000011, 1.00000011, 1.00000011,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.14957957e-01, 2.14957957e-01, 2.14957957e-01, 2.14957957e-01,
4.47108627e-01, 4.47108627e-01, 4.47108627e-01, 4.47108627e-01,
7.13561081e-01, 7.13561081e-01, 7.13561081e-01, 7.13561081e-01,
1.11872396e+00, 1.11872396e+00, 1.11872396e+00, 1.11872396e+00,
1.64431395e+00, 1.64431395e+00, 1.64431395e+00, 1.64431395e+00,
2.29983169e+00, 2.29983169e+00, 2.29983169e+00, 2.29983169e+00,
3.07089753e+00, 3.07089753e+00, 3.07089753e+00, 3.07089753e+00,
3.94015044e+00, 3.94015044e+00, 3.94015044e+00, 3.94015044e+00,
4.88739659e+00, 4.88739659e+00, 4.88739659e+00, 4.88739659e+00,
5.89618557e+00, 5.89618557e+00, 5.89618557e+00, 5.89618557e+00,
6.95255343e+00, 6.95255343e+00, 6.95255343e+00, 6.95255343e+00,
8.02806459e+00, 8.02806459e+00, 8.02806459e+00, 8.02806459e+00,
9.11164658e+00, 9.11164658e+00, 9.11164658e+00, 9.11164658e+00,
1.01949310e+01, 1.01949310e+01, 1.01949310e+01, 1.01949310e+01,
1.12753220e+01, 1.12753220e+01, 1.12753220e+01, 1.12753220e+01,
1.23519886e+01, 1.23519886e+01, 1.23519886e+01, 1.23519886e+01,
1.34230468e+01, 1.34230468e+01, 1.34230468e+01, 1.34230468e+01,
1.44847959e+01, 1.44847959e+01, 1.44847959e+01, 1.44847959e+01,
1.55291038e+01, 1.55291038e+01, 1.55291038e+01, 1.55291038e+01,
1.65418026e+01, 1.65418026e+01, 1.65418026e+01, 1.65418026e+01,
1.74975626e+01, 1.74975626e+01, 1.74975626e+01, 1.74975626e+01,
1.83602647e+01, 1.83602647e+01, 1.83602647e+01, 1.83602647e+01,
1.90815134e+01, 1.90815134e+01, 1.90815134e+01, 1.90815134e+01,
1.96172465e+01, 1.96172465e+01, 1.96172465e+01, 1.96172465e+01,
1.99474835e+01, 1.99474835e+01, 1.99474835e+01, 1.99474835e+01,
2.00981416e+01, 2.00981416e+01, 2.00981416e+01, 2.00981416e+01,
2.01352473e+01, 2.01352473e+01, 2.01352473e+01, 2.01352473e+01,
2.01181972e+01, 2.01181972e+01, 2.01181972e+01, 2.01181972e+01,
2.00565244e+01, 2.00565244e+01, 2.00565244e+01, 2.00565244e+01,
2.00240733e+01, 2.00240733e+01, 2.00240733e+01, 2.00240733e+01,
2.00089626e+01, 2.00089626e+01, 2.00089626e+01, 2.00089626e+01,
1.99979297e+01, 1.99979297e+01, 1.99979297e+01, 1.99979297e+01,
1.99863891e+01, 1.99863891e+01, 1.99863891e+01, 1.99863891e+01,
1.99693717e+01, 1.99693717e+01, 1.99693717e+01, 1.99693717e+01,
1.99445026e+01, 1.99445026e+01, 1.99445026e+01, 1.99445026e+01,
1.99195116e+01, 1.99195116e+01, 1.99195116e+01, 1.99195116e+01,
1.98964046e+01, 1.98964046e+01, 1.98964046e+01, 1.98964046e+01,
1.98743565e+01, 1.98743565e+01, 1.98743565e+01, 1.98743565e+01,
1.98541585e+01, 1.98541585e+01, 1.98541585e+01, 1.98541585e+01,
1.98364920e+01, 1.98364920e+01, 1.98364920e+01, 1.98364920e+01,
1.98206754e+01, 1.98206754e+01, 1.98206754e+01, 1.98206754e+01,
1.98057571e+01, 1.98057571e+01, 1.98057571e+01, 1.98057571e+01,
1.97923828e+01, 1.97923828e+01, 1.97923828e+01, 1.97923828e+01,
1.97808552e+01, 1.97808552e+01, 1.97808552e+01, 1.97808552e+01,
1.97709468e+01, 1.97709468e+01, 1.97709468e+01, 1.97709468e+01,
1.97654812e+01, 1.97654812e+01, 1.97654812e+01, 1.97654812e+01,
1.97477731e+01, 1.97477731e+01, 1.97477731e+01, 1.97477731e+01,
1.96722020e+01, 1.96722020e+01, 1.96722020e+01, 1.96722020e+01,
1.93272540e+01, 1.93272540e+01, 1.93272540e+01, 1.93272540e+01,
1.78485419e+01, 1.78485419e+01, 1.78485419e+01, 1.78485419e+01,
1.26228462e+01, 1.26228462e+01, 1.26228462e+01, 1.26228462e+01,
2.71270096e+00, 2.71270096e+00, 2.71270096e+00, 2.71270096e+00,
5.37681970e-02, 5.37681970e-02, 5.37681970e-02, 5.37681970e-02,
7.39978310e-05, 7.39978310e-05, 7.39978310e-05, 7.39978310e-05,
1.26879911e-08, 1.26879911e-08, 1.26879911e-08, 1.26879911e-08,
2.06933606e-12, 2.06933606e-12, 2.06933606e-12, 2.06933606e-12,
3.25161787e-16, 3.25161787e-16, 3.25161787e-16, 3.25161787e-16,
5.40240794e-20, 5.40240794e-20, 5.40240794e-20, 5.40240794e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.91991427e+02, 9.91991427e+02, 9.91991427e+02, 9.91991427e+02,
9.83398788e+02, 9.83398788e+02, 9.83398788e+02, 9.83398788e+02,
9.73613696e+02, 9.73613696e+02, 9.73613696e+02, 9.73613696e+02,
9.58908504e+02, 9.58908504e+02, 9.58908504e+02, 9.58908504e+02,
9.40117970e+02, 9.40117970e+02, 9.40117970e+02, 9.40117970e+02,
9.17130377e+02, 9.17130377e+02, 9.17130377e+02, 9.17130377e+02,
8.90710253e+02, 8.90710253e+02, 8.90710253e+02, 8.90710253e+02,
8.61710068e+02, 8.61710068e+02, 8.61710068e+02, 8.61710068e+02,
8.31030081e+02, 8.31030081e+02, 8.31030081e+02, 8.31030081e+02,
7.99387307e+02, 7.99387307e+02, 7.99387307e+02, 7.99387307e+02,
7.67330949e+02, 7.67330949e+02, 7.67330949e+02, 7.67330949e+02,
7.35690337e+02, 7.35690337e+02, 7.35690337e+02, 7.35690337e+02,
7.05034804e+02, 7.05034804e+02, 7.05034804e+02, 7.05034804e+02,
6.75527261e+02, 6.75527261e+02, 6.75527261e+02, 6.75527261e+02,
6.47167439e+02, 6.47167439e+02, 6.47167439e+02, 6.47167439e+02,
6.19930743e+02, 6.19930743e+02, 6.19930743e+02, 6.19930743e+02,
5.93813015e+02, 5.93813015e+02, 5.93813015e+02, 5.93813015e+02,
5.68863894e+02, 5.68863894e+02, 5.68863894e+02, 5.68863894e+02,
5.45199993e+02, 5.45199993e+02, 5.45199993e+02, 5.45199993e+02,
5.23075190e+02, 5.23075190e+02, 5.23075190e+02, 5.23075190e+02,
5.02889600e+02, 5.02889600e+02, 5.02889600e+02, 5.02889600e+02,
4.85266432e+02, 4.85266432e+02, 4.85266432e+02, 4.85266432e+02,
4.70932260e+02, 4.70932260e+02, 4.70932260e+02, 4.70932260e+02,
4.60518670e+02, 4.60518670e+02, 4.60518670e+02, 4.60518670e+02,
4.54205957e+02, 4.54205957e+02, 4.54205957e+02, 4.54205957e+02,
4.51352380e+02, 4.51352380e+02, 4.51352380e+02, 4.51352380e+02,
4.50649917e+02, 4.50649917e+02, 4.50649917e+02, 4.50649917e+02,
4.50971173e+02, 4.50971173e+02, 4.50971173e+02, 4.50971173e+02,
4.52135940e+02, 4.52135940e+02, 4.52135940e+02, 4.52135940e+02,
4.52753679e+02, 4.52753679e+02, 4.52753679e+02, 4.52753679e+02,
4.53041751e+02, 4.53041751e+02, 4.53041751e+02, 4.53041751e+02,
4.53249156e+02, 4.53249156e+02, 4.53249156e+02, 4.53249156e+02,
4.53466954e+02, 4.53466954e+02, 4.53466954e+02, 4.53466954e+02,
4.53791825e+02, 4.53791825e+02, 4.53791825e+02, 4.53791825e+02,
4.54268545e+02, 4.54268545e+02, 4.54268545e+02, 4.54268545e+02,
4.54750752e+02, 4.54750752e+02, 4.54750752e+02, 4.54750752e+02,
4.55192196e+02, 4.55192196e+02, 4.55192196e+02, 4.55192196e+02,
4.55599122e+02, 4.55599122e+02, 4.55599122e+02, 4.55599122e+02,
4.55975922e+02, 4.55975922e+02, 4.55975922e+02, 4.55975922e+02,
4.56329221e+02, 4.56329221e+02, 4.56329221e+02, 4.56329221e+02,
4.56648137e+02, 4.56648137e+02, 4.56648137e+02, 4.56648137e+02,
4.56923106e+02, 4.56923106e+02, 4.56923106e+02, 4.56923106e+02,
4.57181465e+02, 4.57181465e+02, 4.57181465e+02, 4.57181465e+02,
4.57438180e+02, 4.57438180e+02, 4.57438180e+02, 4.57438180e+02,
4.57763252e+02, 4.57763252e+02, 4.57763252e+02, 4.57763252e+02,
4.58282193e+02, 4.58282193e+02, 4.58282193e+02, 4.58282193e+02,
4.58443493e+02, 4.58443493e+02, 4.58443493e+02, 4.58443493e+02,
4.55958160e+02, 4.55958160e+02, 4.55958160e+02, 4.55958160e+02,
4.38959204e+02, 4.38959204e+02, 4.38959204e+02, 4.38959204e+02,
3.65073159e+02, 3.65073159e+02, 3.65073159e+02, 3.65073159e+02,
1.68405632e+02, 1.68405632e+02, 1.68405632e+02, 1.68405632e+02,
1.44222649e+01, 1.44222649e+01, 1.44222649e+01, 1.44222649e+01,
7.69577756e-02, 7.69577756e-02, 7.69577756e-02, 7.69577756e-02,
1.00097351e-02, 1.00097351e-02, 1.00097351e-02, 1.00097351e-02,
1.00000015e-02, 1.00000015e-02, 1.00000015e-02, 1.00000015e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99133911, 0.99133911, 0.99133911, 0.99133911, 0.98292058,
0.98292058, 0.98292058, 0.98292058, 0.97419061, 0.97419061,
0.97419061, 0.97419061, 0.96144618, 0.96144618, 0.96144618,
0.96144618, 0.94597586, 0.94597586, 0.94597586, 0.94597586,
0.9276744 , 0.9276744 , 0.9276744 , 0.9276744 , 0.90721706,
0.90721706, 0.90721706, 0.90721706, 0.88515443, 0.88515443,
0.88515443, 0.88515443, 0.86202321, 0.86202321, 0.86202321,
0.86202321, 0.83819213, 0.83819213, 0.83819213, 0.83819213,
0.8141677 , 0.8141677 , 0.8141677 , 0.8141677 , 0.79048162,
0.79048162, 0.79048162, 0.79048162, 0.76730128, 0.76730128,
0.76730128, 0.76730128, 0.74474398, 0.74474398, 0.74474398,
0.74474398, 0.72277684, 0.72277684, 0.72277684, 0.72277684,
0.70140995, 0.70140995, 0.70140995, 0.70140995, 0.68067678,
0.68067678, 0.68067678, 0.68067678, 0.66062128, 0.66062128,
0.66062128, 0.66062128, 0.64151926, 0.64151926, 0.64151926,
0.64151926, 0.62319637, 0.62319637, 0.62319637, 0.62319637,
0.60726225, 0.60726225, 0.60726225, 0.60726225, 0.59190903,
0.59190903, 0.59190903, 0.59190903, 0.58148652, 0.58148652,
0.58148652, 0.58148652, 0.57278527, 0.57278527, 0.57278527,
0.57278527, 0.56769271, 0.56769271, 0.56769271, 0.56769271,
0.56654927, 0.56654927, 0.56654927, 0.56654927, 0.56583728,
0.56583728, 0.56583728, 0.56583728, 0.56616565, 0.56616565,
0.56616565, 0.56616565, 0.56694844, 0.56694844, 0.56694844,
0.56694844, 0.56774994, 0.56774994, 0.56774994, 0.56774994,
0.56799881, 0.56799881, 0.56799881, 0.56799881, 0.56803723,
0.56803723, 0.56803723, 0.56803723, 0.56811091, 0.56811091,
0.56811091, 0.56811091, 0.56837366, 0.56837366, 0.56837366,
0.56837366, 0.56883911, 0.56883911, 0.56883911, 0.56883911,
0.56920333, 0.56920333, 0.56920333, 0.56920333, 0.56943051,
0.56943051, 0.56943051, 0.56943051, 0.56964182, 0.56964182,
0.56964182, 0.56964182, 0.56994366, 0.56994366, 0.56994366,
0.56994366, 0.57080637, 0.57080637, 0.57080637, 0.57080637,
0.57400236, 0.57400236, 0.57400236, 0.57400236, 0.58513972,
0.58513972, 0.58513972, 0.58513972, 0.61910673, 0.61910673,
0.61910673, 0.61910673, 0.70892127, 0.70892127, 0.70892127,
0.70892127, 0.91548374, 0.91548374, 0.91548374, 0.91548374,
1.33078894, 1.33078894, 1.33078894, 1.33078894, 2.06133491,
2.06133491, 2.06133491, 2.06133491, 3.15181689, 3.15181689,
3.15181689, 3.15181689, 4.02701618, 4.02701618, 4.02701618,
4.02701618, 4.28308718, 4.28308718, 4.28308718, 4.28308718,
3.81910697, 3.81910697, 3.81910697, 3.81910697, 1.98110507,
1.98110507, 1.98110507, 1.98110507, 1.08418873, 1.08418873,
1.08418873, 1.08418873, 1.00343534, 1.00343534, 1.00343534,
1.00343534, 1.00000606, 1.00000606, 1.00000606, 1.00000606,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.25290090e-01, 3.25290090e-01, 3.25290090e-01, 3.25290090e-01,
6.43847125e-01, 6.43847125e-01, 6.43847125e-01, 6.43847125e-01,
9.75722154e-01, 9.75722154e-01, 9.75722154e-01, 9.75722154e-01,
1.46557297e+00, 1.46557297e+00, 1.46557297e+00, 1.46557297e+00,
2.06705518e+00, 2.06705518e+00, 2.06705518e+00, 2.06705518e+00,
2.78907819e+00, 2.78907819e+00, 2.78907819e+00, 2.78907819e+00,
3.60976834e+00, 3.60976834e+00, 3.60976834e+00, 3.60976834e+00,
4.51162281e+00, 4.51162281e+00, 4.51162281e+00, 4.51162281e+00,
5.47661724e+00, 5.47661724e+00, 5.47661724e+00, 5.47661724e+00,
6.49264130e+00, 6.49264130e+00, 6.49264130e+00, 6.49264130e+00,
7.53660887e+00, 7.53660887e+00, 7.53660887e+00, 7.53660887e+00,
8.59198431e+00, 8.59198431e+00, 8.59198431e+00, 8.59198431e+00,
9.64916487e+00, 9.64916487e+00, 9.64916487e+00, 9.64916487e+00,
1.07051453e+01, 1.07051453e+01, 1.07051453e+01, 1.07051453e+01,
1.17579310e+01, 1.17579310e+01, 1.17579310e+01, 1.17579310e+01,
1.28067954e+01, 1.28067954e+01, 1.28067954e+01, 1.28067954e+01,
1.38494448e+01, 1.38494448e+01, 1.38494448e+01, 1.38494448e+01,
1.48812924e+01, 1.48812924e+01, 1.48812924e+01, 1.48812924e+01,
1.58928454e+01, 1.58928454e+01, 1.58928454e+01, 1.58928454e+01,
1.68680207e+01, 1.68680207e+01, 1.68680207e+01, 1.68680207e+01,
1.77790951e+01, 1.77790951e+01, 1.77790951e+01, 1.77790951e+01,
1.85881715e+01, 1.85881715e+01, 1.85881715e+01, 1.85881715e+01,
1.92479302e+01, 1.92479302e+01, 1.92479302e+01, 1.92479302e+01,
1.97200343e+01, 1.97200343e+01, 1.97200343e+01, 1.97200343e+01,
1.99952626e+01, 1.99952626e+01, 1.99952626e+01, 1.99952626e+01,
2.01098122e+01, 2.01098122e+01, 2.01098122e+01, 2.01098122e+01,
2.01323555e+01, 2.01323555e+01, 2.01323555e+01, 2.01323555e+01,
2.01039208e+01, 2.01039208e+01, 2.01039208e+01, 2.01039208e+01,
2.00468661e+01, 2.00468661e+01, 2.00468661e+01, 2.00468661e+01,
2.00198405e+01, 2.00198405e+01, 2.00198405e+01, 2.00198405e+01,
2.00061051e+01, 2.00061051e+01, 2.00061051e+01, 2.00061051e+01,
1.99950115e+01, 1.99950115e+01, 1.99950115e+01, 1.99950115e+01,
1.99825634e+01, 1.99825634e+01, 1.99825634e+01, 1.99825634e+01,
1.99636417e+01, 1.99636417e+01, 1.99636417e+01, 1.99636417e+01,
1.99376749e+01, 1.99376749e+01, 1.99376749e+01, 1.99376749e+01,
1.99131873e+01, 1.99131873e+01, 1.99131873e+01, 1.99131873e+01,
1.98905974e+01, 1.98905974e+01, 1.98905974e+01, 1.98905974e+01,
1.98692438e+01, 1.98692438e+01, 1.98692438e+01, 1.98692438e+01,
1.98493625e+01, 1.98493625e+01, 1.98493625e+01, 1.98493625e+01,
1.98317370e+01, 1.98317370e+01, 1.98317370e+01, 1.98317370e+01,
1.98164911e+01, 1.98164911e+01, 1.98164911e+01, 1.98164911e+01,
1.98024735e+01, 1.98024735e+01, 1.98024735e+01, 1.98024735e+01,
1.97894710e+01, 1.97894710e+01, 1.97894710e+01, 1.97894710e+01,
1.97780897e+01, 1.97780897e+01, 1.97780897e+01, 1.97780897e+01,
1.97674568e+01, 1.97674568e+01, 1.97674568e+01, 1.97674568e+01,
1.97612054e+01, 1.97612054e+01, 1.97612054e+01, 1.97612054e+01,
1.97524408e+01, 1.97524408e+01, 1.97524408e+01, 1.97524408e+01,
1.97136422e+01, 1.97136422e+01, 1.97136422e+01, 1.97136422e+01,
1.95403967e+01, 1.95403967e+01, 1.95403967e+01, 1.95403967e+01,
1.87695037e+01, 1.87695037e+01, 1.87695037e+01, 1.87695037e+01,
1.57483105e+01, 1.57483105e+01, 1.57483105e+01, 1.57483105e+01,
7.26747736e+00, 7.26747736e+00, 7.26747736e+00, 7.26747736e+00,
4.38929043e-01, 4.38929043e-01, 4.38929043e-01, 4.38929043e-01,
2.34025635e-03, 2.34025635e-03, 2.34025635e-03, 2.34025635e-03,
7.25432818e-07, 7.25432818e-07, 7.25432818e-07, 7.25432818e-07,
1.11193400e-10, 1.11193400e-10, 1.11193400e-10, 1.11193400e-10,
1.76869480e-14, 1.76869480e-14, 1.76869480e-14, 1.76869480e-14,
2.85535124e-18, 2.85535124e-18, 2.85535124e-18, 2.85535124e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87906280e+02, 9.87906280e+02, 9.87906280e+02, 9.87906280e+02,
9.76174941e+02, 9.76174941e+02, 9.76174941e+02, 9.76174941e+02,
9.64072771e+02, 9.64072771e+02, 9.64072771e+02, 9.64072771e+02,
9.46471139e+02, 9.46471139e+02, 9.46471139e+02, 9.46471139e+02,
9.25234369e+02, 9.25234369e+02, 9.25234369e+02, 9.25234369e+02,
9.00287177e+02, 9.00287177e+02, 9.00287177e+02, 9.00287177e+02,
8.72631649e+02, 8.72631649e+02, 8.72631649e+02, 8.72631649e+02,
8.43081763e+02, 8.43081763e+02, 8.43081763e+02, 8.43081763e+02,
8.12413334e+02, 8.12413334e+02, 8.12413334e+02, 8.12413334e+02,
7.81158038e+02, 7.81158038e+02, 7.81158038e+02, 7.81158038e+02,
7.49976361e+02, 7.49976361e+02, 7.49976361e+02, 7.49976361e+02,
7.19607955e+02, 7.19607955e+02, 7.19607955e+02, 7.19607955e+02,
6.90244348e+02, 6.90244348e+02, 6.90244348e+02, 6.90244348e+02,
6.62006070e+02, 6.62006070e+02, 6.62006070e+02, 6.62006070e+02,
6.34835316e+02, 6.34835316e+02, 6.34835316e+02, 6.34835316e+02,
6.08723776e+02, 6.08723776e+02, 6.08723776e+02, 6.08723776e+02,
5.83682527e+02, 5.83682527e+02, 5.83682527e+02, 5.83682527e+02,
5.59779886e+02, 5.59779886e+02, 5.59779886e+02, 5.59779886e+02,
5.37159931e+02, 5.37159931e+02, 5.37159931e+02, 5.37159931e+02,
5.16112600e+02, 5.16112600e+02, 5.16112600e+02, 5.16112600e+02,
4.97076250e+02, 4.97076250e+02, 4.97076250e+02, 4.97076250e+02,
4.80695875e+02, 4.80695875e+02, 4.80695875e+02, 4.80695875e+02,
4.67679348e+02, 4.67679348e+02, 4.67679348e+02, 4.67679348e+02,
4.58546259e+02, 4.58546259e+02, 4.58546259e+02, 4.58546259e+02,
4.53296009e+02, 4.53296009e+02, 4.53296009e+02, 4.53296009e+02,
4.51129021e+02, 4.51129021e+02, 4.51129021e+02, 4.51129021e+02,
4.50704444e+02, 4.50704444e+02, 4.50704444e+02, 4.50704444e+02,
4.51242012e+02, 4.51242012e+02, 4.51242012e+02, 4.51242012e+02,
4.52320289e+02, 4.52320289e+02, 4.52320289e+02, 4.52320289e+02,
4.52832280e+02, 4.52832280e+02, 4.52832280e+02, 4.52832280e+02,
4.53095183e+02, 4.53095183e+02, 4.53095183e+02, 4.53095183e+02,
4.53305822e+02, 4.53305822e+02, 4.53305822e+02, 4.53305822e+02,
4.53541196e+02, 4.53541196e+02, 4.53541196e+02, 4.53541196e+02,
4.53899663e+02, 4.53899663e+02, 4.53899663e+02, 4.53899663e+02,
4.54393535e+02, 4.54393535e+02, 4.54393535e+02, 4.54393535e+02,
4.54864936e+02, 4.54864936e+02, 4.54864936e+02, 4.54864936e+02,
4.55303481e+02, 4.55303481e+02, 4.55303481e+02, 4.55303481e+02,
4.55707477e+02, 4.55707477e+02, 4.55707477e+02, 4.55707477e+02,
4.56071530e+02, 4.56071530e+02, 4.56071530e+02, 4.56071530e+02,
4.56406325e+02, 4.56406325e+02, 4.56406325e+02, 4.56406325e+02,
4.56717719e+02, 4.56717719e+02, 4.56717719e+02, 4.56717719e+02,
4.56992693e+02, 4.56992693e+02, 4.56992693e+02, 4.56992693e+02,
4.57237821e+02, 4.57237821e+02, 4.57237821e+02, 4.57237821e+02,
4.57481191e+02, 4.57481191e+02, 4.57481191e+02, 4.57481191e+02,
4.57744387e+02, 4.57744387e+02, 4.57744387e+02, 4.57744387e+02,
4.58159054e+02, 4.58159054e+02, 4.58159054e+02, 4.58159054e+02,
4.58594305e+02, 4.58594305e+02, 4.58594305e+02, 4.58594305e+02,
4.57858557e+02, 4.57858557e+02, 4.57858557e+02, 4.57858557e+02,
4.50044024e+02, 4.50044024e+02, 4.50044024e+02, 4.50044024e+02,
4.10501297e+02, 4.10501297e+02, 4.10501297e+02, 4.10501297e+02,
2.72947363e+02, 2.72947363e+02, 2.72947363e+02, 2.72947363e+02,
6.00463556e+01, 6.00463556e+01, 6.00463556e+01, 6.00463556e+01,
1.21367312e+00, 1.21367312e+00, 1.21367312e+00, 1.21367312e+00,
1.08313285e-02, 1.08313285e-02, 1.08313285e-02, 1.08313285e-02,
1.00000857e-02, 1.00000857e-02, 1.00000857e-02, 1.00000857e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}]}
minmod_rusanov
{'none_hll': [{'rho': array([0.96262329, 0.96262329, 0.96262329, 0.96262329, 0.95292015,
0.95292015, 0.95292015, 0.95292015, 0.94187655, 0.94187655,
0.94187655, 0.94187655, 0.92958523, 0.92958523, 0.92958523,
0.92958523, 0.91614889, 0.91614889, 0.91614889, 0.91614889,
0.9016891 , 0.9016891 , 0.9016891 , 0.9016891 , 0.88633863,
0.88633863, 0.88633863, 0.88633863, 0.87023469, 0.87023469,
0.87023469, 0.87023469, 0.85351349, 0.85351349, 0.85351349,
0.85351349, 0.8363065 , 0.8363065 , 0.8363065 , 0.8363065 ,
0.81873804, 0.81873804, 0.81873804, 0.81873804, 0.80092415,
0.80092415, 0.80092415, 0.80092415, 0.78297243, 0.78297243,
0.78297243, 0.78297243, 0.76498267, 0.76498267, 0.76498267,
0.76498267, 0.74704803, 0.74704803, 0.74704803, 0.74704803,
0.72925675, 0.72925675, 0.72925675, 0.72925675, 0.71169435,
0.71169435, 0.71169435, 0.71169435, 0.69444628, 0.69444628,
0.69444628, 0.69444628, 0.6776013 , 0.6776013 , 0.6776013 ,
0.6776013 , 0.66125559, 0.66125559, 0.66125559, 0.66125559,
0.64551785, 0.64551785, 0.64551785, 0.64551785, 0.63051555,
0.63051555, 0.63051555, 0.63051555, 0.61640212, 0.61640212,
0.61640212, 0.61640212, 0.6033641 , 0.6033641 , 0.6033641 ,
0.6033641 , 0.59162547, 0.59162547, 0.59162547, 0.59162547,
0.58144321, 0.58144321, 0.58144321, 0.58144321, 0.57308387,
0.57308387, 0.57308387, 0.57308387, 0.5667695 , 0.5667695 ,
0.5667695 , 0.5667695 , 0.56259223, 0.56259223, 0.56259223,
0.56259223, 0.5604295 , 0.5604295 , 0.5604295 , 0.5604295 ,
0.55993197, 0.55993197, 0.55993197, 0.55993197, 0.56064241,
0.56064241, 0.56064241, 0.56064241, 0.56220257, 0.56220257,
0.56220257, 0.56220257, 0.56453573, 0.56453573, 0.56453573,
0.56453573, 0.56792111, 0.56792111, 0.56792111, 0.56792111,
0.57302161, 0.57302161, 0.57302161, 0.57302161, 0.58094766,
0.58094766, 0.58094766, 0.58094766, 0.59338194, 0.59338194,
0.59338194, 0.59338194, 0.61278127, 0.61278127, 0.61278127,
0.61278127, 0.64267222, 0.64267222, 0.64267222, 0.64267222,
0.68810064, 0.68810064, 0.68810064, 0.68810064, 0.75635209,
0.75635209, 0.75635209, 0.75635209, 0.85813623, 0.85813623,
0.85813623, 0.85813623, 1.00951022, 1.00951022, 1.00951022,
1.00951022, 1.23478014, 1.23478014, 1.23478014, 1.23478014,
1.57016034, 1.57016034, 1.57016034, 1.57016034, 2.02902941,
2.02902941, 2.02902941, 2.02902941, 2.54214966, 2.54214966,
2.54214966, 2.54214966, 3.0202242 , 3.0202242 , 3.0202242 ,
3.0202242 , 3.31178259, 3.31178259, 3.31178259, 3.31178259,
3.22437971, 3.22437971, 3.22437971, 3.22437971, 2.65275743,
2.65275743, 2.65275743, 2.65275743, 1.80505429, 1.80505429,
1.80505429, 1.80505429, 1.19452145, 1.19452145, 1.19452145,
1.19452145, 1.01387818, 1.01387818, 1.01387818, 1.01387818,
1.0001771 , 1.0001771 , 1.0001771 , 1.0001771 , 1.00000035,
1.00000035, 1.00000035, 1.00000035, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.41419412e+00, 1.41419412e+00, 1.41419412e+00, 1.41419412e+00,
1.78883739e+00, 1.78883739e+00, 1.78883739e+00, 1.78883739e+00,
2.21825857e+00, 2.21825857e+00, 2.21825857e+00, 2.21825857e+00,
2.70047651e+00, 2.70047651e+00, 2.70047651e+00, 2.70047651e+00,
3.23311666e+00, 3.23311666e+00, 3.23311666e+00, 3.23311666e+00,
3.81304395e+00, 3.81304395e+00, 3.81304395e+00, 3.81304395e+00,
4.43661839e+00, 4.43661839e+00, 4.43661839e+00, 4.43661839e+00,
5.09991584e+00, 5.09991584e+00, 5.09991584e+00, 5.09991584e+00,
5.79890026e+00, 5.79890026e+00, 5.79890026e+00, 5.79890026e+00,
6.52954505e+00, 6.52954505e+00, 6.52954505e+00, 6.52954505e+00,
7.28790743e+00, 7.28790743e+00, 7.28790743e+00, 7.28790743e+00,
8.07016183e+00, 8.07016183e+00, 8.07016183e+00, 8.07016183e+00,
8.87259884e+00, 8.87259884e+00, 8.87259884e+00, 8.87259884e+00,
9.69159468e+00, 9.69159468e+00, 9.69159468e+00, 9.69159468e+00,
1.05235545e+01, 1.05235545e+01, 1.05235545e+01, 1.05235545e+01,
1.13648293e+01, 1.13648293e+01, 1.13648293e+01, 1.13648293e+01,
1.22116044e+01, 1.22116044e+01, 1.22116044e+01, 1.22116044e+01,
1.30597527e+01, 1.30597527e+01, 1.30597527e+01, 1.30597527e+01,
1.39046431e+01, 1.39046431e+01, 1.39046431e+01, 1.39046431e+01,
1.47408898e+01, 1.47408898e+01, 1.47408898e+01, 1.47408898e+01,
1.55620288e+01, 1.55620288e+01, 1.55620288e+01, 1.55620288e+01,
1.63601078e+01, 1.63601078e+01, 1.63601078e+01, 1.63601078e+01,
1.71251997e+01, 1.71251997e+01, 1.71251997e+01, 1.71251997e+01,
1.78448993e+01, 1.78448993e+01, 1.78448993e+01, 1.78448993e+01,
1.85039895e+01, 1.85039895e+01, 1.85039895e+01, 1.85039895e+01,
1.90846801e+01, 1.90846801e+01, 1.90846801e+01, 1.90846801e+01,
1.95681279e+01, 1.95681279e+01, 1.95681279e+01, 1.95681279e+01,
1.99380647e+01, 1.99380647e+01, 1.99380647e+01, 1.99380647e+01,
2.01866601e+01, 2.01866601e+01, 2.01866601e+01, 2.01866601e+01,
2.03205654e+01, 2.03205654e+01, 2.03205654e+01, 2.03205654e+01,
2.03625340e+01, 2.03625340e+01, 2.03625340e+01, 2.03625340e+01,
2.03450671e+01, 2.03450671e+01, 2.03450671e+01, 2.03450671e+01,
2.02991317e+01, 2.02991317e+01, 2.02991317e+01, 2.02991317e+01,
2.02456046e+01, 2.02456046e+01, 2.02456046e+01, 2.02456046e+01,
2.01946657e+01, 2.01946657e+01, 2.01946657e+01, 2.01946657e+01,
2.01495851e+01, 2.01495851e+01, 2.01495851e+01, 2.01495851e+01,
2.01104796e+01, 2.01104796e+01, 2.01104796e+01, 2.01104796e+01,
2.00765652e+01, 2.00765652e+01, 2.00765652e+01, 2.00765652e+01,
2.00469486e+01, 2.00469486e+01, 2.00469486e+01, 2.00469486e+01,
2.00208526e+01, 2.00208526e+01, 2.00208526e+01, 2.00208526e+01,
1.99976473e+01, 1.99976473e+01, 1.99976473e+01, 1.99976473e+01,
1.99768232e+01, 1.99768232e+01, 1.99768232e+01, 1.99768232e+01,
1.99579134e+01, 1.99579134e+01, 1.99579134e+01, 1.99579134e+01,
1.99401110e+01, 1.99401110e+01, 1.99401110e+01, 1.99401110e+01,
1.99203376e+01, 1.99203376e+01, 1.99203376e+01, 1.99203376e+01,
1.98860888e+01, 1.98860888e+01, 1.98860888e+01, 1.98860888e+01,
1.98001469e+01, 1.98001469e+01, 1.98001469e+01, 1.98001469e+01,
1.95757462e+01, 1.95757462e+01, 1.95757462e+01, 1.95757462e+01,
1.90484237e+01, 1.90484237e+01, 1.90484237e+01, 1.90484237e+01,
1.79421767e+01, 1.79421767e+01, 1.79421767e+01, 1.79421767e+01,
1.58163176e+01, 1.58163176e+01, 1.58163176e+01, 1.58163176e+01,
1.20498338e+01, 1.20498338e+01, 1.20498338e+01, 1.20498338e+01,
6.43761226e+00, 6.43761226e+00, 6.43761226e+00, 6.43761226e+00,
1.39778927e+00, 1.39778927e+00, 1.39778927e+00, 1.39778927e+00,
5.17644049e-02, 5.17644049e-02, 5.17644049e-02, 5.17644049e-02,
1.82914635e-04, 1.82914635e-04, 1.82914635e-04, 1.82914635e-04,
7.98774300e-08, 7.98774300e-08, 7.98774300e-08, 7.98774300e-08,
2.66087619e-11, 2.66087619e-11, 2.66087619e-11, 2.66087619e-11,
8.81761175e-15, 8.81761175e-15, 8.81761175e-15, 8.81761175e-15,
2.88036046e-18, 2.88036046e-18, 2.88036046e-18, 2.88036046e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.48220610e+02, 9.48220610e+02, 9.48220610e+02, 9.48220610e+02,
9.34902944e+02, 9.34902944e+02, 9.34902944e+02, 9.34902944e+02,
9.19831060e+02, 9.19831060e+02, 9.19831060e+02, 9.19831060e+02,
9.03151270e+02, 9.03151270e+02, 9.03151270e+02, 9.03151270e+02,
8.85026662e+02, 8.85026662e+02, 8.85026662e+02, 8.85026662e+02,
8.65646386e+02, 8.65646386e+02, 8.65646386e+02, 8.65646386e+02,
8.45213155e+02, 8.45213155e+02, 8.45213155e+02, 8.45213155e+02,
8.23932702e+02, 8.23932702e+02, 8.23932702e+02, 8.23932702e+02,
8.02005750e+02, 8.02005750e+02, 8.02005750e+02, 8.02005750e+02,
7.79622496e+02, 7.79622496e+02, 7.79622496e+02, 7.79622496e+02,
7.56959321e+02, 7.56959321e+02, 7.56959321e+02, 7.56959321e+02,
7.34177328e+02, 7.34177328e+02, 7.34177328e+02, 7.34177328e+02,
7.11422289e+02, 7.11422289e+02, 7.11422289e+02, 7.11422289e+02,
6.88825627e+02, 6.88825627e+02, 6.88825627e+02, 6.88825627e+02,
6.66506181e+02, 6.66506181e+02, 6.66506181e+02, 6.66506181e+02,
6.44572547e+02, 6.44572547e+02, 6.44572547e+02, 6.44572547e+02,
6.23125941e+02, 6.23125941e+02, 6.23125941e+02, 6.23125941e+02,
6.02263562e+02, 6.02263562e+02, 6.02263562e+02, 6.02263562e+02,
5.82082578e+02, 5.82082578e+02, 5.82082578e+02, 5.82082578e+02,
5.62684871e+02, 5.62684871e+02, 5.62684871e+02, 5.62684871e+02,
5.44182753e+02, 5.44182753e+02, 5.44182753e+02, 5.44182753e+02,
5.26705766e+02, 5.26705766e+02, 5.26705766e+02, 5.26705766e+02,
5.10408370e+02, 5.10408370e+02, 5.10408370e+02, 5.10408370e+02,
4.95477456e+02, 4.95477456e+02, 4.95477456e+02, 4.95477456e+02,
4.82136707e+02, 4.82136707e+02, 4.82136707e+02, 4.82136707e+02,
4.70641376e+02, 4.70641376e+02, 4.70641376e+02, 4.70641376e+02,
4.61252431e+02, 4.61252431e+02, 4.61252431e+02, 4.61252431e+02,
4.54177107e+02, 4.54177107e+02, 4.54177107e+02, 4.54177107e+02,
4.49473996e+02, 4.49473996e+02, 4.49473996e+02, 4.49473996e+02,
4.46955714e+02, 4.46955714e+02, 4.46955714e+02, 4.46955714e+02,
4.46165009e+02, 4.46165009e+02, 4.46165009e+02, 4.46165009e+02,
4.46485695e+02, 4.46485695e+02, 4.46485695e+02, 4.46485695e+02,
4.47339548e+02, 4.47339548e+02, 4.47339548e+02, 4.47339548e+02,
4.48337508e+02, 4.48337508e+02, 4.48337508e+02, 4.48337508e+02,
4.49289395e+02, 4.49289395e+02, 4.49289395e+02, 4.49289395e+02,
4.50134048e+02, 4.50134048e+02, 4.50134048e+02, 4.50134048e+02,
4.50869836e+02, 4.50869836e+02, 4.50869836e+02, 4.50869836e+02,
4.51512780e+02, 4.51512780e+02, 4.51512780e+02, 4.51512780e+02,
4.52081898e+02, 4.52081898e+02, 4.52081898e+02, 4.52081898e+02,
4.52595215e+02, 4.52595215e+02, 4.52595215e+02, 4.52595215e+02,
4.53069511e+02, 4.53069511e+02, 4.53069511e+02, 4.53069511e+02,
4.53521071e+02, 4.53521071e+02, 4.53521071e+02, 4.53521071e+02,
4.53965340e+02, 4.53965340e+02, 4.53965340e+02, 4.53965340e+02,
4.54407381e+02, 4.54407381e+02, 4.54407381e+02, 4.54407381e+02,
4.54782427e+02, 4.54782427e+02, 4.54782427e+02, 4.54782427e+02,
4.54679238e+02, 4.54679238e+02, 4.54679238e+02, 4.54679238e+02,
4.52448893e+02, 4.52448893e+02, 4.52448893e+02, 4.52448893e+02,
4.43824090e+02, 4.43824090e+02, 4.43824090e+02, 4.43824090e+02,
4.20337686e+02, 4.20337686e+02, 4.20337686e+02, 4.20337686e+02,
3.69484546e+02, 3.69484546e+02, 3.69484546e+02, 3.69484546e+02,
2.80602938e+02, 2.80602938e+02, 2.80602938e+02, 2.80602938e+02,
1.60681588e+02, 1.60681588e+02, 1.60681588e+02, 1.60681588e+02,
5.29503080e+01, 5.29503080e+01, 5.29503080e+01, 5.29503080e+01,
5.56597022e+00, 5.56597022e+00, 5.56597022e+00, 5.56597022e+00,
7.81466416e-02, 7.81466416e-02, 7.81466416e-02, 7.81466416e-02,
1.00355924e-02, 1.00355924e-02, 1.00355924e-02, 1.00355924e-02,
1.00000095e-02, 1.00000095e-02, 1.00000095e-02, 1.00000095e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_rusanov': [{'rho': array([0.99009996, 0.99009996, 0.99009996, 0.99009996, 0.98079728,
0.98079728, 0.98079728, 0.98079728, 0.97117513, 0.97117513,
0.97117513, 0.97117513, 0.95762729, 0.95762729, 0.95762729,
0.95762729, 0.94142953, 0.94142953, 0.94142953, 0.94142953,
0.92272455, 0.92272455, 0.92272455, 0.92272455, 0.90213778,
0.90213778, 0.90213778, 0.90213778, 0.88019506, 0.88019506,
0.88019506, 0.88019506, 0.8573279 , 0.8573279 , 0.8573279 ,
0.8573279 , 0.83388586, 0.83388586, 0.83388586, 0.83388586,
0.8103593 , 0.8103593 , 0.8103593 , 0.8103593 , 0.78735681,
0.78735681, 0.78735681, 0.78735681, 0.76511282, 0.76511282,
0.76511282, 0.76511282, 0.74361635, 0.74361635, 0.74361635,
0.74361635, 0.72287492, 0.72287492, 0.72287492, 0.72287492,
0.70291453, 0.70291453, 0.70291453, 0.70291453, 0.68379431,
0.68379431, 0.68379431, 0.68379431, 0.66561946, 0.66561946,
0.66561946, 0.66561946, 0.64854061, 0.64854061, 0.64854061,
0.64854061, 0.63273412, 0.63273412, 0.63273412, 0.63273412,
0.61836564, 0.61836564, 0.61836564, 0.61836564, 0.60555414,
0.60555414, 0.60555414, 0.60555414, 0.59436881, 0.59436881,
0.59436881, 0.59436881, 0.58488492, 0.58488492, 0.58488492,
0.58488492, 0.57726939, 0.57726939, 0.57726939, 0.57726939,
0.57177743, 0.57177743, 0.57177743, 0.57177743, 0.56855526,
0.56855526, 0.56855526, 0.56855526, 0.56733881, 0.56733881,
0.56733881, 0.56733881, 0.56730464, 0.56730464, 0.56730464,
0.56730464, 0.56754209, 0.56754209, 0.56754209, 0.56754209,
0.5676676 , 0.5676676 , 0.5676676 , 0.5676676 , 0.56747076,
0.56747076, 0.56747076, 0.56747076, 0.56700475, 0.56700475,
0.56700475, 0.56700475, 0.56673193, 0.56673193, 0.56673193,
0.56673193, 0.56658818, 0.56658818, 0.56658818, 0.56658818,
0.56660117, 0.56660117, 0.56660117, 0.56660117, 0.56721514,
0.56721514, 0.56721514, 0.56721514, 0.56947087, 0.56947087,
0.56947087, 0.56947087, 0.57522826, 0.57522826, 0.57522826,
0.57522826, 0.58788102, 0.58788102, 0.58788102, 0.58788102,
0.61339093, 0.61339093, 0.61339093, 0.61339093, 0.66191566,
0.66191566, 0.66191566, 0.66191566, 0.7503941 , 0.7503941 ,
0.7503941 , 0.7503941 , 0.90622262, 0.90622262, 0.90622262,
0.90622262, 1.17163176, 1.17163176, 1.17163176, 1.17163176,
1.60647461, 1.60647461, 1.60647461, 1.60647461, 2.28018986,
2.28018986, 2.28018986, 2.28018986, 3.12452995, 3.12452995,
3.12452995, 3.12452995, 3.74154011, 3.74154011, 3.74154011,
3.74154011, 3.94349823, 3.94349823, 3.94349823, 3.94349823,
3.47975134, 3.47975134, 3.47975134, 3.47975134, 1.76601771,
1.76601771, 1.76601771, 1.76601771, 1.04278667, 1.04278667,
1.04278667, 1.04278667, 1.00063976, 1.00063976, 1.00063976,
1.00063976, 1.000002 , 1.000002 , 1.000002 , 1.000002 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.71214413e-01, 3.71214413e-01, 3.71214413e-01, 3.71214413e-01,
7.24051149e-01, 7.24051149e-01, 7.24051149e-01, 7.24051149e-01,
1.09070799e+00, 1.09070799e+00, 1.09070799e+00, 1.09070799e+00,
1.61244052e+00, 1.61244052e+00, 1.61244052e+00, 1.61244052e+00,
2.24398795e+00, 2.24398795e+00, 2.24398795e+00, 2.24398795e+00,
2.98433948e+00, 2.98433948e+00, 2.98433948e+00, 2.98433948e+00,
3.81323583e+00, 3.81323583e+00, 3.81323583e+00, 3.81323583e+00,
4.71361364e+00, 4.71361364e+00, 4.71361364e+00, 4.71361364e+00,
5.67171883e+00, 5.67171883e+00, 5.67171883e+00, 5.67171883e+00,
6.67789199e+00, 6.67789199e+00, 6.67789199e+00, 6.67789199e+00,
7.70441370e+00, 7.70441370e+00, 7.70441370e+00, 7.70441370e+00,
8.73273268e+00, 8.73273268e+00, 8.73273268e+00, 8.73273268e+00,
9.75221103e+00, 9.75221103e+00, 9.75221103e+00, 9.75221103e+00,
1.07599049e+01, 1.07599049e+01, 1.07599049e+01, 1.07599049e+01,
1.17540097e+01, 1.17540097e+01, 1.17540097e+01, 1.17540097e+01,
1.27317276e+01, 1.27317276e+01, 1.27317276e+01, 1.27317276e+01,
1.36888505e+01, 1.36888505e+01, 1.36888505e+01, 1.36888505e+01,
1.46193231e+01, 1.46193231e+01, 1.46193231e+01, 1.46193231e+01,
1.55146881e+01, 1.55146881e+01, 1.55146881e+01, 1.55146881e+01,
1.63636987e+01, 1.63636987e+01, 1.63636987e+01, 1.63636987e+01,
1.71524418e+01, 1.71524418e+01, 1.71524418e+01, 1.71524418e+01,
1.78652593e+01, 1.78652593e+01, 1.78652593e+01, 1.78652593e+01,
1.84866404e+01, 1.84866404e+01, 1.84866404e+01, 1.84866404e+01,
1.90040865e+01, 1.90040865e+01, 1.90040865e+01, 1.90040865e+01,
1.94113585e+01, 1.94113585e+01, 1.94113585e+01, 1.94113585e+01,
1.97105480e+01, 1.97105480e+01, 1.97105480e+01, 1.97105480e+01,
1.99120445e+01, 1.99120445e+01, 1.99120445e+01, 1.99120445e+01,
2.00328035e+01, 2.00328035e+01, 2.00328035e+01, 2.00328035e+01,
2.00939353e+01, 2.00939353e+01, 2.00939353e+01, 2.00939353e+01,
2.01167707e+01, 2.01167707e+01, 2.01167707e+01, 2.01167707e+01,
2.01197792e+01, 2.01197792e+01, 2.01197792e+01, 2.01197792e+01,
2.01074074e+01, 2.01074074e+01, 2.01074074e+01, 2.01074074e+01,
2.00728629e+01, 2.00728629e+01, 2.00728629e+01, 2.00728629e+01,
2.00133514e+01, 2.00133514e+01, 2.00133514e+01, 2.00133514e+01,
1.99495226e+01, 1.99495226e+01, 1.99495226e+01, 1.99495226e+01,
1.98997208e+01, 1.98997208e+01, 1.98997208e+01, 1.98997208e+01,
1.98634959e+01, 1.98634959e+01, 1.98634959e+01, 1.98634959e+01,
1.98359993e+01, 1.98359993e+01, 1.98359993e+01, 1.98359993e+01,
1.98148995e+01, 1.98148995e+01, 1.98148995e+01, 1.98148995e+01,
1.97990188e+01, 1.97990188e+01, 1.97990188e+01, 1.97990188e+01,
1.97864598e+01, 1.97864598e+01, 1.97864598e+01, 1.97864598e+01,
1.97757303e+01, 1.97757303e+01, 1.97757303e+01, 1.97757303e+01,
1.97670663e+01, 1.97670663e+01, 1.97670663e+01, 1.97670663e+01,
1.97606562e+01, 1.97606562e+01, 1.97606562e+01, 1.97606562e+01,
1.97563225e+01, 1.97563225e+01, 1.97563225e+01, 1.97563225e+01,
1.97574019e+01, 1.97574019e+01, 1.97574019e+01, 1.97574019e+01,
1.97535996e+01, 1.97535996e+01, 1.97535996e+01, 1.97535996e+01,
1.97149405e+01, 1.97149405e+01, 1.97149405e+01, 1.97149405e+01,
1.95165373e+01, 1.95165373e+01, 1.95165373e+01, 1.95165373e+01,
1.86180277e+01, 1.86180277e+01, 1.86180277e+01, 1.86180277e+01,
1.50712409e+01, 1.50712409e+01, 1.50712409e+01, 1.50712409e+01,
6.44555578e+00, 6.44555578e+00, 6.44555578e+00, 6.44555578e+00,
3.40134655e-01, 3.40134655e-01, 3.40134655e-01, 3.40134655e-01,
1.99855938e-03, 1.99855938e-03, 1.99855938e-03, 1.99855938e-03,
9.27909710e-07, 9.27909710e-07, 9.27909710e-07, 9.27909710e-07,
1.31626259e-10, 1.31626259e-10, 1.31626259e-10, 1.31626259e-10,
1.91069012e-14, 1.91069012e-14, 1.91069012e-14, 1.91069012e-14,
2.79872002e-18, 2.79872002e-18, 2.79872002e-18, 2.79872002e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.86186200e+02, 9.86186200e+02, 9.86186200e+02, 9.86186200e+02,
9.73240468e+02, 9.73240468e+02, 9.73240468e+02, 9.73240468e+02,
9.59914409e+02, 9.59914409e+02, 9.59914409e+02, 9.59914409e+02,
9.41247070e+02, 9.41247070e+02, 9.41247070e+02, 9.41247070e+02,
9.19065173e+02, 9.19065173e+02, 9.19065173e+02, 9.19065173e+02,
8.93636756e+02, 8.93636756e+02, 8.93636756e+02, 8.93636756e+02,
8.65883271e+02, 8.65883271e+02, 8.65883271e+02, 8.65883271e+02,
8.36573980e+02, 8.36573980e+02, 8.36573980e+02, 8.36573980e+02,
8.06320572e+02, 8.06320572e+02, 8.06320572e+02, 8.06320572e+02,
7.75553698e+02, 7.75553698e+02, 7.75553698e+02, 7.75553698e+02,
7.45017133e+02, 7.45017133e+02, 7.45017133e+02, 7.45017133e+02,
7.15593221e+02, 7.15593221e+02, 7.15593221e+02, 7.15593221e+02,
6.87450247e+02, 6.87450247e+02, 6.87450247e+02, 6.87450247e+02,
6.60567105e+02, 6.60567105e+02, 6.60567105e+02, 6.60567105e+02,
6.34933561e+02, 6.34933561e+02, 6.34933561e+02, 6.34933561e+02,
6.10559907e+02, 6.10559907e+02, 6.10559907e+02, 6.10559907e+02,
5.87481408e+02, 5.87481408e+02, 5.87481408e+02, 5.87481408e+02,
5.65766844e+02, 5.65766844e+02, 5.65766844e+02, 5.65766844e+02,
5.45524542e+02, 5.45524542e+02, 5.45524542e+02, 5.45524542e+02,
5.26905041e+02, 5.26905041e+02, 5.26905041e+02, 5.26905041e+02,
5.10095754e+02, 5.10095754e+02, 5.10095754e+02, 5.10095754e+02,
4.95301417e+02, 4.95301417e+02, 4.95301417e+02, 4.95301417e+02,
4.82707232e+02, 4.82707232e+02, 4.82707232e+02, 4.82707232e+02,
4.72431235e+02, 4.72431235e+02, 4.72431235e+02, 4.72431235e+02,
4.64480159e+02, 4.64480159e+02, 4.64480159e+02, 4.64480159e+02,
4.58720544e+02, 4.58720544e+02, 4.58720544e+02, 4.58720544e+02,
4.54880415e+02, 4.54880415e+02, 4.54880415e+02, 4.54880415e+02,
4.52586923e+02, 4.52586923e+02, 4.52586923e+02, 4.52586923e+02,
4.51430708e+02, 4.51430708e+02, 4.51430708e+02, 4.51430708e+02,
4.51009436e+02, 4.51009436e+02, 4.51009436e+02, 4.51009436e+02,
4.50953318e+02, 4.50953318e+02, 4.50953318e+02, 4.50953318e+02,
4.51185590e+02, 4.51185590e+02, 4.51185590e+02, 4.51185590e+02,
4.51834808e+02, 4.51834808e+02, 4.51834808e+02, 4.51834808e+02,
4.52955367e+02, 4.52955367e+02, 4.52955367e+02, 4.52955367e+02,
4.54157312e+02, 4.54157312e+02, 4.54157312e+02, 4.54157312e+02,
4.55095241e+02, 4.55095241e+02, 4.55095241e+02, 4.55095241e+02,
4.55772371e+02, 4.55772371e+02, 4.55772371e+02, 4.55772371e+02,
4.56264237e+02, 4.56264237e+02, 4.56264237e+02, 4.56264237e+02,
4.56633348e+02, 4.56633348e+02, 4.56633348e+02, 4.56633348e+02,
4.56929937e+02, 4.56929937e+02, 4.56929937e+02, 4.56929937e+02,
4.57171489e+02, 4.57171489e+02, 4.57171489e+02, 4.57171489e+02,
4.57363668e+02, 4.57363668e+02, 4.57363668e+02, 4.57363668e+02,
4.57531378e+02, 4.57531378e+02, 4.57531378e+02, 4.57531378e+02,
4.57709652e+02, 4.57709652e+02, 4.57709652e+02, 4.57709652e+02,
4.57932536e+02, 4.57932536e+02, 4.57932536e+02, 4.57932536e+02,
4.58295200e+02, 4.58295200e+02, 4.58295200e+02, 4.58295200e+02,
4.58599054e+02, 4.58599054e+02, 4.58599054e+02, 4.58599054e+02,
4.57718786e+02, 4.57718786e+02, 4.57718786e+02, 4.57718786e+02,
4.48917912e+02, 4.48917912e+02, 4.48917912e+02, 4.48917912e+02,
4.03800359e+02, 4.03800359e+02, 4.03800359e+02, 4.03800359e+02,
2.58647864e+02, 2.58647864e+02, 2.58647864e+02, 2.58647864e+02,
5.37325288e+01, 5.37325288e+01, 5.37325288e+01, 5.37325288e+01,
1.31811609e+00, 1.31811609e+00, 1.31811609e+00, 1.31811609e+00,
1.12593786e-02, 1.12593786e-02, 1.12593786e-02, 1.12593786e-02,
1.00001109e-02, 1.00001109e-02, 1.00001109e-02, 1.00001109e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hll': [{'rho': array([0.99116492, 0.99116492, 0.99116492, 0.99116492, 0.98271154,
0.98271154, 0.98271154, 0.98271154, 0.97383884, 0.97383884,
0.97383884, 0.97383884, 0.96101554, 0.96101554, 0.96101554,
0.96101554, 0.9454558 , 0.9454558 , 0.9454558 , 0.9454558 ,
0.92712036, 0.92712036, 0.92712036, 0.92712036, 0.90667211,
0.90667211, 0.90667211, 0.90667211, 0.88466881, 0.88466881,
0.88466881, 0.88466881, 0.86164034, 0.86164034, 0.86164034,
0.86164034, 0.83800032, 0.83800032, 0.83800032, 0.83800032,
0.81424415, 0.81424415, 0.81424415, 0.81424415, 0.79085525,
0.79085525, 0.79085525, 0.79085525, 0.76804363, 0.76804363,
0.76804363, 0.76804363, 0.74583711, 0.74583711, 0.74583711,
0.74583711, 0.72421952, 0.72421952, 0.72421952, 0.72421952,
0.70319112, 0.70319112, 0.70319112, 0.70319112, 0.68277247,
0.68277247, 0.68277247, 0.68277247, 0.66301832, 0.66301832,
0.66301832, 0.66301832, 0.64404414, 0.64404414, 0.64404414,
0.64404414, 0.62606083, 0.62606083, 0.62606083, 0.62606083,
0.60941523, 0.60941523, 0.60941523, 0.60941523, 0.59461799,
0.59461799, 0.59461799, 0.59461799, 0.5823152 , 0.5823152 ,
0.5823152 , 0.5823152 , 0.57313802, 0.57313802, 0.57313802,
0.57313802, 0.56738503, 0.56738503, 0.56738503, 0.56738503,
0.56465216, 0.56465216, 0.56465216, 0.56465216, 0.56382693,
0.56382693, 0.56382693, 0.56382693, 0.56387318, 0.56387318,
0.56387318, 0.56387318, 0.5652006 , 0.5652006 , 0.5652006 ,
0.5652006 , 0.56626977, 0.56626977, 0.56626977, 0.56626977,
0.56702881, 0.56702881, 0.56702881, 0.56702881, 0.56788545,
0.56788545, 0.56788545, 0.56788545, 0.56880776, 0.56880776,
0.56880776, 0.56880776, 0.56941945, 0.56941945, 0.56941945,
0.56941945, 0.56962086, 0.56962086, 0.56962086, 0.56962086,
0.56956418, 0.56956418, 0.56956418, 0.56956418, 0.56936331,
0.56936331, 0.56936331, 0.56936331, 0.56934572, 0.56934572,
0.56934572, 0.56934572, 0.57000584, 0.57000584, 0.57000584,
0.57000584, 0.5729765 , 0.5729765 , 0.5729765 , 0.5729765 ,
0.58176493, 0.58176493, 0.58176493, 0.58176493, 0.60341244,
0.60341244, 0.60341244, 0.60341244, 0.65159534, 0.65159534,
0.65159534, 0.65159534, 0.75225793, 0.75225793, 0.75225793,
0.75225793, 0.95396517, 0.95396517, 0.95396517, 0.95396517,
1.34573563, 1.34573563, 1.34573563, 1.34573563, 2.05647412,
2.05647412, 2.05647412, 2.05647412, 3.13720518, 3.13720518,
3.13720518, 3.13720518, 4.01618199, 4.01618199, 4.01618199,
4.01618199, 4.2713159 , 4.2713159 , 4.2713159 , 4.2713159 ,
3.78406763, 3.78406763, 3.78406763, 3.78406763, 1.92016659,
1.92016659, 1.92016659, 1.92016659, 1.058216 , 1.058216 ,
1.058216 , 1.058216 , 1.00081398, 1.00081398, 1.00081398,
1.00081398, 1.00000178, 1.00000178, 1.00000178, 1.00000178,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.31199970e-01, 3.31199970e-01, 3.31199970e-01, 3.31199970e-01,
6.51382280e-01, 6.51382280e-01, 6.51382280e-01, 6.51382280e-01,
9.88854278e-01, 9.88854278e-01, 9.88854278e-01, 9.88854278e-01,
1.48150489e+00, 1.48150489e+00, 1.48150489e+00, 1.48150489e+00,
2.08633147e+00, 2.08633147e+00, 2.08633147e+00, 2.08633147e+00,
2.80957124e+00, 2.80957124e+00, 2.80957124e+00, 2.80957124e+00,
3.62985549e+00, 3.62985549e+00, 3.62985549e+00, 3.62985549e+00,
4.52930744e+00, 4.52930744e+00, 4.52930744e+00, 4.52930744e+00,
5.49031544e+00, 5.49031544e+00, 5.49031544e+00, 5.49031544e+00,
6.50069839e+00, 6.50069839e+00, 6.50069839e+00, 6.50069839e+00,
7.53409154e+00, 7.53409154e+00, 7.53409154e+00, 7.53409154e+00,
8.57574859e+00, 8.57574859e+00, 8.57574859e+00, 8.57574859e+00,
9.61670434e+00, 9.61670434e+00, 9.61670434e+00, 9.61670434e+00,
1.06548968e+01, 1.06548968e+01, 1.06548968e+01, 1.06548968e+01,
1.16895560e+01, 1.16895560e+01, 1.16895560e+01, 1.16895560e+01,
1.27199525e+01, 1.27199525e+01, 1.27199525e+01, 1.27199525e+01,
1.37443488e+01, 1.37443488e+01, 1.37443488e+01, 1.37443488e+01,
1.47589251e+01, 1.47589251e+01, 1.47589251e+01, 1.47589251e+01,
1.57563221e+01, 1.57563221e+01, 1.57563221e+01, 1.57563221e+01,
1.67233146e+01, 1.67233146e+01, 1.67233146e+01, 1.67233146e+01,
1.76379476e+01, 1.76379476e+01, 1.76379476e+01, 1.76379476e+01,
1.84673647e+01, 1.84673647e+01, 1.84673647e+01, 1.84673647e+01,
1.91692758e+01, 1.91692758e+01, 1.91692758e+01, 1.91692758e+01,
1.97016293e+01, 1.97016293e+01, 1.97016293e+01, 1.97016293e+01,
2.00421597e+01, 2.00421597e+01, 2.00421597e+01, 2.00421597e+01,
2.02074474e+01, 2.02074474e+01, 2.02074474e+01, 2.02074474e+01,
2.02533362e+01, 2.02533362e+01, 2.02533362e+01, 2.02533362e+01,
2.02422335e+01, 2.02422335e+01, 2.02422335e+01, 2.02422335e+01,
2.01551609e+01, 2.01551609e+01, 2.01551609e+01, 2.01551609e+01,
2.00814099e+01, 2.00814099e+01, 2.00814099e+01, 2.00814099e+01,
2.00377810e+01, 2.00377810e+01, 2.00377810e+01, 2.00377810e+01,
2.00059391e+01, 2.00059391e+01, 2.00059391e+01, 2.00059391e+01,
1.99778740e+01, 1.99778740e+01, 1.99778740e+01, 1.99778740e+01,
1.99509217e+01, 1.99509217e+01, 1.99509217e+01, 1.99509217e+01,
1.99248183e+01, 1.99248183e+01, 1.99248183e+01, 1.99248183e+01,
1.99001676e+01, 1.99001676e+01, 1.99001676e+01, 1.99001676e+01,
1.98776007e+01, 1.98776007e+01, 1.98776007e+01, 1.98776007e+01,
1.98572942e+01, 1.98572942e+01, 1.98572942e+01, 1.98572942e+01,
1.98397324e+01, 1.98397324e+01, 1.98397324e+01, 1.98397324e+01,
1.98254040e+01, 1.98254040e+01, 1.98254040e+01, 1.98254040e+01,
1.98131310e+01, 1.98131310e+01, 1.98131310e+01, 1.98131310e+01,
1.98012050e+01, 1.98012050e+01, 1.98012050e+01, 1.98012050e+01,
1.97898387e+01, 1.97898387e+01, 1.97898387e+01, 1.97898387e+01,
1.97795675e+01, 1.97795675e+01, 1.97795675e+01, 1.97795675e+01,
1.97699816e+01, 1.97699816e+01, 1.97699816e+01, 1.97699816e+01,
1.97635691e+01, 1.97635691e+01, 1.97635691e+01, 1.97635691e+01,
1.97536393e+01, 1.97536393e+01, 1.97536393e+01, 1.97536393e+01,
1.97149813e+01, 1.97149813e+01, 1.97149813e+01, 1.97149813e+01,
1.95399511e+01, 1.95399511e+01, 1.95399511e+01, 1.95399511e+01,
1.87505825e+01, 1.87505825e+01, 1.87505825e+01, 1.87505825e+01,
1.56266522e+01, 1.56266522e+01, 1.56266522e+01, 1.56266522e+01,
6.97439322e+00, 6.97439322e+00, 6.97439322e+00, 6.97439322e+00,
3.92821064e-01, 3.92821064e-01, 3.92821064e-01, 3.92821064e-01,
1.89489077e-03, 1.89489077e-03, 1.89489077e-03, 1.89489077e-03,
6.66095396e-07, 6.66095396e-07, 6.66095396e-07, 6.66095396e-07,
9.40368073e-11, 9.40368073e-11, 9.40368073e-11, 9.40368073e-11,
1.38270964e-14, 1.38270964e-14, 1.38270964e-14, 1.38270964e-14,
2.07028270e-18, 2.07028270e-18, 2.07028270e-18, 2.07028270e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87667905e+02, 9.87667905e+02, 9.87667905e+02, 9.87667905e+02,
9.75896749e+02, 9.75896749e+02, 9.75896749e+02, 9.75896749e+02,
9.63596793e+02, 9.63596793e+02, 9.63596793e+02, 9.63596793e+02,
9.45903496e+02, 9.45903496e+02, 9.45903496e+02, 9.45903496e+02,
9.24560147e+02, 9.24560147e+02, 9.24560147e+02, 9.24560147e+02,
8.99586589e+02, 8.99586589e+02, 8.99586589e+02, 8.99586589e+02,
8.71962692e+02, 8.71962692e+02, 8.71962692e+02, 8.71962692e+02,
8.42509302e+02, 8.42509302e+02, 8.42509302e+02, 8.42509302e+02,
8.11982832e+02, 8.11982832e+02, 8.11982832e+02, 8.11982832e+02,
7.80909598e+02, 7.80909598e+02, 7.80909598e+02, 7.80909598e+02,
7.50021347e+02, 7.50021347e+02, 7.50021347e+02, 7.50021347e+02,
7.20044660e+02, 7.20044660e+02, 7.20044660e+02, 7.20044660e+02,
6.91139600e+02, 6.91139600e+02, 6.91139600e+02, 6.91139600e+02,
6.63330665e+02, 6.63330665e+02, 6.63330665e+02, 6.63330665e+02,
6.36575468e+02, 6.36575468e+02, 6.36575468e+02, 6.36575468e+02,
6.10854195e+02, 6.10854195e+02, 6.10854195e+02, 6.10854195e+02,
5.86171830e+02, 5.86171830e+02, 5.86171830e+02, 5.86171830e+02,
5.62573606e+02, 5.62573606e+02, 5.62573606e+02, 5.62573606e+02,
5.40173609e+02, 5.40173609e+02, 5.40173609e+02, 5.40173609e+02,
5.19191018e+02, 5.19191018e+02, 5.19191018e+02, 5.19191018e+02,
4.99991749e+02, 4.99991749e+02, 4.99991749e+02, 4.99991749e+02,
4.83112346e+02, 4.83112346e+02, 4.83112346e+02, 4.83112346e+02,
4.69214163e+02, 4.69214163e+02, 4.69214163e+02, 4.69214163e+02,
4.58903184e+02, 4.58903184e+02, 4.58903184e+02, 4.58903184e+02,
4.52409336e+02, 4.52409336e+02, 4.52409336e+02, 4.52409336e+02,
4.49287031e+02, 4.49287031e+02, 4.49287031e+02, 4.49287031e+02,
4.48422944e+02, 4.48422944e+02, 4.48422944e+02, 4.48422944e+02,
4.48631188e+02, 4.48631188e+02, 4.48631188e+02, 4.48631188e+02,
4.50271228e+02, 4.50271228e+02, 4.50271228e+02, 4.50271228e+02,
4.51662913e+02, 4.51662913e+02, 4.51662913e+02, 4.51662913e+02,
4.52490638e+02, 4.52490638e+02, 4.52490638e+02, 4.52490638e+02,
4.53096587e+02, 4.53096587e+02, 4.53096587e+02, 4.53096587e+02,
4.53627004e+02, 4.53627004e+02, 4.53627004e+02, 4.53627004e+02,
4.54138029e+02, 4.54138029e+02, 4.54138029e+02, 4.54138029e+02,
4.54640997e+02, 4.54640997e+02, 4.54640997e+02, 4.54640997e+02,
4.55121718e+02, 4.55121718e+02, 4.55121718e+02, 4.55121718e+02,
4.55558744e+02, 4.55558744e+02, 4.55558744e+02, 4.55558744e+02,
4.55935595e+02, 4.55935595e+02, 4.55935595e+02, 4.55935595e+02,
4.56261121e+02, 4.56261121e+02, 4.56261121e+02, 4.56261121e+02,
4.56558739e+02, 4.56558739e+02, 4.56558739e+02, 4.56558739e+02,
4.56826197e+02, 4.56826197e+02, 4.56826197e+02, 4.56826197e+02,
4.57052328e+02, 4.57052328e+02, 4.57052328e+02, 4.57052328e+02,
4.57257152e+02, 4.57257152e+02, 4.57257152e+02, 4.57257152e+02,
4.57467024e+02, 4.57467024e+02, 4.57467024e+02, 4.57467024e+02,
4.57704540e+02, 4.57704540e+02, 4.57704540e+02, 4.57704540e+02,
4.58066570e+02, 4.58066570e+02, 4.58066570e+02, 4.58066570e+02,
4.58479576e+02, 4.58479576e+02, 4.58479576e+02, 4.58479576e+02,
4.57718684e+02, 4.57718684e+02, 4.57718684e+02, 4.57718684e+02,
4.49845047e+02, 4.49845047e+02, 4.49845047e+02, 4.49845047e+02,
4.09389299e+02, 4.09389299e+02, 4.09389299e+02, 4.09389299e+02,
2.68194998e+02, 2.68194998e+02, 2.68194998e+02, 2.68194998e+02,
5.60520652e+01, 5.60520652e+01, 5.60520652e+01, 5.60520652e+01,
1.14557313e+00, 1.14557313e+00, 1.14557313e+00, 1.14557313e+00,
1.08687798e-02, 1.08687798e-02, 1.08687798e-02, 1.08687798e-02,
1.00000791e-02, 1.00000791e-02, 1.00000791e-02, 1.00000791e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hllc': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99854666, 0.99854666, 0.99854666, 0.99854666,
0.96845715, 0.96845715, 0.96845715, 0.96845715, 0.81981135,
0.81981135, 0.81981135, 0.81981135, 1.13644411, 1.13644411,
1.13644411, 1.13644411, 1.07459565, 1.07459565, 1.07459565,
1.07459565, 1.00214509, 1.00214509, 1.00214509, 1.00214509,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.44580810e-02, 5.44580810e-02, 5.44580810e-02, 5.44580810e-02,
1.19786475e+00, 1.19786475e+00, 1.19786475e+00, 1.19786475e+00,
7.52224860e+00, 7.52224860e+00, 7.52224860e+00, 7.52224860e+00,
9.36380750e+00, 9.36380750e+00, 9.36380750e+00, 9.36380750e+00,
1.09132154e+00, 1.09132154e+00, 1.09132154e+00, 1.09132154e+00,
4.34109741e-03, 4.34109741e-03, 4.34109741e-03, 4.34109741e-03,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.97973078e+02, 9.97973078e+02, 9.97973078e+02, 9.97973078e+02,
9.57196315e+02, 9.57196315e+02, 9.57196315e+02, 9.57196315e+02,
7.89728589e+02, 7.89728589e+02, 7.89728589e+02, 7.89728589e+02,
2.18172604e+02, 2.18172604e+02, 2.18172604e+02, 2.18172604e+02,
7.20466733e+00, 7.20466733e+00, 7.20466733e+00, 7.20466733e+00,
1.36969674e-02, 1.36969674e-02, 1.36969674e-02, 1.36969674e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999529,
0.99999529, 0.99999529, 0.99999529, 0.99981164, 0.99981164,
0.99981164, 0.99981164, 0.99702376, 0.99702376, 0.99702376,
0.99702376, 0.97590016, 0.97590016, 0.97590016, 0.97590016,
0.88930972, 0.88930972, 0.88930972, 0.88930972, 0.71365932,
0.71365932, 0.71365932, 0.71365932, 1.0710902 , 1.0710902 ,
1.0710902 , 1.0710902 , 1.31137332, 1.31137332, 1.31137332,
1.31137332, 1.04072233, 1.04072233, 1.04072233, 1.04072233,
1.00111398, 1.00111398, 1.00111398, 1.00111398, 1.00000029,
1.00000029, 1.00000029, 1.00000029, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.76253247e-04, 1.76253247e-04, 1.76253247e-04, 1.76253247e-04,
7.04865623e-03, 7.04865623e-03, 7.04865623e-03, 7.04865623e-03,
1.11518467e-01, 1.11518467e-01, 1.11518467e-01, 1.11518467e-01,
9.09502205e-01, 9.09502205e-01, 9.09502205e-01, 9.09502205e-01,
4.30216737e+00, 4.30216737e+00, 4.30216737e+00, 4.30216737e+00,
1.18379965e+01, 1.18379965e+01, 1.18379965e+01, 1.18379965e+01,
1.62384269e+01, 1.62384269e+01, 1.62384269e+01, 1.62384269e+01,
5.70889156e+00, 5.70889156e+00, 5.70889156e+00, 5.70889156e+00,
2.30200189e-01, 2.30200189e-01, 2.30200189e-01, 2.30200189e-01,
4.83684047e-04, 4.83684047e-04, 4.83684047e-04, 4.83684047e-04,
3.42098651e-08, 3.42098651e-08, 3.42098651e-08, 3.42098651e-08,
1.01319811e-12, 1.01319811e-12, 1.01319811e-12, 1.01319811e-12,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99993405e+02, 9.99993405e+02, 9.99993405e+02, 9.99993405e+02,
9.99736354e+02, 9.99736354e+02, 9.99736354e+02, 9.99736354e+02,
9.95842977e+02, 9.95842977e+02, 9.95842977e+02, 9.95842977e+02,
9.66708286e+02, 9.66708286e+02, 9.66708286e+02, 9.66708286e+02,
8.52052998e+02, 8.52052998e+02, 8.52052998e+02, 8.52052998e+02,
6.72236296e+02, 6.72236296e+02, 6.72236296e+02, 6.72236296e+02,
3.62410250e+02, 3.62410250e+02, 3.62410250e+02, 3.62410250e+02,
6.19189240e+01, 6.19189240e+01, 6.19189240e+01, 6.19189240e+01,
6.26948951e-01, 6.26948951e-01, 6.26948951e-01, 6.26948951e-01,
1.01072359e-02, 1.01072359e-02, 1.01072359e-02, 1.01072359e-02,
1.00000040e-02, 1.00000040e-02, 1.00000040e-02, 1.00000040e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999888, 0.99999888, 0.99999888, 0.99999888,
0.99997445, 0.99997445, 0.99997445, 0.99997445, 0.99964871,
0.99964871, 0.99964871, 0.99964871, 0.99689733, 0.99689733,
0.99689733, 0.99689733, 0.98193702, 0.98193702, 0.98193702,
0.98193702, 0.9295722 , 0.9295722 , 0.9295722 , 0.9295722 ,
0.81296623, 0.81296623, 0.81296623, 0.81296623, 0.63611418,
0.63611418, 0.63611418, 0.63611418, 0.88414578, 0.88414578,
0.88414578, 0.88414578, 1.57593929, 1.57593929, 1.57593929,
1.57593929, 1.1715463 , 1.1715463 , 1.1715463 , 1.1715463 ,
1.01116974, 1.01116974, 1.01116974, 1.01116974, 1.0000899 ,
1.0000899 , 1.0000899 , 1.0000899 , 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
7.97153187e-09, 7.97153187e-09, 7.97153187e-09, 7.97153187e-09,
9.70027498e-07, 9.70027498e-07, 9.70027498e-07, 9.70027498e-07,
4.20269589e-05, 4.20269589e-05, 4.20269589e-05, 4.20269589e-05,
9.55942471e-04, 9.55942471e-04, 9.55942471e-04, 9.55942471e-04,
1.31460868e-02, 1.31460868e-02, 1.31460868e-02, 1.31460868e-02,
1.16219529e-01, 1.16219529e-01, 1.16219529e-01, 1.16219529e-01,
6.79969081e-01, 6.79969081e-01, 6.79969081e-01, 6.79969081e-01,
2.70215530e+00, 2.70215530e+00, 2.70215530e+00, 2.70215530e+00,
7.57490575e+00, 7.57490575e+00, 7.57490575e+00, 7.57490575e+00,
1.47743231e+01, 1.47743231e+01, 1.47743231e+01, 1.47743231e+01,
2.03840035e+01, 2.03840035e+01, 2.03840035e+01, 2.03840035e+01,
1.19115601e+01, 1.19115601e+01, 1.19115601e+01, 1.19115601e+01,
1.63710471e+00, 1.63710471e+00, 1.63710471e+00, 1.63710471e+00,
2.10715183e-02, 2.10715183e-02, 2.10715183e-02, 2.10715183e-02,
1.32818490e-05, 1.32818490e-05, 1.32818490e-05, 1.32818490e-05,
1.21621831e-09, 1.21621831e-09, 1.21621831e-09, 1.21621831e-09,
8.57861505e-14, 8.57861505e-14, 8.57861505e-14, 8.57861505e-14,
4.41228789e-18, 4.41228789e-18, 4.41228789e-18, 4.41228789e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999964e+02, 9.99999964e+02, 9.99999964e+02, 9.99999964e+02,
9.99998427e+02, 9.99998427e+02, 9.99998427e+02, 9.99998427e+02,
9.99964233e+02, 9.99964233e+02, 9.99964233e+02, 9.99964233e+02,
9.99508326e+02, 9.99508326e+02, 9.99508326e+02, 9.99508326e+02,
9.95664278e+02, 9.95664278e+02, 9.95664278e+02, 9.95664278e+02,
9.74918203e+02, 9.74918203e+02, 9.74918203e+02, 9.74918203e+02,
9.03858041e+02, 9.03858041e+02, 9.03858041e+02, 9.03858041e+02,
7.52615431e+02, 7.52615431e+02, 7.52615431e+02, 7.52615431e+02,
5.88404204e+02, 5.88404204e+02, 5.88404204e+02, 5.88404204e+02,
4.31076258e+02, 4.31076258e+02, 4.31076258e+02, 4.31076258e+02,
1.87860435e+02, 1.87860435e+02, 1.87860435e+02, 1.87860435e+02,
8.76910821e+00, 8.76910821e+00, 8.76910821e+00, 8.76910821e+00,
2.98951467e-02, 2.98951467e-02, 2.98951467e-02, 2.98951467e-02,
1.00015908e-02, 1.00015908e-02, 1.00015908e-02, 1.00015908e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999979, 0.99999979,
0.99999979, 0.99999979, 0.9999963 , 0.9999963 , 0.9999963 ,
0.9999963 , 0.99995364, 0.99995364, 0.99995364, 0.99995364,
0.99957767, 0.99957767, 0.99957767, 0.99957767, 0.99718309,
0.99718309, 0.99718309, 0.99718309, 0.98626394, 0.98626394,
0.98626394, 0.98626394, 0.95106797, 0.95106797, 0.95106797,
0.95106797, 0.87123171, 0.87123171, 0.87123171, 0.87123171,
0.74547768, 0.74547768, 0.74547768, 0.74547768, 0.58374479,
0.58374479, 0.58374479, 0.58374479, 0.73207392, 0.73207392,
0.73207392, 0.73207392, 1.60503247, 1.60503247, 1.60503247,
1.60503247, 1.47308433, 1.47308433, 1.47308433, 1.47308433,
1.05348836, 1.05348836, 1.05348836, 1.05348836, 1.00182288,
1.00182288, 1.00182288, 1.00182288, 1.00000147, 1.00000147,
1.00000147, 1.00000147, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
6.26870362e-13, 6.26870362e-13, 6.26870362e-13, 6.26870362e-13,
1.08486278e-10, 1.08486278e-10, 1.08486278e-10, 1.08486278e-10,
7.72018265e-09, 7.72018265e-09, 7.72018265e-09, 7.72018265e-09,
3.08421177e-07, 3.08421177e-07, 3.08421177e-07, 3.08421177e-07,
7.88931508e-06, 7.88931508e-06, 7.88931508e-06, 7.88931508e-06,
1.38505209e-04, 1.38505209e-04, 1.38505209e-04, 1.38505209e-04,
1.73457409e-03, 1.73457409e-03, 1.73457409e-03, 1.73457409e-03,
1.58044887e-02, 1.58044887e-02, 1.58044887e-02, 1.58044887e-02,
1.05496410e-01, 1.05496410e-01, 1.05496410e-01, 1.05496410e-01,
5.16306177e-01, 5.16306177e-01, 5.16306177e-01, 5.16306177e-01,
1.86327287e+00, 1.86327287e+00, 1.86327287e+00, 1.86327287e+00,
5.07718607e+00, 5.07718607e+00, 5.07718607e+00, 5.07718607e+00,
1.06862908e+01, 1.06862908e+01, 1.06862908e+01, 1.06862908e+01,
1.67930222e+01, 1.67930222e+01, 1.67930222e+01, 1.67930222e+01,
2.18771845e+01, 2.18771845e+01, 2.18771845e+01, 2.18771845e+01,
1.69221015e+01, 1.69221015e+01, 1.69221015e+01, 1.69221015e+01,
5.93555418e+00, 5.93555418e+00, 5.93555418e+00, 5.93555418e+00,
2.67386567e-01, 2.67386567e-01, 2.67386567e-01, 2.67386567e-01,
9.03539515e-04, 9.03539515e-04, 9.03539515e-04, 9.03539515e-04,
1.74483618e-07, 1.74483618e-07, 1.74483618e-07, 1.74483618e-07,
2.04118254e-11, 2.04118254e-11, 2.04118254e-11, 2.04118254e-11,
2.17016642e-15, 2.17016642e-15, 2.17016642e-15, 2.17016642e-15,
1.97944057e-19, 1.97944057e-19, 1.97944057e-19, 1.97944057e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999705e+02, 9.99999705e+02, 9.99999705e+02, 9.99999705e+02,
9.99994818e+02, 9.99994818e+02, 9.99994818e+02, 9.99994818e+02,
9.99935102e+02, 9.99935102e+02, 9.99935102e+02, 9.99935102e+02,
9.99408895e+02, 9.99408895e+02, 9.99408895e+02, 9.99408895e+02,
9.96061988e+02, 9.96061988e+02, 9.96061988e+02, 9.96061988e+02,
9.80877450e+02, 9.80877450e+02, 9.80877450e+02, 9.80877450e+02,
9.32612348e+02, 9.32612348e+02, 9.32612348e+02, 9.32612348e+02,
8.26315203e+02, 8.26315203e+02, 8.26315203e+02, 8.26315203e+02,
6.66605385e+02, 6.66605385e+02, 6.66605385e+02, 6.66605385e+02,
5.27625315e+02, 5.27625315e+02, 5.27625315e+02, 5.27625315e+02,
4.48693030e+02, 4.48693030e+02, 4.48693030e+02, 4.48693030e+02,
3.34282701e+02, 3.34282701e+02, 3.34282701e+02, 3.34282701e+02,
5.93797144e+01, 5.93797144e+01, 5.93797144e+01, 5.93797144e+01,
6.98066976e-01, 6.98066976e-01, 6.98066976e-01, 6.98066976e-01,
1.02408618e-02, 1.02408618e-02, 1.02408618e-02, 1.02408618e-02,
1.00000206e-02, 1.00000206e-02, 1.00000206e-02, 1.00000206e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999945,
0.99999945, 0.99999945, 0.99999945, 0.99999352, 0.99999352,
0.99999352, 0.99999352, 0.99994026, 0.99994026, 0.99994026,
0.99994026, 0.99956877, 0.99956877, 0.99956877, 0.99956877,
0.99757146, 0.99757146, 0.99757146, 0.99757146, 0.98940582,
0.98940582, 0.98940582, 0.98940582, 0.96438863, 0.96438863,
0.96438863, 0.96438863, 0.90735626, 0.90735626, 0.90735626,
0.90735626, 0.80924072, 0.80924072, 0.80924072, 0.80924072,
0.69259558, 0.69259558, 0.69259558, 0.69259558, 0.55553296,
0.55553296, 0.55553296, 0.55553296, 0.63553693, 0.63553693,
0.63553693, 0.63553693, 1.41397872, 1.41397872, 1.41397872,
1.41397872, 1.81820124, 1.81820124, 1.81820124, 1.81820124,
1.20387024, 1.20387024, 1.20387024, 1.20387024, 1.01269879,
1.01269879, 1.01269879, 1.01269879, 1.00012068, 1.00012068,
1.00012068, 1.00012068, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.25264676e-14, 1.25264676e-14, 1.25264676e-14, 1.25264676e-14,
1.20223771e-12, 1.20223771e-12, 1.20223771e-12, 1.20223771e-12,
6.76403932e-11, 6.76403932e-11, 6.76403932e-11, 6.76403932e-11,
2.53837542e-09, 2.53837542e-09, 2.53837542e-09, 2.53837542e-09,
6.79851771e-08, 6.79851771e-08, 6.79851771e-08, 6.79851771e-08,
1.35400957e-06, 1.35400957e-06, 1.35400957e-06, 1.35400957e-06,
2.05807406e-05, 2.05807406e-05, 2.05807406e-05, 2.05807406e-05,
2.42573789e-04, 2.42573789e-04, 2.42573789e-04, 2.42573789e-04,
2.23546366e-03, 2.23546366e-03, 2.23546366e-03, 2.23546366e-03,
1.61374184e-02, 1.61374184e-02, 1.61374184e-02, 1.61374184e-02,
9.09392120e-02, 9.09392120e-02, 9.09392120e-02, 9.09392120e-02,
3.97807519e-01, 3.97807519e-01, 3.97807519e-01, 3.97807519e-01,
1.34962483e+00, 1.34962483e+00, 1.34962483e+00, 1.34962483e+00,
3.59635188e+00, 3.59635188e+00, 3.59635188e+00, 3.59635188e+00,
7.76598011e+00, 7.76598011e+00, 7.76598011e+00, 7.76598011e+00,
1.32165654e+01, 1.32165654e+01, 1.32165654e+01, 1.32165654e+01,
1.80416341e+01, 1.80416341e+01, 1.80416341e+01, 1.80416341e+01,
2.21202361e+01, 2.21202361e+01, 2.21202361e+01, 2.21202361e+01,
1.94936742e+01, 1.94936742e+01, 1.94936742e+01, 1.94936742e+01,
1.19370184e+01, 1.19370184e+01, 1.19370184e+01, 1.19370184e+01,
1.76105690e+00, 1.76105690e+00, 1.76105690e+00, 1.76105690e+00,
2.41795528e-02, 2.41795528e-02, 2.41795528e-02, 2.41795528e-02,
1.84851625e-05, 1.84851625e-05, 1.84851625e-05, 1.84851625e-05,
2.29350661e-09, 2.29350661e-09, 2.29350661e-09, 2.29350661e-09,
2.81251593e-13, 2.81251593e-13, 2.81251593e-13, 2.81251593e-13,
3.33754952e-17, 3.33754952e-17, 3.33754952e-17, 3.33754952e-17,
3.64817469e-21, 3.64817469e-21, 3.64817469e-21, 3.64817469e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999949e+02, 9.99999949e+02, 9.99999949e+02, 9.99999949e+02,
9.99999230e+02, 9.99999230e+02, 9.99999230e+02, 9.99999230e+02,
9.99990924e+02, 9.99990924e+02, 9.99990924e+02, 9.99990924e+02,
9.99916362e+02, 9.99916362e+02, 9.99916362e+02, 9.99916362e+02,
9.99396422e+02, 9.99396422e+02, 9.99396422e+02, 9.99396422e+02,
9.96603842e+02, 9.96603842e+02, 9.96603842e+02, 9.96603842e+02,
9.85228286e+02, 9.85228286e+02, 9.85228286e+02, 9.85228286e+02,
9.50716061e+02, 9.50716061e+02, 9.50716061e+02, 9.50716061e+02,
8.73656108e+02, 8.73656108e+02, 8.73656108e+02, 8.73656108e+02,
7.45930207e+02, 7.45930207e+02, 7.45930207e+02, 7.45930207e+02,
5.98241504e+02, 5.98241504e+02, 5.98241504e+02, 5.98241504e+02,
4.88987461e+02, 4.88987461e+02, 4.88987461e+02, 4.88987461e+02,
4.47945739e+02, 4.47945739e+02, 4.47945739e+02, 4.47945739e+02,
4.21683465e+02, 4.21683465e+02, 4.21683465e+02, 4.21683465e+02,
1.87467920e+02, 1.87467920e+02, 1.87467920e+02, 1.87467920e+02,
9.17847574e+00, 9.17847574e+00, 9.17847574e+00, 9.17847574e+00,
3.36232559e-02, 3.36232559e-02, 3.36232559e-02, 3.36232559e-02,
1.00022223e-02, 1.00022223e-02, 1.00022223e-02, 1.00022223e-02,
1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999992, 0.99999992, 0.99999992, 0.99999992,
0.99999906, 0.99999906, 0.99999906, 0.99999906, 0.9999913 ,
0.9999913 , 0.9999913 , 0.9999913 , 0.99993411, 0.99993411,
0.99993411, 0.99993411, 0.99959236, 0.99959236, 0.99959236,
0.99959236, 0.99795381, 0.99795381, 0.99795381, 0.99795381,
0.99173747, 0.99173747, 0.99173747, 0.99173747, 0.97334866,
0.97334866, 0.97334866, 0.97334866, 0.93132225, 0.93132225,
0.93132225, 0.93132225, 0.85670103, 0.85670103, 0.85670103,
0.85670103, 0.75179519, 0.75179519, 0.75179519, 0.75179519,
0.65703686, 0.65703686, 0.65703686, 0.65703686, 0.54101531,
0.54101531, 0.54101531, 0.54101531, 0.58205108, 0.58205108,
0.58205108, 0.58205108, 1.1130807 , 1.1130807 , 1.1130807 ,
1.1130807 , 1.96862265, 1.96862265, 1.96862265, 1.96862265,
1.57590593, 1.57590593, 1.57590593, 1.57590593, 1.05786987,
1.05786987, 1.05786987, 1.05786987, 1.00204055, 1.00204055,
1.00204055, 1.00204055, 1.0000019 , 1.0000019 , 1.0000019 ,
1.0000019 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.32029549e-14, 1.32029549e-14, 1.32029549e-14, 1.32029549e-14,
6.26759693e-13, 6.26759693e-13, 6.26759693e-13, 6.26759693e-13,
2.24647978e-11, 2.24647978e-11, 2.24647978e-11, 2.24647978e-11,
6.13853404e-10, 6.13853404e-10, 6.13853404e-10, 6.13853404e-10,
1.31518549e-08, 1.31518549e-08, 1.31518549e-08, 1.31518549e-08,
2.25105226e-07, 2.25105226e-07, 2.25105226e-07, 2.25105226e-07,
3.11704412e-06, 3.11704412e-06, 3.11704412e-06, 3.11704412e-06,
3.51988240e-05, 3.51988240e-05, 3.51988240e-05, 3.51988240e-05,
3.25473435e-04, 3.25473435e-04, 3.25473435e-04, 3.25473435e-04,
2.46554838e-03, 2.46554838e-03, 2.46554838e-03, 2.46554838e-03,
1.52545971e-02, 1.52545971e-02, 1.52545971e-02, 1.52545971e-02,
7.66123068e-02, 7.66123068e-02, 7.66123068e-02, 7.66123068e-02,
3.10021140e-01, 3.10021140e-01, 3.10021140e-01, 3.10021140e-01,
1.00682526e+00, 1.00682526e+00, 1.00682526e+00, 1.00682526e+00,
2.63965332e+00, 2.63965332e+00, 2.63965332e+00, 2.63965332e+00,
5.70034900e+00, 5.70034900e+00, 5.70034900e+00, 5.70034900e+00,
1.04061053e+01, 1.04061053e+01, 1.04061053e+01, 1.04061053e+01,
1.52105883e+01, 1.52105883e+01, 1.52105883e+01, 1.52105883e+01,
1.89069479e+01, 1.89069479e+01, 1.89069479e+01, 1.89069479e+01,
2.15955068e+01, 2.15955068e+01, 2.15955068e+01, 2.15955068e+01,
2.04770440e+01, 2.04770440e+01, 2.04770440e+01, 2.04770440e+01,
1.67010242e+01, 1.67010242e+01, 1.67010242e+01, 1.67010242e+01,
6.26776546e+00, 6.26776546e+00, 6.26776546e+00, 6.26776546e+00,
2.93122578e-01, 2.93122578e-01, 2.93122578e-01, 2.93122578e-01,
1.07322557e-03, 1.07322557e-03, 1.07322557e-03, 1.07322557e-03,
2.25735626e-07, 2.25735626e-07, 2.25735626e-07, 2.25735626e-07,
2.90996976e-11, 2.90996976e-11, 2.90996976e-11, 2.90996976e-11,
3.74345106e-15, 3.74345106e-15, 3.74345106e-15, 3.74345106e-15,
4.59216061e-19, 4.59216061e-19, 4.59216061e-19, 4.59216061e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999883e+02, 9.99999883e+02, 9.99999883e+02, 9.99999883e+02,
9.99998683e+02, 9.99998683e+02, 9.99998683e+02, 9.99998683e+02,
9.99987822e+02, 9.99987822e+02, 9.99987822e+02, 9.99987822e+02,
9.99907753e+02, 9.99907753e+02, 9.99907753e+02, 9.99907753e+02,
9.99429417e+02, 9.99429417e+02, 9.99429417e+02, 9.99429417e+02,
9.97137849e+02, 9.97137849e+02, 9.97137849e+02, 9.97137849e+02,
9.88467410e+02, 9.88467410e+02, 9.88467410e+02, 9.88467410e+02,
9.63001130e+02, 9.63001130e+02, 9.63001130e+02, 9.63001130e+02,
9.05679035e+02, 9.05679035e+02, 9.05679035e+02, 9.05679035e+02,
8.06647957e+02, 8.06647957e+02, 8.06647957e+02, 8.06647957e+02,
6.73299670e+02, 6.73299670e+02, 6.73299670e+02, 6.73299670e+02,
5.52322864e+02, 5.52322864e+02, 5.52322864e+02, 5.52322864e+02,
4.63896638e+02, 4.63896638e+02, 4.63896638e+02, 4.63896638e+02,
4.40267965e+02, 4.40267965e+02, 4.40267965e+02, 4.40267965e+02,
4.55404885e+02, 4.55404885e+02, 4.55404885e+02, 4.55404885e+02,
3.30608875e+02, 3.30608875e+02, 3.30608875e+02, 3.30608875e+02,
6.09057285e+01, 6.09057285e+01, 6.09057285e+01, 6.09057285e+01,
7.84789333e-01, 7.84789333e-01, 7.84789333e-01, 7.84789333e-01,
1.03005361e-02, 1.03005361e-02, 1.03005361e-02, 1.03005361e-02,
1.00000267e-02, 1.00000267e-02, 1.00000267e-02, 1.00000267e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999871, 0.99999871, 0.99999871, 0.99999871,
0.99998991, 0.99998991, 0.99998991, 0.99998991, 0.99993341,
0.99993341, 0.99993341, 0.99993341, 0.9996311 , 0.9996311 ,
0.9996311 , 0.9996311 , 0.99829672, 0.99829672, 0.99829672,
0.99829672, 0.99350175, 0.99350175, 0.99350175, 0.99350175,
0.97967166, 0.97967166, 0.97967166, 0.97967166, 0.94797565,
0.94797565, 0.94797565, 0.94797565, 0.89016937, 0.89016937,
0.89016937, 0.89016937, 0.80411713, 0.80411713, 0.80411713,
0.80411713, 0.70435588, 0.70435588, 0.70435588, 0.70435588,
0.63219176, 0.63219176, 0.63219176, 0.63219176, 0.53878399,
0.53878399, 0.53878399, 0.53878399, 0.55643947, 0.55643947,
0.55643947, 0.55643947, 0.8772511 , 0.8772511 , 0.8772511 ,
0.8772511 , 1.82224154, 1.82224154, 1.82224154, 1.82224154,
2.01854416, 2.01854416, 2.01854416, 2.01854416, 1.22314586,
1.22314586, 1.22314586, 1.22314586, 1.01361896, 1.01361896,
1.01361896, 1.01361896, 1.00014201, 1.00014201, 1.00014201,
1.00014201, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.66827014e-15, 5.66827014e-15, 5.66827014e-15, 5.66827014e-15,
2.06506951e-13, 2.06506951e-13, 2.06506951e-13, 2.06506951e-13,
5.66830764e-12, 5.66830764e-12, 5.66830764e-12, 5.66830764e-12,
1.27515789e-10, 1.27515789e-10, 1.27515789e-10, 1.27515789e-10,
2.36717323e-09, 2.36717323e-09, 2.36717323e-09, 2.36717323e-09,
3.66285384e-08, 3.66285384e-08, 3.66285384e-08, 3.66285384e-08,
4.75793331e-07, 4.75793331e-07, 4.75793331e-07, 4.75793331e-07,
5.21185121e-06, 5.21185121e-06, 5.21185121e-06, 5.21185121e-06,
4.82519858e-05, 4.82519858e-05, 4.82519858e-05, 4.82519858e-05,
3.77579977e-04, 3.77579977e-04, 3.77579977e-04, 3.77579977e-04,
2.49179255e-03, 2.49179255e-03, 2.49179255e-03, 2.49179255e-03,
1.38047063e-02, 1.38047063e-02, 1.38047063e-02, 1.38047063e-02,
6.37665597e-02, 6.37665597e-02, 6.37665597e-02, 6.37665597e-02,
2.43683102e-01, 2.43683102e-01, 2.43683102e-01, 2.43683102e-01,
7.66223944e-01, 7.66223944e-01, 7.66223944e-01, 7.66223944e-01,
1.98617391e+00, 1.98617391e+00, 1.98617391e+00, 1.98617391e+00,
4.30205955e+00, 4.30205955e+00, 4.30205955e+00, 4.30205955e+00,
8.00059653e+00, 8.00059653e+00, 8.00059653e+00, 8.00059653e+00,
1.25346822e+01, 1.25346822e+01, 1.25346822e+01, 1.25346822e+01,
1.68111435e+01, 1.68111435e+01, 1.68111435e+01, 1.68111435e+01,
1.95788515e+01, 1.95788515e+01, 1.95788515e+01, 1.95788515e+01,
2.10731533e+01, 2.10731533e+01, 2.10731533e+01, 2.10731533e+01,
2.05578258e+01, 2.05578258e+01, 2.05578258e+01, 2.05578258e+01,
1.90079024e+01, 1.90079024e+01, 1.90079024e+01, 1.90079024e+01,
1.21008552e+01, 1.21008552e+01, 1.21008552e+01, 1.21008552e+01,
1.89958249e+00, 1.89958249e+00, 1.89958249e+00, 1.89958249e+00,
2.69248743e-02, 2.69248743e-02, 2.69248743e-02, 2.69248743e-02,
2.23176477e-05, 2.23176477e-05, 2.23176477e-05, 2.23176477e-05,
2.89290650e-09, 2.89290650e-09, 2.89290650e-09, 2.89290650e-09,
3.71325919e-13, 3.71325919e-13, 3.71325919e-13, 3.71325919e-13,
4.73822364e-17, 4.73822364e-17, 4.73822364e-17, 4.73822364e-17,
4.48577786e-21, 4.48577786e-21, 4.48577786e-21, 4.48577786e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999982e+02, 9.99999982e+02, 9.99999982e+02, 9.99999982e+02,
9.99999805e+02, 9.99999805e+02, 9.99999805e+02, 9.99999805e+02,
9.99998195e+02, 9.99998195e+02, 9.99998195e+02, 9.99998195e+02,
9.99985872e+02, 9.99985872e+02, 9.99985872e+02, 9.99985872e+02,
9.99906771e+02, 9.99906771e+02, 9.99906771e+02, 9.99906771e+02,
9.99483625e+02, 9.99483625e+02, 9.99483625e+02, 9.99483625e+02,
9.97617059e+02, 9.97617059e+02, 9.97617059e+02, 9.97617059e+02,
9.90923338e+02, 9.90923338e+02, 9.90923338e+02, 9.90923338e+02,
9.71719329e+02, 9.71719329e+02, 9.71719329e+02, 9.71719329e+02,
9.28208660e+02, 9.28208660e+02, 9.28208660e+02, 9.28208660e+02,
8.50492018e+02, 8.50492018e+02, 8.50492018e+02, 8.50492018e+02,
7.38645328e+02, 7.38645328e+02, 7.38645328e+02, 7.38645328e+02,
6.14927640e+02, 6.14927640e+02, 6.14927640e+02, 6.14927640e+02,
5.21794916e+02, 5.21794916e+02, 5.21794916e+02, 5.21794916e+02,
4.51902595e+02, 4.51902595e+02, 4.51902595e+02, 4.51902595e+02,
4.36518666e+02, 4.36518666e+02, 4.36518666e+02, 4.36518666e+02,
4.58585341e+02, 4.58585341e+02, 4.58585341e+02, 4.58585341e+02,
4.14979500e+02, 4.14979500e+02, 4.14979500e+02, 4.14979500e+02,
1.85583423e+02, 1.85583423e+02, 1.85583423e+02, 1.85583423e+02,
9.86901789e+00, 9.86901789e+00, 9.86901789e+00, 9.86901789e+00,
3.72214496e-02, 3.72214496e-02, 3.72214496e-02, 3.72214496e-02,
1.00026945e-02, 1.00026945e-02, 1.00026945e-02, 1.00026945e-02,
1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999981, 0.99999981,
0.99999981, 0.99999981, 0.99999845, 0.99999845, 0.99999845,
0.99999845, 0.99998928, 0.99998928, 0.99998928, 0.99998928,
0.9999362 , 0.9999362 , 0.9999362 , 0.9999362 , 0.99967491,
0.99967491, 0.99967491, 0.99967491, 0.99859164, 0.99859164,
0.99859164, 0.99859164, 0.99485567, 0.99485567, 0.99485567,
0.99485567, 0.98427987, 0.98427987, 0.98427987, 0.98427987,
0.95996373, 0.95996373, 0.95996373, 0.95996373, 0.91464439,
0.91464439, 0.91464439, 0.91464439, 0.8452093 , 0.8452093 ,
0.8452093 , 0.8452093 , 0.75573999, 0.75573999, 0.75573999,
0.75573999, 0.66831355, 0.66831355, 0.66831355, 0.66831355,
0.61265528, 0.61265528, 0.61265528, 0.61265528, 0.54245435,
0.54245435, 0.54245435, 0.54245435, 0.54720556, 0.54720556,
0.54720556, 0.54720556, 0.73287 , 0.73287 , 0.73287 ,
0.73287 , 1.49708567, 1.49708567, 1.49708567, 1.49708567,
2.23159213, 2.23159213, 2.23159213, 2.23159213, 1.65090941,
1.65090941, 1.65090941, 1.65090941, 1.06180375, 1.06180375,
1.06180375, 1.06180375, 1.00222479, 1.00222479, 1.00222479,
1.00222479, 1.00000228, 1.00000228, 1.00000228, 1.00000228,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.18160649e-15, 1.18160649e-15, 1.18160649e-15, 1.18160649e-15,
5.46295183e-14, 5.46295183e-14, 5.46295183e-14, 5.46295183e-14,
1.23457577e-12, 1.23457577e-12, 1.23457577e-12, 1.23457577e-12,
2.43162832e-11, 2.43162832e-11, 2.43162832e-11, 2.43162832e-11,
4.08347672e-10, 4.08347672e-10, 4.08347672e-10, 4.08347672e-10,
5.88078054e-09, 5.88078054e-09, 5.88078054e-09, 5.88078054e-09,
7.29422461e-08, 7.29422461e-08, 7.29422461e-08, 7.29422461e-08,
7.81392346e-07, 7.81392346e-07, 7.81392346e-07, 7.81392346e-07,
7.23903884e-06, 7.23903884e-06, 7.23903884e-06, 7.23903884e-06,
5.79920652e-05, 5.79920652e-05, 5.79920652e-05, 5.79920652e-05,
4.01085979e-04, 4.01085979e-04, 4.01085979e-04, 4.01085979e-04,
2.38716000e-03, 2.38716000e-03, 2.38716000e-03, 2.38716000e-03,
1.21649982e-02, 1.21649982e-02, 1.21649982e-02, 1.21649982e-02,
5.27208845e-02, 5.27208845e-02, 5.27208845e-02, 5.27208845e-02,
1.92824879e-01, 1.92824879e-01, 1.92824879e-01, 1.92824879e-01,
5.91551803e-01, 5.91551803e-01, 5.91551803e-01, 5.91551803e-01,
1.52124836e+00, 1.52124836e+00, 1.52124836e+00, 1.52124836e+00,
3.30736543e+00, 3.30736543e+00, 3.30736543e+00, 3.30736543e+00,
6.19589413e+00, 6.19589413e+00, 6.19589413e+00, 6.19589413e+00,
1.02215292e+01, 1.02215292e+01, 1.02215292e+01, 1.02215292e+01,
1.42224996e+01, 1.42224996e+01, 1.42224996e+01, 1.42224996e+01,
1.79365451e+01, 1.79365451e+01, 1.79365451e+01, 1.79365451e+01,
2.00798991e+01, 2.00798991e+01, 2.00798991e+01, 2.00798991e+01,
2.07710129e+01, 2.07710129e+01, 2.07710129e+01, 2.07710129e+01,
2.03738724e+01, 2.03738724e+01, 2.03738724e+01, 2.03738724e+01,
1.98546337e+01, 1.98546337e+01, 1.98546337e+01, 1.98546337e+01,
1.64879617e+01, 1.64879617e+01, 1.64879617e+01, 1.64879617e+01,
6.52271251e+00, 6.52271251e+00, 6.52271251e+00, 6.52271251e+00,
3.18021766e-01, 3.18021766e-01, 3.18021766e-01, 3.18021766e-01,
1.23367760e-03, 1.23367760e-03, 1.23367760e-03, 1.23367760e-03,
2.70934864e-07, 2.70934864e-07, 2.70934864e-07, 2.70934864e-07,
3.52019501e-11, 3.52019501e-11, 3.52019501e-11, 3.52019501e-11,
4.64992921e-15, 4.64992921e-15, 4.64992921e-15, 4.64992921e-15,
6.02331549e-19, 6.02331549e-19, 6.02331549e-19, 6.02331549e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999971e+02, 9.99999971e+02, 9.99999971e+02, 9.99999971e+02,
9.99999729e+02, 9.99999729e+02, 9.99999729e+02, 9.99999729e+02,
9.99997830e+02, 9.99997830e+02, 9.99997830e+02, 9.99997830e+02,
9.99984993e+02, 9.99984993e+02, 9.99984993e+02, 9.99984993e+02,
9.99910685e+02, 9.99910685e+02, 9.99910685e+02, 9.99910685e+02,
9.99544941e+02, 9.99544941e+02, 9.99544941e+02, 9.99544941e+02,
9.98029370e+02, 9.98029370e+02, 9.98029370e+02, 9.98029370e+02,
9.92810695e+02, 9.92810695e+02, 9.92810695e+02, 9.92810695e+02,
9.78097477e+02, 9.78097477e+02, 9.78097477e+02, 9.78097477e+02,
9.44564417e+02, 9.44564417e+02, 9.44564417e+02, 9.44564417e+02,
8.83069293e+02, 8.83069293e+02, 8.83069293e+02, 8.83069293e+02,
7.91287043e+02, 7.91287043e+02, 7.91287043e+02, 7.91287043e+02,
6.77341634e+02, 6.77341634e+02, 6.77341634e+02, 6.77341634e+02,
5.71866254e+02, 5.71866254e+02, 5.71866254e+02, 5.71866254e+02,
4.98838482e+02, 4.98838482e+02, 4.98838482e+02, 4.98838482e+02,
4.47748470e+02, 4.47748470e+02, 4.47748470e+02, 4.47748470e+02,
4.36925122e+02, 4.36925122e+02, 4.36925122e+02, 4.36925122e+02,
4.54783175e+02, 4.54783175e+02, 4.54783175e+02, 4.54783175e+02,
4.45896460e+02, 4.45896460e+02, 4.45896460e+02, 4.45896460e+02,
3.20411762e+02, 3.20411762e+02, 3.20411762e+02, 3.20411762e+02,
6.15900758e+01, 6.15900758e+01, 6.15900758e+01, 6.15900758e+01,
8.63421907e-01, 8.63421907e-01, 8.63421907e-01, 8.63421907e-01,
1.03623773e-02, 1.03623773e-02, 1.03623773e-02, 1.03623773e-02,
1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999976,
0.99999976, 0.99999976, 0.99999976, 0.99999829, 0.99999829,
0.99999829, 0.99999829, 0.99998925, 0.99998925, 0.99998925,
0.99998925, 0.99994097, 0.99994097, 0.99994097, 0.99994097,
0.99971837, 0.99971837, 0.99971837, 0.99971837, 0.99883983,
0.99883983, 0.99883983, 0.99883983, 0.99590578, 0.99590578,
0.99590578, 0.99590578, 0.98771715, 0.98771715, 0.98771715,
0.98771715, 0.9688216 , 0.9688216 , 0.9688216 , 0.9688216 ,
0.93291927, 0.93291927, 0.93291927, 0.93291927, 0.87626891,
0.87626891, 0.87626891, 0.87626891, 0.79977768, 0.79977768,
0.79977768, 0.79977768, 0.71616692, 0.71616692, 0.71616692,
0.71616692, 0.6411649 , 0.6411649 , 0.6411649 , 0.6411649 ,
0.59775517, 0.59775517, 0.59775517, 0.59775517, 0.54673392,
0.54673392, 0.54673392, 0.54673392, 0.54631056, 0.54631056,
0.54631056, 0.54631056, 0.65073939, 0.65073939, 0.65073939,
0.65073939, 1.1624501 , 1.1624501 , 1.1624501 , 1.1624501 ,
2.15930703, 2.15930703, 2.15930703, 2.15930703, 2.16998 ,
2.16998 , 2.16998 , 2.16998 , 1.23507778, 1.23507778,
1.23507778, 1.23507778, 1.0142605 , 1.0142605 , 1.0142605 ,
1.0142605 , 1.00015687, 1.00015687, 1.00015687, 1.00015687,
1.00000003, 1.00000003, 1.00000003, 1.00000003, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.27454384e-14, 1.27454384e-14, 1.27454384e-14, 1.27454384e-14,
2.47272091e-13, 2.47272091e-13, 2.47272091e-13, 2.47272091e-13,
4.40240671e-12, 4.40240671e-12, 4.40240671e-12, 4.40240671e-12,
6.86645339e-11, 6.86645339e-11, 6.86645339e-11, 6.86645339e-11,
9.37022264e-10, 9.37022264e-10, 9.37022264e-10, 9.37022264e-10,
1.12236099e-08, 1.12236099e-08, 1.12236099e-08, 1.12236099e-08,
1.18207072e-07, 1.18207072e-07, 1.18207072e-07, 1.18207072e-07,
1.09557226e-06, 1.09557226e-06, 1.09557226e-06, 1.09557226e-06,
8.93418660e-06, 8.93418660e-06, 8.93418660e-06, 8.93418660e-06,
6.40278059e-05, 6.40278059e-05, 6.40278059e-05, 6.40278059e-05,
4.02322799e-04, 4.02322799e-04, 4.02322799e-04, 4.02322799e-04,
2.20855552e-03, 2.20855552e-03, 2.20855552e-03, 2.20855552e-03,
1.05384211e-02, 1.05384211e-02, 1.05384211e-02, 1.05384211e-02,
4.34263931e-02, 4.34263931e-02, 4.34263931e-02, 4.34263931e-02,
1.53409739e-01, 1.53409739e-01, 1.53409739e-01, 1.53409739e-01,
4.61635401e-01, 4.61635401e-01, 4.61635401e-01, 4.61635401e-01,
1.18057615e+00, 1.18057615e+00, 1.18057615e+00, 1.18057615e+00,
2.57891597e+00, 2.57891597e+00, 2.57891597e+00, 2.57891597e+00,
4.88068740e+00, 4.88068740e+00, 4.88068740e+00, 4.88068740e+00,
8.19631338e+00, 8.19631338e+00, 8.19631338e+00, 8.19631338e+00,
1.20755557e+01, 1.20755557e+01, 1.20755557e+01, 1.20755557e+01,
1.56119331e+01, 1.56119331e+01, 1.56119331e+01, 1.56119331e+01,
1.86987153e+01, 1.86987153e+01, 1.86987153e+01, 1.86987153e+01,
2.03804546e+01, 2.03804546e+01, 2.03804546e+01, 2.03804546e+01,
2.06321628e+01, 2.06321628e+01, 2.06321628e+01, 2.06321628e+01,
2.02171402e+01, 2.02171402e+01, 2.02171402e+01, 2.02171402e+01,
2.00646475e+01, 2.00646475e+01, 2.00646475e+01, 2.00646475e+01,
1.86620483e+01, 1.86620483e+01, 1.86620483e+01, 1.86620483e+01,
1.20985558e+01, 1.20985558e+01, 1.20985558e+01, 1.20985558e+01,
1.97692771e+00, 1.97692771e+00, 1.97692771e+00, 1.97692771e+00,
2.87213238e-02, 2.87213238e-02, 2.87213238e-02, 2.87213238e-02,
2.50770351e-05, 2.50770351e-05, 2.50770351e-05, 2.50770351e-05,
3.37123734e-09, 3.37123734e-09, 3.37123734e-09, 3.37123734e-09,
4.42163288e-13, 4.42163288e-13, 4.42163288e-13, 4.42163288e-13,
5.71495239e-17, 5.71495239e-17, 5.71495239e-17, 5.71495239e-17,
4.50269287e-21, 4.50269287e-21, 4.50269287e-21, 4.50269287e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
9.99999666e+02, 9.99999666e+02, 9.99999666e+02, 9.99999666e+02,
9.99997604e+02, 9.99997604e+02, 9.99997604e+02, 9.99997604e+02,
9.99984947e+02, 9.99984947e+02, 9.99984947e+02, 9.99984947e+02,
9.99917367e+02, 9.99917367e+02, 9.99917367e+02, 9.99917367e+02,
9.99605771e+02, 9.99605771e+02, 9.99605771e+02, 9.99605771e+02,
9.98376476e+02, 9.98376476e+02, 9.98376476e+02, 9.98376476e+02,
9.94276002e+02, 9.94276002e+02, 9.94276002e+02, 9.94276002e+02,
9.82867864e+02, 9.82867864e+02, 9.82867864e+02, 9.82867864e+02,
9.56722442e+02, 9.56722442e+02, 9.56722442e+02, 9.56722442e+02,
9.07673554e+02, 9.07673554e+02, 9.07673554e+02, 9.07673554e+02,
8.31875435e+02, 8.31875435e+02, 8.31875435e+02, 8.31875435e+02,
7.32668167e+02, 7.32668167e+02, 7.32668167e+02, 7.32668167e+02,
6.27675900e+02, 6.27675900e+02, 6.27675900e+02, 6.27675900e+02,
5.40641296e+02, 5.40641296e+02, 5.40641296e+02, 5.40641296e+02,
4.81411714e+02, 4.81411714e+02, 4.81411714e+02, 4.81411714e+02,
4.46388141e+02, 4.46388141e+02, 4.46388141e+02, 4.46388141e+02,
4.39501351e+02, 4.39501351e+02, 4.39501351e+02, 4.39501351e+02,
4.52157297e+02, 4.52157297e+02, 4.52157297e+02, 4.52157297e+02,
4.52775903e+02, 4.52775903e+02, 4.52775903e+02, 4.52775903e+02,
4.01828833e+02, 4.01828833e+02, 4.01828833e+02, 4.01828833e+02,
1.79447659e+02, 1.79447659e+02, 1.79447659e+02, 1.79447659e+02,
1.01968433e+01, 1.01968433e+01, 1.01968433e+01, 1.01968433e+01,
3.95481482e-02, 3.95481482e-02, 3.95481482e-02, 3.95481482e-02,
1.00030400e-02, 1.00030400e-02, 1.00030400e-02, 1.00030400e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999973, 0.99999973, 0.99999973, 0.99999973, 0.99999822,
0.99999822, 0.99999822, 0.99999822, 0.99998963, 0.99998963,
0.99998963, 0.99998963, 0.99994668, 0.99994668, 0.99994668,
0.99994668, 0.99975882, 0.99975882, 0.99975882, 0.99975882,
0.99904627, 0.99904627, 0.99904627, 0.99904627, 0.99672714,
0.99672714, 0.99672714, 0.99672714, 0.99032541, 0.99032541,
0.99032541, 0.99032541, 0.97549498, 0.97549498, 0.97549498,
0.97549498, 0.94682189, 0.94682189, 0.94682189, 0.94682189,
0.90035943, 0.90035943, 0.90035943, 0.90035943, 0.83595399,
0.83595399, 0.83595399, 0.83595399, 0.75816608, 0.75816608,
0.75816608, 0.75816608, 0.68548506, 0.68548506, 0.68548506,
0.68548506, 0.6201578 , 0.6201578 , 0.6201578 , 0.6201578 ,
0.58688385, 0.58688385, 0.58688385, 0.58688385, 0.55035053,
0.55035053, 0.55035053, 0.55035053, 0.54815759, 0.54815759,
0.54815759, 0.54815759, 0.6060835 , 0.6060835 , 0.6060835 ,
0.6060835 , 0.93361729, 0.93361729, 0.93361729, 0.93361729,
1.87007459, 1.87007459, 1.87007459, 1.87007459, 2.43252002,
2.43252002, 2.43252002, 2.43252002, 1.69813853, 1.69813853,
1.69813853, 1.69813853, 1.06363124, 1.06363124, 1.06363124,
1.06363124, 1.00230929, 1.00230929, 1.00230929, 1.00230929,
1.00000249, 1.00000249, 1.00000249, 1.00000249, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.17918877e-15, 1.17918877e-15, 1.17918877e-15, 1.17918877e-15,
4.63192568e-14, 4.63192568e-14, 4.63192568e-14, 4.63192568e-14,
7.72269119e-13, 7.72269119e-13, 7.72269119e-13, 7.72269119e-13,
1.13606117e-11, 1.13606117e-11, 1.13606117e-11, 1.13606117e-11,
1.48668973e-10, 1.48668973e-10, 1.48668973e-10, 1.48668973e-10,
1.73273478e-09, 1.73273478e-09, 1.73273478e-09, 1.73273478e-09,
1.80065644e-08, 1.80065644e-08, 1.80065644e-08, 1.80065644e-08,
1.66938246e-07, 1.66938246e-07, 1.66938246e-07, 1.66938246e-07,
1.38047343e-06, 1.38047343e-06, 1.38047343e-06, 1.38047343e-06,
1.01730358e-05, 1.01730358e-05, 1.01730358e-05, 1.01730358e-05,
6.66926861e-05, 6.66926861e-05, 6.66926861e-05, 6.66926861e-05,
3.87946266e-04, 3.87946266e-04, 3.87946266e-04, 3.87946266e-04,
1.99495582e-03, 1.99495582e-03, 1.99495582e-03, 1.99495582e-03,
9.02485988e-03, 9.02485988e-03, 9.02485988e-03, 9.02485988e-03,
3.56969786e-02, 3.56969786e-02, 3.56969786e-02, 3.56969786e-02,
1.22599309e-01, 1.22599309e-01, 1.22599309e-01, 1.22599309e-01,
3.63265196e-01, 3.63265196e-01, 3.63265196e-01, 3.63265196e-01,
9.25486637e-01, 9.25486637e-01, 9.25486637e-01, 9.25486637e-01,
2.03251679e+00, 2.03251679e+00, 2.03251679e+00, 2.03251679e+00,
3.88754026e+00, 3.88754026e+00, 3.88754026e+00, 3.88754026e+00,
6.59692847e+00, 6.59692847e+00, 6.59692847e+00, 6.59692847e+00,
1.00916624e+01, 1.00916624e+01, 1.00916624e+01, 1.00916624e+01,
1.36128329e+01, 1.36128329e+01, 1.36128329e+01, 1.36128329e+01,
1.67200615e+01, 1.67200615e+01, 1.67200615e+01, 1.67200615e+01,
1.92196842e+01, 1.92196842e+01, 1.92196842e+01, 1.92196842e+01,
2.05019813e+01, 2.05019813e+01, 2.05019813e+01, 2.05019813e+01,
2.05553746e+01, 2.05553746e+01, 2.05553746e+01, 2.05553746e+01,
2.01200849e+01, 2.01200849e+01, 2.01200849e+01, 2.01200849e+01,
2.00852609e+01, 2.00852609e+01, 2.00852609e+01, 2.00852609e+01,
1.95505845e+01, 1.95505845e+01, 1.95505845e+01, 1.95505845e+01,
1.62261910e+01, 1.62261910e+01, 1.62261910e+01, 1.62261910e+01,
6.54866545e+00, 6.54866545e+00, 6.54866545e+00, 6.54866545e+00,
3.24170699e-01, 3.24170699e-01, 3.24170699e-01, 3.24170699e-01,
1.29707680e-03, 1.29707680e-03, 1.29707680e-03, 1.29707680e-03,
2.95706974e-07, 2.95706974e-07, 2.95706974e-07, 2.95706974e-07,
3.91707739e-11, 3.91707739e-11, 3.91707739e-11, 3.91707739e-11,
5.29501501e-15, 5.29501501e-15, 5.29501501e-15, 5.29501501e-15,
6.89647830e-19, 6.89647830e-19, 6.89647830e-19, 6.89647830e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999948e+02, 9.99999948e+02, 9.99999948e+02, 9.99999948e+02,
9.99999619e+02, 9.99999619e+02, 9.99999619e+02, 9.99999619e+02,
9.99997505e+02, 9.99997505e+02, 9.99997505e+02, 9.99997505e+02,
9.99985485e+02, 9.99985485e+02, 9.99985485e+02, 9.99985485e+02,
9.99925359e+02, 9.99925359e+02, 9.99925359e+02, 9.99925359e+02,
9.99662381e+02, 9.99662381e+02, 9.99662381e+02, 9.99662381e+02,
9.98665240e+02, 9.98665240e+02, 9.98665240e+02, 9.98665240e+02,
9.95422968e+02, 9.95422968e+02, 9.95422968e+02, 9.95422968e+02,
9.86494880e+02, 9.86494880e+02, 9.86494880e+02, 9.86494880e+02,
9.65922616e+02, 9.65922616e+02, 9.65922616e+02, 9.65922616e+02,
9.26549448e+02, 9.26549448e+02, 9.26549448e+02, 9.26549448e+02,
8.63811003e+02, 8.63811003e+02, 8.63811003e+02, 8.63811003e+02,
7.79005137e+02, 7.79005137e+02, 7.79005137e+02, 7.79005137e+02,
6.79897934e+02, 6.79897934e+02, 6.79897934e+02, 6.79897934e+02,
5.89818941e+02, 5.89818941e+02, 5.89818941e+02, 5.89818941e+02,
5.17012382e+02, 5.17012382e+02, 5.17012382e+02, 5.17012382e+02,
4.68673522e+02, 4.68673522e+02, 4.68673522e+02, 4.68673522e+02,
4.45586337e+02, 4.45586337e+02, 4.45586337e+02, 4.45586337e+02,
4.42497030e+02, 4.42497030e+02, 4.42497030e+02, 4.42497030e+02,
4.51096789e+02, 4.51096789e+02, 4.51096789e+02, 4.51096789e+02,
4.53476996e+02, 4.53476996e+02, 4.53476996e+02, 4.53476996e+02,
4.36824668e+02, 4.36824668e+02, 4.36824668e+02, 4.36824668e+02,
3.07120077e+02, 3.07120077e+02, 3.07120077e+02, 3.07120077e+02,
5.92749963e+01, 5.92749963e+01, 5.92749963e+01, 5.92749963e+01,
8.68726123e-01, 8.68726123e-01, 8.68726123e-01, 8.68726123e-01,
1.03848280e-02, 1.03848280e-02, 1.03848280e-02, 1.03848280e-02,
1.00000350e-02, 1.00000350e-02, 1.00000350e-02, 1.00000350e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999996, 0.99999996, 0.99999996,
0.99999996, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
0.99999822, 0.99999822, 0.99999822, 0.99999822, 0.99999028,
0.99999028, 0.99999028, 0.99999028, 0.99995266, 0.99995266,
0.99995266, 0.99995266, 0.99979512, 0.99979512, 0.99979512,
0.99979512, 0.99921684, 0.99921684, 0.99921684, 0.99921684,
0.99737403, 0.99737403, 0.99737403, 0.99737403, 0.9923308 ,
0.9923308 , 0.9923308 , 0.9923308 , 0.98059926, 0.98059926,
0.98059926, 0.98059926, 0.95755427, 0.95755427, 0.95755427,
0.95755427, 0.91927574, 0.91927574, 0.91927574, 0.91927574,
0.86476987, 0.86476987, 0.86476987, 0.86476987, 0.79618357,
0.79618357, 0.79618357, 0.79618357, 0.72306218, 0.72306218,
0.72306218, 0.72306218, 0.66150523, 0.66150523, 0.66150523,
0.66150523, 0.60422085, 0.60422085, 0.60422085, 0.60422085,
0.57924424, 0.57924424, 0.57924424, 0.57924424, 0.55336757,
0.55336757, 0.55336757, 0.55336757, 0.55041993, 0.55041993,
0.55041993, 0.55041993, 0.58277776, 0.58277776, 0.58277776,
0.58277776, 0.78662431, 0.78662431, 0.78662431, 0.78662431,
1.48769623, 1.48769623, 1.48769623, 1.48769623, 2.43758196,
2.43758196, 2.43758196, 2.43758196, 2.27678193, 2.27678193,
2.27678193, 2.27678193, 1.23532054, 1.23532054, 1.23532054,
1.23532054, 1.0142013 , 1.0142013 , 1.0142013 , 1.0142013 ,
1.00015564, 1.00015564, 1.00015564, 1.00015564, 1.00000003,
1.00000003, 1.00000003, 1.00000003, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
7.84780571e-15, 7.84780571e-15, 7.84780571e-15, 7.84780571e-15,
1.31247225e-13, 1.31247225e-13, 1.31247225e-13, 1.31247225e-13,
1.86099744e-12, 1.86099744e-12, 1.86099744e-12, 1.86099744e-12,
2.35229555e-11, 2.35229555e-11, 2.35229555e-11, 2.35229555e-11,
2.68230159e-10, 2.68230159e-10, 2.68230159e-10, 2.68230159e-10,
2.75761076e-09, 2.75761076e-09, 2.75761076e-09, 2.75761076e-09,
2.55719231e-08, 2.55719231e-08, 2.55719231e-08, 2.55719231e-08,
2.13858422e-07, 2.13858422e-07, 2.13858422e-07, 2.13858422e-07,
1.61179086e-06, 1.61179086e-06, 1.61179086e-06, 1.61179086e-06,
1.09330523e-05, 1.09330523e-05, 1.09330523e-05, 1.09330523e-05,
6.66147485e-05, 6.66147485e-05, 6.66147485e-05, 6.66147485e-05,
3.63590132e-04, 3.63590132e-04, 3.63590132e-04, 3.63590132e-04,
1.77131328e-03, 1.77131328e-03, 1.77131328e-03, 1.77131328e-03,
7.66654068e-03, 7.66654068e-03, 7.66654068e-03, 7.66654068e-03,
2.93110700e-02, 2.93110700e-02, 2.93110700e-02, 2.93110700e-02,
9.83453389e-02, 9.83453389e-02, 9.83453389e-02, 9.83453389e-02,
2.87757346e-01, 2.87757346e-01, 2.87757346e-01, 2.87757346e-01,
7.31271666e-01, 7.31271666e-01, 7.31271666e-01, 7.31271666e-01,
1.61513497e+00, 1.61513497e+00, 1.61513497e+00, 1.61513497e+00,
3.12319769e+00, 3.12319769e+00, 3.12319769e+00, 3.12319769e+00,
5.36427327e+00, 5.36427327e+00, 5.36427327e+00, 5.36427327e+00,
8.35732099e+00, 8.35732099e+00, 8.35732099e+00, 8.35732099e+00,
1.16892047e+01, 1.16892047e+01, 1.16892047e+01, 1.16892047e+01,
1.49052400e+01, 1.49052400e+01, 1.49052400e+01, 1.49052400e+01,
1.76214127e+01, 1.76214127e+01, 1.76214127e+01, 1.76214127e+01,
1.95882774e+01, 1.95882774e+01, 1.95882774e+01, 1.95882774e+01,
2.05031852e+01, 2.05031852e+01, 2.05031852e+01, 2.05031852e+01,
2.04829872e+01, 2.04829872e+01, 2.04829872e+01, 2.04829872e+01,
2.00863226e+01, 2.00863226e+01, 2.00863226e+01, 2.00863226e+01,
2.00679880e+01, 2.00679880e+01, 2.00679880e+01, 2.00679880e+01,
1.98869708e+01, 1.98869708e+01, 1.98869708e+01, 1.98869708e+01,
1.83990451e+01, 1.83990451e+01, 1.83990451e+01, 1.83990451e+01,
1.18973605e+01, 1.18973605e+01, 1.18973605e+01, 1.18973605e+01,
1.92593412e+00, 1.92593412e+00, 1.92593412e+00, 1.92593412e+00,
2.78926539e-02, 2.78926539e-02, 2.78926539e-02, 2.78926539e-02,
2.46303900e-05, 2.46303900e-05, 2.46303900e-05, 2.46303900e-05,
3.45965769e-09, 3.45965769e-09, 3.45965769e-09, 3.45965769e-09,
4.70814125e-13, 4.70814125e-13, 4.70814125e-13, 4.70814125e-13,
6.25944971e-17, 6.25944971e-17, 6.25944971e-17, 6.25944971e-17,
1.40917331e-20, 1.40917331e-20, 1.40917331e-20, 1.40917331e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999940e+02, 9.99999940e+02, 9.99999940e+02, 9.99999940e+02,
9.99999591e+02, 9.99999591e+02, 9.99999591e+02, 9.99999591e+02,
9.99997508e+02, 9.99997508e+02, 9.99997508e+02, 9.99997508e+02,
9.99986396e+02, 9.99986396e+02, 9.99986396e+02, 9.99986396e+02,
9.99933726e+02, 9.99933726e+02, 9.99933726e+02, 9.99933726e+02,
9.99713187e+02, 9.99713187e+02, 9.99713187e+02, 9.99713187e+02,
9.98903881e+02, 9.98903881e+02, 9.98903881e+02, 9.98903881e+02,
9.96326802e+02, 9.96326802e+02, 9.96326802e+02, 9.96326802e+02,
9.89287663e+02, 9.89287663e+02, 9.89287663e+02, 9.89287663e+02,
9.72982839e+02, 9.72982839e+02, 9.72982839e+02, 9.72982839e+02,
9.41213875e+02, 9.41213875e+02, 9.41213875e+02, 9.41213875e+02,
8.89161214e+02, 8.89161214e+02, 8.89161214e+02, 8.89161214e+02,
8.16557244e+02, 8.16557244e+02, 8.16557244e+02, 8.16557244e+02,
7.27792873e+02, 7.27792873e+02, 7.27792873e+02, 7.27792873e+02,
6.36091679e+02, 6.36091679e+02, 6.36091679e+02, 6.36091679e+02,
5.60608656e+02, 5.60608656e+02, 5.60608656e+02, 5.60608656e+02,
4.99456928e+02, 4.99456928e+02, 4.99456928e+02, 4.99456928e+02,
4.59916263e+02, 4.59916263e+02, 4.59916263e+02, 4.59916263e+02,
4.44832936e+02, 4.44832936e+02, 4.44832936e+02, 4.44832936e+02,
4.44855833e+02, 4.44855833e+02, 4.44855833e+02, 4.44855833e+02,
4.51329612e+02, 4.51329612e+02, 4.51329612e+02, 4.51329612e+02,
4.53075538e+02, 4.53075538e+02, 4.53075538e+02, 4.53075538e+02,
4.48914983e+02, 4.48914983e+02, 4.48914983e+02, 4.48914983e+02,
3.89344412e+02, 3.89344412e+02, 3.89344412e+02, 3.89344412e+02,
1.69288930e+02, 1.69288930e+02, 1.69288930e+02, 1.69288930e+02,
9.65027996e+00, 9.65027996e+00, 9.65027996e+00, 9.65027996e+00,
3.79449184e-02, 3.79449184e-02, 3.79449184e-02, 3.79449184e-02,
1.00029784e-02, 1.00029784e-02, 1.00029784e-02, 1.00029784e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.9999997 , 0.9999997 , 0.9999997 ,
0.9999997 , 0.99999828, 0.99999828, 0.99999828, 0.99999828,
0.99999108, 0.99999108, 0.99999108, 0.99999108, 0.9999585 ,
0.9999585 , 0.9999585 , 0.9999585 , 0.99982697, 0.99982697,
0.99982697, 0.99982697, 0.99935725, 0.99935725, 0.99935725,
0.99935725, 0.99788644, 0.99788644, 0.99788644, 0.99788644,
0.99388871, 0.99388871, 0.99388871, 0.99388871, 0.98455003,
0.98455003, 0.98455003, 0.98455003, 0.96593499, 0.96593499,
0.96593499, 0.96593499, 0.9342993 , 0.9342993 , 0.9342993 ,
0.9342993 , 0.88804292, 0.88804292, 0.88804292, 0.88804292,
0.82849089, 0.82849089, 0.82849089, 0.82849089, 0.75995557,
0.75995557, 0.75995557, 0.75995557, 0.6948101 , 0.6948101 ,
0.6948101 , 0.6948101 , 0.64178791, 0.64178791, 0.64178791,
0.64178791, 0.59207003, 0.59207003, 0.59207003, 0.59207003,
0.57419756, 0.57419756, 0.57419756, 0.57419756, 0.55596457,
0.55596457, 0.55596457, 0.55596457, 0.5528484 , 0.5528484 ,
0.5528484 , 0.5528484 , 0.57066328, 0.57066328, 0.57066328,
0.57066328, 0.69535413, 0.69535413, 0.69535413, 0.69535413,
1.17867884, 1.17867884, 1.17867884, 1.17867884, 2.21167836,
2.21167836, 2.21167836, 2.21167836, 2.60264521, 2.60264521,
2.60264521, 2.60264521, 1.7128863 , 1.7128863 , 1.7128863 ,
1.7128863 , 1.06202573, 1.06202573, 1.06202573, 1.06202573,
1.00220672, 1.00220672, 1.00220672, 1.00220672, 1.00000228,
1.00000228, 1.00000228, 1.00000228, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.82667535e-16, 5.82667535e-16, 5.82667535e-16, 5.82667535e-16,
2.37807029e-14, 2.37807029e-14, 2.37807029e-14, 2.37807029e-14,
3.03202404e-13, 3.03202404e-13, 3.03202404e-13, 3.03202404e-13,
3.71371250e-12, 3.71371250e-12, 3.71371250e-12, 3.71371250e-12,
4.16077225e-11, 4.16077225e-11, 4.16077225e-11, 4.16077225e-11,
4.24016982e-10, 4.24016982e-10, 4.24016982e-10, 4.24016982e-10,
3.93302512e-09, 3.93302512e-09, 3.93302512e-09, 3.93302512e-09,
3.32002473e-08, 3.32002473e-08, 3.32002473e-08, 3.32002473e-08,
2.54903725e-07, 2.54903725e-07, 2.54903725e-07, 2.54903725e-07,
1.77822075e-06, 1.77822075e-06, 1.77822075e-06, 1.77822075e-06,
1.12541158e-05, 1.12541158e-05, 1.12541158e-05, 1.12541158e-05,
6.44841773e-05, 6.44841773e-05, 6.44841773e-05, 6.44841773e-05,
3.33602038e-04, 3.33602038e-04, 3.33602038e-04, 3.33602038e-04,
1.55281901e-03, 1.55281901e-03, 1.55281901e-03, 1.55281901e-03,
6.47471971e-03, 6.47471971e-03, 6.47471971e-03, 6.47471971e-03,
2.40547896e-02, 2.40547896e-02, 2.40547896e-02, 2.40547896e-02,
7.91410207e-02, 7.91410207e-02, 7.91410207e-02, 7.91410207e-02,
2.29173025e-01, 2.29173025e-01, 2.29173025e-01, 2.29173025e-01,
5.81473724e-01, 5.81473724e-01, 5.81473724e-01, 5.81473724e-01,
1.29181150e+00, 1.29181150e+00, 1.29181150e+00, 1.29181150e+00,
2.52541673e+00, 2.52541673e+00, 2.52541673e+00, 2.52541673e+00,
4.39364483e+00, 4.39364483e+00, 4.39364483e+00, 4.39364483e+00,
6.92177553e+00, 6.92177553e+00, 6.92177553e+00, 6.92177553e+00,
1.00062705e+01, 1.00062705e+01, 1.00062705e+01, 1.00062705e+01,
1.30551463e+01, 1.30551463e+01, 1.30551463e+01, 1.30551463e+01,
1.59467542e+01, 1.59467542e+01, 1.59467542e+01, 1.59467542e+01,
1.83397628e+01, 1.83397628e+01, 1.83397628e+01, 1.83397628e+01,
1.98657446e+01, 1.98657446e+01, 1.98657446e+01, 1.98657446e+01,
2.04639329e+01, 2.04639329e+01, 2.04639329e+01, 2.04639329e+01,
2.03869143e+01, 2.03869143e+01, 2.03869143e+01, 2.03869143e+01,
2.00832064e+01, 2.00832064e+01, 2.00832064e+01, 2.00832064e+01,
2.00558910e+01, 2.00558910e+01, 2.00558910e+01, 2.00558910e+01,
1.99917512e+01, 1.99917512e+01, 1.99917512e+01, 1.99917512e+01,
1.93663021e+01, 1.93663021e+01, 1.93663021e+01, 1.93663021e+01,
1.59156770e+01, 1.59156770e+01, 1.59156770e+01, 1.59156770e+01,
6.34602264e+00, 6.34602264e+00, 6.34602264e+00, 6.34602264e+00,
3.03838005e-01, 3.03838005e-01, 3.03838005e-01, 3.03838005e-01,
1.18263967e-03, 1.18263967e-03, 1.18263967e-03, 1.18263967e-03,
2.70515192e-07, 2.70515192e-07, 2.70515192e-07, 2.70515192e-07,
3.73495771e-11, 3.73495771e-11, 3.73495771e-11, 3.73495771e-11,
5.26225555e-15, 5.26225555e-15, 5.26225555e-15, 5.26225555e-15,
7.33233058e-19, 7.33233058e-19, 7.33233058e-19, 7.33233058e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
9.99999933e+02, 9.99999933e+02, 9.99999933e+02, 9.99999933e+02,
9.99999579e+02, 9.99999579e+02, 9.99999579e+02, 9.99999579e+02,
9.99997587e+02, 9.99997587e+02, 9.99997587e+02, 9.99997587e+02,
9.99987518e+02, 9.99987518e+02, 9.99987518e+02, 9.99987518e+02,
9.99941901e+02, 9.99941901e+02, 9.99941901e+02, 9.99941901e+02,
9.99757768e+02, 9.99757768e+02, 9.99757768e+02, 9.99757768e+02,
9.99100354e+02, 9.99100354e+02, 9.99100354e+02, 9.99100354e+02,
9.97043041e+02, 9.97043041e+02, 9.97043041e+02, 9.97043041e+02,
9.91459711e+02, 9.91459711e+02, 9.91459711e+02, 9.91459711e+02,
9.78461298e+02, 9.78461298e+02, 9.78461298e+02, 9.78461298e+02,
9.52721066e+02, 9.52721066e+02, 9.52721066e+02, 9.52721066e+02,
9.09464048e+02, 9.09464048e+02, 9.09464048e+02, 9.09464048e+02,
8.47290240e+02, 8.47290240e+02, 8.47290240e+02, 8.47290240e+02,
7.69147303e+02, 7.69147303e+02, 7.69147303e+02, 7.69147303e+02,
6.81824841e+02, 6.81824841e+02, 6.81824841e+02, 6.81824841e+02,
6.01613262e+02, 6.01613262e+02, 6.01613262e+02, 6.01613262e+02,
5.36678519e+02, 5.36678519e+02, 5.36678519e+02, 5.36678519e+02,
4.86252372e+02, 4.86252372e+02, 4.86252372e+02, 4.86252372e+02,
4.54602117e+02, 4.54602117e+02, 4.54602117e+02, 4.54602117e+02,
4.44345600e+02, 4.44345600e+02, 4.44345600e+02, 4.44345600e+02,
4.46359684e+02, 4.46359684e+02, 4.46359684e+02, 4.46359684e+02,
4.51901635e+02, 4.51901635e+02, 4.51901635e+02, 4.51901635e+02,
4.52889504e+02, 4.52889504e+02, 4.52889504e+02, 4.52889504e+02,
4.52265646e+02, 4.52265646e+02, 4.52265646e+02, 4.52265646e+02,
4.29084128e+02, 4.29084128e+02, 4.29084128e+02, 4.29084128e+02,
2.92805528e+02, 2.92805528e+02, 2.92805528e+02, 2.92805528e+02,
5.43708093e+01, 5.43708093e+01, 5.43708093e+01, 5.43708093e+01,
7.81644380e-01, 7.81644380e-01, 7.81644380e-01, 7.81644380e-01,
1.03355903e-02, 1.03355903e-02, 1.03355903e-02, 1.03355903e-02,
1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.9999997 , 0.9999997 ,
0.9999997 , 0.9999997 , 0.99999837, 0.99999837, 0.99999837,
0.99999837, 0.99999195, 0.99999195, 0.99999195, 0.99999195,
0.99996397, 0.99996397, 0.99996397, 0.99996397, 0.9998545 ,
0.9998545 , 0.9998545 , 0.9998545 , 0.9994726 , 0.9994726 ,
0.9994726 , 0.9994726 , 0.9982943 , 0.9982943 , 0.9982943 ,
0.9982943 , 0.99510915, 0.99510915, 0.99510915, 0.99510915,
0.98763719, 0.98763719, 0.98763719, 0.98763719, 0.97253998,
0.97253998, 0.97253998, 0.97253998, 0.94633146, 0.94633146,
0.94633146, 0.94633146, 0.90701242, 0.90701242, 0.90701242,
0.90701242, 0.85516088, 0.85516088, 0.85516088, 0.85516088,
0.79324114, 0.79324114, 0.79324114, 0.79324114, 0.72928116,
0.72928116, 0.72928116, 0.72928116, 0.67174921, 0.67174921,
0.67174921, 0.67174921, 0.62584268, 0.62584268, 0.62584268,
0.62584268, 0.58259287, 0.58259287, 0.58259287, 0.58259287,
0.57068029, 0.57068029, 0.57068029, 0.57068029, 0.55836177,
0.55836177, 0.55836177, 0.55836177, 0.55573867, 0.55573867,
0.55573867, 0.55573867, 0.56443057, 0.56443057, 0.56443057,
0.56443057, 0.6395892 , 0.6395892 , 0.6395892 , 0.6395892 ,
0.96358615, 0.96358615, 0.96358615, 0.96358615, 1.83549949,
1.83549949, 1.83549949, 1.83549949, 2.66715283, 2.66715283,
2.66715283, 2.66715283, 2.3438958 , 2.3438958 , 2.3438958 ,
2.3438958 , 1.22354901, 1.22354901, 1.22354901, 1.22354901,
1.01330763, 1.01330763, 1.01330763, 1.01330763, 1.00013509,
1.00013509, 1.00013509, 1.00013509, 1.00000003, 1.00000003,
1.00000003, 1.00000003, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
3.27252719e-15, 3.27252719e-15, 3.27252719e-15, 3.27252719e-15,
5.02048681e-14, 5.02048681e-14, 5.02048681e-14, 5.02048681e-14,
5.87307060e-13, 5.87307060e-13, 5.87307060e-13, 5.87307060e-13,
6.46241559e-12, 6.46241559e-12, 6.46241559e-12, 6.46241559e-12,
6.53785309e-11, 6.53785309e-11, 6.53785309e-11, 6.53785309e-11,
6.06614778e-10, 6.06614778e-10, 6.06614778e-10, 6.06614778e-10,
5.16153797e-09, 5.16153797e-09, 5.16153797e-09, 5.16153797e-09,
4.02536022e-08, 4.02536022e-08, 4.02536022e-08, 4.02536022e-08,
2.87499828e-07, 2.87499828e-07, 2.87499828e-07, 2.87499828e-07,
1.87827130e-06, 1.87827130e-06, 1.87827130e-06, 1.87827130e-06,
1.12063726e-05, 1.12063726e-05, 1.12063726e-05, 1.12063726e-05,
6.09321654e-05, 6.09321654e-05, 6.09321654e-05, 6.09321654e-05,
3.01124184e-04, 3.01124184e-04, 3.01124184e-04, 3.01124184e-04,
1.34806658e-03, 1.34806658e-03, 1.34806658e-03, 1.34806658e-03,
5.44437268e-03, 5.44437268e-03, 5.44437268e-03, 5.44437268e-03,
1.97371145e-02, 1.97371145e-02, 1.97371145e-02, 1.97371145e-02,
6.38597905e-02, 6.38597905e-02, 6.38597905e-02, 6.38597905e-02,
1.83325531e-01, 1.83325531e-01, 1.83325531e-01, 1.83325531e-01,
4.64737704e-01, 4.64737704e-01, 4.64737704e-01, 4.64737704e-01,
1.03856729e+00, 1.03856729e+00, 1.03856729e+00, 1.03856729e+00,
2.05236016e+00, 2.05236016e+00, 2.05236016e+00, 2.05236016e+00,
3.61812720e+00, 3.61812720e+00, 3.61812720e+00, 3.61812720e+00,
5.77166819e+00, 5.77166819e+00, 5.77166819e+00, 5.77166819e+00,
8.48843316e+00, 8.48843316e+00, 8.48843316e+00, 8.48843316e+00,
1.14236988e+01, 1.14236988e+01, 1.14236988e+01, 1.14236988e+01,
1.42358355e+01, 1.42358355e+01, 1.42358355e+01, 1.42358355e+01,
1.68025698e+01, 1.68025698e+01, 1.68025698e+01, 1.68025698e+01,
1.88802206e+01, 1.88802206e+01, 1.88802206e+01, 1.88802206e+01,
2.00711843e+01, 2.00711843e+01, 2.00711843e+01, 2.00711843e+01,
2.04384777e+01, 2.04384777e+01, 2.04384777e+01, 2.04384777e+01,
2.02877280e+01, 2.02877280e+01, 2.02877280e+01, 2.02877280e+01,
2.00672694e+01, 2.00672694e+01, 2.00672694e+01, 2.00672694e+01,
2.00505256e+01, 2.00505256e+01, 2.00505256e+01, 2.00505256e+01,
2.00195354e+01, 2.00195354e+01, 2.00195354e+01, 2.00195354e+01,
1.97774623e+01, 1.97774623e+01, 1.97774623e+01, 1.97774623e+01,
1.81444582e+01, 1.81444582e+01, 1.81444582e+01, 1.81444582e+01,
1.15550729e+01, 1.15550729e+01, 1.15550729e+01, 1.15550729e+01,
1.77081733e+00, 1.77081733e+00, 1.77081733e+00, 1.77081733e+00,
2.44888120e-02, 2.44888120e-02, 2.44888120e-02, 2.44888120e-02,
2.06002983e-05, 2.06002983e-05, 2.06002983e-05, 2.06002983e-05,
2.98049908e-09, 2.98049908e-09, 2.98049908e-09, 2.98049908e-09,
4.19450571e-13, 4.19450571e-13, 4.19450571e-13, 4.19450571e-13,
5.78774071e-17, 5.78774071e-17, 5.78774071e-17, 5.78774071e-17,
4.37610151e-21, 4.37610151e-21, 4.37610151e-21, 4.37610151e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
9.99999930e+02, 9.99999930e+02, 9.99999930e+02, 9.99999930e+02,
9.99999581e+02, 9.99999581e+02, 9.99999581e+02, 9.99999581e+02,
9.99997720e+02, 9.99997720e+02, 9.99997720e+02, 9.99997720e+02,
9.99988733e+02, 9.99988733e+02, 9.99988733e+02, 9.99988733e+02,
9.99949561e+02, 9.99949561e+02, 9.99949561e+02, 9.99949561e+02,
9.99796311e+02, 9.99796311e+02, 9.99796311e+02, 9.99796311e+02,
9.99261774e+02, 9.99261774e+02, 9.99261774e+02, 9.99261774e+02,
9.97613331e+02, 9.97613331e+02, 9.97613331e+02, 9.97613331e+02,
9.93162704e+02, 9.93162704e+02, 9.93162704e+02, 9.93162704e+02,
9.82750522e+02, 9.82750522e+02, 9.82750522e+02, 9.82750522e+02,
9.61824610e+02, 9.61824610e+02, 9.61824610e+02, 9.61824610e+02,
9.25831706e+02, 9.25831706e+02, 9.25831706e+02, 9.25831706e+02,
8.72601859e+02, 8.72601859e+02, 8.72601859e+02, 8.72601859e+02,
8.03814503e+02, 8.03814503e+02, 8.03814503e+02, 8.03814503e+02,
7.23838409e+02, 7.23838409e+02, 7.23838409e+02, 7.23838409e+02,
6.43384851e+02, 6.43384851e+02, 6.43384851e+02, 6.43384851e+02,
5.74112241e+02, 5.74112241e+02, 5.74112241e+02, 5.74112241e+02,
5.17349942e+02, 5.17349942e+02, 5.17349942e+02, 5.17349942e+02,
4.75919956e+02, 4.75919956e+02, 4.75919956e+02, 4.75919956e+02,
4.51607155e+02, 4.51607155e+02, 4.51607155e+02, 4.51607155e+02,
4.44470585e+02, 4.44470585e+02, 4.44470585e+02, 4.44470585e+02,
4.47515366e+02, 4.47515366e+02, 4.47515366e+02, 4.47515366e+02,
4.52054920e+02, 4.52054920e+02, 4.52054920e+02, 4.52054920e+02,
4.52910758e+02, 4.52910758e+02, 4.52910758e+02, 4.52910758e+02,
4.53087888e+02, 4.53087888e+02, 4.53087888e+02, 4.53087888e+02,
4.45232329e+02, 4.45232329e+02, 4.45232329e+02, 4.45232329e+02,
3.77819444e+02, 3.77819444e+02, 3.77819444e+02, 3.77819444e+02,
1.56913286e+02, 1.56913286e+02, 1.56913286e+02, 1.56913286e+02,
8.48730097e+00, 8.48730097e+00, 8.48730097e+00, 8.48730097e+00,
3.29887631e-02, 3.29887631e-02, 3.29887631e-02, 3.29887631e-02,
1.00024710e-02, 1.00024710e-02, 1.00024710e-02, 1.00024710e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999971,
0.99999971, 0.99999971, 0.99999971, 0.99999849, 0.99999849,
0.99999849, 0.99999849, 0.99999283, 0.99999283, 0.99999283,
0.99999283, 0.99996896, 0.99996896, 0.99996896, 0.99996896,
0.99987805, 0.99987805, 0.99987805, 0.99987805, 0.99956724,
0.99956724, 0.99956724, 0.99956724, 0.99862027, 0.99862027,
0.99862027, 0.99862027, 0.99607172, 0.99607172, 0.99607172,
0.99607172, 0.99006817, 0.99006817, 0.99006817, 0.99006817,
0.97778423, 0.97778423, 0.97778423, 0.97778423, 0.95603297,
0.95603297, 0.95603297, 0.95603297, 0.92259283, 0.92259283,
0.92259283, 0.92259283, 0.87738557, 0.87738557, 0.87738557,
0.87738557, 0.82228577, 0.82228577, 0.82228577, 0.82228577,
0.76124912, 0.76124912, 0.76124912, 0.76124912, 0.7039925 ,
0.7039925 , 0.7039925 , 0.7039925 , 0.65236277, 0.65236277,
0.65236277, 0.65236277, 0.6131337 , 0.6131337 , 0.6131337 ,
0.6131337 , 0.57531994, 0.57531994, 0.57531994, 0.57531994,
0.56785759, 0.56785759, 0.56785759, 0.56785759, 0.56038513,
0.56038513, 0.56038513, 0.56038513, 0.55900443, 0.55900443,
0.55900443, 0.55900443, 0.56184189, 0.56184189, 0.56184189,
0.56184189, 0.60586371, 0.60586371, 0.60586371, 0.60586371,
0.81871248, 0.81871248, 0.81871248, 0.81871248, 1.4581625 ,
1.4581625 , 1.4581625 , 1.4581625 , 2.52120104, 2.52120104,
2.52120104, 2.52120104, 2.74380791, 2.74380791, 2.74380791,
2.74380791, 1.69735103, 1.69735103, 1.69735103, 1.69735103,
1.0575523 , 1.0575523 , 1.0575523 , 1.0575523 , 1.00195343,
1.00195343, 1.00195343, 1.00195343, 1.00000178, 1.00000178,
1.00000178, 1.00000178, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.91889946e-15, 5.91889946e-15, 5.91889946e-15, 5.91889946e-15,
9.30184492e-14, 9.30184492e-14, 9.30184492e-14, 9.30184492e-14,
1.00936002e-12, 1.00936002e-12, 1.00936002e-12, 1.00936002e-12,
1.01033815e-11, 1.01033815e-11, 1.01033815e-11, 1.01033815e-11,
9.37627227e-11, 9.37627227e-11, 9.37627227e-11, 9.37627227e-11,
8.03306517e-10, 8.03306517e-10, 8.03306517e-10, 8.03306517e-10,
6.34932257e-09, 6.34932257e-09, 6.34932257e-09, 6.34932257e-09,
4.62683708e-08, 4.62683708e-08, 4.62683708e-08, 4.62683708e-08,
3.10550365e-07, 3.10550365e-07, 3.10550365e-07, 3.10550365e-07,
1.91739687e-06, 1.91739687e-06, 1.91739687e-06, 1.91739687e-06,
1.08719093e-05, 1.08719093e-05, 1.08719093e-05, 1.08719093e-05,
5.64951242e-05, 5.64951242e-05, 5.64951242e-05, 5.64951242e-05,
2.68353586e-04, 2.68353586e-04, 2.68353586e-04, 2.68353586e-04,
1.16148888e-03, 1.16148888e-03, 1.16148888e-03, 1.16148888e-03,
4.56296110e-03, 4.56296110e-03, 4.56296110e-03, 4.56296110e-03,
1.61948234e-02, 1.61948234e-02, 1.61948234e-02, 1.61948234e-02,
5.16501942e-02, 5.16501942e-02, 5.16501942e-02, 5.16501942e-02,
1.47193741e-01, 1.47193741e-01, 1.47193741e-01, 1.47193741e-01,
3.73008312e-01, 3.73008312e-01, 3.73008312e-01, 3.73008312e-01,
8.38464798e-01, 8.38464798e-01, 8.38464798e-01, 8.38464798e-01,
1.67451578e+00, 1.67451578e+00, 1.67451578e+00, 1.67451578e+00,
2.99122036e+00, 2.99122036e+00, 2.99122036e+00, 2.99122036e+00,
4.83584276e+00, 4.83584276e+00, 4.83584276e+00, 4.83584276e+00,
7.19273469e+00, 7.19273469e+00, 7.19273469e+00, 7.19273469e+00,
9.93587440e+00, 9.93587440e+00, 9.93587440e+00, 9.93587440e+00,
1.26632029e+01, 1.26632029e+01, 1.26632029e+01, 1.26632029e+01,
1.52391788e+01, 1.52391788e+01, 1.52391788e+01, 1.52391788e+01,
1.75131368e+01, 1.75131368e+01, 1.75131368e+01, 1.75131368e+01,
1.92750068e+01, 1.92750068e+01, 1.92750068e+01, 1.92750068e+01,
2.02071764e+01, 2.02071764e+01, 2.02071764e+01, 2.02071764e+01,
2.04224324e+01, 2.04224324e+01, 2.04224324e+01, 2.04224324e+01,
2.02143397e+01, 2.02143397e+01, 2.02143397e+01, 2.02143397e+01,
2.00448842e+01, 2.00448842e+01, 2.00448842e+01, 2.00448842e+01,
2.00355481e+01, 2.00355481e+01, 2.00355481e+01, 2.00355481e+01,
2.00263366e+01, 2.00263366e+01, 2.00263366e+01, 2.00263366e+01,
1.99415493e+01, 1.99415493e+01, 1.99415493e+01, 1.99415493e+01,
1.92029402e+01, 1.92029402e+01, 1.92029402e+01, 1.92029402e+01,
1.55549094e+01, 1.55549094e+01, 1.55549094e+01, 1.55549094e+01,
5.98150672e+00, 5.98150672e+00, 5.98150672e+00, 5.98150672e+00,
2.65685194e-01, 2.65685194e-01, 2.65685194e-01, 2.65685194e-01,
9.54732742e-04, 9.54732742e-04, 9.54732742e-04, 9.54732742e-04,
2.10803427e-07, 2.10803427e-07, 2.10803427e-07, 2.10803427e-07,
3.02033655e-11, 3.02033655e-11, 3.02033655e-11, 3.02033655e-11,
4.41057656e-15, 4.41057656e-15, 4.41057656e-15, 4.41057656e-15,
6.12854624e-19, 6.12854624e-19, 6.12854624e-19, 6.12854624e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999928e+02, 9.99999928e+02, 9.99999928e+02, 9.99999928e+02,
9.99999593e+02, 9.99999593e+02, 9.99999593e+02, 9.99999593e+02,
9.99997886e+02, 9.99997886e+02, 9.99997886e+02, 9.99997886e+02,
9.99989959e+02, 9.99989959e+02, 9.99989959e+02, 9.99989959e+02,
9.99956542e+02, 9.99956542e+02, 9.99956542e+02, 9.99956542e+02,
9.99829284e+02, 9.99829284e+02, 9.99829284e+02, 9.99829284e+02,
9.99394226e+02, 9.99394226e+02, 9.99394226e+02, 9.99394226e+02,
9.98069219e+02, 9.98069219e+02, 9.98069219e+02, 9.98069219e+02,
9.94506766e+02, 9.94506766e+02, 9.94506766e+02, 9.94506766e+02,
9.86133189e+02, 9.86133189e+02, 9.86133189e+02, 9.86133189e+02,
9.69074355e+02, 9.69074355e+02, 9.69074355e+02, 9.69074355e+02,
9.39098214e+02, 9.39098214e+02, 9.39098214e+02, 9.39098214e+02,
8.93564448e+02, 8.93564448e+02, 8.93564448e+02, 8.93564448e+02,
8.33059937e+02, 8.33059937e+02, 8.33059937e+02, 8.33059937e+02,
7.60987238e+02, 7.60987238e+02, 7.60987238e+02, 7.60987238e+02,
6.83226607e+02, 6.83226607e+02, 6.83226607e+02, 6.83226607e+02,
6.12243005e+02, 6.12243005e+02, 6.12243005e+02, 6.12243005e+02,
5.51401650e+02, 5.51401650e+02, 5.51401650e+02, 5.51401650e+02,
5.01944900e+02, 5.01944900e+02, 5.01944900e+02, 5.01944900e+02,
4.67782716e+02, 4.67782716e+02, 4.67782716e+02, 4.67782716e+02,
4.49784516e+02, 4.49784516e+02, 4.49784516e+02, 4.49784516e+02,
4.45064233e+02, 4.45064233e+02, 4.45064233e+02, 4.45064233e+02,
4.48787029e+02, 4.48787029e+02, 4.48787029e+02, 4.48787029e+02,
4.51978695e+02, 4.51978695e+02, 4.51978695e+02, 4.51978695e+02,
4.52793680e+02, 4.52793680e+02, 4.52793680e+02, 4.52793680e+02,
4.53282403e+02, 4.53282403e+02, 4.53282403e+02, 4.53282403e+02,
4.50955061e+02, 4.50955061e+02, 4.50955061e+02, 4.50955061e+02,
4.22213148e+02, 4.22213148e+02, 4.22213148e+02, 4.22213148e+02,
2.77875953e+02, 2.77875953e+02, 2.77875953e+02, 2.77875953e+02,
4.81022077e+01, 4.81022077e+01, 4.81022077e+01, 4.81022077e+01,
6.43549685e-01, 6.43549685e-01, 6.43549685e-01, 6.43549685e-01,
1.02488911e-02, 1.02488911e-02, 1.02488911e-02, 1.02488911e-02,
1.00000249e-02, 1.00000249e-02, 1.00000249e-02, 1.00000249e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999995, 0.99999995, 0.99999995, 0.99999995,
0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999862,
0.99999862, 0.99999862, 0.99999862, 0.99999367, 0.99999367,
0.99999367, 0.99999367, 0.99997341, 0.99997341, 0.99997341,
0.99997341, 0.99989805, 0.99989805, 0.99989805, 0.99989805,
0.99964482, 0.99964482, 0.99964482, 0.99964482, 0.99888164,
0.99888164, 0.99888164, 0.99888164, 0.99683513, 0.99683513,
0.99683513, 0.99683513, 0.99199451, 0.99199451, 0.99199451,
0.99199451, 0.9819733 , 0.9819733 , 0.9819733 , 0.9819733 ,
0.96389763, 0.96389763, 0.96389763, 0.96389763, 0.93545495,
0.93545495, 0.93545495, 0.93545495, 0.89604286, 0.89604286,
0.89604286, 0.89604286, 0.84702851, 0.84702851, 0.84702851,
0.84702851, 0.79079924, 0.79079924, 0.79079924, 0.79079924,
0.73376007, 0.73376007, 0.73376007, 0.73376007, 0.68273638,
0.68273638, 0.68273638, 0.68273638, 0.63612561, 0.63612561,
0.63612561, 0.63612561, 0.60307654, 0.60307654, 0.60307654,
0.60307654, 0.57002222, 0.57002222, 0.57002222, 0.57002222,
0.56543931, 0.56543931, 0.56543931, 0.56543931, 0.56183756,
0.56183756, 0.56183756, 0.56183756, 0.56199531, 0.56199531,
0.56199531, 0.56199531, 0.56171758, 0.56171758, 0.56171758,
0.56171758, 0.58609083, 0.58609083, 0.58609083, 0.58609083,
0.72311334, 0.72311334, 0.72311334, 0.72311334, 1.17609219,
1.17609219, 1.17609219, 1.17609219, 2.18113668, 2.18113668,
2.18113668, 2.18113668, 2.86626909, 2.86626909, 2.86626909,
2.86626909, 2.37228972, 2.37228972, 2.37228972, 2.37228972,
1.2039004 , 1.2039004 , 1.2039004 , 1.2039004 , 1.01187606,
1.01187606, 1.01187606, 1.01187606, 1.00010508, 1.00010508,
1.00010508, 1.00010508, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.33539348e-14, 1.33539348e-14, 1.33539348e-14, 1.33539348e-14,
1.55607325e-13, 1.55607325e-13, 1.55607325e-13, 1.55607325e-13,
1.56402128e-12, 1.56402128e-12, 1.56402128e-12, 1.56402128e-12,
1.45324292e-11, 1.45324292e-11, 1.45324292e-11, 1.45324292e-11,
1.25185482e-10, 1.25185482e-10, 1.25185482e-10, 1.25185482e-10,
1.00094143e-09, 1.00094143e-09, 1.00094143e-09, 1.00094143e-09,
7.42144171e-09, 7.42144171e-09, 7.42144171e-09, 7.42144171e-09,
5.09825802e-08, 5.09825802e-08, 5.09825802e-08, 5.09825802e-08,
3.24157733e-07, 3.24157733e-07, 3.24157733e-07, 3.24157733e-07,
1.90508651e-06, 1.90508651e-06, 1.90508651e-06, 1.90508651e-06,
1.03318499e-05, 1.03318499e-05, 1.03318499e-05, 1.03318499e-05,
5.16016816e-05, 5.16016816e-05, 5.16016816e-05, 5.16016816e-05,
2.36752814e-04, 2.36752814e-04, 2.36752814e-04, 2.36752814e-04,
9.94861791e-04, 9.94861791e-04, 9.94861791e-04, 9.94861791e-04,
3.81489106e-03, 3.81489106e-03, 3.81489106e-03, 3.81489106e-03,
1.32911013e-02, 1.32911013e-02, 1.32911013e-02, 1.32911013e-02,
4.18617207e-02, 4.18617207e-02, 4.18617207e-02, 4.18617207e-02,
1.18555604e-01, 1.18555604e-01, 1.18555604e-01, 1.18555604e-01,
3.00441076e-01, 3.00441076e-01, 3.00441076e-01, 3.00441076e-01,
6.79231840e-01, 6.79231840e-01, 6.79231840e-01, 6.79231840e-01,
1.37049927e+00, 1.37049927e+00, 1.37049927e+00, 1.37049927e+00,
2.48027947e+00, 2.48027947e+00, 2.48027947e+00, 2.48027947e+00,
4.06534852e+00, 4.06534852e+00, 4.06534852e+00, 4.06534852e+00,
6.11874426e+00, 6.11874426e+00, 6.11874426e+00, 6.11874426e+00,
8.59698769e+00, 8.59698769e+00, 8.59698769e+00, 8.59698769e+00,
1.11984851e+01, 1.11984851e+01, 1.11984851e+01, 1.11984851e+01,
1.37435738e+01, 1.37435738e+01, 1.37435738e+01, 1.37435738e+01,
1.61020009e+01, 1.61020009e+01, 1.61020009e+01, 1.61020009e+01,
1.81047370e+01, 1.81047370e+01, 1.81047370e+01, 1.81047370e+01,
1.95637081e+01, 1.95637081e+01, 1.95637081e+01, 1.95637081e+01,
2.02802090e+01, 2.02802090e+01, 2.02802090e+01, 2.02802090e+01,
2.03974866e+01, 2.03974866e+01, 2.03974866e+01, 2.03974866e+01,
2.01688547e+01, 2.01688547e+01, 2.01688547e+01, 2.01688547e+01,
2.00346701e+01, 2.00346701e+01, 2.00346701e+01, 2.00346701e+01,
2.00176538e+01, 2.00176538e+01, 2.00176538e+01, 2.00176538e+01,
2.00209769e+01, 2.00209769e+01, 2.00209769e+01, 2.00209769e+01,
1.99976377e+01, 1.99976377e+01, 1.99976377e+01, 1.99976377e+01,
1.96779963e+01, 1.96779963e+01, 1.96779963e+01, 1.96779963e+01,
1.78764303e+01, 1.78764303e+01, 1.78764303e+01, 1.78764303e+01,
1.11193485e+01, 1.11193485e+01, 1.11193485e+01, 1.11193485e+01,
1.55576781e+00, 1.55576781e+00, 1.55576781e+00, 1.55576781e+00,
1.98900933e-02, 1.98900933e-02, 1.98900933e-02, 1.98900933e-02,
1.52255734e-05, 1.52255734e-05, 1.52255734e-05, 1.52255734e-05,
2.23363364e-09, 2.23363364e-09, 2.23363364e-09, 2.23363364e-09,
3.21107467e-13, 3.21107467e-13, 3.21107467e-13, 3.21107467e-13,
4.55567759e-17, 4.55567759e-17, 4.55567759e-17, 4.55567759e-17,
4.26370518e-21, 4.26370518e-21, 4.26370518e-21, 4.26370518e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999929e+02, 9.99999929e+02, 9.99999929e+02, 9.99999929e+02,
9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
9.99998069e+02, 9.99998069e+02, 9.99998069e+02, 9.99998069e+02,
9.99991142e+02, 9.99991142e+02, 9.99991142e+02, 9.99991142e+02,
9.99962776e+02, 9.99962776e+02, 9.99962776e+02, 9.99962776e+02,
9.99857270e+02, 9.99857270e+02, 9.99857270e+02, 9.99857270e+02,
9.99502814e+02, 9.99502814e+02, 9.99502814e+02, 9.99502814e+02,
9.98434853e+02, 9.98434853e+02, 9.98434853e+02, 9.98434853e+02,
9.95573298e+02, 9.95573298e+02, 9.95573298e+02, 9.95573298e+02,
9.88816876e+02, 9.88816876e+02, 9.88816876e+02, 9.88816876e+02,
9.74879194e+02, 9.74879194e+02, 9.74879194e+02, 9.74879194e+02,
9.49898234e+02, 9.49898234e+02, 9.49898234e+02, 9.49898234e+02,
9.10986409e+02, 9.10986409e+02, 9.10986409e+02, 9.10986409e+02,
8.57855860e+02, 8.57855860e+02, 8.57855860e+02, 8.57855860e+02,
7.93072862e+02, 7.93072862e+02, 7.93072862e+02, 7.93072862e+02,
7.20578542e+02, 7.20578542e+02, 7.20578542e+02, 7.20578542e+02,
6.48800650e+02, 6.48800650e+02, 6.48800650e+02, 6.48800650e+02,
5.86389112e+02, 5.86389112e+02, 5.86389112e+02, 5.86389112e+02,
5.32725608e+02, 5.32725608e+02, 5.32725608e+02, 5.32725608e+02,
4.89778956e+02, 4.89778956e+02, 4.89778956e+02, 4.89778956e+02,
4.61519534e+02, 4.61519534e+02, 4.61519534e+02, 4.61519534e+02,
4.48525367e+02, 4.48525367e+02, 4.48525367e+02, 4.48525367e+02,
4.45928711e+02, 4.45928711e+02, 4.45928711e+02, 4.45928711e+02,
4.49956676e+02, 4.49956676e+02, 4.49956676e+02, 4.49956676e+02,
4.52076499e+02, 4.52076499e+02, 4.52076499e+02, 4.52076499e+02,
4.52643316e+02, 4.52643316e+02, 4.52643316e+02, 4.52643316e+02,
4.53164778e+02, 4.53164778e+02, 4.53164778e+02, 4.53164778e+02,
4.52705085e+02, 4.52705085e+02, 4.52705085e+02, 4.52705085e+02,
4.42106466e+02, 4.42106466e+02, 4.42106466e+02, 4.42106466e+02,
3.66606419e+02, 3.66606419e+02, 3.66606419e+02, 3.66606419e+02,
1.43278417e+02, 1.43278417e+02, 1.43278417e+02, 1.43278417e+02,
7.05131525e+00, 7.05131525e+00, 7.05131525e+00, 7.05131525e+00,
2.69964841e-02, 2.69964841e-02, 2.69964841e-02, 2.69964841e-02,
1.00018104e-02, 1.00018104e-02, 1.00018104e-02, 1.00018104e-02,
1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999995, 0.99999995, 0.99999995,
0.99999995, 0.99999974, 0.99999974, 0.99999974, 0.99999974,
0.99999876, 0.99999876, 0.99999876, 0.99999876, 0.99999446,
0.99999446, 0.99999446, 0.99999446, 0.99997733, 0.99997733,
0.99997733, 0.99997733, 0.99991492, 0.99991492, 0.99991492,
0.99991492, 0.99970841, 0.99970841, 0.99970841, 0.99970841,
0.99909185, 0.99909185, 0.99909185, 0.99909185, 0.99744342,
0.99744342, 0.99744342, 0.99744342, 0.99352897, 0.99352897,
0.99352897, 0.99352897, 0.98533607, 0.98533607, 0.98533607,
0.98533607, 0.9703007 , 0.9703007 , 0.9703007 , 0.9703007 ,
0.94611525, 0.94611525, 0.94611525, 0.94611525, 0.91178545,
0.91178545, 0.91178545, 0.91178545, 0.8681275 , 0.8681275 ,
0.8681275 , 0.8681275 , 0.81711896, 0.81711896, 0.81711896,
0.81711896, 0.76228815, 0.76228815, 0.76228815, 0.76228815,
0.71063528, 0.71063528, 0.71063528, 0.71063528, 0.66449658,
0.66449658, 0.66449658, 0.66449658, 0.62236199, 0.62236199,
0.62236199, 0.62236199, 0.59504764, 0.59504764, 0.59504764,
0.59504764, 0.56660492, 0.56660492, 0.56660492, 0.56660492,
0.56344579, 0.56344579, 0.56344579, 0.56344579, 0.56277418,
0.56277418, 0.56277418, 0.56277418, 0.56425748, 0.56425748,
0.56425748, 0.56425748, 0.56271208, 0.56271208, 0.56271208,
0.56271208, 0.57532902, 0.57532902, 0.57532902, 0.57532902,
0.66138282, 0.66138282, 0.66138282, 0.66138282, 0.97477241,
0.97477241, 0.97477241, 0.97477241, 1.76866995, 1.76866995,
1.76866995, 1.76866995, 2.79140624, 2.79140624, 2.79140624,
2.79140624, 2.85504716, 2.85504716, 2.85504716, 2.85504716,
1.6572704 , 1.6572704 , 1.6572704 , 1.6572704 , 1.05142481,
1.05142481, 1.05142481, 1.05142481, 1.00163012, 1.00163012,
1.00163012, 1.00163012, 1.00000124, 1.00000124, 1.00000124,
1.00000124, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.24969420e-13, 2.24969420e-13, 2.24969420e-13, 2.24969420e-13,
2.25206716e-12, 2.25206716e-12, 2.25206716e-12, 2.25206716e-12,
1.95360740e-11, 1.95360740e-11, 1.95360740e-11, 1.95360740e-11,
1.57777129e-10, 1.57777129e-10, 1.57777129e-10, 1.57777129e-10,
1.18752511e-09, 1.18752511e-09, 1.18752511e-09, 1.18752511e-09,
8.32407101e-09, 8.32407101e-09, 8.32407101e-09, 8.32407101e-09,
5.42910740e-08, 5.42910740e-08, 5.42910740e-08, 5.42910740e-08,
3.29113213e-07, 3.29113213e-07, 3.29113213e-07, 3.29113213e-07,
1.85184067e-06, 1.85184067e-06, 1.85184067e-06, 1.85184067e-06,
9.65592764e-06, 9.65592764e-06, 9.65592764e-06, 9.65592764e-06,
4.65650184e-05, 4.65650184e-05, 4.65650184e-05, 4.65650184e-05,
2.07190385e-04, 2.07190385e-04, 2.07190385e-04, 2.07190385e-04,
8.48170242e-04, 8.48170242e-04, 8.48170242e-04, 8.48170242e-04,
3.18354794e-03, 3.18354794e-03, 3.18354794e-03, 3.18354794e-03,
1.09115255e-02, 1.09115255e-02, 1.09115255e-02, 1.09115255e-02,
3.39908368e-02, 3.39908368e-02, 3.39908368e-02, 3.39908368e-02,
9.57478717e-02, 9.57478717e-02, 9.57478717e-02, 9.57478717e-02,
2.42712876e-01, 2.42712876e-01, 2.42712876e-01, 2.42712876e-01,
5.51793377e-01, 5.51793377e-01, 5.51793377e-01, 5.51793377e-01,
1.12446443e+00, 1.12446443e+00, 1.12446443e+00, 1.12446443e+00,
2.06118893e+00, 2.06118893e+00, 2.06118893e+00, 2.06118893e+00,
3.42552666e+00, 3.42552666e+00, 3.42552666e+00, 3.42552666e+00,
5.22314600e+00, 5.22314600e+00, 5.22314600e+00, 5.22314600e+00,
7.41906287e+00, 7.41906287e+00, 7.41906287e+00, 7.41906287e+00,
9.88411479e+00, 9.88411479e+00, 9.88411479e+00, 9.88411479e+00,
1.23254490e+01, 1.23254490e+01, 1.23254490e+01, 1.23254490e+01,
1.46753619e+01, 1.46753619e+01, 1.46753619e+01, 1.46753619e+01,
1.68362063e+01, 1.68362063e+01, 1.68362063e+01, 1.68362063e+01,
1.85972036e+01, 1.85972036e+01, 1.85972036e+01, 1.85972036e+01,
1.97810316e+01, 1.97810316e+01, 1.97810316e+01, 1.97810316e+01,
2.03056736e+01, 2.03056736e+01, 2.03056736e+01, 2.03056736e+01,
2.03583742e+01, 2.03583742e+01, 2.03583742e+01, 2.03583742e+01,
2.01400339e+01, 2.01400339e+01, 2.01400339e+01, 2.01400339e+01,
2.00353247e+01, 2.00353247e+01, 2.00353247e+01, 2.00353247e+01,
2.00086210e+01, 2.00086210e+01, 2.00086210e+01, 2.00086210e+01,
2.00116248e+01, 2.00116248e+01, 2.00116248e+01, 2.00116248e+01,
2.00091285e+01, 2.00091285e+01, 2.00091285e+01, 2.00091285e+01,
1.98825700e+01, 1.98825700e+01, 1.98825700e+01, 1.98825700e+01,
1.90344265e+01, 1.90344265e+01, 1.90344265e+01, 1.90344265e+01,
1.51585367e+01, 1.51585367e+01, 1.51585367e+01, 1.51585367e+01,
5.49808022e+00, 5.49808022e+00, 5.49808022e+00, 5.49808022e+00,
2.20110268e-01, 2.20110268e-01, 2.20110268e-01, 2.20110268e-01,
7.04288698e-04, 7.04288698e-04, 7.04288698e-04, 7.04288698e-04,
1.46929013e-07, 1.46929013e-07, 1.46929013e-07, 1.46929013e-07,
2.17393213e-11, 2.17393213e-11, 2.17393213e-11, 2.17393213e-11,
3.25874024e-15, 3.25874024e-15, 3.25874024e-15, 3.25874024e-15,
4.93883641e-19, 4.93883641e-19, 4.93883641e-19, 4.93883641e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999931e+02, 9.99999931e+02, 9.99999931e+02, 9.99999931e+02,
9.99999639e+02, 9.99999639e+02, 9.99999639e+02, 9.99999639e+02,
9.99998258e+02, 9.99998258e+02, 9.99998258e+02, 9.99998258e+02,
9.99992248e+02, 9.99992248e+02, 9.99992248e+02, 9.99992248e+02,
9.99968265e+02, 9.99968265e+02, 9.99968265e+02, 9.99968265e+02,
9.99880890e+02, 9.99880890e+02, 9.99880890e+02, 9.99880890e+02,
9.99591810e+02, 9.99591810e+02, 9.99591810e+02, 9.99591810e+02,
9.98728953e+02, 9.98728953e+02, 9.98728953e+02, 9.98728953e+02,
9.96423469e+02, 9.96423469e+02, 9.96423469e+02, 9.96423469e+02,
9.90956621e+02, 9.90956621e+02, 9.90956621e+02, 9.90956621e+02,
9.79547910e+02, 9.79547910e+02, 9.79547910e+02, 9.79547910e+02,
9.58721154e+02, 9.58721154e+02, 9.58721154e+02, 9.58721154e+02,
9.25505523e+02, 9.25505523e+02, 9.25505523e+02, 9.25505523e+02,
8.78949351e+02, 8.78949351e+02, 8.78949351e+02, 8.78949351e+02,
8.20748601e+02, 8.20748601e+02, 8.20748601e+02, 8.20748601e+02,
7.54214683e+02, 7.54214683e+02, 7.54214683e+02, 7.54214683e+02,
6.84375067e+02, 6.84375067e+02, 6.84375067e+02, 6.84375067e+02,
6.20368568e+02, 6.20368568e+02, 6.20368568e+02, 6.20368568e+02,
5.64370431e+02, 5.64370431e+02, 5.64370431e+02, 5.64370431e+02,
5.17160227e+02, 5.17160227e+02, 5.17160227e+02, 5.17160227e+02,
4.80250812e+02, 4.80250812e+02, 4.80250812e+02, 4.80250812e+02,
4.56943598e+02, 4.56943598e+02, 4.56943598e+02, 4.56943598e+02,
4.47678145e+02, 4.47678145e+02, 4.47678145e+02, 4.47678145e+02,
4.46796826e+02, 4.46796826e+02, 4.46796826e+02, 4.46796826e+02,
4.50880096e+02, 4.50880096e+02, 4.50880096e+02, 4.50880096e+02,
4.52357569e+02, 4.52357569e+02, 4.52357569e+02, 4.52357569e+02,
4.52616932e+02, 4.52616932e+02, 4.52616932e+02, 4.52616932e+02,
4.52970783e+02, 4.52970783e+02, 4.52970783e+02, 4.52970783e+02,
4.53046444e+02, 4.53046444e+02, 4.53046444e+02, 4.53046444e+02,
4.49923083e+02, 4.49923083e+02, 4.49923083e+02, 4.49923083e+02,
4.15828843e+02, 4.15828843e+02, 4.15828843e+02, 4.15828843e+02,
2.62221323e+02, 2.62221323e+02, 2.62221323e+02, 2.62221323e+02,
4.12019102e+01, 4.12019102e+01, 4.12019102e+01, 4.12019102e+01,
4.94445574e-01, 4.94445574e-01, 4.94445574e-01, 4.94445574e-01,
1.01642073e-02, 1.01642073e-02, 1.01642073e-02, 1.01642073e-02,
1.00000174e-02, 1.00000174e-02, 1.00000174e-02, 1.00000174e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999976, 0.99999976, 0.99999976,
0.99999976, 0.99999889, 0.99999889, 0.99999889, 0.99999889,
0.99999519, 0.99999519, 0.99999519, 0.99999519, 0.99998075,
0.99998075, 0.99998075, 0.99998075, 0.9999291 , 0.9999291 ,
0.9999291 , 0.9999291 , 0.99976052, 0.99976052, 0.99976052,
0.99976052, 0.99926135, 0.99926135, 0.99926135, 0.99926135,
0.99793005, 0.99793005, 0.99793005, 0.99793005, 0.99475663,
0.99475663, 0.99475663, 0.99475663, 0.98804657, 0.98804657,
0.98804657, 0.98804657, 0.97553184, 0.97553184, 0.97553184,
0.97553184, 0.95497685, 0.95497685, 0.95497685, 0.95497685,
0.92511099, 0.92511099, 0.92511099, 0.92511099, 0.88625836,
0.88625836, 0.88625836, 0.88625836, 0.84008392, 0.84008392,
0.84008392, 0.84008392, 0.78876117, 0.78876117, 0.78876117,
0.78876117, 0.73758834, 0.73758834, 0.73758834, 0.73758834,
0.69072274, 0.69072274, 0.69072274, 0.69072274, 0.64901095,
0.64901095, 0.64901095, 0.64901095, 0.61063333, 0.61063333,
0.61063333, 0.61063333, 0.58838435, 0.58838435, 0.58838435,
0.58838435, 0.56482776, 0.56482776, 0.56482776, 0.56482776,
0.56211874, 0.56211874, 0.56211874, 0.56211874, 0.56323644,
0.56323644, 0.56323644, 0.56323644, 0.56573502, 0.56573502,
0.56573502, 0.56573502, 0.56392989, 0.56392989, 0.56392989,
0.56392989, 0.56998742, 0.56998742, 0.56998742, 0.56998742,
0.62261429, 0.62261429, 0.62261429, 0.62261429, 0.83494329,
0.83494329, 0.83494329, 0.83494329, 1.42257004, 1.42257004,
1.42257004, 1.42257004, 2.51165741, 2.51165741, 2.51165741,
2.51165741, 3.03556687, 3.03556687, 3.03556687, 3.03556687,
2.3649753 , 2.3649753 , 2.3649753 , 2.3649753 , 1.18082651,
1.18082651, 1.18082651, 1.18082651, 1.01021472, 1.01021472,
1.01021472, 1.01021472, 1.0000747 , 1.0000747 , 1.0000747 ,
1.0000747 , 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.83938532e-12, 2.83938532e-12, 2.83938532e-12, 2.83938532e-12,
2.48780551e-11, 2.48780551e-11, 2.48780551e-11, 2.48780551e-11,
1.89659153e-10, 1.89659153e-10, 1.89659153e-10, 1.89659153e-10,
1.35318050e-09, 1.35318050e-09, 1.35318050e-09, 1.35318050e-09,
9.02461193e-09, 9.02461193e-09, 9.02461193e-09, 9.02461193e-09,
5.62089401e-08, 5.62089401e-08, 5.62089401e-08, 5.62089401e-08,
3.26589983e-07, 3.26589983e-07, 3.26589983e-07, 3.26589983e-07,
1.76783166e-06, 1.76783166e-06, 1.76783166e-06, 1.76783166e-06,
8.90072519e-06, 8.90072519e-06, 8.90072519e-06, 8.90072519e-06,
4.16033994e-05, 4.16033994e-05, 4.16033994e-05, 4.16033994e-05,
1.80121521e-04, 1.80121521e-04, 1.80121521e-04, 1.80121521e-04,
7.20378916e-04, 7.20378916e-04, 7.20378916e-04, 7.20378916e-04,
2.65286556e-03, 2.65286556e-03, 2.65286556e-03, 2.65286556e-03,
8.96132297e-03, 8.96132297e-03, 8.96132297e-03, 8.96132297e-03,
2.76450137e-02, 2.76450137e-02, 2.76450137e-02, 2.76450137e-02,
7.75091590e-02, 7.75091590e-02, 7.75091590e-02, 7.75091590e-02,
1.96575287e-01, 1.96575287e-01, 1.96575287e-01, 1.96575287e-01,
4.49321350e-01, 4.49321350e-01, 4.49321350e-01, 4.49321350e-01,
9.24431499e-01, 9.24431499e-01, 9.24431499e-01, 9.24431499e-01,
1.71576116e+00, 1.71576116e+00, 1.71576116e+00, 1.71576116e+00,
2.89106042e+00, 2.89106042e+00, 2.89106042e+00, 2.89106042e+00,
4.46780650e+00, 4.46780650e+00, 4.46780650e+00, 4.46780650e+00,
6.41677343e+00, 6.41677343e+00, 6.41677343e+00, 6.41677343e+00,
8.68601329e+00, 8.68601329e+00, 8.68601329e+00, 8.68601329e+00,
1.10249054e+01, 1.10249054e+01, 1.10249054e+01, 1.10249054e+01,
1.33220447e+01, 1.33220447e+01, 1.33220447e+01, 1.33220447e+01,
1.54925996e+01, 1.54925996e+01, 1.54925996e+01, 1.54925996e+01,
1.74546801e+01, 1.74546801e+01, 1.74546801e+01, 1.74546801e+01,
1.89986134e+01, 1.89986134e+01, 1.89986134e+01, 1.89986134e+01,
1.99480450e+01, 1.99480450e+01, 1.99480450e+01, 1.99480450e+01,
2.03051988e+01, 2.03051988e+01, 2.03051988e+01, 2.03051988e+01,
2.03097963e+01, 2.03097963e+01, 2.03097963e+01, 2.03097963e+01,
2.01135364e+01, 2.01135364e+01, 2.01135364e+01, 2.01135364e+01,
2.00395134e+01, 2.00395134e+01, 2.00395134e+01, 2.00395134e+01,
2.00112282e+01, 2.00112282e+01, 2.00112282e+01, 2.00112282e+01,
2.00045207e+01, 2.00045207e+01, 2.00045207e+01, 2.00045207e+01,
2.00069683e+01, 2.00069683e+01, 2.00069683e+01, 2.00069683e+01,
1.99578722e+01, 1.99578722e+01, 1.99578722e+01, 1.99578722e+01,
1.95688870e+01, 1.95688870e+01, 1.95688870e+01, 1.95688870e+01,
1.75969855e+01, 1.75969855e+01, 1.75969855e+01, 1.75969855e+01,
1.06108424e+01, 1.06108424e+01, 1.06108424e+01, 1.06108424e+01,
1.32398591e+00, 1.32398591e+00, 1.32398591e+00, 1.32398591e+00,
1.52470806e-02, 1.52470806e-02, 1.52470806e-02, 1.52470806e-02,
1.02514744e-05, 1.02514744e-05, 1.02514744e-05, 1.02514744e-05,
1.51595044e-09, 1.51595044e-09, 1.51595044e-09, 1.51595044e-09,
2.21449669e-13, 2.21449669e-13, 2.21449669e-13, 2.21449669e-13,
3.21821680e-17, 3.21821680e-17, 3.21821680e-17, 3.21821680e-17,
4.22583135e-21, 4.22583135e-21, 4.22583135e-21, 4.22583135e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999934e+02, 9.99999934e+02, 9.99999934e+02, 9.99999934e+02,
9.99999667e+02, 9.99999667e+02, 9.99999667e+02, 9.99999667e+02,
9.99998443e+02, 9.99998443e+02, 9.99998443e+02, 9.99998443e+02,
9.99993260e+02, 9.99993260e+02, 9.99993260e+02, 9.99993260e+02,
9.99973046e+02, 9.99973046e+02, 9.99973046e+02, 9.99973046e+02,
9.99900744e+02, 9.99900744e+02, 9.99900744e+02, 9.99900744e+02,
9.99664753e+02, 9.99664753e+02, 9.99664753e+02, 9.99664753e+02,
9.98966129e+02, 9.98966129e+02, 9.98966129e+02, 9.98966129e+02,
9.97103821e+02, 9.97103821e+02, 9.97103821e+02, 9.97103821e+02,
9.92669836e+02, 9.92669836e+02, 9.92669836e+02, 9.92669836e+02,
9.83316822e+02, 9.83316822e+02, 9.83316822e+02, 9.83316822e+02,
9.65949266e+02, 9.65949266e+02, 9.65949266e+02, 9.65949266e+02,
9.37629572e+02, 9.37629572e+02, 9.37629572e+02, 9.37629572e+02,
8.96925524e+02, 8.96925524e+02, 8.96925524e+02, 8.96925524e+02,
8.44757270e+02, 8.44757270e+02, 8.44757270e+02, 8.44757270e+02,
7.83932229e+02, 7.83932229e+02, 7.83932229e+02, 7.83932229e+02,
7.17860197e+02, 7.17860197e+02, 7.17860197e+02, 7.17860197e+02,
6.53411534e+02, 6.53411534e+02, 6.53411534e+02, 6.53411534e+02,
5.96226302e+02, 5.96226302e+02, 5.96226302e+02, 5.96226302e+02,
5.45775399e+02, 5.45775399e+02, 5.45775399e+02, 5.45775399e+02,
5.04059456e+02, 5.04059456e+02, 5.04059456e+02, 5.04059456e+02,
4.72707776e+02, 4.72707776e+02, 4.72707776e+02, 4.72707776e+02,
4.53820542e+02, 4.53820542e+02, 4.53820542e+02, 4.53820542e+02,
4.47282842e+02, 4.47282842e+02, 4.47282842e+02, 4.47282842e+02,
4.47539085e+02, 4.47539085e+02, 4.47539085e+02, 4.47539085e+02,
4.51468618e+02, 4.51468618e+02, 4.51468618e+02, 4.51468618e+02,
4.52679279e+02, 4.52679279e+02, 4.52679279e+02, 4.52679279e+02,
4.52744959e+02, 4.52744959e+02, 4.52744959e+02, 4.52744959e+02,
4.52862141e+02, 4.52862141e+02, 4.52862141e+02, 4.52862141e+02,
4.53025731e+02, 4.53025731e+02, 4.53025731e+02, 4.53025731e+02,
4.52509333e+02, 4.52509333e+02, 4.52509333e+02, 4.52509333e+02,
4.39197326e+02, 4.39197326e+02, 4.39197326e+02, 4.39197326e+02,
3.55061144e+02, 3.55061144e+02, 3.55061144e+02, 3.55061144e+02,
1.28955744e+02, 1.28955744e+02, 1.28955744e+02, 1.28955744e+02,
5.63751354e+00, 5.63751354e+00, 5.63751354e+00, 5.63751354e+00,
2.16308297e-02, 2.16308297e-02, 2.16308297e-02, 2.16308297e-02,
1.00012116e-02, 1.00012116e-02, 1.00012116e-02, 1.00012116e-02,
1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999978, 0.99999978,
0.99999978, 0.99999978, 0.99999901, 0.99999901, 0.99999901,
0.99999901, 0.99999584, 0.99999584, 0.99999584, 0.99999584,
0.9999837 , 0.9999837 , 0.9999837 , 0.9999837 , 0.99994098,
0.99994098, 0.99994098, 0.99994098, 0.99980323, 0.99980323,
0.99980323, 0.99980323, 0.99939833, 0.99939833, 0.99939833,
0.99939833, 0.99832066, 0.99832066, 0.99832066, 0.99832066,
0.99574245, 0.99574245, 0.99574245, 0.99574245, 0.99023874,
0.99023874, 0.99023874, 0.99023874, 0.97981742, 0.97981742,
0.97981742, 0.97981742, 0.96235966, 0.96235966, 0.96235966,
0.96235966, 0.93641648, 0.93641648, 0.93641648, 0.93641648,
0.90189237, 0.90189237, 0.90189237, 0.90189237, 0.86005507,
0.86005507, 0.86005507, 0.86005507, 0.81274868, 0.81274868,
0.81274868, 0.81274868, 0.76311269, 0.76311269, 0.76311269,
0.76311269, 0.71642 , 0.71642 , 0.71642 , 0.71642 ,
0.67333822, 0.67333822, 0.67333822, 0.67333822, 0.63583393,
0.63583393, 0.63583393, 0.63583393, 0.6007504 , 0.6007504 ,
0.6007504 , 0.6007504 , 0.58279291, 0.58279291, 0.58279291,
0.58279291, 0.56410322, 0.56410322, 0.56410322, 0.56410322,
0.56160416, 0.56160416, 0.56160416, 0.56160416, 0.56332121,
0.56332121, 0.56332121, 0.56332121, 0.56656977, 0.56656977,
0.56656977, 0.56656977, 0.56500324, 0.56500324, 0.56500324,
0.56500324, 0.56762 , 0.56762 , 0.56762 , 0.56762 ,
0.59894803, 0.59894803, 0.59894803, 0.59894803, 0.74001262,
0.74001262, 0.74001262, 0.74001262, 1.16399112, 1.16399112,
1.16399112, 1.16399112, 2.10522387, 2.10522387, 2.10522387,
2.10522387, 3.01416422, 3.01416422, 3.01416422, 3.01416422,
2.93378532, 2.93378532, 2.93378532, 2.93378532, 1.60066424,
1.60066424, 1.60066424, 1.60066424, 1.0447292 , 1.0447292 ,
1.0447292 , 1.0447292 , 1.00129844, 1.00129844, 1.00129844,
1.00129844, 1.0000008 , 1.0000008 , 1.0000008 , 1.0000008 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.79929625e-11, 2.79929625e-11, 2.79929625e-11, 2.79929625e-11,
2.19420258e-10, 2.19420258e-10, 2.19420258e-10, 2.19420258e-10,
1.49116083e-09, 1.49116083e-09, 1.49116083e-09, 1.49116083e-09,
9.51188129e-09, 9.51188129e-09, 9.51188129e-09, 9.51188129e-09,
5.68485475e-08, 5.68485475e-08, 5.68485475e-08, 5.68485475e-08,
3.17985043e-07, 3.17985043e-07, 3.17985043e-07, 3.17985043e-07,
1.66248056e-06, 1.66248056e-06, 1.66248056e-06, 1.66248056e-06,
8.11135729e-06, 8.11135729e-06, 8.11135729e-06, 8.11135729e-06,
3.68655451e-05, 3.68655451e-05, 3.68655451e-05, 3.68655451e-05,
1.55738945e-04, 1.55738945e-04, 1.55738945e-04, 1.55738945e-04,
6.09972860e-04, 6.09972860e-04, 6.09972860e-04, 6.09972860e-04,
2.20822367e-03, 2.20822367e-03, 2.20822367e-03, 2.20822367e-03,
7.36278800e-03, 7.36278800e-03, 7.36278800e-03, 7.36278800e-03,
2.25170918e-02, 2.25170918e-02, 2.25170918e-02, 2.25170918e-02,
6.28736376e-02, 6.28736376e-02, 6.28736376e-02, 6.28736376e-02,
1.59557051e-01, 1.59557051e-01, 1.59557051e-01, 1.59557051e-01,
3.66605239e-01, 3.66605239e-01, 3.66605239e-01, 3.66605239e-01,
7.61197294e-01, 7.61197294e-01, 7.61197294e-01, 7.61197294e-01,
1.42997959e+00, 1.42997959e+00, 1.42997959e+00, 1.42997959e+00,
2.44258800e+00, 2.44258800e+00, 2.44258800e+00, 2.44258800e+00,
3.82666940e+00, 3.82666940e+00, 3.82666940e+00, 3.82666940e+00,
5.56323490e+00, 5.56323490e+00, 5.56323490e+00, 5.56323490e+00,
7.61102512e+00, 7.61102512e+00, 7.61102512e+00, 7.61102512e+00,
9.84104209e+00, 9.84104209e+00, 9.84104209e+00, 9.84104209e+00,
1.20553642e+01, 1.20553642e+01, 1.20553642e+01, 1.20553642e+01,
1.42019457e+01, 1.42019457e+01, 1.42019457e+01, 1.42019457e+01,
1.62097468e+01, 1.62097468e+01, 1.62097468e+01, 1.62097468e+01,
1.79765031e+01, 1.79765031e+01, 1.79765031e+01, 1.79765031e+01,
1.93158941e+01, 1.93158941e+01, 1.93158941e+01, 1.93158941e+01,
2.00703083e+01, 2.00703083e+01, 2.00703083e+01, 2.00703083e+01,
2.03013658e+01, 2.03013658e+01, 2.03013658e+01, 2.03013658e+01,
2.02568791e+01, 2.02568791e+01, 2.02568791e+01, 2.02568791e+01,
2.00856952e+01, 2.00856952e+01, 2.00856952e+01, 2.00856952e+01,
2.00397257e+01, 2.00397257e+01, 2.00397257e+01, 2.00397257e+01,
2.00181798e+01, 2.00181798e+01, 2.00181798e+01, 2.00181798e+01,
2.00054208e+01, 2.00054208e+01, 2.00054208e+01, 2.00054208e+01,
2.00025663e+01, 2.00025663e+01, 2.00025663e+01, 2.00025663e+01,
1.99793630e+01, 1.99793630e+01, 1.99793630e+01, 1.99793630e+01,
1.98071108e+01, 1.98071108e+01, 1.98071108e+01, 1.98071108e+01,
1.88547396e+01, 1.88547396e+01, 1.88547396e+01, 1.88547396e+01,
1.47204337e+01, 1.47204337e+01, 1.47204337e+01, 1.47204337e+01,
4.95781616e+00, 4.95781616e+00, 4.95781616e+00, 4.95781616e+00,
1.75493310e-01, 1.75493310e-01, 1.75493310e-01, 1.75493310e-01,
4.85757486e-04, 4.85757486e-04, 4.85757486e-04, 4.85757486e-04,
9.51110561e-08, 9.51110561e-08, 9.51110561e-08, 9.51110561e-08,
1.44293431e-11, 1.44293431e-11, 1.44293431e-11, 1.44293431e-11,
2.19762024e-15, 2.19762024e-15, 2.19762024e-15, 2.19762024e-15,
3.19887277e-19, 3.19887277e-19, 3.19887277e-19, 3.19887277e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999938e+02, 9.99999938e+02, 9.99999938e+02, 9.99999938e+02,
9.99999697e+02, 9.99999697e+02, 9.99999697e+02, 9.99999697e+02,
9.99998621e+02, 9.99998621e+02, 9.99998621e+02, 9.99998621e+02,
9.99994173e+02, 9.99994173e+02, 9.99994173e+02, 9.99994173e+02,
9.99977177e+02, 9.99977177e+02, 9.99977177e+02, 9.99977177e+02,
9.99917379e+02, 9.99917379e+02, 9.99917379e+02, 9.99917379e+02,
9.99724547e+02, 9.99724547e+02, 9.99724547e+02, 9.99724547e+02,
9.99157826e+02, 9.99157826e+02, 9.99157826e+02, 9.99157826e+02,
9.97650081e+02, 9.97650081e+02, 9.97650081e+02, 9.97650081e+02,
9.94046407e+02, 9.94046407e+02, 9.94046407e+02, 9.94046407e+02,
9.86368788e+02, 9.86368788e+02, 9.86368788e+02, 9.86368788e+02,
9.71884304e+02, 9.71884304e+02, 9.71884304e+02, 9.71884304e+02,
9.47768311e+02, 9.47768311e+02, 9.47768311e+02, 9.47768311e+02,
9.12263212e+02, 9.12263212e+02, 9.12263212e+02, 9.12263212e+02,
8.65625167e+02, 8.65625167e+02, 8.65625167e+02, 8.65625167e+02,
8.10053427e+02, 8.10053427e+02, 8.10053427e+02, 8.10053427e+02,
7.48503051e+02, 7.48503051e+02, 7.48503051e+02, 7.48503051e+02,
6.85291622e+02, 6.85291622e+02, 6.85291622e+02, 6.85291622e+02,
6.27294016e+02, 6.27294016e+02, 6.27294016e+02, 6.27294016e+02,
5.75413147e+02, 5.75413147e+02, 5.75413147e+02, 5.75413147e+02,
5.30001905e+02, 5.30001905e+02, 5.30001905e+02, 5.30001905e+02,
4.93087463e+02, 4.93087463e+02, 4.93087463e+02, 4.93087463e+02,
4.66655572e+02, 4.66655572e+02, 4.66655572e+02, 4.66655572e+02,
4.51807159e+02, 4.51807159e+02, 4.51807159e+02, 4.51807159e+02,
4.47311434e+02, 4.47311434e+02, 4.47311434e+02, 4.47311434e+02,
4.48215613e+02, 4.48215613e+02, 4.48215613e+02, 4.48215613e+02,
4.51762807e+02, 4.51762807e+02, 4.51762807e+02, 4.51762807e+02,
4.52868403e+02, 4.52868403e+02, 4.52868403e+02, 4.52868403e+02,
4.52955491e+02, 4.52955491e+02, 4.52955491e+02, 4.52955491e+02,
4.52909327e+02, 4.52909327e+02, 4.52909327e+02, 4.52909327e+02,
4.52981643e+02, 4.52981643e+02, 4.52981643e+02, 4.52981643e+02,
4.53214804e+02, 4.53214804e+02, 4.53214804e+02, 4.53214804e+02,
4.48990326e+02, 4.48990326e+02, 4.48990326e+02, 4.48990326e+02,
4.09131640e+02, 4.09131640e+02, 4.09131640e+02, 4.09131640e+02,
2.45517697e+02, 2.45517697e+02, 2.45517697e+02, 2.45517697e+02,
3.47160317e+01, 3.47160317e+01, 3.47160317e+01, 3.47160317e+01,
3.62894316e-01, 3.62894316e-01, 3.62894316e-01, 3.62894316e-01,
1.00998011e-02, 1.00998011e-02, 1.00998011e-02, 1.00998011e-02,
1.00000113e-02, 1.00000113e-02, 1.00000113e-02, 1.00000113e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.9999998 ,
0.9999998 , 0.9999998 , 0.9999998 , 0.99999913, 0.99999913,
0.99999913, 0.99999913, 0.99999642, 0.99999642, 0.99999642,
0.99999642, 0.99998623, 0.99998623, 0.99998623, 0.99998623,
0.99995092, 0.99995092, 0.99995092, 0.99995092, 0.99983826,
0.99983826, 0.99983826, 0.99983826, 0.99950927, 0.99950927,
0.99950927, 0.99950927, 0.99863513, 0.99863513, 0.99863513,
0.99863513, 0.9965366 , 0.9965366 , 0.9965366 , 0.9965366 ,
0.99201676, 0.99201676, 0.99201676, 0.99201676, 0.9833362 ,
0.9833362 , 0.9833362 , 0.9833362 , 0.9685206 , 0.9685206 ,
0.9685206 , 0.9685206 , 0.94602219, 0.94602219, 0.94602219,
0.94602219, 0.91540395, 0.91540395, 0.91540395, 0.91540395,
0.87753992, 0.87753992, 0.87753992, 0.87753992, 0.83410395,
0.83410395, 0.83410395, 0.83410395, 0.78704832, 0.78704832,
0.78704832, 0.78704832, 0.74068485, 0.74068485, 0.74068485,
0.74068485, 0.69785748, 0.69785748, 0.69785748, 0.69785748,
0.65816589, 0.65816589, 0.65816589, 0.65816589, 0.62460018,
0.62460018, 0.62460018, 0.62460018, 0.59255793, 0.59255793,
0.59255793, 0.59255793, 0.57817326, 0.57817326, 0.57817326,
0.57817326, 0.56387564, 0.56387564, 0.56387564, 0.56387564,
0.56157127, 0.56157127, 0.56157127, 0.56157127, 0.56360366,
0.56360366, 0.56360366, 0.56360366, 0.56687447, 0.56687447,
0.56687447, 0.56687447, 0.56576392, 0.56576392, 0.56576392,
0.56576392, 0.56670663, 0.56670663, 0.56670663, 0.56670663,
0.58490731, 0.58490731, 0.58490731, 0.58490731, 0.67692226,
0.67692226, 0.67692226, 0.67692226, 0.97656008, 0.97656008,
0.97656008, 0.97656008, 1.70128216, 1.70128216, 1.70128216,
1.70128216, 2.81354886, 2.81354886, 2.81354886, 2.81354886,
3.17648847, 3.17648847, 3.17648847, 3.17648847, 2.32407513,
2.32407513, 2.32407513, 2.32407513, 1.15871544, 1.15871544,
1.15871544, 1.15871544, 1.00857175, 1.00857175, 1.00857175,
1.00857175, 1.0000498 , 1.0000498 , 1.0000498 , 1.0000498 ,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.25428777e-10, 2.25428777e-10, 2.25428777e-10, 2.25428777e-10,
1.59940645e-09, 1.59940645e-09, 1.59940645e-09, 1.59940645e-09,
9.78961596e-09, 9.78961596e-09, 9.78961596e-09, 9.78961596e-09,
5.63719016e-08, 5.63719016e-08, 5.63719016e-08, 5.63719016e-08,
3.04684391e-07, 3.04684391e-07, 3.04684391e-07, 3.04684391e-07,
1.54374637e-06, 1.54374637e-06, 1.54374637e-06, 1.54374637e-06,
7.32124407e-06, 7.32124407e-06, 7.32124407e-06, 7.32124407e-06,
3.24422534e-05, 3.24422534e-05, 3.24422534e-05, 3.24422534e-05,
1.34046928e-04, 1.34046928e-04, 1.34046928e-04, 1.34046928e-04,
5.15190666e-04, 5.15190666e-04, 5.15190666e-04, 5.15190666e-04,
1.83655079e-03, 1.83655079e-03, 1.83655079e-03, 1.83655079e-03,
6.05207452e-03, 6.05207452e-03, 6.05207452e-03, 6.05207452e-03,
1.83647896e-02, 1.83647896e-02, 1.83647896e-02, 1.83647896e-02,
5.10941202e-02, 5.10941202e-02, 5.10941202e-02, 5.10941202e-02,
1.29756782e-01, 1.29756782e-01, 1.29756782e-01, 1.29756782e-01,
2.99620921e-01, 2.99620921e-01, 2.99620921e-01, 2.99620921e-01,
6.27596355e-01, 6.27596355e-01, 6.27596355e-01, 6.27596355e-01,
1.19286361e+00, 1.19286361e+00, 1.19286361e+00, 1.19286361e+00,
2.06504248e+00, 2.06504248e+00, 2.06504248e+00, 2.06504248e+00,
3.27992371e+00, 3.27992371e+00, 3.27992371e+00, 3.27992371e+00,
4.82922171e+00, 4.82922171e+00, 4.82922171e+00, 4.82922171e+00,
6.67464424e+00, 6.67464424e+00, 6.67464424e+00, 6.67464424e+00,
8.75964265e+00, 8.75964265e+00, 8.75964265e+00, 8.75964265e+00,
1.08803472e+01, 1.08803472e+01, 1.08803472e+01, 1.08803472e+01,
1.29739884e+01, 1.29739884e+01, 1.29739884e+01, 1.29739884e+01,
1.49859636e+01, 1.49859636e+01, 1.49859636e+01, 1.49859636e+01,
1.68387724e+01, 1.68387724e+01, 1.68387724e+01, 1.68387724e+01,
1.84176517e+01, 1.84176517e+01, 1.84176517e+01, 1.84176517e+01,
1.95597613e+01, 1.95597613e+01, 1.95597613e+01, 1.95597613e+01,
2.01515305e+01, 2.01515305e+01, 2.01515305e+01, 2.01515305e+01,
2.02967332e+01, 2.02967332e+01, 2.02967332e+01, 2.02967332e+01,
2.02120023e+01, 2.02120023e+01, 2.02120023e+01, 2.02120023e+01,
2.00605248e+01, 2.00605248e+01, 2.00605248e+01, 2.00605248e+01,
2.00318688e+01, 2.00318688e+01, 2.00318688e+01, 2.00318688e+01,
2.00221885e+01, 2.00221885e+01, 2.00221885e+01, 2.00221885e+01,
2.00111763e+01, 2.00111763e+01, 2.00111763e+01, 2.00111763e+01,
2.00014053e+01, 2.00014053e+01, 2.00014053e+01, 2.00014053e+01,
1.99837206e+01, 1.99837206e+01, 1.99837206e+01, 1.99837206e+01,
1.99044089e+01, 1.99044089e+01, 1.99044089e+01, 1.99044089e+01,
1.94532334e+01, 1.94532334e+01, 1.94532334e+01, 1.94532334e+01,
1.72959877e+01, 1.72959877e+01, 1.72959877e+01, 1.72959877e+01,
1.00492404e+01, 1.00492404e+01, 1.00492404e+01, 1.00492404e+01,
1.10583216e+00, 1.10583216e+00, 1.10583216e+00, 1.10583216e+00,
1.12632792e-02, 1.12632792e-02, 1.12632792e-02, 1.12632792e-02,
6.51995106e-06, 6.51995106e-06, 6.51995106e-06, 6.51995106e-06,
9.65569412e-10, 9.65569412e-10, 9.65569412e-10, 9.65569412e-10,
1.42316510e-13, 1.42316510e-13, 1.42316510e-13, 1.42316510e-13,
2.10270857e-17, 2.10270857e-17, 2.10270857e-17, 2.10270857e-17,
4.23110662e-21, 4.23110662e-21, 4.23110662e-21, 4.23110662e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
9.99999942e+02, 9.99999942e+02, 9.99999942e+02, 9.99999942e+02,
9.99999726e+02, 9.99999726e+02, 9.99999726e+02, 9.99999726e+02,
9.99998786e+02, 9.99998786e+02, 9.99998786e+02, 9.99998786e+02,
9.99994984e+02, 9.99994984e+02, 9.99994984e+02, 9.99994984e+02,
9.99980724e+02, 9.99980724e+02, 9.99980724e+02, 9.99980724e+02,
9.99931285e+02, 9.99931285e+02, 9.99931285e+02, 9.99931285e+02,
9.99773577e+02, 9.99773577e+02, 9.99773577e+02, 9.99773577e+02,
9.99313077e+02, 9.99313077e+02, 9.99313077e+02, 9.99313077e+02,
9.98089948e+02, 9.98089948e+02, 9.98089948e+02, 9.98089948e+02,
9.95155853e+02, 9.95155853e+02, 9.95155853e+02, 9.95155853e+02,
9.88846648e+02, 9.88846648e+02, 9.88846648e+02, 9.88846648e+02,
9.76766510e+02, 9.76766510e+02, 9.76766510e+02, 9.76766510e+02,
9.56255473e+02, 9.56255473e+02, 9.56255473e+02, 9.56255473e+02,
9.25357054e+02, 9.25357054e+02, 9.25357054e+02, 9.25357054e+02,
8.83782170e+02, 8.83782170e+02, 8.83782170e+02, 8.83782170e+02,
8.33130130e+02, 8.33130130e+02, 8.33130130e+02, 8.33130130e+02,
7.76085650e+02, 7.76085650e+02, 7.76085650e+02, 7.76085650e+02,
7.15578042e+02, 7.15578042e+02, 7.15578042e+02, 7.15578042e+02,
6.57188937e+02, 6.57188937e+02, 6.57188937e+02, 6.57188937e+02,
6.04619926e+02, 6.04619926e+02, 6.04619926e+02, 6.04619926e+02,
5.57478206e+02, 5.57478206e+02, 5.57478206e+02, 5.57478206e+02,
5.16581813e+02, 5.16581813e+02, 5.16581813e+02, 5.16581813e+02,
4.83986410e+02, 4.83986410e+02, 4.83986410e+02, 4.83986410e+02,
4.61832276e+02, 4.61832276e+02, 4.61832276e+02, 4.61832276e+02,
4.50505747e+02, 4.50505747e+02, 4.50505747e+02, 4.50505747e+02,
4.47530062e+02, 4.47530062e+02, 4.47530062e+02, 4.47530062e+02,
4.49051988e+02, 4.49051988e+02, 4.49051988e+02, 4.49051988e+02,
4.51904449e+02, 4.51904449e+02, 4.51904449e+02, 4.51904449e+02,
4.52866779e+02, 4.52866779e+02, 4.52866779e+02, 4.52866779e+02,
4.53094164e+02, 4.53094164e+02, 4.53094164e+02, 4.53094164e+02,
4.53054312e+02, 4.53054312e+02, 4.53054312e+02, 4.53054312e+02,
4.53063775e+02, 4.53063775e+02, 4.53063775e+02, 4.53063775e+02,
4.53395324e+02, 4.53395324e+02, 4.53395324e+02, 4.53395324e+02,
4.52569474e+02, 4.52569474e+02, 4.52569474e+02, 4.52569474e+02,
4.35977197e+02, 4.35977197e+02, 4.35977197e+02, 4.35977197e+02,
3.42570389e+02, 3.42570389e+02, 3.42570389e+02, 3.42570389e+02,
1.14587893e+02, 1.14587893e+02, 1.14587893e+02, 1.14587893e+02,
4.38695457e+00, 4.38695457e+00, 4.38695457e+00, 4.38695457e+00,
1.75831808e-02, 1.75831808e-02, 1.75831808e-02, 1.75831808e-02,
1.00007686e-02, 1.00007686e-02, 1.00007686e-02, 1.00007686e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999924,
0.99999924, 0.99999924, 0.99999924, 0.99999693, 0.99999693,
0.99999693, 0.99999693, 0.99998839, 0.99998839, 0.99998839,
0.99998839, 0.99995921, 0.99995921, 0.99995921, 0.99995921,
0.99986699, 0.99986699, 0.99986699, 0.99986699, 0.99959927,
0.99959927, 0.99959927, 0.99959927, 0.99888896, 0.99888896,
0.99888896, 0.99888896, 0.99717807, 0.99717807, 0.99717807,
0.99717807, 0.99346233, 0.99346233, 0.99346233, 0.99346233,
0.98623061, 0.98623061, 0.98623061, 0.98623061, 0.97366804,
0.97366804, 0.97366804, 0.97366804, 0.954191 , 0.954191 ,
0.954191 , 0.954191 , 0.92709612, 0.92709612, 0.92709612,
0.92709612, 0.89288639, 0.89288639, 0.89288639, 0.89288639,
0.85299165, 0.85299165, 0.85299165, 0.85299165, 0.80903108,
0.80903108, 0.80903108, 0.80903108, 0.7637975 , 0.7637975 ,
0.7637975 , 0.7637975 , 0.72115406, 0.72115406, 0.72115406,
0.72115406, 0.68149355, 0.68149355, 0.68149355, 0.68149355,
0.64480222, 0.64480222, 0.64480222, 0.64480222, 0.61500168,
0.61500168, 0.61500168, 0.61500168, 0.58590592, 0.58590592,
0.58590592, 0.58590592, 0.57439796, 0.57439796, 0.57439796,
0.57439796, 0.56387515, 0.56387515, 0.56387515, 0.56387515,
0.56183788, 0.56183788, 0.56183788, 0.56183788, 0.56406492,
0.56406492, 0.56406492, 0.56406492, 0.56696563, 0.56696563,
0.56696563, 0.56696563, 0.5662629 , 0.5662629 , 0.5662629 ,
0.5662629 , 0.56641131, 0.56641131, 0.56641131, 0.56641131,
0.576761 , 0.576761 , 0.576761 , 0.576761 , 0.63578575,
0.63578575, 0.63578575, 0.63578575, 0.84379069, 0.84379069,
0.84379069, 0.84379069, 1.38572903, 1.38572903, 1.38572903,
1.38572903, 2.44002612, 2.44002612, 2.44002612, 2.44002612,
3.20653483, 3.20653483, 3.20653483, 3.20653483, 2.97456245,
2.97456245, 2.97456245, 2.97456245, 1.53663558, 1.53663558,
1.53663558, 1.53663558, 1.0381715 , 1.0381715 , 1.0381715 ,
1.0381715 , 1.00099782, 1.00099782, 1.00099782, 1.00099782,
1.0000005 , 1.0000005 , 1.0000005 , 1.0000005 , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.52640217e-09, 1.52640217e-09, 1.52640217e-09, 1.52640217e-09,
9.88802864e-09, 9.88802864e-09, 9.88802864e-09, 9.88802864e-09,
5.49631705e-08, 5.49631705e-08, 5.49631705e-08, 5.49631705e-08,
2.87970269e-07, 2.87970269e-07, 2.87970269e-07, 2.87970269e-07,
1.41808509e-06, 1.41808509e-06, 1.41808509e-06, 1.41808509e-06,
6.55412036e-06, 6.55412036e-06, 6.55412036e-06, 6.55412036e-06,
2.83823463e-05, 2.83823463e-05, 2.83823463e-05, 2.83823463e-05,
1.14933820e-04, 1.14933820e-04, 1.14933820e-04, 1.14933820e-04,
4.34223292e-04, 4.34223292e-04, 4.34223292e-04, 4.34223292e-04,
1.52641599e-03, 1.52641599e-03, 1.52641599e-03, 1.52641599e-03,
4.97687894e-03, 4.97687894e-03, 4.97687894e-03, 4.97687894e-03,
1.49961991e-02, 1.49961991e-02, 1.49961991e-02, 1.49961991e-02,
4.15882459e-02, 4.15882459e-02, 4.15882459e-02, 4.15882459e-02,
1.05698320e-01, 1.05698320e-01, 1.05698320e-01, 1.05698320e-01,
2.45229407e-01, 2.45229407e-01, 2.45229407e-01, 2.45229407e-01,
5.17987106e-01, 5.17987106e-01, 5.17987106e-01, 5.17987106e-01,
9.95694132e-01, 9.95694132e-01, 9.95694132e-01, 9.95694132e-01,
1.74644988e+00, 1.74644988e+00, 1.74644988e+00, 1.74644988e+00,
2.81214874e+00, 2.81214874e+00, 2.81214874e+00, 2.81214874e+00,
4.19480869e+00, 4.19480869e+00, 4.19480869e+00, 4.19480869e+00,
5.86264757e+00, 5.86264757e+00, 5.86264757e+00, 5.86264757e+00,
7.77472797e+00, 7.77472797e+00, 7.77472797e+00, 7.77472797e+00,
9.80655654e+00, 9.80655654e+00, 9.80655654e+00, 9.80655654e+00,
1.18277382e+01, 1.18277382e+01, 1.18277382e+01, 1.18277382e+01,
1.37971680e+01, 1.37971680e+01, 1.37971680e+01, 1.37971680e+01,
1.56822647e+01, 1.56822647e+01, 1.56822647e+01, 1.56822647e+01,
1.73889246e+01, 1.73889246e+01, 1.73889246e+01, 1.73889246e+01,
1.87901005e+01, 1.87901005e+01, 1.87901005e+01, 1.87901005e+01,
1.97450558e+01, 1.97450558e+01, 1.97450558e+01, 1.97450558e+01,
2.01997684e+01, 2.01997684e+01, 2.01997684e+01, 2.01997684e+01,
2.02877405e+01, 2.02877405e+01, 2.02877405e+01, 2.02877405e+01,
2.01725864e+01, 2.01725864e+01, 2.01725864e+01, 2.01725864e+01,
2.00462536e+01, 2.00462536e+01, 2.00462536e+01, 2.00462536e+01,
2.00208235e+01, 2.00208235e+01, 2.00208235e+01, 2.00208235e+01,
2.00194733e+01, 2.00194733e+01, 2.00194733e+01, 2.00194733e+01,
2.00147202e+01, 2.00147202e+01, 2.00147202e+01, 2.00147202e+01,
2.00035230e+01, 2.00035230e+01, 2.00035230e+01, 2.00035230e+01,
1.99845714e+01, 1.99845714e+01, 1.99845714e+01, 1.99845714e+01,
1.99388525e+01, 1.99388525e+01, 1.99388525e+01, 1.99388525e+01,
1.97268563e+01, 1.97268563e+01, 1.97268563e+01, 1.97268563e+01,
1.86628873e+01, 1.86628873e+01, 1.86628873e+01, 1.86628873e+01,
1.42510014e+01, 1.42510014e+01, 1.42510014e+01, 1.42510014e+01,
4.38724950e+00, 4.38724950e+00, 4.38724950e+00, 4.38724950e+00,
1.35671717e-01, 1.35671717e-01, 1.35671717e-01, 1.35671717e-01,
3.19338310e-04, 3.19338310e-04, 3.19338310e-04, 3.19338310e-04,
5.91067532e-08, 5.91067532e-08, 5.91067532e-08, 5.91067532e-08,
9.14545156e-12, 9.14545156e-12, 9.14545156e-12, 9.14545156e-12,
1.40083653e-15, 1.40083653e-15, 1.40083653e-15, 1.40083653e-15,
2.06948752e-19, 2.06948752e-19, 2.06948752e-19, 2.06948752e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
9.99999947e+02, 9.99999947e+02, 9.99999947e+02, 9.99999947e+02,
9.99999755e+02, 9.99999755e+02, 9.99999755e+02, 9.99999755e+02,
9.99998938e+02, 9.99998938e+02, 9.99998938e+02, 9.99998938e+02,
9.99995700e+02, 9.99995700e+02, 9.99995700e+02, 9.99995700e+02,
9.99983753e+02, 9.99983753e+02, 9.99983753e+02, 9.99983753e+02,
9.99942888e+02, 9.99942888e+02, 9.99942888e+02, 9.99942888e+02,
9.99813799e+02, 9.99813799e+02, 9.99813799e+02, 9.99813799e+02,
9.99439043e+02, 9.99439043e+02, 9.99439043e+02, 9.99439043e+02,
9.98445046e+02, 9.98445046e+02, 9.98445046e+02, 9.98445046e+02,
9.96052372e+02, 9.96052372e+02, 9.96052372e+02, 9.96052372e+02,
9.90862868e+02, 9.90862868e+02, 9.90862868e+02, 9.90862868e+02,
9.80788585e+02, 9.80788585e+02, 9.80788585e+02, 9.80788585e+02,
9.63364916e+02, 9.63364916e+02, 9.63364916e+02, 9.63364916e+02,
9.36537037e+02, 9.36537037e+02, 9.36537037e+02, 9.36537037e+02,
8.99584844e+02, 8.99584844e+02, 8.99584844e+02, 8.99584844e+02,
8.53541949e+02, 8.53541949e+02, 8.53541949e+02, 8.53541949e+02,
8.00725978e+02, 8.00725978e+02, 8.00725978e+02, 8.00725978e+02,
7.43656312e+02, 7.43656312e+02, 7.43656312e+02, 7.43656312e+02,
6.86069806e+02, 6.86069806e+02, 6.86069806e+02, 6.86069806e+02,
6.33063024e+02, 6.33063024e+02, 6.33063024e+02, 6.33063024e+02,
5.84804742e+02, 5.84804742e+02, 5.84804742e+02, 5.84804742e+02,
5.41876353e+02, 5.41876353e+02, 5.41876353e+02, 5.41876353e+02,
5.05141177e+02, 5.05141177e+02, 5.05141177e+02, 5.05141177e+02,
4.76536346e+02, 4.76536346e+02, 4.76536346e+02, 4.76536346e+02,
4.58081353e+02, 4.58081353e+02, 4.58081353e+02, 4.58081353e+02,
4.49630363e+02, 4.49630363e+02, 4.49630363e+02, 4.49630363e+02,
4.47839670e+02, 4.47839670e+02, 4.47839670e+02, 4.47839670e+02,
4.49917497e+02, 4.49917497e+02, 4.49917497e+02, 4.49917497e+02,
4.52105100e+02, 4.52105100e+02, 4.52105100e+02, 4.52105100e+02,
4.52784421e+02, 4.52784421e+02, 4.52784421e+02, 4.52784421e+02,
4.53082540e+02, 4.53082540e+02, 4.53082540e+02, 4.53082540e+02,
4.53173248e+02, 4.53173248e+02, 4.53173248e+02, 4.53173248e+02,
4.53232634e+02, 4.53232634e+02, 4.53232634e+02, 4.53232634e+02,
4.53513027e+02, 4.53513027e+02, 4.53513027e+02, 4.53513027e+02,
4.53743580e+02, 4.53743580e+02, 4.53743580e+02, 4.53743580e+02,
4.47885607e+02, 4.47885607e+02, 4.47885607e+02, 4.47885607e+02,
4.01687163e+02, 4.01687163e+02, 4.01687163e+02, 4.01687163e+02,
2.28101815e+02, 2.28101815e+02, 2.28101815e+02, 2.28101815e+02,
2.86587243e+01, 2.86587243e+01, 2.86587243e+01, 2.86587243e+01,
2.56567373e-01, 2.56567373e-01, 2.56567373e-01, 2.56567373e-01,
1.00575986e-02, 1.00575986e-02, 1.00575986e-02, 1.00575986e-02,
1.00000070e-02, 1.00000070e-02, 1.00000070e-02, 1.00000070e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
0.99999934, 0.99999934, 0.99999934, 0.99999934, 0.99999737,
0.99999737, 0.99999737, 0.99999737, 0.99999024, 0.99999024,
0.99999024, 0.99999024, 0.99996611, 0.99996611, 0.99996611,
0.99996611, 0.99989058, 0.99989058, 0.99989058, 0.99989058,
0.99967241, 0.99967241, 0.99967241, 0.99967241, 0.9990943 ,
0.9990943 , 0.9990943 , 0.9990943 , 0.99769746, 0.99769746,
0.99769746, 0.99769746, 0.99464004, 0.99464004, 0.99464004,
0.99464004, 0.98861492, 0.98861492, 0.98861492, 0.98861492,
0.97797231, 0.97797231, 0.97797231, 0.97797231, 0.96114094,
0.96114094, 0.96114094, 0.96114094, 0.93721972, 0.93721972,
0.93721972, 0.93721972, 0.9063806 , 0.9063806 , 0.9063806 ,
0.9063806 , 0.86977129, 0.86977129, 0.86977129, 0.86977129,
0.8289238 , 0.8289238 , 0.8289238 , 0.8289238 , 0.78560018,
0.78560018, 0.78560018, 0.78560018, 0.74329928, 0.74329928,
0.74329928, 0.74329928, 0.70377185, 0.70377185, 0.70377185,
0.70377185, 0.66708371, 0.66708371, 0.66708371, 0.66708371,
0.6330064 , 0.6330064 , 0.6330064 , 0.6330064 , 0.60675478,
0.60675478, 0.60675478, 0.60675478, 0.58061389, 0.58061389,
0.58061389, 0.58061389, 0.57133748, 0.57133748, 0.57133748,
0.57133748, 0.56401096, 0.56401096, 0.56401096, 0.56401096,
0.56229948, 0.56229948, 0.56229948, 0.56229948, 0.56457284,
0.56457284, 0.56457284, 0.56457284, 0.56699615, 0.56699615,
0.56699615, 0.56699615, 0.56661875, 0.56661875, 0.56661875,
0.56661875, 0.56639427, 0.56639427, 0.56639427, 0.56639427,
0.57210261, 0.57210261, 0.57210261, 0.57210261, 0.60938253,
0.60938253, 0.60938253, 0.60938253, 0.75154823, 0.75154823,
0.75154823, 0.75154823, 1.14834311, 1.14834311, 1.14834311,
1.14834311, 2.00753778, 2.00753778, 2.00753778, 2.00753778,
3.07707073, 3.07707073, 3.07707073, 3.07707073, 3.28851254,
3.28851254, 3.28851254, 3.28851254, 2.25822824, 2.25822824,
2.25822824, 2.25822824, 1.136885 , 1.136885 , 1.136885 ,
1.136885 , 1.00702667, 1.00702667, 1.00702667, 1.00702667,
1.00003133, 1.00003133, 1.00003133, 1.00003133, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([8.88472523e-09, 8.88472523e-09, 8.88472523e-09, 8.88472523e-09,
5.29210904e-08, 5.29210904e-08, 5.29210904e-08, 5.29210904e-08,
2.68968990e-07, 2.68968990e-07, 2.68968990e-07, 2.68968990e-07,
1.29058596e-06, 1.29058596e-06, 1.29058596e-06, 1.29058596e-06,
5.82613011e-06, 5.82613011e-06, 5.82613011e-06, 5.82613011e-06,
2.47055828e-05, 2.47055828e-05, 2.47055828e-05, 2.47055828e-05,
9.82232922e-05, 9.82232922e-05, 9.82232922e-05, 9.82232922e-05,
3.65333376e-04, 3.65333376e-04, 3.65333376e-04, 3.65333376e-04,
1.26798274e-03, 1.26798274e-03, 1.26798274e-03, 1.26798274e-03,
4.09445985e-03, 4.09445985e-03, 4.09445985e-03, 4.09445985e-03,
1.22588183e-02, 1.22588183e-02, 1.22588183e-02, 1.22588183e-02,
3.38993827e-02, 3.38993827e-02, 3.38993827e-02, 3.38993827e-02,
8.62271626e-02, 8.62271626e-02, 8.62271626e-02, 8.62271626e-02,
2.00962075e-01, 2.00962075e-01, 2.00962075e-01, 2.00962075e-01,
4.27886788e-01, 4.27886788e-01, 4.27886788e-01, 4.27886788e-01,
8.31469810e-01, 8.31469810e-01, 8.31469810e-01, 8.31469810e-01,
1.47715354e+00, 1.47715354e+00, 1.47715354e+00, 1.47715354e+00,
2.41104027e+00, 2.41104027e+00, 2.41104027e+00, 2.41104027e+00,
3.64432706e+00, 3.64432706e+00, 3.64432706e+00, 3.64432706e+00,
5.15349521e+00, 5.15349521e+00, 5.15349521e+00, 5.15349521e+00,
6.89898043e+00, 6.89898043e+00, 6.89898043e+00, 6.89898043e+00,
8.82107363e+00, 8.82107363e+00, 8.82107363e+00, 8.82107363e+00,
1.07606034e+01, 1.07606034e+01, 1.07606034e+01, 1.07606034e+01,
1.26809719e+01, 1.26809719e+01, 1.26809719e+01, 1.26809719e+01,
1.45408992e+01, 1.45408992e+01, 1.45408992e+01, 1.45408992e+01,
1.63011956e+01, 1.63011956e+01, 1.63011956e+01, 1.63011956e+01,
1.78659797e+01, 1.78659797e+01, 1.78659797e+01, 1.78659797e+01,
1.91016597e+01, 1.91016597e+01, 1.91016597e+01, 1.91016597e+01,
1.98864085e+01, 1.98864085e+01, 1.98864085e+01, 1.98864085e+01,
2.02241697e+01, 2.02241697e+01, 2.02241697e+01, 2.02241697e+01,
2.02710826e+01, 2.02710826e+01, 2.02710826e+01, 2.02710826e+01,
2.01384385e+01, 2.01384385e+01, 2.01384385e+01, 2.01384385e+01,
2.00398023e+01, 2.00398023e+01, 2.00398023e+01, 2.00398023e+01,
2.00141317e+01, 2.00141317e+01, 2.00141317e+01, 2.00141317e+01,
2.00125047e+01, 2.00125047e+01, 2.00125047e+01, 2.00125047e+01,
2.00117339e+01, 2.00117339e+01, 2.00117339e+01, 2.00117339e+01,
2.00041797e+01, 2.00041797e+01, 2.00041797e+01, 2.00041797e+01,
1.99838495e+01, 1.99838495e+01, 1.99838495e+01, 1.99838495e+01,
1.99519757e+01, 1.99519757e+01, 1.99519757e+01, 1.99519757e+01,
1.98474175e+01, 1.98474175e+01, 1.98474175e+01, 1.98474175e+01,
1.93323898e+01, 1.93323898e+01, 1.93323898e+01, 1.93323898e+01,
1.69770632e+01, 1.69770632e+01, 1.69770632e+01, 1.69770632e+01,
9.43267908e+00, 9.43267908e+00, 9.43267908e+00, 9.43267908e+00,
8.98850413e-01, 8.98850413e-01, 8.98850413e-01, 8.98850413e-01,
7.99452553e-03, 7.99452553e-03, 7.99452553e-03, 7.99452553e-03,
3.95277914e-06, 3.95277914e-06, 3.95277914e-06, 3.95277914e-06,
5.87204713e-10, 5.87204713e-10, 5.87204713e-10, 5.87204713e-10,
8.74454638e-14, 8.74454638e-14, 8.74454638e-14, 8.74454638e-14,
1.31382467e-17, 1.31382467e-17, 1.31382467e-17, 1.31382467e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
9.99999952e+02, 9.99999952e+02, 9.99999952e+02, 9.99999952e+02,
9.99999782e+02, 9.99999782e+02, 9.99999782e+02, 9.99999782e+02,
9.99999076e+02, 9.99999076e+02, 9.99999076e+02, 9.99999076e+02,
9.99996325e+02, 9.99996325e+02, 9.99996325e+02, 9.99996325e+02,
9.99986331e+02, 9.99986331e+02, 9.99986331e+02, 9.99986331e+02,
9.99952558e+02, 9.99952558e+02, 9.99952558e+02, 9.99952558e+02,
9.99846811e+02, 9.99846811e+02, 9.99846811e+02, 9.99846811e+02,
9.99541417e+02, 9.99541417e+02, 9.99541417e+02, 9.99541417e+02,
9.98732356e+02, 9.98732356e+02, 9.98732356e+02, 9.98732356e+02,
9.96778496e+02, 9.96778496e+02, 9.96778496e+02, 9.96778496e+02,
9.92506573e+02, 9.92506573e+02, 9.92506573e+02, 9.92506573e+02,
9.84106027e+02, 9.84106027e+02, 9.84106027e+02, 9.84106027e+02,
9.69322749e+02, 9.69322749e+02, 9.69322749e+02, 9.69322749e+02,
9.46081288e+02, 9.46081288e+02, 9.46081288e+02, 9.46081288e+02,
9.13335017e+02, 9.13335017e+02, 9.13335017e+02, 9.13335017e+02,
8.71610214e+02, 8.71610214e+02, 8.71610214e+02, 8.71610214e+02,
8.22805647e+02, 8.22805647e+02, 8.22805647e+02, 8.22805647e+02,
7.69307087e+02, 7.69307087e+02, 7.69307087e+02, 7.69307087e+02,
7.13651394e+02, 7.13651394e+02, 7.13651394e+02, 7.13651394e+02,
6.60389331e+02, 6.60389331e+02, 6.60389331e+02, 6.60389331e+02,
6.11811082e+02, 6.11811082e+02, 6.11811082e+02, 6.11811082e+02,
5.67482808e+02, 5.67482808e+02, 5.67482808e+02, 5.67482808e+02,
5.28269968e+02, 5.28269968e+02, 5.28269968e+02, 5.28269968e+02,
4.95352222e+02, 4.95352222e+02, 4.95352222e+02, 4.95352222e+02,
4.70492622e+02, 4.70492622e+02, 4.70492622e+02, 4.70492622e+02,
4.55270406e+02, 4.55270406e+02, 4.55270406e+02, 4.55270406e+02,
4.49060619e+02, 4.49060619e+02, 4.49060619e+02, 4.49060619e+02,
4.48201927e+02, 4.48201927e+02, 4.48201927e+02, 4.48201927e+02,
4.50695933e+02, 4.50695933e+02, 4.50695933e+02, 4.50695933e+02,
4.52345569e+02, 4.52345569e+02, 4.52345569e+02, 4.52345569e+02,
4.52754082e+02, 4.52754082e+02, 4.52754082e+02, 4.52754082e+02,
4.52997015e+02, 4.52997015e+02, 4.52997015e+02, 4.52997015e+02,
4.53174880e+02, 4.53174880e+02, 4.53174880e+02, 4.53174880e+02,
4.53361382e+02, 4.53361382e+02, 4.53361382e+02, 4.53361382e+02,
4.53679663e+02, 4.53679663e+02, 4.53679663e+02, 4.53679663e+02,
4.54190653e+02, 4.54190653e+02, 4.54190653e+02, 4.54190653e+02,
4.52637868e+02, 4.52637868e+02, 4.52637868e+02, 4.52637868e+02,
4.32258483e+02, 4.32258483e+02, 4.32258483e+02, 4.32258483e+02,
3.29015504e+02, 3.29015504e+02, 3.29015504e+02, 3.29015504e+02,
1.00405385e+02, 1.00405385e+02, 1.00405385e+02, 1.00405385e+02,
3.29045820e+00, 3.29045820e+00, 3.29045820e+00, 3.29045820e+00,
1.46741752e-02, 1.46741752e-02, 1.46741752e-02, 1.46741752e-02,
1.00004659e-02, 1.00004659e-02, 1.00004659e-02, 1.00004659e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999997, 0.99999997,
0.99999997, 0.99999997, 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999943, 0.99999943, 0.99999943, 0.99999943,
0.99999776, 0.99999776, 0.99999776, 0.99999776, 0.9999918 ,
0.9999918 , 0.9999918 , 0.9999918 , 0.99997186, 0.99997186,
0.99997186, 0.99997186, 0.99990994, 0.99990994, 0.99990994,
0.99990994, 0.99973194, 0.99973194, 0.99973194, 0.99973194,
0.99926076, 0.99926076, 0.99926076, 0.99926076, 0.99811888,
0.99811888, 0.99811888, 0.99811888, 0.9956012 , 0.9956012 ,
0.9956012 , 0.9956012 , 0.99058136, 0.99058136, 0.99058136,
0.99058136, 0.98157355, 0.98157355, 0.98157355, 0.98157355,
0.96705453, 0.96705453, 0.96705453, 0.96705453, 0.94598589,
0.94598589, 0.94598589, 0.94598589, 0.91825438, 0.91825438,
0.91825438, 0.91825438, 0.88471667, 0.88471667, 0.88471667,
0.88471667, 0.84678775, 0.84678775, 0.84678775, 0.84678775,
0.8058432 , 0.8058432 , 0.8058432 , 0.8058432 , 0.76438015,
0.76438015, 0.76438015, 0.76438015, 0.72517919, 0.72517919,
0.72517919, 0.72517919, 0.68826098, 0.68826098, 0.68826098,
0.68826098, 0.65432311, 0.65432311, 0.65432311, 0.65432311,
0.62261428, 0.62261428, 0.62261428, 0.62261428, 0.59964198,
0.59964198, 0.59964198, 0.59964198, 0.57647962, 0.57647962,
0.57647962, 0.57647962, 0.56891377, 0.56891377, 0.56891377,
0.56891377, 0.5642295 , 0.5642295 , 0.5642295 , 0.5642295 ,
0.56291649, 0.56291649, 0.56291649, 0.56291649, 0.56496715,
0.56496715, 0.56496715, 0.56496715, 0.5670335 , 0.5670335 ,
0.5670335 , 0.5670335 , 0.56691285, 0.56691285, 0.56691285,
0.56691285, 0.56649394, 0.56649394, 0.56649394, 0.56649394,
0.56954649, 0.56954649, 0.56954649, 0.56954649, 0.59269675,
0.59269675, 0.59269675, 0.59269675, 0.68846425, 0.68846425,
0.68846425, 0.68846425, 0.97389537, 0.97389537, 0.97389537,
0.97389537, 1.63730131, 1.63730131, 1.63730131, 1.63730131,
2.75902555, 2.75902555, 2.75902555, 2.75902555, 3.37028342,
3.37028342, 3.37028342, 3.37028342, 2.98215238, 2.98215238,
2.98215238, 2.98215238, 1.46829751, 1.46829751, 1.46829751,
1.46829751, 1.03187752, 1.03187752, 1.03187752, 1.03187752,
1.00073195, 1.00073195, 1.00073195, 1.00073195, 1.0000003 ,
1.0000003 , 1.0000003 , 1.0000003 , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([4.52514197e-08, 4.52514197e-08, 4.52514197e-08, 4.52514197e-08,
2.49281931e-07, 2.49281931e-07, 2.49281931e-07, 2.49281931e-07,
1.16502486e-06, 1.16502486e-06, 1.16502486e-06, 1.16502486e-06,
5.14742918e-06, 5.14742918e-06, 5.14742918e-06, 5.14742918e-06,
2.14115184e-05, 2.14115184e-05, 2.14115184e-05, 2.14115184e-05,
8.37057786e-05, 8.37057786e-05, 8.37057786e-05, 8.37057786e-05,
3.06910769e-04, 3.06910769e-04, 3.06910769e-04, 3.06910769e-04,
1.05286130e-03, 1.05286130e-03, 1.05286130e-03, 1.05286130e-03,
3.36989687e-03, 3.36989687e-03, 3.36989687e-03, 3.36989687e-03,
1.00310100e-02, 1.00310100e-02, 1.00310100e-02, 1.00310100e-02,
2.76674775e-02, 2.76674775e-02, 2.76674775e-02, 2.76674775e-02,
7.04345400e-02, 7.04345400e-02, 7.04345400e-02, 7.04345400e-02,
1.64864079e-01, 1.64864079e-01, 1.64864079e-01, 1.64864079e-01,
3.53706435e-01, 3.53706435e-01, 3.53706435e-01, 3.53706435e-01,
6.94517417e-01, 6.94517417e-01, 6.94517417e-01, 6.94517417e-01,
1.24926788e+00, 1.24926788e+00, 1.24926788e+00, 1.24926788e+00,
2.06658717e+00, 2.06658717e+00, 2.06658717e+00, 2.06658717e+00,
3.16549040e+00, 3.16549040e+00, 3.16549040e+00, 3.16549040e+00,
4.53121338e+00, 4.53121338e+00, 4.53121338e+00, 4.53121338e+00,
6.12705253e+00, 6.12705253e+00, 6.12705253e+00, 6.12705253e+00,
7.91542783e+00, 7.91542783e+00, 7.91542783e+00, 7.91542783e+00,
9.77789566e+00, 9.77789566e+00, 9.77789566e+00, 9.77789566e+00,
1.16347704e+01, 1.16347704e+01, 1.16347704e+01, 1.16347704e+01,
1.34551790e+01, 1.34551790e+01, 1.34551790e+01, 1.34551790e+01,
1.52122136e+01, 1.52122136e+01, 1.52122136e+01, 1.52122136e+01,
1.68521553e+01, 1.68521553e+01, 1.68521553e+01, 1.68521553e+01,
1.82765818e+01, 1.82765818e+01, 1.82765818e+01, 1.82765818e+01,
1.93576979e+01, 1.93576979e+01, 1.93576979e+01, 1.93576979e+01,
1.99942621e+01, 1.99942621e+01, 1.99942621e+01, 1.99942621e+01,
2.02328594e+01, 2.02328594e+01, 2.02328594e+01, 2.02328594e+01,
2.02456712e+01, 2.02456712e+01, 2.02456712e+01, 2.02456712e+01,
2.01101923e+01, 2.01101923e+01, 2.01101923e+01, 2.01101923e+01,
2.00369389e+01, 2.00369389e+01, 2.00369389e+01, 2.00369389e+01,
2.00131267e+01, 2.00131267e+01, 2.00131267e+01, 2.00131267e+01,
2.00070966e+01, 2.00070966e+01, 2.00070966e+01, 2.00070966e+01,
2.00052693e+01, 2.00052693e+01, 2.00052693e+01, 2.00052693e+01,
1.99989897e+01, 1.99989897e+01, 1.99989897e+01, 1.99989897e+01,
1.99805077e+01, 1.99805077e+01, 1.99805077e+01, 1.99805077e+01,
1.99568809e+01, 1.99568809e+01, 1.99568809e+01, 1.99568809e+01,
1.98969783e+01, 1.98969783e+01, 1.98969783e+01, 1.98969783e+01,
1.96461093e+01, 1.96461093e+01, 1.96461093e+01, 1.96461093e+01,
1.84628990e+01, 1.84628990e+01, 1.84628990e+01, 1.84628990e+01,
1.37419915e+01, 1.37419915e+01, 1.37419915e+01, 1.37419915e+01,
3.80245394e+00, 3.80245394e+00, 3.80245394e+00, 3.80245394e+00,
1.00964393e-01, 1.00964393e-01, 1.00964393e-01, 1.00964393e-01,
1.97893986e-04, 1.97893986e-04, 1.97893986e-04, 1.97893986e-04,
3.50167417e-08, 3.50167417e-08, 3.50167417e-08, 3.50167417e-08,
5.53183762e-12, 5.53183762e-12, 5.53183762e-12, 5.53183762e-12,
8.51924516e-16, 8.51924516e-16, 8.51924516e-16, 8.51924516e-16,
1.36608685e-19, 1.36608685e-19, 1.36608685e-19, 1.36608685e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999956e+02, 9.99999956e+02, 9.99999956e+02, 9.99999956e+02,
9.99999807e+02, 9.99999807e+02, 9.99999807e+02, 9.99999807e+02,
9.99999199e+02, 9.99999199e+02, 9.99999199e+02, 9.99999199e+02,
9.99996868e+02, 9.99996868e+02, 9.99996868e+02, 9.99996868e+02,
9.99988517e+02, 9.99988517e+02, 9.99988517e+02, 9.99988517e+02,
9.99960606e+02, 9.99960606e+02, 9.99960606e+02, 9.99960606e+02,
9.99873918e+02, 9.99873918e+02, 9.99873918e+02, 9.99873918e+02,
9.99624741e+02, 9.99624741e+02, 9.99624741e+02, 9.99624741e+02,
9.98965280e+02, 9.98965280e+02, 9.98965280e+02, 9.98965280e+02,
9.97367799e+02, 9.97367799e+02, 9.97367799e+02, 9.97367799e+02,
9.93848786e+02, 9.93848786e+02, 9.93848786e+02, 9.93848786e+02,
9.86844939e+02, 9.86844939e+02, 9.86844939e+02, 9.86844939e+02,
9.74316549e+02, 9.74316549e+02, 9.74316549e+02, 9.74316549e+02,
9.54225804e+02, 9.54225804e+02, 9.54225804e+02, 9.54225804e+02,
9.25291883e+02, 9.25291883e+02, 9.25291883e+02, 9.25291883e+02,
8.87600888e+02, 8.87600888e+02, 8.87600888e+02, 8.87600888e+02,
8.42619539e+02, 8.42619539e+02, 8.42619539e+02, 8.42619539e+02,
7.92557878e+02, 7.92557878e+02, 7.92557878e+02, 7.92557878e+02,
7.39509078e+02, 7.39509078e+02, 7.39509078e+02, 7.39509078e+02,
6.86734806e+02, 6.86734806e+02, 6.86734806e+02, 6.86734806e+02,
6.37955173e+02, 6.37955173e+02, 6.37955173e+02, 6.37955173e+02,
5.93035458e+02, 5.93035458e+02, 5.93035458e+02, 5.93035458e+02,
5.52230567e+02, 5.52230567e+02, 5.52230567e+02, 5.52230567e+02,
5.16416992e+02, 5.16416992e+02, 5.16416992e+02, 5.16416992e+02,
4.86984397e+02, 4.86984397e+02, 4.86984397e+02, 4.86984397e+02,
4.65596969e+02, 4.65596969e+02, 4.65596969e+02, 4.65596969e+02,
4.53240066e+02, 4.53240066e+02, 4.53240066e+02, 4.53240066e+02,
4.48778450e+02, 4.48778450e+02, 4.48778450e+02, 4.48778450e+02,
4.48639462e+02, 4.48639462e+02, 4.48639462e+02, 4.48639462e+02,
4.51263622e+02, 4.51263622e+02, 4.51263622e+02, 4.51263622e+02,
4.52567685e+02, 4.52567685e+02, 4.52567685e+02, 4.52567685e+02,
4.52811496e+02, 4.52811496e+02, 4.52811496e+02, 4.52811496e+02,
4.52945111e+02, 4.52945111e+02, 4.52945111e+02, 4.52945111e+02,
4.53123466e+02, 4.53123466e+02, 4.53123466e+02, 4.53123466e+02,
4.53394325e+02, 4.53394325e+02, 4.53394325e+02, 4.53394325e+02,
4.53835168e+02, 4.53835168e+02, 4.53835168e+02, 4.53835168e+02,
4.54404144e+02, 4.54404144e+02, 4.54404144e+02, 4.54404144e+02,
4.54398815e+02, 4.54398815e+02, 4.54398815e+02, 4.54398815e+02,
4.46505808e+02, 4.46505808e+02, 4.46505808e+02, 4.46505808e+02,
3.93317262e+02, 3.93317262e+02, 3.93317262e+02, 3.93317262e+02,
2.10080070e+02, 2.10080070e+02, 2.10080070e+02, 2.10080070e+02,
2.32249751e+01, 2.32249751e+01, 2.32249751e+01, 2.32249751e+01,
1.73430791e-01, 1.73430791e-01, 1.73430791e-01, 1.73430791e-01,
1.00314003e-02, 1.00314003e-02, 1.00314003e-02, 1.00314003e-02,
1.00000041e-02, 1.00000041e-02, 1.00000041e-02, 1.00000041e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.99999988, 0.99999988,
0.99999988, 0.99999988, 0.99999951, 0.99999951, 0.99999951,
0.99999951, 0.9999981 , 0.9999981 , 0.9999981 , 0.9999981 ,
0.99999312, 0.99999312, 0.99999312, 0.99999312, 0.99997664,
0.99997664, 0.99997664, 0.99997664, 0.99992585, 0.99992585,
0.99992585, 0.99992585, 0.99978045, 0.99978045, 0.99978045,
0.99978045, 0.99939593, 0.99939593, 0.99939593, 0.99939593,
0.99846143, 0.99846143, 0.99846143, 0.99846143, 0.99638683,
0.99638683, 0.99638683, 0.99638683, 0.99220475, 0.99220475,
0.99220475, 0.99220475, 0.98458761, 0.98458761, 0.98458761,
0.98458761, 0.9720855 , 0.9720855 , 0.9720855 , 0.9720855 ,
0.95357426, 0.95357426, 0.95357426, 0.95357426, 0.92870343,
0.92870343, 0.92870343, 0.92870343, 0.89804865, 0.89804865,
0.89804865, 0.89804865, 0.86284217, 0.86284217, 0.86284217,
0.86284217, 0.82441149, 0.82441149, 0.82441149, 0.82441149,
0.78436898, 0.78436898, 0.78436898, 0.78436898, 0.74552409,
0.74552409, 0.74552409, 0.74552409, 0.70888758, 0.70888758,
0.70888758, 0.70888758, 0.67437483, 0.67437483, 0.67437483,
0.67437483, 0.6430066 , 0.6430066 , 0.6430066 , 0.6430066 ,
0.61348618, 0.61348618, 0.61348618, 0.61348618, 0.59349049,
0.59349049, 0.59349049, 0.59349049, 0.57331869, 0.57331869,
0.57331869, 0.57331869, 0.56704679, 0.56704679, 0.56704679,
0.56704679, 0.56447692, 0.56447692, 0.56447692, 0.56447692,
0.56362867, 0.56362867, 0.56362867, 0.56362867, 0.56531162,
0.56531162, 0.56531162, 0.56531162, 0.567019 , 0.567019 ,
0.567019 , 0.567019 , 0.56709383, 0.56709383, 0.56709383,
0.56709383, 0.5667092 , 0.5667092 , 0.5667092 , 0.5667092 ,
0.56824252, 0.56824252, 0.56824252, 0.56824252, 0.58236395,
0.58236395, 0.58236395, 0.58236395, 0.6459472 , 0.6459472 ,
0.6459472 , 0.6459472 , 0.84807929, 0.84807929, 0.84807929,
0.84807929, 1.34919174, 1.34919174, 1.34919174, 1.34919174,
2.33541132, 2.33541132, 2.33541132, 2.33541132, 3.2926407 ,
3.2926407 , 3.2926407 , 3.2926407 , 3.37752881, 3.37752881,
3.37752881, 3.37752881, 2.16954992, 2.16954992, 2.16954992,
2.16954992, 1.1172986 , 1.1172986 , 1.1172986 , 1.1172986 ,
1.00560841, 1.00560841, 1.00560841, 1.00560841, 1.00001853,
1.00001853, 1.00001853, 1.00001853, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.04607737e-07, 2.04607737e-07, 2.04607737e-07, 2.04607737e-07,
1.04753503e-06, 1.04753503e-06, 1.04753503e-06, 1.04753503e-06,
4.52318125e-06, 4.52318125e-06, 4.52318125e-06, 4.52318125e-06,
1.84864298e-05, 1.84864298e-05, 1.84864298e-05, 1.84864298e-05,
7.11599517e-05, 7.11599517e-05, 7.11599517e-05, 7.11599517e-05,
2.57499723e-04, 2.57499723e-04, 2.57499723e-04, 2.57499723e-04,
8.73945333e-04, 8.73945333e-04, 8.73945333e-04, 8.73945333e-04,
2.77466387e-03, 2.77466387e-03, 2.77466387e-03, 2.77466387e-03,
8.21545316e-03, 8.21545316e-03, 8.21545316e-03, 8.21545316e-03,
2.26072838e-02, 2.26072838e-02, 2.26072838e-02, 2.26072838e-02,
5.76012133e-02, 5.76012133e-02, 5.76012133e-02, 5.76012133e-02,
1.35378501e-01, 1.35378501e-01, 1.35378501e-01, 1.35378501e-01,
2.92554805e-01, 2.92554805e-01, 2.92554805e-01, 2.92554805e-01,
5.80205845e-01, 5.80205845e-01, 5.80205845e-01, 5.80205845e-01,
1.05628947e+00, 1.05628947e+00, 1.05628947e+00, 1.05628947e+00,
1.77052666e+00, 1.77052666e+00, 1.77052666e+00, 1.77052666e+00,
2.74829898e+00, 2.74829898e+00, 2.74829898e+00, 2.74829898e+00,
3.98331961e+00, 3.98331961e+00, 3.98331961e+00, 3.98331961e+00,
5.44451310e+00, 5.44451310e+00, 5.44451310e+00, 5.44451310e+00,
7.09514684e+00, 7.09514684e+00, 7.09514684e+00, 7.09514684e+00,
8.87295070e+00, 8.87295070e+00, 8.87295070e+00, 8.87295070e+00,
1.06594721e+01, 1.06594721e+01, 1.06594721e+01, 1.06594721e+01,
1.24293602e+01, 1.24293602e+01, 1.24293602e+01, 1.24293602e+01,
1.41607204e+01, 1.41607204e+01, 1.41607204e+01, 1.41607204e+01,
1.58187383e+01, 1.58187383e+01, 1.58187383e+01, 1.58187383e+01,
1.73419873e+01, 1.73419873e+01, 1.73419873e+01, 1.73419873e+01,
1.86283641e+01, 1.86283641e+01, 1.86283641e+01, 1.86283641e+01,
1.95639138e+01, 1.95639138e+01, 1.95639138e+01, 1.95639138e+01,
2.00736039e+01, 2.00736039e+01, 2.00736039e+01, 2.00736039e+01,
2.02330193e+01, 2.02330193e+01, 2.02330193e+01, 2.02330193e+01,
2.02158212e+01, 2.02158212e+01, 2.02158212e+01, 2.02158212e+01,
2.00862699e+01, 2.00862699e+01, 2.00862699e+01, 2.00862699e+01,
2.00336687e+01, 2.00336687e+01, 2.00336687e+01, 2.00336687e+01,
2.00150798e+01, 2.00150798e+01, 2.00150798e+01, 2.00150798e+01,
2.00060876e+01, 2.00060876e+01, 2.00060876e+01, 2.00060876e+01,
1.99998383e+01, 1.99998383e+01, 1.99998383e+01, 1.99998383e+01,
1.99906385e+01, 1.99906385e+01, 1.99906385e+01, 1.99906385e+01,
1.99726435e+01, 1.99726435e+01, 1.99726435e+01, 1.99726435e+01,
1.99540496e+01, 1.99540496e+01, 1.99540496e+01, 1.99540496e+01,
1.99172472e+01, 1.99172472e+01, 1.99172472e+01, 1.99172472e+01,
1.97905611e+01, 1.97905611e+01, 1.97905611e+01, 1.97905611e+01,
1.92093064e+01, 1.92093064e+01, 1.92093064e+01, 1.92093064e+01,
1.66360985e+01, 1.66360985e+01, 1.66360985e+01, 1.66360985e+01,
8.75489385e+00, 8.75489385e+00, 8.75489385e+00, 8.75489385e+00,
7.20452697e-01, 7.20452697e-01, 7.20452697e-01, 7.20452697e-01,
5.43172134e-03, 5.43172134e-03, 5.43172134e-03, 5.43172134e-03,
2.27604406e-06, 2.27604406e-06, 2.27604406e-06, 2.27604406e-06,
3.38472840e-10, 3.38472840e-10, 3.38472840e-10, 3.38472840e-10,
5.10071735e-14, 5.10071735e-14, 5.10071735e-14, 5.10071735e-14,
7.83554591e-18, 7.83554591e-18, 7.83554591e-18, 7.83554591e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999961e+02, 9.99999961e+02, 9.99999961e+02, 9.99999961e+02,
9.99999831e+02, 9.99999831e+02, 9.99999831e+02, 9.99999831e+02,
9.99999308e+02, 9.99999308e+02, 9.99999308e+02, 9.99999308e+02,
9.99997337e+02, 9.99997337e+02, 9.99997337e+02, 9.99997337e+02,
9.99990365e+02, 9.99990365e+02, 9.99990365e+02, 9.99990365e+02,
9.99967300e+02, 9.99967300e+02, 9.99967300e+02, 9.99967300e+02,
9.99896187e+02, 9.99896187e+02, 9.99896187e+02, 9.99896187e+02,
9.99692651e+02, 9.99692651e+02, 9.99692651e+02, 9.99692651e+02,
9.99154448e+02, 9.99154448e+02, 9.99154448e+02, 9.99154448e+02,
9.97846913e+02, 9.97846913e+02, 9.97846913e+02, 9.97846913e+02,
9.94946365e+02, 9.94946365e+02, 9.94946365e+02, 9.94946365e+02,
9.89107997e+02, 9.89107997e+02, 9.89107997e+02, 9.89107997e+02,
9.78502508e+02, 9.78502508e+02, 9.78502508e+02, 9.78502508e+02,
9.61171766e+02, 9.61171766e+02, 9.61171766e+02, 9.61171766e+02,
9.35679962e+02, 9.35679962e+02, 9.35679962e+02, 9.35679962e+02,
9.01743661e+02, 9.01743661e+02, 9.01743661e+02, 9.01743661e+02,
8.60410587e+02, 8.60410587e+02, 8.60410587e+02, 8.60410587e+02,
8.13626053e+02, 8.13626053e+02, 8.13626053e+02, 8.13626053e+02,
7.63416647e+02, 7.63416647e+02, 7.63416647e+02, 7.63416647e+02,
7.12019797e+02, 7.12019797e+02, 7.12019797e+02, 7.12019797e+02,
6.63120871e+02, 6.63120871e+02, 6.63120871e+02, 6.63120871e+02,
6.17966596e+02, 6.17966596e+02, 6.17966596e+02, 6.17966596e+02,
5.76387663e+02, 5.76387663e+02, 5.76387663e+02, 5.76387663e+02,
5.38762205e+02, 5.38762205e+02, 5.38762205e+02, 5.38762205e+02,
5.06102905e+02, 5.06102905e+02, 5.06102905e+02, 5.06102905e+02,
4.79873679e+02, 4.79873679e+02, 4.79873679e+02, 4.79873679e+02,
4.61632451e+02, 4.61632451e+02, 4.61632451e+02, 4.61632451e+02,
4.51822663e+02, 4.51822663e+02, 4.51822663e+02, 4.51822663e+02,
4.48755045e+02, 4.48755045e+02, 4.48755045e+02, 4.48755045e+02,
4.49111914e+02, 4.49111914e+02, 4.49111914e+02, 4.49111914e+02,
4.51654090e+02, 4.51654090e+02, 4.51654090e+02, 4.51654090e+02,
4.52718346e+02, 4.52718346e+02, 4.52718346e+02, 4.52718346e+02,
4.52919431e+02, 4.52919431e+02, 4.52919431e+02, 4.52919431e+02,
4.52976550e+02, 4.52976550e+02, 4.52976550e+02, 4.52976550e+02,
4.53103923e+02, 4.53103923e+02, 4.53103923e+02, 4.53103923e+02,
4.53388509e+02, 4.53388509e+02, 4.53388509e+02, 4.53388509e+02,
4.53898765e+02, 4.53898765e+02, 4.53898765e+02, 4.53898765e+02,
4.54482141e+02, 4.54482141e+02, 4.54482141e+02, 4.54482141e+02,
4.55085093e+02, 4.55085093e+02, 4.55085093e+02, 4.55085093e+02,
4.52596174e+02, 4.52596174e+02, 4.52596174e+02, 4.52596174e+02,
4.27900465e+02, 4.27900465e+02, 4.27900465e+02, 4.27900465e+02,
3.14451641e+02, 3.14451641e+02, 3.14451641e+02, 3.14451641e+02,
8.65631679e+01, 8.65631679e+01, 8.65631679e+01, 8.65631679e+01,
2.41830497e+00, 2.41830497e+00, 2.41830497e+00, 2.41830497e+00,
1.27132333e-02, 1.27132333e-02, 1.27132333e-02, 1.27132333e-02,
1.00002685e-02, 1.00002685e-02, 1.00002685e-02, 1.00002685e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999989,
0.99999989, 0.99999989, 0.99999989, 0.99999957, 0.99999957,
0.99999957, 0.99999957, 0.99999839, 0.99999839, 0.99999839,
0.99999839, 0.99999423, 0.99999423, 0.99999423, 0.99999423,
0.99998062, 0.99998062, 0.99998062, 0.99998062, 0.99993892,
0.99993892, 0.99993892, 0.99993892, 0.99982004, 0.99982004,
0.99982004, 0.99982004, 0.99950587, 0.99950587, 0.99950587,
0.99950587, 0.99874031, 0.99874031, 0.99874031, 0.99874031,
0.99702982, 0.99702982, 0.99702982, 0.99702982, 0.99354599,
0.99354599, 0.99354599, 0.99354599, 0.98711067, 0.98711067,
0.98711067, 0.98711067, 0.97636406, 0.97636406, 0.97636406,
0.97636406, 0.96013913, 0.96013913, 0.96013913, 0.96013913,
0.93789515, 0.93789515, 0.93789515, 0.93789515, 0.90994657,
0.90994657, 0.90994657, 0.90994657, 0.8773198 , 0.8773198 ,
0.8773198 , 0.8773198 , 0.84131053, 0.84131053, 0.84131053,
0.84131053, 0.80309318, 0.80309318, 0.80309318, 0.80309318,
0.76488582, 0.76488582, 0.76488582, 0.76488582, 0.72862882,
0.72862882, 0.72862882, 0.72862882, 0.69424027, 0.69424027,
0.69424027, 0.69424027, 0.66187235, 0.66187235, 0.66187235,
0.66187235, 0.63295763, 0.63295763, 0.63295763, 0.63295763,
0.60550311, 0.60550311, 0.60550311, 0.60550311, 0.58821214,
0.58821214, 0.58821214, 0.58821214, 0.57094445, 0.57094445,
0.57094445, 0.57094445, 0.56567273, 0.56567273, 0.56567273,
0.56567273, 0.56457433, 0.56457433, 0.56457433, 0.56457433,
0.56452234, 0.56452234, 0.56452234, 0.56452234, 0.56563963,
0.56563963, 0.56563963, 0.56563963, 0.56692819, 0.56692819,
0.56692819, 0.56692819, 0.56718804, 0.56718804, 0.56718804,
0.56718804, 0.56693567, 0.56693567, 0.56693567, 0.56693567,
0.56767338, 0.56767338, 0.56767338, 0.56767338, 0.57613836,
0.57613836, 0.57613836, 0.57613836, 0.61774062, 0.61774062,
0.61774062, 0.61774062, 0.75887044, 0.75887044, 0.75887044,
0.75887044, 1.13039106, 1.13039106, 1.13039106, 1.13039106,
1.91581709, 1.91581709, 1.91581709, 1.91581709, 3.05001354,
3.05001354, 3.05001354, 3.05001354, 3.50876949, 3.50876949,
3.50876949, 3.50876949, 2.9569208 , 2.9569208 , 2.9569208 ,
2.9569208 , 1.40056125, 1.40056125, 1.40056125, 1.40056125,
1.02615253, 1.02615253, 1.02615253, 1.02615253, 1.00051302,
1.00051302, 1.00051302, 1.00051302, 1.00000017, 1.00000017,
1.00000017, 1.00000017, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([8.31212456e-07, 8.31212456e-07, 8.31212456e-07, 8.31212456e-07,
3.97120544e-06, 3.97120544e-06, 3.97120544e-06, 3.97120544e-06,
1.59059987e-05, 1.59059987e-05, 1.59059987e-05, 1.59059987e-05,
6.03664366e-05, 6.03664366e-05, 6.03664366e-05, 6.03664366e-05,
2.15805643e-04, 2.15805643e-04, 2.15805643e-04, 2.15805643e-04,
7.25243296e-04, 7.25243296e-04, 7.25243296e-04, 7.25243296e-04,
2.28544773e-03, 2.28544773e-03, 2.28544773e-03, 2.28544773e-03,
6.73404888e-03, 6.73404888e-03, 6.73404888e-03, 6.73404888e-03,
1.84918575e-02, 1.84918575e-02, 1.84918575e-02, 1.84918575e-02,
4.71552363e-02, 4.71552363e-02, 4.71552363e-02, 4.71552363e-02,
1.11259276e-01, 1.11259276e-01, 1.11259276e-01, 1.11259276e-01,
2.42090826e-01, 2.42090826e-01, 2.42090826e-01, 2.42090826e-01,
4.84732171e-01, 4.84732171e-01, 4.84732171e-01, 4.84732171e-01,
8.92811756e-01, 8.92811756e-01, 8.92811756e-01, 8.92811756e-01,
1.51595482e+00, 1.51595482e+00, 1.51595482e+00, 1.51595482e+00,
2.38448316e+00, 2.38448316e+00, 2.38448316e+00, 2.38448316e+00,
3.49994899e+00, 3.49994899e+00, 3.49994899e+00, 3.49994899e+00,
4.83781455e+00, 4.83781455e+00, 4.83781455e+00, 4.83781455e+00,
6.36160827e+00, 6.36160827e+00, 6.36160827e+00, 6.36160827e+00,
8.03629840e+00, 8.03629840e+00, 8.03629840e+00, 8.03629840e+00,
9.75414415e+00, 9.75414415e+00, 9.75414415e+00, 9.75414415e+00,
1.14703604e+01, 1.14703604e+01, 1.14703604e+01, 1.14703604e+01,
1.31577649e+01, 1.31577649e+01, 1.31577649e+01, 1.31577649e+01,
1.48036949e+01, 1.48036949e+01, 1.48036949e+01, 1.48036949e+01,
1.63662284e+01, 1.63662284e+01, 1.63662284e+01, 1.63662284e+01,
1.77761853e+01, 1.77761853e+01, 1.77761853e+01, 1.77761853e+01,
1.89288293e+01, 1.89288293e+01, 1.89288293e+01, 1.89288293e+01,
1.97266212e+01, 1.97266212e+01, 1.97266212e+01, 1.97266212e+01,
2.01268304e+01, 2.01268304e+01, 2.01268304e+01, 2.01268304e+01,
2.02304156e+01, 2.02304156e+01, 2.02304156e+01, 2.02304156e+01,
2.01855356e+01, 2.01855356e+01, 2.01855356e+01, 2.01855356e+01,
2.00664233e+01, 2.00664233e+01, 2.00664233e+01, 2.00664233e+01,
2.00284165e+01, 2.00284165e+01, 2.00284165e+01, 2.00284165e+01,
2.00164011e+01, 2.00164011e+01, 2.00164011e+01, 2.00164011e+01,
2.00075438e+01, 2.00075438e+01, 2.00075438e+01, 2.00075438e+01,
1.99976330e+01, 1.99976330e+01, 1.99976330e+01, 1.99976330e+01,
1.99833671e+01, 1.99833671e+01, 1.99833671e+01, 1.99833671e+01,
1.99631313e+01, 1.99631313e+01, 1.99631313e+01, 1.99631313e+01,
1.99444762e+01, 1.99444762e+01, 1.99444762e+01, 1.99444762e+01,
1.99229151e+01, 1.99229151e+01, 1.99229151e+01, 1.99229151e+01,
1.98546912e+01, 1.98546912e+01, 1.98546912e+01, 1.98546912e+01,
1.95683651e+01, 1.95683651e+01, 1.95683651e+01, 1.95683651e+01,
1.82512117e+01, 1.82512117e+01, 1.82512117e+01, 1.82512117e+01,
1.31946812e+01, 1.31946812e+01, 1.31946812e+01, 1.31946812e+01,
3.22197950e+00, 3.22197950e+00, 3.22197950e+00, 3.22197950e+00,
7.26448767e-02, 7.26448767e-02, 7.26448767e-02, 7.26448767e-02,
1.16941338e-04, 1.16941338e-04, 1.16941338e-04, 1.16941338e-04,
2.00485498e-08, 2.00485498e-08, 2.00485498e-08, 2.00485498e-08,
3.19846760e-12, 3.19846760e-12, 3.19846760e-12, 3.19846760e-12,
4.91826059e-16, 4.91826059e-16, 4.91826059e-16, 4.91826059e-16,
6.67643390e-20, 6.67643390e-20, 6.67643390e-20, 6.67643390e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999969e+02, 9.99999969e+02, 9.99999969e+02, 9.99999969e+02,
9.99999851e+02, 9.99999851e+02, 9.99999851e+02, 9.99999851e+02,
9.99999405e+02, 9.99999405e+02, 9.99999405e+02, 9.99999405e+02,
9.99997741e+02, 9.99997741e+02, 9.99997741e+02, 9.99997741e+02,
9.99991925e+02, 9.99991925e+02, 9.99991925e+02, 9.99991925e+02,
9.99972864e+02, 9.99972864e+02, 9.99972864e+02, 9.99972864e+02,
9.99914490e+02, 9.99914490e+02, 9.99914490e+02, 9.99914490e+02,
9.99748065e+02, 9.99748065e+02, 9.99748065e+02, 9.99748065e+02,
9.99308322e+02, 9.99308322e+02, 9.99308322e+02, 9.99308322e+02,
9.98237056e+02, 9.98237056e+02, 9.98237056e+02, 9.98237056e+02,
9.95845011e+02, 9.95845011e+02, 9.95845011e+02, 9.95845011e+02,
9.90979078e+02, 9.90979078e+02, 9.90979078e+02, 9.90979078e+02,
9.82011051e+02, 9.82011051e+02, 9.82011051e+02, 9.82011051e+02,
9.67091266e+02, 9.67091266e+02, 9.67091266e+02, 9.67091266e+02,
9.44695117e+02, 9.44695117e+02, 9.44695117e+02, 9.44695117e+02,
9.14239174e+02, 9.14239174e+02, 9.14239174e+02, 9.14239174e+02,
8.76379529e+02, 8.76379529e+02, 8.76379529e+02, 8.76379529e+02,
8.32762793e+02, 8.32762793e+02, 8.32762793e+02, 8.32762793e+02,
7.85366006e+02, 7.85366006e+02, 7.85366006e+02, 7.85366006e+02,
7.35932360e+02, 7.35932360e+02, 7.35932360e+02, 7.35932360e+02,
6.87323424e+02, 6.87323424e+02, 6.87323424e+02, 6.87323424e+02,
6.42175077e+02, 6.42175077e+02, 6.42175077e+02, 6.42175077e+02,
6.00145773e+02, 6.00145773e+02, 6.00145773e+02, 6.00145773e+02,
5.61538265e+02, 5.61538265e+02, 5.61538265e+02, 5.61538265e+02,
5.26840609e+02, 5.26840609e+02, 5.26840609e+02, 5.26840609e+02,
4.97140791e+02, 4.97140791e+02, 4.97140791e+02, 4.97140791e+02,
4.73884379e+02, 4.73884379e+02, 4.73884379e+02, 4.73884379e+02,
4.58462049e+02, 4.58462049e+02, 4.58462049e+02, 4.58462049e+02,
4.50871407e+02, 4.50871407e+02, 4.50871407e+02, 4.50871407e+02,
4.48847969e+02, 4.48847969e+02, 4.48847969e+02, 4.48847969e+02,
4.49672702e+02, 4.49672702e+02, 4.49672702e+02, 4.49672702e+02,
4.51922948e+02, 4.51922948e+02, 4.51922948e+02, 4.51922948e+02,
4.52785224e+02, 4.52785224e+02, 4.52785224e+02, 4.52785224e+02,
4.53005867e+02, 4.53005867e+02, 4.53005867e+02, 4.53005867e+02,
4.53063737e+02, 4.53063737e+02, 4.53063737e+02, 4.53063737e+02,
4.53160041e+02, 4.53160041e+02, 4.53160041e+02, 4.53160041e+02,
4.53422261e+02, 4.53422261e+02, 4.53422261e+02, 4.53422261e+02,
4.53914136e+02, 4.53914136e+02, 4.53914136e+02, 4.53914136e+02,
4.54500339e+02, 4.54500339e+02, 4.54500339e+02, 4.54500339e+02,
4.55295261e+02, 4.55295261e+02, 4.55295261e+02, 4.55295261e+02,
4.55007290e+02, 4.55007290e+02, 4.55007290e+02, 4.55007290e+02,
4.44699313e+02, 4.44699313e+02, 4.44699313e+02, 4.44699313e+02,
3.84060326e+02, 3.84060326e+02, 3.84060326e+02, 3.84060326e+02,
1.91713252e+02, 1.91713252e+02, 1.91713252e+02, 1.91713252e+02,
1.83826676e+01, 1.83826676e+01, 1.83826676e+01, 1.83826676e+01,
1.13135376e-01, 1.13135376e-01, 1.13135376e-01, 1.13135376e-01,
1.00165770e-02, 1.00165770e-02, 1.00165770e-02, 1.00165770e-02,
1.00000024e-02, 1.00000024e-02, 1.00000024e-02, 1.00000024e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999963,
0.99999963, 0.99999963, 0.99999963, 0.99999863, 0.99999863,
0.99999863, 0.99999863, 0.99999517, 0.99999517, 0.99999517,
0.99999517, 0.99998392, 0.99998392, 0.99998392, 0.99998392,
0.99994967, 0.99994967, 0.99994967, 0.99994967, 0.99985237,
0.99985237, 0.99985237, 0.99985237, 0.99959542, 0.99959542,
0.99959542, 0.99959542, 0.9989677 , 0.9989677 , 0.9989677 ,
0.9989677 , 0.99755668, 0.99755668, 0.99755668, 0.99755668,
0.99465483, 0.99465483, 0.99465483, 0.99465483, 0.98922278,
0.98922278, 0.98922278, 0.98922278, 0.98000087, 0.98000087,
0.98000087, 0.98000087, 0.96581386, 0.96581386, 0.96581386,
0.96581386, 0.94597479, 0.94597479, 0.94597479, 0.94597479,
0.92056352, 0.92056352, 0.92056352, 0.92056352, 0.89039 ,
0.89039 , 0.89039 , 0.89039 , 0.85665144, 0.85665144,
0.85665144, 0.85665144, 0.82046164, 0.82046164, 0.82046164,
0.82046164, 0.78331999, 0.78331999, 0.78331999, 0.78331999,
0.74742401, 0.74742401, 0.74742401, 0.74742401, 0.71331198,
0.71331198, 0.71331198, 0.71331198, 0.68102127, 0.68102127,
0.68102127, 0.68102127, 0.65059716, 0.65059716, 0.65059716,
0.65059716, 0.6240258 , 0.6240258 , 0.6240258 , 0.6240258 ,
0.59855044, 0.59855044, 0.59855044, 0.59855044, 0.58370503,
0.58370503, 0.58370503, 0.58370503, 0.56923565, 0.56923565,
0.56923565, 0.56923565, 0.5647148 , 0.5647148 , 0.5647148 ,
0.5647148 , 0.5645406 , 0.5645406 , 0.5645406 , 0.5645406 ,
0.56538346, 0.56538346, 0.56538346, 0.56538346, 0.56608138,
0.56608138, 0.56608138, 0.56608138, 0.56681268, 0.56681268,
0.56681268, 0.56681268, 0.56720477, 0.56720477, 0.56720477,
0.56720477, 0.56710473, 0.56710473, 0.56710473, 0.56710473,
0.56748519, 0.56748519, 0.56748519, 0.56748519, 0.5725192 ,
0.5725192 , 0.5725192 , 0.5725192 , 0.59936974, 0.59936974,
0.59936974, 0.59936974, 0.69655554, 0.69655554, 0.69655554,
0.69655554, 0.9676065 , 0.9676065 , 0.9676065 , 0.9676065 ,
1.57749515, 1.57749515, 1.57749515, 1.57749515, 2.65892925,
2.65892925, 2.65892925, 2.65892925, 3.47677245, 3.47677245,
3.47677245, 3.47677245, 3.4415978 , 3.4415978 , 3.4415978 ,
3.4415978 , 2.06542454, 2.06542454, 2.06542454, 2.06542454,
1.09918894, 1.09918894, 1.09918894, 1.09918894, 1.00437867,
1.00437867, 1.00437867, 1.00437867, 1.00001045, 1.00001045,
1.00001045, 1.00001045, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.06442751e-06, 3.06442751e-06, 3.06442751e-06, 3.06442751e-06,
1.37096058e-05, 1.37096058e-05, 1.37096058e-05, 1.37096058e-05,
5.11071441e-05, 5.11071441e-05, 5.11071441e-05, 5.11071441e-05,
1.80696441e-04, 1.80696441e-04, 1.80696441e-04, 1.80696441e-04,
6.01731053e-04, 6.01731053e-04, 6.01731053e-04, 6.01731053e-04,
1.88320977e-03, 1.88320977e-03, 1.88320977e-03, 1.88320977e-03,
5.52400997e-03, 5.52400997e-03, 5.52400997e-03, 5.52400997e-03,
1.51400717e-02, 1.51400717e-02, 1.51400717e-02, 1.51400717e-02,
3.86400960e-02, 3.86400960e-02, 3.86400960e-02, 3.86400960e-02,
9.15052429e-02, 9.15052429e-02, 9.15052429e-02, 9.15052429e-02,
2.00411209e-01, 2.00411209e-01, 2.00411209e-01, 2.00411209e-01,
4.04958870e-01, 4.04958870e-01, 4.04958870e-01, 4.04958870e-01,
7.54311496e-01, 7.54311496e-01, 7.54311496e-01, 7.54311496e-01,
1.29704807e+00, 1.29704807e+00, 1.29704807e+00, 1.29704807e+00,
2.06709372e+00, 2.06709372e+00, 2.06709372e+00, 2.06709372e+00,
3.07296603e+00, 3.07296603e+00, 3.07296603e+00, 3.07296603e+00,
4.29705387e+00, 4.29705387e+00, 4.29705387e+00, 4.29705387e+00,
5.70596036e+00, 5.70596036e+00, 5.70596036e+00, 5.70596036e+00,
7.26745760e+00, 7.26745760e+00, 7.26745760e+00, 7.26745760e+00,
8.91729908e+00, 8.91729908e+00, 8.91729908e+00, 8.91729908e+00,
1.05722640e+01, 1.05722640e+01, 1.05722640e+01, 1.05722640e+01,
1.22139882e+01, 1.22139882e+01, 1.22139882e+01, 1.22139882e+01,
1.38271695e+01, 1.38271695e+01, 1.38271695e+01, 1.38271695e+01,
1.53909420e+01, 1.53909420e+01, 1.53909420e+01, 1.53909420e+01,
1.68595079e+01, 1.68595079e+01, 1.68595079e+01, 1.68595079e+01,
1.81589814e+01, 1.81589814e+01, 1.81589814e+01, 1.81589814e+01,
1.91837824e+01, 1.91837824e+01, 1.91837824e+01, 1.91837824e+01,
1.98529322e+01, 1.98529322e+01, 1.98529322e+01, 1.98529322e+01,
2.01599348e+01, 2.01599348e+01, 2.01599348e+01, 2.01599348e+01,
2.02242115e+01, 2.02242115e+01, 2.02242115e+01, 2.02242115e+01,
2.01558715e+01, 2.01558715e+01, 2.01558715e+01, 2.01558715e+01,
2.00527078e+01, 2.00527078e+01, 2.00527078e+01, 2.00527078e+01,
2.00224238e+01, 2.00224238e+01, 2.00224238e+01, 2.00224238e+01,
2.00150070e+01, 2.00150070e+01, 2.00150070e+01, 2.00150070e+01,
2.00079684e+01, 2.00079684e+01, 2.00079684e+01, 2.00079684e+01,
1.99973046e+01, 1.99973046e+01, 1.99973046e+01, 1.99973046e+01,
1.99790344e+01, 1.99790344e+01, 1.99790344e+01, 1.99790344e+01,
1.99548828e+01, 1.99548828e+01, 1.99548828e+01, 1.99548828e+01,
1.99337003e+01, 1.99337003e+01, 1.99337003e+01, 1.99337003e+01,
1.99182352e+01, 1.99182352e+01, 1.99182352e+01, 1.99182352e+01,
1.98796077e+01, 1.98796077e+01, 1.98796077e+01, 1.98796077e+01,
1.97369800e+01, 1.97369800e+01, 1.97369800e+01, 1.97369800e+01,
1.90826196e+01, 1.90826196e+01, 1.90826196e+01, 1.90826196e+01,
1.62655591e+01, 1.62655591e+01, 1.62655591e+01, 1.62655591e+01,
8.02647381e+00, 8.02647381e+00, 8.02647381e+00, 8.02647381e+00,
5.66390276e-01, 5.66390276e-01, 5.66390276e-01, 5.66390276e-01,
3.57075007e-03, 3.57075007e-03, 3.57075007e-03, 3.57075007e-03,
1.26227765e-06, 1.26227765e-06, 1.26227765e-06, 1.26227765e-06,
1.87417390e-10, 1.87417390e-10, 1.87417390e-10, 1.87417390e-10,
2.86649447e-14, 2.86649447e-14, 2.86649447e-14, 2.86649447e-14,
4.45854151e-18, 4.45854151e-18, 4.45854151e-18, 4.45854151e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999885e+02, 9.99999885e+02, 9.99999885e+02, 9.99999885e+02,
9.99999487e+02, 9.99999487e+02, 9.99999487e+02, 9.99999487e+02,
9.99998088e+02, 9.99998088e+02, 9.99998088e+02, 9.99998088e+02,
9.99993239e+02, 9.99993239e+02, 9.99993239e+02, 9.99993239e+02,
9.99977486e+02, 9.99977486e+02, 9.99977486e+02, 9.99977486e+02,
9.99929539e+02, 9.99929539e+02, 9.99929539e+02, 9.99929539e+02,
9.99793331e+02, 9.99793331e+02, 9.99793331e+02, 9.99793331e+02,
9.99433661e+02, 9.99433661e+02, 9.99433661e+02, 9.99433661e+02,
9.98555189e+02, 9.98555189e+02, 9.98555189e+02, 9.98555189e+02,
9.96581570e+02, 9.96581570e+02, 9.96581570e+02, 9.96581570e+02,
9.92526877e+02, 9.92526877e+02, 9.92526877e+02, 9.92526877e+02,
9.84951309e+02, 9.84951309e+02, 9.84951309e+02, 9.84951309e+02,
9.72131850e+02, 9.72131850e+02, 9.72131850e+02, 9.72131850e+02,
9.52508972e+02, 9.52508972e+02, 9.52508972e+02, 9.52508972e+02,
9.25264888e+02, 9.25264888e+02, 9.25264888e+02, 9.25264888e+02,
8.90701571e+02, 8.90701571e+02, 8.90701571e+02, 8.90701571e+02,
8.50150128e+02, 8.50150128e+02, 8.50150128e+02, 8.50150128e+02,
8.05448379e+02, 8.05448379e+02, 8.05448379e+02, 8.05448379e+02,
7.58271461e+02, 7.58271461e+02, 7.58271461e+02, 7.58271461e+02,
7.10634261e+02, 7.10634261e+02, 7.10634261e+02, 7.10634261e+02,
6.65455423e+02, 6.65455423e+02, 6.65455423e+02, 6.65455423e+02,
6.23352527e+02, 6.23352527e+02, 6.23352527e+02, 6.23352527e+02,
5.84182279e+02, 5.84182279e+02, 5.84182279e+02, 5.84182279e+02,
5.48269428e+02, 5.48269428e+02, 5.48269428e+02, 5.48269428e+02,
5.16272042e+02, 5.16272042e+02, 5.16272042e+02, 5.16272042e+02,
4.89358572e+02, 4.89358572e+02, 4.89358572e+02, 4.89358572e+02,
4.68892875e+02, 4.68892875e+02, 4.68892875e+02, 4.68892875e+02,
4.55991188e+02, 4.55991188e+02, 4.55991188e+02, 4.55991188e+02,
4.50239990e+02, 4.50239990e+02, 4.50239990e+02, 4.50239990e+02,
4.49001549e+02, 4.49001549e+02, 4.49001549e+02, 4.49001549e+02,
4.50267586e+02, 4.50267586e+02, 4.50267586e+02, 4.50267586e+02,
4.52156184e+02, 4.52156184e+02, 4.52156184e+02, 4.52156184e+02,
4.52802596e+02, 4.52802596e+02, 4.52802596e+02, 4.52802596e+02,
4.53038480e+02, 4.53038480e+02, 4.53038480e+02, 4.53038480e+02,
4.53140657e+02, 4.53140657e+02, 4.53140657e+02, 4.53140657e+02,
4.53267209e+02, 4.53267209e+02, 4.53267209e+02, 4.53267209e+02,
4.53531394e+02, 4.53531394e+02, 4.53531394e+02, 4.53531394e+02,
4.53971062e+02, 4.53971062e+02, 4.53971062e+02, 4.53971062e+02,
4.54514025e+02, 4.54514025e+02, 4.54514025e+02, 4.54514025e+02,
4.55259395e+02, 4.55259395e+02, 4.55259395e+02, 4.55259395e+02,
4.55867897e+02, 4.55867897e+02, 4.55867897e+02, 4.55867897e+02,
4.52235462e+02, 4.52235462e+02, 4.52235462e+02, 4.52235462e+02,
4.22918025e+02, 4.22918025e+02, 4.22918025e+02, 4.22918025e+02,
2.98696478e+02, 2.98696478e+02, 2.98696478e+02, 2.98696478e+02,
7.35671819e+01, 7.35671819e+01, 7.35671819e+01, 7.35671819e+01,
1.73816088e+00, 1.73816088e+00, 1.73816088e+00, 1.73816088e+00,
1.15098232e-02, 1.15098232e-02, 1.15098232e-02, 1.15098232e-02,
1.00001491e-02, 1.00001491e-02, 1.00001491e-02, 1.00001491e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999884,
0.99999884, 0.99999884, 0.99999884, 0.99999596, 0.99999596,
0.99999596, 0.99999596, 0.99998666, 0.99998666, 0.99998666,
0.99998666, 0.99995851, 0.99995851, 0.99995851, 0.99995851,
0.99987881, 0.99987881, 0.99987881, 0.99987881, 0.99966846,
0.99966846, 0.99966846, 0.99966846, 0.99915332, 0.99915332,
0.99915332, 0.99915332, 0.99798882, 0.99798882, 0.99798882,
0.99798882, 0.99557202, 0.99557202, 0.99557202, 0.99557202,
0.99099076, 0.99099076, 0.99099076, 0.99099076, 0.98309025,
0.98309025, 0.98309025, 0.98309025, 0.97071425, 0.97071425,
0.97071425, 0.97071425, 0.95306962, 0.95306962, 0.95306962,
0.95306962, 0.93003166, 0.93003166, 0.93003166, 0.93003166,
0.90219494, 0.90219494, 0.90219494, 0.90219494, 0.8706268 ,
0.8706268 , 0.8706268 , 0.8706268 , 0.83644936, 0.83644936,
0.83644936, 0.83644936, 0.80070998, 0.80070998, 0.80070998,
0.80070998, 0.76534052, 0.76534052, 0.76534052, 0.76534052,
0.73160157, 0.73160157, 0.73160157, 0.73160157, 0.69941663,
0.69941663, 0.69941663, 0.69941663, 0.66904404, 0.66904404,
0.66904404, 0.66904404, 0.640412 , 0.640412 , 0.640412 ,
0.640412 , 0.61609193, 0.61609193, 0.61609193, 0.61609193,
0.59253553, 0.59253553, 0.59253553, 0.59253553, 0.57985082,
0.57985082, 0.57985082, 0.57985082, 0.56807488, 0.56807488,
0.56807488, 0.56807488, 0.56414175, 0.56414175, 0.56414175,
0.56414175, 0.56447501, 0.56447501, 0.56447501, 0.56447501,
0.56608222, 0.56608222, 0.56608222, 0.56608222, 0.5665232 ,
0.5665232 , 0.5665232 , 0.5665232 , 0.56679339, 0.56679339,
0.56679339, 0.56679339, 0.56717873, 0.56717873, 0.56717873,
0.56717873, 0.5672011 , 0.5672011 , 0.5672011 , 0.5672011 ,
0.56745182, 0.56745182, 0.56745182, 0.56745182, 0.57048317,
0.57048317, 0.57048317, 0.57048317, 0.58763359, 0.58763359,
0.58763359, 0.58763359, 0.65365865, 0.65365865, 0.65365865,
0.65365865, 0.84867448, 0.84867448, 0.84867448, 0.84867448,
1.31307086, 1.31307086, 1.31307086, 1.31307086, 2.21646901,
2.21646901, 2.21646901, 2.21646901, 3.30517749, 3.30517749,
3.30517749, 3.30517749, 3.62340282, 3.62340282, 3.62340282,
3.62340282, 2.90056638, 2.90056638, 2.90056638, 2.90056638,
1.33694683, 1.33694683, 1.33694683, 1.33694683, 1.0212743 ,
1.0212743 , 1.0212743 , 1.0212743 , 1.00034859, 1.00034859,
1.00034859, 1.00034859, 1.0000001 , 1.0000001 , 1.0000001 ,
1.0000001 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.03392125e-05, 1.03392125e-05, 1.03392125e-05, 1.03392125e-05,
4.34400060e-05, 4.34400060e-05, 4.34400060e-05, 4.34400060e-05,
1.51141917e-04, 1.51141917e-04, 1.51141917e-04, 1.51141917e-04,
4.99195131e-04, 4.99195131e-04, 4.99195131e-04, 4.99195131e-04,
1.55234811e-03, 1.55234811e-03, 1.55234811e-03, 1.55234811e-03,
4.53464427e-03, 4.53464427e-03, 4.53464427e-03, 4.53464427e-03,
1.24067118e-02, 1.24067118e-02, 1.24067118e-02, 1.24067118e-02,
3.16898153e-02, 3.16898153e-02, 3.16898153e-02, 3.16898153e-02,
7.53087747e-02, 7.53087747e-02, 7.53087747e-02, 7.53087747e-02,
1.65962861e-01, 1.65962861e-01, 1.65962861e-01, 1.65962861e-01,
3.38287464e-01, 3.38287464e-01, 3.38287464e-01, 3.38287464e-01,
6.36985732e-01, 6.36985732e-01, 6.36985732e-01, 6.36985732e-01,
1.10885693e+00, 1.10885693e+00, 1.10885693e+00, 1.10885693e+00,
1.79021928e+00, 1.79021928e+00, 1.79021928e+00, 1.79021928e+00,
2.69557108e+00, 2.69557108e+00, 2.69557108e+00, 2.69557108e+00,
3.81416950e+00, 3.81416950e+00, 3.81416950e+00, 3.81416950e+00,
5.11690819e+00, 5.11690819e+00, 5.11690819e+00, 5.11690819e+00,
6.57068197e+00, 6.57068197e+00, 6.57068197e+00, 6.57068197e+00,
8.14009276e+00, 8.14009276e+00, 8.14009276e+00, 8.14009276e+00,
9.73476120e+00, 9.73476120e+00, 9.73476120e+00, 9.73476120e+00,
1.13275023e+01, 1.13275023e+01, 1.13275023e+01, 1.13275023e+01,
1.29006498e+01, 1.29006498e+01, 1.29006498e+01, 1.29006498e+01,
1.44427973e+01, 1.44427973e+01, 1.44427973e+01, 1.44427973e+01,
1.59276078e+01, 1.59276078e+01, 1.59276078e+01, 1.59276078e+01,
1.73033647e+01, 1.73033647e+01, 1.73033647e+01, 1.73033647e+01,
1.84940290e+01, 1.84940290e+01, 1.84940290e+01, 1.84940290e+01,
1.93974938e+01, 1.93974938e+01, 1.93974938e+01, 1.93974938e+01,
1.99500228e+01, 1.99500228e+01, 1.99500228e+01, 1.99500228e+01,
2.01786156e+01, 2.01786156e+01, 2.01786156e+01, 2.01786156e+01,
2.02141830e+01, 2.02141830e+01, 2.02141830e+01, 2.02141830e+01,
2.01270312e+01, 2.01270312e+01, 2.01270312e+01, 2.01270312e+01,
2.00438391e+01, 2.00438391e+01, 2.00438391e+01, 2.00438391e+01,
2.00180478e+01, 2.00180478e+01, 2.00180478e+01, 2.00180478e+01,
2.00116554e+01, 2.00116554e+01, 2.00116554e+01, 2.00116554e+01,
2.00060169e+01, 2.00060169e+01, 2.00060169e+01, 2.00060169e+01,
1.99957578e+01, 1.99957578e+01, 1.99957578e+01, 1.99957578e+01,
1.99760299e+01, 1.99760299e+01, 1.99760299e+01, 1.99760299e+01,
1.99495430e+01, 1.99495430e+01, 1.99495430e+01, 1.99495430e+01,
1.99258351e+01, 1.99258351e+01, 1.99258351e+01, 1.99258351e+01,
1.99068524e+01, 1.99068524e+01, 1.99068524e+01, 1.99068524e+01,
1.98862615e+01, 1.98862615e+01, 1.98862615e+01, 1.98862615e+01,
1.98134680e+01, 1.98134680e+01, 1.98134680e+01, 1.98134680e+01,
1.94905556e+01, 1.94905556e+01, 1.94905556e+01, 1.94905556e+01,
1.80230680e+01, 1.80230680e+01, 1.80230680e+01, 1.80230680e+01,
1.26076173e+01, 1.26076173e+01, 1.26076173e+01, 1.26076173e+01,
2.67311141e+00, 2.67311141e+00, 2.67311141e+00, 2.67311141e+00,
5.14361403e-02, 5.14361403e-02, 5.14361403e-02, 5.14361403e-02,
6.80950934e-05, 6.80950934e-05, 6.80950934e-05, 6.80950934e-05,
1.13412667e-08, 1.13412667e-08, 1.13412667e-08, 1.13412667e-08,
1.79486084e-12, 1.79486084e-12, 1.79486084e-12, 1.79486084e-12,
2.73952290e-16, 2.73952290e-16, 2.73952290e-16, 2.73952290e-16,
5.00064164e-20, 5.00064164e-20, 5.00064164e-20, 5.00064164e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
9.99998375e+02, 9.99998375e+02, 9.99998375e+02, 9.99998375e+02,
9.99994345e+02, 9.99994345e+02, 9.99994345e+02, 9.99994345e+02,
9.99981322e+02, 9.99981322e+02, 9.99981322e+02, 9.99981322e+02,
9.99941918e+02, 9.99941918e+02, 9.99941918e+02, 9.99941918e+02,
9.99830343e+02, 9.99830343e+02, 9.99830343e+02, 9.99830343e+02,
9.99535884e+02, 9.99535884e+02, 9.99535884e+02, 9.99535884e+02,
9.98814928e+02, 9.98814928e+02, 9.98814928e+02, 9.98814928e+02,
9.97185851e+02, 9.97185851e+02, 9.97185851e+02, 9.97185851e+02,
9.93807795e+02, 9.93807795e+02, 9.93807795e+02, 9.93807795e+02,
9.87414745e+02, 9.87414745e+02, 9.87414745e+02, 9.87414745e+02,
9.76420200e+02, 9.76420200e+02, 9.76420200e+02, 9.76420200e+02,
9.59272359e+02, 9.59272359e+02, 9.59272359e+02, 9.59272359e+02,
9.34979017e+02, 9.34979017e+02, 9.34979017e+02, 9.34979017e+02,
9.03531113e+02, 9.03531113e+02, 9.03531113e+02, 9.03531113e+02,
8.65943868e+02, 8.65943868e+02, 8.65943868e+02, 8.65943868e+02,
8.23870991e+02, 8.23870991e+02, 8.23870991e+02, 8.23870991e+02,
7.78998721e+02, 7.78998721e+02, 7.78998721e+02, 7.78998721e+02,
7.32829097e+02, 7.32829097e+02, 7.32829097e+02, 7.32829097e+02,
6.87867667e+02, 6.87867667e+02, 6.87867667e+02, 6.87867667e+02,
6.45811417e+02, 6.45811417e+02, 6.45811417e+02, 6.45811417e+02,
6.06420020e+02, 6.06420020e+02, 6.06420020e+02, 6.06420020e+02,
5.69812260e+02, 5.69812260e+02, 5.69812260e+02, 5.69812260e+02,
5.36391612e+02, 5.36391612e+02, 5.36391612e+02, 5.36391612e+02,
5.06909342e+02, 5.06909342e+02, 5.06909342e+02, 5.06909342e+02,
4.82613586e+02, 4.82613586e+02, 4.82613586e+02, 4.82613586e+02,
4.64771665e+02, 4.64771665e+02, 4.64771665e+02, 4.64771665e+02,
4.54120136e+02, 4.54120136e+02, 4.54120136e+02, 4.54120136e+02,
4.49846503e+02, 4.49846503e+02, 4.49846503e+02, 4.49846503e+02,
4.49195989e+02, 4.49195989e+02, 4.49195989e+02, 4.49195989e+02,
4.50838120e+02, 4.50838120e+02, 4.50838120e+02, 4.50838120e+02,
4.52365430e+02, 4.52365430e+02, 4.52365430e+02, 4.52365430e+02,
4.52826151e+02, 4.52826151e+02, 4.52826151e+02, 4.52826151e+02,
4.53036969e+02, 4.53036969e+02, 4.53036969e+02, 4.53036969e+02,
4.53180502e+02, 4.53180502e+02, 4.53180502e+02, 4.53180502e+02,
4.53367904e+02, 4.53367904e+02, 4.53367904e+02, 4.53367904e+02,
4.53682043e+02, 4.53682043e+02, 4.53682043e+02, 4.53682043e+02,
4.54101255e+02, 4.54101255e+02, 4.54101255e+02, 4.54101255e+02,
4.54550055e+02, 4.54550055e+02, 4.54550055e+02, 4.54550055e+02,
4.55181873e+02, 4.55181873e+02, 4.55181873e+02, 4.55181873e+02,
4.56088869e+02, 4.56088869e+02, 4.56088869e+02, 4.56088869e+02,
4.55314517e+02, 4.55314517e+02, 4.55314517e+02, 4.55314517e+02,
4.42432305e+02, 4.42432305e+02, 4.42432305e+02, 4.42432305e+02,
3.73791360e+02, 3.73791360e+02, 3.73791360e+02, 3.73791360e+02,
1.73331140e+02, 1.73331140e+02, 1.73331140e+02, 1.73331140e+02,
1.42286314e+01, 1.42286314e+01, 1.42286314e+01, 1.42286314e+01,
7.35026594e-02, 7.35026594e-02, 7.35026594e-02, 7.35026594e-02,
1.00088839e-02, 1.00088839e-02, 1.00088839e-02, 1.00088839e-02,
1.00000013e-02, 1.00000013e-02, 1.00000013e-02, 1.00000013e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999914, 0.99999914, 0.99999914, 0.99999914, 0.9999966 ,
0.9999966 , 0.9999966 , 0.9999966 , 0.99998894, 0.99998894,
0.99998894, 0.99998894, 0.99996579, 0.99996579, 0.99996579,
0.99996579, 0.99990045, 0.99990045, 0.99990045, 0.99990045,
0.99972809, 0.99972809, 0.99972809, 0.99972809, 0.99930503,
0.99930503, 0.99930503, 0.99930503, 0.99834358, 0.99834358,
0.99834358, 0.99834358, 0.99633101, 0.99633101, 0.99633101,
0.99633101, 0.99247048, 0.99247048, 0.99247048, 0.99247048,
0.98571275, 0.98571275, 0.98571275, 0.98571275, 0.97494122,
0.97494122, 0.97494122, 0.97494122, 0.95929193, 0.95929193,
0.95929193, 0.95929193, 0.93846719, 0.93846719, 0.93846719,
0.93846719, 0.91285499, 0.91285499, 0.91285499, 0.91285499,
0.88337065, 0.88337065, 0.88337065, 0.88337065, 0.85110869,
0.85110869, 0.85110869, 0.85110869, 0.81698796, 0.81698796,
0.81698796, 0.81698796, 0.78242051, 0.78242051, 0.78242051,
0.78242051, 0.74907398, 0.74907398, 0.74907398, 0.74907398,
0.7171757 , 0.7171757 , 0.7171757 , 0.7171757 , 0.68675454,
0.68675454, 0.68675454, 0.68675454, 0.65817399, 0.65817399,
0.65817399, 0.65817399, 0.63120015, 0.63120015, 0.63120015,
0.63120015, 0.60905285, 0.60905285, 0.60905285, 0.60905285,
0.58738819, 0.58738819, 0.58738819, 0.58738819, 0.57655812,
0.57655812, 0.57655812, 0.57655812, 0.56731141, 0.56731141,
0.56731141, 0.56731141, 0.5639553 , 0.5639553 , 0.5639553 ,
0.5639553 , 0.56439893, 0.56439893, 0.56439893, 0.56439893,
0.5666221 , 0.5666221 , 0.5666221 , 0.5666221 , 0.56689879,
0.56689879, 0.56689879, 0.56689879, 0.56688439, 0.56688439,
0.56688439, 0.56688439, 0.56712646, 0.56712646, 0.56712646,
0.56712646, 0.56724753, 0.56724753, 0.56724753, 0.56724753,
0.56747625, 0.56747625, 0.56747625, 0.56747625, 0.56936103,
0.56936103, 0.56936103, 0.56936103, 0.58025147, 0.58025147,
0.58025147, 0.58025147, 0.62459777, 0.62459777, 0.62459777,
0.62459777, 0.76306356, 0.76306356, 0.76306356, 0.76306356,
1.11089581, 1.11089581, 1.11089581, 1.11089581, 1.83047175,
1.83047175, 1.83047175, 1.83047175, 2.96543117, 2.96543117,
2.96543117, 2.96543117, 3.63638824, 3.63638824, 3.63638824,
3.63638824, 3.47481596, 3.47481596, 3.47481596, 3.47481596,
1.95403945, 1.95403945, 1.95403945, 1.95403945, 1.08283494,
1.08283494, 1.08283494, 1.08283494, 1.00335988, 1.00335988,
1.00335988, 1.00335988, 1.00000576, 1.00000576, 1.00000576,
1.00000576, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.21524399e-05, 3.21524399e-05, 3.21524399e-05, 3.21524399e-05,
1.27174228e-04, 1.27174228e-04, 1.27174228e-04, 1.27174228e-04,
4.13952526e-04, 4.13952526e-04, 4.13952526e-04, 4.13952526e-04,
1.28010235e-03, 1.28010235e-03, 1.28010235e-03, 1.28010235e-03,
3.72494678e-03, 3.72494678e-03, 3.72494678e-03, 3.72494678e-03,
1.01750372e-02, 1.01750372e-02, 1.01750372e-02, 1.01750372e-02,
2.60100958e-02, 2.60100958e-02, 2.60100958e-02, 2.60100958e-02,
6.20163885e-02, 6.20163885e-02, 6.20163885e-02, 6.20163885e-02,
1.37474769e-01, 1.37474769e-01, 1.37474769e-01, 1.37474769e-01,
2.82559370e-01, 2.82559370e-01, 2.82559370e-01, 2.82559370e-01,
5.37624629e-01, 5.37624629e-01, 5.37624629e-01, 5.37624629e-01,
9.47149548e-01, 9.47149548e-01, 9.47149548e-01, 9.47149548e-01,
1.54878183e+00, 1.54878183e+00, 1.54878183e+00, 1.54878183e+00,
2.36197526e+00, 2.36197526e+00, 2.36197526e+00, 2.36197526e+00,
3.38252055e+00, 3.38252055e+00, 3.38252055e+00, 3.38252055e+00,
4.58640867e+00, 4.58640867e+00, 4.58640867e+00, 4.58640867e+00,
5.94121401e+00, 5.94121401e+00, 5.94121401e+00, 5.94121401e+00,
7.41947260e+00, 7.41947260e+00, 7.41947260e+00, 7.41947260e+00,
8.95560830e+00, 8.95560830e+00, 8.95560830e+00, 8.95560830e+00,
1.04968275e+01, 1.04968275e+01, 1.04968275e+01, 1.04968275e+01,
1.20259513e+01, 1.20259513e+01, 1.20259513e+01, 1.20259513e+01,
1.35357208e+01, 1.35357208e+01, 1.35357208e+01, 1.35357208e+01,
1.50098538e+01, 1.50098538e+01, 1.50098538e+01, 1.50098538e+01,
1.64177832e+01, 1.64177832e+01, 1.64177832e+01, 1.64177832e+01,
1.77019691e+01, 1.77019691e+01, 1.77019691e+01, 1.77019691e+01,
1.87851353e+01, 1.87851353e+01, 1.87851353e+01, 1.87851353e+01,
1.95738145e+01, 1.95738145e+01, 1.95738145e+01, 1.95738145e+01,
2.00235953e+01, 2.00235953e+01, 2.00235953e+01, 2.00235953e+01,
2.01873321e+01, 2.01873321e+01, 2.01873321e+01, 2.01873321e+01,
2.01992370e+01, 2.01992370e+01, 2.01992370e+01, 2.01992370e+01,
2.01017551e+01, 2.01017551e+01, 2.01017551e+01, 2.01017551e+01,
2.00372744e+01, 2.00372744e+01, 2.00372744e+01, 2.00372744e+01,
2.00157926e+01, 2.00157926e+01, 2.00157926e+01, 2.00157926e+01,
2.00082959e+01, 2.00082959e+01, 2.00082959e+01, 2.00082959e+01,
2.00024907e+01, 2.00024907e+01, 2.00024907e+01, 2.00024907e+01,
1.99918498e+01, 1.99918498e+01, 1.99918498e+01, 1.99918498e+01,
1.99718075e+01, 1.99718075e+01, 1.99718075e+01, 1.99718075e+01,
1.99458177e+01, 1.99458177e+01, 1.99458177e+01, 1.99458177e+01,
1.99210292e+01, 1.99210292e+01, 1.99210292e+01, 1.99210292e+01,
1.98969554e+01, 1.98969554e+01, 1.98969554e+01, 1.98969554e+01,
1.98826323e+01, 1.98826323e+01, 1.98826323e+01, 1.98826323e+01,
1.98432269e+01, 1.98432269e+01, 1.98432269e+01, 1.98432269e+01,
1.96844946e+01, 1.96844946e+01, 1.96844946e+01, 1.96844946e+01,
1.89485092e+01, 1.89485092e+01, 1.89485092e+01, 1.89485092e+01,
1.58676586e+01, 1.58676586e+01, 1.58676586e+01, 1.58676586e+01,
7.25693697e+00, 7.25693697e+00, 7.25693697e+00, 7.25693697e+00,
4.34921777e-01, 4.34921777e-01, 4.34921777e-01, 4.34921777e-01,
2.27948590e-03, 2.27948590e-03, 2.27948590e-03, 2.27948590e-03,
6.88627382e-07, 6.88627382e-07, 6.88627382e-07, 6.88627382e-07,
1.03089844e-10, 1.03089844e-10, 1.03089844e-10, 1.03089844e-10,
1.60056279e-14, 1.60056279e-14, 1.60056279e-14, 1.60056279e-14,
2.53568291e-18, 2.53568291e-18, 2.53568291e-18, 2.53568291e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99998797e+02, 9.99998797e+02, 9.99998797e+02, 9.99998797e+02,
9.99995242e+02, 9.99995242e+02, 9.99995242e+02, 9.99995242e+02,
9.99984511e+02, 9.99984511e+02, 9.99984511e+02, 9.99984511e+02,
9.99952104e+02, 9.99952104e+02, 9.99952104e+02, 9.99952104e+02,
9.99860634e+02, 9.99860634e+02, 9.99860634e+02, 9.99860634e+02,
9.99619353e+02, 9.99619353e+02, 9.99619353e+02, 9.99619353e+02,
9.99027231e+02, 9.99027231e+02, 9.99027231e+02, 9.99027231e+02,
9.97682034e+02, 9.97682034e+02, 9.97682034e+02, 9.97682034e+02,
9.94868221e+02, 9.94868221e+02, 9.94868221e+02, 9.94868221e+02,
9.89478098e+02, 9.89478098e+02, 9.89478098e+02, 9.89478098e+02,
9.80065169e+02, 9.80065169e+02, 9.80065169e+02, 9.80065169e+02,
9.65118065e+02, 9.65118065e+02, 9.65118065e+02, 9.65118065e+02,
9.43523368e+02, 9.43523368e+02, 9.43523368e+02, 9.43523368e+02,
9.15006674e+02, 9.15006674e+02, 9.15006674e+02, 9.15006674e+02,
8.80278342e+02, 8.80278342e+02, 8.80278342e+02, 8.80278342e+02,
8.40775285e+02, 8.40775285e+02, 8.40775285e+02, 8.40775285e+02,
7.98145941e+02, 7.98145941e+02, 7.98145941e+02, 7.98145941e+02,
7.53755098e+02, 7.53755098e+02, 7.53755098e+02, 7.53755098e+02,
7.09452587e+02, 7.09452587e+02, 7.09452587e+02, 7.09452587e+02,
6.67485676e+02, 6.67485676e+02, 6.67485676e+02, 6.67485676e+02,
6.28046689e+02, 6.28046689e+02, 6.28046689e+02, 6.28046689e+02,
5.91112375e+02, 5.91112375e+02, 5.91112375e+02, 5.91112375e+02,
5.56843157e+02, 5.56843157e+02, 5.56843157e+02, 5.56843157e+02,
5.25742971e+02, 5.25742971e+02, 5.25742971e+02, 5.25742971e+02,
4.98632093e+02, 4.98632093e+02, 4.98632093e+02, 4.98632093e+02,
4.76795490e+02, 4.76795490e+02, 4.76795490e+02, 4.76795490e+02,
4.61393393e+02, 4.61393393e+02, 4.61393393e+02, 4.61393393e+02,
4.52740843e+02, 4.52740843e+02, 4.52740843e+02, 4.52740843e+02,
4.49648853e+02, 4.49648853e+02, 4.49648853e+02, 4.49648853e+02,
4.49459232e+02, 4.49459232e+02, 4.49459232e+02, 4.49459232e+02,
4.51321023e+02, 4.51321023e+02, 4.51321023e+02, 4.51321023e+02,
4.52531111e+02, 4.52531111e+02, 4.52531111e+02, 4.52531111e+02,
4.52874067e+02, 4.52874067e+02, 4.52874067e+02, 4.52874067e+02,
4.53039653e+02, 4.53039653e+02, 4.53039653e+02, 4.53039653e+02,
4.53200233e+02, 4.53200233e+02, 4.53200233e+02, 4.53200233e+02,
4.53441075e+02, 4.53441075e+02, 4.53441075e+02, 4.53441075e+02,
4.53821299e+02, 4.53821299e+02, 4.53821299e+02, 4.53821299e+02,
4.54260100e+02, 4.54260100e+02, 4.54260100e+02, 4.54260100e+02,
4.54669989e+02, 4.54669989e+02, 4.54669989e+02, 4.54669989e+02,
4.55190229e+02, 4.55190229e+02, 4.55190229e+02, 4.55190229e+02,
4.56011617e+02, 4.56011617e+02, 4.56011617e+02, 4.56011617e+02,
4.56384643e+02, 4.56384643e+02, 4.56384643e+02, 4.56384643e+02,
4.51490886e+02, 4.51490886e+02, 4.51490886e+02, 4.51490886e+02,
4.17208973e+02, 4.17208973e+02, 4.17208973e+02, 4.17208973e+02,
2.82109903e+02, 2.82109903e+02, 2.82109903e+02, 2.82109903e+02,
6.13627160e+01, 6.13627160e+01, 6.13627160e+01, 6.13627160e+01,
1.21031418e+00, 1.21031418e+00, 1.21031418e+00, 1.21031418e+00,
1.08068264e-02, 1.08068264e-02, 1.08068264e-02, 1.08068264e-02,
1.00000814e-02, 1.00000814e-02, 1.00000814e-02, 1.00000814e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999752, 0.99999752, 0.99999752, 0.99999752, 0.99999075,
0.99999075, 0.99999075, 0.99999075, 0.99997179, 0.99997179,
0.99997179, 0.99997179, 0.99991817, 0.99991817, 0.99991817,
0.99991817, 0.99977683, 0.99977683, 0.99977683, 0.99977683,
0.99942915, 0.99942915, 0.99942915, 0.99942915, 0.99863505,
0.99863505, 0.99863505, 0.99863505, 0.99695933, 0.99695933,
0.99695933, 0.99695933, 0.9937087 , 0.9937087 , 0.9937087 ,
0.9937087 , 0.98793721, 0.98793721, 0.98793721, 0.98793721,
0.9785829 , 0.9785829 , 0.9785829 , 0.9785829 , 0.96474136,
0.96474136, 0.96474136, 0.96474136, 0.94597339, 0.94597339,
0.94597339, 0.94597339, 0.92247486, 0.92247486, 0.92247486,
0.92247486, 0.89499831, 0.89499831, 0.89499831, 0.89499831,
0.86456812, 0.86456812, 0.86456812, 0.86456812, 0.83212124,
0.83212124, 0.83212124, 0.83212124, 0.79863526, 0.79863526,
0.79863526, 0.79863526, 0.76573988, 0.76573988, 0.76573988,
0.76573988, 0.73420588, 0.73420588, 0.73420588, 0.73420588,
0.703996 , 0.703996 , 0.703996 , 0.703996 , 0.67517948,
0.67517948, 0.67517948, 0.67517948, 0.64829444, 0.64829444,
0.64829444, 0.64829444, 0.62286674, 0.62286674, 0.62286674,
0.62286674, 0.60281401, 0.60281401, 0.60281401, 0.60281401,
0.58304717, 0.58304717, 0.58304717, 0.58304717, 0.5737585 ,
0.5737585 , 0.5737585 , 0.5737585 , 0.56680383, 0.56680383,
0.56680383, 0.56680383, 0.56406554, 0.56406554, 0.56406554,
0.56406554, 0.56445674, 0.56445674, 0.56445674, 0.56445674,
0.56689479, 0.56689479, 0.56689479, 0.56689479, 0.56721005,
0.56721005, 0.56721005, 0.56721005, 0.56705228, 0.56705228,
0.56705228, 0.56705228, 0.56711649, 0.56711649, 0.56711649,
0.56711649, 0.5672706 , 0.5672706 , 0.5672706 , 0.5672706 ,
0.56752476, 0.56752476, 0.56752476, 0.56752476, 0.5687617 ,
0.5687617 , 0.5687617 , 0.5687617 , 0.5756626 , 0.5756626 ,
0.5756626 , 0.5756626 , 0.60517122, 0.60517122, 0.60517122,
0.60517122, 0.70225684, 0.70225684, 0.70225684, 0.70225684,
0.95916964, 0.95916964, 0.95916964, 0.95916964, 1.52074205,
1.52074205, 1.52074205, 1.52074205, 2.53366254, 2.53366254,
2.53366254, 2.53366254, 3.51709808, 3.51709808, 3.51709808,
3.51709808, 3.71733154, 3.71733154, 3.71733154, 3.71733154,
2.81684948, 2.81684948, 2.81684948, 2.81684948, 1.27928976,
1.27928976, 1.27928976, 1.27928976, 1.01706333, 1.01706333,
1.01706333, 1.01706333, 1.00022545, 1.00022545, 1.00022545,
1.00022545, 1.00000005, 1.00000005, 1.00000005, 1.00000005,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([9.27169916e-05, 9.27169916e-05, 9.27169916e-05, 9.27169916e-05,
3.45942523e-04, 3.45942523e-04, 3.45942523e-04, 3.45942523e-04,
1.05548283e-03, 1.05548283e-03, 1.05548283e-03, 1.05548283e-03,
3.06180591e-03, 3.06180591e-03, 3.06180591e-03, 3.06180591e-03,
8.35099130e-03, 8.35099130e-03, 8.35099130e-03, 8.35099130e-03,
2.13637129e-02, 2.13637129e-02, 2.13637129e-02, 2.13637129e-02,
5.10980585e-02, 5.10980585e-02, 5.10980585e-02, 5.10980585e-02,
1.13904438e-01, 1.13904438e-01, 1.13904438e-01, 1.13904438e-01,
2.35977350e-01, 2.35977350e-01, 2.35977350e-01, 2.35977350e-01,
4.53511059e-01, 4.53511059e-01, 4.53511059e-01, 4.53511059e-01,
8.08290869e-01, 8.08290869e-01, 8.08290869e-01, 8.08290869e-01,
1.33838461e+00, 1.33838461e+00, 1.33838461e+00, 1.33838461e+00,
2.06718875e+00, 2.06718875e+00, 2.06718875e+00, 2.06718875e+00,
2.99650453e+00, 2.99650453e+00, 2.99650453e+00, 2.99650453e+00,
4.10776410e+00, 4.10776410e+00, 4.10776410e+00, 4.10776410e+00,
5.37093252e+00, 5.37093252e+00, 5.37093252e+00, 5.37093252e+00,
6.75756651e+00, 6.75756651e+00, 6.75756651e+00, 6.75756651e+00,
8.23003026e+00, 8.23003026e+00, 8.23003026e+00, 8.23003026e+00,
9.71810036e+00, 9.71810036e+00, 9.71810036e+00, 9.71810036e+00,
1.12035998e+01, 1.12035998e+01, 1.12035998e+01, 1.12035998e+01,
1.26747396e+01, 1.26747396e+01, 1.26747396e+01, 1.26747396e+01,
1.41241052e+01, 1.41241052e+01, 1.41241052e+01, 1.41241052e+01,
1.55324405e+01, 1.55324405e+01, 1.55324405e+01, 1.55324405e+01,
1.68648788e+01, 1.68648788e+01, 1.68648788e+01, 1.68648788e+01,
1.80587444e+01, 1.80587444e+01, 1.80587444e+01, 1.80587444e+01,
1.90363513e+01, 1.90363513e+01, 1.90363513e+01, 1.90363513e+01,
1.97169663e+01, 1.97169663e+01, 1.97169663e+01, 1.97169663e+01,
2.00776225e+01, 2.00776225e+01, 2.00776225e+01, 2.00776225e+01,
2.01888597e+01, 2.01888597e+01, 2.01888597e+01, 2.01888597e+01,
2.01801125e+01, 2.01801125e+01, 2.01801125e+01, 2.01801125e+01,
2.00812778e+01, 2.00812778e+01, 2.00812778e+01, 2.00812778e+01,
2.00318261e+01, 2.00318261e+01, 2.00318261e+01, 2.00318261e+01,
2.00146648e+01, 2.00146648e+01, 2.00146648e+01, 2.00146648e+01,
2.00061042e+01, 2.00061042e+01, 2.00061042e+01, 2.00061042e+01,
1.99986959e+01, 1.99986959e+01, 1.99986959e+01, 1.99986959e+01,
1.99863432e+01, 1.99863432e+01, 1.99863432e+01, 1.99863432e+01,
1.99656179e+01, 1.99656179e+01, 1.99656179e+01, 1.99656179e+01,
1.99415041e+01, 1.99415041e+01, 1.99415041e+01, 1.99415041e+01,
1.99167435e+01, 1.99167435e+01, 1.99167435e+01, 1.99167435e+01,
1.98912290e+01, 1.98912290e+01, 1.98912290e+01, 1.98912290e+01,
1.98732047e+01, 1.98732047e+01, 1.98732047e+01, 1.98732047e+01,
1.98526648e+01, 1.98526648e+01, 1.98526648e+01, 1.98526648e+01,
1.97731261e+01, 1.97731261e+01, 1.97731261e+01, 1.97731261e+01,
1.94093352e+01, 1.94093352e+01, 1.94093352e+01, 1.94093352e+01,
1.77776801e+01, 1.77776801e+01, 1.77776801e+01, 1.77776801e+01,
1.19820754e+01, 1.19820754e+01, 1.19820754e+01, 1.19820754e+01,
2.16019726e+00, 2.16019726e+00, 2.16019726e+00, 2.16019726e+00,
3.53014742e-02, 3.53014742e-02, 3.53014742e-02, 3.53014742e-02,
3.82045712e-05, 3.82045712e-05, 3.82045712e-05, 3.82045712e-05,
6.27267874e-09, 6.27267874e-09, 6.27267874e-09, 6.27267874e-09,
9.86981788e-13, 9.86981788e-13, 9.86981788e-13, 9.86981788e-13,
1.50628633e-16, 1.50628633e-16, 1.50628633e-16, 1.50628633e-16,
1.80645712e-20, 1.80645712e-20, 1.80645712e-20, 1.80645712e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99996531e+02, 9.99996531e+02, 9.99996531e+02, 9.99996531e+02,
9.99987056e+02, 9.99987056e+02, 9.99987056e+02, 9.99987056e+02,
9.99960508e+02, 9.99960508e+02, 9.99960508e+02, 9.99960508e+02,
9.99885444e+02, 9.99885444e+02, 9.99885444e+02, 9.99885444e+02,
9.99687580e+02, 9.99687580e+02, 9.99687580e+02, 9.99687580e+02,
9.99200940e+02, 9.99200940e+02, 9.99200940e+02, 9.99200940e+02,
9.98089767e+02, 9.98089767e+02, 9.98089767e+02, 9.98089767e+02,
9.95746369e+02, 9.95746369e+02, 9.95746369e+02, 9.95746369e+02,
9.91205796e+02, 9.91205796e+02, 9.91205796e+02, 9.91205796e+02,
9.83160321e+02, 9.83160321e+02, 9.83160321e+02, 9.83160321e+02,
9.70163089e+02, 9.70163089e+02, 9.70163089e+02, 9.70163089e+02,
9.51025501e+02, 9.51025501e+02, 9.51025501e+02, 9.51025501e+02,
9.25253700e+02, 9.25253700e+02, 9.25253700e+02, 9.25253700e+02,
8.93272718e+02, 8.93272718e+02, 8.93272718e+02, 8.93272718e+02,
8.56285555e+02, 8.56285555e+02, 8.56285555e+02, 8.56285555e+02,
8.15844374e+02, 8.15844374e+02, 8.15844374e+02, 8.15844374e+02,
7.73342136e+02, 7.73342136e+02, 7.73342136e+02, 7.73342136e+02,
7.30129913e+02, 7.30129913e+02, 7.30129913e+02, 7.30129913e+02,
6.88352942e+02, 6.88352942e+02, 6.88352942e+02, 6.88352942e+02,
6.49007221e+02, 6.49007221e+02, 6.49007221e+02, 6.49007221e+02,
6.11939746e+02, 6.11939746e+02, 6.11939746e+02, 6.11939746e+02,
5.77224777e+02, 5.77224777e+02, 5.77224777e+02, 5.77224777e+02,
5.45110602e+02, 5.45110602e+02, 5.45110602e+02, 5.45110602e+02,
5.16188887e+02, 5.16188887e+02, 5.16188887e+02, 5.16188887e+02,
4.91335604e+02, 4.91335604e+02, 4.91335604e+02, 4.91335604e+02,
4.71814716e+02, 4.71814716e+02, 4.71814716e+02, 4.71814716e+02,
4.58644756e+02, 4.58644756e+02, 4.58644756e+02, 4.58644756e+02,
4.51748779e+02, 4.51748779e+02, 4.51748779e+02, 4.51748779e+02,
4.49620320e+02, 4.49620320e+02, 4.49620320e+02, 4.49620320e+02,
4.49793173e+02, 4.49793173e+02, 4.49793173e+02, 4.49793173e+02,
4.51686270e+02, 4.51686270e+02, 4.51686270e+02, 4.51686270e+02,
4.52653139e+02, 4.52653139e+02, 4.52653139e+02, 4.52653139e+02,
4.52934776e+02, 4.52934776e+02, 4.52934776e+02, 4.52934776e+02,
4.53069098e+02, 4.53069098e+02, 4.53069098e+02, 4.53069098e+02,
4.53226281e+02, 4.53226281e+02, 4.53226281e+02, 4.53226281e+02,
4.53501144e+02, 4.53501144e+02, 4.53501144e+02, 4.53501144e+02,
4.53932351e+02, 4.53932351e+02, 4.53932351e+02, 4.53932351e+02,
4.54403842e+02, 4.54403842e+02, 4.54403842e+02, 4.54403842e+02,
4.54828470e+02, 4.54828470e+02, 4.54828470e+02, 4.54828470e+02,
4.55256571e+02, 4.55256571e+02, 4.55256571e+02, 4.55256571e+02,
4.55891222e+02, 4.55891222e+02, 4.55891222e+02, 4.55891222e+02,
4.56695880e+02, 4.56695880e+02, 4.56695880e+02, 4.56695880e+02,
4.55303353e+02, 4.55303353e+02, 4.55303353e+02, 4.55303353e+02,
4.39632542e+02, 4.39632542e+02, 4.39632542e+02, 4.39632542e+02,
3.62585344e+02, 3.62585344e+02, 3.62585344e+02, 3.62585344e+02,
1.55123980e+02, 1.55123980e+02, 1.55123980e+02, 1.55123980e+02,
1.06526829e+01, 1.06526829e+01, 1.06526829e+01, 1.06526829e+01,
4.72581949e-02, 4.72581949e-02, 4.72581949e-02, 4.72581949e-02,
1.00047111e-02, 1.00047111e-02, 1.00047111e-02, 1.00047111e-02,
1.00000007e-02, 1.00000007e-02, 1.00000007e-02, 1.00000007e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999334, 0.99999334, 0.99999334, 0.99999334, 0.99997652,
0.99997652, 0.99997652, 0.99997652, 0.99993274, 0.99993274,
0.99993274, 0.99993274, 0.9998167 , 0.9998167 , 0.9998167 ,
0.9998167 , 0.9995308 , 0.9995308 , 0.9995308 , 0.9995308 ,
0.9988747 , 0.9988747 , 0.9988747 , 0.9988747 , 0.99747962,
0.99747962, 0.99747962, 0.99747962, 0.99474458, 0.99474458,
0.99474458, 0.99474458, 0.98982255, 0.98982255, 0.98982255,
0.98982255, 0.98171633, 0.98171633, 0.98171633, 0.98171633,
0.96950664, 0.96950664, 0.96950664, 0.96950664, 0.95264288,
0.95264288, 0.95264288, 0.95264288, 0.93114717, 0.93114717,
0.93114717, 0.93114717, 0.90560556, 0.90560556, 0.90560556,
0.90560556, 0.8769476 , 0.8769476 , 0.8769476 , 0.8769476 ,
0.8461295 , 0.8461295 , 0.8461295 , 0.8461295 , 0.81392176,
0.81392176, 0.81392176, 0.81392176, 0.78165473, 0.78165473,
0.78165473, 0.78165473, 0.75050172, 0.75050172, 0.75050172,
0.75050172, 0.72057659, 0.72057659, 0.72057659, 0.72057659,
0.69190945, 0.69190945, 0.69190945, 0.69190945, 0.66457344,
0.66457344, 0.66457344, 0.66457344, 0.63931001, 0.63931001,
0.63931001, 0.63931001, 0.61533571, 0.61533571, 0.61533571,
0.61533571, 0.59728585, 0.59728585, 0.59728585, 0.59728585,
0.57944602, 0.57944602, 0.57944602, 0.57944602, 0.57141549,
0.57141549, 0.57141549, 0.57141549, 0.56646332, 0.56646332,
0.56646332, 0.56646332, 0.56429638, 0.56429638, 0.56429638,
0.56429638, 0.56474556, 0.56474556, 0.56474556, 0.56474556,
0.56696375, 0.56696375, 0.56696375, 0.56696375, 0.56741743,
0.56741743, 0.56741743, 0.56741743, 0.5672394 , 0.5672394 ,
0.5672394 , 0.5672394 , 0.56719598, 0.56719598, 0.56719598,
0.56719598, 0.56730067, 0.56730067, 0.56730067, 0.56730067,
0.56757971, 0.56757971, 0.56757971, 0.56757971, 0.5684633 ,
0.5684633 , 0.5684633 , 0.5684633 , 0.57284684, 0.57284684,
0.57284684, 0.57284684, 0.59231821, 0.59231821, 0.59231821,
0.59231821, 0.6596568 , 0.6596568 , 0.6596568 , 0.6596568 ,
0.84699717, 0.84699717, 0.84699717, 0.84699717, 1.27785893,
1.27785893, 1.27785893, 1.27785893, 2.10551451, 2.10551451,
2.10551451, 2.10551451, 3.24550952, 3.24550952, 3.24550952,
3.24550952, 3.77306813, 3.77306813, 3.77306813, 3.77306813,
3.47838258, 3.47838258, 3.47838258, 3.47838258, 1.83959453,
1.83959453, 1.83959453, 1.83959453, 1.0682824 , 1.0682824 ,
1.0682824 , 1.0682824 , 1.00250794, 1.00250794, 1.00250794,
1.00250794, 1.00000304, 1.00000304, 1.00000304, 1.00000304,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.49214926e-04, 2.49214926e-04, 2.49214926e-04, 2.49214926e-04,
8.78604657e-04, 8.78604657e-04, 8.78604657e-04, 8.78604657e-04,
2.51662102e-03, 2.51662102e-03, 2.51662102e-03, 2.51662102e-03,
6.85892762e-03, 6.85892762e-03, 6.85892762e-03, 6.85892762e-03,
1.75588961e-02, 1.75588961e-02, 1.75588961e-02, 1.75588961e-02,
4.21228901e-02, 4.21228901e-02, 4.21228901e-02, 4.21228901e-02,
9.43950927e-02, 9.43950927e-02, 9.43950927e-02, 9.43950927e-02,
1.97042335e-01, 1.97042335e-01, 1.97042335e-01, 1.97042335e-01,
3.82340085e-01, 3.82340085e-01, 3.82340085e-01, 3.82340085e-01,
6.89147758e-01, 6.89147758e-01, 6.89147758e-01, 6.89147758e-01,
1.15519736e+00, 1.15519736e+00, 1.15519736e+00, 1.15519736e+00,
1.80686376e+00, 1.80686376e+00, 1.80686376e+00, 1.80686376e+00,
2.65131500e+00, 2.65131500e+00, 2.65131500e+00, 2.65131500e+00,
3.67550739e+00, 3.67550739e+00, 3.67550739e+00, 3.67550739e+00,
4.85271275e+00, 4.85271275e+00, 4.85271275e+00, 4.85271275e+00,
6.15350432e+00, 6.15350432e+00, 6.15350432e+00, 6.15350432e+00,
7.55357680e+00, 7.55357680e+00, 7.55357680e+00, 7.55357680e+00,
8.98941000e+00, 8.98941000e+00, 8.98941000e+00, 8.98941000e+00,
1.04303820e+01, 1.04303820e+01, 1.04303820e+01, 1.04303820e+01,
1.18617350e+01, 1.18617350e+01, 1.18617350e+01, 1.18617350e+01,
1.32783330e+01, 1.32783330e+01, 1.32783330e+01, 1.32783330e+01,
1.46700989e+01, 1.46700989e+01, 1.46700989e+01, 1.46700989e+01,
1.60141500e+01, 1.60141500e+01, 1.60141500e+01, 1.60141500e+01,
1.72717577e+01, 1.72717577e+01, 1.72717577e+01, 1.72717577e+01,
1.83764937e+01, 1.83764937e+01, 1.83764937e+01, 1.83764937e+01,
1.92517132e+01, 1.92517132e+01, 1.92517132e+01, 1.92517132e+01,
1.98312363e+01, 1.98312363e+01, 1.98312363e+01, 1.98312363e+01,
2.01141790e+01, 2.01141790e+01, 2.01141790e+01, 2.01141790e+01,
2.01871661e+01, 2.01871661e+01, 2.01871661e+01, 2.01871661e+01,
2.01587304e+01, 2.01587304e+01, 2.01587304e+01, 2.01587304e+01,
2.00649247e+01, 2.00649247e+01, 2.00649247e+01, 2.00649247e+01,
2.00267116e+01, 2.00267116e+01, 2.00267116e+01, 2.00267116e+01,
2.00134137e+01, 2.00134137e+01, 2.00134137e+01, 2.00134137e+01,
2.00048366e+01, 2.00048366e+01, 2.00048366e+01, 2.00048366e+01,
1.99955344e+01, 1.99955344e+01, 1.99955344e+01, 1.99955344e+01,
1.99804744e+01, 1.99804744e+01, 1.99804744e+01, 1.99804744e+01,
1.99582608e+01, 1.99582608e+01, 1.99582608e+01, 1.99582608e+01,
1.99352201e+01, 1.99352201e+01, 1.99352201e+01, 1.99352201e+01,
1.99120283e+01, 1.99120283e+01, 1.99120283e+01, 1.99120283e+01,
1.98878907e+01, 1.98878907e+01, 1.98878907e+01, 1.98878907e+01,
1.98653154e+01, 1.98653154e+01, 1.98653154e+01, 1.98653154e+01,
1.98516094e+01, 1.98516094e+01, 1.98516094e+01, 1.98516094e+01,
1.98100006e+01, 1.98100006e+01, 1.98100006e+01, 1.98100006e+01,
1.96316470e+01, 1.96316470e+01, 1.96316470e+01, 1.96316470e+01,
1.88041286e+01, 1.88041286e+01, 1.88041286e+01, 1.88041286e+01,
1.54317797e+01, 1.54317797e+01, 1.54317797e+01, 1.54317797e+01,
6.46630891e+00, 6.46630891e+00, 6.46630891e+00, 6.46630891e+00,
3.26471041e-01, 3.26471041e-01, 3.26471041e-01, 3.26471041e-01,
1.39752195e-03, 1.39752195e-03, 1.39752195e-03, 1.39752195e-03,
3.61410681e-07, 3.61410681e-07, 3.61410681e-07, 3.61410681e-07,
5.50928989e-11, 5.50928989e-11, 5.50928989e-11, 5.50928989e-11,
8.73446544e-15, 8.73446544e-15, 8.73446544e-15, 8.73446544e-15,
1.37689406e-18, 1.37689406e-18, 1.37689406e-18, 1.37689406e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99990675e+02, 9.99990675e+02, 9.99990675e+02, 9.99990675e+02,
9.99967126e+02, 9.99967126e+02, 9.99967126e+02, 9.99967126e+02,
9.99905841e+02, 9.99905841e+02, 9.99905841e+02, 9.99905841e+02,
9.99743393e+02, 9.99743393e+02, 9.99743393e+02, 9.99743393e+02,
9.99343207e+02, 9.99343207e+02, 9.99343207e+02, 9.99343207e+02,
9.98425049e+02, 9.98425049e+02, 9.98425049e+02, 9.98425049e+02,
9.96473752e+02, 9.96473752e+02, 9.96473752e+02, 9.96473752e+02,
9.92651960e+02, 9.92651960e+02, 9.92651960e+02, 9.92651960e+02,
9.85786061e+02, 9.85786061e+02, 9.85786061e+02, 9.85786061e+02,
9.74510522e+02, 9.74510522e+02, 9.74510522e+02, 9.74510522e+02,
9.57600381e+02, 9.57600381e+02, 9.57600381e+02, 9.57600381e+02,
9.34386650e+02, 9.34386650e+02, 9.34386650e+02, 9.34386650e+02,
9.05034576e+02, 9.05034576e+02, 9.05034576e+02, 9.05034576e+02,
8.70506126e+02, 8.70506126e+02, 8.70506126e+02, 8.70506126e+02,
8.32221605e+02, 8.32221605e+02, 8.32221605e+02, 8.32221605e+02,
7.91601867e+02, 7.91601867e+02, 7.91601867e+02, 7.91601867e+02,
7.49771930e+02, 7.49771930e+02, 7.49771930e+02, 7.49771930e+02,
7.08448789e+02, 7.08448789e+02, 7.08448789e+02, 7.08448789e+02,
6.69249654e+02, 6.69249654e+02, 6.69249654e+02, 6.69249654e+02,
6.32199855e+02, 6.32199855e+02, 6.32199855e+02, 6.32199855e+02,
5.97271856e+02, 5.97271856e+02, 5.97271856e+02, 5.97271856e+02,
5.64593117e+02, 5.64593117e+02, 5.64593117e+02, 5.64593117e+02,
5.34481735e+02, 5.34481735e+02, 5.34481735e+02, 5.34481735e+02,
5.07617179e+02, 5.07617179e+02, 5.07617179e+02, 5.07617179e+02,
4.84923891e+02, 4.84923891e+02, 4.84923891e+02, 4.84923891e+02,
4.67588272e+02, 4.67588272e+02, 4.67588272e+02, 4.67588272e+02,
4.56440880e+02, 4.56440880e+02, 4.56440880e+02, 4.56440880e+02,
4.51073579e+02, 4.51073579e+02, 4.51073579e+02, 4.51073579e+02,
4.49670476e+02, 4.49670476e+02, 4.49670476e+02, 4.49670476e+02,
4.50197414e+02, 4.50197414e+02, 4.50197414e+02, 4.50197414e+02,
4.51964568e+02, 4.51964568e+02, 4.51964568e+02, 4.51964568e+02,
4.52734660e+02, 4.52734660e+02, 4.52734660e+02, 4.52734660e+02,
4.52988476e+02, 4.52988476e+02, 4.52988476e+02, 4.52988476e+02,
4.53122020e+02, 4.53122020e+02, 4.53122020e+02, 4.53122020e+02,
4.53277355e+02, 4.53277355e+02, 4.53277355e+02, 4.53277355e+02,
4.53570948e+02, 4.53570948e+02, 4.53570948e+02, 4.53570948e+02,
4.54027799e+02, 4.54027799e+02, 4.54027799e+02, 4.54027799e+02,
4.54514822e+02, 4.54514822e+02, 4.54514822e+02, 4.54514822e+02,
4.54967633e+02, 4.54967633e+02, 4.54967633e+02, 4.54967633e+02,
4.55383145e+02, 4.55383145e+02, 4.55383145e+02, 4.55383145e+02,
4.55885058e+02, 4.55885058e+02, 4.55885058e+02, 4.55885058e+02,
4.56660485e+02, 4.56660485e+02, 4.56660485e+02, 4.56660485e+02,
4.56707224e+02, 4.56707224e+02, 4.56707224e+02, 4.56707224e+02,
4.50332485e+02, 4.50332485e+02, 4.50332485e+02, 4.50332485e+02,
4.10745038e+02, 4.10745038e+02, 4.10745038e+02, 4.10745038e+02,
2.64438188e+02, 2.64438188e+02, 2.64438188e+02, 2.64438188e+02,
5.04920492e+01, 5.04920492e+01, 5.04920492e+01, 5.04920492e+01,
8.21200453e-01, 8.21200453e-01, 8.21200453e-01, 8.21200453e-01,
1.04110586e-02, 1.04110586e-02, 1.04110586e-02, 1.04110586e-02,
1.00000427e-02, 1.00000427e-02, 1.00000427e-02, 1.00000427e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99998324, 0.99998324, 0.99998324, 0.99998324, 0.99994409,
0.99994409, 0.99994409, 0.99994409, 0.99984947, 0.99984947,
0.99984947, 0.99984947, 0.99961409, 0.99961409, 0.99961409,
0.99961409, 0.99907186, 0.99907186, 0.99907186, 0.99907186,
0.99791058, 0.99791058, 0.99791058, 0.99791058, 0.99561098,
0.99561098, 0.99561098, 0.99561098, 0.99141916, 0.99141916,
0.99141916, 0.99141916, 0.98440893, 0.98440893, 0.98440893,
0.98440893, 0.97366694, 0.97366694, 0.97366694, 0.97366694,
0.95855926, 0.95855926, 0.95855926, 0.95855926, 0.93895505,
0.93895505, 0.93895505, 0.93895505, 0.91527616, 0.91527616,
0.91527616, 0.91527616, 0.88833959, 0.88833959, 0.88833959,
0.88833959, 0.85907786, 0.85907786, 0.85907786, 0.85907786,
0.82825782, 0.82825782, 0.82825782, 0.82825782, 0.79682367,
0.79682367, 0.79682367, 0.79682367, 0.7660904 , 0.7660904 ,
0.7660904 , 0.7660904 , 0.73649342, 0.73649342, 0.73649342,
0.73649342, 0.7080382 , 0.7080382 , 0.7080382 , 0.7080382 ,
0.68079751, 0.68079751, 0.68079751, 0.68079751, 0.65483468,
0.65483468, 0.65483468, 0.65483468, 0.63114051, 0.63114051,
0.63114051, 0.63114051, 0.60854849, 0.60854849, 0.60854849,
0.60854849, 0.59238504, 0.59238504, 0.59238504, 0.59238504,
0.57651033, 0.57651033, 0.57651033, 0.57651033, 0.56951125,
0.56951125, 0.56951125, 0.56951125, 0.5662106 , 0.5662106 ,
0.5662106 , 0.5662106 , 0.56457441, 0.56457441, 0.56457441,
0.56457441, 0.56518521, 0.56518521, 0.56518521, 0.56518521,
0.5669638 , 0.5669638 , 0.5669638 , 0.5669638 , 0.56753478,
0.56753478, 0.56753478, 0.56753478, 0.56741507, 0.56741507,
0.56741507, 0.56741507, 0.56730543, 0.56730543, 0.56730543,
0.56730543, 0.56737641, 0.56737641, 0.56737641, 0.56737641,
0.56765193, 0.56765193, 0.56765193, 0.56765193, 0.56833782,
0.56833782, 0.56833782, 0.56833782, 0.57115323, 0.57115323,
0.57115323, 0.57115323, 0.58390602, 0.58390602, 0.58390602,
0.58390602, 0.63015878, 0.63015878, 0.63015878, 0.63015878,
0.76511277, 0.76511277, 0.76511277, 0.76511277, 1.09098504,
1.09098504, 1.09098504, 1.09098504, 1.75190783, 1.75190783,
1.75190783, 1.75190783, 2.84524356, 2.84524356, 2.84524356,
2.84524356, 3.69818791, 3.69818791, 3.69818791, 3.69818791,
3.79299239, 3.79299239, 3.79299239, 3.79299239, 2.70622572,
2.70622572, 2.70622572, 2.70622572, 1.23074962, 1.23074962,
1.23074962, 1.23074962, 1.01357481, 1.01357481, 1.01357481,
1.01357481, 1.00013936, 1.00013936, 1.00013936, 1.00013936,
1.00000003, 1.00000003, 1.00000003, 1.00000003, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([6.27176089e-04, 6.27176089e-04, 6.27176089e-04, 6.27176089e-04,
2.09197510e-03, 2.09197510e-03, 2.09197510e-03, 2.09197510e-03,
5.63246589e-03, 5.63246589e-03, 5.63246589e-03, 5.63246589e-03,
1.44413910e-02, 1.44413910e-02, 1.44413910e-02, 1.44413910e-02,
3.47398084e-02, 3.47398084e-02, 3.47398084e-02, 3.47398084e-02,
7.82416435e-02, 7.82416435e-02, 7.82416435e-02, 7.82416435e-02,
1.64502448e-01, 1.64502448e-01, 1.64502448e-01, 1.64502448e-01,
3.22153674e-01, 3.22153674e-01, 3.22153674e-01, 3.22153674e-01,
5.87013093e-01, 5.87013093e-01, 5.87013093e-01, 5.87013093e-01,
9.95867432e-01, 9.95867432e-01, 9.95867432e-01, 9.95867432e-01,
1.57717960e+00, 1.57717960e+00, 1.57717960e+00, 1.57717960e+00,
2.34277075e+00, 2.34277075e+00, 2.34277075e+00, 2.34277075e+00,
3.28498965e+00, 3.28498965e+00, 3.28498965e+00, 3.28498965e+00,
4.38103253e+00, 4.38103253e+00, 4.38103253e+00, 4.38103253e+00,
5.60227400e+00, 5.60227400e+00, 5.60227400e+00, 5.60227400e+00,
6.92499000e+00, 6.92499000e+00, 6.92499000e+00, 6.92499000e+00,
8.30862980e+00, 8.30862980e+00, 8.30862980e+00, 8.30862980e+00,
9.70342488e+00, 9.70342488e+00, 9.70342488e+00, 9.70342488e+00,
1.10947376e+01, 1.10947376e+01, 1.10947376e+01, 1.10947376e+01,
1.24759421e+01, 1.24759421e+01, 1.24759421e+01, 1.24759421e+01,
1.38409096e+01, 1.38409096e+01, 1.38409096e+01, 1.38409096e+01,
1.51771753e+01, 1.51771753e+01, 1.51771753e+01, 1.51771753e+01,
1.64580614e+01, 1.64580614e+01, 1.64580614e+01, 1.64580614e+01,
1.76410460e+01, 1.76410460e+01, 1.76410460e+01, 1.76410460e+01,
1.86577470e+01, 1.86577470e+01, 1.86577470e+01, 1.86577470e+01,
1.94346504e+01, 1.94346504e+01, 1.94346504e+01, 1.94346504e+01,
1.99206783e+01, 1.99206783e+01, 1.99206783e+01, 1.99206783e+01,
2.01373825e+01, 2.01373825e+01, 2.01373825e+01, 2.01373825e+01,
2.01827557e+01, 2.01827557e+01, 2.01827557e+01, 2.01827557e+01,
2.01362430e+01, 2.01362430e+01, 2.01362430e+01, 2.01362430e+01,
2.00527163e+01, 2.00527163e+01, 2.00527163e+01, 2.00527163e+01,
2.00220889e+01, 2.00220889e+01, 2.00220889e+01, 2.00220889e+01,
2.00113415e+01, 2.00113415e+01, 2.00113415e+01, 2.00113415e+01,
2.00032017e+01, 2.00032017e+01, 2.00032017e+01, 2.00032017e+01,
1.99928716e+01, 1.99928716e+01, 1.99928716e+01, 1.99928716e+01,
1.99752195e+01, 1.99752195e+01, 1.99752195e+01, 1.99752195e+01,
1.99510048e+01, 1.99510048e+01, 1.99510048e+01, 1.99510048e+01,
1.99278369e+01, 1.99278369e+01, 1.99278369e+01, 1.99278369e+01,
1.99060511e+01, 1.99060511e+01, 1.99060511e+01, 1.99060511e+01,
1.98834898e+01, 1.98834898e+01, 1.98834898e+01, 1.98834898e+01,
1.98602307e+01, 1.98602307e+01, 1.98602307e+01, 1.98602307e+01,
1.98460230e+01, 1.98460230e+01, 1.98460230e+01, 1.98460230e+01,
1.98231060e+01, 1.98231060e+01, 1.98231060e+01, 1.98231060e+01,
1.97344284e+01, 1.97344284e+01, 1.97344284e+01, 1.97344284e+01,
1.93234157e+01, 1.93234157e+01, 1.93234157e+01, 1.93234157e+01,
1.75098690e+01, 1.75098690e+01, 1.75098690e+01, 1.75098690e+01,
1.13120733e+01, 1.13120733e+01, 1.13120733e+01, 1.13120733e+01,
1.72019020e+00, 1.72019020e+00, 1.72019020e+00, 1.72019020e+00,
2.39627567e-02, 2.39627567e-02, 2.39627567e-02, 2.39627567e-02,
2.10492230e-05, 2.10492230e-05, 2.10492230e-05, 2.10492230e-05,
3.37580296e-09, 3.37580296e-09, 3.37580296e-09, 3.37580296e-09,
5.24794943e-13, 5.24794943e-13, 5.24794943e-13, 5.24794943e-13,
8.00869120e-17, 8.00869120e-17, 8.00869120e-17, 8.00869120e-17,
1.80543624e-20, 1.80543624e-20, 1.80543624e-20, 1.80543624e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99976534e+02, 9.99976534e+02, 9.99976534e+02, 9.99976534e+02,
9.99921728e+02, 9.99921728e+02, 9.99921728e+02, 9.99921728e+02,
9.99789273e+02, 9.99789273e+02, 9.99789273e+02, 9.99789273e+02,
9.99459788e+02, 9.99459788e+02, 9.99459788e+02, 9.99459788e+02,
9.98700933e+02, 9.98700933e+02, 9.98700933e+02, 9.98700933e+02,
9.97076380e+02, 9.97076380e+02, 9.97076380e+02, 9.97076380e+02,
9.93862050e+02, 9.93862050e+02, 9.93862050e+02, 9.93862050e+02,
9.88011449e+02, 9.88011449e+02, 9.88011449e+02, 9.88011449e+02,
9.78251147e+02, 9.78251147e+02, 9.78251147e+02, 9.78251147e+02,
9.63351703e+02, 9.63351703e+02, 9.63351703e+02, 9.63351703e+02,
9.42510461e+02, 9.42510461e+02, 9.42510461e+02, 9.42510461e+02,
9.15662316e+02, 9.15662316e+02, 9.15662316e+02, 9.15662316e+02,
8.83529955e+02, 8.83529955e+02, 8.83529955e+02, 8.83529955e+02,
8.47375347e+02, 8.47375347e+02, 8.47375347e+02, 8.47375347e+02,
8.08589521e+02, 8.08589521e+02, 8.08589521e+02, 8.08589521e+02,
7.68302840e+02, 7.68302840e+02, 7.68302840e+02, 7.68302840e+02,
7.27777466e+02, 7.27777466e+02, 7.27777466e+02, 7.27777466e+02,
6.88776134e+02, 6.88776134e+02, 6.88776134e+02, 6.88776134e+02,
6.51822493e+02, 6.51822493e+02, 6.51822493e+02, 6.51822493e+02,
6.16850793e+02, 6.16850793e+02, 6.16850793e+02, 6.16850793e+02,
5.83873049e+02, 5.83873049e+02, 5.83873049e+02, 5.83873049e+02,
5.53077621e+02, 5.53077621e+02, 5.53077621e+02, 5.53077621e+02,
5.24847307e+02, 5.24847307e+02, 5.24847307e+02, 5.24847307e+02,
4.99936052e+02, 4.99936052e+02, 4.99936052e+02, 4.99936052e+02,
4.79307983e+02, 4.79307983e+02, 4.79307983e+02, 4.79307983e+02,
4.64037017e+02, 4.64037017e+02, 4.64037017e+02, 4.64037017e+02,
4.54717049e+02, 4.54717049e+02, 4.54717049e+02, 4.54717049e+02,
4.50630729e+02, 4.50630729e+02, 4.50630729e+02, 4.50630729e+02,
4.49766128e+02, 4.49766128e+02, 4.49766128e+02, 4.49766128e+02,
4.50635760e+02, 4.50635760e+02, 4.50635760e+02, 4.50635760e+02,
4.52192339e+02, 4.52192339e+02, 4.52192339e+02, 4.52192339e+02,
4.52791836e+02, 4.52791836e+02, 4.52791836e+02, 4.52791836e+02,
4.53026052e+02, 4.53026052e+02, 4.53026052e+02, 4.53026052e+02,
4.53174609e+02, 4.53174609e+02, 4.53174609e+02, 4.53174609e+02,
4.53352116e+02, 4.53352116e+02, 4.53352116e+02, 4.53352116e+02,
4.53668407e+02, 4.53668407e+02, 4.53668407e+02, 4.53668407e+02,
4.54129426e+02, 4.54129426e+02, 4.54129426e+02, 4.54129426e+02,
4.54606825e+02, 4.54606825e+02, 4.54606825e+02, 4.54606825e+02,
4.55071542e+02, 4.55071542e+02, 4.55071542e+02, 4.55071542e+02,
4.55519242e+02, 4.55519242e+02, 4.55519242e+02, 4.55519242e+02,
4.55942322e+02, 4.55942322e+02, 4.55942322e+02, 4.55942322e+02,
4.56555572e+02, 4.56555572e+02, 4.56555572e+02, 4.56555572e+02,
4.57153744e+02, 4.57153744e+02, 4.57153744e+02, 4.57153744e+02,
4.55012364e+02, 4.55012364e+02, 4.55012364e+02, 4.55012364e+02,
4.36291749e+02, 4.36291749e+02, 4.36291749e+02, 4.36291749e+02,
3.50253071e+02, 3.50253071e+02, 3.50253071e+02, 3.50253071e+02,
1.37331684e+02, 1.37331684e+02, 1.37331684e+02, 1.37331684e+02,
7.81961782e+00, 7.81961782e+00, 7.81961782e+00, 7.81961782e+00,
3.15710255e-02, 3.15710255e-02, 3.15710255e-02, 3.15710255e-02,
1.00025204e-02, 1.00025204e-02, 1.00025204e-02, 1.00025204e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99996035, 0.99996035, 0.99996035, 0.99996035, 0.99987476,
0.99987476, 0.99987476, 0.99987476, 0.99968276, 0.99968276,
0.99968276, 0.99968276, 0.99923411, 0.99923411, 0.99923411,
0.99923411, 0.99826762, 0.99826762, 0.99826762, 0.99826762,
0.99633541, 0.99633541, 0.99633541, 0.99633541, 0.99277013,
0.99277013, 0.99277013, 0.99277013, 0.98671964, 0.98671964,
0.98671964, 0.98671964, 0.977293 , 0.977293 , 0.977293 ,
0.977293 , 0.96379833, 0.96379833, 0.96379833, 0.96379833,
0.94597383, 0.94597383, 0.94597383, 0.94597383, 0.9240842 ,
0.9240842 , 0.9240842 , 0.9240842 , 0.89882269, 0.89882269,
0.89882269, 0.89882269, 0.87107325, 0.87107325, 0.87107325,
0.87107325, 0.84163799, 0.84163799, 0.84163799, 0.84163799,
0.81121158, 0.81121158, 0.81121158, 0.81121158, 0.7809964 ,
0.7809964 , 0.7809964 , 0.7809964 , 0.75175867, 0.75175867,
0.75175867, 0.75175867, 0.72358262, 0.72358262, 0.72358262,
0.72358262, 0.69646996, 0.69646996, 0.69646996, 0.69646996,
0.67055951, 0.67055951, 0.67055951, 0.67055951, 0.64587767,
0.64587767, 0.64587767, 0.64587767, 0.62371507, 0.62371507,
0.62371507, 0.62371507, 0.60245905, 0.60245905, 0.60245905,
0.60245905, 0.58804181, 0.58804181, 0.58804181, 0.58804181,
0.57415787, 0.57415787, 0.57415787, 0.57415787, 0.56801698,
0.56801698, 0.56801698, 0.56801698, 0.56600286, 0.56600286,
0.56600286, 0.56600286, 0.56486913, 0.56486913, 0.56486913,
0.56486913, 0.56568532, 0.56568532, 0.56568532, 0.56568532,
0.56697037, 0.56697037, 0.56697037, 0.56697037, 0.567595 ,
0.567595 , 0.567595 , 0.567595 , 0.56755691, 0.56755691,
0.56755691, 0.56755691, 0.56742984, 0.56742984, 0.56742984,
0.56742984, 0.56748199, 0.56748199, 0.56748199, 0.56748199,
0.56775104, 0.56775104, 0.56775104, 0.56775104, 0.56831532,
0.56831532, 0.56831532, 0.56831532, 0.57016477, 0.57016477,
0.57016477, 0.57016477, 0.57848067, 0.57848067, 0.57848067,
0.57848067, 0.60993862, 0.60993862, 0.60993862, 0.60993862,
0.70608446, 0.70608446, 0.70608446, 0.70608446, 0.94942581,
0.94942581, 0.94942581, 0.94942581, 1.46794713, 1.46794713,
1.46794713, 1.46794713, 2.399093 , 2.399093 , 2.399093 ,
2.399093 , 3.49161502, 3.49161502, 3.49161502, 3.49161502,
3.88909392, 3.88909392, 3.88909392, 3.88909392, 3.45166183,
3.45166183, 3.45166183, 3.45166183, 1.72693552, 1.72693552,
1.72693552, 1.72693552, 1.05571813, 1.05571813, 1.05571813,
1.05571813, 1.00183475, 1.00183475, 1.00183475, 1.00183475,
1.00000159, 1.00000159, 1.00000159, 1.00000159, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.48343235e-03, 1.48343235e-03, 1.48343235e-03, 1.48343235e-03,
4.68625754e-03, 4.68625754e-03, 4.68625754e-03, 4.68625754e-03,
1.18714812e-02, 1.18714812e-02, 1.18714812e-02, 1.18714812e-02,
2.86653854e-02, 2.86653854e-02, 2.86653854e-02, 2.86653854e-02,
6.48624680e-02, 6.48624680e-02, 6.48624680e-02, 6.48624680e-02,
1.37311383e-01, 1.37311383e-01, 1.37311383e-01, 1.37311383e-01,
2.71286993e-01, 2.71286993e-01, 2.71286993e-01, 2.71286993e-01,
4.99544165e-01, 4.99544165e-01, 4.99544165e-01, 4.99544165e-01,
8.57450278e-01, 8.57450278e-01, 8.57450278e-01, 8.57450278e-01,
1.37475596e+00, 1.37475596e+00, 1.37475596e+00, 1.37475596e+00,
2.06719154e+00, 2.06719154e+00, 2.06719154e+00, 2.06719154e+00,
2.93221227e+00, 2.93221227e+00, 2.93221227e+00, 2.93221227e+00,
3.95128996e+00, 3.95128996e+00, 3.95128996e+00, 3.95128996e+00,
5.09756199e+00, 5.09756199e+00, 5.09756199e+00, 5.09756199e+00,
6.34579257e+00, 6.34579257e+00, 6.34579257e+00, 6.34579257e+00,
7.67146094e+00, 7.67146094e+00, 7.67146094e+00, 7.67146094e+00,
9.01982632e+00, 9.01982632e+00, 9.01982632e+00, 9.01982632e+00,
1.03717565e+01, 1.03717565e+01, 1.03717565e+01, 1.03717565e+01,
1.17165199e+01, 1.17165199e+01, 1.17165199e+01, 1.17165199e+01,
1.30503359e+01, 1.30503359e+01, 1.30503359e+01, 1.30503359e+01,
1.43659229e+01, 1.43659229e+01, 1.43659229e+01, 1.43659229e+01,
1.56482456e+01, 1.56482456e+01, 1.56482456e+01, 1.56482456e+01,
1.68667491e+01, 1.68667491e+01, 1.68667491e+01, 1.68667491e+01,
1.79752388e+01, 1.79752388e+01, 1.79752388e+01, 1.79752388e+01,
1.89049267e+01, 1.89049267e+01, 1.89049267e+01, 1.89049267e+01,
1.95880409e+01, 1.95880409e+01, 1.95880409e+01, 1.95880409e+01,
1.99895045e+01, 1.99895045e+01, 1.99895045e+01, 1.99895045e+01,
2.01509131e+01, 2.01509131e+01, 2.01509131e+01, 2.01509131e+01,
2.01756935e+01, 2.01756935e+01, 2.01756935e+01, 2.01756935e+01,
2.01136639e+01, 2.01136639e+01, 2.01136639e+01, 2.01136639e+01,
2.00436849e+01, 2.00436849e+01, 2.00436849e+01, 2.00436849e+01,
2.00184695e+01, 2.00184695e+01, 2.00184695e+01, 2.00184695e+01,
2.00087073e+01, 2.00087073e+01, 2.00087073e+01, 2.00087073e+01,
2.00007501e+01, 2.00007501e+01, 2.00007501e+01, 2.00007501e+01,
1.99896154e+01, 1.99896154e+01, 1.99896154e+01, 1.99896154e+01,
1.99701656e+01, 1.99701656e+01, 1.99701656e+01, 1.99701656e+01,
1.99446240e+01, 1.99446240e+01, 1.99446240e+01, 1.99446240e+01,
1.99208683e+01, 1.99208683e+01, 1.99208683e+01, 1.99208683e+01,
1.98989526e+01, 1.98989526e+01, 1.98989526e+01, 1.98989526e+01,
1.98779645e+01, 1.98779645e+01, 1.98779645e+01, 1.98779645e+01,
1.98568827e+01, 1.98568827e+01, 1.98568827e+01, 1.98568827e+01,
1.98394425e+01, 1.98394425e+01, 1.98394425e+01, 1.98394425e+01,
1.98253039e+01, 1.98253039e+01, 1.98253039e+01, 1.98253039e+01,
1.97798791e+01, 1.97798791e+01, 1.97798791e+01, 1.97798791e+01,
1.95773152e+01, 1.95773152e+01, 1.95773152e+01, 1.95773152e+01,
1.86462995e+01, 1.86462995e+01, 1.86462995e+01, 1.86462995e+01,
1.49605093e+01, 1.49605093e+01, 1.49605093e+01, 1.49605093e+01,
5.66403104e+00, 5.66403104e+00, 5.66403104e+00, 5.66403104e+00,
2.39671368e-01, 2.39671368e-01, 2.39671368e-01, 2.39671368e-01,
8.33807575e-04, 8.33807575e-04, 8.33807575e-04, 8.33807575e-04,
1.88954541e-07, 1.88954541e-07, 1.88954541e-07, 1.88954541e-07,
2.94104736e-11, 2.94104736e-11, 2.94104736e-11, 2.94104736e-11,
4.70101359e-15, 4.70101359e-15, 4.70101359e-15, 4.70101359e-15,
7.41275834e-19, 7.41275834e-19, 7.41275834e-19, 7.41275834e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99944497e+02, 9.99944497e+02, 9.99944497e+02, 9.99944497e+02,
9.99824671e+02, 9.99824671e+02, 9.99824671e+02, 9.99824671e+02,
9.99555901e+02, 9.99555901e+02, 9.99555901e+02, 9.99555901e+02,
9.98927969e+02, 9.98927969e+02, 9.98927969e+02, 9.98927969e+02,
9.97575760e+02, 9.97575760e+02, 9.97575760e+02, 9.97575760e+02,
9.94874250e+02, 9.94874250e+02, 9.94874250e+02, 9.94874250e+02,
9.89895755e+02, 9.89895755e+02, 9.89895755e+02, 9.89895755e+02,
9.81464823e+02, 9.81464823e+02, 9.81464823e+02, 9.81464823e+02,
9.68372978e+02, 9.68372978e+02, 9.68372978e+02, 9.68372978e+02,
9.49721618e+02, 9.49721618e+02, 9.49721618e+02, 9.49721618e+02,
9.25246848e+02, 9.25246848e+02, 9.25246848e+02, 9.25246848e+02,
8.95440766e+02, 8.95440766e+02, 8.95440766e+02, 8.95440766e+02,
8.61389674e+02, 8.61389674e+02, 8.61389674e+02, 8.61389674e+02,
8.24419634e+02, 8.24419634e+02, 8.24419634e+02, 8.24419634e+02,
7.85711897e+02, 7.85711897e+02, 7.85711897e+02, 7.85711897e+02,
7.46248517e+02, 7.46248517e+02, 7.46248517e+02, 7.46248517e+02,
7.07596025e+02, 7.07596025e+02, 7.07596025e+02, 7.07596025e+02,
6.70801074e+02, 6.70801074e+02, 6.70801074e+02, 6.70801074e+02,
6.35877624e+02, 6.35877624e+02, 6.35877624e+02, 6.35877624e+02,
6.02787079e+02, 6.02787079e+02, 6.02787079e+02, 6.02787079e+02,
5.71599803e+02, 5.71599803e+02, 5.71599803e+02, 5.71599803e+02,
5.42561321e+02, 5.42561321e+02, 5.42561321e+02, 5.42561321e+02,
5.16114337e+02, 5.16114337e+02, 5.16114337e+02, 5.16114337e+02,
4.93068680e+02, 4.93068680e+02, 4.93068680e+02, 4.93068680e+02,
4.74411379e+02, 4.74411379e+02, 4.74411379e+02, 4.74411379e+02,
4.61084454e+02, 4.61084454e+02, 4.61084454e+02, 4.61084454e+02,
4.53401496e+02, 4.53401496e+02, 4.53401496e+02, 4.53401496e+02,
4.50361189e+02, 4.50361189e+02, 4.50361189e+02, 4.50361189e+02,
4.49900506e+02, 4.49900506e+02, 4.49900506e+02, 4.49900506e+02,
4.51070680e+02, 4.51070680e+02, 4.51070680e+02, 4.51070680e+02,
4.52380461e+02, 4.52380461e+02, 4.52380461e+02, 4.52380461e+02,
4.52845112e+02, 4.52845112e+02, 4.52845112e+02, 4.52845112e+02,
4.53055158e+02, 4.53055158e+02, 4.53055158e+02, 4.53055158e+02,
4.53218903e+02, 4.53218903e+02, 4.53218903e+02, 4.53218903e+02,
4.53431056e+02, 4.53431056e+02, 4.53431056e+02, 4.53431056e+02,
4.53786396e+02, 4.53786396e+02, 4.53786396e+02, 4.53786396e+02,
4.54248310e+02, 4.54248310e+02, 4.54248310e+02, 4.54248310e+02,
4.54702361e+02, 4.54702361e+02, 4.54702361e+02, 4.54702361e+02,
4.55162009e+02, 4.55162009e+02, 4.55162009e+02, 4.55162009e+02,
4.55624655e+02, 4.55624655e+02, 4.55624655e+02, 4.55624655e+02,
4.56025036e+02, 4.56025036e+02, 4.56025036e+02, 4.56025036e+02,
4.56514938e+02, 4.56514938e+02, 4.56514938e+02, 4.56514938e+02,
4.57215307e+02, 4.57215307e+02, 4.57215307e+02, 4.57215307e+02,
4.56862932e+02, 4.56862932e+02, 4.56862932e+02, 4.56862932e+02,
4.48795942e+02, 4.48795942e+02, 4.48795942e+02, 4.48795942e+02,
4.03414163e+02, 4.03414163e+02, 4.03414163e+02, 4.03414163e+02,
2.46087022e+02, 2.46087022e+02, 2.46087022e+02, 2.46087022e+02,
4.07741358e+01, 4.07741358e+01, 4.07741358e+01, 4.07741358e+01,
5.40974800e-01, 5.40974800e-01, 5.40974800e-01, 5.40974800e-01,
1.02032471e-02, 1.02032471e-02, 1.02032471e-02, 1.02032471e-02,
1.00000224e-02, 1.00000224e-02, 1.00000224e-02, 1.00000224e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99991158, 0.99991158, 0.99991158, 0.99991158, 0.99973526,
0.99973526, 0.99973526, 0.99973526, 0.99936862, 0.99936862,
0.99936862, 0.99936862, 0.9985633 , 0.9985633 , 0.9985633 ,
0.9985633 , 0.99694101, 0.99694101, 0.99694101, 0.99694101,
0.99391234, 0.99391234, 0.99391234, 0.99391234, 0.9887 ,
0.9887 , 0.9887 , 0.9887 , 0.98044802, 0.98044802,
0.98044802, 0.98044802, 0.968429 , 0.968429 , 0.968429 ,
0.968429 , 0.95227242, 0.95227242, 0.95227242, 0.95227242,
0.93209641, 0.93209641, 0.93209641, 0.93209641, 0.90846461,
0.90846461, 0.90846461, 0.90846461, 0.88219172, 0.88219172,
0.88219172, 0.88219172, 0.8540954 , 0.8540954 , 0.8540954 ,
0.8540954 , 0.82480124, 0.82480124, 0.82480124, 0.82480124,
0.7952339 , 0.7952339 , 0.7952339 , 0.7952339 , 0.7663955 ,
0.7663955 , 0.7663955 , 0.7663955 , 0.73852584, 0.73852584,
0.73852584, 0.73852584, 0.71164018, 0.71164018, 0.71164018,
0.71164018, 0.6857697 , 0.6857697 , 0.6857697 , 0.6857697 ,
0.66111252, 0.66111252, 0.66111252, 0.66111252, 0.63763059,
0.63763059, 0.63763059, 0.63763059, 0.6169687 , 0.6169687 ,
0.6169687 , 0.6169687 , 0.59702916, 0.59702916, 0.59702916,
0.59702916, 0.58420196, 0.58420196, 0.58420196, 0.58420196,
0.57229985, 0.57229985, 0.57229985, 0.57229985, 0.56689435,
0.56689435, 0.56689435, 0.56689435, 0.56582645, 0.56582645,
0.56582645, 0.56582645, 0.56516822, 0.56516822, 0.56516822,
0.56516822, 0.56616647, 0.56616647, 0.56616647, 0.56616647,
0.56702185, 0.56702185, 0.56702185, 0.56702185, 0.56762457,
0.56762457, 0.56762457, 0.56762457, 0.56765827, 0.56765827,
0.56765827, 0.56765827, 0.56756729, 0.56756729, 0.56756729,
0.56756729, 0.56761051, 0.56761051, 0.56761051, 0.56761051,
0.56786939, 0.56786939, 0.56786939, 0.56786939, 0.56835266,
0.56835266, 0.56835266, 0.56835266, 0.5696172 , 0.5696172 ,
0.5696172 , 0.5696172 , 0.57503406, 0.57503406, 0.57503406,
0.57503406, 0.59623637, 0.59623637, 0.59623637, 0.59623637,
0.66403011, 0.66403011, 0.66403011, 0.66403011, 0.84354865,
0.84354865, 0.84354865, 0.84354865, 1.24434905, 1.24434905,
1.24434905, 1.24434905, 2.00424343, 2.00424343, 2.00424343,
2.00424343, 3.13960403, 3.13960403, 3.13960403, 3.13960403,
3.85414213, 3.85414213, 3.85414213, 3.85414213, 3.84786708,
3.84786708, 3.84786708, 3.84786708, 2.5771983 , 2.5771983 ,
2.5771983 , 2.5771983 , 1.18896322, 1.18896322, 1.18896322,
1.18896322, 1.01065342, 1.01065342, 1.01065342, 1.01065342,
1.00008186, 1.00008186, 1.00008186, 1.00008186, 1.00000002,
1.00000002, 1.00000002, 1.00000002, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.30857813e-03, 3.30857813e-03, 3.30857813e-03, 3.30857813e-03,
9.90650995e-03, 9.90650995e-03, 9.90650995e-03, 9.90650995e-03,
2.36295980e-02, 2.36295980e-02, 2.36295980e-02, 2.36295980e-02,
5.37860149e-02, 5.37860149e-02, 5.37860149e-02, 5.37860149e-02,
1.14592327e-01, 1.14592327e-01, 1.14592327e-01, 1.14592327e-01,
2.28324216e-01, 2.28324216e-01, 2.28324216e-01, 2.28324216e-01,
4.24711771e-01, 4.24711771e-01, 4.24711771e-01, 4.24711771e-01,
7.37353653e-01, 7.37353653e-01, 7.37353653e-01, 7.37353653e-01,
1.19658658e+00, 1.19658658e+00, 1.19658658e+00, 1.19658658e+00,
1.82130732e+00, 1.82130732e+00, 1.82130732e+00, 1.82130732e+00,
2.61367668e+00, 2.61367668e+00, 2.61367668e+00, 2.61367668e+00,
3.55960001e+00, 3.55960001e+00, 3.55960001e+00, 3.55960001e+00,
4.63473086e+00, 4.63473086e+00, 4.63473086e+00, 4.63473086e+00,
5.81317888e+00, 5.81317888e+00, 5.81317888e+00, 5.81317888e+00,
7.07525107e+00, 7.07525107e+00, 7.07525107e+00, 7.07525107e+00,
8.37802334e+00, 8.37802334e+00, 8.37802334e+00, 8.37802334e+00,
9.69020641e+00, 9.69020641e+00, 9.69020641e+00, 9.69020641e+00,
1.09986461e+01, 1.09986461e+01, 1.09986461e+01, 1.09986461e+01,
1.22993392e+01, 1.22993392e+01, 1.22993392e+01, 1.22993392e+01,
1.35884048e+01, 1.35884048e+01, 1.35884048e+01, 1.35884048e+01,
1.48563893e+01, 1.48563893e+01, 1.48563893e+01, 1.48563893e+01,
1.60857753e+01, 1.60857753e+01, 1.60857753e+01, 1.60857753e+01,
1.72423634e+01, 1.72423634e+01, 1.72423634e+01, 1.72423634e+01,
1.82765856e+01, 1.82765856e+01, 1.82765856e+01, 1.82765856e+01,
1.91204857e+01, 1.91204857e+01, 1.91204857e+01, 1.91204857e+01,
1.97147730e+01, 1.97147730e+01, 1.97147730e+01, 1.97147730e+01,
2.00413906e+01, 2.00413906e+01, 2.00413906e+01, 2.00413906e+01,
2.01574495e+01, 2.01574495e+01, 2.01574495e+01, 2.01574495e+01,
2.01659188e+01, 2.01659188e+01, 2.01659188e+01, 2.01659188e+01,
2.00925092e+01, 2.00925092e+01, 2.00925092e+01, 2.00925092e+01,
2.00365890e+01, 2.00365890e+01, 2.00365890e+01, 2.00365890e+01,
2.00158066e+01, 2.00158066e+01, 2.00158066e+01, 2.00158066e+01,
2.00060951e+01, 2.00060951e+01, 2.00060951e+01, 2.00060951e+01,
1.99977273e+01, 1.99977273e+01, 1.99977273e+01, 1.99977273e+01,
1.99853901e+01, 1.99853901e+01, 1.99853901e+01, 1.99853901e+01,
1.99645055e+01, 1.99645055e+01, 1.99645055e+01, 1.99645055e+01,
1.99389693e+01, 1.99389693e+01, 1.99389693e+01, 1.99389693e+01,
1.99147513e+01, 1.99147513e+01, 1.99147513e+01, 1.99147513e+01,
1.98919906e+01, 1.98919906e+01, 1.98919906e+01, 1.98919906e+01,
1.98717727e+01, 1.98717727e+01, 1.98717727e+01, 1.98717727e+01,
1.98525425e+01, 1.98525425e+01, 1.98525425e+01, 1.98525425e+01,
1.98340626e+01, 1.98340626e+01, 1.98340626e+01, 1.98340626e+01,
1.98228656e+01, 1.98228656e+01, 1.98228656e+01, 1.98228656e+01,
1.97973138e+01, 1.97973138e+01, 1.97973138e+01, 1.97973138e+01,
1.96970829e+01, 1.96970829e+01, 1.96970829e+01, 1.96970829e+01,
1.92311319e+01, 1.92311319e+01, 1.92311319e+01, 1.92311319e+01,
1.72194921e+01, 1.72194921e+01, 1.72194921e+01, 1.72194921e+01,
1.05940203e+01, 1.05940203e+01, 1.05940203e+01, 1.05940203e+01,
1.33734950e+00, 1.33734950e+00, 1.33734950e+00, 1.33734950e+00,
1.58314232e-02, 1.58314232e-02, 1.58314232e-02, 1.58314232e-02,
1.13008501e-05, 1.13008501e-05, 1.13008501e-05, 1.13008501e-05,
1.78142403e-09, 1.78142403e-09, 1.78142403e-09, 1.78142403e-09,
2.75475972e-13, 2.75475972e-13, 2.75475972e-13, 2.75475972e-13,
4.22869040e-17, 4.22869040e-17, 4.22869040e-17, 4.22869040e-17,
4.15971299e-21, 4.15971299e-21, 4.15971299e-21, 4.15971299e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99876214e+02, 9.99876214e+02, 9.99876214e+02, 9.99876214e+02,
9.99629396e+02, 9.99629396e+02, 9.99629396e+02, 9.99629396e+02,
9.99116221e+02, 9.99116221e+02, 9.99116221e+02, 9.99116221e+02,
9.97989363e+02, 9.97989363e+02, 9.97989363e+02, 9.97989363e+02,
9.95720692e+02, 9.95720692e+02, 9.95720692e+02, 9.95720692e+02,
9.91489781e+02, 9.91489781e+02, 9.91489781e+02, 9.91489781e+02,
9.84221698e+02, 9.84221698e+02, 9.84221698e+02, 9.84221698e+02,
9.72748451e+02, 9.72748451e+02, 9.72748451e+02, 9.72748451e+02,
9.56108956e+02, 9.56108956e+02, 9.56108956e+02, 9.56108956e+02,
9.33872727e+02, 9.33872727e+02, 9.33872727e+02, 9.33872727e+02,
9.06315492e+02, 9.06315492e+02, 9.06315492e+02, 9.06315492e+02,
8.74337896e+02, 8.74337896e+02, 8.74337896e+02, 8.74337896e+02,
8.39171349e+02, 8.39171349e+02, 8.39171349e+02, 8.39171349e+02,
8.02021280e+02, 8.02021280e+02, 8.02021280e+02, 8.02021280e+02,
7.63802020e+02, 7.63802020e+02, 7.63802020e+02, 7.63802020e+02,
7.25718152e+02, 7.25718152e+02, 7.25718152e+02, 7.25718152e+02,
6.89144129e+02, 6.89144129e+02, 6.89144129e+02, 6.89144129e+02,
6.54324851e+02, 6.54324851e+02, 6.54324851e+02, 6.54324851e+02,
6.21229262e+02, 6.21229262e+02, 6.21229262e+02, 6.21229262e+02,
5.89863923e+02, 5.89863923e+02, 5.89863923e+02, 5.89863923e+02,
5.60333915e+02, 5.60333915e+02, 5.60333915e+02, 5.60333915e+02,
5.32945780e+02, 5.32945780e+02, 5.32945780e+02, 5.32945780e+02,
5.08201682e+02, 5.08201682e+02, 5.08201682e+02, 5.08201682e+02,
4.86948766e+02, 4.86948766e+02, 4.86948766e+02, 4.86948766e+02,
4.70169922e+02, 4.70169922e+02, 4.70169922e+02, 4.70169922e+02,
4.58655322e+02, 4.58655322e+02, 4.58655322e+02, 4.58655322e+02,
4.52421155e+02, 4.52421155e+02, 4.52421155e+02, 4.52421155e+02,
4.50227207e+02, 4.50227207e+02, 4.50227207e+02, 4.50227207e+02,
4.50078663e+02, 4.50078663e+02, 4.50078663e+02, 4.50078663e+02,
4.51471203e+02, 4.51471203e+02, 4.51471203e+02, 4.51471203e+02,
4.52529169e+02, 4.52529169e+02, 4.52529169e+02, 4.52529169e+02,
4.52901471e+02, 4.52901471e+02, 4.52901471e+02, 4.52901471e+02,
4.53088208e+02, 4.53088208e+02, 4.53088208e+02, 4.53088208e+02,
4.53261283e+02, 4.53261283e+02, 4.53261283e+02, 4.53261283e+02,
4.53508024e+02, 4.53508024e+02, 4.53508024e+02, 4.53508024e+02,
4.53907221e+02, 4.53907221e+02, 4.53907221e+02, 4.53907221e+02,
4.54378816e+02, 4.54378816e+02, 4.54378816e+02, 4.54378816e+02,
4.54816020e+02, 4.54816020e+02, 4.54816020e+02, 4.54816020e+02,
4.55254101e+02, 4.55254101e+02, 4.55254101e+02, 4.55254101e+02,
4.55702968e+02, 4.55702968e+02, 4.55702968e+02, 4.55702968e+02,
4.56112277e+02, 4.56112277e+02, 4.56112277e+02, 4.56112277e+02,
4.56533652e+02, 4.56533652e+02, 4.56533652e+02, 4.56533652e+02,
4.57147821e+02, 4.57147821e+02, 4.57147821e+02, 4.57147821e+02,
4.57487722e+02, 4.57487722e+02, 4.57487722e+02, 4.57487722e+02,
4.54489765e+02, 4.54489765e+02, 4.54489765e+02, 4.54489765e+02,
4.32367414e+02, 4.32367414e+02, 4.32367414e+02, 4.32367414e+02,
3.36891352e+02, 3.36891352e+02, 3.36891352e+02, 3.36891352e+02,
1.20082128e+02, 1.20082128e+02, 1.20082128e+02, 1.20082128e+02,
5.54711825e+00, 5.54711825e+00, 5.54711825e+00, 5.54711825e+00,
2.19907181e-02, 2.19907181e-02, 2.19907181e-02, 2.19907181e-02,
1.00013363e-02, 1.00013363e-02, 1.00013363e-02, 1.00013363e-02,
1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99981351, 0.99981351, 0.99981351, 0.99981351, 0.99947054,
0.99947054, 0.99947054, 0.99947054, 0.9988105 , 0.9988105 ,
0.9988105 , 0.9988105 , 0.99744661, 0.99744661, 0.99744661,
0.99744661, 0.99487737, 0.99487737, 0.99487737, 0.99487737,
0.99039499, 0.99039499, 0.99039499, 0.99039499, 0.98318849,
0.98318849, 0.98318849, 0.98318849, 0.97251404, 0.97251404,
0.97251404, 0.97251404, 0.95791416, 0.95791416, 0.95791416,
0.95791416, 0.9393737 , 0.9393737 , 0.9393737 , 0.9393737 ,
0.91732519, 0.91732519, 0.91732519, 0.91732519, 0.8924994 ,
0.8924994 , 0.8924994 , 0.8924994 , 0.86569902, 0.86569902,
0.86569902, 0.86569902, 0.83758007, 0.83758007, 0.83758007,
0.83758007, 0.80880936, 0.80880936, 0.80880936, 0.80880936,
0.78041711, 0.78041711, 0.78041711, 0.78041711, 0.75287396,
0.75287396, 0.75287396, 0.75287396, 0.7262632 , 0.7262632 ,
0.7262632 , 0.7262632 , 0.70056925, 0.70056925, 0.70056925,
0.70056925, 0.67584993, 0.67584993, 0.67584993, 0.67584993,
0.65238615, 0.65238615, 0.65238615, 0.65238615, 0.63003424,
0.63003424, 0.63003424, 0.63003424, 0.61084192, 0.61084192,
0.61084192, 0.61084192, 0.59222361, 0.59222361, 0.59222361,
0.59222361, 0.58082307, 0.58082307, 0.58082307, 0.58082307,
0.57084769, 0.57084769, 0.57084769, 0.57084769, 0.56609991,
0.56609991, 0.56609991, 0.56609991, 0.56568386, 0.56568386,
0.56568386, 0.56568386, 0.56548787, 0.56548787, 0.56548787,
0.56548787, 0.56657134, 0.56657134, 0.56657134, 0.56657134,
0.56710969, 0.56710969, 0.56710969, 0.56710969, 0.56763591,
0.56763591, 0.56763591, 0.56763591, 0.56774535, 0.56774535,
0.56774535, 0.56774535, 0.56770037, 0.56770037, 0.56770037,
0.56770037, 0.56775753, 0.56775753, 0.56775753, 0.56775753,
0.568006 , 0.568006 , 0.568006 , 0.568006 , 0.56842167,
0.56842167, 0.56842167, 0.56842167, 0.56933391, 0.56933391,
0.56933391, 0.56933391, 0.57288369, 0.57288369, 0.57288369,
0.57288369, 0.58706794, 0.58706794, 0.58706794, 0.58706794,
0.6343945 , 0.6343945 , 0.6343945 , 0.6343945 , 0.76532497,
0.76532497, 0.76532497, 0.76532497, 1.0710979 , 1.0710979 ,
1.0710979 , 1.0710979 , 1.67993717, 1.67993717, 1.67993717,
1.67993717, 2.70591502, 2.70591502, 2.70591502, 2.70591502,
3.70007988, 3.70007988, 3.70007988, 3.70007988, 3.98442962,
3.98442962, 3.98442962, 3.98442962, 3.39924656, 3.39924656,
3.39924656, 3.39924656, 1.61726694, 1.61726694, 1.61726694,
1.61726694, 1.04481323, 1.04481323, 1.04481323, 1.04481323,
1.00129504, 1.00129504, 1.00129504, 1.00129504, 1.00000081,
1.00000081, 1.00000081, 1.00000081, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([6.97829163e-03, 6.97829163e-03, 6.97829163e-03, 6.97829163e-03,
1.98144360e-02, 1.98144360e-02, 1.98144360e-02, 1.98144360e-02,
4.45271720e-02, 4.45271720e-02, 4.45271720e-02, 4.45271720e-02,
9.56332947e-02, 9.56332947e-02, 9.56332947e-02, 9.56332947e-02,
1.92056185e-01, 1.92056185e-01, 1.92056185e-01, 1.92056185e-01,
3.60758718e-01, 3.60758718e-01, 3.60758718e-01, 3.60758718e-01,
6.33292020e-01, 6.33292020e-01, 6.33292020e-01, 6.33292020e-01,
1.03998760e+00, 1.03998760e+00, 1.03998760e+00, 1.03998760e+00,
1.60218999e+00, 1.60218999e+00, 1.60218999e+00, 1.60218999e+00,
2.32628483e+00, 2.32628483e+00, 2.32628483e+00, 2.32628483e+00,
3.20261012e+00, 3.20261012e+00, 3.20261012e+00, 3.20261012e+00,
4.20983812e+00, 4.20983812e+00, 4.20983812e+00, 4.20983812e+00,
5.32266284e+00, 5.32266284e+00, 5.32266284e+00, 5.32266284e+00,
6.52018139e+00, 6.52018139e+00, 6.52018139e+00, 6.52018139e+00,
7.77578750e+00, 7.77578750e+00, 7.77578750e+00, 7.77578750e+00,
9.04696669e+00, 9.04696669e+00, 9.04696669e+00, 9.04696669e+00,
1.03198134e+01, 1.03198134e+01, 1.03198134e+01, 1.03198134e+01,
1.15876099e+01, 1.15876099e+01, 1.15876099e+01, 1.15876099e+01,
1.28468639e+01, 1.28468639e+01, 1.28468639e+01, 1.28468639e+01,
1.40930929e+01, 1.40930929e+01, 1.40930929e+01, 1.40930929e+01,
1.53148719e+01, 1.53148719e+01, 1.53148719e+01, 1.53148719e+01,
1.64919282e+01, 1.64919282e+01, 1.64919282e+01, 1.64919282e+01,
1.75867321e+01, 1.75867321e+01, 1.75867321e+01, 1.75867321e+01,
1.85470262e+01, 1.85470262e+01, 1.85470262e+01, 1.85470262e+01,
1.93069541e+01, 1.93069541e+01, 1.93069541e+01, 1.93069541e+01,
1.98179609e+01, 1.98179609e+01, 1.98179609e+01, 1.98179609e+01,
2.00793284e+01, 2.00793284e+01, 2.00793284e+01, 2.00793284e+01,
2.01586176e+01, 2.01586176e+01, 2.01586176e+01, 2.01586176e+01,
2.01524831e+01, 2.01524831e+01, 2.01524831e+01, 2.01524831e+01,
2.00752058e+01, 2.00752058e+01, 2.00752058e+01, 2.00752058e+01,
2.00307498e+01, 2.00307498e+01, 2.00307498e+01, 2.00307498e+01,
2.00136099e+01, 2.00136099e+01, 2.00136099e+01, 2.00136099e+01,
2.00037603e+01, 2.00037603e+01, 2.00037603e+01, 2.00037603e+01,
1.99945192e+01, 1.99945192e+01, 1.99945192e+01, 1.99945192e+01,
1.99804496e+01, 1.99804496e+01, 1.99804496e+01, 1.99804496e+01,
1.99580977e+01, 1.99580977e+01, 1.99580977e+01, 1.99580977e+01,
1.99332124e+01, 1.99332124e+01, 1.99332124e+01, 1.99332124e+01,
1.99091877e+01, 1.99091877e+01, 1.99091877e+01, 1.99091877e+01,
1.98860108e+01, 1.98860108e+01, 1.98860108e+01, 1.98860108e+01,
1.98654280e+01, 1.98654280e+01, 1.98654280e+01, 1.98654280e+01,
1.98471370e+01, 1.98471370e+01, 1.98471370e+01, 1.98471370e+01,
1.98298574e+01, 1.98298574e+01, 1.98298574e+01, 1.98298574e+01,
1.98171370e+01, 1.98171370e+01, 1.98171370e+01, 1.98171370e+01,
1.98030159e+01, 1.98030159e+01, 1.98030159e+01, 1.98030159e+01,
1.97516465e+01, 1.97516465e+01, 1.97516465e+01, 1.97516465e+01,
1.95204012e+01, 1.95204012e+01, 1.95204012e+01, 1.95204012e+01,
1.84745602e+01, 1.84745602e+01, 1.84745602e+01, 1.84745602e+01,
1.44416174e+01, 1.44416174e+01, 1.44416174e+01, 1.44416174e+01,
4.87006574e+00, 4.87006574e+00, 4.87006574e+00, 4.87006574e+00,
1.70878215e-01, 1.70878215e-01, 1.70878215e-01, 1.70878215e-01,
4.74222438e-04, 4.74222438e-04, 4.74222438e-04, 4.74222438e-04,
9.62797091e-08, 9.62797091e-08, 9.62797091e-08, 9.62797091e-08,
1.54134491e-11, 1.54134491e-11, 1.54134491e-11, 1.54134491e-11,
2.48678570e-15, 2.48678570e-15, 2.48678570e-15, 2.48678570e-15,
3.95125006e-19, 3.95125006e-19, 3.95125006e-19, 3.95125006e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99738937e+02, 9.99738937e+02, 9.99738937e+02, 9.99738937e+02,
9.99258865e+02, 9.99258865e+02, 9.99258865e+02, 9.99258865e+02,
9.98335213e+02, 9.98335213e+02, 9.98335213e+02, 9.98335213e+02,
9.96427546e+02, 9.96427546e+02, 9.96427546e+02, 9.96427546e+02,
9.92837210e+02, 9.92837210e+02, 9.92837210e+02, 9.92837210e+02,
9.86583249e+02, 9.86583249e+02, 9.86583249e+02, 9.86583249e+02,
9.76553906e+02, 9.76553906e+02, 9.76553906e+02, 9.76553906e+02,
9.61754277e+02, 9.61754277e+02, 9.61754277e+02, 9.61754277e+02,
9.41618962e+02, 9.41618962e+02, 9.41618962e+02, 9.41618962e+02,
9.16225667e+02, 9.16225667e+02, 9.16225667e+02, 9.16225667e+02,
8.86285914e+02, 8.86285914e+02, 8.86285914e+02, 8.86285914e+02,
8.52914522e+02, 8.52914522e+02, 8.52914522e+02, 8.52914522e+02,
8.17299685e+02, 8.17299685e+02, 8.17299685e+02, 8.17299685e+02,
7.80401265e+02, 7.80401265e+02, 7.80401265e+02, 7.80401265e+02,
7.43128313e+02, 7.43128313e+02, 7.43128313e+02, 7.43128313e+02,
7.06850048e+02, 7.06850048e+02, 7.06850048e+02, 7.06850048e+02,
6.72179206e+02, 6.72179206e+02, 6.72179206e+02, 6.72179206e+02,
6.39161893e+02, 6.39161893e+02, 6.39161893e+02, 6.39161893e+02,
6.07736695e+02, 6.07736695e+02, 6.07736695e+02, 6.07736695e+02,
5.77958609e+02, 5.77958609e+02, 5.77958609e+02, 5.77958609e+02,
5.49975461e+02, 5.49975461e+02, 5.49975461e+02, 5.49975461e+02,
5.24148628e+02, 5.24148628e+02, 5.24148628e+02, 5.24148628e+02,
5.01038900e+02, 5.01038900e+02, 5.01038900e+02, 5.01038900e+02,
4.81516564e+02, 4.81516564e+02, 4.81516564e+02, 4.81516564e+02,
4.66526226e+02, 4.66526226e+02, 4.66526226e+02, 4.66526226e+02,
4.56679419e+02, 4.56679419e+02, 4.56679419e+02, 4.56679419e+02,
4.51709116e+02, 4.51709116e+02, 4.51709116e+02, 4.51709116e+02,
4.50204516e+02, 4.50204516e+02, 4.50204516e+02, 4.50204516e+02,
4.50323474e+02, 4.50323474e+02, 4.50323474e+02, 4.50323474e+02,
4.51792099e+02, 4.51792099e+02, 4.51792099e+02, 4.51792099e+02,
4.52644533e+02, 4.52644533e+02, 4.52644533e+02, 4.52644533e+02,
4.52957374e+02, 4.52957374e+02, 4.52957374e+02, 4.52957374e+02,
4.53131411e+02, 4.53131411e+02, 4.53131411e+02, 4.53131411e+02,
4.53310711e+02, 4.53310711e+02, 4.53310711e+02, 4.53310711e+02,
4.53588206e+02, 4.53588206e+02, 4.53588206e+02, 4.53588206e+02,
4.54024216e+02, 4.54024216e+02, 4.54024216e+02, 4.54024216e+02,
4.54505579e+02, 4.54505579e+02, 4.54505579e+02, 4.54505579e+02,
4.54941322e+02, 4.54941322e+02, 4.54941322e+02, 4.54941322e+02,
4.55358316e+02, 4.55358316e+02, 4.55358316e+02, 4.55358316e+02,
4.55776216e+02, 4.55776216e+02, 4.55776216e+02, 4.55776216e+02,
4.56187451e+02, 4.56187451e+02, 4.56187451e+02, 4.56187451e+02,
4.56567868e+02, 4.56567868e+02, 4.56567868e+02, 4.56567868e+02,
4.57061252e+02, 4.57061252e+02, 4.57061252e+02, 4.57061252e+02,
4.57670049e+02, 4.57670049e+02, 4.57670049e+02, 4.57670049e+02,
4.56861977e+02, 4.56861977e+02, 4.56861977e+02, 4.56861977e+02,
4.46897134e+02, 4.46897134e+02, 4.46897134e+02, 4.46897134e+02,
3.95213842e+02, 3.95213842e+02, 3.95213842e+02, 3.95213842e+02,
2.27017462e+02, 2.27017462e+02, 2.27017462e+02, 2.27017462e+02,
3.24722316e+01, 3.24722316e+01, 3.24722316e+01, 3.24722316e+01,
3.44215454e-01, 3.44215454e-01, 3.44215454e-01, 3.44215454e-01,
1.00956522e-02, 1.00956522e-02, 1.00956522e-02, 1.00956522e-02,
1.00000114e-02, 1.00000114e-02, 1.00000114e-02, 1.00000114e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99962715, 0.99962715, 0.99962715, 0.99962715, 0.9989959 ,
0.9989959 , 0.9989959 , 0.9989959 , 0.99787399, 0.99787399,
0.99787399, 0.99787399, 0.99569077, 0.99569077, 0.99569077,
0.99569077, 0.99184415, 0.99184415, 0.99184415, 0.99184415,
0.98556472, 0.98556472, 0.98556472, 0.98556472, 0.97611065,
0.97611065, 0.97611065, 0.97611065, 0.96295756, 0.96295756,
0.96295756, 0.96295756, 0.94597218, 0.94597218, 0.94597218,
0.94597218, 0.92545827, 0.92545827, 0.92545827, 0.92545827,
0.90205196, 0.90205196, 0.90205196, 0.90205196, 0.87652198,
0.87652198, 0.87652198, 0.87652198, 0.84956063, 0.84956063,
0.84956063, 0.84956063, 0.82170304, 0.82170304, 0.82170304,
0.82170304, 0.79383738, 0.79383738, 0.79383738, 0.79383738,
0.76665912, 0.76665912, 0.76665912, 0.76665912, 0.74033691,
0.74033691, 0.74033691, 0.74033691, 0.71486688, 0.71486688,
0.71486688, 0.71486688, 0.69028102, 0.69028102, 0.69028102,
0.69028102, 0.6666371 , 0.6666371 , 0.6666371 , 0.6666371 ,
0.64432028, 0.64432028, 0.64432028, 0.64432028, 0.62304012,
0.62304012, 0.62304012, 0.62304012, 0.60528142, 0.60528142,
0.60528142, 0.60528142, 0.58800675, 0.58800675, 0.58800675,
0.58800675, 0.5778694 , 0.5778694 , 0.5778694 , 0.5778694 ,
0.56972246, 0.56972246, 0.56972246, 0.56972246, 0.56560315,
0.56560315, 0.56560315, 0.56560315, 0.56553233, 0.56553233,
0.56553233, 0.56553233, 0.56584834, 0.56584834, 0.56584834,
0.56584834, 0.56690991, 0.56690991, 0.56690991, 0.56690991,
0.56721384, 0.56721384, 0.56721384, 0.56721384, 0.56762924,
0.56762924, 0.56762924, 0.56762924, 0.56782241, 0.56782241,
0.56782241, 0.56782241, 0.56782868, 0.56782868, 0.56782868,
0.56782868, 0.56791572, 0.56791572, 0.56791572, 0.56791572,
0.56816164, 0.56816164, 0.56816164, 0.56816164, 0.56851365,
0.56851365, 0.56851365, 0.56851365, 0.56920152, 0.56920152,
0.56920152, 0.56920152, 0.57156713, 0.57156713, 0.57156713,
0.57156713, 0.58101327, 0.58101327, 0.58101327, 0.58101327,
0.61373599, 0.61373599, 0.61373599, 0.61373599, 0.70822132,
0.70822132, 0.70822132, 0.70822132, 0.93867528, 0.93867528,
0.93867528, 0.93867528, 1.41891316, 1.41891316, 1.41891316,
1.41891316, 2.27525624, 2.27525624, 2.27525624, 2.27525624,
3.41072177, 3.41072177, 3.41072177, 3.41072177, 3.98667427,
3.98667427, 3.98667427, 3.98667427, 3.87982047, 3.87982047,
3.87982047, 3.87982047, 2.43231843, 2.43231843, 2.43231843,
2.43231843, 1.15615318, 1.15615318, 1.15615318, 1.15615318,
1.00824283, 1.00824283, 1.00824283, 1.00824283, 1.0000454 ,
1.0000454 , 1.0000454 , 1.0000454 , 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.39530183e-02, 1.39530183e-02, 1.39530183e-02, 1.39530183e-02,
3.75848880e-02, 3.75848880e-02, 3.75848880e-02, 3.75848880e-02,
7.96128157e-02, 7.96128157e-02, 7.96128157e-02, 7.96128157e-02,
1.61508250e-01, 1.61508250e-01, 1.61508250e-01, 1.61508250e-01,
3.06150477e-01, 3.06150477e-01, 3.06150477e-01, 3.06150477e-01,
5.43251766e-01, 5.43251766e-01, 5.43251766e-01, 5.43251766e-01,
9.02556002e-01, 9.02556002e-01, 9.02556002e-01, 9.02556002e-01,
1.40720176e+00, 1.40720176e+00, 1.40720176e+00, 1.40720176e+00,
2.06726331e+00, 2.06726331e+00, 2.06726331e+00, 2.06726331e+00,
2.87738380e+00, 2.87738380e+00, 2.87738380e+00, 2.87738380e+00,
3.81959664e+00, 3.81959664e+00, 3.81959664e+00, 3.81959664e+00,
4.86989842e+00, 4.86989842e+00, 4.86989842e+00, 4.86989842e+00,
6.00593747e+00, 6.00593747e+00, 6.00593747e+00, 6.00593747e+00,
7.20976710e+00, 7.20976710e+00, 7.20976710e+00, 7.20976710e+00,
8.44013430e+00, 8.44013430e+00, 8.44013430e+00, 8.44013430e+00,
9.67820971e+00, 9.67820971e+00, 9.67820971e+00, 9.67820971e+00,
1.09131010e+01, 1.09131010e+01, 1.09131010e+01, 1.09131010e+01,
1.21419057e+01, 1.21419057e+01, 1.21419057e+01, 1.21419057e+01,
1.33619281e+01, 1.33619281e+01, 1.33619281e+01, 1.33619281e+01,
1.45669883e+01, 1.45669883e+01, 1.45669883e+01, 1.45669883e+01,
1.57435737e+01, 1.57435737e+01, 1.57435737e+01, 1.57435737e+01,
1.68686020e+01, 1.68686020e+01, 1.68686020e+01, 1.68686020e+01,
1.79014772e+01, 1.79014772e+01, 1.79014772e+01, 1.79014772e+01,
1.87882849e+01, 1.87882849e+01, 1.87882849e+01, 1.87882849e+01,
1.94668837e+01, 1.94668837e+01, 1.94668837e+01, 1.94668837e+01,
1.99006239e+01, 1.99006239e+01, 1.99006239e+01, 1.99006239e+01,
2.01050731e+01, 2.01050731e+01, 2.01050731e+01, 2.01050731e+01,
2.01571544e+01, 2.01571544e+01, 2.01571544e+01, 2.01571544e+01,
2.01363521e+01, 2.01363521e+01, 2.01363521e+01, 2.01363521e+01,
2.00613129e+01, 2.00613129e+01, 2.00613129e+01, 2.00613129e+01,
2.00257473e+01, 2.00257473e+01, 2.00257473e+01, 2.00257473e+01,
2.00113940e+01, 2.00113940e+01, 2.00113940e+01, 2.00113940e+01,
2.00016210e+01, 2.00016210e+01, 2.00016210e+01, 2.00016210e+01,
1.99912688e+01, 1.99912688e+01, 1.99912688e+01, 1.99912688e+01,
1.99751513e+01, 1.99751513e+01, 1.99751513e+01, 1.99751513e+01,
1.99512938e+01, 1.99512938e+01, 1.99512938e+01, 1.99512938e+01,
1.99269046e+01, 1.99269046e+01, 1.99269046e+01, 1.99269046e+01,
1.99037068e+01, 1.99037068e+01, 1.99037068e+01, 1.99037068e+01,
1.98807884e+01, 1.98807884e+01, 1.98807884e+01, 1.98807884e+01,
1.98596458e+01, 1.98596458e+01, 1.98596458e+01, 1.98596458e+01,
1.98416867e+01, 1.98416867e+01, 1.98416867e+01, 1.98416867e+01,
1.98257179e+01, 1.98257179e+01, 1.98257179e+01, 1.98257179e+01,
1.98115993e+01, 1.98115993e+01, 1.98115993e+01, 1.98115993e+01,
1.98022942e+01, 1.98022942e+01, 1.98022942e+01, 1.98022942e+01,
1.97745446e+01, 1.97745446e+01, 1.97745446e+01, 1.97745446e+01,
1.96599658e+01, 1.96599658e+01, 1.96599658e+01, 1.96599658e+01,
1.91316282e+01, 1.91316282e+01, 1.91316282e+01, 1.91316282e+01,
1.68989432e+01, 1.68989432e+01, 1.68989432e+01, 1.68989432e+01,
9.82776433e+00, 9.82776433e+00, 9.82776433e+00, 9.82776433e+00,
1.03966586e+00, 1.03966586e+00, 1.03966586e+00, 1.03966586e+00,
1.02686172e-02, 1.02686172e-02, 1.02686172e-02, 1.02686172e-02,
5.87596530e-06, 5.87596530e-06, 5.87596530e-06, 5.87596530e-06,
9.09802870e-10, 9.09802870e-10, 9.09802870e-10, 9.09802870e-10,
1.40162828e-13, 1.40162828e-13, 1.40162828e-13, 1.40162828e-13,
2.18096263e-17, 2.18096263e-17, 2.18096263e-17, 2.18096263e-17,
4.14673755e-21, 4.14673755e-21, 4.14673755e-21, 4.14673755e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99478084e+02, 9.99478084e+02, 9.99478084e+02, 9.99478084e+02,
9.98594612e+02, 9.98594612e+02, 9.98594612e+02, 9.98594612e+02,
9.97025182e+02, 9.97025182e+02, 9.97025182e+02, 9.97025182e+02,
9.93973403e+02, 9.93973403e+02, 9.93973403e+02, 9.93973403e+02,
9.88603735e+02, 9.88603735e+02, 9.88603735e+02, 9.88603735e+02,
9.79857278e+02, 9.79857278e+02, 9.79857278e+02, 9.79857278e+02,
9.66732858e+02, 9.66732858e+02, 9.66732858e+02, 9.66732858e+02,
9.48559568e+02, 9.48559568e+02, 9.48559568e+02, 9.48559568e+02,
9.25238470e+02, 9.25238470e+02, 9.25238470e+02, 9.25238470e+02,
8.97294073e+02, 8.97294073e+02, 8.97294073e+02, 8.97294073e+02,
8.65708163e+02, 8.65708163e+02, 8.65708163e+02, 8.65708163e+02,
8.31624879e+02, 8.31624879e+02, 8.31624879e+02, 8.31624879e+02,
7.96056352e+02, 7.96056352e+02, 7.96056352e+02, 7.96056352e+02,
7.59769847e+02, 7.59769847e+02, 7.59769847e+02, 7.59769847e+02,
7.23915193e+02, 7.23915193e+02, 7.23915193e+02, 7.23915193e+02,
6.89464378e+02, 6.89464378e+02, 6.89464378e+02, 6.89464378e+02,
6.56557931e+02, 6.56557931e+02, 6.56557931e+02, 6.56557931e+02,
6.25161940e+02, 6.25161940e+02, 6.25161940e+02, 6.25161940e+02,
5.95273088e+02, 5.95273088e+02, 5.95273088e+02, 5.95273088e+02,
5.66968750e+02, 5.66968750e+02, 5.66968750e+02, 5.66968750e+02,
5.40439673e+02, 5.40439673e+02, 5.40439673e+02, 5.40439673e+02,
5.16100425e+02, 5.16100425e+02, 5.16100425e+02, 5.16100425e+02,
4.94565963e+02, 4.94565963e+02, 4.94565963e+02, 4.94565963e+02,
4.76716435e+02, 4.76716435e+02, 4.76716435e+02, 4.76716435e+02,
4.63423824e+02, 4.63423824e+02, 4.63423824e+02, 4.63423824e+02,
4.55097958e+02, 4.55097958e+02, 4.55097958e+02, 4.55097958e+02,
4.51223672e+02, 4.51223672e+02, 4.51223672e+02, 4.51223672e+02,
4.50235886e+02, 4.50235886e+02, 4.50235886e+02, 4.50235886e+02,
4.50627214e+02, 4.50627214e+02, 4.50627214e+02, 4.50627214e+02,
4.52045781e+02, 4.52045781e+02, 4.52045781e+02, 4.52045781e+02,
4.52733619e+02, 4.52733619e+02, 4.52733619e+02, 4.52733619e+02,
4.53008677e+02, 4.53008677e+02, 4.53008677e+02, 4.53008677e+02,
4.53183711e+02, 4.53183711e+02, 4.53183711e+02, 4.53183711e+02,
4.53371405e+02, 4.53371405e+02, 4.53371405e+02, 4.53371405e+02,
4.53677995e+02, 4.53677995e+02, 4.53677995e+02, 4.53677995e+02,
4.54140504e+02, 4.54140504e+02, 4.54140504e+02, 4.54140504e+02,
4.54621285e+02, 4.54621285e+02, 4.54621285e+02, 4.54621285e+02,
4.55065003e+02, 4.55065003e+02, 4.55065003e+02, 4.55065003e+02,
4.55473454e+02, 4.55473454e+02, 4.55473454e+02, 4.55473454e+02,
4.55862605e+02, 4.55862605e+02, 4.55862605e+02, 4.55862605e+02,
4.56251236e+02, 4.56251236e+02, 4.56251236e+02, 4.56251236e+02,
4.56613227e+02, 4.56613227e+02, 4.56613227e+02, 4.56613227e+02,
4.57031953e+02, 4.57031953e+02, 4.57031953e+02, 4.57031953e+02,
4.57636572e+02, 4.57636572e+02, 4.57636572e+02, 4.57636572e+02,
4.57734018e+02, 4.57734018e+02, 4.57734018e+02, 4.57734018e+02,
4.53736791e+02, 4.53736791e+02, 4.53736791e+02, 4.53736791e+02,
4.27841681e+02, 4.27841681e+02, 4.27841681e+02, 4.27841681e+02,
3.22491407e+02, 3.22491407e+02, 3.22491407e+02, 3.22491407e+02,
1.03503221e+02, 1.03503221e+02, 1.03503221e+02, 1.03503221e+02,
3.92201766e+00, 3.92201766e+00, 3.92201766e+00, 3.92201766e+00,
1.65463831e-02, 1.65463831e-02, 1.65463831e-02, 1.65463831e-02,
1.00006926e-02, 1.00006926e-02, 1.00006926e-02, 1.00006926e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99929182, 0.99929182, 0.99929182, 0.99929182, 0.99819056,
0.99819056, 0.99819056, 0.99819056, 0.99638774, 0.99638774,
0.99638774, 0.99638774, 0.99307857, 0.99307857, 0.99307857,
0.99307857, 0.98762234, 0.98762234, 0.98762234, 0.98762234,
0.97927076, 0.97927076, 0.97927076, 0.97927076, 0.96745681,
0.96745681, 0.96745681, 0.96745681, 0.95194398, 0.95194398,
0.95194398, 0.95194398, 0.93291304, 0.93291304, 0.93291304,
0.93291304, 0.91089851, 0.91089851, 0.91089851, 0.91089851,
0.88661886, 0.88661886, 0.88661886, 0.88661886, 0.86077838,
0.86077838, 0.86077838, 0.86077838, 0.83390834, 0.83390834,
0.83390834, 0.83390834, 0.80667351, 0.80667351, 0.80667351,
0.80667351, 0.77989973, 0.77989973, 0.77989973, 0.77989973,
0.75387045, 0.75387045, 0.75387045, 0.75387045, 0.72866226,
0.72866226, 0.72866226, 0.72866226, 0.70425431, 0.70425431,
0.70425431, 0.70425431, 0.68070198, 0.68070198, 0.68070198,
0.68070198, 0.65806701, 0.65806701, 0.65806701, 0.65806701,
0.63686275, 0.63686275, 0.63686275, 0.63686275, 0.61660877,
0.61660877, 0.61660877, 0.61660877, 0.60023979, 0.60023979,
0.60023979, 0.60023979, 0.58434031, 0.58434031, 0.58434031,
0.58434031, 0.57531196, 0.57531196, 0.57531196, 0.57531196,
0.56885665, 0.56885665, 0.56885665, 0.56885665, 0.56535251,
0.56535251, 0.56535251, 0.56535251, 0.56542652, 0.56542652,
0.56542652, 0.56542652, 0.56613675, 0.56613675, 0.56613675,
0.56613675, 0.56722021, 0.56722021, 0.56722021, 0.56722021,
0.56734999, 0.56734999, 0.56734999, 0.56734999, 0.56761109,
0.56761109, 0.56761109, 0.56761109, 0.56787835, 0.56787835,
0.56787835, 0.56787835, 0.56795177, 0.56795177, 0.56795177,
0.56795177, 0.56808491, 0.56808491, 0.56808491, 0.56808491,
0.56833262, 0.56833262, 0.56833262, 0.56833262, 0.56862979,
0.56862979, 0.56862979, 0.56862979, 0.56915933, 0.56915933,
0.56915933, 0.56915933, 0.570773 , 0.570773 , 0.570773 ,
0.570773 , 0.57706088, 0.57706088, 0.57706088, 0.57706088,
0.59949934, 0.59949934, 0.59949934, 0.59949934, 0.66700177,
0.66700177, 0.66700177, 0.66700177, 0.83868505, 0.83868505,
0.83868505, 0.83868505, 1.21237055, 1.21237055, 1.21237055,
1.21237055, 1.91223289, 1.91223289, 1.91223289, 1.91223289,
3.007806 , 3.007806 , 3.007806 , 3.007806 , 3.87809533,
3.87809533, 3.87809533, 3.87809533, 4.06550349, 4.06550349,
4.06550349, 4.06550349, 3.31660165, 3.31660165, 3.31660165,
3.31660165, 1.51650855, 1.51650855, 1.51650855, 1.51650855,
1.03580283, 1.03580283, 1.03580283, 1.03580283, 1.00089283,
1.00089283, 1.00089283, 1.00089283, 1.00000042, 1.00000042,
1.00000042, 1.00000042, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.65061748e-02, 2.65061748e-02, 2.65061748e-02, 2.65061748e-02,
6.77521323e-02, 6.77521323e-02, 6.77521323e-02, 6.77521323e-02,
1.35347197e-01, 1.35347197e-01, 1.35347197e-01, 1.35347197e-01,
2.59685207e-01, 2.59685207e-01, 2.59685207e-01, 2.59685207e-01,
4.65425979e-01, 4.65425979e-01, 4.65425979e-01, 4.65425979e-01,
7.82144211e-01, 7.82144211e-01, 7.82144211e-01, 7.82144211e-01,
1.23395371e+00, 1.23395371e+00, 1.23395371e+00, 1.23395371e+00,
1.83410775e+00, 1.83410775e+00, 1.83410775e+00, 1.83410775e+00,
2.58131290e+00, 2.58131290e+00, 2.58131290e+00, 2.58131290e+00,
3.46116458e+00, 3.46116458e+00, 3.46116458e+00, 3.46116458e+00,
4.45155217e+00, 4.45155217e+00, 4.45155217e+00, 4.45155217e+00,
5.52969690e+00, 5.52969690e+00, 5.52969690e+00, 5.52969690e+00,
6.67852811e+00, 6.67852811e+00, 6.67852811e+00, 6.67852811e+00,
7.86873820e+00, 7.86873820e+00, 7.86873820e+00, 7.86873820e+00,
9.07107121e+00, 9.07107121e+00, 9.07107121e+00, 9.07107121e+00,
1.02736328e+01, 1.02736328e+01, 1.02736328e+01, 1.02736328e+01,
1.14723262e+01, 1.14723262e+01, 1.14723262e+01, 1.14723262e+01,
1.26646432e+01, 1.26646432e+01, 1.26646432e+01, 1.26646432e+01,
1.38470920e+01, 1.38470920e+01, 1.38470920e+01, 1.38470920e+01,
1.50122685e+01, 1.50122685e+01, 1.50122685e+01, 1.50122685e+01,
1.61443786e+01, 1.61443786e+01, 1.61443786e+01, 1.61443786e+01,
1.72174436e+01, 1.72174436e+01, 1.72174436e+01, 1.72174436e+01,
1.81881157e+01, 1.81881157e+01, 1.81881157e+01, 1.81881157e+01,
1.90020678e+01, 1.90020678e+01, 1.90020678e+01, 1.90020678e+01,
1.96026064e+01, 1.96026064e+01, 1.96026064e+01, 1.96026064e+01,
1.99654493e+01, 1.99654493e+01, 1.99654493e+01, 1.99654493e+01,
2.01215540e+01, 2.01215540e+01, 2.01215540e+01, 2.01215540e+01,
2.01536613e+01, 2.01536613e+01, 2.01536613e+01, 2.01536613e+01,
2.01186860e+01, 2.01186860e+01, 2.01186860e+01, 2.01186860e+01,
2.00503930e+01, 2.00503930e+01, 2.00503930e+01, 2.00503930e+01,
2.00214278e+01, 2.00214278e+01, 2.00214278e+01, 2.00214278e+01,
2.00088918e+01, 2.00088918e+01, 2.00088918e+01, 2.00088918e+01,
1.99992270e+01, 1.99992270e+01, 1.99992270e+01, 1.99992270e+01,
1.99879478e+01, 1.99879478e+01, 1.99879478e+01, 1.99879478e+01,
1.99697555e+01, 1.99697555e+01, 1.99697555e+01, 1.99697555e+01,
1.99444645e+01, 1.99444645e+01, 1.99444645e+01, 1.99444645e+01,
1.99203251e+01, 1.99203251e+01, 1.99203251e+01, 1.99203251e+01,
1.98978235e+01, 1.98978235e+01, 1.98978235e+01, 1.98978235e+01,
1.98758306e+01, 1.98758306e+01, 1.98758306e+01, 1.98758306e+01,
1.98547615e+01, 1.98547615e+01, 1.98547615e+01, 1.98547615e+01,
1.98366120e+01, 1.98366120e+01, 1.98366120e+01, 1.98366120e+01,
1.98210642e+01, 1.98210642e+01, 1.98210642e+01, 1.98210642e+01,
1.98067178e+01, 1.98067178e+01, 1.98067178e+01, 1.98067178e+01,
1.97979636e+01, 1.97979636e+01, 1.97979636e+01, 1.97979636e+01,
1.97829582e+01, 1.97829582e+01, 1.97829582e+01, 1.97829582e+01,
1.97247063e+01, 1.97247063e+01, 1.97247063e+01, 1.97247063e+01,
1.94611034e+01, 1.94611034e+01, 1.94611034e+01, 1.94611034e+01,
1.82839011e+01, 1.82839011e+01, 1.82839011e+01, 1.82839011e+01,
1.38817854e+01, 1.38817854e+01, 1.38817854e+01, 1.38817854e+01,
4.10564450e+00, 4.10564450e+00, 4.10564450e+00, 4.10564450e+00,
1.19559981e-01, 1.19559981e-01, 1.19559981e-01, 1.19559981e-01,
2.64879102e-04, 2.64879102e-04, 2.64879102e-04, 2.64879102e-04,
4.95793305e-08, 4.95793305e-08, 4.95793305e-08, 4.95793305e-08,
8.02645853e-12, 8.02645853e-12, 8.02645853e-12, 8.02645853e-12,
1.28397217e-15, 1.28397217e-15, 1.28397217e-15, 1.28397217e-15,
1.96745591e-19, 1.96745591e-19, 1.96745591e-19, 1.96745591e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99008791e+02, 9.99008791e+02, 9.99008791e+02, 9.99008791e+02,
9.97467896e+02, 9.97467896e+02, 9.97467896e+02, 9.97467896e+02,
9.94947317e+02, 9.94947317e+02, 9.94947317e+02, 9.94947317e+02,
9.90325847e+02, 9.90325847e+02, 9.90325847e+02, 9.90325847e+02,
9.82720519e+02, 9.82720519e+02, 9.82720519e+02, 9.82720519e+02,
9.71113593e+02, 9.71113593e+02, 9.71113593e+02, 9.71113593e+02,
9.54764008e+02, 9.54764008e+02, 9.54764008e+02, 9.54764008e+02,
9.33417401e+02, 9.33417401e+02, 9.33417401e+02, 9.33417401e+02,
9.07418550e+02, 9.07418550e+02, 9.07418550e+02, 9.07418550e+02,
8.77605065e+02, 8.77605065e+02, 8.77605065e+02, 8.77605065e+02,
8.45053460e+02, 8.45053460e+02, 8.45053460e+02, 8.45053460e+02,
8.10795758e+02, 8.10795758e+02, 8.10795758e+02, 8.10795758e+02,
7.75604847e+02, 7.75604847e+02, 7.75604847e+02, 7.75604847e+02,
7.40358342e+02, 7.40358342e+02, 7.40358342e+02, 7.40358342e+02,
7.06183106e+02, 7.06183106e+02, 7.06183106e+02, 7.06183106e+02,
6.73414104e+02, 6.73414104e+02, 6.73414104e+02, 6.73414104e+02,
6.42106090e+02, 6.42106090e+02, 6.42106090e+02, 6.42106090e+02,
6.12205307e+02, 6.12205307e+02, 6.12205307e+02, 6.12205307e+02,
5.83733464e+02, 5.83733464e+02, 5.83733464e+02, 5.83733464e+02,
5.56805862e+02, 5.56805862e+02, 5.56805862e+02, 5.56805862e+02,
5.31654012e+02, 5.31654012e+02, 5.31654012e+02, 5.31654012e+02,
5.08742192e+02, 5.08742192e+02, 5.08742192e+02, 5.08742192e+02,
4.88731625e+02, 4.88731625e+02, 4.88731625e+02, 4.88731625e+02,
4.72495806e+02, 4.72495806e+02, 4.72495806e+02, 4.72495806e+02,
4.60808275e+02, 4.60808275e+02, 4.60808275e+02, 4.60808275e+02,
4.53862047e+02, 4.53862047e+02, 4.53862047e+02, 4.53862047e+02,
4.50909195e+02, 4.50909195e+02, 4.50909195e+02, 4.50909195e+02,
4.50303363e+02, 4.50303363e+02, 4.50303363e+02, 4.50303363e+02,
4.50963314e+02, 4.50963314e+02, 4.50963314e+02, 4.50963314e+02,
4.52251030e+02, 4.52251030e+02, 4.52251030e+02, 4.52251030e+02,
4.52805650e+02, 4.52805650e+02, 4.52805650e+02, 4.52805650e+02,
4.53054444e+02, 4.53054444e+02, 4.53054444e+02, 4.53054444e+02,
4.53236462e+02, 4.53236462e+02, 4.53236462e+02, 4.53236462e+02,
4.53444188e+02, 4.53444188e+02, 4.53444188e+02, 4.53444188e+02,
4.53782015e+02, 4.53782015e+02, 4.53782015e+02, 4.53782015e+02,
4.54259731e+02, 4.54259731e+02, 4.54259731e+02, 4.54259731e+02,
4.54730412e+02, 4.54730412e+02, 4.54730412e+02, 4.54730412e+02,
4.55178339e+02, 4.55178339e+02, 4.55178339e+02, 4.55178339e+02,
4.55590920e+02, 4.55590920e+02, 4.55590920e+02, 4.55590920e+02,
4.55961244e+02, 4.55961244e+02, 4.55961244e+02, 4.55961244e+02,
4.56316460e+02, 4.56316460e+02, 4.56316460e+02, 4.56316460e+02,
4.56666544e+02, 4.56666544e+02, 4.56666544e+02, 4.56666544e+02,
4.57026199e+02, 4.57026199e+02, 4.57026199e+02, 4.57026199e+02,
4.57531552e+02, 4.57531552e+02, 4.57531552e+02, 4.57531552e+02,
4.58018403e+02, 4.58018403e+02, 4.58018403e+02, 4.58018403e+02,
4.56713026e+02, 4.56713026e+02, 4.56713026e+02, 4.56713026e+02,
4.44619433e+02, 4.44619433e+02, 4.44619433e+02, 4.44619433e+02,
3.86158645e+02, 3.86158645e+02, 3.86158645e+02, 3.86158645e+02,
2.07519215e+02, 2.07519215e+02, 2.07519215e+02, 2.07519215e+02,
2.53994497e+01, 2.53994497e+01, 2.53994497e+01, 2.53994497e+01,
2.14148688e-01, 2.14148688e-01, 2.14148688e-01, 2.14148688e-01,
1.00450120e-02, 1.00450120e-02, 1.00450120e-02, 1.00450120e-02,
1.00000059e-02, 1.00000059e-02, 1.00000059e-02, 1.00000059e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99871963, 0.99871963, 0.99871963, 0.99871963, 0.99689581,
0.99689581, 0.99689581, 0.99689581, 0.99415366, 0.99415366,
0.99415366, 0.99415366, 0.98939445, 0.98939445, 0.98939445,
0.98939445, 0.98204346, 0.98204346, 0.98204346, 0.98204346,
0.97146171, 0.97146171, 0.97146171, 0.97146171, 0.9573379 ,
0.9573379 , 0.9573379 , 0.9573379 , 0.93973497, 0.93973497,
0.93973497, 0.93973497, 0.91908294, 0.91908294, 0.91908294,
0.91908294, 0.89603722, 0.89603722, 0.89603722, 0.89603722,
0.87129459, 0.87129459, 0.87129459, 0.87129459, 0.84542383,
0.84542383, 0.84542383, 0.84542383, 0.81892298, 0.81892298,
0.81892298, 0.81892298, 0.79259907, 0.79259907, 0.79259907,
0.79259907, 0.76689349, 0.76689349, 0.76689349, 0.76689349,
0.74195878, 0.74195878, 0.74195878, 0.74195878, 0.71776989,
0.71776989, 0.71776989, 0.71776989, 0.69434792, 0.69434792,
0.69434792, 0.69434792, 0.67176942, 0.67176942, 0.67176942,
0.67176942, 0.65008496, 0.65008496, 0.65008496, 0.65008496,
0.62996773, 0.62996773, 0.62996773, 0.62996773, 0.61070758,
0.61070758, 0.61070758, 0.61070758, 0.59567443, 0.59567443,
0.59567443, 0.59567443, 0.58118471, 0.58118471, 0.58118471,
0.58118471, 0.57312756, 0.57312756, 0.57312756, 0.57312756,
0.56818316, 0.56818316, 0.56818316, 0.56818316, 0.56529871,
0.56529871, 0.56529871, 0.56529871, 0.56537711, 0.56537711,
0.56537711, 0.56537711, 0.56637301, 0.56637301, 0.56637301,
0.56637301, 0.56746355, 0.56746355, 0.56746355, 0.56746355,
0.56750707, 0.56750707, 0.56750707, 0.56750707, 0.56762621,
0.56762621, 0.56762621, 0.56762621, 0.56789882, 0.56789882,
0.56789882, 0.56789882, 0.56806145, 0.56806145, 0.56806145,
0.56806145, 0.56826163, 0.56826163, 0.56826163, 0.56826163,
0.56851406, 0.56851406, 0.56851406, 0.56851406, 0.56877122,
0.56877122, 0.56877122, 0.56877122, 0.56918068, 0.56918068,
0.56918068, 0.56918068, 0.57030245, 0.57030245, 0.57030245,
0.57030245, 0.5745043 , 0.5745043 , 0.5745043 , 0.5745043 ,
0.58979671, 0.58979671, 0.58979671, 0.58979671, 0.63756363,
0.63756363, 0.63756363, 0.63756363, 0.7640859 , 0.7640859 ,
0.7640859 , 0.7640859 , 1.05129673, 1.05129673, 1.05129673,
1.05129673, 1.61395351, 1.61395351, 1.61395351, 1.61395351,
2.56324844, 2.56324844, 2.56324844, 2.56324844, 3.64796108,
3.64796108, 3.64796108, 3.64796108, 4.10212289, 4.10212289,
4.10212289, 4.10212289, 3.88420625, 3.88420625, 3.88420625,
3.88420625, 2.28314086, 2.28314086, 2.28314086, 2.28314086,
1.12772592, 1.12772592, 1.12772592, 1.12772592, 1.00628402,
1.00628402, 1.00628402, 1.00628402, 1.00002417, 1.00002417,
1.00002417, 1.00002417, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([4.79346584e-02, 4.79346584e-02, 4.79346584e-02, 4.79346584e-02,
1.16295186e-01, 1.16295186e-01, 1.16295186e-01, 1.16295186e-01,
2.19249025e-01, 2.19249025e-01, 2.19249025e-01, 2.19249025e-01,
3.98505426e-01, 3.98505426e-01, 3.98505426e-01, 3.98505426e-01,
6.76753261e-01, 6.76753261e-01, 6.76753261e-01, 6.76753261e-01,
1.08029397e+00, 1.08029397e+00, 1.08029397e+00, 1.08029397e+00,
1.62453623e+00, 1.62453623e+00, 1.62453623e+00, 1.62453623e+00,
2.31205472e+00, 2.31205472e+00, 2.31205472e+00, 2.31205472e+00,
3.13205824e+00, 3.13205824e+00, 3.13205824e+00, 3.13205824e+00,
4.06476657e+00, 4.06476657e+00, 4.06476657e+00, 4.06476657e+00,
5.08775132e+00, 5.08775132e+00, 5.08775132e+00, 5.08775132e+00,
6.18246089e+00, 6.18246089e+00, 6.18246089e+00, 6.18246089e+00,
7.33022569e+00, 7.33022569e+00, 7.33022569e+00, 7.33022569e+00,
8.49610187e+00, 8.49610187e+00, 8.49610187e+00, 8.49610187e+00,
9.66738034e+00, 9.66738034e+00, 9.66738034e+00, 9.66738034e+00,
1.08365227e+01, 1.08365227e+01, 1.08365227e+01, 1.08365227e+01,
1.20006085e+01, 1.20006085e+01, 1.20006085e+01, 1.20006085e+01,
1.31582056e+01, 1.31582056e+01, 1.31582056e+01, 1.31582056e+01,
1.43045927e+01, 1.43045927e+01, 1.43045927e+01, 1.43045927e+01,
1.54308433e+01, 1.54308433e+01, 1.54308433e+01, 1.54308433e+01,
1.65188815e+01, 1.65188815e+01, 1.65188815e+01, 1.65188815e+01,
1.75398658e+01, 1.75398658e+01, 1.75398658e+01, 1.75398658e+01,
1.84481157e+01, 1.84481157e+01, 1.84481157e+01, 1.84481157e+01,
1.91900861e+01, 1.91900861e+01, 1.91900861e+01, 1.91900861e+01,
1.97162589e+01, 1.97162589e+01, 1.97162589e+01, 1.97162589e+01,
2.00152679e+01, 2.00152679e+01, 2.00152679e+01, 2.00152679e+01,
2.01312403e+01, 2.01312403e+01, 2.01312403e+01, 2.01312403e+01,
2.01482309e+01, 2.01482309e+01, 2.01482309e+01, 2.01482309e+01,
2.01006098e+01, 2.01006098e+01, 2.01006098e+01, 2.01006098e+01,
2.00417664e+01, 2.00417664e+01, 2.00417664e+01, 2.00417664e+01,
2.00177684e+01, 2.00177684e+01, 2.00177684e+01, 2.00177684e+01,
2.00061893e+01, 2.00061893e+01, 2.00061893e+01, 2.00061893e+01,
1.99964358e+01, 1.99964358e+01, 1.99964358e+01, 1.99964358e+01,
1.99841326e+01, 1.99841326e+01, 1.99841326e+01, 1.99841326e+01,
1.99640722e+01, 1.99640722e+01, 1.99640722e+01, 1.99640722e+01,
1.99380327e+01, 1.99380327e+01, 1.99380327e+01, 1.99380327e+01,
1.99138950e+01, 1.99138950e+01, 1.99138950e+01, 1.99138950e+01,
1.98915983e+01, 1.98915983e+01, 1.98915983e+01, 1.98915983e+01,
1.98706224e+01, 1.98706224e+01, 1.98706224e+01, 1.98706224e+01,
1.98504781e+01, 1.98504781e+01, 1.98504781e+01, 1.98504781e+01,
1.98321531e+01, 1.98321531e+01, 1.98321531e+01, 1.98321531e+01,
1.98164498e+01, 1.98164498e+01, 1.98164498e+01, 1.98164498e+01,
1.98028802e+01, 1.98028802e+01, 1.98028802e+01, 1.98028802e+01,
1.97923327e+01, 1.97923327e+01, 1.97923327e+01, 1.97923327e+01,
1.97838509e+01, 1.97838509e+01, 1.97838509e+01, 1.97838509e+01,
1.97535132e+01, 1.97535132e+01, 1.97535132e+01, 1.97535132e+01,
1.96225421e+01, 1.96225421e+01, 1.96225421e+01, 1.96225421e+01,
1.90212196e+01, 1.90212196e+01, 1.90212196e+01, 1.90212196e+01,
1.65525784e+01, 1.65525784e+01, 1.65525784e+01, 1.65525784e+01,
9.01356040e+00, 9.01356040e+00, 9.01356040e+00, 9.01356040e+00,
7.89629666e-01, 7.89629666e-01, 7.89629666e-01, 7.89629666e-01,
6.47563091e-03, 6.47563091e-03, 6.47563091e-03, 6.47563091e-03,
3.00072068e-06, 3.00072068e-06, 3.00072068e-06, 3.00072068e-06,
4.61483424e-10, 4.61483424e-10, 4.61483424e-10, 4.61483424e-10,
7.14105492e-14, 7.14105492e-14, 7.14105492e-14, 7.14105492e-14,
1.12055754e-17, 1.12055754e-17, 1.12055754e-17, 1.12055754e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.98208251e+02, 9.98208251e+02, 9.98208251e+02, 9.98208251e+02,
9.95657307e+02, 9.95657307e+02, 9.95657307e+02, 9.95657307e+02,
9.91826551e+02, 9.91826551e+02, 9.91826551e+02, 9.91826551e+02,
9.85188507e+02, 9.85188507e+02, 9.85188507e+02, 9.85188507e+02,
9.74962220e+02, 9.74962220e+02, 9.74962220e+02, 9.74962220e+02,
9.60296787e+02, 9.60296787e+02, 9.60296787e+02, 9.60296787e+02,
9.40822905e+02, 9.40822905e+02, 9.40822905e+02, 9.40822905e+02,
9.16712279e+02, 9.16712279e+02, 9.16712279e+02, 9.16712279e+02,
8.88653079e+02, 8.88653079e+02, 8.88653079e+02, 8.88653079e+02,
8.57635270e+02, 8.57635270e+02, 8.57635270e+02, 8.57635270e+02,
8.24683912e+02, 8.24683912e+02, 8.24683912e+02, 8.24683912e+02,
7.90625936e+02, 7.90625936e+02, 7.90625936e+02, 7.90625936e+02,
7.56152074e+02, 7.56152074e+02, 7.56152074e+02, 7.56152074e+02,
7.22323562e+02, 7.22323562e+02, 7.22323562e+02, 7.22323562e+02,
6.89748211e+02, 6.89748211e+02, 6.89748211e+02, 6.89748211e+02,
6.58562261e+02, 6.58562261e+02, 6.58562261e+02, 6.58562261e+02,
6.28705838e+02, 6.28705838e+02, 6.28705838e+02, 6.28705838e+02,
6.00181833e+02, 6.00181833e+02, 6.00181833e+02, 6.00181833e+02,
5.73028492e+02, 5.73028492e+02, 5.73028492e+02, 5.73028492e+02,
5.47394913e+02, 5.47394913e+02, 5.47394913e+02, 5.47394913e+02,
5.23556041e+02, 5.23556041e+02, 5.23556041e+02, 5.23556041e+02,
5.02022645e+02, 5.02022645e+02, 5.02022645e+02, 5.02022645e+02,
4.83490652e+02, 4.83490652e+02, 4.83490652e+02, 4.83490652e+02,
4.68807418e+02, 4.68807418e+02, 4.68807418e+02, 4.68807418e+02,
4.58628006e+02, 4.58628006e+02, 4.58628006e+02, 4.58628006e+02,
4.52917665e+02, 4.52917665e+02, 4.52917665e+02, 4.52917665e+02,
4.50722891e+02, 4.50722891e+02, 4.50722891e+02, 4.50722891e+02,
4.50404840e+02, 4.50404840e+02, 4.50404840e+02, 4.50404840e+02,
4.51305706e+02, 4.51305706e+02, 4.51305706e+02, 4.51305706e+02,
4.52417827e+02, 4.52417827e+02, 4.52417827e+02, 4.52417827e+02,
4.52869771e+02, 4.52869771e+02, 4.52869771e+02, 4.52869771e+02,
4.53098143e+02, 4.53098143e+02, 4.53098143e+02, 4.53098143e+02,
4.53288109e+02, 4.53288109e+02, 4.53288109e+02, 4.53288109e+02,
4.53522454e+02, 4.53522454e+02, 4.53522454e+02, 4.53522454e+02,
4.53898721e+02, 4.53898721e+02, 4.53898721e+02, 4.53898721e+02,
4.54383577e+02, 4.54383577e+02, 4.54383577e+02, 4.54383577e+02,
4.54840633e+02, 4.54840633e+02, 4.54840633e+02, 4.54840633e+02,
4.55282568e+02, 4.55282568e+02, 4.55282568e+02, 4.55282568e+02,
4.55699208e+02, 4.55699208e+02, 4.55699208e+02, 4.55699208e+02,
4.56064730e+02, 4.56064730e+02, 4.56064730e+02, 4.56064730e+02,
4.56394118e+02, 4.56394118e+02, 4.56394118e+02, 4.56394118e+02,
4.56721490e+02, 4.56721490e+02, 4.56721490e+02, 4.56721490e+02,
4.57041842e+02, 4.57041842e+02, 4.57041842e+02, 4.57041842e+02,
4.57452339e+02, 4.57452339e+02, 4.57452339e+02, 4.57452339e+02,
4.58033692e+02, 4.58033692e+02, 4.58033692e+02, 4.58033692e+02,
4.57888048e+02, 4.57888048e+02, 4.57888048e+02, 4.57888048e+02,
4.52727602e+02, 4.52727602e+02, 4.52727602e+02, 4.52727602e+02,
4.22759926e+02, 4.22759926e+02, 4.22759926e+02, 4.22759926e+02,
3.07068930e+02, 3.07068930e+02, 3.07068930e+02, 3.07068930e+02,
8.77696574e+01, 8.77696574e+01, 8.77696574e+01, 8.77696574e+01,
2.68785775e+00, 2.68785775e+00, 2.68785775e+00, 2.68785775e+00,
1.34301951e-02, 1.34301951e-02, 1.34301951e-02, 1.34301951e-02,
1.00003538e-02, 1.00003538e-02, 1.00003538e-02, 1.00003538e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99779253, 0.99779253, 0.99779253, 0.99779253, 0.99492087,
0.99492087, 0.99492087, 0.99492087, 0.99096776, 0.99096776,
0.99096776, 0.99096776, 0.98445746, 0.98445746, 0.98445746,
0.98445746, 0.97502252, 0.97502252, 0.97502252, 0.97502252,
0.9621987 , 0.9621987 , 0.9621987 , 0.9621987 , 0.94596677,
0.94596677, 0.94596677, 0.94596677, 0.92664513, 0.92664513,
0.92664513, 0.92664513, 0.90481789, 0.90481789, 0.90481789,
0.90481789, 0.88115819, 0.88115819, 0.88115819, 0.88115819,
0.85626688, 0.85626688, 0.85626688, 0.85626688, 0.83058143,
0.83058143, 0.83058143, 0.83058143, 0.80476657, 0.80476657,
0.80476657, 0.80476657, 0.77943364, 0.77943364, 0.77943364,
0.77943364, 0.75476663, 0.75476663, 0.75476663, 0.75476663,
0.73082127, 0.73082127, 0.73082127, 0.73082127, 0.70758612,
0.70758612, 0.70758612, 0.70758612, 0.6850841 , 0.6850841 ,
0.6850841 , 0.6850841 , 0.66342869, 0.66342869, 0.66342869,
0.66342869, 0.6426441 , 0.6426441 , 0.6426441 , 0.6426441 ,
0.62359474, 0.62359474, 0.62359474, 0.62359474, 0.60530901,
0.60530901, 0.60530901, 0.60530901, 0.59154744, 0.59154744,
0.59154744, 0.59154744, 0.57849861, 0.57849861, 0.57849861,
0.57849861, 0.57129468, 0.57129468, 0.57129468, 0.57129468,
0.56764504, 0.56764504, 0.56764504, 0.56764504, 0.56537656,
0.56537656, 0.56537656, 0.56537656, 0.56541728, 0.56541728,
0.56541728, 0.56541728, 0.566573 , 0.566573 , 0.566573 ,
0.566573 , 0.56761976, 0.56761976, 0.56761976, 0.56761976,
0.56766123, 0.56766123, 0.56766123, 0.56766123, 0.56769891,
0.56769891, 0.56769891, 0.56769891, 0.56789839, 0.56789839,
0.56789839, 0.56789839, 0.56815101, 0.56815101, 0.56815101,
0.56815101, 0.56843359, 0.56843359, 0.56843359, 0.56843359,
0.56870197, 0.56870197, 0.56870197, 0.56870197, 0.56893189,
0.56893189, 0.56893189, 0.56893189, 0.56925247, 0.56925247,
0.56925247, 0.56925247, 0.57003928, 0.57003928, 0.57003928,
0.57003928, 0.57286264, 0.57286264, 0.57286264, 0.57286264,
0.58324543, 0.58324543, 0.58324543, 0.58324543, 0.61675826,
0.61675826, 0.61675826, 0.61675826, 0.70906129, 0.70906129,
0.70906129, 0.70906129, 0.92724037, 0.92724037, 0.92724037,
0.92724037, 1.37323589, 1.37323589, 1.37323589, 1.37323589,
2.1635062 , 2.1635062 , 2.1635062 , 2.1635062 , 3.29148444,
3.29148444, 3.29148444, 3.29148444, 4.0332475 , 4.0332475 ,
4.0332475 , 4.0332475 , 4.12979469, 4.12979469, 4.12979469,
4.12979469, 3.20980045, 3.20980045, 3.20980045, 3.20980045,
1.4244878 , 1.4244878 , 1.4244878 , 1.4244878 , 1.02817994,
1.02817994, 1.02817994, 1.02817994, 1.00058696, 1.00058696,
1.00058696, 1.00058696, 1.00000021, 1.00000021, 1.00000021,
1.00000021, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([8.26770714e-02, 8.26770714e-02, 8.26770714e-02, 8.26770714e-02,
1.90444567e-01, 1.90444567e-01, 1.90444567e-01, 1.90444567e-01,
3.39156393e-01, 3.39156393e-01, 3.39156393e-01, 3.39156393e-01,
5.85196350e-01, 5.85196350e-01, 5.85196350e-01, 5.85196350e-01,
9.44102208e-01, 9.44102208e-01, 9.44102208e-01, 9.44102208e-01,
1.43650190e+00, 1.43650190e+00, 1.43650190e+00, 1.43650190e+00,
2.06747296e+00, 2.06747296e+00, 2.06747296e+00, 2.06747296e+00,
2.83007409e+00, 2.83007409e+00, 2.83007409e+00, 2.83007409e+00,
3.70711102e+00, 3.70711102e+00, 3.70711102e+00, 3.70711102e+00,
4.67711511e+00, 4.67711511e+00, 4.67711511e+00, 4.67711511e+00,
5.72031049e+00, 5.72031049e+00, 5.72031049e+00, 5.72031049e+00,
6.82230541e+00, 6.82230541e+00, 6.82230541e+00, 6.82230541e+00,
7.95228204e+00, 7.95228204e+00, 7.95228204e+00, 7.95228204e+00,
9.09250910e+00, 9.09250910e+00, 9.09250910e+00, 9.09250910e+00,
1.02322411e+01, 1.02322411e+01, 1.02322411e+01, 1.02322411e+01,
1.13687918e+01, 1.13687918e+01, 1.13687918e+01, 1.13687918e+01,
1.25004504e+01, 1.25004504e+01, 1.25004504e+01, 1.25004504e+01,
1.36248432e+01, 1.36248432e+01, 1.36248432e+01, 1.36248432e+01,
1.47363425e+01, 1.47363425e+01, 1.47363425e+01, 1.47363425e+01,
1.58243684e+01, 1.58243684e+01, 1.58243684e+01, 1.58243684e+01,
1.68684615e+01, 1.68684615e+01, 1.68684615e+01, 1.68684615e+01,
1.78370966e+01, 1.78370966e+01, 1.78370966e+01, 1.78370966e+01,
1.86828484e+01, 1.86828484e+01, 1.86828484e+01, 1.86828484e+01,
1.93540793e+01, 1.93540793e+01, 1.93540793e+01, 1.93540793e+01,
1.98100759e+01, 1.98100759e+01, 1.98100759e+01, 1.98100759e+01,
2.00526668e+01, 2.00526668e+01, 2.00526668e+01, 2.00526668e+01,
2.01358422e+01, 2.01358422e+01, 2.01358422e+01, 2.01358422e+01,
2.01409960e+01, 2.01409960e+01, 2.01409960e+01, 2.01409960e+01,
2.00831703e+01, 2.00831703e+01, 2.00831703e+01, 2.00831703e+01,
2.00347786e+01, 2.00347786e+01, 2.00347786e+01, 2.00347786e+01,
2.00146195e+01, 2.00146195e+01, 2.00146195e+01, 2.00146195e+01,
2.00034460e+01, 2.00034460e+01, 2.00034460e+01, 2.00034460e+01,
1.99933175e+01, 1.99933175e+01, 1.99933175e+01, 1.99933175e+01,
1.99796992e+01, 1.99796992e+01, 1.99796992e+01, 1.99796992e+01,
1.99579053e+01, 1.99579053e+01, 1.99579053e+01, 1.99579053e+01,
1.99319311e+01, 1.99319311e+01, 1.99319311e+01, 1.99319311e+01,
1.99078330e+01, 1.99078330e+01, 1.99078330e+01, 1.99078330e+01,
1.98854258e+01, 1.98854258e+01, 1.98854258e+01, 1.98854258e+01,
1.98650641e+01, 1.98650641e+01, 1.98650641e+01, 1.98650641e+01,
1.98461462e+01, 1.98461462e+01, 1.98461462e+01, 1.98461462e+01,
1.98282545e+01, 1.98282545e+01, 1.98282545e+01, 1.98282545e+01,
1.98124498e+01, 1.98124498e+01, 1.98124498e+01, 1.98124498e+01,
1.97991749e+01, 1.97991749e+01, 1.97991749e+01, 1.97991749e+01,
1.97873673e+01, 1.97873673e+01, 1.97873673e+01, 1.97873673e+01,
1.97808776e+01, 1.97808776e+01, 1.97808776e+01, 1.97808776e+01,
1.97645088e+01, 1.97645088e+01, 1.97645088e+01, 1.97645088e+01,
1.96988900e+01, 1.96988900e+01, 1.96988900e+01, 1.96988900e+01,
1.93964557e+01, 1.93964557e+01, 1.93964557e+01, 1.93964557e+01,
1.80772383e+01, 1.80772383e+01, 1.80772383e+01, 1.80772383e+01,
1.32758210e+01, 1.32758210e+01, 1.32758210e+01, 1.32758210e+01,
3.37432001e+00, 3.37432001e+00, 3.37432001e+00, 3.37432001e+00,
8.08064010e-02, 8.08064010e-02, 8.08064010e-02, 8.08064010e-02,
1.40942456e-04, 1.40942456e-04, 1.40942456e-04, 1.40942456e-04,
2.50612552e-08, 2.50612552e-08, 2.50612552e-08, 2.50612552e-08,
4.11745361e-12, 4.11745361e-12, 4.11745361e-12, 4.11745361e-12,
6.55937311e-16, 6.55937311e-16, 6.55937311e-16, 6.55937311e-16,
9.42282893e-20, 9.42282893e-20, 9.42282893e-20, 9.42282893e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.96911775e+02, 9.96911775e+02, 9.96911775e+02, 9.96911775e+02,
9.92897461e+02, 9.92897461e+02, 9.92897461e+02, 9.92897461e+02,
9.87381492e+02, 9.87381492e+02, 9.87381492e+02, 9.87381492e+02,
9.78316630e+02, 9.78316630e+02, 9.78316630e+02, 9.78316630e+02,
9.65224072e+02, 9.65224072e+02, 9.65224072e+02, 9.65224072e+02,
9.47511089e+02, 9.47511089e+02, 9.47511089e+02, 9.47511089e+02,
9.25225984e+02, 9.25225984e+02, 9.25225984e+02, 9.25225984e+02,
8.98896472e+02, 8.98896472e+02, 8.98896472e+02, 8.98896472e+02,
8.69413243e+02, 8.69413243e+02, 8.69413243e+02, 8.69413243e+02,
8.37771694e+02, 8.37771694e+02, 8.37771694e+02, 8.37771694e+02,
8.04845422e+02, 8.04845422e+02, 8.04845422e+02, 8.04845422e+02,
7.71265034e+02, 7.71265034e+02, 7.71265034e+02, 7.71265034e+02,
7.37891694e+02, 7.37891694e+02, 7.37891694e+02, 7.37891694e+02,
7.05581087e+02, 7.05581087e+02, 7.05581087e+02, 7.05581087e+02,
6.74524283e+02, 6.74524283e+02, 6.74524283e+02, 6.74524283e+02,
6.44761697e+02, 6.44761697e+02, 6.44761697e+02, 6.44761697e+02,
6.16250581e+02, 6.16250581e+02, 6.16250581e+02, 6.16250581e+02,
5.89001288e+02, 5.89001288e+02, 5.89001288e+02, 5.89001288e+02,
5.63080642e+02, 5.63080642e+02, 5.63080642e+02, 5.63080642e+02,
5.38671716e+02, 5.38671716e+02, 5.38671716e+02, 5.38671716e+02,
5.16092282e+02, 5.16092282e+02, 5.16092282e+02, 5.16092282e+02,
4.95896244e+02, 4.95896244e+02, 4.95896244e+02, 4.95896244e+02,
4.78802137e+02, 4.78802137e+02, 4.78802137e+02, 4.78802137e+02,
4.65608882e+02, 4.65608882e+02, 4.65608882e+02, 4.65608882e+02,
4.56832207e+02, 4.56832207e+02, 4.56832207e+02, 4.56832207e+02,
4.52212128e+02, 4.52212128e+02, 4.52212128e+02, 4.52212128e+02,
4.50635329e+02, 4.50635329e+02, 4.50635329e+02, 4.50635329e+02,
4.50539724e+02, 4.50539724e+02, 4.50539724e+02, 4.50539724e+02,
4.51634371e+02, 4.51634371e+02, 4.51634371e+02, 4.51634371e+02,
4.52552736e+02, 4.52552736e+02, 4.52552736e+02, 4.52552736e+02,
4.52930057e+02, 4.52930057e+02, 4.52930057e+02, 4.52930057e+02,
4.53144052e+02, 4.53144052e+02, 4.53144052e+02, 4.53144052e+02,
4.53341730e+02, 4.53341730e+02, 4.53341730e+02, 4.53341730e+02,
4.53605101e+02, 4.53605101e+02, 4.53605101e+02, 4.53605101e+02,
4.54020478e+02, 4.54020478e+02, 4.54020478e+02, 4.54020478e+02,
4.54510123e+02, 4.54510123e+02, 4.54510123e+02, 4.54510123e+02,
4.54955970e+02, 4.54955970e+02, 4.54955970e+02, 4.54955970e+02,
4.55384422e+02, 4.55384422e+02, 4.55384422e+02, 4.55384422e+02,
4.55795165e+02, 4.55795165e+02, 4.55795165e+02, 4.55795165e+02,
4.56163141e+02, 4.56163141e+02, 4.56163141e+02, 4.56163141e+02,
4.56482181e+02, 4.56482181e+02, 4.56482181e+02, 4.56482181e+02,
4.56781749e+02, 4.56781749e+02, 4.56781749e+02, 4.56781749e+02,
4.57078389e+02, 4.57078389e+02, 4.57078389e+02, 4.57078389e+02,
4.57417386e+02, 4.57417386e+02, 4.57417386e+02, 4.57417386e+02,
4.57936162e+02, 4.57936162e+02, 4.57936162e+02, 4.57936162e+02,
4.58275885e+02, 4.58275885e+02, 4.58275885e+02, 4.58275885e+02,
4.56396881e+02, 4.56396881e+02, 4.56396881e+02, 4.56396881e+02,
4.42008574e+02, 4.42008574e+02, 4.42008574e+02, 4.42008574e+02,
3.76142236e+02, 3.76142236e+02, 3.76142236e+02, 3.76142236e+02,
1.87877799e+02, 1.87877799e+02, 1.87877799e+02, 1.87877799e+02,
1.93878950e+01, 1.93878950e+01, 1.93878950e+01, 1.93878950e+01,
1.28441959e-01, 1.28441959e-01, 1.28441959e-01, 1.28441959e-01,
1.00206317e-02, 1.00206317e-02, 1.00206317e-02, 1.00206317e-02,
1.00000030e-02, 1.00000030e-02, 1.00000030e-02, 1.00000030e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99636432, 0.99636432, 0.99636432, 0.99636432, 0.99205876,
0.99205876, 0.99205876, 0.99205876, 0.98664933, 0.98664933,
0.98664933, 0.98664933, 0.97815371, 0.97815371, 0.97815371,
0.97815371, 0.9665772 , 0.9665772 , 0.9665772 , 0.9665772 ,
0.95164637, 0.95164637, 0.95164637, 0.95164637, 0.93362252,
0.93362252, 0.93362252, 0.93362252, 0.91299712, 0.91299712,
0.91299712, 0.91299712, 0.89041028, 0.89041028, 0.89041028,
0.89041028, 0.86647311, 0.86647311, 0.86647311, 0.86647311,
0.84164558, 0.84164558, 0.84164558, 0.84164558, 0.81642336,
0.81642336, 0.81642336, 0.81642336, 0.79148604, 0.79148604,
0.79148604, 0.79148604, 0.76710834, 0.76710834, 0.76710834,
0.76710834, 0.7434205 , 0.7434205 , 0.7434205 , 0.7434205 ,
0.72039324, 0.72039324, 0.72039324, 0.72039324, 0.69804488,
0.69804488, 0.69804488, 0.69804488, 0.67640665, 0.67640665,
0.67640665, 0.67640665, 0.65563302, 0.65563302, 0.65563302,
0.65563302, 0.63570432, 0.63570432, 0.63570432, 0.63570432,
0.61770755, 0.61770755, 0.61770755, 0.61770755, 0.60038962,
0.60038962, 0.60038962, 0.60038962, 0.58782557, 0.58782557,
0.58782557, 0.58782557, 0.57623676, 0.57623676, 0.57623676,
0.57623676, 0.56979185, 0.56979185, 0.56979185, 0.56979185,
0.56720324, 0.56720324, 0.56720324, 0.56720324, 0.56553241,
0.56553241, 0.56553241, 0.56553241, 0.56556965, 0.56556965,
0.56556965, 0.56556965, 0.56672103, 0.56672103, 0.56672103,
0.56672103, 0.56770851, 0.56770851, 0.56770851, 0.56770851,
0.56779669, 0.56779669, 0.56779669, 0.56779669, 0.56780547,
0.56780547, 0.56780547, 0.56780547, 0.56792996, 0.56792996,
0.56792996, 0.56792996, 0.56821566, 0.56821566, 0.56821566,
0.56821566, 0.5685916 , 0.5685916 , 0.5685916 , 0.5685916 ,
0.56888519, 0.56888519, 0.56888519, 0.56888519, 0.56910119,
0.56910119, 0.56910119, 0.56910119, 0.56936231, 0.56936231,
0.56936231, 0.56936231, 0.56991804, 0.56991804, 0.56991804,
0.56991804, 0.57182047, 0.57182047, 0.57182047, 0.57182047,
0.57885305, 0.57885305, 0.57885305, 0.57885305, 0.60219878,
0.60219878, 0.60219878, 0.60219878, 0.66890255, 0.66890255,
0.66890255, 0.66890255, 0.83282931, 0.83282931, 0.83282931,
0.83282931, 1.18191186, 1.18191186, 1.18191186, 1.18191186,
1.82871125, 1.82871125, 1.82871125, 1.82871125, 2.86090807,
2.86090807, 2.86090807, 2.86090807, 3.85054369, 3.85054369,
3.85054369, 3.85054369, 4.19989541, 4.19989541, 4.19989541,
4.19989541, 3.86486856, 3.86486856, 3.86486856, 3.86486856,
2.13052935, 2.13052935, 2.13052935, 2.13052935, 1.10421234,
1.10421234, 1.10421234, 1.10421234, 1.0046868 , 1.0046868 ,
1.0046868 , 1.0046868 , 1.00001224, 1.00001224, 1.00001224,
1.00001224, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.36253533e-01, 1.36253533e-01, 1.36253533e-01, 1.36253533e-01,
2.98133139e-01, 2.98133139e-01, 2.98133139e-01, 2.98133139e-01,
5.02180164e-01, 5.02180164e-01, 5.02180164e-01, 5.02180164e-01,
8.24685029e-01, 8.24685029e-01, 8.24685029e-01, 8.24685029e-01,
1.26777639e+00, 1.26777639e+00, 1.26777639e+00, 1.26777639e+00,
1.84570316e+00, 1.84570316e+00, 1.84570316e+00, 1.84570316e+00,
2.55320788e+00, 2.55320788e+00, 2.55320788e+00, 2.55320788e+00,
3.37646407e+00, 3.37646407e+00, 3.37646407e+00, 3.37646407e+00,
4.29528509e+00, 4.29528509e+00, 4.29528509e+00, 4.29528509e+00,
5.28957743e+00, 5.28957743e+00, 5.28957743e+00, 5.28957743e+00,
6.34426536e+00, 6.34426536e+00, 6.34426536e+00, 6.34426536e+00,
7.43855306e+00, 7.43855306e+00, 7.43855306e+00, 7.43855306e+00,
8.54650989e+00, 8.54650989e+00, 8.54650989e+00, 8.54650989e+00,
9.65778684e+00, 9.65778684e+00, 9.65778684e+00, 9.65778684e+00,
1.07675433e+01, 1.07675433e+01, 1.07675433e+01, 1.07675433e+01,
1.18732730e+01, 1.18732730e+01, 1.18732730e+01, 1.18732730e+01,
1.29739395e+01, 1.29739395e+01, 1.29739395e+01, 1.29739395e+01,
1.40664784e+01, 1.40664784e+01, 1.40664784e+01, 1.40664784e+01,
1.51440272e+01, 1.51440272e+01, 1.51440272e+01, 1.51440272e+01,
1.61942747e+01, 1.61942747e+01, 1.61942747e+01, 1.61942747e+01,
1.71943313e+01, 1.71943313e+01, 1.71943313e+01, 1.71943313e+01,
1.81102285e+01, 1.81102285e+01, 1.81102285e+01, 1.81102285e+01,
1.88935753e+01, 1.88935753e+01, 1.88935753e+01, 1.88935753e+01,
1.94958477e+01, 1.94958477e+01, 1.94958477e+01, 1.94958477e+01,
1.98864185e+01, 1.98864185e+01, 1.98864185e+01, 1.98864185e+01,
2.00798147e+01, 2.00798147e+01, 2.00798147e+01, 2.00798147e+01,
2.01365297e+01, 2.01365297e+01, 2.01365297e+01, 2.01365297e+01,
2.01309132e+01, 2.01309132e+01, 2.01309132e+01, 2.01309132e+01,
2.00684530e+01, 2.00684530e+01, 2.00684530e+01, 2.00684530e+01,
2.00289832e+01, 2.00289832e+01, 2.00289832e+01, 2.00289832e+01,
2.00117538e+01, 2.00117538e+01, 2.00117538e+01, 2.00117538e+01,
2.00007059e+01, 2.00007059e+01, 2.00007059e+01, 2.00007059e+01,
1.99899662e+01, 1.99899662e+01, 1.99899662e+01, 1.99899662e+01,
1.99747375e+01, 1.99747375e+01, 1.99747375e+01, 1.99747375e+01,
1.99513167e+01, 1.99513167e+01, 1.99513167e+01, 1.99513167e+01,
1.99258024e+01, 1.99258024e+01, 1.99258024e+01, 1.99258024e+01,
1.99020913e+01, 1.99020913e+01, 1.99020913e+01, 1.99020913e+01,
1.98796675e+01, 1.98796675e+01, 1.98796675e+01, 1.98796675e+01,
1.98594450e+01, 1.98594450e+01, 1.98594450e+01, 1.98594450e+01,
1.98414283e+01, 1.98414283e+01, 1.98414283e+01, 1.98414283e+01,
1.98245672e+01, 1.98245672e+01, 1.98245672e+01, 1.98245672e+01,
1.98089852e+01, 1.98089852e+01, 1.98089852e+01, 1.98089852e+01,
1.97956031e+01, 1.97956031e+01, 1.97956031e+01, 1.97956031e+01,
1.97837093e+01, 1.97837093e+01, 1.97837093e+01, 1.97837093e+01,
1.97755943e+01, 1.97755943e+01, 1.97755943e+01, 1.97755943e+01,
1.97672969e+01, 1.97672969e+01, 1.97672969e+01, 1.97672969e+01,
1.97336516e+01, 1.97336516e+01, 1.97336516e+01, 1.97336516e+01,
1.95824012e+01, 1.95824012e+01, 1.95824012e+01, 1.95824012e+01,
1.89016608e+01, 1.89016608e+01, 1.89016608e+01, 1.89016608e+01,
1.61684252e+01, 1.61684252e+01, 1.61684252e+01, 1.61684252e+01,
8.15698720e+00, 8.15698720e+00, 8.15698720e+00, 8.15698720e+00,
5.95654577e-01, 5.95654577e-01, 5.95654577e-01, 5.95654577e-01,
3.94968248e-03, 3.94968248e-03, 3.94968248e-03, 3.94968248e-03,
1.48333272e-06, 1.48333272e-06, 1.48333272e-06, 1.48333272e-06,
2.26392355e-10, 2.26392355e-10, 2.26392355e-10, 2.26392355e-10,
3.54863604e-14, 3.54863604e-14, 3.54863604e-14, 3.54863604e-14,
5.67765305e-18, 5.67765305e-18, 5.67765305e-18, 5.67765305e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.94915923e+02, 9.94915923e+02, 9.94915923e+02, 9.94915923e+02,
9.88901826e+02, 9.88901826e+02, 9.88901826e+02, 9.88901826e+02,
9.81366024e+02, 9.81366024e+02, 9.81366024e+02, 9.81366024e+02,
9.69562839e+02, 9.69562839e+02, 9.69562839e+02, 9.69562839e+02,
9.53547612e+02, 9.53547612e+02, 9.53547612e+02, 9.53547612e+02,
9.33005104e+02, 9.33005104e+02, 9.33005104e+02, 9.33005104e+02,
9.08377668e+02, 9.08377668e+02, 9.08377668e+02, 9.08377668e+02,
8.80425926e+02, 8.80425926e+02, 8.80425926e+02, 8.80425926e+02,
8.50101783e+02, 8.50101783e+02, 8.50101783e+02, 8.50101783e+02,
8.18296299e+02, 8.18296299e+02, 8.18296299e+02, 8.18296299e+02,
7.85675395e+02, 7.85675395e+02, 7.85675395e+02, 7.85675395e+02,
7.52902859e+02, 7.52902859e+02, 7.52902859e+02, 7.52902859e+02,
7.20897155e+02, 7.20897155e+02, 7.20897155e+02, 7.20897155e+02,
6.90007959e+02, 6.90007959e+02, 6.90007959e+02, 6.90007959e+02,
6.60368829e+02, 6.60368829e+02, 6.60368829e+02, 6.60368829e+02,
6.31916337e+02, 6.31916337e+02, 6.31916337e+02, 6.31916337e+02,
6.04645783e+02, 6.04645783e+02, 6.04645783e+02, 6.04645783e+02,
5.78584743e+02, 5.78584743e+02, 5.78584743e+02, 5.78584743e+02,
5.53823640e+02, 5.53823640e+02, 5.53823640e+02, 5.53823640e+02,
5.30581052e+02, 5.30581052e+02, 5.30581052e+02, 5.30581052e+02,
5.09216724e+02, 5.09216724e+02, 5.09216724e+02, 5.09216724e+02,
4.90322663e+02, 4.90322663e+02, 4.90322663e+02, 4.90322663e+02,
4.74628094e+02, 4.74628094e+02, 4.74628094e+02, 4.74628094e+02,
4.62859662e+02, 4.62859662e+02, 4.62859662e+02, 4.62859662e+02,
4.55372213e+02, 4.55372213e+02, 4.55372213e+02, 4.55372213e+02,
4.51700059e+02, 4.51700059e+02, 4.51700059e+02, 4.51700059e+02,
4.50624155e+02, 4.50624155e+02, 4.50624155e+02, 4.50624155e+02,
4.50729577e+02, 4.50729577e+02, 4.50729577e+02, 4.50729577e+02,
4.51910877e+02, 4.51910877e+02, 4.51910877e+02, 4.51910877e+02,
4.52662577e+02, 4.52662577e+02, 4.52662577e+02, 4.52662577e+02,
4.52987231e+02, 4.52987231e+02, 4.52987231e+02, 4.52987231e+02,
4.53194374e+02, 4.53194374e+02, 4.53194374e+02, 4.53194374e+02,
4.53400795e+02, 4.53400795e+02, 4.53400795e+02, 4.53400795e+02,
4.53694238e+02, 4.53694238e+02, 4.53694238e+02, 4.53694238e+02,
4.54143778e+02, 4.54143778e+02, 4.54143778e+02, 4.54143778e+02,
4.54633274e+02, 4.54633274e+02, 4.54633274e+02, 4.54633274e+02,
4.55075065e+02, 4.55075065e+02, 4.55075065e+02, 4.55075065e+02,
4.55489841e+02, 4.55489841e+02, 4.55489841e+02, 4.55489841e+02,
4.55884753e+02, 4.55884753e+02, 4.55884753e+02, 4.55884753e+02,
4.56250604e+02, 4.56250604e+02, 4.56250604e+02, 4.56250604e+02,
4.56569475e+02, 4.56569475e+02, 4.56569475e+02, 4.56569475e+02,
4.56850195e+02, 4.56850195e+02, 4.56850195e+02, 4.56850195e+02,
4.57127711e+02, 4.57127711e+02, 4.57127711e+02, 4.57127711e+02,
4.57412507e+02, 4.57412507e+02, 4.57412507e+02, 4.57412507e+02,
4.57820992e+02, 4.57820992e+02, 4.57820992e+02, 4.57820992e+02,
4.58356923e+02, 4.58356923e+02, 4.58356923e+02, 4.58356923e+02,
4.57913485e+02, 4.57913485e+02, 4.57913485e+02, 4.57913485e+02,
4.51520684e+02, 4.51520684e+02, 4.51520684e+02, 4.51520684e+02,
4.16998340e+02, 4.16998340e+02, 4.16998340e+02, 4.16998340e+02,
2.90460159e+02, 2.90460159e+02, 2.90460159e+02, 2.90460159e+02,
7.32958303e+01, 7.32958303e+01, 7.32958303e+01, 7.32958303e+01,
1.83484411e+00, 1.83484411e+00, 1.83484411e+00, 1.83484411e+00,
1.17220052e-02, 1.17220052e-02, 1.17220052e-02, 1.17220052e-02,
1.00001751e-02, 1.00001751e-02, 1.00001751e-02, 1.00001751e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99426946, 0.99426946, 0.99426946, 0.99426946, 0.98811149,
0.98811149, 0.98811149, 0.98811149, 0.98107232, 0.98107232,
0.98107232, 0.98107232, 0.97045921, 0.97045921, 0.97045921,
0.97045921, 0.95682737, 0.95682737, 0.95682737, 0.95682737,
0.94004521, 0.94004521, 0.94004521, 0.94004521, 0.92060887,
0.92060887, 0.92060887, 0.92060887, 0.89908557, 0.89908557,
0.89908557, 0.89908557, 0.87609083, 0.87609083, 0.87609083,
0.87609083, 0.85212027, 0.85212027, 0.85212027, 0.85212027,
0.82756445, 0.82756445, 0.82756445, 0.82756445, 0.80306007,
0.80306007, 0.80306007, 0.80306007, 0.77900808, 0.77900808,
0.77900808, 0.77900808, 0.75557607, 0.75557607, 0.75557607,
0.75557607, 0.73277632, 0.73277632, 0.73277632, 0.73277632,
0.71060835, 0.71060835, 0.71060835, 0.71060835, 0.68909145,
0.68909145, 0.68909145, 0.68909145, 0.66826654, 0.66826654,
0.66826654, 0.66826654, 0.64834169, 0.64834169, 0.64834169,
0.64834169, 0.62923142, 0.62923142, 0.62923142, 0.62923142,
0.61227339, 0.61227339, 0.61227339, 0.61227339, 0.5959292 ,
0.5959292 , 0.5959292 , 0.5959292 , 0.58448008, 0.58448008,
0.58448008, 0.58448008, 0.57434928, 0.57434928, 0.57434928,
0.57434928, 0.56859881, 0.56859881, 0.56859881, 0.56859881,
0.56684346, 0.56684346, 0.56684346, 0.56684346, 0.56569203,
0.56569203, 0.56569203, 0.56569203, 0.56583937, 0.56583937,
0.56583937, 0.56583937, 0.56683174, 0.56683174, 0.56683174,
0.56683174, 0.56774694, 0.56774694, 0.56774694, 0.56774694,
0.56791077, 0.56791077, 0.56791077, 0.56791077, 0.56792256,
0.56792256, 0.56792256, 0.56792256, 0.56800423, 0.56800423,
0.56800423, 0.56800423, 0.56828226, 0.56828226, 0.56828226,
0.56828226, 0.56872634, 0.56872634, 0.56872634, 0.56872634,
0.5690527 , 0.5690527 , 0.5690527 , 0.5690527 , 0.56926962,
0.56926962, 0.56926962, 0.56926962, 0.56949685, 0.56949685,
0.56949685, 0.56949685, 0.569897 , 0.569897 , 0.569897 ,
0.569897 , 0.57117768, 0.57117768, 0.57117768, 0.57117768,
0.57592859, 0.57592859, 0.57592859, 0.57592859, 0.59209704,
0.59209704, 0.59209704, 0.59209704, 0.63988261, 0.63988261,
0.63988261, 0.63988261, 0.76179894, 0.76179894, 0.76179894,
0.76179894, 1.03182564, 1.03182564, 1.03182564, 1.03182564,
1.55348275, 1.55348275, 1.55348275, 1.55348275, 2.43068895,
2.43068895, 2.43068895, 2.43068895, 3.55229101, 3.55229101,
3.55229101, 3.55229101, 4.16458528, 4.16458528, 4.16458528,
4.16458528, 4.1800089 , 4.1800089 , 4.1800089 , 4.1800089 ,
3.07676045, 3.07676045, 3.07676045, 3.07676045, 1.34520374,
1.34520374, 1.34520374, 1.34520374, 1.02204848, 1.02204848,
1.02204848, 1.02204848, 1.00037232, 1.00037232, 1.00037232,
1.00037232, 1.00000011, 1.00000011, 1.00000011, 1.00000011,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.14957957e-01, 2.14957957e-01, 2.14957957e-01, 2.14957957e-01,
4.47108627e-01, 4.47108627e-01, 4.47108627e-01, 4.47108627e-01,
7.13561081e-01, 7.13561081e-01, 7.13561081e-01, 7.13561081e-01,
1.11872396e+00, 1.11872396e+00, 1.11872396e+00, 1.11872396e+00,
1.64431395e+00, 1.64431395e+00, 1.64431395e+00, 1.64431395e+00,
2.29983169e+00, 2.29983169e+00, 2.29983169e+00, 2.29983169e+00,
3.07089753e+00, 3.07089753e+00, 3.07089753e+00, 3.07089753e+00,
3.94015044e+00, 3.94015044e+00, 3.94015044e+00, 3.94015044e+00,
4.88739659e+00, 4.88739659e+00, 4.88739659e+00, 4.88739659e+00,
5.89618557e+00, 5.89618557e+00, 5.89618557e+00, 5.89618557e+00,
6.95255343e+00, 6.95255343e+00, 6.95255343e+00, 6.95255343e+00,
8.02806459e+00, 8.02806459e+00, 8.02806459e+00, 8.02806459e+00,
9.11164658e+00, 9.11164658e+00, 9.11164658e+00, 9.11164658e+00,
1.01949310e+01, 1.01949310e+01, 1.01949310e+01, 1.01949310e+01,
1.12753220e+01, 1.12753220e+01, 1.12753220e+01, 1.12753220e+01,
1.23519886e+01, 1.23519886e+01, 1.23519886e+01, 1.23519886e+01,
1.34230468e+01, 1.34230468e+01, 1.34230468e+01, 1.34230468e+01,
1.44847959e+01, 1.44847959e+01, 1.44847959e+01, 1.44847959e+01,
1.55291038e+01, 1.55291038e+01, 1.55291038e+01, 1.55291038e+01,
1.65418026e+01, 1.65418026e+01, 1.65418026e+01, 1.65418026e+01,
1.74975626e+01, 1.74975626e+01, 1.74975626e+01, 1.74975626e+01,
1.83602647e+01, 1.83602647e+01, 1.83602647e+01, 1.83602647e+01,
1.90815134e+01, 1.90815134e+01, 1.90815134e+01, 1.90815134e+01,
1.96172465e+01, 1.96172465e+01, 1.96172465e+01, 1.96172465e+01,
1.99474835e+01, 1.99474835e+01, 1.99474835e+01, 1.99474835e+01,
2.00981416e+01, 2.00981416e+01, 2.00981416e+01, 2.00981416e+01,
2.01352473e+01, 2.01352473e+01, 2.01352473e+01, 2.01352473e+01,
2.01181972e+01, 2.01181972e+01, 2.01181972e+01, 2.01181972e+01,
2.00565244e+01, 2.00565244e+01, 2.00565244e+01, 2.00565244e+01,
2.00240733e+01, 2.00240733e+01, 2.00240733e+01, 2.00240733e+01,
2.00089626e+01, 2.00089626e+01, 2.00089626e+01, 2.00089626e+01,
1.99979297e+01, 1.99979297e+01, 1.99979297e+01, 1.99979297e+01,
1.99863891e+01, 1.99863891e+01, 1.99863891e+01, 1.99863891e+01,
1.99693717e+01, 1.99693717e+01, 1.99693717e+01, 1.99693717e+01,
1.99445026e+01, 1.99445026e+01, 1.99445026e+01, 1.99445026e+01,
1.99195116e+01, 1.99195116e+01, 1.99195116e+01, 1.99195116e+01,
1.98964046e+01, 1.98964046e+01, 1.98964046e+01, 1.98964046e+01,
1.98743565e+01, 1.98743565e+01, 1.98743565e+01, 1.98743565e+01,
1.98541585e+01, 1.98541585e+01, 1.98541585e+01, 1.98541585e+01,
1.98364920e+01, 1.98364920e+01, 1.98364920e+01, 1.98364920e+01,
1.98206754e+01, 1.98206754e+01, 1.98206754e+01, 1.98206754e+01,
1.98057571e+01, 1.98057571e+01, 1.98057571e+01, 1.98057571e+01,
1.97923828e+01, 1.97923828e+01, 1.97923828e+01, 1.97923828e+01,
1.97808552e+01, 1.97808552e+01, 1.97808552e+01, 1.97808552e+01,
1.97709468e+01, 1.97709468e+01, 1.97709468e+01, 1.97709468e+01,
1.97654812e+01, 1.97654812e+01, 1.97654812e+01, 1.97654812e+01,
1.97477731e+01, 1.97477731e+01, 1.97477731e+01, 1.97477731e+01,
1.96722020e+01, 1.96722020e+01, 1.96722020e+01, 1.96722020e+01,
1.93272540e+01, 1.93272540e+01, 1.93272540e+01, 1.93272540e+01,
1.78485419e+01, 1.78485419e+01, 1.78485419e+01, 1.78485419e+01,
1.26228462e+01, 1.26228462e+01, 1.26228462e+01, 1.26228462e+01,
2.71270096e+00, 2.71270096e+00, 2.71270096e+00, 2.71270096e+00,
5.37681970e-02, 5.37681970e-02, 5.37681970e-02, 5.37681970e-02,
7.39978310e-05, 7.39978310e-05, 7.39978310e-05, 7.39978310e-05,
1.26879911e-08, 1.26879911e-08, 1.26879911e-08, 1.26879911e-08,
2.06933606e-12, 2.06933606e-12, 2.06933606e-12, 2.06933606e-12,
3.25161787e-16, 3.25161787e-16, 3.25161787e-16, 3.25161787e-16,
5.40240794e-20, 5.40240794e-20, 5.40240794e-20, 5.40240794e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.91991427e+02, 9.91991427e+02, 9.91991427e+02, 9.91991427e+02,
9.83398788e+02, 9.83398788e+02, 9.83398788e+02, 9.83398788e+02,
9.73613696e+02, 9.73613696e+02, 9.73613696e+02, 9.73613696e+02,
9.58908504e+02, 9.58908504e+02, 9.58908504e+02, 9.58908504e+02,
9.40117970e+02, 9.40117970e+02, 9.40117970e+02, 9.40117970e+02,
9.17130377e+02, 9.17130377e+02, 9.17130377e+02, 9.17130377e+02,
8.90710253e+02, 8.90710253e+02, 8.90710253e+02, 8.90710253e+02,
8.61710068e+02, 8.61710068e+02, 8.61710068e+02, 8.61710068e+02,
8.31030081e+02, 8.31030081e+02, 8.31030081e+02, 8.31030081e+02,
7.99387307e+02, 7.99387307e+02, 7.99387307e+02, 7.99387307e+02,
7.67330949e+02, 7.67330949e+02, 7.67330949e+02, 7.67330949e+02,
7.35690337e+02, 7.35690337e+02, 7.35690337e+02, 7.35690337e+02,
7.05034804e+02, 7.05034804e+02, 7.05034804e+02, 7.05034804e+02,
6.75527261e+02, 6.75527261e+02, 6.75527261e+02, 6.75527261e+02,
6.47167439e+02, 6.47167439e+02, 6.47167439e+02, 6.47167439e+02,
6.19930743e+02, 6.19930743e+02, 6.19930743e+02, 6.19930743e+02,
5.93813015e+02, 5.93813015e+02, 5.93813015e+02, 5.93813015e+02,
5.68863894e+02, 5.68863894e+02, 5.68863894e+02, 5.68863894e+02,
5.45199993e+02, 5.45199993e+02, 5.45199993e+02, 5.45199993e+02,
5.23075190e+02, 5.23075190e+02, 5.23075190e+02, 5.23075190e+02,
5.02889600e+02, 5.02889600e+02, 5.02889600e+02, 5.02889600e+02,
4.85266432e+02, 4.85266432e+02, 4.85266432e+02, 4.85266432e+02,
4.70932260e+02, 4.70932260e+02, 4.70932260e+02, 4.70932260e+02,
4.60518670e+02, 4.60518670e+02, 4.60518670e+02, 4.60518670e+02,
4.54205957e+02, 4.54205957e+02, 4.54205957e+02, 4.54205957e+02,
4.51352380e+02, 4.51352380e+02, 4.51352380e+02, 4.51352380e+02,
4.50649917e+02, 4.50649917e+02, 4.50649917e+02, 4.50649917e+02,
4.50971173e+02, 4.50971173e+02, 4.50971173e+02, 4.50971173e+02,
4.52135940e+02, 4.52135940e+02, 4.52135940e+02, 4.52135940e+02,
4.52753679e+02, 4.52753679e+02, 4.52753679e+02, 4.52753679e+02,
4.53041751e+02, 4.53041751e+02, 4.53041751e+02, 4.53041751e+02,
4.53249156e+02, 4.53249156e+02, 4.53249156e+02, 4.53249156e+02,
4.53466954e+02, 4.53466954e+02, 4.53466954e+02, 4.53466954e+02,
4.53791825e+02, 4.53791825e+02, 4.53791825e+02, 4.53791825e+02,
4.54268545e+02, 4.54268545e+02, 4.54268545e+02, 4.54268545e+02,
4.54750752e+02, 4.54750752e+02, 4.54750752e+02, 4.54750752e+02,
4.55192196e+02, 4.55192196e+02, 4.55192196e+02, 4.55192196e+02,
4.55599122e+02, 4.55599122e+02, 4.55599122e+02, 4.55599122e+02,
4.55975922e+02, 4.55975922e+02, 4.55975922e+02, 4.55975922e+02,
4.56329221e+02, 4.56329221e+02, 4.56329221e+02, 4.56329221e+02,
4.56648137e+02, 4.56648137e+02, 4.56648137e+02, 4.56648137e+02,
4.56923106e+02, 4.56923106e+02, 4.56923106e+02, 4.56923106e+02,
4.57181465e+02, 4.57181465e+02, 4.57181465e+02, 4.57181465e+02,
4.57438180e+02, 4.57438180e+02, 4.57438180e+02, 4.57438180e+02,
4.57763252e+02, 4.57763252e+02, 4.57763252e+02, 4.57763252e+02,
4.58282193e+02, 4.58282193e+02, 4.58282193e+02, 4.58282193e+02,
4.58443493e+02, 4.58443493e+02, 4.58443493e+02, 4.58443493e+02,
4.55958160e+02, 4.55958160e+02, 4.55958160e+02, 4.55958160e+02,
4.38959204e+02, 4.38959204e+02, 4.38959204e+02, 4.38959204e+02,
3.65073159e+02, 3.65073159e+02, 3.65073159e+02, 3.65073159e+02,
1.68405632e+02, 1.68405632e+02, 1.68405632e+02, 1.68405632e+02,
1.44222649e+01, 1.44222649e+01, 1.44222649e+01, 1.44222649e+01,
7.69577756e-02, 7.69577756e-02, 7.69577756e-02, 7.69577756e-02,
1.00097351e-02, 1.00097351e-02, 1.00097351e-02, 1.00097351e-02,
1.00000015e-02, 1.00000015e-02, 1.00000015e-02, 1.00000015e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99133911, 0.99133911, 0.99133911, 0.99133911, 0.98292058,
0.98292058, 0.98292058, 0.98292058, 0.97419061, 0.97419061,
0.97419061, 0.97419061, 0.96144618, 0.96144618, 0.96144618,
0.96144618, 0.94597586, 0.94597586, 0.94597586, 0.94597586,
0.9276744 , 0.9276744 , 0.9276744 , 0.9276744 , 0.90721706,
0.90721706, 0.90721706, 0.90721706, 0.88515443, 0.88515443,
0.88515443, 0.88515443, 0.86202321, 0.86202321, 0.86202321,
0.86202321, 0.83819213, 0.83819213, 0.83819213, 0.83819213,
0.8141677 , 0.8141677 , 0.8141677 , 0.8141677 , 0.79048162,
0.79048162, 0.79048162, 0.79048162, 0.76730128, 0.76730128,
0.76730128, 0.76730128, 0.74474398, 0.74474398, 0.74474398,
0.74474398, 0.72277684, 0.72277684, 0.72277684, 0.72277684,
0.70140995, 0.70140995, 0.70140995, 0.70140995, 0.68067678,
0.68067678, 0.68067678, 0.68067678, 0.66062128, 0.66062128,
0.66062128, 0.66062128, 0.64151926, 0.64151926, 0.64151926,
0.64151926, 0.62319637, 0.62319637, 0.62319637, 0.62319637,
0.60726225, 0.60726225, 0.60726225, 0.60726225, 0.59190903,
0.59190903, 0.59190903, 0.59190903, 0.58148652, 0.58148652,
0.58148652, 0.58148652, 0.57278527, 0.57278527, 0.57278527,
0.57278527, 0.56769271, 0.56769271, 0.56769271, 0.56769271,
0.56654927, 0.56654927, 0.56654927, 0.56654927, 0.56583728,
0.56583728, 0.56583728, 0.56583728, 0.56616565, 0.56616565,
0.56616565, 0.56616565, 0.56694844, 0.56694844, 0.56694844,
0.56694844, 0.56774994, 0.56774994, 0.56774994, 0.56774994,
0.56799881, 0.56799881, 0.56799881, 0.56799881, 0.56803723,
0.56803723, 0.56803723, 0.56803723, 0.56811091, 0.56811091,
0.56811091, 0.56811091, 0.56837366, 0.56837366, 0.56837366,
0.56837366, 0.56883911, 0.56883911, 0.56883911, 0.56883911,
0.56920333, 0.56920333, 0.56920333, 0.56920333, 0.56943051,
0.56943051, 0.56943051, 0.56943051, 0.56964182, 0.56964182,
0.56964182, 0.56964182, 0.56994366, 0.56994366, 0.56994366,
0.56994366, 0.57080637, 0.57080637, 0.57080637, 0.57080637,
0.57400236, 0.57400236, 0.57400236, 0.57400236, 0.58513972,
0.58513972, 0.58513972, 0.58513972, 0.61910673, 0.61910673,
0.61910673, 0.61910673, 0.70892127, 0.70892127, 0.70892127,
0.70892127, 0.91548374, 0.91548374, 0.91548374, 0.91548374,
1.33078894, 1.33078894, 1.33078894, 1.33078894, 2.06133491,
2.06133491, 2.06133491, 2.06133491, 3.15181689, 3.15181689,
3.15181689, 3.15181689, 4.02701618, 4.02701618, 4.02701618,
4.02701618, 4.28308718, 4.28308718, 4.28308718, 4.28308718,
3.81910697, 3.81910697, 3.81910697, 3.81910697, 1.98110507,
1.98110507, 1.98110507, 1.98110507, 1.08418873, 1.08418873,
1.08418873, 1.08418873, 1.00343534, 1.00343534, 1.00343534,
1.00343534, 1.00000606, 1.00000606, 1.00000606, 1.00000606,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.25290090e-01, 3.25290090e-01, 3.25290090e-01, 3.25290090e-01,
6.43847125e-01, 6.43847125e-01, 6.43847125e-01, 6.43847125e-01,
9.75722154e-01, 9.75722154e-01, 9.75722154e-01, 9.75722154e-01,
1.46557297e+00, 1.46557297e+00, 1.46557297e+00, 1.46557297e+00,
2.06705518e+00, 2.06705518e+00, 2.06705518e+00, 2.06705518e+00,
2.78907819e+00, 2.78907819e+00, 2.78907819e+00, 2.78907819e+00,
3.60976834e+00, 3.60976834e+00, 3.60976834e+00, 3.60976834e+00,
4.51162281e+00, 4.51162281e+00, 4.51162281e+00, 4.51162281e+00,
5.47661724e+00, 5.47661724e+00, 5.47661724e+00, 5.47661724e+00,
6.49264130e+00, 6.49264130e+00, 6.49264130e+00, 6.49264130e+00,
7.53660887e+00, 7.53660887e+00, 7.53660887e+00, 7.53660887e+00,
8.59198431e+00, 8.59198431e+00, 8.59198431e+00, 8.59198431e+00,
9.64916487e+00, 9.64916487e+00, 9.64916487e+00, 9.64916487e+00,
1.07051453e+01, 1.07051453e+01, 1.07051453e+01, 1.07051453e+01,
1.17579310e+01, 1.17579310e+01, 1.17579310e+01, 1.17579310e+01,
1.28067954e+01, 1.28067954e+01, 1.28067954e+01, 1.28067954e+01,
1.38494448e+01, 1.38494448e+01, 1.38494448e+01, 1.38494448e+01,
1.48812924e+01, 1.48812924e+01, 1.48812924e+01, 1.48812924e+01,
1.58928454e+01, 1.58928454e+01, 1.58928454e+01, 1.58928454e+01,
1.68680207e+01, 1.68680207e+01, 1.68680207e+01, 1.68680207e+01,
1.77790951e+01, 1.77790951e+01, 1.77790951e+01, 1.77790951e+01,
1.85881715e+01, 1.85881715e+01, 1.85881715e+01, 1.85881715e+01,
1.92479302e+01, 1.92479302e+01, 1.92479302e+01, 1.92479302e+01,
1.97200343e+01, 1.97200343e+01, 1.97200343e+01, 1.97200343e+01,
1.99952626e+01, 1.99952626e+01, 1.99952626e+01, 1.99952626e+01,
2.01098122e+01, 2.01098122e+01, 2.01098122e+01, 2.01098122e+01,
2.01323555e+01, 2.01323555e+01, 2.01323555e+01, 2.01323555e+01,
2.01039208e+01, 2.01039208e+01, 2.01039208e+01, 2.01039208e+01,
2.00468661e+01, 2.00468661e+01, 2.00468661e+01, 2.00468661e+01,
2.00198405e+01, 2.00198405e+01, 2.00198405e+01, 2.00198405e+01,
2.00061051e+01, 2.00061051e+01, 2.00061051e+01, 2.00061051e+01,
1.99950115e+01, 1.99950115e+01, 1.99950115e+01, 1.99950115e+01,
1.99825634e+01, 1.99825634e+01, 1.99825634e+01, 1.99825634e+01,
1.99636417e+01, 1.99636417e+01, 1.99636417e+01, 1.99636417e+01,
1.99376749e+01, 1.99376749e+01, 1.99376749e+01, 1.99376749e+01,
1.99131873e+01, 1.99131873e+01, 1.99131873e+01, 1.99131873e+01,
1.98905974e+01, 1.98905974e+01, 1.98905974e+01, 1.98905974e+01,
1.98692438e+01, 1.98692438e+01, 1.98692438e+01, 1.98692438e+01,
1.98493625e+01, 1.98493625e+01, 1.98493625e+01, 1.98493625e+01,
1.98317370e+01, 1.98317370e+01, 1.98317370e+01, 1.98317370e+01,
1.98164911e+01, 1.98164911e+01, 1.98164911e+01, 1.98164911e+01,
1.98024735e+01, 1.98024735e+01, 1.98024735e+01, 1.98024735e+01,
1.97894710e+01, 1.97894710e+01, 1.97894710e+01, 1.97894710e+01,
1.97780897e+01, 1.97780897e+01, 1.97780897e+01, 1.97780897e+01,
1.97674568e+01, 1.97674568e+01, 1.97674568e+01, 1.97674568e+01,
1.97612054e+01, 1.97612054e+01, 1.97612054e+01, 1.97612054e+01,
1.97524408e+01, 1.97524408e+01, 1.97524408e+01, 1.97524408e+01,
1.97136422e+01, 1.97136422e+01, 1.97136422e+01, 1.97136422e+01,
1.95403967e+01, 1.95403967e+01, 1.95403967e+01, 1.95403967e+01,
1.87695037e+01, 1.87695037e+01, 1.87695037e+01, 1.87695037e+01,
1.57483105e+01, 1.57483105e+01, 1.57483105e+01, 1.57483105e+01,
7.26747736e+00, 7.26747736e+00, 7.26747736e+00, 7.26747736e+00,
4.38929043e-01, 4.38929043e-01, 4.38929043e-01, 4.38929043e-01,
2.34025635e-03, 2.34025635e-03, 2.34025635e-03, 2.34025635e-03,
7.25432818e-07, 7.25432818e-07, 7.25432818e-07, 7.25432818e-07,
1.11193400e-10, 1.11193400e-10, 1.11193400e-10, 1.11193400e-10,
1.76869480e-14, 1.76869480e-14, 1.76869480e-14, 1.76869480e-14,
2.85535124e-18, 2.85535124e-18, 2.85535124e-18, 2.85535124e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87906280e+02, 9.87906280e+02, 9.87906280e+02, 9.87906280e+02,
9.76174941e+02, 9.76174941e+02, 9.76174941e+02, 9.76174941e+02,
9.64072771e+02, 9.64072771e+02, 9.64072771e+02, 9.64072771e+02,
9.46471139e+02, 9.46471139e+02, 9.46471139e+02, 9.46471139e+02,
9.25234369e+02, 9.25234369e+02, 9.25234369e+02, 9.25234369e+02,
9.00287177e+02, 9.00287177e+02, 9.00287177e+02, 9.00287177e+02,
8.72631649e+02, 8.72631649e+02, 8.72631649e+02, 8.72631649e+02,
8.43081763e+02, 8.43081763e+02, 8.43081763e+02, 8.43081763e+02,
8.12413334e+02, 8.12413334e+02, 8.12413334e+02, 8.12413334e+02,
7.81158038e+02, 7.81158038e+02, 7.81158038e+02, 7.81158038e+02,
7.49976361e+02, 7.49976361e+02, 7.49976361e+02, 7.49976361e+02,
7.19607955e+02, 7.19607955e+02, 7.19607955e+02, 7.19607955e+02,
6.90244348e+02, 6.90244348e+02, 6.90244348e+02, 6.90244348e+02,
6.62006070e+02, 6.62006070e+02, 6.62006070e+02, 6.62006070e+02,
6.34835316e+02, 6.34835316e+02, 6.34835316e+02, 6.34835316e+02,
6.08723776e+02, 6.08723776e+02, 6.08723776e+02, 6.08723776e+02,
5.83682527e+02, 5.83682527e+02, 5.83682527e+02, 5.83682527e+02,
5.59779886e+02, 5.59779886e+02, 5.59779886e+02, 5.59779886e+02,
5.37159931e+02, 5.37159931e+02, 5.37159931e+02, 5.37159931e+02,
5.16112600e+02, 5.16112600e+02, 5.16112600e+02, 5.16112600e+02,
4.97076250e+02, 4.97076250e+02, 4.97076250e+02, 4.97076250e+02,
4.80695875e+02, 4.80695875e+02, 4.80695875e+02, 4.80695875e+02,
4.67679348e+02, 4.67679348e+02, 4.67679348e+02, 4.67679348e+02,
4.58546259e+02, 4.58546259e+02, 4.58546259e+02, 4.58546259e+02,
4.53296009e+02, 4.53296009e+02, 4.53296009e+02, 4.53296009e+02,
4.51129021e+02, 4.51129021e+02, 4.51129021e+02, 4.51129021e+02,
4.50704444e+02, 4.50704444e+02, 4.50704444e+02, 4.50704444e+02,
4.51242012e+02, 4.51242012e+02, 4.51242012e+02, 4.51242012e+02,
4.52320289e+02, 4.52320289e+02, 4.52320289e+02, 4.52320289e+02,
4.52832280e+02, 4.52832280e+02, 4.52832280e+02, 4.52832280e+02,
4.53095183e+02, 4.53095183e+02, 4.53095183e+02, 4.53095183e+02,
4.53305822e+02, 4.53305822e+02, 4.53305822e+02, 4.53305822e+02,
4.53541196e+02, 4.53541196e+02, 4.53541196e+02, 4.53541196e+02,
4.53899663e+02, 4.53899663e+02, 4.53899663e+02, 4.53899663e+02,
4.54393535e+02, 4.54393535e+02, 4.54393535e+02, 4.54393535e+02,
4.54864936e+02, 4.54864936e+02, 4.54864936e+02, 4.54864936e+02,
4.55303481e+02, 4.55303481e+02, 4.55303481e+02, 4.55303481e+02,
4.55707477e+02, 4.55707477e+02, 4.55707477e+02, 4.55707477e+02,
4.56071530e+02, 4.56071530e+02, 4.56071530e+02, 4.56071530e+02,
4.56406325e+02, 4.56406325e+02, 4.56406325e+02, 4.56406325e+02,
4.56717719e+02, 4.56717719e+02, 4.56717719e+02, 4.56717719e+02,
4.56992693e+02, 4.56992693e+02, 4.56992693e+02, 4.56992693e+02,
4.57237821e+02, 4.57237821e+02, 4.57237821e+02, 4.57237821e+02,
4.57481191e+02, 4.57481191e+02, 4.57481191e+02, 4.57481191e+02,
4.57744387e+02, 4.57744387e+02, 4.57744387e+02, 4.57744387e+02,
4.58159054e+02, 4.58159054e+02, 4.58159054e+02, 4.58159054e+02,
4.58594305e+02, 4.58594305e+02, 4.58594305e+02, 4.58594305e+02,
4.57858557e+02, 4.57858557e+02, 4.57858557e+02, 4.57858557e+02,
4.50044024e+02, 4.50044024e+02, 4.50044024e+02, 4.50044024e+02,
4.10501297e+02, 4.10501297e+02, 4.10501297e+02, 4.10501297e+02,
2.72947363e+02, 2.72947363e+02, 2.72947363e+02, 2.72947363e+02,
6.00463556e+01, 6.00463556e+01, 6.00463556e+01, 6.00463556e+01,
1.21367312e+00, 1.21367312e+00, 1.21367312e+00, 1.21367312e+00,
1.08313285e-02, 1.08313285e-02, 1.08313285e-02, 1.08313285e-02,
1.00000857e-02, 1.00000857e-02, 1.00000857e-02, 1.00000857e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}]}
minmod_hll
{'none_hll': [{'rho': array([0.96262329, 0.96262329, 0.96262329, 0.96262329, 0.95292015,
0.95292015, 0.95292015, 0.95292015, 0.94187655, 0.94187655,
0.94187655, 0.94187655, 0.92958523, 0.92958523, 0.92958523,
0.92958523, 0.91614889, 0.91614889, 0.91614889, 0.91614889,
0.9016891 , 0.9016891 , 0.9016891 , 0.9016891 , 0.88633863,
0.88633863, 0.88633863, 0.88633863, 0.87023469, 0.87023469,
0.87023469, 0.87023469, 0.85351349, 0.85351349, 0.85351349,
0.85351349, 0.8363065 , 0.8363065 , 0.8363065 , 0.8363065 ,
0.81873804, 0.81873804, 0.81873804, 0.81873804, 0.80092415,
0.80092415, 0.80092415, 0.80092415, 0.78297243, 0.78297243,
0.78297243, 0.78297243, 0.76498267, 0.76498267, 0.76498267,
0.76498267, 0.74704803, 0.74704803, 0.74704803, 0.74704803,
0.72925675, 0.72925675, 0.72925675, 0.72925675, 0.71169435,
0.71169435, 0.71169435, 0.71169435, 0.69444628, 0.69444628,
0.69444628, 0.69444628, 0.6776013 , 0.6776013 , 0.6776013 ,
0.6776013 , 0.66125559, 0.66125559, 0.66125559, 0.66125559,
0.64551785, 0.64551785, 0.64551785, 0.64551785, 0.63051555,
0.63051555, 0.63051555, 0.63051555, 0.61640212, 0.61640212,
0.61640212, 0.61640212, 0.6033641 , 0.6033641 , 0.6033641 ,
0.6033641 , 0.59162547, 0.59162547, 0.59162547, 0.59162547,
0.58144321, 0.58144321, 0.58144321, 0.58144321, 0.57308387,
0.57308387, 0.57308387, 0.57308387, 0.5667695 , 0.5667695 ,
0.5667695 , 0.5667695 , 0.56259223, 0.56259223, 0.56259223,
0.56259223, 0.5604295 , 0.5604295 , 0.5604295 , 0.5604295 ,
0.55993197, 0.55993197, 0.55993197, 0.55993197, 0.56064241,
0.56064241, 0.56064241, 0.56064241, 0.56220257, 0.56220257,
0.56220257, 0.56220257, 0.56453573, 0.56453573, 0.56453573,
0.56453573, 0.56792111, 0.56792111, 0.56792111, 0.56792111,
0.57302161, 0.57302161, 0.57302161, 0.57302161, 0.58094766,
0.58094766, 0.58094766, 0.58094766, 0.59338194, 0.59338194,
0.59338194, 0.59338194, 0.61278127, 0.61278127, 0.61278127,
0.61278127, 0.64267222, 0.64267222, 0.64267222, 0.64267222,
0.68810064, 0.68810064, 0.68810064, 0.68810064, 0.75635209,
0.75635209, 0.75635209, 0.75635209, 0.85813623, 0.85813623,
0.85813623, 0.85813623, 1.00951022, 1.00951022, 1.00951022,
1.00951022, 1.23478014, 1.23478014, 1.23478014, 1.23478014,
1.57016034, 1.57016034, 1.57016034, 1.57016034, 2.02902941,
2.02902941, 2.02902941, 2.02902941, 2.54214966, 2.54214966,
2.54214966, 2.54214966, 3.0202242 , 3.0202242 , 3.0202242 ,
3.0202242 , 3.31178259, 3.31178259, 3.31178259, 3.31178259,
3.22437971, 3.22437971, 3.22437971, 3.22437971, 2.65275743,
2.65275743, 2.65275743, 2.65275743, 1.80505429, 1.80505429,
1.80505429, 1.80505429, 1.19452145, 1.19452145, 1.19452145,
1.19452145, 1.01387818, 1.01387818, 1.01387818, 1.01387818,
1.0001771 , 1.0001771 , 1.0001771 , 1.0001771 , 1.00000035,
1.00000035, 1.00000035, 1.00000035, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.41419412e+00, 1.41419412e+00, 1.41419412e+00, 1.41419412e+00,
1.78883739e+00, 1.78883739e+00, 1.78883739e+00, 1.78883739e+00,
2.21825857e+00, 2.21825857e+00, 2.21825857e+00, 2.21825857e+00,
2.70047651e+00, 2.70047651e+00, 2.70047651e+00, 2.70047651e+00,
3.23311666e+00, 3.23311666e+00, 3.23311666e+00, 3.23311666e+00,
3.81304395e+00, 3.81304395e+00, 3.81304395e+00, 3.81304395e+00,
4.43661839e+00, 4.43661839e+00, 4.43661839e+00, 4.43661839e+00,
5.09991584e+00, 5.09991584e+00, 5.09991584e+00, 5.09991584e+00,
5.79890026e+00, 5.79890026e+00, 5.79890026e+00, 5.79890026e+00,
6.52954505e+00, 6.52954505e+00, 6.52954505e+00, 6.52954505e+00,
7.28790743e+00, 7.28790743e+00, 7.28790743e+00, 7.28790743e+00,
8.07016183e+00, 8.07016183e+00, 8.07016183e+00, 8.07016183e+00,
8.87259884e+00, 8.87259884e+00, 8.87259884e+00, 8.87259884e+00,
9.69159468e+00, 9.69159468e+00, 9.69159468e+00, 9.69159468e+00,
1.05235545e+01, 1.05235545e+01, 1.05235545e+01, 1.05235545e+01,
1.13648293e+01, 1.13648293e+01, 1.13648293e+01, 1.13648293e+01,
1.22116044e+01, 1.22116044e+01, 1.22116044e+01, 1.22116044e+01,
1.30597527e+01, 1.30597527e+01, 1.30597527e+01, 1.30597527e+01,
1.39046431e+01, 1.39046431e+01, 1.39046431e+01, 1.39046431e+01,
1.47408898e+01, 1.47408898e+01, 1.47408898e+01, 1.47408898e+01,
1.55620288e+01, 1.55620288e+01, 1.55620288e+01, 1.55620288e+01,
1.63601078e+01, 1.63601078e+01, 1.63601078e+01, 1.63601078e+01,
1.71251997e+01, 1.71251997e+01, 1.71251997e+01, 1.71251997e+01,
1.78448993e+01, 1.78448993e+01, 1.78448993e+01, 1.78448993e+01,
1.85039895e+01, 1.85039895e+01, 1.85039895e+01, 1.85039895e+01,
1.90846801e+01, 1.90846801e+01, 1.90846801e+01, 1.90846801e+01,
1.95681279e+01, 1.95681279e+01, 1.95681279e+01, 1.95681279e+01,
1.99380647e+01, 1.99380647e+01, 1.99380647e+01, 1.99380647e+01,
2.01866601e+01, 2.01866601e+01, 2.01866601e+01, 2.01866601e+01,
2.03205654e+01, 2.03205654e+01, 2.03205654e+01, 2.03205654e+01,
2.03625340e+01, 2.03625340e+01, 2.03625340e+01, 2.03625340e+01,
2.03450671e+01, 2.03450671e+01, 2.03450671e+01, 2.03450671e+01,
2.02991317e+01, 2.02991317e+01, 2.02991317e+01, 2.02991317e+01,
2.02456046e+01, 2.02456046e+01, 2.02456046e+01, 2.02456046e+01,
2.01946657e+01, 2.01946657e+01, 2.01946657e+01, 2.01946657e+01,
2.01495851e+01, 2.01495851e+01, 2.01495851e+01, 2.01495851e+01,
2.01104796e+01, 2.01104796e+01, 2.01104796e+01, 2.01104796e+01,
2.00765652e+01, 2.00765652e+01, 2.00765652e+01, 2.00765652e+01,
2.00469486e+01, 2.00469486e+01, 2.00469486e+01, 2.00469486e+01,
2.00208526e+01, 2.00208526e+01, 2.00208526e+01, 2.00208526e+01,
1.99976473e+01, 1.99976473e+01, 1.99976473e+01, 1.99976473e+01,
1.99768232e+01, 1.99768232e+01, 1.99768232e+01, 1.99768232e+01,
1.99579134e+01, 1.99579134e+01, 1.99579134e+01, 1.99579134e+01,
1.99401110e+01, 1.99401110e+01, 1.99401110e+01, 1.99401110e+01,
1.99203376e+01, 1.99203376e+01, 1.99203376e+01, 1.99203376e+01,
1.98860888e+01, 1.98860888e+01, 1.98860888e+01, 1.98860888e+01,
1.98001469e+01, 1.98001469e+01, 1.98001469e+01, 1.98001469e+01,
1.95757462e+01, 1.95757462e+01, 1.95757462e+01, 1.95757462e+01,
1.90484237e+01, 1.90484237e+01, 1.90484237e+01, 1.90484237e+01,
1.79421767e+01, 1.79421767e+01, 1.79421767e+01, 1.79421767e+01,
1.58163176e+01, 1.58163176e+01, 1.58163176e+01, 1.58163176e+01,
1.20498338e+01, 1.20498338e+01, 1.20498338e+01, 1.20498338e+01,
6.43761226e+00, 6.43761226e+00, 6.43761226e+00, 6.43761226e+00,
1.39778927e+00, 1.39778927e+00, 1.39778927e+00, 1.39778927e+00,
5.17644049e-02, 5.17644049e-02, 5.17644049e-02, 5.17644049e-02,
1.82914635e-04, 1.82914635e-04, 1.82914635e-04, 1.82914635e-04,
7.98774300e-08, 7.98774300e-08, 7.98774300e-08, 7.98774300e-08,
2.66087619e-11, 2.66087619e-11, 2.66087619e-11, 2.66087619e-11,
8.81761175e-15, 8.81761175e-15, 8.81761175e-15, 8.81761175e-15,
2.88036046e-18, 2.88036046e-18, 2.88036046e-18, 2.88036046e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.48220610e+02, 9.48220610e+02, 9.48220610e+02, 9.48220610e+02,
9.34902944e+02, 9.34902944e+02, 9.34902944e+02, 9.34902944e+02,
9.19831060e+02, 9.19831060e+02, 9.19831060e+02, 9.19831060e+02,
9.03151270e+02, 9.03151270e+02, 9.03151270e+02, 9.03151270e+02,
8.85026662e+02, 8.85026662e+02, 8.85026662e+02, 8.85026662e+02,
8.65646386e+02, 8.65646386e+02, 8.65646386e+02, 8.65646386e+02,
8.45213155e+02, 8.45213155e+02, 8.45213155e+02, 8.45213155e+02,
8.23932702e+02, 8.23932702e+02, 8.23932702e+02, 8.23932702e+02,
8.02005750e+02, 8.02005750e+02, 8.02005750e+02, 8.02005750e+02,
7.79622496e+02, 7.79622496e+02, 7.79622496e+02, 7.79622496e+02,
7.56959321e+02, 7.56959321e+02, 7.56959321e+02, 7.56959321e+02,
7.34177328e+02, 7.34177328e+02, 7.34177328e+02, 7.34177328e+02,
7.11422289e+02, 7.11422289e+02, 7.11422289e+02, 7.11422289e+02,
6.88825627e+02, 6.88825627e+02, 6.88825627e+02, 6.88825627e+02,
6.66506181e+02, 6.66506181e+02, 6.66506181e+02, 6.66506181e+02,
6.44572547e+02, 6.44572547e+02, 6.44572547e+02, 6.44572547e+02,
6.23125941e+02, 6.23125941e+02, 6.23125941e+02, 6.23125941e+02,
6.02263562e+02, 6.02263562e+02, 6.02263562e+02, 6.02263562e+02,
5.82082578e+02, 5.82082578e+02, 5.82082578e+02, 5.82082578e+02,
5.62684871e+02, 5.62684871e+02, 5.62684871e+02, 5.62684871e+02,
5.44182753e+02, 5.44182753e+02, 5.44182753e+02, 5.44182753e+02,
5.26705766e+02, 5.26705766e+02, 5.26705766e+02, 5.26705766e+02,
5.10408370e+02, 5.10408370e+02, 5.10408370e+02, 5.10408370e+02,
4.95477456e+02, 4.95477456e+02, 4.95477456e+02, 4.95477456e+02,
4.82136707e+02, 4.82136707e+02, 4.82136707e+02, 4.82136707e+02,
4.70641376e+02, 4.70641376e+02, 4.70641376e+02, 4.70641376e+02,
4.61252431e+02, 4.61252431e+02, 4.61252431e+02, 4.61252431e+02,
4.54177107e+02, 4.54177107e+02, 4.54177107e+02, 4.54177107e+02,
4.49473996e+02, 4.49473996e+02, 4.49473996e+02, 4.49473996e+02,
4.46955714e+02, 4.46955714e+02, 4.46955714e+02, 4.46955714e+02,
4.46165009e+02, 4.46165009e+02, 4.46165009e+02, 4.46165009e+02,
4.46485695e+02, 4.46485695e+02, 4.46485695e+02, 4.46485695e+02,
4.47339548e+02, 4.47339548e+02, 4.47339548e+02, 4.47339548e+02,
4.48337508e+02, 4.48337508e+02, 4.48337508e+02, 4.48337508e+02,
4.49289395e+02, 4.49289395e+02, 4.49289395e+02, 4.49289395e+02,
4.50134048e+02, 4.50134048e+02, 4.50134048e+02, 4.50134048e+02,
4.50869836e+02, 4.50869836e+02, 4.50869836e+02, 4.50869836e+02,
4.51512780e+02, 4.51512780e+02, 4.51512780e+02, 4.51512780e+02,
4.52081898e+02, 4.52081898e+02, 4.52081898e+02, 4.52081898e+02,
4.52595215e+02, 4.52595215e+02, 4.52595215e+02, 4.52595215e+02,
4.53069511e+02, 4.53069511e+02, 4.53069511e+02, 4.53069511e+02,
4.53521071e+02, 4.53521071e+02, 4.53521071e+02, 4.53521071e+02,
4.53965340e+02, 4.53965340e+02, 4.53965340e+02, 4.53965340e+02,
4.54407381e+02, 4.54407381e+02, 4.54407381e+02, 4.54407381e+02,
4.54782427e+02, 4.54782427e+02, 4.54782427e+02, 4.54782427e+02,
4.54679238e+02, 4.54679238e+02, 4.54679238e+02, 4.54679238e+02,
4.52448893e+02, 4.52448893e+02, 4.52448893e+02, 4.52448893e+02,
4.43824090e+02, 4.43824090e+02, 4.43824090e+02, 4.43824090e+02,
4.20337686e+02, 4.20337686e+02, 4.20337686e+02, 4.20337686e+02,
3.69484546e+02, 3.69484546e+02, 3.69484546e+02, 3.69484546e+02,
2.80602938e+02, 2.80602938e+02, 2.80602938e+02, 2.80602938e+02,
1.60681588e+02, 1.60681588e+02, 1.60681588e+02, 1.60681588e+02,
5.29503080e+01, 5.29503080e+01, 5.29503080e+01, 5.29503080e+01,
5.56597022e+00, 5.56597022e+00, 5.56597022e+00, 5.56597022e+00,
7.81466416e-02, 7.81466416e-02, 7.81466416e-02, 7.81466416e-02,
1.00355924e-02, 1.00355924e-02, 1.00355924e-02, 1.00355924e-02,
1.00000095e-02, 1.00000095e-02, 1.00000095e-02, 1.00000095e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_rusanov': [{'rho': array([0.99009996, 0.99009996, 0.99009996, 0.99009996, 0.98079728,
0.98079728, 0.98079728, 0.98079728, 0.97117513, 0.97117513,
0.97117513, 0.97117513, 0.95762729, 0.95762729, 0.95762729,
0.95762729, 0.94142953, 0.94142953, 0.94142953, 0.94142953,
0.92272455, 0.92272455, 0.92272455, 0.92272455, 0.90213778,
0.90213778, 0.90213778, 0.90213778, 0.88019506, 0.88019506,
0.88019506, 0.88019506, 0.8573279 , 0.8573279 , 0.8573279 ,
0.8573279 , 0.83388586, 0.83388586, 0.83388586, 0.83388586,
0.8103593 , 0.8103593 , 0.8103593 , 0.8103593 , 0.78735681,
0.78735681, 0.78735681, 0.78735681, 0.76511282, 0.76511282,
0.76511282, 0.76511282, 0.74361635, 0.74361635, 0.74361635,
0.74361635, 0.72287492, 0.72287492, 0.72287492, 0.72287492,
0.70291453, 0.70291453, 0.70291453, 0.70291453, 0.68379431,
0.68379431, 0.68379431, 0.68379431, 0.66561946, 0.66561946,
0.66561946, 0.66561946, 0.64854061, 0.64854061, 0.64854061,
0.64854061, 0.63273412, 0.63273412, 0.63273412, 0.63273412,
0.61836564, 0.61836564, 0.61836564, 0.61836564, 0.60555414,
0.60555414, 0.60555414, 0.60555414, 0.59436881, 0.59436881,
0.59436881, 0.59436881, 0.58488492, 0.58488492, 0.58488492,
0.58488492, 0.57726939, 0.57726939, 0.57726939, 0.57726939,
0.57177743, 0.57177743, 0.57177743, 0.57177743, 0.56855526,
0.56855526, 0.56855526, 0.56855526, 0.56733881, 0.56733881,
0.56733881, 0.56733881, 0.56730464, 0.56730464, 0.56730464,
0.56730464, 0.56754209, 0.56754209, 0.56754209, 0.56754209,
0.5676676 , 0.5676676 , 0.5676676 , 0.5676676 , 0.56747076,
0.56747076, 0.56747076, 0.56747076, 0.56700475, 0.56700475,
0.56700475, 0.56700475, 0.56673193, 0.56673193, 0.56673193,
0.56673193, 0.56658818, 0.56658818, 0.56658818, 0.56658818,
0.56660117, 0.56660117, 0.56660117, 0.56660117, 0.56721514,
0.56721514, 0.56721514, 0.56721514, 0.56947087, 0.56947087,
0.56947087, 0.56947087, 0.57522826, 0.57522826, 0.57522826,
0.57522826, 0.58788102, 0.58788102, 0.58788102, 0.58788102,
0.61339093, 0.61339093, 0.61339093, 0.61339093, 0.66191566,
0.66191566, 0.66191566, 0.66191566, 0.7503941 , 0.7503941 ,
0.7503941 , 0.7503941 , 0.90622262, 0.90622262, 0.90622262,
0.90622262, 1.17163176, 1.17163176, 1.17163176, 1.17163176,
1.60647461, 1.60647461, 1.60647461, 1.60647461, 2.28018986,
2.28018986, 2.28018986, 2.28018986, 3.12452995, 3.12452995,
3.12452995, 3.12452995, 3.74154011, 3.74154011, 3.74154011,
3.74154011, 3.94349823, 3.94349823, 3.94349823, 3.94349823,
3.47975134, 3.47975134, 3.47975134, 3.47975134, 1.76601771,
1.76601771, 1.76601771, 1.76601771, 1.04278667, 1.04278667,
1.04278667, 1.04278667, 1.00063976, 1.00063976, 1.00063976,
1.00063976, 1.000002 , 1.000002 , 1.000002 , 1.000002 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.71214413e-01, 3.71214413e-01, 3.71214413e-01, 3.71214413e-01,
7.24051149e-01, 7.24051149e-01, 7.24051149e-01, 7.24051149e-01,
1.09070799e+00, 1.09070799e+00, 1.09070799e+00, 1.09070799e+00,
1.61244052e+00, 1.61244052e+00, 1.61244052e+00, 1.61244052e+00,
2.24398795e+00, 2.24398795e+00, 2.24398795e+00, 2.24398795e+00,
2.98433948e+00, 2.98433948e+00, 2.98433948e+00, 2.98433948e+00,
3.81323583e+00, 3.81323583e+00, 3.81323583e+00, 3.81323583e+00,
4.71361364e+00, 4.71361364e+00, 4.71361364e+00, 4.71361364e+00,
5.67171883e+00, 5.67171883e+00, 5.67171883e+00, 5.67171883e+00,
6.67789199e+00, 6.67789199e+00, 6.67789199e+00, 6.67789199e+00,
7.70441370e+00, 7.70441370e+00, 7.70441370e+00, 7.70441370e+00,
8.73273268e+00, 8.73273268e+00, 8.73273268e+00, 8.73273268e+00,
9.75221103e+00, 9.75221103e+00, 9.75221103e+00, 9.75221103e+00,
1.07599049e+01, 1.07599049e+01, 1.07599049e+01, 1.07599049e+01,
1.17540097e+01, 1.17540097e+01, 1.17540097e+01, 1.17540097e+01,
1.27317276e+01, 1.27317276e+01, 1.27317276e+01, 1.27317276e+01,
1.36888505e+01, 1.36888505e+01, 1.36888505e+01, 1.36888505e+01,
1.46193231e+01, 1.46193231e+01, 1.46193231e+01, 1.46193231e+01,
1.55146881e+01, 1.55146881e+01, 1.55146881e+01, 1.55146881e+01,
1.63636987e+01, 1.63636987e+01, 1.63636987e+01, 1.63636987e+01,
1.71524418e+01, 1.71524418e+01, 1.71524418e+01, 1.71524418e+01,
1.78652593e+01, 1.78652593e+01, 1.78652593e+01, 1.78652593e+01,
1.84866404e+01, 1.84866404e+01, 1.84866404e+01, 1.84866404e+01,
1.90040865e+01, 1.90040865e+01, 1.90040865e+01, 1.90040865e+01,
1.94113585e+01, 1.94113585e+01, 1.94113585e+01, 1.94113585e+01,
1.97105480e+01, 1.97105480e+01, 1.97105480e+01, 1.97105480e+01,
1.99120445e+01, 1.99120445e+01, 1.99120445e+01, 1.99120445e+01,
2.00328035e+01, 2.00328035e+01, 2.00328035e+01, 2.00328035e+01,
2.00939353e+01, 2.00939353e+01, 2.00939353e+01, 2.00939353e+01,
2.01167707e+01, 2.01167707e+01, 2.01167707e+01, 2.01167707e+01,
2.01197792e+01, 2.01197792e+01, 2.01197792e+01, 2.01197792e+01,
2.01074074e+01, 2.01074074e+01, 2.01074074e+01, 2.01074074e+01,
2.00728629e+01, 2.00728629e+01, 2.00728629e+01, 2.00728629e+01,
2.00133514e+01, 2.00133514e+01, 2.00133514e+01, 2.00133514e+01,
1.99495226e+01, 1.99495226e+01, 1.99495226e+01, 1.99495226e+01,
1.98997208e+01, 1.98997208e+01, 1.98997208e+01, 1.98997208e+01,
1.98634959e+01, 1.98634959e+01, 1.98634959e+01, 1.98634959e+01,
1.98359993e+01, 1.98359993e+01, 1.98359993e+01, 1.98359993e+01,
1.98148995e+01, 1.98148995e+01, 1.98148995e+01, 1.98148995e+01,
1.97990188e+01, 1.97990188e+01, 1.97990188e+01, 1.97990188e+01,
1.97864598e+01, 1.97864598e+01, 1.97864598e+01, 1.97864598e+01,
1.97757303e+01, 1.97757303e+01, 1.97757303e+01, 1.97757303e+01,
1.97670663e+01, 1.97670663e+01, 1.97670663e+01, 1.97670663e+01,
1.97606562e+01, 1.97606562e+01, 1.97606562e+01, 1.97606562e+01,
1.97563225e+01, 1.97563225e+01, 1.97563225e+01, 1.97563225e+01,
1.97574019e+01, 1.97574019e+01, 1.97574019e+01, 1.97574019e+01,
1.97535996e+01, 1.97535996e+01, 1.97535996e+01, 1.97535996e+01,
1.97149405e+01, 1.97149405e+01, 1.97149405e+01, 1.97149405e+01,
1.95165373e+01, 1.95165373e+01, 1.95165373e+01, 1.95165373e+01,
1.86180277e+01, 1.86180277e+01, 1.86180277e+01, 1.86180277e+01,
1.50712409e+01, 1.50712409e+01, 1.50712409e+01, 1.50712409e+01,
6.44555578e+00, 6.44555578e+00, 6.44555578e+00, 6.44555578e+00,
3.40134655e-01, 3.40134655e-01, 3.40134655e-01, 3.40134655e-01,
1.99855938e-03, 1.99855938e-03, 1.99855938e-03, 1.99855938e-03,
9.27909710e-07, 9.27909710e-07, 9.27909710e-07, 9.27909710e-07,
1.31626259e-10, 1.31626259e-10, 1.31626259e-10, 1.31626259e-10,
1.91069012e-14, 1.91069012e-14, 1.91069012e-14, 1.91069012e-14,
2.79872002e-18, 2.79872002e-18, 2.79872002e-18, 2.79872002e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.86186200e+02, 9.86186200e+02, 9.86186200e+02, 9.86186200e+02,
9.73240468e+02, 9.73240468e+02, 9.73240468e+02, 9.73240468e+02,
9.59914409e+02, 9.59914409e+02, 9.59914409e+02, 9.59914409e+02,
9.41247070e+02, 9.41247070e+02, 9.41247070e+02, 9.41247070e+02,
9.19065173e+02, 9.19065173e+02, 9.19065173e+02, 9.19065173e+02,
8.93636756e+02, 8.93636756e+02, 8.93636756e+02, 8.93636756e+02,
8.65883271e+02, 8.65883271e+02, 8.65883271e+02, 8.65883271e+02,
8.36573980e+02, 8.36573980e+02, 8.36573980e+02, 8.36573980e+02,
8.06320572e+02, 8.06320572e+02, 8.06320572e+02, 8.06320572e+02,
7.75553698e+02, 7.75553698e+02, 7.75553698e+02, 7.75553698e+02,
7.45017133e+02, 7.45017133e+02, 7.45017133e+02, 7.45017133e+02,
7.15593221e+02, 7.15593221e+02, 7.15593221e+02, 7.15593221e+02,
6.87450247e+02, 6.87450247e+02, 6.87450247e+02, 6.87450247e+02,
6.60567105e+02, 6.60567105e+02, 6.60567105e+02, 6.60567105e+02,
6.34933561e+02, 6.34933561e+02, 6.34933561e+02, 6.34933561e+02,
6.10559907e+02, 6.10559907e+02, 6.10559907e+02, 6.10559907e+02,
5.87481408e+02, 5.87481408e+02, 5.87481408e+02, 5.87481408e+02,
5.65766844e+02, 5.65766844e+02, 5.65766844e+02, 5.65766844e+02,
5.45524542e+02, 5.45524542e+02, 5.45524542e+02, 5.45524542e+02,
5.26905041e+02, 5.26905041e+02, 5.26905041e+02, 5.26905041e+02,
5.10095754e+02, 5.10095754e+02, 5.10095754e+02, 5.10095754e+02,
4.95301417e+02, 4.95301417e+02, 4.95301417e+02, 4.95301417e+02,
4.82707232e+02, 4.82707232e+02, 4.82707232e+02, 4.82707232e+02,
4.72431235e+02, 4.72431235e+02, 4.72431235e+02, 4.72431235e+02,
4.64480159e+02, 4.64480159e+02, 4.64480159e+02, 4.64480159e+02,
4.58720544e+02, 4.58720544e+02, 4.58720544e+02, 4.58720544e+02,
4.54880415e+02, 4.54880415e+02, 4.54880415e+02, 4.54880415e+02,
4.52586923e+02, 4.52586923e+02, 4.52586923e+02, 4.52586923e+02,
4.51430708e+02, 4.51430708e+02, 4.51430708e+02, 4.51430708e+02,
4.51009436e+02, 4.51009436e+02, 4.51009436e+02, 4.51009436e+02,
4.50953318e+02, 4.50953318e+02, 4.50953318e+02, 4.50953318e+02,
4.51185590e+02, 4.51185590e+02, 4.51185590e+02, 4.51185590e+02,
4.51834808e+02, 4.51834808e+02, 4.51834808e+02, 4.51834808e+02,
4.52955367e+02, 4.52955367e+02, 4.52955367e+02, 4.52955367e+02,
4.54157312e+02, 4.54157312e+02, 4.54157312e+02, 4.54157312e+02,
4.55095241e+02, 4.55095241e+02, 4.55095241e+02, 4.55095241e+02,
4.55772371e+02, 4.55772371e+02, 4.55772371e+02, 4.55772371e+02,
4.56264237e+02, 4.56264237e+02, 4.56264237e+02, 4.56264237e+02,
4.56633348e+02, 4.56633348e+02, 4.56633348e+02, 4.56633348e+02,
4.56929937e+02, 4.56929937e+02, 4.56929937e+02, 4.56929937e+02,
4.57171489e+02, 4.57171489e+02, 4.57171489e+02, 4.57171489e+02,
4.57363668e+02, 4.57363668e+02, 4.57363668e+02, 4.57363668e+02,
4.57531378e+02, 4.57531378e+02, 4.57531378e+02, 4.57531378e+02,
4.57709652e+02, 4.57709652e+02, 4.57709652e+02, 4.57709652e+02,
4.57932536e+02, 4.57932536e+02, 4.57932536e+02, 4.57932536e+02,
4.58295200e+02, 4.58295200e+02, 4.58295200e+02, 4.58295200e+02,
4.58599054e+02, 4.58599054e+02, 4.58599054e+02, 4.58599054e+02,
4.57718786e+02, 4.57718786e+02, 4.57718786e+02, 4.57718786e+02,
4.48917912e+02, 4.48917912e+02, 4.48917912e+02, 4.48917912e+02,
4.03800359e+02, 4.03800359e+02, 4.03800359e+02, 4.03800359e+02,
2.58647864e+02, 2.58647864e+02, 2.58647864e+02, 2.58647864e+02,
5.37325288e+01, 5.37325288e+01, 5.37325288e+01, 5.37325288e+01,
1.31811609e+00, 1.31811609e+00, 1.31811609e+00, 1.31811609e+00,
1.12593786e-02, 1.12593786e-02, 1.12593786e-02, 1.12593786e-02,
1.00001109e-02, 1.00001109e-02, 1.00001109e-02, 1.00001109e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hll': [{'rho': array([0.99116492, 0.99116492, 0.99116492, 0.99116492, 0.98271154,
0.98271154, 0.98271154, 0.98271154, 0.97383884, 0.97383884,
0.97383884, 0.97383884, 0.96101554, 0.96101554, 0.96101554,
0.96101554, 0.9454558 , 0.9454558 , 0.9454558 , 0.9454558 ,
0.92712036, 0.92712036, 0.92712036, 0.92712036, 0.90667211,
0.90667211, 0.90667211, 0.90667211, 0.88466881, 0.88466881,
0.88466881, 0.88466881, 0.86164034, 0.86164034, 0.86164034,
0.86164034, 0.83800032, 0.83800032, 0.83800032, 0.83800032,
0.81424415, 0.81424415, 0.81424415, 0.81424415, 0.79085525,
0.79085525, 0.79085525, 0.79085525, 0.76804363, 0.76804363,
0.76804363, 0.76804363, 0.74583711, 0.74583711, 0.74583711,
0.74583711, 0.72421952, 0.72421952, 0.72421952, 0.72421952,
0.70319112, 0.70319112, 0.70319112, 0.70319112, 0.68277247,
0.68277247, 0.68277247, 0.68277247, 0.66301832, 0.66301832,
0.66301832, 0.66301832, 0.64404414, 0.64404414, 0.64404414,
0.64404414, 0.62606083, 0.62606083, 0.62606083, 0.62606083,
0.60941523, 0.60941523, 0.60941523, 0.60941523, 0.59461799,
0.59461799, 0.59461799, 0.59461799, 0.5823152 , 0.5823152 ,
0.5823152 , 0.5823152 , 0.57313802, 0.57313802, 0.57313802,
0.57313802, 0.56738503, 0.56738503, 0.56738503, 0.56738503,
0.56465216, 0.56465216, 0.56465216, 0.56465216, 0.56382693,
0.56382693, 0.56382693, 0.56382693, 0.56387318, 0.56387318,
0.56387318, 0.56387318, 0.5652006 , 0.5652006 , 0.5652006 ,
0.5652006 , 0.56626977, 0.56626977, 0.56626977, 0.56626977,
0.56702881, 0.56702881, 0.56702881, 0.56702881, 0.56788545,
0.56788545, 0.56788545, 0.56788545, 0.56880776, 0.56880776,
0.56880776, 0.56880776, 0.56941945, 0.56941945, 0.56941945,
0.56941945, 0.56962086, 0.56962086, 0.56962086, 0.56962086,
0.56956418, 0.56956418, 0.56956418, 0.56956418, 0.56936331,
0.56936331, 0.56936331, 0.56936331, 0.56934572, 0.56934572,
0.56934572, 0.56934572, 0.57000584, 0.57000584, 0.57000584,
0.57000584, 0.5729765 , 0.5729765 , 0.5729765 , 0.5729765 ,
0.58176493, 0.58176493, 0.58176493, 0.58176493, 0.60341244,
0.60341244, 0.60341244, 0.60341244, 0.65159534, 0.65159534,
0.65159534, 0.65159534, 0.75225793, 0.75225793, 0.75225793,
0.75225793, 0.95396517, 0.95396517, 0.95396517, 0.95396517,
1.34573563, 1.34573563, 1.34573563, 1.34573563, 2.05647412,
2.05647412, 2.05647412, 2.05647412, 3.13720518, 3.13720518,
3.13720518, 3.13720518, 4.01618199, 4.01618199, 4.01618199,
4.01618199, 4.2713159 , 4.2713159 , 4.2713159 , 4.2713159 ,
3.78406763, 3.78406763, 3.78406763, 3.78406763, 1.92016659,
1.92016659, 1.92016659, 1.92016659, 1.058216 , 1.058216 ,
1.058216 , 1.058216 , 1.00081398, 1.00081398, 1.00081398,
1.00081398, 1.00000178, 1.00000178, 1.00000178, 1.00000178,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.31199970e-01, 3.31199970e-01, 3.31199970e-01, 3.31199970e-01,
6.51382280e-01, 6.51382280e-01, 6.51382280e-01, 6.51382280e-01,
9.88854278e-01, 9.88854278e-01, 9.88854278e-01, 9.88854278e-01,
1.48150489e+00, 1.48150489e+00, 1.48150489e+00, 1.48150489e+00,
2.08633147e+00, 2.08633147e+00, 2.08633147e+00, 2.08633147e+00,
2.80957124e+00, 2.80957124e+00, 2.80957124e+00, 2.80957124e+00,
3.62985549e+00, 3.62985549e+00, 3.62985549e+00, 3.62985549e+00,
4.52930744e+00, 4.52930744e+00, 4.52930744e+00, 4.52930744e+00,
5.49031544e+00, 5.49031544e+00, 5.49031544e+00, 5.49031544e+00,
6.50069839e+00, 6.50069839e+00, 6.50069839e+00, 6.50069839e+00,
7.53409154e+00, 7.53409154e+00, 7.53409154e+00, 7.53409154e+00,
8.57574859e+00, 8.57574859e+00, 8.57574859e+00, 8.57574859e+00,
9.61670434e+00, 9.61670434e+00, 9.61670434e+00, 9.61670434e+00,
1.06548968e+01, 1.06548968e+01, 1.06548968e+01, 1.06548968e+01,
1.16895560e+01, 1.16895560e+01, 1.16895560e+01, 1.16895560e+01,
1.27199525e+01, 1.27199525e+01, 1.27199525e+01, 1.27199525e+01,
1.37443488e+01, 1.37443488e+01, 1.37443488e+01, 1.37443488e+01,
1.47589251e+01, 1.47589251e+01, 1.47589251e+01, 1.47589251e+01,
1.57563221e+01, 1.57563221e+01, 1.57563221e+01, 1.57563221e+01,
1.67233146e+01, 1.67233146e+01, 1.67233146e+01, 1.67233146e+01,
1.76379476e+01, 1.76379476e+01, 1.76379476e+01, 1.76379476e+01,
1.84673647e+01, 1.84673647e+01, 1.84673647e+01, 1.84673647e+01,
1.91692758e+01, 1.91692758e+01, 1.91692758e+01, 1.91692758e+01,
1.97016293e+01, 1.97016293e+01, 1.97016293e+01, 1.97016293e+01,
2.00421597e+01, 2.00421597e+01, 2.00421597e+01, 2.00421597e+01,
2.02074474e+01, 2.02074474e+01, 2.02074474e+01, 2.02074474e+01,
2.02533362e+01, 2.02533362e+01, 2.02533362e+01, 2.02533362e+01,
2.02422335e+01, 2.02422335e+01, 2.02422335e+01, 2.02422335e+01,
2.01551609e+01, 2.01551609e+01, 2.01551609e+01, 2.01551609e+01,
2.00814099e+01, 2.00814099e+01, 2.00814099e+01, 2.00814099e+01,
2.00377810e+01, 2.00377810e+01, 2.00377810e+01, 2.00377810e+01,
2.00059391e+01, 2.00059391e+01, 2.00059391e+01, 2.00059391e+01,
1.99778740e+01, 1.99778740e+01, 1.99778740e+01, 1.99778740e+01,
1.99509217e+01, 1.99509217e+01, 1.99509217e+01, 1.99509217e+01,
1.99248183e+01, 1.99248183e+01, 1.99248183e+01, 1.99248183e+01,
1.99001676e+01, 1.99001676e+01, 1.99001676e+01, 1.99001676e+01,
1.98776007e+01, 1.98776007e+01, 1.98776007e+01, 1.98776007e+01,
1.98572942e+01, 1.98572942e+01, 1.98572942e+01, 1.98572942e+01,
1.98397324e+01, 1.98397324e+01, 1.98397324e+01, 1.98397324e+01,
1.98254040e+01, 1.98254040e+01, 1.98254040e+01, 1.98254040e+01,
1.98131310e+01, 1.98131310e+01, 1.98131310e+01, 1.98131310e+01,
1.98012050e+01, 1.98012050e+01, 1.98012050e+01, 1.98012050e+01,
1.97898387e+01, 1.97898387e+01, 1.97898387e+01, 1.97898387e+01,
1.97795675e+01, 1.97795675e+01, 1.97795675e+01, 1.97795675e+01,
1.97699816e+01, 1.97699816e+01, 1.97699816e+01, 1.97699816e+01,
1.97635691e+01, 1.97635691e+01, 1.97635691e+01, 1.97635691e+01,
1.97536393e+01, 1.97536393e+01, 1.97536393e+01, 1.97536393e+01,
1.97149813e+01, 1.97149813e+01, 1.97149813e+01, 1.97149813e+01,
1.95399511e+01, 1.95399511e+01, 1.95399511e+01, 1.95399511e+01,
1.87505825e+01, 1.87505825e+01, 1.87505825e+01, 1.87505825e+01,
1.56266522e+01, 1.56266522e+01, 1.56266522e+01, 1.56266522e+01,
6.97439322e+00, 6.97439322e+00, 6.97439322e+00, 6.97439322e+00,
3.92821064e-01, 3.92821064e-01, 3.92821064e-01, 3.92821064e-01,
1.89489077e-03, 1.89489077e-03, 1.89489077e-03, 1.89489077e-03,
6.66095396e-07, 6.66095396e-07, 6.66095396e-07, 6.66095396e-07,
9.40368073e-11, 9.40368073e-11, 9.40368073e-11, 9.40368073e-11,
1.38270964e-14, 1.38270964e-14, 1.38270964e-14, 1.38270964e-14,
2.07028270e-18, 2.07028270e-18, 2.07028270e-18, 2.07028270e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87667905e+02, 9.87667905e+02, 9.87667905e+02, 9.87667905e+02,
9.75896749e+02, 9.75896749e+02, 9.75896749e+02, 9.75896749e+02,
9.63596793e+02, 9.63596793e+02, 9.63596793e+02, 9.63596793e+02,
9.45903496e+02, 9.45903496e+02, 9.45903496e+02, 9.45903496e+02,
9.24560147e+02, 9.24560147e+02, 9.24560147e+02, 9.24560147e+02,
8.99586589e+02, 8.99586589e+02, 8.99586589e+02, 8.99586589e+02,
8.71962692e+02, 8.71962692e+02, 8.71962692e+02, 8.71962692e+02,
8.42509302e+02, 8.42509302e+02, 8.42509302e+02, 8.42509302e+02,
8.11982832e+02, 8.11982832e+02, 8.11982832e+02, 8.11982832e+02,
7.80909598e+02, 7.80909598e+02, 7.80909598e+02, 7.80909598e+02,
7.50021347e+02, 7.50021347e+02, 7.50021347e+02, 7.50021347e+02,
7.20044660e+02, 7.20044660e+02, 7.20044660e+02, 7.20044660e+02,
6.91139600e+02, 6.91139600e+02, 6.91139600e+02, 6.91139600e+02,
6.63330665e+02, 6.63330665e+02, 6.63330665e+02, 6.63330665e+02,
6.36575468e+02, 6.36575468e+02, 6.36575468e+02, 6.36575468e+02,
6.10854195e+02, 6.10854195e+02, 6.10854195e+02, 6.10854195e+02,
5.86171830e+02, 5.86171830e+02, 5.86171830e+02, 5.86171830e+02,
5.62573606e+02, 5.62573606e+02, 5.62573606e+02, 5.62573606e+02,
5.40173609e+02, 5.40173609e+02, 5.40173609e+02, 5.40173609e+02,
5.19191018e+02, 5.19191018e+02, 5.19191018e+02, 5.19191018e+02,
4.99991749e+02, 4.99991749e+02, 4.99991749e+02, 4.99991749e+02,
4.83112346e+02, 4.83112346e+02, 4.83112346e+02, 4.83112346e+02,
4.69214163e+02, 4.69214163e+02, 4.69214163e+02, 4.69214163e+02,
4.58903184e+02, 4.58903184e+02, 4.58903184e+02, 4.58903184e+02,
4.52409336e+02, 4.52409336e+02, 4.52409336e+02, 4.52409336e+02,
4.49287031e+02, 4.49287031e+02, 4.49287031e+02, 4.49287031e+02,
4.48422944e+02, 4.48422944e+02, 4.48422944e+02, 4.48422944e+02,
4.48631188e+02, 4.48631188e+02, 4.48631188e+02, 4.48631188e+02,
4.50271228e+02, 4.50271228e+02, 4.50271228e+02, 4.50271228e+02,
4.51662913e+02, 4.51662913e+02, 4.51662913e+02, 4.51662913e+02,
4.52490638e+02, 4.52490638e+02, 4.52490638e+02, 4.52490638e+02,
4.53096587e+02, 4.53096587e+02, 4.53096587e+02, 4.53096587e+02,
4.53627004e+02, 4.53627004e+02, 4.53627004e+02, 4.53627004e+02,
4.54138029e+02, 4.54138029e+02, 4.54138029e+02, 4.54138029e+02,
4.54640997e+02, 4.54640997e+02, 4.54640997e+02, 4.54640997e+02,
4.55121718e+02, 4.55121718e+02, 4.55121718e+02, 4.55121718e+02,
4.55558744e+02, 4.55558744e+02, 4.55558744e+02, 4.55558744e+02,
4.55935595e+02, 4.55935595e+02, 4.55935595e+02, 4.55935595e+02,
4.56261121e+02, 4.56261121e+02, 4.56261121e+02, 4.56261121e+02,
4.56558739e+02, 4.56558739e+02, 4.56558739e+02, 4.56558739e+02,
4.56826197e+02, 4.56826197e+02, 4.56826197e+02, 4.56826197e+02,
4.57052328e+02, 4.57052328e+02, 4.57052328e+02, 4.57052328e+02,
4.57257152e+02, 4.57257152e+02, 4.57257152e+02, 4.57257152e+02,
4.57467024e+02, 4.57467024e+02, 4.57467024e+02, 4.57467024e+02,
4.57704540e+02, 4.57704540e+02, 4.57704540e+02, 4.57704540e+02,
4.58066570e+02, 4.58066570e+02, 4.58066570e+02, 4.58066570e+02,
4.58479576e+02, 4.58479576e+02, 4.58479576e+02, 4.58479576e+02,
4.57718684e+02, 4.57718684e+02, 4.57718684e+02, 4.57718684e+02,
4.49845047e+02, 4.49845047e+02, 4.49845047e+02, 4.49845047e+02,
4.09389299e+02, 4.09389299e+02, 4.09389299e+02, 4.09389299e+02,
2.68194998e+02, 2.68194998e+02, 2.68194998e+02, 2.68194998e+02,
5.60520652e+01, 5.60520652e+01, 5.60520652e+01, 5.60520652e+01,
1.14557313e+00, 1.14557313e+00, 1.14557313e+00, 1.14557313e+00,
1.08687798e-02, 1.08687798e-02, 1.08687798e-02, 1.08687798e-02,
1.00000791e-02, 1.00000791e-02, 1.00000791e-02, 1.00000791e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hllc': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99854666, 0.99854666, 0.99854666, 0.99854666,
0.96845715, 0.96845715, 0.96845715, 0.96845715, 0.81981135,
0.81981135, 0.81981135, 0.81981135, 1.13644411, 1.13644411,
1.13644411, 1.13644411, 1.07459565, 1.07459565, 1.07459565,
1.07459565, 1.00214509, 1.00214509, 1.00214509, 1.00214509,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.44580810e-02, 5.44580810e-02, 5.44580810e-02, 5.44580810e-02,
1.19786475e+00, 1.19786475e+00, 1.19786475e+00, 1.19786475e+00,
7.52224860e+00, 7.52224860e+00, 7.52224860e+00, 7.52224860e+00,
9.36380750e+00, 9.36380750e+00, 9.36380750e+00, 9.36380750e+00,
1.09132154e+00, 1.09132154e+00, 1.09132154e+00, 1.09132154e+00,
4.34109741e-03, 4.34109741e-03, 4.34109741e-03, 4.34109741e-03,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.97973078e+02, 9.97973078e+02, 9.97973078e+02, 9.97973078e+02,
9.57196315e+02, 9.57196315e+02, 9.57196315e+02, 9.57196315e+02,
7.89728589e+02, 7.89728589e+02, 7.89728589e+02, 7.89728589e+02,
2.18172604e+02, 2.18172604e+02, 2.18172604e+02, 2.18172604e+02,
7.20466733e+00, 7.20466733e+00, 7.20466733e+00, 7.20466733e+00,
1.36969674e-02, 1.36969674e-02, 1.36969674e-02, 1.36969674e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999529,
0.99999529, 0.99999529, 0.99999529, 0.99981164, 0.99981164,
0.99981164, 0.99981164, 0.99702376, 0.99702376, 0.99702376,
0.99702376, 0.97590016, 0.97590016, 0.97590016, 0.97590016,
0.88930972, 0.88930972, 0.88930972, 0.88930972, 0.71365932,
0.71365932, 0.71365932, 0.71365932, 1.0710902 , 1.0710902 ,
1.0710902 , 1.0710902 , 1.31137332, 1.31137332, 1.31137332,
1.31137332, 1.04072233, 1.04072233, 1.04072233, 1.04072233,
1.00111398, 1.00111398, 1.00111398, 1.00111398, 1.00000029,
1.00000029, 1.00000029, 1.00000029, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.76253247e-04, 1.76253247e-04, 1.76253247e-04, 1.76253247e-04,
7.04865623e-03, 7.04865623e-03, 7.04865623e-03, 7.04865623e-03,
1.11518467e-01, 1.11518467e-01, 1.11518467e-01, 1.11518467e-01,
9.09502205e-01, 9.09502205e-01, 9.09502205e-01, 9.09502205e-01,
4.30216737e+00, 4.30216737e+00, 4.30216737e+00, 4.30216737e+00,
1.18379965e+01, 1.18379965e+01, 1.18379965e+01, 1.18379965e+01,
1.62384269e+01, 1.62384269e+01, 1.62384269e+01, 1.62384269e+01,
5.70889156e+00, 5.70889156e+00, 5.70889156e+00, 5.70889156e+00,
2.30200189e-01, 2.30200189e-01, 2.30200189e-01, 2.30200189e-01,
4.83684047e-04, 4.83684047e-04, 4.83684047e-04, 4.83684047e-04,
3.42098651e-08, 3.42098651e-08, 3.42098651e-08, 3.42098651e-08,
1.01319811e-12, 1.01319811e-12, 1.01319811e-12, 1.01319811e-12,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99993405e+02, 9.99993405e+02, 9.99993405e+02, 9.99993405e+02,
9.99736354e+02, 9.99736354e+02, 9.99736354e+02, 9.99736354e+02,
9.95842977e+02, 9.95842977e+02, 9.95842977e+02, 9.95842977e+02,
9.66708286e+02, 9.66708286e+02, 9.66708286e+02, 9.66708286e+02,
8.52052998e+02, 8.52052998e+02, 8.52052998e+02, 8.52052998e+02,
6.72236296e+02, 6.72236296e+02, 6.72236296e+02, 6.72236296e+02,
3.62410250e+02, 3.62410250e+02, 3.62410250e+02, 3.62410250e+02,
6.19189240e+01, 6.19189240e+01, 6.19189240e+01, 6.19189240e+01,
6.26948951e-01, 6.26948951e-01, 6.26948951e-01, 6.26948951e-01,
1.01072359e-02, 1.01072359e-02, 1.01072359e-02, 1.01072359e-02,
1.00000040e-02, 1.00000040e-02, 1.00000040e-02, 1.00000040e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999888, 0.99999888, 0.99999888, 0.99999888,
0.99997445, 0.99997445, 0.99997445, 0.99997445, 0.99964871,
0.99964871, 0.99964871, 0.99964871, 0.99689733, 0.99689733,
0.99689733, 0.99689733, 0.98193702, 0.98193702, 0.98193702,
0.98193702, 0.9295722 , 0.9295722 , 0.9295722 , 0.9295722 ,
0.81296623, 0.81296623, 0.81296623, 0.81296623, 0.63611418,
0.63611418, 0.63611418, 0.63611418, 0.88414578, 0.88414578,
0.88414578, 0.88414578, 1.57593929, 1.57593929, 1.57593929,
1.57593929, 1.1715463 , 1.1715463 , 1.1715463 , 1.1715463 ,
1.01116974, 1.01116974, 1.01116974, 1.01116974, 1.0000899 ,
1.0000899 , 1.0000899 , 1.0000899 , 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
7.97153187e-09, 7.97153187e-09, 7.97153187e-09, 7.97153187e-09,
9.70027498e-07, 9.70027498e-07, 9.70027498e-07, 9.70027498e-07,
4.20269589e-05, 4.20269589e-05, 4.20269589e-05, 4.20269589e-05,
9.55942471e-04, 9.55942471e-04, 9.55942471e-04, 9.55942471e-04,
1.31460868e-02, 1.31460868e-02, 1.31460868e-02, 1.31460868e-02,
1.16219529e-01, 1.16219529e-01, 1.16219529e-01, 1.16219529e-01,
6.79969081e-01, 6.79969081e-01, 6.79969081e-01, 6.79969081e-01,
2.70215530e+00, 2.70215530e+00, 2.70215530e+00, 2.70215530e+00,
7.57490575e+00, 7.57490575e+00, 7.57490575e+00, 7.57490575e+00,
1.47743231e+01, 1.47743231e+01, 1.47743231e+01, 1.47743231e+01,
2.03840035e+01, 2.03840035e+01, 2.03840035e+01, 2.03840035e+01,
1.19115601e+01, 1.19115601e+01, 1.19115601e+01, 1.19115601e+01,
1.63710471e+00, 1.63710471e+00, 1.63710471e+00, 1.63710471e+00,
2.10715183e-02, 2.10715183e-02, 2.10715183e-02, 2.10715183e-02,
1.32818490e-05, 1.32818490e-05, 1.32818490e-05, 1.32818490e-05,
1.21621831e-09, 1.21621831e-09, 1.21621831e-09, 1.21621831e-09,
8.57861505e-14, 8.57861505e-14, 8.57861505e-14, 8.57861505e-14,
4.41228789e-18, 4.41228789e-18, 4.41228789e-18, 4.41228789e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999964e+02, 9.99999964e+02, 9.99999964e+02, 9.99999964e+02,
9.99998427e+02, 9.99998427e+02, 9.99998427e+02, 9.99998427e+02,
9.99964233e+02, 9.99964233e+02, 9.99964233e+02, 9.99964233e+02,
9.99508326e+02, 9.99508326e+02, 9.99508326e+02, 9.99508326e+02,
9.95664278e+02, 9.95664278e+02, 9.95664278e+02, 9.95664278e+02,
9.74918203e+02, 9.74918203e+02, 9.74918203e+02, 9.74918203e+02,
9.03858041e+02, 9.03858041e+02, 9.03858041e+02, 9.03858041e+02,
7.52615431e+02, 7.52615431e+02, 7.52615431e+02, 7.52615431e+02,
5.88404204e+02, 5.88404204e+02, 5.88404204e+02, 5.88404204e+02,
4.31076258e+02, 4.31076258e+02, 4.31076258e+02, 4.31076258e+02,
1.87860435e+02, 1.87860435e+02, 1.87860435e+02, 1.87860435e+02,
8.76910821e+00, 8.76910821e+00, 8.76910821e+00, 8.76910821e+00,
2.98951467e-02, 2.98951467e-02, 2.98951467e-02, 2.98951467e-02,
1.00015908e-02, 1.00015908e-02, 1.00015908e-02, 1.00015908e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999979, 0.99999979,
0.99999979, 0.99999979, 0.9999963 , 0.9999963 , 0.9999963 ,
0.9999963 , 0.99995364, 0.99995364, 0.99995364, 0.99995364,
0.99957767, 0.99957767, 0.99957767, 0.99957767, 0.99718309,
0.99718309, 0.99718309, 0.99718309, 0.98626394, 0.98626394,
0.98626394, 0.98626394, 0.95106797, 0.95106797, 0.95106797,
0.95106797, 0.87123171, 0.87123171, 0.87123171, 0.87123171,
0.74547768, 0.74547768, 0.74547768, 0.74547768, 0.58374479,
0.58374479, 0.58374479, 0.58374479, 0.73207392, 0.73207392,
0.73207392, 0.73207392, 1.60503247, 1.60503247, 1.60503247,
1.60503247, 1.47308433, 1.47308433, 1.47308433, 1.47308433,
1.05348836, 1.05348836, 1.05348836, 1.05348836, 1.00182288,
1.00182288, 1.00182288, 1.00182288, 1.00000147, 1.00000147,
1.00000147, 1.00000147, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
6.26870362e-13, 6.26870362e-13, 6.26870362e-13, 6.26870362e-13,
1.08486278e-10, 1.08486278e-10, 1.08486278e-10, 1.08486278e-10,
7.72018265e-09, 7.72018265e-09, 7.72018265e-09, 7.72018265e-09,
3.08421177e-07, 3.08421177e-07, 3.08421177e-07, 3.08421177e-07,
7.88931508e-06, 7.88931508e-06, 7.88931508e-06, 7.88931508e-06,
1.38505209e-04, 1.38505209e-04, 1.38505209e-04, 1.38505209e-04,
1.73457409e-03, 1.73457409e-03, 1.73457409e-03, 1.73457409e-03,
1.58044887e-02, 1.58044887e-02, 1.58044887e-02, 1.58044887e-02,
1.05496410e-01, 1.05496410e-01, 1.05496410e-01, 1.05496410e-01,
5.16306177e-01, 5.16306177e-01, 5.16306177e-01, 5.16306177e-01,
1.86327287e+00, 1.86327287e+00, 1.86327287e+00, 1.86327287e+00,
5.07718607e+00, 5.07718607e+00, 5.07718607e+00, 5.07718607e+00,
1.06862908e+01, 1.06862908e+01, 1.06862908e+01, 1.06862908e+01,
1.67930222e+01, 1.67930222e+01, 1.67930222e+01, 1.67930222e+01,
2.18771845e+01, 2.18771845e+01, 2.18771845e+01, 2.18771845e+01,
1.69221015e+01, 1.69221015e+01, 1.69221015e+01, 1.69221015e+01,
5.93555418e+00, 5.93555418e+00, 5.93555418e+00, 5.93555418e+00,
2.67386567e-01, 2.67386567e-01, 2.67386567e-01, 2.67386567e-01,
9.03539515e-04, 9.03539515e-04, 9.03539515e-04, 9.03539515e-04,
1.74483618e-07, 1.74483618e-07, 1.74483618e-07, 1.74483618e-07,
2.04118254e-11, 2.04118254e-11, 2.04118254e-11, 2.04118254e-11,
2.17016642e-15, 2.17016642e-15, 2.17016642e-15, 2.17016642e-15,
1.97944057e-19, 1.97944057e-19, 1.97944057e-19, 1.97944057e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999705e+02, 9.99999705e+02, 9.99999705e+02, 9.99999705e+02,
9.99994818e+02, 9.99994818e+02, 9.99994818e+02, 9.99994818e+02,
9.99935102e+02, 9.99935102e+02, 9.99935102e+02, 9.99935102e+02,
9.99408895e+02, 9.99408895e+02, 9.99408895e+02, 9.99408895e+02,
9.96061988e+02, 9.96061988e+02, 9.96061988e+02, 9.96061988e+02,
9.80877450e+02, 9.80877450e+02, 9.80877450e+02, 9.80877450e+02,
9.32612348e+02, 9.32612348e+02, 9.32612348e+02, 9.32612348e+02,
8.26315203e+02, 8.26315203e+02, 8.26315203e+02, 8.26315203e+02,
6.66605385e+02, 6.66605385e+02, 6.66605385e+02, 6.66605385e+02,
5.27625315e+02, 5.27625315e+02, 5.27625315e+02, 5.27625315e+02,
4.48693030e+02, 4.48693030e+02, 4.48693030e+02, 4.48693030e+02,
3.34282701e+02, 3.34282701e+02, 3.34282701e+02, 3.34282701e+02,
5.93797144e+01, 5.93797144e+01, 5.93797144e+01, 5.93797144e+01,
6.98066976e-01, 6.98066976e-01, 6.98066976e-01, 6.98066976e-01,
1.02408618e-02, 1.02408618e-02, 1.02408618e-02, 1.02408618e-02,
1.00000206e-02, 1.00000206e-02, 1.00000206e-02, 1.00000206e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999945,
0.99999945, 0.99999945, 0.99999945, 0.99999352, 0.99999352,
0.99999352, 0.99999352, 0.99994026, 0.99994026, 0.99994026,
0.99994026, 0.99956877, 0.99956877, 0.99956877, 0.99956877,
0.99757146, 0.99757146, 0.99757146, 0.99757146, 0.98940582,
0.98940582, 0.98940582, 0.98940582, 0.96438863, 0.96438863,
0.96438863, 0.96438863, 0.90735626, 0.90735626, 0.90735626,
0.90735626, 0.80924072, 0.80924072, 0.80924072, 0.80924072,
0.69259558, 0.69259558, 0.69259558, 0.69259558, 0.55553296,
0.55553296, 0.55553296, 0.55553296, 0.63553693, 0.63553693,
0.63553693, 0.63553693, 1.41397872, 1.41397872, 1.41397872,
1.41397872, 1.81820124, 1.81820124, 1.81820124, 1.81820124,
1.20387024, 1.20387024, 1.20387024, 1.20387024, 1.01269879,
1.01269879, 1.01269879, 1.01269879, 1.00012068, 1.00012068,
1.00012068, 1.00012068, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.25264676e-14, 1.25264676e-14, 1.25264676e-14, 1.25264676e-14,
1.20223771e-12, 1.20223771e-12, 1.20223771e-12, 1.20223771e-12,
6.76403932e-11, 6.76403932e-11, 6.76403932e-11, 6.76403932e-11,
2.53837542e-09, 2.53837542e-09, 2.53837542e-09, 2.53837542e-09,
6.79851771e-08, 6.79851771e-08, 6.79851771e-08, 6.79851771e-08,
1.35400957e-06, 1.35400957e-06, 1.35400957e-06, 1.35400957e-06,
2.05807406e-05, 2.05807406e-05, 2.05807406e-05, 2.05807406e-05,
2.42573789e-04, 2.42573789e-04, 2.42573789e-04, 2.42573789e-04,
2.23546366e-03, 2.23546366e-03, 2.23546366e-03, 2.23546366e-03,
1.61374184e-02, 1.61374184e-02, 1.61374184e-02, 1.61374184e-02,
9.09392120e-02, 9.09392120e-02, 9.09392120e-02, 9.09392120e-02,
3.97807519e-01, 3.97807519e-01, 3.97807519e-01, 3.97807519e-01,
1.34962483e+00, 1.34962483e+00, 1.34962483e+00, 1.34962483e+00,
3.59635188e+00, 3.59635188e+00, 3.59635188e+00, 3.59635188e+00,
7.76598011e+00, 7.76598011e+00, 7.76598011e+00, 7.76598011e+00,
1.32165654e+01, 1.32165654e+01, 1.32165654e+01, 1.32165654e+01,
1.80416341e+01, 1.80416341e+01, 1.80416341e+01, 1.80416341e+01,
2.21202361e+01, 2.21202361e+01, 2.21202361e+01, 2.21202361e+01,
1.94936742e+01, 1.94936742e+01, 1.94936742e+01, 1.94936742e+01,
1.19370184e+01, 1.19370184e+01, 1.19370184e+01, 1.19370184e+01,
1.76105690e+00, 1.76105690e+00, 1.76105690e+00, 1.76105690e+00,
2.41795528e-02, 2.41795528e-02, 2.41795528e-02, 2.41795528e-02,
1.84851625e-05, 1.84851625e-05, 1.84851625e-05, 1.84851625e-05,
2.29350661e-09, 2.29350661e-09, 2.29350661e-09, 2.29350661e-09,
2.81251593e-13, 2.81251593e-13, 2.81251593e-13, 2.81251593e-13,
3.33754952e-17, 3.33754952e-17, 3.33754952e-17, 3.33754952e-17,
3.64817469e-21, 3.64817469e-21, 3.64817469e-21, 3.64817469e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999949e+02, 9.99999949e+02, 9.99999949e+02, 9.99999949e+02,
9.99999230e+02, 9.99999230e+02, 9.99999230e+02, 9.99999230e+02,
9.99990924e+02, 9.99990924e+02, 9.99990924e+02, 9.99990924e+02,
9.99916362e+02, 9.99916362e+02, 9.99916362e+02, 9.99916362e+02,
9.99396422e+02, 9.99396422e+02, 9.99396422e+02, 9.99396422e+02,
9.96603842e+02, 9.96603842e+02, 9.96603842e+02, 9.96603842e+02,
9.85228286e+02, 9.85228286e+02, 9.85228286e+02, 9.85228286e+02,
9.50716061e+02, 9.50716061e+02, 9.50716061e+02, 9.50716061e+02,
8.73656108e+02, 8.73656108e+02, 8.73656108e+02, 8.73656108e+02,
7.45930207e+02, 7.45930207e+02, 7.45930207e+02, 7.45930207e+02,
5.98241504e+02, 5.98241504e+02, 5.98241504e+02, 5.98241504e+02,
4.88987461e+02, 4.88987461e+02, 4.88987461e+02, 4.88987461e+02,
4.47945739e+02, 4.47945739e+02, 4.47945739e+02, 4.47945739e+02,
4.21683465e+02, 4.21683465e+02, 4.21683465e+02, 4.21683465e+02,
1.87467920e+02, 1.87467920e+02, 1.87467920e+02, 1.87467920e+02,
9.17847574e+00, 9.17847574e+00, 9.17847574e+00, 9.17847574e+00,
3.36232559e-02, 3.36232559e-02, 3.36232559e-02, 3.36232559e-02,
1.00022223e-02, 1.00022223e-02, 1.00022223e-02, 1.00022223e-02,
1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999992, 0.99999992, 0.99999992, 0.99999992,
0.99999906, 0.99999906, 0.99999906, 0.99999906, 0.9999913 ,
0.9999913 , 0.9999913 , 0.9999913 , 0.99993411, 0.99993411,
0.99993411, 0.99993411, 0.99959236, 0.99959236, 0.99959236,
0.99959236, 0.99795381, 0.99795381, 0.99795381, 0.99795381,
0.99173747, 0.99173747, 0.99173747, 0.99173747, 0.97334866,
0.97334866, 0.97334866, 0.97334866, 0.93132225, 0.93132225,
0.93132225, 0.93132225, 0.85670103, 0.85670103, 0.85670103,
0.85670103, 0.75179519, 0.75179519, 0.75179519, 0.75179519,
0.65703686, 0.65703686, 0.65703686, 0.65703686, 0.54101531,
0.54101531, 0.54101531, 0.54101531, 0.58205108, 0.58205108,
0.58205108, 0.58205108, 1.1130807 , 1.1130807 , 1.1130807 ,
1.1130807 , 1.96862265, 1.96862265, 1.96862265, 1.96862265,
1.57590593, 1.57590593, 1.57590593, 1.57590593, 1.05786987,
1.05786987, 1.05786987, 1.05786987, 1.00204055, 1.00204055,
1.00204055, 1.00204055, 1.0000019 , 1.0000019 , 1.0000019 ,
1.0000019 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.32029549e-14, 1.32029549e-14, 1.32029549e-14, 1.32029549e-14,
6.26759693e-13, 6.26759693e-13, 6.26759693e-13, 6.26759693e-13,
2.24647978e-11, 2.24647978e-11, 2.24647978e-11, 2.24647978e-11,
6.13853404e-10, 6.13853404e-10, 6.13853404e-10, 6.13853404e-10,
1.31518549e-08, 1.31518549e-08, 1.31518549e-08, 1.31518549e-08,
2.25105226e-07, 2.25105226e-07, 2.25105226e-07, 2.25105226e-07,
3.11704412e-06, 3.11704412e-06, 3.11704412e-06, 3.11704412e-06,
3.51988240e-05, 3.51988240e-05, 3.51988240e-05, 3.51988240e-05,
3.25473435e-04, 3.25473435e-04, 3.25473435e-04, 3.25473435e-04,
2.46554838e-03, 2.46554838e-03, 2.46554838e-03, 2.46554838e-03,
1.52545971e-02, 1.52545971e-02, 1.52545971e-02, 1.52545971e-02,
7.66123068e-02, 7.66123068e-02, 7.66123068e-02, 7.66123068e-02,
3.10021140e-01, 3.10021140e-01, 3.10021140e-01, 3.10021140e-01,
1.00682526e+00, 1.00682526e+00, 1.00682526e+00, 1.00682526e+00,
2.63965332e+00, 2.63965332e+00, 2.63965332e+00, 2.63965332e+00,
5.70034900e+00, 5.70034900e+00, 5.70034900e+00, 5.70034900e+00,
1.04061053e+01, 1.04061053e+01, 1.04061053e+01, 1.04061053e+01,
1.52105883e+01, 1.52105883e+01, 1.52105883e+01, 1.52105883e+01,
1.89069479e+01, 1.89069479e+01, 1.89069479e+01, 1.89069479e+01,
2.15955068e+01, 2.15955068e+01, 2.15955068e+01, 2.15955068e+01,
2.04770440e+01, 2.04770440e+01, 2.04770440e+01, 2.04770440e+01,
1.67010242e+01, 1.67010242e+01, 1.67010242e+01, 1.67010242e+01,
6.26776546e+00, 6.26776546e+00, 6.26776546e+00, 6.26776546e+00,
2.93122578e-01, 2.93122578e-01, 2.93122578e-01, 2.93122578e-01,
1.07322557e-03, 1.07322557e-03, 1.07322557e-03, 1.07322557e-03,
2.25735626e-07, 2.25735626e-07, 2.25735626e-07, 2.25735626e-07,
2.90996976e-11, 2.90996976e-11, 2.90996976e-11, 2.90996976e-11,
3.74345106e-15, 3.74345106e-15, 3.74345106e-15, 3.74345106e-15,
4.59216061e-19, 4.59216061e-19, 4.59216061e-19, 4.59216061e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999883e+02, 9.99999883e+02, 9.99999883e+02, 9.99999883e+02,
9.99998683e+02, 9.99998683e+02, 9.99998683e+02, 9.99998683e+02,
9.99987822e+02, 9.99987822e+02, 9.99987822e+02, 9.99987822e+02,
9.99907753e+02, 9.99907753e+02, 9.99907753e+02, 9.99907753e+02,
9.99429417e+02, 9.99429417e+02, 9.99429417e+02, 9.99429417e+02,
9.97137849e+02, 9.97137849e+02, 9.97137849e+02, 9.97137849e+02,
9.88467410e+02, 9.88467410e+02, 9.88467410e+02, 9.88467410e+02,
9.63001130e+02, 9.63001130e+02, 9.63001130e+02, 9.63001130e+02,
9.05679035e+02, 9.05679035e+02, 9.05679035e+02, 9.05679035e+02,
8.06647957e+02, 8.06647957e+02, 8.06647957e+02, 8.06647957e+02,
6.73299670e+02, 6.73299670e+02, 6.73299670e+02, 6.73299670e+02,
5.52322864e+02, 5.52322864e+02, 5.52322864e+02, 5.52322864e+02,
4.63896638e+02, 4.63896638e+02, 4.63896638e+02, 4.63896638e+02,
4.40267965e+02, 4.40267965e+02, 4.40267965e+02, 4.40267965e+02,
4.55404885e+02, 4.55404885e+02, 4.55404885e+02, 4.55404885e+02,
3.30608875e+02, 3.30608875e+02, 3.30608875e+02, 3.30608875e+02,
6.09057285e+01, 6.09057285e+01, 6.09057285e+01, 6.09057285e+01,
7.84789333e-01, 7.84789333e-01, 7.84789333e-01, 7.84789333e-01,
1.03005361e-02, 1.03005361e-02, 1.03005361e-02, 1.03005361e-02,
1.00000267e-02, 1.00000267e-02, 1.00000267e-02, 1.00000267e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999871, 0.99999871, 0.99999871, 0.99999871,
0.99998991, 0.99998991, 0.99998991, 0.99998991, 0.99993341,
0.99993341, 0.99993341, 0.99993341, 0.9996311 , 0.9996311 ,
0.9996311 , 0.9996311 , 0.99829672, 0.99829672, 0.99829672,
0.99829672, 0.99350175, 0.99350175, 0.99350175, 0.99350175,
0.97967166, 0.97967166, 0.97967166, 0.97967166, 0.94797565,
0.94797565, 0.94797565, 0.94797565, 0.89016937, 0.89016937,
0.89016937, 0.89016937, 0.80411713, 0.80411713, 0.80411713,
0.80411713, 0.70435588, 0.70435588, 0.70435588, 0.70435588,
0.63219176, 0.63219176, 0.63219176, 0.63219176, 0.53878399,
0.53878399, 0.53878399, 0.53878399, 0.55643947, 0.55643947,
0.55643947, 0.55643947, 0.8772511 , 0.8772511 , 0.8772511 ,
0.8772511 , 1.82224154, 1.82224154, 1.82224154, 1.82224154,
2.01854416, 2.01854416, 2.01854416, 2.01854416, 1.22314586,
1.22314586, 1.22314586, 1.22314586, 1.01361896, 1.01361896,
1.01361896, 1.01361896, 1.00014201, 1.00014201, 1.00014201,
1.00014201, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.66827014e-15, 5.66827014e-15, 5.66827014e-15, 5.66827014e-15,
2.06506951e-13, 2.06506951e-13, 2.06506951e-13, 2.06506951e-13,
5.66830764e-12, 5.66830764e-12, 5.66830764e-12, 5.66830764e-12,
1.27515789e-10, 1.27515789e-10, 1.27515789e-10, 1.27515789e-10,
2.36717323e-09, 2.36717323e-09, 2.36717323e-09, 2.36717323e-09,
3.66285384e-08, 3.66285384e-08, 3.66285384e-08, 3.66285384e-08,
4.75793331e-07, 4.75793331e-07, 4.75793331e-07, 4.75793331e-07,
5.21185121e-06, 5.21185121e-06, 5.21185121e-06, 5.21185121e-06,
4.82519858e-05, 4.82519858e-05, 4.82519858e-05, 4.82519858e-05,
3.77579977e-04, 3.77579977e-04, 3.77579977e-04, 3.77579977e-04,
2.49179255e-03, 2.49179255e-03, 2.49179255e-03, 2.49179255e-03,
1.38047063e-02, 1.38047063e-02, 1.38047063e-02, 1.38047063e-02,
6.37665597e-02, 6.37665597e-02, 6.37665597e-02, 6.37665597e-02,
2.43683102e-01, 2.43683102e-01, 2.43683102e-01, 2.43683102e-01,
7.66223944e-01, 7.66223944e-01, 7.66223944e-01, 7.66223944e-01,
1.98617391e+00, 1.98617391e+00, 1.98617391e+00, 1.98617391e+00,
4.30205955e+00, 4.30205955e+00, 4.30205955e+00, 4.30205955e+00,
8.00059653e+00, 8.00059653e+00, 8.00059653e+00, 8.00059653e+00,
1.25346822e+01, 1.25346822e+01, 1.25346822e+01, 1.25346822e+01,
1.68111435e+01, 1.68111435e+01, 1.68111435e+01, 1.68111435e+01,
1.95788515e+01, 1.95788515e+01, 1.95788515e+01, 1.95788515e+01,
2.10731533e+01, 2.10731533e+01, 2.10731533e+01, 2.10731533e+01,
2.05578258e+01, 2.05578258e+01, 2.05578258e+01, 2.05578258e+01,
1.90079024e+01, 1.90079024e+01, 1.90079024e+01, 1.90079024e+01,
1.21008552e+01, 1.21008552e+01, 1.21008552e+01, 1.21008552e+01,
1.89958249e+00, 1.89958249e+00, 1.89958249e+00, 1.89958249e+00,
2.69248743e-02, 2.69248743e-02, 2.69248743e-02, 2.69248743e-02,
2.23176477e-05, 2.23176477e-05, 2.23176477e-05, 2.23176477e-05,
2.89290650e-09, 2.89290650e-09, 2.89290650e-09, 2.89290650e-09,
3.71325919e-13, 3.71325919e-13, 3.71325919e-13, 3.71325919e-13,
4.73822364e-17, 4.73822364e-17, 4.73822364e-17, 4.73822364e-17,
4.48577786e-21, 4.48577786e-21, 4.48577786e-21, 4.48577786e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999982e+02, 9.99999982e+02, 9.99999982e+02, 9.99999982e+02,
9.99999805e+02, 9.99999805e+02, 9.99999805e+02, 9.99999805e+02,
9.99998195e+02, 9.99998195e+02, 9.99998195e+02, 9.99998195e+02,
9.99985872e+02, 9.99985872e+02, 9.99985872e+02, 9.99985872e+02,
9.99906771e+02, 9.99906771e+02, 9.99906771e+02, 9.99906771e+02,
9.99483625e+02, 9.99483625e+02, 9.99483625e+02, 9.99483625e+02,
9.97617059e+02, 9.97617059e+02, 9.97617059e+02, 9.97617059e+02,
9.90923338e+02, 9.90923338e+02, 9.90923338e+02, 9.90923338e+02,
9.71719329e+02, 9.71719329e+02, 9.71719329e+02, 9.71719329e+02,
9.28208660e+02, 9.28208660e+02, 9.28208660e+02, 9.28208660e+02,
8.50492018e+02, 8.50492018e+02, 8.50492018e+02, 8.50492018e+02,
7.38645328e+02, 7.38645328e+02, 7.38645328e+02, 7.38645328e+02,
6.14927640e+02, 6.14927640e+02, 6.14927640e+02, 6.14927640e+02,
5.21794916e+02, 5.21794916e+02, 5.21794916e+02, 5.21794916e+02,
4.51902595e+02, 4.51902595e+02, 4.51902595e+02, 4.51902595e+02,
4.36518666e+02, 4.36518666e+02, 4.36518666e+02, 4.36518666e+02,
4.58585341e+02, 4.58585341e+02, 4.58585341e+02, 4.58585341e+02,
4.14979500e+02, 4.14979500e+02, 4.14979500e+02, 4.14979500e+02,
1.85583423e+02, 1.85583423e+02, 1.85583423e+02, 1.85583423e+02,
9.86901789e+00, 9.86901789e+00, 9.86901789e+00, 9.86901789e+00,
3.72214496e-02, 3.72214496e-02, 3.72214496e-02, 3.72214496e-02,
1.00026945e-02, 1.00026945e-02, 1.00026945e-02, 1.00026945e-02,
1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999981, 0.99999981,
0.99999981, 0.99999981, 0.99999845, 0.99999845, 0.99999845,
0.99999845, 0.99998928, 0.99998928, 0.99998928, 0.99998928,
0.9999362 , 0.9999362 , 0.9999362 , 0.9999362 , 0.99967491,
0.99967491, 0.99967491, 0.99967491, 0.99859164, 0.99859164,
0.99859164, 0.99859164, 0.99485567, 0.99485567, 0.99485567,
0.99485567, 0.98427987, 0.98427987, 0.98427987, 0.98427987,
0.95996373, 0.95996373, 0.95996373, 0.95996373, 0.91464439,
0.91464439, 0.91464439, 0.91464439, 0.8452093 , 0.8452093 ,
0.8452093 , 0.8452093 , 0.75573999, 0.75573999, 0.75573999,
0.75573999, 0.66831355, 0.66831355, 0.66831355, 0.66831355,
0.61265528, 0.61265528, 0.61265528, 0.61265528, 0.54245435,
0.54245435, 0.54245435, 0.54245435, 0.54720556, 0.54720556,
0.54720556, 0.54720556, 0.73287 , 0.73287 , 0.73287 ,
0.73287 , 1.49708567, 1.49708567, 1.49708567, 1.49708567,
2.23159213, 2.23159213, 2.23159213, 2.23159213, 1.65090941,
1.65090941, 1.65090941, 1.65090941, 1.06180375, 1.06180375,
1.06180375, 1.06180375, 1.00222479, 1.00222479, 1.00222479,
1.00222479, 1.00000228, 1.00000228, 1.00000228, 1.00000228,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.18160649e-15, 1.18160649e-15, 1.18160649e-15, 1.18160649e-15,
5.46295183e-14, 5.46295183e-14, 5.46295183e-14, 5.46295183e-14,
1.23457577e-12, 1.23457577e-12, 1.23457577e-12, 1.23457577e-12,
2.43162832e-11, 2.43162832e-11, 2.43162832e-11, 2.43162832e-11,
4.08347672e-10, 4.08347672e-10, 4.08347672e-10, 4.08347672e-10,
5.88078054e-09, 5.88078054e-09, 5.88078054e-09, 5.88078054e-09,
7.29422461e-08, 7.29422461e-08, 7.29422461e-08, 7.29422461e-08,
7.81392346e-07, 7.81392346e-07, 7.81392346e-07, 7.81392346e-07,
7.23903884e-06, 7.23903884e-06, 7.23903884e-06, 7.23903884e-06,
5.79920652e-05, 5.79920652e-05, 5.79920652e-05, 5.79920652e-05,
4.01085979e-04, 4.01085979e-04, 4.01085979e-04, 4.01085979e-04,
2.38716000e-03, 2.38716000e-03, 2.38716000e-03, 2.38716000e-03,
1.21649982e-02, 1.21649982e-02, 1.21649982e-02, 1.21649982e-02,
5.27208845e-02, 5.27208845e-02, 5.27208845e-02, 5.27208845e-02,
1.92824879e-01, 1.92824879e-01, 1.92824879e-01, 1.92824879e-01,
5.91551803e-01, 5.91551803e-01, 5.91551803e-01, 5.91551803e-01,
1.52124836e+00, 1.52124836e+00, 1.52124836e+00, 1.52124836e+00,
3.30736543e+00, 3.30736543e+00, 3.30736543e+00, 3.30736543e+00,
6.19589413e+00, 6.19589413e+00, 6.19589413e+00, 6.19589413e+00,
1.02215292e+01, 1.02215292e+01, 1.02215292e+01, 1.02215292e+01,
1.42224996e+01, 1.42224996e+01, 1.42224996e+01, 1.42224996e+01,
1.79365451e+01, 1.79365451e+01, 1.79365451e+01, 1.79365451e+01,
2.00798991e+01, 2.00798991e+01, 2.00798991e+01, 2.00798991e+01,
2.07710129e+01, 2.07710129e+01, 2.07710129e+01, 2.07710129e+01,
2.03738724e+01, 2.03738724e+01, 2.03738724e+01, 2.03738724e+01,
1.98546337e+01, 1.98546337e+01, 1.98546337e+01, 1.98546337e+01,
1.64879617e+01, 1.64879617e+01, 1.64879617e+01, 1.64879617e+01,
6.52271251e+00, 6.52271251e+00, 6.52271251e+00, 6.52271251e+00,
3.18021766e-01, 3.18021766e-01, 3.18021766e-01, 3.18021766e-01,
1.23367760e-03, 1.23367760e-03, 1.23367760e-03, 1.23367760e-03,
2.70934864e-07, 2.70934864e-07, 2.70934864e-07, 2.70934864e-07,
3.52019501e-11, 3.52019501e-11, 3.52019501e-11, 3.52019501e-11,
4.64992921e-15, 4.64992921e-15, 4.64992921e-15, 4.64992921e-15,
6.02331549e-19, 6.02331549e-19, 6.02331549e-19, 6.02331549e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999971e+02, 9.99999971e+02, 9.99999971e+02, 9.99999971e+02,
9.99999729e+02, 9.99999729e+02, 9.99999729e+02, 9.99999729e+02,
9.99997830e+02, 9.99997830e+02, 9.99997830e+02, 9.99997830e+02,
9.99984993e+02, 9.99984993e+02, 9.99984993e+02, 9.99984993e+02,
9.99910685e+02, 9.99910685e+02, 9.99910685e+02, 9.99910685e+02,
9.99544941e+02, 9.99544941e+02, 9.99544941e+02, 9.99544941e+02,
9.98029370e+02, 9.98029370e+02, 9.98029370e+02, 9.98029370e+02,
9.92810695e+02, 9.92810695e+02, 9.92810695e+02, 9.92810695e+02,
9.78097477e+02, 9.78097477e+02, 9.78097477e+02, 9.78097477e+02,
9.44564417e+02, 9.44564417e+02, 9.44564417e+02, 9.44564417e+02,
8.83069293e+02, 8.83069293e+02, 8.83069293e+02, 8.83069293e+02,
7.91287043e+02, 7.91287043e+02, 7.91287043e+02, 7.91287043e+02,
6.77341634e+02, 6.77341634e+02, 6.77341634e+02, 6.77341634e+02,
5.71866254e+02, 5.71866254e+02, 5.71866254e+02, 5.71866254e+02,
4.98838482e+02, 4.98838482e+02, 4.98838482e+02, 4.98838482e+02,
4.47748470e+02, 4.47748470e+02, 4.47748470e+02, 4.47748470e+02,
4.36925122e+02, 4.36925122e+02, 4.36925122e+02, 4.36925122e+02,
4.54783175e+02, 4.54783175e+02, 4.54783175e+02, 4.54783175e+02,
4.45896460e+02, 4.45896460e+02, 4.45896460e+02, 4.45896460e+02,
3.20411762e+02, 3.20411762e+02, 3.20411762e+02, 3.20411762e+02,
6.15900758e+01, 6.15900758e+01, 6.15900758e+01, 6.15900758e+01,
8.63421907e-01, 8.63421907e-01, 8.63421907e-01, 8.63421907e-01,
1.03623773e-02, 1.03623773e-02, 1.03623773e-02, 1.03623773e-02,
1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999976,
0.99999976, 0.99999976, 0.99999976, 0.99999829, 0.99999829,
0.99999829, 0.99999829, 0.99998925, 0.99998925, 0.99998925,
0.99998925, 0.99994097, 0.99994097, 0.99994097, 0.99994097,
0.99971837, 0.99971837, 0.99971837, 0.99971837, 0.99883983,
0.99883983, 0.99883983, 0.99883983, 0.99590578, 0.99590578,
0.99590578, 0.99590578, 0.98771715, 0.98771715, 0.98771715,
0.98771715, 0.9688216 , 0.9688216 , 0.9688216 , 0.9688216 ,
0.93291927, 0.93291927, 0.93291927, 0.93291927, 0.87626891,
0.87626891, 0.87626891, 0.87626891, 0.79977768, 0.79977768,
0.79977768, 0.79977768, 0.71616692, 0.71616692, 0.71616692,
0.71616692, 0.6411649 , 0.6411649 , 0.6411649 , 0.6411649 ,
0.59775517, 0.59775517, 0.59775517, 0.59775517, 0.54673392,
0.54673392, 0.54673392, 0.54673392, 0.54631056, 0.54631056,
0.54631056, 0.54631056, 0.65073939, 0.65073939, 0.65073939,
0.65073939, 1.1624501 , 1.1624501 , 1.1624501 , 1.1624501 ,
2.15930703, 2.15930703, 2.15930703, 2.15930703, 2.16998 ,
2.16998 , 2.16998 , 2.16998 , 1.23507778, 1.23507778,
1.23507778, 1.23507778, 1.0142605 , 1.0142605 , 1.0142605 ,
1.0142605 , 1.00015687, 1.00015687, 1.00015687, 1.00015687,
1.00000003, 1.00000003, 1.00000003, 1.00000003, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.27454384e-14, 1.27454384e-14, 1.27454384e-14, 1.27454384e-14,
2.47272091e-13, 2.47272091e-13, 2.47272091e-13, 2.47272091e-13,
4.40240671e-12, 4.40240671e-12, 4.40240671e-12, 4.40240671e-12,
6.86645339e-11, 6.86645339e-11, 6.86645339e-11, 6.86645339e-11,
9.37022264e-10, 9.37022264e-10, 9.37022264e-10, 9.37022264e-10,
1.12236099e-08, 1.12236099e-08, 1.12236099e-08, 1.12236099e-08,
1.18207072e-07, 1.18207072e-07, 1.18207072e-07, 1.18207072e-07,
1.09557226e-06, 1.09557226e-06, 1.09557226e-06, 1.09557226e-06,
8.93418660e-06, 8.93418660e-06, 8.93418660e-06, 8.93418660e-06,
6.40278059e-05, 6.40278059e-05, 6.40278059e-05, 6.40278059e-05,
4.02322799e-04, 4.02322799e-04, 4.02322799e-04, 4.02322799e-04,
2.20855552e-03, 2.20855552e-03, 2.20855552e-03, 2.20855552e-03,
1.05384211e-02, 1.05384211e-02, 1.05384211e-02, 1.05384211e-02,
4.34263931e-02, 4.34263931e-02, 4.34263931e-02, 4.34263931e-02,
1.53409739e-01, 1.53409739e-01, 1.53409739e-01, 1.53409739e-01,
4.61635401e-01, 4.61635401e-01, 4.61635401e-01, 4.61635401e-01,
1.18057615e+00, 1.18057615e+00, 1.18057615e+00, 1.18057615e+00,
2.57891597e+00, 2.57891597e+00, 2.57891597e+00, 2.57891597e+00,
4.88068740e+00, 4.88068740e+00, 4.88068740e+00, 4.88068740e+00,
8.19631338e+00, 8.19631338e+00, 8.19631338e+00, 8.19631338e+00,
1.20755557e+01, 1.20755557e+01, 1.20755557e+01, 1.20755557e+01,
1.56119331e+01, 1.56119331e+01, 1.56119331e+01, 1.56119331e+01,
1.86987153e+01, 1.86987153e+01, 1.86987153e+01, 1.86987153e+01,
2.03804546e+01, 2.03804546e+01, 2.03804546e+01, 2.03804546e+01,
2.06321628e+01, 2.06321628e+01, 2.06321628e+01, 2.06321628e+01,
2.02171402e+01, 2.02171402e+01, 2.02171402e+01, 2.02171402e+01,
2.00646475e+01, 2.00646475e+01, 2.00646475e+01, 2.00646475e+01,
1.86620483e+01, 1.86620483e+01, 1.86620483e+01, 1.86620483e+01,
1.20985558e+01, 1.20985558e+01, 1.20985558e+01, 1.20985558e+01,
1.97692771e+00, 1.97692771e+00, 1.97692771e+00, 1.97692771e+00,
2.87213238e-02, 2.87213238e-02, 2.87213238e-02, 2.87213238e-02,
2.50770351e-05, 2.50770351e-05, 2.50770351e-05, 2.50770351e-05,
3.37123734e-09, 3.37123734e-09, 3.37123734e-09, 3.37123734e-09,
4.42163288e-13, 4.42163288e-13, 4.42163288e-13, 4.42163288e-13,
5.71495239e-17, 5.71495239e-17, 5.71495239e-17, 5.71495239e-17,
4.50269287e-21, 4.50269287e-21, 4.50269287e-21, 4.50269287e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
9.99999666e+02, 9.99999666e+02, 9.99999666e+02, 9.99999666e+02,
9.99997604e+02, 9.99997604e+02, 9.99997604e+02, 9.99997604e+02,
9.99984947e+02, 9.99984947e+02, 9.99984947e+02, 9.99984947e+02,
9.99917367e+02, 9.99917367e+02, 9.99917367e+02, 9.99917367e+02,
9.99605771e+02, 9.99605771e+02, 9.99605771e+02, 9.99605771e+02,
9.98376476e+02, 9.98376476e+02, 9.98376476e+02, 9.98376476e+02,
9.94276002e+02, 9.94276002e+02, 9.94276002e+02, 9.94276002e+02,
9.82867864e+02, 9.82867864e+02, 9.82867864e+02, 9.82867864e+02,
9.56722442e+02, 9.56722442e+02, 9.56722442e+02, 9.56722442e+02,
9.07673554e+02, 9.07673554e+02, 9.07673554e+02, 9.07673554e+02,
8.31875435e+02, 8.31875435e+02, 8.31875435e+02, 8.31875435e+02,
7.32668167e+02, 7.32668167e+02, 7.32668167e+02, 7.32668167e+02,
6.27675900e+02, 6.27675900e+02, 6.27675900e+02, 6.27675900e+02,
5.40641296e+02, 5.40641296e+02, 5.40641296e+02, 5.40641296e+02,
4.81411714e+02, 4.81411714e+02, 4.81411714e+02, 4.81411714e+02,
4.46388141e+02, 4.46388141e+02, 4.46388141e+02, 4.46388141e+02,
4.39501351e+02, 4.39501351e+02, 4.39501351e+02, 4.39501351e+02,
4.52157297e+02, 4.52157297e+02, 4.52157297e+02, 4.52157297e+02,
4.52775903e+02, 4.52775903e+02, 4.52775903e+02, 4.52775903e+02,
4.01828833e+02, 4.01828833e+02, 4.01828833e+02, 4.01828833e+02,
1.79447659e+02, 1.79447659e+02, 1.79447659e+02, 1.79447659e+02,
1.01968433e+01, 1.01968433e+01, 1.01968433e+01, 1.01968433e+01,
3.95481482e-02, 3.95481482e-02, 3.95481482e-02, 3.95481482e-02,
1.00030400e-02, 1.00030400e-02, 1.00030400e-02, 1.00030400e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999973, 0.99999973, 0.99999973, 0.99999973, 0.99999822,
0.99999822, 0.99999822, 0.99999822, 0.99998963, 0.99998963,
0.99998963, 0.99998963, 0.99994668, 0.99994668, 0.99994668,
0.99994668, 0.99975882, 0.99975882, 0.99975882, 0.99975882,
0.99904627, 0.99904627, 0.99904627, 0.99904627, 0.99672714,
0.99672714, 0.99672714, 0.99672714, 0.99032541, 0.99032541,
0.99032541, 0.99032541, 0.97549498, 0.97549498, 0.97549498,
0.97549498, 0.94682189, 0.94682189, 0.94682189, 0.94682189,
0.90035943, 0.90035943, 0.90035943, 0.90035943, 0.83595399,
0.83595399, 0.83595399, 0.83595399, 0.75816608, 0.75816608,
0.75816608, 0.75816608, 0.68548506, 0.68548506, 0.68548506,
0.68548506, 0.6201578 , 0.6201578 , 0.6201578 , 0.6201578 ,
0.58688385, 0.58688385, 0.58688385, 0.58688385, 0.55035053,
0.55035053, 0.55035053, 0.55035053, 0.54815759, 0.54815759,
0.54815759, 0.54815759, 0.6060835 , 0.6060835 , 0.6060835 ,
0.6060835 , 0.93361729, 0.93361729, 0.93361729, 0.93361729,
1.87007459, 1.87007459, 1.87007459, 1.87007459, 2.43252002,
2.43252002, 2.43252002, 2.43252002, 1.69813853, 1.69813853,
1.69813853, 1.69813853, 1.06363124, 1.06363124, 1.06363124,
1.06363124, 1.00230929, 1.00230929, 1.00230929, 1.00230929,
1.00000249, 1.00000249, 1.00000249, 1.00000249, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.17918877e-15, 1.17918877e-15, 1.17918877e-15, 1.17918877e-15,
4.63192568e-14, 4.63192568e-14, 4.63192568e-14, 4.63192568e-14,
7.72269119e-13, 7.72269119e-13, 7.72269119e-13, 7.72269119e-13,
1.13606117e-11, 1.13606117e-11, 1.13606117e-11, 1.13606117e-11,
1.48668973e-10, 1.48668973e-10, 1.48668973e-10, 1.48668973e-10,
1.73273478e-09, 1.73273478e-09, 1.73273478e-09, 1.73273478e-09,
1.80065644e-08, 1.80065644e-08, 1.80065644e-08, 1.80065644e-08,
1.66938246e-07, 1.66938246e-07, 1.66938246e-07, 1.66938246e-07,
1.38047343e-06, 1.38047343e-06, 1.38047343e-06, 1.38047343e-06,
1.01730358e-05, 1.01730358e-05, 1.01730358e-05, 1.01730358e-05,
6.66926861e-05, 6.66926861e-05, 6.66926861e-05, 6.66926861e-05,
3.87946266e-04, 3.87946266e-04, 3.87946266e-04, 3.87946266e-04,
1.99495582e-03, 1.99495582e-03, 1.99495582e-03, 1.99495582e-03,
9.02485988e-03, 9.02485988e-03, 9.02485988e-03, 9.02485988e-03,
3.56969786e-02, 3.56969786e-02, 3.56969786e-02, 3.56969786e-02,
1.22599309e-01, 1.22599309e-01, 1.22599309e-01, 1.22599309e-01,
3.63265196e-01, 3.63265196e-01, 3.63265196e-01, 3.63265196e-01,
9.25486637e-01, 9.25486637e-01, 9.25486637e-01, 9.25486637e-01,
2.03251679e+00, 2.03251679e+00, 2.03251679e+00, 2.03251679e+00,
3.88754026e+00, 3.88754026e+00, 3.88754026e+00, 3.88754026e+00,
6.59692847e+00, 6.59692847e+00, 6.59692847e+00, 6.59692847e+00,
1.00916624e+01, 1.00916624e+01, 1.00916624e+01, 1.00916624e+01,
1.36128329e+01, 1.36128329e+01, 1.36128329e+01, 1.36128329e+01,
1.67200615e+01, 1.67200615e+01, 1.67200615e+01, 1.67200615e+01,
1.92196842e+01, 1.92196842e+01, 1.92196842e+01, 1.92196842e+01,
2.05019813e+01, 2.05019813e+01, 2.05019813e+01, 2.05019813e+01,
2.05553746e+01, 2.05553746e+01, 2.05553746e+01, 2.05553746e+01,
2.01200849e+01, 2.01200849e+01, 2.01200849e+01, 2.01200849e+01,
2.00852609e+01, 2.00852609e+01, 2.00852609e+01, 2.00852609e+01,
1.95505845e+01, 1.95505845e+01, 1.95505845e+01, 1.95505845e+01,
1.62261910e+01, 1.62261910e+01, 1.62261910e+01, 1.62261910e+01,
6.54866545e+00, 6.54866545e+00, 6.54866545e+00, 6.54866545e+00,
3.24170699e-01, 3.24170699e-01, 3.24170699e-01, 3.24170699e-01,
1.29707680e-03, 1.29707680e-03, 1.29707680e-03, 1.29707680e-03,
2.95706974e-07, 2.95706974e-07, 2.95706974e-07, 2.95706974e-07,
3.91707739e-11, 3.91707739e-11, 3.91707739e-11, 3.91707739e-11,
5.29501501e-15, 5.29501501e-15, 5.29501501e-15, 5.29501501e-15,
6.89647830e-19, 6.89647830e-19, 6.89647830e-19, 6.89647830e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999948e+02, 9.99999948e+02, 9.99999948e+02, 9.99999948e+02,
9.99999619e+02, 9.99999619e+02, 9.99999619e+02, 9.99999619e+02,
9.99997505e+02, 9.99997505e+02, 9.99997505e+02, 9.99997505e+02,
9.99985485e+02, 9.99985485e+02, 9.99985485e+02, 9.99985485e+02,
9.99925359e+02, 9.99925359e+02, 9.99925359e+02, 9.99925359e+02,
9.99662381e+02, 9.99662381e+02, 9.99662381e+02, 9.99662381e+02,
9.98665240e+02, 9.98665240e+02, 9.98665240e+02, 9.98665240e+02,
9.95422968e+02, 9.95422968e+02, 9.95422968e+02, 9.95422968e+02,
9.86494880e+02, 9.86494880e+02, 9.86494880e+02, 9.86494880e+02,
9.65922616e+02, 9.65922616e+02, 9.65922616e+02, 9.65922616e+02,
9.26549448e+02, 9.26549448e+02, 9.26549448e+02, 9.26549448e+02,
8.63811003e+02, 8.63811003e+02, 8.63811003e+02, 8.63811003e+02,
7.79005137e+02, 7.79005137e+02, 7.79005137e+02, 7.79005137e+02,
6.79897934e+02, 6.79897934e+02, 6.79897934e+02, 6.79897934e+02,
5.89818941e+02, 5.89818941e+02, 5.89818941e+02, 5.89818941e+02,
5.17012382e+02, 5.17012382e+02, 5.17012382e+02, 5.17012382e+02,
4.68673522e+02, 4.68673522e+02, 4.68673522e+02, 4.68673522e+02,
4.45586337e+02, 4.45586337e+02, 4.45586337e+02, 4.45586337e+02,
4.42497030e+02, 4.42497030e+02, 4.42497030e+02, 4.42497030e+02,
4.51096789e+02, 4.51096789e+02, 4.51096789e+02, 4.51096789e+02,
4.53476996e+02, 4.53476996e+02, 4.53476996e+02, 4.53476996e+02,
4.36824668e+02, 4.36824668e+02, 4.36824668e+02, 4.36824668e+02,
3.07120077e+02, 3.07120077e+02, 3.07120077e+02, 3.07120077e+02,
5.92749963e+01, 5.92749963e+01, 5.92749963e+01, 5.92749963e+01,
8.68726123e-01, 8.68726123e-01, 8.68726123e-01, 8.68726123e-01,
1.03848280e-02, 1.03848280e-02, 1.03848280e-02, 1.03848280e-02,
1.00000350e-02, 1.00000350e-02, 1.00000350e-02, 1.00000350e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999996, 0.99999996, 0.99999996,
0.99999996, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
0.99999822, 0.99999822, 0.99999822, 0.99999822, 0.99999028,
0.99999028, 0.99999028, 0.99999028, 0.99995266, 0.99995266,
0.99995266, 0.99995266, 0.99979512, 0.99979512, 0.99979512,
0.99979512, 0.99921684, 0.99921684, 0.99921684, 0.99921684,
0.99737403, 0.99737403, 0.99737403, 0.99737403, 0.9923308 ,
0.9923308 , 0.9923308 , 0.9923308 , 0.98059926, 0.98059926,
0.98059926, 0.98059926, 0.95755427, 0.95755427, 0.95755427,
0.95755427, 0.91927574, 0.91927574, 0.91927574, 0.91927574,
0.86476987, 0.86476987, 0.86476987, 0.86476987, 0.79618357,
0.79618357, 0.79618357, 0.79618357, 0.72306218, 0.72306218,
0.72306218, 0.72306218, 0.66150523, 0.66150523, 0.66150523,
0.66150523, 0.60422085, 0.60422085, 0.60422085, 0.60422085,
0.57924424, 0.57924424, 0.57924424, 0.57924424, 0.55336757,
0.55336757, 0.55336757, 0.55336757, 0.55041993, 0.55041993,
0.55041993, 0.55041993, 0.58277776, 0.58277776, 0.58277776,
0.58277776, 0.78662431, 0.78662431, 0.78662431, 0.78662431,
1.48769623, 1.48769623, 1.48769623, 1.48769623, 2.43758196,
2.43758196, 2.43758196, 2.43758196, 2.27678193, 2.27678193,
2.27678193, 2.27678193, 1.23532054, 1.23532054, 1.23532054,
1.23532054, 1.0142013 , 1.0142013 , 1.0142013 , 1.0142013 ,
1.00015564, 1.00015564, 1.00015564, 1.00015564, 1.00000003,
1.00000003, 1.00000003, 1.00000003, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
7.84780571e-15, 7.84780571e-15, 7.84780571e-15, 7.84780571e-15,
1.31247225e-13, 1.31247225e-13, 1.31247225e-13, 1.31247225e-13,
1.86099744e-12, 1.86099744e-12, 1.86099744e-12, 1.86099744e-12,
2.35229555e-11, 2.35229555e-11, 2.35229555e-11, 2.35229555e-11,
2.68230159e-10, 2.68230159e-10, 2.68230159e-10, 2.68230159e-10,
2.75761076e-09, 2.75761076e-09, 2.75761076e-09, 2.75761076e-09,
2.55719231e-08, 2.55719231e-08, 2.55719231e-08, 2.55719231e-08,
2.13858422e-07, 2.13858422e-07, 2.13858422e-07, 2.13858422e-07,
1.61179086e-06, 1.61179086e-06, 1.61179086e-06, 1.61179086e-06,
1.09330523e-05, 1.09330523e-05, 1.09330523e-05, 1.09330523e-05,
6.66147485e-05, 6.66147485e-05, 6.66147485e-05, 6.66147485e-05,
3.63590132e-04, 3.63590132e-04, 3.63590132e-04, 3.63590132e-04,
1.77131328e-03, 1.77131328e-03, 1.77131328e-03, 1.77131328e-03,
7.66654068e-03, 7.66654068e-03, 7.66654068e-03, 7.66654068e-03,
2.93110700e-02, 2.93110700e-02, 2.93110700e-02, 2.93110700e-02,
9.83453389e-02, 9.83453389e-02, 9.83453389e-02, 9.83453389e-02,
2.87757346e-01, 2.87757346e-01, 2.87757346e-01, 2.87757346e-01,
7.31271666e-01, 7.31271666e-01, 7.31271666e-01, 7.31271666e-01,
1.61513497e+00, 1.61513497e+00, 1.61513497e+00, 1.61513497e+00,
3.12319769e+00, 3.12319769e+00, 3.12319769e+00, 3.12319769e+00,
5.36427327e+00, 5.36427327e+00, 5.36427327e+00, 5.36427327e+00,
8.35732099e+00, 8.35732099e+00, 8.35732099e+00, 8.35732099e+00,
1.16892047e+01, 1.16892047e+01, 1.16892047e+01, 1.16892047e+01,
1.49052400e+01, 1.49052400e+01, 1.49052400e+01, 1.49052400e+01,
1.76214127e+01, 1.76214127e+01, 1.76214127e+01, 1.76214127e+01,
1.95882774e+01, 1.95882774e+01, 1.95882774e+01, 1.95882774e+01,
2.05031852e+01, 2.05031852e+01, 2.05031852e+01, 2.05031852e+01,
2.04829872e+01, 2.04829872e+01, 2.04829872e+01, 2.04829872e+01,
2.00863226e+01, 2.00863226e+01, 2.00863226e+01, 2.00863226e+01,
2.00679880e+01, 2.00679880e+01, 2.00679880e+01, 2.00679880e+01,
1.98869708e+01, 1.98869708e+01, 1.98869708e+01, 1.98869708e+01,
1.83990451e+01, 1.83990451e+01, 1.83990451e+01, 1.83990451e+01,
1.18973605e+01, 1.18973605e+01, 1.18973605e+01, 1.18973605e+01,
1.92593412e+00, 1.92593412e+00, 1.92593412e+00, 1.92593412e+00,
2.78926539e-02, 2.78926539e-02, 2.78926539e-02, 2.78926539e-02,
2.46303900e-05, 2.46303900e-05, 2.46303900e-05, 2.46303900e-05,
3.45965769e-09, 3.45965769e-09, 3.45965769e-09, 3.45965769e-09,
4.70814125e-13, 4.70814125e-13, 4.70814125e-13, 4.70814125e-13,
6.25944971e-17, 6.25944971e-17, 6.25944971e-17, 6.25944971e-17,
1.40917331e-20, 1.40917331e-20, 1.40917331e-20, 1.40917331e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999940e+02, 9.99999940e+02, 9.99999940e+02, 9.99999940e+02,
9.99999591e+02, 9.99999591e+02, 9.99999591e+02, 9.99999591e+02,
9.99997508e+02, 9.99997508e+02, 9.99997508e+02, 9.99997508e+02,
9.99986396e+02, 9.99986396e+02, 9.99986396e+02, 9.99986396e+02,
9.99933726e+02, 9.99933726e+02, 9.99933726e+02, 9.99933726e+02,
9.99713187e+02, 9.99713187e+02, 9.99713187e+02, 9.99713187e+02,
9.98903881e+02, 9.98903881e+02, 9.98903881e+02, 9.98903881e+02,
9.96326802e+02, 9.96326802e+02, 9.96326802e+02, 9.96326802e+02,
9.89287663e+02, 9.89287663e+02, 9.89287663e+02, 9.89287663e+02,
9.72982839e+02, 9.72982839e+02, 9.72982839e+02, 9.72982839e+02,
9.41213875e+02, 9.41213875e+02, 9.41213875e+02, 9.41213875e+02,
8.89161214e+02, 8.89161214e+02, 8.89161214e+02, 8.89161214e+02,
8.16557244e+02, 8.16557244e+02, 8.16557244e+02, 8.16557244e+02,
7.27792873e+02, 7.27792873e+02, 7.27792873e+02, 7.27792873e+02,
6.36091679e+02, 6.36091679e+02, 6.36091679e+02, 6.36091679e+02,
5.60608656e+02, 5.60608656e+02, 5.60608656e+02, 5.60608656e+02,
4.99456928e+02, 4.99456928e+02, 4.99456928e+02, 4.99456928e+02,
4.59916263e+02, 4.59916263e+02, 4.59916263e+02, 4.59916263e+02,
4.44832936e+02, 4.44832936e+02, 4.44832936e+02, 4.44832936e+02,
4.44855833e+02, 4.44855833e+02, 4.44855833e+02, 4.44855833e+02,
4.51329612e+02, 4.51329612e+02, 4.51329612e+02, 4.51329612e+02,
4.53075538e+02, 4.53075538e+02, 4.53075538e+02, 4.53075538e+02,
4.48914983e+02, 4.48914983e+02, 4.48914983e+02, 4.48914983e+02,
3.89344412e+02, 3.89344412e+02, 3.89344412e+02, 3.89344412e+02,
1.69288930e+02, 1.69288930e+02, 1.69288930e+02, 1.69288930e+02,
9.65027996e+00, 9.65027996e+00, 9.65027996e+00, 9.65027996e+00,
3.79449184e-02, 3.79449184e-02, 3.79449184e-02, 3.79449184e-02,
1.00029784e-02, 1.00029784e-02, 1.00029784e-02, 1.00029784e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.9999997 , 0.9999997 , 0.9999997 ,
0.9999997 , 0.99999828, 0.99999828, 0.99999828, 0.99999828,
0.99999108, 0.99999108, 0.99999108, 0.99999108, 0.9999585 ,
0.9999585 , 0.9999585 , 0.9999585 , 0.99982697, 0.99982697,
0.99982697, 0.99982697, 0.99935725, 0.99935725, 0.99935725,
0.99935725, 0.99788644, 0.99788644, 0.99788644, 0.99788644,
0.99388871, 0.99388871, 0.99388871, 0.99388871, 0.98455003,
0.98455003, 0.98455003, 0.98455003, 0.96593499, 0.96593499,
0.96593499, 0.96593499, 0.9342993 , 0.9342993 , 0.9342993 ,
0.9342993 , 0.88804292, 0.88804292, 0.88804292, 0.88804292,
0.82849089, 0.82849089, 0.82849089, 0.82849089, 0.75995557,
0.75995557, 0.75995557, 0.75995557, 0.6948101 , 0.6948101 ,
0.6948101 , 0.6948101 , 0.64178791, 0.64178791, 0.64178791,
0.64178791, 0.59207003, 0.59207003, 0.59207003, 0.59207003,
0.57419756, 0.57419756, 0.57419756, 0.57419756, 0.55596457,
0.55596457, 0.55596457, 0.55596457, 0.5528484 , 0.5528484 ,
0.5528484 , 0.5528484 , 0.57066328, 0.57066328, 0.57066328,
0.57066328, 0.69535413, 0.69535413, 0.69535413, 0.69535413,
1.17867884, 1.17867884, 1.17867884, 1.17867884, 2.21167836,
2.21167836, 2.21167836, 2.21167836, 2.60264521, 2.60264521,
2.60264521, 2.60264521, 1.7128863 , 1.7128863 , 1.7128863 ,
1.7128863 , 1.06202573, 1.06202573, 1.06202573, 1.06202573,
1.00220672, 1.00220672, 1.00220672, 1.00220672, 1.00000228,
1.00000228, 1.00000228, 1.00000228, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.82667535e-16, 5.82667535e-16, 5.82667535e-16, 5.82667535e-16,
2.37807029e-14, 2.37807029e-14, 2.37807029e-14, 2.37807029e-14,
3.03202404e-13, 3.03202404e-13, 3.03202404e-13, 3.03202404e-13,
3.71371250e-12, 3.71371250e-12, 3.71371250e-12, 3.71371250e-12,
4.16077225e-11, 4.16077225e-11, 4.16077225e-11, 4.16077225e-11,
4.24016982e-10, 4.24016982e-10, 4.24016982e-10, 4.24016982e-10,
3.93302512e-09, 3.93302512e-09, 3.93302512e-09, 3.93302512e-09,
3.32002473e-08, 3.32002473e-08, 3.32002473e-08, 3.32002473e-08,
2.54903725e-07, 2.54903725e-07, 2.54903725e-07, 2.54903725e-07,
1.77822075e-06, 1.77822075e-06, 1.77822075e-06, 1.77822075e-06,
1.12541158e-05, 1.12541158e-05, 1.12541158e-05, 1.12541158e-05,
6.44841773e-05, 6.44841773e-05, 6.44841773e-05, 6.44841773e-05,
3.33602038e-04, 3.33602038e-04, 3.33602038e-04, 3.33602038e-04,
1.55281901e-03, 1.55281901e-03, 1.55281901e-03, 1.55281901e-03,
6.47471971e-03, 6.47471971e-03, 6.47471971e-03, 6.47471971e-03,
2.40547896e-02, 2.40547896e-02, 2.40547896e-02, 2.40547896e-02,
7.91410207e-02, 7.91410207e-02, 7.91410207e-02, 7.91410207e-02,
2.29173025e-01, 2.29173025e-01, 2.29173025e-01, 2.29173025e-01,
5.81473724e-01, 5.81473724e-01, 5.81473724e-01, 5.81473724e-01,
1.29181150e+00, 1.29181150e+00, 1.29181150e+00, 1.29181150e+00,
2.52541673e+00, 2.52541673e+00, 2.52541673e+00, 2.52541673e+00,
4.39364483e+00, 4.39364483e+00, 4.39364483e+00, 4.39364483e+00,
6.92177553e+00, 6.92177553e+00, 6.92177553e+00, 6.92177553e+00,
1.00062705e+01, 1.00062705e+01, 1.00062705e+01, 1.00062705e+01,
1.30551463e+01, 1.30551463e+01, 1.30551463e+01, 1.30551463e+01,
1.59467542e+01, 1.59467542e+01, 1.59467542e+01, 1.59467542e+01,
1.83397628e+01, 1.83397628e+01, 1.83397628e+01, 1.83397628e+01,
1.98657446e+01, 1.98657446e+01, 1.98657446e+01, 1.98657446e+01,
2.04639329e+01, 2.04639329e+01, 2.04639329e+01, 2.04639329e+01,
2.03869143e+01, 2.03869143e+01, 2.03869143e+01, 2.03869143e+01,
2.00832064e+01, 2.00832064e+01, 2.00832064e+01, 2.00832064e+01,
2.00558910e+01, 2.00558910e+01, 2.00558910e+01, 2.00558910e+01,
1.99917512e+01, 1.99917512e+01, 1.99917512e+01, 1.99917512e+01,
1.93663021e+01, 1.93663021e+01, 1.93663021e+01, 1.93663021e+01,
1.59156770e+01, 1.59156770e+01, 1.59156770e+01, 1.59156770e+01,
6.34602264e+00, 6.34602264e+00, 6.34602264e+00, 6.34602264e+00,
3.03838005e-01, 3.03838005e-01, 3.03838005e-01, 3.03838005e-01,
1.18263967e-03, 1.18263967e-03, 1.18263967e-03, 1.18263967e-03,
2.70515192e-07, 2.70515192e-07, 2.70515192e-07, 2.70515192e-07,
3.73495771e-11, 3.73495771e-11, 3.73495771e-11, 3.73495771e-11,
5.26225555e-15, 5.26225555e-15, 5.26225555e-15, 5.26225555e-15,
7.33233058e-19, 7.33233058e-19, 7.33233058e-19, 7.33233058e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
9.99999933e+02, 9.99999933e+02, 9.99999933e+02, 9.99999933e+02,
9.99999579e+02, 9.99999579e+02, 9.99999579e+02, 9.99999579e+02,
9.99997587e+02, 9.99997587e+02, 9.99997587e+02, 9.99997587e+02,
9.99987518e+02, 9.99987518e+02, 9.99987518e+02, 9.99987518e+02,
9.99941901e+02, 9.99941901e+02, 9.99941901e+02, 9.99941901e+02,
9.99757768e+02, 9.99757768e+02, 9.99757768e+02, 9.99757768e+02,
9.99100354e+02, 9.99100354e+02, 9.99100354e+02, 9.99100354e+02,
9.97043041e+02, 9.97043041e+02, 9.97043041e+02, 9.97043041e+02,
9.91459711e+02, 9.91459711e+02, 9.91459711e+02, 9.91459711e+02,
9.78461298e+02, 9.78461298e+02, 9.78461298e+02, 9.78461298e+02,
9.52721066e+02, 9.52721066e+02, 9.52721066e+02, 9.52721066e+02,
9.09464048e+02, 9.09464048e+02, 9.09464048e+02, 9.09464048e+02,
8.47290240e+02, 8.47290240e+02, 8.47290240e+02, 8.47290240e+02,
7.69147303e+02, 7.69147303e+02, 7.69147303e+02, 7.69147303e+02,
6.81824841e+02, 6.81824841e+02, 6.81824841e+02, 6.81824841e+02,
6.01613262e+02, 6.01613262e+02, 6.01613262e+02, 6.01613262e+02,
5.36678519e+02, 5.36678519e+02, 5.36678519e+02, 5.36678519e+02,
4.86252372e+02, 4.86252372e+02, 4.86252372e+02, 4.86252372e+02,
4.54602117e+02, 4.54602117e+02, 4.54602117e+02, 4.54602117e+02,
4.44345600e+02, 4.44345600e+02, 4.44345600e+02, 4.44345600e+02,
4.46359684e+02, 4.46359684e+02, 4.46359684e+02, 4.46359684e+02,
4.51901635e+02, 4.51901635e+02, 4.51901635e+02, 4.51901635e+02,
4.52889504e+02, 4.52889504e+02, 4.52889504e+02, 4.52889504e+02,
4.52265646e+02, 4.52265646e+02, 4.52265646e+02, 4.52265646e+02,
4.29084128e+02, 4.29084128e+02, 4.29084128e+02, 4.29084128e+02,
2.92805528e+02, 2.92805528e+02, 2.92805528e+02, 2.92805528e+02,
5.43708093e+01, 5.43708093e+01, 5.43708093e+01, 5.43708093e+01,
7.81644380e-01, 7.81644380e-01, 7.81644380e-01, 7.81644380e-01,
1.03355903e-02, 1.03355903e-02, 1.03355903e-02, 1.03355903e-02,
1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.9999997 , 0.9999997 ,
0.9999997 , 0.9999997 , 0.99999837, 0.99999837, 0.99999837,
0.99999837, 0.99999195, 0.99999195, 0.99999195, 0.99999195,
0.99996397, 0.99996397, 0.99996397, 0.99996397, 0.9998545 ,
0.9998545 , 0.9998545 , 0.9998545 , 0.9994726 , 0.9994726 ,
0.9994726 , 0.9994726 , 0.9982943 , 0.9982943 , 0.9982943 ,
0.9982943 , 0.99510915, 0.99510915, 0.99510915, 0.99510915,
0.98763719, 0.98763719, 0.98763719, 0.98763719, 0.97253998,
0.97253998, 0.97253998, 0.97253998, 0.94633146, 0.94633146,
0.94633146, 0.94633146, 0.90701242, 0.90701242, 0.90701242,
0.90701242, 0.85516088, 0.85516088, 0.85516088, 0.85516088,
0.79324114, 0.79324114, 0.79324114, 0.79324114, 0.72928116,
0.72928116, 0.72928116, 0.72928116, 0.67174921, 0.67174921,
0.67174921, 0.67174921, 0.62584268, 0.62584268, 0.62584268,
0.62584268, 0.58259287, 0.58259287, 0.58259287, 0.58259287,
0.57068029, 0.57068029, 0.57068029, 0.57068029, 0.55836177,
0.55836177, 0.55836177, 0.55836177, 0.55573867, 0.55573867,
0.55573867, 0.55573867, 0.56443057, 0.56443057, 0.56443057,
0.56443057, 0.6395892 , 0.6395892 , 0.6395892 , 0.6395892 ,
0.96358615, 0.96358615, 0.96358615, 0.96358615, 1.83549949,
1.83549949, 1.83549949, 1.83549949, 2.66715283, 2.66715283,
2.66715283, 2.66715283, 2.3438958 , 2.3438958 , 2.3438958 ,
2.3438958 , 1.22354901, 1.22354901, 1.22354901, 1.22354901,
1.01330763, 1.01330763, 1.01330763, 1.01330763, 1.00013509,
1.00013509, 1.00013509, 1.00013509, 1.00000003, 1.00000003,
1.00000003, 1.00000003, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
3.27252719e-15, 3.27252719e-15, 3.27252719e-15, 3.27252719e-15,
5.02048681e-14, 5.02048681e-14, 5.02048681e-14, 5.02048681e-14,
5.87307060e-13, 5.87307060e-13, 5.87307060e-13, 5.87307060e-13,
6.46241559e-12, 6.46241559e-12, 6.46241559e-12, 6.46241559e-12,
6.53785309e-11, 6.53785309e-11, 6.53785309e-11, 6.53785309e-11,
6.06614778e-10, 6.06614778e-10, 6.06614778e-10, 6.06614778e-10,
5.16153797e-09, 5.16153797e-09, 5.16153797e-09, 5.16153797e-09,
4.02536022e-08, 4.02536022e-08, 4.02536022e-08, 4.02536022e-08,
2.87499828e-07, 2.87499828e-07, 2.87499828e-07, 2.87499828e-07,
1.87827130e-06, 1.87827130e-06, 1.87827130e-06, 1.87827130e-06,
1.12063726e-05, 1.12063726e-05, 1.12063726e-05, 1.12063726e-05,
6.09321654e-05, 6.09321654e-05, 6.09321654e-05, 6.09321654e-05,
3.01124184e-04, 3.01124184e-04, 3.01124184e-04, 3.01124184e-04,
1.34806658e-03, 1.34806658e-03, 1.34806658e-03, 1.34806658e-03,
5.44437268e-03, 5.44437268e-03, 5.44437268e-03, 5.44437268e-03,
1.97371145e-02, 1.97371145e-02, 1.97371145e-02, 1.97371145e-02,
6.38597905e-02, 6.38597905e-02, 6.38597905e-02, 6.38597905e-02,
1.83325531e-01, 1.83325531e-01, 1.83325531e-01, 1.83325531e-01,
4.64737704e-01, 4.64737704e-01, 4.64737704e-01, 4.64737704e-01,
1.03856729e+00, 1.03856729e+00, 1.03856729e+00, 1.03856729e+00,
2.05236016e+00, 2.05236016e+00, 2.05236016e+00, 2.05236016e+00,
3.61812720e+00, 3.61812720e+00, 3.61812720e+00, 3.61812720e+00,
5.77166819e+00, 5.77166819e+00, 5.77166819e+00, 5.77166819e+00,
8.48843316e+00, 8.48843316e+00, 8.48843316e+00, 8.48843316e+00,
1.14236988e+01, 1.14236988e+01, 1.14236988e+01, 1.14236988e+01,
1.42358355e+01, 1.42358355e+01, 1.42358355e+01, 1.42358355e+01,
1.68025698e+01, 1.68025698e+01, 1.68025698e+01, 1.68025698e+01,
1.88802206e+01, 1.88802206e+01, 1.88802206e+01, 1.88802206e+01,
2.00711843e+01, 2.00711843e+01, 2.00711843e+01, 2.00711843e+01,
2.04384777e+01, 2.04384777e+01, 2.04384777e+01, 2.04384777e+01,
2.02877280e+01, 2.02877280e+01, 2.02877280e+01, 2.02877280e+01,
2.00672694e+01, 2.00672694e+01, 2.00672694e+01, 2.00672694e+01,
2.00505256e+01, 2.00505256e+01, 2.00505256e+01, 2.00505256e+01,
2.00195354e+01, 2.00195354e+01, 2.00195354e+01, 2.00195354e+01,
1.97774623e+01, 1.97774623e+01, 1.97774623e+01, 1.97774623e+01,
1.81444582e+01, 1.81444582e+01, 1.81444582e+01, 1.81444582e+01,
1.15550729e+01, 1.15550729e+01, 1.15550729e+01, 1.15550729e+01,
1.77081733e+00, 1.77081733e+00, 1.77081733e+00, 1.77081733e+00,
2.44888120e-02, 2.44888120e-02, 2.44888120e-02, 2.44888120e-02,
2.06002983e-05, 2.06002983e-05, 2.06002983e-05, 2.06002983e-05,
2.98049908e-09, 2.98049908e-09, 2.98049908e-09, 2.98049908e-09,
4.19450571e-13, 4.19450571e-13, 4.19450571e-13, 4.19450571e-13,
5.78774071e-17, 5.78774071e-17, 5.78774071e-17, 5.78774071e-17,
4.37610151e-21, 4.37610151e-21, 4.37610151e-21, 4.37610151e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
9.99999930e+02, 9.99999930e+02, 9.99999930e+02, 9.99999930e+02,
9.99999581e+02, 9.99999581e+02, 9.99999581e+02, 9.99999581e+02,
9.99997720e+02, 9.99997720e+02, 9.99997720e+02, 9.99997720e+02,
9.99988733e+02, 9.99988733e+02, 9.99988733e+02, 9.99988733e+02,
9.99949561e+02, 9.99949561e+02, 9.99949561e+02, 9.99949561e+02,
9.99796311e+02, 9.99796311e+02, 9.99796311e+02, 9.99796311e+02,
9.99261774e+02, 9.99261774e+02, 9.99261774e+02, 9.99261774e+02,
9.97613331e+02, 9.97613331e+02, 9.97613331e+02, 9.97613331e+02,
9.93162704e+02, 9.93162704e+02, 9.93162704e+02, 9.93162704e+02,
9.82750522e+02, 9.82750522e+02, 9.82750522e+02, 9.82750522e+02,
9.61824610e+02, 9.61824610e+02, 9.61824610e+02, 9.61824610e+02,
9.25831706e+02, 9.25831706e+02, 9.25831706e+02, 9.25831706e+02,
8.72601859e+02, 8.72601859e+02, 8.72601859e+02, 8.72601859e+02,
8.03814503e+02, 8.03814503e+02, 8.03814503e+02, 8.03814503e+02,
7.23838409e+02, 7.23838409e+02, 7.23838409e+02, 7.23838409e+02,
6.43384851e+02, 6.43384851e+02, 6.43384851e+02, 6.43384851e+02,
5.74112241e+02, 5.74112241e+02, 5.74112241e+02, 5.74112241e+02,
5.17349942e+02, 5.17349942e+02, 5.17349942e+02, 5.17349942e+02,
4.75919956e+02, 4.75919956e+02, 4.75919956e+02, 4.75919956e+02,
4.51607155e+02, 4.51607155e+02, 4.51607155e+02, 4.51607155e+02,
4.44470585e+02, 4.44470585e+02, 4.44470585e+02, 4.44470585e+02,
4.47515366e+02, 4.47515366e+02, 4.47515366e+02, 4.47515366e+02,
4.52054920e+02, 4.52054920e+02, 4.52054920e+02, 4.52054920e+02,
4.52910758e+02, 4.52910758e+02, 4.52910758e+02, 4.52910758e+02,
4.53087888e+02, 4.53087888e+02, 4.53087888e+02, 4.53087888e+02,
4.45232329e+02, 4.45232329e+02, 4.45232329e+02, 4.45232329e+02,
3.77819444e+02, 3.77819444e+02, 3.77819444e+02, 3.77819444e+02,
1.56913286e+02, 1.56913286e+02, 1.56913286e+02, 1.56913286e+02,
8.48730097e+00, 8.48730097e+00, 8.48730097e+00, 8.48730097e+00,
3.29887631e-02, 3.29887631e-02, 3.29887631e-02, 3.29887631e-02,
1.00024710e-02, 1.00024710e-02, 1.00024710e-02, 1.00024710e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999971,
0.99999971, 0.99999971, 0.99999971, 0.99999849, 0.99999849,
0.99999849, 0.99999849, 0.99999283, 0.99999283, 0.99999283,
0.99999283, 0.99996896, 0.99996896, 0.99996896, 0.99996896,
0.99987805, 0.99987805, 0.99987805, 0.99987805, 0.99956724,
0.99956724, 0.99956724, 0.99956724, 0.99862027, 0.99862027,
0.99862027, 0.99862027, 0.99607172, 0.99607172, 0.99607172,
0.99607172, 0.99006817, 0.99006817, 0.99006817, 0.99006817,
0.97778423, 0.97778423, 0.97778423, 0.97778423, 0.95603297,
0.95603297, 0.95603297, 0.95603297, 0.92259283, 0.92259283,
0.92259283, 0.92259283, 0.87738557, 0.87738557, 0.87738557,
0.87738557, 0.82228577, 0.82228577, 0.82228577, 0.82228577,
0.76124912, 0.76124912, 0.76124912, 0.76124912, 0.7039925 ,
0.7039925 , 0.7039925 , 0.7039925 , 0.65236277, 0.65236277,
0.65236277, 0.65236277, 0.6131337 , 0.6131337 , 0.6131337 ,
0.6131337 , 0.57531994, 0.57531994, 0.57531994, 0.57531994,
0.56785759, 0.56785759, 0.56785759, 0.56785759, 0.56038513,
0.56038513, 0.56038513, 0.56038513, 0.55900443, 0.55900443,
0.55900443, 0.55900443, 0.56184189, 0.56184189, 0.56184189,
0.56184189, 0.60586371, 0.60586371, 0.60586371, 0.60586371,
0.81871248, 0.81871248, 0.81871248, 0.81871248, 1.4581625 ,
1.4581625 , 1.4581625 , 1.4581625 , 2.52120104, 2.52120104,
2.52120104, 2.52120104, 2.74380791, 2.74380791, 2.74380791,
2.74380791, 1.69735103, 1.69735103, 1.69735103, 1.69735103,
1.0575523 , 1.0575523 , 1.0575523 , 1.0575523 , 1.00195343,
1.00195343, 1.00195343, 1.00195343, 1.00000178, 1.00000178,
1.00000178, 1.00000178, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.91889946e-15, 5.91889946e-15, 5.91889946e-15, 5.91889946e-15,
9.30184492e-14, 9.30184492e-14, 9.30184492e-14, 9.30184492e-14,
1.00936002e-12, 1.00936002e-12, 1.00936002e-12, 1.00936002e-12,
1.01033815e-11, 1.01033815e-11, 1.01033815e-11, 1.01033815e-11,
9.37627227e-11, 9.37627227e-11, 9.37627227e-11, 9.37627227e-11,
8.03306517e-10, 8.03306517e-10, 8.03306517e-10, 8.03306517e-10,
6.34932257e-09, 6.34932257e-09, 6.34932257e-09, 6.34932257e-09,
4.62683708e-08, 4.62683708e-08, 4.62683708e-08, 4.62683708e-08,
3.10550365e-07, 3.10550365e-07, 3.10550365e-07, 3.10550365e-07,
1.91739687e-06, 1.91739687e-06, 1.91739687e-06, 1.91739687e-06,
1.08719093e-05, 1.08719093e-05, 1.08719093e-05, 1.08719093e-05,
5.64951242e-05, 5.64951242e-05, 5.64951242e-05, 5.64951242e-05,
2.68353586e-04, 2.68353586e-04, 2.68353586e-04, 2.68353586e-04,
1.16148888e-03, 1.16148888e-03, 1.16148888e-03, 1.16148888e-03,
4.56296110e-03, 4.56296110e-03, 4.56296110e-03, 4.56296110e-03,
1.61948234e-02, 1.61948234e-02, 1.61948234e-02, 1.61948234e-02,
5.16501942e-02, 5.16501942e-02, 5.16501942e-02, 5.16501942e-02,
1.47193741e-01, 1.47193741e-01, 1.47193741e-01, 1.47193741e-01,
3.73008312e-01, 3.73008312e-01, 3.73008312e-01, 3.73008312e-01,
8.38464798e-01, 8.38464798e-01, 8.38464798e-01, 8.38464798e-01,
1.67451578e+00, 1.67451578e+00, 1.67451578e+00, 1.67451578e+00,
2.99122036e+00, 2.99122036e+00, 2.99122036e+00, 2.99122036e+00,
4.83584276e+00, 4.83584276e+00, 4.83584276e+00, 4.83584276e+00,
7.19273469e+00, 7.19273469e+00, 7.19273469e+00, 7.19273469e+00,
9.93587440e+00, 9.93587440e+00, 9.93587440e+00, 9.93587440e+00,
1.26632029e+01, 1.26632029e+01, 1.26632029e+01, 1.26632029e+01,
1.52391788e+01, 1.52391788e+01, 1.52391788e+01, 1.52391788e+01,
1.75131368e+01, 1.75131368e+01, 1.75131368e+01, 1.75131368e+01,
1.92750068e+01, 1.92750068e+01, 1.92750068e+01, 1.92750068e+01,
2.02071764e+01, 2.02071764e+01, 2.02071764e+01, 2.02071764e+01,
2.04224324e+01, 2.04224324e+01, 2.04224324e+01, 2.04224324e+01,
2.02143397e+01, 2.02143397e+01, 2.02143397e+01, 2.02143397e+01,
2.00448842e+01, 2.00448842e+01, 2.00448842e+01, 2.00448842e+01,
2.00355481e+01, 2.00355481e+01, 2.00355481e+01, 2.00355481e+01,
2.00263366e+01, 2.00263366e+01, 2.00263366e+01, 2.00263366e+01,
1.99415493e+01, 1.99415493e+01, 1.99415493e+01, 1.99415493e+01,
1.92029402e+01, 1.92029402e+01, 1.92029402e+01, 1.92029402e+01,
1.55549094e+01, 1.55549094e+01, 1.55549094e+01, 1.55549094e+01,
5.98150672e+00, 5.98150672e+00, 5.98150672e+00, 5.98150672e+00,
2.65685194e-01, 2.65685194e-01, 2.65685194e-01, 2.65685194e-01,
9.54732742e-04, 9.54732742e-04, 9.54732742e-04, 9.54732742e-04,
2.10803427e-07, 2.10803427e-07, 2.10803427e-07, 2.10803427e-07,
3.02033655e-11, 3.02033655e-11, 3.02033655e-11, 3.02033655e-11,
4.41057656e-15, 4.41057656e-15, 4.41057656e-15, 4.41057656e-15,
6.12854624e-19, 6.12854624e-19, 6.12854624e-19, 6.12854624e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999928e+02, 9.99999928e+02, 9.99999928e+02, 9.99999928e+02,
9.99999593e+02, 9.99999593e+02, 9.99999593e+02, 9.99999593e+02,
9.99997886e+02, 9.99997886e+02, 9.99997886e+02, 9.99997886e+02,
9.99989959e+02, 9.99989959e+02, 9.99989959e+02, 9.99989959e+02,
9.99956542e+02, 9.99956542e+02, 9.99956542e+02, 9.99956542e+02,
9.99829284e+02, 9.99829284e+02, 9.99829284e+02, 9.99829284e+02,
9.99394226e+02, 9.99394226e+02, 9.99394226e+02, 9.99394226e+02,
9.98069219e+02, 9.98069219e+02, 9.98069219e+02, 9.98069219e+02,
9.94506766e+02, 9.94506766e+02, 9.94506766e+02, 9.94506766e+02,
9.86133189e+02, 9.86133189e+02, 9.86133189e+02, 9.86133189e+02,
9.69074355e+02, 9.69074355e+02, 9.69074355e+02, 9.69074355e+02,
9.39098214e+02, 9.39098214e+02, 9.39098214e+02, 9.39098214e+02,
8.93564448e+02, 8.93564448e+02, 8.93564448e+02, 8.93564448e+02,
8.33059937e+02, 8.33059937e+02, 8.33059937e+02, 8.33059937e+02,
7.60987238e+02, 7.60987238e+02, 7.60987238e+02, 7.60987238e+02,
6.83226607e+02, 6.83226607e+02, 6.83226607e+02, 6.83226607e+02,
6.12243005e+02, 6.12243005e+02, 6.12243005e+02, 6.12243005e+02,
5.51401650e+02, 5.51401650e+02, 5.51401650e+02, 5.51401650e+02,
5.01944900e+02, 5.01944900e+02, 5.01944900e+02, 5.01944900e+02,
4.67782716e+02, 4.67782716e+02, 4.67782716e+02, 4.67782716e+02,
4.49784516e+02, 4.49784516e+02, 4.49784516e+02, 4.49784516e+02,
4.45064233e+02, 4.45064233e+02, 4.45064233e+02, 4.45064233e+02,
4.48787029e+02, 4.48787029e+02, 4.48787029e+02, 4.48787029e+02,
4.51978695e+02, 4.51978695e+02, 4.51978695e+02, 4.51978695e+02,
4.52793680e+02, 4.52793680e+02, 4.52793680e+02, 4.52793680e+02,
4.53282403e+02, 4.53282403e+02, 4.53282403e+02, 4.53282403e+02,
4.50955061e+02, 4.50955061e+02, 4.50955061e+02, 4.50955061e+02,
4.22213148e+02, 4.22213148e+02, 4.22213148e+02, 4.22213148e+02,
2.77875953e+02, 2.77875953e+02, 2.77875953e+02, 2.77875953e+02,
4.81022077e+01, 4.81022077e+01, 4.81022077e+01, 4.81022077e+01,
6.43549685e-01, 6.43549685e-01, 6.43549685e-01, 6.43549685e-01,
1.02488911e-02, 1.02488911e-02, 1.02488911e-02, 1.02488911e-02,
1.00000249e-02, 1.00000249e-02, 1.00000249e-02, 1.00000249e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999995, 0.99999995, 0.99999995, 0.99999995,
0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999862,
0.99999862, 0.99999862, 0.99999862, 0.99999367, 0.99999367,
0.99999367, 0.99999367, 0.99997341, 0.99997341, 0.99997341,
0.99997341, 0.99989805, 0.99989805, 0.99989805, 0.99989805,
0.99964482, 0.99964482, 0.99964482, 0.99964482, 0.99888164,
0.99888164, 0.99888164, 0.99888164, 0.99683513, 0.99683513,
0.99683513, 0.99683513, 0.99199451, 0.99199451, 0.99199451,
0.99199451, 0.9819733 , 0.9819733 , 0.9819733 , 0.9819733 ,
0.96389763, 0.96389763, 0.96389763, 0.96389763, 0.93545495,
0.93545495, 0.93545495, 0.93545495, 0.89604286, 0.89604286,
0.89604286, 0.89604286, 0.84702851, 0.84702851, 0.84702851,
0.84702851, 0.79079924, 0.79079924, 0.79079924, 0.79079924,
0.73376007, 0.73376007, 0.73376007, 0.73376007, 0.68273638,
0.68273638, 0.68273638, 0.68273638, 0.63612561, 0.63612561,
0.63612561, 0.63612561, 0.60307654, 0.60307654, 0.60307654,
0.60307654, 0.57002222, 0.57002222, 0.57002222, 0.57002222,
0.56543931, 0.56543931, 0.56543931, 0.56543931, 0.56183756,
0.56183756, 0.56183756, 0.56183756, 0.56199531, 0.56199531,
0.56199531, 0.56199531, 0.56171758, 0.56171758, 0.56171758,
0.56171758, 0.58609083, 0.58609083, 0.58609083, 0.58609083,
0.72311334, 0.72311334, 0.72311334, 0.72311334, 1.17609219,
1.17609219, 1.17609219, 1.17609219, 2.18113668, 2.18113668,
2.18113668, 2.18113668, 2.86626909, 2.86626909, 2.86626909,
2.86626909, 2.37228972, 2.37228972, 2.37228972, 2.37228972,
1.2039004 , 1.2039004 , 1.2039004 , 1.2039004 , 1.01187606,
1.01187606, 1.01187606, 1.01187606, 1.00010508, 1.00010508,
1.00010508, 1.00010508, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.33539348e-14, 1.33539348e-14, 1.33539348e-14, 1.33539348e-14,
1.55607325e-13, 1.55607325e-13, 1.55607325e-13, 1.55607325e-13,
1.56402128e-12, 1.56402128e-12, 1.56402128e-12, 1.56402128e-12,
1.45324292e-11, 1.45324292e-11, 1.45324292e-11, 1.45324292e-11,
1.25185482e-10, 1.25185482e-10, 1.25185482e-10, 1.25185482e-10,
1.00094143e-09, 1.00094143e-09, 1.00094143e-09, 1.00094143e-09,
7.42144171e-09, 7.42144171e-09, 7.42144171e-09, 7.42144171e-09,
5.09825802e-08, 5.09825802e-08, 5.09825802e-08, 5.09825802e-08,
3.24157733e-07, 3.24157733e-07, 3.24157733e-07, 3.24157733e-07,
1.90508651e-06, 1.90508651e-06, 1.90508651e-06, 1.90508651e-06,
1.03318499e-05, 1.03318499e-05, 1.03318499e-05, 1.03318499e-05,
5.16016816e-05, 5.16016816e-05, 5.16016816e-05, 5.16016816e-05,
2.36752814e-04, 2.36752814e-04, 2.36752814e-04, 2.36752814e-04,
9.94861791e-04, 9.94861791e-04, 9.94861791e-04, 9.94861791e-04,
3.81489106e-03, 3.81489106e-03, 3.81489106e-03, 3.81489106e-03,
1.32911013e-02, 1.32911013e-02, 1.32911013e-02, 1.32911013e-02,
4.18617207e-02, 4.18617207e-02, 4.18617207e-02, 4.18617207e-02,
1.18555604e-01, 1.18555604e-01, 1.18555604e-01, 1.18555604e-01,
3.00441076e-01, 3.00441076e-01, 3.00441076e-01, 3.00441076e-01,
6.79231840e-01, 6.79231840e-01, 6.79231840e-01, 6.79231840e-01,
1.37049927e+00, 1.37049927e+00, 1.37049927e+00, 1.37049927e+00,
2.48027947e+00, 2.48027947e+00, 2.48027947e+00, 2.48027947e+00,
4.06534852e+00, 4.06534852e+00, 4.06534852e+00, 4.06534852e+00,
6.11874426e+00, 6.11874426e+00, 6.11874426e+00, 6.11874426e+00,
8.59698769e+00, 8.59698769e+00, 8.59698769e+00, 8.59698769e+00,
1.11984851e+01, 1.11984851e+01, 1.11984851e+01, 1.11984851e+01,
1.37435738e+01, 1.37435738e+01, 1.37435738e+01, 1.37435738e+01,
1.61020009e+01, 1.61020009e+01, 1.61020009e+01, 1.61020009e+01,
1.81047370e+01, 1.81047370e+01, 1.81047370e+01, 1.81047370e+01,
1.95637081e+01, 1.95637081e+01, 1.95637081e+01, 1.95637081e+01,
2.02802090e+01, 2.02802090e+01, 2.02802090e+01, 2.02802090e+01,
2.03974866e+01, 2.03974866e+01, 2.03974866e+01, 2.03974866e+01,
2.01688547e+01, 2.01688547e+01, 2.01688547e+01, 2.01688547e+01,
2.00346701e+01, 2.00346701e+01, 2.00346701e+01, 2.00346701e+01,
2.00176538e+01, 2.00176538e+01, 2.00176538e+01, 2.00176538e+01,
2.00209769e+01, 2.00209769e+01, 2.00209769e+01, 2.00209769e+01,
1.99976377e+01, 1.99976377e+01, 1.99976377e+01, 1.99976377e+01,
1.96779963e+01, 1.96779963e+01, 1.96779963e+01, 1.96779963e+01,
1.78764303e+01, 1.78764303e+01, 1.78764303e+01, 1.78764303e+01,
1.11193485e+01, 1.11193485e+01, 1.11193485e+01, 1.11193485e+01,
1.55576781e+00, 1.55576781e+00, 1.55576781e+00, 1.55576781e+00,
1.98900933e-02, 1.98900933e-02, 1.98900933e-02, 1.98900933e-02,
1.52255734e-05, 1.52255734e-05, 1.52255734e-05, 1.52255734e-05,
2.23363364e-09, 2.23363364e-09, 2.23363364e-09, 2.23363364e-09,
3.21107467e-13, 3.21107467e-13, 3.21107467e-13, 3.21107467e-13,
4.55567759e-17, 4.55567759e-17, 4.55567759e-17, 4.55567759e-17,
4.26370518e-21, 4.26370518e-21, 4.26370518e-21, 4.26370518e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999929e+02, 9.99999929e+02, 9.99999929e+02, 9.99999929e+02,
9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
9.99998069e+02, 9.99998069e+02, 9.99998069e+02, 9.99998069e+02,
9.99991142e+02, 9.99991142e+02, 9.99991142e+02, 9.99991142e+02,
9.99962776e+02, 9.99962776e+02, 9.99962776e+02, 9.99962776e+02,
9.99857270e+02, 9.99857270e+02, 9.99857270e+02, 9.99857270e+02,
9.99502814e+02, 9.99502814e+02, 9.99502814e+02, 9.99502814e+02,
9.98434853e+02, 9.98434853e+02, 9.98434853e+02, 9.98434853e+02,
9.95573298e+02, 9.95573298e+02, 9.95573298e+02, 9.95573298e+02,
9.88816876e+02, 9.88816876e+02, 9.88816876e+02, 9.88816876e+02,
9.74879194e+02, 9.74879194e+02, 9.74879194e+02, 9.74879194e+02,
9.49898234e+02, 9.49898234e+02, 9.49898234e+02, 9.49898234e+02,
9.10986409e+02, 9.10986409e+02, 9.10986409e+02, 9.10986409e+02,
8.57855860e+02, 8.57855860e+02, 8.57855860e+02, 8.57855860e+02,
7.93072862e+02, 7.93072862e+02, 7.93072862e+02, 7.93072862e+02,
7.20578542e+02, 7.20578542e+02, 7.20578542e+02, 7.20578542e+02,
6.48800650e+02, 6.48800650e+02, 6.48800650e+02, 6.48800650e+02,
5.86389112e+02, 5.86389112e+02, 5.86389112e+02, 5.86389112e+02,
5.32725608e+02, 5.32725608e+02, 5.32725608e+02, 5.32725608e+02,
4.89778956e+02, 4.89778956e+02, 4.89778956e+02, 4.89778956e+02,
4.61519534e+02, 4.61519534e+02, 4.61519534e+02, 4.61519534e+02,
4.48525367e+02, 4.48525367e+02, 4.48525367e+02, 4.48525367e+02,
4.45928711e+02, 4.45928711e+02, 4.45928711e+02, 4.45928711e+02,
4.49956676e+02, 4.49956676e+02, 4.49956676e+02, 4.49956676e+02,
4.52076499e+02, 4.52076499e+02, 4.52076499e+02, 4.52076499e+02,
4.52643316e+02, 4.52643316e+02, 4.52643316e+02, 4.52643316e+02,
4.53164778e+02, 4.53164778e+02, 4.53164778e+02, 4.53164778e+02,
4.52705085e+02, 4.52705085e+02, 4.52705085e+02, 4.52705085e+02,
4.42106466e+02, 4.42106466e+02, 4.42106466e+02, 4.42106466e+02,
3.66606419e+02, 3.66606419e+02, 3.66606419e+02, 3.66606419e+02,
1.43278417e+02, 1.43278417e+02, 1.43278417e+02, 1.43278417e+02,
7.05131525e+00, 7.05131525e+00, 7.05131525e+00, 7.05131525e+00,
2.69964841e-02, 2.69964841e-02, 2.69964841e-02, 2.69964841e-02,
1.00018104e-02, 1.00018104e-02, 1.00018104e-02, 1.00018104e-02,
1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999995, 0.99999995, 0.99999995,
0.99999995, 0.99999974, 0.99999974, 0.99999974, 0.99999974,
0.99999876, 0.99999876, 0.99999876, 0.99999876, 0.99999446,
0.99999446, 0.99999446, 0.99999446, 0.99997733, 0.99997733,
0.99997733, 0.99997733, 0.99991492, 0.99991492, 0.99991492,
0.99991492, 0.99970841, 0.99970841, 0.99970841, 0.99970841,
0.99909185, 0.99909185, 0.99909185, 0.99909185, 0.99744342,
0.99744342, 0.99744342, 0.99744342, 0.99352897, 0.99352897,
0.99352897, 0.99352897, 0.98533607, 0.98533607, 0.98533607,
0.98533607, 0.9703007 , 0.9703007 , 0.9703007 , 0.9703007 ,
0.94611525, 0.94611525, 0.94611525, 0.94611525, 0.91178545,
0.91178545, 0.91178545, 0.91178545, 0.8681275 , 0.8681275 ,
0.8681275 , 0.8681275 , 0.81711896, 0.81711896, 0.81711896,
0.81711896, 0.76228815, 0.76228815, 0.76228815, 0.76228815,
0.71063528, 0.71063528, 0.71063528, 0.71063528, 0.66449658,
0.66449658, 0.66449658, 0.66449658, 0.62236199, 0.62236199,
0.62236199, 0.62236199, 0.59504764, 0.59504764, 0.59504764,
0.59504764, 0.56660492, 0.56660492, 0.56660492, 0.56660492,
0.56344579, 0.56344579, 0.56344579, 0.56344579, 0.56277418,
0.56277418, 0.56277418, 0.56277418, 0.56425748, 0.56425748,
0.56425748, 0.56425748, 0.56271208, 0.56271208, 0.56271208,
0.56271208, 0.57532902, 0.57532902, 0.57532902, 0.57532902,
0.66138282, 0.66138282, 0.66138282, 0.66138282, 0.97477241,
0.97477241, 0.97477241, 0.97477241, 1.76866995, 1.76866995,
1.76866995, 1.76866995, 2.79140624, 2.79140624, 2.79140624,
2.79140624, 2.85504716, 2.85504716, 2.85504716, 2.85504716,
1.6572704 , 1.6572704 , 1.6572704 , 1.6572704 , 1.05142481,
1.05142481, 1.05142481, 1.05142481, 1.00163012, 1.00163012,
1.00163012, 1.00163012, 1.00000124, 1.00000124, 1.00000124,
1.00000124, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.24969420e-13, 2.24969420e-13, 2.24969420e-13, 2.24969420e-13,
2.25206716e-12, 2.25206716e-12, 2.25206716e-12, 2.25206716e-12,
1.95360740e-11, 1.95360740e-11, 1.95360740e-11, 1.95360740e-11,
1.57777129e-10, 1.57777129e-10, 1.57777129e-10, 1.57777129e-10,
1.18752511e-09, 1.18752511e-09, 1.18752511e-09, 1.18752511e-09,
8.32407101e-09, 8.32407101e-09, 8.32407101e-09, 8.32407101e-09,
5.42910740e-08, 5.42910740e-08, 5.42910740e-08, 5.42910740e-08,
3.29113213e-07, 3.29113213e-07, 3.29113213e-07, 3.29113213e-07,
1.85184067e-06, 1.85184067e-06, 1.85184067e-06, 1.85184067e-06,
9.65592764e-06, 9.65592764e-06, 9.65592764e-06, 9.65592764e-06,
4.65650184e-05, 4.65650184e-05, 4.65650184e-05, 4.65650184e-05,
2.07190385e-04, 2.07190385e-04, 2.07190385e-04, 2.07190385e-04,
8.48170242e-04, 8.48170242e-04, 8.48170242e-04, 8.48170242e-04,
3.18354794e-03, 3.18354794e-03, 3.18354794e-03, 3.18354794e-03,
1.09115255e-02, 1.09115255e-02, 1.09115255e-02, 1.09115255e-02,
3.39908368e-02, 3.39908368e-02, 3.39908368e-02, 3.39908368e-02,
9.57478717e-02, 9.57478717e-02, 9.57478717e-02, 9.57478717e-02,
2.42712876e-01, 2.42712876e-01, 2.42712876e-01, 2.42712876e-01,
5.51793377e-01, 5.51793377e-01, 5.51793377e-01, 5.51793377e-01,
1.12446443e+00, 1.12446443e+00, 1.12446443e+00, 1.12446443e+00,
2.06118893e+00, 2.06118893e+00, 2.06118893e+00, 2.06118893e+00,
3.42552666e+00, 3.42552666e+00, 3.42552666e+00, 3.42552666e+00,
5.22314600e+00, 5.22314600e+00, 5.22314600e+00, 5.22314600e+00,
7.41906287e+00, 7.41906287e+00, 7.41906287e+00, 7.41906287e+00,
9.88411479e+00, 9.88411479e+00, 9.88411479e+00, 9.88411479e+00,
1.23254490e+01, 1.23254490e+01, 1.23254490e+01, 1.23254490e+01,
1.46753619e+01, 1.46753619e+01, 1.46753619e+01, 1.46753619e+01,
1.68362063e+01, 1.68362063e+01, 1.68362063e+01, 1.68362063e+01,
1.85972036e+01, 1.85972036e+01, 1.85972036e+01, 1.85972036e+01,
1.97810316e+01, 1.97810316e+01, 1.97810316e+01, 1.97810316e+01,
2.03056736e+01, 2.03056736e+01, 2.03056736e+01, 2.03056736e+01,
2.03583742e+01, 2.03583742e+01, 2.03583742e+01, 2.03583742e+01,
2.01400339e+01, 2.01400339e+01, 2.01400339e+01, 2.01400339e+01,
2.00353247e+01, 2.00353247e+01, 2.00353247e+01, 2.00353247e+01,
2.00086210e+01, 2.00086210e+01, 2.00086210e+01, 2.00086210e+01,
2.00116248e+01, 2.00116248e+01, 2.00116248e+01, 2.00116248e+01,
2.00091285e+01, 2.00091285e+01, 2.00091285e+01, 2.00091285e+01,
1.98825700e+01, 1.98825700e+01, 1.98825700e+01, 1.98825700e+01,
1.90344265e+01, 1.90344265e+01, 1.90344265e+01, 1.90344265e+01,
1.51585367e+01, 1.51585367e+01, 1.51585367e+01, 1.51585367e+01,
5.49808022e+00, 5.49808022e+00, 5.49808022e+00, 5.49808022e+00,
2.20110268e-01, 2.20110268e-01, 2.20110268e-01, 2.20110268e-01,
7.04288698e-04, 7.04288698e-04, 7.04288698e-04, 7.04288698e-04,
1.46929013e-07, 1.46929013e-07, 1.46929013e-07, 1.46929013e-07,
2.17393213e-11, 2.17393213e-11, 2.17393213e-11, 2.17393213e-11,
3.25874024e-15, 3.25874024e-15, 3.25874024e-15, 3.25874024e-15,
4.93883641e-19, 4.93883641e-19, 4.93883641e-19, 4.93883641e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999931e+02, 9.99999931e+02, 9.99999931e+02, 9.99999931e+02,
9.99999639e+02, 9.99999639e+02, 9.99999639e+02, 9.99999639e+02,
9.99998258e+02, 9.99998258e+02, 9.99998258e+02, 9.99998258e+02,
9.99992248e+02, 9.99992248e+02, 9.99992248e+02, 9.99992248e+02,
9.99968265e+02, 9.99968265e+02, 9.99968265e+02, 9.99968265e+02,
9.99880890e+02, 9.99880890e+02, 9.99880890e+02, 9.99880890e+02,
9.99591810e+02, 9.99591810e+02, 9.99591810e+02, 9.99591810e+02,
9.98728953e+02, 9.98728953e+02, 9.98728953e+02, 9.98728953e+02,
9.96423469e+02, 9.96423469e+02, 9.96423469e+02, 9.96423469e+02,
9.90956621e+02, 9.90956621e+02, 9.90956621e+02, 9.90956621e+02,
9.79547910e+02, 9.79547910e+02, 9.79547910e+02, 9.79547910e+02,
9.58721154e+02, 9.58721154e+02, 9.58721154e+02, 9.58721154e+02,
9.25505523e+02, 9.25505523e+02, 9.25505523e+02, 9.25505523e+02,
8.78949351e+02, 8.78949351e+02, 8.78949351e+02, 8.78949351e+02,
8.20748601e+02, 8.20748601e+02, 8.20748601e+02, 8.20748601e+02,
7.54214683e+02, 7.54214683e+02, 7.54214683e+02, 7.54214683e+02,
6.84375067e+02, 6.84375067e+02, 6.84375067e+02, 6.84375067e+02,
6.20368568e+02, 6.20368568e+02, 6.20368568e+02, 6.20368568e+02,
5.64370431e+02, 5.64370431e+02, 5.64370431e+02, 5.64370431e+02,
5.17160227e+02, 5.17160227e+02, 5.17160227e+02, 5.17160227e+02,
4.80250812e+02, 4.80250812e+02, 4.80250812e+02, 4.80250812e+02,
4.56943598e+02, 4.56943598e+02, 4.56943598e+02, 4.56943598e+02,
4.47678145e+02, 4.47678145e+02, 4.47678145e+02, 4.47678145e+02,
4.46796826e+02, 4.46796826e+02, 4.46796826e+02, 4.46796826e+02,
4.50880096e+02, 4.50880096e+02, 4.50880096e+02, 4.50880096e+02,
4.52357569e+02, 4.52357569e+02, 4.52357569e+02, 4.52357569e+02,
4.52616932e+02, 4.52616932e+02, 4.52616932e+02, 4.52616932e+02,
4.52970783e+02, 4.52970783e+02, 4.52970783e+02, 4.52970783e+02,
4.53046444e+02, 4.53046444e+02, 4.53046444e+02, 4.53046444e+02,
4.49923083e+02, 4.49923083e+02, 4.49923083e+02, 4.49923083e+02,
4.15828843e+02, 4.15828843e+02, 4.15828843e+02, 4.15828843e+02,
2.62221323e+02, 2.62221323e+02, 2.62221323e+02, 2.62221323e+02,
4.12019102e+01, 4.12019102e+01, 4.12019102e+01, 4.12019102e+01,
4.94445574e-01, 4.94445574e-01, 4.94445574e-01, 4.94445574e-01,
1.01642073e-02, 1.01642073e-02, 1.01642073e-02, 1.01642073e-02,
1.00000174e-02, 1.00000174e-02, 1.00000174e-02, 1.00000174e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999976, 0.99999976, 0.99999976,
0.99999976, 0.99999889, 0.99999889, 0.99999889, 0.99999889,
0.99999519, 0.99999519, 0.99999519, 0.99999519, 0.99998075,
0.99998075, 0.99998075, 0.99998075, 0.9999291 , 0.9999291 ,
0.9999291 , 0.9999291 , 0.99976052, 0.99976052, 0.99976052,
0.99976052, 0.99926135, 0.99926135, 0.99926135, 0.99926135,
0.99793005, 0.99793005, 0.99793005, 0.99793005, 0.99475663,
0.99475663, 0.99475663, 0.99475663, 0.98804657, 0.98804657,
0.98804657, 0.98804657, 0.97553184, 0.97553184, 0.97553184,
0.97553184, 0.95497685, 0.95497685, 0.95497685, 0.95497685,
0.92511099, 0.92511099, 0.92511099, 0.92511099, 0.88625836,
0.88625836, 0.88625836, 0.88625836, 0.84008392, 0.84008392,
0.84008392, 0.84008392, 0.78876117, 0.78876117, 0.78876117,
0.78876117, 0.73758834, 0.73758834, 0.73758834, 0.73758834,
0.69072274, 0.69072274, 0.69072274, 0.69072274, 0.64901095,
0.64901095, 0.64901095, 0.64901095, 0.61063333, 0.61063333,
0.61063333, 0.61063333, 0.58838435, 0.58838435, 0.58838435,
0.58838435, 0.56482776, 0.56482776, 0.56482776, 0.56482776,
0.56211874, 0.56211874, 0.56211874, 0.56211874, 0.56323644,
0.56323644, 0.56323644, 0.56323644, 0.56573502, 0.56573502,
0.56573502, 0.56573502, 0.56392989, 0.56392989, 0.56392989,
0.56392989, 0.56998742, 0.56998742, 0.56998742, 0.56998742,
0.62261429, 0.62261429, 0.62261429, 0.62261429, 0.83494329,
0.83494329, 0.83494329, 0.83494329, 1.42257004, 1.42257004,
1.42257004, 1.42257004, 2.51165741, 2.51165741, 2.51165741,
2.51165741, 3.03556687, 3.03556687, 3.03556687, 3.03556687,
2.3649753 , 2.3649753 , 2.3649753 , 2.3649753 , 1.18082651,
1.18082651, 1.18082651, 1.18082651, 1.01021472, 1.01021472,
1.01021472, 1.01021472, 1.0000747 , 1.0000747 , 1.0000747 ,
1.0000747 , 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.83938532e-12, 2.83938532e-12, 2.83938532e-12, 2.83938532e-12,
2.48780551e-11, 2.48780551e-11, 2.48780551e-11, 2.48780551e-11,
1.89659153e-10, 1.89659153e-10, 1.89659153e-10, 1.89659153e-10,
1.35318050e-09, 1.35318050e-09, 1.35318050e-09, 1.35318050e-09,
9.02461193e-09, 9.02461193e-09, 9.02461193e-09, 9.02461193e-09,
5.62089401e-08, 5.62089401e-08, 5.62089401e-08, 5.62089401e-08,
3.26589983e-07, 3.26589983e-07, 3.26589983e-07, 3.26589983e-07,
1.76783166e-06, 1.76783166e-06, 1.76783166e-06, 1.76783166e-06,
8.90072519e-06, 8.90072519e-06, 8.90072519e-06, 8.90072519e-06,
4.16033994e-05, 4.16033994e-05, 4.16033994e-05, 4.16033994e-05,
1.80121521e-04, 1.80121521e-04, 1.80121521e-04, 1.80121521e-04,
7.20378916e-04, 7.20378916e-04, 7.20378916e-04, 7.20378916e-04,
2.65286556e-03, 2.65286556e-03, 2.65286556e-03, 2.65286556e-03,
8.96132297e-03, 8.96132297e-03, 8.96132297e-03, 8.96132297e-03,
2.76450137e-02, 2.76450137e-02, 2.76450137e-02, 2.76450137e-02,
7.75091590e-02, 7.75091590e-02, 7.75091590e-02, 7.75091590e-02,
1.96575287e-01, 1.96575287e-01, 1.96575287e-01, 1.96575287e-01,
4.49321350e-01, 4.49321350e-01, 4.49321350e-01, 4.49321350e-01,
9.24431499e-01, 9.24431499e-01, 9.24431499e-01, 9.24431499e-01,
1.71576116e+00, 1.71576116e+00, 1.71576116e+00, 1.71576116e+00,
2.89106042e+00, 2.89106042e+00, 2.89106042e+00, 2.89106042e+00,
4.46780650e+00, 4.46780650e+00, 4.46780650e+00, 4.46780650e+00,
6.41677343e+00, 6.41677343e+00, 6.41677343e+00, 6.41677343e+00,
8.68601329e+00, 8.68601329e+00, 8.68601329e+00, 8.68601329e+00,
1.10249054e+01, 1.10249054e+01, 1.10249054e+01, 1.10249054e+01,
1.33220447e+01, 1.33220447e+01, 1.33220447e+01, 1.33220447e+01,
1.54925996e+01, 1.54925996e+01, 1.54925996e+01, 1.54925996e+01,
1.74546801e+01, 1.74546801e+01, 1.74546801e+01, 1.74546801e+01,
1.89986134e+01, 1.89986134e+01, 1.89986134e+01, 1.89986134e+01,
1.99480450e+01, 1.99480450e+01, 1.99480450e+01, 1.99480450e+01,
2.03051988e+01, 2.03051988e+01, 2.03051988e+01, 2.03051988e+01,
2.03097963e+01, 2.03097963e+01, 2.03097963e+01, 2.03097963e+01,
2.01135364e+01, 2.01135364e+01, 2.01135364e+01, 2.01135364e+01,
2.00395134e+01, 2.00395134e+01, 2.00395134e+01, 2.00395134e+01,
2.00112282e+01, 2.00112282e+01, 2.00112282e+01, 2.00112282e+01,
2.00045207e+01, 2.00045207e+01, 2.00045207e+01, 2.00045207e+01,
2.00069683e+01, 2.00069683e+01, 2.00069683e+01, 2.00069683e+01,
1.99578722e+01, 1.99578722e+01, 1.99578722e+01, 1.99578722e+01,
1.95688870e+01, 1.95688870e+01, 1.95688870e+01, 1.95688870e+01,
1.75969855e+01, 1.75969855e+01, 1.75969855e+01, 1.75969855e+01,
1.06108424e+01, 1.06108424e+01, 1.06108424e+01, 1.06108424e+01,
1.32398591e+00, 1.32398591e+00, 1.32398591e+00, 1.32398591e+00,
1.52470806e-02, 1.52470806e-02, 1.52470806e-02, 1.52470806e-02,
1.02514744e-05, 1.02514744e-05, 1.02514744e-05, 1.02514744e-05,
1.51595044e-09, 1.51595044e-09, 1.51595044e-09, 1.51595044e-09,
2.21449669e-13, 2.21449669e-13, 2.21449669e-13, 2.21449669e-13,
3.21821680e-17, 3.21821680e-17, 3.21821680e-17, 3.21821680e-17,
4.22583135e-21, 4.22583135e-21, 4.22583135e-21, 4.22583135e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999934e+02, 9.99999934e+02, 9.99999934e+02, 9.99999934e+02,
9.99999667e+02, 9.99999667e+02, 9.99999667e+02, 9.99999667e+02,
9.99998443e+02, 9.99998443e+02, 9.99998443e+02, 9.99998443e+02,
9.99993260e+02, 9.99993260e+02, 9.99993260e+02, 9.99993260e+02,
9.99973046e+02, 9.99973046e+02, 9.99973046e+02, 9.99973046e+02,
9.99900744e+02, 9.99900744e+02, 9.99900744e+02, 9.99900744e+02,
9.99664753e+02, 9.99664753e+02, 9.99664753e+02, 9.99664753e+02,
9.98966129e+02, 9.98966129e+02, 9.98966129e+02, 9.98966129e+02,
9.97103821e+02, 9.97103821e+02, 9.97103821e+02, 9.97103821e+02,
9.92669836e+02, 9.92669836e+02, 9.92669836e+02, 9.92669836e+02,
9.83316822e+02, 9.83316822e+02, 9.83316822e+02, 9.83316822e+02,
9.65949266e+02, 9.65949266e+02, 9.65949266e+02, 9.65949266e+02,
9.37629572e+02, 9.37629572e+02, 9.37629572e+02, 9.37629572e+02,
8.96925524e+02, 8.96925524e+02, 8.96925524e+02, 8.96925524e+02,
8.44757270e+02, 8.44757270e+02, 8.44757270e+02, 8.44757270e+02,
7.83932229e+02, 7.83932229e+02, 7.83932229e+02, 7.83932229e+02,
7.17860197e+02, 7.17860197e+02, 7.17860197e+02, 7.17860197e+02,
6.53411534e+02, 6.53411534e+02, 6.53411534e+02, 6.53411534e+02,
5.96226302e+02, 5.96226302e+02, 5.96226302e+02, 5.96226302e+02,
5.45775399e+02, 5.45775399e+02, 5.45775399e+02, 5.45775399e+02,
5.04059456e+02, 5.04059456e+02, 5.04059456e+02, 5.04059456e+02,
4.72707776e+02, 4.72707776e+02, 4.72707776e+02, 4.72707776e+02,
4.53820542e+02, 4.53820542e+02, 4.53820542e+02, 4.53820542e+02,
4.47282842e+02, 4.47282842e+02, 4.47282842e+02, 4.47282842e+02,
4.47539085e+02, 4.47539085e+02, 4.47539085e+02, 4.47539085e+02,
4.51468618e+02, 4.51468618e+02, 4.51468618e+02, 4.51468618e+02,
4.52679279e+02, 4.52679279e+02, 4.52679279e+02, 4.52679279e+02,
4.52744959e+02, 4.52744959e+02, 4.52744959e+02, 4.52744959e+02,
4.52862141e+02, 4.52862141e+02, 4.52862141e+02, 4.52862141e+02,
4.53025731e+02, 4.53025731e+02, 4.53025731e+02, 4.53025731e+02,
4.52509333e+02, 4.52509333e+02, 4.52509333e+02, 4.52509333e+02,
4.39197326e+02, 4.39197326e+02, 4.39197326e+02, 4.39197326e+02,
3.55061144e+02, 3.55061144e+02, 3.55061144e+02, 3.55061144e+02,
1.28955744e+02, 1.28955744e+02, 1.28955744e+02, 1.28955744e+02,
5.63751354e+00, 5.63751354e+00, 5.63751354e+00, 5.63751354e+00,
2.16308297e-02, 2.16308297e-02, 2.16308297e-02, 2.16308297e-02,
1.00012116e-02, 1.00012116e-02, 1.00012116e-02, 1.00012116e-02,
1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999978, 0.99999978,
0.99999978, 0.99999978, 0.99999901, 0.99999901, 0.99999901,
0.99999901, 0.99999584, 0.99999584, 0.99999584, 0.99999584,
0.9999837 , 0.9999837 , 0.9999837 , 0.9999837 , 0.99994098,
0.99994098, 0.99994098, 0.99994098, 0.99980323, 0.99980323,
0.99980323, 0.99980323, 0.99939833, 0.99939833, 0.99939833,
0.99939833, 0.99832066, 0.99832066, 0.99832066, 0.99832066,
0.99574245, 0.99574245, 0.99574245, 0.99574245, 0.99023874,
0.99023874, 0.99023874, 0.99023874, 0.97981742, 0.97981742,
0.97981742, 0.97981742, 0.96235966, 0.96235966, 0.96235966,
0.96235966, 0.93641648, 0.93641648, 0.93641648, 0.93641648,
0.90189237, 0.90189237, 0.90189237, 0.90189237, 0.86005507,
0.86005507, 0.86005507, 0.86005507, 0.81274868, 0.81274868,
0.81274868, 0.81274868, 0.76311269, 0.76311269, 0.76311269,
0.76311269, 0.71642 , 0.71642 , 0.71642 , 0.71642 ,
0.67333822, 0.67333822, 0.67333822, 0.67333822, 0.63583393,
0.63583393, 0.63583393, 0.63583393, 0.6007504 , 0.6007504 ,
0.6007504 , 0.6007504 , 0.58279291, 0.58279291, 0.58279291,
0.58279291, 0.56410322, 0.56410322, 0.56410322, 0.56410322,
0.56160416, 0.56160416, 0.56160416, 0.56160416, 0.56332121,
0.56332121, 0.56332121, 0.56332121, 0.56656977, 0.56656977,
0.56656977, 0.56656977, 0.56500324, 0.56500324, 0.56500324,
0.56500324, 0.56762 , 0.56762 , 0.56762 , 0.56762 ,
0.59894803, 0.59894803, 0.59894803, 0.59894803, 0.74001262,
0.74001262, 0.74001262, 0.74001262, 1.16399112, 1.16399112,
1.16399112, 1.16399112, 2.10522387, 2.10522387, 2.10522387,
2.10522387, 3.01416422, 3.01416422, 3.01416422, 3.01416422,
2.93378532, 2.93378532, 2.93378532, 2.93378532, 1.60066424,
1.60066424, 1.60066424, 1.60066424, 1.0447292 , 1.0447292 ,
1.0447292 , 1.0447292 , 1.00129844, 1.00129844, 1.00129844,
1.00129844, 1.0000008 , 1.0000008 , 1.0000008 , 1.0000008 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.79929625e-11, 2.79929625e-11, 2.79929625e-11, 2.79929625e-11,
2.19420258e-10, 2.19420258e-10, 2.19420258e-10, 2.19420258e-10,
1.49116083e-09, 1.49116083e-09, 1.49116083e-09, 1.49116083e-09,
9.51188129e-09, 9.51188129e-09, 9.51188129e-09, 9.51188129e-09,
5.68485475e-08, 5.68485475e-08, 5.68485475e-08, 5.68485475e-08,
3.17985043e-07, 3.17985043e-07, 3.17985043e-07, 3.17985043e-07,
1.66248056e-06, 1.66248056e-06, 1.66248056e-06, 1.66248056e-06,
8.11135729e-06, 8.11135729e-06, 8.11135729e-06, 8.11135729e-06,
3.68655451e-05, 3.68655451e-05, 3.68655451e-05, 3.68655451e-05,
1.55738945e-04, 1.55738945e-04, 1.55738945e-04, 1.55738945e-04,
6.09972860e-04, 6.09972860e-04, 6.09972860e-04, 6.09972860e-04,
2.20822367e-03, 2.20822367e-03, 2.20822367e-03, 2.20822367e-03,
7.36278800e-03, 7.36278800e-03, 7.36278800e-03, 7.36278800e-03,
2.25170918e-02, 2.25170918e-02, 2.25170918e-02, 2.25170918e-02,
6.28736376e-02, 6.28736376e-02, 6.28736376e-02, 6.28736376e-02,
1.59557051e-01, 1.59557051e-01, 1.59557051e-01, 1.59557051e-01,
3.66605239e-01, 3.66605239e-01, 3.66605239e-01, 3.66605239e-01,
7.61197294e-01, 7.61197294e-01, 7.61197294e-01, 7.61197294e-01,
1.42997959e+00, 1.42997959e+00, 1.42997959e+00, 1.42997959e+00,
2.44258800e+00, 2.44258800e+00, 2.44258800e+00, 2.44258800e+00,
3.82666940e+00, 3.82666940e+00, 3.82666940e+00, 3.82666940e+00,
5.56323490e+00, 5.56323490e+00, 5.56323490e+00, 5.56323490e+00,
7.61102512e+00, 7.61102512e+00, 7.61102512e+00, 7.61102512e+00,
9.84104209e+00, 9.84104209e+00, 9.84104209e+00, 9.84104209e+00,
1.20553642e+01, 1.20553642e+01, 1.20553642e+01, 1.20553642e+01,
1.42019457e+01, 1.42019457e+01, 1.42019457e+01, 1.42019457e+01,
1.62097468e+01, 1.62097468e+01, 1.62097468e+01, 1.62097468e+01,
1.79765031e+01, 1.79765031e+01, 1.79765031e+01, 1.79765031e+01,
1.93158941e+01, 1.93158941e+01, 1.93158941e+01, 1.93158941e+01,
2.00703083e+01, 2.00703083e+01, 2.00703083e+01, 2.00703083e+01,
2.03013658e+01, 2.03013658e+01, 2.03013658e+01, 2.03013658e+01,
2.02568791e+01, 2.02568791e+01, 2.02568791e+01, 2.02568791e+01,
2.00856952e+01, 2.00856952e+01, 2.00856952e+01, 2.00856952e+01,
2.00397257e+01, 2.00397257e+01, 2.00397257e+01, 2.00397257e+01,
2.00181798e+01, 2.00181798e+01, 2.00181798e+01, 2.00181798e+01,
2.00054208e+01, 2.00054208e+01, 2.00054208e+01, 2.00054208e+01,
2.00025663e+01, 2.00025663e+01, 2.00025663e+01, 2.00025663e+01,
1.99793630e+01, 1.99793630e+01, 1.99793630e+01, 1.99793630e+01,
1.98071108e+01, 1.98071108e+01, 1.98071108e+01, 1.98071108e+01,
1.88547396e+01, 1.88547396e+01, 1.88547396e+01, 1.88547396e+01,
1.47204337e+01, 1.47204337e+01, 1.47204337e+01, 1.47204337e+01,
4.95781616e+00, 4.95781616e+00, 4.95781616e+00, 4.95781616e+00,
1.75493310e-01, 1.75493310e-01, 1.75493310e-01, 1.75493310e-01,
4.85757486e-04, 4.85757486e-04, 4.85757486e-04, 4.85757486e-04,
9.51110561e-08, 9.51110561e-08, 9.51110561e-08, 9.51110561e-08,
1.44293431e-11, 1.44293431e-11, 1.44293431e-11, 1.44293431e-11,
2.19762024e-15, 2.19762024e-15, 2.19762024e-15, 2.19762024e-15,
3.19887277e-19, 3.19887277e-19, 3.19887277e-19, 3.19887277e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999938e+02, 9.99999938e+02, 9.99999938e+02, 9.99999938e+02,
9.99999697e+02, 9.99999697e+02, 9.99999697e+02, 9.99999697e+02,
9.99998621e+02, 9.99998621e+02, 9.99998621e+02, 9.99998621e+02,
9.99994173e+02, 9.99994173e+02, 9.99994173e+02, 9.99994173e+02,
9.99977177e+02, 9.99977177e+02, 9.99977177e+02, 9.99977177e+02,
9.99917379e+02, 9.99917379e+02, 9.99917379e+02, 9.99917379e+02,
9.99724547e+02, 9.99724547e+02, 9.99724547e+02, 9.99724547e+02,
9.99157826e+02, 9.99157826e+02, 9.99157826e+02, 9.99157826e+02,
9.97650081e+02, 9.97650081e+02, 9.97650081e+02, 9.97650081e+02,
9.94046407e+02, 9.94046407e+02, 9.94046407e+02, 9.94046407e+02,
9.86368788e+02, 9.86368788e+02, 9.86368788e+02, 9.86368788e+02,
9.71884304e+02, 9.71884304e+02, 9.71884304e+02, 9.71884304e+02,
9.47768311e+02, 9.47768311e+02, 9.47768311e+02, 9.47768311e+02,
9.12263212e+02, 9.12263212e+02, 9.12263212e+02, 9.12263212e+02,
8.65625167e+02, 8.65625167e+02, 8.65625167e+02, 8.65625167e+02,
8.10053427e+02, 8.10053427e+02, 8.10053427e+02, 8.10053427e+02,
7.48503051e+02, 7.48503051e+02, 7.48503051e+02, 7.48503051e+02,
6.85291622e+02, 6.85291622e+02, 6.85291622e+02, 6.85291622e+02,
6.27294016e+02, 6.27294016e+02, 6.27294016e+02, 6.27294016e+02,
5.75413147e+02, 5.75413147e+02, 5.75413147e+02, 5.75413147e+02,
5.30001905e+02, 5.30001905e+02, 5.30001905e+02, 5.30001905e+02,
4.93087463e+02, 4.93087463e+02, 4.93087463e+02, 4.93087463e+02,
4.66655572e+02, 4.66655572e+02, 4.66655572e+02, 4.66655572e+02,
4.51807159e+02, 4.51807159e+02, 4.51807159e+02, 4.51807159e+02,
4.47311434e+02, 4.47311434e+02, 4.47311434e+02, 4.47311434e+02,
4.48215613e+02, 4.48215613e+02, 4.48215613e+02, 4.48215613e+02,
4.51762807e+02, 4.51762807e+02, 4.51762807e+02, 4.51762807e+02,
4.52868403e+02, 4.52868403e+02, 4.52868403e+02, 4.52868403e+02,
4.52955491e+02, 4.52955491e+02, 4.52955491e+02, 4.52955491e+02,
4.52909327e+02, 4.52909327e+02, 4.52909327e+02, 4.52909327e+02,
4.52981643e+02, 4.52981643e+02, 4.52981643e+02, 4.52981643e+02,
4.53214804e+02, 4.53214804e+02, 4.53214804e+02, 4.53214804e+02,
4.48990326e+02, 4.48990326e+02, 4.48990326e+02, 4.48990326e+02,
4.09131640e+02, 4.09131640e+02, 4.09131640e+02, 4.09131640e+02,
2.45517697e+02, 2.45517697e+02, 2.45517697e+02, 2.45517697e+02,
3.47160317e+01, 3.47160317e+01, 3.47160317e+01, 3.47160317e+01,
3.62894316e-01, 3.62894316e-01, 3.62894316e-01, 3.62894316e-01,
1.00998011e-02, 1.00998011e-02, 1.00998011e-02, 1.00998011e-02,
1.00000113e-02, 1.00000113e-02, 1.00000113e-02, 1.00000113e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.9999998 ,
0.9999998 , 0.9999998 , 0.9999998 , 0.99999913, 0.99999913,
0.99999913, 0.99999913, 0.99999642, 0.99999642, 0.99999642,
0.99999642, 0.99998623, 0.99998623, 0.99998623, 0.99998623,
0.99995092, 0.99995092, 0.99995092, 0.99995092, 0.99983826,
0.99983826, 0.99983826, 0.99983826, 0.99950927, 0.99950927,
0.99950927, 0.99950927, 0.99863513, 0.99863513, 0.99863513,
0.99863513, 0.9965366 , 0.9965366 , 0.9965366 , 0.9965366 ,
0.99201676, 0.99201676, 0.99201676, 0.99201676, 0.9833362 ,
0.9833362 , 0.9833362 , 0.9833362 , 0.9685206 , 0.9685206 ,
0.9685206 , 0.9685206 , 0.94602219, 0.94602219, 0.94602219,
0.94602219, 0.91540395, 0.91540395, 0.91540395, 0.91540395,
0.87753992, 0.87753992, 0.87753992, 0.87753992, 0.83410395,
0.83410395, 0.83410395, 0.83410395, 0.78704832, 0.78704832,
0.78704832, 0.78704832, 0.74068485, 0.74068485, 0.74068485,
0.74068485, 0.69785748, 0.69785748, 0.69785748, 0.69785748,
0.65816589, 0.65816589, 0.65816589, 0.65816589, 0.62460018,
0.62460018, 0.62460018, 0.62460018, 0.59255793, 0.59255793,
0.59255793, 0.59255793, 0.57817326, 0.57817326, 0.57817326,
0.57817326, 0.56387564, 0.56387564, 0.56387564, 0.56387564,
0.56157127, 0.56157127, 0.56157127, 0.56157127, 0.56360366,
0.56360366, 0.56360366, 0.56360366, 0.56687447, 0.56687447,
0.56687447, 0.56687447, 0.56576392, 0.56576392, 0.56576392,
0.56576392, 0.56670663, 0.56670663, 0.56670663, 0.56670663,
0.58490731, 0.58490731, 0.58490731, 0.58490731, 0.67692226,
0.67692226, 0.67692226, 0.67692226, 0.97656008, 0.97656008,
0.97656008, 0.97656008, 1.70128216, 1.70128216, 1.70128216,
1.70128216, 2.81354886, 2.81354886, 2.81354886, 2.81354886,
3.17648847, 3.17648847, 3.17648847, 3.17648847, 2.32407513,
2.32407513, 2.32407513, 2.32407513, 1.15871544, 1.15871544,
1.15871544, 1.15871544, 1.00857175, 1.00857175, 1.00857175,
1.00857175, 1.0000498 , 1.0000498 , 1.0000498 , 1.0000498 ,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.25428777e-10, 2.25428777e-10, 2.25428777e-10, 2.25428777e-10,
1.59940645e-09, 1.59940645e-09, 1.59940645e-09, 1.59940645e-09,
9.78961596e-09, 9.78961596e-09, 9.78961596e-09, 9.78961596e-09,
5.63719016e-08, 5.63719016e-08, 5.63719016e-08, 5.63719016e-08,
3.04684391e-07, 3.04684391e-07, 3.04684391e-07, 3.04684391e-07,
1.54374637e-06, 1.54374637e-06, 1.54374637e-06, 1.54374637e-06,
7.32124407e-06, 7.32124407e-06, 7.32124407e-06, 7.32124407e-06,
3.24422534e-05, 3.24422534e-05, 3.24422534e-05, 3.24422534e-05,
1.34046928e-04, 1.34046928e-04, 1.34046928e-04, 1.34046928e-04,
5.15190666e-04, 5.15190666e-04, 5.15190666e-04, 5.15190666e-04,
1.83655079e-03, 1.83655079e-03, 1.83655079e-03, 1.83655079e-03,
6.05207452e-03, 6.05207452e-03, 6.05207452e-03, 6.05207452e-03,
1.83647896e-02, 1.83647896e-02, 1.83647896e-02, 1.83647896e-02,
5.10941202e-02, 5.10941202e-02, 5.10941202e-02, 5.10941202e-02,
1.29756782e-01, 1.29756782e-01, 1.29756782e-01, 1.29756782e-01,
2.99620921e-01, 2.99620921e-01, 2.99620921e-01, 2.99620921e-01,
6.27596355e-01, 6.27596355e-01, 6.27596355e-01, 6.27596355e-01,
1.19286361e+00, 1.19286361e+00, 1.19286361e+00, 1.19286361e+00,
2.06504248e+00, 2.06504248e+00, 2.06504248e+00, 2.06504248e+00,
3.27992371e+00, 3.27992371e+00, 3.27992371e+00, 3.27992371e+00,
4.82922171e+00, 4.82922171e+00, 4.82922171e+00, 4.82922171e+00,
6.67464424e+00, 6.67464424e+00, 6.67464424e+00, 6.67464424e+00,
8.75964265e+00, 8.75964265e+00, 8.75964265e+00, 8.75964265e+00,
1.08803472e+01, 1.08803472e+01, 1.08803472e+01, 1.08803472e+01,
1.29739884e+01, 1.29739884e+01, 1.29739884e+01, 1.29739884e+01,
1.49859636e+01, 1.49859636e+01, 1.49859636e+01, 1.49859636e+01,
1.68387724e+01, 1.68387724e+01, 1.68387724e+01, 1.68387724e+01,
1.84176517e+01, 1.84176517e+01, 1.84176517e+01, 1.84176517e+01,
1.95597613e+01, 1.95597613e+01, 1.95597613e+01, 1.95597613e+01,
2.01515305e+01, 2.01515305e+01, 2.01515305e+01, 2.01515305e+01,
2.02967332e+01, 2.02967332e+01, 2.02967332e+01, 2.02967332e+01,
2.02120023e+01, 2.02120023e+01, 2.02120023e+01, 2.02120023e+01,
2.00605248e+01, 2.00605248e+01, 2.00605248e+01, 2.00605248e+01,
2.00318688e+01, 2.00318688e+01, 2.00318688e+01, 2.00318688e+01,
2.00221885e+01, 2.00221885e+01, 2.00221885e+01, 2.00221885e+01,
2.00111763e+01, 2.00111763e+01, 2.00111763e+01, 2.00111763e+01,
2.00014053e+01, 2.00014053e+01, 2.00014053e+01, 2.00014053e+01,
1.99837206e+01, 1.99837206e+01, 1.99837206e+01, 1.99837206e+01,
1.99044089e+01, 1.99044089e+01, 1.99044089e+01, 1.99044089e+01,
1.94532334e+01, 1.94532334e+01, 1.94532334e+01, 1.94532334e+01,
1.72959877e+01, 1.72959877e+01, 1.72959877e+01, 1.72959877e+01,
1.00492404e+01, 1.00492404e+01, 1.00492404e+01, 1.00492404e+01,
1.10583216e+00, 1.10583216e+00, 1.10583216e+00, 1.10583216e+00,
1.12632792e-02, 1.12632792e-02, 1.12632792e-02, 1.12632792e-02,
6.51995106e-06, 6.51995106e-06, 6.51995106e-06, 6.51995106e-06,
9.65569412e-10, 9.65569412e-10, 9.65569412e-10, 9.65569412e-10,
1.42316510e-13, 1.42316510e-13, 1.42316510e-13, 1.42316510e-13,
2.10270857e-17, 2.10270857e-17, 2.10270857e-17, 2.10270857e-17,
4.23110662e-21, 4.23110662e-21, 4.23110662e-21, 4.23110662e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
9.99999942e+02, 9.99999942e+02, 9.99999942e+02, 9.99999942e+02,
9.99999726e+02, 9.99999726e+02, 9.99999726e+02, 9.99999726e+02,
9.99998786e+02, 9.99998786e+02, 9.99998786e+02, 9.99998786e+02,
9.99994984e+02, 9.99994984e+02, 9.99994984e+02, 9.99994984e+02,
9.99980724e+02, 9.99980724e+02, 9.99980724e+02, 9.99980724e+02,
9.99931285e+02, 9.99931285e+02, 9.99931285e+02, 9.99931285e+02,
9.99773577e+02, 9.99773577e+02, 9.99773577e+02, 9.99773577e+02,
9.99313077e+02, 9.99313077e+02, 9.99313077e+02, 9.99313077e+02,
9.98089948e+02, 9.98089948e+02, 9.98089948e+02, 9.98089948e+02,
9.95155853e+02, 9.95155853e+02, 9.95155853e+02, 9.95155853e+02,
9.88846648e+02, 9.88846648e+02, 9.88846648e+02, 9.88846648e+02,
9.76766510e+02, 9.76766510e+02, 9.76766510e+02, 9.76766510e+02,
9.56255473e+02, 9.56255473e+02, 9.56255473e+02, 9.56255473e+02,
9.25357054e+02, 9.25357054e+02, 9.25357054e+02, 9.25357054e+02,
8.83782170e+02, 8.83782170e+02, 8.83782170e+02, 8.83782170e+02,
8.33130130e+02, 8.33130130e+02, 8.33130130e+02, 8.33130130e+02,
7.76085650e+02, 7.76085650e+02, 7.76085650e+02, 7.76085650e+02,
7.15578042e+02, 7.15578042e+02, 7.15578042e+02, 7.15578042e+02,
6.57188937e+02, 6.57188937e+02, 6.57188937e+02, 6.57188937e+02,
6.04619926e+02, 6.04619926e+02, 6.04619926e+02, 6.04619926e+02,
5.57478206e+02, 5.57478206e+02, 5.57478206e+02, 5.57478206e+02,
5.16581813e+02, 5.16581813e+02, 5.16581813e+02, 5.16581813e+02,
4.83986410e+02, 4.83986410e+02, 4.83986410e+02, 4.83986410e+02,
4.61832276e+02, 4.61832276e+02, 4.61832276e+02, 4.61832276e+02,
4.50505747e+02, 4.50505747e+02, 4.50505747e+02, 4.50505747e+02,
4.47530062e+02, 4.47530062e+02, 4.47530062e+02, 4.47530062e+02,
4.49051988e+02, 4.49051988e+02, 4.49051988e+02, 4.49051988e+02,
4.51904449e+02, 4.51904449e+02, 4.51904449e+02, 4.51904449e+02,
4.52866779e+02, 4.52866779e+02, 4.52866779e+02, 4.52866779e+02,
4.53094164e+02, 4.53094164e+02, 4.53094164e+02, 4.53094164e+02,
4.53054312e+02, 4.53054312e+02, 4.53054312e+02, 4.53054312e+02,
4.53063775e+02, 4.53063775e+02, 4.53063775e+02, 4.53063775e+02,
4.53395324e+02, 4.53395324e+02, 4.53395324e+02, 4.53395324e+02,
4.52569474e+02, 4.52569474e+02, 4.52569474e+02, 4.52569474e+02,
4.35977197e+02, 4.35977197e+02, 4.35977197e+02, 4.35977197e+02,
3.42570389e+02, 3.42570389e+02, 3.42570389e+02, 3.42570389e+02,
1.14587893e+02, 1.14587893e+02, 1.14587893e+02, 1.14587893e+02,
4.38695457e+00, 4.38695457e+00, 4.38695457e+00, 4.38695457e+00,
1.75831808e-02, 1.75831808e-02, 1.75831808e-02, 1.75831808e-02,
1.00007686e-02, 1.00007686e-02, 1.00007686e-02, 1.00007686e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999924,
0.99999924, 0.99999924, 0.99999924, 0.99999693, 0.99999693,
0.99999693, 0.99999693, 0.99998839, 0.99998839, 0.99998839,
0.99998839, 0.99995921, 0.99995921, 0.99995921, 0.99995921,
0.99986699, 0.99986699, 0.99986699, 0.99986699, 0.99959927,
0.99959927, 0.99959927, 0.99959927, 0.99888896, 0.99888896,
0.99888896, 0.99888896, 0.99717807, 0.99717807, 0.99717807,
0.99717807, 0.99346233, 0.99346233, 0.99346233, 0.99346233,
0.98623061, 0.98623061, 0.98623061, 0.98623061, 0.97366804,
0.97366804, 0.97366804, 0.97366804, 0.954191 , 0.954191 ,
0.954191 , 0.954191 , 0.92709612, 0.92709612, 0.92709612,
0.92709612, 0.89288639, 0.89288639, 0.89288639, 0.89288639,
0.85299165, 0.85299165, 0.85299165, 0.85299165, 0.80903108,
0.80903108, 0.80903108, 0.80903108, 0.7637975 , 0.7637975 ,
0.7637975 , 0.7637975 , 0.72115406, 0.72115406, 0.72115406,
0.72115406, 0.68149355, 0.68149355, 0.68149355, 0.68149355,
0.64480222, 0.64480222, 0.64480222, 0.64480222, 0.61500168,
0.61500168, 0.61500168, 0.61500168, 0.58590592, 0.58590592,
0.58590592, 0.58590592, 0.57439796, 0.57439796, 0.57439796,
0.57439796, 0.56387515, 0.56387515, 0.56387515, 0.56387515,
0.56183788, 0.56183788, 0.56183788, 0.56183788, 0.56406492,
0.56406492, 0.56406492, 0.56406492, 0.56696563, 0.56696563,
0.56696563, 0.56696563, 0.5662629 , 0.5662629 , 0.5662629 ,
0.5662629 , 0.56641131, 0.56641131, 0.56641131, 0.56641131,
0.576761 , 0.576761 , 0.576761 , 0.576761 , 0.63578575,
0.63578575, 0.63578575, 0.63578575, 0.84379069, 0.84379069,
0.84379069, 0.84379069, 1.38572903, 1.38572903, 1.38572903,
1.38572903, 2.44002612, 2.44002612, 2.44002612, 2.44002612,
3.20653483, 3.20653483, 3.20653483, 3.20653483, 2.97456245,
2.97456245, 2.97456245, 2.97456245, 1.53663558, 1.53663558,
1.53663558, 1.53663558, 1.0381715 , 1.0381715 , 1.0381715 ,
1.0381715 , 1.00099782, 1.00099782, 1.00099782, 1.00099782,
1.0000005 , 1.0000005 , 1.0000005 , 1.0000005 , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.52640217e-09, 1.52640217e-09, 1.52640217e-09, 1.52640217e-09,
9.88802864e-09, 9.88802864e-09, 9.88802864e-09, 9.88802864e-09,
5.49631705e-08, 5.49631705e-08, 5.49631705e-08, 5.49631705e-08,
2.87970269e-07, 2.87970269e-07, 2.87970269e-07, 2.87970269e-07,
1.41808509e-06, 1.41808509e-06, 1.41808509e-06, 1.41808509e-06,
6.55412036e-06, 6.55412036e-06, 6.55412036e-06, 6.55412036e-06,
2.83823463e-05, 2.83823463e-05, 2.83823463e-05, 2.83823463e-05,
1.14933820e-04, 1.14933820e-04, 1.14933820e-04, 1.14933820e-04,
4.34223292e-04, 4.34223292e-04, 4.34223292e-04, 4.34223292e-04,
1.52641599e-03, 1.52641599e-03, 1.52641599e-03, 1.52641599e-03,
4.97687894e-03, 4.97687894e-03, 4.97687894e-03, 4.97687894e-03,
1.49961991e-02, 1.49961991e-02, 1.49961991e-02, 1.49961991e-02,
4.15882459e-02, 4.15882459e-02, 4.15882459e-02, 4.15882459e-02,
1.05698320e-01, 1.05698320e-01, 1.05698320e-01, 1.05698320e-01,
2.45229407e-01, 2.45229407e-01, 2.45229407e-01, 2.45229407e-01,
5.17987106e-01, 5.17987106e-01, 5.17987106e-01, 5.17987106e-01,
9.95694132e-01, 9.95694132e-01, 9.95694132e-01, 9.95694132e-01,
1.74644988e+00, 1.74644988e+00, 1.74644988e+00, 1.74644988e+00,
2.81214874e+00, 2.81214874e+00, 2.81214874e+00, 2.81214874e+00,
4.19480869e+00, 4.19480869e+00, 4.19480869e+00, 4.19480869e+00,
5.86264757e+00, 5.86264757e+00, 5.86264757e+00, 5.86264757e+00,
7.77472797e+00, 7.77472797e+00, 7.77472797e+00, 7.77472797e+00,
9.80655654e+00, 9.80655654e+00, 9.80655654e+00, 9.80655654e+00,
1.18277382e+01, 1.18277382e+01, 1.18277382e+01, 1.18277382e+01,
1.37971680e+01, 1.37971680e+01, 1.37971680e+01, 1.37971680e+01,
1.56822647e+01, 1.56822647e+01, 1.56822647e+01, 1.56822647e+01,
1.73889246e+01, 1.73889246e+01, 1.73889246e+01, 1.73889246e+01,
1.87901005e+01, 1.87901005e+01, 1.87901005e+01, 1.87901005e+01,
1.97450558e+01, 1.97450558e+01, 1.97450558e+01, 1.97450558e+01,
2.01997684e+01, 2.01997684e+01, 2.01997684e+01, 2.01997684e+01,
2.02877405e+01, 2.02877405e+01, 2.02877405e+01, 2.02877405e+01,
2.01725864e+01, 2.01725864e+01, 2.01725864e+01, 2.01725864e+01,
2.00462536e+01, 2.00462536e+01, 2.00462536e+01, 2.00462536e+01,
2.00208235e+01, 2.00208235e+01, 2.00208235e+01, 2.00208235e+01,
2.00194733e+01, 2.00194733e+01, 2.00194733e+01, 2.00194733e+01,
2.00147202e+01, 2.00147202e+01, 2.00147202e+01, 2.00147202e+01,
2.00035230e+01, 2.00035230e+01, 2.00035230e+01, 2.00035230e+01,
1.99845714e+01, 1.99845714e+01, 1.99845714e+01, 1.99845714e+01,
1.99388525e+01, 1.99388525e+01, 1.99388525e+01, 1.99388525e+01,
1.97268563e+01, 1.97268563e+01, 1.97268563e+01, 1.97268563e+01,
1.86628873e+01, 1.86628873e+01, 1.86628873e+01, 1.86628873e+01,
1.42510014e+01, 1.42510014e+01, 1.42510014e+01, 1.42510014e+01,
4.38724950e+00, 4.38724950e+00, 4.38724950e+00, 4.38724950e+00,
1.35671717e-01, 1.35671717e-01, 1.35671717e-01, 1.35671717e-01,
3.19338310e-04, 3.19338310e-04, 3.19338310e-04, 3.19338310e-04,
5.91067532e-08, 5.91067532e-08, 5.91067532e-08, 5.91067532e-08,
9.14545156e-12, 9.14545156e-12, 9.14545156e-12, 9.14545156e-12,
1.40083653e-15, 1.40083653e-15, 1.40083653e-15, 1.40083653e-15,
2.06948752e-19, 2.06948752e-19, 2.06948752e-19, 2.06948752e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
9.99999947e+02, 9.99999947e+02, 9.99999947e+02, 9.99999947e+02,
9.99999755e+02, 9.99999755e+02, 9.99999755e+02, 9.99999755e+02,
9.99998938e+02, 9.99998938e+02, 9.99998938e+02, 9.99998938e+02,
9.99995700e+02, 9.99995700e+02, 9.99995700e+02, 9.99995700e+02,
9.99983753e+02, 9.99983753e+02, 9.99983753e+02, 9.99983753e+02,
9.99942888e+02, 9.99942888e+02, 9.99942888e+02, 9.99942888e+02,
9.99813799e+02, 9.99813799e+02, 9.99813799e+02, 9.99813799e+02,
9.99439043e+02, 9.99439043e+02, 9.99439043e+02, 9.99439043e+02,
9.98445046e+02, 9.98445046e+02, 9.98445046e+02, 9.98445046e+02,
9.96052372e+02, 9.96052372e+02, 9.96052372e+02, 9.96052372e+02,
9.90862868e+02, 9.90862868e+02, 9.90862868e+02, 9.90862868e+02,
9.80788585e+02, 9.80788585e+02, 9.80788585e+02, 9.80788585e+02,
9.63364916e+02, 9.63364916e+02, 9.63364916e+02, 9.63364916e+02,
9.36537037e+02, 9.36537037e+02, 9.36537037e+02, 9.36537037e+02,
8.99584844e+02, 8.99584844e+02, 8.99584844e+02, 8.99584844e+02,
8.53541949e+02, 8.53541949e+02, 8.53541949e+02, 8.53541949e+02,
8.00725978e+02, 8.00725978e+02, 8.00725978e+02, 8.00725978e+02,
7.43656312e+02, 7.43656312e+02, 7.43656312e+02, 7.43656312e+02,
6.86069806e+02, 6.86069806e+02, 6.86069806e+02, 6.86069806e+02,
6.33063024e+02, 6.33063024e+02, 6.33063024e+02, 6.33063024e+02,
5.84804742e+02, 5.84804742e+02, 5.84804742e+02, 5.84804742e+02,
5.41876353e+02, 5.41876353e+02, 5.41876353e+02, 5.41876353e+02,
5.05141177e+02, 5.05141177e+02, 5.05141177e+02, 5.05141177e+02,
4.76536346e+02, 4.76536346e+02, 4.76536346e+02, 4.76536346e+02,
4.58081353e+02, 4.58081353e+02, 4.58081353e+02, 4.58081353e+02,
4.49630363e+02, 4.49630363e+02, 4.49630363e+02, 4.49630363e+02,
4.47839670e+02, 4.47839670e+02, 4.47839670e+02, 4.47839670e+02,
4.49917497e+02, 4.49917497e+02, 4.49917497e+02, 4.49917497e+02,
4.52105100e+02, 4.52105100e+02, 4.52105100e+02, 4.52105100e+02,
4.52784421e+02, 4.52784421e+02, 4.52784421e+02, 4.52784421e+02,
4.53082540e+02, 4.53082540e+02, 4.53082540e+02, 4.53082540e+02,
4.53173248e+02, 4.53173248e+02, 4.53173248e+02, 4.53173248e+02,
4.53232634e+02, 4.53232634e+02, 4.53232634e+02, 4.53232634e+02,
4.53513027e+02, 4.53513027e+02, 4.53513027e+02, 4.53513027e+02,
4.53743580e+02, 4.53743580e+02, 4.53743580e+02, 4.53743580e+02,
4.47885607e+02, 4.47885607e+02, 4.47885607e+02, 4.47885607e+02,
4.01687163e+02, 4.01687163e+02, 4.01687163e+02, 4.01687163e+02,
2.28101815e+02, 2.28101815e+02, 2.28101815e+02, 2.28101815e+02,
2.86587243e+01, 2.86587243e+01, 2.86587243e+01, 2.86587243e+01,
2.56567373e-01, 2.56567373e-01, 2.56567373e-01, 2.56567373e-01,
1.00575986e-02, 1.00575986e-02, 1.00575986e-02, 1.00575986e-02,
1.00000070e-02, 1.00000070e-02, 1.00000070e-02, 1.00000070e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
0.99999934, 0.99999934, 0.99999934, 0.99999934, 0.99999737,
0.99999737, 0.99999737, 0.99999737, 0.99999024, 0.99999024,
0.99999024, 0.99999024, 0.99996611, 0.99996611, 0.99996611,
0.99996611, 0.99989058, 0.99989058, 0.99989058, 0.99989058,
0.99967241, 0.99967241, 0.99967241, 0.99967241, 0.9990943 ,
0.9990943 , 0.9990943 , 0.9990943 , 0.99769746, 0.99769746,
0.99769746, 0.99769746, 0.99464004, 0.99464004, 0.99464004,
0.99464004, 0.98861492, 0.98861492, 0.98861492, 0.98861492,
0.97797231, 0.97797231, 0.97797231, 0.97797231, 0.96114094,
0.96114094, 0.96114094, 0.96114094, 0.93721972, 0.93721972,
0.93721972, 0.93721972, 0.9063806 , 0.9063806 , 0.9063806 ,
0.9063806 , 0.86977129, 0.86977129, 0.86977129, 0.86977129,
0.8289238 , 0.8289238 , 0.8289238 , 0.8289238 , 0.78560018,
0.78560018, 0.78560018, 0.78560018, 0.74329928, 0.74329928,
0.74329928, 0.74329928, 0.70377185, 0.70377185, 0.70377185,
0.70377185, 0.66708371, 0.66708371, 0.66708371, 0.66708371,
0.6330064 , 0.6330064 , 0.6330064 , 0.6330064 , 0.60675478,
0.60675478, 0.60675478, 0.60675478, 0.58061389, 0.58061389,
0.58061389, 0.58061389, 0.57133748, 0.57133748, 0.57133748,
0.57133748, 0.56401096, 0.56401096, 0.56401096, 0.56401096,
0.56229948, 0.56229948, 0.56229948, 0.56229948, 0.56457284,
0.56457284, 0.56457284, 0.56457284, 0.56699615, 0.56699615,
0.56699615, 0.56699615, 0.56661875, 0.56661875, 0.56661875,
0.56661875, 0.56639427, 0.56639427, 0.56639427, 0.56639427,
0.57210261, 0.57210261, 0.57210261, 0.57210261, 0.60938253,
0.60938253, 0.60938253, 0.60938253, 0.75154823, 0.75154823,
0.75154823, 0.75154823, 1.14834311, 1.14834311, 1.14834311,
1.14834311, 2.00753778, 2.00753778, 2.00753778, 2.00753778,
3.07707073, 3.07707073, 3.07707073, 3.07707073, 3.28851254,
3.28851254, 3.28851254, 3.28851254, 2.25822824, 2.25822824,
2.25822824, 2.25822824, 1.136885 , 1.136885 , 1.136885 ,
1.136885 , 1.00702667, 1.00702667, 1.00702667, 1.00702667,
1.00003133, 1.00003133, 1.00003133, 1.00003133, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([8.88472523e-09, 8.88472523e-09, 8.88472523e-09, 8.88472523e-09,
5.29210904e-08, 5.29210904e-08, 5.29210904e-08, 5.29210904e-08,
2.68968990e-07, 2.68968990e-07, 2.68968990e-07, 2.68968990e-07,
1.29058596e-06, 1.29058596e-06, 1.29058596e-06, 1.29058596e-06,
5.82613011e-06, 5.82613011e-06, 5.82613011e-06, 5.82613011e-06,
2.47055828e-05, 2.47055828e-05, 2.47055828e-05, 2.47055828e-05,
9.82232922e-05, 9.82232922e-05, 9.82232922e-05, 9.82232922e-05,
3.65333376e-04, 3.65333376e-04, 3.65333376e-04, 3.65333376e-04,
1.26798274e-03, 1.26798274e-03, 1.26798274e-03, 1.26798274e-03,
4.09445985e-03, 4.09445985e-03, 4.09445985e-03, 4.09445985e-03,
1.22588183e-02, 1.22588183e-02, 1.22588183e-02, 1.22588183e-02,
3.38993827e-02, 3.38993827e-02, 3.38993827e-02, 3.38993827e-02,
8.62271626e-02, 8.62271626e-02, 8.62271626e-02, 8.62271626e-02,
2.00962075e-01, 2.00962075e-01, 2.00962075e-01, 2.00962075e-01,
4.27886788e-01, 4.27886788e-01, 4.27886788e-01, 4.27886788e-01,
8.31469810e-01, 8.31469810e-01, 8.31469810e-01, 8.31469810e-01,
1.47715354e+00, 1.47715354e+00, 1.47715354e+00, 1.47715354e+00,
2.41104027e+00, 2.41104027e+00, 2.41104027e+00, 2.41104027e+00,
3.64432706e+00, 3.64432706e+00, 3.64432706e+00, 3.64432706e+00,
5.15349521e+00, 5.15349521e+00, 5.15349521e+00, 5.15349521e+00,
6.89898043e+00, 6.89898043e+00, 6.89898043e+00, 6.89898043e+00,
8.82107363e+00, 8.82107363e+00, 8.82107363e+00, 8.82107363e+00,
1.07606034e+01, 1.07606034e+01, 1.07606034e+01, 1.07606034e+01,
1.26809719e+01, 1.26809719e+01, 1.26809719e+01, 1.26809719e+01,
1.45408992e+01, 1.45408992e+01, 1.45408992e+01, 1.45408992e+01,
1.63011956e+01, 1.63011956e+01, 1.63011956e+01, 1.63011956e+01,
1.78659797e+01, 1.78659797e+01, 1.78659797e+01, 1.78659797e+01,
1.91016597e+01, 1.91016597e+01, 1.91016597e+01, 1.91016597e+01,
1.98864085e+01, 1.98864085e+01, 1.98864085e+01, 1.98864085e+01,
2.02241697e+01, 2.02241697e+01, 2.02241697e+01, 2.02241697e+01,
2.02710826e+01, 2.02710826e+01, 2.02710826e+01, 2.02710826e+01,
2.01384385e+01, 2.01384385e+01, 2.01384385e+01, 2.01384385e+01,
2.00398023e+01, 2.00398023e+01, 2.00398023e+01, 2.00398023e+01,
2.00141317e+01, 2.00141317e+01, 2.00141317e+01, 2.00141317e+01,
2.00125047e+01, 2.00125047e+01, 2.00125047e+01, 2.00125047e+01,
2.00117339e+01, 2.00117339e+01, 2.00117339e+01, 2.00117339e+01,
2.00041797e+01, 2.00041797e+01, 2.00041797e+01, 2.00041797e+01,
1.99838495e+01, 1.99838495e+01, 1.99838495e+01, 1.99838495e+01,
1.99519757e+01, 1.99519757e+01, 1.99519757e+01, 1.99519757e+01,
1.98474175e+01, 1.98474175e+01, 1.98474175e+01, 1.98474175e+01,
1.93323898e+01, 1.93323898e+01, 1.93323898e+01, 1.93323898e+01,
1.69770632e+01, 1.69770632e+01, 1.69770632e+01, 1.69770632e+01,
9.43267908e+00, 9.43267908e+00, 9.43267908e+00, 9.43267908e+00,
8.98850413e-01, 8.98850413e-01, 8.98850413e-01, 8.98850413e-01,
7.99452553e-03, 7.99452553e-03, 7.99452553e-03, 7.99452553e-03,
3.95277914e-06, 3.95277914e-06, 3.95277914e-06, 3.95277914e-06,
5.87204713e-10, 5.87204713e-10, 5.87204713e-10, 5.87204713e-10,
8.74454638e-14, 8.74454638e-14, 8.74454638e-14, 8.74454638e-14,
1.31382467e-17, 1.31382467e-17, 1.31382467e-17, 1.31382467e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
9.99999952e+02, 9.99999952e+02, 9.99999952e+02, 9.99999952e+02,
9.99999782e+02, 9.99999782e+02, 9.99999782e+02, 9.99999782e+02,
9.99999076e+02, 9.99999076e+02, 9.99999076e+02, 9.99999076e+02,
9.99996325e+02, 9.99996325e+02, 9.99996325e+02, 9.99996325e+02,
9.99986331e+02, 9.99986331e+02, 9.99986331e+02, 9.99986331e+02,
9.99952558e+02, 9.99952558e+02, 9.99952558e+02, 9.99952558e+02,
9.99846811e+02, 9.99846811e+02, 9.99846811e+02, 9.99846811e+02,
9.99541417e+02, 9.99541417e+02, 9.99541417e+02, 9.99541417e+02,
9.98732356e+02, 9.98732356e+02, 9.98732356e+02, 9.98732356e+02,
9.96778496e+02, 9.96778496e+02, 9.96778496e+02, 9.96778496e+02,
9.92506573e+02, 9.92506573e+02, 9.92506573e+02, 9.92506573e+02,
9.84106027e+02, 9.84106027e+02, 9.84106027e+02, 9.84106027e+02,
9.69322749e+02, 9.69322749e+02, 9.69322749e+02, 9.69322749e+02,
9.46081288e+02, 9.46081288e+02, 9.46081288e+02, 9.46081288e+02,
9.13335017e+02, 9.13335017e+02, 9.13335017e+02, 9.13335017e+02,
8.71610214e+02, 8.71610214e+02, 8.71610214e+02, 8.71610214e+02,
8.22805647e+02, 8.22805647e+02, 8.22805647e+02, 8.22805647e+02,
7.69307087e+02, 7.69307087e+02, 7.69307087e+02, 7.69307087e+02,
7.13651394e+02, 7.13651394e+02, 7.13651394e+02, 7.13651394e+02,
6.60389331e+02, 6.60389331e+02, 6.60389331e+02, 6.60389331e+02,
6.11811082e+02, 6.11811082e+02, 6.11811082e+02, 6.11811082e+02,
5.67482808e+02, 5.67482808e+02, 5.67482808e+02, 5.67482808e+02,
5.28269968e+02, 5.28269968e+02, 5.28269968e+02, 5.28269968e+02,
4.95352222e+02, 4.95352222e+02, 4.95352222e+02, 4.95352222e+02,
4.70492622e+02, 4.70492622e+02, 4.70492622e+02, 4.70492622e+02,
4.55270406e+02, 4.55270406e+02, 4.55270406e+02, 4.55270406e+02,
4.49060619e+02, 4.49060619e+02, 4.49060619e+02, 4.49060619e+02,
4.48201927e+02, 4.48201927e+02, 4.48201927e+02, 4.48201927e+02,
4.50695933e+02, 4.50695933e+02, 4.50695933e+02, 4.50695933e+02,
4.52345569e+02, 4.52345569e+02, 4.52345569e+02, 4.52345569e+02,
4.52754082e+02, 4.52754082e+02, 4.52754082e+02, 4.52754082e+02,
4.52997015e+02, 4.52997015e+02, 4.52997015e+02, 4.52997015e+02,
4.53174880e+02, 4.53174880e+02, 4.53174880e+02, 4.53174880e+02,
4.53361382e+02, 4.53361382e+02, 4.53361382e+02, 4.53361382e+02,
4.53679663e+02, 4.53679663e+02, 4.53679663e+02, 4.53679663e+02,
4.54190653e+02, 4.54190653e+02, 4.54190653e+02, 4.54190653e+02,
4.52637868e+02, 4.52637868e+02, 4.52637868e+02, 4.52637868e+02,
4.32258483e+02, 4.32258483e+02, 4.32258483e+02, 4.32258483e+02,
3.29015504e+02, 3.29015504e+02, 3.29015504e+02, 3.29015504e+02,
1.00405385e+02, 1.00405385e+02, 1.00405385e+02, 1.00405385e+02,
3.29045820e+00, 3.29045820e+00, 3.29045820e+00, 3.29045820e+00,
1.46741752e-02, 1.46741752e-02, 1.46741752e-02, 1.46741752e-02,
1.00004659e-02, 1.00004659e-02, 1.00004659e-02, 1.00004659e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999997, 0.99999997,
0.99999997, 0.99999997, 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999943, 0.99999943, 0.99999943, 0.99999943,
0.99999776, 0.99999776, 0.99999776, 0.99999776, 0.9999918 ,
0.9999918 , 0.9999918 , 0.9999918 , 0.99997186, 0.99997186,
0.99997186, 0.99997186, 0.99990994, 0.99990994, 0.99990994,
0.99990994, 0.99973194, 0.99973194, 0.99973194, 0.99973194,
0.99926076, 0.99926076, 0.99926076, 0.99926076, 0.99811888,
0.99811888, 0.99811888, 0.99811888, 0.9956012 , 0.9956012 ,
0.9956012 , 0.9956012 , 0.99058136, 0.99058136, 0.99058136,
0.99058136, 0.98157355, 0.98157355, 0.98157355, 0.98157355,
0.96705453, 0.96705453, 0.96705453, 0.96705453, 0.94598589,
0.94598589, 0.94598589, 0.94598589, 0.91825438, 0.91825438,
0.91825438, 0.91825438, 0.88471667, 0.88471667, 0.88471667,
0.88471667, 0.84678775, 0.84678775, 0.84678775, 0.84678775,
0.8058432 , 0.8058432 , 0.8058432 , 0.8058432 , 0.76438015,
0.76438015, 0.76438015, 0.76438015, 0.72517919, 0.72517919,
0.72517919, 0.72517919, 0.68826098, 0.68826098, 0.68826098,
0.68826098, 0.65432311, 0.65432311, 0.65432311, 0.65432311,
0.62261428, 0.62261428, 0.62261428, 0.62261428, 0.59964198,
0.59964198, 0.59964198, 0.59964198, 0.57647962, 0.57647962,
0.57647962, 0.57647962, 0.56891377, 0.56891377, 0.56891377,
0.56891377, 0.5642295 , 0.5642295 , 0.5642295 , 0.5642295 ,
0.56291649, 0.56291649, 0.56291649, 0.56291649, 0.56496715,
0.56496715, 0.56496715, 0.56496715, 0.5670335 , 0.5670335 ,
0.5670335 , 0.5670335 , 0.56691285, 0.56691285, 0.56691285,
0.56691285, 0.56649394, 0.56649394, 0.56649394, 0.56649394,
0.56954649, 0.56954649, 0.56954649, 0.56954649, 0.59269675,
0.59269675, 0.59269675, 0.59269675, 0.68846425, 0.68846425,
0.68846425, 0.68846425, 0.97389537, 0.97389537, 0.97389537,
0.97389537, 1.63730131, 1.63730131, 1.63730131, 1.63730131,
2.75902555, 2.75902555, 2.75902555, 2.75902555, 3.37028342,
3.37028342, 3.37028342, 3.37028342, 2.98215238, 2.98215238,
2.98215238, 2.98215238, 1.46829751, 1.46829751, 1.46829751,
1.46829751, 1.03187752, 1.03187752, 1.03187752, 1.03187752,
1.00073195, 1.00073195, 1.00073195, 1.00073195, 1.0000003 ,
1.0000003 , 1.0000003 , 1.0000003 , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([4.52514197e-08, 4.52514197e-08, 4.52514197e-08, 4.52514197e-08,
2.49281931e-07, 2.49281931e-07, 2.49281931e-07, 2.49281931e-07,
1.16502486e-06, 1.16502486e-06, 1.16502486e-06, 1.16502486e-06,
5.14742918e-06, 5.14742918e-06, 5.14742918e-06, 5.14742918e-06,
2.14115184e-05, 2.14115184e-05, 2.14115184e-05, 2.14115184e-05,
8.37057786e-05, 8.37057786e-05, 8.37057786e-05, 8.37057786e-05,
3.06910769e-04, 3.06910769e-04, 3.06910769e-04, 3.06910769e-04,
1.05286130e-03, 1.05286130e-03, 1.05286130e-03, 1.05286130e-03,
3.36989687e-03, 3.36989687e-03, 3.36989687e-03, 3.36989687e-03,
1.00310100e-02, 1.00310100e-02, 1.00310100e-02, 1.00310100e-02,
2.76674775e-02, 2.76674775e-02, 2.76674775e-02, 2.76674775e-02,
7.04345400e-02, 7.04345400e-02, 7.04345400e-02, 7.04345400e-02,
1.64864079e-01, 1.64864079e-01, 1.64864079e-01, 1.64864079e-01,
3.53706435e-01, 3.53706435e-01, 3.53706435e-01, 3.53706435e-01,
6.94517417e-01, 6.94517417e-01, 6.94517417e-01, 6.94517417e-01,
1.24926788e+00, 1.24926788e+00, 1.24926788e+00, 1.24926788e+00,
2.06658717e+00, 2.06658717e+00, 2.06658717e+00, 2.06658717e+00,
3.16549040e+00, 3.16549040e+00, 3.16549040e+00, 3.16549040e+00,
4.53121338e+00, 4.53121338e+00, 4.53121338e+00, 4.53121338e+00,
6.12705253e+00, 6.12705253e+00, 6.12705253e+00, 6.12705253e+00,
7.91542783e+00, 7.91542783e+00, 7.91542783e+00, 7.91542783e+00,
9.77789566e+00, 9.77789566e+00, 9.77789566e+00, 9.77789566e+00,
1.16347704e+01, 1.16347704e+01, 1.16347704e+01, 1.16347704e+01,
1.34551790e+01, 1.34551790e+01, 1.34551790e+01, 1.34551790e+01,
1.52122136e+01, 1.52122136e+01, 1.52122136e+01, 1.52122136e+01,
1.68521553e+01, 1.68521553e+01, 1.68521553e+01, 1.68521553e+01,
1.82765818e+01, 1.82765818e+01, 1.82765818e+01, 1.82765818e+01,
1.93576979e+01, 1.93576979e+01, 1.93576979e+01, 1.93576979e+01,
1.99942621e+01, 1.99942621e+01, 1.99942621e+01, 1.99942621e+01,
2.02328594e+01, 2.02328594e+01, 2.02328594e+01, 2.02328594e+01,
2.02456712e+01, 2.02456712e+01, 2.02456712e+01, 2.02456712e+01,
2.01101923e+01, 2.01101923e+01, 2.01101923e+01, 2.01101923e+01,
2.00369389e+01, 2.00369389e+01, 2.00369389e+01, 2.00369389e+01,
2.00131267e+01, 2.00131267e+01, 2.00131267e+01, 2.00131267e+01,
2.00070966e+01, 2.00070966e+01, 2.00070966e+01, 2.00070966e+01,
2.00052693e+01, 2.00052693e+01, 2.00052693e+01, 2.00052693e+01,
1.99989897e+01, 1.99989897e+01, 1.99989897e+01, 1.99989897e+01,
1.99805077e+01, 1.99805077e+01, 1.99805077e+01, 1.99805077e+01,
1.99568809e+01, 1.99568809e+01, 1.99568809e+01, 1.99568809e+01,
1.98969783e+01, 1.98969783e+01, 1.98969783e+01, 1.98969783e+01,
1.96461093e+01, 1.96461093e+01, 1.96461093e+01, 1.96461093e+01,
1.84628990e+01, 1.84628990e+01, 1.84628990e+01, 1.84628990e+01,
1.37419915e+01, 1.37419915e+01, 1.37419915e+01, 1.37419915e+01,
3.80245394e+00, 3.80245394e+00, 3.80245394e+00, 3.80245394e+00,
1.00964393e-01, 1.00964393e-01, 1.00964393e-01, 1.00964393e-01,
1.97893986e-04, 1.97893986e-04, 1.97893986e-04, 1.97893986e-04,
3.50167417e-08, 3.50167417e-08, 3.50167417e-08, 3.50167417e-08,
5.53183762e-12, 5.53183762e-12, 5.53183762e-12, 5.53183762e-12,
8.51924516e-16, 8.51924516e-16, 8.51924516e-16, 8.51924516e-16,
1.36608685e-19, 1.36608685e-19, 1.36608685e-19, 1.36608685e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999956e+02, 9.99999956e+02, 9.99999956e+02, 9.99999956e+02,
9.99999807e+02, 9.99999807e+02, 9.99999807e+02, 9.99999807e+02,
9.99999199e+02, 9.99999199e+02, 9.99999199e+02, 9.99999199e+02,
9.99996868e+02, 9.99996868e+02, 9.99996868e+02, 9.99996868e+02,
9.99988517e+02, 9.99988517e+02, 9.99988517e+02, 9.99988517e+02,
9.99960606e+02, 9.99960606e+02, 9.99960606e+02, 9.99960606e+02,
9.99873918e+02, 9.99873918e+02, 9.99873918e+02, 9.99873918e+02,
9.99624741e+02, 9.99624741e+02, 9.99624741e+02, 9.99624741e+02,
9.98965280e+02, 9.98965280e+02, 9.98965280e+02, 9.98965280e+02,
9.97367799e+02, 9.97367799e+02, 9.97367799e+02, 9.97367799e+02,
9.93848786e+02, 9.93848786e+02, 9.93848786e+02, 9.93848786e+02,
9.86844939e+02, 9.86844939e+02, 9.86844939e+02, 9.86844939e+02,
9.74316549e+02, 9.74316549e+02, 9.74316549e+02, 9.74316549e+02,
9.54225804e+02, 9.54225804e+02, 9.54225804e+02, 9.54225804e+02,
9.25291883e+02, 9.25291883e+02, 9.25291883e+02, 9.25291883e+02,
8.87600888e+02, 8.87600888e+02, 8.87600888e+02, 8.87600888e+02,
8.42619539e+02, 8.42619539e+02, 8.42619539e+02, 8.42619539e+02,
7.92557878e+02, 7.92557878e+02, 7.92557878e+02, 7.92557878e+02,
7.39509078e+02, 7.39509078e+02, 7.39509078e+02, 7.39509078e+02,
6.86734806e+02, 6.86734806e+02, 6.86734806e+02, 6.86734806e+02,
6.37955173e+02, 6.37955173e+02, 6.37955173e+02, 6.37955173e+02,
5.93035458e+02, 5.93035458e+02, 5.93035458e+02, 5.93035458e+02,
5.52230567e+02, 5.52230567e+02, 5.52230567e+02, 5.52230567e+02,
5.16416992e+02, 5.16416992e+02, 5.16416992e+02, 5.16416992e+02,
4.86984397e+02, 4.86984397e+02, 4.86984397e+02, 4.86984397e+02,
4.65596969e+02, 4.65596969e+02, 4.65596969e+02, 4.65596969e+02,
4.53240066e+02, 4.53240066e+02, 4.53240066e+02, 4.53240066e+02,
4.48778450e+02, 4.48778450e+02, 4.48778450e+02, 4.48778450e+02,
4.48639462e+02, 4.48639462e+02, 4.48639462e+02, 4.48639462e+02,
4.51263622e+02, 4.51263622e+02, 4.51263622e+02, 4.51263622e+02,
4.52567685e+02, 4.52567685e+02, 4.52567685e+02, 4.52567685e+02,
4.52811496e+02, 4.52811496e+02, 4.52811496e+02, 4.52811496e+02,
4.52945111e+02, 4.52945111e+02, 4.52945111e+02, 4.52945111e+02,
4.53123466e+02, 4.53123466e+02, 4.53123466e+02, 4.53123466e+02,
4.53394325e+02, 4.53394325e+02, 4.53394325e+02, 4.53394325e+02,
4.53835168e+02, 4.53835168e+02, 4.53835168e+02, 4.53835168e+02,
4.54404144e+02, 4.54404144e+02, 4.54404144e+02, 4.54404144e+02,
4.54398815e+02, 4.54398815e+02, 4.54398815e+02, 4.54398815e+02,
4.46505808e+02, 4.46505808e+02, 4.46505808e+02, 4.46505808e+02,
3.93317262e+02, 3.93317262e+02, 3.93317262e+02, 3.93317262e+02,
2.10080070e+02, 2.10080070e+02, 2.10080070e+02, 2.10080070e+02,
2.32249751e+01, 2.32249751e+01, 2.32249751e+01, 2.32249751e+01,
1.73430791e-01, 1.73430791e-01, 1.73430791e-01, 1.73430791e-01,
1.00314003e-02, 1.00314003e-02, 1.00314003e-02, 1.00314003e-02,
1.00000041e-02, 1.00000041e-02, 1.00000041e-02, 1.00000041e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.99999988, 0.99999988,
0.99999988, 0.99999988, 0.99999951, 0.99999951, 0.99999951,
0.99999951, 0.9999981 , 0.9999981 , 0.9999981 , 0.9999981 ,
0.99999312, 0.99999312, 0.99999312, 0.99999312, 0.99997664,
0.99997664, 0.99997664, 0.99997664, 0.99992585, 0.99992585,
0.99992585, 0.99992585, 0.99978045, 0.99978045, 0.99978045,
0.99978045, 0.99939593, 0.99939593, 0.99939593, 0.99939593,
0.99846143, 0.99846143, 0.99846143, 0.99846143, 0.99638683,
0.99638683, 0.99638683, 0.99638683, 0.99220475, 0.99220475,
0.99220475, 0.99220475, 0.98458761, 0.98458761, 0.98458761,
0.98458761, 0.9720855 , 0.9720855 , 0.9720855 , 0.9720855 ,
0.95357426, 0.95357426, 0.95357426, 0.95357426, 0.92870343,
0.92870343, 0.92870343, 0.92870343, 0.89804865, 0.89804865,
0.89804865, 0.89804865, 0.86284217, 0.86284217, 0.86284217,
0.86284217, 0.82441149, 0.82441149, 0.82441149, 0.82441149,
0.78436898, 0.78436898, 0.78436898, 0.78436898, 0.74552409,
0.74552409, 0.74552409, 0.74552409, 0.70888758, 0.70888758,
0.70888758, 0.70888758, 0.67437483, 0.67437483, 0.67437483,
0.67437483, 0.6430066 , 0.6430066 , 0.6430066 , 0.6430066 ,
0.61348618, 0.61348618, 0.61348618, 0.61348618, 0.59349049,
0.59349049, 0.59349049, 0.59349049, 0.57331869, 0.57331869,
0.57331869, 0.57331869, 0.56704679, 0.56704679, 0.56704679,
0.56704679, 0.56447692, 0.56447692, 0.56447692, 0.56447692,
0.56362867, 0.56362867, 0.56362867, 0.56362867, 0.56531162,
0.56531162, 0.56531162, 0.56531162, 0.567019 , 0.567019 ,
0.567019 , 0.567019 , 0.56709383, 0.56709383, 0.56709383,
0.56709383, 0.5667092 , 0.5667092 , 0.5667092 , 0.5667092 ,
0.56824252, 0.56824252, 0.56824252, 0.56824252, 0.58236395,
0.58236395, 0.58236395, 0.58236395, 0.6459472 , 0.6459472 ,
0.6459472 , 0.6459472 , 0.84807929, 0.84807929, 0.84807929,
0.84807929, 1.34919174, 1.34919174, 1.34919174, 1.34919174,
2.33541132, 2.33541132, 2.33541132, 2.33541132, 3.2926407 ,
3.2926407 , 3.2926407 , 3.2926407 , 3.37752881, 3.37752881,
3.37752881, 3.37752881, 2.16954992, 2.16954992, 2.16954992,
2.16954992, 1.1172986 , 1.1172986 , 1.1172986 , 1.1172986 ,
1.00560841, 1.00560841, 1.00560841, 1.00560841, 1.00001853,
1.00001853, 1.00001853, 1.00001853, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.04607737e-07, 2.04607737e-07, 2.04607737e-07, 2.04607737e-07,
1.04753503e-06, 1.04753503e-06, 1.04753503e-06, 1.04753503e-06,
4.52318125e-06, 4.52318125e-06, 4.52318125e-06, 4.52318125e-06,
1.84864298e-05, 1.84864298e-05, 1.84864298e-05, 1.84864298e-05,
7.11599517e-05, 7.11599517e-05, 7.11599517e-05, 7.11599517e-05,
2.57499723e-04, 2.57499723e-04, 2.57499723e-04, 2.57499723e-04,
8.73945333e-04, 8.73945333e-04, 8.73945333e-04, 8.73945333e-04,
2.77466387e-03, 2.77466387e-03, 2.77466387e-03, 2.77466387e-03,
8.21545316e-03, 8.21545316e-03, 8.21545316e-03, 8.21545316e-03,
2.26072838e-02, 2.26072838e-02, 2.26072838e-02, 2.26072838e-02,
5.76012133e-02, 5.76012133e-02, 5.76012133e-02, 5.76012133e-02,
1.35378501e-01, 1.35378501e-01, 1.35378501e-01, 1.35378501e-01,
2.92554805e-01, 2.92554805e-01, 2.92554805e-01, 2.92554805e-01,
5.80205845e-01, 5.80205845e-01, 5.80205845e-01, 5.80205845e-01,
1.05628947e+00, 1.05628947e+00, 1.05628947e+00, 1.05628947e+00,
1.77052666e+00, 1.77052666e+00, 1.77052666e+00, 1.77052666e+00,
2.74829898e+00, 2.74829898e+00, 2.74829898e+00, 2.74829898e+00,
3.98331961e+00, 3.98331961e+00, 3.98331961e+00, 3.98331961e+00,
5.44451310e+00, 5.44451310e+00, 5.44451310e+00, 5.44451310e+00,
7.09514684e+00, 7.09514684e+00, 7.09514684e+00, 7.09514684e+00,
8.87295070e+00, 8.87295070e+00, 8.87295070e+00, 8.87295070e+00,
1.06594721e+01, 1.06594721e+01, 1.06594721e+01, 1.06594721e+01,
1.24293602e+01, 1.24293602e+01, 1.24293602e+01, 1.24293602e+01,
1.41607204e+01, 1.41607204e+01, 1.41607204e+01, 1.41607204e+01,
1.58187383e+01, 1.58187383e+01, 1.58187383e+01, 1.58187383e+01,
1.73419873e+01, 1.73419873e+01, 1.73419873e+01, 1.73419873e+01,
1.86283641e+01, 1.86283641e+01, 1.86283641e+01, 1.86283641e+01,
1.95639138e+01, 1.95639138e+01, 1.95639138e+01, 1.95639138e+01,
2.00736039e+01, 2.00736039e+01, 2.00736039e+01, 2.00736039e+01,
2.02330193e+01, 2.02330193e+01, 2.02330193e+01, 2.02330193e+01,
2.02158212e+01, 2.02158212e+01, 2.02158212e+01, 2.02158212e+01,
2.00862699e+01, 2.00862699e+01, 2.00862699e+01, 2.00862699e+01,
2.00336687e+01, 2.00336687e+01, 2.00336687e+01, 2.00336687e+01,
2.00150798e+01, 2.00150798e+01, 2.00150798e+01, 2.00150798e+01,
2.00060876e+01, 2.00060876e+01, 2.00060876e+01, 2.00060876e+01,
1.99998383e+01, 1.99998383e+01, 1.99998383e+01, 1.99998383e+01,
1.99906385e+01, 1.99906385e+01, 1.99906385e+01, 1.99906385e+01,
1.99726435e+01, 1.99726435e+01, 1.99726435e+01, 1.99726435e+01,
1.99540496e+01, 1.99540496e+01, 1.99540496e+01, 1.99540496e+01,
1.99172472e+01, 1.99172472e+01, 1.99172472e+01, 1.99172472e+01,
1.97905611e+01, 1.97905611e+01, 1.97905611e+01, 1.97905611e+01,
1.92093064e+01, 1.92093064e+01, 1.92093064e+01, 1.92093064e+01,
1.66360985e+01, 1.66360985e+01, 1.66360985e+01, 1.66360985e+01,
8.75489385e+00, 8.75489385e+00, 8.75489385e+00, 8.75489385e+00,
7.20452697e-01, 7.20452697e-01, 7.20452697e-01, 7.20452697e-01,
5.43172134e-03, 5.43172134e-03, 5.43172134e-03, 5.43172134e-03,
2.27604406e-06, 2.27604406e-06, 2.27604406e-06, 2.27604406e-06,
3.38472840e-10, 3.38472840e-10, 3.38472840e-10, 3.38472840e-10,
5.10071735e-14, 5.10071735e-14, 5.10071735e-14, 5.10071735e-14,
7.83554591e-18, 7.83554591e-18, 7.83554591e-18, 7.83554591e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999961e+02, 9.99999961e+02, 9.99999961e+02, 9.99999961e+02,
9.99999831e+02, 9.99999831e+02, 9.99999831e+02, 9.99999831e+02,
9.99999308e+02, 9.99999308e+02, 9.99999308e+02, 9.99999308e+02,
9.99997337e+02, 9.99997337e+02, 9.99997337e+02, 9.99997337e+02,
9.99990365e+02, 9.99990365e+02, 9.99990365e+02, 9.99990365e+02,
9.99967300e+02, 9.99967300e+02, 9.99967300e+02, 9.99967300e+02,
9.99896187e+02, 9.99896187e+02, 9.99896187e+02, 9.99896187e+02,
9.99692651e+02, 9.99692651e+02, 9.99692651e+02, 9.99692651e+02,
9.99154448e+02, 9.99154448e+02, 9.99154448e+02, 9.99154448e+02,
9.97846913e+02, 9.97846913e+02, 9.97846913e+02, 9.97846913e+02,
9.94946365e+02, 9.94946365e+02, 9.94946365e+02, 9.94946365e+02,
9.89107997e+02, 9.89107997e+02, 9.89107997e+02, 9.89107997e+02,
9.78502508e+02, 9.78502508e+02, 9.78502508e+02, 9.78502508e+02,
9.61171766e+02, 9.61171766e+02, 9.61171766e+02, 9.61171766e+02,
9.35679962e+02, 9.35679962e+02, 9.35679962e+02, 9.35679962e+02,
9.01743661e+02, 9.01743661e+02, 9.01743661e+02, 9.01743661e+02,
8.60410587e+02, 8.60410587e+02, 8.60410587e+02, 8.60410587e+02,
8.13626053e+02, 8.13626053e+02, 8.13626053e+02, 8.13626053e+02,
7.63416647e+02, 7.63416647e+02, 7.63416647e+02, 7.63416647e+02,
7.12019797e+02, 7.12019797e+02, 7.12019797e+02, 7.12019797e+02,
6.63120871e+02, 6.63120871e+02, 6.63120871e+02, 6.63120871e+02,
6.17966596e+02, 6.17966596e+02, 6.17966596e+02, 6.17966596e+02,
5.76387663e+02, 5.76387663e+02, 5.76387663e+02, 5.76387663e+02,
5.38762205e+02, 5.38762205e+02, 5.38762205e+02, 5.38762205e+02,
5.06102905e+02, 5.06102905e+02, 5.06102905e+02, 5.06102905e+02,
4.79873679e+02, 4.79873679e+02, 4.79873679e+02, 4.79873679e+02,
4.61632451e+02, 4.61632451e+02, 4.61632451e+02, 4.61632451e+02,
4.51822663e+02, 4.51822663e+02, 4.51822663e+02, 4.51822663e+02,
4.48755045e+02, 4.48755045e+02, 4.48755045e+02, 4.48755045e+02,
4.49111914e+02, 4.49111914e+02, 4.49111914e+02, 4.49111914e+02,
4.51654090e+02, 4.51654090e+02, 4.51654090e+02, 4.51654090e+02,
4.52718346e+02, 4.52718346e+02, 4.52718346e+02, 4.52718346e+02,
4.52919431e+02, 4.52919431e+02, 4.52919431e+02, 4.52919431e+02,
4.52976550e+02, 4.52976550e+02, 4.52976550e+02, 4.52976550e+02,
4.53103923e+02, 4.53103923e+02, 4.53103923e+02, 4.53103923e+02,
4.53388509e+02, 4.53388509e+02, 4.53388509e+02, 4.53388509e+02,
4.53898765e+02, 4.53898765e+02, 4.53898765e+02, 4.53898765e+02,
4.54482141e+02, 4.54482141e+02, 4.54482141e+02, 4.54482141e+02,
4.55085093e+02, 4.55085093e+02, 4.55085093e+02, 4.55085093e+02,
4.52596174e+02, 4.52596174e+02, 4.52596174e+02, 4.52596174e+02,
4.27900465e+02, 4.27900465e+02, 4.27900465e+02, 4.27900465e+02,
3.14451641e+02, 3.14451641e+02, 3.14451641e+02, 3.14451641e+02,
8.65631679e+01, 8.65631679e+01, 8.65631679e+01, 8.65631679e+01,
2.41830497e+00, 2.41830497e+00, 2.41830497e+00, 2.41830497e+00,
1.27132333e-02, 1.27132333e-02, 1.27132333e-02, 1.27132333e-02,
1.00002685e-02, 1.00002685e-02, 1.00002685e-02, 1.00002685e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999989,
0.99999989, 0.99999989, 0.99999989, 0.99999957, 0.99999957,
0.99999957, 0.99999957, 0.99999839, 0.99999839, 0.99999839,
0.99999839, 0.99999423, 0.99999423, 0.99999423, 0.99999423,
0.99998062, 0.99998062, 0.99998062, 0.99998062, 0.99993892,
0.99993892, 0.99993892, 0.99993892, 0.99982004, 0.99982004,
0.99982004, 0.99982004, 0.99950587, 0.99950587, 0.99950587,
0.99950587, 0.99874031, 0.99874031, 0.99874031, 0.99874031,
0.99702982, 0.99702982, 0.99702982, 0.99702982, 0.99354599,
0.99354599, 0.99354599, 0.99354599, 0.98711067, 0.98711067,
0.98711067, 0.98711067, 0.97636406, 0.97636406, 0.97636406,
0.97636406, 0.96013913, 0.96013913, 0.96013913, 0.96013913,
0.93789515, 0.93789515, 0.93789515, 0.93789515, 0.90994657,
0.90994657, 0.90994657, 0.90994657, 0.8773198 , 0.8773198 ,
0.8773198 , 0.8773198 , 0.84131053, 0.84131053, 0.84131053,
0.84131053, 0.80309318, 0.80309318, 0.80309318, 0.80309318,
0.76488582, 0.76488582, 0.76488582, 0.76488582, 0.72862882,
0.72862882, 0.72862882, 0.72862882, 0.69424027, 0.69424027,
0.69424027, 0.69424027, 0.66187235, 0.66187235, 0.66187235,
0.66187235, 0.63295763, 0.63295763, 0.63295763, 0.63295763,
0.60550311, 0.60550311, 0.60550311, 0.60550311, 0.58821214,
0.58821214, 0.58821214, 0.58821214, 0.57094445, 0.57094445,
0.57094445, 0.57094445, 0.56567273, 0.56567273, 0.56567273,
0.56567273, 0.56457433, 0.56457433, 0.56457433, 0.56457433,
0.56452234, 0.56452234, 0.56452234, 0.56452234, 0.56563963,
0.56563963, 0.56563963, 0.56563963, 0.56692819, 0.56692819,
0.56692819, 0.56692819, 0.56718804, 0.56718804, 0.56718804,
0.56718804, 0.56693567, 0.56693567, 0.56693567, 0.56693567,
0.56767338, 0.56767338, 0.56767338, 0.56767338, 0.57613836,
0.57613836, 0.57613836, 0.57613836, 0.61774062, 0.61774062,
0.61774062, 0.61774062, 0.75887044, 0.75887044, 0.75887044,
0.75887044, 1.13039106, 1.13039106, 1.13039106, 1.13039106,
1.91581709, 1.91581709, 1.91581709, 1.91581709, 3.05001354,
3.05001354, 3.05001354, 3.05001354, 3.50876949, 3.50876949,
3.50876949, 3.50876949, 2.9569208 , 2.9569208 , 2.9569208 ,
2.9569208 , 1.40056125, 1.40056125, 1.40056125, 1.40056125,
1.02615253, 1.02615253, 1.02615253, 1.02615253, 1.00051302,
1.00051302, 1.00051302, 1.00051302, 1.00000017, 1.00000017,
1.00000017, 1.00000017, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([8.31212456e-07, 8.31212456e-07, 8.31212456e-07, 8.31212456e-07,
3.97120544e-06, 3.97120544e-06, 3.97120544e-06, 3.97120544e-06,
1.59059987e-05, 1.59059987e-05, 1.59059987e-05, 1.59059987e-05,
6.03664366e-05, 6.03664366e-05, 6.03664366e-05, 6.03664366e-05,
2.15805643e-04, 2.15805643e-04, 2.15805643e-04, 2.15805643e-04,
7.25243296e-04, 7.25243296e-04, 7.25243296e-04, 7.25243296e-04,
2.28544773e-03, 2.28544773e-03, 2.28544773e-03, 2.28544773e-03,
6.73404888e-03, 6.73404888e-03, 6.73404888e-03, 6.73404888e-03,
1.84918575e-02, 1.84918575e-02, 1.84918575e-02, 1.84918575e-02,
4.71552363e-02, 4.71552363e-02, 4.71552363e-02, 4.71552363e-02,
1.11259276e-01, 1.11259276e-01, 1.11259276e-01, 1.11259276e-01,
2.42090826e-01, 2.42090826e-01, 2.42090826e-01, 2.42090826e-01,
4.84732171e-01, 4.84732171e-01, 4.84732171e-01, 4.84732171e-01,
8.92811756e-01, 8.92811756e-01, 8.92811756e-01, 8.92811756e-01,
1.51595482e+00, 1.51595482e+00, 1.51595482e+00, 1.51595482e+00,
2.38448316e+00, 2.38448316e+00, 2.38448316e+00, 2.38448316e+00,
3.49994899e+00, 3.49994899e+00, 3.49994899e+00, 3.49994899e+00,
4.83781455e+00, 4.83781455e+00, 4.83781455e+00, 4.83781455e+00,
6.36160827e+00, 6.36160827e+00, 6.36160827e+00, 6.36160827e+00,
8.03629840e+00, 8.03629840e+00, 8.03629840e+00, 8.03629840e+00,
9.75414415e+00, 9.75414415e+00, 9.75414415e+00, 9.75414415e+00,
1.14703604e+01, 1.14703604e+01, 1.14703604e+01, 1.14703604e+01,
1.31577649e+01, 1.31577649e+01, 1.31577649e+01, 1.31577649e+01,
1.48036949e+01, 1.48036949e+01, 1.48036949e+01, 1.48036949e+01,
1.63662284e+01, 1.63662284e+01, 1.63662284e+01, 1.63662284e+01,
1.77761853e+01, 1.77761853e+01, 1.77761853e+01, 1.77761853e+01,
1.89288293e+01, 1.89288293e+01, 1.89288293e+01, 1.89288293e+01,
1.97266212e+01, 1.97266212e+01, 1.97266212e+01, 1.97266212e+01,
2.01268304e+01, 2.01268304e+01, 2.01268304e+01, 2.01268304e+01,
2.02304156e+01, 2.02304156e+01, 2.02304156e+01, 2.02304156e+01,
2.01855356e+01, 2.01855356e+01, 2.01855356e+01, 2.01855356e+01,
2.00664233e+01, 2.00664233e+01, 2.00664233e+01, 2.00664233e+01,
2.00284165e+01, 2.00284165e+01, 2.00284165e+01, 2.00284165e+01,
2.00164011e+01, 2.00164011e+01, 2.00164011e+01, 2.00164011e+01,
2.00075438e+01, 2.00075438e+01, 2.00075438e+01, 2.00075438e+01,
1.99976330e+01, 1.99976330e+01, 1.99976330e+01, 1.99976330e+01,
1.99833671e+01, 1.99833671e+01, 1.99833671e+01, 1.99833671e+01,
1.99631313e+01, 1.99631313e+01, 1.99631313e+01, 1.99631313e+01,
1.99444762e+01, 1.99444762e+01, 1.99444762e+01, 1.99444762e+01,
1.99229151e+01, 1.99229151e+01, 1.99229151e+01, 1.99229151e+01,
1.98546912e+01, 1.98546912e+01, 1.98546912e+01, 1.98546912e+01,
1.95683651e+01, 1.95683651e+01, 1.95683651e+01, 1.95683651e+01,
1.82512117e+01, 1.82512117e+01, 1.82512117e+01, 1.82512117e+01,
1.31946812e+01, 1.31946812e+01, 1.31946812e+01, 1.31946812e+01,
3.22197950e+00, 3.22197950e+00, 3.22197950e+00, 3.22197950e+00,
7.26448767e-02, 7.26448767e-02, 7.26448767e-02, 7.26448767e-02,
1.16941338e-04, 1.16941338e-04, 1.16941338e-04, 1.16941338e-04,
2.00485498e-08, 2.00485498e-08, 2.00485498e-08, 2.00485498e-08,
3.19846760e-12, 3.19846760e-12, 3.19846760e-12, 3.19846760e-12,
4.91826059e-16, 4.91826059e-16, 4.91826059e-16, 4.91826059e-16,
6.67643390e-20, 6.67643390e-20, 6.67643390e-20, 6.67643390e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999969e+02, 9.99999969e+02, 9.99999969e+02, 9.99999969e+02,
9.99999851e+02, 9.99999851e+02, 9.99999851e+02, 9.99999851e+02,
9.99999405e+02, 9.99999405e+02, 9.99999405e+02, 9.99999405e+02,
9.99997741e+02, 9.99997741e+02, 9.99997741e+02, 9.99997741e+02,
9.99991925e+02, 9.99991925e+02, 9.99991925e+02, 9.99991925e+02,
9.99972864e+02, 9.99972864e+02, 9.99972864e+02, 9.99972864e+02,
9.99914490e+02, 9.99914490e+02, 9.99914490e+02, 9.99914490e+02,
9.99748065e+02, 9.99748065e+02, 9.99748065e+02, 9.99748065e+02,
9.99308322e+02, 9.99308322e+02, 9.99308322e+02, 9.99308322e+02,
9.98237056e+02, 9.98237056e+02, 9.98237056e+02, 9.98237056e+02,
9.95845011e+02, 9.95845011e+02, 9.95845011e+02, 9.95845011e+02,
9.90979078e+02, 9.90979078e+02, 9.90979078e+02, 9.90979078e+02,
9.82011051e+02, 9.82011051e+02, 9.82011051e+02, 9.82011051e+02,
9.67091266e+02, 9.67091266e+02, 9.67091266e+02, 9.67091266e+02,
9.44695117e+02, 9.44695117e+02, 9.44695117e+02, 9.44695117e+02,
9.14239174e+02, 9.14239174e+02, 9.14239174e+02, 9.14239174e+02,
8.76379529e+02, 8.76379529e+02, 8.76379529e+02, 8.76379529e+02,
8.32762793e+02, 8.32762793e+02, 8.32762793e+02, 8.32762793e+02,
7.85366006e+02, 7.85366006e+02, 7.85366006e+02, 7.85366006e+02,
7.35932360e+02, 7.35932360e+02, 7.35932360e+02, 7.35932360e+02,
6.87323424e+02, 6.87323424e+02, 6.87323424e+02, 6.87323424e+02,
6.42175077e+02, 6.42175077e+02, 6.42175077e+02, 6.42175077e+02,
6.00145773e+02, 6.00145773e+02, 6.00145773e+02, 6.00145773e+02,
5.61538265e+02, 5.61538265e+02, 5.61538265e+02, 5.61538265e+02,
5.26840609e+02, 5.26840609e+02, 5.26840609e+02, 5.26840609e+02,
4.97140791e+02, 4.97140791e+02, 4.97140791e+02, 4.97140791e+02,
4.73884379e+02, 4.73884379e+02, 4.73884379e+02, 4.73884379e+02,
4.58462049e+02, 4.58462049e+02, 4.58462049e+02, 4.58462049e+02,
4.50871407e+02, 4.50871407e+02, 4.50871407e+02, 4.50871407e+02,
4.48847969e+02, 4.48847969e+02, 4.48847969e+02, 4.48847969e+02,
4.49672702e+02, 4.49672702e+02, 4.49672702e+02, 4.49672702e+02,
4.51922948e+02, 4.51922948e+02, 4.51922948e+02, 4.51922948e+02,
4.52785224e+02, 4.52785224e+02, 4.52785224e+02, 4.52785224e+02,
4.53005867e+02, 4.53005867e+02, 4.53005867e+02, 4.53005867e+02,
4.53063737e+02, 4.53063737e+02, 4.53063737e+02, 4.53063737e+02,
4.53160041e+02, 4.53160041e+02, 4.53160041e+02, 4.53160041e+02,
4.53422261e+02, 4.53422261e+02, 4.53422261e+02, 4.53422261e+02,
4.53914136e+02, 4.53914136e+02, 4.53914136e+02, 4.53914136e+02,
4.54500339e+02, 4.54500339e+02, 4.54500339e+02, 4.54500339e+02,
4.55295261e+02, 4.55295261e+02, 4.55295261e+02, 4.55295261e+02,
4.55007290e+02, 4.55007290e+02, 4.55007290e+02, 4.55007290e+02,
4.44699313e+02, 4.44699313e+02, 4.44699313e+02, 4.44699313e+02,
3.84060326e+02, 3.84060326e+02, 3.84060326e+02, 3.84060326e+02,
1.91713252e+02, 1.91713252e+02, 1.91713252e+02, 1.91713252e+02,
1.83826676e+01, 1.83826676e+01, 1.83826676e+01, 1.83826676e+01,
1.13135376e-01, 1.13135376e-01, 1.13135376e-01, 1.13135376e-01,
1.00165770e-02, 1.00165770e-02, 1.00165770e-02, 1.00165770e-02,
1.00000024e-02, 1.00000024e-02, 1.00000024e-02, 1.00000024e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999963,
0.99999963, 0.99999963, 0.99999963, 0.99999863, 0.99999863,
0.99999863, 0.99999863, 0.99999517, 0.99999517, 0.99999517,
0.99999517, 0.99998392, 0.99998392, 0.99998392, 0.99998392,
0.99994967, 0.99994967, 0.99994967, 0.99994967, 0.99985237,
0.99985237, 0.99985237, 0.99985237, 0.99959542, 0.99959542,
0.99959542, 0.99959542, 0.9989677 , 0.9989677 , 0.9989677 ,
0.9989677 , 0.99755668, 0.99755668, 0.99755668, 0.99755668,
0.99465483, 0.99465483, 0.99465483, 0.99465483, 0.98922278,
0.98922278, 0.98922278, 0.98922278, 0.98000087, 0.98000087,
0.98000087, 0.98000087, 0.96581386, 0.96581386, 0.96581386,
0.96581386, 0.94597479, 0.94597479, 0.94597479, 0.94597479,
0.92056352, 0.92056352, 0.92056352, 0.92056352, 0.89039 ,
0.89039 , 0.89039 , 0.89039 , 0.85665144, 0.85665144,
0.85665144, 0.85665144, 0.82046164, 0.82046164, 0.82046164,
0.82046164, 0.78331999, 0.78331999, 0.78331999, 0.78331999,
0.74742401, 0.74742401, 0.74742401, 0.74742401, 0.71331198,
0.71331198, 0.71331198, 0.71331198, 0.68102127, 0.68102127,
0.68102127, 0.68102127, 0.65059716, 0.65059716, 0.65059716,
0.65059716, 0.6240258 , 0.6240258 , 0.6240258 , 0.6240258 ,
0.59855044, 0.59855044, 0.59855044, 0.59855044, 0.58370503,
0.58370503, 0.58370503, 0.58370503, 0.56923565, 0.56923565,
0.56923565, 0.56923565, 0.5647148 , 0.5647148 , 0.5647148 ,
0.5647148 , 0.5645406 , 0.5645406 , 0.5645406 , 0.5645406 ,
0.56538346, 0.56538346, 0.56538346, 0.56538346, 0.56608138,
0.56608138, 0.56608138, 0.56608138, 0.56681268, 0.56681268,
0.56681268, 0.56681268, 0.56720477, 0.56720477, 0.56720477,
0.56720477, 0.56710473, 0.56710473, 0.56710473, 0.56710473,
0.56748519, 0.56748519, 0.56748519, 0.56748519, 0.5725192 ,
0.5725192 , 0.5725192 , 0.5725192 , 0.59936974, 0.59936974,
0.59936974, 0.59936974, 0.69655554, 0.69655554, 0.69655554,
0.69655554, 0.9676065 , 0.9676065 , 0.9676065 , 0.9676065 ,
1.57749515, 1.57749515, 1.57749515, 1.57749515, 2.65892925,
2.65892925, 2.65892925, 2.65892925, 3.47677245, 3.47677245,
3.47677245, 3.47677245, 3.4415978 , 3.4415978 , 3.4415978 ,
3.4415978 , 2.06542454, 2.06542454, 2.06542454, 2.06542454,
1.09918894, 1.09918894, 1.09918894, 1.09918894, 1.00437867,
1.00437867, 1.00437867, 1.00437867, 1.00001045, 1.00001045,
1.00001045, 1.00001045, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.06442751e-06, 3.06442751e-06, 3.06442751e-06, 3.06442751e-06,
1.37096058e-05, 1.37096058e-05, 1.37096058e-05, 1.37096058e-05,
5.11071441e-05, 5.11071441e-05, 5.11071441e-05, 5.11071441e-05,
1.80696441e-04, 1.80696441e-04, 1.80696441e-04, 1.80696441e-04,
6.01731053e-04, 6.01731053e-04, 6.01731053e-04, 6.01731053e-04,
1.88320977e-03, 1.88320977e-03, 1.88320977e-03, 1.88320977e-03,
5.52400997e-03, 5.52400997e-03, 5.52400997e-03, 5.52400997e-03,
1.51400717e-02, 1.51400717e-02, 1.51400717e-02, 1.51400717e-02,
3.86400960e-02, 3.86400960e-02, 3.86400960e-02, 3.86400960e-02,
9.15052429e-02, 9.15052429e-02, 9.15052429e-02, 9.15052429e-02,
2.00411209e-01, 2.00411209e-01, 2.00411209e-01, 2.00411209e-01,
4.04958870e-01, 4.04958870e-01, 4.04958870e-01, 4.04958870e-01,
7.54311496e-01, 7.54311496e-01, 7.54311496e-01, 7.54311496e-01,
1.29704807e+00, 1.29704807e+00, 1.29704807e+00, 1.29704807e+00,
2.06709372e+00, 2.06709372e+00, 2.06709372e+00, 2.06709372e+00,
3.07296603e+00, 3.07296603e+00, 3.07296603e+00, 3.07296603e+00,
4.29705387e+00, 4.29705387e+00, 4.29705387e+00, 4.29705387e+00,
5.70596036e+00, 5.70596036e+00, 5.70596036e+00, 5.70596036e+00,
7.26745760e+00, 7.26745760e+00, 7.26745760e+00, 7.26745760e+00,
8.91729908e+00, 8.91729908e+00, 8.91729908e+00, 8.91729908e+00,
1.05722640e+01, 1.05722640e+01, 1.05722640e+01, 1.05722640e+01,
1.22139882e+01, 1.22139882e+01, 1.22139882e+01, 1.22139882e+01,
1.38271695e+01, 1.38271695e+01, 1.38271695e+01, 1.38271695e+01,
1.53909420e+01, 1.53909420e+01, 1.53909420e+01, 1.53909420e+01,
1.68595079e+01, 1.68595079e+01, 1.68595079e+01, 1.68595079e+01,
1.81589814e+01, 1.81589814e+01, 1.81589814e+01, 1.81589814e+01,
1.91837824e+01, 1.91837824e+01, 1.91837824e+01, 1.91837824e+01,
1.98529322e+01, 1.98529322e+01, 1.98529322e+01, 1.98529322e+01,
2.01599348e+01, 2.01599348e+01, 2.01599348e+01, 2.01599348e+01,
2.02242115e+01, 2.02242115e+01, 2.02242115e+01, 2.02242115e+01,
2.01558715e+01, 2.01558715e+01, 2.01558715e+01, 2.01558715e+01,
2.00527078e+01, 2.00527078e+01, 2.00527078e+01, 2.00527078e+01,
2.00224238e+01, 2.00224238e+01, 2.00224238e+01, 2.00224238e+01,
2.00150070e+01, 2.00150070e+01, 2.00150070e+01, 2.00150070e+01,
2.00079684e+01, 2.00079684e+01, 2.00079684e+01, 2.00079684e+01,
1.99973046e+01, 1.99973046e+01, 1.99973046e+01, 1.99973046e+01,
1.99790344e+01, 1.99790344e+01, 1.99790344e+01, 1.99790344e+01,
1.99548828e+01, 1.99548828e+01, 1.99548828e+01, 1.99548828e+01,
1.99337003e+01, 1.99337003e+01, 1.99337003e+01, 1.99337003e+01,
1.99182352e+01, 1.99182352e+01, 1.99182352e+01, 1.99182352e+01,
1.98796077e+01, 1.98796077e+01, 1.98796077e+01, 1.98796077e+01,
1.97369800e+01, 1.97369800e+01, 1.97369800e+01, 1.97369800e+01,
1.90826196e+01, 1.90826196e+01, 1.90826196e+01, 1.90826196e+01,
1.62655591e+01, 1.62655591e+01, 1.62655591e+01, 1.62655591e+01,
8.02647381e+00, 8.02647381e+00, 8.02647381e+00, 8.02647381e+00,
5.66390276e-01, 5.66390276e-01, 5.66390276e-01, 5.66390276e-01,
3.57075007e-03, 3.57075007e-03, 3.57075007e-03, 3.57075007e-03,
1.26227765e-06, 1.26227765e-06, 1.26227765e-06, 1.26227765e-06,
1.87417390e-10, 1.87417390e-10, 1.87417390e-10, 1.87417390e-10,
2.86649447e-14, 2.86649447e-14, 2.86649447e-14, 2.86649447e-14,
4.45854151e-18, 4.45854151e-18, 4.45854151e-18, 4.45854151e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999885e+02, 9.99999885e+02, 9.99999885e+02, 9.99999885e+02,
9.99999487e+02, 9.99999487e+02, 9.99999487e+02, 9.99999487e+02,
9.99998088e+02, 9.99998088e+02, 9.99998088e+02, 9.99998088e+02,
9.99993239e+02, 9.99993239e+02, 9.99993239e+02, 9.99993239e+02,
9.99977486e+02, 9.99977486e+02, 9.99977486e+02, 9.99977486e+02,
9.99929539e+02, 9.99929539e+02, 9.99929539e+02, 9.99929539e+02,
9.99793331e+02, 9.99793331e+02, 9.99793331e+02, 9.99793331e+02,
9.99433661e+02, 9.99433661e+02, 9.99433661e+02, 9.99433661e+02,
9.98555189e+02, 9.98555189e+02, 9.98555189e+02, 9.98555189e+02,
9.96581570e+02, 9.96581570e+02, 9.96581570e+02, 9.96581570e+02,
9.92526877e+02, 9.92526877e+02, 9.92526877e+02, 9.92526877e+02,
9.84951309e+02, 9.84951309e+02, 9.84951309e+02, 9.84951309e+02,
9.72131850e+02, 9.72131850e+02, 9.72131850e+02, 9.72131850e+02,
9.52508972e+02, 9.52508972e+02, 9.52508972e+02, 9.52508972e+02,
9.25264888e+02, 9.25264888e+02, 9.25264888e+02, 9.25264888e+02,
8.90701571e+02, 8.90701571e+02, 8.90701571e+02, 8.90701571e+02,
8.50150128e+02, 8.50150128e+02, 8.50150128e+02, 8.50150128e+02,
8.05448379e+02, 8.05448379e+02, 8.05448379e+02, 8.05448379e+02,
7.58271461e+02, 7.58271461e+02, 7.58271461e+02, 7.58271461e+02,
7.10634261e+02, 7.10634261e+02, 7.10634261e+02, 7.10634261e+02,
6.65455423e+02, 6.65455423e+02, 6.65455423e+02, 6.65455423e+02,
6.23352527e+02, 6.23352527e+02, 6.23352527e+02, 6.23352527e+02,
5.84182279e+02, 5.84182279e+02, 5.84182279e+02, 5.84182279e+02,
5.48269428e+02, 5.48269428e+02, 5.48269428e+02, 5.48269428e+02,
5.16272042e+02, 5.16272042e+02, 5.16272042e+02, 5.16272042e+02,
4.89358572e+02, 4.89358572e+02, 4.89358572e+02, 4.89358572e+02,
4.68892875e+02, 4.68892875e+02, 4.68892875e+02, 4.68892875e+02,
4.55991188e+02, 4.55991188e+02, 4.55991188e+02, 4.55991188e+02,
4.50239990e+02, 4.50239990e+02, 4.50239990e+02, 4.50239990e+02,
4.49001549e+02, 4.49001549e+02, 4.49001549e+02, 4.49001549e+02,
4.50267586e+02, 4.50267586e+02, 4.50267586e+02, 4.50267586e+02,
4.52156184e+02, 4.52156184e+02, 4.52156184e+02, 4.52156184e+02,
4.52802596e+02, 4.52802596e+02, 4.52802596e+02, 4.52802596e+02,
4.53038480e+02, 4.53038480e+02, 4.53038480e+02, 4.53038480e+02,
4.53140657e+02, 4.53140657e+02, 4.53140657e+02, 4.53140657e+02,
4.53267209e+02, 4.53267209e+02, 4.53267209e+02, 4.53267209e+02,
4.53531394e+02, 4.53531394e+02, 4.53531394e+02, 4.53531394e+02,
4.53971062e+02, 4.53971062e+02, 4.53971062e+02, 4.53971062e+02,
4.54514025e+02, 4.54514025e+02, 4.54514025e+02, 4.54514025e+02,
4.55259395e+02, 4.55259395e+02, 4.55259395e+02, 4.55259395e+02,
4.55867897e+02, 4.55867897e+02, 4.55867897e+02, 4.55867897e+02,
4.52235462e+02, 4.52235462e+02, 4.52235462e+02, 4.52235462e+02,
4.22918025e+02, 4.22918025e+02, 4.22918025e+02, 4.22918025e+02,
2.98696478e+02, 2.98696478e+02, 2.98696478e+02, 2.98696478e+02,
7.35671819e+01, 7.35671819e+01, 7.35671819e+01, 7.35671819e+01,
1.73816088e+00, 1.73816088e+00, 1.73816088e+00, 1.73816088e+00,
1.15098232e-02, 1.15098232e-02, 1.15098232e-02, 1.15098232e-02,
1.00001491e-02, 1.00001491e-02, 1.00001491e-02, 1.00001491e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999884,
0.99999884, 0.99999884, 0.99999884, 0.99999596, 0.99999596,
0.99999596, 0.99999596, 0.99998666, 0.99998666, 0.99998666,
0.99998666, 0.99995851, 0.99995851, 0.99995851, 0.99995851,
0.99987881, 0.99987881, 0.99987881, 0.99987881, 0.99966846,
0.99966846, 0.99966846, 0.99966846, 0.99915332, 0.99915332,
0.99915332, 0.99915332, 0.99798882, 0.99798882, 0.99798882,
0.99798882, 0.99557202, 0.99557202, 0.99557202, 0.99557202,
0.99099076, 0.99099076, 0.99099076, 0.99099076, 0.98309025,
0.98309025, 0.98309025, 0.98309025, 0.97071425, 0.97071425,
0.97071425, 0.97071425, 0.95306962, 0.95306962, 0.95306962,
0.95306962, 0.93003166, 0.93003166, 0.93003166, 0.93003166,
0.90219494, 0.90219494, 0.90219494, 0.90219494, 0.8706268 ,
0.8706268 , 0.8706268 , 0.8706268 , 0.83644936, 0.83644936,
0.83644936, 0.83644936, 0.80070998, 0.80070998, 0.80070998,
0.80070998, 0.76534052, 0.76534052, 0.76534052, 0.76534052,
0.73160157, 0.73160157, 0.73160157, 0.73160157, 0.69941663,
0.69941663, 0.69941663, 0.69941663, 0.66904404, 0.66904404,
0.66904404, 0.66904404, 0.640412 , 0.640412 , 0.640412 ,
0.640412 , 0.61609193, 0.61609193, 0.61609193, 0.61609193,
0.59253553, 0.59253553, 0.59253553, 0.59253553, 0.57985082,
0.57985082, 0.57985082, 0.57985082, 0.56807488, 0.56807488,
0.56807488, 0.56807488, 0.56414175, 0.56414175, 0.56414175,
0.56414175, 0.56447501, 0.56447501, 0.56447501, 0.56447501,
0.56608222, 0.56608222, 0.56608222, 0.56608222, 0.5665232 ,
0.5665232 , 0.5665232 , 0.5665232 , 0.56679339, 0.56679339,
0.56679339, 0.56679339, 0.56717873, 0.56717873, 0.56717873,
0.56717873, 0.5672011 , 0.5672011 , 0.5672011 , 0.5672011 ,
0.56745182, 0.56745182, 0.56745182, 0.56745182, 0.57048317,
0.57048317, 0.57048317, 0.57048317, 0.58763359, 0.58763359,
0.58763359, 0.58763359, 0.65365865, 0.65365865, 0.65365865,
0.65365865, 0.84867448, 0.84867448, 0.84867448, 0.84867448,
1.31307086, 1.31307086, 1.31307086, 1.31307086, 2.21646901,
2.21646901, 2.21646901, 2.21646901, 3.30517749, 3.30517749,
3.30517749, 3.30517749, 3.62340282, 3.62340282, 3.62340282,
3.62340282, 2.90056638, 2.90056638, 2.90056638, 2.90056638,
1.33694683, 1.33694683, 1.33694683, 1.33694683, 1.0212743 ,
1.0212743 , 1.0212743 , 1.0212743 , 1.00034859, 1.00034859,
1.00034859, 1.00034859, 1.0000001 , 1.0000001 , 1.0000001 ,
1.0000001 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.03392125e-05, 1.03392125e-05, 1.03392125e-05, 1.03392125e-05,
4.34400060e-05, 4.34400060e-05, 4.34400060e-05, 4.34400060e-05,
1.51141917e-04, 1.51141917e-04, 1.51141917e-04, 1.51141917e-04,
4.99195131e-04, 4.99195131e-04, 4.99195131e-04, 4.99195131e-04,
1.55234811e-03, 1.55234811e-03, 1.55234811e-03, 1.55234811e-03,
4.53464427e-03, 4.53464427e-03, 4.53464427e-03, 4.53464427e-03,
1.24067118e-02, 1.24067118e-02, 1.24067118e-02, 1.24067118e-02,
3.16898153e-02, 3.16898153e-02, 3.16898153e-02, 3.16898153e-02,
7.53087747e-02, 7.53087747e-02, 7.53087747e-02, 7.53087747e-02,
1.65962861e-01, 1.65962861e-01, 1.65962861e-01, 1.65962861e-01,
3.38287464e-01, 3.38287464e-01, 3.38287464e-01, 3.38287464e-01,
6.36985732e-01, 6.36985732e-01, 6.36985732e-01, 6.36985732e-01,
1.10885693e+00, 1.10885693e+00, 1.10885693e+00, 1.10885693e+00,
1.79021928e+00, 1.79021928e+00, 1.79021928e+00, 1.79021928e+00,
2.69557108e+00, 2.69557108e+00, 2.69557108e+00, 2.69557108e+00,
3.81416950e+00, 3.81416950e+00, 3.81416950e+00, 3.81416950e+00,
5.11690819e+00, 5.11690819e+00, 5.11690819e+00, 5.11690819e+00,
6.57068197e+00, 6.57068197e+00, 6.57068197e+00, 6.57068197e+00,
8.14009276e+00, 8.14009276e+00, 8.14009276e+00, 8.14009276e+00,
9.73476120e+00, 9.73476120e+00, 9.73476120e+00, 9.73476120e+00,
1.13275023e+01, 1.13275023e+01, 1.13275023e+01, 1.13275023e+01,
1.29006498e+01, 1.29006498e+01, 1.29006498e+01, 1.29006498e+01,
1.44427973e+01, 1.44427973e+01, 1.44427973e+01, 1.44427973e+01,
1.59276078e+01, 1.59276078e+01, 1.59276078e+01, 1.59276078e+01,
1.73033647e+01, 1.73033647e+01, 1.73033647e+01, 1.73033647e+01,
1.84940290e+01, 1.84940290e+01, 1.84940290e+01, 1.84940290e+01,
1.93974938e+01, 1.93974938e+01, 1.93974938e+01, 1.93974938e+01,
1.99500228e+01, 1.99500228e+01, 1.99500228e+01, 1.99500228e+01,
2.01786156e+01, 2.01786156e+01, 2.01786156e+01, 2.01786156e+01,
2.02141830e+01, 2.02141830e+01, 2.02141830e+01, 2.02141830e+01,
2.01270312e+01, 2.01270312e+01, 2.01270312e+01, 2.01270312e+01,
2.00438391e+01, 2.00438391e+01, 2.00438391e+01, 2.00438391e+01,
2.00180478e+01, 2.00180478e+01, 2.00180478e+01, 2.00180478e+01,
2.00116554e+01, 2.00116554e+01, 2.00116554e+01, 2.00116554e+01,
2.00060169e+01, 2.00060169e+01, 2.00060169e+01, 2.00060169e+01,
1.99957578e+01, 1.99957578e+01, 1.99957578e+01, 1.99957578e+01,
1.99760299e+01, 1.99760299e+01, 1.99760299e+01, 1.99760299e+01,
1.99495430e+01, 1.99495430e+01, 1.99495430e+01, 1.99495430e+01,
1.99258351e+01, 1.99258351e+01, 1.99258351e+01, 1.99258351e+01,
1.99068524e+01, 1.99068524e+01, 1.99068524e+01, 1.99068524e+01,
1.98862615e+01, 1.98862615e+01, 1.98862615e+01, 1.98862615e+01,
1.98134680e+01, 1.98134680e+01, 1.98134680e+01, 1.98134680e+01,
1.94905556e+01, 1.94905556e+01, 1.94905556e+01, 1.94905556e+01,
1.80230680e+01, 1.80230680e+01, 1.80230680e+01, 1.80230680e+01,
1.26076173e+01, 1.26076173e+01, 1.26076173e+01, 1.26076173e+01,
2.67311141e+00, 2.67311141e+00, 2.67311141e+00, 2.67311141e+00,
5.14361403e-02, 5.14361403e-02, 5.14361403e-02, 5.14361403e-02,
6.80950934e-05, 6.80950934e-05, 6.80950934e-05, 6.80950934e-05,
1.13412667e-08, 1.13412667e-08, 1.13412667e-08, 1.13412667e-08,
1.79486084e-12, 1.79486084e-12, 1.79486084e-12, 1.79486084e-12,
2.73952290e-16, 2.73952290e-16, 2.73952290e-16, 2.73952290e-16,
5.00064164e-20, 5.00064164e-20, 5.00064164e-20, 5.00064164e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
9.99998375e+02, 9.99998375e+02, 9.99998375e+02, 9.99998375e+02,
9.99994345e+02, 9.99994345e+02, 9.99994345e+02, 9.99994345e+02,
9.99981322e+02, 9.99981322e+02, 9.99981322e+02, 9.99981322e+02,
9.99941918e+02, 9.99941918e+02, 9.99941918e+02, 9.99941918e+02,
9.99830343e+02, 9.99830343e+02, 9.99830343e+02, 9.99830343e+02,
9.99535884e+02, 9.99535884e+02, 9.99535884e+02, 9.99535884e+02,
9.98814928e+02, 9.98814928e+02, 9.98814928e+02, 9.98814928e+02,
9.97185851e+02, 9.97185851e+02, 9.97185851e+02, 9.97185851e+02,
9.93807795e+02, 9.93807795e+02, 9.93807795e+02, 9.93807795e+02,
9.87414745e+02, 9.87414745e+02, 9.87414745e+02, 9.87414745e+02,
9.76420200e+02, 9.76420200e+02, 9.76420200e+02, 9.76420200e+02,
9.59272359e+02, 9.59272359e+02, 9.59272359e+02, 9.59272359e+02,
9.34979017e+02, 9.34979017e+02, 9.34979017e+02, 9.34979017e+02,
9.03531113e+02, 9.03531113e+02, 9.03531113e+02, 9.03531113e+02,
8.65943868e+02, 8.65943868e+02, 8.65943868e+02, 8.65943868e+02,
8.23870991e+02, 8.23870991e+02, 8.23870991e+02, 8.23870991e+02,
7.78998721e+02, 7.78998721e+02, 7.78998721e+02, 7.78998721e+02,
7.32829097e+02, 7.32829097e+02, 7.32829097e+02, 7.32829097e+02,
6.87867667e+02, 6.87867667e+02, 6.87867667e+02, 6.87867667e+02,
6.45811417e+02, 6.45811417e+02, 6.45811417e+02, 6.45811417e+02,
6.06420020e+02, 6.06420020e+02, 6.06420020e+02, 6.06420020e+02,
5.69812260e+02, 5.69812260e+02, 5.69812260e+02, 5.69812260e+02,
5.36391612e+02, 5.36391612e+02, 5.36391612e+02, 5.36391612e+02,
5.06909342e+02, 5.06909342e+02, 5.06909342e+02, 5.06909342e+02,
4.82613586e+02, 4.82613586e+02, 4.82613586e+02, 4.82613586e+02,
4.64771665e+02, 4.64771665e+02, 4.64771665e+02, 4.64771665e+02,
4.54120136e+02, 4.54120136e+02, 4.54120136e+02, 4.54120136e+02,
4.49846503e+02, 4.49846503e+02, 4.49846503e+02, 4.49846503e+02,
4.49195989e+02, 4.49195989e+02, 4.49195989e+02, 4.49195989e+02,
4.50838120e+02, 4.50838120e+02, 4.50838120e+02, 4.50838120e+02,
4.52365430e+02, 4.52365430e+02, 4.52365430e+02, 4.52365430e+02,
4.52826151e+02, 4.52826151e+02, 4.52826151e+02, 4.52826151e+02,
4.53036969e+02, 4.53036969e+02, 4.53036969e+02, 4.53036969e+02,
4.53180502e+02, 4.53180502e+02, 4.53180502e+02, 4.53180502e+02,
4.53367904e+02, 4.53367904e+02, 4.53367904e+02, 4.53367904e+02,
4.53682043e+02, 4.53682043e+02, 4.53682043e+02, 4.53682043e+02,
4.54101255e+02, 4.54101255e+02, 4.54101255e+02, 4.54101255e+02,
4.54550055e+02, 4.54550055e+02, 4.54550055e+02, 4.54550055e+02,
4.55181873e+02, 4.55181873e+02, 4.55181873e+02, 4.55181873e+02,
4.56088869e+02, 4.56088869e+02, 4.56088869e+02, 4.56088869e+02,
4.55314517e+02, 4.55314517e+02, 4.55314517e+02, 4.55314517e+02,
4.42432305e+02, 4.42432305e+02, 4.42432305e+02, 4.42432305e+02,
3.73791360e+02, 3.73791360e+02, 3.73791360e+02, 3.73791360e+02,
1.73331140e+02, 1.73331140e+02, 1.73331140e+02, 1.73331140e+02,
1.42286314e+01, 1.42286314e+01, 1.42286314e+01, 1.42286314e+01,
7.35026594e-02, 7.35026594e-02, 7.35026594e-02, 7.35026594e-02,
1.00088839e-02, 1.00088839e-02, 1.00088839e-02, 1.00088839e-02,
1.00000013e-02, 1.00000013e-02, 1.00000013e-02, 1.00000013e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999914, 0.99999914, 0.99999914, 0.99999914, 0.9999966 ,
0.9999966 , 0.9999966 , 0.9999966 , 0.99998894, 0.99998894,
0.99998894, 0.99998894, 0.99996579, 0.99996579, 0.99996579,
0.99996579, 0.99990045, 0.99990045, 0.99990045, 0.99990045,
0.99972809, 0.99972809, 0.99972809, 0.99972809, 0.99930503,
0.99930503, 0.99930503, 0.99930503, 0.99834358, 0.99834358,
0.99834358, 0.99834358, 0.99633101, 0.99633101, 0.99633101,
0.99633101, 0.99247048, 0.99247048, 0.99247048, 0.99247048,
0.98571275, 0.98571275, 0.98571275, 0.98571275, 0.97494122,
0.97494122, 0.97494122, 0.97494122, 0.95929193, 0.95929193,
0.95929193, 0.95929193, 0.93846719, 0.93846719, 0.93846719,
0.93846719, 0.91285499, 0.91285499, 0.91285499, 0.91285499,
0.88337065, 0.88337065, 0.88337065, 0.88337065, 0.85110869,
0.85110869, 0.85110869, 0.85110869, 0.81698796, 0.81698796,
0.81698796, 0.81698796, 0.78242051, 0.78242051, 0.78242051,
0.78242051, 0.74907398, 0.74907398, 0.74907398, 0.74907398,
0.7171757 , 0.7171757 , 0.7171757 , 0.7171757 , 0.68675454,
0.68675454, 0.68675454, 0.68675454, 0.65817399, 0.65817399,
0.65817399, 0.65817399, 0.63120015, 0.63120015, 0.63120015,
0.63120015, 0.60905285, 0.60905285, 0.60905285, 0.60905285,
0.58738819, 0.58738819, 0.58738819, 0.58738819, 0.57655812,
0.57655812, 0.57655812, 0.57655812, 0.56731141, 0.56731141,
0.56731141, 0.56731141, 0.5639553 , 0.5639553 , 0.5639553 ,
0.5639553 , 0.56439893, 0.56439893, 0.56439893, 0.56439893,
0.5666221 , 0.5666221 , 0.5666221 , 0.5666221 , 0.56689879,
0.56689879, 0.56689879, 0.56689879, 0.56688439, 0.56688439,
0.56688439, 0.56688439, 0.56712646, 0.56712646, 0.56712646,
0.56712646, 0.56724753, 0.56724753, 0.56724753, 0.56724753,
0.56747625, 0.56747625, 0.56747625, 0.56747625, 0.56936103,
0.56936103, 0.56936103, 0.56936103, 0.58025147, 0.58025147,
0.58025147, 0.58025147, 0.62459777, 0.62459777, 0.62459777,
0.62459777, 0.76306356, 0.76306356, 0.76306356, 0.76306356,
1.11089581, 1.11089581, 1.11089581, 1.11089581, 1.83047175,
1.83047175, 1.83047175, 1.83047175, 2.96543117, 2.96543117,
2.96543117, 2.96543117, 3.63638824, 3.63638824, 3.63638824,
3.63638824, 3.47481596, 3.47481596, 3.47481596, 3.47481596,
1.95403945, 1.95403945, 1.95403945, 1.95403945, 1.08283494,
1.08283494, 1.08283494, 1.08283494, 1.00335988, 1.00335988,
1.00335988, 1.00335988, 1.00000576, 1.00000576, 1.00000576,
1.00000576, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.21524399e-05, 3.21524399e-05, 3.21524399e-05, 3.21524399e-05,
1.27174228e-04, 1.27174228e-04, 1.27174228e-04, 1.27174228e-04,
4.13952526e-04, 4.13952526e-04, 4.13952526e-04, 4.13952526e-04,
1.28010235e-03, 1.28010235e-03, 1.28010235e-03, 1.28010235e-03,
3.72494678e-03, 3.72494678e-03, 3.72494678e-03, 3.72494678e-03,
1.01750372e-02, 1.01750372e-02, 1.01750372e-02, 1.01750372e-02,
2.60100958e-02, 2.60100958e-02, 2.60100958e-02, 2.60100958e-02,
6.20163885e-02, 6.20163885e-02, 6.20163885e-02, 6.20163885e-02,
1.37474769e-01, 1.37474769e-01, 1.37474769e-01, 1.37474769e-01,
2.82559370e-01, 2.82559370e-01, 2.82559370e-01, 2.82559370e-01,
5.37624629e-01, 5.37624629e-01, 5.37624629e-01, 5.37624629e-01,
9.47149548e-01, 9.47149548e-01, 9.47149548e-01, 9.47149548e-01,
1.54878183e+00, 1.54878183e+00, 1.54878183e+00, 1.54878183e+00,
2.36197526e+00, 2.36197526e+00, 2.36197526e+00, 2.36197526e+00,
3.38252055e+00, 3.38252055e+00, 3.38252055e+00, 3.38252055e+00,
4.58640867e+00, 4.58640867e+00, 4.58640867e+00, 4.58640867e+00,
5.94121401e+00, 5.94121401e+00, 5.94121401e+00, 5.94121401e+00,
7.41947260e+00, 7.41947260e+00, 7.41947260e+00, 7.41947260e+00,
8.95560830e+00, 8.95560830e+00, 8.95560830e+00, 8.95560830e+00,
1.04968275e+01, 1.04968275e+01, 1.04968275e+01, 1.04968275e+01,
1.20259513e+01, 1.20259513e+01, 1.20259513e+01, 1.20259513e+01,
1.35357208e+01, 1.35357208e+01, 1.35357208e+01, 1.35357208e+01,
1.50098538e+01, 1.50098538e+01, 1.50098538e+01, 1.50098538e+01,
1.64177832e+01, 1.64177832e+01, 1.64177832e+01, 1.64177832e+01,
1.77019691e+01, 1.77019691e+01, 1.77019691e+01, 1.77019691e+01,
1.87851353e+01, 1.87851353e+01, 1.87851353e+01, 1.87851353e+01,
1.95738145e+01, 1.95738145e+01, 1.95738145e+01, 1.95738145e+01,
2.00235953e+01, 2.00235953e+01, 2.00235953e+01, 2.00235953e+01,
2.01873321e+01, 2.01873321e+01, 2.01873321e+01, 2.01873321e+01,
2.01992370e+01, 2.01992370e+01, 2.01992370e+01, 2.01992370e+01,
2.01017551e+01, 2.01017551e+01, 2.01017551e+01, 2.01017551e+01,
2.00372744e+01, 2.00372744e+01, 2.00372744e+01, 2.00372744e+01,
2.00157926e+01, 2.00157926e+01, 2.00157926e+01, 2.00157926e+01,
2.00082959e+01, 2.00082959e+01, 2.00082959e+01, 2.00082959e+01,
2.00024907e+01, 2.00024907e+01, 2.00024907e+01, 2.00024907e+01,
1.99918498e+01, 1.99918498e+01, 1.99918498e+01, 1.99918498e+01,
1.99718075e+01, 1.99718075e+01, 1.99718075e+01, 1.99718075e+01,
1.99458177e+01, 1.99458177e+01, 1.99458177e+01, 1.99458177e+01,
1.99210292e+01, 1.99210292e+01, 1.99210292e+01, 1.99210292e+01,
1.98969554e+01, 1.98969554e+01, 1.98969554e+01, 1.98969554e+01,
1.98826323e+01, 1.98826323e+01, 1.98826323e+01, 1.98826323e+01,
1.98432269e+01, 1.98432269e+01, 1.98432269e+01, 1.98432269e+01,
1.96844946e+01, 1.96844946e+01, 1.96844946e+01, 1.96844946e+01,
1.89485092e+01, 1.89485092e+01, 1.89485092e+01, 1.89485092e+01,
1.58676586e+01, 1.58676586e+01, 1.58676586e+01, 1.58676586e+01,
7.25693697e+00, 7.25693697e+00, 7.25693697e+00, 7.25693697e+00,
4.34921777e-01, 4.34921777e-01, 4.34921777e-01, 4.34921777e-01,
2.27948590e-03, 2.27948590e-03, 2.27948590e-03, 2.27948590e-03,
6.88627382e-07, 6.88627382e-07, 6.88627382e-07, 6.88627382e-07,
1.03089844e-10, 1.03089844e-10, 1.03089844e-10, 1.03089844e-10,
1.60056279e-14, 1.60056279e-14, 1.60056279e-14, 1.60056279e-14,
2.53568291e-18, 2.53568291e-18, 2.53568291e-18, 2.53568291e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99998797e+02, 9.99998797e+02, 9.99998797e+02, 9.99998797e+02,
9.99995242e+02, 9.99995242e+02, 9.99995242e+02, 9.99995242e+02,
9.99984511e+02, 9.99984511e+02, 9.99984511e+02, 9.99984511e+02,
9.99952104e+02, 9.99952104e+02, 9.99952104e+02, 9.99952104e+02,
9.99860634e+02, 9.99860634e+02, 9.99860634e+02, 9.99860634e+02,
9.99619353e+02, 9.99619353e+02, 9.99619353e+02, 9.99619353e+02,
9.99027231e+02, 9.99027231e+02, 9.99027231e+02, 9.99027231e+02,
9.97682034e+02, 9.97682034e+02, 9.97682034e+02, 9.97682034e+02,
9.94868221e+02, 9.94868221e+02, 9.94868221e+02, 9.94868221e+02,
9.89478098e+02, 9.89478098e+02, 9.89478098e+02, 9.89478098e+02,
9.80065169e+02, 9.80065169e+02, 9.80065169e+02, 9.80065169e+02,
9.65118065e+02, 9.65118065e+02, 9.65118065e+02, 9.65118065e+02,
9.43523368e+02, 9.43523368e+02, 9.43523368e+02, 9.43523368e+02,
9.15006674e+02, 9.15006674e+02, 9.15006674e+02, 9.15006674e+02,
8.80278342e+02, 8.80278342e+02, 8.80278342e+02, 8.80278342e+02,
8.40775285e+02, 8.40775285e+02, 8.40775285e+02, 8.40775285e+02,
7.98145941e+02, 7.98145941e+02, 7.98145941e+02, 7.98145941e+02,
7.53755098e+02, 7.53755098e+02, 7.53755098e+02, 7.53755098e+02,
7.09452587e+02, 7.09452587e+02, 7.09452587e+02, 7.09452587e+02,
6.67485676e+02, 6.67485676e+02, 6.67485676e+02, 6.67485676e+02,
6.28046689e+02, 6.28046689e+02, 6.28046689e+02, 6.28046689e+02,
5.91112375e+02, 5.91112375e+02, 5.91112375e+02, 5.91112375e+02,
5.56843157e+02, 5.56843157e+02, 5.56843157e+02, 5.56843157e+02,
5.25742971e+02, 5.25742971e+02, 5.25742971e+02, 5.25742971e+02,
4.98632093e+02, 4.98632093e+02, 4.98632093e+02, 4.98632093e+02,
4.76795490e+02, 4.76795490e+02, 4.76795490e+02, 4.76795490e+02,
4.61393393e+02, 4.61393393e+02, 4.61393393e+02, 4.61393393e+02,
4.52740843e+02, 4.52740843e+02, 4.52740843e+02, 4.52740843e+02,
4.49648853e+02, 4.49648853e+02, 4.49648853e+02, 4.49648853e+02,
4.49459232e+02, 4.49459232e+02, 4.49459232e+02, 4.49459232e+02,
4.51321023e+02, 4.51321023e+02, 4.51321023e+02, 4.51321023e+02,
4.52531111e+02, 4.52531111e+02, 4.52531111e+02, 4.52531111e+02,
4.52874067e+02, 4.52874067e+02, 4.52874067e+02, 4.52874067e+02,
4.53039653e+02, 4.53039653e+02, 4.53039653e+02, 4.53039653e+02,
4.53200233e+02, 4.53200233e+02, 4.53200233e+02, 4.53200233e+02,
4.53441075e+02, 4.53441075e+02, 4.53441075e+02, 4.53441075e+02,
4.53821299e+02, 4.53821299e+02, 4.53821299e+02, 4.53821299e+02,
4.54260100e+02, 4.54260100e+02, 4.54260100e+02, 4.54260100e+02,
4.54669989e+02, 4.54669989e+02, 4.54669989e+02, 4.54669989e+02,
4.55190229e+02, 4.55190229e+02, 4.55190229e+02, 4.55190229e+02,
4.56011617e+02, 4.56011617e+02, 4.56011617e+02, 4.56011617e+02,
4.56384643e+02, 4.56384643e+02, 4.56384643e+02, 4.56384643e+02,
4.51490886e+02, 4.51490886e+02, 4.51490886e+02, 4.51490886e+02,
4.17208973e+02, 4.17208973e+02, 4.17208973e+02, 4.17208973e+02,
2.82109903e+02, 2.82109903e+02, 2.82109903e+02, 2.82109903e+02,
6.13627160e+01, 6.13627160e+01, 6.13627160e+01, 6.13627160e+01,
1.21031418e+00, 1.21031418e+00, 1.21031418e+00, 1.21031418e+00,
1.08068264e-02, 1.08068264e-02, 1.08068264e-02, 1.08068264e-02,
1.00000814e-02, 1.00000814e-02, 1.00000814e-02, 1.00000814e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999752, 0.99999752, 0.99999752, 0.99999752, 0.99999075,
0.99999075, 0.99999075, 0.99999075, 0.99997179, 0.99997179,
0.99997179, 0.99997179, 0.99991817, 0.99991817, 0.99991817,
0.99991817, 0.99977683, 0.99977683, 0.99977683, 0.99977683,
0.99942915, 0.99942915, 0.99942915, 0.99942915, 0.99863505,
0.99863505, 0.99863505, 0.99863505, 0.99695933, 0.99695933,
0.99695933, 0.99695933, 0.9937087 , 0.9937087 , 0.9937087 ,
0.9937087 , 0.98793721, 0.98793721, 0.98793721, 0.98793721,
0.9785829 , 0.9785829 , 0.9785829 , 0.9785829 , 0.96474136,
0.96474136, 0.96474136, 0.96474136, 0.94597339, 0.94597339,
0.94597339, 0.94597339, 0.92247486, 0.92247486, 0.92247486,
0.92247486, 0.89499831, 0.89499831, 0.89499831, 0.89499831,
0.86456812, 0.86456812, 0.86456812, 0.86456812, 0.83212124,
0.83212124, 0.83212124, 0.83212124, 0.79863526, 0.79863526,
0.79863526, 0.79863526, 0.76573988, 0.76573988, 0.76573988,
0.76573988, 0.73420588, 0.73420588, 0.73420588, 0.73420588,
0.703996 , 0.703996 , 0.703996 , 0.703996 , 0.67517948,
0.67517948, 0.67517948, 0.67517948, 0.64829444, 0.64829444,
0.64829444, 0.64829444, 0.62286674, 0.62286674, 0.62286674,
0.62286674, 0.60281401, 0.60281401, 0.60281401, 0.60281401,
0.58304717, 0.58304717, 0.58304717, 0.58304717, 0.5737585 ,
0.5737585 , 0.5737585 , 0.5737585 , 0.56680383, 0.56680383,
0.56680383, 0.56680383, 0.56406554, 0.56406554, 0.56406554,
0.56406554, 0.56445674, 0.56445674, 0.56445674, 0.56445674,
0.56689479, 0.56689479, 0.56689479, 0.56689479, 0.56721005,
0.56721005, 0.56721005, 0.56721005, 0.56705228, 0.56705228,
0.56705228, 0.56705228, 0.56711649, 0.56711649, 0.56711649,
0.56711649, 0.5672706 , 0.5672706 , 0.5672706 , 0.5672706 ,
0.56752476, 0.56752476, 0.56752476, 0.56752476, 0.5687617 ,
0.5687617 , 0.5687617 , 0.5687617 , 0.5756626 , 0.5756626 ,
0.5756626 , 0.5756626 , 0.60517122, 0.60517122, 0.60517122,
0.60517122, 0.70225684, 0.70225684, 0.70225684, 0.70225684,
0.95916964, 0.95916964, 0.95916964, 0.95916964, 1.52074205,
1.52074205, 1.52074205, 1.52074205, 2.53366254, 2.53366254,
2.53366254, 2.53366254, 3.51709808, 3.51709808, 3.51709808,
3.51709808, 3.71733154, 3.71733154, 3.71733154, 3.71733154,
2.81684948, 2.81684948, 2.81684948, 2.81684948, 1.27928976,
1.27928976, 1.27928976, 1.27928976, 1.01706333, 1.01706333,
1.01706333, 1.01706333, 1.00022545, 1.00022545, 1.00022545,
1.00022545, 1.00000005, 1.00000005, 1.00000005, 1.00000005,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([9.27169916e-05, 9.27169916e-05, 9.27169916e-05, 9.27169916e-05,
3.45942523e-04, 3.45942523e-04, 3.45942523e-04, 3.45942523e-04,
1.05548283e-03, 1.05548283e-03, 1.05548283e-03, 1.05548283e-03,
3.06180591e-03, 3.06180591e-03, 3.06180591e-03, 3.06180591e-03,
8.35099130e-03, 8.35099130e-03, 8.35099130e-03, 8.35099130e-03,
2.13637129e-02, 2.13637129e-02, 2.13637129e-02, 2.13637129e-02,
5.10980585e-02, 5.10980585e-02, 5.10980585e-02, 5.10980585e-02,
1.13904438e-01, 1.13904438e-01, 1.13904438e-01, 1.13904438e-01,
2.35977350e-01, 2.35977350e-01, 2.35977350e-01, 2.35977350e-01,
4.53511059e-01, 4.53511059e-01, 4.53511059e-01, 4.53511059e-01,
8.08290869e-01, 8.08290869e-01, 8.08290869e-01, 8.08290869e-01,
1.33838461e+00, 1.33838461e+00, 1.33838461e+00, 1.33838461e+00,
2.06718875e+00, 2.06718875e+00, 2.06718875e+00, 2.06718875e+00,
2.99650453e+00, 2.99650453e+00, 2.99650453e+00, 2.99650453e+00,
4.10776410e+00, 4.10776410e+00, 4.10776410e+00, 4.10776410e+00,
5.37093252e+00, 5.37093252e+00, 5.37093252e+00, 5.37093252e+00,
6.75756651e+00, 6.75756651e+00, 6.75756651e+00, 6.75756651e+00,
8.23003026e+00, 8.23003026e+00, 8.23003026e+00, 8.23003026e+00,
9.71810036e+00, 9.71810036e+00, 9.71810036e+00, 9.71810036e+00,
1.12035998e+01, 1.12035998e+01, 1.12035998e+01, 1.12035998e+01,
1.26747396e+01, 1.26747396e+01, 1.26747396e+01, 1.26747396e+01,
1.41241052e+01, 1.41241052e+01, 1.41241052e+01, 1.41241052e+01,
1.55324405e+01, 1.55324405e+01, 1.55324405e+01, 1.55324405e+01,
1.68648788e+01, 1.68648788e+01, 1.68648788e+01, 1.68648788e+01,
1.80587444e+01, 1.80587444e+01, 1.80587444e+01, 1.80587444e+01,
1.90363513e+01, 1.90363513e+01, 1.90363513e+01, 1.90363513e+01,
1.97169663e+01, 1.97169663e+01, 1.97169663e+01, 1.97169663e+01,
2.00776225e+01, 2.00776225e+01, 2.00776225e+01, 2.00776225e+01,
2.01888597e+01, 2.01888597e+01, 2.01888597e+01, 2.01888597e+01,
2.01801125e+01, 2.01801125e+01, 2.01801125e+01, 2.01801125e+01,
2.00812778e+01, 2.00812778e+01, 2.00812778e+01, 2.00812778e+01,
2.00318261e+01, 2.00318261e+01, 2.00318261e+01, 2.00318261e+01,
2.00146648e+01, 2.00146648e+01, 2.00146648e+01, 2.00146648e+01,
2.00061042e+01, 2.00061042e+01, 2.00061042e+01, 2.00061042e+01,
1.99986959e+01, 1.99986959e+01, 1.99986959e+01, 1.99986959e+01,
1.99863432e+01, 1.99863432e+01, 1.99863432e+01, 1.99863432e+01,
1.99656179e+01, 1.99656179e+01, 1.99656179e+01, 1.99656179e+01,
1.99415041e+01, 1.99415041e+01, 1.99415041e+01, 1.99415041e+01,
1.99167435e+01, 1.99167435e+01, 1.99167435e+01, 1.99167435e+01,
1.98912290e+01, 1.98912290e+01, 1.98912290e+01, 1.98912290e+01,
1.98732047e+01, 1.98732047e+01, 1.98732047e+01, 1.98732047e+01,
1.98526648e+01, 1.98526648e+01, 1.98526648e+01, 1.98526648e+01,
1.97731261e+01, 1.97731261e+01, 1.97731261e+01, 1.97731261e+01,
1.94093352e+01, 1.94093352e+01, 1.94093352e+01, 1.94093352e+01,
1.77776801e+01, 1.77776801e+01, 1.77776801e+01, 1.77776801e+01,
1.19820754e+01, 1.19820754e+01, 1.19820754e+01, 1.19820754e+01,
2.16019726e+00, 2.16019726e+00, 2.16019726e+00, 2.16019726e+00,
3.53014742e-02, 3.53014742e-02, 3.53014742e-02, 3.53014742e-02,
3.82045712e-05, 3.82045712e-05, 3.82045712e-05, 3.82045712e-05,
6.27267874e-09, 6.27267874e-09, 6.27267874e-09, 6.27267874e-09,
9.86981788e-13, 9.86981788e-13, 9.86981788e-13, 9.86981788e-13,
1.50628633e-16, 1.50628633e-16, 1.50628633e-16, 1.50628633e-16,
1.80645712e-20, 1.80645712e-20, 1.80645712e-20, 1.80645712e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99996531e+02, 9.99996531e+02, 9.99996531e+02, 9.99996531e+02,
9.99987056e+02, 9.99987056e+02, 9.99987056e+02, 9.99987056e+02,
9.99960508e+02, 9.99960508e+02, 9.99960508e+02, 9.99960508e+02,
9.99885444e+02, 9.99885444e+02, 9.99885444e+02, 9.99885444e+02,
9.99687580e+02, 9.99687580e+02, 9.99687580e+02, 9.99687580e+02,
9.99200940e+02, 9.99200940e+02, 9.99200940e+02, 9.99200940e+02,
9.98089767e+02, 9.98089767e+02, 9.98089767e+02, 9.98089767e+02,
9.95746369e+02, 9.95746369e+02, 9.95746369e+02, 9.95746369e+02,
9.91205796e+02, 9.91205796e+02, 9.91205796e+02, 9.91205796e+02,
9.83160321e+02, 9.83160321e+02, 9.83160321e+02, 9.83160321e+02,
9.70163089e+02, 9.70163089e+02, 9.70163089e+02, 9.70163089e+02,
9.51025501e+02, 9.51025501e+02, 9.51025501e+02, 9.51025501e+02,
9.25253700e+02, 9.25253700e+02, 9.25253700e+02, 9.25253700e+02,
8.93272718e+02, 8.93272718e+02, 8.93272718e+02, 8.93272718e+02,
8.56285555e+02, 8.56285555e+02, 8.56285555e+02, 8.56285555e+02,
8.15844374e+02, 8.15844374e+02, 8.15844374e+02, 8.15844374e+02,
7.73342136e+02, 7.73342136e+02, 7.73342136e+02, 7.73342136e+02,
7.30129913e+02, 7.30129913e+02, 7.30129913e+02, 7.30129913e+02,
6.88352942e+02, 6.88352942e+02, 6.88352942e+02, 6.88352942e+02,
6.49007221e+02, 6.49007221e+02, 6.49007221e+02, 6.49007221e+02,
6.11939746e+02, 6.11939746e+02, 6.11939746e+02, 6.11939746e+02,
5.77224777e+02, 5.77224777e+02, 5.77224777e+02, 5.77224777e+02,
5.45110602e+02, 5.45110602e+02, 5.45110602e+02, 5.45110602e+02,
5.16188887e+02, 5.16188887e+02, 5.16188887e+02, 5.16188887e+02,
4.91335604e+02, 4.91335604e+02, 4.91335604e+02, 4.91335604e+02,
4.71814716e+02, 4.71814716e+02, 4.71814716e+02, 4.71814716e+02,
4.58644756e+02, 4.58644756e+02, 4.58644756e+02, 4.58644756e+02,
4.51748779e+02, 4.51748779e+02, 4.51748779e+02, 4.51748779e+02,
4.49620320e+02, 4.49620320e+02, 4.49620320e+02, 4.49620320e+02,
4.49793173e+02, 4.49793173e+02, 4.49793173e+02, 4.49793173e+02,
4.51686270e+02, 4.51686270e+02, 4.51686270e+02, 4.51686270e+02,
4.52653139e+02, 4.52653139e+02, 4.52653139e+02, 4.52653139e+02,
4.52934776e+02, 4.52934776e+02, 4.52934776e+02, 4.52934776e+02,
4.53069098e+02, 4.53069098e+02, 4.53069098e+02, 4.53069098e+02,
4.53226281e+02, 4.53226281e+02, 4.53226281e+02, 4.53226281e+02,
4.53501144e+02, 4.53501144e+02, 4.53501144e+02, 4.53501144e+02,
4.53932351e+02, 4.53932351e+02, 4.53932351e+02, 4.53932351e+02,
4.54403842e+02, 4.54403842e+02, 4.54403842e+02, 4.54403842e+02,
4.54828470e+02, 4.54828470e+02, 4.54828470e+02, 4.54828470e+02,
4.55256571e+02, 4.55256571e+02, 4.55256571e+02, 4.55256571e+02,
4.55891222e+02, 4.55891222e+02, 4.55891222e+02, 4.55891222e+02,
4.56695880e+02, 4.56695880e+02, 4.56695880e+02, 4.56695880e+02,
4.55303353e+02, 4.55303353e+02, 4.55303353e+02, 4.55303353e+02,
4.39632542e+02, 4.39632542e+02, 4.39632542e+02, 4.39632542e+02,
3.62585344e+02, 3.62585344e+02, 3.62585344e+02, 3.62585344e+02,
1.55123980e+02, 1.55123980e+02, 1.55123980e+02, 1.55123980e+02,
1.06526829e+01, 1.06526829e+01, 1.06526829e+01, 1.06526829e+01,
4.72581949e-02, 4.72581949e-02, 4.72581949e-02, 4.72581949e-02,
1.00047111e-02, 1.00047111e-02, 1.00047111e-02, 1.00047111e-02,
1.00000007e-02, 1.00000007e-02, 1.00000007e-02, 1.00000007e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999334, 0.99999334, 0.99999334, 0.99999334, 0.99997652,
0.99997652, 0.99997652, 0.99997652, 0.99993274, 0.99993274,
0.99993274, 0.99993274, 0.9998167 , 0.9998167 , 0.9998167 ,
0.9998167 , 0.9995308 , 0.9995308 , 0.9995308 , 0.9995308 ,
0.9988747 , 0.9988747 , 0.9988747 , 0.9988747 , 0.99747962,
0.99747962, 0.99747962, 0.99747962, 0.99474458, 0.99474458,
0.99474458, 0.99474458, 0.98982255, 0.98982255, 0.98982255,
0.98982255, 0.98171633, 0.98171633, 0.98171633, 0.98171633,
0.96950664, 0.96950664, 0.96950664, 0.96950664, 0.95264288,
0.95264288, 0.95264288, 0.95264288, 0.93114717, 0.93114717,
0.93114717, 0.93114717, 0.90560556, 0.90560556, 0.90560556,
0.90560556, 0.8769476 , 0.8769476 , 0.8769476 , 0.8769476 ,
0.8461295 , 0.8461295 , 0.8461295 , 0.8461295 , 0.81392176,
0.81392176, 0.81392176, 0.81392176, 0.78165473, 0.78165473,
0.78165473, 0.78165473, 0.75050172, 0.75050172, 0.75050172,
0.75050172, 0.72057659, 0.72057659, 0.72057659, 0.72057659,
0.69190945, 0.69190945, 0.69190945, 0.69190945, 0.66457344,
0.66457344, 0.66457344, 0.66457344, 0.63931001, 0.63931001,
0.63931001, 0.63931001, 0.61533571, 0.61533571, 0.61533571,
0.61533571, 0.59728585, 0.59728585, 0.59728585, 0.59728585,
0.57944602, 0.57944602, 0.57944602, 0.57944602, 0.57141549,
0.57141549, 0.57141549, 0.57141549, 0.56646332, 0.56646332,
0.56646332, 0.56646332, 0.56429638, 0.56429638, 0.56429638,
0.56429638, 0.56474556, 0.56474556, 0.56474556, 0.56474556,
0.56696375, 0.56696375, 0.56696375, 0.56696375, 0.56741743,
0.56741743, 0.56741743, 0.56741743, 0.5672394 , 0.5672394 ,
0.5672394 , 0.5672394 , 0.56719598, 0.56719598, 0.56719598,
0.56719598, 0.56730067, 0.56730067, 0.56730067, 0.56730067,
0.56757971, 0.56757971, 0.56757971, 0.56757971, 0.5684633 ,
0.5684633 , 0.5684633 , 0.5684633 , 0.57284684, 0.57284684,
0.57284684, 0.57284684, 0.59231821, 0.59231821, 0.59231821,
0.59231821, 0.6596568 , 0.6596568 , 0.6596568 , 0.6596568 ,
0.84699717, 0.84699717, 0.84699717, 0.84699717, 1.27785893,
1.27785893, 1.27785893, 1.27785893, 2.10551451, 2.10551451,
2.10551451, 2.10551451, 3.24550952, 3.24550952, 3.24550952,
3.24550952, 3.77306813, 3.77306813, 3.77306813, 3.77306813,
3.47838258, 3.47838258, 3.47838258, 3.47838258, 1.83959453,
1.83959453, 1.83959453, 1.83959453, 1.0682824 , 1.0682824 ,
1.0682824 , 1.0682824 , 1.00250794, 1.00250794, 1.00250794,
1.00250794, 1.00000304, 1.00000304, 1.00000304, 1.00000304,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.49214926e-04, 2.49214926e-04, 2.49214926e-04, 2.49214926e-04,
8.78604657e-04, 8.78604657e-04, 8.78604657e-04, 8.78604657e-04,
2.51662102e-03, 2.51662102e-03, 2.51662102e-03, 2.51662102e-03,
6.85892762e-03, 6.85892762e-03, 6.85892762e-03, 6.85892762e-03,
1.75588961e-02, 1.75588961e-02, 1.75588961e-02, 1.75588961e-02,
4.21228901e-02, 4.21228901e-02, 4.21228901e-02, 4.21228901e-02,
9.43950927e-02, 9.43950927e-02, 9.43950927e-02, 9.43950927e-02,
1.97042335e-01, 1.97042335e-01, 1.97042335e-01, 1.97042335e-01,
3.82340085e-01, 3.82340085e-01, 3.82340085e-01, 3.82340085e-01,
6.89147758e-01, 6.89147758e-01, 6.89147758e-01, 6.89147758e-01,
1.15519736e+00, 1.15519736e+00, 1.15519736e+00, 1.15519736e+00,
1.80686376e+00, 1.80686376e+00, 1.80686376e+00, 1.80686376e+00,
2.65131500e+00, 2.65131500e+00, 2.65131500e+00, 2.65131500e+00,
3.67550739e+00, 3.67550739e+00, 3.67550739e+00, 3.67550739e+00,
4.85271275e+00, 4.85271275e+00, 4.85271275e+00, 4.85271275e+00,
6.15350432e+00, 6.15350432e+00, 6.15350432e+00, 6.15350432e+00,
7.55357680e+00, 7.55357680e+00, 7.55357680e+00, 7.55357680e+00,
8.98941000e+00, 8.98941000e+00, 8.98941000e+00, 8.98941000e+00,
1.04303820e+01, 1.04303820e+01, 1.04303820e+01, 1.04303820e+01,
1.18617350e+01, 1.18617350e+01, 1.18617350e+01, 1.18617350e+01,
1.32783330e+01, 1.32783330e+01, 1.32783330e+01, 1.32783330e+01,
1.46700989e+01, 1.46700989e+01, 1.46700989e+01, 1.46700989e+01,
1.60141500e+01, 1.60141500e+01, 1.60141500e+01, 1.60141500e+01,
1.72717577e+01, 1.72717577e+01, 1.72717577e+01, 1.72717577e+01,
1.83764937e+01, 1.83764937e+01, 1.83764937e+01, 1.83764937e+01,
1.92517132e+01, 1.92517132e+01, 1.92517132e+01, 1.92517132e+01,
1.98312363e+01, 1.98312363e+01, 1.98312363e+01, 1.98312363e+01,
2.01141790e+01, 2.01141790e+01, 2.01141790e+01, 2.01141790e+01,
2.01871661e+01, 2.01871661e+01, 2.01871661e+01, 2.01871661e+01,
2.01587304e+01, 2.01587304e+01, 2.01587304e+01, 2.01587304e+01,
2.00649247e+01, 2.00649247e+01, 2.00649247e+01, 2.00649247e+01,
2.00267116e+01, 2.00267116e+01, 2.00267116e+01, 2.00267116e+01,
2.00134137e+01, 2.00134137e+01, 2.00134137e+01, 2.00134137e+01,
2.00048366e+01, 2.00048366e+01, 2.00048366e+01, 2.00048366e+01,
1.99955344e+01, 1.99955344e+01, 1.99955344e+01, 1.99955344e+01,
1.99804744e+01, 1.99804744e+01, 1.99804744e+01, 1.99804744e+01,
1.99582608e+01, 1.99582608e+01, 1.99582608e+01, 1.99582608e+01,
1.99352201e+01, 1.99352201e+01, 1.99352201e+01, 1.99352201e+01,
1.99120283e+01, 1.99120283e+01, 1.99120283e+01, 1.99120283e+01,
1.98878907e+01, 1.98878907e+01, 1.98878907e+01, 1.98878907e+01,
1.98653154e+01, 1.98653154e+01, 1.98653154e+01, 1.98653154e+01,
1.98516094e+01, 1.98516094e+01, 1.98516094e+01, 1.98516094e+01,
1.98100006e+01, 1.98100006e+01, 1.98100006e+01, 1.98100006e+01,
1.96316470e+01, 1.96316470e+01, 1.96316470e+01, 1.96316470e+01,
1.88041286e+01, 1.88041286e+01, 1.88041286e+01, 1.88041286e+01,
1.54317797e+01, 1.54317797e+01, 1.54317797e+01, 1.54317797e+01,
6.46630891e+00, 6.46630891e+00, 6.46630891e+00, 6.46630891e+00,
3.26471041e-01, 3.26471041e-01, 3.26471041e-01, 3.26471041e-01,
1.39752195e-03, 1.39752195e-03, 1.39752195e-03, 1.39752195e-03,
3.61410681e-07, 3.61410681e-07, 3.61410681e-07, 3.61410681e-07,
5.50928989e-11, 5.50928989e-11, 5.50928989e-11, 5.50928989e-11,
8.73446544e-15, 8.73446544e-15, 8.73446544e-15, 8.73446544e-15,
1.37689406e-18, 1.37689406e-18, 1.37689406e-18, 1.37689406e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99990675e+02, 9.99990675e+02, 9.99990675e+02, 9.99990675e+02,
9.99967126e+02, 9.99967126e+02, 9.99967126e+02, 9.99967126e+02,
9.99905841e+02, 9.99905841e+02, 9.99905841e+02, 9.99905841e+02,
9.99743393e+02, 9.99743393e+02, 9.99743393e+02, 9.99743393e+02,
9.99343207e+02, 9.99343207e+02, 9.99343207e+02, 9.99343207e+02,
9.98425049e+02, 9.98425049e+02, 9.98425049e+02, 9.98425049e+02,
9.96473752e+02, 9.96473752e+02, 9.96473752e+02, 9.96473752e+02,
9.92651960e+02, 9.92651960e+02, 9.92651960e+02, 9.92651960e+02,
9.85786061e+02, 9.85786061e+02, 9.85786061e+02, 9.85786061e+02,
9.74510522e+02, 9.74510522e+02, 9.74510522e+02, 9.74510522e+02,
9.57600381e+02, 9.57600381e+02, 9.57600381e+02, 9.57600381e+02,
9.34386650e+02, 9.34386650e+02, 9.34386650e+02, 9.34386650e+02,
9.05034576e+02, 9.05034576e+02, 9.05034576e+02, 9.05034576e+02,
8.70506126e+02, 8.70506126e+02, 8.70506126e+02, 8.70506126e+02,
8.32221605e+02, 8.32221605e+02, 8.32221605e+02, 8.32221605e+02,
7.91601867e+02, 7.91601867e+02, 7.91601867e+02, 7.91601867e+02,
7.49771930e+02, 7.49771930e+02, 7.49771930e+02, 7.49771930e+02,
7.08448789e+02, 7.08448789e+02, 7.08448789e+02, 7.08448789e+02,
6.69249654e+02, 6.69249654e+02, 6.69249654e+02, 6.69249654e+02,
6.32199855e+02, 6.32199855e+02, 6.32199855e+02, 6.32199855e+02,
5.97271856e+02, 5.97271856e+02, 5.97271856e+02, 5.97271856e+02,
5.64593117e+02, 5.64593117e+02, 5.64593117e+02, 5.64593117e+02,
5.34481735e+02, 5.34481735e+02, 5.34481735e+02, 5.34481735e+02,
5.07617179e+02, 5.07617179e+02, 5.07617179e+02, 5.07617179e+02,
4.84923891e+02, 4.84923891e+02, 4.84923891e+02, 4.84923891e+02,
4.67588272e+02, 4.67588272e+02, 4.67588272e+02, 4.67588272e+02,
4.56440880e+02, 4.56440880e+02, 4.56440880e+02, 4.56440880e+02,
4.51073579e+02, 4.51073579e+02, 4.51073579e+02, 4.51073579e+02,
4.49670476e+02, 4.49670476e+02, 4.49670476e+02, 4.49670476e+02,
4.50197414e+02, 4.50197414e+02, 4.50197414e+02, 4.50197414e+02,
4.51964568e+02, 4.51964568e+02, 4.51964568e+02, 4.51964568e+02,
4.52734660e+02, 4.52734660e+02, 4.52734660e+02, 4.52734660e+02,
4.52988476e+02, 4.52988476e+02, 4.52988476e+02, 4.52988476e+02,
4.53122020e+02, 4.53122020e+02, 4.53122020e+02, 4.53122020e+02,
4.53277355e+02, 4.53277355e+02, 4.53277355e+02, 4.53277355e+02,
4.53570948e+02, 4.53570948e+02, 4.53570948e+02, 4.53570948e+02,
4.54027799e+02, 4.54027799e+02, 4.54027799e+02, 4.54027799e+02,
4.54514822e+02, 4.54514822e+02, 4.54514822e+02, 4.54514822e+02,
4.54967633e+02, 4.54967633e+02, 4.54967633e+02, 4.54967633e+02,
4.55383145e+02, 4.55383145e+02, 4.55383145e+02, 4.55383145e+02,
4.55885058e+02, 4.55885058e+02, 4.55885058e+02, 4.55885058e+02,
4.56660485e+02, 4.56660485e+02, 4.56660485e+02, 4.56660485e+02,
4.56707224e+02, 4.56707224e+02, 4.56707224e+02, 4.56707224e+02,
4.50332485e+02, 4.50332485e+02, 4.50332485e+02, 4.50332485e+02,
4.10745038e+02, 4.10745038e+02, 4.10745038e+02, 4.10745038e+02,
2.64438188e+02, 2.64438188e+02, 2.64438188e+02, 2.64438188e+02,
5.04920492e+01, 5.04920492e+01, 5.04920492e+01, 5.04920492e+01,
8.21200453e-01, 8.21200453e-01, 8.21200453e-01, 8.21200453e-01,
1.04110586e-02, 1.04110586e-02, 1.04110586e-02, 1.04110586e-02,
1.00000427e-02, 1.00000427e-02, 1.00000427e-02, 1.00000427e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99998324, 0.99998324, 0.99998324, 0.99998324, 0.99994409,
0.99994409, 0.99994409, 0.99994409, 0.99984947, 0.99984947,
0.99984947, 0.99984947, 0.99961409, 0.99961409, 0.99961409,
0.99961409, 0.99907186, 0.99907186, 0.99907186, 0.99907186,
0.99791058, 0.99791058, 0.99791058, 0.99791058, 0.99561098,
0.99561098, 0.99561098, 0.99561098, 0.99141916, 0.99141916,
0.99141916, 0.99141916, 0.98440893, 0.98440893, 0.98440893,
0.98440893, 0.97366694, 0.97366694, 0.97366694, 0.97366694,
0.95855926, 0.95855926, 0.95855926, 0.95855926, 0.93895505,
0.93895505, 0.93895505, 0.93895505, 0.91527616, 0.91527616,
0.91527616, 0.91527616, 0.88833959, 0.88833959, 0.88833959,
0.88833959, 0.85907786, 0.85907786, 0.85907786, 0.85907786,
0.82825782, 0.82825782, 0.82825782, 0.82825782, 0.79682367,
0.79682367, 0.79682367, 0.79682367, 0.7660904 , 0.7660904 ,
0.7660904 , 0.7660904 , 0.73649342, 0.73649342, 0.73649342,
0.73649342, 0.7080382 , 0.7080382 , 0.7080382 , 0.7080382 ,
0.68079751, 0.68079751, 0.68079751, 0.68079751, 0.65483468,
0.65483468, 0.65483468, 0.65483468, 0.63114051, 0.63114051,
0.63114051, 0.63114051, 0.60854849, 0.60854849, 0.60854849,
0.60854849, 0.59238504, 0.59238504, 0.59238504, 0.59238504,
0.57651033, 0.57651033, 0.57651033, 0.57651033, 0.56951125,
0.56951125, 0.56951125, 0.56951125, 0.5662106 , 0.5662106 ,
0.5662106 , 0.5662106 , 0.56457441, 0.56457441, 0.56457441,
0.56457441, 0.56518521, 0.56518521, 0.56518521, 0.56518521,
0.5669638 , 0.5669638 , 0.5669638 , 0.5669638 , 0.56753478,
0.56753478, 0.56753478, 0.56753478, 0.56741507, 0.56741507,
0.56741507, 0.56741507, 0.56730543, 0.56730543, 0.56730543,
0.56730543, 0.56737641, 0.56737641, 0.56737641, 0.56737641,
0.56765193, 0.56765193, 0.56765193, 0.56765193, 0.56833782,
0.56833782, 0.56833782, 0.56833782, 0.57115323, 0.57115323,
0.57115323, 0.57115323, 0.58390602, 0.58390602, 0.58390602,
0.58390602, 0.63015878, 0.63015878, 0.63015878, 0.63015878,
0.76511277, 0.76511277, 0.76511277, 0.76511277, 1.09098504,
1.09098504, 1.09098504, 1.09098504, 1.75190783, 1.75190783,
1.75190783, 1.75190783, 2.84524356, 2.84524356, 2.84524356,
2.84524356, 3.69818791, 3.69818791, 3.69818791, 3.69818791,
3.79299239, 3.79299239, 3.79299239, 3.79299239, 2.70622572,
2.70622572, 2.70622572, 2.70622572, 1.23074962, 1.23074962,
1.23074962, 1.23074962, 1.01357481, 1.01357481, 1.01357481,
1.01357481, 1.00013936, 1.00013936, 1.00013936, 1.00013936,
1.00000003, 1.00000003, 1.00000003, 1.00000003, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([6.27176089e-04, 6.27176089e-04, 6.27176089e-04, 6.27176089e-04,
2.09197510e-03, 2.09197510e-03, 2.09197510e-03, 2.09197510e-03,
5.63246589e-03, 5.63246589e-03, 5.63246589e-03, 5.63246589e-03,
1.44413910e-02, 1.44413910e-02, 1.44413910e-02, 1.44413910e-02,
3.47398084e-02, 3.47398084e-02, 3.47398084e-02, 3.47398084e-02,
7.82416435e-02, 7.82416435e-02, 7.82416435e-02, 7.82416435e-02,
1.64502448e-01, 1.64502448e-01, 1.64502448e-01, 1.64502448e-01,
3.22153674e-01, 3.22153674e-01, 3.22153674e-01, 3.22153674e-01,
5.87013093e-01, 5.87013093e-01, 5.87013093e-01, 5.87013093e-01,
9.95867432e-01, 9.95867432e-01, 9.95867432e-01, 9.95867432e-01,
1.57717960e+00, 1.57717960e+00, 1.57717960e+00, 1.57717960e+00,
2.34277075e+00, 2.34277075e+00, 2.34277075e+00, 2.34277075e+00,
3.28498965e+00, 3.28498965e+00, 3.28498965e+00, 3.28498965e+00,
4.38103253e+00, 4.38103253e+00, 4.38103253e+00, 4.38103253e+00,
5.60227400e+00, 5.60227400e+00, 5.60227400e+00, 5.60227400e+00,
6.92499000e+00, 6.92499000e+00, 6.92499000e+00, 6.92499000e+00,
8.30862980e+00, 8.30862980e+00, 8.30862980e+00, 8.30862980e+00,
9.70342488e+00, 9.70342488e+00, 9.70342488e+00, 9.70342488e+00,
1.10947376e+01, 1.10947376e+01, 1.10947376e+01, 1.10947376e+01,
1.24759421e+01, 1.24759421e+01, 1.24759421e+01, 1.24759421e+01,
1.38409096e+01, 1.38409096e+01, 1.38409096e+01, 1.38409096e+01,
1.51771753e+01, 1.51771753e+01, 1.51771753e+01, 1.51771753e+01,
1.64580614e+01, 1.64580614e+01, 1.64580614e+01, 1.64580614e+01,
1.76410460e+01, 1.76410460e+01, 1.76410460e+01, 1.76410460e+01,
1.86577470e+01, 1.86577470e+01, 1.86577470e+01, 1.86577470e+01,
1.94346504e+01, 1.94346504e+01, 1.94346504e+01, 1.94346504e+01,
1.99206783e+01, 1.99206783e+01, 1.99206783e+01, 1.99206783e+01,
2.01373825e+01, 2.01373825e+01, 2.01373825e+01, 2.01373825e+01,
2.01827557e+01, 2.01827557e+01, 2.01827557e+01, 2.01827557e+01,
2.01362430e+01, 2.01362430e+01, 2.01362430e+01, 2.01362430e+01,
2.00527163e+01, 2.00527163e+01, 2.00527163e+01, 2.00527163e+01,
2.00220889e+01, 2.00220889e+01, 2.00220889e+01, 2.00220889e+01,
2.00113415e+01, 2.00113415e+01, 2.00113415e+01, 2.00113415e+01,
2.00032017e+01, 2.00032017e+01, 2.00032017e+01, 2.00032017e+01,
1.99928716e+01, 1.99928716e+01, 1.99928716e+01, 1.99928716e+01,
1.99752195e+01, 1.99752195e+01, 1.99752195e+01, 1.99752195e+01,
1.99510048e+01, 1.99510048e+01, 1.99510048e+01, 1.99510048e+01,
1.99278369e+01, 1.99278369e+01, 1.99278369e+01, 1.99278369e+01,
1.99060511e+01, 1.99060511e+01, 1.99060511e+01, 1.99060511e+01,
1.98834898e+01, 1.98834898e+01, 1.98834898e+01, 1.98834898e+01,
1.98602307e+01, 1.98602307e+01, 1.98602307e+01, 1.98602307e+01,
1.98460230e+01, 1.98460230e+01, 1.98460230e+01, 1.98460230e+01,
1.98231060e+01, 1.98231060e+01, 1.98231060e+01, 1.98231060e+01,
1.97344284e+01, 1.97344284e+01, 1.97344284e+01, 1.97344284e+01,
1.93234157e+01, 1.93234157e+01, 1.93234157e+01, 1.93234157e+01,
1.75098690e+01, 1.75098690e+01, 1.75098690e+01, 1.75098690e+01,
1.13120733e+01, 1.13120733e+01, 1.13120733e+01, 1.13120733e+01,
1.72019020e+00, 1.72019020e+00, 1.72019020e+00, 1.72019020e+00,
2.39627567e-02, 2.39627567e-02, 2.39627567e-02, 2.39627567e-02,
2.10492230e-05, 2.10492230e-05, 2.10492230e-05, 2.10492230e-05,
3.37580296e-09, 3.37580296e-09, 3.37580296e-09, 3.37580296e-09,
5.24794943e-13, 5.24794943e-13, 5.24794943e-13, 5.24794943e-13,
8.00869120e-17, 8.00869120e-17, 8.00869120e-17, 8.00869120e-17,
1.80543624e-20, 1.80543624e-20, 1.80543624e-20, 1.80543624e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99976534e+02, 9.99976534e+02, 9.99976534e+02, 9.99976534e+02,
9.99921728e+02, 9.99921728e+02, 9.99921728e+02, 9.99921728e+02,
9.99789273e+02, 9.99789273e+02, 9.99789273e+02, 9.99789273e+02,
9.99459788e+02, 9.99459788e+02, 9.99459788e+02, 9.99459788e+02,
9.98700933e+02, 9.98700933e+02, 9.98700933e+02, 9.98700933e+02,
9.97076380e+02, 9.97076380e+02, 9.97076380e+02, 9.97076380e+02,
9.93862050e+02, 9.93862050e+02, 9.93862050e+02, 9.93862050e+02,
9.88011449e+02, 9.88011449e+02, 9.88011449e+02, 9.88011449e+02,
9.78251147e+02, 9.78251147e+02, 9.78251147e+02, 9.78251147e+02,
9.63351703e+02, 9.63351703e+02, 9.63351703e+02, 9.63351703e+02,
9.42510461e+02, 9.42510461e+02, 9.42510461e+02, 9.42510461e+02,
9.15662316e+02, 9.15662316e+02, 9.15662316e+02, 9.15662316e+02,
8.83529955e+02, 8.83529955e+02, 8.83529955e+02, 8.83529955e+02,
8.47375347e+02, 8.47375347e+02, 8.47375347e+02, 8.47375347e+02,
8.08589521e+02, 8.08589521e+02, 8.08589521e+02, 8.08589521e+02,
7.68302840e+02, 7.68302840e+02, 7.68302840e+02, 7.68302840e+02,
7.27777466e+02, 7.27777466e+02, 7.27777466e+02, 7.27777466e+02,
6.88776134e+02, 6.88776134e+02, 6.88776134e+02, 6.88776134e+02,
6.51822493e+02, 6.51822493e+02, 6.51822493e+02, 6.51822493e+02,
6.16850793e+02, 6.16850793e+02, 6.16850793e+02, 6.16850793e+02,
5.83873049e+02, 5.83873049e+02, 5.83873049e+02, 5.83873049e+02,
5.53077621e+02, 5.53077621e+02, 5.53077621e+02, 5.53077621e+02,
5.24847307e+02, 5.24847307e+02, 5.24847307e+02, 5.24847307e+02,
4.99936052e+02, 4.99936052e+02, 4.99936052e+02, 4.99936052e+02,
4.79307983e+02, 4.79307983e+02, 4.79307983e+02, 4.79307983e+02,
4.64037017e+02, 4.64037017e+02, 4.64037017e+02, 4.64037017e+02,
4.54717049e+02, 4.54717049e+02, 4.54717049e+02, 4.54717049e+02,
4.50630729e+02, 4.50630729e+02, 4.50630729e+02, 4.50630729e+02,
4.49766128e+02, 4.49766128e+02, 4.49766128e+02, 4.49766128e+02,
4.50635760e+02, 4.50635760e+02, 4.50635760e+02, 4.50635760e+02,
4.52192339e+02, 4.52192339e+02, 4.52192339e+02, 4.52192339e+02,
4.52791836e+02, 4.52791836e+02, 4.52791836e+02, 4.52791836e+02,
4.53026052e+02, 4.53026052e+02, 4.53026052e+02, 4.53026052e+02,
4.53174609e+02, 4.53174609e+02, 4.53174609e+02, 4.53174609e+02,
4.53352116e+02, 4.53352116e+02, 4.53352116e+02, 4.53352116e+02,
4.53668407e+02, 4.53668407e+02, 4.53668407e+02, 4.53668407e+02,
4.54129426e+02, 4.54129426e+02, 4.54129426e+02, 4.54129426e+02,
4.54606825e+02, 4.54606825e+02, 4.54606825e+02, 4.54606825e+02,
4.55071542e+02, 4.55071542e+02, 4.55071542e+02, 4.55071542e+02,
4.55519242e+02, 4.55519242e+02, 4.55519242e+02, 4.55519242e+02,
4.55942322e+02, 4.55942322e+02, 4.55942322e+02, 4.55942322e+02,
4.56555572e+02, 4.56555572e+02, 4.56555572e+02, 4.56555572e+02,
4.57153744e+02, 4.57153744e+02, 4.57153744e+02, 4.57153744e+02,
4.55012364e+02, 4.55012364e+02, 4.55012364e+02, 4.55012364e+02,
4.36291749e+02, 4.36291749e+02, 4.36291749e+02, 4.36291749e+02,
3.50253071e+02, 3.50253071e+02, 3.50253071e+02, 3.50253071e+02,
1.37331684e+02, 1.37331684e+02, 1.37331684e+02, 1.37331684e+02,
7.81961782e+00, 7.81961782e+00, 7.81961782e+00, 7.81961782e+00,
3.15710255e-02, 3.15710255e-02, 3.15710255e-02, 3.15710255e-02,
1.00025204e-02, 1.00025204e-02, 1.00025204e-02, 1.00025204e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99996035, 0.99996035, 0.99996035, 0.99996035, 0.99987476,
0.99987476, 0.99987476, 0.99987476, 0.99968276, 0.99968276,
0.99968276, 0.99968276, 0.99923411, 0.99923411, 0.99923411,
0.99923411, 0.99826762, 0.99826762, 0.99826762, 0.99826762,
0.99633541, 0.99633541, 0.99633541, 0.99633541, 0.99277013,
0.99277013, 0.99277013, 0.99277013, 0.98671964, 0.98671964,
0.98671964, 0.98671964, 0.977293 , 0.977293 , 0.977293 ,
0.977293 , 0.96379833, 0.96379833, 0.96379833, 0.96379833,
0.94597383, 0.94597383, 0.94597383, 0.94597383, 0.9240842 ,
0.9240842 , 0.9240842 , 0.9240842 , 0.89882269, 0.89882269,
0.89882269, 0.89882269, 0.87107325, 0.87107325, 0.87107325,
0.87107325, 0.84163799, 0.84163799, 0.84163799, 0.84163799,
0.81121158, 0.81121158, 0.81121158, 0.81121158, 0.7809964 ,
0.7809964 , 0.7809964 , 0.7809964 , 0.75175867, 0.75175867,
0.75175867, 0.75175867, 0.72358262, 0.72358262, 0.72358262,
0.72358262, 0.69646996, 0.69646996, 0.69646996, 0.69646996,
0.67055951, 0.67055951, 0.67055951, 0.67055951, 0.64587767,
0.64587767, 0.64587767, 0.64587767, 0.62371507, 0.62371507,
0.62371507, 0.62371507, 0.60245905, 0.60245905, 0.60245905,
0.60245905, 0.58804181, 0.58804181, 0.58804181, 0.58804181,
0.57415787, 0.57415787, 0.57415787, 0.57415787, 0.56801698,
0.56801698, 0.56801698, 0.56801698, 0.56600286, 0.56600286,
0.56600286, 0.56600286, 0.56486913, 0.56486913, 0.56486913,
0.56486913, 0.56568532, 0.56568532, 0.56568532, 0.56568532,
0.56697037, 0.56697037, 0.56697037, 0.56697037, 0.567595 ,
0.567595 , 0.567595 , 0.567595 , 0.56755691, 0.56755691,
0.56755691, 0.56755691, 0.56742984, 0.56742984, 0.56742984,
0.56742984, 0.56748199, 0.56748199, 0.56748199, 0.56748199,
0.56775104, 0.56775104, 0.56775104, 0.56775104, 0.56831532,
0.56831532, 0.56831532, 0.56831532, 0.57016477, 0.57016477,
0.57016477, 0.57016477, 0.57848067, 0.57848067, 0.57848067,
0.57848067, 0.60993862, 0.60993862, 0.60993862, 0.60993862,
0.70608446, 0.70608446, 0.70608446, 0.70608446, 0.94942581,
0.94942581, 0.94942581, 0.94942581, 1.46794713, 1.46794713,
1.46794713, 1.46794713, 2.399093 , 2.399093 , 2.399093 ,
2.399093 , 3.49161502, 3.49161502, 3.49161502, 3.49161502,
3.88909392, 3.88909392, 3.88909392, 3.88909392, 3.45166183,
3.45166183, 3.45166183, 3.45166183, 1.72693552, 1.72693552,
1.72693552, 1.72693552, 1.05571813, 1.05571813, 1.05571813,
1.05571813, 1.00183475, 1.00183475, 1.00183475, 1.00183475,
1.00000159, 1.00000159, 1.00000159, 1.00000159, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.48343235e-03, 1.48343235e-03, 1.48343235e-03, 1.48343235e-03,
4.68625754e-03, 4.68625754e-03, 4.68625754e-03, 4.68625754e-03,
1.18714812e-02, 1.18714812e-02, 1.18714812e-02, 1.18714812e-02,
2.86653854e-02, 2.86653854e-02, 2.86653854e-02, 2.86653854e-02,
6.48624680e-02, 6.48624680e-02, 6.48624680e-02, 6.48624680e-02,
1.37311383e-01, 1.37311383e-01, 1.37311383e-01, 1.37311383e-01,
2.71286993e-01, 2.71286993e-01, 2.71286993e-01, 2.71286993e-01,
4.99544165e-01, 4.99544165e-01, 4.99544165e-01, 4.99544165e-01,
8.57450278e-01, 8.57450278e-01, 8.57450278e-01, 8.57450278e-01,
1.37475596e+00, 1.37475596e+00, 1.37475596e+00, 1.37475596e+00,
2.06719154e+00, 2.06719154e+00, 2.06719154e+00, 2.06719154e+00,
2.93221227e+00, 2.93221227e+00, 2.93221227e+00, 2.93221227e+00,
3.95128996e+00, 3.95128996e+00, 3.95128996e+00, 3.95128996e+00,
5.09756199e+00, 5.09756199e+00, 5.09756199e+00, 5.09756199e+00,
6.34579257e+00, 6.34579257e+00, 6.34579257e+00, 6.34579257e+00,
7.67146094e+00, 7.67146094e+00, 7.67146094e+00, 7.67146094e+00,
9.01982632e+00, 9.01982632e+00, 9.01982632e+00, 9.01982632e+00,
1.03717565e+01, 1.03717565e+01, 1.03717565e+01, 1.03717565e+01,
1.17165199e+01, 1.17165199e+01, 1.17165199e+01, 1.17165199e+01,
1.30503359e+01, 1.30503359e+01, 1.30503359e+01, 1.30503359e+01,
1.43659229e+01, 1.43659229e+01, 1.43659229e+01, 1.43659229e+01,
1.56482456e+01, 1.56482456e+01, 1.56482456e+01, 1.56482456e+01,
1.68667491e+01, 1.68667491e+01, 1.68667491e+01, 1.68667491e+01,
1.79752388e+01, 1.79752388e+01, 1.79752388e+01, 1.79752388e+01,
1.89049267e+01, 1.89049267e+01, 1.89049267e+01, 1.89049267e+01,
1.95880409e+01, 1.95880409e+01, 1.95880409e+01, 1.95880409e+01,
1.99895045e+01, 1.99895045e+01, 1.99895045e+01, 1.99895045e+01,
2.01509131e+01, 2.01509131e+01, 2.01509131e+01, 2.01509131e+01,
2.01756935e+01, 2.01756935e+01, 2.01756935e+01, 2.01756935e+01,
2.01136639e+01, 2.01136639e+01, 2.01136639e+01, 2.01136639e+01,
2.00436849e+01, 2.00436849e+01, 2.00436849e+01, 2.00436849e+01,
2.00184695e+01, 2.00184695e+01, 2.00184695e+01, 2.00184695e+01,
2.00087073e+01, 2.00087073e+01, 2.00087073e+01, 2.00087073e+01,
2.00007501e+01, 2.00007501e+01, 2.00007501e+01, 2.00007501e+01,
1.99896154e+01, 1.99896154e+01, 1.99896154e+01, 1.99896154e+01,
1.99701656e+01, 1.99701656e+01, 1.99701656e+01, 1.99701656e+01,
1.99446240e+01, 1.99446240e+01, 1.99446240e+01, 1.99446240e+01,
1.99208683e+01, 1.99208683e+01, 1.99208683e+01, 1.99208683e+01,
1.98989526e+01, 1.98989526e+01, 1.98989526e+01, 1.98989526e+01,
1.98779645e+01, 1.98779645e+01, 1.98779645e+01, 1.98779645e+01,
1.98568827e+01, 1.98568827e+01, 1.98568827e+01, 1.98568827e+01,
1.98394425e+01, 1.98394425e+01, 1.98394425e+01, 1.98394425e+01,
1.98253039e+01, 1.98253039e+01, 1.98253039e+01, 1.98253039e+01,
1.97798791e+01, 1.97798791e+01, 1.97798791e+01, 1.97798791e+01,
1.95773152e+01, 1.95773152e+01, 1.95773152e+01, 1.95773152e+01,
1.86462995e+01, 1.86462995e+01, 1.86462995e+01, 1.86462995e+01,
1.49605093e+01, 1.49605093e+01, 1.49605093e+01, 1.49605093e+01,
5.66403104e+00, 5.66403104e+00, 5.66403104e+00, 5.66403104e+00,
2.39671368e-01, 2.39671368e-01, 2.39671368e-01, 2.39671368e-01,
8.33807575e-04, 8.33807575e-04, 8.33807575e-04, 8.33807575e-04,
1.88954541e-07, 1.88954541e-07, 1.88954541e-07, 1.88954541e-07,
2.94104736e-11, 2.94104736e-11, 2.94104736e-11, 2.94104736e-11,
4.70101359e-15, 4.70101359e-15, 4.70101359e-15, 4.70101359e-15,
7.41275834e-19, 7.41275834e-19, 7.41275834e-19, 7.41275834e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99944497e+02, 9.99944497e+02, 9.99944497e+02, 9.99944497e+02,
9.99824671e+02, 9.99824671e+02, 9.99824671e+02, 9.99824671e+02,
9.99555901e+02, 9.99555901e+02, 9.99555901e+02, 9.99555901e+02,
9.98927969e+02, 9.98927969e+02, 9.98927969e+02, 9.98927969e+02,
9.97575760e+02, 9.97575760e+02, 9.97575760e+02, 9.97575760e+02,
9.94874250e+02, 9.94874250e+02, 9.94874250e+02, 9.94874250e+02,
9.89895755e+02, 9.89895755e+02, 9.89895755e+02, 9.89895755e+02,
9.81464823e+02, 9.81464823e+02, 9.81464823e+02, 9.81464823e+02,
9.68372978e+02, 9.68372978e+02, 9.68372978e+02, 9.68372978e+02,
9.49721618e+02, 9.49721618e+02, 9.49721618e+02, 9.49721618e+02,
9.25246848e+02, 9.25246848e+02, 9.25246848e+02, 9.25246848e+02,
8.95440766e+02, 8.95440766e+02, 8.95440766e+02, 8.95440766e+02,
8.61389674e+02, 8.61389674e+02, 8.61389674e+02, 8.61389674e+02,
8.24419634e+02, 8.24419634e+02, 8.24419634e+02, 8.24419634e+02,
7.85711897e+02, 7.85711897e+02, 7.85711897e+02, 7.85711897e+02,
7.46248517e+02, 7.46248517e+02, 7.46248517e+02, 7.46248517e+02,
7.07596025e+02, 7.07596025e+02, 7.07596025e+02, 7.07596025e+02,
6.70801074e+02, 6.70801074e+02, 6.70801074e+02, 6.70801074e+02,
6.35877624e+02, 6.35877624e+02, 6.35877624e+02, 6.35877624e+02,
6.02787079e+02, 6.02787079e+02, 6.02787079e+02, 6.02787079e+02,
5.71599803e+02, 5.71599803e+02, 5.71599803e+02, 5.71599803e+02,
5.42561321e+02, 5.42561321e+02, 5.42561321e+02, 5.42561321e+02,
5.16114337e+02, 5.16114337e+02, 5.16114337e+02, 5.16114337e+02,
4.93068680e+02, 4.93068680e+02, 4.93068680e+02, 4.93068680e+02,
4.74411379e+02, 4.74411379e+02, 4.74411379e+02, 4.74411379e+02,
4.61084454e+02, 4.61084454e+02, 4.61084454e+02, 4.61084454e+02,
4.53401496e+02, 4.53401496e+02, 4.53401496e+02, 4.53401496e+02,
4.50361189e+02, 4.50361189e+02, 4.50361189e+02, 4.50361189e+02,
4.49900506e+02, 4.49900506e+02, 4.49900506e+02, 4.49900506e+02,
4.51070680e+02, 4.51070680e+02, 4.51070680e+02, 4.51070680e+02,
4.52380461e+02, 4.52380461e+02, 4.52380461e+02, 4.52380461e+02,
4.52845112e+02, 4.52845112e+02, 4.52845112e+02, 4.52845112e+02,
4.53055158e+02, 4.53055158e+02, 4.53055158e+02, 4.53055158e+02,
4.53218903e+02, 4.53218903e+02, 4.53218903e+02, 4.53218903e+02,
4.53431056e+02, 4.53431056e+02, 4.53431056e+02, 4.53431056e+02,
4.53786396e+02, 4.53786396e+02, 4.53786396e+02, 4.53786396e+02,
4.54248310e+02, 4.54248310e+02, 4.54248310e+02, 4.54248310e+02,
4.54702361e+02, 4.54702361e+02, 4.54702361e+02, 4.54702361e+02,
4.55162009e+02, 4.55162009e+02, 4.55162009e+02, 4.55162009e+02,
4.55624655e+02, 4.55624655e+02, 4.55624655e+02, 4.55624655e+02,
4.56025036e+02, 4.56025036e+02, 4.56025036e+02, 4.56025036e+02,
4.56514938e+02, 4.56514938e+02, 4.56514938e+02, 4.56514938e+02,
4.57215307e+02, 4.57215307e+02, 4.57215307e+02, 4.57215307e+02,
4.56862932e+02, 4.56862932e+02, 4.56862932e+02, 4.56862932e+02,
4.48795942e+02, 4.48795942e+02, 4.48795942e+02, 4.48795942e+02,
4.03414163e+02, 4.03414163e+02, 4.03414163e+02, 4.03414163e+02,
2.46087022e+02, 2.46087022e+02, 2.46087022e+02, 2.46087022e+02,
4.07741358e+01, 4.07741358e+01, 4.07741358e+01, 4.07741358e+01,
5.40974800e-01, 5.40974800e-01, 5.40974800e-01, 5.40974800e-01,
1.02032471e-02, 1.02032471e-02, 1.02032471e-02, 1.02032471e-02,
1.00000224e-02, 1.00000224e-02, 1.00000224e-02, 1.00000224e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99991158, 0.99991158, 0.99991158, 0.99991158, 0.99973526,
0.99973526, 0.99973526, 0.99973526, 0.99936862, 0.99936862,
0.99936862, 0.99936862, 0.9985633 , 0.9985633 , 0.9985633 ,
0.9985633 , 0.99694101, 0.99694101, 0.99694101, 0.99694101,
0.99391234, 0.99391234, 0.99391234, 0.99391234, 0.9887 ,
0.9887 , 0.9887 , 0.9887 , 0.98044802, 0.98044802,
0.98044802, 0.98044802, 0.968429 , 0.968429 , 0.968429 ,
0.968429 , 0.95227242, 0.95227242, 0.95227242, 0.95227242,
0.93209641, 0.93209641, 0.93209641, 0.93209641, 0.90846461,
0.90846461, 0.90846461, 0.90846461, 0.88219172, 0.88219172,
0.88219172, 0.88219172, 0.8540954 , 0.8540954 , 0.8540954 ,
0.8540954 , 0.82480124, 0.82480124, 0.82480124, 0.82480124,
0.7952339 , 0.7952339 , 0.7952339 , 0.7952339 , 0.7663955 ,
0.7663955 , 0.7663955 , 0.7663955 , 0.73852584, 0.73852584,
0.73852584, 0.73852584, 0.71164018, 0.71164018, 0.71164018,
0.71164018, 0.6857697 , 0.6857697 , 0.6857697 , 0.6857697 ,
0.66111252, 0.66111252, 0.66111252, 0.66111252, 0.63763059,
0.63763059, 0.63763059, 0.63763059, 0.6169687 , 0.6169687 ,
0.6169687 , 0.6169687 , 0.59702916, 0.59702916, 0.59702916,
0.59702916, 0.58420196, 0.58420196, 0.58420196, 0.58420196,
0.57229985, 0.57229985, 0.57229985, 0.57229985, 0.56689435,
0.56689435, 0.56689435, 0.56689435, 0.56582645, 0.56582645,
0.56582645, 0.56582645, 0.56516822, 0.56516822, 0.56516822,
0.56516822, 0.56616647, 0.56616647, 0.56616647, 0.56616647,
0.56702185, 0.56702185, 0.56702185, 0.56702185, 0.56762457,
0.56762457, 0.56762457, 0.56762457, 0.56765827, 0.56765827,
0.56765827, 0.56765827, 0.56756729, 0.56756729, 0.56756729,
0.56756729, 0.56761051, 0.56761051, 0.56761051, 0.56761051,
0.56786939, 0.56786939, 0.56786939, 0.56786939, 0.56835266,
0.56835266, 0.56835266, 0.56835266, 0.5696172 , 0.5696172 ,
0.5696172 , 0.5696172 , 0.57503406, 0.57503406, 0.57503406,
0.57503406, 0.59623637, 0.59623637, 0.59623637, 0.59623637,
0.66403011, 0.66403011, 0.66403011, 0.66403011, 0.84354865,
0.84354865, 0.84354865, 0.84354865, 1.24434905, 1.24434905,
1.24434905, 1.24434905, 2.00424343, 2.00424343, 2.00424343,
2.00424343, 3.13960403, 3.13960403, 3.13960403, 3.13960403,
3.85414213, 3.85414213, 3.85414213, 3.85414213, 3.84786708,
3.84786708, 3.84786708, 3.84786708, 2.5771983 , 2.5771983 ,
2.5771983 , 2.5771983 , 1.18896322, 1.18896322, 1.18896322,
1.18896322, 1.01065342, 1.01065342, 1.01065342, 1.01065342,
1.00008186, 1.00008186, 1.00008186, 1.00008186, 1.00000002,
1.00000002, 1.00000002, 1.00000002, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.30857813e-03, 3.30857813e-03, 3.30857813e-03, 3.30857813e-03,
9.90650995e-03, 9.90650995e-03, 9.90650995e-03, 9.90650995e-03,
2.36295980e-02, 2.36295980e-02, 2.36295980e-02, 2.36295980e-02,
5.37860149e-02, 5.37860149e-02, 5.37860149e-02, 5.37860149e-02,
1.14592327e-01, 1.14592327e-01, 1.14592327e-01, 1.14592327e-01,
2.28324216e-01, 2.28324216e-01, 2.28324216e-01, 2.28324216e-01,
4.24711771e-01, 4.24711771e-01, 4.24711771e-01, 4.24711771e-01,
7.37353653e-01, 7.37353653e-01, 7.37353653e-01, 7.37353653e-01,
1.19658658e+00, 1.19658658e+00, 1.19658658e+00, 1.19658658e+00,
1.82130732e+00, 1.82130732e+00, 1.82130732e+00, 1.82130732e+00,
2.61367668e+00, 2.61367668e+00, 2.61367668e+00, 2.61367668e+00,
3.55960001e+00, 3.55960001e+00, 3.55960001e+00, 3.55960001e+00,
4.63473086e+00, 4.63473086e+00, 4.63473086e+00, 4.63473086e+00,
5.81317888e+00, 5.81317888e+00, 5.81317888e+00, 5.81317888e+00,
7.07525107e+00, 7.07525107e+00, 7.07525107e+00, 7.07525107e+00,
8.37802334e+00, 8.37802334e+00, 8.37802334e+00, 8.37802334e+00,
9.69020641e+00, 9.69020641e+00, 9.69020641e+00, 9.69020641e+00,
1.09986461e+01, 1.09986461e+01, 1.09986461e+01, 1.09986461e+01,
1.22993392e+01, 1.22993392e+01, 1.22993392e+01, 1.22993392e+01,
1.35884048e+01, 1.35884048e+01, 1.35884048e+01, 1.35884048e+01,
1.48563893e+01, 1.48563893e+01, 1.48563893e+01, 1.48563893e+01,
1.60857753e+01, 1.60857753e+01, 1.60857753e+01, 1.60857753e+01,
1.72423634e+01, 1.72423634e+01, 1.72423634e+01, 1.72423634e+01,
1.82765856e+01, 1.82765856e+01, 1.82765856e+01, 1.82765856e+01,
1.91204857e+01, 1.91204857e+01, 1.91204857e+01, 1.91204857e+01,
1.97147730e+01, 1.97147730e+01, 1.97147730e+01, 1.97147730e+01,
2.00413906e+01, 2.00413906e+01, 2.00413906e+01, 2.00413906e+01,
2.01574495e+01, 2.01574495e+01, 2.01574495e+01, 2.01574495e+01,
2.01659188e+01, 2.01659188e+01, 2.01659188e+01, 2.01659188e+01,
2.00925092e+01, 2.00925092e+01, 2.00925092e+01, 2.00925092e+01,
2.00365890e+01, 2.00365890e+01, 2.00365890e+01, 2.00365890e+01,
2.00158066e+01, 2.00158066e+01, 2.00158066e+01, 2.00158066e+01,
2.00060951e+01, 2.00060951e+01, 2.00060951e+01, 2.00060951e+01,
1.99977273e+01, 1.99977273e+01, 1.99977273e+01, 1.99977273e+01,
1.99853901e+01, 1.99853901e+01, 1.99853901e+01, 1.99853901e+01,
1.99645055e+01, 1.99645055e+01, 1.99645055e+01, 1.99645055e+01,
1.99389693e+01, 1.99389693e+01, 1.99389693e+01, 1.99389693e+01,
1.99147513e+01, 1.99147513e+01, 1.99147513e+01, 1.99147513e+01,
1.98919906e+01, 1.98919906e+01, 1.98919906e+01, 1.98919906e+01,
1.98717727e+01, 1.98717727e+01, 1.98717727e+01, 1.98717727e+01,
1.98525425e+01, 1.98525425e+01, 1.98525425e+01, 1.98525425e+01,
1.98340626e+01, 1.98340626e+01, 1.98340626e+01, 1.98340626e+01,
1.98228656e+01, 1.98228656e+01, 1.98228656e+01, 1.98228656e+01,
1.97973138e+01, 1.97973138e+01, 1.97973138e+01, 1.97973138e+01,
1.96970829e+01, 1.96970829e+01, 1.96970829e+01, 1.96970829e+01,
1.92311319e+01, 1.92311319e+01, 1.92311319e+01, 1.92311319e+01,
1.72194921e+01, 1.72194921e+01, 1.72194921e+01, 1.72194921e+01,
1.05940203e+01, 1.05940203e+01, 1.05940203e+01, 1.05940203e+01,
1.33734950e+00, 1.33734950e+00, 1.33734950e+00, 1.33734950e+00,
1.58314232e-02, 1.58314232e-02, 1.58314232e-02, 1.58314232e-02,
1.13008501e-05, 1.13008501e-05, 1.13008501e-05, 1.13008501e-05,
1.78142403e-09, 1.78142403e-09, 1.78142403e-09, 1.78142403e-09,
2.75475972e-13, 2.75475972e-13, 2.75475972e-13, 2.75475972e-13,
4.22869040e-17, 4.22869040e-17, 4.22869040e-17, 4.22869040e-17,
4.15971299e-21, 4.15971299e-21, 4.15971299e-21, 4.15971299e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99876214e+02, 9.99876214e+02, 9.99876214e+02, 9.99876214e+02,
9.99629396e+02, 9.99629396e+02, 9.99629396e+02, 9.99629396e+02,
9.99116221e+02, 9.99116221e+02, 9.99116221e+02, 9.99116221e+02,
9.97989363e+02, 9.97989363e+02, 9.97989363e+02, 9.97989363e+02,
9.95720692e+02, 9.95720692e+02, 9.95720692e+02, 9.95720692e+02,
9.91489781e+02, 9.91489781e+02, 9.91489781e+02, 9.91489781e+02,
9.84221698e+02, 9.84221698e+02, 9.84221698e+02, 9.84221698e+02,
9.72748451e+02, 9.72748451e+02, 9.72748451e+02, 9.72748451e+02,
9.56108956e+02, 9.56108956e+02, 9.56108956e+02, 9.56108956e+02,
9.33872727e+02, 9.33872727e+02, 9.33872727e+02, 9.33872727e+02,
9.06315492e+02, 9.06315492e+02, 9.06315492e+02, 9.06315492e+02,
8.74337896e+02, 8.74337896e+02, 8.74337896e+02, 8.74337896e+02,
8.39171349e+02, 8.39171349e+02, 8.39171349e+02, 8.39171349e+02,
8.02021280e+02, 8.02021280e+02, 8.02021280e+02, 8.02021280e+02,
7.63802020e+02, 7.63802020e+02, 7.63802020e+02, 7.63802020e+02,
7.25718152e+02, 7.25718152e+02, 7.25718152e+02, 7.25718152e+02,
6.89144129e+02, 6.89144129e+02, 6.89144129e+02, 6.89144129e+02,
6.54324851e+02, 6.54324851e+02, 6.54324851e+02, 6.54324851e+02,
6.21229262e+02, 6.21229262e+02, 6.21229262e+02, 6.21229262e+02,
5.89863923e+02, 5.89863923e+02, 5.89863923e+02, 5.89863923e+02,
5.60333915e+02, 5.60333915e+02, 5.60333915e+02, 5.60333915e+02,
5.32945780e+02, 5.32945780e+02, 5.32945780e+02, 5.32945780e+02,
5.08201682e+02, 5.08201682e+02, 5.08201682e+02, 5.08201682e+02,
4.86948766e+02, 4.86948766e+02, 4.86948766e+02, 4.86948766e+02,
4.70169922e+02, 4.70169922e+02, 4.70169922e+02, 4.70169922e+02,
4.58655322e+02, 4.58655322e+02, 4.58655322e+02, 4.58655322e+02,
4.52421155e+02, 4.52421155e+02, 4.52421155e+02, 4.52421155e+02,
4.50227207e+02, 4.50227207e+02, 4.50227207e+02, 4.50227207e+02,
4.50078663e+02, 4.50078663e+02, 4.50078663e+02, 4.50078663e+02,
4.51471203e+02, 4.51471203e+02, 4.51471203e+02, 4.51471203e+02,
4.52529169e+02, 4.52529169e+02, 4.52529169e+02, 4.52529169e+02,
4.52901471e+02, 4.52901471e+02, 4.52901471e+02, 4.52901471e+02,
4.53088208e+02, 4.53088208e+02, 4.53088208e+02, 4.53088208e+02,
4.53261283e+02, 4.53261283e+02, 4.53261283e+02, 4.53261283e+02,
4.53508024e+02, 4.53508024e+02, 4.53508024e+02, 4.53508024e+02,
4.53907221e+02, 4.53907221e+02, 4.53907221e+02, 4.53907221e+02,
4.54378816e+02, 4.54378816e+02, 4.54378816e+02, 4.54378816e+02,
4.54816020e+02, 4.54816020e+02, 4.54816020e+02, 4.54816020e+02,
4.55254101e+02, 4.55254101e+02, 4.55254101e+02, 4.55254101e+02,
4.55702968e+02, 4.55702968e+02, 4.55702968e+02, 4.55702968e+02,
4.56112277e+02, 4.56112277e+02, 4.56112277e+02, 4.56112277e+02,
4.56533652e+02, 4.56533652e+02, 4.56533652e+02, 4.56533652e+02,
4.57147821e+02, 4.57147821e+02, 4.57147821e+02, 4.57147821e+02,
4.57487722e+02, 4.57487722e+02, 4.57487722e+02, 4.57487722e+02,
4.54489765e+02, 4.54489765e+02, 4.54489765e+02, 4.54489765e+02,
4.32367414e+02, 4.32367414e+02, 4.32367414e+02, 4.32367414e+02,
3.36891352e+02, 3.36891352e+02, 3.36891352e+02, 3.36891352e+02,
1.20082128e+02, 1.20082128e+02, 1.20082128e+02, 1.20082128e+02,
5.54711825e+00, 5.54711825e+00, 5.54711825e+00, 5.54711825e+00,
2.19907181e-02, 2.19907181e-02, 2.19907181e-02, 2.19907181e-02,
1.00013363e-02, 1.00013363e-02, 1.00013363e-02, 1.00013363e-02,
1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99981351, 0.99981351, 0.99981351, 0.99981351, 0.99947054,
0.99947054, 0.99947054, 0.99947054, 0.9988105 , 0.9988105 ,
0.9988105 , 0.9988105 , 0.99744661, 0.99744661, 0.99744661,
0.99744661, 0.99487737, 0.99487737, 0.99487737, 0.99487737,
0.99039499, 0.99039499, 0.99039499, 0.99039499, 0.98318849,
0.98318849, 0.98318849, 0.98318849, 0.97251404, 0.97251404,
0.97251404, 0.97251404, 0.95791416, 0.95791416, 0.95791416,
0.95791416, 0.9393737 , 0.9393737 , 0.9393737 , 0.9393737 ,
0.91732519, 0.91732519, 0.91732519, 0.91732519, 0.8924994 ,
0.8924994 , 0.8924994 , 0.8924994 , 0.86569902, 0.86569902,
0.86569902, 0.86569902, 0.83758007, 0.83758007, 0.83758007,
0.83758007, 0.80880936, 0.80880936, 0.80880936, 0.80880936,
0.78041711, 0.78041711, 0.78041711, 0.78041711, 0.75287396,
0.75287396, 0.75287396, 0.75287396, 0.7262632 , 0.7262632 ,
0.7262632 , 0.7262632 , 0.70056925, 0.70056925, 0.70056925,
0.70056925, 0.67584993, 0.67584993, 0.67584993, 0.67584993,
0.65238615, 0.65238615, 0.65238615, 0.65238615, 0.63003424,
0.63003424, 0.63003424, 0.63003424, 0.61084192, 0.61084192,
0.61084192, 0.61084192, 0.59222361, 0.59222361, 0.59222361,
0.59222361, 0.58082307, 0.58082307, 0.58082307, 0.58082307,
0.57084769, 0.57084769, 0.57084769, 0.57084769, 0.56609991,
0.56609991, 0.56609991, 0.56609991, 0.56568386, 0.56568386,
0.56568386, 0.56568386, 0.56548787, 0.56548787, 0.56548787,
0.56548787, 0.56657134, 0.56657134, 0.56657134, 0.56657134,
0.56710969, 0.56710969, 0.56710969, 0.56710969, 0.56763591,
0.56763591, 0.56763591, 0.56763591, 0.56774535, 0.56774535,
0.56774535, 0.56774535, 0.56770037, 0.56770037, 0.56770037,
0.56770037, 0.56775753, 0.56775753, 0.56775753, 0.56775753,
0.568006 , 0.568006 , 0.568006 , 0.568006 , 0.56842167,
0.56842167, 0.56842167, 0.56842167, 0.56933391, 0.56933391,
0.56933391, 0.56933391, 0.57288369, 0.57288369, 0.57288369,
0.57288369, 0.58706794, 0.58706794, 0.58706794, 0.58706794,
0.6343945 , 0.6343945 , 0.6343945 , 0.6343945 , 0.76532497,
0.76532497, 0.76532497, 0.76532497, 1.0710979 , 1.0710979 ,
1.0710979 , 1.0710979 , 1.67993717, 1.67993717, 1.67993717,
1.67993717, 2.70591502, 2.70591502, 2.70591502, 2.70591502,
3.70007988, 3.70007988, 3.70007988, 3.70007988, 3.98442962,
3.98442962, 3.98442962, 3.98442962, 3.39924656, 3.39924656,
3.39924656, 3.39924656, 1.61726694, 1.61726694, 1.61726694,
1.61726694, 1.04481323, 1.04481323, 1.04481323, 1.04481323,
1.00129504, 1.00129504, 1.00129504, 1.00129504, 1.00000081,
1.00000081, 1.00000081, 1.00000081, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([6.97829163e-03, 6.97829163e-03, 6.97829163e-03, 6.97829163e-03,
1.98144360e-02, 1.98144360e-02, 1.98144360e-02, 1.98144360e-02,
4.45271720e-02, 4.45271720e-02, 4.45271720e-02, 4.45271720e-02,
9.56332947e-02, 9.56332947e-02, 9.56332947e-02, 9.56332947e-02,
1.92056185e-01, 1.92056185e-01, 1.92056185e-01, 1.92056185e-01,
3.60758718e-01, 3.60758718e-01, 3.60758718e-01, 3.60758718e-01,
6.33292020e-01, 6.33292020e-01, 6.33292020e-01, 6.33292020e-01,
1.03998760e+00, 1.03998760e+00, 1.03998760e+00, 1.03998760e+00,
1.60218999e+00, 1.60218999e+00, 1.60218999e+00, 1.60218999e+00,
2.32628483e+00, 2.32628483e+00, 2.32628483e+00, 2.32628483e+00,
3.20261012e+00, 3.20261012e+00, 3.20261012e+00, 3.20261012e+00,
4.20983812e+00, 4.20983812e+00, 4.20983812e+00, 4.20983812e+00,
5.32266284e+00, 5.32266284e+00, 5.32266284e+00, 5.32266284e+00,
6.52018139e+00, 6.52018139e+00, 6.52018139e+00, 6.52018139e+00,
7.77578750e+00, 7.77578750e+00, 7.77578750e+00, 7.77578750e+00,
9.04696669e+00, 9.04696669e+00, 9.04696669e+00, 9.04696669e+00,
1.03198134e+01, 1.03198134e+01, 1.03198134e+01, 1.03198134e+01,
1.15876099e+01, 1.15876099e+01, 1.15876099e+01, 1.15876099e+01,
1.28468639e+01, 1.28468639e+01, 1.28468639e+01, 1.28468639e+01,
1.40930929e+01, 1.40930929e+01, 1.40930929e+01, 1.40930929e+01,
1.53148719e+01, 1.53148719e+01, 1.53148719e+01, 1.53148719e+01,
1.64919282e+01, 1.64919282e+01, 1.64919282e+01, 1.64919282e+01,
1.75867321e+01, 1.75867321e+01, 1.75867321e+01, 1.75867321e+01,
1.85470262e+01, 1.85470262e+01, 1.85470262e+01, 1.85470262e+01,
1.93069541e+01, 1.93069541e+01, 1.93069541e+01, 1.93069541e+01,
1.98179609e+01, 1.98179609e+01, 1.98179609e+01, 1.98179609e+01,
2.00793284e+01, 2.00793284e+01, 2.00793284e+01, 2.00793284e+01,
2.01586176e+01, 2.01586176e+01, 2.01586176e+01, 2.01586176e+01,
2.01524831e+01, 2.01524831e+01, 2.01524831e+01, 2.01524831e+01,
2.00752058e+01, 2.00752058e+01, 2.00752058e+01, 2.00752058e+01,
2.00307498e+01, 2.00307498e+01, 2.00307498e+01, 2.00307498e+01,
2.00136099e+01, 2.00136099e+01, 2.00136099e+01, 2.00136099e+01,
2.00037603e+01, 2.00037603e+01, 2.00037603e+01, 2.00037603e+01,
1.99945192e+01, 1.99945192e+01, 1.99945192e+01, 1.99945192e+01,
1.99804496e+01, 1.99804496e+01, 1.99804496e+01, 1.99804496e+01,
1.99580977e+01, 1.99580977e+01, 1.99580977e+01, 1.99580977e+01,
1.99332124e+01, 1.99332124e+01, 1.99332124e+01, 1.99332124e+01,
1.99091877e+01, 1.99091877e+01, 1.99091877e+01, 1.99091877e+01,
1.98860108e+01, 1.98860108e+01, 1.98860108e+01, 1.98860108e+01,
1.98654280e+01, 1.98654280e+01, 1.98654280e+01, 1.98654280e+01,
1.98471370e+01, 1.98471370e+01, 1.98471370e+01, 1.98471370e+01,
1.98298574e+01, 1.98298574e+01, 1.98298574e+01, 1.98298574e+01,
1.98171370e+01, 1.98171370e+01, 1.98171370e+01, 1.98171370e+01,
1.98030159e+01, 1.98030159e+01, 1.98030159e+01, 1.98030159e+01,
1.97516465e+01, 1.97516465e+01, 1.97516465e+01, 1.97516465e+01,
1.95204012e+01, 1.95204012e+01, 1.95204012e+01, 1.95204012e+01,
1.84745602e+01, 1.84745602e+01, 1.84745602e+01, 1.84745602e+01,
1.44416174e+01, 1.44416174e+01, 1.44416174e+01, 1.44416174e+01,
4.87006574e+00, 4.87006574e+00, 4.87006574e+00, 4.87006574e+00,
1.70878215e-01, 1.70878215e-01, 1.70878215e-01, 1.70878215e-01,
4.74222438e-04, 4.74222438e-04, 4.74222438e-04, 4.74222438e-04,
9.62797091e-08, 9.62797091e-08, 9.62797091e-08, 9.62797091e-08,
1.54134491e-11, 1.54134491e-11, 1.54134491e-11, 1.54134491e-11,
2.48678570e-15, 2.48678570e-15, 2.48678570e-15, 2.48678570e-15,
3.95125006e-19, 3.95125006e-19, 3.95125006e-19, 3.95125006e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99738937e+02, 9.99738937e+02, 9.99738937e+02, 9.99738937e+02,
9.99258865e+02, 9.99258865e+02, 9.99258865e+02, 9.99258865e+02,
9.98335213e+02, 9.98335213e+02, 9.98335213e+02, 9.98335213e+02,
9.96427546e+02, 9.96427546e+02, 9.96427546e+02, 9.96427546e+02,
9.92837210e+02, 9.92837210e+02, 9.92837210e+02, 9.92837210e+02,
9.86583249e+02, 9.86583249e+02, 9.86583249e+02, 9.86583249e+02,
9.76553906e+02, 9.76553906e+02, 9.76553906e+02, 9.76553906e+02,
9.61754277e+02, 9.61754277e+02, 9.61754277e+02, 9.61754277e+02,
9.41618962e+02, 9.41618962e+02, 9.41618962e+02, 9.41618962e+02,
9.16225667e+02, 9.16225667e+02, 9.16225667e+02, 9.16225667e+02,
8.86285914e+02, 8.86285914e+02, 8.86285914e+02, 8.86285914e+02,
8.52914522e+02, 8.52914522e+02, 8.52914522e+02, 8.52914522e+02,
8.17299685e+02, 8.17299685e+02, 8.17299685e+02, 8.17299685e+02,
7.80401265e+02, 7.80401265e+02, 7.80401265e+02, 7.80401265e+02,
7.43128313e+02, 7.43128313e+02, 7.43128313e+02, 7.43128313e+02,
7.06850048e+02, 7.06850048e+02, 7.06850048e+02, 7.06850048e+02,
6.72179206e+02, 6.72179206e+02, 6.72179206e+02, 6.72179206e+02,
6.39161893e+02, 6.39161893e+02, 6.39161893e+02, 6.39161893e+02,
6.07736695e+02, 6.07736695e+02, 6.07736695e+02, 6.07736695e+02,
5.77958609e+02, 5.77958609e+02, 5.77958609e+02, 5.77958609e+02,
5.49975461e+02, 5.49975461e+02, 5.49975461e+02, 5.49975461e+02,
5.24148628e+02, 5.24148628e+02, 5.24148628e+02, 5.24148628e+02,
5.01038900e+02, 5.01038900e+02, 5.01038900e+02, 5.01038900e+02,
4.81516564e+02, 4.81516564e+02, 4.81516564e+02, 4.81516564e+02,
4.66526226e+02, 4.66526226e+02, 4.66526226e+02, 4.66526226e+02,
4.56679419e+02, 4.56679419e+02, 4.56679419e+02, 4.56679419e+02,
4.51709116e+02, 4.51709116e+02, 4.51709116e+02, 4.51709116e+02,
4.50204516e+02, 4.50204516e+02, 4.50204516e+02, 4.50204516e+02,
4.50323474e+02, 4.50323474e+02, 4.50323474e+02, 4.50323474e+02,
4.51792099e+02, 4.51792099e+02, 4.51792099e+02, 4.51792099e+02,
4.52644533e+02, 4.52644533e+02, 4.52644533e+02, 4.52644533e+02,
4.52957374e+02, 4.52957374e+02, 4.52957374e+02, 4.52957374e+02,
4.53131411e+02, 4.53131411e+02, 4.53131411e+02, 4.53131411e+02,
4.53310711e+02, 4.53310711e+02, 4.53310711e+02, 4.53310711e+02,
4.53588206e+02, 4.53588206e+02, 4.53588206e+02, 4.53588206e+02,
4.54024216e+02, 4.54024216e+02, 4.54024216e+02, 4.54024216e+02,
4.54505579e+02, 4.54505579e+02, 4.54505579e+02, 4.54505579e+02,
4.54941322e+02, 4.54941322e+02, 4.54941322e+02, 4.54941322e+02,
4.55358316e+02, 4.55358316e+02, 4.55358316e+02, 4.55358316e+02,
4.55776216e+02, 4.55776216e+02, 4.55776216e+02, 4.55776216e+02,
4.56187451e+02, 4.56187451e+02, 4.56187451e+02, 4.56187451e+02,
4.56567868e+02, 4.56567868e+02, 4.56567868e+02, 4.56567868e+02,
4.57061252e+02, 4.57061252e+02, 4.57061252e+02, 4.57061252e+02,
4.57670049e+02, 4.57670049e+02, 4.57670049e+02, 4.57670049e+02,
4.56861977e+02, 4.56861977e+02, 4.56861977e+02, 4.56861977e+02,
4.46897134e+02, 4.46897134e+02, 4.46897134e+02, 4.46897134e+02,
3.95213842e+02, 3.95213842e+02, 3.95213842e+02, 3.95213842e+02,
2.27017462e+02, 2.27017462e+02, 2.27017462e+02, 2.27017462e+02,
3.24722316e+01, 3.24722316e+01, 3.24722316e+01, 3.24722316e+01,
3.44215454e-01, 3.44215454e-01, 3.44215454e-01, 3.44215454e-01,
1.00956522e-02, 1.00956522e-02, 1.00956522e-02, 1.00956522e-02,
1.00000114e-02, 1.00000114e-02, 1.00000114e-02, 1.00000114e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99962715, 0.99962715, 0.99962715, 0.99962715, 0.9989959 ,
0.9989959 , 0.9989959 , 0.9989959 , 0.99787399, 0.99787399,
0.99787399, 0.99787399, 0.99569077, 0.99569077, 0.99569077,
0.99569077, 0.99184415, 0.99184415, 0.99184415, 0.99184415,
0.98556472, 0.98556472, 0.98556472, 0.98556472, 0.97611065,
0.97611065, 0.97611065, 0.97611065, 0.96295756, 0.96295756,
0.96295756, 0.96295756, 0.94597218, 0.94597218, 0.94597218,
0.94597218, 0.92545827, 0.92545827, 0.92545827, 0.92545827,
0.90205196, 0.90205196, 0.90205196, 0.90205196, 0.87652198,
0.87652198, 0.87652198, 0.87652198, 0.84956063, 0.84956063,
0.84956063, 0.84956063, 0.82170304, 0.82170304, 0.82170304,
0.82170304, 0.79383738, 0.79383738, 0.79383738, 0.79383738,
0.76665912, 0.76665912, 0.76665912, 0.76665912, 0.74033691,
0.74033691, 0.74033691, 0.74033691, 0.71486688, 0.71486688,
0.71486688, 0.71486688, 0.69028102, 0.69028102, 0.69028102,
0.69028102, 0.6666371 , 0.6666371 , 0.6666371 , 0.6666371 ,
0.64432028, 0.64432028, 0.64432028, 0.64432028, 0.62304012,
0.62304012, 0.62304012, 0.62304012, 0.60528142, 0.60528142,
0.60528142, 0.60528142, 0.58800675, 0.58800675, 0.58800675,
0.58800675, 0.5778694 , 0.5778694 , 0.5778694 , 0.5778694 ,
0.56972246, 0.56972246, 0.56972246, 0.56972246, 0.56560315,
0.56560315, 0.56560315, 0.56560315, 0.56553233, 0.56553233,
0.56553233, 0.56553233, 0.56584834, 0.56584834, 0.56584834,
0.56584834, 0.56690991, 0.56690991, 0.56690991, 0.56690991,
0.56721384, 0.56721384, 0.56721384, 0.56721384, 0.56762924,
0.56762924, 0.56762924, 0.56762924, 0.56782241, 0.56782241,
0.56782241, 0.56782241, 0.56782868, 0.56782868, 0.56782868,
0.56782868, 0.56791572, 0.56791572, 0.56791572, 0.56791572,
0.56816164, 0.56816164, 0.56816164, 0.56816164, 0.56851365,
0.56851365, 0.56851365, 0.56851365, 0.56920152, 0.56920152,
0.56920152, 0.56920152, 0.57156713, 0.57156713, 0.57156713,
0.57156713, 0.58101327, 0.58101327, 0.58101327, 0.58101327,
0.61373599, 0.61373599, 0.61373599, 0.61373599, 0.70822132,
0.70822132, 0.70822132, 0.70822132, 0.93867528, 0.93867528,
0.93867528, 0.93867528, 1.41891316, 1.41891316, 1.41891316,
1.41891316, 2.27525624, 2.27525624, 2.27525624, 2.27525624,
3.41072177, 3.41072177, 3.41072177, 3.41072177, 3.98667427,
3.98667427, 3.98667427, 3.98667427, 3.87982047, 3.87982047,
3.87982047, 3.87982047, 2.43231843, 2.43231843, 2.43231843,
2.43231843, 1.15615318, 1.15615318, 1.15615318, 1.15615318,
1.00824283, 1.00824283, 1.00824283, 1.00824283, 1.0000454 ,
1.0000454 , 1.0000454 , 1.0000454 , 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.39530183e-02, 1.39530183e-02, 1.39530183e-02, 1.39530183e-02,
3.75848880e-02, 3.75848880e-02, 3.75848880e-02, 3.75848880e-02,
7.96128157e-02, 7.96128157e-02, 7.96128157e-02, 7.96128157e-02,
1.61508250e-01, 1.61508250e-01, 1.61508250e-01, 1.61508250e-01,
3.06150477e-01, 3.06150477e-01, 3.06150477e-01, 3.06150477e-01,
5.43251766e-01, 5.43251766e-01, 5.43251766e-01, 5.43251766e-01,
9.02556002e-01, 9.02556002e-01, 9.02556002e-01, 9.02556002e-01,
1.40720176e+00, 1.40720176e+00, 1.40720176e+00, 1.40720176e+00,
2.06726331e+00, 2.06726331e+00, 2.06726331e+00, 2.06726331e+00,
2.87738380e+00, 2.87738380e+00, 2.87738380e+00, 2.87738380e+00,
3.81959664e+00, 3.81959664e+00, 3.81959664e+00, 3.81959664e+00,
4.86989842e+00, 4.86989842e+00, 4.86989842e+00, 4.86989842e+00,
6.00593747e+00, 6.00593747e+00, 6.00593747e+00, 6.00593747e+00,
7.20976710e+00, 7.20976710e+00, 7.20976710e+00, 7.20976710e+00,
8.44013430e+00, 8.44013430e+00, 8.44013430e+00, 8.44013430e+00,
9.67820971e+00, 9.67820971e+00, 9.67820971e+00, 9.67820971e+00,
1.09131010e+01, 1.09131010e+01, 1.09131010e+01, 1.09131010e+01,
1.21419057e+01, 1.21419057e+01, 1.21419057e+01, 1.21419057e+01,
1.33619281e+01, 1.33619281e+01, 1.33619281e+01, 1.33619281e+01,
1.45669883e+01, 1.45669883e+01, 1.45669883e+01, 1.45669883e+01,
1.57435737e+01, 1.57435737e+01, 1.57435737e+01, 1.57435737e+01,
1.68686020e+01, 1.68686020e+01, 1.68686020e+01, 1.68686020e+01,
1.79014772e+01, 1.79014772e+01, 1.79014772e+01, 1.79014772e+01,
1.87882849e+01, 1.87882849e+01, 1.87882849e+01, 1.87882849e+01,
1.94668837e+01, 1.94668837e+01, 1.94668837e+01, 1.94668837e+01,
1.99006239e+01, 1.99006239e+01, 1.99006239e+01, 1.99006239e+01,
2.01050731e+01, 2.01050731e+01, 2.01050731e+01, 2.01050731e+01,
2.01571544e+01, 2.01571544e+01, 2.01571544e+01, 2.01571544e+01,
2.01363521e+01, 2.01363521e+01, 2.01363521e+01, 2.01363521e+01,
2.00613129e+01, 2.00613129e+01, 2.00613129e+01, 2.00613129e+01,
2.00257473e+01, 2.00257473e+01, 2.00257473e+01, 2.00257473e+01,
2.00113940e+01, 2.00113940e+01, 2.00113940e+01, 2.00113940e+01,
2.00016210e+01, 2.00016210e+01, 2.00016210e+01, 2.00016210e+01,
1.99912688e+01, 1.99912688e+01, 1.99912688e+01, 1.99912688e+01,
1.99751513e+01, 1.99751513e+01, 1.99751513e+01, 1.99751513e+01,
1.99512938e+01, 1.99512938e+01, 1.99512938e+01, 1.99512938e+01,
1.99269046e+01, 1.99269046e+01, 1.99269046e+01, 1.99269046e+01,
1.99037068e+01, 1.99037068e+01, 1.99037068e+01, 1.99037068e+01,
1.98807884e+01, 1.98807884e+01, 1.98807884e+01, 1.98807884e+01,
1.98596458e+01, 1.98596458e+01, 1.98596458e+01, 1.98596458e+01,
1.98416867e+01, 1.98416867e+01, 1.98416867e+01, 1.98416867e+01,
1.98257179e+01, 1.98257179e+01, 1.98257179e+01, 1.98257179e+01,
1.98115993e+01, 1.98115993e+01, 1.98115993e+01, 1.98115993e+01,
1.98022942e+01, 1.98022942e+01, 1.98022942e+01, 1.98022942e+01,
1.97745446e+01, 1.97745446e+01, 1.97745446e+01, 1.97745446e+01,
1.96599658e+01, 1.96599658e+01, 1.96599658e+01, 1.96599658e+01,
1.91316282e+01, 1.91316282e+01, 1.91316282e+01, 1.91316282e+01,
1.68989432e+01, 1.68989432e+01, 1.68989432e+01, 1.68989432e+01,
9.82776433e+00, 9.82776433e+00, 9.82776433e+00, 9.82776433e+00,
1.03966586e+00, 1.03966586e+00, 1.03966586e+00, 1.03966586e+00,
1.02686172e-02, 1.02686172e-02, 1.02686172e-02, 1.02686172e-02,
5.87596530e-06, 5.87596530e-06, 5.87596530e-06, 5.87596530e-06,
9.09802870e-10, 9.09802870e-10, 9.09802870e-10, 9.09802870e-10,
1.40162828e-13, 1.40162828e-13, 1.40162828e-13, 1.40162828e-13,
2.18096263e-17, 2.18096263e-17, 2.18096263e-17, 2.18096263e-17,
4.14673755e-21, 4.14673755e-21, 4.14673755e-21, 4.14673755e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99478084e+02, 9.99478084e+02, 9.99478084e+02, 9.99478084e+02,
9.98594612e+02, 9.98594612e+02, 9.98594612e+02, 9.98594612e+02,
9.97025182e+02, 9.97025182e+02, 9.97025182e+02, 9.97025182e+02,
9.93973403e+02, 9.93973403e+02, 9.93973403e+02, 9.93973403e+02,
9.88603735e+02, 9.88603735e+02, 9.88603735e+02, 9.88603735e+02,
9.79857278e+02, 9.79857278e+02, 9.79857278e+02, 9.79857278e+02,
9.66732858e+02, 9.66732858e+02, 9.66732858e+02, 9.66732858e+02,
9.48559568e+02, 9.48559568e+02, 9.48559568e+02, 9.48559568e+02,
9.25238470e+02, 9.25238470e+02, 9.25238470e+02, 9.25238470e+02,
8.97294073e+02, 8.97294073e+02, 8.97294073e+02, 8.97294073e+02,
8.65708163e+02, 8.65708163e+02, 8.65708163e+02, 8.65708163e+02,
8.31624879e+02, 8.31624879e+02, 8.31624879e+02, 8.31624879e+02,
7.96056352e+02, 7.96056352e+02, 7.96056352e+02, 7.96056352e+02,
7.59769847e+02, 7.59769847e+02, 7.59769847e+02, 7.59769847e+02,
7.23915193e+02, 7.23915193e+02, 7.23915193e+02, 7.23915193e+02,
6.89464378e+02, 6.89464378e+02, 6.89464378e+02, 6.89464378e+02,
6.56557931e+02, 6.56557931e+02, 6.56557931e+02, 6.56557931e+02,
6.25161940e+02, 6.25161940e+02, 6.25161940e+02, 6.25161940e+02,
5.95273088e+02, 5.95273088e+02, 5.95273088e+02, 5.95273088e+02,
5.66968750e+02, 5.66968750e+02, 5.66968750e+02, 5.66968750e+02,
5.40439673e+02, 5.40439673e+02, 5.40439673e+02, 5.40439673e+02,
5.16100425e+02, 5.16100425e+02, 5.16100425e+02, 5.16100425e+02,
4.94565963e+02, 4.94565963e+02, 4.94565963e+02, 4.94565963e+02,
4.76716435e+02, 4.76716435e+02, 4.76716435e+02, 4.76716435e+02,
4.63423824e+02, 4.63423824e+02, 4.63423824e+02, 4.63423824e+02,
4.55097958e+02, 4.55097958e+02, 4.55097958e+02, 4.55097958e+02,
4.51223672e+02, 4.51223672e+02, 4.51223672e+02, 4.51223672e+02,
4.50235886e+02, 4.50235886e+02, 4.50235886e+02, 4.50235886e+02,
4.50627214e+02, 4.50627214e+02, 4.50627214e+02, 4.50627214e+02,
4.52045781e+02, 4.52045781e+02, 4.52045781e+02, 4.52045781e+02,
4.52733619e+02, 4.52733619e+02, 4.52733619e+02, 4.52733619e+02,
4.53008677e+02, 4.53008677e+02, 4.53008677e+02, 4.53008677e+02,
4.53183711e+02, 4.53183711e+02, 4.53183711e+02, 4.53183711e+02,
4.53371405e+02, 4.53371405e+02, 4.53371405e+02, 4.53371405e+02,
4.53677995e+02, 4.53677995e+02, 4.53677995e+02, 4.53677995e+02,
4.54140504e+02, 4.54140504e+02, 4.54140504e+02, 4.54140504e+02,
4.54621285e+02, 4.54621285e+02, 4.54621285e+02, 4.54621285e+02,
4.55065003e+02, 4.55065003e+02, 4.55065003e+02, 4.55065003e+02,
4.55473454e+02, 4.55473454e+02, 4.55473454e+02, 4.55473454e+02,
4.55862605e+02, 4.55862605e+02, 4.55862605e+02, 4.55862605e+02,
4.56251236e+02, 4.56251236e+02, 4.56251236e+02, 4.56251236e+02,
4.56613227e+02, 4.56613227e+02, 4.56613227e+02, 4.56613227e+02,
4.57031953e+02, 4.57031953e+02, 4.57031953e+02, 4.57031953e+02,
4.57636572e+02, 4.57636572e+02, 4.57636572e+02, 4.57636572e+02,
4.57734018e+02, 4.57734018e+02, 4.57734018e+02, 4.57734018e+02,
4.53736791e+02, 4.53736791e+02, 4.53736791e+02, 4.53736791e+02,
4.27841681e+02, 4.27841681e+02, 4.27841681e+02, 4.27841681e+02,
3.22491407e+02, 3.22491407e+02, 3.22491407e+02, 3.22491407e+02,
1.03503221e+02, 1.03503221e+02, 1.03503221e+02, 1.03503221e+02,
3.92201766e+00, 3.92201766e+00, 3.92201766e+00, 3.92201766e+00,
1.65463831e-02, 1.65463831e-02, 1.65463831e-02, 1.65463831e-02,
1.00006926e-02, 1.00006926e-02, 1.00006926e-02, 1.00006926e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99929182, 0.99929182, 0.99929182, 0.99929182, 0.99819056,
0.99819056, 0.99819056, 0.99819056, 0.99638774, 0.99638774,
0.99638774, 0.99638774, 0.99307857, 0.99307857, 0.99307857,
0.99307857, 0.98762234, 0.98762234, 0.98762234, 0.98762234,
0.97927076, 0.97927076, 0.97927076, 0.97927076, 0.96745681,
0.96745681, 0.96745681, 0.96745681, 0.95194398, 0.95194398,
0.95194398, 0.95194398, 0.93291304, 0.93291304, 0.93291304,
0.93291304, 0.91089851, 0.91089851, 0.91089851, 0.91089851,
0.88661886, 0.88661886, 0.88661886, 0.88661886, 0.86077838,
0.86077838, 0.86077838, 0.86077838, 0.83390834, 0.83390834,
0.83390834, 0.83390834, 0.80667351, 0.80667351, 0.80667351,
0.80667351, 0.77989973, 0.77989973, 0.77989973, 0.77989973,
0.75387045, 0.75387045, 0.75387045, 0.75387045, 0.72866226,
0.72866226, 0.72866226, 0.72866226, 0.70425431, 0.70425431,
0.70425431, 0.70425431, 0.68070198, 0.68070198, 0.68070198,
0.68070198, 0.65806701, 0.65806701, 0.65806701, 0.65806701,
0.63686275, 0.63686275, 0.63686275, 0.63686275, 0.61660877,
0.61660877, 0.61660877, 0.61660877, 0.60023979, 0.60023979,
0.60023979, 0.60023979, 0.58434031, 0.58434031, 0.58434031,
0.58434031, 0.57531196, 0.57531196, 0.57531196, 0.57531196,
0.56885665, 0.56885665, 0.56885665, 0.56885665, 0.56535251,
0.56535251, 0.56535251, 0.56535251, 0.56542652, 0.56542652,
0.56542652, 0.56542652, 0.56613675, 0.56613675, 0.56613675,
0.56613675, 0.56722021, 0.56722021, 0.56722021, 0.56722021,
0.56734999, 0.56734999, 0.56734999, 0.56734999, 0.56761109,
0.56761109, 0.56761109, 0.56761109, 0.56787835, 0.56787835,
0.56787835, 0.56787835, 0.56795177, 0.56795177, 0.56795177,
0.56795177, 0.56808491, 0.56808491, 0.56808491, 0.56808491,
0.56833262, 0.56833262, 0.56833262, 0.56833262, 0.56862979,
0.56862979, 0.56862979, 0.56862979, 0.56915933, 0.56915933,
0.56915933, 0.56915933, 0.570773 , 0.570773 , 0.570773 ,
0.570773 , 0.57706088, 0.57706088, 0.57706088, 0.57706088,
0.59949934, 0.59949934, 0.59949934, 0.59949934, 0.66700177,
0.66700177, 0.66700177, 0.66700177, 0.83868505, 0.83868505,
0.83868505, 0.83868505, 1.21237055, 1.21237055, 1.21237055,
1.21237055, 1.91223289, 1.91223289, 1.91223289, 1.91223289,
3.007806 , 3.007806 , 3.007806 , 3.007806 , 3.87809533,
3.87809533, 3.87809533, 3.87809533, 4.06550349, 4.06550349,
4.06550349, 4.06550349, 3.31660165, 3.31660165, 3.31660165,
3.31660165, 1.51650855, 1.51650855, 1.51650855, 1.51650855,
1.03580283, 1.03580283, 1.03580283, 1.03580283, 1.00089283,
1.00089283, 1.00089283, 1.00089283, 1.00000042, 1.00000042,
1.00000042, 1.00000042, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.65061748e-02, 2.65061748e-02, 2.65061748e-02, 2.65061748e-02,
6.77521323e-02, 6.77521323e-02, 6.77521323e-02, 6.77521323e-02,
1.35347197e-01, 1.35347197e-01, 1.35347197e-01, 1.35347197e-01,
2.59685207e-01, 2.59685207e-01, 2.59685207e-01, 2.59685207e-01,
4.65425979e-01, 4.65425979e-01, 4.65425979e-01, 4.65425979e-01,
7.82144211e-01, 7.82144211e-01, 7.82144211e-01, 7.82144211e-01,
1.23395371e+00, 1.23395371e+00, 1.23395371e+00, 1.23395371e+00,
1.83410775e+00, 1.83410775e+00, 1.83410775e+00, 1.83410775e+00,
2.58131290e+00, 2.58131290e+00, 2.58131290e+00, 2.58131290e+00,
3.46116458e+00, 3.46116458e+00, 3.46116458e+00, 3.46116458e+00,
4.45155217e+00, 4.45155217e+00, 4.45155217e+00, 4.45155217e+00,
5.52969690e+00, 5.52969690e+00, 5.52969690e+00, 5.52969690e+00,
6.67852811e+00, 6.67852811e+00, 6.67852811e+00, 6.67852811e+00,
7.86873820e+00, 7.86873820e+00, 7.86873820e+00, 7.86873820e+00,
9.07107121e+00, 9.07107121e+00, 9.07107121e+00, 9.07107121e+00,
1.02736328e+01, 1.02736328e+01, 1.02736328e+01, 1.02736328e+01,
1.14723262e+01, 1.14723262e+01, 1.14723262e+01, 1.14723262e+01,
1.26646432e+01, 1.26646432e+01, 1.26646432e+01, 1.26646432e+01,
1.38470920e+01, 1.38470920e+01, 1.38470920e+01, 1.38470920e+01,
1.50122685e+01, 1.50122685e+01, 1.50122685e+01, 1.50122685e+01,
1.61443786e+01, 1.61443786e+01, 1.61443786e+01, 1.61443786e+01,
1.72174436e+01, 1.72174436e+01, 1.72174436e+01, 1.72174436e+01,
1.81881157e+01, 1.81881157e+01, 1.81881157e+01, 1.81881157e+01,
1.90020678e+01, 1.90020678e+01, 1.90020678e+01, 1.90020678e+01,
1.96026064e+01, 1.96026064e+01, 1.96026064e+01, 1.96026064e+01,
1.99654493e+01, 1.99654493e+01, 1.99654493e+01, 1.99654493e+01,
2.01215540e+01, 2.01215540e+01, 2.01215540e+01, 2.01215540e+01,
2.01536613e+01, 2.01536613e+01, 2.01536613e+01, 2.01536613e+01,
2.01186860e+01, 2.01186860e+01, 2.01186860e+01, 2.01186860e+01,
2.00503930e+01, 2.00503930e+01, 2.00503930e+01, 2.00503930e+01,
2.00214278e+01, 2.00214278e+01, 2.00214278e+01, 2.00214278e+01,
2.00088918e+01, 2.00088918e+01, 2.00088918e+01, 2.00088918e+01,
1.99992270e+01, 1.99992270e+01, 1.99992270e+01, 1.99992270e+01,
1.99879478e+01, 1.99879478e+01, 1.99879478e+01, 1.99879478e+01,
1.99697555e+01, 1.99697555e+01, 1.99697555e+01, 1.99697555e+01,
1.99444645e+01, 1.99444645e+01, 1.99444645e+01, 1.99444645e+01,
1.99203251e+01, 1.99203251e+01, 1.99203251e+01, 1.99203251e+01,
1.98978235e+01, 1.98978235e+01, 1.98978235e+01, 1.98978235e+01,
1.98758306e+01, 1.98758306e+01, 1.98758306e+01, 1.98758306e+01,
1.98547615e+01, 1.98547615e+01, 1.98547615e+01, 1.98547615e+01,
1.98366120e+01, 1.98366120e+01, 1.98366120e+01, 1.98366120e+01,
1.98210642e+01, 1.98210642e+01, 1.98210642e+01, 1.98210642e+01,
1.98067178e+01, 1.98067178e+01, 1.98067178e+01, 1.98067178e+01,
1.97979636e+01, 1.97979636e+01, 1.97979636e+01, 1.97979636e+01,
1.97829582e+01, 1.97829582e+01, 1.97829582e+01, 1.97829582e+01,
1.97247063e+01, 1.97247063e+01, 1.97247063e+01, 1.97247063e+01,
1.94611034e+01, 1.94611034e+01, 1.94611034e+01, 1.94611034e+01,
1.82839011e+01, 1.82839011e+01, 1.82839011e+01, 1.82839011e+01,
1.38817854e+01, 1.38817854e+01, 1.38817854e+01, 1.38817854e+01,
4.10564450e+00, 4.10564450e+00, 4.10564450e+00, 4.10564450e+00,
1.19559981e-01, 1.19559981e-01, 1.19559981e-01, 1.19559981e-01,
2.64879102e-04, 2.64879102e-04, 2.64879102e-04, 2.64879102e-04,
4.95793305e-08, 4.95793305e-08, 4.95793305e-08, 4.95793305e-08,
8.02645853e-12, 8.02645853e-12, 8.02645853e-12, 8.02645853e-12,
1.28397217e-15, 1.28397217e-15, 1.28397217e-15, 1.28397217e-15,
1.96745591e-19, 1.96745591e-19, 1.96745591e-19, 1.96745591e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99008791e+02, 9.99008791e+02, 9.99008791e+02, 9.99008791e+02,
9.97467896e+02, 9.97467896e+02, 9.97467896e+02, 9.97467896e+02,
9.94947317e+02, 9.94947317e+02, 9.94947317e+02, 9.94947317e+02,
9.90325847e+02, 9.90325847e+02, 9.90325847e+02, 9.90325847e+02,
9.82720519e+02, 9.82720519e+02, 9.82720519e+02, 9.82720519e+02,
9.71113593e+02, 9.71113593e+02, 9.71113593e+02, 9.71113593e+02,
9.54764008e+02, 9.54764008e+02, 9.54764008e+02, 9.54764008e+02,
9.33417401e+02, 9.33417401e+02, 9.33417401e+02, 9.33417401e+02,
9.07418550e+02, 9.07418550e+02, 9.07418550e+02, 9.07418550e+02,
8.77605065e+02, 8.77605065e+02, 8.77605065e+02, 8.77605065e+02,
8.45053460e+02, 8.45053460e+02, 8.45053460e+02, 8.45053460e+02,
8.10795758e+02, 8.10795758e+02, 8.10795758e+02, 8.10795758e+02,
7.75604847e+02, 7.75604847e+02, 7.75604847e+02, 7.75604847e+02,
7.40358342e+02, 7.40358342e+02, 7.40358342e+02, 7.40358342e+02,
7.06183106e+02, 7.06183106e+02, 7.06183106e+02, 7.06183106e+02,
6.73414104e+02, 6.73414104e+02, 6.73414104e+02, 6.73414104e+02,
6.42106090e+02, 6.42106090e+02, 6.42106090e+02, 6.42106090e+02,
6.12205307e+02, 6.12205307e+02, 6.12205307e+02, 6.12205307e+02,
5.83733464e+02, 5.83733464e+02, 5.83733464e+02, 5.83733464e+02,
5.56805862e+02, 5.56805862e+02, 5.56805862e+02, 5.56805862e+02,
5.31654012e+02, 5.31654012e+02, 5.31654012e+02, 5.31654012e+02,
5.08742192e+02, 5.08742192e+02, 5.08742192e+02, 5.08742192e+02,
4.88731625e+02, 4.88731625e+02, 4.88731625e+02, 4.88731625e+02,
4.72495806e+02, 4.72495806e+02, 4.72495806e+02, 4.72495806e+02,
4.60808275e+02, 4.60808275e+02, 4.60808275e+02, 4.60808275e+02,
4.53862047e+02, 4.53862047e+02, 4.53862047e+02, 4.53862047e+02,
4.50909195e+02, 4.50909195e+02, 4.50909195e+02, 4.50909195e+02,
4.50303363e+02, 4.50303363e+02, 4.50303363e+02, 4.50303363e+02,
4.50963314e+02, 4.50963314e+02, 4.50963314e+02, 4.50963314e+02,
4.52251030e+02, 4.52251030e+02, 4.52251030e+02, 4.52251030e+02,
4.52805650e+02, 4.52805650e+02, 4.52805650e+02, 4.52805650e+02,
4.53054444e+02, 4.53054444e+02, 4.53054444e+02, 4.53054444e+02,
4.53236462e+02, 4.53236462e+02, 4.53236462e+02, 4.53236462e+02,
4.53444188e+02, 4.53444188e+02, 4.53444188e+02, 4.53444188e+02,
4.53782015e+02, 4.53782015e+02, 4.53782015e+02, 4.53782015e+02,
4.54259731e+02, 4.54259731e+02, 4.54259731e+02, 4.54259731e+02,
4.54730412e+02, 4.54730412e+02, 4.54730412e+02, 4.54730412e+02,
4.55178339e+02, 4.55178339e+02, 4.55178339e+02, 4.55178339e+02,
4.55590920e+02, 4.55590920e+02, 4.55590920e+02, 4.55590920e+02,
4.55961244e+02, 4.55961244e+02, 4.55961244e+02, 4.55961244e+02,
4.56316460e+02, 4.56316460e+02, 4.56316460e+02, 4.56316460e+02,
4.56666544e+02, 4.56666544e+02, 4.56666544e+02, 4.56666544e+02,
4.57026199e+02, 4.57026199e+02, 4.57026199e+02, 4.57026199e+02,
4.57531552e+02, 4.57531552e+02, 4.57531552e+02, 4.57531552e+02,
4.58018403e+02, 4.58018403e+02, 4.58018403e+02, 4.58018403e+02,
4.56713026e+02, 4.56713026e+02, 4.56713026e+02, 4.56713026e+02,
4.44619433e+02, 4.44619433e+02, 4.44619433e+02, 4.44619433e+02,
3.86158645e+02, 3.86158645e+02, 3.86158645e+02, 3.86158645e+02,
2.07519215e+02, 2.07519215e+02, 2.07519215e+02, 2.07519215e+02,
2.53994497e+01, 2.53994497e+01, 2.53994497e+01, 2.53994497e+01,
2.14148688e-01, 2.14148688e-01, 2.14148688e-01, 2.14148688e-01,
1.00450120e-02, 1.00450120e-02, 1.00450120e-02, 1.00450120e-02,
1.00000059e-02, 1.00000059e-02, 1.00000059e-02, 1.00000059e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99871963, 0.99871963, 0.99871963, 0.99871963, 0.99689581,
0.99689581, 0.99689581, 0.99689581, 0.99415366, 0.99415366,
0.99415366, 0.99415366, 0.98939445, 0.98939445, 0.98939445,
0.98939445, 0.98204346, 0.98204346, 0.98204346, 0.98204346,
0.97146171, 0.97146171, 0.97146171, 0.97146171, 0.9573379 ,
0.9573379 , 0.9573379 , 0.9573379 , 0.93973497, 0.93973497,
0.93973497, 0.93973497, 0.91908294, 0.91908294, 0.91908294,
0.91908294, 0.89603722, 0.89603722, 0.89603722, 0.89603722,
0.87129459, 0.87129459, 0.87129459, 0.87129459, 0.84542383,
0.84542383, 0.84542383, 0.84542383, 0.81892298, 0.81892298,
0.81892298, 0.81892298, 0.79259907, 0.79259907, 0.79259907,
0.79259907, 0.76689349, 0.76689349, 0.76689349, 0.76689349,
0.74195878, 0.74195878, 0.74195878, 0.74195878, 0.71776989,
0.71776989, 0.71776989, 0.71776989, 0.69434792, 0.69434792,
0.69434792, 0.69434792, 0.67176942, 0.67176942, 0.67176942,
0.67176942, 0.65008496, 0.65008496, 0.65008496, 0.65008496,
0.62996773, 0.62996773, 0.62996773, 0.62996773, 0.61070758,
0.61070758, 0.61070758, 0.61070758, 0.59567443, 0.59567443,
0.59567443, 0.59567443, 0.58118471, 0.58118471, 0.58118471,
0.58118471, 0.57312756, 0.57312756, 0.57312756, 0.57312756,
0.56818316, 0.56818316, 0.56818316, 0.56818316, 0.56529871,
0.56529871, 0.56529871, 0.56529871, 0.56537711, 0.56537711,
0.56537711, 0.56537711, 0.56637301, 0.56637301, 0.56637301,
0.56637301, 0.56746355, 0.56746355, 0.56746355, 0.56746355,
0.56750707, 0.56750707, 0.56750707, 0.56750707, 0.56762621,
0.56762621, 0.56762621, 0.56762621, 0.56789882, 0.56789882,
0.56789882, 0.56789882, 0.56806145, 0.56806145, 0.56806145,
0.56806145, 0.56826163, 0.56826163, 0.56826163, 0.56826163,
0.56851406, 0.56851406, 0.56851406, 0.56851406, 0.56877122,
0.56877122, 0.56877122, 0.56877122, 0.56918068, 0.56918068,
0.56918068, 0.56918068, 0.57030245, 0.57030245, 0.57030245,
0.57030245, 0.5745043 , 0.5745043 , 0.5745043 , 0.5745043 ,
0.58979671, 0.58979671, 0.58979671, 0.58979671, 0.63756363,
0.63756363, 0.63756363, 0.63756363, 0.7640859 , 0.7640859 ,
0.7640859 , 0.7640859 , 1.05129673, 1.05129673, 1.05129673,
1.05129673, 1.61395351, 1.61395351, 1.61395351, 1.61395351,
2.56324844, 2.56324844, 2.56324844, 2.56324844, 3.64796108,
3.64796108, 3.64796108, 3.64796108, 4.10212289, 4.10212289,
4.10212289, 4.10212289, 3.88420625, 3.88420625, 3.88420625,
3.88420625, 2.28314086, 2.28314086, 2.28314086, 2.28314086,
1.12772592, 1.12772592, 1.12772592, 1.12772592, 1.00628402,
1.00628402, 1.00628402, 1.00628402, 1.00002417, 1.00002417,
1.00002417, 1.00002417, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([4.79346584e-02, 4.79346584e-02, 4.79346584e-02, 4.79346584e-02,
1.16295186e-01, 1.16295186e-01, 1.16295186e-01, 1.16295186e-01,
2.19249025e-01, 2.19249025e-01, 2.19249025e-01, 2.19249025e-01,
3.98505426e-01, 3.98505426e-01, 3.98505426e-01, 3.98505426e-01,
6.76753261e-01, 6.76753261e-01, 6.76753261e-01, 6.76753261e-01,
1.08029397e+00, 1.08029397e+00, 1.08029397e+00, 1.08029397e+00,
1.62453623e+00, 1.62453623e+00, 1.62453623e+00, 1.62453623e+00,
2.31205472e+00, 2.31205472e+00, 2.31205472e+00, 2.31205472e+00,
3.13205824e+00, 3.13205824e+00, 3.13205824e+00, 3.13205824e+00,
4.06476657e+00, 4.06476657e+00, 4.06476657e+00, 4.06476657e+00,
5.08775132e+00, 5.08775132e+00, 5.08775132e+00, 5.08775132e+00,
6.18246089e+00, 6.18246089e+00, 6.18246089e+00, 6.18246089e+00,
7.33022569e+00, 7.33022569e+00, 7.33022569e+00, 7.33022569e+00,
8.49610187e+00, 8.49610187e+00, 8.49610187e+00, 8.49610187e+00,
9.66738034e+00, 9.66738034e+00, 9.66738034e+00, 9.66738034e+00,
1.08365227e+01, 1.08365227e+01, 1.08365227e+01, 1.08365227e+01,
1.20006085e+01, 1.20006085e+01, 1.20006085e+01, 1.20006085e+01,
1.31582056e+01, 1.31582056e+01, 1.31582056e+01, 1.31582056e+01,
1.43045927e+01, 1.43045927e+01, 1.43045927e+01, 1.43045927e+01,
1.54308433e+01, 1.54308433e+01, 1.54308433e+01, 1.54308433e+01,
1.65188815e+01, 1.65188815e+01, 1.65188815e+01, 1.65188815e+01,
1.75398658e+01, 1.75398658e+01, 1.75398658e+01, 1.75398658e+01,
1.84481157e+01, 1.84481157e+01, 1.84481157e+01, 1.84481157e+01,
1.91900861e+01, 1.91900861e+01, 1.91900861e+01, 1.91900861e+01,
1.97162589e+01, 1.97162589e+01, 1.97162589e+01, 1.97162589e+01,
2.00152679e+01, 2.00152679e+01, 2.00152679e+01, 2.00152679e+01,
2.01312403e+01, 2.01312403e+01, 2.01312403e+01, 2.01312403e+01,
2.01482309e+01, 2.01482309e+01, 2.01482309e+01, 2.01482309e+01,
2.01006098e+01, 2.01006098e+01, 2.01006098e+01, 2.01006098e+01,
2.00417664e+01, 2.00417664e+01, 2.00417664e+01, 2.00417664e+01,
2.00177684e+01, 2.00177684e+01, 2.00177684e+01, 2.00177684e+01,
2.00061893e+01, 2.00061893e+01, 2.00061893e+01, 2.00061893e+01,
1.99964358e+01, 1.99964358e+01, 1.99964358e+01, 1.99964358e+01,
1.99841326e+01, 1.99841326e+01, 1.99841326e+01, 1.99841326e+01,
1.99640722e+01, 1.99640722e+01, 1.99640722e+01, 1.99640722e+01,
1.99380327e+01, 1.99380327e+01, 1.99380327e+01, 1.99380327e+01,
1.99138950e+01, 1.99138950e+01, 1.99138950e+01, 1.99138950e+01,
1.98915983e+01, 1.98915983e+01, 1.98915983e+01, 1.98915983e+01,
1.98706224e+01, 1.98706224e+01, 1.98706224e+01, 1.98706224e+01,
1.98504781e+01, 1.98504781e+01, 1.98504781e+01, 1.98504781e+01,
1.98321531e+01, 1.98321531e+01, 1.98321531e+01, 1.98321531e+01,
1.98164498e+01, 1.98164498e+01, 1.98164498e+01, 1.98164498e+01,
1.98028802e+01, 1.98028802e+01, 1.98028802e+01, 1.98028802e+01,
1.97923327e+01, 1.97923327e+01, 1.97923327e+01, 1.97923327e+01,
1.97838509e+01, 1.97838509e+01, 1.97838509e+01, 1.97838509e+01,
1.97535132e+01, 1.97535132e+01, 1.97535132e+01, 1.97535132e+01,
1.96225421e+01, 1.96225421e+01, 1.96225421e+01, 1.96225421e+01,
1.90212196e+01, 1.90212196e+01, 1.90212196e+01, 1.90212196e+01,
1.65525784e+01, 1.65525784e+01, 1.65525784e+01, 1.65525784e+01,
9.01356040e+00, 9.01356040e+00, 9.01356040e+00, 9.01356040e+00,
7.89629666e-01, 7.89629666e-01, 7.89629666e-01, 7.89629666e-01,
6.47563091e-03, 6.47563091e-03, 6.47563091e-03, 6.47563091e-03,
3.00072068e-06, 3.00072068e-06, 3.00072068e-06, 3.00072068e-06,
4.61483424e-10, 4.61483424e-10, 4.61483424e-10, 4.61483424e-10,
7.14105492e-14, 7.14105492e-14, 7.14105492e-14, 7.14105492e-14,
1.12055754e-17, 1.12055754e-17, 1.12055754e-17, 1.12055754e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.98208251e+02, 9.98208251e+02, 9.98208251e+02, 9.98208251e+02,
9.95657307e+02, 9.95657307e+02, 9.95657307e+02, 9.95657307e+02,
9.91826551e+02, 9.91826551e+02, 9.91826551e+02, 9.91826551e+02,
9.85188507e+02, 9.85188507e+02, 9.85188507e+02, 9.85188507e+02,
9.74962220e+02, 9.74962220e+02, 9.74962220e+02, 9.74962220e+02,
9.60296787e+02, 9.60296787e+02, 9.60296787e+02, 9.60296787e+02,
9.40822905e+02, 9.40822905e+02, 9.40822905e+02, 9.40822905e+02,
9.16712279e+02, 9.16712279e+02, 9.16712279e+02, 9.16712279e+02,
8.88653079e+02, 8.88653079e+02, 8.88653079e+02, 8.88653079e+02,
8.57635270e+02, 8.57635270e+02, 8.57635270e+02, 8.57635270e+02,
8.24683912e+02, 8.24683912e+02, 8.24683912e+02, 8.24683912e+02,
7.90625936e+02, 7.90625936e+02, 7.90625936e+02, 7.90625936e+02,
7.56152074e+02, 7.56152074e+02, 7.56152074e+02, 7.56152074e+02,
7.22323562e+02, 7.22323562e+02, 7.22323562e+02, 7.22323562e+02,
6.89748211e+02, 6.89748211e+02, 6.89748211e+02, 6.89748211e+02,
6.58562261e+02, 6.58562261e+02, 6.58562261e+02, 6.58562261e+02,
6.28705838e+02, 6.28705838e+02, 6.28705838e+02, 6.28705838e+02,
6.00181833e+02, 6.00181833e+02, 6.00181833e+02, 6.00181833e+02,
5.73028492e+02, 5.73028492e+02, 5.73028492e+02, 5.73028492e+02,
5.47394913e+02, 5.47394913e+02, 5.47394913e+02, 5.47394913e+02,
5.23556041e+02, 5.23556041e+02, 5.23556041e+02, 5.23556041e+02,
5.02022645e+02, 5.02022645e+02, 5.02022645e+02, 5.02022645e+02,
4.83490652e+02, 4.83490652e+02, 4.83490652e+02, 4.83490652e+02,
4.68807418e+02, 4.68807418e+02, 4.68807418e+02, 4.68807418e+02,
4.58628006e+02, 4.58628006e+02, 4.58628006e+02, 4.58628006e+02,
4.52917665e+02, 4.52917665e+02, 4.52917665e+02, 4.52917665e+02,
4.50722891e+02, 4.50722891e+02, 4.50722891e+02, 4.50722891e+02,
4.50404840e+02, 4.50404840e+02, 4.50404840e+02, 4.50404840e+02,
4.51305706e+02, 4.51305706e+02, 4.51305706e+02, 4.51305706e+02,
4.52417827e+02, 4.52417827e+02, 4.52417827e+02, 4.52417827e+02,
4.52869771e+02, 4.52869771e+02, 4.52869771e+02, 4.52869771e+02,
4.53098143e+02, 4.53098143e+02, 4.53098143e+02, 4.53098143e+02,
4.53288109e+02, 4.53288109e+02, 4.53288109e+02, 4.53288109e+02,
4.53522454e+02, 4.53522454e+02, 4.53522454e+02, 4.53522454e+02,
4.53898721e+02, 4.53898721e+02, 4.53898721e+02, 4.53898721e+02,
4.54383577e+02, 4.54383577e+02, 4.54383577e+02, 4.54383577e+02,
4.54840633e+02, 4.54840633e+02, 4.54840633e+02, 4.54840633e+02,
4.55282568e+02, 4.55282568e+02, 4.55282568e+02, 4.55282568e+02,
4.55699208e+02, 4.55699208e+02, 4.55699208e+02, 4.55699208e+02,
4.56064730e+02, 4.56064730e+02, 4.56064730e+02, 4.56064730e+02,
4.56394118e+02, 4.56394118e+02, 4.56394118e+02, 4.56394118e+02,
4.56721490e+02, 4.56721490e+02, 4.56721490e+02, 4.56721490e+02,
4.57041842e+02, 4.57041842e+02, 4.57041842e+02, 4.57041842e+02,
4.57452339e+02, 4.57452339e+02, 4.57452339e+02, 4.57452339e+02,
4.58033692e+02, 4.58033692e+02, 4.58033692e+02, 4.58033692e+02,
4.57888048e+02, 4.57888048e+02, 4.57888048e+02, 4.57888048e+02,
4.52727602e+02, 4.52727602e+02, 4.52727602e+02, 4.52727602e+02,
4.22759926e+02, 4.22759926e+02, 4.22759926e+02, 4.22759926e+02,
3.07068930e+02, 3.07068930e+02, 3.07068930e+02, 3.07068930e+02,
8.77696574e+01, 8.77696574e+01, 8.77696574e+01, 8.77696574e+01,
2.68785775e+00, 2.68785775e+00, 2.68785775e+00, 2.68785775e+00,
1.34301951e-02, 1.34301951e-02, 1.34301951e-02, 1.34301951e-02,
1.00003538e-02, 1.00003538e-02, 1.00003538e-02, 1.00003538e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99779253, 0.99779253, 0.99779253, 0.99779253, 0.99492087,
0.99492087, 0.99492087, 0.99492087, 0.99096776, 0.99096776,
0.99096776, 0.99096776, 0.98445746, 0.98445746, 0.98445746,
0.98445746, 0.97502252, 0.97502252, 0.97502252, 0.97502252,
0.9621987 , 0.9621987 , 0.9621987 , 0.9621987 , 0.94596677,
0.94596677, 0.94596677, 0.94596677, 0.92664513, 0.92664513,
0.92664513, 0.92664513, 0.90481789, 0.90481789, 0.90481789,
0.90481789, 0.88115819, 0.88115819, 0.88115819, 0.88115819,
0.85626688, 0.85626688, 0.85626688, 0.85626688, 0.83058143,
0.83058143, 0.83058143, 0.83058143, 0.80476657, 0.80476657,
0.80476657, 0.80476657, 0.77943364, 0.77943364, 0.77943364,
0.77943364, 0.75476663, 0.75476663, 0.75476663, 0.75476663,
0.73082127, 0.73082127, 0.73082127, 0.73082127, 0.70758612,
0.70758612, 0.70758612, 0.70758612, 0.6850841 , 0.6850841 ,
0.6850841 , 0.6850841 , 0.66342869, 0.66342869, 0.66342869,
0.66342869, 0.6426441 , 0.6426441 , 0.6426441 , 0.6426441 ,
0.62359474, 0.62359474, 0.62359474, 0.62359474, 0.60530901,
0.60530901, 0.60530901, 0.60530901, 0.59154744, 0.59154744,
0.59154744, 0.59154744, 0.57849861, 0.57849861, 0.57849861,
0.57849861, 0.57129468, 0.57129468, 0.57129468, 0.57129468,
0.56764504, 0.56764504, 0.56764504, 0.56764504, 0.56537656,
0.56537656, 0.56537656, 0.56537656, 0.56541728, 0.56541728,
0.56541728, 0.56541728, 0.566573 , 0.566573 , 0.566573 ,
0.566573 , 0.56761976, 0.56761976, 0.56761976, 0.56761976,
0.56766123, 0.56766123, 0.56766123, 0.56766123, 0.56769891,
0.56769891, 0.56769891, 0.56769891, 0.56789839, 0.56789839,
0.56789839, 0.56789839, 0.56815101, 0.56815101, 0.56815101,
0.56815101, 0.56843359, 0.56843359, 0.56843359, 0.56843359,
0.56870197, 0.56870197, 0.56870197, 0.56870197, 0.56893189,
0.56893189, 0.56893189, 0.56893189, 0.56925247, 0.56925247,
0.56925247, 0.56925247, 0.57003928, 0.57003928, 0.57003928,
0.57003928, 0.57286264, 0.57286264, 0.57286264, 0.57286264,
0.58324543, 0.58324543, 0.58324543, 0.58324543, 0.61675826,
0.61675826, 0.61675826, 0.61675826, 0.70906129, 0.70906129,
0.70906129, 0.70906129, 0.92724037, 0.92724037, 0.92724037,
0.92724037, 1.37323589, 1.37323589, 1.37323589, 1.37323589,
2.1635062 , 2.1635062 , 2.1635062 , 2.1635062 , 3.29148444,
3.29148444, 3.29148444, 3.29148444, 4.0332475 , 4.0332475 ,
4.0332475 , 4.0332475 , 4.12979469, 4.12979469, 4.12979469,
4.12979469, 3.20980045, 3.20980045, 3.20980045, 3.20980045,
1.4244878 , 1.4244878 , 1.4244878 , 1.4244878 , 1.02817994,
1.02817994, 1.02817994, 1.02817994, 1.00058696, 1.00058696,
1.00058696, 1.00058696, 1.00000021, 1.00000021, 1.00000021,
1.00000021, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([8.26770714e-02, 8.26770714e-02, 8.26770714e-02, 8.26770714e-02,
1.90444567e-01, 1.90444567e-01, 1.90444567e-01, 1.90444567e-01,
3.39156393e-01, 3.39156393e-01, 3.39156393e-01, 3.39156393e-01,
5.85196350e-01, 5.85196350e-01, 5.85196350e-01, 5.85196350e-01,
9.44102208e-01, 9.44102208e-01, 9.44102208e-01, 9.44102208e-01,
1.43650190e+00, 1.43650190e+00, 1.43650190e+00, 1.43650190e+00,
2.06747296e+00, 2.06747296e+00, 2.06747296e+00, 2.06747296e+00,
2.83007409e+00, 2.83007409e+00, 2.83007409e+00, 2.83007409e+00,
3.70711102e+00, 3.70711102e+00, 3.70711102e+00, 3.70711102e+00,
4.67711511e+00, 4.67711511e+00, 4.67711511e+00, 4.67711511e+00,
5.72031049e+00, 5.72031049e+00, 5.72031049e+00, 5.72031049e+00,
6.82230541e+00, 6.82230541e+00, 6.82230541e+00, 6.82230541e+00,
7.95228204e+00, 7.95228204e+00, 7.95228204e+00, 7.95228204e+00,
9.09250910e+00, 9.09250910e+00, 9.09250910e+00, 9.09250910e+00,
1.02322411e+01, 1.02322411e+01, 1.02322411e+01, 1.02322411e+01,
1.13687918e+01, 1.13687918e+01, 1.13687918e+01, 1.13687918e+01,
1.25004504e+01, 1.25004504e+01, 1.25004504e+01, 1.25004504e+01,
1.36248432e+01, 1.36248432e+01, 1.36248432e+01, 1.36248432e+01,
1.47363425e+01, 1.47363425e+01, 1.47363425e+01, 1.47363425e+01,
1.58243684e+01, 1.58243684e+01, 1.58243684e+01, 1.58243684e+01,
1.68684615e+01, 1.68684615e+01, 1.68684615e+01, 1.68684615e+01,
1.78370966e+01, 1.78370966e+01, 1.78370966e+01, 1.78370966e+01,
1.86828484e+01, 1.86828484e+01, 1.86828484e+01, 1.86828484e+01,
1.93540793e+01, 1.93540793e+01, 1.93540793e+01, 1.93540793e+01,
1.98100759e+01, 1.98100759e+01, 1.98100759e+01, 1.98100759e+01,
2.00526668e+01, 2.00526668e+01, 2.00526668e+01, 2.00526668e+01,
2.01358422e+01, 2.01358422e+01, 2.01358422e+01, 2.01358422e+01,
2.01409960e+01, 2.01409960e+01, 2.01409960e+01, 2.01409960e+01,
2.00831703e+01, 2.00831703e+01, 2.00831703e+01, 2.00831703e+01,
2.00347786e+01, 2.00347786e+01, 2.00347786e+01, 2.00347786e+01,
2.00146195e+01, 2.00146195e+01, 2.00146195e+01, 2.00146195e+01,
2.00034460e+01, 2.00034460e+01, 2.00034460e+01, 2.00034460e+01,
1.99933175e+01, 1.99933175e+01, 1.99933175e+01, 1.99933175e+01,
1.99796992e+01, 1.99796992e+01, 1.99796992e+01, 1.99796992e+01,
1.99579053e+01, 1.99579053e+01, 1.99579053e+01, 1.99579053e+01,
1.99319311e+01, 1.99319311e+01, 1.99319311e+01, 1.99319311e+01,
1.99078330e+01, 1.99078330e+01, 1.99078330e+01, 1.99078330e+01,
1.98854258e+01, 1.98854258e+01, 1.98854258e+01, 1.98854258e+01,
1.98650641e+01, 1.98650641e+01, 1.98650641e+01, 1.98650641e+01,
1.98461462e+01, 1.98461462e+01, 1.98461462e+01, 1.98461462e+01,
1.98282545e+01, 1.98282545e+01, 1.98282545e+01, 1.98282545e+01,
1.98124498e+01, 1.98124498e+01, 1.98124498e+01, 1.98124498e+01,
1.97991749e+01, 1.97991749e+01, 1.97991749e+01, 1.97991749e+01,
1.97873673e+01, 1.97873673e+01, 1.97873673e+01, 1.97873673e+01,
1.97808776e+01, 1.97808776e+01, 1.97808776e+01, 1.97808776e+01,
1.97645088e+01, 1.97645088e+01, 1.97645088e+01, 1.97645088e+01,
1.96988900e+01, 1.96988900e+01, 1.96988900e+01, 1.96988900e+01,
1.93964557e+01, 1.93964557e+01, 1.93964557e+01, 1.93964557e+01,
1.80772383e+01, 1.80772383e+01, 1.80772383e+01, 1.80772383e+01,
1.32758210e+01, 1.32758210e+01, 1.32758210e+01, 1.32758210e+01,
3.37432001e+00, 3.37432001e+00, 3.37432001e+00, 3.37432001e+00,
8.08064010e-02, 8.08064010e-02, 8.08064010e-02, 8.08064010e-02,
1.40942456e-04, 1.40942456e-04, 1.40942456e-04, 1.40942456e-04,
2.50612552e-08, 2.50612552e-08, 2.50612552e-08, 2.50612552e-08,
4.11745361e-12, 4.11745361e-12, 4.11745361e-12, 4.11745361e-12,
6.55937311e-16, 6.55937311e-16, 6.55937311e-16, 6.55937311e-16,
9.42282893e-20, 9.42282893e-20, 9.42282893e-20, 9.42282893e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.96911775e+02, 9.96911775e+02, 9.96911775e+02, 9.96911775e+02,
9.92897461e+02, 9.92897461e+02, 9.92897461e+02, 9.92897461e+02,
9.87381492e+02, 9.87381492e+02, 9.87381492e+02, 9.87381492e+02,
9.78316630e+02, 9.78316630e+02, 9.78316630e+02, 9.78316630e+02,
9.65224072e+02, 9.65224072e+02, 9.65224072e+02, 9.65224072e+02,
9.47511089e+02, 9.47511089e+02, 9.47511089e+02, 9.47511089e+02,
9.25225984e+02, 9.25225984e+02, 9.25225984e+02, 9.25225984e+02,
8.98896472e+02, 8.98896472e+02, 8.98896472e+02, 8.98896472e+02,
8.69413243e+02, 8.69413243e+02, 8.69413243e+02, 8.69413243e+02,
8.37771694e+02, 8.37771694e+02, 8.37771694e+02, 8.37771694e+02,
8.04845422e+02, 8.04845422e+02, 8.04845422e+02, 8.04845422e+02,
7.71265034e+02, 7.71265034e+02, 7.71265034e+02, 7.71265034e+02,
7.37891694e+02, 7.37891694e+02, 7.37891694e+02, 7.37891694e+02,
7.05581087e+02, 7.05581087e+02, 7.05581087e+02, 7.05581087e+02,
6.74524283e+02, 6.74524283e+02, 6.74524283e+02, 6.74524283e+02,
6.44761697e+02, 6.44761697e+02, 6.44761697e+02, 6.44761697e+02,
6.16250581e+02, 6.16250581e+02, 6.16250581e+02, 6.16250581e+02,
5.89001288e+02, 5.89001288e+02, 5.89001288e+02, 5.89001288e+02,
5.63080642e+02, 5.63080642e+02, 5.63080642e+02, 5.63080642e+02,
5.38671716e+02, 5.38671716e+02, 5.38671716e+02, 5.38671716e+02,
5.16092282e+02, 5.16092282e+02, 5.16092282e+02, 5.16092282e+02,
4.95896244e+02, 4.95896244e+02, 4.95896244e+02, 4.95896244e+02,
4.78802137e+02, 4.78802137e+02, 4.78802137e+02, 4.78802137e+02,
4.65608882e+02, 4.65608882e+02, 4.65608882e+02, 4.65608882e+02,
4.56832207e+02, 4.56832207e+02, 4.56832207e+02, 4.56832207e+02,
4.52212128e+02, 4.52212128e+02, 4.52212128e+02, 4.52212128e+02,
4.50635329e+02, 4.50635329e+02, 4.50635329e+02, 4.50635329e+02,
4.50539724e+02, 4.50539724e+02, 4.50539724e+02, 4.50539724e+02,
4.51634371e+02, 4.51634371e+02, 4.51634371e+02, 4.51634371e+02,
4.52552736e+02, 4.52552736e+02, 4.52552736e+02, 4.52552736e+02,
4.52930057e+02, 4.52930057e+02, 4.52930057e+02, 4.52930057e+02,
4.53144052e+02, 4.53144052e+02, 4.53144052e+02, 4.53144052e+02,
4.53341730e+02, 4.53341730e+02, 4.53341730e+02, 4.53341730e+02,
4.53605101e+02, 4.53605101e+02, 4.53605101e+02, 4.53605101e+02,
4.54020478e+02, 4.54020478e+02, 4.54020478e+02, 4.54020478e+02,
4.54510123e+02, 4.54510123e+02, 4.54510123e+02, 4.54510123e+02,
4.54955970e+02, 4.54955970e+02, 4.54955970e+02, 4.54955970e+02,
4.55384422e+02, 4.55384422e+02, 4.55384422e+02, 4.55384422e+02,
4.55795165e+02, 4.55795165e+02, 4.55795165e+02, 4.55795165e+02,
4.56163141e+02, 4.56163141e+02, 4.56163141e+02, 4.56163141e+02,
4.56482181e+02, 4.56482181e+02, 4.56482181e+02, 4.56482181e+02,
4.56781749e+02, 4.56781749e+02, 4.56781749e+02, 4.56781749e+02,
4.57078389e+02, 4.57078389e+02, 4.57078389e+02, 4.57078389e+02,
4.57417386e+02, 4.57417386e+02, 4.57417386e+02, 4.57417386e+02,
4.57936162e+02, 4.57936162e+02, 4.57936162e+02, 4.57936162e+02,
4.58275885e+02, 4.58275885e+02, 4.58275885e+02, 4.58275885e+02,
4.56396881e+02, 4.56396881e+02, 4.56396881e+02, 4.56396881e+02,
4.42008574e+02, 4.42008574e+02, 4.42008574e+02, 4.42008574e+02,
3.76142236e+02, 3.76142236e+02, 3.76142236e+02, 3.76142236e+02,
1.87877799e+02, 1.87877799e+02, 1.87877799e+02, 1.87877799e+02,
1.93878950e+01, 1.93878950e+01, 1.93878950e+01, 1.93878950e+01,
1.28441959e-01, 1.28441959e-01, 1.28441959e-01, 1.28441959e-01,
1.00206317e-02, 1.00206317e-02, 1.00206317e-02, 1.00206317e-02,
1.00000030e-02, 1.00000030e-02, 1.00000030e-02, 1.00000030e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99636432, 0.99636432, 0.99636432, 0.99636432, 0.99205876,
0.99205876, 0.99205876, 0.99205876, 0.98664933, 0.98664933,
0.98664933, 0.98664933, 0.97815371, 0.97815371, 0.97815371,
0.97815371, 0.9665772 , 0.9665772 , 0.9665772 , 0.9665772 ,
0.95164637, 0.95164637, 0.95164637, 0.95164637, 0.93362252,
0.93362252, 0.93362252, 0.93362252, 0.91299712, 0.91299712,
0.91299712, 0.91299712, 0.89041028, 0.89041028, 0.89041028,
0.89041028, 0.86647311, 0.86647311, 0.86647311, 0.86647311,
0.84164558, 0.84164558, 0.84164558, 0.84164558, 0.81642336,
0.81642336, 0.81642336, 0.81642336, 0.79148604, 0.79148604,
0.79148604, 0.79148604, 0.76710834, 0.76710834, 0.76710834,
0.76710834, 0.7434205 , 0.7434205 , 0.7434205 , 0.7434205 ,
0.72039324, 0.72039324, 0.72039324, 0.72039324, 0.69804488,
0.69804488, 0.69804488, 0.69804488, 0.67640665, 0.67640665,
0.67640665, 0.67640665, 0.65563302, 0.65563302, 0.65563302,
0.65563302, 0.63570432, 0.63570432, 0.63570432, 0.63570432,
0.61770755, 0.61770755, 0.61770755, 0.61770755, 0.60038962,
0.60038962, 0.60038962, 0.60038962, 0.58782557, 0.58782557,
0.58782557, 0.58782557, 0.57623676, 0.57623676, 0.57623676,
0.57623676, 0.56979185, 0.56979185, 0.56979185, 0.56979185,
0.56720324, 0.56720324, 0.56720324, 0.56720324, 0.56553241,
0.56553241, 0.56553241, 0.56553241, 0.56556965, 0.56556965,
0.56556965, 0.56556965, 0.56672103, 0.56672103, 0.56672103,
0.56672103, 0.56770851, 0.56770851, 0.56770851, 0.56770851,
0.56779669, 0.56779669, 0.56779669, 0.56779669, 0.56780547,
0.56780547, 0.56780547, 0.56780547, 0.56792996, 0.56792996,
0.56792996, 0.56792996, 0.56821566, 0.56821566, 0.56821566,
0.56821566, 0.5685916 , 0.5685916 , 0.5685916 , 0.5685916 ,
0.56888519, 0.56888519, 0.56888519, 0.56888519, 0.56910119,
0.56910119, 0.56910119, 0.56910119, 0.56936231, 0.56936231,
0.56936231, 0.56936231, 0.56991804, 0.56991804, 0.56991804,
0.56991804, 0.57182047, 0.57182047, 0.57182047, 0.57182047,
0.57885305, 0.57885305, 0.57885305, 0.57885305, 0.60219878,
0.60219878, 0.60219878, 0.60219878, 0.66890255, 0.66890255,
0.66890255, 0.66890255, 0.83282931, 0.83282931, 0.83282931,
0.83282931, 1.18191186, 1.18191186, 1.18191186, 1.18191186,
1.82871125, 1.82871125, 1.82871125, 1.82871125, 2.86090807,
2.86090807, 2.86090807, 2.86090807, 3.85054369, 3.85054369,
3.85054369, 3.85054369, 4.19989541, 4.19989541, 4.19989541,
4.19989541, 3.86486856, 3.86486856, 3.86486856, 3.86486856,
2.13052935, 2.13052935, 2.13052935, 2.13052935, 1.10421234,
1.10421234, 1.10421234, 1.10421234, 1.0046868 , 1.0046868 ,
1.0046868 , 1.0046868 , 1.00001224, 1.00001224, 1.00001224,
1.00001224, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.36253533e-01, 1.36253533e-01, 1.36253533e-01, 1.36253533e-01,
2.98133139e-01, 2.98133139e-01, 2.98133139e-01, 2.98133139e-01,
5.02180164e-01, 5.02180164e-01, 5.02180164e-01, 5.02180164e-01,
8.24685029e-01, 8.24685029e-01, 8.24685029e-01, 8.24685029e-01,
1.26777639e+00, 1.26777639e+00, 1.26777639e+00, 1.26777639e+00,
1.84570316e+00, 1.84570316e+00, 1.84570316e+00, 1.84570316e+00,
2.55320788e+00, 2.55320788e+00, 2.55320788e+00, 2.55320788e+00,
3.37646407e+00, 3.37646407e+00, 3.37646407e+00, 3.37646407e+00,
4.29528509e+00, 4.29528509e+00, 4.29528509e+00, 4.29528509e+00,
5.28957743e+00, 5.28957743e+00, 5.28957743e+00, 5.28957743e+00,
6.34426536e+00, 6.34426536e+00, 6.34426536e+00, 6.34426536e+00,
7.43855306e+00, 7.43855306e+00, 7.43855306e+00, 7.43855306e+00,
8.54650989e+00, 8.54650989e+00, 8.54650989e+00, 8.54650989e+00,
9.65778684e+00, 9.65778684e+00, 9.65778684e+00, 9.65778684e+00,
1.07675433e+01, 1.07675433e+01, 1.07675433e+01, 1.07675433e+01,
1.18732730e+01, 1.18732730e+01, 1.18732730e+01, 1.18732730e+01,
1.29739395e+01, 1.29739395e+01, 1.29739395e+01, 1.29739395e+01,
1.40664784e+01, 1.40664784e+01, 1.40664784e+01, 1.40664784e+01,
1.51440272e+01, 1.51440272e+01, 1.51440272e+01, 1.51440272e+01,
1.61942747e+01, 1.61942747e+01, 1.61942747e+01, 1.61942747e+01,
1.71943313e+01, 1.71943313e+01, 1.71943313e+01, 1.71943313e+01,
1.81102285e+01, 1.81102285e+01, 1.81102285e+01, 1.81102285e+01,
1.88935753e+01, 1.88935753e+01, 1.88935753e+01, 1.88935753e+01,
1.94958477e+01, 1.94958477e+01, 1.94958477e+01, 1.94958477e+01,
1.98864185e+01, 1.98864185e+01, 1.98864185e+01, 1.98864185e+01,
2.00798147e+01, 2.00798147e+01, 2.00798147e+01, 2.00798147e+01,
2.01365297e+01, 2.01365297e+01, 2.01365297e+01, 2.01365297e+01,
2.01309132e+01, 2.01309132e+01, 2.01309132e+01, 2.01309132e+01,
2.00684530e+01, 2.00684530e+01, 2.00684530e+01, 2.00684530e+01,
2.00289832e+01, 2.00289832e+01, 2.00289832e+01, 2.00289832e+01,
2.00117538e+01, 2.00117538e+01, 2.00117538e+01, 2.00117538e+01,
2.00007059e+01, 2.00007059e+01, 2.00007059e+01, 2.00007059e+01,
1.99899662e+01, 1.99899662e+01, 1.99899662e+01, 1.99899662e+01,
1.99747375e+01, 1.99747375e+01, 1.99747375e+01, 1.99747375e+01,
1.99513167e+01, 1.99513167e+01, 1.99513167e+01, 1.99513167e+01,
1.99258024e+01, 1.99258024e+01, 1.99258024e+01, 1.99258024e+01,
1.99020913e+01, 1.99020913e+01, 1.99020913e+01, 1.99020913e+01,
1.98796675e+01, 1.98796675e+01, 1.98796675e+01, 1.98796675e+01,
1.98594450e+01, 1.98594450e+01, 1.98594450e+01, 1.98594450e+01,
1.98414283e+01, 1.98414283e+01, 1.98414283e+01, 1.98414283e+01,
1.98245672e+01, 1.98245672e+01, 1.98245672e+01, 1.98245672e+01,
1.98089852e+01, 1.98089852e+01, 1.98089852e+01, 1.98089852e+01,
1.97956031e+01, 1.97956031e+01, 1.97956031e+01, 1.97956031e+01,
1.97837093e+01, 1.97837093e+01, 1.97837093e+01, 1.97837093e+01,
1.97755943e+01, 1.97755943e+01, 1.97755943e+01, 1.97755943e+01,
1.97672969e+01, 1.97672969e+01, 1.97672969e+01, 1.97672969e+01,
1.97336516e+01, 1.97336516e+01, 1.97336516e+01, 1.97336516e+01,
1.95824012e+01, 1.95824012e+01, 1.95824012e+01, 1.95824012e+01,
1.89016608e+01, 1.89016608e+01, 1.89016608e+01, 1.89016608e+01,
1.61684252e+01, 1.61684252e+01, 1.61684252e+01, 1.61684252e+01,
8.15698720e+00, 8.15698720e+00, 8.15698720e+00, 8.15698720e+00,
5.95654577e-01, 5.95654577e-01, 5.95654577e-01, 5.95654577e-01,
3.94968248e-03, 3.94968248e-03, 3.94968248e-03, 3.94968248e-03,
1.48333272e-06, 1.48333272e-06, 1.48333272e-06, 1.48333272e-06,
2.26392355e-10, 2.26392355e-10, 2.26392355e-10, 2.26392355e-10,
3.54863604e-14, 3.54863604e-14, 3.54863604e-14, 3.54863604e-14,
5.67765305e-18, 5.67765305e-18, 5.67765305e-18, 5.67765305e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.94915923e+02, 9.94915923e+02, 9.94915923e+02, 9.94915923e+02,
9.88901826e+02, 9.88901826e+02, 9.88901826e+02, 9.88901826e+02,
9.81366024e+02, 9.81366024e+02, 9.81366024e+02, 9.81366024e+02,
9.69562839e+02, 9.69562839e+02, 9.69562839e+02, 9.69562839e+02,
9.53547612e+02, 9.53547612e+02, 9.53547612e+02, 9.53547612e+02,
9.33005104e+02, 9.33005104e+02, 9.33005104e+02, 9.33005104e+02,
9.08377668e+02, 9.08377668e+02, 9.08377668e+02, 9.08377668e+02,
8.80425926e+02, 8.80425926e+02, 8.80425926e+02, 8.80425926e+02,
8.50101783e+02, 8.50101783e+02, 8.50101783e+02, 8.50101783e+02,
8.18296299e+02, 8.18296299e+02, 8.18296299e+02, 8.18296299e+02,
7.85675395e+02, 7.85675395e+02, 7.85675395e+02, 7.85675395e+02,
7.52902859e+02, 7.52902859e+02, 7.52902859e+02, 7.52902859e+02,
7.20897155e+02, 7.20897155e+02, 7.20897155e+02, 7.20897155e+02,
6.90007959e+02, 6.90007959e+02, 6.90007959e+02, 6.90007959e+02,
6.60368829e+02, 6.60368829e+02, 6.60368829e+02, 6.60368829e+02,
6.31916337e+02, 6.31916337e+02, 6.31916337e+02, 6.31916337e+02,
6.04645783e+02, 6.04645783e+02, 6.04645783e+02, 6.04645783e+02,
5.78584743e+02, 5.78584743e+02, 5.78584743e+02, 5.78584743e+02,
5.53823640e+02, 5.53823640e+02, 5.53823640e+02, 5.53823640e+02,
5.30581052e+02, 5.30581052e+02, 5.30581052e+02, 5.30581052e+02,
5.09216724e+02, 5.09216724e+02, 5.09216724e+02, 5.09216724e+02,
4.90322663e+02, 4.90322663e+02, 4.90322663e+02, 4.90322663e+02,
4.74628094e+02, 4.74628094e+02, 4.74628094e+02, 4.74628094e+02,
4.62859662e+02, 4.62859662e+02, 4.62859662e+02, 4.62859662e+02,
4.55372213e+02, 4.55372213e+02, 4.55372213e+02, 4.55372213e+02,
4.51700059e+02, 4.51700059e+02, 4.51700059e+02, 4.51700059e+02,
4.50624155e+02, 4.50624155e+02, 4.50624155e+02, 4.50624155e+02,
4.50729577e+02, 4.50729577e+02, 4.50729577e+02, 4.50729577e+02,
4.51910877e+02, 4.51910877e+02, 4.51910877e+02, 4.51910877e+02,
4.52662577e+02, 4.52662577e+02, 4.52662577e+02, 4.52662577e+02,
4.52987231e+02, 4.52987231e+02, 4.52987231e+02, 4.52987231e+02,
4.53194374e+02, 4.53194374e+02, 4.53194374e+02, 4.53194374e+02,
4.53400795e+02, 4.53400795e+02, 4.53400795e+02, 4.53400795e+02,
4.53694238e+02, 4.53694238e+02, 4.53694238e+02, 4.53694238e+02,
4.54143778e+02, 4.54143778e+02, 4.54143778e+02, 4.54143778e+02,
4.54633274e+02, 4.54633274e+02, 4.54633274e+02, 4.54633274e+02,
4.55075065e+02, 4.55075065e+02, 4.55075065e+02, 4.55075065e+02,
4.55489841e+02, 4.55489841e+02, 4.55489841e+02, 4.55489841e+02,
4.55884753e+02, 4.55884753e+02, 4.55884753e+02, 4.55884753e+02,
4.56250604e+02, 4.56250604e+02, 4.56250604e+02, 4.56250604e+02,
4.56569475e+02, 4.56569475e+02, 4.56569475e+02, 4.56569475e+02,
4.56850195e+02, 4.56850195e+02, 4.56850195e+02, 4.56850195e+02,
4.57127711e+02, 4.57127711e+02, 4.57127711e+02, 4.57127711e+02,
4.57412507e+02, 4.57412507e+02, 4.57412507e+02, 4.57412507e+02,
4.57820992e+02, 4.57820992e+02, 4.57820992e+02, 4.57820992e+02,
4.58356923e+02, 4.58356923e+02, 4.58356923e+02, 4.58356923e+02,
4.57913485e+02, 4.57913485e+02, 4.57913485e+02, 4.57913485e+02,
4.51520684e+02, 4.51520684e+02, 4.51520684e+02, 4.51520684e+02,
4.16998340e+02, 4.16998340e+02, 4.16998340e+02, 4.16998340e+02,
2.90460159e+02, 2.90460159e+02, 2.90460159e+02, 2.90460159e+02,
7.32958303e+01, 7.32958303e+01, 7.32958303e+01, 7.32958303e+01,
1.83484411e+00, 1.83484411e+00, 1.83484411e+00, 1.83484411e+00,
1.17220052e-02, 1.17220052e-02, 1.17220052e-02, 1.17220052e-02,
1.00001751e-02, 1.00001751e-02, 1.00001751e-02, 1.00001751e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99426946, 0.99426946, 0.99426946, 0.99426946, 0.98811149,
0.98811149, 0.98811149, 0.98811149, 0.98107232, 0.98107232,
0.98107232, 0.98107232, 0.97045921, 0.97045921, 0.97045921,
0.97045921, 0.95682737, 0.95682737, 0.95682737, 0.95682737,
0.94004521, 0.94004521, 0.94004521, 0.94004521, 0.92060887,
0.92060887, 0.92060887, 0.92060887, 0.89908557, 0.89908557,
0.89908557, 0.89908557, 0.87609083, 0.87609083, 0.87609083,
0.87609083, 0.85212027, 0.85212027, 0.85212027, 0.85212027,
0.82756445, 0.82756445, 0.82756445, 0.82756445, 0.80306007,
0.80306007, 0.80306007, 0.80306007, 0.77900808, 0.77900808,
0.77900808, 0.77900808, 0.75557607, 0.75557607, 0.75557607,
0.75557607, 0.73277632, 0.73277632, 0.73277632, 0.73277632,
0.71060835, 0.71060835, 0.71060835, 0.71060835, 0.68909145,
0.68909145, 0.68909145, 0.68909145, 0.66826654, 0.66826654,
0.66826654, 0.66826654, 0.64834169, 0.64834169, 0.64834169,
0.64834169, 0.62923142, 0.62923142, 0.62923142, 0.62923142,
0.61227339, 0.61227339, 0.61227339, 0.61227339, 0.5959292 ,
0.5959292 , 0.5959292 , 0.5959292 , 0.58448008, 0.58448008,
0.58448008, 0.58448008, 0.57434928, 0.57434928, 0.57434928,
0.57434928, 0.56859881, 0.56859881, 0.56859881, 0.56859881,
0.56684346, 0.56684346, 0.56684346, 0.56684346, 0.56569203,
0.56569203, 0.56569203, 0.56569203, 0.56583937, 0.56583937,
0.56583937, 0.56583937, 0.56683174, 0.56683174, 0.56683174,
0.56683174, 0.56774694, 0.56774694, 0.56774694, 0.56774694,
0.56791077, 0.56791077, 0.56791077, 0.56791077, 0.56792256,
0.56792256, 0.56792256, 0.56792256, 0.56800423, 0.56800423,
0.56800423, 0.56800423, 0.56828226, 0.56828226, 0.56828226,
0.56828226, 0.56872634, 0.56872634, 0.56872634, 0.56872634,
0.5690527 , 0.5690527 , 0.5690527 , 0.5690527 , 0.56926962,
0.56926962, 0.56926962, 0.56926962, 0.56949685, 0.56949685,
0.56949685, 0.56949685, 0.569897 , 0.569897 , 0.569897 ,
0.569897 , 0.57117768, 0.57117768, 0.57117768, 0.57117768,
0.57592859, 0.57592859, 0.57592859, 0.57592859, 0.59209704,
0.59209704, 0.59209704, 0.59209704, 0.63988261, 0.63988261,
0.63988261, 0.63988261, 0.76179894, 0.76179894, 0.76179894,
0.76179894, 1.03182564, 1.03182564, 1.03182564, 1.03182564,
1.55348275, 1.55348275, 1.55348275, 1.55348275, 2.43068895,
2.43068895, 2.43068895, 2.43068895, 3.55229101, 3.55229101,
3.55229101, 3.55229101, 4.16458528, 4.16458528, 4.16458528,
4.16458528, 4.1800089 , 4.1800089 , 4.1800089 , 4.1800089 ,
3.07676045, 3.07676045, 3.07676045, 3.07676045, 1.34520374,
1.34520374, 1.34520374, 1.34520374, 1.02204848, 1.02204848,
1.02204848, 1.02204848, 1.00037232, 1.00037232, 1.00037232,
1.00037232, 1.00000011, 1.00000011, 1.00000011, 1.00000011,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.14957957e-01, 2.14957957e-01, 2.14957957e-01, 2.14957957e-01,
4.47108627e-01, 4.47108627e-01, 4.47108627e-01, 4.47108627e-01,
7.13561081e-01, 7.13561081e-01, 7.13561081e-01, 7.13561081e-01,
1.11872396e+00, 1.11872396e+00, 1.11872396e+00, 1.11872396e+00,
1.64431395e+00, 1.64431395e+00, 1.64431395e+00, 1.64431395e+00,
2.29983169e+00, 2.29983169e+00, 2.29983169e+00, 2.29983169e+00,
3.07089753e+00, 3.07089753e+00, 3.07089753e+00, 3.07089753e+00,
3.94015044e+00, 3.94015044e+00, 3.94015044e+00, 3.94015044e+00,
4.88739659e+00, 4.88739659e+00, 4.88739659e+00, 4.88739659e+00,
5.89618557e+00, 5.89618557e+00, 5.89618557e+00, 5.89618557e+00,
6.95255343e+00, 6.95255343e+00, 6.95255343e+00, 6.95255343e+00,
8.02806459e+00, 8.02806459e+00, 8.02806459e+00, 8.02806459e+00,
9.11164658e+00, 9.11164658e+00, 9.11164658e+00, 9.11164658e+00,
1.01949310e+01, 1.01949310e+01, 1.01949310e+01, 1.01949310e+01,
1.12753220e+01, 1.12753220e+01, 1.12753220e+01, 1.12753220e+01,
1.23519886e+01, 1.23519886e+01, 1.23519886e+01, 1.23519886e+01,
1.34230468e+01, 1.34230468e+01, 1.34230468e+01, 1.34230468e+01,
1.44847959e+01, 1.44847959e+01, 1.44847959e+01, 1.44847959e+01,
1.55291038e+01, 1.55291038e+01, 1.55291038e+01, 1.55291038e+01,
1.65418026e+01, 1.65418026e+01, 1.65418026e+01, 1.65418026e+01,
1.74975626e+01, 1.74975626e+01, 1.74975626e+01, 1.74975626e+01,
1.83602647e+01, 1.83602647e+01, 1.83602647e+01, 1.83602647e+01,
1.90815134e+01, 1.90815134e+01, 1.90815134e+01, 1.90815134e+01,
1.96172465e+01, 1.96172465e+01, 1.96172465e+01, 1.96172465e+01,
1.99474835e+01, 1.99474835e+01, 1.99474835e+01, 1.99474835e+01,
2.00981416e+01, 2.00981416e+01, 2.00981416e+01, 2.00981416e+01,
2.01352473e+01, 2.01352473e+01, 2.01352473e+01, 2.01352473e+01,
2.01181972e+01, 2.01181972e+01, 2.01181972e+01, 2.01181972e+01,
2.00565244e+01, 2.00565244e+01, 2.00565244e+01, 2.00565244e+01,
2.00240733e+01, 2.00240733e+01, 2.00240733e+01, 2.00240733e+01,
2.00089626e+01, 2.00089626e+01, 2.00089626e+01, 2.00089626e+01,
1.99979297e+01, 1.99979297e+01, 1.99979297e+01, 1.99979297e+01,
1.99863891e+01, 1.99863891e+01, 1.99863891e+01, 1.99863891e+01,
1.99693717e+01, 1.99693717e+01, 1.99693717e+01, 1.99693717e+01,
1.99445026e+01, 1.99445026e+01, 1.99445026e+01, 1.99445026e+01,
1.99195116e+01, 1.99195116e+01, 1.99195116e+01, 1.99195116e+01,
1.98964046e+01, 1.98964046e+01, 1.98964046e+01, 1.98964046e+01,
1.98743565e+01, 1.98743565e+01, 1.98743565e+01, 1.98743565e+01,
1.98541585e+01, 1.98541585e+01, 1.98541585e+01, 1.98541585e+01,
1.98364920e+01, 1.98364920e+01, 1.98364920e+01, 1.98364920e+01,
1.98206754e+01, 1.98206754e+01, 1.98206754e+01, 1.98206754e+01,
1.98057571e+01, 1.98057571e+01, 1.98057571e+01, 1.98057571e+01,
1.97923828e+01, 1.97923828e+01, 1.97923828e+01, 1.97923828e+01,
1.97808552e+01, 1.97808552e+01, 1.97808552e+01, 1.97808552e+01,
1.97709468e+01, 1.97709468e+01, 1.97709468e+01, 1.97709468e+01,
1.97654812e+01, 1.97654812e+01, 1.97654812e+01, 1.97654812e+01,
1.97477731e+01, 1.97477731e+01, 1.97477731e+01, 1.97477731e+01,
1.96722020e+01, 1.96722020e+01, 1.96722020e+01, 1.96722020e+01,
1.93272540e+01, 1.93272540e+01, 1.93272540e+01, 1.93272540e+01,
1.78485419e+01, 1.78485419e+01, 1.78485419e+01, 1.78485419e+01,
1.26228462e+01, 1.26228462e+01, 1.26228462e+01, 1.26228462e+01,
2.71270096e+00, 2.71270096e+00, 2.71270096e+00, 2.71270096e+00,
5.37681970e-02, 5.37681970e-02, 5.37681970e-02, 5.37681970e-02,
7.39978310e-05, 7.39978310e-05, 7.39978310e-05, 7.39978310e-05,
1.26879911e-08, 1.26879911e-08, 1.26879911e-08, 1.26879911e-08,
2.06933606e-12, 2.06933606e-12, 2.06933606e-12, 2.06933606e-12,
3.25161787e-16, 3.25161787e-16, 3.25161787e-16, 3.25161787e-16,
5.40240794e-20, 5.40240794e-20, 5.40240794e-20, 5.40240794e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.91991427e+02, 9.91991427e+02, 9.91991427e+02, 9.91991427e+02,
9.83398788e+02, 9.83398788e+02, 9.83398788e+02, 9.83398788e+02,
9.73613696e+02, 9.73613696e+02, 9.73613696e+02, 9.73613696e+02,
9.58908504e+02, 9.58908504e+02, 9.58908504e+02, 9.58908504e+02,
9.40117970e+02, 9.40117970e+02, 9.40117970e+02, 9.40117970e+02,
9.17130377e+02, 9.17130377e+02, 9.17130377e+02, 9.17130377e+02,
8.90710253e+02, 8.90710253e+02, 8.90710253e+02, 8.90710253e+02,
8.61710068e+02, 8.61710068e+02, 8.61710068e+02, 8.61710068e+02,
8.31030081e+02, 8.31030081e+02, 8.31030081e+02, 8.31030081e+02,
7.99387307e+02, 7.99387307e+02, 7.99387307e+02, 7.99387307e+02,
7.67330949e+02, 7.67330949e+02, 7.67330949e+02, 7.67330949e+02,
7.35690337e+02, 7.35690337e+02, 7.35690337e+02, 7.35690337e+02,
7.05034804e+02, 7.05034804e+02, 7.05034804e+02, 7.05034804e+02,
6.75527261e+02, 6.75527261e+02, 6.75527261e+02, 6.75527261e+02,
6.47167439e+02, 6.47167439e+02, 6.47167439e+02, 6.47167439e+02,
6.19930743e+02, 6.19930743e+02, 6.19930743e+02, 6.19930743e+02,
5.93813015e+02, 5.93813015e+02, 5.93813015e+02, 5.93813015e+02,
5.68863894e+02, 5.68863894e+02, 5.68863894e+02, 5.68863894e+02,
5.45199993e+02, 5.45199993e+02, 5.45199993e+02, 5.45199993e+02,
5.23075190e+02, 5.23075190e+02, 5.23075190e+02, 5.23075190e+02,
5.02889600e+02, 5.02889600e+02, 5.02889600e+02, 5.02889600e+02,
4.85266432e+02, 4.85266432e+02, 4.85266432e+02, 4.85266432e+02,
4.70932260e+02, 4.70932260e+02, 4.70932260e+02, 4.70932260e+02,
4.60518670e+02, 4.60518670e+02, 4.60518670e+02, 4.60518670e+02,
4.54205957e+02, 4.54205957e+02, 4.54205957e+02, 4.54205957e+02,
4.51352380e+02, 4.51352380e+02, 4.51352380e+02, 4.51352380e+02,
4.50649917e+02, 4.50649917e+02, 4.50649917e+02, 4.50649917e+02,
4.50971173e+02, 4.50971173e+02, 4.50971173e+02, 4.50971173e+02,
4.52135940e+02, 4.52135940e+02, 4.52135940e+02, 4.52135940e+02,
4.52753679e+02, 4.52753679e+02, 4.52753679e+02, 4.52753679e+02,
4.53041751e+02, 4.53041751e+02, 4.53041751e+02, 4.53041751e+02,
4.53249156e+02, 4.53249156e+02, 4.53249156e+02, 4.53249156e+02,
4.53466954e+02, 4.53466954e+02, 4.53466954e+02, 4.53466954e+02,
4.53791825e+02, 4.53791825e+02, 4.53791825e+02, 4.53791825e+02,
4.54268545e+02, 4.54268545e+02, 4.54268545e+02, 4.54268545e+02,
4.54750752e+02, 4.54750752e+02, 4.54750752e+02, 4.54750752e+02,
4.55192196e+02, 4.55192196e+02, 4.55192196e+02, 4.55192196e+02,
4.55599122e+02, 4.55599122e+02, 4.55599122e+02, 4.55599122e+02,
4.55975922e+02, 4.55975922e+02, 4.55975922e+02, 4.55975922e+02,
4.56329221e+02, 4.56329221e+02, 4.56329221e+02, 4.56329221e+02,
4.56648137e+02, 4.56648137e+02, 4.56648137e+02, 4.56648137e+02,
4.56923106e+02, 4.56923106e+02, 4.56923106e+02, 4.56923106e+02,
4.57181465e+02, 4.57181465e+02, 4.57181465e+02, 4.57181465e+02,
4.57438180e+02, 4.57438180e+02, 4.57438180e+02, 4.57438180e+02,
4.57763252e+02, 4.57763252e+02, 4.57763252e+02, 4.57763252e+02,
4.58282193e+02, 4.58282193e+02, 4.58282193e+02, 4.58282193e+02,
4.58443493e+02, 4.58443493e+02, 4.58443493e+02, 4.58443493e+02,
4.55958160e+02, 4.55958160e+02, 4.55958160e+02, 4.55958160e+02,
4.38959204e+02, 4.38959204e+02, 4.38959204e+02, 4.38959204e+02,
3.65073159e+02, 3.65073159e+02, 3.65073159e+02, 3.65073159e+02,
1.68405632e+02, 1.68405632e+02, 1.68405632e+02, 1.68405632e+02,
1.44222649e+01, 1.44222649e+01, 1.44222649e+01, 1.44222649e+01,
7.69577756e-02, 7.69577756e-02, 7.69577756e-02, 7.69577756e-02,
1.00097351e-02, 1.00097351e-02, 1.00097351e-02, 1.00097351e-02,
1.00000015e-02, 1.00000015e-02, 1.00000015e-02, 1.00000015e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99133911, 0.99133911, 0.99133911, 0.99133911, 0.98292058,
0.98292058, 0.98292058, 0.98292058, 0.97419061, 0.97419061,
0.97419061, 0.97419061, 0.96144618, 0.96144618, 0.96144618,
0.96144618, 0.94597586, 0.94597586, 0.94597586, 0.94597586,
0.9276744 , 0.9276744 , 0.9276744 , 0.9276744 , 0.90721706,
0.90721706, 0.90721706, 0.90721706, 0.88515443, 0.88515443,
0.88515443, 0.88515443, 0.86202321, 0.86202321, 0.86202321,
0.86202321, 0.83819213, 0.83819213, 0.83819213, 0.83819213,
0.8141677 , 0.8141677 , 0.8141677 , 0.8141677 , 0.79048162,
0.79048162, 0.79048162, 0.79048162, 0.76730128, 0.76730128,
0.76730128, 0.76730128, 0.74474398, 0.74474398, 0.74474398,
0.74474398, 0.72277684, 0.72277684, 0.72277684, 0.72277684,
0.70140995, 0.70140995, 0.70140995, 0.70140995, 0.68067678,
0.68067678, 0.68067678, 0.68067678, 0.66062128, 0.66062128,
0.66062128, 0.66062128, 0.64151926, 0.64151926, 0.64151926,
0.64151926, 0.62319637, 0.62319637, 0.62319637, 0.62319637,
0.60726225, 0.60726225, 0.60726225, 0.60726225, 0.59190903,
0.59190903, 0.59190903, 0.59190903, 0.58148652, 0.58148652,
0.58148652, 0.58148652, 0.57278527, 0.57278527, 0.57278527,
0.57278527, 0.56769271, 0.56769271, 0.56769271, 0.56769271,
0.56654927, 0.56654927, 0.56654927, 0.56654927, 0.56583728,
0.56583728, 0.56583728, 0.56583728, 0.56616565, 0.56616565,
0.56616565, 0.56616565, 0.56694844, 0.56694844, 0.56694844,
0.56694844, 0.56774994, 0.56774994, 0.56774994, 0.56774994,
0.56799881, 0.56799881, 0.56799881, 0.56799881, 0.56803723,
0.56803723, 0.56803723, 0.56803723, 0.56811091, 0.56811091,
0.56811091, 0.56811091, 0.56837366, 0.56837366, 0.56837366,
0.56837366, 0.56883911, 0.56883911, 0.56883911, 0.56883911,
0.56920333, 0.56920333, 0.56920333, 0.56920333, 0.56943051,
0.56943051, 0.56943051, 0.56943051, 0.56964182, 0.56964182,
0.56964182, 0.56964182, 0.56994366, 0.56994366, 0.56994366,
0.56994366, 0.57080637, 0.57080637, 0.57080637, 0.57080637,
0.57400236, 0.57400236, 0.57400236, 0.57400236, 0.58513972,
0.58513972, 0.58513972, 0.58513972, 0.61910673, 0.61910673,
0.61910673, 0.61910673, 0.70892127, 0.70892127, 0.70892127,
0.70892127, 0.91548374, 0.91548374, 0.91548374, 0.91548374,
1.33078894, 1.33078894, 1.33078894, 1.33078894, 2.06133491,
2.06133491, 2.06133491, 2.06133491, 3.15181689, 3.15181689,
3.15181689, 3.15181689, 4.02701618, 4.02701618, 4.02701618,
4.02701618, 4.28308718, 4.28308718, 4.28308718, 4.28308718,
3.81910697, 3.81910697, 3.81910697, 3.81910697, 1.98110507,
1.98110507, 1.98110507, 1.98110507, 1.08418873, 1.08418873,
1.08418873, 1.08418873, 1.00343534, 1.00343534, 1.00343534,
1.00343534, 1.00000606, 1.00000606, 1.00000606, 1.00000606,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.25290090e-01, 3.25290090e-01, 3.25290090e-01, 3.25290090e-01,
6.43847125e-01, 6.43847125e-01, 6.43847125e-01, 6.43847125e-01,
9.75722154e-01, 9.75722154e-01, 9.75722154e-01, 9.75722154e-01,
1.46557297e+00, 1.46557297e+00, 1.46557297e+00, 1.46557297e+00,
2.06705518e+00, 2.06705518e+00, 2.06705518e+00, 2.06705518e+00,
2.78907819e+00, 2.78907819e+00, 2.78907819e+00, 2.78907819e+00,
3.60976834e+00, 3.60976834e+00, 3.60976834e+00, 3.60976834e+00,
4.51162281e+00, 4.51162281e+00, 4.51162281e+00, 4.51162281e+00,
5.47661724e+00, 5.47661724e+00, 5.47661724e+00, 5.47661724e+00,
6.49264130e+00, 6.49264130e+00, 6.49264130e+00, 6.49264130e+00,
7.53660887e+00, 7.53660887e+00, 7.53660887e+00, 7.53660887e+00,
8.59198431e+00, 8.59198431e+00, 8.59198431e+00, 8.59198431e+00,
9.64916487e+00, 9.64916487e+00, 9.64916487e+00, 9.64916487e+00,
1.07051453e+01, 1.07051453e+01, 1.07051453e+01, 1.07051453e+01,
1.17579310e+01, 1.17579310e+01, 1.17579310e+01, 1.17579310e+01,
1.28067954e+01, 1.28067954e+01, 1.28067954e+01, 1.28067954e+01,
1.38494448e+01, 1.38494448e+01, 1.38494448e+01, 1.38494448e+01,
1.48812924e+01, 1.48812924e+01, 1.48812924e+01, 1.48812924e+01,
1.58928454e+01, 1.58928454e+01, 1.58928454e+01, 1.58928454e+01,
1.68680207e+01, 1.68680207e+01, 1.68680207e+01, 1.68680207e+01,
1.77790951e+01, 1.77790951e+01, 1.77790951e+01, 1.77790951e+01,
1.85881715e+01, 1.85881715e+01, 1.85881715e+01, 1.85881715e+01,
1.92479302e+01, 1.92479302e+01, 1.92479302e+01, 1.92479302e+01,
1.97200343e+01, 1.97200343e+01, 1.97200343e+01, 1.97200343e+01,
1.99952626e+01, 1.99952626e+01, 1.99952626e+01, 1.99952626e+01,
2.01098122e+01, 2.01098122e+01, 2.01098122e+01, 2.01098122e+01,
2.01323555e+01, 2.01323555e+01, 2.01323555e+01, 2.01323555e+01,
2.01039208e+01, 2.01039208e+01, 2.01039208e+01, 2.01039208e+01,
2.00468661e+01, 2.00468661e+01, 2.00468661e+01, 2.00468661e+01,
2.00198405e+01, 2.00198405e+01, 2.00198405e+01, 2.00198405e+01,
2.00061051e+01, 2.00061051e+01, 2.00061051e+01, 2.00061051e+01,
1.99950115e+01, 1.99950115e+01, 1.99950115e+01, 1.99950115e+01,
1.99825634e+01, 1.99825634e+01, 1.99825634e+01, 1.99825634e+01,
1.99636417e+01, 1.99636417e+01, 1.99636417e+01, 1.99636417e+01,
1.99376749e+01, 1.99376749e+01, 1.99376749e+01, 1.99376749e+01,
1.99131873e+01, 1.99131873e+01, 1.99131873e+01, 1.99131873e+01,
1.98905974e+01, 1.98905974e+01, 1.98905974e+01, 1.98905974e+01,
1.98692438e+01, 1.98692438e+01, 1.98692438e+01, 1.98692438e+01,
1.98493625e+01, 1.98493625e+01, 1.98493625e+01, 1.98493625e+01,
1.98317370e+01, 1.98317370e+01, 1.98317370e+01, 1.98317370e+01,
1.98164911e+01, 1.98164911e+01, 1.98164911e+01, 1.98164911e+01,
1.98024735e+01, 1.98024735e+01, 1.98024735e+01, 1.98024735e+01,
1.97894710e+01, 1.97894710e+01, 1.97894710e+01, 1.97894710e+01,
1.97780897e+01, 1.97780897e+01, 1.97780897e+01, 1.97780897e+01,
1.97674568e+01, 1.97674568e+01, 1.97674568e+01, 1.97674568e+01,
1.97612054e+01, 1.97612054e+01, 1.97612054e+01, 1.97612054e+01,
1.97524408e+01, 1.97524408e+01, 1.97524408e+01, 1.97524408e+01,
1.97136422e+01, 1.97136422e+01, 1.97136422e+01, 1.97136422e+01,
1.95403967e+01, 1.95403967e+01, 1.95403967e+01, 1.95403967e+01,
1.87695037e+01, 1.87695037e+01, 1.87695037e+01, 1.87695037e+01,
1.57483105e+01, 1.57483105e+01, 1.57483105e+01, 1.57483105e+01,
7.26747736e+00, 7.26747736e+00, 7.26747736e+00, 7.26747736e+00,
4.38929043e-01, 4.38929043e-01, 4.38929043e-01, 4.38929043e-01,
2.34025635e-03, 2.34025635e-03, 2.34025635e-03, 2.34025635e-03,
7.25432818e-07, 7.25432818e-07, 7.25432818e-07, 7.25432818e-07,
1.11193400e-10, 1.11193400e-10, 1.11193400e-10, 1.11193400e-10,
1.76869480e-14, 1.76869480e-14, 1.76869480e-14, 1.76869480e-14,
2.85535124e-18, 2.85535124e-18, 2.85535124e-18, 2.85535124e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87906280e+02, 9.87906280e+02, 9.87906280e+02, 9.87906280e+02,
9.76174941e+02, 9.76174941e+02, 9.76174941e+02, 9.76174941e+02,
9.64072771e+02, 9.64072771e+02, 9.64072771e+02, 9.64072771e+02,
9.46471139e+02, 9.46471139e+02, 9.46471139e+02, 9.46471139e+02,
9.25234369e+02, 9.25234369e+02, 9.25234369e+02, 9.25234369e+02,
9.00287177e+02, 9.00287177e+02, 9.00287177e+02, 9.00287177e+02,
8.72631649e+02, 8.72631649e+02, 8.72631649e+02, 8.72631649e+02,
8.43081763e+02, 8.43081763e+02, 8.43081763e+02, 8.43081763e+02,
8.12413334e+02, 8.12413334e+02, 8.12413334e+02, 8.12413334e+02,
7.81158038e+02, 7.81158038e+02, 7.81158038e+02, 7.81158038e+02,
7.49976361e+02, 7.49976361e+02, 7.49976361e+02, 7.49976361e+02,
7.19607955e+02, 7.19607955e+02, 7.19607955e+02, 7.19607955e+02,
6.90244348e+02, 6.90244348e+02, 6.90244348e+02, 6.90244348e+02,
6.62006070e+02, 6.62006070e+02, 6.62006070e+02, 6.62006070e+02,
6.34835316e+02, 6.34835316e+02, 6.34835316e+02, 6.34835316e+02,
6.08723776e+02, 6.08723776e+02, 6.08723776e+02, 6.08723776e+02,
5.83682527e+02, 5.83682527e+02, 5.83682527e+02, 5.83682527e+02,
5.59779886e+02, 5.59779886e+02, 5.59779886e+02, 5.59779886e+02,
5.37159931e+02, 5.37159931e+02, 5.37159931e+02, 5.37159931e+02,
5.16112600e+02, 5.16112600e+02, 5.16112600e+02, 5.16112600e+02,
4.97076250e+02, 4.97076250e+02, 4.97076250e+02, 4.97076250e+02,
4.80695875e+02, 4.80695875e+02, 4.80695875e+02, 4.80695875e+02,
4.67679348e+02, 4.67679348e+02, 4.67679348e+02, 4.67679348e+02,
4.58546259e+02, 4.58546259e+02, 4.58546259e+02, 4.58546259e+02,
4.53296009e+02, 4.53296009e+02, 4.53296009e+02, 4.53296009e+02,
4.51129021e+02, 4.51129021e+02, 4.51129021e+02, 4.51129021e+02,
4.50704444e+02, 4.50704444e+02, 4.50704444e+02, 4.50704444e+02,
4.51242012e+02, 4.51242012e+02, 4.51242012e+02, 4.51242012e+02,
4.52320289e+02, 4.52320289e+02, 4.52320289e+02, 4.52320289e+02,
4.52832280e+02, 4.52832280e+02, 4.52832280e+02, 4.52832280e+02,
4.53095183e+02, 4.53095183e+02, 4.53095183e+02, 4.53095183e+02,
4.53305822e+02, 4.53305822e+02, 4.53305822e+02, 4.53305822e+02,
4.53541196e+02, 4.53541196e+02, 4.53541196e+02, 4.53541196e+02,
4.53899663e+02, 4.53899663e+02, 4.53899663e+02, 4.53899663e+02,
4.54393535e+02, 4.54393535e+02, 4.54393535e+02, 4.54393535e+02,
4.54864936e+02, 4.54864936e+02, 4.54864936e+02, 4.54864936e+02,
4.55303481e+02, 4.55303481e+02, 4.55303481e+02, 4.55303481e+02,
4.55707477e+02, 4.55707477e+02, 4.55707477e+02, 4.55707477e+02,
4.56071530e+02, 4.56071530e+02, 4.56071530e+02, 4.56071530e+02,
4.56406325e+02, 4.56406325e+02, 4.56406325e+02, 4.56406325e+02,
4.56717719e+02, 4.56717719e+02, 4.56717719e+02, 4.56717719e+02,
4.56992693e+02, 4.56992693e+02, 4.56992693e+02, 4.56992693e+02,
4.57237821e+02, 4.57237821e+02, 4.57237821e+02, 4.57237821e+02,
4.57481191e+02, 4.57481191e+02, 4.57481191e+02, 4.57481191e+02,
4.57744387e+02, 4.57744387e+02, 4.57744387e+02, 4.57744387e+02,
4.58159054e+02, 4.58159054e+02, 4.58159054e+02, 4.58159054e+02,
4.58594305e+02, 4.58594305e+02, 4.58594305e+02, 4.58594305e+02,
4.57858557e+02, 4.57858557e+02, 4.57858557e+02, 4.57858557e+02,
4.50044024e+02, 4.50044024e+02, 4.50044024e+02, 4.50044024e+02,
4.10501297e+02, 4.10501297e+02, 4.10501297e+02, 4.10501297e+02,
2.72947363e+02, 2.72947363e+02, 2.72947363e+02, 2.72947363e+02,
6.00463556e+01, 6.00463556e+01, 6.00463556e+01, 6.00463556e+01,
1.21367312e+00, 1.21367312e+00, 1.21367312e+00, 1.21367312e+00,
1.08313285e-02, 1.08313285e-02, 1.08313285e-02, 1.08313285e-02,
1.00000857e-02, 1.00000857e-02, 1.00000857e-02, 1.00000857e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}]}
minmod_hllc
{'none_hll': [{'rho': array([0.96262329, 0.96262329, 0.96262329, 0.96262329, 0.95292015,
0.95292015, 0.95292015, 0.95292015, 0.94187655, 0.94187655,
0.94187655, 0.94187655, 0.92958523, 0.92958523, 0.92958523,
0.92958523, 0.91614889, 0.91614889, 0.91614889, 0.91614889,
0.9016891 , 0.9016891 , 0.9016891 , 0.9016891 , 0.88633863,
0.88633863, 0.88633863, 0.88633863, 0.87023469, 0.87023469,
0.87023469, 0.87023469, 0.85351349, 0.85351349, 0.85351349,
0.85351349, 0.8363065 , 0.8363065 , 0.8363065 , 0.8363065 ,
0.81873804, 0.81873804, 0.81873804, 0.81873804, 0.80092415,
0.80092415, 0.80092415, 0.80092415, 0.78297243, 0.78297243,
0.78297243, 0.78297243, 0.76498267, 0.76498267, 0.76498267,
0.76498267, 0.74704803, 0.74704803, 0.74704803, 0.74704803,
0.72925675, 0.72925675, 0.72925675, 0.72925675, 0.71169435,
0.71169435, 0.71169435, 0.71169435, 0.69444628, 0.69444628,
0.69444628, 0.69444628, 0.6776013 , 0.6776013 , 0.6776013 ,
0.6776013 , 0.66125559, 0.66125559, 0.66125559, 0.66125559,
0.64551785, 0.64551785, 0.64551785, 0.64551785, 0.63051555,
0.63051555, 0.63051555, 0.63051555, 0.61640212, 0.61640212,
0.61640212, 0.61640212, 0.6033641 , 0.6033641 , 0.6033641 ,
0.6033641 , 0.59162547, 0.59162547, 0.59162547, 0.59162547,
0.58144321, 0.58144321, 0.58144321, 0.58144321, 0.57308387,
0.57308387, 0.57308387, 0.57308387, 0.5667695 , 0.5667695 ,
0.5667695 , 0.5667695 , 0.56259223, 0.56259223, 0.56259223,
0.56259223, 0.5604295 , 0.5604295 , 0.5604295 , 0.5604295 ,
0.55993197, 0.55993197, 0.55993197, 0.55993197, 0.56064241,
0.56064241, 0.56064241, 0.56064241, 0.56220257, 0.56220257,
0.56220257, 0.56220257, 0.56453573, 0.56453573, 0.56453573,
0.56453573, 0.56792111, 0.56792111, 0.56792111, 0.56792111,
0.57302161, 0.57302161, 0.57302161, 0.57302161, 0.58094766,
0.58094766, 0.58094766, 0.58094766, 0.59338194, 0.59338194,
0.59338194, 0.59338194, 0.61278127, 0.61278127, 0.61278127,
0.61278127, 0.64267222, 0.64267222, 0.64267222, 0.64267222,
0.68810064, 0.68810064, 0.68810064, 0.68810064, 0.75635209,
0.75635209, 0.75635209, 0.75635209, 0.85813623, 0.85813623,
0.85813623, 0.85813623, 1.00951022, 1.00951022, 1.00951022,
1.00951022, 1.23478014, 1.23478014, 1.23478014, 1.23478014,
1.57016034, 1.57016034, 1.57016034, 1.57016034, 2.02902941,
2.02902941, 2.02902941, 2.02902941, 2.54214966, 2.54214966,
2.54214966, 2.54214966, 3.0202242 , 3.0202242 , 3.0202242 ,
3.0202242 , 3.31178259, 3.31178259, 3.31178259, 3.31178259,
3.22437971, 3.22437971, 3.22437971, 3.22437971, 2.65275743,
2.65275743, 2.65275743, 2.65275743, 1.80505429, 1.80505429,
1.80505429, 1.80505429, 1.19452145, 1.19452145, 1.19452145,
1.19452145, 1.01387818, 1.01387818, 1.01387818, 1.01387818,
1.0001771 , 1.0001771 , 1.0001771 , 1.0001771 , 1.00000035,
1.00000035, 1.00000035, 1.00000035, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.41419412e+00, 1.41419412e+00, 1.41419412e+00, 1.41419412e+00,
1.78883739e+00, 1.78883739e+00, 1.78883739e+00, 1.78883739e+00,
2.21825857e+00, 2.21825857e+00, 2.21825857e+00, 2.21825857e+00,
2.70047651e+00, 2.70047651e+00, 2.70047651e+00, 2.70047651e+00,
3.23311666e+00, 3.23311666e+00, 3.23311666e+00, 3.23311666e+00,
3.81304395e+00, 3.81304395e+00, 3.81304395e+00, 3.81304395e+00,
4.43661839e+00, 4.43661839e+00, 4.43661839e+00, 4.43661839e+00,
5.09991584e+00, 5.09991584e+00, 5.09991584e+00, 5.09991584e+00,
5.79890026e+00, 5.79890026e+00, 5.79890026e+00, 5.79890026e+00,
6.52954505e+00, 6.52954505e+00, 6.52954505e+00, 6.52954505e+00,
7.28790743e+00, 7.28790743e+00, 7.28790743e+00, 7.28790743e+00,
8.07016183e+00, 8.07016183e+00, 8.07016183e+00, 8.07016183e+00,
8.87259884e+00, 8.87259884e+00, 8.87259884e+00, 8.87259884e+00,
9.69159468e+00, 9.69159468e+00, 9.69159468e+00, 9.69159468e+00,
1.05235545e+01, 1.05235545e+01, 1.05235545e+01, 1.05235545e+01,
1.13648293e+01, 1.13648293e+01, 1.13648293e+01, 1.13648293e+01,
1.22116044e+01, 1.22116044e+01, 1.22116044e+01, 1.22116044e+01,
1.30597527e+01, 1.30597527e+01, 1.30597527e+01, 1.30597527e+01,
1.39046431e+01, 1.39046431e+01, 1.39046431e+01, 1.39046431e+01,
1.47408898e+01, 1.47408898e+01, 1.47408898e+01, 1.47408898e+01,
1.55620288e+01, 1.55620288e+01, 1.55620288e+01, 1.55620288e+01,
1.63601078e+01, 1.63601078e+01, 1.63601078e+01, 1.63601078e+01,
1.71251997e+01, 1.71251997e+01, 1.71251997e+01, 1.71251997e+01,
1.78448993e+01, 1.78448993e+01, 1.78448993e+01, 1.78448993e+01,
1.85039895e+01, 1.85039895e+01, 1.85039895e+01, 1.85039895e+01,
1.90846801e+01, 1.90846801e+01, 1.90846801e+01, 1.90846801e+01,
1.95681279e+01, 1.95681279e+01, 1.95681279e+01, 1.95681279e+01,
1.99380647e+01, 1.99380647e+01, 1.99380647e+01, 1.99380647e+01,
2.01866601e+01, 2.01866601e+01, 2.01866601e+01, 2.01866601e+01,
2.03205654e+01, 2.03205654e+01, 2.03205654e+01, 2.03205654e+01,
2.03625340e+01, 2.03625340e+01, 2.03625340e+01, 2.03625340e+01,
2.03450671e+01, 2.03450671e+01, 2.03450671e+01, 2.03450671e+01,
2.02991317e+01, 2.02991317e+01, 2.02991317e+01, 2.02991317e+01,
2.02456046e+01, 2.02456046e+01, 2.02456046e+01, 2.02456046e+01,
2.01946657e+01, 2.01946657e+01, 2.01946657e+01, 2.01946657e+01,
2.01495851e+01, 2.01495851e+01, 2.01495851e+01, 2.01495851e+01,
2.01104796e+01, 2.01104796e+01, 2.01104796e+01, 2.01104796e+01,
2.00765652e+01, 2.00765652e+01, 2.00765652e+01, 2.00765652e+01,
2.00469486e+01, 2.00469486e+01, 2.00469486e+01, 2.00469486e+01,
2.00208526e+01, 2.00208526e+01, 2.00208526e+01, 2.00208526e+01,
1.99976473e+01, 1.99976473e+01, 1.99976473e+01, 1.99976473e+01,
1.99768232e+01, 1.99768232e+01, 1.99768232e+01, 1.99768232e+01,
1.99579134e+01, 1.99579134e+01, 1.99579134e+01, 1.99579134e+01,
1.99401110e+01, 1.99401110e+01, 1.99401110e+01, 1.99401110e+01,
1.99203376e+01, 1.99203376e+01, 1.99203376e+01, 1.99203376e+01,
1.98860888e+01, 1.98860888e+01, 1.98860888e+01, 1.98860888e+01,
1.98001469e+01, 1.98001469e+01, 1.98001469e+01, 1.98001469e+01,
1.95757462e+01, 1.95757462e+01, 1.95757462e+01, 1.95757462e+01,
1.90484237e+01, 1.90484237e+01, 1.90484237e+01, 1.90484237e+01,
1.79421767e+01, 1.79421767e+01, 1.79421767e+01, 1.79421767e+01,
1.58163176e+01, 1.58163176e+01, 1.58163176e+01, 1.58163176e+01,
1.20498338e+01, 1.20498338e+01, 1.20498338e+01, 1.20498338e+01,
6.43761226e+00, 6.43761226e+00, 6.43761226e+00, 6.43761226e+00,
1.39778927e+00, 1.39778927e+00, 1.39778927e+00, 1.39778927e+00,
5.17644049e-02, 5.17644049e-02, 5.17644049e-02, 5.17644049e-02,
1.82914635e-04, 1.82914635e-04, 1.82914635e-04, 1.82914635e-04,
7.98774300e-08, 7.98774300e-08, 7.98774300e-08, 7.98774300e-08,
2.66087619e-11, 2.66087619e-11, 2.66087619e-11, 2.66087619e-11,
8.81761175e-15, 8.81761175e-15, 8.81761175e-15, 8.81761175e-15,
2.88036046e-18, 2.88036046e-18, 2.88036046e-18, 2.88036046e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.48220610e+02, 9.48220610e+02, 9.48220610e+02, 9.48220610e+02,
9.34902944e+02, 9.34902944e+02, 9.34902944e+02, 9.34902944e+02,
9.19831060e+02, 9.19831060e+02, 9.19831060e+02, 9.19831060e+02,
9.03151270e+02, 9.03151270e+02, 9.03151270e+02, 9.03151270e+02,
8.85026662e+02, 8.85026662e+02, 8.85026662e+02, 8.85026662e+02,
8.65646386e+02, 8.65646386e+02, 8.65646386e+02, 8.65646386e+02,
8.45213155e+02, 8.45213155e+02, 8.45213155e+02, 8.45213155e+02,
8.23932702e+02, 8.23932702e+02, 8.23932702e+02, 8.23932702e+02,
8.02005750e+02, 8.02005750e+02, 8.02005750e+02, 8.02005750e+02,
7.79622496e+02, 7.79622496e+02, 7.79622496e+02, 7.79622496e+02,
7.56959321e+02, 7.56959321e+02, 7.56959321e+02, 7.56959321e+02,
7.34177328e+02, 7.34177328e+02, 7.34177328e+02, 7.34177328e+02,
7.11422289e+02, 7.11422289e+02, 7.11422289e+02, 7.11422289e+02,
6.88825627e+02, 6.88825627e+02, 6.88825627e+02, 6.88825627e+02,
6.66506181e+02, 6.66506181e+02, 6.66506181e+02, 6.66506181e+02,
6.44572547e+02, 6.44572547e+02, 6.44572547e+02, 6.44572547e+02,
6.23125941e+02, 6.23125941e+02, 6.23125941e+02, 6.23125941e+02,
6.02263562e+02, 6.02263562e+02, 6.02263562e+02, 6.02263562e+02,
5.82082578e+02, 5.82082578e+02, 5.82082578e+02, 5.82082578e+02,
5.62684871e+02, 5.62684871e+02, 5.62684871e+02, 5.62684871e+02,
5.44182753e+02, 5.44182753e+02, 5.44182753e+02, 5.44182753e+02,
5.26705766e+02, 5.26705766e+02, 5.26705766e+02, 5.26705766e+02,
5.10408370e+02, 5.10408370e+02, 5.10408370e+02, 5.10408370e+02,
4.95477456e+02, 4.95477456e+02, 4.95477456e+02, 4.95477456e+02,
4.82136707e+02, 4.82136707e+02, 4.82136707e+02, 4.82136707e+02,
4.70641376e+02, 4.70641376e+02, 4.70641376e+02, 4.70641376e+02,
4.61252431e+02, 4.61252431e+02, 4.61252431e+02, 4.61252431e+02,
4.54177107e+02, 4.54177107e+02, 4.54177107e+02, 4.54177107e+02,
4.49473996e+02, 4.49473996e+02, 4.49473996e+02, 4.49473996e+02,
4.46955714e+02, 4.46955714e+02, 4.46955714e+02, 4.46955714e+02,
4.46165009e+02, 4.46165009e+02, 4.46165009e+02, 4.46165009e+02,
4.46485695e+02, 4.46485695e+02, 4.46485695e+02, 4.46485695e+02,
4.47339548e+02, 4.47339548e+02, 4.47339548e+02, 4.47339548e+02,
4.48337508e+02, 4.48337508e+02, 4.48337508e+02, 4.48337508e+02,
4.49289395e+02, 4.49289395e+02, 4.49289395e+02, 4.49289395e+02,
4.50134048e+02, 4.50134048e+02, 4.50134048e+02, 4.50134048e+02,
4.50869836e+02, 4.50869836e+02, 4.50869836e+02, 4.50869836e+02,
4.51512780e+02, 4.51512780e+02, 4.51512780e+02, 4.51512780e+02,
4.52081898e+02, 4.52081898e+02, 4.52081898e+02, 4.52081898e+02,
4.52595215e+02, 4.52595215e+02, 4.52595215e+02, 4.52595215e+02,
4.53069511e+02, 4.53069511e+02, 4.53069511e+02, 4.53069511e+02,
4.53521071e+02, 4.53521071e+02, 4.53521071e+02, 4.53521071e+02,
4.53965340e+02, 4.53965340e+02, 4.53965340e+02, 4.53965340e+02,
4.54407381e+02, 4.54407381e+02, 4.54407381e+02, 4.54407381e+02,
4.54782427e+02, 4.54782427e+02, 4.54782427e+02, 4.54782427e+02,
4.54679238e+02, 4.54679238e+02, 4.54679238e+02, 4.54679238e+02,
4.52448893e+02, 4.52448893e+02, 4.52448893e+02, 4.52448893e+02,
4.43824090e+02, 4.43824090e+02, 4.43824090e+02, 4.43824090e+02,
4.20337686e+02, 4.20337686e+02, 4.20337686e+02, 4.20337686e+02,
3.69484546e+02, 3.69484546e+02, 3.69484546e+02, 3.69484546e+02,
2.80602938e+02, 2.80602938e+02, 2.80602938e+02, 2.80602938e+02,
1.60681588e+02, 1.60681588e+02, 1.60681588e+02, 1.60681588e+02,
5.29503080e+01, 5.29503080e+01, 5.29503080e+01, 5.29503080e+01,
5.56597022e+00, 5.56597022e+00, 5.56597022e+00, 5.56597022e+00,
7.81466416e-02, 7.81466416e-02, 7.81466416e-02, 7.81466416e-02,
1.00355924e-02, 1.00355924e-02, 1.00355924e-02, 1.00355924e-02,
1.00000095e-02, 1.00000095e-02, 1.00000095e-02, 1.00000095e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_rusanov': [{'rho': array([0.99009996, 0.99009996, 0.99009996, 0.99009996, 0.98079728,
0.98079728, 0.98079728, 0.98079728, 0.97117513, 0.97117513,
0.97117513, 0.97117513, 0.95762729, 0.95762729, 0.95762729,
0.95762729, 0.94142953, 0.94142953, 0.94142953, 0.94142953,
0.92272455, 0.92272455, 0.92272455, 0.92272455, 0.90213778,
0.90213778, 0.90213778, 0.90213778, 0.88019506, 0.88019506,
0.88019506, 0.88019506, 0.8573279 , 0.8573279 , 0.8573279 ,
0.8573279 , 0.83388586, 0.83388586, 0.83388586, 0.83388586,
0.8103593 , 0.8103593 , 0.8103593 , 0.8103593 , 0.78735681,
0.78735681, 0.78735681, 0.78735681, 0.76511282, 0.76511282,
0.76511282, 0.76511282, 0.74361635, 0.74361635, 0.74361635,
0.74361635, 0.72287492, 0.72287492, 0.72287492, 0.72287492,
0.70291453, 0.70291453, 0.70291453, 0.70291453, 0.68379431,
0.68379431, 0.68379431, 0.68379431, 0.66561946, 0.66561946,
0.66561946, 0.66561946, 0.64854061, 0.64854061, 0.64854061,
0.64854061, 0.63273412, 0.63273412, 0.63273412, 0.63273412,
0.61836564, 0.61836564, 0.61836564, 0.61836564, 0.60555414,
0.60555414, 0.60555414, 0.60555414, 0.59436881, 0.59436881,
0.59436881, 0.59436881, 0.58488492, 0.58488492, 0.58488492,
0.58488492, 0.57726939, 0.57726939, 0.57726939, 0.57726939,
0.57177743, 0.57177743, 0.57177743, 0.57177743, 0.56855526,
0.56855526, 0.56855526, 0.56855526, 0.56733881, 0.56733881,
0.56733881, 0.56733881, 0.56730464, 0.56730464, 0.56730464,
0.56730464, 0.56754209, 0.56754209, 0.56754209, 0.56754209,
0.5676676 , 0.5676676 , 0.5676676 , 0.5676676 , 0.56747076,
0.56747076, 0.56747076, 0.56747076, 0.56700475, 0.56700475,
0.56700475, 0.56700475, 0.56673193, 0.56673193, 0.56673193,
0.56673193, 0.56658818, 0.56658818, 0.56658818, 0.56658818,
0.56660117, 0.56660117, 0.56660117, 0.56660117, 0.56721514,
0.56721514, 0.56721514, 0.56721514, 0.56947087, 0.56947087,
0.56947087, 0.56947087, 0.57522826, 0.57522826, 0.57522826,
0.57522826, 0.58788102, 0.58788102, 0.58788102, 0.58788102,
0.61339093, 0.61339093, 0.61339093, 0.61339093, 0.66191566,
0.66191566, 0.66191566, 0.66191566, 0.7503941 , 0.7503941 ,
0.7503941 , 0.7503941 , 0.90622262, 0.90622262, 0.90622262,
0.90622262, 1.17163176, 1.17163176, 1.17163176, 1.17163176,
1.60647461, 1.60647461, 1.60647461, 1.60647461, 2.28018986,
2.28018986, 2.28018986, 2.28018986, 3.12452995, 3.12452995,
3.12452995, 3.12452995, 3.74154011, 3.74154011, 3.74154011,
3.74154011, 3.94349823, 3.94349823, 3.94349823, 3.94349823,
3.47975134, 3.47975134, 3.47975134, 3.47975134, 1.76601771,
1.76601771, 1.76601771, 1.76601771, 1.04278667, 1.04278667,
1.04278667, 1.04278667, 1.00063976, 1.00063976, 1.00063976,
1.00063976, 1.000002 , 1.000002 , 1.000002 , 1.000002 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.71214413e-01, 3.71214413e-01, 3.71214413e-01, 3.71214413e-01,
7.24051149e-01, 7.24051149e-01, 7.24051149e-01, 7.24051149e-01,
1.09070799e+00, 1.09070799e+00, 1.09070799e+00, 1.09070799e+00,
1.61244052e+00, 1.61244052e+00, 1.61244052e+00, 1.61244052e+00,
2.24398795e+00, 2.24398795e+00, 2.24398795e+00, 2.24398795e+00,
2.98433948e+00, 2.98433948e+00, 2.98433948e+00, 2.98433948e+00,
3.81323583e+00, 3.81323583e+00, 3.81323583e+00, 3.81323583e+00,
4.71361364e+00, 4.71361364e+00, 4.71361364e+00, 4.71361364e+00,
5.67171883e+00, 5.67171883e+00, 5.67171883e+00, 5.67171883e+00,
6.67789199e+00, 6.67789199e+00, 6.67789199e+00, 6.67789199e+00,
7.70441370e+00, 7.70441370e+00, 7.70441370e+00, 7.70441370e+00,
8.73273268e+00, 8.73273268e+00, 8.73273268e+00, 8.73273268e+00,
9.75221103e+00, 9.75221103e+00, 9.75221103e+00, 9.75221103e+00,
1.07599049e+01, 1.07599049e+01, 1.07599049e+01, 1.07599049e+01,
1.17540097e+01, 1.17540097e+01, 1.17540097e+01, 1.17540097e+01,
1.27317276e+01, 1.27317276e+01, 1.27317276e+01, 1.27317276e+01,
1.36888505e+01, 1.36888505e+01, 1.36888505e+01, 1.36888505e+01,
1.46193231e+01, 1.46193231e+01, 1.46193231e+01, 1.46193231e+01,
1.55146881e+01, 1.55146881e+01, 1.55146881e+01, 1.55146881e+01,
1.63636987e+01, 1.63636987e+01, 1.63636987e+01, 1.63636987e+01,
1.71524418e+01, 1.71524418e+01, 1.71524418e+01, 1.71524418e+01,
1.78652593e+01, 1.78652593e+01, 1.78652593e+01, 1.78652593e+01,
1.84866404e+01, 1.84866404e+01, 1.84866404e+01, 1.84866404e+01,
1.90040865e+01, 1.90040865e+01, 1.90040865e+01, 1.90040865e+01,
1.94113585e+01, 1.94113585e+01, 1.94113585e+01, 1.94113585e+01,
1.97105480e+01, 1.97105480e+01, 1.97105480e+01, 1.97105480e+01,
1.99120445e+01, 1.99120445e+01, 1.99120445e+01, 1.99120445e+01,
2.00328035e+01, 2.00328035e+01, 2.00328035e+01, 2.00328035e+01,
2.00939353e+01, 2.00939353e+01, 2.00939353e+01, 2.00939353e+01,
2.01167707e+01, 2.01167707e+01, 2.01167707e+01, 2.01167707e+01,
2.01197792e+01, 2.01197792e+01, 2.01197792e+01, 2.01197792e+01,
2.01074074e+01, 2.01074074e+01, 2.01074074e+01, 2.01074074e+01,
2.00728629e+01, 2.00728629e+01, 2.00728629e+01, 2.00728629e+01,
2.00133514e+01, 2.00133514e+01, 2.00133514e+01, 2.00133514e+01,
1.99495226e+01, 1.99495226e+01, 1.99495226e+01, 1.99495226e+01,
1.98997208e+01, 1.98997208e+01, 1.98997208e+01, 1.98997208e+01,
1.98634959e+01, 1.98634959e+01, 1.98634959e+01, 1.98634959e+01,
1.98359993e+01, 1.98359993e+01, 1.98359993e+01, 1.98359993e+01,
1.98148995e+01, 1.98148995e+01, 1.98148995e+01, 1.98148995e+01,
1.97990188e+01, 1.97990188e+01, 1.97990188e+01, 1.97990188e+01,
1.97864598e+01, 1.97864598e+01, 1.97864598e+01, 1.97864598e+01,
1.97757303e+01, 1.97757303e+01, 1.97757303e+01, 1.97757303e+01,
1.97670663e+01, 1.97670663e+01, 1.97670663e+01, 1.97670663e+01,
1.97606562e+01, 1.97606562e+01, 1.97606562e+01, 1.97606562e+01,
1.97563225e+01, 1.97563225e+01, 1.97563225e+01, 1.97563225e+01,
1.97574019e+01, 1.97574019e+01, 1.97574019e+01, 1.97574019e+01,
1.97535996e+01, 1.97535996e+01, 1.97535996e+01, 1.97535996e+01,
1.97149405e+01, 1.97149405e+01, 1.97149405e+01, 1.97149405e+01,
1.95165373e+01, 1.95165373e+01, 1.95165373e+01, 1.95165373e+01,
1.86180277e+01, 1.86180277e+01, 1.86180277e+01, 1.86180277e+01,
1.50712409e+01, 1.50712409e+01, 1.50712409e+01, 1.50712409e+01,
6.44555578e+00, 6.44555578e+00, 6.44555578e+00, 6.44555578e+00,
3.40134655e-01, 3.40134655e-01, 3.40134655e-01, 3.40134655e-01,
1.99855938e-03, 1.99855938e-03, 1.99855938e-03, 1.99855938e-03,
9.27909710e-07, 9.27909710e-07, 9.27909710e-07, 9.27909710e-07,
1.31626259e-10, 1.31626259e-10, 1.31626259e-10, 1.31626259e-10,
1.91069012e-14, 1.91069012e-14, 1.91069012e-14, 1.91069012e-14,
2.79872002e-18, 2.79872002e-18, 2.79872002e-18, 2.79872002e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.86186200e+02, 9.86186200e+02, 9.86186200e+02, 9.86186200e+02,
9.73240468e+02, 9.73240468e+02, 9.73240468e+02, 9.73240468e+02,
9.59914409e+02, 9.59914409e+02, 9.59914409e+02, 9.59914409e+02,
9.41247070e+02, 9.41247070e+02, 9.41247070e+02, 9.41247070e+02,
9.19065173e+02, 9.19065173e+02, 9.19065173e+02, 9.19065173e+02,
8.93636756e+02, 8.93636756e+02, 8.93636756e+02, 8.93636756e+02,
8.65883271e+02, 8.65883271e+02, 8.65883271e+02, 8.65883271e+02,
8.36573980e+02, 8.36573980e+02, 8.36573980e+02, 8.36573980e+02,
8.06320572e+02, 8.06320572e+02, 8.06320572e+02, 8.06320572e+02,
7.75553698e+02, 7.75553698e+02, 7.75553698e+02, 7.75553698e+02,
7.45017133e+02, 7.45017133e+02, 7.45017133e+02, 7.45017133e+02,
7.15593221e+02, 7.15593221e+02, 7.15593221e+02, 7.15593221e+02,
6.87450247e+02, 6.87450247e+02, 6.87450247e+02, 6.87450247e+02,
6.60567105e+02, 6.60567105e+02, 6.60567105e+02, 6.60567105e+02,
6.34933561e+02, 6.34933561e+02, 6.34933561e+02, 6.34933561e+02,
6.10559907e+02, 6.10559907e+02, 6.10559907e+02, 6.10559907e+02,
5.87481408e+02, 5.87481408e+02, 5.87481408e+02, 5.87481408e+02,
5.65766844e+02, 5.65766844e+02, 5.65766844e+02, 5.65766844e+02,
5.45524542e+02, 5.45524542e+02, 5.45524542e+02, 5.45524542e+02,
5.26905041e+02, 5.26905041e+02, 5.26905041e+02, 5.26905041e+02,
5.10095754e+02, 5.10095754e+02, 5.10095754e+02, 5.10095754e+02,
4.95301417e+02, 4.95301417e+02, 4.95301417e+02, 4.95301417e+02,
4.82707232e+02, 4.82707232e+02, 4.82707232e+02, 4.82707232e+02,
4.72431235e+02, 4.72431235e+02, 4.72431235e+02, 4.72431235e+02,
4.64480159e+02, 4.64480159e+02, 4.64480159e+02, 4.64480159e+02,
4.58720544e+02, 4.58720544e+02, 4.58720544e+02, 4.58720544e+02,
4.54880415e+02, 4.54880415e+02, 4.54880415e+02, 4.54880415e+02,
4.52586923e+02, 4.52586923e+02, 4.52586923e+02, 4.52586923e+02,
4.51430708e+02, 4.51430708e+02, 4.51430708e+02, 4.51430708e+02,
4.51009436e+02, 4.51009436e+02, 4.51009436e+02, 4.51009436e+02,
4.50953318e+02, 4.50953318e+02, 4.50953318e+02, 4.50953318e+02,
4.51185590e+02, 4.51185590e+02, 4.51185590e+02, 4.51185590e+02,
4.51834808e+02, 4.51834808e+02, 4.51834808e+02, 4.51834808e+02,
4.52955367e+02, 4.52955367e+02, 4.52955367e+02, 4.52955367e+02,
4.54157312e+02, 4.54157312e+02, 4.54157312e+02, 4.54157312e+02,
4.55095241e+02, 4.55095241e+02, 4.55095241e+02, 4.55095241e+02,
4.55772371e+02, 4.55772371e+02, 4.55772371e+02, 4.55772371e+02,
4.56264237e+02, 4.56264237e+02, 4.56264237e+02, 4.56264237e+02,
4.56633348e+02, 4.56633348e+02, 4.56633348e+02, 4.56633348e+02,
4.56929937e+02, 4.56929937e+02, 4.56929937e+02, 4.56929937e+02,
4.57171489e+02, 4.57171489e+02, 4.57171489e+02, 4.57171489e+02,
4.57363668e+02, 4.57363668e+02, 4.57363668e+02, 4.57363668e+02,
4.57531378e+02, 4.57531378e+02, 4.57531378e+02, 4.57531378e+02,
4.57709652e+02, 4.57709652e+02, 4.57709652e+02, 4.57709652e+02,
4.57932536e+02, 4.57932536e+02, 4.57932536e+02, 4.57932536e+02,
4.58295200e+02, 4.58295200e+02, 4.58295200e+02, 4.58295200e+02,
4.58599054e+02, 4.58599054e+02, 4.58599054e+02, 4.58599054e+02,
4.57718786e+02, 4.57718786e+02, 4.57718786e+02, 4.57718786e+02,
4.48917912e+02, 4.48917912e+02, 4.48917912e+02, 4.48917912e+02,
4.03800359e+02, 4.03800359e+02, 4.03800359e+02, 4.03800359e+02,
2.58647864e+02, 2.58647864e+02, 2.58647864e+02, 2.58647864e+02,
5.37325288e+01, 5.37325288e+01, 5.37325288e+01, 5.37325288e+01,
1.31811609e+00, 1.31811609e+00, 1.31811609e+00, 1.31811609e+00,
1.12593786e-02, 1.12593786e-02, 1.12593786e-02, 1.12593786e-02,
1.00001109e-02, 1.00001109e-02, 1.00001109e-02, 1.00001109e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hll': [{'rho': array([0.99116492, 0.99116492, 0.99116492, 0.99116492, 0.98271154,
0.98271154, 0.98271154, 0.98271154, 0.97383884, 0.97383884,
0.97383884, 0.97383884, 0.96101554, 0.96101554, 0.96101554,
0.96101554, 0.9454558 , 0.9454558 , 0.9454558 , 0.9454558 ,
0.92712036, 0.92712036, 0.92712036, 0.92712036, 0.90667211,
0.90667211, 0.90667211, 0.90667211, 0.88466881, 0.88466881,
0.88466881, 0.88466881, 0.86164034, 0.86164034, 0.86164034,
0.86164034, 0.83800032, 0.83800032, 0.83800032, 0.83800032,
0.81424415, 0.81424415, 0.81424415, 0.81424415, 0.79085525,
0.79085525, 0.79085525, 0.79085525, 0.76804363, 0.76804363,
0.76804363, 0.76804363, 0.74583711, 0.74583711, 0.74583711,
0.74583711, 0.72421952, 0.72421952, 0.72421952, 0.72421952,
0.70319112, 0.70319112, 0.70319112, 0.70319112, 0.68277247,
0.68277247, 0.68277247, 0.68277247, 0.66301832, 0.66301832,
0.66301832, 0.66301832, 0.64404414, 0.64404414, 0.64404414,
0.64404414, 0.62606083, 0.62606083, 0.62606083, 0.62606083,
0.60941523, 0.60941523, 0.60941523, 0.60941523, 0.59461799,
0.59461799, 0.59461799, 0.59461799, 0.5823152 , 0.5823152 ,
0.5823152 , 0.5823152 , 0.57313802, 0.57313802, 0.57313802,
0.57313802, 0.56738503, 0.56738503, 0.56738503, 0.56738503,
0.56465216, 0.56465216, 0.56465216, 0.56465216, 0.56382693,
0.56382693, 0.56382693, 0.56382693, 0.56387318, 0.56387318,
0.56387318, 0.56387318, 0.5652006 , 0.5652006 , 0.5652006 ,
0.5652006 , 0.56626977, 0.56626977, 0.56626977, 0.56626977,
0.56702881, 0.56702881, 0.56702881, 0.56702881, 0.56788545,
0.56788545, 0.56788545, 0.56788545, 0.56880776, 0.56880776,
0.56880776, 0.56880776, 0.56941945, 0.56941945, 0.56941945,
0.56941945, 0.56962086, 0.56962086, 0.56962086, 0.56962086,
0.56956418, 0.56956418, 0.56956418, 0.56956418, 0.56936331,
0.56936331, 0.56936331, 0.56936331, 0.56934572, 0.56934572,
0.56934572, 0.56934572, 0.57000584, 0.57000584, 0.57000584,
0.57000584, 0.5729765 , 0.5729765 , 0.5729765 , 0.5729765 ,
0.58176493, 0.58176493, 0.58176493, 0.58176493, 0.60341244,
0.60341244, 0.60341244, 0.60341244, 0.65159534, 0.65159534,
0.65159534, 0.65159534, 0.75225793, 0.75225793, 0.75225793,
0.75225793, 0.95396517, 0.95396517, 0.95396517, 0.95396517,
1.34573563, 1.34573563, 1.34573563, 1.34573563, 2.05647412,
2.05647412, 2.05647412, 2.05647412, 3.13720518, 3.13720518,
3.13720518, 3.13720518, 4.01618199, 4.01618199, 4.01618199,
4.01618199, 4.2713159 , 4.2713159 , 4.2713159 , 4.2713159 ,
3.78406763, 3.78406763, 3.78406763, 3.78406763, 1.92016659,
1.92016659, 1.92016659, 1.92016659, 1.058216 , 1.058216 ,
1.058216 , 1.058216 , 1.00081398, 1.00081398, 1.00081398,
1.00081398, 1.00000178, 1.00000178, 1.00000178, 1.00000178,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.31199970e-01, 3.31199970e-01, 3.31199970e-01, 3.31199970e-01,
6.51382280e-01, 6.51382280e-01, 6.51382280e-01, 6.51382280e-01,
9.88854278e-01, 9.88854278e-01, 9.88854278e-01, 9.88854278e-01,
1.48150489e+00, 1.48150489e+00, 1.48150489e+00, 1.48150489e+00,
2.08633147e+00, 2.08633147e+00, 2.08633147e+00, 2.08633147e+00,
2.80957124e+00, 2.80957124e+00, 2.80957124e+00, 2.80957124e+00,
3.62985549e+00, 3.62985549e+00, 3.62985549e+00, 3.62985549e+00,
4.52930744e+00, 4.52930744e+00, 4.52930744e+00, 4.52930744e+00,
5.49031544e+00, 5.49031544e+00, 5.49031544e+00, 5.49031544e+00,
6.50069839e+00, 6.50069839e+00, 6.50069839e+00, 6.50069839e+00,
7.53409154e+00, 7.53409154e+00, 7.53409154e+00, 7.53409154e+00,
8.57574859e+00, 8.57574859e+00, 8.57574859e+00, 8.57574859e+00,
9.61670434e+00, 9.61670434e+00, 9.61670434e+00, 9.61670434e+00,
1.06548968e+01, 1.06548968e+01, 1.06548968e+01, 1.06548968e+01,
1.16895560e+01, 1.16895560e+01, 1.16895560e+01, 1.16895560e+01,
1.27199525e+01, 1.27199525e+01, 1.27199525e+01, 1.27199525e+01,
1.37443488e+01, 1.37443488e+01, 1.37443488e+01, 1.37443488e+01,
1.47589251e+01, 1.47589251e+01, 1.47589251e+01, 1.47589251e+01,
1.57563221e+01, 1.57563221e+01, 1.57563221e+01, 1.57563221e+01,
1.67233146e+01, 1.67233146e+01, 1.67233146e+01, 1.67233146e+01,
1.76379476e+01, 1.76379476e+01, 1.76379476e+01, 1.76379476e+01,
1.84673647e+01, 1.84673647e+01, 1.84673647e+01, 1.84673647e+01,
1.91692758e+01, 1.91692758e+01, 1.91692758e+01, 1.91692758e+01,
1.97016293e+01, 1.97016293e+01, 1.97016293e+01, 1.97016293e+01,
2.00421597e+01, 2.00421597e+01, 2.00421597e+01, 2.00421597e+01,
2.02074474e+01, 2.02074474e+01, 2.02074474e+01, 2.02074474e+01,
2.02533362e+01, 2.02533362e+01, 2.02533362e+01, 2.02533362e+01,
2.02422335e+01, 2.02422335e+01, 2.02422335e+01, 2.02422335e+01,
2.01551609e+01, 2.01551609e+01, 2.01551609e+01, 2.01551609e+01,
2.00814099e+01, 2.00814099e+01, 2.00814099e+01, 2.00814099e+01,
2.00377810e+01, 2.00377810e+01, 2.00377810e+01, 2.00377810e+01,
2.00059391e+01, 2.00059391e+01, 2.00059391e+01, 2.00059391e+01,
1.99778740e+01, 1.99778740e+01, 1.99778740e+01, 1.99778740e+01,
1.99509217e+01, 1.99509217e+01, 1.99509217e+01, 1.99509217e+01,
1.99248183e+01, 1.99248183e+01, 1.99248183e+01, 1.99248183e+01,
1.99001676e+01, 1.99001676e+01, 1.99001676e+01, 1.99001676e+01,
1.98776007e+01, 1.98776007e+01, 1.98776007e+01, 1.98776007e+01,
1.98572942e+01, 1.98572942e+01, 1.98572942e+01, 1.98572942e+01,
1.98397324e+01, 1.98397324e+01, 1.98397324e+01, 1.98397324e+01,
1.98254040e+01, 1.98254040e+01, 1.98254040e+01, 1.98254040e+01,
1.98131310e+01, 1.98131310e+01, 1.98131310e+01, 1.98131310e+01,
1.98012050e+01, 1.98012050e+01, 1.98012050e+01, 1.98012050e+01,
1.97898387e+01, 1.97898387e+01, 1.97898387e+01, 1.97898387e+01,
1.97795675e+01, 1.97795675e+01, 1.97795675e+01, 1.97795675e+01,
1.97699816e+01, 1.97699816e+01, 1.97699816e+01, 1.97699816e+01,
1.97635691e+01, 1.97635691e+01, 1.97635691e+01, 1.97635691e+01,
1.97536393e+01, 1.97536393e+01, 1.97536393e+01, 1.97536393e+01,
1.97149813e+01, 1.97149813e+01, 1.97149813e+01, 1.97149813e+01,
1.95399511e+01, 1.95399511e+01, 1.95399511e+01, 1.95399511e+01,
1.87505825e+01, 1.87505825e+01, 1.87505825e+01, 1.87505825e+01,
1.56266522e+01, 1.56266522e+01, 1.56266522e+01, 1.56266522e+01,
6.97439322e+00, 6.97439322e+00, 6.97439322e+00, 6.97439322e+00,
3.92821064e-01, 3.92821064e-01, 3.92821064e-01, 3.92821064e-01,
1.89489077e-03, 1.89489077e-03, 1.89489077e-03, 1.89489077e-03,
6.66095396e-07, 6.66095396e-07, 6.66095396e-07, 6.66095396e-07,
9.40368073e-11, 9.40368073e-11, 9.40368073e-11, 9.40368073e-11,
1.38270964e-14, 1.38270964e-14, 1.38270964e-14, 1.38270964e-14,
2.07028270e-18, 2.07028270e-18, 2.07028270e-18, 2.07028270e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87667905e+02, 9.87667905e+02, 9.87667905e+02, 9.87667905e+02,
9.75896749e+02, 9.75896749e+02, 9.75896749e+02, 9.75896749e+02,
9.63596793e+02, 9.63596793e+02, 9.63596793e+02, 9.63596793e+02,
9.45903496e+02, 9.45903496e+02, 9.45903496e+02, 9.45903496e+02,
9.24560147e+02, 9.24560147e+02, 9.24560147e+02, 9.24560147e+02,
8.99586589e+02, 8.99586589e+02, 8.99586589e+02, 8.99586589e+02,
8.71962692e+02, 8.71962692e+02, 8.71962692e+02, 8.71962692e+02,
8.42509302e+02, 8.42509302e+02, 8.42509302e+02, 8.42509302e+02,
8.11982832e+02, 8.11982832e+02, 8.11982832e+02, 8.11982832e+02,
7.80909598e+02, 7.80909598e+02, 7.80909598e+02, 7.80909598e+02,
7.50021347e+02, 7.50021347e+02, 7.50021347e+02, 7.50021347e+02,
7.20044660e+02, 7.20044660e+02, 7.20044660e+02, 7.20044660e+02,
6.91139600e+02, 6.91139600e+02, 6.91139600e+02, 6.91139600e+02,
6.63330665e+02, 6.63330665e+02, 6.63330665e+02, 6.63330665e+02,
6.36575468e+02, 6.36575468e+02, 6.36575468e+02, 6.36575468e+02,
6.10854195e+02, 6.10854195e+02, 6.10854195e+02, 6.10854195e+02,
5.86171830e+02, 5.86171830e+02, 5.86171830e+02, 5.86171830e+02,
5.62573606e+02, 5.62573606e+02, 5.62573606e+02, 5.62573606e+02,
5.40173609e+02, 5.40173609e+02, 5.40173609e+02, 5.40173609e+02,
5.19191018e+02, 5.19191018e+02, 5.19191018e+02, 5.19191018e+02,
4.99991749e+02, 4.99991749e+02, 4.99991749e+02, 4.99991749e+02,
4.83112346e+02, 4.83112346e+02, 4.83112346e+02, 4.83112346e+02,
4.69214163e+02, 4.69214163e+02, 4.69214163e+02, 4.69214163e+02,
4.58903184e+02, 4.58903184e+02, 4.58903184e+02, 4.58903184e+02,
4.52409336e+02, 4.52409336e+02, 4.52409336e+02, 4.52409336e+02,
4.49287031e+02, 4.49287031e+02, 4.49287031e+02, 4.49287031e+02,
4.48422944e+02, 4.48422944e+02, 4.48422944e+02, 4.48422944e+02,
4.48631188e+02, 4.48631188e+02, 4.48631188e+02, 4.48631188e+02,
4.50271228e+02, 4.50271228e+02, 4.50271228e+02, 4.50271228e+02,
4.51662913e+02, 4.51662913e+02, 4.51662913e+02, 4.51662913e+02,
4.52490638e+02, 4.52490638e+02, 4.52490638e+02, 4.52490638e+02,
4.53096587e+02, 4.53096587e+02, 4.53096587e+02, 4.53096587e+02,
4.53627004e+02, 4.53627004e+02, 4.53627004e+02, 4.53627004e+02,
4.54138029e+02, 4.54138029e+02, 4.54138029e+02, 4.54138029e+02,
4.54640997e+02, 4.54640997e+02, 4.54640997e+02, 4.54640997e+02,
4.55121718e+02, 4.55121718e+02, 4.55121718e+02, 4.55121718e+02,
4.55558744e+02, 4.55558744e+02, 4.55558744e+02, 4.55558744e+02,
4.55935595e+02, 4.55935595e+02, 4.55935595e+02, 4.55935595e+02,
4.56261121e+02, 4.56261121e+02, 4.56261121e+02, 4.56261121e+02,
4.56558739e+02, 4.56558739e+02, 4.56558739e+02, 4.56558739e+02,
4.56826197e+02, 4.56826197e+02, 4.56826197e+02, 4.56826197e+02,
4.57052328e+02, 4.57052328e+02, 4.57052328e+02, 4.57052328e+02,
4.57257152e+02, 4.57257152e+02, 4.57257152e+02, 4.57257152e+02,
4.57467024e+02, 4.57467024e+02, 4.57467024e+02, 4.57467024e+02,
4.57704540e+02, 4.57704540e+02, 4.57704540e+02, 4.57704540e+02,
4.58066570e+02, 4.58066570e+02, 4.58066570e+02, 4.58066570e+02,
4.58479576e+02, 4.58479576e+02, 4.58479576e+02, 4.58479576e+02,
4.57718684e+02, 4.57718684e+02, 4.57718684e+02, 4.57718684e+02,
4.49845047e+02, 4.49845047e+02, 4.49845047e+02, 4.49845047e+02,
4.09389299e+02, 4.09389299e+02, 4.09389299e+02, 4.09389299e+02,
2.68194998e+02, 2.68194998e+02, 2.68194998e+02, 2.68194998e+02,
5.60520652e+01, 5.60520652e+01, 5.60520652e+01, 5.60520652e+01,
1.14557313e+00, 1.14557313e+00, 1.14557313e+00, 1.14557313e+00,
1.08687798e-02, 1.08687798e-02, 1.08687798e-02, 1.08687798e-02,
1.00000791e-02, 1.00000791e-02, 1.00000791e-02, 1.00000791e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hllc': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99854666, 0.99854666, 0.99854666, 0.99854666,
0.96845715, 0.96845715, 0.96845715, 0.96845715, 0.81981135,
0.81981135, 0.81981135, 0.81981135, 1.13644411, 1.13644411,
1.13644411, 1.13644411, 1.07459565, 1.07459565, 1.07459565,
1.07459565, 1.00214509, 1.00214509, 1.00214509, 1.00214509,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.44580810e-02, 5.44580810e-02, 5.44580810e-02, 5.44580810e-02,
1.19786475e+00, 1.19786475e+00, 1.19786475e+00, 1.19786475e+00,
7.52224860e+00, 7.52224860e+00, 7.52224860e+00, 7.52224860e+00,
9.36380750e+00, 9.36380750e+00, 9.36380750e+00, 9.36380750e+00,
1.09132154e+00, 1.09132154e+00, 1.09132154e+00, 1.09132154e+00,
4.34109741e-03, 4.34109741e-03, 4.34109741e-03, 4.34109741e-03,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.97973078e+02, 9.97973078e+02, 9.97973078e+02, 9.97973078e+02,
9.57196315e+02, 9.57196315e+02, 9.57196315e+02, 9.57196315e+02,
7.89728589e+02, 7.89728589e+02, 7.89728589e+02, 7.89728589e+02,
2.18172604e+02, 2.18172604e+02, 2.18172604e+02, 2.18172604e+02,
7.20466733e+00, 7.20466733e+00, 7.20466733e+00, 7.20466733e+00,
1.36969674e-02, 1.36969674e-02, 1.36969674e-02, 1.36969674e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999529,
0.99999529, 0.99999529, 0.99999529, 0.99981164, 0.99981164,
0.99981164, 0.99981164, 0.99702376, 0.99702376, 0.99702376,
0.99702376, 0.97590016, 0.97590016, 0.97590016, 0.97590016,
0.88930972, 0.88930972, 0.88930972, 0.88930972, 0.71365932,
0.71365932, 0.71365932, 0.71365932, 1.0710902 , 1.0710902 ,
1.0710902 , 1.0710902 , 1.31137332, 1.31137332, 1.31137332,
1.31137332, 1.04072233, 1.04072233, 1.04072233, 1.04072233,
1.00111398, 1.00111398, 1.00111398, 1.00111398, 1.00000029,
1.00000029, 1.00000029, 1.00000029, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.76253247e-04, 1.76253247e-04, 1.76253247e-04, 1.76253247e-04,
7.04865623e-03, 7.04865623e-03, 7.04865623e-03, 7.04865623e-03,
1.11518467e-01, 1.11518467e-01, 1.11518467e-01, 1.11518467e-01,
9.09502205e-01, 9.09502205e-01, 9.09502205e-01, 9.09502205e-01,
4.30216737e+00, 4.30216737e+00, 4.30216737e+00, 4.30216737e+00,
1.18379965e+01, 1.18379965e+01, 1.18379965e+01, 1.18379965e+01,
1.62384269e+01, 1.62384269e+01, 1.62384269e+01, 1.62384269e+01,
5.70889156e+00, 5.70889156e+00, 5.70889156e+00, 5.70889156e+00,
2.30200189e-01, 2.30200189e-01, 2.30200189e-01, 2.30200189e-01,
4.83684047e-04, 4.83684047e-04, 4.83684047e-04, 4.83684047e-04,
3.42098651e-08, 3.42098651e-08, 3.42098651e-08, 3.42098651e-08,
1.01319811e-12, 1.01319811e-12, 1.01319811e-12, 1.01319811e-12,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99993405e+02, 9.99993405e+02, 9.99993405e+02, 9.99993405e+02,
9.99736354e+02, 9.99736354e+02, 9.99736354e+02, 9.99736354e+02,
9.95842977e+02, 9.95842977e+02, 9.95842977e+02, 9.95842977e+02,
9.66708286e+02, 9.66708286e+02, 9.66708286e+02, 9.66708286e+02,
8.52052998e+02, 8.52052998e+02, 8.52052998e+02, 8.52052998e+02,
6.72236296e+02, 6.72236296e+02, 6.72236296e+02, 6.72236296e+02,
3.62410250e+02, 3.62410250e+02, 3.62410250e+02, 3.62410250e+02,
6.19189240e+01, 6.19189240e+01, 6.19189240e+01, 6.19189240e+01,
6.26948951e-01, 6.26948951e-01, 6.26948951e-01, 6.26948951e-01,
1.01072359e-02, 1.01072359e-02, 1.01072359e-02, 1.01072359e-02,
1.00000040e-02, 1.00000040e-02, 1.00000040e-02, 1.00000040e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999888, 0.99999888, 0.99999888, 0.99999888,
0.99997445, 0.99997445, 0.99997445, 0.99997445, 0.99964871,
0.99964871, 0.99964871, 0.99964871, 0.99689733, 0.99689733,
0.99689733, 0.99689733, 0.98193702, 0.98193702, 0.98193702,
0.98193702, 0.9295722 , 0.9295722 , 0.9295722 , 0.9295722 ,
0.81296623, 0.81296623, 0.81296623, 0.81296623, 0.63611418,
0.63611418, 0.63611418, 0.63611418, 0.88414578, 0.88414578,
0.88414578, 0.88414578, 1.57593929, 1.57593929, 1.57593929,
1.57593929, 1.1715463 , 1.1715463 , 1.1715463 , 1.1715463 ,
1.01116974, 1.01116974, 1.01116974, 1.01116974, 1.0000899 ,
1.0000899 , 1.0000899 , 1.0000899 , 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
7.97153187e-09, 7.97153187e-09, 7.97153187e-09, 7.97153187e-09,
9.70027498e-07, 9.70027498e-07, 9.70027498e-07, 9.70027498e-07,
4.20269589e-05, 4.20269589e-05, 4.20269589e-05, 4.20269589e-05,
9.55942471e-04, 9.55942471e-04, 9.55942471e-04, 9.55942471e-04,
1.31460868e-02, 1.31460868e-02, 1.31460868e-02, 1.31460868e-02,
1.16219529e-01, 1.16219529e-01, 1.16219529e-01, 1.16219529e-01,
6.79969081e-01, 6.79969081e-01, 6.79969081e-01, 6.79969081e-01,
2.70215530e+00, 2.70215530e+00, 2.70215530e+00, 2.70215530e+00,
7.57490575e+00, 7.57490575e+00, 7.57490575e+00, 7.57490575e+00,
1.47743231e+01, 1.47743231e+01, 1.47743231e+01, 1.47743231e+01,
2.03840035e+01, 2.03840035e+01, 2.03840035e+01, 2.03840035e+01,
1.19115601e+01, 1.19115601e+01, 1.19115601e+01, 1.19115601e+01,
1.63710471e+00, 1.63710471e+00, 1.63710471e+00, 1.63710471e+00,
2.10715183e-02, 2.10715183e-02, 2.10715183e-02, 2.10715183e-02,
1.32818490e-05, 1.32818490e-05, 1.32818490e-05, 1.32818490e-05,
1.21621831e-09, 1.21621831e-09, 1.21621831e-09, 1.21621831e-09,
8.57861505e-14, 8.57861505e-14, 8.57861505e-14, 8.57861505e-14,
4.41228789e-18, 4.41228789e-18, 4.41228789e-18, 4.41228789e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999964e+02, 9.99999964e+02, 9.99999964e+02, 9.99999964e+02,
9.99998427e+02, 9.99998427e+02, 9.99998427e+02, 9.99998427e+02,
9.99964233e+02, 9.99964233e+02, 9.99964233e+02, 9.99964233e+02,
9.99508326e+02, 9.99508326e+02, 9.99508326e+02, 9.99508326e+02,
9.95664278e+02, 9.95664278e+02, 9.95664278e+02, 9.95664278e+02,
9.74918203e+02, 9.74918203e+02, 9.74918203e+02, 9.74918203e+02,
9.03858041e+02, 9.03858041e+02, 9.03858041e+02, 9.03858041e+02,
7.52615431e+02, 7.52615431e+02, 7.52615431e+02, 7.52615431e+02,
5.88404204e+02, 5.88404204e+02, 5.88404204e+02, 5.88404204e+02,
4.31076258e+02, 4.31076258e+02, 4.31076258e+02, 4.31076258e+02,
1.87860435e+02, 1.87860435e+02, 1.87860435e+02, 1.87860435e+02,
8.76910821e+00, 8.76910821e+00, 8.76910821e+00, 8.76910821e+00,
2.98951467e-02, 2.98951467e-02, 2.98951467e-02, 2.98951467e-02,
1.00015908e-02, 1.00015908e-02, 1.00015908e-02, 1.00015908e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999979, 0.99999979,
0.99999979, 0.99999979, 0.9999963 , 0.9999963 , 0.9999963 ,
0.9999963 , 0.99995364, 0.99995364, 0.99995364, 0.99995364,
0.99957767, 0.99957767, 0.99957767, 0.99957767, 0.99718309,
0.99718309, 0.99718309, 0.99718309, 0.98626394, 0.98626394,
0.98626394, 0.98626394, 0.95106797, 0.95106797, 0.95106797,
0.95106797, 0.87123171, 0.87123171, 0.87123171, 0.87123171,
0.74547768, 0.74547768, 0.74547768, 0.74547768, 0.58374479,
0.58374479, 0.58374479, 0.58374479, 0.73207392, 0.73207392,
0.73207392, 0.73207392, 1.60503247, 1.60503247, 1.60503247,
1.60503247, 1.47308433, 1.47308433, 1.47308433, 1.47308433,
1.05348836, 1.05348836, 1.05348836, 1.05348836, 1.00182288,
1.00182288, 1.00182288, 1.00182288, 1.00000147, 1.00000147,
1.00000147, 1.00000147, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
6.26870362e-13, 6.26870362e-13, 6.26870362e-13, 6.26870362e-13,
1.08486278e-10, 1.08486278e-10, 1.08486278e-10, 1.08486278e-10,
7.72018265e-09, 7.72018265e-09, 7.72018265e-09, 7.72018265e-09,
3.08421177e-07, 3.08421177e-07, 3.08421177e-07, 3.08421177e-07,
7.88931508e-06, 7.88931508e-06, 7.88931508e-06, 7.88931508e-06,
1.38505209e-04, 1.38505209e-04, 1.38505209e-04, 1.38505209e-04,
1.73457409e-03, 1.73457409e-03, 1.73457409e-03, 1.73457409e-03,
1.58044887e-02, 1.58044887e-02, 1.58044887e-02, 1.58044887e-02,
1.05496410e-01, 1.05496410e-01, 1.05496410e-01, 1.05496410e-01,
5.16306177e-01, 5.16306177e-01, 5.16306177e-01, 5.16306177e-01,
1.86327287e+00, 1.86327287e+00, 1.86327287e+00, 1.86327287e+00,
5.07718607e+00, 5.07718607e+00, 5.07718607e+00, 5.07718607e+00,
1.06862908e+01, 1.06862908e+01, 1.06862908e+01, 1.06862908e+01,
1.67930222e+01, 1.67930222e+01, 1.67930222e+01, 1.67930222e+01,
2.18771845e+01, 2.18771845e+01, 2.18771845e+01, 2.18771845e+01,
1.69221015e+01, 1.69221015e+01, 1.69221015e+01, 1.69221015e+01,
5.93555418e+00, 5.93555418e+00, 5.93555418e+00, 5.93555418e+00,
2.67386567e-01, 2.67386567e-01, 2.67386567e-01, 2.67386567e-01,
9.03539515e-04, 9.03539515e-04, 9.03539515e-04, 9.03539515e-04,
1.74483618e-07, 1.74483618e-07, 1.74483618e-07, 1.74483618e-07,
2.04118254e-11, 2.04118254e-11, 2.04118254e-11, 2.04118254e-11,
2.17016642e-15, 2.17016642e-15, 2.17016642e-15, 2.17016642e-15,
1.97944057e-19, 1.97944057e-19, 1.97944057e-19, 1.97944057e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999705e+02, 9.99999705e+02, 9.99999705e+02, 9.99999705e+02,
9.99994818e+02, 9.99994818e+02, 9.99994818e+02, 9.99994818e+02,
9.99935102e+02, 9.99935102e+02, 9.99935102e+02, 9.99935102e+02,
9.99408895e+02, 9.99408895e+02, 9.99408895e+02, 9.99408895e+02,
9.96061988e+02, 9.96061988e+02, 9.96061988e+02, 9.96061988e+02,
9.80877450e+02, 9.80877450e+02, 9.80877450e+02, 9.80877450e+02,
9.32612348e+02, 9.32612348e+02, 9.32612348e+02, 9.32612348e+02,
8.26315203e+02, 8.26315203e+02, 8.26315203e+02, 8.26315203e+02,
6.66605385e+02, 6.66605385e+02, 6.66605385e+02, 6.66605385e+02,
5.27625315e+02, 5.27625315e+02, 5.27625315e+02, 5.27625315e+02,
4.48693030e+02, 4.48693030e+02, 4.48693030e+02, 4.48693030e+02,
3.34282701e+02, 3.34282701e+02, 3.34282701e+02, 3.34282701e+02,
5.93797144e+01, 5.93797144e+01, 5.93797144e+01, 5.93797144e+01,
6.98066976e-01, 6.98066976e-01, 6.98066976e-01, 6.98066976e-01,
1.02408618e-02, 1.02408618e-02, 1.02408618e-02, 1.02408618e-02,
1.00000206e-02, 1.00000206e-02, 1.00000206e-02, 1.00000206e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999945,
0.99999945, 0.99999945, 0.99999945, 0.99999352, 0.99999352,
0.99999352, 0.99999352, 0.99994026, 0.99994026, 0.99994026,
0.99994026, 0.99956877, 0.99956877, 0.99956877, 0.99956877,
0.99757146, 0.99757146, 0.99757146, 0.99757146, 0.98940582,
0.98940582, 0.98940582, 0.98940582, 0.96438863, 0.96438863,
0.96438863, 0.96438863, 0.90735626, 0.90735626, 0.90735626,
0.90735626, 0.80924072, 0.80924072, 0.80924072, 0.80924072,
0.69259558, 0.69259558, 0.69259558, 0.69259558, 0.55553296,
0.55553296, 0.55553296, 0.55553296, 0.63553693, 0.63553693,
0.63553693, 0.63553693, 1.41397872, 1.41397872, 1.41397872,
1.41397872, 1.81820124, 1.81820124, 1.81820124, 1.81820124,
1.20387024, 1.20387024, 1.20387024, 1.20387024, 1.01269879,
1.01269879, 1.01269879, 1.01269879, 1.00012068, 1.00012068,
1.00012068, 1.00012068, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.25264676e-14, 1.25264676e-14, 1.25264676e-14, 1.25264676e-14,
1.20223771e-12, 1.20223771e-12, 1.20223771e-12, 1.20223771e-12,
6.76403932e-11, 6.76403932e-11, 6.76403932e-11, 6.76403932e-11,
2.53837542e-09, 2.53837542e-09, 2.53837542e-09, 2.53837542e-09,
6.79851771e-08, 6.79851771e-08, 6.79851771e-08, 6.79851771e-08,
1.35400957e-06, 1.35400957e-06, 1.35400957e-06, 1.35400957e-06,
2.05807406e-05, 2.05807406e-05, 2.05807406e-05, 2.05807406e-05,
2.42573789e-04, 2.42573789e-04, 2.42573789e-04, 2.42573789e-04,
2.23546366e-03, 2.23546366e-03, 2.23546366e-03, 2.23546366e-03,
1.61374184e-02, 1.61374184e-02, 1.61374184e-02, 1.61374184e-02,
9.09392120e-02, 9.09392120e-02, 9.09392120e-02, 9.09392120e-02,
3.97807519e-01, 3.97807519e-01, 3.97807519e-01, 3.97807519e-01,
1.34962483e+00, 1.34962483e+00, 1.34962483e+00, 1.34962483e+00,
3.59635188e+00, 3.59635188e+00, 3.59635188e+00, 3.59635188e+00,
7.76598011e+00, 7.76598011e+00, 7.76598011e+00, 7.76598011e+00,
1.32165654e+01, 1.32165654e+01, 1.32165654e+01, 1.32165654e+01,
1.80416341e+01, 1.80416341e+01, 1.80416341e+01, 1.80416341e+01,
2.21202361e+01, 2.21202361e+01, 2.21202361e+01, 2.21202361e+01,
1.94936742e+01, 1.94936742e+01, 1.94936742e+01, 1.94936742e+01,
1.19370184e+01, 1.19370184e+01, 1.19370184e+01, 1.19370184e+01,
1.76105690e+00, 1.76105690e+00, 1.76105690e+00, 1.76105690e+00,
2.41795528e-02, 2.41795528e-02, 2.41795528e-02, 2.41795528e-02,
1.84851625e-05, 1.84851625e-05, 1.84851625e-05, 1.84851625e-05,
2.29350661e-09, 2.29350661e-09, 2.29350661e-09, 2.29350661e-09,
2.81251593e-13, 2.81251593e-13, 2.81251593e-13, 2.81251593e-13,
3.33754952e-17, 3.33754952e-17, 3.33754952e-17, 3.33754952e-17,
3.64817469e-21, 3.64817469e-21, 3.64817469e-21, 3.64817469e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999949e+02, 9.99999949e+02, 9.99999949e+02, 9.99999949e+02,
9.99999230e+02, 9.99999230e+02, 9.99999230e+02, 9.99999230e+02,
9.99990924e+02, 9.99990924e+02, 9.99990924e+02, 9.99990924e+02,
9.99916362e+02, 9.99916362e+02, 9.99916362e+02, 9.99916362e+02,
9.99396422e+02, 9.99396422e+02, 9.99396422e+02, 9.99396422e+02,
9.96603842e+02, 9.96603842e+02, 9.96603842e+02, 9.96603842e+02,
9.85228286e+02, 9.85228286e+02, 9.85228286e+02, 9.85228286e+02,
9.50716061e+02, 9.50716061e+02, 9.50716061e+02, 9.50716061e+02,
8.73656108e+02, 8.73656108e+02, 8.73656108e+02, 8.73656108e+02,
7.45930207e+02, 7.45930207e+02, 7.45930207e+02, 7.45930207e+02,
5.98241504e+02, 5.98241504e+02, 5.98241504e+02, 5.98241504e+02,
4.88987461e+02, 4.88987461e+02, 4.88987461e+02, 4.88987461e+02,
4.47945739e+02, 4.47945739e+02, 4.47945739e+02, 4.47945739e+02,
4.21683465e+02, 4.21683465e+02, 4.21683465e+02, 4.21683465e+02,
1.87467920e+02, 1.87467920e+02, 1.87467920e+02, 1.87467920e+02,
9.17847574e+00, 9.17847574e+00, 9.17847574e+00, 9.17847574e+00,
3.36232559e-02, 3.36232559e-02, 3.36232559e-02, 3.36232559e-02,
1.00022223e-02, 1.00022223e-02, 1.00022223e-02, 1.00022223e-02,
1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999992, 0.99999992, 0.99999992, 0.99999992,
0.99999906, 0.99999906, 0.99999906, 0.99999906, 0.9999913 ,
0.9999913 , 0.9999913 , 0.9999913 , 0.99993411, 0.99993411,
0.99993411, 0.99993411, 0.99959236, 0.99959236, 0.99959236,
0.99959236, 0.99795381, 0.99795381, 0.99795381, 0.99795381,
0.99173747, 0.99173747, 0.99173747, 0.99173747, 0.97334866,
0.97334866, 0.97334866, 0.97334866, 0.93132225, 0.93132225,
0.93132225, 0.93132225, 0.85670103, 0.85670103, 0.85670103,
0.85670103, 0.75179519, 0.75179519, 0.75179519, 0.75179519,
0.65703686, 0.65703686, 0.65703686, 0.65703686, 0.54101531,
0.54101531, 0.54101531, 0.54101531, 0.58205108, 0.58205108,
0.58205108, 0.58205108, 1.1130807 , 1.1130807 , 1.1130807 ,
1.1130807 , 1.96862265, 1.96862265, 1.96862265, 1.96862265,
1.57590593, 1.57590593, 1.57590593, 1.57590593, 1.05786987,
1.05786987, 1.05786987, 1.05786987, 1.00204055, 1.00204055,
1.00204055, 1.00204055, 1.0000019 , 1.0000019 , 1.0000019 ,
1.0000019 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.32029549e-14, 1.32029549e-14, 1.32029549e-14, 1.32029549e-14,
6.26759693e-13, 6.26759693e-13, 6.26759693e-13, 6.26759693e-13,
2.24647978e-11, 2.24647978e-11, 2.24647978e-11, 2.24647978e-11,
6.13853404e-10, 6.13853404e-10, 6.13853404e-10, 6.13853404e-10,
1.31518549e-08, 1.31518549e-08, 1.31518549e-08, 1.31518549e-08,
2.25105226e-07, 2.25105226e-07, 2.25105226e-07, 2.25105226e-07,
3.11704412e-06, 3.11704412e-06, 3.11704412e-06, 3.11704412e-06,
3.51988240e-05, 3.51988240e-05, 3.51988240e-05, 3.51988240e-05,
3.25473435e-04, 3.25473435e-04, 3.25473435e-04, 3.25473435e-04,
2.46554838e-03, 2.46554838e-03, 2.46554838e-03, 2.46554838e-03,
1.52545971e-02, 1.52545971e-02, 1.52545971e-02, 1.52545971e-02,
7.66123068e-02, 7.66123068e-02, 7.66123068e-02, 7.66123068e-02,
3.10021140e-01, 3.10021140e-01, 3.10021140e-01, 3.10021140e-01,
1.00682526e+00, 1.00682526e+00, 1.00682526e+00, 1.00682526e+00,
2.63965332e+00, 2.63965332e+00, 2.63965332e+00, 2.63965332e+00,
5.70034900e+00, 5.70034900e+00, 5.70034900e+00, 5.70034900e+00,
1.04061053e+01, 1.04061053e+01, 1.04061053e+01, 1.04061053e+01,
1.52105883e+01, 1.52105883e+01, 1.52105883e+01, 1.52105883e+01,
1.89069479e+01, 1.89069479e+01, 1.89069479e+01, 1.89069479e+01,
2.15955068e+01, 2.15955068e+01, 2.15955068e+01, 2.15955068e+01,
2.04770440e+01, 2.04770440e+01, 2.04770440e+01, 2.04770440e+01,
1.67010242e+01, 1.67010242e+01, 1.67010242e+01, 1.67010242e+01,
6.26776546e+00, 6.26776546e+00, 6.26776546e+00, 6.26776546e+00,
2.93122578e-01, 2.93122578e-01, 2.93122578e-01, 2.93122578e-01,
1.07322557e-03, 1.07322557e-03, 1.07322557e-03, 1.07322557e-03,
2.25735626e-07, 2.25735626e-07, 2.25735626e-07, 2.25735626e-07,
2.90996976e-11, 2.90996976e-11, 2.90996976e-11, 2.90996976e-11,
3.74345106e-15, 3.74345106e-15, 3.74345106e-15, 3.74345106e-15,
4.59216061e-19, 4.59216061e-19, 4.59216061e-19, 4.59216061e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999883e+02, 9.99999883e+02, 9.99999883e+02, 9.99999883e+02,
9.99998683e+02, 9.99998683e+02, 9.99998683e+02, 9.99998683e+02,
9.99987822e+02, 9.99987822e+02, 9.99987822e+02, 9.99987822e+02,
9.99907753e+02, 9.99907753e+02, 9.99907753e+02, 9.99907753e+02,
9.99429417e+02, 9.99429417e+02, 9.99429417e+02, 9.99429417e+02,
9.97137849e+02, 9.97137849e+02, 9.97137849e+02, 9.97137849e+02,
9.88467410e+02, 9.88467410e+02, 9.88467410e+02, 9.88467410e+02,
9.63001130e+02, 9.63001130e+02, 9.63001130e+02, 9.63001130e+02,
9.05679035e+02, 9.05679035e+02, 9.05679035e+02, 9.05679035e+02,
8.06647957e+02, 8.06647957e+02, 8.06647957e+02, 8.06647957e+02,
6.73299670e+02, 6.73299670e+02, 6.73299670e+02, 6.73299670e+02,
5.52322864e+02, 5.52322864e+02, 5.52322864e+02, 5.52322864e+02,
4.63896638e+02, 4.63896638e+02, 4.63896638e+02, 4.63896638e+02,
4.40267965e+02, 4.40267965e+02, 4.40267965e+02, 4.40267965e+02,
4.55404885e+02, 4.55404885e+02, 4.55404885e+02, 4.55404885e+02,
3.30608875e+02, 3.30608875e+02, 3.30608875e+02, 3.30608875e+02,
6.09057285e+01, 6.09057285e+01, 6.09057285e+01, 6.09057285e+01,
7.84789333e-01, 7.84789333e-01, 7.84789333e-01, 7.84789333e-01,
1.03005361e-02, 1.03005361e-02, 1.03005361e-02, 1.03005361e-02,
1.00000267e-02, 1.00000267e-02, 1.00000267e-02, 1.00000267e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999871, 0.99999871, 0.99999871, 0.99999871,
0.99998991, 0.99998991, 0.99998991, 0.99998991, 0.99993341,
0.99993341, 0.99993341, 0.99993341, 0.9996311 , 0.9996311 ,
0.9996311 , 0.9996311 , 0.99829672, 0.99829672, 0.99829672,
0.99829672, 0.99350175, 0.99350175, 0.99350175, 0.99350175,
0.97967166, 0.97967166, 0.97967166, 0.97967166, 0.94797565,
0.94797565, 0.94797565, 0.94797565, 0.89016937, 0.89016937,
0.89016937, 0.89016937, 0.80411713, 0.80411713, 0.80411713,
0.80411713, 0.70435588, 0.70435588, 0.70435588, 0.70435588,
0.63219176, 0.63219176, 0.63219176, 0.63219176, 0.53878399,
0.53878399, 0.53878399, 0.53878399, 0.55643947, 0.55643947,
0.55643947, 0.55643947, 0.8772511 , 0.8772511 , 0.8772511 ,
0.8772511 , 1.82224154, 1.82224154, 1.82224154, 1.82224154,
2.01854416, 2.01854416, 2.01854416, 2.01854416, 1.22314586,
1.22314586, 1.22314586, 1.22314586, 1.01361896, 1.01361896,
1.01361896, 1.01361896, 1.00014201, 1.00014201, 1.00014201,
1.00014201, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.66827014e-15, 5.66827014e-15, 5.66827014e-15, 5.66827014e-15,
2.06506951e-13, 2.06506951e-13, 2.06506951e-13, 2.06506951e-13,
5.66830764e-12, 5.66830764e-12, 5.66830764e-12, 5.66830764e-12,
1.27515789e-10, 1.27515789e-10, 1.27515789e-10, 1.27515789e-10,
2.36717323e-09, 2.36717323e-09, 2.36717323e-09, 2.36717323e-09,
3.66285384e-08, 3.66285384e-08, 3.66285384e-08, 3.66285384e-08,
4.75793331e-07, 4.75793331e-07, 4.75793331e-07, 4.75793331e-07,
5.21185121e-06, 5.21185121e-06, 5.21185121e-06, 5.21185121e-06,
4.82519858e-05, 4.82519858e-05, 4.82519858e-05, 4.82519858e-05,
3.77579977e-04, 3.77579977e-04, 3.77579977e-04, 3.77579977e-04,
2.49179255e-03, 2.49179255e-03, 2.49179255e-03, 2.49179255e-03,
1.38047063e-02, 1.38047063e-02, 1.38047063e-02, 1.38047063e-02,
6.37665597e-02, 6.37665597e-02, 6.37665597e-02, 6.37665597e-02,
2.43683102e-01, 2.43683102e-01, 2.43683102e-01, 2.43683102e-01,
7.66223944e-01, 7.66223944e-01, 7.66223944e-01, 7.66223944e-01,
1.98617391e+00, 1.98617391e+00, 1.98617391e+00, 1.98617391e+00,
4.30205955e+00, 4.30205955e+00, 4.30205955e+00, 4.30205955e+00,
8.00059653e+00, 8.00059653e+00, 8.00059653e+00, 8.00059653e+00,
1.25346822e+01, 1.25346822e+01, 1.25346822e+01, 1.25346822e+01,
1.68111435e+01, 1.68111435e+01, 1.68111435e+01, 1.68111435e+01,
1.95788515e+01, 1.95788515e+01, 1.95788515e+01, 1.95788515e+01,
2.10731533e+01, 2.10731533e+01, 2.10731533e+01, 2.10731533e+01,
2.05578258e+01, 2.05578258e+01, 2.05578258e+01, 2.05578258e+01,
1.90079024e+01, 1.90079024e+01, 1.90079024e+01, 1.90079024e+01,
1.21008552e+01, 1.21008552e+01, 1.21008552e+01, 1.21008552e+01,
1.89958249e+00, 1.89958249e+00, 1.89958249e+00, 1.89958249e+00,
2.69248743e-02, 2.69248743e-02, 2.69248743e-02, 2.69248743e-02,
2.23176477e-05, 2.23176477e-05, 2.23176477e-05, 2.23176477e-05,
2.89290650e-09, 2.89290650e-09, 2.89290650e-09, 2.89290650e-09,
3.71325919e-13, 3.71325919e-13, 3.71325919e-13, 3.71325919e-13,
4.73822364e-17, 4.73822364e-17, 4.73822364e-17, 4.73822364e-17,
4.48577786e-21, 4.48577786e-21, 4.48577786e-21, 4.48577786e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999982e+02, 9.99999982e+02, 9.99999982e+02, 9.99999982e+02,
9.99999805e+02, 9.99999805e+02, 9.99999805e+02, 9.99999805e+02,
9.99998195e+02, 9.99998195e+02, 9.99998195e+02, 9.99998195e+02,
9.99985872e+02, 9.99985872e+02, 9.99985872e+02, 9.99985872e+02,
9.99906771e+02, 9.99906771e+02, 9.99906771e+02, 9.99906771e+02,
9.99483625e+02, 9.99483625e+02, 9.99483625e+02, 9.99483625e+02,
9.97617059e+02, 9.97617059e+02, 9.97617059e+02, 9.97617059e+02,
9.90923338e+02, 9.90923338e+02, 9.90923338e+02, 9.90923338e+02,
9.71719329e+02, 9.71719329e+02, 9.71719329e+02, 9.71719329e+02,
9.28208660e+02, 9.28208660e+02, 9.28208660e+02, 9.28208660e+02,
8.50492018e+02, 8.50492018e+02, 8.50492018e+02, 8.50492018e+02,
7.38645328e+02, 7.38645328e+02, 7.38645328e+02, 7.38645328e+02,
6.14927640e+02, 6.14927640e+02, 6.14927640e+02, 6.14927640e+02,
5.21794916e+02, 5.21794916e+02, 5.21794916e+02, 5.21794916e+02,
4.51902595e+02, 4.51902595e+02, 4.51902595e+02, 4.51902595e+02,
4.36518666e+02, 4.36518666e+02, 4.36518666e+02, 4.36518666e+02,
4.58585341e+02, 4.58585341e+02, 4.58585341e+02, 4.58585341e+02,
4.14979500e+02, 4.14979500e+02, 4.14979500e+02, 4.14979500e+02,
1.85583423e+02, 1.85583423e+02, 1.85583423e+02, 1.85583423e+02,
9.86901789e+00, 9.86901789e+00, 9.86901789e+00, 9.86901789e+00,
3.72214496e-02, 3.72214496e-02, 3.72214496e-02, 3.72214496e-02,
1.00026945e-02, 1.00026945e-02, 1.00026945e-02, 1.00026945e-02,
1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999981, 0.99999981,
0.99999981, 0.99999981, 0.99999845, 0.99999845, 0.99999845,
0.99999845, 0.99998928, 0.99998928, 0.99998928, 0.99998928,
0.9999362 , 0.9999362 , 0.9999362 , 0.9999362 , 0.99967491,
0.99967491, 0.99967491, 0.99967491, 0.99859164, 0.99859164,
0.99859164, 0.99859164, 0.99485567, 0.99485567, 0.99485567,
0.99485567, 0.98427987, 0.98427987, 0.98427987, 0.98427987,
0.95996373, 0.95996373, 0.95996373, 0.95996373, 0.91464439,
0.91464439, 0.91464439, 0.91464439, 0.8452093 , 0.8452093 ,
0.8452093 , 0.8452093 , 0.75573999, 0.75573999, 0.75573999,
0.75573999, 0.66831355, 0.66831355, 0.66831355, 0.66831355,
0.61265528, 0.61265528, 0.61265528, 0.61265528, 0.54245435,
0.54245435, 0.54245435, 0.54245435, 0.54720556, 0.54720556,
0.54720556, 0.54720556, 0.73287 , 0.73287 , 0.73287 ,
0.73287 , 1.49708567, 1.49708567, 1.49708567, 1.49708567,
2.23159213, 2.23159213, 2.23159213, 2.23159213, 1.65090941,
1.65090941, 1.65090941, 1.65090941, 1.06180375, 1.06180375,
1.06180375, 1.06180375, 1.00222479, 1.00222479, 1.00222479,
1.00222479, 1.00000228, 1.00000228, 1.00000228, 1.00000228,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.18160649e-15, 1.18160649e-15, 1.18160649e-15, 1.18160649e-15,
5.46295183e-14, 5.46295183e-14, 5.46295183e-14, 5.46295183e-14,
1.23457577e-12, 1.23457577e-12, 1.23457577e-12, 1.23457577e-12,
2.43162832e-11, 2.43162832e-11, 2.43162832e-11, 2.43162832e-11,
4.08347672e-10, 4.08347672e-10, 4.08347672e-10, 4.08347672e-10,
5.88078054e-09, 5.88078054e-09, 5.88078054e-09, 5.88078054e-09,
7.29422461e-08, 7.29422461e-08, 7.29422461e-08, 7.29422461e-08,
7.81392346e-07, 7.81392346e-07, 7.81392346e-07, 7.81392346e-07,
7.23903884e-06, 7.23903884e-06, 7.23903884e-06, 7.23903884e-06,
5.79920652e-05, 5.79920652e-05, 5.79920652e-05, 5.79920652e-05,
4.01085979e-04, 4.01085979e-04, 4.01085979e-04, 4.01085979e-04,
2.38716000e-03, 2.38716000e-03, 2.38716000e-03, 2.38716000e-03,
1.21649982e-02, 1.21649982e-02, 1.21649982e-02, 1.21649982e-02,
5.27208845e-02, 5.27208845e-02, 5.27208845e-02, 5.27208845e-02,
1.92824879e-01, 1.92824879e-01, 1.92824879e-01, 1.92824879e-01,
5.91551803e-01, 5.91551803e-01, 5.91551803e-01, 5.91551803e-01,
1.52124836e+00, 1.52124836e+00, 1.52124836e+00, 1.52124836e+00,
3.30736543e+00, 3.30736543e+00, 3.30736543e+00, 3.30736543e+00,
6.19589413e+00, 6.19589413e+00, 6.19589413e+00, 6.19589413e+00,
1.02215292e+01, 1.02215292e+01, 1.02215292e+01, 1.02215292e+01,
1.42224996e+01, 1.42224996e+01, 1.42224996e+01, 1.42224996e+01,
1.79365451e+01, 1.79365451e+01, 1.79365451e+01, 1.79365451e+01,
2.00798991e+01, 2.00798991e+01, 2.00798991e+01, 2.00798991e+01,
2.07710129e+01, 2.07710129e+01, 2.07710129e+01, 2.07710129e+01,
2.03738724e+01, 2.03738724e+01, 2.03738724e+01, 2.03738724e+01,
1.98546337e+01, 1.98546337e+01, 1.98546337e+01, 1.98546337e+01,
1.64879617e+01, 1.64879617e+01, 1.64879617e+01, 1.64879617e+01,
6.52271251e+00, 6.52271251e+00, 6.52271251e+00, 6.52271251e+00,
3.18021766e-01, 3.18021766e-01, 3.18021766e-01, 3.18021766e-01,
1.23367760e-03, 1.23367760e-03, 1.23367760e-03, 1.23367760e-03,
2.70934864e-07, 2.70934864e-07, 2.70934864e-07, 2.70934864e-07,
3.52019501e-11, 3.52019501e-11, 3.52019501e-11, 3.52019501e-11,
4.64992921e-15, 4.64992921e-15, 4.64992921e-15, 4.64992921e-15,
6.02331549e-19, 6.02331549e-19, 6.02331549e-19, 6.02331549e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999971e+02, 9.99999971e+02, 9.99999971e+02, 9.99999971e+02,
9.99999729e+02, 9.99999729e+02, 9.99999729e+02, 9.99999729e+02,
9.99997830e+02, 9.99997830e+02, 9.99997830e+02, 9.99997830e+02,
9.99984993e+02, 9.99984993e+02, 9.99984993e+02, 9.99984993e+02,
9.99910685e+02, 9.99910685e+02, 9.99910685e+02, 9.99910685e+02,
9.99544941e+02, 9.99544941e+02, 9.99544941e+02, 9.99544941e+02,
9.98029370e+02, 9.98029370e+02, 9.98029370e+02, 9.98029370e+02,
9.92810695e+02, 9.92810695e+02, 9.92810695e+02, 9.92810695e+02,
9.78097477e+02, 9.78097477e+02, 9.78097477e+02, 9.78097477e+02,
9.44564417e+02, 9.44564417e+02, 9.44564417e+02, 9.44564417e+02,
8.83069293e+02, 8.83069293e+02, 8.83069293e+02, 8.83069293e+02,
7.91287043e+02, 7.91287043e+02, 7.91287043e+02, 7.91287043e+02,
6.77341634e+02, 6.77341634e+02, 6.77341634e+02, 6.77341634e+02,
5.71866254e+02, 5.71866254e+02, 5.71866254e+02, 5.71866254e+02,
4.98838482e+02, 4.98838482e+02, 4.98838482e+02, 4.98838482e+02,
4.47748470e+02, 4.47748470e+02, 4.47748470e+02, 4.47748470e+02,
4.36925122e+02, 4.36925122e+02, 4.36925122e+02, 4.36925122e+02,
4.54783175e+02, 4.54783175e+02, 4.54783175e+02, 4.54783175e+02,
4.45896460e+02, 4.45896460e+02, 4.45896460e+02, 4.45896460e+02,
3.20411762e+02, 3.20411762e+02, 3.20411762e+02, 3.20411762e+02,
6.15900758e+01, 6.15900758e+01, 6.15900758e+01, 6.15900758e+01,
8.63421907e-01, 8.63421907e-01, 8.63421907e-01, 8.63421907e-01,
1.03623773e-02, 1.03623773e-02, 1.03623773e-02, 1.03623773e-02,
1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999976,
0.99999976, 0.99999976, 0.99999976, 0.99999829, 0.99999829,
0.99999829, 0.99999829, 0.99998925, 0.99998925, 0.99998925,
0.99998925, 0.99994097, 0.99994097, 0.99994097, 0.99994097,
0.99971837, 0.99971837, 0.99971837, 0.99971837, 0.99883983,
0.99883983, 0.99883983, 0.99883983, 0.99590578, 0.99590578,
0.99590578, 0.99590578, 0.98771715, 0.98771715, 0.98771715,
0.98771715, 0.9688216 , 0.9688216 , 0.9688216 , 0.9688216 ,
0.93291927, 0.93291927, 0.93291927, 0.93291927, 0.87626891,
0.87626891, 0.87626891, 0.87626891, 0.79977768, 0.79977768,
0.79977768, 0.79977768, 0.71616692, 0.71616692, 0.71616692,
0.71616692, 0.6411649 , 0.6411649 , 0.6411649 , 0.6411649 ,
0.59775517, 0.59775517, 0.59775517, 0.59775517, 0.54673392,
0.54673392, 0.54673392, 0.54673392, 0.54631056, 0.54631056,
0.54631056, 0.54631056, 0.65073939, 0.65073939, 0.65073939,
0.65073939, 1.1624501 , 1.1624501 , 1.1624501 , 1.1624501 ,
2.15930703, 2.15930703, 2.15930703, 2.15930703, 2.16998 ,
2.16998 , 2.16998 , 2.16998 , 1.23507778, 1.23507778,
1.23507778, 1.23507778, 1.0142605 , 1.0142605 , 1.0142605 ,
1.0142605 , 1.00015687, 1.00015687, 1.00015687, 1.00015687,
1.00000003, 1.00000003, 1.00000003, 1.00000003, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.27454384e-14, 1.27454384e-14, 1.27454384e-14, 1.27454384e-14,
2.47272091e-13, 2.47272091e-13, 2.47272091e-13, 2.47272091e-13,
4.40240671e-12, 4.40240671e-12, 4.40240671e-12, 4.40240671e-12,
6.86645339e-11, 6.86645339e-11, 6.86645339e-11, 6.86645339e-11,
9.37022264e-10, 9.37022264e-10, 9.37022264e-10, 9.37022264e-10,
1.12236099e-08, 1.12236099e-08, 1.12236099e-08, 1.12236099e-08,
1.18207072e-07, 1.18207072e-07, 1.18207072e-07, 1.18207072e-07,
1.09557226e-06, 1.09557226e-06, 1.09557226e-06, 1.09557226e-06,
8.93418660e-06, 8.93418660e-06, 8.93418660e-06, 8.93418660e-06,
6.40278059e-05, 6.40278059e-05, 6.40278059e-05, 6.40278059e-05,
4.02322799e-04, 4.02322799e-04, 4.02322799e-04, 4.02322799e-04,
2.20855552e-03, 2.20855552e-03, 2.20855552e-03, 2.20855552e-03,
1.05384211e-02, 1.05384211e-02, 1.05384211e-02, 1.05384211e-02,
4.34263931e-02, 4.34263931e-02, 4.34263931e-02, 4.34263931e-02,
1.53409739e-01, 1.53409739e-01, 1.53409739e-01, 1.53409739e-01,
4.61635401e-01, 4.61635401e-01, 4.61635401e-01, 4.61635401e-01,
1.18057615e+00, 1.18057615e+00, 1.18057615e+00, 1.18057615e+00,
2.57891597e+00, 2.57891597e+00, 2.57891597e+00, 2.57891597e+00,
4.88068740e+00, 4.88068740e+00, 4.88068740e+00, 4.88068740e+00,
8.19631338e+00, 8.19631338e+00, 8.19631338e+00, 8.19631338e+00,
1.20755557e+01, 1.20755557e+01, 1.20755557e+01, 1.20755557e+01,
1.56119331e+01, 1.56119331e+01, 1.56119331e+01, 1.56119331e+01,
1.86987153e+01, 1.86987153e+01, 1.86987153e+01, 1.86987153e+01,
2.03804546e+01, 2.03804546e+01, 2.03804546e+01, 2.03804546e+01,
2.06321628e+01, 2.06321628e+01, 2.06321628e+01, 2.06321628e+01,
2.02171402e+01, 2.02171402e+01, 2.02171402e+01, 2.02171402e+01,
2.00646475e+01, 2.00646475e+01, 2.00646475e+01, 2.00646475e+01,
1.86620483e+01, 1.86620483e+01, 1.86620483e+01, 1.86620483e+01,
1.20985558e+01, 1.20985558e+01, 1.20985558e+01, 1.20985558e+01,
1.97692771e+00, 1.97692771e+00, 1.97692771e+00, 1.97692771e+00,
2.87213238e-02, 2.87213238e-02, 2.87213238e-02, 2.87213238e-02,
2.50770351e-05, 2.50770351e-05, 2.50770351e-05, 2.50770351e-05,
3.37123734e-09, 3.37123734e-09, 3.37123734e-09, 3.37123734e-09,
4.42163288e-13, 4.42163288e-13, 4.42163288e-13, 4.42163288e-13,
5.71495239e-17, 5.71495239e-17, 5.71495239e-17, 5.71495239e-17,
4.50269287e-21, 4.50269287e-21, 4.50269287e-21, 4.50269287e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
9.99999666e+02, 9.99999666e+02, 9.99999666e+02, 9.99999666e+02,
9.99997604e+02, 9.99997604e+02, 9.99997604e+02, 9.99997604e+02,
9.99984947e+02, 9.99984947e+02, 9.99984947e+02, 9.99984947e+02,
9.99917367e+02, 9.99917367e+02, 9.99917367e+02, 9.99917367e+02,
9.99605771e+02, 9.99605771e+02, 9.99605771e+02, 9.99605771e+02,
9.98376476e+02, 9.98376476e+02, 9.98376476e+02, 9.98376476e+02,
9.94276002e+02, 9.94276002e+02, 9.94276002e+02, 9.94276002e+02,
9.82867864e+02, 9.82867864e+02, 9.82867864e+02, 9.82867864e+02,
9.56722442e+02, 9.56722442e+02, 9.56722442e+02, 9.56722442e+02,
9.07673554e+02, 9.07673554e+02, 9.07673554e+02, 9.07673554e+02,
8.31875435e+02, 8.31875435e+02, 8.31875435e+02, 8.31875435e+02,
7.32668167e+02, 7.32668167e+02, 7.32668167e+02, 7.32668167e+02,
6.27675900e+02, 6.27675900e+02, 6.27675900e+02, 6.27675900e+02,
5.40641296e+02, 5.40641296e+02, 5.40641296e+02, 5.40641296e+02,
4.81411714e+02, 4.81411714e+02, 4.81411714e+02, 4.81411714e+02,
4.46388141e+02, 4.46388141e+02, 4.46388141e+02, 4.46388141e+02,
4.39501351e+02, 4.39501351e+02, 4.39501351e+02, 4.39501351e+02,
4.52157297e+02, 4.52157297e+02, 4.52157297e+02, 4.52157297e+02,
4.52775903e+02, 4.52775903e+02, 4.52775903e+02, 4.52775903e+02,
4.01828833e+02, 4.01828833e+02, 4.01828833e+02, 4.01828833e+02,
1.79447659e+02, 1.79447659e+02, 1.79447659e+02, 1.79447659e+02,
1.01968433e+01, 1.01968433e+01, 1.01968433e+01, 1.01968433e+01,
3.95481482e-02, 3.95481482e-02, 3.95481482e-02, 3.95481482e-02,
1.00030400e-02, 1.00030400e-02, 1.00030400e-02, 1.00030400e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999973, 0.99999973, 0.99999973, 0.99999973, 0.99999822,
0.99999822, 0.99999822, 0.99999822, 0.99998963, 0.99998963,
0.99998963, 0.99998963, 0.99994668, 0.99994668, 0.99994668,
0.99994668, 0.99975882, 0.99975882, 0.99975882, 0.99975882,
0.99904627, 0.99904627, 0.99904627, 0.99904627, 0.99672714,
0.99672714, 0.99672714, 0.99672714, 0.99032541, 0.99032541,
0.99032541, 0.99032541, 0.97549498, 0.97549498, 0.97549498,
0.97549498, 0.94682189, 0.94682189, 0.94682189, 0.94682189,
0.90035943, 0.90035943, 0.90035943, 0.90035943, 0.83595399,
0.83595399, 0.83595399, 0.83595399, 0.75816608, 0.75816608,
0.75816608, 0.75816608, 0.68548506, 0.68548506, 0.68548506,
0.68548506, 0.6201578 , 0.6201578 , 0.6201578 , 0.6201578 ,
0.58688385, 0.58688385, 0.58688385, 0.58688385, 0.55035053,
0.55035053, 0.55035053, 0.55035053, 0.54815759, 0.54815759,
0.54815759, 0.54815759, 0.6060835 , 0.6060835 , 0.6060835 ,
0.6060835 , 0.93361729, 0.93361729, 0.93361729, 0.93361729,
1.87007459, 1.87007459, 1.87007459, 1.87007459, 2.43252002,
2.43252002, 2.43252002, 2.43252002, 1.69813853, 1.69813853,
1.69813853, 1.69813853, 1.06363124, 1.06363124, 1.06363124,
1.06363124, 1.00230929, 1.00230929, 1.00230929, 1.00230929,
1.00000249, 1.00000249, 1.00000249, 1.00000249, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.17918877e-15, 1.17918877e-15, 1.17918877e-15, 1.17918877e-15,
4.63192568e-14, 4.63192568e-14, 4.63192568e-14, 4.63192568e-14,
7.72269119e-13, 7.72269119e-13, 7.72269119e-13, 7.72269119e-13,
1.13606117e-11, 1.13606117e-11, 1.13606117e-11, 1.13606117e-11,
1.48668973e-10, 1.48668973e-10, 1.48668973e-10, 1.48668973e-10,
1.73273478e-09, 1.73273478e-09, 1.73273478e-09, 1.73273478e-09,
1.80065644e-08, 1.80065644e-08, 1.80065644e-08, 1.80065644e-08,
1.66938246e-07, 1.66938246e-07, 1.66938246e-07, 1.66938246e-07,
1.38047343e-06, 1.38047343e-06, 1.38047343e-06, 1.38047343e-06,
1.01730358e-05, 1.01730358e-05, 1.01730358e-05, 1.01730358e-05,
6.66926861e-05, 6.66926861e-05, 6.66926861e-05, 6.66926861e-05,
3.87946266e-04, 3.87946266e-04, 3.87946266e-04, 3.87946266e-04,
1.99495582e-03, 1.99495582e-03, 1.99495582e-03, 1.99495582e-03,
9.02485988e-03, 9.02485988e-03, 9.02485988e-03, 9.02485988e-03,
3.56969786e-02, 3.56969786e-02, 3.56969786e-02, 3.56969786e-02,
1.22599309e-01, 1.22599309e-01, 1.22599309e-01, 1.22599309e-01,
3.63265196e-01, 3.63265196e-01, 3.63265196e-01, 3.63265196e-01,
9.25486637e-01, 9.25486637e-01, 9.25486637e-01, 9.25486637e-01,
2.03251679e+00, 2.03251679e+00, 2.03251679e+00, 2.03251679e+00,
3.88754026e+00, 3.88754026e+00, 3.88754026e+00, 3.88754026e+00,
6.59692847e+00, 6.59692847e+00, 6.59692847e+00, 6.59692847e+00,
1.00916624e+01, 1.00916624e+01, 1.00916624e+01, 1.00916624e+01,
1.36128329e+01, 1.36128329e+01, 1.36128329e+01, 1.36128329e+01,
1.67200615e+01, 1.67200615e+01, 1.67200615e+01, 1.67200615e+01,
1.92196842e+01, 1.92196842e+01, 1.92196842e+01, 1.92196842e+01,
2.05019813e+01, 2.05019813e+01, 2.05019813e+01, 2.05019813e+01,
2.05553746e+01, 2.05553746e+01, 2.05553746e+01, 2.05553746e+01,
2.01200849e+01, 2.01200849e+01, 2.01200849e+01, 2.01200849e+01,
2.00852609e+01, 2.00852609e+01, 2.00852609e+01, 2.00852609e+01,
1.95505845e+01, 1.95505845e+01, 1.95505845e+01, 1.95505845e+01,
1.62261910e+01, 1.62261910e+01, 1.62261910e+01, 1.62261910e+01,
6.54866545e+00, 6.54866545e+00, 6.54866545e+00, 6.54866545e+00,
3.24170699e-01, 3.24170699e-01, 3.24170699e-01, 3.24170699e-01,
1.29707680e-03, 1.29707680e-03, 1.29707680e-03, 1.29707680e-03,
2.95706974e-07, 2.95706974e-07, 2.95706974e-07, 2.95706974e-07,
3.91707739e-11, 3.91707739e-11, 3.91707739e-11, 3.91707739e-11,
5.29501501e-15, 5.29501501e-15, 5.29501501e-15, 5.29501501e-15,
6.89647830e-19, 6.89647830e-19, 6.89647830e-19, 6.89647830e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999948e+02, 9.99999948e+02, 9.99999948e+02, 9.99999948e+02,
9.99999619e+02, 9.99999619e+02, 9.99999619e+02, 9.99999619e+02,
9.99997505e+02, 9.99997505e+02, 9.99997505e+02, 9.99997505e+02,
9.99985485e+02, 9.99985485e+02, 9.99985485e+02, 9.99985485e+02,
9.99925359e+02, 9.99925359e+02, 9.99925359e+02, 9.99925359e+02,
9.99662381e+02, 9.99662381e+02, 9.99662381e+02, 9.99662381e+02,
9.98665240e+02, 9.98665240e+02, 9.98665240e+02, 9.98665240e+02,
9.95422968e+02, 9.95422968e+02, 9.95422968e+02, 9.95422968e+02,
9.86494880e+02, 9.86494880e+02, 9.86494880e+02, 9.86494880e+02,
9.65922616e+02, 9.65922616e+02, 9.65922616e+02, 9.65922616e+02,
9.26549448e+02, 9.26549448e+02, 9.26549448e+02, 9.26549448e+02,
8.63811003e+02, 8.63811003e+02, 8.63811003e+02, 8.63811003e+02,
7.79005137e+02, 7.79005137e+02, 7.79005137e+02, 7.79005137e+02,
6.79897934e+02, 6.79897934e+02, 6.79897934e+02, 6.79897934e+02,
5.89818941e+02, 5.89818941e+02, 5.89818941e+02, 5.89818941e+02,
5.17012382e+02, 5.17012382e+02, 5.17012382e+02, 5.17012382e+02,
4.68673522e+02, 4.68673522e+02, 4.68673522e+02, 4.68673522e+02,
4.45586337e+02, 4.45586337e+02, 4.45586337e+02, 4.45586337e+02,
4.42497030e+02, 4.42497030e+02, 4.42497030e+02, 4.42497030e+02,
4.51096789e+02, 4.51096789e+02, 4.51096789e+02, 4.51096789e+02,
4.53476996e+02, 4.53476996e+02, 4.53476996e+02, 4.53476996e+02,
4.36824668e+02, 4.36824668e+02, 4.36824668e+02, 4.36824668e+02,
3.07120077e+02, 3.07120077e+02, 3.07120077e+02, 3.07120077e+02,
5.92749963e+01, 5.92749963e+01, 5.92749963e+01, 5.92749963e+01,
8.68726123e-01, 8.68726123e-01, 8.68726123e-01, 8.68726123e-01,
1.03848280e-02, 1.03848280e-02, 1.03848280e-02, 1.03848280e-02,
1.00000350e-02, 1.00000350e-02, 1.00000350e-02, 1.00000350e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999996, 0.99999996, 0.99999996,
0.99999996, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
0.99999822, 0.99999822, 0.99999822, 0.99999822, 0.99999028,
0.99999028, 0.99999028, 0.99999028, 0.99995266, 0.99995266,
0.99995266, 0.99995266, 0.99979512, 0.99979512, 0.99979512,
0.99979512, 0.99921684, 0.99921684, 0.99921684, 0.99921684,
0.99737403, 0.99737403, 0.99737403, 0.99737403, 0.9923308 ,
0.9923308 , 0.9923308 , 0.9923308 , 0.98059926, 0.98059926,
0.98059926, 0.98059926, 0.95755427, 0.95755427, 0.95755427,
0.95755427, 0.91927574, 0.91927574, 0.91927574, 0.91927574,
0.86476987, 0.86476987, 0.86476987, 0.86476987, 0.79618357,
0.79618357, 0.79618357, 0.79618357, 0.72306218, 0.72306218,
0.72306218, 0.72306218, 0.66150523, 0.66150523, 0.66150523,
0.66150523, 0.60422085, 0.60422085, 0.60422085, 0.60422085,
0.57924424, 0.57924424, 0.57924424, 0.57924424, 0.55336757,
0.55336757, 0.55336757, 0.55336757, 0.55041993, 0.55041993,
0.55041993, 0.55041993, 0.58277776, 0.58277776, 0.58277776,
0.58277776, 0.78662431, 0.78662431, 0.78662431, 0.78662431,
1.48769623, 1.48769623, 1.48769623, 1.48769623, 2.43758196,
2.43758196, 2.43758196, 2.43758196, 2.27678193, 2.27678193,
2.27678193, 2.27678193, 1.23532054, 1.23532054, 1.23532054,
1.23532054, 1.0142013 , 1.0142013 , 1.0142013 , 1.0142013 ,
1.00015564, 1.00015564, 1.00015564, 1.00015564, 1.00000003,
1.00000003, 1.00000003, 1.00000003, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
7.84780571e-15, 7.84780571e-15, 7.84780571e-15, 7.84780571e-15,
1.31247225e-13, 1.31247225e-13, 1.31247225e-13, 1.31247225e-13,
1.86099744e-12, 1.86099744e-12, 1.86099744e-12, 1.86099744e-12,
2.35229555e-11, 2.35229555e-11, 2.35229555e-11, 2.35229555e-11,
2.68230159e-10, 2.68230159e-10, 2.68230159e-10, 2.68230159e-10,
2.75761076e-09, 2.75761076e-09, 2.75761076e-09, 2.75761076e-09,
2.55719231e-08, 2.55719231e-08, 2.55719231e-08, 2.55719231e-08,
2.13858422e-07, 2.13858422e-07, 2.13858422e-07, 2.13858422e-07,
1.61179086e-06, 1.61179086e-06, 1.61179086e-06, 1.61179086e-06,
1.09330523e-05, 1.09330523e-05, 1.09330523e-05, 1.09330523e-05,
6.66147485e-05, 6.66147485e-05, 6.66147485e-05, 6.66147485e-05,
3.63590132e-04, 3.63590132e-04, 3.63590132e-04, 3.63590132e-04,
1.77131328e-03, 1.77131328e-03, 1.77131328e-03, 1.77131328e-03,
7.66654068e-03, 7.66654068e-03, 7.66654068e-03, 7.66654068e-03,
2.93110700e-02, 2.93110700e-02, 2.93110700e-02, 2.93110700e-02,
9.83453389e-02, 9.83453389e-02, 9.83453389e-02, 9.83453389e-02,
2.87757346e-01, 2.87757346e-01, 2.87757346e-01, 2.87757346e-01,
7.31271666e-01, 7.31271666e-01, 7.31271666e-01, 7.31271666e-01,
1.61513497e+00, 1.61513497e+00, 1.61513497e+00, 1.61513497e+00,
3.12319769e+00, 3.12319769e+00, 3.12319769e+00, 3.12319769e+00,
5.36427327e+00, 5.36427327e+00, 5.36427327e+00, 5.36427327e+00,
8.35732099e+00, 8.35732099e+00, 8.35732099e+00, 8.35732099e+00,
1.16892047e+01, 1.16892047e+01, 1.16892047e+01, 1.16892047e+01,
1.49052400e+01, 1.49052400e+01, 1.49052400e+01, 1.49052400e+01,
1.76214127e+01, 1.76214127e+01, 1.76214127e+01, 1.76214127e+01,
1.95882774e+01, 1.95882774e+01, 1.95882774e+01, 1.95882774e+01,
2.05031852e+01, 2.05031852e+01, 2.05031852e+01, 2.05031852e+01,
2.04829872e+01, 2.04829872e+01, 2.04829872e+01, 2.04829872e+01,
2.00863226e+01, 2.00863226e+01, 2.00863226e+01, 2.00863226e+01,
2.00679880e+01, 2.00679880e+01, 2.00679880e+01, 2.00679880e+01,
1.98869708e+01, 1.98869708e+01, 1.98869708e+01, 1.98869708e+01,
1.83990451e+01, 1.83990451e+01, 1.83990451e+01, 1.83990451e+01,
1.18973605e+01, 1.18973605e+01, 1.18973605e+01, 1.18973605e+01,
1.92593412e+00, 1.92593412e+00, 1.92593412e+00, 1.92593412e+00,
2.78926539e-02, 2.78926539e-02, 2.78926539e-02, 2.78926539e-02,
2.46303900e-05, 2.46303900e-05, 2.46303900e-05, 2.46303900e-05,
3.45965769e-09, 3.45965769e-09, 3.45965769e-09, 3.45965769e-09,
4.70814125e-13, 4.70814125e-13, 4.70814125e-13, 4.70814125e-13,
6.25944971e-17, 6.25944971e-17, 6.25944971e-17, 6.25944971e-17,
1.40917331e-20, 1.40917331e-20, 1.40917331e-20, 1.40917331e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999940e+02, 9.99999940e+02, 9.99999940e+02, 9.99999940e+02,
9.99999591e+02, 9.99999591e+02, 9.99999591e+02, 9.99999591e+02,
9.99997508e+02, 9.99997508e+02, 9.99997508e+02, 9.99997508e+02,
9.99986396e+02, 9.99986396e+02, 9.99986396e+02, 9.99986396e+02,
9.99933726e+02, 9.99933726e+02, 9.99933726e+02, 9.99933726e+02,
9.99713187e+02, 9.99713187e+02, 9.99713187e+02, 9.99713187e+02,
9.98903881e+02, 9.98903881e+02, 9.98903881e+02, 9.98903881e+02,
9.96326802e+02, 9.96326802e+02, 9.96326802e+02, 9.96326802e+02,
9.89287663e+02, 9.89287663e+02, 9.89287663e+02, 9.89287663e+02,
9.72982839e+02, 9.72982839e+02, 9.72982839e+02, 9.72982839e+02,
9.41213875e+02, 9.41213875e+02, 9.41213875e+02, 9.41213875e+02,
8.89161214e+02, 8.89161214e+02, 8.89161214e+02, 8.89161214e+02,
8.16557244e+02, 8.16557244e+02, 8.16557244e+02, 8.16557244e+02,
7.27792873e+02, 7.27792873e+02, 7.27792873e+02, 7.27792873e+02,
6.36091679e+02, 6.36091679e+02, 6.36091679e+02, 6.36091679e+02,
5.60608656e+02, 5.60608656e+02, 5.60608656e+02, 5.60608656e+02,
4.99456928e+02, 4.99456928e+02, 4.99456928e+02, 4.99456928e+02,
4.59916263e+02, 4.59916263e+02, 4.59916263e+02, 4.59916263e+02,
4.44832936e+02, 4.44832936e+02, 4.44832936e+02, 4.44832936e+02,
4.44855833e+02, 4.44855833e+02, 4.44855833e+02, 4.44855833e+02,
4.51329612e+02, 4.51329612e+02, 4.51329612e+02, 4.51329612e+02,
4.53075538e+02, 4.53075538e+02, 4.53075538e+02, 4.53075538e+02,
4.48914983e+02, 4.48914983e+02, 4.48914983e+02, 4.48914983e+02,
3.89344412e+02, 3.89344412e+02, 3.89344412e+02, 3.89344412e+02,
1.69288930e+02, 1.69288930e+02, 1.69288930e+02, 1.69288930e+02,
9.65027996e+00, 9.65027996e+00, 9.65027996e+00, 9.65027996e+00,
3.79449184e-02, 3.79449184e-02, 3.79449184e-02, 3.79449184e-02,
1.00029784e-02, 1.00029784e-02, 1.00029784e-02, 1.00029784e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.9999997 , 0.9999997 , 0.9999997 ,
0.9999997 , 0.99999828, 0.99999828, 0.99999828, 0.99999828,
0.99999108, 0.99999108, 0.99999108, 0.99999108, 0.9999585 ,
0.9999585 , 0.9999585 , 0.9999585 , 0.99982697, 0.99982697,
0.99982697, 0.99982697, 0.99935725, 0.99935725, 0.99935725,
0.99935725, 0.99788644, 0.99788644, 0.99788644, 0.99788644,
0.99388871, 0.99388871, 0.99388871, 0.99388871, 0.98455003,
0.98455003, 0.98455003, 0.98455003, 0.96593499, 0.96593499,
0.96593499, 0.96593499, 0.9342993 , 0.9342993 , 0.9342993 ,
0.9342993 , 0.88804292, 0.88804292, 0.88804292, 0.88804292,
0.82849089, 0.82849089, 0.82849089, 0.82849089, 0.75995557,
0.75995557, 0.75995557, 0.75995557, 0.6948101 , 0.6948101 ,
0.6948101 , 0.6948101 , 0.64178791, 0.64178791, 0.64178791,
0.64178791, 0.59207003, 0.59207003, 0.59207003, 0.59207003,
0.57419756, 0.57419756, 0.57419756, 0.57419756, 0.55596457,
0.55596457, 0.55596457, 0.55596457, 0.5528484 , 0.5528484 ,
0.5528484 , 0.5528484 , 0.57066328, 0.57066328, 0.57066328,
0.57066328, 0.69535413, 0.69535413, 0.69535413, 0.69535413,
1.17867884, 1.17867884, 1.17867884, 1.17867884, 2.21167836,
2.21167836, 2.21167836, 2.21167836, 2.60264521, 2.60264521,
2.60264521, 2.60264521, 1.7128863 , 1.7128863 , 1.7128863 ,
1.7128863 , 1.06202573, 1.06202573, 1.06202573, 1.06202573,
1.00220672, 1.00220672, 1.00220672, 1.00220672, 1.00000228,
1.00000228, 1.00000228, 1.00000228, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.82667535e-16, 5.82667535e-16, 5.82667535e-16, 5.82667535e-16,
2.37807029e-14, 2.37807029e-14, 2.37807029e-14, 2.37807029e-14,
3.03202404e-13, 3.03202404e-13, 3.03202404e-13, 3.03202404e-13,
3.71371250e-12, 3.71371250e-12, 3.71371250e-12, 3.71371250e-12,
4.16077225e-11, 4.16077225e-11, 4.16077225e-11, 4.16077225e-11,
4.24016982e-10, 4.24016982e-10, 4.24016982e-10, 4.24016982e-10,
3.93302512e-09, 3.93302512e-09, 3.93302512e-09, 3.93302512e-09,
3.32002473e-08, 3.32002473e-08, 3.32002473e-08, 3.32002473e-08,
2.54903725e-07, 2.54903725e-07, 2.54903725e-07, 2.54903725e-07,
1.77822075e-06, 1.77822075e-06, 1.77822075e-06, 1.77822075e-06,
1.12541158e-05, 1.12541158e-05, 1.12541158e-05, 1.12541158e-05,
6.44841773e-05, 6.44841773e-05, 6.44841773e-05, 6.44841773e-05,
3.33602038e-04, 3.33602038e-04, 3.33602038e-04, 3.33602038e-04,
1.55281901e-03, 1.55281901e-03, 1.55281901e-03, 1.55281901e-03,
6.47471971e-03, 6.47471971e-03, 6.47471971e-03, 6.47471971e-03,
2.40547896e-02, 2.40547896e-02, 2.40547896e-02, 2.40547896e-02,
7.91410207e-02, 7.91410207e-02, 7.91410207e-02, 7.91410207e-02,
2.29173025e-01, 2.29173025e-01, 2.29173025e-01, 2.29173025e-01,
5.81473724e-01, 5.81473724e-01, 5.81473724e-01, 5.81473724e-01,
1.29181150e+00, 1.29181150e+00, 1.29181150e+00, 1.29181150e+00,
2.52541673e+00, 2.52541673e+00, 2.52541673e+00, 2.52541673e+00,
4.39364483e+00, 4.39364483e+00, 4.39364483e+00, 4.39364483e+00,
6.92177553e+00, 6.92177553e+00, 6.92177553e+00, 6.92177553e+00,
1.00062705e+01, 1.00062705e+01, 1.00062705e+01, 1.00062705e+01,
1.30551463e+01, 1.30551463e+01, 1.30551463e+01, 1.30551463e+01,
1.59467542e+01, 1.59467542e+01, 1.59467542e+01, 1.59467542e+01,
1.83397628e+01, 1.83397628e+01, 1.83397628e+01, 1.83397628e+01,
1.98657446e+01, 1.98657446e+01, 1.98657446e+01, 1.98657446e+01,
2.04639329e+01, 2.04639329e+01, 2.04639329e+01, 2.04639329e+01,
2.03869143e+01, 2.03869143e+01, 2.03869143e+01, 2.03869143e+01,
2.00832064e+01, 2.00832064e+01, 2.00832064e+01, 2.00832064e+01,
2.00558910e+01, 2.00558910e+01, 2.00558910e+01, 2.00558910e+01,
1.99917512e+01, 1.99917512e+01, 1.99917512e+01, 1.99917512e+01,
1.93663021e+01, 1.93663021e+01, 1.93663021e+01, 1.93663021e+01,
1.59156770e+01, 1.59156770e+01, 1.59156770e+01, 1.59156770e+01,
6.34602264e+00, 6.34602264e+00, 6.34602264e+00, 6.34602264e+00,
3.03838005e-01, 3.03838005e-01, 3.03838005e-01, 3.03838005e-01,
1.18263967e-03, 1.18263967e-03, 1.18263967e-03, 1.18263967e-03,
2.70515192e-07, 2.70515192e-07, 2.70515192e-07, 2.70515192e-07,
3.73495771e-11, 3.73495771e-11, 3.73495771e-11, 3.73495771e-11,
5.26225555e-15, 5.26225555e-15, 5.26225555e-15, 5.26225555e-15,
7.33233058e-19, 7.33233058e-19, 7.33233058e-19, 7.33233058e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
9.99999933e+02, 9.99999933e+02, 9.99999933e+02, 9.99999933e+02,
9.99999579e+02, 9.99999579e+02, 9.99999579e+02, 9.99999579e+02,
9.99997587e+02, 9.99997587e+02, 9.99997587e+02, 9.99997587e+02,
9.99987518e+02, 9.99987518e+02, 9.99987518e+02, 9.99987518e+02,
9.99941901e+02, 9.99941901e+02, 9.99941901e+02, 9.99941901e+02,
9.99757768e+02, 9.99757768e+02, 9.99757768e+02, 9.99757768e+02,
9.99100354e+02, 9.99100354e+02, 9.99100354e+02, 9.99100354e+02,
9.97043041e+02, 9.97043041e+02, 9.97043041e+02, 9.97043041e+02,
9.91459711e+02, 9.91459711e+02, 9.91459711e+02, 9.91459711e+02,
9.78461298e+02, 9.78461298e+02, 9.78461298e+02, 9.78461298e+02,
9.52721066e+02, 9.52721066e+02, 9.52721066e+02, 9.52721066e+02,
9.09464048e+02, 9.09464048e+02, 9.09464048e+02, 9.09464048e+02,
8.47290240e+02, 8.47290240e+02, 8.47290240e+02, 8.47290240e+02,
7.69147303e+02, 7.69147303e+02, 7.69147303e+02, 7.69147303e+02,
6.81824841e+02, 6.81824841e+02, 6.81824841e+02, 6.81824841e+02,
6.01613262e+02, 6.01613262e+02, 6.01613262e+02, 6.01613262e+02,
5.36678519e+02, 5.36678519e+02, 5.36678519e+02, 5.36678519e+02,
4.86252372e+02, 4.86252372e+02, 4.86252372e+02, 4.86252372e+02,
4.54602117e+02, 4.54602117e+02, 4.54602117e+02, 4.54602117e+02,
4.44345600e+02, 4.44345600e+02, 4.44345600e+02, 4.44345600e+02,
4.46359684e+02, 4.46359684e+02, 4.46359684e+02, 4.46359684e+02,
4.51901635e+02, 4.51901635e+02, 4.51901635e+02, 4.51901635e+02,
4.52889504e+02, 4.52889504e+02, 4.52889504e+02, 4.52889504e+02,
4.52265646e+02, 4.52265646e+02, 4.52265646e+02, 4.52265646e+02,
4.29084128e+02, 4.29084128e+02, 4.29084128e+02, 4.29084128e+02,
2.92805528e+02, 2.92805528e+02, 2.92805528e+02, 2.92805528e+02,
5.43708093e+01, 5.43708093e+01, 5.43708093e+01, 5.43708093e+01,
7.81644380e-01, 7.81644380e-01, 7.81644380e-01, 7.81644380e-01,
1.03355903e-02, 1.03355903e-02, 1.03355903e-02, 1.03355903e-02,
1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
0.99999995, 0.99999995, 0.99999995, 0.9999997 , 0.9999997 ,
0.9999997 , 0.9999997 , 0.99999837, 0.99999837, 0.99999837,
0.99999837, 0.99999195, 0.99999195, 0.99999195, 0.99999195,
0.99996397, 0.99996397, 0.99996397, 0.99996397, 0.9998545 ,
0.9998545 , 0.9998545 , 0.9998545 , 0.9994726 , 0.9994726 ,
0.9994726 , 0.9994726 , 0.9982943 , 0.9982943 , 0.9982943 ,
0.9982943 , 0.99510915, 0.99510915, 0.99510915, 0.99510915,
0.98763719, 0.98763719, 0.98763719, 0.98763719, 0.97253998,
0.97253998, 0.97253998, 0.97253998, 0.94633146, 0.94633146,
0.94633146, 0.94633146, 0.90701242, 0.90701242, 0.90701242,
0.90701242, 0.85516088, 0.85516088, 0.85516088, 0.85516088,
0.79324114, 0.79324114, 0.79324114, 0.79324114, 0.72928116,
0.72928116, 0.72928116, 0.72928116, 0.67174921, 0.67174921,
0.67174921, 0.67174921, 0.62584268, 0.62584268, 0.62584268,
0.62584268, 0.58259287, 0.58259287, 0.58259287, 0.58259287,
0.57068029, 0.57068029, 0.57068029, 0.57068029, 0.55836177,
0.55836177, 0.55836177, 0.55836177, 0.55573867, 0.55573867,
0.55573867, 0.55573867, 0.56443057, 0.56443057, 0.56443057,
0.56443057, 0.6395892 , 0.6395892 , 0.6395892 , 0.6395892 ,
0.96358615, 0.96358615, 0.96358615, 0.96358615, 1.83549949,
1.83549949, 1.83549949, 1.83549949, 2.66715283, 2.66715283,
2.66715283, 2.66715283, 2.3438958 , 2.3438958 , 2.3438958 ,
2.3438958 , 1.22354901, 1.22354901, 1.22354901, 1.22354901,
1.01330763, 1.01330763, 1.01330763, 1.01330763, 1.00013509,
1.00013509, 1.00013509, 1.00013509, 1.00000003, 1.00000003,
1.00000003, 1.00000003, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
3.27252719e-15, 3.27252719e-15, 3.27252719e-15, 3.27252719e-15,
5.02048681e-14, 5.02048681e-14, 5.02048681e-14, 5.02048681e-14,
5.87307060e-13, 5.87307060e-13, 5.87307060e-13, 5.87307060e-13,
6.46241559e-12, 6.46241559e-12, 6.46241559e-12, 6.46241559e-12,
6.53785309e-11, 6.53785309e-11, 6.53785309e-11, 6.53785309e-11,
6.06614778e-10, 6.06614778e-10, 6.06614778e-10, 6.06614778e-10,
5.16153797e-09, 5.16153797e-09, 5.16153797e-09, 5.16153797e-09,
4.02536022e-08, 4.02536022e-08, 4.02536022e-08, 4.02536022e-08,
2.87499828e-07, 2.87499828e-07, 2.87499828e-07, 2.87499828e-07,
1.87827130e-06, 1.87827130e-06, 1.87827130e-06, 1.87827130e-06,
1.12063726e-05, 1.12063726e-05, 1.12063726e-05, 1.12063726e-05,
6.09321654e-05, 6.09321654e-05, 6.09321654e-05, 6.09321654e-05,
3.01124184e-04, 3.01124184e-04, 3.01124184e-04, 3.01124184e-04,
1.34806658e-03, 1.34806658e-03, 1.34806658e-03, 1.34806658e-03,
5.44437268e-03, 5.44437268e-03, 5.44437268e-03, 5.44437268e-03,
1.97371145e-02, 1.97371145e-02, 1.97371145e-02, 1.97371145e-02,
6.38597905e-02, 6.38597905e-02, 6.38597905e-02, 6.38597905e-02,
1.83325531e-01, 1.83325531e-01, 1.83325531e-01, 1.83325531e-01,
4.64737704e-01, 4.64737704e-01, 4.64737704e-01, 4.64737704e-01,
1.03856729e+00, 1.03856729e+00, 1.03856729e+00, 1.03856729e+00,
2.05236016e+00, 2.05236016e+00, 2.05236016e+00, 2.05236016e+00,
3.61812720e+00, 3.61812720e+00, 3.61812720e+00, 3.61812720e+00,
5.77166819e+00, 5.77166819e+00, 5.77166819e+00, 5.77166819e+00,
8.48843316e+00, 8.48843316e+00, 8.48843316e+00, 8.48843316e+00,
1.14236988e+01, 1.14236988e+01, 1.14236988e+01, 1.14236988e+01,
1.42358355e+01, 1.42358355e+01, 1.42358355e+01, 1.42358355e+01,
1.68025698e+01, 1.68025698e+01, 1.68025698e+01, 1.68025698e+01,
1.88802206e+01, 1.88802206e+01, 1.88802206e+01, 1.88802206e+01,
2.00711843e+01, 2.00711843e+01, 2.00711843e+01, 2.00711843e+01,
2.04384777e+01, 2.04384777e+01, 2.04384777e+01, 2.04384777e+01,
2.02877280e+01, 2.02877280e+01, 2.02877280e+01, 2.02877280e+01,
2.00672694e+01, 2.00672694e+01, 2.00672694e+01, 2.00672694e+01,
2.00505256e+01, 2.00505256e+01, 2.00505256e+01, 2.00505256e+01,
2.00195354e+01, 2.00195354e+01, 2.00195354e+01, 2.00195354e+01,
1.97774623e+01, 1.97774623e+01, 1.97774623e+01, 1.97774623e+01,
1.81444582e+01, 1.81444582e+01, 1.81444582e+01, 1.81444582e+01,
1.15550729e+01, 1.15550729e+01, 1.15550729e+01, 1.15550729e+01,
1.77081733e+00, 1.77081733e+00, 1.77081733e+00, 1.77081733e+00,
2.44888120e-02, 2.44888120e-02, 2.44888120e-02, 2.44888120e-02,
2.06002983e-05, 2.06002983e-05, 2.06002983e-05, 2.06002983e-05,
2.98049908e-09, 2.98049908e-09, 2.98049908e-09, 2.98049908e-09,
4.19450571e-13, 4.19450571e-13, 4.19450571e-13, 4.19450571e-13,
5.78774071e-17, 5.78774071e-17, 5.78774071e-17, 5.78774071e-17,
4.37610151e-21, 4.37610151e-21, 4.37610151e-21, 4.37610151e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
9.99999930e+02, 9.99999930e+02, 9.99999930e+02, 9.99999930e+02,
9.99999581e+02, 9.99999581e+02, 9.99999581e+02, 9.99999581e+02,
9.99997720e+02, 9.99997720e+02, 9.99997720e+02, 9.99997720e+02,
9.99988733e+02, 9.99988733e+02, 9.99988733e+02, 9.99988733e+02,
9.99949561e+02, 9.99949561e+02, 9.99949561e+02, 9.99949561e+02,
9.99796311e+02, 9.99796311e+02, 9.99796311e+02, 9.99796311e+02,
9.99261774e+02, 9.99261774e+02, 9.99261774e+02, 9.99261774e+02,
9.97613331e+02, 9.97613331e+02, 9.97613331e+02, 9.97613331e+02,
9.93162704e+02, 9.93162704e+02, 9.93162704e+02, 9.93162704e+02,
9.82750522e+02, 9.82750522e+02, 9.82750522e+02, 9.82750522e+02,
9.61824610e+02, 9.61824610e+02, 9.61824610e+02, 9.61824610e+02,
9.25831706e+02, 9.25831706e+02, 9.25831706e+02, 9.25831706e+02,
8.72601859e+02, 8.72601859e+02, 8.72601859e+02, 8.72601859e+02,
8.03814503e+02, 8.03814503e+02, 8.03814503e+02, 8.03814503e+02,
7.23838409e+02, 7.23838409e+02, 7.23838409e+02, 7.23838409e+02,
6.43384851e+02, 6.43384851e+02, 6.43384851e+02, 6.43384851e+02,
5.74112241e+02, 5.74112241e+02, 5.74112241e+02, 5.74112241e+02,
5.17349942e+02, 5.17349942e+02, 5.17349942e+02, 5.17349942e+02,
4.75919956e+02, 4.75919956e+02, 4.75919956e+02, 4.75919956e+02,
4.51607155e+02, 4.51607155e+02, 4.51607155e+02, 4.51607155e+02,
4.44470585e+02, 4.44470585e+02, 4.44470585e+02, 4.44470585e+02,
4.47515366e+02, 4.47515366e+02, 4.47515366e+02, 4.47515366e+02,
4.52054920e+02, 4.52054920e+02, 4.52054920e+02, 4.52054920e+02,
4.52910758e+02, 4.52910758e+02, 4.52910758e+02, 4.52910758e+02,
4.53087888e+02, 4.53087888e+02, 4.53087888e+02, 4.53087888e+02,
4.45232329e+02, 4.45232329e+02, 4.45232329e+02, 4.45232329e+02,
3.77819444e+02, 3.77819444e+02, 3.77819444e+02, 3.77819444e+02,
1.56913286e+02, 1.56913286e+02, 1.56913286e+02, 1.56913286e+02,
8.48730097e+00, 8.48730097e+00, 8.48730097e+00, 8.48730097e+00,
3.29887631e-02, 3.29887631e-02, 3.29887631e-02, 3.29887631e-02,
1.00024710e-02, 1.00024710e-02, 1.00024710e-02, 1.00024710e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999971,
0.99999971, 0.99999971, 0.99999971, 0.99999849, 0.99999849,
0.99999849, 0.99999849, 0.99999283, 0.99999283, 0.99999283,
0.99999283, 0.99996896, 0.99996896, 0.99996896, 0.99996896,
0.99987805, 0.99987805, 0.99987805, 0.99987805, 0.99956724,
0.99956724, 0.99956724, 0.99956724, 0.99862027, 0.99862027,
0.99862027, 0.99862027, 0.99607172, 0.99607172, 0.99607172,
0.99607172, 0.99006817, 0.99006817, 0.99006817, 0.99006817,
0.97778423, 0.97778423, 0.97778423, 0.97778423, 0.95603297,
0.95603297, 0.95603297, 0.95603297, 0.92259283, 0.92259283,
0.92259283, 0.92259283, 0.87738557, 0.87738557, 0.87738557,
0.87738557, 0.82228577, 0.82228577, 0.82228577, 0.82228577,
0.76124912, 0.76124912, 0.76124912, 0.76124912, 0.7039925 ,
0.7039925 , 0.7039925 , 0.7039925 , 0.65236277, 0.65236277,
0.65236277, 0.65236277, 0.6131337 , 0.6131337 , 0.6131337 ,
0.6131337 , 0.57531994, 0.57531994, 0.57531994, 0.57531994,
0.56785759, 0.56785759, 0.56785759, 0.56785759, 0.56038513,
0.56038513, 0.56038513, 0.56038513, 0.55900443, 0.55900443,
0.55900443, 0.55900443, 0.56184189, 0.56184189, 0.56184189,
0.56184189, 0.60586371, 0.60586371, 0.60586371, 0.60586371,
0.81871248, 0.81871248, 0.81871248, 0.81871248, 1.4581625 ,
1.4581625 , 1.4581625 , 1.4581625 , 2.52120104, 2.52120104,
2.52120104, 2.52120104, 2.74380791, 2.74380791, 2.74380791,
2.74380791, 1.69735103, 1.69735103, 1.69735103, 1.69735103,
1.0575523 , 1.0575523 , 1.0575523 , 1.0575523 , 1.00195343,
1.00195343, 1.00195343, 1.00195343, 1.00000178, 1.00000178,
1.00000178, 1.00000178, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
5.91889946e-15, 5.91889946e-15, 5.91889946e-15, 5.91889946e-15,
9.30184492e-14, 9.30184492e-14, 9.30184492e-14, 9.30184492e-14,
1.00936002e-12, 1.00936002e-12, 1.00936002e-12, 1.00936002e-12,
1.01033815e-11, 1.01033815e-11, 1.01033815e-11, 1.01033815e-11,
9.37627227e-11, 9.37627227e-11, 9.37627227e-11, 9.37627227e-11,
8.03306517e-10, 8.03306517e-10, 8.03306517e-10, 8.03306517e-10,
6.34932257e-09, 6.34932257e-09, 6.34932257e-09, 6.34932257e-09,
4.62683708e-08, 4.62683708e-08, 4.62683708e-08, 4.62683708e-08,
3.10550365e-07, 3.10550365e-07, 3.10550365e-07, 3.10550365e-07,
1.91739687e-06, 1.91739687e-06, 1.91739687e-06, 1.91739687e-06,
1.08719093e-05, 1.08719093e-05, 1.08719093e-05, 1.08719093e-05,
5.64951242e-05, 5.64951242e-05, 5.64951242e-05, 5.64951242e-05,
2.68353586e-04, 2.68353586e-04, 2.68353586e-04, 2.68353586e-04,
1.16148888e-03, 1.16148888e-03, 1.16148888e-03, 1.16148888e-03,
4.56296110e-03, 4.56296110e-03, 4.56296110e-03, 4.56296110e-03,
1.61948234e-02, 1.61948234e-02, 1.61948234e-02, 1.61948234e-02,
5.16501942e-02, 5.16501942e-02, 5.16501942e-02, 5.16501942e-02,
1.47193741e-01, 1.47193741e-01, 1.47193741e-01, 1.47193741e-01,
3.73008312e-01, 3.73008312e-01, 3.73008312e-01, 3.73008312e-01,
8.38464798e-01, 8.38464798e-01, 8.38464798e-01, 8.38464798e-01,
1.67451578e+00, 1.67451578e+00, 1.67451578e+00, 1.67451578e+00,
2.99122036e+00, 2.99122036e+00, 2.99122036e+00, 2.99122036e+00,
4.83584276e+00, 4.83584276e+00, 4.83584276e+00, 4.83584276e+00,
7.19273469e+00, 7.19273469e+00, 7.19273469e+00, 7.19273469e+00,
9.93587440e+00, 9.93587440e+00, 9.93587440e+00, 9.93587440e+00,
1.26632029e+01, 1.26632029e+01, 1.26632029e+01, 1.26632029e+01,
1.52391788e+01, 1.52391788e+01, 1.52391788e+01, 1.52391788e+01,
1.75131368e+01, 1.75131368e+01, 1.75131368e+01, 1.75131368e+01,
1.92750068e+01, 1.92750068e+01, 1.92750068e+01, 1.92750068e+01,
2.02071764e+01, 2.02071764e+01, 2.02071764e+01, 2.02071764e+01,
2.04224324e+01, 2.04224324e+01, 2.04224324e+01, 2.04224324e+01,
2.02143397e+01, 2.02143397e+01, 2.02143397e+01, 2.02143397e+01,
2.00448842e+01, 2.00448842e+01, 2.00448842e+01, 2.00448842e+01,
2.00355481e+01, 2.00355481e+01, 2.00355481e+01, 2.00355481e+01,
2.00263366e+01, 2.00263366e+01, 2.00263366e+01, 2.00263366e+01,
1.99415493e+01, 1.99415493e+01, 1.99415493e+01, 1.99415493e+01,
1.92029402e+01, 1.92029402e+01, 1.92029402e+01, 1.92029402e+01,
1.55549094e+01, 1.55549094e+01, 1.55549094e+01, 1.55549094e+01,
5.98150672e+00, 5.98150672e+00, 5.98150672e+00, 5.98150672e+00,
2.65685194e-01, 2.65685194e-01, 2.65685194e-01, 2.65685194e-01,
9.54732742e-04, 9.54732742e-04, 9.54732742e-04, 9.54732742e-04,
2.10803427e-07, 2.10803427e-07, 2.10803427e-07, 2.10803427e-07,
3.02033655e-11, 3.02033655e-11, 3.02033655e-11, 3.02033655e-11,
4.41057656e-15, 4.41057656e-15, 4.41057656e-15, 4.41057656e-15,
6.12854624e-19, 6.12854624e-19, 6.12854624e-19, 6.12854624e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999928e+02, 9.99999928e+02, 9.99999928e+02, 9.99999928e+02,
9.99999593e+02, 9.99999593e+02, 9.99999593e+02, 9.99999593e+02,
9.99997886e+02, 9.99997886e+02, 9.99997886e+02, 9.99997886e+02,
9.99989959e+02, 9.99989959e+02, 9.99989959e+02, 9.99989959e+02,
9.99956542e+02, 9.99956542e+02, 9.99956542e+02, 9.99956542e+02,
9.99829284e+02, 9.99829284e+02, 9.99829284e+02, 9.99829284e+02,
9.99394226e+02, 9.99394226e+02, 9.99394226e+02, 9.99394226e+02,
9.98069219e+02, 9.98069219e+02, 9.98069219e+02, 9.98069219e+02,
9.94506766e+02, 9.94506766e+02, 9.94506766e+02, 9.94506766e+02,
9.86133189e+02, 9.86133189e+02, 9.86133189e+02, 9.86133189e+02,
9.69074355e+02, 9.69074355e+02, 9.69074355e+02, 9.69074355e+02,
9.39098214e+02, 9.39098214e+02, 9.39098214e+02, 9.39098214e+02,
8.93564448e+02, 8.93564448e+02, 8.93564448e+02, 8.93564448e+02,
8.33059937e+02, 8.33059937e+02, 8.33059937e+02, 8.33059937e+02,
7.60987238e+02, 7.60987238e+02, 7.60987238e+02, 7.60987238e+02,
6.83226607e+02, 6.83226607e+02, 6.83226607e+02, 6.83226607e+02,
6.12243005e+02, 6.12243005e+02, 6.12243005e+02, 6.12243005e+02,
5.51401650e+02, 5.51401650e+02, 5.51401650e+02, 5.51401650e+02,
5.01944900e+02, 5.01944900e+02, 5.01944900e+02, 5.01944900e+02,
4.67782716e+02, 4.67782716e+02, 4.67782716e+02, 4.67782716e+02,
4.49784516e+02, 4.49784516e+02, 4.49784516e+02, 4.49784516e+02,
4.45064233e+02, 4.45064233e+02, 4.45064233e+02, 4.45064233e+02,
4.48787029e+02, 4.48787029e+02, 4.48787029e+02, 4.48787029e+02,
4.51978695e+02, 4.51978695e+02, 4.51978695e+02, 4.51978695e+02,
4.52793680e+02, 4.52793680e+02, 4.52793680e+02, 4.52793680e+02,
4.53282403e+02, 4.53282403e+02, 4.53282403e+02, 4.53282403e+02,
4.50955061e+02, 4.50955061e+02, 4.50955061e+02, 4.50955061e+02,
4.22213148e+02, 4.22213148e+02, 4.22213148e+02, 4.22213148e+02,
2.77875953e+02, 2.77875953e+02, 2.77875953e+02, 2.77875953e+02,
4.81022077e+01, 4.81022077e+01, 4.81022077e+01, 4.81022077e+01,
6.43549685e-01, 6.43549685e-01, 6.43549685e-01, 6.43549685e-01,
1.02488911e-02, 1.02488911e-02, 1.02488911e-02, 1.02488911e-02,
1.00000249e-02, 1.00000249e-02, 1.00000249e-02, 1.00000249e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999995, 0.99999995, 0.99999995, 0.99999995,
0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999862,
0.99999862, 0.99999862, 0.99999862, 0.99999367, 0.99999367,
0.99999367, 0.99999367, 0.99997341, 0.99997341, 0.99997341,
0.99997341, 0.99989805, 0.99989805, 0.99989805, 0.99989805,
0.99964482, 0.99964482, 0.99964482, 0.99964482, 0.99888164,
0.99888164, 0.99888164, 0.99888164, 0.99683513, 0.99683513,
0.99683513, 0.99683513, 0.99199451, 0.99199451, 0.99199451,
0.99199451, 0.9819733 , 0.9819733 , 0.9819733 , 0.9819733 ,
0.96389763, 0.96389763, 0.96389763, 0.96389763, 0.93545495,
0.93545495, 0.93545495, 0.93545495, 0.89604286, 0.89604286,
0.89604286, 0.89604286, 0.84702851, 0.84702851, 0.84702851,
0.84702851, 0.79079924, 0.79079924, 0.79079924, 0.79079924,
0.73376007, 0.73376007, 0.73376007, 0.73376007, 0.68273638,
0.68273638, 0.68273638, 0.68273638, 0.63612561, 0.63612561,
0.63612561, 0.63612561, 0.60307654, 0.60307654, 0.60307654,
0.60307654, 0.57002222, 0.57002222, 0.57002222, 0.57002222,
0.56543931, 0.56543931, 0.56543931, 0.56543931, 0.56183756,
0.56183756, 0.56183756, 0.56183756, 0.56199531, 0.56199531,
0.56199531, 0.56199531, 0.56171758, 0.56171758, 0.56171758,
0.56171758, 0.58609083, 0.58609083, 0.58609083, 0.58609083,
0.72311334, 0.72311334, 0.72311334, 0.72311334, 1.17609219,
1.17609219, 1.17609219, 1.17609219, 2.18113668, 2.18113668,
2.18113668, 2.18113668, 2.86626909, 2.86626909, 2.86626909,
2.86626909, 2.37228972, 2.37228972, 2.37228972, 2.37228972,
1.2039004 , 1.2039004 , 1.2039004 , 1.2039004 , 1.01187606,
1.01187606, 1.01187606, 1.01187606, 1.00010508, 1.00010508,
1.00010508, 1.00010508, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.33539348e-14, 1.33539348e-14, 1.33539348e-14, 1.33539348e-14,
1.55607325e-13, 1.55607325e-13, 1.55607325e-13, 1.55607325e-13,
1.56402128e-12, 1.56402128e-12, 1.56402128e-12, 1.56402128e-12,
1.45324292e-11, 1.45324292e-11, 1.45324292e-11, 1.45324292e-11,
1.25185482e-10, 1.25185482e-10, 1.25185482e-10, 1.25185482e-10,
1.00094143e-09, 1.00094143e-09, 1.00094143e-09, 1.00094143e-09,
7.42144171e-09, 7.42144171e-09, 7.42144171e-09, 7.42144171e-09,
5.09825802e-08, 5.09825802e-08, 5.09825802e-08, 5.09825802e-08,
3.24157733e-07, 3.24157733e-07, 3.24157733e-07, 3.24157733e-07,
1.90508651e-06, 1.90508651e-06, 1.90508651e-06, 1.90508651e-06,
1.03318499e-05, 1.03318499e-05, 1.03318499e-05, 1.03318499e-05,
5.16016816e-05, 5.16016816e-05, 5.16016816e-05, 5.16016816e-05,
2.36752814e-04, 2.36752814e-04, 2.36752814e-04, 2.36752814e-04,
9.94861791e-04, 9.94861791e-04, 9.94861791e-04, 9.94861791e-04,
3.81489106e-03, 3.81489106e-03, 3.81489106e-03, 3.81489106e-03,
1.32911013e-02, 1.32911013e-02, 1.32911013e-02, 1.32911013e-02,
4.18617207e-02, 4.18617207e-02, 4.18617207e-02, 4.18617207e-02,
1.18555604e-01, 1.18555604e-01, 1.18555604e-01, 1.18555604e-01,
3.00441076e-01, 3.00441076e-01, 3.00441076e-01, 3.00441076e-01,
6.79231840e-01, 6.79231840e-01, 6.79231840e-01, 6.79231840e-01,
1.37049927e+00, 1.37049927e+00, 1.37049927e+00, 1.37049927e+00,
2.48027947e+00, 2.48027947e+00, 2.48027947e+00, 2.48027947e+00,
4.06534852e+00, 4.06534852e+00, 4.06534852e+00, 4.06534852e+00,
6.11874426e+00, 6.11874426e+00, 6.11874426e+00, 6.11874426e+00,
8.59698769e+00, 8.59698769e+00, 8.59698769e+00, 8.59698769e+00,
1.11984851e+01, 1.11984851e+01, 1.11984851e+01, 1.11984851e+01,
1.37435738e+01, 1.37435738e+01, 1.37435738e+01, 1.37435738e+01,
1.61020009e+01, 1.61020009e+01, 1.61020009e+01, 1.61020009e+01,
1.81047370e+01, 1.81047370e+01, 1.81047370e+01, 1.81047370e+01,
1.95637081e+01, 1.95637081e+01, 1.95637081e+01, 1.95637081e+01,
2.02802090e+01, 2.02802090e+01, 2.02802090e+01, 2.02802090e+01,
2.03974866e+01, 2.03974866e+01, 2.03974866e+01, 2.03974866e+01,
2.01688547e+01, 2.01688547e+01, 2.01688547e+01, 2.01688547e+01,
2.00346701e+01, 2.00346701e+01, 2.00346701e+01, 2.00346701e+01,
2.00176538e+01, 2.00176538e+01, 2.00176538e+01, 2.00176538e+01,
2.00209769e+01, 2.00209769e+01, 2.00209769e+01, 2.00209769e+01,
1.99976377e+01, 1.99976377e+01, 1.99976377e+01, 1.99976377e+01,
1.96779963e+01, 1.96779963e+01, 1.96779963e+01, 1.96779963e+01,
1.78764303e+01, 1.78764303e+01, 1.78764303e+01, 1.78764303e+01,
1.11193485e+01, 1.11193485e+01, 1.11193485e+01, 1.11193485e+01,
1.55576781e+00, 1.55576781e+00, 1.55576781e+00, 1.55576781e+00,
1.98900933e-02, 1.98900933e-02, 1.98900933e-02, 1.98900933e-02,
1.52255734e-05, 1.52255734e-05, 1.52255734e-05, 1.52255734e-05,
2.23363364e-09, 2.23363364e-09, 2.23363364e-09, 2.23363364e-09,
3.21107467e-13, 3.21107467e-13, 3.21107467e-13, 3.21107467e-13,
4.55567759e-17, 4.55567759e-17, 4.55567759e-17, 4.55567759e-17,
4.26370518e-21, 4.26370518e-21, 4.26370518e-21, 4.26370518e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999929e+02, 9.99999929e+02, 9.99999929e+02, 9.99999929e+02,
9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
9.99998069e+02, 9.99998069e+02, 9.99998069e+02, 9.99998069e+02,
9.99991142e+02, 9.99991142e+02, 9.99991142e+02, 9.99991142e+02,
9.99962776e+02, 9.99962776e+02, 9.99962776e+02, 9.99962776e+02,
9.99857270e+02, 9.99857270e+02, 9.99857270e+02, 9.99857270e+02,
9.99502814e+02, 9.99502814e+02, 9.99502814e+02, 9.99502814e+02,
9.98434853e+02, 9.98434853e+02, 9.98434853e+02, 9.98434853e+02,
9.95573298e+02, 9.95573298e+02, 9.95573298e+02, 9.95573298e+02,
9.88816876e+02, 9.88816876e+02, 9.88816876e+02, 9.88816876e+02,
9.74879194e+02, 9.74879194e+02, 9.74879194e+02, 9.74879194e+02,
9.49898234e+02, 9.49898234e+02, 9.49898234e+02, 9.49898234e+02,
9.10986409e+02, 9.10986409e+02, 9.10986409e+02, 9.10986409e+02,
8.57855860e+02, 8.57855860e+02, 8.57855860e+02, 8.57855860e+02,
7.93072862e+02, 7.93072862e+02, 7.93072862e+02, 7.93072862e+02,
7.20578542e+02, 7.20578542e+02, 7.20578542e+02, 7.20578542e+02,
6.48800650e+02, 6.48800650e+02, 6.48800650e+02, 6.48800650e+02,
5.86389112e+02, 5.86389112e+02, 5.86389112e+02, 5.86389112e+02,
5.32725608e+02, 5.32725608e+02, 5.32725608e+02, 5.32725608e+02,
4.89778956e+02, 4.89778956e+02, 4.89778956e+02, 4.89778956e+02,
4.61519534e+02, 4.61519534e+02, 4.61519534e+02, 4.61519534e+02,
4.48525367e+02, 4.48525367e+02, 4.48525367e+02, 4.48525367e+02,
4.45928711e+02, 4.45928711e+02, 4.45928711e+02, 4.45928711e+02,
4.49956676e+02, 4.49956676e+02, 4.49956676e+02, 4.49956676e+02,
4.52076499e+02, 4.52076499e+02, 4.52076499e+02, 4.52076499e+02,
4.52643316e+02, 4.52643316e+02, 4.52643316e+02, 4.52643316e+02,
4.53164778e+02, 4.53164778e+02, 4.53164778e+02, 4.53164778e+02,
4.52705085e+02, 4.52705085e+02, 4.52705085e+02, 4.52705085e+02,
4.42106466e+02, 4.42106466e+02, 4.42106466e+02, 4.42106466e+02,
3.66606419e+02, 3.66606419e+02, 3.66606419e+02, 3.66606419e+02,
1.43278417e+02, 1.43278417e+02, 1.43278417e+02, 1.43278417e+02,
7.05131525e+00, 7.05131525e+00, 7.05131525e+00, 7.05131525e+00,
2.69964841e-02, 2.69964841e-02, 2.69964841e-02, 2.69964841e-02,
1.00018104e-02, 1.00018104e-02, 1.00018104e-02, 1.00018104e-02,
1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999995, 0.99999995, 0.99999995,
0.99999995, 0.99999974, 0.99999974, 0.99999974, 0.99999974,
0.99999876, 0.99999876, 0.99999876, 0.99999876, 0.99999446,
0.99999446, 0.99999446, 0.99999446, 0.99997733, 0.99997733,
0.99997733, 0.99997733, 0.99991492, 0.99991492, 0.99991492,
0.99991492, 0.99970841, 0.99970841, 0.99970841, 0.99970841,
0.99909185, 0.99909185, 0.99909185, 0.99909185, 0.99744342,
0.99744342, 0.99744342, 0.99744342, 0.99352897, 0.99352897,
0.99352897, 0.99352897, 0.98533607, 0.98533607, 0.98533607,
0.98533607, 0.9703007 , 0.9703007 , 0.9703007 , 0.9703007 ,
0.94611525, 0.94611525, 0.94611525, 0.94611525, 0.91178545,
0.91178545, 0.91178545, 0.91178545, 0.8681275 , 0.8681275 ,
0.8681275 , 0.8681275 , 0.81711896, 0.81711896, 0.81711896,
0.81711896, 0.76228815, 0.76228815, 0.76228815, 0.76228815,
0.71063528, 0.71063528, 0.71063528, 0.71063528, 0.66449658,
0.66449658, 0.66449658, 0.66449658, 0.62236199, 0.62236199,
0.62236199, 0.62236199, 0.59504764, 0.59504764, 0.59504764,
0.59504764, 0.56660492, 0.56660492, 0.56660492, 0.56660492,
0.56344579, 0.56344579, 0.56344579, 0.56344579, 0.56277418,
0.56277418, 0.56277418, 0.56277418, 0.56425748, 0.56425748,
0.56425748, 0.56425748, 0.56271208, 0.56271208, 0.56271208,
0.56271208, 0.57532902, 0.57532902, 0.57532902, 0.57532902,
0.66138282, 0.66138282, 0.66138282, 0.66138282, 0.97477241,
0.97477241, 0.97477241, 0.97477241, 1.76866995, 1.76866995,
1.76866995, 1.76866995, 2.79140624, 2.79140624, 2.79140624,
2.79140624, 2.85504716, 2.85504716, 2.85504716, 2.85504716,
1.6572704 , 1.6572704 , 1.6572704 , 1.6572704 , 1.05142481,
1.05142481, 1.05142481, 1.05142481, 1.00163012, 1.00163012,
1.00163012, 1.00163012, 1.00000124, 1.00000124, 1.00000124,
1.00000124, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.24969420e-13, 2.24969420e-13, 2.24969420e-13, 2.24969420e-13,
2.25206716e-12, 2.25206716e-12, 2.25206716e-12, 2.25206716e-12,
1.95360740e-11, 1.95360740e-11, 1.95360740e-11, 1.95360740e-11,
1.57777129e-10, 1.57777129e-10, 1.57777129e-10, 1.57777129e-10,
1.18752511e-09, 1.18752511e-09, 1.18752511e-09, 1.18752511e-09,
8.32407101e-09, 8.32407101e-09, 8.32407101e-09, 8.32407101e-09,
5.42910740e-08, 5.42910740e-08, 5.42910740e-08, 5.42910740e-08,
3.29113213e-07, 3.29113213e-07, 3.29113213e-07, 3.29113213e-07,
1.85184067e-06, 1.85184067e-06, 1.85184067e-06, 1.85184067e-06,
9.65592764e-06, 9.65592764e-06, 9.65592764e-06, 9.65592764e-06,
4.65650184e-05, 4.65650184e-05, 4.65650184e-05, 4.65650184e-05,
2.07190385e-04, 2.07190385e-04, 2.07190385e-04, 2.07190385e-04,
8.48170242e-04, 8.48170242e-04, 8.48170242e-04, 8.48170242e-04,
3.18354794e-03, 3.18354794e-03, 3.18354794e-03, 3.18354794e-03,
1.09115255e-02, 1.09115255e-02, 1.09115255e-02, 1.09115255e-02,
3.39908368e-02, 3.39908368e-02, 3.39908368e-02, 3.39908368e-02,
9.57478717e-02, 9.57478717e-02, 9.57478717e-02, 9.57478717e-02,
2.42712876e-01, 2.42712876e-01, 2.42712876e-01, 2.42712876e-01,
5.51793377e-01, 5.51793377e-01, 5.51793377e-01, 5.51793377e-01,
1.12446443e+00, 1.12446443e+00, 1.12446443e+00, 1.12446443e+00,
2.06118893e+00, 2.06118893e+00, 2.06118893e+00, 2.06118893e+00,
3.42552666e+00, 3.42552666e+00, 3.42552666e+00, 3.42552666e+00,
5.22314600e+00, 5.22314600e+00, 5.22314600e+00, 5.22314600e+00,
7.41906287e+00, 7.41906287e+00, 7.41906287e+00, 7.41906287e+00,
9.88411479e+00, 9.88411479e+00, 9.88411479e+00, 9.88411479e+00,
1.23254490e+01, 1.23254490e+01, 1.23254490e+01, 1.23254490e+01,
1.46753619e+01, 1.46753619e+01, 1.46753619e+01, 1.46753619e+01,
1.68362063e+01, 1.68362063e+01, 1.68362063e+01, 1.68362063e+01,
1.85972036e+01, 1.85972036e+01, 1.85972036e+01, 1.85972036e+01,
1.97810316e+01, 1.97810316e+01, 1.97810316e+01, 1.97810316e+01,
2.03056736e+01, 2.03056736e+01, 2.03056736e+01, 2.03056736e+01,
2.03583742e+01, 2.03583742e+01, 2.03583742e+01, 2.03583742e+01,
2.01400339e+01, 2.01400339e+01, 2.01400339e+01, 2.01400339e+01,
2.00353247e+01, 2.00353247e+01, 2.00353247e+01, 2.00353247e+01,
2.00086210e+01, 2.00086210e+01, 2.00086210e+01, 2.00086210e+01,
2.00116248e+01, 2.00116248e+01, 2.00116248e+01, 2.00116248e+01,
2.00091285e+01, 2.00091285e+01, 2.00091285e+01, 2.00091285e+01,
1.98825700e+01, 1.98825700e+01, 1.98825700e+01, 1.98825700e+01,
1.90344265e+01, 1.90344265e+01, 1.90344265e+01, 1.90344265e+01,
1.51585367e+01, 1.51585367e+01, 1.51585367e+01, 1.51585367e+01,
5.49808022e+00, 5.49808022e+00, 5.49808022e+00, 5.49808022e+00,
2.20110268e-01, 2.20110268e-01, 2.20110268e-01, 2.20110268e-01,
7.04288698e-04, 7.04288698e-04, 7.04288698e-04, 7.04288698e-04,
1.46929013e-07, 1.46929013e-07, 1.46929013e-07, 1.46929013e-07,
2.17393213e-11, 2.17393213e-11, 2.17393213e-11, 2.17393213e-11,
3.25874024e-15, 3.25874024e-15, 3.25874024e-15, 3.25874024e-15,
4.93883641e-19, 4.93883641e-19, 4.93883641e-19, 4.93883641e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999931e+02, 9.99999931e+02, 9.99999931e+02, 9.99999931e+02,
9.99999639e+02, 9.99999639e+02, 9.99999639e+02, 9.99999639e+02,
9.99998258e+02, 9.99998258e+02, 9.99998258e+02, 9.99998258e+02,
9.99992248e+02, 9.99992248e+02, 9.99992248e+02, 9.99992248e+02,
9.99968265e+02, 9.99968265e+02, 9.99968265e+02, 9.99968265e+02,
9.99880890e+02, 9.99880890e+02, 9.99880890e+02, 9.99880890e+02,
9.99591810e+02, 9.99591810e+02, 9.99591810e+02, 9.99591810e+02,
9.98728953e+02, 9.98728953e+02, 9.98728953e+02, 9.98728953e+02,
9.96423469e+02, 9.96423469e+02, 9.96423469e+02, 9.96423469e+02,
9.90956621e+02, 9.90956621e+02, 9.90956621e+02, 9.90956621e+02,
9.79547910e+02, 9.79547910e+02, 9.79547910e+02, 9.79547910e+02,
9.58721154e+02, 9.58721154e+02, 9.58721154e+02, 9.58721154e+02,
9.25505523e+02, 9.25505523e+02, 9.25505523e+02, 9.25505523e+02,
8.78949351e+02, 8.78949351e+02, 8.78949351e+02, 8.78949351e+02,
8.20748601e+02, 8.20748601e+02, 8.20748601e+02, 8.20748601e+02,
7.54214683e+02, 7.54214683e+02, 7.54214683e+02, 7.54214683e+02,
6.84375067e+02, 6.84375067e+02, 6.84375067e+02, 6.84375067e+02,
6.20368568e+02, 6.20368568e+02, 6.20368568e+02, 6.20368568e+02,
5.64370431e+02, 5.64370431e+02, 5.64370431e+02, 5.64370431e+02,
5.17160227e+02, 5.17160227e+02, 5.17160227e+02, 5.17160227e+02,
4.80250812e+02, 4.80250812e+02, 4.80250812e+02, 4.80250812e+02,
4.56943598e+02, 4.56943598e+02, 4.56943598e+02, 4.56943598e+02,
4.47678145e+02, 4.47678145e+02, 4.47678145e+02, 4.47678145e+02,
4.46796826e+02, 4.46796826e+02, 4.46796826e+02, 4.46796826e+02,
4.50880096e+02, 4.50880096e+02, 4.50880096e+02, 4.50880096e+02,
4.52357569e+02, 4.52357569e+02, 4.52357569e+02, 4.52357569e+02,
4.52616932e+02, 4.52616932e+02, 4.52616932e+02, 4.52616932e+02,
4.52970783e+02, 4.52970783e+02, 4.52970783e+02, 4.52970783e+02,
4.53046444e+02, 4.53046444e+02, 4.53046444e+02, 4.53046444e+02,
4.49923083e+02, 4.49923083e+02, 4.49923083e+02, 4.49923083e+02,
4.15828843e+02, 4.15828843e+02, 4.15828843e+02, 4.15828843e+02,
2.62221323e+02, 2.62221323e+02, 2.62221323e+02, 2.62221323e+02,
4.12019102e+01, 4.12019102e+01, 4.12019102e+01, 4.12019102e+01,
4.94445574e-01, 4.94445574e-01, 4.94445574e-01, 4.94445574e-01,
1.01642073e-02, 1.01642073e-02, 1.01642073e-02, 1.01642073e-02,
1.00000174e-02, 1.00000174e-02, 1.00000174e-02, 1.00000174e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999976, 0.99999976, 0.99999976,
0.99999976, 0.99999889, 0.99999889, 0.99999889, 0.99999889,
0.99999519, 0.99999519, 0.99999519, 0.99999519, 0.99998075,
0.99998075, 0.99998075, 0.99998075, 0.9999291 , 0.9999291 ,
0.9999291 , 0.9999291 , 0.99976052, 0.99976052, 0.99976052,
0.99976052, 0.99926135, 0.99926135, 0.99926135, 0.99926135,
0.99793005, 0.99793005, 0.99793005, 0.99793005, 0.99475663,
0.99475663, 0.99475663, 0.99475663, 0.98804657, 0.98804657,
0.98804657, 0.98804657, 0.97553184, 0.97553184, 0.97553184,
0.97553184, 0.95497685, 0.95497685, 0.95497685, 0.95497685,
0.92511099, 0.92511099, 0.92511099, 0.92511099, 0.88625836,
0.88625836, 0.88625836, 0.88625836, 0.84008392, 0.84008392,
0.84008392, 0.84008392, 0.78876117, 0.78876117, 0.78876117,
0.78876117, 0.73758834, 0.73758834, 0.73758834, 0.73758834,
0.69072274, 0.69072274, 0.69072274, 0.69072274, 0.64901095,
0.64901095, 0.64901095, 0.64901095, 0.61063333, 0.61063333,
0.61063333, 0.61063333, 0.58838435, 0.58838435, 0.58838435,
0.58838435, 0.56482776, 0.56482776, 0.56482776, 0.56482776,
0.56211874, 0.56211874, 0.56211874, 0.56211874, 0.56323644,
0.56323644, 0.56323644, 0.56323644, 0.56573502, 0.56573502,
0.56573502, 0.56573502, 0.56392989, 0.56392989, 0.56392989,
0.56392989, 0.56998742, 0.56998742, 0.56998742, 0.56998742,
0.62261429, 0.62261429, 0.62261429, 0.62261429, 0.83494329,
0.83494329, 0.83494329, 0.83494329, 1.42257004, 1.42257004,
1.42257004, 1.42257004, 2.51165741, 2.51165741, 2.51165741,
2.51165741, 3.03556687, 3.03556687, 3.03556687, 3.03556687,
2.3649753 , 2.3649753 , 2.3649753 , 2.3649753 , 1.18082651,
1.18082651, 1.18082651, 1.18082651, 1.01021472, 1.01021472,
1.01021472, 1.01021472, 1.0000747 , 1.0000747 , 1.0000747 ,
1.0000747 , 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.83938532e-12, 2.83938532e-12, 2.83938532e-12, 2.83938532e-12,
2.48780551e-11, 2.48780551e-11, 2.48780551e-11, 2.48780551e-11,
1.89659153e-10, 1.89659153e-10, 1.89659153e-10, 1.89659153e-10,
1.35318050e-09, 1.35318050e-09, 1.35318050e-09, 1.35318050e-09,
9.02461193e-09, 9.02461193e-09, 9.02461193e-09, 9.02461193e-09,
5.62089401e-08, 5.62089401e-08, 5.62089401e-08, 5.62089401e-08,
3.26589983e-07, 3.26589983e-07, 3.26589983e-07, 3.26589983e-07,
1.76783166e-06, 1.76783166e-06, 1.76783166e-06, 1.76783166e-06,
8.90072519e-06, 8.90072519e-06, 8.90072519e-06, 8.90072519e-06,
4.16033994e-05, 4.16033994e-05, 4.16033994e-05, 4.16033994e-05,
1.80121521e-04, 1.80121521e-04, 1.80121521e-04, 1.80121521e-04,
7.20378916e-04, 7.20378916e-04, 7.20378916e-04, 7.20378916e-04,
2.65286556e-03, 2.65286556e-03, 2.65286556e-03, 2.65286556e-03,
8.96132297e-03, 8.96132297e-03, 8.96132297e-03, 8.96132297e-03,
2.76450137e-02, 2.76450137e-02, 2.76450137e-02, 2.76450137e-02,
7.75091590e-02, 7.75091590e-02, 7.75091590e-02, 7.75091590e-02,
1.96575287e-01, 1.96575287e-01, 1.96575287e-01, 1.96575287e-01,
4.49321350e-01, 4.49321350e-01, 4.49321350e-01, 4.49321350e-01,
9.24431499e-01, 9.24431499e-01, 9.24431499e-01, 9.24431499e-01,
1.71576116e+00, 1.71576116e+00, 1.71576116e+00, 1.71576116e+00,
2.89106042e+00, 2.89106042e+00, 2.89106042e+00, 2.89106042e+00,
4.46780650e+00, 4.46780650e+00, 4.46780650e+00, 4.46780650e+00,
6.41677343e+00, 6.41677343e+00, 6.41677343e+00, 6.41677343e+00,
8.68601329e+00, 8.68601329e+00, 8.68601329e+00, 8.68601329e+00,
1.10249054e+01, 1.10249054e+01, 1.10249054e+01, 1.10249054e+01,
1.33220447e+01, 1.33220447e+01, 1.33220447e+01, 1.33220447e+01,
1.54925996e+01, 1.54925996e+01, 1.54925996e+01, 1.54925996e+01,
1.74546801e+01, 1.74546801e+01, 1.74546801e+01, 1.74546801e+01,
1.89986134e+01, 1.89986134e+01, 1.89986134e+01, 1.89986134e+01,
1.99480450e+01, 1.99480450e+01, 1.99480450e+01, 1.99480450e+01,
2.03051988e+01, 2.03051988e+01, 2.03051988e+01, 2.03051988e+01,
2.03097963e+01, 2.03097963e+01, 2.03097963e+01, 2.03097963e+01,
2.01135364e+01, 2.01135364e+01, 2.01135364e+01, 2.01135364e+01,
2.00395134e+01, 2.00395134e+01, 2.00395134e+01, 2.00395134e+01,
2.00112282e+01, 2.00112282e+01, 2.00112282e+01, 2.00112282e+01,
2.00045207e+01, 2.00045207e+01, 2.00045207e+01, 2.00045207e+01,
2.00069683e+01, 2.00069683e+01, 2.00069683e+01, 2.00069683e+01,
1.99578722e+01, 1.99578722e+01, 1.99578722e+01, 1.99578722e+01,
1.95688870e+01, 1.95688870e+01, 1.95688870e+01, 1.95688870e+01,
1.75969855e+01, 1.75969855e+01, 1.75969855e+01, 1.75969855e+01,
1.06108424e+01, 1.06108424e+01, 1.06108424e+01, 1.06108424e+01,
1.32398591e+00, 1.32398591e+00, 1.32398591e+00, 1.32398591e+00,
1.52470806e-02, 1.52470806e-02, 1.52470806e-02, 1.52470806e-02,
1.02514744e-05, 1.02514744e-05, 1.02514744e-05, 1.02514744e-05,
1.51595044e-09, 1.51595044e-09, 1.51595044e-09, 1.51595044e-09,
2.21449669e-13, 2.21449669e-13, 2.21449669e-13, 2.21449669e-13,
3.21821680e-17, 3.21821680e-17, 3.21821680e-17, 3.21821680e-17,
4.22583135e-21, 4.22583135e-21, 4.22583135e-21, 4.22583135e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999934e+02, 9.99999934e+02, 9.99999934e+02, 9.99999934e+02,
9.99999667e+02, 9.99999667e+02, 9.99999667e+02, 9.99999667e+02,
9.99998443e+02, 9.99998443e+02, 9.99998443e+02, 9.99998443e+02,
9.99993260e+02, 9.99993260e+02, 9.99993260e+02, 9.99993260e+02,
9.99973046e+02, 9.99973046e+02, 9.99973046e+02, 9.99973046e+02,
9.99900744e+02, 9.99900744e+02, 9.99900744e+02, 9.99900744e+02,
9.99664753e+02, 9.99664753e+02, 9.99664753e+02, 9.99664753e+02,
9.98966129e+02, 9.98966129e+02, 9.98966129e+02, 9.98966129e+02,
9.97103821e+02, 9.97103821e+02, 9.97103821e+02, 9.97103821e+02,
9.92669836e+02, 9.92669836e+02, 9.92669836e+02, 9.92669836e+02,
9.83316822e+02, 9.83316822e+02, 9.83316822e+02, 9.83316822e+02,
9.65949266e+02, 9.65949266e+02, 9.65949266e+02, 9.65949266e+02,
9.37629572e+02, 9.37629572e+02, 9.37629572e+02, 9.37629572e+02,
8.96925524e+02, 8.96925524e+02, 8.96925524e+02, 8.96925524e+02,
8.44757270e+02, 8.44757270e+02, 8.44757270e+02, 8.44757270e+02,
7.83932229e+02, 7.83932229e+02, 7.83932229e+02, 7.83932229e+02,
7.17860197e+02, 7.17860197e+02, 7.17860197e+02, 7.17860197e+02,
6.53411534e+02, 6.53411534e+02, 6.53411534e+02, 6.53411534e+02,
5.96226302e+02, 5.96226302e+02, 5.96226302e+02, 5.96226302e+02,
5.45775399e+02, 5.45775399e+02, 5.45775399e+02, 5.45775399e+02,
5.04059456e+02, 5.04059456e+02, 5.04059456e+02, 5.04059456e+02,
4.72707776e+02, 4.72707776e+02, 4.72707776e+02, 4.72707776e+02,
4.53820542e+02, 4.53820542e+02, 4.53820542e+02, 4.53820542e+02,
4.47282842e+02, 4.47282842e+02, 4.47282842e+02, 4.47282842e+02,
4.47539085e+02, 4.47539085e+02, 4.47539085e+02, 4.47539085e+02,
4.51468618e+02, 4.51468618e+02, 4.51468618e+02, 4.51468618e+02,
4.52679279e+02, 4.52679279e+02, 4.52679279e+02, 4.52679279e+02,
4.52744959e+02, 4.52744959e+02, 4.52744959e+02, 4.52744959e+02,
4.52862141e+02, 4.52862141e+02, 4.52862141e+02, 4.52862141e+02,
4.53025731e+02, 4.53025731e+02, 4.53025731e+02, 4.53025731e+02,
4.52509333e+02, 4.52509333e+02, 4.52509333e+02, 4.52509333e+02,
4.39197326e+02, 4.39197326e+02, 4.39197326e+02, 4.39197326e+02,
3.55061144e+02, 3.55061144e+02, 3.55061144e+02, 3.55061144e+02,
1.28955744e+02, 1.28955744e+02, 1.28955744e+02, 1.28955744e+02,
5.63751354e+00, 5.63751354e+00, 5.63751354e+00, 5.63751354e+00,
2.16308297e-02, 2.16308297e-02, 2.16308297e-02, 2.16308297e-02,
1.00012116e-02, 1.00012116e-02, 1.00012116e-02, 1.00012116e-02,
1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999978, 0.99999978,
0.99999978, 0.99999978, 0.99999901, 0.99999901, 0.99999901,
0.99999901, 0.99999584, 0.99999584, 0.99999584, 0.99999584,
0.9999837 , 0.9999837 , 0.9999837 , 0.9999837 , 0.99994098,
0.99994098, 0.99994098, 0.99994098, 0.99980323, 0.99980323,
0.99980323, 0.99980323, 0.99939833, 0.99939833, 0.99939833,
0.99939833, 0.99832066, 0.99832066, 0.99832066, 0.99832066,
0.99574245, 0.99574245, 0.99574245, 0.99574245, 0.99023874,
0.99023874, 0.99023874, 0.99023874, 0.97981742, 0.97981742,
0.97981742, 0.97981742, 0.96235966, 0.96235966, 0.96235966,
0.96235966, 0.93641648, 0.93641648, 0.93641648, 0.93641648,
0.90189237, 0.90189237, 0.90189237, 0.90189237, 0.86005507,
0.86005507, 0.86005507, 0.86005507, 0.81274868, 0.81274868,
0.81274868, 0.81274868, 0.76311269, 0.76311269, 0.76311269,
0.76311269, 0.71642 , 0.71642 , 0.71642 , 0.71642 ,
0.67333822, 0.67333822, 0.67333822, 0.67333822, 0.63583393,
0.63583393, 0.63583393, 0.63583393, 0.6007504 , 0.6007504 ,
0.6007504 , 0.6007504 , 0.58279291, 0.58279291, 0.58279291,
0.58279291, 0.56410322, 0.56410322, 0.56410322, 0.56410322,
0.56160416, 0.56160416, 0.56160416, 0.56160416, 0.56332121,
0.56332121, 0.56332121, 0.56332121, 0.56656977, 0.56656977,
0.56656977, 0.56656977, 0.56500324, 0.56500324, 0.56500324,
0.56500324, 0.56762 , 0.56762 , 0.56762 , 0.56762 ,
0.59894803, 0.59894803, 0.59894803, 0.59894803, 0.74001262,
0.74001262, 0.74001262, 0.74001262, 1.16399112, 1.16399112,
1.16399112, 1.16399112, 2.10522387, 2.10522387, 2.10522387,
2.10522387, 3.01416422, 3.01416422, 3.01416422, 3.01416422,
2.93378532, 2.93378532, 2.93378532, 2.93378532, 1.60066424,
1.60066424, 1.60066424, 1.60066424, 1.0447292 , 1.0447292 ,
1.0447292 , 1.0447292 , 1.00129844, 1.00129844, 1.00129844,
1.00129844, 1.0000008 , 1.0000008 , 1.0000008 , 1.0000008 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.79929625e-11, 2.79929625e-11, 2.79929625e-11, 2.79929625e-11,
2.19420258e-10, 2.19420258e-10, 2.19420258e-10, 2.19420258e-10,
1.49116083e-09, 1.49116083e-09, 1.49116083e-09, 1.49116083e-09,
9.51188129e-09, 9.51188129e-09, 9.51188129e-09, 9.51188129e-09,
5.68485475e-08, 5.68485475e-08, 5.68485475e-08, 5.68485475e-08,
3.17985043e-07, 3.17985043e-07, 3.17985043e-07, 3.17985043e-07,
1.66248056e-06, 1.66248056e-06, 1.66248056e-06, 1.66248056e-06,
8.11135729e-06, 8.11135729e-06, 8.11135729e-06, 8.11135729e-06,
3.68655451e-05, 3.68655451e-05, 3.68655451e-05, 3.68655451e-05,
1.55738945e-04, 1.55738945e-04, 1.55738945e-04, 1.55738945e-04,
6.09972860e-04, 6.09972860e-04, 6.09972860e-04, 6.09972860e-04,
2.20822367e-03, 2.20822367e-03, 2.20822367e-03, 2.20822367e-03,
7.36278800e-03, 7.36278800e-03, 7.36278800e-03, 7.36278800e-03,
2.25170918e-02, 2.25170918e-02, 2.25170918e-02, 2.25170918e-02,
6.28736376e-02, 6.28736376e-02, 6.28736376e-02, 6.28736376e-02,
1.59557051e-01, 1.59557051e-01, 1.59557051e-01, 1.59557051e-01,
3.66605239e-01, 3.66605239e-01, 3.66605239e-01, 3.66605239e-01,
7.61197294e-01, 7.61197294e-01, 7.61197294e-01, 7.61197294e-01,
1.42997959e+00, 1.42997959e+00, 1.42997959e+00, 1.42997959e+00,
2.44258800e+00, 2.44258800e+00, 2.44258800e+00, 2.44258800e+00,
3.82666940e+00, 3.82666940e+00, 3.82666940e+00, 3.82666940e+00,
5.56323490e+00, 5.56323490e+00, 5.56323490e+00, 5.56323490e+00,
7.61102512e+00, 7.61102512e+00, 7.61102512e+00, 7.61102512e+00,
9.84104209e+00, 9.84104209e+00, 9.84104209e+00, 9.84104209e+00,
1.20553642e+01, 1.20553642e+01, 1.20553642e+01, 1.20553642e+01,
1.42019457e+01, 1.42019457e+01, 1.42019457e+01, 1.42019457e+01,
1.62097468e+01, 1.62097468e+01, 1.62097468e+01, 1.62097468e+01,
1.79765031e+01, 1.79765031e+01, 1.79765031e+01, 1.79765031e+01,
1.93158941e+01, 1.93158941e+01, 1.93158941e+01, 1.93158941e+01,
2.00703083e+01, 2.00703083e+01, 2.00703083e+01, 2.00703083e+01,
2.03013658e+01, 2.03013658e+01, 2.03013658e+01, 2.03013658e+01,
2.02568791e+01, 2.02568791e+01, 2.02568791e+01, 2.02568791e+01,
2.00856952e+01, 2.00856952e+01, 2.00856952e+01, 2.00856952e+01,
2.00397257e+01, 2.00397257e+01, 2.00397257e+01, 2.00397257e+01,
2.00181798e+01, 2.00181798e+01, 2.00181798e+01, 2.00181798e+01,
2.00054208e+01, 2.00054208e+01, 2.00054208e+01, 2.00054208e+01,
2.00025663e+01, 2.00025663e+01, 2.00025663e+01, 2.00025663e+01,
1.99793630e+01, 1.99793630e+01, 1.99793630e+01, 1.99793630e+01,
1.98071108e+01, 1.98071108e+01, 1.98071108e+01, 1.98071108e+01,
1.88547396e+01, 1.88547396e+01, 1.88547396e+01, 1.88547396e+01,
1.47204337e+01, 1.47204337e+01, 1.47204337e+01, 1.47204337e+01,
4.95781616e+00, 4.95781616e+00, 4.95781616e+00, 4.95781616e+00,
1.75493310e-01, 1.75493310e-01, 1.75493310e-01, 1.75493310e-01,
4.85757486e-04, 4.85757486e-04, 4.85757486e-04, 4.85757486e-04,
9.51110561e-08, 9.51110561e-08, 9.51110561e-08, 9.51110561e-08,
1.44293431e-11, 1.44293431e-11, 1.44293431e-11, 1.44293431e-11,
2.19762024e-15, 2.19762024e-15, 2.19762024e-15, 2.19762024e-15,
3.19887277e-19, 3.19887277e-19, 3.19887277e-19, 3.19887277e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
9.99999938e+02, 9.99999938e+02, 9.99999938e+02, 9.99999938e+02,
9.99999697e+02, 9.99999697e+02, 9.99999697e+02, 9.99999697e+02,
9.99998621e+02, 9.99998621e+02, 9.99998621e+02, 9.99998621e+02,
9.99994173e+02, 9.99994173e+02, 9.99994173e+02, 9.99994173e+02,
9.99977177e+02, 9.99977177e+02, 9.99977177e+02, 9.99977177e+02,
9.99917379e+02, 9.99917379e+02, 9.99917379e+02, 9.99917379e+02,
9.99724547e+02, 9.99724547e+02, 9.99724547e+02, 9.99724547e+02,
9.99157826e+02, 9.99157826e+02, 9.99157826e+02, 9.99157826e+02,
9.97650081e+02, 9.97650081e+02, 9.97650081e+02, 9.97650081e+02,
9.94046407e+02, 9.94046407e+02, 9.94046407e+02, 9.94046407e+02,
9.86368788e+02, 9.86368788e+02, 9.86368788e+02, 9.86368788e+02,
9.71884304e+02, 9.71884304e+02, 9.71884304e+02, 9.71884304e+02,
9.47768311e+02, 9.47768311e+02, 9.47768311e+02, 9.47768311e+02,
9.12263212e+02, 9.12263212e+02, 9.12263212e+02, 9.12263212e+02,
8.65625167e+02, 8.65625167e+02, 8.65625167e+02, 8.65625167e+02,
8.10053427e+02, 8.10053427e+02, 8.10053427e+02, 8.10053427e+02,
7.48503051e+02, 7.48503051e+02, 7.48503051e+02, 7.48503051e+02,
6.85291622e+02, 6.85291622e+02, 6.85291622e+02, 6.85291622e+02,
6.27294016e+02, 6.27294016e+02, 6.27294016e+02, 6.27294016e+02,
5.75413147e+02, 5.75413147e+02, 5.75413147e+02, 5.75413147e+02,
5.30001905e+02, 5.30001905e+02, 5.30001905e+02, 5.30001905e+02,
4.93087463e+02, 4.93087463e+02, 4.93087463e+02, 4.93087463e+02,
4.66655572e+02, 4.66655572e+02, 4.66655572e+02, 4.66655572e+02,
4.51807159e+02, 4.51807159e+02, 4.51807159e+02, 4.51807159e+02,
4.47311434e+02, 4.47311434e+02, 4.47311434e+02, 4.47311434e+02,
4.48215613e+02, 4.48215613e+02, 4.48215613e+02, 4.48215613e+02,
4.51762807e+02, 4.51762807e+02, 4.51762807e+02, 4.51762807e+02,
4.52868403e+02, 4.52868403e+02, 4.52868403e+02, 4.52868403e+02,
4.52955491e+02, 4.52955491e+02, 4.52955491e+02, 4.52955491e+02,
4.52909327e+02, 4.52909327e+02, 4.52909327e+02, 4.52909327e+02,
4.52981643e+02, 4.52981643e+02, 4.52981643e+02, 4.52981643e+02,
4.53214804e+02, 4.53214804e+02, 4.53214804e+02, 4.53214804e+02,
4.48990326e+02, 4.48990326e+02, 4.48990326e+02, 4.48990326e+02,
4.09131640e+02, 4.09131640e+02, 4.09131640e+02, 4.09131640e+02,
2.45517697e+02, 2.45517697e+02, 2.45517697e+02, 2.45517697e+02,
3.47160317e+01, 3.47160317e+01, 3.47160317e+01, 3.47160317e+01,
3.62894316e-01, 3.62894316e-01, 3.62894316e-01, 3.62894316e-01,
1.00998011e-02, 1.00998011e-02, 1.00998011e-02, 1.00998011e-02,
1.00000113e-02, 1.00000113e-02, 1.00000113e-02, 1.00000113e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.9999998 ,
0.9999998 , 0.9999998 , 0.9999998 , 0.99999913, 0.99999913,
0.99999913, 0.99999913, 0.99999642, 0.99999642, 0.99999642,
0.99999642, 0.99998623, 0.99998623, 0.99998623, 0.99998623,
0.99995092, 0.99995092, 0.99995092, 0.99995092, 0.99983826,
0.99983826, 0.99983826, 0.99983826, 0.99950927, 0.99950927,
0.99950927, 0.99950927, 0.99863513, 0.99863513, 0.99863513,
0.99863513, 0.9965366 , 0.9965366 , 0.9965366 , 0.9965366 ,
0.99201676, 0.99201676, 0.99201676, 0.99201676, 0.9833362 ,
0.9833362 , 0.9833362 , 0.9833362 , 0.9685206 , 0.9685206 ,
0.9685206 , 0.9685206 , 0.94602219, 0.94602219, 0.94602219,
0.94602219, 0.91540395, 0.91540395, 0.91540395, 0.91540395,
0.87753992, 0.87753992, 0.87753992, 0.87753992, 0.83410395,
0.83410395, 0.83410395, 0.83410395, 0.78704832, 0.78704832,
0.78704832, 0.78704832, 0.74068485, 0.74068485, 0.74068485,
0.74068485, 0.69785748, 0.69785748, 0.69785748, 0.69785748,
0.65816589, 0.65816589, 0.65816589, 0.65816589, 0.62460018,
0.62460018, 0.62460018, 0.62460018, 0.59255793, 0.59255793,
0.59255793, 0.59255793, 0.57817326, 0.57817326, 0.57817326,
0.57817326, 0.56387564, 0.56387564, 0.56387564, 0.56387564,
0.56157127, 0.56157127, 0.56157127, 0.56157127, 0.56360366,
0.56360366, 0.56360366, 0.56360366, 0.56687447, 0.56687447,
0.56687447, 0.56687447, 0.56576392, 0.56576392, 0.56576392,
0.56576392, 0.56670663, 0.56670663, 0.56670663, 0.56670663,
0.58490731, 0.58490731, 0.58490731, 0.58490731, 0.67692226,
0.67692226, 0.67692226, 0.67692226, 0.97656008, 0.97656008,
0.97656008, 0.97656008, 1.70128216, 1.70128216, 1.70128216,
1.70128216, 2.81354886, 2.81354886, 2.81354886, 2.81354886,
3.17648847, 3.17648847, 3.17648847, 3.17648847, 2.32407513,
2.32407513, 2.32407513, 2.32407513, 1.15871544, 1.15871544,
1.15871544, 1.15871544, 1.00857175, 1.00857175, 1.00857175,
1.00857175, 1.0000498 , 1.0000498 , 1.0000498 , 1.0000498 ,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.25428777e-10, 2.25428777e-10, 2.25428777e-10, 2.25428777e-10,
1.59940645e-09, 1.59940645e-09, 1.59940645e-09, 1.59940645e-09,
9.78961596e-09, 9.78961596e-09, 9.78961596e-09, 9.78961596e-09,
5.63719016e-08, 5.63719016e-08, 5.63719016e-08, 5.63719016e-08,
3.04684391e-07, 3.04684391e-07, 3.04684391e-07, 3.04684391e-07,
1.54374637e-06, 1.54374637e-06, 1.54374637e-06, 1.54374637e-06,
7.32124407e-06, 7.32124407e-06, 7.32124407e-06, 7.32124407e-06,
3.24422534e-05, 3.24422534e-05, 3.24422534e-05, 3.24422534e-05,
1.34046928e-04, 1.34046928e-04, 1.34046928e-04, 1.34046928e-04,
5.15190666e-04, 5.15190666e-04, 5.15190666e-04, 5.15190666e-04,
1.83655079e-03, 1.83655079e-03, 1.83655079e-03, 1.83655079e-03,
6.05207452e-03, 6.05207452e-03, 6.05207452e-03, 6.05207452e-03,
1.83647896e-02, 1.83647896e-02, 1.83647896e-02, 1.83647896e-02,
5.10941202e-02, 5.10941202e-02, 5.10941202e-02, 5.10941202e-02,
1.29756782e-01, 1.29756782e-01, 1.29756782e-01, 1.29756782e-01,
2.99620921e-01, 2.99620921e-01, 2.99620921e-01, 2.99620921e-01,
6.27596355e-01, 6.27596355e-01, 6.27596355e-01, 6.27596355e-01,
1.19286361e+00, 1.19286361e+00, 1.19286361e+00, 1.19286361e+00,
2.06504248e+00, 2.06504248e+00, 2.06504248e+00, 2.06504248e+00,
3.27992371e+00, 3.27992371e+00, 3.27992371e+00, 3.27992371e+00,
4.82922171e+00, 4.82922171e+00, 4.82922171e+00, 4.82922171e+00,
6.67464424e+00, 6.67464424e+00, 6.67464424e+00, 6.67464424e+00,
8.75964265e+00, 8.75964265e+00, 8.75964265e+00, 8.75964265e+00,
1.08803472e+01, 1.08803472e+01, 1.08803472e+01, 1.08803472e+01,
1.29739884e+01, 1.29739884e+01, 1.29739884e+01, 1.29739884e+01,
1.49859636e+01, 1.49859636e+01, 1.49859636e+01, 1.49859636e+01,
1.68387724e+01, 1.68387724e+01, 1.68387724e+01, 1.68387724e+01,
1.84176517e+01, 1.84176517e+01, 1.84176517e+01, 1.84176517e+01,
1.95597613e+01, 1.95597613e+01, 1.95597613e+01, 1.95597613e+01,
2.01515305e+01, 2.01515305e+01, 2.01515305e+01, 2.01515305e+01,
2.02967332e+01, 2.02967332e+01, 2.02967332e+01, 2.02967332e+01,
2.02120023e+01, 2.02120023e+01, 2.02120023e+01, 2.02120023e+01,
2.00605248e+01, 2.00605248e+01, 2.00605248e+01, 2.00605248e+01,
2.00318688e+01, 2.00318688e+01, 2.00318688e+01, 2.00318688e+01,
2.00221885e+01, 2.00221885e+01, 2.00221885e+01, 2.00221885e+01,
2.00111763e+01, 2.00111763e+01, 2.00111763e+01, 2.00111763e+01,
2.00014053e+01, 2.00014053e+01, 2.00014053e+01, 2.00014053e+01,
1.99837206e+01, 1.99837206e+01, 1.99837206e+01, 1.99837206e+01,
1.99044089e+01, 1.99044089e+01, 1.99044089e+01, 1.99044089e+01,
1.94532334e+01, 1.94532334e+01, 1.94532334e+01, 1.94532334e+01,
1.72959877e+01, 1.72959877e+01, 1.72959877e+01, 1.72959877e+01,
1.00492404e+01, 1.00492404e+01, 1.00492404e+01, 1.00492404e+01,
1.10583216e+00, 1.10583216e+00, 1.10583216e+00, 1.10583216e+00,
1.12632792e-02, 1.12632792e-02, 1.12632792e-02, 1.12632792e-02,
6.51995106e-06, 6.51995106e-06, 6.51995106e-06, 6.51995106e-06,
9.65569412e-10, 9.65569412e-10, 9.65569412e-10, 9.65569412e-10,
1.42316510e-13, 1.42316510e-13, 1.42316510e-13, 1.42316510e-13,
2.10270857e-17, 2.10270857e-17, 2.10270857e-17, 2.10270857e-17,
4.23110662e-21, 4.23110662e-21, 4.23110662e-21, 4.23110662e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
9.99999942e+02, 9.99999942e+02, 9.99999942e+02, 9.99999942e+02,
9.99999726e+02, 9.99999726e+02, 9.99999726e+02, 9.99999726e+02,
9.99998786e+02, 9.99998786e+02, 9.99998786e+02, 9.99998786e+02,
9.99994984e+02, 9.99994984e+02, 9.99994984e+02, 9.99994984e+02,
9.99980724e+02, 9.99980724e+02, 9.99980724e+02, 9.99980724e+02,
9.99931285e+02, 9.99931285e+02, 9.99931285e+02, 9.99931285e+02,
9.99773577e+02, 9.99773577e+02, 9.99773577e+02, 9.99773577e+02,
9.99313077e+02, 9.99313077e+02, 9.99313077e+02, 9.99313077e+02,
9.98089948e+02, 9.98089948e+02, 9.98089948e+02, 9.98089948e+02,
9.95155853e+02, 9.95155853e+02, 9.95155853e+02, 9.95155853e+02,
9.88846648e+02, 9.88846648e+02, 9.88846648e+02, 9.88846648e+02,
9.76766510e+02, 9.76766510e+02, 9.76766510e+02, 9.76766510e+02,
9.56255473e+02, 9.56255473e+02, 9.56255473e+02, 9.56255473e+02,
9.25357054e+02, 9.25357054e+02, 9.25357054e+02, 9.25357054e+02,
8.83782170e+02, 8.83782170e+02, 8.83782170e+02, 8.83782170e+02,
8.33130130e+02, 8.33130130e+02, 8.33130130e+02, 8.33130130e+02,
7.76085650e+02, 7.76085650e+02, 7.76085650e+02, 7.76085650e+02,
7.15578042e+02, 7.15578042e+02, 7.15578042e+02, 7.15578042e+02,
6.57188937e+02, 6.57188937e+02, 6.57188937e+02, 6.57188937e+02,
6.04619926e+02, 6.04619926e+02, 6.04619926e+02, 6.04619926e+02,
5.57478206e+02, 5.57478206e+02, 5.57478206e+02, 5.57478206e+02,
5.16581813e+02, 5.16581813e+02, 5.16581813e+02, 5.16581813e+02,
4.83986410e+02, 4.83986410e+02, 4.83986410e+02, 4.83986410e+02,
4.61832276e+02, 4.61832276e+02, 4.61832276e+02, 4.61832276e+02,
4.50505747e+02, 4.50505747e+02, 4.50505747e+02, 4.50505747e+02,
4.47530062e+02, 4.47530062e+02, 4.47530062e+02, 4.47530062e+02,
4.49051988e+02, 4.49051988e+02, 4.49051988e+02, 4.49051988e+02,
4.51904449e+02, 4.51904449e+02, 4.51904449e+02, 4.51904449e+02,
4.52866779e+02, 4.52866779e+02, 4.52866779e+02, 4.52866779e+02,
4.53094164e+02, 4.53094164e+02, 4.53094164e+02, 4.53094164e+02,
4.53054312e+02, 4.53054312e+02, 4.53054312e+02, 4.53054312e+02,
4.53063775e+02, 4.53063775e+02, 4.53063775e+02, 4.53063775e+02,
4.53395324e+02, 4.53395324e+02, 4.53395324e+02, 4.53395324e+02,
4.52569474e+02, 4.52569474e+02, 4.52569474e+02, 4.52569474e+02,
4.35977197e+02, 4.35977197e+02, 4.35977197e+02, 4.35977197e+02,
3.42570389e+02, 3.42570389e+02, 3.42570389e+02, 3.42570389e+02,
1.14587893e+02, 1.14587893e+02, 1.14587893e+02, 1.14587893e+02,
4.38695457e+00, 4.38695457e+00, 4.38695457e+00, 4.38695457e+00,
1.75831808e-02, 1.75831808e-02, 1.75831808e-02, 1.75831808e-02,
1.00007686e-02, 1.00007686e-02, 1.00007686e-02, 1.00007686e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999924,
0.99999924, 0.99999924, 0.99999924, 0.99999693, 0.99999693,
0.99999693, 0.99999693, 0.99998839, 0.99998839, 0.99998839,
0.99998839, 0.99995921, 0.99995921, 0.99995921, 0.99995921,
0.99986699, 0.99986699, 0.99986699, 0.99986699, 0.99959927,
0.99959927, 0.99959927, 0.99959927, 0.99888896, 0.99888896,
0.99888896, 0.99888896, 0.99717807, 0.99717807, 0.99717807,
0.99717807, 0.99346233, 0.99346233, 0.99346233, 0.99346233,
0.98623061, 0.98623061, 0.98623061, 0.98623061, 0.97366804,
0.97366804, 0.97366804, 0.97366804, 0.954191 , 0.954191 ,
0.954191 , 0.954191 , 0.92709612, 0.92709612, 0.92709612,
0.92709612, 0.89288639, 0.89288639, 0.89288639, 0.89288639,
0.85299165, 0.85299165, 0.85299165, 0.85299165, 0.80903108,
0.80903108, 0.80903108, 0.80903108, 0.7637975 , 0.7637975 ,
0.7637975 , 0.7637975 , 0.72115406, 0.72115406, 0.72115406,
0.72115406, 0.68149355, 0.68149355, 0.68149355, 0.68149355,
0.64480222, 0.64480222, 0.64480222, 0.64480222, 0.61500168,
0.61500168, 0.61500168, 0.61500168, 0.58590592, 0.58590592,
0.58590592, 0.58590592, 0.57439796, 0.57439796, 0.57439796,
0.57439796, 0.56387515, 0.56387515, 0.56387515, 0.56387515,
0.56183788, 0.56183788, 0.56183788, 0.56183788, 0.56406492,
0.56406492, 0.56406492, 0.56406492, 0.56696563, 0.56696563,
0.56696563, 0.56696563, 0.5662629 , 0.5662629 , 0.5662629 ,
0.5662629 , 0.56641131, 0.56641131, 0.56641131, 0.56641131,
0.576761 , 0.576761 , 0.576761 , 0.576761 , 0.63578575,
0.63578575, 0.63578575, 0.63578575, 0.84379069, 0.84379069,
0.84379069, 0.84379069, 1.38572903, 1.38572903, 1.38572903,
1.38572903, 2.44002612, 2.44002612, 2.44002612, 2.44002612,
3.20653483, 3.20653483, 3.20653483, 3.20653483, 2.97456245,
2.97456245, 2.97456245, 2.97456245, 1.53663558, 1.53663558,
1.53663558, 1.53663558, 1.0381715 , 1.0381715 , 1.0381715 ,
1.0381715 , 1.00099782, 1.00099782, 1.00099782, 1.00099782,
1.0000005 , 1.0000005 , 1.0000005 , 1.0000005 , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.52640217e-09, 1.52640217e-09, 1.52640217e-09, 1.52640217e-09,
9.88802864e-09, 9.88802864e-09, 9.88802864e-09, 9.88802864e-09,
5.49631705e-08, 5.49631705e-08, 5.49631705e-08, 5.49631705e-08,
2.87970269e-07, 2.87970269e-07, 2.87970269e-07, 2.87970269e-07,
1.41808509e-06, 1.41808509e-06, 1.41808509e-06, 1.41808509e-06,
6.55412036e-06, 6.55412036e-06, 6.55412036e-06, 6.55412036e-06,
2.83823463e-05, 2.83823463e-05, 2.83823463e-05, 2.83823463e-05,
1.14933820e-04, 1.14933820e-04, 1.14933820e-04, 1.14933820e-04,
4.34223292e-04, 4.34223292e-04, 4.34223292e-04, 4.34223292e-04,
1.52641599e-03, 1.52641599e-03, 1.52641599e-03, 1.52641599e-03,
4.97687894e-03, 4.97687894e-03, 4.97687894e-03, 4.97687894e-03,
1.49961991e-02, 1.49961991e-02, 1.49961991e-02, 1.49961991e-02,
4.15882459e-02, 4.15882459e-02, 4.15882459e-02, 4.15882459e-02,
1.05698320e-01, 1.05698320e-01, 1.05698320e-01, 1.05698320e-01,
2.45229407e-01, 2.45229407e-01, 2.45229407e-01, 2.45229407e-01,
5.17987106e-01, 5.17987106e-01, 5.17987106e-01, 5.17987106e-01,
9.95694132e-01, 9.95694132e-01, 9.95694132e-01, 9.95694132e-01,
1.74644988e+00, 1.74644988e+00, 1.74644988e+00, 1.74644988e+00,
2.81214874e+00, 2.81214874e+00, 2.81214874e+00, 2.81214874e+00,
4.19480869e+00, 4.19480869e+00, 4.19480869e+00, 4.19480869e+00,
5.86264757e+00, 5.86264757e+00, 5.86264757e+00, 5.86264757e+00,
7.77472797e+00, 7.77472797e+00, 7.77472797e+00, 7.77472797e+00,
9.80655654e+00, 9.80655654e+00, 9.80655654e+00, 9.80655654e+00,
1.18277382e+01, 1.18277382e+01, 1.18277382e+01, 1.18277382e+01,
1.37971680e+01, 1.37971680e+01, 1.37971680e+01, 1.37971680e+01,
1.56822647e+01, 1.56822647e+01, 1.56822647e+01, 1.56822647e+01,
1.73889246e+01, 1.73889246e+01, 1.73889246e+01, 1.73889246e+01,
1.87901005e+01, 1.87901005e+01, 1.87901005e+01, 1.87901005e+01,
1.97450558e+01, 1.97450558e+01, 1.97450558e+01, 1.97450558e+01,
2.01997684e+01, 2.01997684e+01, 2.01997684e+01, 2.01997684e+01,
2.02877405e+01, 2.02877405e+01, 2.02877405e+01, 2.02877405e+01,
2.01725864e+01, 2.01725864e+01, 2.01725864e+01, 2.01725864e+01,
2.00462536e+01, 2.00462536e+01, 2.00462536e+01, 2.00462536e+01,
2.00208235e+01, 2.00208235e+01, 2.00208235e+01, 2.00208235e+01,
2.00194733e+01, 2.00194733e+01, 2.00194733e+01, 2.00194733e+01,
2.00147202e+01, 2.00147202e+01, 2.00147202e+01, 2.00147202e+01,
2.00035230e+01, 2.00035230e+01, 2.00035230e+01, 2.00035230e+01,
1.99845714e+01, 1.99845714e+01, 1.99845714e+01, 1.99845714e+01,
1.99388525e+01, 1.99388525e+01, 1.99388525e+01, 1.99388525e+01,
1.97268563e+01, 1.97268563e+01, 1.97268563e+01, 1.97268563e+01,
1.86628873e+01, 1.86628873e+01, 1.86628873e+01, 1.86628873e+01,
1.42510014e+01, 1.42510014e+01, 1.42510014e+01, 1.42510014e+01,
4.38724950e+00, 4.38724950e+00, 4.38724950e+00, 4.38724950e+00,
1.35671717e-01, 1.35671717e-01, 1.35671717e-01, 1.35671717e-01,
3.19338310e-04, 3.19338310e-04, 3.19338310e-04, 3.19338310e-04,
5.91067532e-08, 5.91067532e-08, 5.91067532e-08, 5.91067532e-08,
9.14545156e-12, 9.14545156e-12, 9.14545156e-12, 9.14545156e-12,
1.40083653e-15, 1.40083653e-15, 1.40083653e-15, 1.40083653e-15,
2.06948752e-19, 2.06948752e-19, 2.06948752e-19, 2.06948752e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
9.99999947e+02, 9.99999947e+02, 9.99999947e+02, 9.99999947e+02,
9.99999755e+02, 9.99999755e+02, 9.99999755e+02, 9.99999755e+02,
9.99998938e+02, 9.99998938e+02, 9.99998938e+02, 9.99998938e+02,
9.99995700e+02, 9.99995700e+02, 9.99995700e+02, 9.99995700e+02,
9.99983753e+02, 9.99983753e+02, 9.99983753e+02, 9.99983753e+02,
9.99942888e+02, 9.99942888e+02, 9.99942888e+02, 9.99942888e+02,
9.99813799e+02, 9.99813799e+02, 9.99813799e+02, 9.99813799e+02,
9.99439043e+02, 9.99439043e+02, 9.99439043e+02, 9.99439043e+02,
9.98445046e+02, 9.98445046e+02, 9.98445046e+02, 9.98445046e+02,
9.96052372e+02, 9.96052372e+02, 9.96052372e+02, 9.96052372e+02,
9.90862868e+02, 9.90862868e+02, 9.90862868e+02, 9.90862868e+02,
9.80788585e+02, 9.80788585e+02, 9.80788585e+02, 9.80788585e+02,
9.63364916e+02, 9.63364916e+02, 9.63364916e+02, 9.63364916e+02,
9.36537037e+02, 9.36537037e+02, 9.36537037e+02, 9.36537037e+02,
8.99584844e+02, 8.99584844e+02, 8.99584844e+02, 8.99584844e+02,
8.53541949e+02, 8.53541949e+02, 8.53541949e+02, 8.53541949e+02,
8.00725978e+02, 8.00725978e+02, 8.00725978e+02, 8.00725978e+02,
7.43656312e+02, 7.43656312e+02, 7.43656312e+02, 7.43656312e+02,
6.86069806e+02, 6.86069806e+02, 6.86069806e+02, 6.86069806e+02,
6.33063024e+02, 6.33063024e+02, 6.33063024e+02, 6.33063024e+02,
5.84804742e+02, 5.84804742e+02, 5.84804742e+02, 5.84804742e+02,
5.41876353e+02, 5.41876353e+02, 5.41876353e+02, 5.41876353e+02,
5.05141177e+02, 5.05141177e+02, 5.05141177e+02, 5.05141177e+02,
4.76536346e+02, 4.76536346e+02, 4.76536346e+02, 4.76536346e+02,
4.58081353e+02, 4.58081353e+02, 4.58081353e+02, 4.58081353e+02,
4.49630363e+02, 4.49630363e+02, 4.49630363e+02, 4.49630363e+02,
4.47839670e+02, 4.47839670e+02, 4.47839670e+02, 4.47839670e+02,
4.49917497e+02, 4.49917497e+02, 4.49917497e+02, 4.49917497e+02,
4.52105100e+02, 4.52105100e+02, 4.52105100e+02, 4.52105100e+02,
4.52784421e+02, 4.52784421e+02, 4.52784421e+02, 4.52784421e+02,
4.53082540e+02, 4.53082540e+02, 4.53082540e+02, 4.53082540e+02,
4.53173248e+02, 4.53173248e+02, 4.53173248e+02, 4.53173248e+02,
4.53232634e+02, 4.53232634e+02, 4.53232634e+02, 4.53232634e+02,
4.53513027e+02, 4.53513027e+02, 4.53513027e+02, 4.53513027e+02,
4.53743580e+02, 4.53743580e+02, 4.53743580e+02, 4.53743580e+02,
4.47885607e+02, 4.47885607e+02, 4.47885607e+02, 4.47885607e+02,
4.01687163e+02, 4.01687163e+02, 4.01687163e+02, 4.01687163e+02,
2.28101815e+02, 2.28101815e+02, 2.28101815e+02, 2.28101815e+02,
2.86587243e+01, 2.86587243e+01, 2.86587243e+01, 2.86587243e+01,
2.56567373e-01, 2.56567373e-01, 2.56567373e-01, 2.56567373e-01,
1.00575986e-02, 1.00575986e-02, 1.00575986e-02, 1.00575986e-02,
1.00000070e-02, 1.00000070e-02, 1.00000070e-02, 1.00000070e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
0.99999934, 0.99999934, 0.99999934, 0.99999934, 0.99999737,
0.99999737, 0.99999737, 0.99999737, 0.99999024, 0.99999024,
0.99999024, 0.99999024, 0.99996611, 0.99996611, 0.99996611,
0.99996611, 0.99989058, 0.99989058, 0.99989058, 0.99989058,
0.99967241, 0.99967241, 0.99967241, 0.99967241, 0.9990943 ,
0.9990943 , 0.9990943 , 0.9990943 , 0.99769746, 0.99769746,
0.99769746, 0.99769746, 0.99464004, 0.99464004, 0.99464004,
0.99464004, 0.98861492, 0.98861492, 0.98861492, 0.98861492,
0.97797231, 0.97797231, 0.97797231, 0.97797231, 0.96114094,
0.96114094, 0.96114094, 0.96114094, 0.93721972, 0.93721972,
0.93721972, 0.93721972, 0.9063806 , 0.9063806 , 0.9063806 ,
0.9063806 , 0.86977129, 0.86977129, 0.86977129, 0.86977129,
0.8289238 , 0.8289238 , 0.8289238 , 0.8289238 , 0.78560018,
0.78560018, 0.78560018, 0.78560018, 0.74329928, 0.74329928,
0.74329928, 0.74329928, 0.70377185, 0.70377185, 0.70377185,
0.70377185, 0.66708371, 0.66708371, 0.66708371, 0.66708371,
0.6330064 , 0.6330064 , 0.6330064 , 0.6330064 , 0.60675478,
0.60675478, 0.60675478, 0.60675478, 0.58061389, 0.58061389,
0.58061389, 0.58061389, 0.57133748, 0.57133748, 0.57133748,
0.57133748, 0.56401096, 0.56401096, 0.56401096, 0.56401096,
0.56229948, 0.56229948, 0.56229948, 0.56229948, 0.56457284,
0.56457284, 0.56457284, 0.56457284, 0.56699615, 0.56699615,
0.56699615, 0.56699615, 0.56661875, 0.56661875, 0.56661875,
0.56661875, 0.56639427, 0.56639427, 0.56639427, 0.56639427,
0.57210261, 0.57210261, 0.57210261, 0.57210261, 0.60938253,
0.60938253, 0.60938253, 0.60938253, 0.75154823, 0.75154823,
0.75154823, 0.75154823, 1.14834311, 1.14834311, 1.14834311,
1.14834311, 2.00753778, 2.00753778, 2.00753778, 2.00753778,
3.07707073, 3.07707073, 3.07707073, 3.07707073, 3.28851254,
3.28851254, 3.28851254, 3.28851254, 2.25822824, 2.25822824,
2.25822824, 2.25822824, 1.136885 , 1.136885 , 1.136885 ,
1.136885 , 1.00702667, 1.00702667, 1.00702667, 1.00702667,
1.00003133, 1.00003133, 1.00003133, 1.00003133, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([8.88472523e-09, 8.88472523e-09, 8.88472523e-09, 8.88472523e-09,
5.29210904e-08, 5.29210904e-08, 5.29210904e-08, 5.29210904e-08,
2.68968990e-07, 2.68968990e-07, 2.68968990e-07, 2.68968990e-07,
1.29058596e-06, 1.29058596e-06, 1.29058596e-06, 1.29058596e-06,
5.82613011e-06, 5.82613011e-06, 5.82613011e-06, 5.82613011e-06,
2.47055828e-05, 2.47055828e-05, 2.47055828e-05, 2.47055828e-05,
9.82232922e-05, 9.82232922e-05, 9.82232922e-05, 9.82232922e-05,
3.65333376e-04, 3.65333376e-04, 3.65333376e-04, 3.65333376e-04,
1.26798274e-03, 1.26798274e-03, 1.26798274e-03, 1.26798274e-03,
4.09445985e-03, 4.09445985e-03, 4.09445985e-03, 4.09445985e-03,
1.22588183e-02, 1.22588183e-02, 1.22588183e-02, 1.22588183e-02,
3.38993827e-02, 3.38993827e-02, 3.38993827e-02, 3.38993827e-02,
8.62271626e-02, 8.62271626e-02, 8.62271626e-02, 8.62271626e-02,
2.00962075e-01, 2.00962075e-01, 2.00962075e-01, 2.00962075e-01,
4.27886788e-01, 4.27886788e-01, 4.27886788e-01, 4.27886788e-01,
8.31469810e-01, 8.31469810e-01, 8.31469810e-01, 8.31469810e-01,
1.47715354e+00, 1.47715354e+00, 1.47715354e+00, 1.47715354e+00,
2.41104027e+00, 2.41104027e+00, 2.41104027e+00, 2.41104027e+00,
3.64432706e+00, 3.64432706e+00, 3.64432706e+00, 3.64432706e+00,
5.15349521e+00, 5.15349521e+00, 5.15349521e+00, 5.15349521e+00,
6.89898043e+00, 6.89898043e+00, 6.89898043e+00, 6.89898043e+00,
8.82107363e+00, 8.82107363e+00, 8.82107363e+00, 8.82107363e+00,
1.07606034e+01, 1.07606034e+01, 1.07606034e+01, 1.07606034e+01,
1.26809719e+01, 1.26809719e+01, 1.26809719e+01, 1.26809719e+01,
1.45408992e+01, 1.45408992e+01, 1.45408992e+01, 1.45408992e+01,
1.63011956e+01, 1.63011956e+01, 1.63011956e+01, 1.63011956e+01,
1.78659797e+01, 1.78659797e+01, 1.78659797e+01, 1.78659797e+01,
1.91016597e+01, 1.91016597e+01, 1.91016597e+01, 1.91016597e+01,
1.98864085e+01, 1.98864085e+01, 1.98864085e+01, 1.98864085e+01,
2.02241697e+01, 2.02241697e+01, 2.02241697e+01, 2.02241697e+01,
2.02710826e+01, 2.02710826e+01, 2.02710826e+01, 2.02710826e+01,
2.01384385e+01, 2.01384385e+01, 2.01384385e+01, 2.01384385e+01,
2.00398023e+01, 2.00398023e+01, 2.00398023e+01, 2.00398023e+01,
2.00141317e+01, 2.00141317e+01, 2.00141317e+01, 2.00141317e+01,
2.00125047e+01, 2.00125047e+01, 2.00125047e+01, 2.00125047e+01,
2.00117339e+01, 2.00117339e+01, 2.00117339e+01, 2.00117339e+01,
2.00041797e+01, 2.00041797e+01, 2.00041797e+01, 2.00041797e+01,
1.99838495e+01, 1.99838495e+01, 1.99838495e+01, 1.99838495e+01,
1.99519757e+01, 1.99519757e+01, 1.99519757e+01, 1.99519757e+01,
1.98474175e+01, 1.98474175e+01, 1.98474175e+01, 1.98474175e+01,
1.93323898e+01, 1.93323898e+01, 1.93323898e+01, 1.93323898e+01,
1.69770632e+01, 1.69770632e+01, 1.69770632e+01, 1.69770632e+01,
9.43267908e+00, 9.43267908e+00, 9.43267908e+00, 9.43267908e+00,
8.98850413e-01, 8.98850413e-01, 8.98850413e-01, 8.98850413e-01,
7.99452553e-03, 7.99452553e-03, 7.99452553e-03, 7.99452553e-03,
3.95277914e-06, 3.95277914e-06, 3.95277914e-06, 3.95277914e-06,
5.87204713e-10, 5.87204713e-10, 5.87204713e-10, 5.87204713e-10,
8.74454638e-14, 8.74454638e-14, 8.74454638e-14, 8.74454638e-14,
1.31382467e-17, 1.31382467e-17, 1.31382467e-17, 1.31382467e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
9.99999952e+02, 9.99999952e+02, 9.99999952e+02, 9.99999952e+02,
9.99999782e+02, 9.99999782e+02, 9.99999782e+02, 9.99999782e+02,
9.99999076e+02, 9.99999076e+02, 9.99999076e+02, 9.99999076e+02,
9.99996325e+02, 9.99996325e+02, 9.99996325e+02, 9.99996325e+02,
9.99986331e+02, 9.99986331e+02, 9.99986331e+02, 9.99986331e+02,
9.99952558e+02, 9.99952558e+02, 9.99952558e+02, 9.99952558e+02,
9.99846811e+02, 9.99846811e+02, 9.99846811e+02, 9.99846811e+02,
9.99541417e+02, 9.99541417e+02, 9.99541417e+02, 9.99541417e+02,
9.98732356e+02, 9.98732356e+02, 9.98732356e+02, 9.98732356e+02,
9.96778496e+02, 9.96778496e+02, 9.96778496e+02, 9.96778496e+02,
9.92506573e+02, 9.92506573e+02, 9.92506573e+02, 9.92506573e+02,
9.84106027e+02, 9.84106027e+02, 9.84106027e+02, 9.84106027e+02,
9.69322749e+02, 9.69322749e+02, 9.69322749e+02, 9.69322749e+02,
9.46081288e+02, 9.46081288e+02, 9.46081288e+02, 9.46081288e+02,
9.13335017e+02, 9.13335017e+02, 9.13335017e+02, 9.13335017e+02,
8.71610214e+02, 8.71610214e+02, 8.71610214e+02, 8.71610214e+02,
8.22805647e+02, 8.22805647e+02, 8.22805647e+02, 8.22805647e+02,
7.69307087e+02, 7.69307087e+02, 7.69307087e+02, 7.69307087e+02,
7.13651394e+02, 7.13651394e+02, 7.13651394e+02, 7.13651394e+02,
6.60389331e+02, 6.60389331e+02, 6.60389331e+02, 6.60389331e+02,
6.11811082e+02, 6.11811082e+02, 6.11811082e+02, 6.11811082e+02,
5.67482808e+02, 5.67482808e+02, 5.67482808e+02, 5.67482808e+02,
5.28269968e+02, 5.28269968e+02, 5.28269968e+02, 5.28269968e+02,
4.95352222e+02, 4.95352222e+02, 4.95352222e+02, 4.95352222e+02,
4.70492622e+02, 4.70492622e+02, 4.70492622e+02, 4.70492622e+02,
4.55270406e+02, 4.55270406e+02, 4.55270406e+02, 4.55270406e+02,
4.49060619e+02, 4.49060619e+02, 4.49060619e+02, 4.49060619e+02,
4.48201927e+02, 4.48201927e+02, 4.48201927e+02, 4.48201927e+02,
4.50695933e+02, 4.50695933e+02, 4.50695933e+02, 4.50695933e+02,
4.52345569e+02, 4.52345569e+02, 4.52345569e+02, 4.52345569e+02,
4.52754082e+02, 4.52754082e+02, 4.52754082e+02, 4.52754082e+02,
4.52997015e+02, 4.52997015e+02, 4.52997015e+02, 4.52997015e+02,
4.53174880e+02, 4.53174880e+02, 4.53174880e+02, 4.53174880e+02,
4.53361382e+02, 4.53361382e+02, 4.53361382e+02, 4.53361382e+02,
4.53679663e+02, 4.53679663e+02, 4.53679663e+02, 4.53679663e+02,
4.54190653e+02, 4.54190653e+02, 4.54190653e+02, 4.54190653e+02,
4.52637868e+02, 4.52637868e+02, 4.52637868e+02, 4.52637868e+02,
4.32258483e+02, 4.32258483e+02, 4.32258483e+02, 4.32258483e+02,
3.29015504e+02, 3.29015504e+02, 3.29015504e+02, 3.29015504e+02,
1.00405385e+02, 1.00405385e+02, 1.00405385e+02, 1.00405385e+02,
3.29045820e+00, 3.29045820e+00, 3.29045820e+00, 3.29045820e+00,
1.46741752e-02, 1.46741752e-02, 1.46741752e-02, 1.46741752e-02,
1.00004659e-02, 1.00004659e-02, 1.00004659e-02, 1.00004659e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999997, 0.99999997,
0.99999997, 0.99999997, 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999943, 0.99999943, 0.99999943, 0.99999943,
0.99999776, 0.99999776, 0.99999776, 0.99999776, 0.9999918 ,
0.9999918 , 0.9999918 , 0.9999918 , 0.99997186, 0.99997186,
0.99997186, 0.99997186, 0.99990994, 0.99990994, 0.99990994,
0.99990994, 0.99973194, 0.99973194, 0.99973194, 0.99973194,
0.99926076, 0.99926076, 0.99926076, 0.99926076, 0.99811888,
0.99811888, 0.99811888, 0.99811888, 0.9956012 , 0.9956012 ,
0.9956012 , 0.9956012 , 0.99058136, 0.99058136, 0.99058136,
0.99058136, 0.98157355, 0.98157355, 0.98157355, 0.98157355,
0.96705453, 0.96705453, 0.96705453, 0.96705453, 0.94598589,
0.94598589, 0.94598589, 0.94598589, 0.91825438, 0.91825438,
0.91825438, 0.91825438, 0.88471667, 0.88471667, 0.88471667,
0.88471667, 0.84678775, 0.84678775, 0.84678775, 0.84678775,
0.8058432 , 0.8058432 , 0.8058432 , 0.8058432 , 0.76438015,
0.76438015, 0.76438015, 0.76438015, 0.72517919, 0.72517919,
0.72517919, 0.72517919, 0.68826098, 0.68826098, 0.68826098,
0.68826098, 0.65432311, 0.65432311, 0.65432311, 0.65432311,
0.62261428, 0.62261428, 0.62261428, 0.62261428, 0.59964198,
0.59964198, 0.59964198, 0.59964198, 0.57647962, 0.57647962,
0.57647962, 0.57647962, 0.56891377, 0.56891377, 0.56891377,
0.56891377, 0.5642295 , 0.5642295 , 0.5642295 , 0.5642295 ,
0.56291649, 0.56291649, 0.56291649, 0.56291649, 0.56496715,
0.56496715, 0.56496715, 0.56496715, 0.5670335 , 0.5670335 ,
0.5670335 , 0.5670335 , 0.56691285, 0.56691285, 0.56691285,
0.56691285, 0.56649394, 0.56649394, 0.56649394, 0.56649394,
0.56954649, 0.56954649, 0.56954649, 0.56954649, 0.59269675,
0.59269675, 0.59269675, 0.59269675, 0.68846425, 0.68846425,
0.68846425, 0.68846425, 0.97389537, 0.97389537, 0.97389537,
0.97389537, 1.63730131, 1.63730131, 1.63730131, 1.63730131,
2.75902555, 2.75902555, 2.75902555, 2.75902555, 3.37028342,
3.37028342, 3.37028342, 3.37028342, 2.98215238, 2.98215238,
2.98215238, 2.98215238, 1.46829751, 1.46829751, 1.46829751,
1.46829751, 1.03187752, 1.03187752, 1.03187752, 1.03187752,
1.00073195, 1.00073195, 1.00073195, 1.00073195, 1.0000003 ,
1.0000003 , 1.0000003 , 1.0000003 , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([4.52514197e-08, 4.52514197e-08, 4.52514197e-08, 4.52514197e-08,
2.49281931e-07, 2.49281931e-07, 2.49281931e-07, 2.49281931e-07,
1.16502486e-06, 1.16502486e-06, 1.16502486e-06, 1.16502486e-06,
5.14742918e-06, 5.14742918e-06, 5.14742918e-06, 5.14742918e-06,
2.14115184e-05, 2.14115184e-05, 2.14115184e-05, 2.14115184e-05,
8.37057786e-05, 8.37057786e-05, 8.37057786e-05, 8.37057786e-05,
3.06910769e-04, 3.06910769e-04, 3.06910769e-04, 3.06910769e-04,
1.05286130e-03, 1.05286130e-03, 1.05286130e-03, 1.05286130e-03,
3.36989687e-03, 3.36989687e-03, 3.36989687e-03, 3.36989687e-03,
1.00310100e-02, 1.00310100e-02, 1.00310100e-02, 1.00310100e-02,
2.76674775e-02, 2.76674775e-02, 2.76674775e-02, 2.76674775e-02,
7.04345400e-02, 7.04345400e-02, 7.04345400e-02, 7.04345400e-02,
1.64864079e-01, 1.64864079e-01, 1.64864079e-01, 1.64864079e-01,
3.53706435e-01, 3.53706435e-01, 3.53706435e-01, 3.53706435e-01,
6.94517417e-01, 6.94517417e-01, 6.94517417e-01, 6.94517417e-01,
1.24926788e+00, 1.24926788e+00, 1.24926788e+00, 1.24926788e+00,
2.06658717e+00, 2.06658717e+00, 2.06658717e+00, 2.06658717e+00,
3.16549040e+00, 3.16549040e+00, 3.16549040e+00, 3.16549040e+00,
4.53121338e+00, 4.53121338e+00, 4.53121338e+00, 4.53121338e+00,
6.12705253e+00, 6.12705253e+00, 6.12705253e+00, 6.12705253e+00,
7.91542783e+00, 7.91542783e+00, 7.91542783e+00, 7.91542783e+00,
9.77789566e+00, 9.77789566e+00, 9.77789566e+00, 9.77789566e+00,
1.16347704e+01, 1.16347704e+01, 1.16347704e+01, 1.16347704e+01,
1.34551790e+01, 1.34551790e+01, 1.34551790e+01, 1.34551790e+01,
1.52122136e+01, 1.52122136e+01, 1.52122136e+01, 1.52122136e+01,
1.68521553e+01, 1.68521553e+01, 1.68521553e+01, 1.68521553e+01,
1.82765818e+01, 1.82765818e+01, 1.82765818e+01, 1.82765818e+01,
1.93576979e+01, 1.93576979e+01, 1.93576979e+01, 1.93576979e+01,
1.99942621e+01, 1.99942621e+01, 1.99942621e+01, 1.99942621e+01,
2.02328594e+01, 2.02328594e+01, 2.02328594e+01, 2.02328594e+01,
2.02456712e+01, 2.02456712e+01, 2.02456712e+01, 2.02456712e+01,
2.01101923e+01, 2.01101923e+01, 2.01101923e+01, 2.01101923e+01,
2.00369389e+01, 2.00369389e+01, 2.00369389e+01, 2.00369389e+01,
2.00131267e+01, 2.00131267e+01, 2.00131267e+01, 2.00131267e+01,
2.00070966e+01, 2.00070966e+01, 2.00070966e+01, 2.00070966e+01,
2.00052693e+01, 2.00052693e+01, 2.00052693e+01, 2.00052693e+01,
1.99989897e+01, 1.99989897e+01, 1.99989897e+01, 1.99989897e+01,
1.99805077e+01, 1.99805077e+01, 1.99805077e+01, 1.99805077e+01,
1.99568809e+01, 1.99568809e+01, 1.99568809e+01, 1.99568809e+01,
1.98969783e+01, 1.98969783e+01, 1.98969783e+01, 1.98969783e+01,
1.96461093e+01, 1.96461093e+01, 1.96461093e+01, 1.96461093e+01,
1.84628990e+01, 1.84628990e+01, 1.84628990e+01, 1.84628990e+01,
1.37419915e+01, 1.37419915e+01, 1.37419915e+01, 1.37419915e+01,
3.80245394e+00, 3.80245394e+00, 3.80245394e+00, 3.80245394e+00,
1.00964393e-01, 1.00964393e-01, 1.00964393e-01, 1.00964393e-01,
1.97893986e-04, 1.97893986e-04, 1.97893986e-04, 1.97893986e-04,
3.50167417e-08, 3.50167417e-08, 3.50167417e-08, 3.50167417e-08,
5.53183762e-12, 5.53183762e-12, 5.53183762e-12, 5.53183762e-12,
8.51924516e-16, 8.51924516e-16, 8.51924516e-16, 8.51924516e-16,
1.36608685e-19, 1.36608685e-19, 1.36608685e-19, 1.36608685e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999956e+02, 9.99999956e+02, 9.99999956e+02, 9.99999956e+02,
9.99999807e+02, 9.99999807e+02, 9.99999807e+02, 9.99999807e+02,
9.99999199e+02, 9.99999199e+02, 9.99999199e+02, 9.99999199e+02,
9.99996868e+02, 9.99996868e+02, 9.99996868e+02, 9.99996868e+02,
9.99988517e+02, 9.99988517e+02, 9.99988517e+02, 9.99988517e+02,
9.99960606e+02, 9.99960606e+02, 9.99960606e+02, 9.99960606e+02,
9.99873918e+02, 9.99873918e+02, 9.99873918e+02, 9.99873918e+02,
9.99624741e+02, 9.99624741e+02, 9.99624741e+02, 9.99624741e+02,
9.98965280e+02, 9.98965280e+02, 9.98965280e+02, 9.98965280e+02,
9.97367799e+02, 9.97367799e+02, 9.97367799e+02, 9.97367799e+02,
9.93848786e+02, 9.93848786e+02, 9.93848786e+02, 9.93848786e+02,
9.86844939e+02, 9.86844939e+02, 9.86844939e+02, 9.86844939e+02,
9.74316549e+02, 9.74316549e+02, 9.74316549e+02, 9.74316549e+02,
9.54225804e+02, 9.54225804e+02, 9.54225804e+02, 9.54225804e+02,
9.25291883e+02, 9.25291883e+02, 9.25291883e+02, 9.25291883e+02,
8.87600888e+02, 8.87600888e+02, 8.87600888e+02, 8.87600888e+02,
8.42619539e+02, 8.42619539e+02, 8.42619539e+02, 8.42619539e+02,
7.92557878e+02, 7.92557878e+02, 7.92557878e+02, 7.92557878e+02,
7.39509078e+02, 7.39509078e+02, 7.39509078e+02, 7.39509078e+02,
6.86734806e+02, 6.86734806e+02, 6.86734806e+02, 6.86734806e+02,
6.37955173e+02, 6.37955173e+02, 6.37955173e+02, 6.37955173e+02,
5.93035458e+02, 5.93035458e+02, 5.93035458e+02, 5.93035458e+02,
5.52230567e+02, 5.52230567e+02, 5.52230567e+02, 5.52230567e+02,
5.16416992e+02, 5.16416992e+02, 5.16416992e+02, 5.16416992e+02,
4.86984397e+02, 4.86984397e+02, 4.86984397e+02, 4.86984397e+02,
4.65596969e+02, 4.65596969e+02, 4.65596969e+02, 4.65596969e+02,
4.53240066e+02, 4.53240066e+02, 4.53240066e+02, 4.53240066e+02,
4.48778450e+02, 4.48778450e+02, 4.48778450e+02, 4.48778450e+02,
4.48639462e+02, 4.48639462e+02, 4.48639462e+02, 4.48639462e+02,
4.51263622e+02, 4.51263622e+02, 4.51263622e+02, 4.51263622e+02,
4.52567685e+02, 4.52567685e+02, 4.52567685e+02, 4.52567685e+02,
4.52811496e+02, 4.52811496e+02, 4.52811496e+02, 4.52811496e+02,
4.52945111e+02, 4.52945111e+02, 4.52945111e+02, 4.52945111e+02,
4.53123466e+02, 4.53123466e+02, 4.53123466e+02, 4.53123466e+02,
4.53394325e+02, 4.53394325e+02, 4.53394325e+02, 4.53394325e+02,
4.53835168e+02, 4.53835168e+02, 4.53835168e+02, 4.53835168e+02,
4.54404144e+02, 4.54404144e+02, 4.54404144e+02, 4.54404144e+02,
4.54398815e+02, 4.54398815e+02, 4.54398815e+02, 4.54398815e+02,
4.46505808e+02, 4.46505808e+02, 4.46505808e+02, 4.46505808e+02,
3.93317262e+02, 3.93317262e+02, 3.93317262e+02, 3.93317262e+02,
2.10080070e+02, 2.10080070e+02, 2.10080070e+02, 2.10080070e+02,
2.32249751e+01, 2.32249751e+01, 2.32249751e+01, 2.32249751e+01,
1.73430791e-01, 1.73430791e-01, 1.73430791e-01, 1.73430791e-01,
1.00314003e-02, 1.00314003e-02, 1.00314003e-02, 1.00314003e-02,
1.00000041e-02, 1.00000041e-02, 1.00000041e-02, 1.00000041e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.99999988, 0.99999988,
0.99999988, 0.99999988, 0.99999951, 0.99999951, 0.99999951,
0.99999951, 0.9999981 , 0.9999981 , 0.9999981 , 0.9999981 ,
0.99999312, 0.99999312, 0.99999312, 0.99999312, 0.99997664,
0.99997664, 0.99997664, 0.99997664, 0.99992585, 0.99992585,
0.99992585, 0.99992585, 0.99978045, 0.99978045, 0.99978045,
0.99978045, 0.99939593, 0.99939593, 0.99939593, 0.99939593,
0.99846143, 0.99846143, 0.99846143, 0.99846143, 0.99638683,
0.99638683, 0.99638683, 0.99638683, 0.99220475, 0.99220475,
0.99220475, 0.99220475, 0.98458761, 0.98458761, 0.98458761,
0.98458761, 0.9720855 , 0.9720855 , 0.9720855 , 0.9720855 ,
0.95357426, 0.95357426, 0.95357426, 0.95357426, 0.92870343,
0.92870343, 0.92870343, 0.92870343, 0.89804865, 0.89804865,
0.89804865, 0.89804865, 0.86284217, 0.86284217, 0.86284217,
0.86284217, 0.82441149, 0.82441149, 0.82441149, 0.82441149,
0.78436898, 0.78436898, 0.78436898, 0.78436898, 0.74552409,
0.74552409, 0.74552409, 0.74552409, 0.70888758, 0.70888758,
0.70888758, 0.70888758, 0.67437483, 0.67437483, 0.67437483,
0.67437483, 0.6430066 , 0.6430066 , 0.6430066 , 0.6430066 ,
0.61348618, 0.61348618, 0.61348618, 0.61348618, 0.59349049,
0.59349049, 0.59349049, 0.59349049, 0.57331869, 0.57331869,
0.57331869, 0.57331869, 0.56704679, 0.56704679, 0.56704679,
0.56704679, 0.56447692, 0.56447692, 0.56447692, 0.56447692,
0.56362867, 0.56362867, 0.56362867, 0.56362867, 0.56531162,
0.56531162, 0.56531162, 0.56531162, 0.567019 , 0.567019 ,
0.567019 , 0.567019 , 0.56709383, 0.56709383, 0.56709383,
0.56709383, 0.5667092 , 0.5667092 , 0.5667092 , 0.5667092 ,
0.56824252, 0.56824252, 0.56824252, 0.56824252, 0.58236395,
0.58236395, 0.58236395, 0.58236395, 0.6459472 , 0.6459472 ,
0.6459472 , 0.6459472 , 0.84807929, 0.84807929, 0.84807929,
0.84807929, 1.34919174, 1.34919174, 1.34919174, 1.34919174,
2.33541132, 2.33541132, 2.33541132, 2.33541132, 3.2926407 ,
3.2926407 , 3.2926407 , 3.2926407 , 3.37752881, 3.37752881,
3.37752881, 3.37752881, 2.16954992, 2.16954992, 2.16954992,
2.16954992, 1.1172986 , 1.1172986 , 1.1172986 , 1.1172986 ,
1.00560841, 1.00560841, 1.00560841, 1.00560841, 1.00001853,
1.00001853, 1.00001853, 1.00001853, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.04607737e-07, 2.04607737e-07, 2.04607737e-07, 2.04607737e-07,
1.04753503e-06, 1.04753503e-06, 1.04753503e-06, 1.04753503e-06,
4.52318125e-06, 4.52318125e-06, 4.52318125e-06, 4.52318125e-06,
1.84864298e-05, 1.84864298e-05, 1.84864298e-05, 1.84864298e-05,
7.11599517e-05, 7.11599517e-05, 7.11599517e-05, 7.11599517e-05,
2.57499723e-04, 2.57499723e-04, 2.57499723e-04, 2.57499723e-04,
8.73945333e-04, 8.73945333e-04, 8.73945333e-04, 8.73945333e-04,
2.77466387e-03, 2.77466387e-03, 2.77466387e-03, 2.77466387e-03,
8.21545316e-03, 8.21545316e-03, 8.21545316e-03, 8.21545316e-03,
2.26072838e-02, 2.26072838e-02, 2.26072838e-02, 2.26072838e-02,
5.76012133e-02, 5.76012133e-02, 5.76012133e-02, 5.76012133e-02,
1.35378501e-01, 1.35378501e-01, 1.35378501e-01, 1.35378501e-01,
2.92554805e-01, 2.92554805e-01, 2.92554805e-01, 2.92554805e-01,
5.80205845e-01, 5.80205845e-01, 5.80205845e-01, 5.80205845e-01,
1.05628947e+00, 1.05628947e+00, 1.05628947e+00, 1.05628947e+00,
1.77052666e+00, 1.77052666e+00, 1.77052666e+00, 1.77052666e+00,
2.74829898e+00, 2.74829898e+00, 2.74829898e+00, 2.74829898e+00,
3.98331961e+00, 3.98331961e+00, 3.98331961e+00, 3.98331961e+00,
5.44451310e+00, 5.44451310e+00, 5.44451310e+00, 5.44451310e+00,
7.09514684e+00, 7.09514684e+00, 7.09514684e+00, 7.09514684e+00,
8.87295070e+00, 8.87295070e+00, 8.87295070e+00, 8.87295070e+00,
1.06594721e+01, 1.06594721e+01, 1.06594721e+01, 1.06594721e+01,
1.24293602e+01, 1.24293602e+01, 1.24293602e+01, 1.24293602e+01,
1.41607204e+01, 1.41607204e+01, 1.41607204e+01, 1.41607204e+01,
1.58187383e+01, 1.58187383e+01, 1.58187383e+01, 1.58187383e+01,
1.73419873e+01, 1.73419873e+01, 1.73419873e+01, 1.73419873e+01,
1.86283641e+01, 1.86283641e+01, 1.86283641e+01, 1.86283641e+01,
1.95639138e+01, 1.95639138e+01, 1.95639138e+01, 1.95639138e+01,
2.00736039e+01, 2.00736039e+01, 2.00736039e+01, 2.00736039e+01,
2.02330193e+01, 2.02330193e+01, 2.02330193e+01, 2.02330193e+01,
2.02158212e+01, 2.02158212e+01, 2.02158212e+01, 2.02158212e+01,
2.00862699e+01, 2.00862699e+01, 2.00862699e+01, 2.00862699e+01,
2.00336687e+01, 2.00336687e+01, 2.00336687e+01, 2.00336687e+01,
2.00150798e+01, 2.00150798e+01, 2.00150798e+01, 2.00150798e+01,
2.00060876e+01, 2.00060876e+01, 2.00060876e+01, 2.00060876e+01,
1.99998383e+01, 1.99998383e+01, 1.99998383e+01, 1.99998383e+01,
1.99906385e+01, 1.99906385e+01, 1.99906385e+01, 1.99906385e+01,
1.99726435e+01, 1.99726435e+01, 1.99726435e+01, 1.99726435e+01,
1.99540496e+01, 1.99540496e+01, 1.99540496e+01, 1.99540496e+01,
1.99172472e+01, 1.99172472e+01, 1.99172472e+01, 1.99172472e+01,
1.97905611e+01, 1.97905611e+01, 1.97905611e+01, 1.97905611e+01,
1.92093064e+01, 1.92093064e+01, 1.92093064e+01, 1.92093064e+01,
1.66360985e+01, 1.66360985e+01, 1.66360985e+01, 1.66360985e+01,
8.75489385e+00, 8.75489385e+00, 8.75489385e+00, 8.75489385e+00,
7.20452697e-01, 7.20452697e-01, 7.20452697e-01, 7.20452697e-01,
5.43172134e-03, 5.43172134e-03, 5.43172134e-03, 5.43172134e-03,
2.27604406e-06, 2.27604406e-06, 2.27604406e-06, 2.27604406e-06,
3.38472840e-10, 3.38472840e-10, 3.38472840e-10, 3.38472840e-10,
5.10071735e-14, 5.10071735e-14, 5.10071735e-14, 5.10071735e-14,
7.83554591e-18, 7.83554591e-18, 7.83554591e-18, 7.83554591e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999961e+02, 9.99999961e+02, 9.99999961e+02, 9.99999961e+02,
9.99999831e+02, 9.99999831e+02, 9.99999831e+02, 9.99999831e+02,
9.99999308e+02, 9.99999308e+02, 9.99999308e+02, 9.99999308e+02,
9.99997337e+02, 9.99997337e+02, 9.99997337e+02, 9.99997337e+02,
9.99990365e+02, 9.99990365e+02, 9.99990365e+02, 9.99990365e+02,
9.99967300e+02, 9.99967300e+02, 9.99967300e+02, 9.99967300e+02,
9.99896187e+02, 9.99896187e+02, 9.99896187e+02, 9.99896187e+02,
9.99692651e+02, 9.99692651e+02, 9.99692651e+02, 9.99692651e+02,
9.99154448e+02, 9.99154448e+02, 9.99154448e+02, 9.99154448e+02,
9.97846913e+02, 9.97846913e+02, 9.97846913e+02, 9.97846913e+02,
9.94946365e+02, 9.94946365e+02, 9.94946365e+02, 9.94946365e+02,
9.89107997e+02, 9.89107997e+02, 9.89107997e+02, 9.89107997e+02,
9.78502508e+02, 9.78502508e+02, 9.78502508e+02, 9.78502508e+02,
9.61171766e+02, 9.61171766e+02, 9.61171766e+02, 9.61171766e+02,
9.35679962e+02, 9.35679962e+02, 9.35679962e+02, 9.35679962e+02,
9.01743661e+02, 9.01743661e+02, 9.01743661e+02, 9.01743661e+02,
8.60410587e+02, 8.60410587e+02, 8.60410587e+02, 8.60410587e+02,
8.13626053e+02, 8.13626053e+02, 8.13626053e+02, 8.13626053e+02,
7.63416647e+02, 7.63416647e+02, 7.63416647e+02, 7.63416647e+02,
7.12019797e+02, 7.12019797e+02, 7.12019797e+02, 7.12019797e+02,
6.63120871e+02, 6.63120871e+02, 6.63120871e+02, 6.63120871e+02,
6.17966596e+02, 6.17966596e+02, 6.17966596e+02, 6.17966596e+02,
5.76387663e+02, 5.76387663e+02, 5.76387663e+02, 5.76387663e+02,
5.38762205e+02, 5.38762205e+02, 5.38762205e+02, 5.38762205e+02,
5.06102905e+02, 5.06102905e+02, 5.06102905e+02, 5.06102905e+02,
4.79873679e+02, 4.79873679e+02, 4.79873679e+02, 4.79873679e+02,
4.61632451e+02, 4.61632451e+02, 4.61632451e+02, 4.61632451e+02,
4.51822663e+02, 4.51822663e+02, 4.51822663e+02, 4.51822663e+02,
4.48755045e+02, 4.48755045e+02, 4.48755045e+02, 4.48755045e+02,
4.49111914e+02, 4.49111914e+02, 4.49111914e+02, 4.49111914e+02,
4.51654090e+02, 4.51654090e+02, 4.51654090e+02, 4.51654090e+02,
4.52718346e+02, 4.52718346e+02, 4.52718346e+02, 4.52718346e+02,
4.52919431e+02, 4.52919431e+02, 4.52919431e+02, 4.52919431e+02,
4.52976550e+02, 4.52976550e+02, 4.52976550e+02, 4.52976550e+02,
4.53103923e+02, 4.53103923e+02, 4.53103923e+02, 4.53103923e+02,
4.53388509e+02, 4.53388509e+02, 4.53388509e+02, 4.53388509e+02,
4.53898765e+02, 4.53898765e+02, 4.53898765e+02, 4.53898765e+02,
4.54482141e+02, 4.54482141e+02, 4.54482141e+02, 4.54482141e+02,
4.55085093e+02, 4.55085093e+02, 4.55085093e+02, 4.55085093e+02,
4.52596174e+02, 4.52596174e+02, 4.52596174e+02, 4.52596174e+02,
4.27900465e+02, 4.27900465e+02, 4.27900465e+02, 4.27900465e+02,
3.14451641e+02, 3.14451641e+02, 3.14451641e+02, 3.14451641e+02,
8.65631679e+01, 8.65631679e+01, 8.65631679e+01, 8.65631679e+01,
2.41830497e+00, 2.41830497e+00, 2.41830497e+00, 2.41830497e+00,
1.27132333e-02, 1.27132333e-02, 1.27132333e-02, 1.27132333e-02,
1.00002685e-02, 1.00002685e-02, 1.00002685e-02, 1.00002685e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999989,
0.99999989, 0.99999989, 0.99999989, 0.99999957, 0.99999957,
0.99999957, 0.99999957, 0.99999839, 0.99999839, 0.99999839,
0.99999839, 0.99999423, 0.99999423, 0.99999423, 0.99999423,
0.99998062, 0.99998062, 0.99998062, 0.99998062, 0.99993892,
0.99993892, 0.99993892, 0.99993892, 0.99982004, 0.99982004,
0.99982004, 0.99982004, 0.99950587, 0.99950587, 0.99950587,
0.99950587, 0.99874031, 0.99874031, 0.99874031, 0.99874031,
0.99702982, 0.99702982, 0.99702982, 0.99702982, 0.99354599,
0.99354599, 0.99354599, 0.99354599, 0.98711067, 0.98711067,
0.98711067, 0.98711067, 0.97636406, 0.97636406, 0.97636406,
0.97636406, 0.96013913, 0.96013913, 0.96013913, 0.96013913,
0.93789515, 0.93789515, 0.93789515, 0.93789515, 0.90994657,
0.90994657, 0.90994657, 0.90994657, 0.8773198 , 0.8773198 ,
0.8773198 , 0.8773198 , 0.84131053, 0.84131053, 0.84131053,
0.84131053, 0.80309318, 0.80309318, 0.80309318, 0.80309318,
0.76488582, 0.76488582, 0.76488582, 0.76488582, 0.72862882,
0.72862882, 0.72862882, 0.72862882, 0.69424027, 0.69424027,
0.69424027, 0.69424027, 0.66187235, 0.66187235, 0.66187235,
0.66187235, 0.63295763, 0.63295763, 0.63295763, 0.63295763,
0.60550311, 0.60550311, 0.60550311, 0.60550311, 0.58821214,
0.58821214, 0.58821214, 0.58821214, 0.57094445, 0.57094445,
0.57094445, 0.57094445, 0.56567273, 0.56567273, 0.56567273,
0.56567273, 0.56457433, 0.56457433, 0.56457433, 0.56457433,
0.56452234, 0.56452234, 0.56452234, 0.56452234, 0.56563963,
0.56563963, 0.56563963, 0.56563963, 0.56692819, 0.56692819,
0.56692819, 0.56692819, 0.56718804, 0.56718804, 0.56718804,
0.56718804, 0.56693567, 0.56693567, 0.56693567, 0.56693567,
0.56767338, 0.56767338, 0.56767338, 0.56767338, 0.57613836,
0.57613836, 0.57613836, 0.57613836, 0.61774062, 0.61774062,
0.61774062, 0.61774062, 0.75887044, 0.75887044, 0.75887044,
0.75887044, 1.13039106, 1.13039106, 1.13039106, 1.13039106,
1.91581709, 1.91581709, 1.91581709, 1.91581709, 3.05001354,
3.05001354, 3.05001354, 3.05001354, 3.50876949, 3.50876949,
3.50876949, 3.50876949, 2.9569208 , 2.9569208 , 2.9569208 ,
2.9569208 , 1.40056125, 1.40056125, 1.40056125, 1.40056125,
1.02615253, 1.02615253, 1.02615253, 1.02615253, 1.00051302,
1.00051302, 1.00051302, 1.00051302, 1.00000017, 1.00000017,
1.00000017, 1.00000017, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([8.31212456e-07, 8.31212456e-07, 8.31212456e-07, 8.31212456e-07,
3.97120544e-06, 3.97120544e-06, 3.97120544e-06, 3.97120544e-06,
1.59059987e-05, 1.59059987e-05, 1.59059987e-05, 1.59059987e-05,
6.03664366e-05, 6.03664366e-05, 6.03664366e-05, 6.03664366e-05,
2.15805643e-04, 2.15805643e-04, 2.15805643e-04, 2.15805643e-04,
7.25243296e-04, 7.25243296e-04, 7.25243296e-04, 7.25243296e-04,
2.28544773e-03, 2.28544773e-03, 2.28544773e-03, 2.28544773e-03,
6.73404888e-03, 6.73404888e-03, 6.73404888e-03, 6.73404888e-03,
1.84918575e-02, 1.84918575e-02, 1.84918575e-02, 1.84918575e-02,
4.71552363e-02, 4.71552363e-02, 4.71552363e-02, 4.71552363e-02,
1.11259276e-01, 1.11259276e-01, 1.11259276e-01, 1.11259276e-01,
2.42090826e-01, 2.42090826e-01, 2.42090826e-01, 2.42090826e-01,
4.84732171e-01, 4.84732171e-01, 4.84732171e-01, 4.84732171e-01,
8.92811756e-01, 8.92811756e-01, 8.92811756e-01, 8.92811756e-01,
1.51595482e+00, 1.51595482e+00, 1.51595482e+00, 1.51595482e+00,
2.38448316e+00, 2.38448316e+00, 2.38448316e+00, 2.38448316e+00,
3.49994899e+00, 3.49994899e+00, 3.49994899e+00, 3.49994899e+00,
4.83781455e+00, 4.83781455e+00, 4.83781455e+00, 4.83781455e+00,
6.36160827e+00, 6.36160827e+00, 6.36160827e+00, 6.36160827e+00,
8.03629840e+00, 8.03629840e+00, 8.03629840e+00, 8.03629840e+00,
9.75414415e+00, 9.75414415e+00, 9.75414415e+00, 9.75414415e+00,
1.14703604e+01, 1.14703604e+01, 1.14703604e+01, 1.14703604e+01,
1.31577649e+01, 1.31577649e+01, 1.31577649e+01, 1.31577649e+01,
1.48036949e+01, 1.48036949e+01, 1.48036949e+01, 1.48036949e+01,
1.63662284e+01, 1.63662284e+01, 1.63662284e+01, 1.63662284e+01,
1.77761853e+01, 1.77761853e+01, 1.77761853e+01, 1.77761853e+01,
1.89288293e+01, 1.89288293e+01, 1.89288293e+01, 1.89288293e+01,
1.97266212e+01, 1.97266212e+01, 1.97266212e+01, 1.97266212e+01,
2.01268304e+01, 2.01268304e+01, 2.01268304e+01, 2.01268304e+01,
2.02304156e+01, 2.02304156e+01, 2.02304156e+01, 2.02304156e+01,
2.01855356e+01, 2.01855356e+01, 2.01855356e+01, 2.01855356e+01,
2.00664233e+01, 2.00664233e+01, 2.00664233e+01, 2.00664233e+01,
2.00284165e+01, 2.00284165e+01, 2.00284165e+01, 2.00284165e+01,
2.00164011e+01, 2.00164011e+01, 2.00164011e+01, 2.00164011e+01,
2.00075438e+01, 2.00075438e+01, 2.00075438e+01, 2.00075438e+01,
1.99976330e+01, 1.99976330e+01, 1.99976330e+01, 1.99976330e+01,
1.99833671e+01, 1.99833671e+01, 1.99833671e+01, 1.99833671e+01,
1.99631313e+01, 1.99631313e+01, 1.99631313e+01, 1.99631313e+01,
1.99444762e+01, 1.99444762e+01, 1.99444762e+01, 1.99444762e+01,
1.99229151e+01, 1.99229151e+01, 1.99229151e+01, 1.99229151e+01,
1.98546912e+01, 1.98546912e+01, 1.98546912e+01, 1.98546912e+01,
1.95683651e+01, 1.95683651e+01, 1.95683651e+01, 1.95683651e+01,
1.82512117e+01, 1.82512117e+01, 1.82512117e+01, 1.82512117e+01,
1.31946812e+01, 1.31946812e+01, 1.31946812e+01, 1.31946812e+01,
3.22197950e+00, 3.22197950e+00, 3.22197950e+00, 3.22197950e+00,
7.26448767e-02, 7.26448767e-02, 7.26448767e-02, 7.26448767e-02,
1.16941338e-04, 1.16941338e-04, 1.16941338e-04, 1.16941338e-04,
2.00485498e-08, 2.00485498e-08, 2.00485498e-08, 2.00485498e-08,
3.19846760e-12, 3.19846760e-12, 3.19846760e-12, 3.19846760e-12,
4.91826059e-16, 4.91826059e-16, 4.91826059e-16, 4.91826059e-16,
6.67643390e-20, 6.67643390e-20, 6.67643390e-20, 6.67643390e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999969e+02, 9.99999969e+02, 9.99999969e+02, 9.99999969e+02,
9.99999851e+02, 9.99999851e+02, 9.99999851e+02, 9.99999851e+02,
9.99999405e+02, 9.99999405e+02, 9.99999405e+02, 9.99999405e+02,
9.99997741e+02, 9.99997741e+02, 9.99997741e+02, 9.99997741e+02,
9.99991925e+02, 9.99991925e+02, 9.99991925e+02, 9.99991925e+02,
9.99972864e+02, 9.99972864e+02, 9.99972864e+02, 9.99972864e+02,
9.99914490e+02, 9.99914490e+02, 9.99914490e+02, 9.99914490e+02,
9.99748065e+02, 9.99748065e+02, 9.99748065e+02, 9.99748065e+02,
9.99308322e+02, 9.99308322e+02, 9.99308322e+02, 9.99308322e+02,
9.98237056e+02, 9.98237056e+02, 9.98237056e+02, 9.98237056e+02,
9.95845011e+02, 9.95845011e+02, 9.95845011e+02, 9.95845011e+02,
9.90979078e+02, 9.90979078e+02, 9.90979078e+02, 9.90979078e+02,
9.82011051e+02, 9.82011051e+02, 9.82011051e+02, 9.82011051e+02,
9.67091266e+02, 9.67091266e+02, 9.67091266e+02, 9.67091266e+02,
9.44695117e+02, 9.44695117e+02, 9.44695117e+02, 9.44695117e+02,
9.14239174e+02, 9.14239174e+02, 9.14239174e+02, 9.14239174e+02,
8.76379529e+02, 8.76379529e+02, 8.76379529e+02, 8.76379529e+02,
8.32762793e+02, 8.32762793e+02, 8.32762793e+02, 8.32762793e+02,
7.85366006e+02, 7.85366006e+02, 7.85366006e+02, 7.85366006e+02,
7.35932360e+02, 7.35932360e+02, 7.35932360e+02, 7.35932360e+02,
6.87323424e+02, 6.87323424e+02, 6.87323424e+02, 6.87323424e+02,
6.42175077e+02, 6.42175077e+02, 6.42175077e+02, 6.42175077e+02,
6.00145773e+02, 6.00145773e+02, 6.00145773e+02, 6.00145773e+02,
5.61538265e+02, 5.61538265e+02, 5.61538265e+02, 5.61538265e+02,
5.26840609e+02, 5.26840609e+02, 5.26840609e+02, 5.26840609e+02,
4.97140791e+02, 4.97140791e+02, 4.97140791e+02, 4.97140791e+02,
4.73884379e+02, 4.73884379e+02, 4.73884379e+02, 4.73884379e+02,
4.58462049e+02, 4.58462049e+02, 4.58462049e+02, 4.58462049e+02,
4.50871407e+02, 4.50871407e+02, 4.50871407e+02, 4.50871407e+02,
4.48847969e+02, 4.48847969e+02, 4.48847969e+02, 4.48847969e+02,
4.49672702e+02, 4.49672702e+02, 4.49672702e+02, 4.49672702e+02,
4.51922948e+02, 4.51922948e+02, 4.51922948e+02, 4.51922948e+02,
4.52785224e+02, 4.52785224e+02, 4.52785224e+02, 4.52785224e+02,
4.53005867e+02, 4.53005867e+02, 4.53005867e+02, 4.53005867e+02,
4.53063737e+02, 4.53063737e+02, 4.53063737e+02, 4.53063737e+02,
4.53160041e+02, 4.53160041e+02, 4.53160041e+02, 4.53160041e+02,
4.53422261e+02, 4.53422261e+02, 4.53422261e+02, 4.53422261e+02,
4.53914136e+02, 4.53914136e+02, 4.53914136e+02, 4.53914136e+02,
4.54500339e+02, 4.54500339e+02, 4.54500339e+02, 4.54500339e+02,
4.55295261e+02, 4.55295261e+02, 4.55295261e+02, 4.55295261e+02,
4.55007290e+02, 4.55007290e+02, 4.55007290e+02, 4.55007290e+02,
4.44699313e+02, 4.44699313e+02, 4.44699313e+02, 4.44699313e+02,
3.84060326e+02, 3.84060326e+02, 3.84060326e+02, 3.84060326e+02,
1.91713252e+02, 1.91713252e+02, 1.91713252e+02, 1.91713252e+02,
1.83826676e+01, 1.83826676e+01, 1.83826676e+01, 1.83826676e+01,
1.13135376e-01, 1.13135376e-01, 1.13135376e-01, 1.13135376e-01,
1.00165770e-02, 1.00165770e-02, 1.00165770e-02, 1.00165770e-02,
1.00000024e-02, 1.00000024e-02, 1.00000024e-02, 1.00000024e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999963,
0.99999963, 0.99999963, 0.99999963, 0.99999863, 0.99999863,
0.99999863, 0.99999863, 0.99999517, 0.99999517, 0.99999517,
0.99999517, 0.99998392, 0.99998392, 0.99998392, 0.99998392,
0.99994967, 0.99994967, 0.99994967, 0.99994967, 0.99985237,
0.99985237, 0.99985237, 0.99985237, 0.99959542, 0.99959542,
0.99959542, 0.99959542, 0.9989677 , 0.9989677 , 0.9989677 ,
0.9989677 , 0.99755668, 0.99755668, 0.99755668, 0.99755668,
0.99465483, 0.99465483, 0.99465483, 0.99465483, 0.98922278,
0.98922278, 0.98922278, 0.98922278, 0.98000087, 0.98000087,
0.98000087, 0.98000087, 0.96581386, 0.96581386, 0.96581386,
0.96581386, 0.94597479, 0.94597479, 0.94597479, 0.94597479,
0.92056352, 0.92056352, 0.92056352, 0.92056352, 0.89039 ,
0.89039 , 0.89039 , 0.89039 , 0.85665144, 0.85665144,
0.85665144, 0.85665144, 0.82046164, 0.82046164, 0.82046164,
0.82046164, 0.78331999, 0.78331999, 0.78331999, 0.78331999,
0.74742401, 0.74742401, 0.74742401, 0.74742401, 0.71331198,
0.71331198, 0.71331198, 0.71331198, 0.68102127, 0.68102127,
0.68102127, 0.68102127, 0.65059716, 0.65059716, 0.65059716,
0.65059716, 0.6240258 , 0.6240258 , 0.6240258 , 0.6240258 ,
0.59855044, 0.59855044, 0.59855044, 0.59855044, 0.58370503,
0.58370503, 0.58370503, 0.58370503, 0.56923565, 0.56923565,
0.56923565, 0.56923565, 0.5647148 , 0.5647148 , 0.5647148 ,
0.5647148 , 0.5645406 , 0.5645406 , 0.5645406 , 0.5645406 ,
0.56538346, 0.56538346, 0.56538346, 0.56538346, 0.56608138,
0.56608138, 0.56608138, 0.56608138, 0.56681268, 0.56681268,
0.56681268, 0.56681268, 0.56720477, 0.56720477, 0.56720477,
0.56720477, 0.56710473, 0.56710473, 0.56710473, 0.56710473,
0.56748519, 0.56748519, 0.56748519, 0.56748519, 0.5725192 ,
0.5725192 , 0.5725192 , 0.5725192 , 0.59936974, 0.59936974,
0.59936974, 0.59936974, 0.69655554, 0.69655554, 0.69655554,
0.69655554, 0.9676065 , 0.9676065 , 0.9676065 , 0.9676065 ,
1.57749515, 1.57749515, 1.57749515, 1.57749515, 2.65892925,
2.65892925, 2.65892925, 2.65892925, 3.47677245, 3.47677245,
3.47677245, 3.47677245, 3.4415978 , 3.4415978 , 3.4415978 ,
3.4415978 , 2.06542454, 2.06542454, 2.06542454, 2.06542454,
1.09918894, 1.09918894, 1.09918894, 1.09918894, 1.00437867,
1.00437867, 1.00437867, 1.00437867, 1.00001045, 1.00001045,
1.00001045, 1.00001045, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.06442751e-06, 3.06442751e-06, 3.06442751e-06, 3.06442751e-06,
1.37096058e-05, 1.37096058e-05, 1.37096058e-05, 1.37096058e-05,
5.11071441e-05, 5.11071441e-05, 5.11071441e-05, 5.11071441e-05,
1.80696441e-04, 1.80696441e-04, 1.80696441e-04, 1.80696441e-04,
6.01731053e-04, 6.01731053e-04, 6.01731053e-04, 6.01731053e-04,
1.88320977e-03, 1.88320977e-03, 1.88320977e-03, 1.88320977e-03,
5.52400997e-03, 5.52400997e-03, 5.52400997e-03, 5.52400997e-03,
1.51400717e-02, 1.51400717e-02, 1.51400717e-02, 1.51400717e-02,
3.86400960e-02, 3.86400960e-02, 3.86400960e-02, 3.86400960e-02,
9.15052429e-02, 9.15052429e-02, 9.15052429e-02, 9.15052429e-02,
2.00411209e-01, 2.00411209e-01, 2.00411209e-01, 2.00411209e-01,
4.04958870e-01, 4.04958870e-01, 4.04958870e-01, 4.04958870e-01,
7.54311496e-01, 7.54311496e-01, 7.54311496e-01, 7.54311496e-01,
1.29704807e+00, 1.29704807e+00, 1.29704807e+00, 1.29704807e+00,
2.06709372e+00, 2.06709372e+00, 2.06709372e+00, 2.06709372e+00,
3.07296603e+00, 3.07296603e+00, 3.07296603e+00, 3.07296603e+00,
4.29705387e+00, 4.29705387e+00, 4.29705387e+00, 4.29705387e+00,
5.70596036e+00, 5.70596036e+00, 5.70596036e+00, 5.70596036e+00,
7.26745760e+00, 7.26745760e+00, 7.26745760e+00, 7.26745760e+00,
8.91729908e+00, 8.91729908e+00, 8.91729908e+00, 8.91729908e+00,
1.05722640e+01, 1.05722640e+01, 1.05722640e+01, 1.05722640e+01,
1.22139882e+01, 1.22139882e+01, 1.22139882e+01, 1.22139882e+01,
1.38271695e+01, 1.38271695e+01, 1.38271695e+01, 1.38271695e+01,
1.53909420e+01, 1.53909420e+01, 1.53909420e+01, 1.53909420e+01,
1.68595079e+01, 1.68595079e+01, 1.68595079e+01, 1.68595079e+01,
1.81589814e+01, 1.81589814e+01, 1.81589814e+01, 1.81589814e+01,
1.91837824e+01, 1.91837824e+01, 1.91837824e+01, 1.91837824e+01,
1.98529322e+01, 1.98529322e+01, 1.98529322e+01, 1.98529322e+01,
2.01599348e+01, 2.01599348e+01, 2.01599348e+01, 2.01599348e+01,
2.02242115e+01, 2.02242115e+01, 2.02242115e+01, 2.02242115e+01,
2.01558715e+01, 2.01558715e+01, 2.01558715e+01, 2.01558715e+01,
2.00527078e+01, 2.00527078e+01, 2.00527078e+01, 2.00527078e+01,
2.00224238e+01, 2.00224238e+01, 2.00224238e+01, 2.00224238e+01,
2.00150070e+01, 2.00150070e+01, 2.00150070e+01, 2.00150070e+01,
2.00079684e+01, 2.00079684e+01, 2.00079684e+01, 2.00079684e+01,
1.99973046e+01, 1.99973046e+01, 1.99973046e+01, 1.99973046e+01,
1.99790344e+01, 1.99790344e+01, 1.99790344e+01, 1.99790344e+01,
1.99548828e+01, 1.99548828e+01, 1.99548828e+01, 1.99548828e+01,
1.99337003e+01, 1.99337003e+01, 1.99337003e+01, 1.99337003e+01,
1.99182352e+01, 1.99182352e+01, 1.99182352e+01, 1.99182352e+01,
1.98796077e+01, 1.98796077e+01, 1.98796077e+01, 1.98796077e+01,
1.97369800e+01, 1.97369800e+01, 1.97369800e+01, 1.97369800e+01,
1.90826196e+01, 1.90826196e+01, 1.90826196e+01, 1.90826196e+01,
1.62655591e+01, 1.62655591e+01, 1.62655591e+01, 1.62655591e+01,
8.02647381e+00, 8.02647381e+00, 8.02647381e+00, 8.02647381e+00,
5.66390276e-01, 5.66390276e-01, 5.66390276e-01, 5.66390276e-01,
3.57075007e-03, 3.57075007e-03, 3.57075007e-03, 3.57075007e-03,
1.26227765e-06, 1.26227765e-06, 1.26227765e-06, 1.26227765e-06,
1.87417390e-10, 1.87417390e-10, 1.87417390e-10, 1.87417390e-10,
2.86649447e-14, 2.86649447e-14, 2.86649447e-14, 2.86649447e-14,
4.45854151e-18, 4.45854151e-18, 4.45854151e-18, 4.45854151e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999885e+02, 9.99999885e+02, 9.99999885e+02, 9.99999885e+02,
9.99999487e+02, 9.99999487e+02, 9.99999487e+02, 9.99999487e+02,
9.99998088e+02, 9.99998088e+02, 9.99998088e+02, 9.99998088e+02,
9.99993239e+02, 9.99993239e+02, 9.99993239e+02, 9.99993239e+02,
9.99977486e+02, 9.99977486e+02, 9.99977486e+02, 9.99977486e+02,
9.99929539e+02, 9.99929539e+02, 9.99929539e+02, 9.99929539e+02,
9.99793331e+02, 9.99793331e+02, 9.99793331e+02, 9.99793331e+02,
9.99433661e+02, 9.99433661e+02, 9.99433661e+02, 9.99433661e+02,
9.98555189e+02, 9.98555189e+02, 9.98555189e+02, 9.98555189e+02,
9.96581570e+02, 9.96581570e+02, 9.96581570e+02, 9.96581570e+02,
9.92526877e+02, 9.92526877e+02, 9.92526877e+02, 9.92526877e+02,
9.84951309e+02, 9.84951309e+02, 9.84951309e+02, 9.84951309e+02,
9.72131850e+02, 9.72131850e+02, 9.72131850e+02, 9.72131850e+02,
9.52508972e+02, 9.52508972e+02, 9.52508972e+02, 9.52508972e+02,
9.25264888e+02, 9.25264888e+02, 9.25264888e+02, 9.25264888e+02,
8.90701571e+02, 8.90701571e+02, 8.90701571e+02, 8.90701571e+02,
8.50150128e+02, 8.50150128e+02, 8.50150128e+02, 8.50150128e+02,
8.05448379e+02, 8.05448379e+02, 8.05448379e+02, 8.05448379e+02,
7.58271461e+02, 7.58271461e+02, 7.58271461e+02, 7.58271461e+02,
7.10634261e+02, 7.10634261e+02, 7.10634261e+02, 7.10634261e+02,
6.65455423e+02, 6.65455423e+02, 6.65455423e+02, 6.65455423e+02,
6.23352527e+02, 6.23352527e+02, 6.23352527e+02, 6.23352527e+02,
5.84182279e+02, 5.84182279e+02, 5.84182279e+02, 5.84182279e+02,
5.48269428e+02, 5.48269428e+02, 5.48269428e+02, 5.48269428e+02,
5.16272042e+02, 5.16272042e+02, 5.16272042e+02, 5.16272042e+02,
4.89358572e+02, 4.89358572e+02, 4.89358572e+02, 4.89358572e+02,
4.68892875e+02, 4.68892875e+02, 4.68892875e+02, 4.68892875e+02,
4.55991188e+02, 4.55991188e+02, 4.55991188e+02, 4.55991188e+02,
4.50239990e+02, 4.50239990e+02, 4.50239990e+02, 4.50239990e+02,
4.49001549e+02, 4.49001549e+02, 4.49001549e+02, 4.49001549e+02,
4.50267586e+02, 4.50267586e+02, 4.50267586e+02, 4.50267586e+02,
4.52156184e+02, 4.52156184e+02, 4.52156184e+02, 4.52156184e+02,
4.52802596e+02, 4.52802596e+02, 4.52802596e+02, 4.52802596e+02,
4.53038480e+02, 4.53038480e+02, 4.53038480e+02, 4.53038480e+02,
4.53140657e+02, 4.53140657e+02, 4.53140657e+02, 4.53140657e+02,
4.53267209e+02, 4.53267209e+02, 4.53267209e+02, 4.53267209e+02,
4.53531394e+02, 4.53531394e+02, 4.53531394e+02, 4.53531394e+02,
4.53971062e+02, 4.53971062e+02, 4.53971062e+02, 4.53971062e+02,
4.54514025e+02, 4.54514025e+02, 4.54514025e+02, 4.54514025e+02,
4.55259395e+02, 4.55259395e+02, 4.55259395e+02, 4.55259395e+02,
4.55867897e+02, 4.55867897e+02, 4.55867897e+02, 4.55867897e+02,
4.52235462e+02, 4.52235462e+02, 4.52235462e+02, 4.52235462e+02,
4.22918025e+02, 4.22918025e+02, 4.22918025e+02, 4.22918025e+02,
2.98696478e+02, 2.98696478e+02, 2.98696478e+02, 2.98696478e+02,
7.35671819e+01, 7.35671819e+01, 7.35671819e+01, 7.35671819e+01,
1.73816088e+00, 1.73816088e+00, 1.73816088e+00, 1.73816088e+00,
1.15098232e-02, 1.15098232e-02, 1.15098232e-02, 1.15098232e-02,
1.00001491e-02, 1.00001491e-02, 1.00001491e-02, 1.00001491e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999884,
0.99999884, 0.99999884, 0.99999884, 0.99999596, 0.99999596,
0.99999596, 0.99999596, 0.99998666, 0.99998666, 0.99998666,
0.99998666, 0.99995851, 0.99995851, 0.99995851, 0.99995851,
0.99987881, 0.99987881, 0.99987881, 0.99987881, 0.99966846,
0.99966846, 0.99966846, 0.99966846, 0.99915332, 0.99915332,
0.99915332, 0.99915332, 0.99798882, 0.99798882, 0.99798882,
0.99798882, 0.99557202, 0.99557202, 0.99557202, 0.99557202,
0.99099076, 0.99099076, 0.99099076, 0.99099076, 0.98309025,
0.98309025, 0.98309025, 0.98309025, 0.97071425, 0.97071425,
0.97071425, 0.97071425, 0.95306962, 0.95306962, 0.95306962,
0.95306962, 0.93003166, 0.93003166, 0.93003166, 0.93003166,
0.90219494, 0.90219494, 0.90219494, 0.90219494, 0.8706268 ,
0.8706268 , 0.8706268 , 0.8706268 , 0.83644936, 0.83644936,
0.83644936, 0.83644936, 0.80070998, 0.80070998, 0.80070998,
0.80070998, 0.76534052, 0.76534052, 0.76534052, 0.76534052,
0.73160157, 0.73160157, 0.73160157, 0.73160157, 0.69941663,
0.69941663, 0.69941663, 0.69941663, 0.66904404, 0.66904404,
0.66904404, 0.66904404, 0.640412 , 0.640412 , 0.640412 ,
0.640412 , 0.61609193, 0.61609193, 0.61609193, 0.61609193,
0.59253553, 0.59253553, 0.59253553, 0.59253553, 0.57985082,
0.57985082, 0.57985082, 0.57985082, 0.56807488, 0.56807488,
0.56807488, 0.56807488, 0.56414175, 0.56414175, 0.56414175,
0.56414175, 0.56447501, 0.56447501, 0.56447501, 0.56447501,
0.56608222, 0.56608222, 0.56608222, 0.56608222, 0.5665232 ,
0.5665232 , 0.5665232 , 0.5665232 , 0.56679339, 0.56679339,
0.56679339, 0.56679339, 0.56717873, 0.56717873, 0.56717873,
0.56717873, 0.5672011 , 0.5672011 , 0.5672011 , 0.5672011 ,
0.56745182, 0.56745182, 0.56745182, 0.56745182, 0.57048317,
0.57048317, 0.57048317, 0.57048317, 0.58763359, 0.58763359,
0.58763359, 0.58763359, 0.65365865, 0.65365865, 0.65365865,
0.65365865, 0.84867448, 0.84867448, 0.84867448, 0.84867448,
1.31307086, 1.31307086, 1.31307086, 1.31307086, 2.21646901,
2.21646901, 2.21646901, 2.21646901, 3.30517749, 3.30517749,
3.30517749, 3.30517749, 3.62340282, 3.62340282, 3.62340282,
3.62340282, 2.90056638, 2.90056638, 2.90056638, 2.90056638,
1.33694683, 1.33694683, 1.33694683, 1.33694683, 1.0212743 ,
1.0212743 , 1.0212743 , 1.0212743 , 1.00034859, 1.00034859,
1.00034859, 1.00034859, 1.0000001 , 1.0000001 , 1.0000001 ,
1.0000001 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.03392125e-05, 1.03392125e-05, 1.03392125e-05, 1.03392125e-05,
4.34400060e-05, 4.34400060e-05, 4.34400060e-05, 4.34400060e-05,
1.51141917e-04, 1.51141917e-04, 1.51141917e-04, 1.51141917e-04,
4.99195131e-04, 4.99195131e-04, 4.99195131e-04, 4.99195131e-04,
1.55234811e-03, 1.55234811e-03, 1.55234811e-03, 1.55234811e-03,
4.53464427e-03, 4.53464427e-03, 4.53464427e-03, 4.53464427e-03,
1.24067118e-02, 1.24067118e-02, 1.24067118e-02, 1.24067118e-02,
3.16898153e-02, 3.16898153e-02, 3.16898153e-02, 3.16898153e-02,
7.53087747e-02, 7.53087747e-02, 7.53087747e-02, 7.53087747e-02,
1.65962861e-01, 1.65962861e-01, 1.65962861e-01, 1.65962861e-01,
3.38287464e-01, 3.38287464e-01, 3.38287464e-01, 3.38287464e-01,
6.36985732e-01, 6.36985732e-01, 6.36985732e-01, 6.36985732e-01,
1.10885693e+00, 1.10885693e+00, 1.10885693e+00, 1.10885693e+00,
1.79021928e+00, 1.79021928e+00, 1.79021928e+00, 1.79021928e+00,
2.69557108e+00, 2.69557108e+00, 2.69557108e+00, 2.69557108e+00,
3.81416950e+00, 3.81416950e+00, 3.81416950e+00, 3.81416950e+00,
5.11690819e+00, 5.11690819e+00, 5.11690819e+00, 5.11690819e+00,
6.57068197e+00, 6.57068197e+00, 6.57068197e+00, 6.57068197e+00,
8.14009276e+00, 8.14009276e+00, 8.14009276e+00, 8.14009276e+00,
9.73476120e+00, 9.73476120e+00, 9.73476120e+00, 9.73476120e+00,
1.13275023e+01, 1.13275023e+01, 1.13275023e+01, 1.13275023e+01,
1.29006498e+01, 1.29006498e+01, 1.29006498e+01, 1.29006498e+01,
1.44427973e+01, 1.44427973e+01, 1.44427973e+01, 1.44427973e+01,
1.59276078e+01, 1.59276078e+01, 1.59276078e+01, 1.59276078e+01,
1.73033647e+01, 1.73033647e+01, 1.73033647e+01, 1.73033647e+01,
1.84940290e+01, 1.84940290e+01, 1.84940290e+01, 1.84940290e+01,
1.93974938e+01, 1.93974938e+01, 1.93974938e+01, 1.93974938e+01,
1.99500228e+01, 1.99500228e+01, 1.99500228e+01, 1.99500228e+01,
2.01786156e+01, 2.01786156e+01, 2.01786156e+01, 2.01786156e+01,
2.02141830e+01, 2.02141830e+01, 2.02141830e+01, 2.02141830e+01,
2.01270312e+01, 2.01270312e+01, 2.01270312e+01, 2.01270312e+01,
2.00438391e+01, 2.00438391e+01, 2.00438391e+01, 2.00438391e+01,
2.00180478e+01, 2.00180478e+01, 2.00180478e+01, 2.00180478e+01,
2.00116554e+01, 2.00116554e+01, 2.00116554e+01, 2.00116554e+01,
2.00060169e+01, 2.00060169e+01, 2.00060169e+01, 2.00060169e+01,
1.99957578e+01, 1.99957578e+01, 1.99957578e+01, 1.99957578e+01,
1.99760299e+01, 1.99760299e+01, 1.99760299e+01, 1.99760299e+01,
1.99495430e+01, 1.99495430e+01, 1.99495430e+01, 1.99495430e+01,
1.99258351e+01, 1.99258351e+01, 1.99258351e+01, 1.99258351e+01,
1.99068524e+01, 1.99068524e+01, 1.99068524e+01, 1.99068524e+01,
1.98862615e+01, 1.98862615e+01, 1.98862615e+01, 1.98862615e+01,
1.98134680e+01, 1.98134680e+01, 1.98134680e+01, 1.98134680e+01,
1.94905556e+01, 1.94905556e+01, 1.94905556e+01, 1.94905556e+01,
1.80230680e+01, 1.80230680e+01, 1.80230680e+01, 1.80230680e+01,
1.26076173e+01, 1.26076173e+01, 1.26076173e+01, 1.26076173e+01,
2.67311141e+00, 2.67311141e+00, 2.67311141e+00, 2.67311141e+00,
5.14361403e-02, 5.14361403e-02, 5.14361403e-02, 5.14361403e-02,
6.80950934e-05, 6.80950934e-05, 6.80950934e-05, 6.80950934e-05,
1.13412667e-08, 1.13412667e-08, 1.13412667e-08, 1.13412667e-08,
1.79486084e-12, 1.79486084e-12, 1.79486084e-12, 1.79486084e-12,
2.73952290e-16, 2.73952290e-16, 2.73952290e-16, 2.73952290e-16,
5.00064164e-20, 5.00064164e-20, 5.00064164e-20, 5.00064164e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
9.99998375e+02, 9.99998375e+02, 9.99998375e+02, 9.99998375e+02,
9.99994345e+02, 9.99994345e+02, 9.99994345e+02, 9.99994345e+02,
9.99981322e+02, 9.99981322e+02, 9.99981322e+02, 9.99981322e+02,
9.99941918e+02, 9.99941918e+02, 9.99941918e+02, 9.99941918e+02,
9.99830343e+02, 9.99830343e+02, 9.99830343e+02, 9.99830343e+02,
9.99535884e+02, 9.99535884e+02, 9.99535884e+02, 9.99535884e+02,
9.98814928e+02, 9.98814928e+02, 9.98814928e+02, 9.98814928e+02,
9.97185851e+02, 9.97185851e+02, 9.97185851e+02, 9.97185851e+02,
9.93807795e+02, 9.93807795e+02, 9.93807795e+02, 9.93807795e+02,
9.87414745e+02, 9.87414745e+02, 9.87414745e+02, 9.87414745e+02,
9.76420200e+02, 9.76420200e+02, 9.76420200e+02, 9.76420200e+02,
9.59272359e+02, 9.59272359e+02, 9.59272359e+02, 9.59272359e+02,
9.34979017e+02, 9.34979017e+02, 9.34979017e+02, 9.34979017e+02,
9.03531113e+02, 9.03531113e+02, 9.03531113e+02, 9.03531113e+02,
8.65943868e+02, 8.65943868e+02, 8.65943868e+02, 8.65943868e+02,
8.23870991e+02, 8.23870991e+02, 8.23870991e+02, 8.23870991e+02,
7.78998721e+02, 7.78998721e+02, 7.78998721e+02, 7.78998721e+02,
7.32829097e+02, 7.32829097e+02, 7.32829097e+02, 7.32829097e+02,
6.87867667e+02, 6.87867667e+02, 6.87867667e+02, 6.87867667e+02,
6.45811417e+02, 6.45811417e+02, 6.45811417e+02, 6.45811417e+02,
6.06420020e+02, 6.06420020e+02, 6.06420020e+02, 6.06420020e+02,
5.69812260e+02, 5.69812260e+02, 5.69812260e+02, 5.69812260e+02,
5.36391612e+02, 5.36391612e+02, 5.36391612e+02, 5.36391612e+02,
5.06909342e+02, 5.06909342e+02, 5.06909342e+02, 5.06909342e+02,
4.82613586e+02, 4.82613586e+02, 4.82613586e+02, 4.82613586e+02,
4.64771665e+02, 4.64771665e+02, 4.64771665e+02, 4.64771665e+02,
4.54120136e+02, 4.54120136e+02, 4.54120136e+02, 4.54120136e+02,
4.49846503e+02, 4.49846503e+02, 4.49846503e+02, 4.49846503e+02,
4.49195989e+02, 4.49195989e+02, 4.49195989e+02, 4.49195989e+02,
4.50838120e+02, 4.50838120e+02, 4.50838120e+02, 4.50838120e+02,
4.52365430e+02, 4.52365430e+02, 4.52365430e+02, 4.52365430e+02,
4.52826151e+02, 4.52826151e+02, 4.52826151e+02, 4.52826151e+02,
4.53036969e+02, 4.53036969e+02, 4.53036969e+02, 4.53036969e+02,
4.53180502e+02, 4.53180502e+02, 4.53180502e+02, 4.53180502e+02,
4.53367904e+02, 4.53367904e+02, 4.53367904e+02, 4.53367904e+02,
4.53682043e+02, 4.53682043e+02, 4.53682043e+02, 4.53682043e+02,
4.54101255e+02, 4.54101255e+02, 4.54101255e+02, 4.54101255e+02,
4.54550055e+02, 4.54550055e+02, 4.54550055e+02, 4.54550055e+02,
4.55181873e+02, 4.55181873e+02, 4.55181873e+02, 4.55181873e+02,
4.56088869e+02, 4.56088869e+02, 4.56088869e+02, 4.56088869e+02,
4.55314517e+02, 4.55314517e+02, 4.55314517e+02, 4.55314517e+02,
4.42432305e+02, 4.42432305e+02, 4.42432305e+02, 4.42432305e+02,
3.73791360e+02, 3.73791360e+02, 3.73791360e+02, 3.73791360e+02,
1.73331140e+02, 1.73331140e+02, 1.73331140e+02, 1.73331140e+02,
1.42286314e+01, 1.42286314e+01, 1.42286314e+01, 1.42286314e+01,
7.35026594e-02, 7.35026594e-02, 7.35026594e-02, 7.35026594e-02,
1.00088839e-02, 1.00088839e-02, 1.00088839e-02, 1.00088839e-02,
1.00000013e-02, 1.00000013e-02, 1.00000013e-02, 1.00000013e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999914, 0.99999914, 0.99999914, 0.99999914, 0.9999966 ,
0.9999966 , 0.9999966 , 0.9999966 , 0.99998894, 0.99998894,
0.99998894, 0.99998894, 0.99996579, 0.99996579, 0.99996579,
0.99996579, 0.99990045, 0.99990045, 0.99990045, 0.99990045,
0.99972809, 0.99972809, 0.99972809, 0.99972809, 0.99930503,
0.99930503, 0.99930503, 0.99930503, 0.99834358, 0.99834358,
0.99834358, 0.99834358, 0.99633101, 0.99633101, 0.99633101,
0.99633101, 0.99247048, 0.99247048, 0.99247048, 0.99247048,
0.98571275, 0.98571275, 0.98571275, 0.98571275, 0.97494122,
0.97494122, 0.97494122, 0.97494122, 0.95929193, 0.95929193,
0.95929193, 0.95929193, 0.93846719, 0.93846719, 0.93846719,
0.93846719, 0.91285499, 0.91285499, 0.91285499, 0.91285499,
0.88337065, 0.88337065, 0.88337065, 0.88337065, 0.85110869,
0.85110869, 0.85110869, 0.85110869, 0.81698796, 0.81698796,
0.81698796, 0.81698796, 0.78242051, 0.78242051, 0.78242051,
0.78242051, 0.74907398, 0.74907398, 0.74907398, 0.74907398,
0.7171757 , 0.7171757 , 0.7171757 , 0.7171757 , 0.68675454,
0.68675454, 0.68675454, 0.68675454, 0.65817399, 0.65817399,
0.65817399, 0.65817399, 0.63120015, 0.63120015, 0.63120015,
0.63120015, 0.60905285, 0.60905285, 0.60905285, 0.60905285,
0.58738819, 0.58738819, 0.58738819, 0.58738819, 0.57655812,
0.57655812, 0.57655812, 0.57655812, 0.56731141, 0.56731141,
0.56731141, 0.56731141, 0.5639553 , 0.5639553 , 0.5639553 ,
0.5639553 , 0.56439893, 0.56439893, 0.56439893, 0.56439893,
0.5666221 , 0.5666221 , 0.5666221 , 0.5666221 , 0.56689879,
0.56689879, 0.56689879, 0.56689879, 0.56688439, 0.56688439,
0.56688439, 0.56688439, 0.56712646, 0.56712646, 0.56712646,
0.56712646, 0.56724753, 0.56724753, 0.56724753, 0.56724753,
0.56747625, 0.56747625, 0.56747625, 0.56747625, 0.56936103,
0.56936103, 0.56936103, 0.56936103, 0.58025147, 0.58025147,
0.58025147, 0.58025147, 0.62459777, 0.62459777, 0.62459777,
0.62459777, 0.76306356, 0.76306356, 0.76306356, 0.76306356,
1.11089581, 1.11089581, 1.11089581, 1.11089581, 1.83047175,
1.83047175, 1.83047175, 1.83047175, 2.96543117, 2.96543117,
2.96543117, 2.96543117, 3.63638824, 3.63638824, 3.63638824,
3.63638824, 3.47481596, 3.47481596, 3.47481596, 3.47481596,
1.95403945, 1.95403945, 1.95403945, 1.95403945, 1.08283494,
1.08283494, 1.08283494, 1.08283494, 1.00335988, 1.00335988,
1.00335988, 1.00335988, 1.00000576, 1.00000576, 1.00000576,
1.00000576, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.21524399e-05, 3.21524399e-05, 3.21524399e-05, 3.21524399e-05,
1.27174228e-04, 1.27174228e-04, 1.27174228e-04, 1.27174228e-04,
4.13952526e-04, 4.13952526e-04, 4.13952526e-04, 4.13952526e-04,
1.28010235e-03, 1.28010235e-03, 1.28010235e-03, 1.28010235e-03,
3.72494678e-03, 3.72494678e-03, 3.72494678e-03, 3.72494678e-03,
1.01750372e-02, 1.01750372e-02, 1.01750372e-02, 1.01750372e-02,
2.60100958e-02, 2.60100958e-02, 2.60100958e-02, 2.60100958e-02,
6.20163885e-02, 6.20163885e-02, 6.20163885e-02, 6.20163885e-02,
1.37474769e-01, 1.37474769e-01, 1.37474769e-01, 1.37474769e-01,
2.82559370e-01, 2.82559370e-01, 2.82559370e-01, 2.82559370e-01,
5.37624629e-01, 5.37624629e-01, 5.37624629e-01, 5.37624629e-01,
9.47149548e-01, 9.47149548e-01, 9.47149548e-01, 9.47149548e-01,
1.54878183e+00, 1.54878183e+00, 1.54878183e+00, 1.54878183e+00,
2.36197526e+00, 2.36197526e+00, 2.36197526e+00, 2.36197526e+00,
3.38252055e+00, 3.38252055e+00, 3.38252055e+00, 3.38252055e+00,
4.58640867e+00, 4.58640867e+00, 4.58640867e+00, 4.58640867e+00,
5.94121401e+00, 5.94121401e+00, 5.94121401e+00, 5.94121401e+00,
7.41947260e+00, 7.41947260e+00, 7.41947260e+00, 7.41947260e+00,
8.95560830e+00, 8.95560830e+00, 8.95560830e+00, 8.95560830e+00,
1.04968275e+01, 1.04968275e+01, 1.04968275e+01, 1.04968275e+01,
1.20259513e+01, 1.20259513e+01, 1.20259513e+01, 1.20259513e+01,
1.35357208e+01, 1.35357208e+01, 1.35357208e+01, 1.35357208e+01,
1.50098538e+01, 1.50098538e+01, 1.50098538e+01, 1.50098538e+01,
1.64177832e+01, 1.64177832e+01, 1.64177832e+01, 1.64177832e+01,
1.77019691e+01, 1.77019691e+01, 1.77019691e+01, 1.77019691e+01,
1.87851353e+01, 1.87851353e+01, 1.87851353e+01, 1.87851353e+01,
1.95738145e+01, 1.95738145e+01, 1.95738145e+01, 1.95738145e+01,
2.00235953e+01, 2.00235953e+01, 2.00235953e+01, 2.00235953e+01,
2.01873321e+01, 2.01873321e+01, 2.01873321e+01, 2.01873321e+01,
2.01992370e+01, 2.01992370e+01, 2.01992370e+01, 2.01992370e+01,
2.01017551e+01, 2.01017551e+01, 2.01017551e+01, 2.01017551e+01,
2.00372744e+01, 2.00372744e+01, 2.00372744e+01, 2.00372744e+01,
2.00157926e+01, 2.00157926e+01, 2.00157926e+01, 2.00157926e+01,
2.00082959e+01, 2.00082959e+01, 2.00082959e+01, 2.00082959e+01,
2.00024907e+01, 2.00024907e+01, 2.00024907e+01, 2.00024907e+01,
1.99918498e+01, 1.99918498e+01, 1.99918498e+01, 1.99918498e+01,
1.99718075e+01, 1.99718075e+01, 1.99718075e+01, 1.99718075e+01,
1.99458177e+01, 1.99458177e+01, 1.99458177e+01, 1.99458177e+01,
1.99210292e+01, 1.99210292e+01, 1.99210292e+01, 1.99210292e+01,
1.98969554e+01, 1.98969554e+01, 1.98969554e+01, 1.98969554e+01,
1.98826323e+01, 1.98826323e+01, 1.98826323e+01, 1.98826323e+01,
1.98432269e+01, 1.98432269e+01, 1.98432269e+01, 1.98432269e+01,
1.96844946e+01, 1.96844946e+01, 1.96844946e+01, 1.96844946e+01,
1.89485092e+01, 1.89485092e+01, 1.89485092e+01, 1.89485092e+01,
1.58676586e+01, 1.58676586e+01, 1.58676586e+01, 1.58676586e+01,
7.25693697e+00, 7.25693697e+00, 7.25693697e+00, 7.25693697e+00,
4.34921777e-01, 4.34921777e-01, 4.34921777e-01, 4.34921777e-01,
2.27948590e-03, 2.27948590e-03, 2.27948590e-03, 2.27948590e-03,
6.88627382e-07, 6.88627382e-07, 6.88627382e-07, 6.88627382e-07,
1.03089844e-10, 1.03089844e-10, 1.03089844e-10, 1.03089844e-10,
1.60056279e-14, 1.60056279e-14, 1.60056279e-14, 1.60056279e-14,
2.53568291e-18, 2.53568291e-18, 2.53568291e-18, 2.53568291e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99998797e+02, 9.99998797e+02, 9.99998797e+02, 9.99998797e+02,
9.99995242e+02, 9.99995242e+02, 9.99995242e+02, 9.99995242e+02,
9.99984511e+02, 9.99984511e+02, 9.99984511e+02, 9.99984511e+02,
9.99952104e+02, 9.99952104e+02, 9.99952104e+02, 9.99952104e+02,
9.99860634e+02, 9.99860634e+02, 9.99860634e+02, 9.99860634e+02,
9.99619353e+02, 9.99619353e+02, 9.99619353e+02, 9.99619353e+02,
9.99027231e+02, 9.99027231e+02, 9.99027231e+02, 9.99027231e+02,
9.97682034e+02, 9.97682034e+02, 9.97682034e+02, 9.97682034e+02,
9.94868221e+02, 9.94868221e+02, 9.94868221e+02, 9.94868221e+02,
9.89478098e+02, 9.89478098e+02, 9.89478098e+02, 9.89478098e+02,
9.80065169e+02, 9.80065169e+02, 9.80065169e+02, 9.80065169e+02,
9.65118065e+02, 9.65118065e+02, 9.65118065e+02, 9.65118065e+02,
9.43523368e+02, 9.43523368e+02, 9.43523368e+02, 9.43523368e+02,
9.15006674e+02, 9.15006674e+02, 9.15006674e+02, 9.15006674e+02,
8.80278342e+02, 8.80278342e+02, 8.80278342e+02, 8.80278342e+02,
8.40775285e+02, 8.40775285e+02, 8.40775285e+02, 8.40775285e+02,
7.98145941e+02, 7.98145941e+02, 7.98145941e+02, 7.98145941e+02,
7.53755098e+02, 7.53755098e+02, 7.53755098e+02, 7.53755098e+02,
7.09452587e+02, 7.09452587e+02, 7.09452587e+02, 7.09452587e+02,
6.67485676e+02, 6.67485676e+02, 6.67485676e+02, 6.67485676e+02,
6.28046689e+02, 6.28046689e+02, 6.28046689e+02, 6.28046689e+02,
5.91112375e+02, 5.91112375e+02, 5.91112375e+02, 5.91112375e+02,
5.56843157e+02, 5.56843157e+02, 5.56843157e+02, 5.56843157e+02,
5.25742971e+02, 5.25742971e+02, 5.25742971e+02, 5.25742971e+02,
4.98632093e+02, 4.98632093e+02, 4.98632093e+02, 4.98632093e+02,
4.76795490e+02, 4.76795490e+02, 4.76795490e+02, 4.76795490e+02,
4.61393393e+02, 4.61393393e+02, 4.61393393e+02, 4.61393393e+02,
4.52740843e+02, 4.52740843e+02, 4.52740843e+02, 4.52740843e+02,
4.49648853e+02, 4.49648853e+02, 4.49648853e+02, 4.49648853e+02,
4.49459232e+02, 4.49459232e+02, 4.49459232e+02, 4.49459232e+02,
4.51321023e+02, 4.51321023e+02, 4.51321023e+02, 4.51321023e+02,
4.52531111e+02, 4.52531111e+02, 4.52531111e+02, 4.52531111e+02,
4.52874067e+02, 4.52874067e+02, 4.52874067e+02, 4.52874067e+02,
4.53039653e+02, 4.53039653e+02, 4.53039653e+02, 4.53039653e+02,
4.53200233e+02, 4.53200233e+02, 4.53200233e+02, 4.53200233e+02,
4.53441075e+02, 4.53441075e+02, 4.53441075e+02, 4.53441075e+02,
4.53821299e+02, 4.53821299e+02, 4.53821299e+02, 4.53821299e+02,
4.54260100e+02, 4.54260100e+02, 4.54260100e+02, 4.54260100e+02,
4.54669989e+02, 4.54669989e+02, 4.54669989e+02, 4.54669989e+02,
4.55190229e+02, 4.55190229e+02, 4.55190229e+02, 4.55190229e+02,
4.56011617e+02, 4.56011617e+02, 4.56011617e+02, 4.56011617e+02,
4.56384643e+02, 4.56384643e+02, 4.56384643e+02, 4.56384643e+02,
4.51490886e+02, 4.51490886e+02, 4.51490886e+02, 4.51490886e+02,
4.17208973e+02, 4.17208973e+02, 4.17208973e+02, 4.17208973e+02,
2.82109903e+02, 2.82109903e+02, 2.82109903e+02, 2.82109903e+02,
6.13627160e+01, 6.13627160e+01, 6.13627160e+01, 6.13627160e+01,
1.21031418e+00, 1.21031418e+00, 1.21031418e+00, 1.21031418e+00,
1.08068264e-02, 1.08068264e-02, 1.08068264e-02, 1.08068264e-02,
1.00000814e-02, 1.00000814e-02, 1.00000814e-02, 1.00000814e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999752, 0.99999752, 0.99999752, 0.99999752, 0.99999075,
0.99999075, 0.99999075, 0.99999075, 0.99997179, 0.99997179,
0.99997179, 0.99997179, 0.99991817, 0.99991817, 0.99991817,
0.99991817, 0.99977683, 0.99977683, 0.99977683, 0.99977683,
0.99942915, 0.99942915, 0.99942915, 0.99942915, 0.99863505,
0.99863505, 0.99863505, 0.99863505, 0.99695933, 0.99695933,
0.99695933, 0.99695933, 0.9937087 , 0.9937087 , 0.9937087 ,
0.9937087 , 0.98793721, 0.98793721, 0.98793721, 0.98793721,
0.9785829 , 0.9785829 , 0.9785829 , 0.9785829 , 0.96474136,
0.96474136, 0.96474136, 0.96474136, 0.94597339, 0.94597339,
0.94597339, 0.94597339, 0.92247486, 0.92247486, 0.92247486,
0.92247486, 0.89499831, 0.89499831, 0.89499831, 0.89499831,
0.86456812, 0.86456812, 0.86456812, 0.86456812, 0.83212124,
0.83212124, 0.83212124, 0.83212124, 0.79863526, 0.79863526,
0.79863526, 0.79863526, 0.76573988, 0.76573988, 0.76573988,
0.76573988, 0.73420588, 0.73420588, 0.73420588, 0.73420588,
0.703996 , 0.703996 , 0.703996 , 0.703996 , 0.67517948,
0.67517948, 0.67517948, 0.67517948, 0.64829444, 0.64829444,
0.64829444, 0.64829444, 0.62286674, 0.62286674, 0.62286674,
0.62286674, 0.60281401, 0.60281401, 0.60281401, 0.60281401,
0.58304717, 0.58304717, 0.58304717, 0.58304717, 0.5737585 ,
0.5737585 , 0.5737585 , 0.5737585 , 0.56680383, 0.56680383,
0.56680383, 0.56680383, 0.56406554, 0.56406554, 0.56406554,
0.56406554, 0.56445674, 0.56445674, 0.56445674, 0.56445674,
0.56689479, 0.56689479, 0.56689479, 0.56689479, 0.56721005,
0.56721005, 0.56721005, 0.56721005, 0.56705228, 0.56705228,
0.56705228, 0.56705228, 0.56711649, 0.56711649, 0.56711649,
0.56711649, 0.5672706 , 0.5672706 , 0.5672706 , 0.5672706 ,
0.56752476, 0.56752476, 0.56752476, 0.56752476, 0.5687617 ,
0.5687617 , 0.5687617 , 0.5687617 , 0.5756626 , 0.5756626 ,
0.5756626 , 0.5756626 , 0.60517122, 0.60517122, 0.60517122,
0.60517122, 0.70225684, 0.70225684, 0.70225684, 0.70225684,
0.95916964, 0.95916964, 0.95916964, 0.95916964, 1.52074205,
1.52074205, 1.52074205, 1.52074205, 2.53366254, 2.53366254,
2.53366254, 2.53366254, 3.51709808, 3.51709808, 3.51709808,
3.51709808, 3.71733154, 3.71733154, 3.71733154, 3.71733154,
2.81684948, 2.81684948, 2.81684948, 2.81684948, 1.27928976,
1.27928976, 1.27928976, 1.27928976, 1.01706333, 1.01706333,
1.01706333, 1.01706333, 1.00022545, 1.00022545, 1.00022545,
1.00022545, 1.00000005, 1.00000005, 1.00000005, 1.00000005,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([9.27169916e-05, 9.27169916e-05, 9.27169916e-05, 9.27169916e-05,
3.45942523e-04, 3.45942523e-04, 3.45942523e-04, 3.45942523e-04,
1.05548283e-03, 1.05548283e-03, 1.05548283e-03, 1.05548283e-03,
3.06180591e-03, 3.06180591e-03, 3.06180591e-03, 3.06180591e-03,
8.35099130e-03, 8.35099130e-03, 8.35099130e-03, 8.35099130e-03,
2.13637129e-02, 2.13637129e-02, 2.13637129e-02, 2.13637129e-02,
5.10980585e-02, 5.10980585e-02, 5.10980585e-02, 5.10980585e-02,
1.13904438e-01, 1.13904438e-01, 1.13904438e-01, 1.13904438e-01,
2.35977350e-01, 2.35977350e-01, 2.35977350e-01, 2.35977350e-01,
4.53511059e-01, 4.53511059e-01, 4.53511059e-01, 4.53511059e-01,
8.08290869e-01, 8.08290869e-01, 8.08290869e-01, 8.08290869e-01,
1.33838461e+00, 1.33838461e+00, 1.33838461e+00, 1.33838461e+00,
2.06718875e+00, 2.06718875e+00, 2.06718875e+00, 2.06718875e+00,
2.99650453e+00, 2.99650453e+00, 2.99650453e+00, 2.99650453e+00,
4.10776410e+00, 4.10776410e+00, 4.10776410e+00, 4.10776410e+00,
5.37093252e+00, 5.37093252e+00, 5.37093252e+00, 5.37093252e+00,
6.75756651e+00, 6.75756651e+00, 6.75756651e+00, 6.75756651e+00,
8.23003026e+00, 8.23003026e+00, 8.23003026e+00, 8.23003026e+00,
9.71810036e+00, 9.71810036e+00, 9.71810036e+00, 9.71810036e+00,
1.12035998e+01, 1.12035998e+01, 1.12035998e+01, 1.12035998e+01,
1.26747396e+01, 1.26747396e+01, 1.26747396e+01, 1.26747396e+01,
1.41241052e+01, 1.41241052e+01, 1.41241052e+01, 1.41241052e+01,
1.55324405e+01, 1.55324405e+01, 1.55324405e+01, 1.55324405e+01,
1.68648788e+01, 1.68648788e+01, 1.68648788e+01, 1.68648788e+01,
1.80587444e+01, 1.80587444e+01, 1.80587444e+01, 1.80587444e+01,
1.90363513e+01, 1.90363513e+01, 1.90363513e+01, 1.90363513e+01,
1.97169663e+01, 1.97169663e+01, 1.97169663e+01, 1.97169663e+01,
2.00776225e+01, 2.00776225e+01, 2.00776225e+01, 2.00776225e+01,
2.01888597e+01, 2.01888597e+01, 2.01888597e+01, 2.01888597e+01,
2.01801125e+01, 2.01801125e+01, 2.01801125e+01, 2.01801125e+01,
2.00812778e+01, 2.00812778e+01, 2.00812778e+01, 2.00812778e+01,
2.00318261e+01, 2.00318261e+01, 2.00318261e+01, 2.00318261e+01,
2.00146648e+01, 2.00146648e+01, 2.00146648e+01, 2.00146648e+01,
2.00061042e+01, 2.00061042e+01, 2.00061042e+01, 2.00061042e+01,
1.99986959e+01, 1.99986959e+01, 1.99986959e+01, 1.99986959e+01,
1.99863432e+01, 1.99863432e+01, 1.99863432e+01, 1.99863432e+01,
1.99656179e+01, 1.99656179e+01, 1.99656179e+01, 1.99656179e+01,
1.99415041e+01, 1.99415041e+01, 1.99415041e+01, 1.99415041e+01,
1.99167435e+01, 1.99167435e+01, 1.99167435e+01, 1.99167435e+01,
1.98912290e+01, 1.98912290e+01, 1.98912290e+01, 1.98912290e+01,
1.98732047e+01, 1.98732047e+01, 1.98732047e+01, 1.98732047e+01,
1.98526648e+01, 1.98526648e+01, 1.98526648e+01, 1.98526648e+01,
1.97731261e+01, 1.97731261e+01, 1.97731261e+01, 1.97731261e+01,
1.94093352e+01, 1.94093352e+01, 1.94093352e+01, 1.94093352e+01,
1.77776801e+01, 1.77776801e+01, 1.77776801e+01, 1.77776801e+01,
1.19820754e+01, 1.19820754e+01, 1.19820754e+01, 1.19820754e+01,
2.16019726e+00, 2.16019726e+00, 2.16019726e+00, 2.16019726e+00,
3.53014742e-02, 3.53014742e-02, 3.53014742e-02, 3.53014742e-02,
3.82045712e-05, 3.82045712e-05, 3.82045712e-05, 3.82045712e-05,
6.27267874e-09, 6.27267874e-09, 6.27267874e-09, 6.27267874e-09,
9.86981788e-13, 9.86981788e-13, 9.86981788e-13, 9.86981788e-13,
1.50628633e-16, 1.50628633e-16, 1.50628633e-16, 1.50628633e-16,
1.80645712e-20, 1.80645712e-20, 1.80645712e-20, 1.80645712e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99996531e+02, 9.99996531e+02, 9.99996531e+02, 9.99996531e+02,
9.99987056e+02, 9.99987056e+02, 9.99987056e+02, 9.99987056e+02,
9.99960508e+02, 9.99960508e+02, 9.99960508e+02, 9.99960508e+02,
9.99885444e+02, 9.99885444e+02, 9.99885444e+02, 9.99885444e+02,
9.99687580e+02, 9.99687580e+02, 9.99687580e+02, 9.99687580e+02,
9.99200940e+02, 9.99200940e+02, 9.99200940e+02, 9.99200940e+02,
9.98089767e+02, 9.98089767e+02, 9.98089767e+02, 9.98089767e+02,
9.95746369e+02, 9.95746369e+02, 9.95746369e+02, 9.95746369e+02,
9.91205796e+02, 9.91205796e+02, 9.91205796e+02, 9.91205796e+02,
9.83160321e+02, 9.83160321e+02, 9.83160321e+02, 9.83160321e+02,
9.70163089e+02, 9.70163089e+02, 9.70163089e+02, 9.70163089e+02,
9.51025501e+02, 9.51025501e+02, 9.51025501e+02, 9.51025501e+02,
9.25253700e+02, 9.25253700e+02, 9.25253700e+02, 9.25253700e+02,
8.93272718e+02, 8.93272718e+02, 8.93272718e+02, 8.93272718e+02,
8.56285555e+02, 8.56285555e+02, 8.56285555e+02, 8.56285555e+02,
8.15844374e+02, 8.15844374e+02, 8.15844374e+02, 8.15844374e+02,
7.73342136e+02, 7.73342136e+02, 7.73342136e+02, 7.73342136e+02,
7.30129913e+02, 7.30129913e+02, 7.30129913e+02, 7.30129913e+02,
6.88352942e+02, 6.88352942e+02, 6.88352942e+02, 6.88352942e+02,
6.49007221e+02, 6.49007221e+02, 6.49007221e+02, 6.49007221e+02,
6.11939746e+02, 6.11939746e+02, 6.11939746e+02, 6.11939746e+02,
5.77224777e+02, 5.77224777e+02, 5.77224777e+02, 5.77224777e+02,
5.45110602e+02, 5.45110602e+02, 5.45110602e+02, 5.45110602e+02,
5.16188887e+02, 5.16188887e+02, 5.16188887e+02, 5.16188887e+02,
4.91335604e+02, 4.91335604e+02, 4.91335604e+02, 4.91335604e+02,
4.71814716e+02, 4.71814716e+02, 4.71814716e+02, 4.71814716e+02,
4.58644756e+02, 4.58644756e+02, 4.58644756e+02, 4.58644756e+02,
4.51748779e+02, 4.51748779e+02, 4.51748779e+02, 4.51748779e+02,
4.49620320e+02, 4.49620320e+02, 4.49620320e+02, 4.49620320e+02,
4.49793173e+02, 4.49793173e+02, 4.49793173e+02, 4.49793173e+02,
4.51686270e+02, 4.51686270e+02, 4.51686270e+02, 4.51686270e+02,
4.52653139e+02, 4.52653139e+02, 4.52653139e+02, 4.52653139e+02,
4.52934776e+02, 4.52934776e+02, 4.52934776e+02, 4.52934776e+02,
4.53069098e+02, 4.53069098e+02, 4.53069098e+02, 4.53069098e+02,
4.53226281e+02, 4.53226281e+02, 4.53226281e+02, 4.53226281e+02,
4.53501144e+02, 4.53501144e+02, 4.53501144e+02, 4.53501144e+02,
4.53932351e+02, 4.53932351e+02, 4.53932351e+02, 4.53932351e+02,
4.54403842e+02, 4.54403842e+02, 4.54403842e+02, 4.54403842e+02,
4.54828470e+02, 4.54828470e+02, 4.54828470e+02, 4.54828470e+02,
4.55256571e+02, 4.55256571e+02, 4.55256571e+02, 4.55256571e+02,
4.55891222e+02, 4.55891222e+02, 4.55891222e+02, 4.55891222e+02,
4.56695880e+02, 4.56695880e+02, 4.56695880e+02, 4.56695880e+02,
4.55303353e+02, 4.55303353e+02, 4.55303353e+02, 4.55303353e+02,
4.39632542e+02, 4.39632542e+02, 4.39632542e+02, 4.39632542e+02,
3.62585344e+02, 3.62585344e+02, 3.62585344e+02, 3.62585344e+02,
1.55123980e+02, 1.55123980e+02, 1.55123980e+02, 1.55123980e+02,
1.06526829e+01, 1.06526829e+01, 1.06526829e+01, 1.06526829e+01,
4.72581949e-02, 4.72581949e-02, 4.72581949e-02, 4.72581949e-02,
1.00047111e-02, 1.00047111e-02, 1.00047111e-02, 1.00047111e-02,
1.00000007e-02, 1.00000007e-02, 1.00000007e-02, 1.00000007e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999334, 0.99999334, 0.99999334, 0.99999334, 0.99997652,
0.99997652, 0.99997652, 0.99997652, 0.99993274, 0.99993274,
0.99993274, 0.99993274, 0.9998167 , 0.9998167 , 0.9998167 ,
0.9998167 , 0.9995308 , 0.9995308 , 0.9995308 , 0.9995308 ,
0.9988747 , 0.9988747 , 0.9988747 , 0.9988747 , 0.99747962,
0.99747962, 0.99747962, 0.99747962, 0.99474458, 0.99474458,
0.99474458, 0.99474458, 0.98982255, 0.98982255, 0.98982255,
0.98982255, 0.98171633, 0.98171633, 0.98171633, 0.98171633,
0.96950664, 0.96950664, 0.96950664, 0.96950664, 0.95264288,
0.95264288, 0.95264288, 0.95264288, 0.93114717, 0.93114717,
0.93114717, 0.93114717, 0.90560556, 0.90560556, 0.90560556,
0.90560556, 0.8769476 , 0.8769476 , 0.8769476 , 0.8769476 ,
0.8461295 , 0.8461295 , 0.8461295 , 0.8461295 , 0.81392176,
0.81392176, 0.81392176, 0.81392176, 0.78165473, 0.78165473,
0.78165473, 0.78165473, 0.75050172, 0.75050172, 0.75050172,
0.75050172, 0.72057659, 0.72057659, 0.72057659, 0.72057659,
0.69190945, 0.69190945, 0.69190945, 0.69190945, 0.66457344,
0.66457344, 0.66457344, 0.66457344, 0.63931001, 0.63931001,
0.63931001, 0.63931001, 0.61533571, 0.61533571, 0.61533571,
0.61533571, 0.59728585, 0.59728585, 0.59728585, 0.59728585,
0.57944602, 0.57944602, 0.57944602, 0.57944602, 0.57141549,
0.57141549, 0.57141549, 0.57141549, 0.56646332, 0.56646332,
0.56646332, 0.56646332, 0.56429638, 0.56429638, 0.56429638,
0.56429638, 0.56474556, 0.56474556, 0.56474556, 0.56474556,
0.56696375, 0.56696375, 0.56696375, 0.56696375, 0.56741743,
0.56741743, 0.56741743, 0.56741743, 0.5672394 , 0.5672394 ,
0.5672394 , 0.5672394 , 0.56719598, 0.56719598, 0.56719598,
0.56719598, 0.56730067, 0.56730067, 0.56730067, 0.56730067,
0.56757971, 0.56757971, 0.56757971, 0.56757971, 0.5684633 ,
0.5684633 , 0.5684633 , 0.5684633 , 0.57284684, 0.57284684,
0.57284684, 0.57284684, 0.59231821, 0.59231821, 0.59231821,
0.59231821, 0.6596568 , 0.6596568 , 0.6596568 , 0.6596568 ,
0.84699717, 0.84699717, 0.84699717, 0.84699717, 1.27785893,
1.27785893, 1.27785893, 1.27785893, 2.10551451, 2.10551451,
2.10551451, 2.10551451, 3.24550952, 3.24550952, 3.24550952,
3.24550952, 3.77306813, 3.77306813, 3.77306813, 3.77306813,
3.47838258, 3.47838258, 3.47838258, 3.47838258, 1.83959453,
1.83959453, 1.83959453, 1.83959453, 1.0682824 , 1.0682824 ,
1.0682824 , 1.0682824 , 1.00250794, 1.00250794, 1.00250794,
1.00250794, 1.00000304, 1.00000304, 1.00000304, 1.00000304,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.49214926e-04, 2.49214926e-04, 2.49214926e-04, 2.49214926e-04,
8.78604657e-04, 8.78604657e-04, 8.78604657e-04, 8.78604657e-04,
2.51662102e-03, 2.51662102e-03, 2.51662102e-03, 2.51662102e-03,
6.85892762e-03, 6.85892762e-03, 6.85892762e-03, 6.85892762e-03,
1.75588961e-02, 1.75588961e-02, 1.75588961e-02, 1.75588961e-02,
4.21228901e-02, 4.21228901e-02, 4.21228901e-02, 4.21228901e-02,
9.43950927e-02, 9.43950927e-02, 9.43950927e-02, 9.43950927e-02,
1.97042335e-01, 1.97042335e-01, 1.97042335e-01, 1.97042335e-01,
3.82340085e-01, 3.82340085e-01, 3.82340085e-01, 3.82340085e-01,
6.89147758e-01, 6.89147758e-01, 6.89147758e-01, 6.89147758e-01,
1.15519736e+00, 1.15519736e+00, 1.15519736e+00, 1.15519736e+00,
1.80686376e+00, 1.80686376e+00, 1.80686376e+00, 1.80686376e+00,
2.65131500e+00, 2.65131500e+00, 2.65131500e+00, 2.65131500e+00,
3.67550739e+00, 3.67550739e+00, 3.67550739e+00, 3.67550739e+00,
4.85271275e+00, 4.85271275e+00, 4.85271275e+00, 4.85271275e+00,
6.15350432e+00, 6.15350432e+00, 6.15350432e+00, 6.15350432e+00,
7.55357680e+00, 7.55357680e+00, 7.55357680e+00, 7.55357680e+00,
8.98941000e+00, 8.98941000e+00, 8.98941000e+00, 8.98941000e+00,
1.04303820e+01, 1.04303820e+01, 1.04303820e+01, 1.04303820e+01,
1.18617350e+01, 1.18617350e+01, 1.18617350e+01, 1.18617350e+01,
1.32783330e+01, 1.32783330e+01, 1.32783330e+01, 1.32783330e+01,
1.46700989e+01, 1.46700989e+01, 1.46700989e+01, 1.46700989e+01,
1.60141500e+01, 1.60141500e+01, 1.60141500e+01, 1.60141500e+01,
1.72717577e+01, 1.72717577e+01, 1.72717577e+01, 1.72717577e+01,
1.83764937e+01, 1.83764937e+01, 1.83764937e+01, 1.83764937e+01,
1.92517132e+01, 1.92517132e+01, 1.92517132e+01, 1.92517132e+01,
1.98312363e+01, 1.98312363e+01, 1.98312363e+01, 1.98312363e+01,
2.01141790e+01, 2.01141790e+01, 2.01141790e+01, 2.01141790e+01,
2.01871661e+01, 2.01871661e+01, 2.01871661e+01, 2.01871661e+01,
2.01587304e+01, 2.01587304e+01, 2.01587304e+01, 2.01587304e+01,
2.00649247e+01, 2.00649247e+01, 2.00649247e+01, 2.00649247e+01,
2.00267116e+01, 2.00267116e+01, 2.00267116e+01, 2.00267116e+01,
2.00134137e+01, 2.00134137e+01, 2.00134137e+01, 2.00134137e+01,
2.00048366e+01, 2.00048366e+01, 2.00048366e+01, 2.00048366e+01,
1.99955344e+01, 1.99955344e+01, 1.99955344e+01, 1.99955344e+01,
1.99804744e+01, 1.99804744e+01, 1.99804744e+01, 1.99804744e+01,
1.99582608e+01, 1.99582608e+01, 1.99582608e+01, 1.99582608e+01,
1.99352201e+01, 1.99352201e+01, 1.99352201e+01, 1.99352201e+01,
1.99120283e+01, 1.99120283e+01, 1.99120283e+01, 1.99120283e+01,
1.98878907e+01, 1.98878907e+01, 1.98878907e+01, 1.98878907e+01,
1.98653154e+01, 1.98653154e+01, 1.98653154e+01, 1.98653154e+01,
1.98516094e+01, 1.98516094e+01, 1.98516094e+01, 1.98516094e+01,
1.98100006e+01, 1.98100006e+01, 1.98100006e+01, 1.98100006e+01,
1.96316470e+01, 1.96316470e+01, 1.96316470e+01, 1.96316470e+01,
1.88041286e+01, 1.88041286e+01, 1.88041286e+01, 1.88041286e+01,
1.54317797e+01, 1.54317797e+01, 1.54317797e+01, 1.54317797e+01,
6.46630891e+00, 6.46630891e+00, 6.46630891e+00, 6.46630891e+00,
3.26471041e-01, 3.26471041e-01, 3.26471041e-01, 3.26471041e-01,
1.39752195e-03, 1.39752195e-03, 1.39752195e-03, 1.39752195e-03,
3.61410681e-07, 3.61410681e-07, 3.61410681e-07, 3.61410681e-07,
5.50928989e-11, 5.50928989e-11, 5.50928989e-11, 5.50928989e-11,
8.73446544e-15, 8.73446544e-15, 8.73446544e-15, 8.73446544e-15,
1.37689406e-18, 1.37689406e-18, 1.37689406e-18, 1.37689406e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99990675e+02, 9.99990675e+02, 9.99990675e+02, 9.99990675e+02,
9.99967126e+02, 9.99967126e+02, 9.99967126e+02, 9.99967126e+02,
9.99905841e+02, 9.99905841e+02, 9.99905841e+02, 9.99905841e+02,
9.99743393e+02, 9.99743393e+02, 9.99743393e+02, 9.99743393e+02,
9.99343207e+02, 9.99343207e+02, 9.99343207e+02, 9.99343207e+02,
9.98425049e+02, 9.98425049e+02, 9.98425049e+02, 9.98425049e+02,
9.96473752e+02, 9.96473752e+02, 9.96473752e+02, 9.96473752e+02,
9.92651960e+02, 9.92651960e+02, 9.92651960e+02, 9.92651960e+02,
9.85786061e+02, 9.85786061e+02, 9.85786061e+02, 9.85786061e+02,
9.74510522e+02, 9.74510522e+02, 9.74510522e+02, 9.74510522e+02,
9.57600381e+02, 9.57600381e+02, 9.57600381e+02, 9.57600381e+02,
9.34386650e+02, 9.34386650e+02, 9.34386650e+02, 9.34386650e+02,
9.05034576e+02, 9.05034576e+02, 9.05034576e+02, 9.05034576e+02,
8.70506126e+02, 8.70506126e+02, 8.70506126e+02, 8.70506126e+02,
8.32221605e+02, 8.32221605e+02, 8.32221605e+02, 8.32221605e+02,
7.91601867e+02, 7.91601867e+02, 7.91601867e+02, 7.91601867e+02,
7.49771930e+02, 7.49771930e+02, 7.49771930e+02, 7.49771930e+02,
7.08448789e+02, 7.08448789e+02, 7.08448789e+02, 7.08448789e+02,
6.69249654e+02, 6.69249654e+02, 6.69249654e+02, 6.69249654e+02,
6.32199855e+02, 6.32199855e+02, 6.32199855e+02, 6.32199855e+02,
5.97271856e+02, 5.97271856e+02, 5.97271856e+02, 5.97271856e+02,
5.64593117e+02, 5.64593117e+02, 5.64593117e+02, 5.64593117e+02,
5.34481735e+02, 5.34481735e+02, 5.34481735e+02, 5.34481735e+02,
5.07617179e+02, 5.07617179e+02, 5.07617179e+02, 5.07617179e+02,
4.84923891e+02, 4.84923891e+02, 4.84923891e+02, 4.84923891e+02,
4.67588272e+02, 4.67588272e+02, 4.67588272e+02, 4.67588272e+02,
4.56440880e+02, 4.56440880e+02, 4.56440880e+02, 4.56440880e+02,
4.51073579e+02, 4.51073579e+02, 4.51073579e+02, 4.51073579e+02,
4.49670476e+02, 4.49670476e+02, 4.49670476e+02, 4.49670476e+02,
4.50197414e+02, 4.50197414e+02, 4.50197414e+02, 4.50197414e+02,
4.51964568e+02, 4.51964568e+02, 4.51964568e+02, 4.51964568e+02,
4.52734660e+02, 4.52734660e+02, 4.52734660e+02, 4.52734660e+02,
4.52988476e+02, 4.52988476e+02, 4.52988476e+02, 4.52988476e+02,
4.53122020e+02, 4.53122020e+02, 4.53122020e+02, 4.53122020e+02,
4.53277355e+02, 4.53277355e+02, 4.53277355e+02, 4.53277355e+02,
4.53570948e+02, 4.53570948e+02, 4.53570948e+02, 4.53570948e+02,
4.54027799e+02, 4.54027799e+02, 4.54027799e+02, 4.54027799e+02,
4.54514822e+02, 4.54514822e+02, 4.54514822e+02, 4.54514822e+02,
4.54967633e+02, 4.54967633e+02, 4.54967633e+02, 4.54967633e+02,
4.55383145e+02, 4.55383145e+02, 4.55383145e+02, 4.55383145e+02,
4.55885058e+02, 4.55885058e+02, 4.55885058e+02, 4.55885058e+02,
4.56660485e+02, 4.56660485e+02, 4.56660485e+02, 4.56660485e+02,
4.56707224e+02, 4.56707224e+02, 4.56707224e+02, 4.56707224e+02,
4.50332485e+02, 4.50332485e+02, 4.50332485e+02, 4.50332485e+02,
4.10745038e+02, 4.10745038e+02, 4.10745038e+02, 4.10745038e+02,
2.64438188e+02, 2.64438188e+02, 2.64438188e+02, 2.64438188e+02,
5.04920492e+01, 5.04920492e+01, 5.04920492e+01, 5.04920492e+01,
8.21200453e-01, 8.21200453e-01, 8.21200453e-01, 8.21200453e-01,
1.04110586e-02, 1.04110586e-02, 1.04110586e-02, 1.04110586e-02,
1.00000427e-02, 1.00000427e-02, 1.00000427e-02, 1.00000427e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99998324, 0.99998324, 0.99998324, 0.99998324, 0.99994409,
0.99994409, 0.99994409, 0.99994409, 0.99984947, 0.99984947,
0.99984947, 0.99984947, 0.99961409, 0.99961409, 0.99961409,
0.99961409, 0.99907186, 0.99907186, 0.99907186, 0.99907186,
0.99791058, 0.99791058, 0.99791058, 0.99791058, 0.99561098,
0.99561098, 0.99561098, 0.99561098, 0.99141916, 0.99141916,
0.99141916, 0.99141916, 0.98440893, 0.98440893, 0.98440893,
0.98440893, 0.97366694, 0.97366694, 0.97366694, 0.97366694,
0.95855926, 0.95855926, 0.95855926, 0.95855926, 0.93895505,
0.93895505, 0.93895505, 0.93895505, 0.91527616, 0.91527616,
0.91527616, 0.91527616, 0.88833959, 0.88833959, 0.88833959,
0.88833959, 0.85907786, 0.85907786, 0.85907786, 0.85907786,
0.82825782, 0.82825782, 0.82825782, 0.82825782, 0.79682367,
0.79682367, 0.79682367, 0.79682367, 0.7660904 , 0.7660904 ,
0.7660904 , 0.7660904 , 0.73649342, 0.73649342, 0.73649342,
0.73649342, 0.7080382 , 0.7080382 , 0.7080382 , 0.7080382 ,
0.68079751, 0.68079751, 0.68079751, 0.68079751, 0.65483468,
0.65483468, 0.65483468, 0.65483468, 0.63114051, 0.63114051,
0.63114051, 0.63114051, 0.60854849, 0.60854849, 0.60854849,
0.60854849, 0.59238504, 0.59238504, 0.59238504, 0.59238504,
0.57651033, 0.57651033, 0.57651033, 0.57651033, 0.56951125,
0.56951125, 0.56951125, 0.56951125, 0.5662106 , 0.5662106 ,
0.5662106 , 0.5662106 , 0.56457441, 0.56457441, 0.56457441,
0.56457441, 0.56518521, 0.56518521, 0.56518521, 0.56518521,
0.5669638 , 0.5669638 , 0.5669638 , 0.5669638 , 0.56753478,
0.56753478, 0.56753478, 0.56753478, 0.56741507, 0.56741507,
0.56741507, 0.56741507, 0.56730543, 0.56730543, 0.56730543,
0.56730543, 0.56737641, 0.56737641, 0.56737641, 0.56737641,
0.56765193, 0.56765193, 0.56765193, 0.56765193, 0.56833782,
0.56833782, 0.56833782, 0.56833782, 0.57115323, 0.57115323,
0.57115323, 0.57115323, 0.58390602, 0.58390602, 0.58390602,
0.58390602, 0.63015878, 0.63015878, 0.63015878, 0.63015878,
0.76511277, 0.76511277, 0.76511277, 0.76511277, 1.09098504,
1.09098504, 1.09098504, 1.09098504, 1.75190783, 1.75190783,
1.75190783, 1.75190783, 2.84524356, 2.84524356, 2.84524356,
2.84524356, 3.69818791, 3.69818791, 3.69818791, 3.69818791,
3.79299239, 3.79299239, 3.79299239, 3.79299239, 2.70622572,
2.70622572, 2.70622572, 2.70622572, 1.23074962, 1.23074962,
1.23074962, 1.23074962, 1.01357481, 1.01357481, 1.01357481,
1.01357481, 1.00013936, 1.00013936, 1.00013936, 1.00013936,
1.00000003, 1.00000003, 1.00000003, 1.00000003, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([6.27176089e-04, 6.27176089e-04, 6.27176089e-04, 6.27176089e-04,
2.09197510e-03, 2.09197510e-03, 2.09197510e-03, 2.09197510e-03,
5.63246589e-03, 5.63246589e-03, 5.63246589e-03, 5.63246589e-03,
1.44413910e-02, 1.44413910e-02, 1.44413910e-02, 1.44413910e-02,
3.47398084e-02, 3.47398084e-02, 3.47398084e-02, 3.47398084e-02,
7.82416435e-02, 7.82416435e-02, 7.82416435e-02, 7.82416435e-02,
1.64502448e-01, 1.64502448e-01, 1.64502448e-01, 1.64502448e-01,
3.22153674e-01, 3.22153674e-01, 3.22153674e-01, 3.22153674e-01,
5.87013093e-01, 5.87013093e-01, 5.87013093e-01, 5.87013093e-01,
9.95867432e-01, 9.95867432e-01, 9.95867432e-01, 9.95867432e-01,
1.57717960e+00, 1.57717960e+00, 1.57717960e+00, 1.57717960e+00,
2.34277075e+00, 2.34277075e+00, 2.34277075e+00, 2.34277075e+00,
3.28498965e+00, 3.28498965e+00, 3.28498965e+00, 3.28498965e+00,
4.38103253e+00, 4.38103253e+00, 4.38103253e+00, 4.38103253e+00,
5.60227400e+00, 5.60227400e+00, 5.60227400e+00, 5.60227400e+00,
6.92499000e+00, 6.92499000e+00, 6.92499000e+00, 6.92499000e+00,
8.30862980e+00, 8.30862980e+00, 8.30862980e+00, 8.30862980e+00,
9.70342488e+00, 9.70342488e+00, 9.70342488e+00, 9.70342488e+00,
1.10947376e+01, 1.10947376e+01, 1.10947376e+01, 1.10947376e+01,
1.24759421e+01, 1.24759421e+01, 1.24759421e+01, 1.24759421e+01,
1.38409096e+01, 1.38409096e+01, 1.38409096e+01, 1.38409096e+01,
1.51771753e+01, 1.51771753e+01, 1.51771753e+01, 1.51771753e+01,
1.64580614e+01, 1.64580614e+01, 1.64580614e+01, 1.64580614e+01,
1.76410460e+01, 1.76410460e+01, 1.76410460e+01, 1.76410460e+01,
1.86577470e+01, 1.86577470e+01, 1.86577470e+01, 1.86577470e+01,
1.94346504e+01, 1.94346504e+01, 1.94346504e+01, 1.94346504e+01,
1.99206783e+01, 1.99206783e+01, 1.99206783e+01, 1.99206783e+01,
2.01373825e+01, 2.01373825e+01, 2.01373825e+01, 2.01373825e+01,
2.01827557e+01, 2.01827557e+01, 2.01827557e+01, 2.01827557e+01,
2.01362430e+01, 2.01362430e+01, 2.01362430e+01, 2.01362430e+01,
2.00527163e+01, 2.00527163e+01, 2.00527163e+01, 2.00527163e+01,
2.00220889e+01, 2.00220889e+01, 2.00220889e+01, 2.00220889e+01,
2.00113415e+01, 2.00113415e+01, 2.00113415e+01, 2.00113415e+01,
2.00032017e+01, 2.00032017e+01, 2.00032017e+01, 2.00032017e+01,
1.99928716e+01, 1.99928716e+01, 1.99928716e+01, 1.99928716e+01,
1.99752195e+01, 1.99752195e+01, 1.99752195e+01, 1.99752195e+01,
1.99510048e+01, 1.99510048e+01, 1.99510048e+01, 1.99510048e+01,
1.99278369e+01, 1.99278369e+01, 1.99278369e+01, 1.99278369e+01,
1.99060511e+01, 1.99060511e+01, 1.99060511e+01, 1.99060511e+01,
1.98834898e+01, 1.98834898e+01, 1.98834898e+01, 1.98834898e+01,
1.98602307e+01, 1.98602307e+01, 1.98602307e+01, 1.98602307e+01,
1.98460230e+01, 1.98460230e+01, 1.98460230e+01, 1.98460230e+01,
1.98231060e+01, 1.98231060e+01, 1.98231060e+01, 1.98231060e+01,
1.97344284e+01, 1.97344284e+01, 1.97344284e+01, 1.97344284e+01,
1.93234157e+01, 1.93234157e+01, 1.93234157e+01, 1.93234157e+01,
1.75098690e+01, 1.75098690e+01, 1.75098690e+01, 1.75098690e+01,
1.13120733e+01, 1.13120733e+01, 1.13120733e+01, 1.13120733e+01,
1.72019020e+00, 1.72019020e+00, 1.72019020e+00, 1.72019020e+00,
2.39627567e-02, 2.39627567e-02, 2.39627567e-02, 2.39627567e-02,
2.10492230e-05, 2.10492230e-05, 2.10492230e-05, 2.10492230e-05,
3.37580296e-09, 3.37580296e-09, 3.37580296e-09, 3.37580296e-09,
5.24794943e-13, 5.24794943e-13, 5.24794943e-13, 5.24794943e-13,
8.00869120e-17, 8.00869120e-17, 8.00869120e-17, 8.00869120e-17,
1.80543624e-20, 1.80543624e-20, 1.80543624e-20, 1.80543624e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99976534e+02, 9.99976534e+02, 9.99976534e+02, 9.99976534e+02,
9.99921728e+02, 9.99921728e+02, 9.99921728e+02, 9.99921728e+02,
9.99789273e+02, 9.99789273e+02, 9.99789273e+02, 9.99789273e+02,
9.99459788e+02, 9.99459788e+02, 9.99459788e+02, 9.99459788e+02,
9.98700933e+02, 9.98700933e+02, 9.98700933e+02, 9.98700933e+02,
9.97076380e+02, 9.97076380e+02, 9.97076380e+02, 9.97076380e+02,
9.93862050e+02, 9.93862050e+02, 9.93862050e+02, 9.93862050e+02,
9.88011449e+02, 9.88011449e+02, 9.88011449e+02, 9.88011449e+02,
9.78251147e+02, 9.78251147e+02, 9.78251147e+02, 9.78251147e+02,
9.63351703e+02, 9.63351703e+02, 9.63351703e+02, 9.63351703e+02,
9.42510461e+02, 9.42510461e+02, 9.42510461e+02, 9.42510461e+02,
9.15662316e+02, 9.15662316e+02, 9.15662316e+02, 9.15662316e+02,
8.83529955e+02, 8.83529955e+02, 8.83529955e+02, 8.83529955e+02,
8.47375347e+02, 8.47375347e+02, 8.47375347e+02, 8.47375347e+02,
8.08589521e+02, 8.08589521e+02, 8.08589521e+02, 8.08589521e+02,
7.68302840e+02, 7.68302840e+02, 7.68302840e+02, 7.68302840e+02,
7.27777466e+02, 7.27777466e+02, 7.27777466e+02, 7.27777466e+02,
6.88776134e+02, 6.88776134e+02, 6.88776134e+02, 6.88776134e+02,
6.51822493e+02, 6.51822493e+02, 6.51822493e+02, 6.51822493e+02,
6.16850793e+02, 6.16850793e+02, 6.16850793e+02, 6.16850793e+02,
5.83873049e+02, 5.83873049e+02, 5.83873049e+02, 5.83873049e+02,
5.53077621e+02, 5.53077621e+02, 5.53077621e+02, 5.53077621e+02,
5.24847307e+02, 5.24847307e+02, 5.24847307e+02, 5.24847307e+02,
4.99936052e+02, 4.99936052e+02, 4.99936052e+02, 4.99936052e+02,
4.79307983e+02, 4.79307983e+02, 4.79307983e+02, 4.79307983e+02,
4.64037017e+02, 4.64037017e+02, 4.64037017e+02, 4.64037017e+02,
4.54717049e+02, 4.54717049e+02, 4.54717049e+02, 4.54717049e+02,
4.50630729e+02, 4.50630729e+02, 4.50630729e+02, 4.50630729e+02,
4.49766128e+02, 4.49766128e+02, 4.49766128e+02, 4.49766128e+02,
4.50635760e+02, 4.50635760e+02, 4.50635760e+02, 4.50635760e+02,
4.52192339e+02, 4.52192339e+02, 4.52192339e+02, 4.52192339e+02,
4.52791836e+02, 4.52791836e+02, 4.52791836e+02, 4.52791836e+02,
4.53026052e+02, 4.53026052e+02, 4.53026052e+02, 4.53026052e+02,
4.53174609e+02, 4.53174609e+02, 4.53174609e+02, 4.53174609e+02,
4.53352116e+02, 4.53352116e+02, 4.53352116e+02, 4.53352116e+02,
4.53668407e+02, 4.53668407e+02, 4.53668407e+02, 4.53668407e+02,
4.54129426e+02, 4.54129426e+02, 4.54129426e+02, 4.54129426e+02,
4.54606825e+02, 4.54606825e+02, 4.54606825e+02, 4.54606825e+02,
4.55071542e+02, 4.55071542e+02, 4.55071542e+02, 4.55071542e+02,
4.55519242e+02, 4.55519242e+02, 4.55519242e+02, 4.55519242e+02,
4.55942322e+02, 4.55942322e+02, 4.55942322e+02, 4.55942322e+02,
4.56555572e+02, 4.56555572e+02, 4.56555572e+02, 4.56555572e+02,
4.57153744e+02, 4.57153744e+02, 4.57153744e+02, 4.57153744e+02,
4.55012364e+02, 4.55012364e+02, 4.55012364e+02, 4.55012364e+02,
4.36291749e+02, 4.36291749e+02, 4.36291749e+02, 4.36291749e+02,
3.50253071e+02, 3.50253071e+02, 3.50253071e+02, 3.50253071e+02,
1.37331684e+02, 1.37331684e+02, 1.37331684e+02, 1.37331684e+02,
7.81961782e+00, 7.81961782e+00, 7.81961782e+00, 7.81961782e+00,
3.15710255e-02, 3.15710255e-02, 3.15710255e-02, 3.15710255e-02,
1.00025204e-02, 1.00025204e-02, 1.00025204e-02, 1.00025204e-02,
1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99996035, 0.99996035, 0.99996035, 0.99996035, 0.99987476,
0.99987476, 0.99987476, 0.99987476, 0.99968276, 0.99968276,
0.99968276, 0.99968276, 0.99923411, 0.99923411, 0.99923411,
0.99923411, 0.99826762, 0.99826762, 0.99826762, 0.99826762,
0.99633541, 0.99633541, 0.99633541, 0.99633541, 0.99277013,
0.99277013, 0.99277013, 0.99277013, 0.98671964, 0.98671964,
0.98671964, 0.98671964, 0.977293 , 0.977293 , 0.977293 ,
0.977293 , 0.96379833, 0.96379833, 0.96379833, 0.96379833,
0.94597383, 0.94597383, 0.94597383, 0.94597383, 0.9240842 ,
0.9240842 , 0.9240842 , 0.9240842 , 0.89882269, 0.89882269,
0.89882269, 0.89882269, 0.87107325, 0.87107325, 0.87107325,
0.87107325, 0.84163799, 0.84163799, 0.84163799, 0.84163799,
0.81121158, 0.81121158, 0.81121158, 0.81121158, 0.7809964 ,
0.7809964 , 0.7809964 , 0.7809964 , 0.75175867, 0.75175867,
0.75175867, 0.75175867, 0.72358262, 0.72358262, 0.72358262,
0.72358262, 0.69646996, 0.69646996, 0.69646996, 0.69646996,
0.67055951, 0.67055951, 0.67055951, 0.67055951, 0.64587767,
0.64587767, 0.64587767, 0.64587767, 0.62371507, 0.62371507,
0.62371507, 0.62371507, 0.60245905, 0.60245905, 0.60245905,
0.60245905, 0.58804181, 0.58804181, 0.58804181, 0.58804181,
0.57415787, 0.57415787, 0.57415787, 0.57415787, 0.56801698,
0.56801698, 0.56801698, 0.56801698, 0.56600286, 0.56600286,
0.56600286, 0.56600286, 0.56486913, 0.56486913, 0.56486913,
0.56486913, 0.56568532, 0.56568532, 0.56568532, 0.56568532,
0.56697037, 0.56697037, 0.56697037, 0.56697037, 0.567595 ,
0.567595 , 0.567595 , 0.567595 , 0.56755691, 0.56755691,
0.56755691, 0.56755691, 0.56742984, 0.56742984, 0.56742984,
0.56742984, 0.56748199, 0.56748199, 0.56748199, 0.56748199,
0.56775104, 0.56775104, 0.56775104, 0.56775104, 0.56831532,
0.56831532, 0.56831532, 0.56831532, 0.57016477, 0.57016477,
0.57016477, 0.57016477, 0.57848067, 0.57848067, 0.57848067,
0.57848067, 0.60993862, 0.60993862, 0.60993862, 0.60993862,
0.70608446, 0.70608446, 0.70608446, 0.70608446, 0.94942581,
0.94942581, 0.94942581, 0.94942581, 1.46794713, 1.46794713,
1.46794713, 1.46794713, 2.399093 , 2.399093 , 2.399093 ,
2.399093 , 3.49161502, 3.49161502, 3.49161502, 3.49161502,
3.88909392, 3.88909392, 3.88909392, 3.88909392, 3.45166183,
3.45166183, 3.45166183, 3.45166183, 1.72693552, 1.72693552,
1.72693552, 1.72693552, 1.05571813, 1.05571813, 1.05571813,
1.05571813, 1.00183475, 1.00183475, 1.00183475, 1.00183475,
1.00000159, 1.00000159, 1.00000159, 1.00000159, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.48343235e-03, 1.48343235e-03, 1.48343235e-03, 1.48343235e-03,
4.68625754e-03, 4.68625754e-03, 4.68625754e-03, 4.68625754e-03,
1.18714812e-02, 1.18714812e-02, 1.18714812e-02, 1.18714812e-02,
2.86653854e-02, 2.86653854e-02, 2.86653854e-02, 2.86653854e-02,
6.48624680e-02, 6.48624680e-02, 6.48624680e-02, 6.48624680e-02,
1.37311383e-01, 1.37311383e-01, 1.37311383e-01, 1.37311383e-01,
2.71286993e-01, 2.71286993e-01, 2.71286993e-01, 2.71286993e-01,
4.99544165e-01, 4.99544165e-01, 4.99544165e-01, 4.99544165e-01,
8.57450278e-01, 8.57450278e-01, 8.57450278e-01, 8.57450278e-01,
1.37475596e+00, 1.37475596e+00, 1.37475596e+00, 1.37475596e+00,
2.06719154e+00, 2.06719154e+00, 2.06719154e+00, 2.06719154e+00,
2.93221227e+00, 2.93221227e+00, 2.93221227e+00, 2.93221227e+00,
3.95128996e+00, 3.95128996e+00, 3.95128996e+00, 3.95128996e+00,
5.09756199e+00, 5.09756199e+00, 5.09756199e+00, 5.09756199e+00,
6.34579257e+00, 6.34579257e+00, 6.34579257e+00, 6.34579257e+00,
7.67146094e+00, 7.67146094e+00, 7.67146094e+00, 7.67146094e+00,
9.01982632e+00, 9.01982632e+00, 9.01982632e+00, 9.01982632e+00,
1.03717565e+01, 1.03717565e+01, 1.03717565e+01, 1.03717565e+01,
1.17165199e+01, 1.17165199e+01, 1.17165199e+01, 1.17165199e+01,
1.30503359e+01, 1.30503359e+01, 1.30503359e+01, 1.30503359e+01,
1.43659229e+01, 1.43659229e+01, 1.43659229e+01, 1.43659229e+01,
1.56482456e+01, 1.56482456e+01, 1.56482456e+01, 1.56482456e+01,
1.68667491e+01, 1.68667491e+01, 1.68667491e+01, 1.68667491e+01,
1.79752388e+01, 1.79752388e+01, 1.79752388e+01, 1.79752388e+01,
1.89049267e+01, 1.89049267e+01, 1.89049267e+01, 1.89049267e+01,
1.95880409e+01, 1.95880409e+01, 1.95880409e+01, 1.95880409e+01,
1.99895045e+01, 1.99895045e+01, 1.99895045e+01, 1.99895045e+01,
2.01509131e+01, 2.01509131e+01, 2.01509131e+01, 2.01509131e+01,
2.01756935e+01, 2.01756935e+01, 2.01756935e+01, 2.01756935e+01,
2.01136639e+01, 2.01136639e+01, 2.01136639e+01, 2.01136639e+01,
2.00436849e+01, 2.00436849e+01, 2.00436849e+01, 2.00436849e+01,
2.00184695e+01, 2.00184695e+01, 2.00184695e+01, 2.00184695e+01,
2.00087073e+01, 2.00087073e+01, 2.00087073e+01, 2.00087073e+01,
2.00007501e+01, 2.00007501e+01, 2.00007501e+01, 2.00007501e+01,
1.99896154e+01, 1.99896154e+01, 1.99896154e+01, 1.99896154e+01,
1.99701656e+01, 1.99701656e+01, 1.99701656e+01, 1.99701656e+01,
1.99446240e+01, 1.99446240e+01, 1.99446240e+01, 1.99446240e+01,
1.99208683e+01, 1.99208683e+01, 1.99208683e+01, 1.99208683e+01,
1.98989526e+01, 1.98989526e+01, 1.98989526e+01, 1.98989526e+01,
1.98779645e+01, 1.98779645e+01, 1.98779645e+01, 1.98779645e+01,
1.98568827e+01, 1.98568827e+01, 1.98568827e+01, 1.98568827e+01,
1.98394425e+01, 1.98394425e+01, 1.98394425e+01, 1.98394425e+01,
1.98253039e+01, 1.98253039e+01, 1.98253039e+01, 1.98253039e+01,
1.97798791e+01, 1.97798791e+01, 1.97798791e+01, 1.97798791e+01,
1.95773152e+01, 1.95773152e+01, 1.95773152e+01, 1.95773152e+01,
1.86462995e+01, 1.86462995e+01, 1.86462995e+01, 1.86462995e+01,
1.49605093e+01, 1.49605093e+01, 1.49605093e+01, 1.49605093e+01,
5.66403104e+00, 5.66403104e+00, 5.66403104e+00, 5.66403104e+00,
2.39671368e-01, 2.39671368e-01, 2.39671368e-01, 2.39671368e-01,
8.33807575e-04, 8.33807575e-04, 8.33807575e-04, 8.33807575e-04,
1.88954541e-07, 1.88954541e-07, 1.88954541e-07, 1.88954541e-07,
2.94104736e-11, 2.94104736e-11, 2.94104736e-11, 2.94104736e-11,
4.70101359e-15, 4.70101359e-15, 4.70101359e-15, 4.70101359e-15,
7.41275834e-19, 7.41275834e-19, 7.41275834e-19, 7.41275834e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99944497e+02, 9.99944497e+02, 9.99944497e+02, 9.99944497e+02,
9.99824671e+02, 9.99824671e+02, 9.99824671e+02, 9.99824671e+02,
9.99555901e+02, 9.99555901e+02, 9.99555901e+02, 9.99555901e+02,
9.98927969e+02, 9.98927969e+02, 9.98927969e+02, 9.98927969e+02,
9.97575760e+02, 9.97575760e+02, 9.97575760e+02, 9.97575760e+02,
9.94874250e+02, 9.94874250e+02, 9.94874250e+02, 9.94874250e+02,
9.89895755e+02, 9.89895755e+02, 9.89895755e+02, 9.89895755e+02,
9.81464823e+02, 9.81464823e+02, 9.81464823e+02, 9.81464823e+02,
9.68372978e+02, 9.68372978e+02, 9.68372978e+02, 9.68372978e+02,
9.49721618e+02, 9.49721618e+02, 9.49721618e+02, 9.49721618e+02,
9.25246848e+02, 9.25246848e+02, 9.25246848e+02, 9.25246848e+02,
8.95440766e+02, 8.95440766e+02, 8.95440766e+02, 8.95440766e+02,
8.61389674e+02, 8.61389674e+02, 8.61389674e+02, 8.61389674e+02,
8.24419634e+02, 8.24419634e+02, 8.24419634e+02, 8.24419634e+02,
7.85711897e+02, 7.85711897e+02, 7.85711897e+02, 7.85711897e+02,
7.46248517e+02, 7.46248517e+02, 7.46248517e+02, 7.46248517e+02,
7.07596025e+02, 7.07596025e+02, 7.07596025e+02, 7.07596025e+02,
6.70801074e+02, 6.70801074e+02, 6.70801074e+02, 6.70801074e+02,
6.35877624e+02, 6.35877624e+02, 6.35877624e+02, 6.35877624e+02,
6.02787079e+02, 6.02787079e+02, 6.02787079e+02, 6.02787079e+02,
5.71599803e+02, 5.71599803e+02, 5.71599803e+02, 5.71599803e+02,
5.42561321e+02, 5.42561321e+02, 5.42561321e+02, 5.42561321e+02,
5.16114337e+02, 5.16114337e+02, 5.16114337e+02, 5.16114337e+02,
4.93068680e+02, 4.93068680e+02, 4.93068680e+02, 4.93068680e+02,
4.74411379e+02, 4.74411379e+02, 4.74411379e+02, 4.74411379e+02,
4.61084454e+02, 4.61084454e+02, 4.61084454e+02, 4.61084454e+02,
4.53401496e+02, 4.53401496e+02, 4.53401496e+02, 4.53401496e+02,
4.50361189e+02, 4.50361189e+02, 4.50361189e+02, 4.50361189e+02,
4.49900506e+02, 4.49900506e+02, 4.49900506e+02, 4.49900506e+02,
4.51070680e+02, 4.51070680e+02, 4.51070680e+02, 4.51070680e+02,
4.52380461e+02, 4.52380461e+02, 4.52380461e+02, 4.52380461e+02,
4.52845112e+02, 4.52845112e+02, 4.52845112e+02, 4.52845112e+02,
4.53055158e+02, 4.53055158e+02, 4.53055158e+02, 4.53055158e+02,
4.53218903e+02, 4.53218903e+02, 4.53218903e+02, 4.53218903e+02,
4.53431056e+02, 4.53431056e+02, 4.53431056e+02, 4.53431056e+02,
4.53786396e+02, 4.53786396e+02, 4.53786396e+02, 4.53786396e+02,
4.54248310e+02, 4.54248310e+02, 4.54248310e+02, 4.54248310e+02,
4.54702361e+02, 4.54702361e+02, 4.54702361e+02, 4.54702361e+02,
4.55162009e+02, 4.55162009e+02, 4.55162009e+02, 4.55162009e+02,
4.55624655e+02, 4.55624655e+02, 4.55624655e+02, 4.55624655e+02,
4.56025036e+02, 4.56025036e+02, 4.56025036e+02, 4.56025036e+02,
4.56514938e+02, 4.56514938e+02, 4.56514938e+02, 4.56514938e+02,
4.57215307e+02, 4.57215307e+02, 4.57215307e+02, 4.57215307e+02,
4.56862932e+02, 4.56862932e+02, 4.56862932e+02, 4.56862932e+02,
4.48795942e+02, 4.48795942e+02, 4.48795942e+02, 4.48795942e+02,
4.03414163e+02, 4.03414163e+02, 4.03414163e+02, 4.03414163e+02,
2.46087022e+02, 2.46087022e+02, 2.46087022e+02, 2.46087022e+02,
4.07741358e+01, 4.07741358e+01, 4.07741358e+01, 4.07741358e+01,
5.40974800e-01, 5.40974800e-01, 5.40974800e-01, 5.40974800e-01,
1.02032471e-02, 1.02032471e-02, 1.02032471e-02, 1.02032471e-02,
1.00000224e-02, 1.00000224e-02, 1.00000224e-02, 1.00000224e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99991158, 0.99991158, 0.99991158, 0.99991158, 0.99973526,
0.99973526, 0.99973526, 0.99973526, 0.99936862, 0.99936862,
0.99936862, 0.99936862, 0.9985633 , 0.9985633 , 0.9985633 ,
0.9985633 , 0.99694101, 0.99694101, 0.99694101, 0.99694101,
0.99391234, 0.99391234, 0.99391234, 0.99391234, 0.9887 ,
0.9887 , 0.9887 , 0.9887 , 0.98044802, 0.98044802,
0.98044802, 0.98044802, 0.968429 , 0.968429 , 0.968429 ,
0.968429 , 0.95227242, 0.95227242, 0.95227242, 0.95227242,
0.93209641, 0.93209641, 0.93209641, 0.93209641, 0.90846461,
0.90846461, 0.90846461, 0.90846461, 0.88219172, 0.88219172,
0.88219172, 0.88219172, 0.8540954 , 0.8540954 , 0.8540954 ,
0.8540954 , 0.82480124, 0.82480124, 0.82480124, 0.82480124,
0.7952339 , 0.7952339 , 0.7952339 , 0.7952339 , 0.7663955 ,
0.7663955 , 0.7663955 , 0.7663955 , 0.73852584, 0.73852584,
0.73852584, 0.73852584, 0.71164018, 0.71164018, 0.71164018,
0.71164018, 0.6857697 , 0.6857697 , 0.6857697 , 0.6857697 ,
0.66111252, 0.66111252, 0.66111252, 0.66111252, 0.63763059,
0.63763059, 0.63763059, 0.63763059, 0.6169687 , 0.6169687 ,
0.6169687 , 0.6169687 , 0.59702916, 0.59702916, 0.59702916,
0.59702916, 0.58420196, 0.58420196, 0.58420196, 0.58420196,
0.57229985, 0.57229985, 0.57229985, 0.57229985, 0.56689435,
0.56689435, 0.56689435, 0.56689435, 0.56582645, 0.56582645,
0.56582645, 0.56582645, 0.56516822, 0.56516822, 0.56516822,
0.56516822, 0.56616647, 0.56616647, 0.56616647, 0.56616647,
0.56702185, 0.56702185, 0.56702185, 0.56702185, 0.56762457,
0.56762457, 0.56762457, 0.56762457, 0.56765827, 0.56765827,
0.56765827, 0.56765827, 0.56756729, 0.56756729, 0.56756729,
0.56756729, 0.56761051, 0.56761051, 0.56761051, 0.56761051,
0.56786939, 0.56786939, 0.56786939, 0.56786939, 0.56835266,
0.56835266, 0.56835266, 0.56835266, 0.5696172 , 0.5696172 ,
0.5696172 , 0.5696172 , 0.57503406, 0.57503406, 0.57503406,
0.57503406, 0.59623637, 0.59623637, 0.59623637, 0.59623637,
0.66403011, 0.66403011, 0.66403011, 0.66403011, 0.84354865,
0.84354865, 0.84354865, 0.84354865, 1.24434905, 1.24434905,
1.24434905, 1.24434905, 2.00424343, 2.00424343, 2.00424343,
2.00424343, 3.13960403, 3.13960403, 3.13960403, 3.13960403,
3.85414213, 3.85414213, 3.85414213, 3.85414213, 3.84786708,
3.84786708, 3.84786708, 3.84786708, 2.5771983 , 2.5771983 ,
2.5771983 , 2.5771983 , 1.18896322, 1.18896322, 1.18896322,
1.18896322, 1.01065342, 1.01065342, 1.01065342, 1.01065342,
1.00008186, 1.00008186, 1.00008186, 1.00008186, 1.00000002,
1.00000002, 1.00000002, 1.00000002, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.30857813e-03, 3.30857813e-03, 3.30857813e-03, 3.30857813e-03,
9.90650995e-03, 9.90650995e-03, 9.90650995e-03, 9.90650995e-03,
2.36295980e-02, 2.36295980e-02, 2.36295980e-02, 2.36295980e-02,
5.37860149e-02, 5.37860149e-02, 5.37860149e-02, 5.37860149e-02,
1.14592327e-01, 1.14592327e-01, 1.14592327e-01, 1.14592327e-01,
2.28324216e-01, 2.28324216e-01, 2.28324216e-01, 2.28324216e-01,
4.24711771e-01, 4.24711771e-01, 4.24711771e-01, 4.24711771e-01,
7.37353653e-01, 7.37353653e-01, 7.37353653e-01, 7.37353653e-01,
1.19658658e+00, 1.19658658e+00, 1.19658658e+00, 1.19658658e+00,
1.82130732e+00, 1.82130732e+00, 1.82130732e+00, 1.82130732e+00,
2.61367668e+00, 2.61367668e+00, 2.61367668e+00, 2.61367668e+00,
3.55960001e+00, 3.55960001e+00, 3.55960001e+00, 3.55960001e+00,
4.63473086e+00, 4.63473086e+00, 4.63473086e+00, 4.63473086e+00,
5.81317888e+00, 5.81317888e+00, 5.81317888e+00, 5.81317888e+00,
7.07525107e+00, 7.07525107e+00, 7.07525107e+00, 7.07525107e+00,
8.37802334e+00, 8.37802334e+00, 8.37802334e+00, 8.37802334e+00,
9.69020641e+00, 9.69020641e+00, 9.69020641e+00, 9.69020641e+00,
1.09986461e+01, 1.09986461e+01, 1.09986461e+01, 1.09986461e+01,
1.22993392e+01, 1.22993392e+01, 1.22993392e+01, 1.22993392e+01,
1.35884048e+01, 1.35884048e+01, 1.35884048e+01, 1.35884048e+01,
1.48563893e+01, 1.48563893e+01, 1.48563893e+01, 1.48563893e+01,
1.60857753e+01, 1.60857753e+01, 1.60857753e+01, 1.60857753e+01,
1.72423634e+01, 1.72423634e+01, 1.72423634e+01, 1.72423634e+01,
1.82765856e+01, 1.82765856e+01, 1.82765856e+01, 1.82765856e+01,
1.91204857e+01, 1.91204857e+01, 1.91204857e+01, 1.91204857e+01,
1.97147730e+01, 1.97147730e+01, 1.97147730e+01, 1.97147730e+01,
2.00413906e+01, 2.00413906e+01, 2.00413906e+01, 2.00413906e+01,
2.01574495e+01, 2.01574495e+01, 2.01574495e+01, 2.01574495e+01,
2.01659188e+01, 2.01659188e+01, 2.01659188e+01, 2.01659188e+01,
2.00925092e+01, 2.00925092e+01, 2.00925092e+01, 2.00925092e+01,
2.00365890e+01, 2.00365890e+01, 2.00365890e+01, 2.00365890e+01,
2.00158066e+01, 2.00158066e+01, 2.00158066e+01, 2.00158066e+01,
2.00060951e+01, 2.00060951e+01, 2.00060951e+01, 2.00060951e+01,
1.99977273e+01, 1.99977273e+01, 1.99977273e+01, 1.99977273e+01,
1.99853901e+01, 1.99853901e+01, 1.99853901e+01, 1.99853901e+01,
1.99645055e+01, 1.99645055e+01, 1.99645055e+01, 1.99645055e+01,
1.99389693e+01, 1.99389693e+01, 1.99389693e+01, 1.99389693e+01,
1.99147513e+01, 1.99147513e+01, 1.99147513e+01, 1.99147513e+01,
1.98919906e+01, 1.98919906e+01, 1.98919906e+01, 1.98919906e+01,
1.98717727e+01, 1.98717727e+01, 1.98717727e+01, 1.98717727e+01,
1.98525425e+01, 1.98525425e+01, 1.98525425e+01, 1.98525425e+01,
1.98340626e+01, 1.98340626e+01, 1.98340626e+01, 1.98340626e+01,
1.98228656e+01, 1.98228656e+01, 1.98228656e+01, 1.98228656e+01,
1.97973138e+01, 1.97973138e+01, 1.97973138e+01, 1.97973138e+01,
1.96970829e+01, 1.96970829e+01, 1.96970829e+01, 1.96970829e+01,
1.92311319e+01, 1.92311319e+01, 1.92311319e+01, 1.92311319e+01,
1.72194921e+01, 1.72194921e+01, 1.72194921e+01, 1.72194921e+01,
1.05940203e+01, 1.05940203e+01, 1.05940203e+01, 1.05940203e+01,
1.33734950e+00, 1.33734950e+00, 1.33734950e+00, 1.33734950e+00,
1.58314232e-02, 1.58314232e-02, 1.58314232e-02, 1.58314232e-02,
1.13008501e-05, 1.13008501e-05, 1.13008501e-05, 1.13008501e-05,
1.78142403e-09, 1.78142403e-09, 1.78142403e-09, 1.78142403e-09,
2.75475972e-13, 2.75475972e-13, 2.75475972e-13, 2.75475972e-13,
4.22869040e-17, 4.22869040e-17, 4.22869040e-17, 4.22869040e-17,
4.15971299e-21, 4.15971299e-21, 4.15971299e-21, 4.15971299e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99876214e+02, 9.99876214e+02, 9.99876214e+02, 9.99876214e+02,
9.99629396e+02, 9.99629396e+02, 9.99629396e+02, 9.99629396e+02,
9.99116221e+02, 9.99116221e+02, 9.99116221e+02, 9.99116221e+02,
9.97989363e+02, 9.97989363e+02, 9.97989363e+02, 9.97989363e+02,
9.95720692e+02, 9.95720692e+02, 9.95720692e+02, 9.95720692e+02,
9.91489781e+02, 9.91489781e+02, 9.91489781e+02, 9.91489781e+02,
9.84221698e+02, 9.84221698e+02, 9.84221698e+02, 9.84221698e+02,
9.72748451e+02, 9.72748451e+02, 9.72748451e+02, 9.72748451e+02,
9.56108956e+02, 9.56108956e+02, 9.56108956e+02, 9.56108956e+02,
9.33872727e+02, 9.33872727e+02, 9.33872727e+02, 9.33872727e+02,
9.06315492e+02, 9.06315492e+02, 9.06315492e+02, 9.06315492e+02,
8.74337896e+02, 8.74337896e+02, 8.74337896e+02, 8.74337896e+02,
8.39171349e+02, 8.39171349e+02, 8.39171349e+02, 8.39171349e+02,
8.02021280e+02, 8.02021280e+02, 8.02021280e+02, 8.02021280e+02,
7.63802020e+02, 7.63802020e+02, 7.63802020e+02, 7.63802020e+02,
7.25718152e+02, 7.25718152e+02, 7.25718152e+02, 7.25718152e+02,
6.89144129e+02, 6.89144129e+02, 6.89144129e+02, 6.89144129e+02,
6.54324851e+02, 6.54324851e+02, 6.54324851e+02, 6.54324851e+02,
6.21229262e+02, 6.21229262e+02, 6.21229262e+02, 6.21229262e+02,
5.89863923e+02, 5.89863923e+02, 5.89863923e+02, 5.89863923e+02,
5.60333915e+02, 5.60333915e+02, 5.60333915e+02, 5.60333915e+02,
5.32945780e+02, 5.32945780e+02, 5.32945780e+02, 5.32945780e+02,
5.08201682e+02, 5.08201682e+02, 5.08201682e+02, 5.08201682e+02,
4.86948766e+02, 4.86948766e+02, 4.86948766e+02, 4.86948766e+02,
4.70169922e+02, 4.70169922e+02, 4.70169922e+02, 4.70169922e+02,
4.58655322e+02, 4.58655322e+02, 4.58655322e+02, 4.58655322e+02,
4.52421155e+02, 4.52421155e+02, 4.52421155e+02, 4.52421155e+02,
4.50227207e+02, 4.50227207e+02, 4.50227207e+02, 4.50227207e+02,
4.50078663e+02, 4.50078663e+02, 4.50078663e+02, 4.50078663e+02,
4.51471203e+02, 4.51471203e+02, 4.51471203e+02, 4.51471203e+02,
4.52529169e+02, 4.52529169e+02, 4.52529169e+02, 4.52529169e+02,
4.52901471e+02, 4.52901471e+02, 4.52901471e+02, 4.52901471e+02,
4.53088208e+02, 4.53088208e+02, 4.53088208e+02, 4.53088208e+02,
4.53261283e+02, 4.53261283e+02, 4.53261283e+02, 4.53261283e+02,
4.53508024e+02, 4.53508024e+02, 4.53508024e+02, 4.53508024e+02,
4.53907221e+02, 4.53907221e+02, 4.53907221e+02, 4.53907221e+02,
4.54378816e+02, 4.54378816e+02, 4.54378816e+02, 4.54378816e+02,
4.54816020e+02, 4.54816020e+02, 4.54816020e+02, 4.54816020e+02,
4.55254101e+02, 4.55254101e+02, 4.55254101e+02, 4.55254101e+02,
4.55702968e+02, 4.55702968e+02, 4.55702968e+02, 4.55702968e+02,
4.56112277e+02, 4.56112277e+02, 4.56112277e+02, 4.56112277e+02,
4.56533652e+02, 4.56533652e+02, 4.56533652e+02, 4.56533652e+02,
4.57147821e+02, 4.57147821e+02, 4.57147821e+02, 4.57147821e+02,
4.57487722e+02, 4.57487722e+02, 4.57487722e+02, 4.57487722e+02,
4.54489765e+02, 4.54489765e+02, 4.54489765e+02, 4.54489765e+02,
4.32367414e+02, 4.32367414e+02, 4.32367414e+02, 4.32367414e+02,
3.36891352e+02, 3.36891352e+02, 3.36891352e+02, 3.36891352e+02,
1.20082128e+02, 1.20082128e+02, 1.20082128e+02, 1.20082128e+02,
5.54711825e+00, 5.54711825e+00, 5.54711825e+00, 5.54711825e+00,
2.19907181e-02, 2.19907181e-02, 2.19907181e-02, 2.19907181e-02,
1.00013363e-02, 1.00013363e-02, 1.00013363e-02, 1.00013363e-02,
1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99981351, 0.99981351, 0.99981351, 0.99981351, 0.99947054,
0.99947054, 0.99947054, 0.99947054, 0.9988105 , 0.9988105 ,
0.9988105 , 0.9988105 , 0.99744661, 0.99744661, 0.99744661,
0.99744661, 0.99487737, 0.99487737, 0.99487737, 0.99487737,
0.99039499, 0.99039499, 0.99039499, 0.99039499, 0.98318849,
0.98318849, 0.98318849, 0.98318849, 0.97251404, 0.97251404,
0.97251404, 0.97251404, 0.95791416, 0.95791416, 0.95791416,
0.95791416, 0.9393737 , 0.9393737 , 0.9393737 , 0.9393737 ,
0.91732519, 0.91732519, 0.91732519, 0.91732519, 0.8924994 ,
0.8924994 , 0.8924994 , 0.8924994 , 0.86569902, 0.86569902,
0.86569902, 0.86569902, 0.83758007, 0.83758007, 0.83758007,
0.83758007, 0.80880936, 0.80880936, 0.80880936, 0.80880936,
0.78041711, 0.78041711, 0.78041711, 0.78041711, 0.75287396,
0.75287396, 0.75287396, 0.75287396, 0.7262632 , 0.7262632 ,
0.7262632 , 0.7262632 , 0.70056925, 0.70056925, 0.70056925,
0.70056925, 0.67584993, 0.67584993, 0.67584993, 0.67584993,
0.65238615, 0.65238615, 0.65238615, 0.65238615, 0.63003424,
0.63003424, 0.63003424, 0.63003424, 0.61084192, 0.61084192,
0.61084192, 0.61084192, 0.59222361, 0.59222361, 0.59222361,
0.59222361, 0.58082307, 0.58082307, 0.58082307, 0.58082307,
0.57084769, 0.57084769, 0.57084769, 0.57084769, 0.56609991,
0.56609991, 0.56609991, 0.56609991, 0.56568386, 0.56568386,
0.56568386, 0.56568386, 0.56548787, 0.56548787, 0.56548787,
0.56548787, 0.56657134, 0.56657134, 0.56657134, 0.56657134,
0.56710969, 0.56710969, 0.56710969, 0.56710969, 0.56763591,
0.56763591, 0.56763591, 0.56763591, 0.56774535, 0.56774535,
0.56774535, 0.56774535, 0.56770037, 0.56770037, 0.56770037,
0.56770037, 0.56775753, 0.56775753, 0.56775753, 0.56775753,
0.568006 , 0.568006 , 0.568006 , 0.568006 , 0.56842167,
0.56842167, 0.56842167, 0.56842167, 0.56933391, 0.56933391,
0.56933391, 0.56933391, 0.57288369, 0.57288369, 0.57288369,
0.57288369, 0.58706794, 0.58706794, 0.58706794, 0.58706794,
0.6343945 , 0.6343945 , 0.6343945 , 0.6343945 , 0.76532497,
0.76532497, 0.76532497, 0.76532497, 1.0710979 , 1.0710979 ,
1.0710979 , 1.0710979 , 1.67993717, 1.67993717, 1.67993717,
1.67993717, 2.70591502, 2.70591502, 2.70591502, 2.70591502,
3.70007988, 3.70007988, 3.70007988, 3.70007988, 3.98442962,
3.98442962, 3.98442962, 3.98442962, 3.39924656, 3.39924656,
3.39924656, 3.39924656, 1.61726694, 1.61726694, 1.61726694,
1.61726694, 1.04481323, 1.04481323, 1.04481323, 1.04481323,
1.00129504, 1.00129504, 1.00129504, 1.00129504, 1.00000081,
1.00000081, 1.00000081, 1.00000081, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([6.97829163e-03, 6.97829163e-03, 6.97829163e-03, 6.97829163e-03,
1.98144360e-02, 1.98144360e-02, 1.98144360e-02, 1.98144360e-02,
4.45271720e-02, 4.45271720e-02, 4.45271720e-02, 4.45271720e-02,
9.56332947e-02, 9.56332947e-02, 9.56332947e-02, 9.56332947e-02,
1.92056185e-01, 1.92056185e-01, 1.92056185e-01, 1.92056185e-01,
3.60758718e-01, 3.60758718e-01, 3.60758718e-01, 3.60758718e-01,
6.33292020e-01, 6.33292020e-01, 6.33292020e-01, 6.33292020e-01,
1.03998760e+00, 1.03998760e+00, 1.03998760e+00, 1.03998760e+00,
1.60218999e+00, 1.60218999e+00, 1.60218999e+00, 1.60218999e+00,
2.32628483e+00, 2.32628483e+00, 2.32628483e+00, 2.32628483e+00,
3.20261012e+00, 3.20261012e+00, 3.20261012e+00, 3.20261012e+00,
4.20983812e+00, 4.20983812e+00, 4.20983812e+00, 4.20983812e+00,
5.32266284e+00, 5.32266284e+00, 5.32266284e+00, 5.32266284e+00,
6.52018139e+00, 6.52018139e+00, 6.52018139e+00, 6.52018139e+00,
7.77578750e+00, 7.77578750e+00, 7.77578750e+00, 7.77578750e+00,
9.04696669e+00, 9.04696669e+00, 9.04696669e+00, 9.04696669e+00,
1.03198134e+01, 1.03198134e+01, 1.03198134e+01, 1.03198134e+01,
1.15876099e+01, 1.15876099e+01, 1.15876099e+01, 1.15876099e+01,
1.28468639e+01, 1.28468639e+01, 1.28468639e+01, 1.28468639e+01,
1.40930929e+01, 1.40930929e+01, 1.40930929e+01, 1.40930929e+01,
1.53148719e+01, 1.53148719e+01, 1.53148719e+01, 1.53148719e+01,
1.64919282e+01, 1.64919282e+01, 1.64919282e+01, 1.64919282e+01,
1.75867321e+01, 1.75867321e+01, 1.75867321e+01, 1.75867321e+01,
1.85470262e+01, 1.85470262e+01, 1.85470262e+01, 1.85470262e+01,
1.93069541e+01, 1.93069541e+01, 1.93069541e+01, 1.93069541e+01,
1.98179609e+01, 1.98179609e+01, 1.98179609e+01, 1.98179609e+01,
2.00793284e+01, 2.00793284e+01, 2.00793284e+01, 2.00793284e+01,
2.01586176e+01, 2.01586176e+01, 2.01586176e+01, 2.01586176e+01,
2.01524831e+01, 2.01524831e+01, 2.01524831e+01, 2.01524831e+01,
2.00752058e+01, 2.00752058e+01, 2.00752058e+01, 2.00752058e+01,
2.00307498e+01, 2.00307498e+01, 2.00307498e+01, 2.00307498e+01,
2.00136099e+01, 2.00136099e+01, 2.00136099e+01, 2.00136099e+01,
2.00037603e+01, 2.00037603e+01, 2.00037603e+01, 2.00037603e+01,
1.99945192e+01, 1.99945192e+01, 1.99945192e+01, 1.99945192e+01,
1.99804496e+01, 1.99804496e+01, 1.99804496e+01, 1.99804496e+01,
1.99580977e+01, 1.99580977e+01, 1.99580977e+01, 1.99580977e+01,
1.99332124e+01, 1.99332124e+01, 1.99332124e+01, 1.99332124e+01,
1.99091877e+01, 1.99091877e+01, 1.99091877e+01, 1.99091877e+01,
1.98860108e+01, 1.98860108e+01, 1.98860108e+01, 1.98860108e+01,
1.98654280e+01, 1.98654280e+01, 1.98654280e+01, 1.98654280e+01,
1.98471370e+01, 1.98471370e+01, 1.98471370e+01, 1.98471370e+01,
1.98298574e+01, 1.98298574e+01, 1.98298574e+01, 1.98298574e+01,
1.98171370e+01, 1.98171370e+01, 1.98171370e+01, 1.98171370e+01,
1.98030159e+01, 1.98030159e+01, 1.98030159e+01, 1.98030159e+01,
1.97516465e+01, 1.97516465e+01, 1.97516465e+01, 1.97516465e+01,
1.95204012e+01, 1.95204012e+01, 1.95204012e+01, 1.95204012e+01,
1.84745602e+01, 1.84745602e+01, 1.84745602e+01, 1.84745602e+01,
1.44416174e+01, 1.44416174e+01, 1.44416174e+01, 1.44416174e+01,
4.87006574e+00, 4.87006574e+00, 4.87006574e+00, 4.87006574e+00,
1.70878215e-01, 1.70878215e-01, 1.70878215e-01, 1.70878215e-01,
4.74222438e-04, 4.74222438e-04, 4.74222438e-04, 4.74222438e-04,
9.62797091e-08, 9.62797091e-08, 9.62797091e-08, 9.62797091e-08,
1.54134491e-11, 1.54134491e-11, 1.54134491e-11, 1.54134491e-11,
2.48678570e-15, 2.48678570e-15, 2.48678570e-15, 2.48678570e-15,
3.95125006e-19, 3.95125006e-19, 3.95125006e-19, 3.95125006e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99738937e+02, 9.99738937e+02, 9.99738937e+02, 9.99738937e+02,
9.99258865e+02, 9.99258865e+02, 9.99258865e+02, 9.99258865e+02,
9.98335213e+02, 9.98335213e+02, 9.98335213e+02, 9.98335213e+02,
9.96427546e+02, 9.96427546e+02, 9.96427546e+02, 9.96427546e+02,
9.92837210e+02, 9.92837210e+02, 9.92837210e+02, 9.92837210e+02,
9.86583249e+02, 9.86583249e+02, 9.86583249e+02, 9.86583249e+02,
9.76553906e+02, 9.76553906e+02, 9.76553906e+02, 9.76553906e+02,
9.61754277e+02, 9.61754277e+02, 9.61754277e+02, 9.61754277e+02,
9.41618962e+02, 9.41618962e+02, 9.41618962e+02, 9.41618962e+02,
9.16225667e+02, 9.16225667e+02, 9.16225667e+02, 9.16225667e+02,
8.86285914e+02, 8.86285914e+02, 8.86285914e+02, 8.86285914e+02,
8.52914522e+02, 8.52914522e+02, 8.52914522e+02, 8.52914522e+02,
8.17299685e+02, 8.17299685e+02, 8.17299685e+02, 8.17299685e+02,
7.80401265e+02, 7.80401265e+02, 7.80401265e+02, 7.80401265e+02,
7.43128313e+02, 7.43128313e+02, 7.43128313e+02, 7.43128313e+02,
7.06850048e+02, 7.06850048e+02, 7.06850048e+02, 7.06850048e+02,
6.72179206e+02, 6.72179206e+02, 6.72179206e+02, 6.72179206e+02,
6.39161893e+02, 6.39161893e+02, 6.39161893e+02, 6.39161893e+02,
6.07736695e+02, 6.07736695e+02, 6.07736695e+02, 6.07736695e+02,
5.77958609e+02, 5.77958609e+02, 5.77958609e+02, 5.77958609e+02,
5.49975461e+02, 5.49975461e+02, 5.49975461e+02, 5.49975461e+02,
5.24148628e+02, 5.24148628e+02, 5.24148628e+02, 5.24148628e+02,
5.01038900e+02, 5.01038900e+02, 5.01038900e+02, 5.01038900e+02,
4.81516564e+02, 4.81516564e+02, 4.81516564e+02, 4.81516564e+02,
4.66526226e+02, 4.66526226e+02, 4.66526226e+02, 4.66526226e+02,
4.56679419e+02, 4.56679419e+02, 4.56679419e+02, 4.56679419e+02,
4.51709116e+02, 4.51709116e+02, 4.51709116e+02, 4.51709116e+02,
4.50204516e+02, 4.50204516e+02, 4.50204516e+02, 4.50204516e+02,
4.50323474e+02, 4.50323474e+02, 4.50323474e+02, 4.50323474e+02,
4.51792099e+02, 4.51792099e+02, 4.51792099e+02, 4.51792099e+02,
4.52644533e+02, 4.52644533e+02, 4.52644533e+02, 4.52644533e+02,
4.52957374e+02, 4.52957374e+02, 4.52957374e+02, 4.52957374e+02,
4.53131411e+02, 4.53131411e+02, 4.53131411e+02, 4.53131411e+02,
4.53310711e+02, 4.53310711e+02, 4.53310711e+02, 4.53310711e+02,
4.53588206e+02, 4.53588206e+02, 4.53588206e+02, 4.53588206e+02,
4.54024216e+02, 4.54024216e+02, 4.54024216e+02, 4.54024216e+02,
4.54505579e+02, 4.54505579e+02, 4.54505579e+02, 4.54505579e+02,
4.54941322e+02, 4.54941322e+02, 4.54941322e+02, 4.54941322e+02,
4.55358316e+02, 4.55358316e+02, 4.55358316e+02, 4.55358316e+02,
4.55776216e+02, 4.55776216e+02, 4.55776216e+02, 4.55776216e+02,
4.56187451e+02, 4.56187451e+02, 4.56187451e+02, 4.56187451e+02,
4.56567868e+02, 4.56567868e+02, 4.56567868e+02, 4.56567868e+02,
4.57061252e+02, 4.57061252e+02, 4.57061252e+02, 4.57061252e+02,
4.57670049e+02, 4.57670049e+02, 4.57670049e+02, 4.57670049e+02,
4.56861977e+02, 4.56861977e+02, 4.56861977e+02, 4.56861977e+02,
4.46897134e+02, 4.46897134e+02, 4.46897134e+02, 4.46897134e+02,
3.95213842e+02, 3.95213842e+02, 3.95213842e+02, 3.95213842e+02,
2.27017462e+02, 2.27017462e+02, 2.27017462e+02, 2.27017462e+02,
3.24722316e+01, 3.24722316e+01, 3.24722316e+01, 3.24722316e+01,
3.44215454e-01, 3.44215454e-01, 3.44215454e-01, 3.44215454e-01,
1.00956522e-02, 1.00956522e-02, 1.00956522e-02, 1.00956522e-02,
1.00000114e-02, 1.00000114e-02, 1.00000114e-02, 1.00000114e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99962715, 0.99962715, 0.99962715, 0.99962715, 0.9989959 ,
0.9989959 , 0.9989959 , 0.9989959 , 0.99787399, 0.99787399,
0.99787399, 0.99787399, 0.99569077, 0.99569077, 0.99569077,
0.99569077, 0.99184415, 0.99184415, 0.99184415, 0.99184415,
0.98556472, 0.98556472, 0.98556472, 0.98556472, 0.97611065,
0.97611065, 0.97611065, 0.97611065, 0.96295756, 0.96295756,
0.96295756, 0.96295756, 0.94597218, 0.94597218, 0.94597218,
0.94597218, 0.92545827, 0.92545827, 0.92545827, 0.92545827,
0.90205196, 0.90205196, 0.90205196, 0.90205196, 0.87652198,
0.87652198, 0.87652198, 0.87652198, 0.84956063, 0.84956063,
0.84956063, 0.84956063, 0.82170304, 0.82170304, 0.82170304,
0.82170304, 0.79383738, 0.79383738, 0.79383738, 0.79383738,
0.76665912, 0.76665912, 0.76665912, 0.76665912, 0.74033691,
0.74033691, 0.74033691, 0.74033691, 0.71486688, 0.71486688,
0.71486688, 0.71486688, 0.69028102, 0.69028102, 0.69028102,
0.69028102, 0.6666371 , 0.6666371 , 0.6666371 , 0.6666371 ,
0.64432028, 0.64432028, 0.64432028, 0.64432028, 0.62304012,
0.62304012, 0.62304012, 0.62304012, 0.60528142, 0.60528142,
0.60528142, 0.60528142, 0.58800675, 0.58800675, 0.58800675,
0.58800675, 0.5778694 , 0.5778694 , 0.5778694 , 0.5778694 ,
0.56972246, 0.56972246, 0.56972246, 0.56972246, 0.56560315,
0.56560315, 0.56560315, 0.56560315, 0.56553233, 0.56553233,
0.56553233, 0.56553233, 0.56584834, 0.56584834, 0.56584834,
0.56584834, 0.56690991, 0.56690991, 0.56690991, 0.56690991,
0.56721384, 0.56721384, 0.56721384, 0.56721384, 0.56762924,
0.56762924, 0.56762924, 0.56762924, 0.56782241, 0.56782241,
0.56782241, 0.56782241, 0.56782868, 0.56782868, 0.56782868,
0.56782868, 0.56791572, 0.56791572, 0.56791572, 0.56791572,
0.56816164, 0.56816164, 0.56816164, 0.56816164, 0.56851365,
0.56851365, 0.56851365, 0.56851365, 0.56920152, 0.56920152,
0.56920152, 0.56920152, 0.57156713, 0.57156713, 0.57156713,
0.57156713, 0.58101327, 0.58101327, 0.58101327, 0.58101327,
0.61373599, 0.61373599, 0.61373599, 0.61373599, 0.70822132,
0.70822132, 0.70822132, 0.70822132, 0.93867528, 0.93867528,
0.93867528, 0.93867528, 1.41891316, 1.41891316, 1.41891316,
1.41891316, 2.27525624, 2.27525624, 2.27525624, 2.27525624,
3.41072177, 3.41072177, 3.41072177, 3.41072177, 3.98667427,
3.98667427, 3.98667427, 3.98667427, 3.87982047, 3.87982047,
3.87982047, 3.87982047, 2.43231843, 2.43231843, 2.43231843,
2.43231843, 1.15615318, 1.15615318, 1.15615318, 1.15615318,
1.00824283, 1.00824283, 1.00824283, 1.00824283, 1.0000454 ,
1.0000454 , 1.0000454 , 1.0000454 , 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.39530183e-02, 1.39530183e-02, 1.39530183e-02, 1.39530183e-02,
3.75848880e-02, 3.75848880e-02, 3.75848880e-02, 3.75848880e-02,
7.96128157e-02, 7.96128157e-02, 7.96128157e-02, 7.96128157e-02,
1.61508250e-01, 1.61508250e-01, 1.61508250e-01, 1.61508250e-01,
3.06150477e-01, 3.06150477e-01, 3.06150477e-01, 3.06150477e-01,
5.43251766e-01, 5.43251766e-01, 5.43251766e-01, 5.43251766e-01,
9.02556002e-01, 9.02556002e-01, 9.02556002e-01, 9.02556002e-01,
1.40720176e+00, 1.40720176e+00, 1.40720176e+00, 1.40720176e+00,
2.06726331e+00, 2.06726331e+00, 2.06726331e+00, 2.06726331e+00,
2.87738380e+00, 2.87738380e+00, 2.87738380e+00, 2.87738380e+00,
3.81959664e+00, 3.81959664e+00, 3.81959664e+00, 3.81959664e+00,
4.86989842e+00, 4.86989842e+00, 4.86989842e+00, 4.86989842e+00,
6.00593747e+00, 6.00593747e+00, 6.00593747e+00, 6.00593747e+00,
7.20976710e+00, 7.20976710e+00, 7.20976710e+00, 7.20976710e+00,
8.44013430e+00, 8.44013430e+00, 8.44013430e+00, 8.44013430e+00,
9.67820971e+00, 9.67820971e+00, 9.67820971e+00, 9.67820971e+00,
1.09131010e+01, 1.09131010e+01, 1.09131010e+01, 1.09131010e+01,
1.21419057e+01, 1.21419057e+01, 1.21419057e+01, 1.21419057e+01,
1.33619281e+01, 1.33619281e+01, 1.33619281e+01, 1.33619281e+01,
1.45669883e+01, 1.45669883e+01, 1.45669883e+01, 1.45669883e+01,
1.57435737e+01, 1.57435737e+01, 1.57435737e+01, 1.57435737e+01,
1.68686020e+01, 1.68686020e+01, 1.68686020e+01, 1.68686020e+01,
1.79014772e+01, 1.79014772e+01, 1.79014772e+01, 1.79014772e+01,
1.87882849e+01, 1.87882849e+01, 1.87882849e+01, 1.87882849e+01,
1.94668837e+01, 1.94668837e+01, 1.94668837e+01, 1.94668837e+01,
1.99006239e+01, 1.99006239e+01, 1.99006239e+01, 1.99006239e+01,
2.01050731e+01, 2.01050731e+01, 2.01050731e+01, 2.01050731e+01,
2.01571544e+01, 2.01571544e+01, 2.01571544e+01, 2.01571544e+01,
2.01363521e+01, 2.01363521e+01, 2.01363521e+01, 2.01363521e+01,
2.00613129e+01, 2.00613129e+01, 2.00613129e+01, 2.00613129e+01,
2.00257473e+01, 2.00257473e+01, 2.00257473e+01, 2.00257473e+01,
2.00113940e+01, 2.00113940e+01, 2.00113940e+01, 2.00113940e+01,
2.00016210e+01, 2.00016210e+01, 2.00016210e+01, 2.00016210e+01,
1.99912688e+01, 1.99912688e+01, 1.99912688e+01, 1.99912688e+01,
1.99751513e+01, 1.99751513e+01, 1.99751513e+01, 1.99751513e+01,
1.99512938e+01, 1.99512938e+01, 1.99512938e+01, 1.99512938e+01,
1.99269046e+01, 1.99269046e+01, 1.99269046e+01, 1.99269046e+01,
1.99037068e+01, 1.99037068e+01, 1.99037068e+01, 1.99037068e+01,
1.98807884e+01, 1.98807884e+01, 1.98807884e+01, 1.98807884e+01,
1.98596458e+01, 1.98596458e+01, 1.98596458e+01, 1.98596458e+01,
1.98416867e+01, 1.98416867e+01, 1.98416867e+01, 1.98416867e+01,
1.98257179e+01, 1.98257179e+01, 1.98257179e+01, 1.98257179e+01,
1.98115993e+01, 1.98115993e+01, 1.98115993e+01, 1.98115993e+01,
1.98022942e+01, 1.98022942e+01, 1.98022942e+01, 1.98022942e+01,
1.97745446e+01, 1.97745446e+01, 1.97745446e+01, 1.97745446e+01,
1.96599658e+01, 1.96599658e+01, 1.96599658e+01, 1.96599658e+01,
1.91316282e+01, 1.91316282e+01, 1.91316282e+01, 1.91316282e+01,
1.68989432e+01, 1.68989432e+01, 1.68989432e+01, 1.68989432e+01,
9.82776433e+00, 9.82776433e+00, 9.82776433e+00, 9.82776433e+00,
1.03966586e+00, 1.03966586e+00, 1.03966586e+00, 1.03966586e+00,
1.02686172e-02, 1.02686172e-02, 1.02686172e-02, 1.02686172e-02,
5.87596530e-06, 5.87596530e-06, 5.87596530e-06, 5.87596530e-06,
9.09802870e-10, 9.09802870e-10, 9.09802870e-10, 9.09802870e-10,
1.40162828e-13, 1.40162828e-13, 1.40162828e-13, 1.40162828e-13,
2.18096263e-17, 2.18096263e-17, 2.18096263e-17, 2.18096263e-17,
4.14673755e-21, 4.14673755e-21, 4.14673755e-21, 4.14673755e-21,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99478084e+02, 9.99478084e+02, 9.99478084e+02, 9.99478084e+02,
9.98594612e+02, 9.98594612e+02, 9.98594612e+02, 9.98594612e+02,
9.97025182e+02, 9.97025182e+02, 9.97025182e+02, 9.97025182e+02,
9.93973403e+02, 9.93973403e+02, 9.93973403e+02, 9.93973403e+02,
9.88603735e+02, 9.88603735e+02, 9.88603735e+02, 9.88603735e+02,
9.79857278e+02, 9.79857278e+02, 9.79857278e+02, 9.79857278e+02,
9.66732858e+02, 9.66732858e+02, 9.66732858e+02, 9.66732858e+02,
9.48559568e+02, 9.48559568e+02, 9.48559568e+02, 9.48559568e+02,
9.25238470e+02, 9.25238470e+02, 9.25238470e+02, 9.25238470e+02,
8.97294073e+02, 8.97294073e+02, 8.97294073e+02, 8.97294073e+02,
8.65708163e+02, 8.65708163e+02, 8.65708163e+02, 8.65708163e+02,
8.31624879e+02, 8.31624879e+02, 8.31624879e+02, 8.31624879e+02,
7.96056352e+02, 7.96056352e+02, 7.96056352e+02, 7.96056352e+02,
7.59769847e+02, 7.59769847e+02, 7.59769847e+02, 7.59769847e+02,
7.23915193e+02, 7.23915193e+02, 7.23915193e+02, 7.23915193e+02,
6.89464378e+02, 6.89464378e+02, 6.89464378e+02, 6.89464378e+02,
6.56557931e+02, 6.56557931e+02, 6.56557931e+02, 6.56557931e+02,
6.25161940e+02, 6.25161940e+02, 6.25161940e+02, 6.25161940e+02,
5.95273088e+02, 5.95273088e+02, 5.95273088e+02, 5.95273088e+02,
5.66968750e+02, 5.66968750e+02, 5.66968750e+02, 5.66968750e+02,
5.40439673e+02, 5.40439673e+02, 5.40439673e+02, 5.40439673e+02,
5.16100425e+02, 5.16100425e+02, 5.16100425e+02, 5.16100425e+02,
4.94565963e+02, 4.94565963e+02, 4.94565963e+02, 4.94565963e+02,
4.76716435e+02, 4.76716435e+02, 4.76716435e+02, 4.76716435e+02,
4.63423824e+02, 4.63423824e+02, 4.63423824e+02, 4.63423824e+02,
4.55097958e+02, 4.55097958e+02, 4.55097958e+02, 4.55097958e+02,
4.51223672e+02, 4.51223672e+02, 4.51223672e+02, 4.51223672e+02,
4.50235886e+02, 4.50235886e+02, 4.50235886e+02, 4.50235886e+02,
4.50627214e+02, 4.50627214e+02, 4.50627214e+02, 4.50627214e+02,
4.52045781e+02, 4.52045781e+02, 4.52045781e+02, 4.52045781e+02,
4.52733619e+02, 4.52733619e+02, 4.52733619e+02, 4.52733619e+02,
4.53008677e+02, 4.53008677e+02, 4.53008677e+02, 4.53008677e+02,
4.53183711e+02, 4.53183711e+02, 4.53183711e+02, 4.53183711e+02,
4.53371405e+02, 4.53371405e+02, 4.53371405e+02, 4.53371405e+02,
4.53677995e+02, 4.53677995e+02, 4.53677995e+02, 4.53677995e+02,
4.54140504e+02, 4.54140504e+02, 4.54140504e+02, 4.54140504e+02,
4.54621285e+02, 4.54621285e+02, 4.54621285e+02, 4.54621285e+02,
4.55065003e+02, 4.55065003e+02, 4.55065003e+02, 4.55065003e+02,
4.55473454e+02, 4.55473454e+02, 4.55473454e+02, 4.55473454e+02,
4.55862605e+02, 4.55862605e+02, 4.55862605e+02, 4.55862605e+02,
4.56251236e+02, 4.56251236e+02, 4.56251236e+02, 4.56251236e+02,
4.56613227e+02, 4.56613227e+02, 4.56613227e+02, 4.56613227e+02,
4.57031953e+02, 4.57031953e+02, 4.57031953e+02, 4.57031953e+02,
4.57636572e+02, 4.57636572e+02, 4.57636572e+02, 4.57636572e+02,
4.57734018e+02, 4.57734018e+02, 4.57734018e+02, 4.57734018e+02,
4.53736791e+02, 4.53736791e+02, 4.53736791e+02, 4.53736791e+02,
4.27841681e+02, 4.27841681e+02, 4.27841681e+02, 4.27841681e+02,
3.22491407e+02, 3.22491407e+02, 3.22491407e+02, 3.22491407e+02,
1.03503221e+02, 1.03503221e+02, 1.03503221e+02, 1.03503221e+02,
3.92201766e+00, 3.92201766e+00, 3.92201766e+00, 3.92201766e+00,
1.65463831e-02, 1.65463831e-02, 1.65463831e-02, 1.65463831e-02,
1.00006926e-02, 1.00006926e-02, 1.00006926e-02, 1.00006926e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99929182, 0.99929182, 0.99929182, 0.99929182, 0.99819056,
0.99819056, 0.99819056, 0.99819056, 0.99638774, 0.99638774,
0.99638774, 0.99638774, 0.99307857, 0.99307857, 0.99307857,
0.99307857, 0.98762234, 0.98762234, 0.98762234, 0.98762234,
0.97927076, 0.97927076, 0.97927076, 0.97927076, 0.96745681,
0.96745681, 0.96745681, 0.96745681, 0.95194398, 0.95194398,
0.95194398, 0.95194398, 0.93291304, 0.93291304, 0.93291304,
0.93291304, 0.91089851, 0.91089851, 0.91089851, 0.91089851,
0.88661886, 0.88661886, 0.88661886, 0.88661886, 0.86077838,
0.86077838, 0.86077838, 0.86077838, 0.83390834, 0.83390834,
0.83390834, 0.83390834, 0.80667351, 0.80667351, 0.80667351,
0.80667351, 0.77989973, 0.77989973, 0.77989973, 0.77989973,
0.75387045, 0.75387045, 0.75387045, 0.75387045, 0.72866226,
0.72866226, 0.72866226, 0.72866226, 0.70425431, 0.70425431,
0.70425431, 0.70425431, 0.68070198, 0.68070198, 0.68070198,
0.68070198, 0.65806701, 0.65806701, 0.65806701, 0.65806701,
0.63686275, 0.63686275, 0.63686275, 0.63686275, 0.61660877,
0.61660877, 0.61660877, 0.61660877, 0.60023979, 0.60023979,
0.60023979, 0.60023979, 0.58434031, 0.58434031, 0.58434031,
0.58434031, 0.57531196, 0.57531196, 0.57531196, 0.57531196,
0.56885665, 0.56885665, 0.56885665, 0.56885665, 0.56535251,
0.56535251, 0.56535251, 0.56535251, 0.56542652, 0.56542652,
0.56542652, 0.56542652, 0.56613675, 0.56613675, 0.56613675,
0.56613675, 0.56722021, 0.56722021, 0.56722021, 0.56722021,
0.56734999, 0.56734999, 0.56734999, 0.56734999, 0.56761109,
0.56761109, 0.56761109, 0.56761109, 0.56787835, 0.56787835,
0.56787835, 0.56787835, 0.56795177, 0.56795177, 0.56795177,
0.56795177, 0.56808491, 0.56808491, 0.56808491, 0.56808491,
0.56833262, 0.56833262, 0.56833262, 0.56833262, 0.56862979,
0.56862979, 0.56862979, 0.56862979, 0.56915933, 0.56915933,
0.56915933, 0.56915933, 0.570773 , 0.570773 , 0.570773 ,
0.570773 , 0.57706088, 0.57706088, 0.57706088, 0.57706088,
0.59949934, 0.59949934, 0.59949934, 0.59949934, 0.66700177,
0.66700177, 0.66700177, 0.66700177, 0.83868505, 0.83868505,
0.83868505, 0.83868505, 1.21237055, 1.21237055, 1.21237055,
1.21237055, 1.91223289, 1.91223289, 1.91223289, 1.91223289,
3.007806 , 3.007806 , 3.007806 , 3.007806 , 3.87809533,
3.87809533, 3.87809533, 3.87809533, 4.06550349, 4.06550349,
4.06550349, 4.06550349, 3.31660165, 3.31660165, 3.31660165,
3.31660165, 1.51650855, 1.51650855, 1.51650855, 1.51650855,
1.03580283, 1.03580283, 1.03580283, 1.03580283, 1.00089283,
1.00089283, 1.00089283, 1.00089283, 1.00000042, 1.00000042,
1.00000042, 1.00000042, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.65061748e-02, 2.65061748e-02, 2.65061748e-02, 2.65061748e-02,
6.77521323e-02, 6.77521323e-02, 6.77521323e-02, 6.77521323e-02,
1.35347197e-01, 1.35347197e-01, 1.35347197e-01, 1.35347197e-01,
2.59685207e-01, 2.59685207e-01, 2.59685207e-01, 2.59685207e-01,
4.65425979e-01, 4.65425979e-01, 4.65425979e-01, 4.65425979e-01,
7.82144211e-01, 7.82144211e-01, 7.82144211e-01, 7.82144211e-01,
1.23395371e+00, 1.23395371e+00, 1.23395371e+00, 1.23395371e+00,
1.83410775e+00, 1.83410775e+00, 1.83410775e+00, 1.83410775e+00,
2.58131290e+00, 2.58131290e+00, 2.58131290e+00, 2.58131290e+00,
3.46116458e+00, 3.46116458e+00, 3.46116458e+00, 3.46116458e+00,
4.45155217e+00, 4.45155217e+00, 4.45155217e+00, 4.45155217e+00,
5.52969690e+00, 5.52969690e+00, 5.52969690e+00, 5.52969690e+00,
6.67852811e+00, 6.67852811e+00, 6.67852811e+00, 6.67852811e+00,
7.86873820e+00, 7.86873820e+00, 7.86873820e+00, 7.86873820e+00,
9.07107121e+00, 9.07107121e+00, 9.07107121e+00, 9.07107121e+00,
1.02736328e+01, 1.02736328e+01, 1.02736328e+01, 1.02736328e+01,
1.14723262e+01, 1.14723262e+01, 1.14723262e+01, 1.14723262e+01,
1.26646432e+01, 1.26646432e+01, 1.26646432e+01, 1.26646432e+01,
1.38470920e+01, 1.38470920e+01, 1.38470920e+01, 1.38470920e+01,
1.50122685e+01, 1.50122685e+01, 1.50122685e+01, 1.50122685e+01,
1.61443786e+01, 1.61443786e+01, 1.61443786e+01, 1.61443786e+01,
1.72174436e+01, 1.72174436e+01, 1.72174436e+01, 1.72174436e+01,
1.81881157e+01, 1.81881157e+01, 1.81881157e+01, 1.81881157e+01,
1.90020678e+01, 1.90020678e+01, 1.90020678e+01, 1.90020678e+01,
1.96026064e+01, 1.96026064e+01, 1.96026064e+01, 1.96026064e+01,
1.99654493e+01, 1.99654493e+01, 1.99654493e+01, 1.99654493e+01,
2.01215540e+01, 2.01215540e+01, 2.01215540e+01, 2.01215540e+01,
2.01536613e+01, 2.01536613e+01, 2.01536613e+01, 2.01536613e+01,
2.01186860e+01, 2.01186860e+01, 2.01186860e+01, 2.01186860e+01,
2.00503930e+01, 2.00503930e+01, 2.00503930e+01, 2.00503930e+01,
2.00214278e+01, 2.00214278e+01, 2.00214278e+01, 2.00214278e+01,
2.00088918e+01, 2.00088918e+01, 2.00088918e+01, 2.00088918e+01,
1.99992270e+01, 1.99992270e+01, 1.99992270e+01, 1.99992270e+01,
1.99879478e+01, 1.99879478e+01, 1.99879478e+01, 1.99879478e+01,
1.99697555e+01, 1.99697555e+01, 1.99697555e+01, 1.99697555e+01,
1.99444645e+01, 1.99444645e+01, 1.99444645e+01, 1.99444645e+01,
1.99203251e+01, 1.99203251e+01, 1.99203251e+01, 1.99203251e+01,
1.98978235e+01, 1.98978235e+01, 1.98978235e+01, 1.98978235e+01,
1.98758306e+01, 1.98758306e+01, 1.98758306e+01, 1.98758306e+01,
1.98547615e+01, 1.98547615e+01, 1.98547615e+01, 1.98547615e+01,
1.98366120e+01, 1.98366120e+01, 1.98366120e+01, 1.98366120e+01,
1.98210642e+01, 1.98210642e+01, 1.98210642e+01, 1.98210642e+01,
1.98067178e+01, 1.98067178e+01, 1.98067178e+01, 1.98067178e+01,
1.97979636e+01, 1.97979636e+01, 1.97979636e+01, 1.97979636e+01,
1.97829582e+01, 1.97829582e+01, 1.97829582e+01, 1.97829582e+01,
1.97247063e+01, 1.97247063e+01, 1.97247063e+01, 1.97247063e+01,
1.94611034e+01, 1.94611034e+01, 1.94611034e+01, 1.94611034e+01,
1.82839011e+01, 1.82839011e+01, 1.82839011e+01, 1.82839011e+01,
1.38817854e+01, 1.38817854e+01, 1.38817854e+01, 1.38817854e+01,
4.10564450e+00, 4.10564450e+00, 4.10564450e+00, 4.10564450e+00,
1.19559981e-01, 1.19559981e-01, 1.19559981e-01, 1.19559981e-01,
2.64879102e-04, 2.64879102e-04, 2.64879102e-04, 2.64879102e-04,
4.95793305e-08, 4.95793305e-08, 4.95793305e-08, 4.95793305e-08,
8.02645853e-12, 8.02645853e-12, 8.02645853e-12, 8.02645853e-12,
1.28397217e-15, 1.28397217e-15, 1.28397217e-15, 1.28397217e-15,
1.96745591e-19, 1.96745591e-19, 1.96745591e-19, 1.96745591e-19,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99008791e+02, 9.99008791e+02, 9.99008791e+02, 9.99008791e+02,
9.97467896e+02, 9.97467896e+02, 9.97467896e+02, 9.97467896e+02,
9.94947317e+02, 9.94947317e+02, 9.94947317e+02, 9.94947317e+02,
9.90325847e+02, 9.90325847e+02, 9.90325847e+02, 9.90325847e+02,
9.82720519e+02, 9.82720519e+02, 9.82720519e+02, 9.82720519e+02,
9.71113593e+02, 9.71113593e+02, 9.71113593e+02, 9.71113593e+02,
9.54764008e+02, 9.54764008e+02, 9.54764008e+02, 9.54764008e+02,
9.33417401e+02, 9.33417401e+02, 9.33417401e+02, 9.33417401e+02,
9.07418550e+02, 9.07418550e+02, 9.07418550e+02, 9.07418550e+02,
8.77605065e+02, 8.77605065e+02, 8.77605065e+02, 8.77605065e+02,
8.45053460e+02, 8.45053460e+02, 8.45053460e+02, 8.45053460e+02,
8.10795758e+02, 8.10795758e+02, 8.10795758e+02, 8.10795758e+02,
7.75604847e+02, 7.75604847e+02, 7.75604847e+02, 7.75604847e+02,
7.40358342e+02, 7.40358342e+02, 7.40358342e+02, 7.40358342e+02,
7.06183106e+02, 7.06183106e+02, 7.06183106e+02, 7.06183106e+02,
6.73414104e+02, 6.73414104e+02, 6.73414104e+02, 6.73414104e+02,
6.42106090e+02, 6.42106090e+02, 6.42106090e+02, 6.42106090e+02,
6.12205307e+02, 6.12205307e+02, 6.12205307e+02, 6.12205307e+02,
5.83733464e+02, 5.83733464e+02, 5.83733464e+02, 5.83733464e+02,
5.56805862e+02, 5.56805862e+02, 5.56805862e+02, 5.56805862e+02,
5.31654012e+02, 5.31654012e+02, 5.31654012e+02, 5.31654012e+02,
5.08742192e+02, 5.08742192e+02, 5.08742192e+02, 5.08742192e+02,
4.88731625e+02, 4.88731625e+02, 4.88731625e+02, 4.88731625e+02,
4.72495806e+02, 4.72495806e+02, 4.72495806e+02, 4.72495806e+02,
4.60808275e+02, 4.60808275e+02, 4.60808275e+02, 4.60808275e+02,
4.53862047e+02, 4.53862047e+02, 4.53862047e+02, 4.53862047e+02,
4.50909195e+02, 4.50909195e+02, 4.50909195e+02, 4.50909195e+02,
4.50303363e+02, 4.50303363e+02, 4.50303363e+02, 4.50303363e+02,
4.50963314e+02, 4.50963314e+02, 4.50963314e+02, 4.50963314e+02,
4.52251030e+02, 4.52251030e+02, 4.52251030e+02, 4.52251030e+02,
4.52805650e+02, 4.52805650e+02, 4.52805650e+02, 4.52805650e+02,
4.53054444e+02, 4.53054444e+02, 4.53054444e+02, 4.53054444e+02,
4.53236462e+02, 4.53236462e+02, 4.53236462e+02, 4.53236462e+02,
4.53444188e+02, 4.53444188e+02, 4.53444188e+02, 4.53444188e+02,
4.53782015e+02, 4.53782015e+02, 4.53782015e+02, 4.53782015e+02,
4.54259731e+02, 4.54259731e+02, 4.54259731e+02, 4.54259731e+02,
4.54730412e+02, 4.54730412e+02, 4.54730412e+02, 4.54730412e+02,
4.55178339e+02, 4.55178339e+02, 4.55178339e+02, 4.55178339e+02,
4.55590920e+02, 4.55590920e+02, 4.55590920e+02, 4.55590920e+02,
4.55961244e+02, 4.55961244e+02, 4.55961244e+02, 4.55961244e+02,
4.56316460e+02, 4.56316460e+02, 4.56316460e+02, 4.56316460e+02,
4.56666544e+02, 4.56666544e+02, 4.56666544e+02, 4.56666544e+02,
4.57026199e+02, 4.57026199e+02, 4.57026199e+02, 4.57026199e+02,
4.57531552e+02, 4.57531552e+02, 4.57531552e+02, 4.57531552e+02,
4.58018403e+02, 4.58018403e+02, 4.58018403e+02, 4.58018403e+02,
4.56713026e+02, 4.56713026e+02, 4.56713026e+02, 4.56713026e+02,
4.44619433e+02, 4.44619433e+02, 4.44619433e+02, 4.44619433e+02,
3.86158645e+02, 3.86158645e+02, 3.86158645e+02, 3.86158645e+02,
2.07519215e+02, 2.07519215e+02, 2.07519215e+02, 2.07519215e+02,
2.53994497e+01, 2.53994497e+01, 2.53994497e+01, 2.53994497e+01,
2.14148688e-01, 2.14148688e-01, 2.14148688e-01, 2.14148688e-01,
1.00450120e-02, 1.00450120e-02, 1.00450120e-02, 1.00450120e-02,
1.00000059e-02, 1.00000059e-02, 1.00000059e-02, 1.00000059e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99871963, 0.99871963, 0.99871963, 0.99871963, 0.99689581,
0.99689581, 0.99689581, 0.99689581, 0.99415366, 0.99415366,
0.99415366, 0.99415366, 0.98939445, 0.98939445, 0.98939445,
0.98939445, 0.98204346, 0.98204346, 0.98204346, 0.98204346,
0.97146171, 0.97146171, 0.97146171, 0.97146171, 0.9573379 ,
0.9573379 , 0.9573379 , 0.9573379 , 0.93973497, 0.93973497,
0.93973497, 0.93973497, 0.91908294, 0.91908294, 0.91908294,
0.91908294, 0.89603722, 0.89603722, 0.89603722, 0.89603722,
0.87129459, 0.87129459, 0.87129459, 0.87129459, 0.84542383,
0.84542383, 0.84542383, 0.84542383, 0.81892298, 0.81892298,
0.81892298, 0.81892298, 0.79259907, 0.79259907, 0.79259907,
0.79259907, 0.76689349, 0.76689349, 0.76689349, 0.76689349,
0.74195878, 0.74195878, 0.74195878, 0.74195878, 0.71776989,
0.71776989, 0.71776989, 0.71776989, 0.69434792, 0.69434792,
0.69434792, 0.69434792, 0.67176942, 0.67176942, 0.67176942,
0.67176942, 0.65008496, 0.65008496, 0.65008496, 0.65008496,
0.62996773, 0.62996773, 0.62996773, 0.62996773, 0.61070758,
0.61070758, 0.61070758, 0.61070758, 0.59567443, 0.59567443,
0.59567443, 0.59567443, 0.58118471, 0.58118471, 0.58118471,
0.58118471, 0.57312756, 0.57312756, 0.57312756, 0.57312756,
0.56818316, 0.56818316, 0.56818316, 0.56818316, 0.56529871,
0.56529871, 0.56529871, 0.56529871, 0.56537711, 0.56537711,
0.56537711, 0.56537711, 0.56637301, 0.56637301, 0.56637301,
0.56637301, 0.56746355, 0.56746355, 0.56746355, 0.56746355,
0.56750707, 0.56750707, 0.56750707, 0.56750707, 0.56762621,
0.56762621, 0.56762621, 0.56762621, 0.56789882, 0.56789882,
0.56789882, 0.56789882, 0.56806145, 0.56806145, 0.56806145,
0.56806145, 0.56826163, 0.56826163, 0.56826163, 0.56826163,
0.56851406, 0.56851406, 0.56851406, 0.56851406, 0.56877122,
0.56877122, 0.56877122, 0.56877122, 0.56918068, 0.56918068,
0.56918068, 0.56918068, 0.57030245, 0.57030245, 0.57030245,
0.57030245, 0.5745043 , 0.5745043 , 0.5745043 , 0.5745043 ,
0.58979671, 0.58979671, 0.58979671, 0.58979671, 0.63756363,
0.63756363, 0.63756363, 0.63756363, 0.7640859 , 0.7640859 ,
0.7640859 , 0.7640859 , 1.05129673, 1.05129673, 1.05129673,
1.05129673, 1.61395351, 1.61395351, 1.61395351, 1.61395351,
2.56324844, 2.56324844, 2.56324844, 2.56324844, 3.64796108,
3.64796108, 3.64796108, 3.64796108, 4.10212289, 4.10212289,
4.10212289, 4.10212289, 3.88420625, 3.88420625, 3.88420625,
3.88420625, 2.28314086, 2.28314086, 2.28314086, 2.28314086,
1.12772592, 1.12772592, 1.12772592, 1.12772592, 1.00628402,
1.00628402, 1.00628402, 1.00628402, 1.00002417, 1.00002417,
1.00002417, 1.00002417, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([4.79346584e-02, 4.79346584e-02, 4.79346584e-02, 4.79346584e-02,
1.16295186e-01, 1.16295186e-01, 1.16295186e-01, 1.16295186e-01,
2.19249025e-01, 2.19249025e-01, 2.19249025e-01, 2.19249025e-01,
3.98505426e-01, 3.98505426e-01, 3.98505426e-01, 3.98505426e-01,
6.76753261e-01, 6.76753261e-01, 6.76753261e-01, 6.76753261e-01,
1.08029397e+00, 1.08029397e+00, 1.08029397e+00, 1.08029397e+00,
1.62453623e+00, 1.62453623e+00, 1.62453623e+00, 1.62453623e+00,
2.31205472e+00, 2.31205472e+00, 2.31205472e+00, 2.31205472e+00,
3.13205824e+00, 3.13205824e+00, 3.13205824e+00, 3.13205824e+00,
4.06476657e+00, 4.06476657e+00, 4.06476657e+00, 4.06476657e+00,
5.08775132e+00, 5.08775132e+00, 5.08775132e+00, 5.08775132e+00,
6.18246089e+00, 6.18246089e+00, 6.18246089e+00, 6.18246089e+00,
7.33022569e+00, 7.33022569e+00, 7.33022569e+00, 7.33022569e+00,
8.49610187e+00, 8.49610187e+00, 8.49610187e+00, 8.49610187e+00,
9.66738034e+00, 9.66738034e+00, 9.66738034e+00, 9.66738034e+00,
1.08365227e+01, 1.08365227e+01, 1.08365227e+01, 1.08365227e+01,
1.20006085e+01, 1.20006085e+01, 1.20006085e+01, 1.20006085e+01,
1.31582056e+01, 1.31582056e+01, 1.31582056e+01, 1.31582056e+01,
1.43045927e+01, 1.43045927e+01, 1.43045927e+01, 1.43045927e+01,
1.54308433e+01, 1.54308433e+01, 1.54308433e+01, 1.54308433e+01,
1.65188815e+01, 1.65188815e+01, 1.65188815e+01, 1.65188815e+01,
1.75398658e+01, 1.75398658e+01, 1.75398658e+01, 1.75398658e+01,
1.84481157e+01, 1.84481157e+01, 1.84481157e+01, 1.84481157e+01,
1.91900861e+01, 1.91900861e+01, 1.91900861e+01, 1.91900861e+01,
1.97162589e+01, 1.97162589e+01, 1.97162589e+01, 1.97162589e+01,
2.00152679e+01, 2.00152679e+01, 2.00152679e+01, 2.00152679e+01,
2.01312403e+01, 2.01312403e+01, 2.01312403e+01, 2.01312403e+01,
2.01482309e+01, 2.01482309e+01, 2.01482309e+01, 2.01482309e+01,
2.01006098e+01, 2.01006098e+01, 2.01006098e+01, 2.01006098e+01,
2.00417664e+01, 2.00417664e+01, 2.00417664e+01, 2.00417664e+01,
2.00177684e+01, 2.00177684e+01, 2.00177684e+01, 2.00177684e+01,
2.00061893e+01, 2.00061893e+01, 2.00061893e+01, 2.00061893e+01,
1.99964358e+01, 1.99964358e+01, 1.99964358e+01, 1.99964358e+01,
1.99841326e+01, 1.99841326e+01, 1.99841326e+01, 1.99841326e+01,
1.99640722e+01, 1.99640722e+01, 1.99640722e+01, 1.99640722e+01,
1.99380327e+01, 1.99380327e+01, 1.99380327e+01, 1.99380327e+01,
1.99138950e+01, 1.99138950e+01, 1.99138950e+01, 1.99138950e+01,
1.98915983e+01, 1.98915983e+01, 1.98915983e+01, 1.98915983e+01,
1.98706224e+01, 1.98706224e+01, 1.98706224e+01, 1.98706224e+01,
1.98504781e+01, 1.98504781e+01, 1.98504781e+01, 1.98504781e+01,
1.98321531e+01, 1.98321531e+01, 1.98321531e+01, 1.98321531e+01,
1.98164498e+01, 1.98164498e+01, 1.98164498e+01, 1.98164498e+01,
1.98028802e+01, 1.98028802e+01, 1.98028802e+01, 1.98028802e+01,
1.97923327e+01, 1.97923327e+01, 1.97923327e+01, 1.97923327e+01,
1.97838509e+01, 1.97838509e+01, 1.97838509e+01, 1.97838509e+01,
1.97535132e+01, 1.97535132e+01, 1.97535132e+01, 1.97535132e+01,
1.96225421e+01, 1.96225421e+01, 1.96225421e+01, 1.96225421e+01,
1.90212196e+01, 1.90212196e+01, 1.90212196e+01, 1.90212196e+01,
1.65525784e+01, 1.65525784e+01, 1.65525784e+01, 1.65525784e+01,
9.01356040e+00, 9.01356040e+00, 9.01356040e+00, 9.01356040e+00,
7.89629666e-01, 7.89629666e-01, 7.89629666e-01, 7.89629666e-01,
6.47563091e-03, 6.47563091e-03, 6.47563091e-03, 6.47563091e-03,
3.00072068e-06, 3.00072068e-06, 3.00072068e-06, 3.00072068e-06,
4.61483424e-10, 4.61483424e-10, 4.61483424e-10, 4.61483424e-10,
7.14105492e-14, 7.14105492e-14, 7.14105492e-14, 7.14105492e-14,
1.12055754e-17, 1.12055754e-17, 1.12055754e-17, 1.12055754e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.98208251e+02, 9.98208251e+02, 9.98208251e+02, 9.98208251e+02,
9.95657307e+02, 9.95657307e+02, 9.95657307e+02, 9.95657307e+02,
9.91826551e+02, 9.91826551e+02, 9.91826551e+02, 9.91826551e+02,
9.85188507e+02, 9.85188507e+02, 9.85188507e+02, 9.85188507e+02,
9.74962220e+02, 9.74962220e+02, 9.74962220e+02, 9.74962220e+02,
9.60296787e+02, 9.60296787e+02, 9.60296787e+02, 9.60296787e+02,
9.40822905e+02, 9.40822905e+02, 9.40822905e+02, 9.40822905e+02,
9.16712279e+02, 9.16712279e+02, 9.16712279e+02, 9.16712279e+02,
8.88653079e+02, 8.88653079e+02, 8.88653079e+02, 8.88653079e+02,
8.57635270e+02, 8.57635270e+02, 8.57635270e+02, 8.57635270e+02,
8.24683912e+02, 8.24683912e+02, 8.24683912e+02, 8.24683912e+02,
7.90625936e+02, 7.90625936e+02, 7.90625936e+02, 7.90625936e+02,
7.56152074e+02, 7.56152074e+02, 7.56152074e+02, 7.56152074e+02,
7.22323562e+02, 7.22323562e+02, 7.22323562e+02, 7.22323562e+02,
6.89748211e+02, 6.89748211e+02, 6.89748211e+02, 6.89748211e+02,
6.58562261e+02, 6.58562261e+02, 6.58562261e+02, 6.58562261e+02,
6.28705838e+02, 6.28705838e+02, 6.28705838e+02, 6.28705838e+02,
6.00181833e+02, 6.00181833e+02, 6.00181833e+02, 6.00181833e+02,
5.73028492e+02, 5.73028492e+02, 5.73028492e+02, 5.73028492e+02,
5.47394913e+02, 5.47394913e+02, 5.47394913e+02, 5.47394913e+02,
5.23556041e+02, 5.23556041e+02, 5.23556041e+02, 5.23556041e+02,
5.02022645e+02, 5.02022645e+02, 5.02022645e+02, 5.02022645e+02,
4.83490652e+02, 4.83490652e+02, 4.83490652e+02, 4.83490652e+02,
4.68807418e+02, 4.68807418e+02, 4.68807418e+02, 4.68807418e+02,
4.58628006e+02, 4.58628006e+02, 4.58628006e+02, 4.58628006e+02,
4.52917665e+02, 4.52917665e+02, 4.52917665e+02, 4.52917665e+02,
4.50722891e+02, 4.50722891e+02, 4.50722891e+02, 4.50722891e+02,
4.50404840e+02, 4.50404840e+02, 4.50404840e+02, 4.50404840e+02,
4.51305706e+02, 4.51305706e+02, 4.51305706e+02, 4.51305706e+02,
4.52417827e+02, 4.52417827e+02, 4.52417827e+02, 4.52417827e+02,
4.52869771e+02, 4.52869771e+02, 4.52869771e+02, 4.52869771e+02,
4.53098143e+02, 4.53098143e+02, 4.53098143e+02, 4.53098143e+02,
4.53288109e+02, 4.53288109e+02, 4.53288109e+02, 4.53288109e+02,
4.53522454e+02, 4.53522454e+02, 4.53522454e+02, 4.53522454e+02,
4.53898721e+02, 4.53898721e+02, 4.53898721e+02, 4.53898721e+02,
4.54383577e+02, 4.54383577e+02, 4.54383577e+02, 4.54383577e+02,
4.54840633e+02, 4.54840633e+02, 4.54840633e+02, 4.54840633e+02,
4.55282568e+02, 4.55282568e+02, 4.55282568e+02, 4.55282568e+02,
4.55699208e+02, 4.55699208e+02, 4.55699208e+02, 4.55699208e+02,
4.56064730e+02, 4.56064730e+02, 4.56064730e+02, 4.56064730e+02,
4.56394118e+02, 4.56394118e+02, 4.56394118e+02, 4.56394118e+02,
4.56721490e+02, 4.56721490e+02, 4.56721490e+02, 4.56721490e+02,
4.57041842e+02, 4.57041842e+02, 4.57041842e+02, 4.57041842e+02,
4.57452339e+02, 4.57452339e+02, 4.57452339e+02, 4.57452339e+02,
4.58033692e+02, 4.58033692e+02, 4.58033692e+02, 4.58033692e+02,
4.57888048e+02, 4.57888048e+02, 4.57888048e+02, 4.57888048e+02,
4.52727602e+02, 4.52727602e+02, 4.52727602e+02, 4.52727602e+02,
4.22759926e+02, 4.22759926e+02, 4.22759926e+02, 4.22759926e+02,
3.07068930e+02, 3.07068930e+02, 3.07068930e+02, 3.07068930e+02,
8.77696574e+01, 8.77696574e+01, 8.77696574e+01, 8.77696574e+01,
2.68785775e+00, 2.68785775e+00, 2.68785775e+00, 2.68785775e+00,
1.34301951e-02, 1.34301951e-02, 1.34301951e-02, 1.34301951e-02,
1.00003538e-02, 1.00003538e-02, 1.00003538e-02, 1.00003538e-02,
1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99779253, 0.99779253, 0.99779253, 0.99779253, 0.99492087,
0.99492087, 0.99492087, 0.99492087, 0.99096776, 0.99096776,
0.99096776, 0.99096776, 0.98445746, 0.98445746, 0.98445746,
0.98445746, 0.97502252, 0.97502252, 0.97502252, 0.97502252,
0.9621987 , 0.9621987 , 0.9621987 , 0.9621987 , 0.94596677,
0.94596677, 0.94596677, 0.94596677, 0.92664513, 0.92664513,
0.92664513, 0.92664513, 0.90481789, 0.90481789, 0.90481789,
0.90481789, 0.88115819, 0.88115819, 0.88115819, 0.88115819,
0.85626688, 0.85626688, 0.85626688, 0.85626688, 0.83058143,
0.83058143, 0.83058143, 0.83058143, 0.80476657, 0.80476657,
0.80476657, 0.80476657, 0.77943364, 0.77943364, 0.77943364,
0.77943364, 0.75476663, 0.75476663, 0.75476663, 0.75476663,
0.73082127, 0.73082127, 0.73082127, 0.73082127, 0.70758612,
0.70758612, 0.70758612, 0.70758612, 0.6850841 , 0.6850841 ,
0.6850841 , 0.6850841 , 0.66342869, 0.66342869, 0.66342869,
0.66342869, 0.6426441 , 0.6426441 , 0.6426441 , 0.6426441 ,
0.62359474, 0.62359474, 0.62359474, 0.62359474, 0.60530901,
0.60530901, 0.60530901, 0.60530901, 0.59154744, 0.59154744,
0.59154744, 0.59154744, 0.57849861, 0.57849861, 0.57849861,
0.57849861, 0.57129468, 0.57129468, 0.57129468, 0.57129468,
0.56764504, 0.56764504, 0.56764504, 0.56764504, 0.56537656,
0.56537656, 0.56537656, 0.56537656, 0.56541728, 0.56541728,
0.56541728, 0.56541728, 0.566573 , 0.566573 , 0.566573 ,
0.566573 , 0.56761976, 0.56761976, 0.56761976, 0.56761976,
0.56766123, 0.56766123, 0.56766123, 0.56766123, 0.56769891,
0.56769891, 0.56769891, 0.56769891, 0.56789839, 0.56789839,
0.56789839, 0.56789839, 0.56815101, 0.56815101, 0.56815101,
0.56815101, 0.56843359, 0.56843359, 0.56843359, 0.56843359,
0.56870197, 0.56870197, 0.56870197, 0.56870197, 0.56893189,
0.56893189, 0.56893189, 0.56893189, 0.56925247, 0.56925247,
0.56925247, 0.56925247, 0.57003928, 0.57003928, 0.57003928,
0.57003928, 0.57286264, 0.57286264, 0.57286264, 0.57286264,
0.58324543, 0.58324543, 0.58324543, 0.58324543, 0.61675826,
0.61675826, 0.61675826, 0.61675826, 0.70906129, 0.70906129,
0.70906129, 0.70906129, 0.92724037, 0.92724037, 0.92724037,
0.92724037, 1.37323589, 1.37323589, 1.37323589, 1.37323589,
2.1635062 , 2.1635062 , 2.1635062 , 2.1635062 , 3.29148444,
3.29148444, 3.29148444, 3.29148444, 4.0332475 , 4.0332475 ,
4.0332475 , 4.0332475 , 4.12979469, 4.12979469, 4.12979469,
4.12979469, 3.20980045, 3.20980045, 3.20980045, 3.20980045,
1.4244878 , 1.4244878 , 1.4244878 , 1.4244878 , 1.02817994,
1.02817994, 1.02817994, 1.02817994, 1.00058696, 1.00058696,
1.00058696, 1.00058696, 1.00000021, 1.00000021, 1.00000021,
1.00000021, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([8.26770714e-02, 8.26770714e-02, 8.26770714e-02, 8.26770714e-02,
1.90444567e-01, 1.90444567e-01, 1.90444567e-01, 1.90444567e-01,
3.39156393e-01, 3.39156393e-01, 3.39156393e-01, 3.39156393e-01,
5.85196350e-01, 5.85196350e-01, 5.85196350e-01, 5.85196350e-01,
9.44102208e-01, 9.44102208e-01, 9.44102208e-01, 9.44102208e-01,
1.43650190e+00, 1.43650190e+00, 1.43650190e+00, 1.43650190e+00,
2.06747296e+00, 2.06747296e+00, 2.06747296e+00, 2.06747296e+00,
2.83007409e+00, 2.83007409e+00, 2.83007409e+00, 2.83007409e+00,
3.70711102e+00, 3.70711102e+00, 3.70711102e+00, 3.70711102e+00,
4.67711511e+00, 4.67711511e+00, 4.67711511e+00, 4.67711511e+00,
5.72031049e+00, 5.72031049e+00, 5.72031049e+00, 5.72031049e+00,
6.82230541e+00, 6.82230541e+00, 6.82230541e+00, 6.82230541e+00,
7.95228204e+00, 7.95228204e+00, 7.95228204e+00, 7.95228204e+00,
9.09250910e+00, 9.09250910e+00, 9.09250910e+00, 9.09250910e+00,
1.02322411e+01, 1.02322411e+01, 1.02322411e+01, 1.02322411e+01,
1.13687918e+01, 1.13687918e+01, 1.13687918e+01, 1.13687918e+01,
1.25004504e+01, 1.25004504e+01, 1.25004504e+01, 1.25004504e+01,
1.36248432e+01, 1.36248432e+01, 1.36248432e+01, 1.36248432e+01,
1.47363425e+01, 1.47363425e+01, 1.47363425e+01, 1.47363425e+01,
1.58243684e+01, 1.58243684e+01, 1.58243684e+01, 1.58243684e+01,
1.68684615e+01, 1.68684615e+01, 1.68684615e+01, 1.68684615e+01,
1.78370966e+01, 1.78370966e+01, 1.78370966e+01, 1.78370966e+01,
1.86828484e+01, 1.86828484e+01, 1.86828484e+01, 1.86828484e+01,
1.93540793e+01, 1.93540793e+01, 1.93540793e+01, 1.93540793e+01,
1.98100759e+01, 1.98100759e+01, 1.98100759e+01, 1.98100759e+01,
2.00526668e+01, 2.00526668e+01, 2.00526668e+01, 2.00526668e+01,
2.01358422e+01, 2.01358422e+01, 2.01358422e+01, 2.01358422e+01,
2.01409960e+01, 2.01409960e+01, 2.01409960e+01, 2.01409960e+01,
2.00831703e+01, 2.00831703e+01, 2.00831703e+01, 2.00831703e+01,
2.00347786e+01, 2.00347786e+01, 2.00347786e+01, 2.00347786e+01,
2.00146195e+01, 2.00146195e+01, 2.00146195e+01, 2.00146195e+01,
2.00034460e+01, 2.00034460e+01, 2.00034460e+01, 2.00034460e+01,
1.99933175e+01, 1.99933175e+01, 1.99933175e+01, 1.99933175e+01,
1.99796992e+01, 1.99796992e+01, 1.99796992e+01, 1.99796992e+01,
1.99579053e+01, 1.99579053e+01, 1.99579053e+01, 1.99579053e+01,
1.99319311e+01, 1.99319311e+01, 1.99319311e+01, 1.99319311e+01,
1.99078330e+01, 1.99078330e+01, 1.99078330e+01, 1.99078330e+01,
1.98854258e+01, 1.98854258e+01, 1.98854258e+01, 1.98854258e+01,
1.98650641e+01, 1.98650641e+01, 1.98650641e+01, 1.98650641e+01,
1.98461462e+01, 1.98461462e+01, 1.98461462e+01, 1.98461462e+01,
1.98282545e+01, 1.98282545e+01, 1.98282545e+01, 1.98282545e+01,
1.98124498e+01, 1.98124498e+01, 1.98124498e+01, 1.98124498e+01,
1.97991749e+01, 1.97991749e+01, 1.97991749e+01, 1.97991749e+01,
1.97873673e+01, 1.97873673e+01, 1.97873673e+01, 1.97873673e+01,
1.97808776e+01, 1.97808776e+01, 1.97808776e+01, 1.97808776e+01,
1.97645088e+01, 1.97645088e+01, 1.97645088e+01, 1.97645088e+01,
1.96988900e+01, 1.96988900e+01, 1.96988900e+01, 1.96988900e+01,
1.93964557e+01, 1.93964557e+01, 1.93964557e+01, 1.93964557e+01,
1.80772383e+01, 1.80772383e+01, 1.80772383e+01, 1.80772383e+01,
1.32758210e+01, 1.32758210e+01, 1.32758210e+01, 1.32758210e+01,
3.37432001e+00, 3.37432001e+00, 3.37432001e+00, 3.37432001e+00,
8.08064010e-02, 8.08064010e-02, 8.08064010e-02, 8.08064010e-02,
1.40942456e-04, 1.40942456e-04, 1.40942456e-04, 1.40942456e-04,
2.50612552e-08, 2.50612552e-08, 2.50612552e-08, 2.50612552e-08,
4.11745361e-12, 4.11745361e-12, 4.11745361e-12, 4.11745361e-12,
6.55937311e-16, 6.55937311e-16, 6.55937311e-16, 6.55937311e-16,
9.42282893e-20, 9.42282893e-20, 9.42282893e-20, 9.42282893e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.96911775e+02, 9.96911775e+02, 9.96911775e+02, 9.96911775e+02,
9.92897461e+02, 9.92897461e+02, 9.92897461e+02, 9.92897461e+02,
9.87381492e+02, 9.87381492e+02, 9.87381492e+02, 9.87381492e+02,
9.78316630e+02, 9.78316630e+02, 9.78316630e+02, 9.78316630e+02,
9.65224072e+02, 9.65224072e+02, 9.65224072e+02, 9.65224072e+02,
9.47511089e+02, 9.47511089e+02, 9.47511089e+02, 9.47511089e+02,
9.25225984e+02, 9.25225984e+02, 9.25225984e+02, 9.25225984e+02,
8.98896472e+02, 8.98896472e+02, 8.98896472e+02, 8.98896472e+02,
8.69413243e+02, 8.69413243e+02, 8.69413243e+02, 8.69413243e+02,
8.37771694e+02, 8.37771694e+02, 8.37771694e+02, 8.37771694e+02,
8.04845422e+02, 8.04845422e+02, 8.04845422e+02, 8.04845422e+02,
7.71265034e+02, 7.71265034e+02, 7.71265034e+02, 7.71265034e+02,
7.37891694e+02, 7.37891694e+02, 7.37891694e+02, 7.37891694e+02,
7.05581087e+02, 7.05581087e+02, 7.05581087e+02, 7.05581087e+02,
6.74524283e+02, 6.74524283e+02, 6.74524283e+02, 6.74524283e+02,
6.44761697e+02, 6.44761697e+02, 6.44761697e+02, 6.44761697e+02,
6.16250581e+02, 6.16250581e+02, 6.16250581e+02, 6.16250581e+02,
5.89001288e+02, 5.89001288e+02, 5.89001288e+02, 5.89001288e+02,
5.63080642e+02, 5.63080642e+02, 5.63080642e+02, 5.63080642e+02,
5.38671716e+02, 5.38671716e+02, 5.38671716e+02, 5.38671716e+02,
5.16092282e+02, 5.16092282e+02, 5.16092282e+02, 5.16092282e+02,
4.95896244e+02, 4.95896244e+02, 4.95896244e+02, 4.95896244e+02,
4.78802137e+02, 4.78802137e+02, 4.78802137e+02, 4.78802137e+02,
4.65608882e+02, 4.65608882e+02, 4.65608882e+02, 4.65608882e+02,
4.56832207e+02, 4.56832207e+02, 4.56832207e+02, 4.56832207e+02,
4.52212128e+02, 4.52212128e+02, 4.52212128e+02, 4.52212128e+02,
4.50635329e+02, 4.50635329e+02, 4.50635329e+02, 4.50635329e+02,
4.50539724e+02, 4.50539724e+02, 4.50539724e+02, 4.50539724e+02,
4.51634371e+02, 4.51634371e+02, 4.51634371e+02, 4.51634371e+02,
4.52552736e+02, 4.52552736e+02, 4.52552736e+02, 4.52552736e+02,
4.52930057e+02, 4.52930057e+02, 4.52930057e+02, 4.52930057e+02,
4.53144052e+02, 4.53144052e+02, 4.53144052e+02, 4.53144052e+02,
4.53341730e+02, 4.53341730e+02, 4.53341730e+02, 4.53341730e+02,
4.53605101e+02, 4.53605101e+02, 4.53605101e+02, 4.53605101e+02,
4.54020478e+02, 4.54020478e+02, 4.54020478e+02, 4.54020478e+02,
4.54510123e+02, 4.54510123e+02, 4.54510123e+02, 4.54510123e+02,
4.54955970e+02, 4.54955970e+02, 4.54955970e+02, 4.54955970e+02,
4.55384422e+02, 4.55384422e+02, 4.55384422e+02, 4.55384422e+02,
4.55795165e+02, 4.55795165e+02, 4.55795165e+02, 4.55795165e+02,
4.56163141e+02, 4.56163141e+02, 4.56163141e+02, 4.56163141e+02,
4.56482181e+02, 4.56482181e+02, 4.56482181e+02, 4.56482181e+02,
4.56781749e+02, 4.56781749e+02, 4.56781749e+02, 4.56781749e+02,
4.57078389e+02, 4.57078389e+02, 4.57078389e+02, 4.57078389e+02,
4.57417386e+02, 4.57417386e+02, 4.57417386e+02, 4.57417386e+02,
4.57936162e+02, 4.57936162e+02, 4.57936162e+02, 4.57936162e+02,
4.58275885e+02, 4.58275885e+02, 4.58275885e+02, 4.58275885e+02,
4.56396881e+02, 4.56396881e+02, 4.56396881e+02, 4.56396881e+02,
4.42008574e+02, 4.42008574e+02, 4.42008574e+02, 4.42008574e+02,
3.76142236e+02, 3.76142236e+02, 3.76142236e+02, 3.76142236e+02,
1.87877799e+02, 1.87877799e+02, 1.87877799e+02, 1.87877799e+02,
1.93878950e+01, 1.93878950e+01, 1.93878950e+01, 1.93878950e+01,
1.28441959e-01, 1.28441959e-01, 1.28441959e-01, 1.28441959e-01,
1.00206317e-02, 1.00206317e-02, 1.00206317e-02, 1.00206317e-02,
1.00000030e-02, 1.00000030e-02, 1.00000030e-02, 1.00000030e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99636432, 0.99636432, 0.99636432, 0.99636432, 0.99205876,
0.99205876, 0.99205876, 0.99205876, 0.98664933, 0.98664933,
0.98664933, 0.98664933, 0.97815371, 0.97815371, 0.97815371,
0.97815371, 0.9665772 , 0.9665772 , 0.9665772 , 0.9665772 ,
0.95164637, 0.95164637, 0.95164637, 0.95164637, 0.93362252,
0.93362252, 0.93362252, 0.93362252, 0.91299712, 0.91299712,
0.91299712, 0.91299712, 0.89041028, 0.89041028, 0.89041028,
0.89041028, 0.86647311, 0.86647311, 0.86647311, 0.86647311,
0.84164558, 0.84164558, 0.84164558, 0.84164558, 0.81642336,
0.81642336, 0.81642336, 0.81642336, 0.79148604, 0.79148604,
0.79148604, 0.79148604, 0.76710834, 0.76710834, 0.76710834,
0.76710834, 0.7434205 , 0.7434205 , 0.7434205 , 0.7434205 ,
0.72039324, 0.72039324, 0.72039324, 0.72039324, 0.69804488,
0.69804488, 0.69804488, 0.69804488, 0.67640665, 0.67640665,
0.67640665, 0.67640665, 0.65563302, 0.65563302, 0.65563302,
0.65563302, 0.63570432, 0.63570432, 0.63570432, 0.63570432,
0.61770755, 0.61770755, 0.61770755, 0.61770755, 0.60038962,
0.60038962, 0.60038962, 0.60038962, 0.58782557, 0.58782557,
0.58782557, 0.58782557, 0.57623676, 0.57623676, 0.57623676,
0.57623676, 0.56979185, 0.56979185, 0.56979185, 0.56979185,
0.56720324, 0.56720324, 0.56720324, 0.56720324, 0.56553241,
0.56553241, 0.56553241, 0.56553241, 0.56556965, 0.56556965,
0.56556965, 0.56556965, 0.56672103, 0.56672103, 0.56672103,
0.56672103, 0.56770851, 0.56770851, 0.56770851, 0.56770851,
0.56779669, 0.56779669, 0.56779669, 0.56779669, 0.56780547,
0.56780547, 0.56780547, 0.56780547, 0.56792996, 0.56792996,
0.56792996, 0.56792996, 0.56821566, 0.56821566, 0.56821566,
0.56821566, 0.5685916 , 0.5685916 , 0.5685916 , 0.5685916 ,
0.56888519, 0.56888519, 0.56888519, 0.56888519, 0.56910119,
0.56910119, 0.56910119, 0.56910119, 0.56936231, 0.56936231,
0.56936231, 0.56936231, 0.56991804, 0.56991804, 0.56991804,
0.56991804, 0.57182047, 0.57182047, 0.57182047, 0.57182047,
0.57885305, 0.57885305, 0.57885305, 0.57885305, 0.60219878,
0.60219878, 0.60219878, 0.60219878, 0.66890255, 0.66890255,
0.66890255, 0.66890255, 0.83282931, 0.83282931, 0.83282931,
0.83282931, 1.18191186, 1.18191186, 1.18191186, 1.18191186,
1.82871125, 1.82871125, 1.82871125, 1.82871125, 2.86090807,
2.86090807, 2.86090807, 2.86090807, 3.85054369, 3.85054369,
3.85054369, 3.85054369, 4.19989541, 4.19989541, 4.19989541,
4.19989541, 3.86486856, 3.86486856, 3.86486856, 3.86486856,
2.13052935, 2.13052935, 2.13052935, 2.13052935, 1.10421234,
1.10421234, 1.10421234, 1.10421234, 1.0046868 , 1.0046868 ,
1.0046868 , 1.0046868 , 1.00001224, 1.00001224, 1.00001224,
1.00001224, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([1.36253533e-01, 1.36253533e-01, 1.36253533e-01, 1.36253533e-01,
2.98133139e-01, 2.98133139e-01, 2.98133139e-01, 2.98133139e-01,
5.02180164e-01, 5.02180164e-01, 5.02180164e-01, 5.02180164e-01,
8.24685029e-01, 8.24685029e-01, 8.24685029e-01, 8.24685029e-01,
1.26777639e+00, 1.26777639e+00, 1.26777639e+00, 1.26777639e+00,
1.84570316e+00, 1.84570316e+00, 1.84570316e+00, 1.84570316e+00,
2.55320788e+00, 2.55320788e+00, 2.55320788e+00, 2.55320788e+00,
3.37646407e+00, 3.37646407e+00, 3.37646407e+00, 3.37646407e+00,
4.29528509e+00, 4.29528509e+00, 4.29528509e+00, 4.29528509e+00,
5.28957743e+00, 5.28957743e+00, 5.28957743e+00, 5.28957743e+00,
6.34426536e+00, 6.34426536e+00, 6.34426536e+00, 6.34426536e+00,
7.43855306e+00, 7.43855306e+00, 7.43855306e+00, 7.43855306e+00,
8.54650989e+00, 8.54650989e+00, 8.54650989e+00, 8.54650989e+00,
9.65778684e+00, 9.65778684e+00, 9.65778684e+00, 9.65778684e+00,
1.07675433e+01, 1.07675433e+01, 1.07675433e+01, 1.07675433e+01,
1.18732730e+01, 1.18732730e+01, 1.18732730e+01, 1.18732730e+01,
1.29739395e+01, 1.29739395e+01, 1.29739395e+01, 1.29739395e+01,
1.40664784e+01, 1.40664784e+01, 1.40664784e+01, 1.40664784e+01,
1.51440272e+01, 1.51440272e+01, 1.51440272e+01, 1.51440272e+01,
1.61942747e+01, 1.61942747e+01, 1.61942747e+01, 1.61942747e+01,
1.71943313e+01, 1.71943313e+01, 1.71943313e+01, 1.71943313e+01,
1.81102285e+01, 1.81102285e+01, 1.81102285e+01, 1.81102285e+01,
1.88935753e+01, 1.88935753e+01, 1.88935753e+01, 1.88935753e+01,
1.94958477e+01, 1.94958477e+01, 1.94958477e+01, 1.94958477e+01,
1.98864185e+01, 1.98864185e+01, 1.98864185e+01, 1.98864185e+01,
2.00798147e+01, 2.00798147e+01, 2.00798147e+01, 2.00798147e+01,
2.01365297e+01, 2.01365297e+01, 2.01365297e+01, 2.01365297e+01,
2.01309132e+01, 2.01309132e+01, 2.01309132e+01, 2.01309132e+01,
2.00684530e+01, 2.00684530e+01, 2.00684530e+01, 2.00684530e+01,
2.00289832e+01, 2.00289832e+01, 2.00289832e+01, 2.00289832e+01,
2.00117538e+01, 2.00117538e+01, 2.00117538e+01, 2.00117538e+01,
2.00007059e+01, 2.00007059e+01, 2.00007059e+01, 2.00007059e+01,
1.99899662e+01, 1.99899662e+01, 1.99899662e+01, 1.99899662e+01,
1.99747375e+01, 1.99747375e+01, 1.99747375e+01, 1.99747375e+01,
1.99513167e+01, 1.99513167e+01, 1.99513167e+01, 1.99513167e+01,
1.99258024e+01, 1.99258024e+01, 1.99258024e+01, 1.99258024e+01,
1.99020913e+01, 1.99020913e+01, 1.99020913e+01, 1.99020913e+01,
1.98796675e+01, 1.98796675e+01, 1.98796675e+01, 1.98796675e+01,
1.98594450e+01, 1.98594450e+01, 1.98594450e+01, 1.98594450e+01,
1.98414283e+01, 1.98414283e+01, 1.98414283e+01, 1.98414283e+01,
1.98245672e+01, 1.98245672e+01, 1.98245672e+01, 1.98245672e+01,
1.98089852e+01, 1.98089852e+01, 1.98089852e+01, 1.98089852e+01,
1.97956031e+01, 1.97956031e+01, 1.97956031e+01, 1.97956031e+01,
1.97837093e+01, 1.97837093e+01, 1.97837093e+01, 1.97837093e+01,
1.97755943e+01, 1.97755943e+01, 1.97755943e+01, 1.97755943e+01,
1.97672969e+01, 1.97672969e+01, 1.97672969e+01, 1.97672969e+01,
1.97336516e+01, 1.97336516e+01, 1.97336516e+01, 1.97336516e+01,
1.95824012e+01, 1.95824012e+01, 1.95824012e+01, 1.95824012e+01,
1.89016608e+01, 1.89016608e+01, 1.89016608e+01, 1.89016608e+01,
1.61684252e+01, 1.61684252e+01, 1.61684252e+01, 1.61684252e+01,
8.15698720e+00, 8.15698720e+00, 8.15698720e+00, 8.15698720e+00,
5.95654577e-01, 5.95654577e-01, 5.95654577e-01, 5.95654577e-01,
3.94968248e-03, 3.94968248e-03, 3.94968248e-03, 3.94968248e-03,
1.48333272e-06, 1.48333272e-06, 1.48333272e-06, 1.48333272e-06,
2.26392355e-10, 2.26392355e-10, 2.26392355e-10, 2.26392355e-10,
3.54863604e-14, 3.54863604e-14, 3.54863604e-14, 3.54863604e-14,
5.67765305e-18, 5.67765305e-18, 5.67765305e-18, 5.67765305e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.94915923e+02, 9.94915923e+02, 9.94915923e+02, 9.94915923e+02,
9.88901826e+02, 9.88901826e+02, 9.88901826e+02, 9.88901826e+02,
9.81366024e+02, 9.81366024e+02, 9.81366024e+02, 9.81366024e+02,
9.69562839e+02, 9.69562839e+02, 9.69562839e+02, 9.69562839e+02,
9.53547612e+02, 9.53547612e+02, 9.53547612e+02, 9.53547612e+02,
9.33005104e+02, 9.33005104e+02, 9.33005104e+02, 9.33005104e+02,
9.08377668e+02, 9.08377668e+02, 9.08377668e+02, 9.08377668e+02,
8.80425926e+02, 8.80425926e+02, 8.80425926e+02, 8.80425926e+02,
8.50101783e+02, 8.50101783e+02, 8.50101783e+02, 8.50101783e+02,
8.18296299e+02, 8.18296299e+02, 8.18296299e+02, 8.18296299e+02,
7.85675395e+02, 7.85675395e+02, 7.85675395e+02, 7.85675395e+02,
7.52902859e+02, 7.52902859e+02, 7.52902859e+02, 7.52902859e+02,
7.20897155e+02, 7.20897155e+02, 7.20897155e+02, 7.20897155e+02,
6.90007959e+02, 6.90007959e+02, 6.90007959e+02, 6.90007959e+02,
6.60368829e+02, 6.60368829e+02, 6.60368829e+02, 6.60368829e+02,
6.31916337e+02, 6.31916337e+02, 6.31916337e+02, 6.31916337e+02,
6.04645783e+02, 6.04645783e+02, 6.04645783e+02, 6.04645783e+02,
5.78584743e+02, 5.78584743e+02, 5.78584743e+02, 5.78584743e+02,
5.53823640e+02, 5.53823640e+02, 5.53823640e+02, 5.53823640e+02,
5.30581052e+02, 5.30581052e+02, 5.30581052e+02, 5.30581052e+02,
5.09216724e+02, 5.09216724e+02, 5.09216724e+02, 5.09216724e+02,
4.90322663e+02, 4.90322663e+02, 4.90322663e+02, 4.90322663e+02,
4.74628094e+02, 4.74628094e+02, 4.74628094e+02, 4.74628094e+02,
4.62859662e+02, 4.62859662e+02, 4.62859662e+02, 4.62859662e+02,
4.55372213e+02, 4.55372213e+02, 4.55372213e+02, 4.55372213e+02,
4.51700059e+02, 4.51700059e+02, 4.51700059e+02, 4.51700059e+02,
4.50624155e+02, 4.50624155e+02, 4.50624155e+02, 4.50624155e+02,
4.50729577e+02, 4.50729577e+02, 4.50729577e+02, 4.50729577e+02,
4.51910877e+02, 4.51910877e+02, 4.51910877e+02, 4.51910877e+02,
4.52662577e+02, 4.52662577e+02, 4.52662577e+02, 4.52662577e+02,
4.52987231e+02, 4.52987231e+02, 4.52987231e+02, 4.52987231e+02,
4.53194374e+02, 4.53194374e+02, 4.53194374e+02, 4.53194374e+02,
4.53400795e+02, 4.53400795e+02, 4.53400795e+02, 4.53400795e+02,
4.53694238e+02, 4.53694238e+02, 4.53694238e+02, 4.53694238e+02,
4.54143778e+02, 4.54143778e+02, 4.54143778e+02, 4.54143778e+02,
4.54633274e+02, 4.54633274e+02, 4.54633274e+02, 4.54633274e+02,
4.55075065e+02, 4.55075065e+02, 4.55075065e+02, 4.55075065e+02,
4.55489841e+02, 4.55489841e+02, 4.55489841e+02, 4.55489841e+02,
4.55884753e+02, 4.55884753e+02, 4.55884753e+02, 4.55884753e+02,
4.56250604e+02, 4.56250604e+02, 4.56250604e+02, 4.56250604e+02,
4.56569475e+02, 4.56569475e+02, 4.56569475e+02, 4.56569475e+02,
4.56850195e+02, 4.56850195e+02, 4.56850195e+02, 4.56850195e+02,
4.57127711e+02, 4.57127711e+02, 4.57127711e+02, 4.57127711e+02,
4.57412507e+02, 4.57412507e+02, 4.57412507e+02, 4.57412507e+02,
4.57820992e+02, 4.57820992e+02, 4.57820992e+02, 4.57820992e+02,
4.58356923e+02, 4.58356923e+02, 4.58356923e+02, 4.58356923e+02,
4.57913485e+02, 4.57913485e+02, 4.57913485e+02, 4.57913485e+02,
4.51520684e+02, 4.51520684e+02, 4.51520684e+02, 4.51520684e+02,
4.16998340e+02, 4.16998340e+02, 4.16998340e+02, 4.16998340e+02,
2.90460159e+02, 2.90460159e+02, 2.90460159e+02, 2.90460159e+02,
7.32958303e+01, 7.32958303e+01, 7.32958303e+01, 7.32958303e+01,
1.83484411e+00, 1.83484411e+00, 1.83484411e+00, 1.83484411e+00,
1.17220052e-02, 1.17220052e-02, 1.17220052e-02, 1.17220052e-02,
1.00001751e-02, 1.00001751e-02, 1.00001751e-02, 1.00001751e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99426946, 0.99426946, 0.99426946, 0.99426946, 0.98811149,
0.98811149, 0.98811149, 0.98811149, 0.98107232, 0.98107232,
0.98107232, 0.98107232, 0.97045921, 0.97045921, 0.97045921,
0.97045921, 0.95682737, 0.95682737, 0.95682737, 0.95682737,
0.94004521, 0.94004521, 0.94004521, 0.94004521, 0.92060887,
0.92060887, 0.92060887, 0.92060887, 0.89908557, 0.89908557,
0.89908557, 0.89908557, 0.87609083, 0.87609083, 0.87609083,
0.87609083, 0.85212027, 0.85212027, 0.85212027, 0.85212027,
0.82756445, 0.82756445, 0.82756445, 0.82756445, 0.80306007,
0.80306007, 0.80306007, 0.80306007, 0.77900808, 0.77900808,
0.77900808, 0.77900808, 0.75557607, 0.75557607, 0.75557607,
0.75557607, 0.73277632, 0.73277632, 0.73277632, 0.73277632,
0.71060835, 0.71060835, 0.71060835, 0.71060835, 0.68909145,
0.68909145, 0.68909145, 0.68909145, 0.66826654, 0.66826654,
0.66826654, 0.66826654, 0.64834169, 0.64834169, 0.64834169,
0.64834169, 0.62923142, 0.62923142, 0.62923142, 0.62923142,
0.61227339, 0.61227339, 0.61227339, 0.61227339, 0.5959292 ,
0.5959292 , 0.5959292 , 0.5959292 , 0.58448008, 0.58448008,
0.58448008, 0.58448008, 0.57434928, 0.57434928, 0.57434928,
0.57434928, 0.56859881, 0.56859881, 0.56859881, 0.56859881,
0.56684346, 0.56684346, 0.56684346, 0.56684346, 0.56569203,
0.56569203, 0.56569203, 0.56569203, 0.56583937, 0.56583937,
0.56583937, 0.56583937, 0.56683174, 0.56683174, 0.56683174,
0.56683174, 0.56774694, 0.56774694, 0.56774694, 0.56774694,
0.56791077, 0.56791077, 0.56791077, 0.56791077, 0.56792256,
0.56792256, 0.56792256, 0.56792256, 0.56800423, 0.56800423,
0.56800423, 0.56800423, 0.56828226, 0.56828226, 0.56828226,
0.56828226, 0.56872634, 0.56872634, 0.56872634, 0.56872634,
0.5690527 , 0.5690527 , 0.5690527 , 0.5690527 , 0.56926962,
0.56926962, 0.56926962, 0.56926962, 0.56949685, 0.56949685,
0.56949685, 0.56949685, 0.569897 , 0.569897 , 0.569897 ,
0.569897 , 0.57117768, 0.57117768, 0.57117768, 0.57117768,
0.57592859, 0.57592859, 0.57592859, 0.57592859, 0.59209704,
0.59209704, 0.59209704, 0.59209704, 0.63988261, 0.63988261,
0.63988261, 0.63988261, 0.76179894, 0.76179894, 0.76179894,
0.76179894, 1.03182564, 1.03182564, 1.03182564, 1.03182564,
1.55348275, 1.55348275, 1.55348275, 1.55348275, 2.43068895,
2.43068895, 2.43068895, 2.43068895, 3.55229101, 3.55229101,
3.55229101, 3.55229101, 4.16458528, 4.16458528, 4.16458528,
4.16458528, 4.1800089 , 4.1800089 , 4.1800089 , 4.1800089 ,
3.07676045, 3.07676045, 3.07676045, 3.07676045, 1.34520374,
1.34520374, 1.34520374, 1.34520374, 1.02204848, 1.02204848,
1.02204848, 1.02204848, 1.00037232, 1.00037232, 1.00037232,
1.00037232, 1.00000011, 1.00000011, 1.00000011, 1.00000011,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([2.14957957e-01, 2.14957957e-01, 2.14957957e-01, 2.14957957e-01,
4.47108627e-01, 4.47108627e-01, 4.47108627e-01, 4.47108627e-01,
7.13561081e-01, 7.13561081e-01, 7.13561081e-01, 7.13561081e-01,
1.11872396e+00, 1.11872396e+00, 1.11872396e+00, 1.11872396e+00,
1.64431395e+00, 1.64431395e+00, 1.64431395e+00, 1.64431395e+00,
2.29983169e+00, 2.29983169e+00, 2.29983169e+00, 2.29983169e+00,
3.07089753e+00, 3.07089753e+00, 3.07089753e+00, 3.07089753e+00,
3.94015044e+00, 3.94015044e+00, 3.94015044e+00, 3.94015044e+00,
4.88739659e+00, 4.88739659e+00, 4.88739659e+00, 4.88739659e+00,
5.89618557e+00, 5.89618557e+00, 5.89618557e+00, 5.89618557e+00,
6.95255343e+00, 6.95255343e+00, 6.95255343e+00, 6.95255343e+00,
8.02806459e+00, 8.02806459e+00, 8.02806459e+00, 8.02806459e+00,
9.11164658e+00, 9.11164658e+00, 9.11164658e+00, 9.11164658e+00,
1.01949310e+01, 1.01949310e+01, 1.01949310e+01, 1.01949310e+01,
1.12753220e+01, 1.12753220e+01, 1.12753220e+01, 1.12753220e+01,
1.23519886e+01, 1.23519886e+01, 1.23519886e+01, 1.23519886e+01,
1.34230468e+01, 1.34230468e+01, 1.34230468e+01, 1.34230468e+01,
1.44847959e+01, 1.44847959e+01, 1.44847959e+01, 1.44847959e+01,
1.55291038e+01, 1.55291038e+01, 1.55291038e+01, 1.55291038e+01,
1.65418026e+01, 1.65418026e+01, 1.65418026e+01, 1.65418026e+01,
1.74975626e+01, 1.74975626e+01, 1.74975626e+01, 1.74975626e+01,
1.83602647e+01, 1.83602647e+01, 1.83602647e+01, 1.83602647e+01,
1.90815134e+01, 1.90815134e+01, 1.90815134e+01, 1.90815134e+01,
1.96172465e+01, 1.96172465e+01, 1.96172465e+01, 1.96172465e+01,
1.99474835e+01, 1.99474835e+01, 1.99474835e+01, 1.99474835e+01,
2.00981416e+01, 2.00981416e+01, 2.00981416e+01, 2.00981416e+01,
2.01352473e+01, 2.01352473e+01, 2.01352473e+01, 2.01352473e+01,
2.01181972e+01, 2.01181972e+01, 2.01181972e+01, 2.01181972e+01,
2.00565244e+01, 2.00565244e+01, 2.00565244e+01, 2.00565244e+01,
2.00240733e+01, 2.00240733e+01, 2.00240733e+01, 2.00240733e+01,
2.00089626e+01, 2.00089626e+01, 2.00089626e+01, 2.00089626e+01,
1.99979297e+01, 1.99979297e+01, 1.99979297e+01, 1.99979297e+01,
1.99863891e+01, 1.99863891e+01, 1.99863891e+01, 1.99863891e+01,
1.99693717e+01, 1.99693717e+01, 1.99693717e+01, 1.99693717e+01,
1.99445026e+01, 1.99445026e+01, 1.99445026e+01, 1.99445026e+01,
1.99195116e+01, 1.99195116e+01, 1.99195116e+01, 1.99195116e+01,
1.98964046e+01, 1.98964046e+01, 1.98964046e+01, 1.98964046e+01,
1.98743565e+01, 1.98743565e+01, 1.98743565e+01, 1.98743565e+01,
1.98541585e+01, 1.98541585e+01, 1.98541585e+01, 1.98541585e+01,
1.98364920e+01, 1.98364920e+01, 1.98364920e+01, 1.98364920e+01,
1.98206754e+01, 1.98206754e+01, 1.98206754e+01, 1.98206754e+01,
1.98057571e+01, 1.98057571e+01, 1.98057571e+01, 1.98057571e+01,
1.97923828e+01, 1.97923828e+01, 1.97923828e+01, 1.97923828e+01,
1.97808552e+01, 1.97808552e+01, 1.97808552e+01, 1.97808552e+01,
1.97709468e+01, 1.97709468e+01, 1.97709468e+01, 1.97709468e+01,
1.97654812e+01, 1.97654812e+01, 1.97654812e+01, 1.97654812e+01,
1.97477731e+01, 1.97477731e+01, 1.97477731e+01, 1.97477731e+01,
1.96722020e+01, 1.96722020e+01, 1.96722020e+01, 1.96722020e+01,
1.93272540e+01, 1.93272540e+01, 1.93272540e+01, 1.93272540e+01,
1.78485419e+01, 1.78485419e+01, 1.78485419e+01, 1.78485419e+01,
1.26228462e+01, 1.26228462e+01, 1.26228462e+01, 1.26228462e+01,
2.71270096e+00, 2.71270096e+00, 2.71270096e+00, 2.71270096e+00,
5.37681970e-02, 5.37681970e-02, 5.37681970e-02, 5.37681970e-02,
7.39978310e-05, 7.39978310e-05, 7.39978310e-05, 7.39978310e-05,
1.26879911e-08, 1.26879911e-08, 1.26879911e-08, 1.26879911e-08,
2.06933606e-12, 2.06933606e-12, 2.06933606e-12, 2.06933606e-12,
3.25161787e-16, 3.25161787e-16, 3.25161787e-16, 3.25161787e-16,
5.40240794e-20, 5.40240794e-20, 5.40240794e-20, 5.40240794e-20,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.91991427e+02, 9.91991427e+02, 9.91991427e+02, 9.91991427e+02,
9.83398788e+02, 9.83398788e+02, 9.83398788e+02, 9.83398788e+02,
9.73613696e+02, 9.73613696e+02, 9.73613696e+02, 9.73613696e+02,
9.58908504e+02, 9.58908504e+02, 9.58908504e+02, 9.58908504e+02,
9.40117970e+02, 9.40117970e+02, 9.40117970e+02, 9.40117970e+02,
9.17130377e+02, 9.17130377e+02, 9.17130377e+02, 9.17130377e+02,
8.90710253e+02, 8.90710253e+02, 8.90710253e+02, 8.90710253e+02,
8.61710068e+02, 8.61710068e+02, 8.61710068e+02, 8.61710068e+02,
8.31030081e+02, 8.31030081e+02, 8.31030081e+02, 8.31030081e+02,
7.99387307e+02, 7.99387307e+02, 7.99387307e+02, 7.99387307e+02,
7.67330949e+02, 7.67330949e+02, 7.67330949e+02, 7.67330949e+02,
7.35690337e+02, 7.35690337e+02, 7.35690337e+02, 7.35690337e+02,
7.05034804e+02, 7.05034804e+02, 7.05034804e+02, 7.05034804e+02,
6.75527261e+02, 6.75527261e+02, 6.75527261e+02, 6.75527261e+02,
6.47167439e+02, 6.47167439e+02, 6.47167439e+02, 6.47167439e+02,
6.19930743e+02, 6.19930743e+02, 6.19930743e+02, 6.19930743e+02,
5.93813015e+02, 5.93813015e+02, 5.93813015e+02, 5.93813015e+02,
5.68863894e+02, 5.68863894e+02, 5.68863894e+02, 5.68863894e+02,
5.45199993e+02, 5.45199993e+02, 5.45199993e+02, 5.45199993e+02,
5.23075190e+02, 5.23075190e+02, 5.23075190e+02, 5.23075190e+02,
5.02889600e+02, 5.02889600e+02, 5.02889600e+02, 5.02889600e+02,
4.85266432e+02, 4.85266432e+02, 4.85266432e+02, 4.85266432e+02,
4.70932260e+02, 4.70932260e+02, 4.70932260e+02, 4.70932260e+02,
4.60518670e+02, 4.60518670e+02, 4.60518670e+02, 4.60518670e+02,
4.54205957e+02, 4.54205957e+02, 4.54205957e+02, 4.54205957e+02,
4.51352380e+02, 4.51352380e+02, 4.51352380e+02, 4.51352380e+02,
4.50649917e+02, 4.50649917e+02, 4.50649917e+02, 4.50649917e+02,
4.50971173e+02, 4.50971173e+02, 4.50971173e+02, 4.50971173e+02,
4.52135940e+02, 4.52135940e+02, 4.52135940e+02, 4.52135940e+02,
4.52753679e+02, 4.52753679e+02, 4.52753679e+02, 4.52753679e+02,
4.53041751e+02, 4.53041751e+02, 4.53041751e+02, 4.53041751e+02,
4.53249156e+02, 4.53249156e+02, 4.53249156e+02, 4.53249156e+02,
4.53466954e+02, 4.53466954e+02, 4.53466954e+02, 4.53466954e+02,
4.53791825e+02, 4.53791825e+02, 4.53791825e+02, 4.53791825e+02,
4.54268545e+02, 4.54268545e+02, 4.54268545e+02, 4.54268545e+02,
4.54750752e+02, 4.54750752e+02, 4.54750752e+02, 4.54750752e+02,
4.55192196e+02, 4.55192196e+02, 4.55192196e+02, 4.55192196e+02,
4.55599122e+02, 4.55599122e+02, 4.55599122e+02, 4.55599122e+02,
4.55975922e+02, 4.55975922e+02, 4.55975922e+02, 4.55975922e+02,
4.56329221e+02, 4.56329221e+02, 4.56329221e+02, 4.56329221e+02,
4.56648137e+02, 4.56648137e+02, 4.56648137e+02, 4.56648137e+02,
4.56923106e+02, 4.56923106e+02, 4.56923106e+02, 4.56923106e+02,
4.57181465e+02, 4.57181465e+02, 4.57181465e+02, 4.57181465e+02,
4.57438180e+02, 4.57438180e+02, 4.57438180e+02, 4.57438180e+02,
4.57763252e+02, 4.57763252e+02, 4.57763252e+02, 4.57763252e+02,
4.58282193e+02, 4.58282193e+02, 4.58282193e+02, 4.58282193e+02,
4.58443493e+02, 4.58443493e+02, 4.58443493e+02, 4.58443493e+02,
4.55958160e+02, 4.55958160e+02, 4.55958160e+02, 4.55958160e+02,
4.38959204e+02, 4.38959204e+02, 4.38959204e+02, 4.38959204e+02,
3.65073159e+02, 3.65073159e+02, 3.65073159e+02, 3.65073159e+02,
1.68405632e+02, 1.68405632e+02, 1.68405632e+02, 1.68405632e+02,
1.44222649e+01, 1.44222649e+01, 1.44222649e+01, 1.44222649e+01,
7.69577756e-02, 7.69577756e-02, 7.69577756e-02, 7.69577756e-02,
1.00097351e-02, 1.00097351e-02, 1.00097351e-02, 1.00097351e-02,
1.00000015e-02, 1.00000015e-02, 1.00000015e-02, 1.00000015e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99133911, 0.99133911, 0.99133911, 0.99133911, 0.98292058,
0.98292058, 0.98292058, 0.98292058, 0.97419061, 0.97419061,
0.97419061, 0.97419061, 0.96144618, 0.96144618, 0.96144618,
0.96144618, 0.94597586, 0.94597586, 0.94597586, 0.94597586,
0.9276744 , 0.9276744 , 0.9276744 , 0.9276744 , 0.90721706,
0.90721706, 0.90721706, 0.90721706, 0.88515443, 0.88515443,
0.88515443, 0.88515443, 0.86202321, 0.86202321, 0.86202321,
0.86202321, 0.83819213, 0.83819213, 0.83819213, 0.83819213,
0.8141677 , 0.8141677 , 0.8141677 , 0.8141677 , 0.79048162,
0.79048162, 0.79048162, 0.79048162, 0.76730128, 0.76730128,
0.76730128, 0.76730128, 0.74474398, 0.74474398, 0.74474398,
0.74474398, 0.72277684, 0.72277684, 0.72277684, 0.72277684,
0.70140995, 0.70140995, 0.70140995, 0.70140995, 0.68067678,
0.68067678, 0.68067678, 0.68067678, 0.66062128, 0.66062128,
0.66062128, 0.66062128, 0.64151926, 0.64151926, 0.64151926,
0.64151926, 0.62319637, 0.62319637, 0.62319637, 0.62319637,
0.60726225, 0.60726225, 0.60726225, 0.60726225, 0.59190903,
0.59190903, 0.59190903, 0.59190903, 0.58148652, 0.58148652,
0.58148652, 0.58148652, 0.57278527, 0.57278527, 0.57278527,
0.57278527, 0.56769271, 0.56769271, 0.56769271, 0.56769271,
0.56654927, 0.56654927, 0.56654927, 0.56654927, 0.56583728,
0.56583728, 0.56583728, 0.56583728, 0.56616565, 0.56616565,
0.56616565, 0.56616565, 0.56694844, 0.56694844, 0.56694844,
0.56694844, 0.56774994, 0.56774994, 0.56774994, 0.56774994,
0.56799881, 0.56799881, 0.56799881, 0.56799881, 0.56803723,
0.56803723, 0.56803723, 0.56803723, 0.56811091, 0.56811091,
0.56811091, 0.56811091, 0.56837366, 0.56837366, 0.56837366,
0.56837366, 0.56883911, 0.56883911, 0.56883911, 0.56883911,
0.56920333, 0.56920333, 0.56920333, 0.56920333, 0.56943051,
0.56943051, 0.56943051, 0.56943051, 0.56964182, 0.56964182,
0.56964182, 0.56964182, 0.56994366, 0.56994366, 0.56994366,
0.56994366, 0.57080637, 0.57080637, 0.57080637, 0.57080637,
0.57400236, 0.57400236, 0.57400236, 0.57400236, 0.58513972,
0.58513972, 0.58513972, 0.58513972, 0.61910673, 0.61910673,
0.61910673, 0.61910673, 0.70892127, 0.70892127, 0.70892127,
0.70892127, 0.91548374, 0.91548374, 0.91548374, 0.91548374,
1.33078894, 1.33078894, 1.33078894, 1.33078894, 2.06133491,
2.06133491, 2.06133491, 2.06133491, 3.15181689, 3.15181689,
3.15181689, 3.15181689, 4.02701618, 4.02701618, 4.02701618,
4.02701618, 4.28308718, 4.28308718, 4.28308718, 4.28308718,
3.81910697, 3.81910697, 3.81910697, 3.81910697, 1.98110507,
1.98110507, 1.98110507, 1.98110507, 1.08418873, 1.08418873,
1.08418873, 1.08418873, 1.00343534, 1.00343534, 1.00343534,
1.00343534, 1.00000606, 1.00000606, 1.00000606, 1.00000606,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([3.25290090e-01, 3.25290090e-01, 3.25290090e-01, 3.25290090e-01,
6.43847125e-01, 6.43847125e-01, 6.43847125e-01, 6.43847125e-01,
9.75722154e-01, 9.75722154e-01, 9.75722154e-01, 9.75722154e-01,
1.46557297e+00, 1.46557297e+00, 1.46557297e+00, 1.46557297e+00,
2.06705518e+00, 2.06705518e+00, 2.06705518e+00, 2.06705518e+00,
2.78907819e+00, 2.78907819e+00, 2.78907819e+00, 2.78907819e+00,
3.60976834e+00, 3.60976834e+00, 3.60976834e+00, 3.60976834e+00,
4.51162281e+00, 4.51162281e+00, 4.51162281e+00, 4.51162281e+00,
5.47661724e+00, 5.47661724e+00, 5.47661724e+00, 5.47661724e+00,
6.49264130e+00, 6.49264130e+00, 6.49264130e+00, 6.49264130e+00,
7.53660887e+00, 7.53660887e+00, 7.53660887e+00, 7.53660887e+00,
8.59198431e+00, 8.59198431e+00, 8.59198431e+00, 8.59198431e+00,
9.64916487e+00, 9.64916487e+00, 9.64916487e+00, 9.64916487e+00,
1.07051453e+01, 1.07051453e+01, 1.07051453e+01, 1.07051453e+01,
1.17579310e+01, 1.17579310e+01, 1.17579310e+01, 1.17579310e+01,
1.28067954e+01, 1.28067954e+01, 1.28067954e+01, 1.28067954e+01,
1.38494448e+01, 1.38494448e+01, 1.38494448e+01, 1.38494448e+01,
1.48812924e+01, 1.48812924e+01, 1.48812924e+01, 1.48812924e+01,
1.58928454e+01, 1.58928454e+01, 1.58928454e+01, 1.58928454e+01,
1.68680207e+01, 1.68680207e+01, 1.68680207e+01, 1.68680207e+01,
1.77790951e+01, 1.77790951e+01, 1.77790951e+01, 1.77790951e+01,
1.85881715e+01, 1.85881715e+01, 1.85881715e+01, 1.85881715e+01,
1.92479302e+01, 1.92479302e+01, 1.92479302e+01, 1.92479302e+01,
1.97200343e+01, 1.97200343e+01, 1.97200343e+01, 1.97200343e+01,
1.99952626e+01, 1.99952626e+01, 1.99952626e+01, 1.99952626e+01,
2.01098122e+01, 2.01098122e+01, 2.01098122e+01, 2.01098122e+01,
2.01323555e+01, 2.01323555e+01, 2.01323555e+01, 2.01323555e+01,
2.01039208e+01, 2.01039208e+01, 2.01039208e+01, 2.01039208e+01,
2.00468661e+01, 2.00468661e+01, 2.00468661e+01, 2.00468661e+01,
2.00198405e+01, 2.00198405e+01, 2.00198405e+01, 2.00198405e+01,
2.00061051e+01, 2.00061051e+01, 2.00061051e+01, 2.00061051e+01,
1.99950115e+01, 1.99950115e+01, 1.99950115e+01, 1.99950115e+01,
1.99825634e+01, 1.99825634e+01, 1.99825634e+01, 1.99825634e+01,
1.99636417e+01, 1.99636417e+01, 1.99636417e+01, 1.99636417e+01,
1.99376749e+01, 1.99376749e+01, 1.99376749e+01, 1.99376749e+01,
1.99131873e+01, 1.99131873e+01, 1.99131873e+01, 1.99131873e+01,
1.98905974e+01, 1.98905974e+01, 1.98905974e+01, 1.98905974e+01,
1.98692438e+01, 1.98692438e+01, 1.98692438e+01, 1.98692438e+01,
1.98493625e+01, 1.98493625e+01, 1.98493625e+01, 1.98493625e+01,
1.98317370e+01, 1.98317370e+01, 1.98317370e+01, 1.98317370e+01,
1.98164911e+01, 1.98164911e+01, 1.98164911e+01, 1.98164911e+01,
1.98024735e+01, 1.98024735e+01, 1.98024735e+01, 1.98024735e+01,
1.97894710e+01, 1.97894710e+01, 1.97894710e+01, 1.97894710e+01,
1.97780897e+01, 1.97780897e+01, 1.97780897e+01, 1.97780897e+01,
1.97674568e+01, 1.97674568e+01, 1.97674568e+01, 1.97674568e+01,
1.97612054e+01, 1.97612054e+01, 1.97612054e+01, 1.97612054e+01,
1.97524408e+01, 1.97524408e+01, 1.97524408e+01, 1.97524408e+01,
1.97136422e+01, 1.97136422e+01, 1.97136422e+01, 1.97136422e+01,
1.95403967e+01, 1.95403967e+01, 1.95403967e+01, 1.95403967e+01,
1.87695037e+01, 1.87695037e+01, 1.87695037e+01, 1.87695037e+01,
1.57483105e+01, 1.57483105e+01, 1.57483105e+01, 1.57483105e+01,
7.26747736e+00, 7.26747736e+00, 7.26747736e+00, 7.26747736e+00,
4.38929043e-01, 4.38929043e-01, 4.38929043e-01, 4.38929043e-01,
2.34025635e-03, 2.34025635e-03, 2.34025635e-03, 2.34025635e-03,
7.25432818e-07, 7.25432818e-07, 7.25432818e-07, 7.25432818e-07,
1.11193400e-10, 1.11193400e-10, 1.11193400e-10, 1.11193400e-10,
1.76869480e-14, 1.76869480e-14, 1.76869480e-14, 1.76869480e-14,
2.85535124e-18, 2.85535124e-18, 2.85535124e-18, 2.85535124e-18,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87906280e+02, 9.87906280e+02, 9.87906280e+02, 9.87906280e+02,
9.76174941e+02, 9.76174941e+02, 9.76174941e+02, 9.76174941e+02,
9.64072771e+02, 9.64072771e+02, 9.64072771e+02, 9.64072771e+02,
9.46471139e+02, 9.46471139e+02, 9.46471139e+02, 9.46471139e+02,
9.25234369e+02, 9.25234369e+02, 9.25234369e+02, 9.25234369e+02,
9.00287177e+02, 9.00287177e+02, 9.00287177e+02, 9.00287177e+02,
8.72631649e+02, 8.72631649e+02, 8.72631649e+02, 8.72631649e+02,
8.43081763e+02, 8.43081763e+02, 8.43081763e+02, 8.43081763e+02,
8.12413334e+02, 8.12413334e+02, 8.12413334e+02, 8.12413334e+02,
7.81158038e+02, 7.81158038e+02, 7.81158038e+02, 7.81158038e+02,
7.49976361e+02, 7.49976361e+02, 7.49976361e+02, 7.49976361e+02,
7.19607955e+02, 7.19607955e+02, 7.19607955e+02, 7.19607955e+02,
6.90244348e+02, 6.90244348e+02, 6.90244348e+02, 6.90244348e+02,
6.62006070e+02, 6.62006070e+02, 6.62006070e+02, 6.62006070e+02,
6.34835316e+02, 6.34835316e+02, 6.34835316e+02, 6.34835316e+02,
6.08723776e+02, 6.08723776e+02, 6.08723776e+02, 6.08723776e+02,
5.83682527e+02, 5.83682527e+02, 5.83682527e+02, 5.83682527e+02,
5.59779886e+02, 5.59779886e+02, 5.59779886e+02, 5.59779886e+02,
5.37159931e+02, 5.37159931e+02, 5.37159931e+02, 5.37159931e+02,
5.16112600e+02, 5.16112600e+02, 5.16112600e+02, 5.16112600e+02,
4.97076250e+02, 4.97076250e+02, 4.97076250e+02, 4.97076250e+02,
4.80695875e+02, 4.80695875e+02, 4.80695875e+02, 4.80695875e+02,
4.67679348e+02, 4.67679348e+02, 4.67679348e+02, 4.67679348e+02,
4.58546259e+02, 4.58546259e+02, 4.58546259e+02, 4.58546259e+02,
4.53296009e+02, 4.53296009e+02, 4.53296009e+02, 4.53296009e+02,
4.51129021e+02, 4.51129021e+02, 4.51129021e+02, 4.51129021e+02,
4.50704444e+02, 4.50704444e+02, 4.50704444e+02, 4.50704444e+02,
4.51242012e+02, 4.51242012e+02, 4.51242012e+02, 4.51242012e+02,
4.52320289e+02, 4.52320289e+02, 4.52320289e+02, 4.52320289e+02,
4.52832280e+02, 4.52832280e+02, 4.52832280e+02, 4.52832280e+02,
4.53095183e+02, 4.53095183e+02, 4.53095183e+02, 4.53095183e+02,
4.53305822e+02, 4.53305822e+02, 4.53305822e+02, 4.53305822e+02,
4.53541196e+02, 4.53541196e+02, 4.53541196e+02, 4.53541196e+02,
4.53899663e+02, 4.53899663e+02, 4.53899663e+02, 4.53899663e+02,
4.54393535e+02, 4.54393535e+02, 4.54393535e+02, 4.54393535e+02,
4.54864936e+02, 4.54864936e+02, 4.54864936e+02, 4.54864936e+02,
4.55303481e+02, 4.55303481e+02, 4.55303481e+02, 4.55303481e+02,
4.55707477e+02, 4.55707477e+02, 4.55707477e+02, 4.55707477e+02,
4.56071530e+02, 4.56071530e+02, 4.56071530e+02, 4.56071530e+02,
4.56406325e+02, 4.56406325e+02, 4.56406325e+02, 4.56406325e+02,
4.56717719e+02, 4.56717719e+02, 4.56717719e+02, 4.56717719e+02,
4.56992693e+02, 4.56992693e+02, 4.56992693e+02, 4.56992693e+02,
4.57237821e+02, 4.57237821e+02, 4.57237821e+02, 4.57237821e+02,
4.57481191e+02, 4.57481191e+02, 4.57481191e+02, 4.57481191e+02,
4.57744387e+02, 4.57744387e+02, 4.57744387e+02, 4.57744387e+02,
4.58159054e+02, 4.58159054e+02, 4.58159054e+02, 4.58159054e+02,
4.58594305e+02, 4.58594305e+02, 4.58594305e+02, 4.58594305e+02,
4.57858557e+02, 4.57858557e+02, 4.57858557e+02, 4.57858557e+02,
4.50044024e+02, 4.50044024e+02, 4.50044024e+02, 4.50044024e+02,
4.10501297e+02, 4.10501297e+02, 4.10501297e+02, 4.10501297e+02,
2.72947363e+02, 2.72947363e+02, 2.72947363e+02, 2.72947363e+02,
6.00463556e+01, 6.00463556e+01, 6.00463556e+01, 6.00463556e+01,
1.21367312e+00, 1.21367312e+00, 1.21367312e+00, 1.21367312e+00,
1.08313285e-02, 1.08313285e-02, 1.08313285e-02, 1.08313285e-02,
1.00000857e-02, 1.00000857e-02, 1.00000857e-02, 1.00000857e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}]}
running none hll
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 17.76 ms [DataInserterUtility][rank=0]
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 : 4.47 us (52.9%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 17.80 us (2.7%)
patch tree reduce : 1.52 us (0.2%)
gen split merge : 862.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.1%)
LB compute : 624.55 us (95.5%)
LB move op cnt : 0
LB apply : 3.55 us (0.5%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running none hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.03 us (2.3%)
patch tree reduce : 1.86 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 456.00 us (94.6%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.6776e+05 | 65536 | 2 | 2.448e-01 | 0.0% | 2.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.5%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 411.24 us (95.2%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2705e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.669285533767566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00015641475933639762, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 355.76 us (94.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5272e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.88985905324188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00031282951867279523, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 332.74 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5085e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8737975102689832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004692442780091929, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.7%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 336.39 us (94.3%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5701e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.926716257685904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006256590373455905, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.4%)
patch tree reduce : 1.87 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 423.57 us (95.3%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4365e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8118951059214505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007820737966819881, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 351.38 us (94.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5640e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9214212095360086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009384885560183856, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 341.22 us (94.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5243e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.88736420990973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010949033153547832, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 325.71 us (94.1%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3168e+05 | 65536 | 2 | 1.976e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8498608379992283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001251318074691181, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.4%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 389.72 us (95.1%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2644e+05 | 65536 | 2 | 2.008e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.80478377526234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014077328340275786, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.4%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 22.23 us (5.2%)
LB compute : 383.88 us (90.4%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (60.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2004e+05 | 65536 | 2 | 2.048e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7498539332202085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015641475933639763, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.4%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 404.38 us (95.3%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2398e+05 | 65536 | 2 | 2.023e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7836320656703113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001720562352700374, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.5%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.30 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 370.52 us (95.0%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2166e+05 | 65536 | 2 | 2.037e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7637250456280635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018769771120367717, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.4%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 405.69 us (95.2%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8486e+05 | 65536 | 2 | 1.703e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.306774015403115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002033391871373169, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 313.01 us (94.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5569e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.915369671802713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002189806630709567, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 310.67 us (94.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6259e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9746109514355727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023462213900459646, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 331.09 us (94.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6154e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.965616157683719 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025026361493823623, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 273.98 us (93.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (60.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6978e+05 | 65536 | 2 | 1.395e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.036408299247917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00265905090871876, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 327.33 us (94.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9323e+05 | 65536 | 2 | 1.667e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3786778527590084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028154656680551577, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 312.08 us (94.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5673e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.924261933475383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0029718804273915554, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.2%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 440.12 us (95.8%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6056e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.957196551240641 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003128295186727953, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 281.33 us (93.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5223e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.885572232813185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003284709946064351, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 298.54 us (94.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6093e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.960363373017357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034411247054007485, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.4%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 387.99 us (95.2%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8049e+05 | 65536 | 2 | 1.722e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2692337991888527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003597539464737146, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.8%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 278.46 us (93.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6001e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9524788578480723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003753954224073544, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 316.65 us (94.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4878e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.85599809811604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003910368983409941, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (2.0%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 287.02 us (93.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1902e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6002505974470465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004066783742746338, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 294.41 us (94.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (60.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9544e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3977060372012824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004223198502082736, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.6%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 298.64 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1942e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6037187452531025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004379613261419133, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 2.38 us (0.7%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 307.34 us (93.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3471e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.735064905228762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00453602802075553, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 295.16 us (93.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0111e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.446422858711896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046924427800919275, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 345.03 us (94.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6853e+05 | 65536 | 2 | 1.399e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.025634328144439 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004848857539428325, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.72 us (7.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 288.84 us (87.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (60.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6257e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.974449894672486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005005272298764722, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 304.26 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7183e+05 | 65536 | 2 | 1.389e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.054018045323419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005161687058101119, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 276.13 us (93.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2284e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6330841543010974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0053181018174375165, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.4%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 371.91 us (95.2%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4353e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8108605083521936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005474516576773914, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (2.0%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 274.82 us (93.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (61.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5395e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9003985084643764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005630931336110311, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 288.49 us (93.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6741e+05 | 65536 | 2 | 1.402e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.016021987863915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005787346095446708, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.6%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 312.81 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6906e+05 | 65536 | 2 | 1.397e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0302204055076105 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005943760854783106, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 303.61 us (93.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7929e+05 | 65536 | 2 | 1.728e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.258908566758991 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006100175614119503, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.3%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 398.74 us (95.4%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6134e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.963921228885413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0062565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 331.37 us (94.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5144e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8788323791780566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006413005132792297, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 312.19 us (94.0%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6260e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.97472028446209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006569419892128695, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 2.41 us (0.8%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 295.78 us (93.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5494e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9088600277149355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006725834651465092, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.1%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 286.36 us (93.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2506e+05 | 65536 | 2 | 2.016e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7929239647708712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006882249410801489, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 361.66 us (94.8%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2873e+05 | 65536 | 2 | 1.994e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.824505228711651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0070386641701378864, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 308.11 us (94.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3131e+05 | 65536 | 2 | 1.978e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.846666715153263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007195078929474284, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 336.65 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1462e+05 | 65536 | 2 | 2.083e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7032802928215447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007351493688810681, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 324.93 us (94.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (59.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9971e+05 | 65536 | 2 | 2.187e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.57518051824437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007507908448147078, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.4%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 340.63 us (94.8%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4144e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.792896422650393 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0076643232074834755, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 292.52 us (93.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1165e+05 | 65536 | 2 | 2.103e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.677746182798124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007820737966819874, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (1.7%)
patch tree reduce : 2.27 us (0.6%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 375.31 us (94.5%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3756e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.759544441084769 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007977152726156272, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 335.04 us (94.6%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8385e+05 | 65536 | 2 | 1.707e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.298081310398279 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00813356748549267, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 323.81 us (89.2%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (61.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5502e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.909578135482798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008289982244829068, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 294.93 us (93.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3771e+05 | 65536 | 2 | 1.941e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9016263281120085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008446397004165466, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 290.35 us (87.7%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (64.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3389e+05 | 65536 | 2 | 1.963e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.868817424296986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008602811763501864, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.6%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.51 us (0.4%)
LB compute : 349.93 us (94.5%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2855e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6821707712954357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008759226522838262, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 327.08 us (94.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4589e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8311655682714947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00891564128217466, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.4%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 351.52 us (94.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3916e+05 | 65536 | 2 | 1.932e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9141142037999077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009072056041511059, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 334.47 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (59.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2884e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.684681113731064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009228470800847457, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 324.86 us (94.2%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3922e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.773870018001274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009384885560183855, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 310.87 us (94.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (59.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6453e+05 | 65536 | 2 | 1.798e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1320613338788745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009541300319520253, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 316.06 us (94.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2195e+05 | 65536 | 2 | 2.036e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7662639024315054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009697715078856651, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.51 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 346.19 us (94.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4610e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8329313660244644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00985412983819305, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 325.15 us (94.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (60.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5148e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8791867335061796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010010544597529447, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.3%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 377.03 us (95.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4145e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.79299933393036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010166959356865846, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.4%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 388.49 us (95.1%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (67.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4292e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8056463437314227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010323374116202244, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.63 us (6.8%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 339.19 us (89.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3796e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.762986294296565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010479788875538642, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 350.81 us (94.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3366e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.726042045664981 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01063620363487504, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.5%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 379.68 us (94.9%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3695e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7543412215666616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010792618394211438, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.4%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 386.00 us (95.0%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2792e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.67677259042262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010949033153547836, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.9%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 290.79 us (93.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (58.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5044e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8702256590459614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011105447912884234, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.4%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 368.84 us (94.9%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4789e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8482904727189498 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011261862672220633, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 291.32 us (93.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4813e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.850363448798929 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01141827743155703, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 313.32 us (94.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (58.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1653e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.578840803911074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011574692190893429, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.4%)
patch tree reduce : 2.33 us (0.6%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 388.32 us (94.9%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4035e+05 | 65536 | 2 | 1.926e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9243633442161454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011731106950229827, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 350.21 us (94.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9290e+05 | 65536 | 2 | 1.668e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.375855160288837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011887521709566225, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.4%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 357.38 us (94.9%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0382e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4697112671521047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012043936468902623, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 311.73 us (94.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4813e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.850357656576275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012200351228239021, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 361.91 us (94.7%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5517e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9108830744218546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01235676598757542, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 312.17 us (94.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5739e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9299742878491015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012513180746911818, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 324.51 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6200e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9695395463451923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012669595506248216, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 299.63 us (94.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6236e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.972653962685152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012826010265584614, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 294.61 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6311e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9791194634139067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012982425024921012, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 307.58 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9438e+05 | 65536 | 2 | 1.662e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3885910099929175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01313883978425741, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 290.99 us (93.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4702e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8408866504105896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013295254543593808, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.9%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 291.63 us (93.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5738e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9298657295626565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013451669302930206, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 293.32 us (93.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5361e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.897452743819988 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013608084062266605, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.6%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 358.33 us (94.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5133e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.877901789276692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013764498821603003, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 2.37 us (0.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 322.89 us (94.0%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4635e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8350673820976287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0139209135809394, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 316.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (62.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6971e+05 | 65536 | 2 | 1.773e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1765512533149844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014077328340275799, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 308.02 us (94.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5727e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.928932233263303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014233743099612197, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 335.17 us (94.5%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0124e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4475059700011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014390157858948595, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 279.17 us (93.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1072e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.528915472594986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014546572618284993, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 318.97 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6485e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.994026730110672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014702987377621391, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.1%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.37 us (0.5%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 275.73 us (93.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4389e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8139755454539643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01485940213695779, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.9%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 266.17 us (92.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4347e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.810321993870547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015015816896294188, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.4%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 383.55 us (95.2%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4257e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8026128638919423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015172231655630586, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 306.55 us (93.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2526e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.653864332517515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015328646414966984, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 275.10 us (93.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4371e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.812422243248148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015485061174303382, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 287.15 us (93.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5483e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9079438057549845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01564147593363978, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 312.31 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5054e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.871117305600144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015797890692976175, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 324.52 us (94.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4900e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.857835920798501 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01595430545231257, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 348.92 us (94.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8335e+05 | 65536 | 2 | 1.710e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.293772370980037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016110720211648968, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 352.61 us (94.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3477e+05 | 65536 | 2 | 1.958e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8763547617907435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016267134970985364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 308.19 us (94.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1375e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5549709577618995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01642354973032176, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 346.93 us (94.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1188e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.538954748648449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016579964489658157, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 315.94 us (94.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5348e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8963696789092155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016736379248994553, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 286.82 us (93.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5496e+05 | 65536 | 2 | 1.846e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.049841372252272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01689279400833095, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.4%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 354.52 us (94.8%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1846e+05 | 65536 | 2 | 2.058e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7362598518693573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017049208767667346, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.7%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 338.39 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2597e+05 | 65536 | 2 | 2.010e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.80079833530092 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017205623527003742, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 340.09 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4869e+05 | 65536 | 2 | 1.879e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9960239261473993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01736203828634014, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 339.32 us (94.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3463e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7343746240654285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017518453045676535, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 344.60 us (94.6%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3261e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7170062404023616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01767486780501293, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.48 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 314.48 us (93.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3746e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7587410810733846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017831282564349328, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 337.82 us (94.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3506e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7381280366422494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017987697323685724, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.5%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 382.68 us (94.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3785e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7620433948614633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01814411208302212, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.3%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 374.85 us (95.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2397e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6427837967352272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018300526842358517, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.5%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 360.65 us (94.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5450e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9051339073362867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018456941601694914, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 353.72 us (94.8%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5050e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8707869344687533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01861335636103131, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.4%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 361.94 us (95.0%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5249e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8878349570048703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018769771120367706, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.4%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 371.98 us (95.0%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9971e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4343550440201516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018926185879704103, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 339.97 us (94.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7061e+05 | 65536 | 2 | 1.393e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0435309663964505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0190826006390405, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.4%)
patch tree reduce : 2.11 us (0.5%)
gen split merge : 1.26 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 391.10 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (64.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5723e+05 | 65536 | 2 | 1.835e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0694029780932466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019239015398376896, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.2%)
patch tree reduce : 2.07 us (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.2%)
LB compute : 464.71 us (95.6%)
LB move op cnt : 0
LB apply : 4.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5301e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8923119805035538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019395430157713292, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 326.69 us (89.1%)
LB move op cnt : 0
LB apply : 24.69 us (6.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6853e+05 | 65536 | 2 | 1.399e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.025665094031285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01955184491704969, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.5%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 361.63 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5804e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9355217776513047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019708259676386085, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.9%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 280.59 us (93.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5321e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8940565102678377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01986467443572248, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (2.0%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 264.94 us (93.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4980e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8647705153235794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020021089195058878, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 278.51 us (93.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5597e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.917758338148826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020177503954395274, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.9%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 296.37 us (93.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4595e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8316865246374823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02033391871373167, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 301.57 us (94.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5079e+05 | 65536 | 2 | 1.868e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0140213630884944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020490333473068067, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (0.6%)
patch tree reduce : 1.76 us (0.2%)
gen split merge : 961.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.07 us (0.1%)
LB compute : 836.10 us (97.7%)
LB move op cnt : 0
LB apply : 3.92 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0612e+05 | 65536 | 2 | 2.141e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.630182292357287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020646748232404463, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.5%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 345.56 us (94.4%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3027e+05 | 65536 | 2 | 1.984e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8377119820814847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02080316299174086, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.8%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 326.80 us (94.3%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2187e+05 | 65536 | 2 | 2.036e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7655694439101444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020959577751077256, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 362.82 us (94.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3478e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7356784879656706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021115992510413652, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 315.48 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2925e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.688207813591573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02127240726975005, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 292.43 us (93.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4199e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.797664737576692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021428822029086445, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 289.24 us (93.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4174e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7954674273949522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02158523678842284, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 22.22 us (6.8%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 287.70 us (87.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3244e+05 | 65536 | 2 | 1.971e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8563386313626515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021741651547759238, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.3%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 419.55 us (95.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2570e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.657676402501228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021898066307095634, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.9%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 312.27 us (93.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3727e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.757034215676659 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02205448106643203, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.8%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 326.04 us (93.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4234e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.800672213612339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022210895825768427, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.9%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 276.22 us (93.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (60.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4252e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8021475083430936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022367310585104824, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 309.25 us (94.0%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3777e+05 | 65536 | 2 | 1.940e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9021765358203298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02252372534444122, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.1%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 276.96 us (93.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6382e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9851749514979433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022680140103777616, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 307.01 us (93.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2329e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.63695888200259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022836554863114013, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 300.66 us (93.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3879e+05 | 65536 | 2 | 1.934e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9109661267560702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02299296962245041, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 301.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (58.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4793e+05 | 65536 | 2 | 1.884e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.989425795871891 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023149384381786806, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 324.83 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5244e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.887386967623294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023305799141123202, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 286.54 us (93.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4217e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.799200088341631 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0234622139004596, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.5%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 395.61 us (95.0%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5222e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8855097885923024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023618628659795995, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (2.0%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 289.47 us (93.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (60.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4695e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8402562778028986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02377504341913239, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 306.63 us (93.9%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (59.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5450e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9051610172866087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023931458178468788, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.9%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 265.42 us (93.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5108e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.875695077399981 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024087872937805184, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.9%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 291.14 us (93.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4999e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8663620240030014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02424428769714158, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 282.79 us (93.5%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4986e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8652513007613454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024400702456477977, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 289.38 us (93.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1956e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.60490671244908 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024557117215814373, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 317.99 us (94.0%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3483e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.736124417147573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02471353197515077, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 302.72 us (93.8%)
LB move op cnt : 0
LB apply : 4.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (60.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1611e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5752712482737894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024869946734487166, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 302.67 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5639e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.921371043434135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025026361493823562, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.8%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 280.52 us (93.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4806e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8497655464263696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02518277625315996, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.80 us (7.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 285.17 us (87.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5531e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.912046191713675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025339191012496355, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.9%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 270.70 us (93.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (58.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5364e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8977500447079065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02549560577183275, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 276.09 us (93.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (60.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5235e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 1.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8866724542810265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025652020531169148, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.9%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 279.58 us (93.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (59.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5097e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.874771644667336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025808435290505544, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 307.91 us (93.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4624e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8341313029632027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02596485004984194, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (2.0%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 276.66 us (93.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5312e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.893259944437998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026121264809178337, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 294.09 us (93.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4188e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.796649087027799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026277679568514734, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 303.06 us (93.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3658e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7511692060082344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02643409432785113, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 293.79 us (93.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (59.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5024e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8684794492030914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026590509087187526, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 300.50 us (93.8%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2748e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6729427459584296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026746923846523923, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 294.44 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5088e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.874045475677398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02690333860586032, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 331.15 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4129e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7916378975929033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027059753365196716, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 307.02 us (94.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (59.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4551e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.827880810200678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027216168124533112, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 289.98 us (93.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (57.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8020e+05 | 65536 | 2 | 2.339e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4075322482895043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02737258288386951, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.2%)
patch tree reduce : 1.86 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 414.58 us (95.5%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5164e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.880531736576228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027528997643205905, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.0%)
patch tree reduce : 1.73 us (0.3%)
gen split merge : 931.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 612.58 us (96.6%)
LB move op cnt : 0
LB apply : 4.12 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4691e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.839881269580412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0276854124025423, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 263.34 us (93.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6458e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9917489635736687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027841827161878697, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.9%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 273.22 us (93.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5884e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9423678968838685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027998241921215094, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 295.46 us (93.8%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5644e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9217464054818443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02815465668055149, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 286.13 us (93.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5248e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8877534357052634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028311071439887887, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 300.93 us (93.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5216e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8850314021515717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028467486199224283, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 330.95 us (94.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (57.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5651e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9223709482151095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02862390095856068, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 307.33 us (94.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5503e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.909641328567947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028780315717897076, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (2.1%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 263.88 us (92.9%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6671e+05 | 65536 | 2 | 1.404e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.009993798434655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028936730477233472, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 330.88 us (94.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6532e+05 | 65536 | 2 | 1.408e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9980873814984608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02909314523656987, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (2.1%)
patch tree reduce : 2.21 us (0.8%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 263.82 us (92.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (59.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5542e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.913044935493432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029249559995906265, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 280.36 us (93.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4747e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8447409376779387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02940597475524266, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 313.34 us (94.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6570e+05 | 65536 | 2 | 1.407e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.001322261705893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029562389514579058, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 327.35 us (94.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6698e+05 | 65536 | 2 | 1.403e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.012321715989751 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029718804273915454, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.5%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 354.59 us (94.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2974e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.692359005008072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02987521903325185, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.4%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 338.49 us (94.8%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (62.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4616e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8334928629379723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030031633792588247, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 321.06 us (94.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4596e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8317799483472443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030188048551924643, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 329.91 us (94.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6158e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.965938669479539 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03034446331126104, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.7%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 286.50 us (93.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5535e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.91240422151987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030500878070597436, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 290.59 us (93.9%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (60.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6121e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9627548411860456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030657292829933833, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 320.47 us (94.2%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (67.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5520e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9111716970789367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03081370758927023, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 285.11 us (93.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (60.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5966e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9494269232471204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030970122348606625, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 307.68 us (93.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5246e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.887620571635018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031126537107943022, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (2.0%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 288.58 us (93.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (61.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8625e+05 | 65536 | 2 | 1.697e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3186949867647306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03128295186727942, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 356.80 us (94.8%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5307e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.892869157821041 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03143936662661582, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.1%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 277.36 us (93.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (59.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5070e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8724827900635286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03159578138595222, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 2.36 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 307.80 us (94.0%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5133e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8778872077032283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03175219614528862, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 283.82 us (93.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (58.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5313e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8933486420412464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03190861090462502, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 277.35 us (93.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5158e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.880037464151551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03206502566396142, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 302.61 us (93.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5448e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9049678975687825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03222144042329782, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (2.1%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 274.77 us (93.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6216e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.97090126440603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03237785518263422, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 318.36 us (94.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3942e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.775557713606954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03253426994197062, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 313.34 us (94.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5357e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8971564592787646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03269068470130702, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.8%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 280.16 us (93.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (59.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5525e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9115642107490873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03284709946064342, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 299.41 us (94.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5577e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.915996161115792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03300351421997982, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 27.17 us (8.2%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 288.15 us (87.3%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2125e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.619433327454482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03315992897931622, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 304.61 us (93.8%)
LB move op cnt : 0
LB apply : 4.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9416e+05 | 65536 | 2 | 1.663e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.386692607755464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033316343738652617, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.9%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 271.69 us (93.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (58.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5755e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.931299165566036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033472758497989016, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.40 us (0.4%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 298.54 us (93.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7332e+05 | 65536 | 2 | 1.756e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.207567253303549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033629173257325416, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 340.75 us (94.2%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (61.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6680e+05 | 65536 | 2 | 1.404e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0107944866853495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033785588016661816, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.8%)
patch tree reduce : 2.31 us (0.8%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 271.31 us (93.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0834e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5084924660266887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033942002775998216, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 314.93 us (94.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9831e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4223469228704415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034098417535334616, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.8%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 288.21 us (93.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6373e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9844349812030266 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034254832294671016, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.7%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 325.71 us (94.1%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6846e+05 | 65536 | 2 | 1.399e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.025037407614358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034411247054007416, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 338.02 us (94.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6322e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9800425862754465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034567661813343815, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 304.11 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5363e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8976053274306404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034724076572680215, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.6%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 301.01 us (82.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (66.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5403e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9011179157303313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034880491332016615, dt = 0.00011950866798338816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 306.00 us (93.8%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7439e+05 | 65536 | 2 | 1.750e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4577726766995096 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 400.90961760500005 (s) [Godunov][rank=0]
running minmod rusanov
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.44 ms [DataInserterUtility][rank=0]
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 : 3.95 us (56.1%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (0.5%)
patch tree reduce : 1.03 us (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 367.84 us (96.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.70 us (2.8%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 355.19 us (93.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4895e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 323.49 us (94.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9685e+05 | 65536 | 2 | 1.651e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4097478608220677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00015641475933639762, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 318.31 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5511e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.91036023940996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00031282951867279523, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 305.32 us (94.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (55.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6017e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9538360567003674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004692442780091929, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 276.17 us (93.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5987e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9512782962957447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006256590373455905, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 300.14 us (94.1%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2502e+05 | 65536 | 2 | 2.016e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.792629027957902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007820737966819881, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.3%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 406.73 us (95.6%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9143e+05 | 65536 | 2 | 1.674e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3631739088095567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009384885560183856, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 312.94 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5701e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9267103429970063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010949033153547832, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 323.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4080e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7874466909101954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001251318074691181, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 304.76 us (93.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5507e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.910030548543572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014077328340275786, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 306.49 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3962e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.777238152490589 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015641475933639763, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 322.07 us (94.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5642e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9216541150338418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001720562352700374, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 304.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5336e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8952924972550953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018769771120367717, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 279.74 us (93.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4546e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.827432403810552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002033391871373169, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 292.58 us (93.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5214e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8848836609834314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002189806630709567, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (0.8%)
patch tree reduce : 1.53 us (0.2%)
gen split merge : 1.29 us (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.1%)
LB compute : 703.38 us (97.2%)
LB move op cnt : 0
LB apply : 3.86 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (65.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3350e+05 | 65536 | 2 | 1.965e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8654945815209714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023462213900459646, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.64 us (0.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 321.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2089e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6162990764679734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025026361493823623, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.9%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 316.77 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3593e+05 | 65536 | 2 | 1.951e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8863233328299147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00265905090871876, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.4%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 367.46 us (95.0%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3633e+05 | 65536 | 2 | 1.949e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.889801446670573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028154656680551577, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.3%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 379.67 us (95.3%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2476e+05 | 65536 | 2 | 2.018e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7903905350614138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0029718804273915554, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.4%)
patch tree reduce : 1.85 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 397.88 us (95.3%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2429e+05 | 65536 | 2 | 2.021e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.786299065586966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003128295186727953, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 355.85 us (94.9%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2679e+05 | 65536 | 2 | 2.005e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.807843300083719 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003284709946064351, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 348.00 us (94.7%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2378e+05 | 65536 | 2 | 2.024e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7819594425139798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034411247054007485, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.2%)
patch tree reduce : 1.78 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 406.00 us (95.6%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3384e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.727632516244536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003597539464737146, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.1%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 310.66 us (93.4%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8205e+05 | 65536 | 2 | 1.715e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2826121134634483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003753954224073544, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.9%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 275.25 us (93.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5054e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8710886437038763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003910368983409941, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 316.58 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4915e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.85913563471453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004066783742746338, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.4%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 364.93 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5356e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.897077000965861 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004223198502082736, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 303.07 us (93.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1036e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.525845268851431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004379613261419133, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.3%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 397.53 us (95.5%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6442e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9903880690932985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00453602802075553, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (2.0%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 265.46 us (93.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (58.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5092e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.874358329432768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046924427800919275, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.4%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 358.15 us (94.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5808e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9358793031155983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004848857539428325, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.9%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 304.03 us (94.0%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6046e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.95636969384022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005005272298764722, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 307.86 us (93.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5649e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.922184564410226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005161687058101119, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 304.15 us (94.0%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5785e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.933935469712218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0053181018174375165, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 306.05 us (93.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6338e+05 | 65536 | 2 | 1.414e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.981443951297865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005474516576773914, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (2.0%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 271.80 us (93.0%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (58.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2916e+05 | 65536 | 2 | 1.991e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.828171056837737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005630931336110311, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 326.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (65.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3091e+05 | 65536 | 2 | 1.980e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.843187513977062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005787346095446708, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 350.15 us (94.7%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8911e+05 | 65536 | 2 | 1.684e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3433098314233547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005943760854783106, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 324.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3398e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7288238406582517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006100175614119503, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.5%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 361.95 us (94.4%)
LB move op cnt : 0
LB apply : 4.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3819e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7649849019391435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0062565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 356.51 us (94.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (66.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5335e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8952202284900777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006413005132792297, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 290.05 us (93.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (60.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3859e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.768428658057711 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006569419892128695, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.1%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 273.96 us (93.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0956e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5190126247041094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006725834651465092, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 298.85 us (93.8%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3483e+05 | 65536 | 2 | 1.957e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8769018348150874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006882249410801489, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.4%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 372.82 us (94.9%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2051e+05 | 65536 | 2 | 2.045e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7538863190034166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0070386641701378864, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.2%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 413.83 us (91.2%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (66.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3723e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.897522789060657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007195078929474284, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.5%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.3%)
LB compute : 367.50 us (95.0%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1885e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5988179168112864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007351493688810681, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 103.57 us (23.1%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 330.54 us (73.7%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4043e+05 | 65536 | 2 | 1.925e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9250226092617515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007507908448147078, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 335.44 us (94.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2828e+05 | 65536 | 2 | 1.996e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.820639538955067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0076643232074834755, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 343.65 us (94.7%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2857e+05 | 65536 | 2 | 1.995e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.823107141541596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007820737966819874, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 294.52 us (93.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3266e+05 | 65536 | 2 | 1.970e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.858292275837326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007977152726156272, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (0.7%)
patch tree reduce : 1.76 us (0.2%)
gen split merge : 921.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.1%)
LB compute : 856.06 us (97.5%)
LB move op cnt : 0
LB apply : 4.39 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (68.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2272e+05 | 65536 | 2 | 2.031e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7728197829775554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00813356748549267, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 346.48 us (94.7%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (70.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9541e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.397375765280328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008289982244829068, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 307.88 us (94.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4161e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.794346791063942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008446397004165466, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 319.55 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (63.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1831e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5941632605221487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008602811763501864, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 317.51 us (94.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5310e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8930875138652326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008759226522838262, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 320.73 us (94.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0708e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.497696189007194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00891564128217466, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.7%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 271.53 us (93.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5387e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.899723604574697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009072056041511059, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (2.0%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 265.97 us (93.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (66.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5302e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.892398643848767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009228470800847457, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 285.79 us (93.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (59.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5420e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.902512088343412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009384885560183855, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 274.30 us (87.4%)
LB move op cnt : 0
LB apply : 24.72 us (7.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3937e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7751542318548963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009541300319520253, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 275.00 us (93.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (60.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4072e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.786718732169262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009697715078856651, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (2.1%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 275.28 us (93.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3982e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7790010652338055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00985412983819305, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 281.35 us (93.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5966e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9494616323046317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010010544597529447, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 276.38 us (93.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6163e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9663829038418115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010166959356865846, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 276.96 us (93.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5782e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9336254512165207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010323374116202244, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 270.30 us (93.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5254e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.888270296202123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010479788875538642, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 301.88 us (94.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5924e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.945866740457106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01063620363487504, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 304.81 us (94.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5775e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9330410531866047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010792618394211438, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 307.32 us (94.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5565e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9149724744810617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010949033153547836, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 336.75 us (94.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (64.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3895e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7715111111641595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011105447912884234, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 303.12 us (94.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5974e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9501508705322603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011261862672220633, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 317.15 us (94.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5273e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8899350196843496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01141827743155703, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.8%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 278.71 us (93.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5352e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8966716683515057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011574692190893429, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 313.60 us (94.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5523e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9114149881306206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011731106950229827, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.9%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 272.87 us (93.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4586e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8308607455888257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011887521709566225, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 301.38 us (93.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5507e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.909996529087791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012043936468902623, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 275.57 us (93.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0281e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4609956195039597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012200351228239021, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 305.56 us (93.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7784e+05 | 65536 | 2 | 1.734e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2464437724419803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01235676598757542, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.83 us (1.5%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 308.80 us (94.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5596e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.917656286604113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012513180746911818, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 295.82 us (93.9%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6739e+05 | 65536 | 2 | 1.402e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.015908910194776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012669595506248216, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.9%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 268.13 us (93.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3299e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7203118655090885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012826010265584614, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 327.20 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9559e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3989443442547342 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012982425024921012, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 324.26 us (94.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8026e+05 | 65536 | 2 | 1.723e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2672262505992244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01313883978425741, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 300.02 us (94.0%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5412e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9018726286646856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013295254543593808, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 287.48 us (93.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (60.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1982e+05 | 65536 | 2 | 2.049e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.747894609851554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013451669302930206, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 341.91 us (94.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4202e+05 | 65536 | 2 | 1.916e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9386479572049953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013608084062266605, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 296.95 us (94.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (60.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4380e+05 | 65536 | 2 | 1.906e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.95393855334738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013764498821603003, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 307.99 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3448e+05 | 65536 | 2 | 1.959e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.873858169644367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0139209135809394, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 300.19 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3616e+05 | 65536 | 2 | 1.950e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.888300534741339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014077328340275799, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.5%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 329.08 us (94.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3274e+05 | 65536 | 2 | 1.970e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.858980451230357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014233743099612197, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 311.09 us (94.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3765e+05 | 65536 | 2 | 1.941e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9011112592621533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014390157858948595, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 295.17 us (93.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4677e+05 | 65536 | 2 | 1.890e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9794775654986756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014546572618284993, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 328.64 us (94.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3156e+05 | 65536 | 2 | 1.977e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.848804515094175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014702987377621391, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 302.20 us (94.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4085e+05 | 65536 | 2 | 1.923e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.928615144930102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01485940213695779, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 343.87 us (94.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4020e+05 | 65536 | 2 | 1.926e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.923051835446295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015015816896294188, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 310.34 us (94.1%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3933e+05 | 65536 | 2 | 1.931e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.915569079222396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015172231655630586, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.5%)
patch tree reduce : 2.32 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 367.36 us (94.9%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4729e+05 | 65536 | 2 | 1.887e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.983914631355407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015328646414966984, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 361.51 us (94.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3088e+05 | 65536 | 2 | 1.981e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8429200023809496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015485061174303382, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 300.24 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4429e+05 | 65536 | 2 | 1.904e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.958169059889456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01564147593363978, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 361.79 us (94.8%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3863e+05 | 65536 | 2 | 1.935e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9095683383962108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015797890692976175, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 295.22 us (94.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (59.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3968e+05 | 65536 | 2 | 1.929e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9185775688673434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01595430545231257, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 361.66 us (94.7%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3300e+05 | 65536 | 2 | 1.968e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8611776882624467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016110720211648968, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.4%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 351.42 us (94.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3499e+05 | 65536 | 2 | 1.956e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.878238465966735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016267134970985364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.5%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 328.21 us (94.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3861e+05 | 65536 | 2 | 1.935e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.909405964346851 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01642354973032176, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 291.42 us (87.5%)
LB move op cnt : 0
LB apply : 25.66 us (7.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4138e+05 | 65536 | 2 | 1.920e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.933167643253578 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016579964489658157, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.4%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 341.91 us (94.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3508e+05 | 65536 | 2 | 1.956e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.879086689242837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016736379248994553, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 324.00 us (94.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4646e+05 | 65536 | 2 | 1.892e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9767980614059097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01689279400833095, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 291.81 us (93.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (60.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3115e+05 | 65536 | 2 | 1.979e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8453232094193597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017049208767667346, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 295.89 us (94.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2693e+05 | 65536 | 2 | 2.005e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.809023747939127 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017205623527003742, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 331.41 us (94.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (66.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0803e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5058665337693866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01736203828634014, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 308.83 us (94.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4919e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8595109479473475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017518453045676535, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 323.14 us (94.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (61.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3876e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7699113792961145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01767486780501293, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 318.90 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (61.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2245e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6297501275006785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017831282564349328, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 318.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5300e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8922513372910226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017987697323685724, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 319.06 us (94.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2702e+05 | 65536 | 2 | 2.004e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.809762832921318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01814411208302212, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (1.3%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 347.02 us (95.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3110e+05 | 65536 | 2 | 1.979e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8448355511467067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018300526842358517, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 297.79 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2919e+05 | 65536 | 2 | 1.991e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.828476191839045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018456941601694914, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 342.50 us (94.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1935e+05 | 65536 | 2 | 2.052e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7439169631143345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01861335636103131, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.5%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 340.56 us (94.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (67.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2917e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.687508926968322 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018769771120367706, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.9%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 274.61 us (93.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0019e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.43850132183032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018926185879704103, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (2.0%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 269.60 us (93.3%)
LB move op cnt : 0
LB apply : 3.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5266e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.889334006601984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0190826006390405, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 277.13 us (93.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0991e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.521966846454486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019239015398376896, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 325.03 us (94.3%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5312e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.893286405242316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019395430157713292, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 318.14 us (94.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3803e+05 | 65536 | 2 | 1.939e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9043925328907583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01955184491704969, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.4%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 334.67 us (94.7%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3560e+05 | 65536 | 2 | 1.953e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.883546415183623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019708259676386085, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (2.0%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 267.55 us (93.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (60.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0392e+05 | 65536 | 2 | 2.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.611346056284118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01986467443572248, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 351.97 us (94.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2592e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6595778348374455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020021089195058878, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 328.55 us (94.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2877e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6840225605398986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020177503954395274, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.4%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 363.52 us (95.1%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5304e+05 | 65536 | 2 | 1.856e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.033350719392763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02033391871373167, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.4%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 358.20 us (94.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3552e+05 | 65536 | 2 | 1.953e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.882868532537113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020490333473068067, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 308.95 us (94.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (57.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4379e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.813126524852959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020646748232404463, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.9%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 284.85 us (93.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5263e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8890611683642717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02080316299174086, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 303.42 us (94.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5460e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.905977715088597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020959577751077256, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.4%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 380.28 us (95.0%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4981e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.864799481627579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021115992510413652, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 324.41 us (94.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (64.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5278e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8902986086961264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02127240726975005, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 323.05 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4613e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8332098498113685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021428822029086445, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 300.37 us (94.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (59.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4078e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7872107569008295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02158523678842284, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (2.0%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 287.22 us (93.5%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3223e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.713749028540601 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021741651547759238, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 280.83 us (93.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4057e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7854576098671475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021898066307095634, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 313.06 us (94.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4507e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.824070546052092 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02205448106643203, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 327.99 us (94.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6597e+05 | 65536 | 2 | 1.791e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1444435113185896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022210895825768427, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 288.64 us (93.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (60.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4735e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8436911648505894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022367310585104824, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 313.43 us (94.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5321e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8940141510174318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02252372534444122, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 320.26 us (94.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (61.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3770e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.760778984913044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022680140103777616, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.5%)
patch tree reduce : 2.11 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 371.86 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (66.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4389e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8139600198579715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022836554863114013, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.2%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 288.21 us (92.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (62.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2957e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6909467125084086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02299296962245041, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.6%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 382.35 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (67.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6366e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9837973682168304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023149384381786806, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.45 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 306.18 us (93.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6669e+05 | 65536 | 2 | 1.404e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.009831060724062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023305799141123202, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.0%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 274.01 us (93.2%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (64.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5391e+05 | 65536 | 2 | 1.852e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0408156998804095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0234622139004596, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.9%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 307.14 us (93.3%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3979e+05 | 65536 | 2 | 1.929e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.919521910408239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023618628659795995, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.2%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 280.43 us (93.0%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (66.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3493e+05 | 65536 | 2 | 1.957e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8778002458923058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02377504341913239, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.8%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 335.25 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4026e+05 | 65536 | 2 | 1.926e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9235655721882514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023931458178468788, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 301.72 us (94.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4237e+05 | 65536 | 2 | 1.914e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9416789936118732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024087872937805184, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 315.64 us (94.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3774e+05 | 65536 | 2 | 1.940e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9019044940872183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02424428769714158, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 307.34 us (93.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4010e+05 | 65536 | 2 | 1.927e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.922194512383042 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024400702456477977, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 295.54 us (94.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4074e+05 | 65536 | 2 | 1.923e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.927647331702517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024557117215814373, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.0%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 305.54 us (93.7%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4539e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8268667769131586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02471353197515077, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 285.41 us (93.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (59.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4244e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.801484822388672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024869946734487166, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 280.52 us (93.2%)
LB move op cnt : 0
LB apply : 3.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4668e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8379307850291187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025026361493823562, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 299.59 us (94.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5024e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.868511686957065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02518277625315996, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 310.81 us (94.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9660e+05 | 65536 | 2 | 1.652e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.407603908865457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025339191012496355, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 287.86 us (93.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (59.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5717e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.928083987512959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02549560577183275, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (2.0%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 264.27 us (93.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (56.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5687e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.925479872837937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025652020531169148, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.5%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 354.10 us (94.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6452e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9912175812466604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025808435290505544, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 292.88 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6419e+05 | 65536 | 2 | 1.412e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.988417889940645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02596485004984194, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 368.06 us (94.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (70.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7790e+05 | 65536 | 2 | 1.734e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2469423193299134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026121264809178337, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 289.37 us (93.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6107e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9615909792188164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026277679568514734, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 327.22 us (94.2%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5152e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8795431839796506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02643409432785113, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 310.43 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3512e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.738579837891391 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026590509087187526, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 301.56 us (93.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3695e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.754301496962012 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026746923846523923, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 292.60 us (93.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4946e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.861785760827888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02690333860586032, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 274.71 us (86.7%)
LB move op cnt : 0
LB apply : 26.04 us (8.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4305e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8067061365434713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027059753365196716, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 316.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4524e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8255232089159286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027216168124533112, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 291.12 us (93.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3873e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.769605197632189 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02737258288386951, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 312.37 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4883e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.856423483848284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027528997643205905, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.1%)
patch tree reduce : 2.47 us (0.8%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 292.03 us (93.0%)
LB move op cnt : 0
LB apply : 4.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4784e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8479005623882285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0276854124025423, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.1%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 280.44 us (93.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3873e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.769608478246944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027841827161878697, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 329.94 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4269e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.803659482598403 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027998241921215094, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.4%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 378.16 us (94.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3334e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.72333239662179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02815465668055149, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 283.93 us (87.1%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2462e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.648360575228829 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028311071439887887, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 320.04 us (94.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4973e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.864174256078412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028467486199224283, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 288.15 us (93.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3060e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6997986920374153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02862390095856068, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 314.02 us (94.1%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (59.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4900e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.857875382110782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028780315717897076, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.9%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 279.45 us (93.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (58.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4629e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8345632103858005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028936730477233472, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 314.92 us (94.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4579e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8302973357860823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02909314523656987, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 338.15 us (94.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4974e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.864176934351447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029249559995906265, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 2.81 us (0.8%)
gen split merge : 2.36 us (0.7%)
split / merge op : 0/0
apply split merge : 2.84 us (0.8%)
LB compute : 319.41 us (92.8%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1656e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.579158798127283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02940597475524266, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 306.37 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2264e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.631402359322258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029562389514579058, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 317.83 us (94.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8947e+05 | 65536 | 2 | 1.683e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.346372799122614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029718804273915454, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 299.19 us (93.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8255e+05 | 65536 | 2 | 1.713e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2869540865756752 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02987521903325185, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 335.01 us (94.2%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2336e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6375598037274592 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030031633792588247, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (0.8%)
patch tree reduce : 1.69 us (0.2%)
gen split merge : 1.03 us (0.1%)
split / merge op : 0/0
apply split merge : 1.01 us (0.1%)
LB compute : 706.71 us (97.2%)
LB move op cnt : 0
LB apply : 3.61 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (64.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4725e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8428260582368896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030188048551924643, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 341.54 us (94.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4489e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8225899219309234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03034446331126104, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 282.58 us (93.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4890e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.856985623912749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030500878070597436, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 305.28 us (93.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4420e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.816589935358347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030657292829933833, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 319.72 us (94.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2572e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6578745642873667 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03081370758927023, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (0.1%)
patch tree reduce : 2.00 us (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1.24 us (0.0%)
LB compute : 6.22 ms (99.6%)
LB move op cnt : 0
LB apply : 4.22 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (69.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7450e+05 | 65536 | 2 | 1.750e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.217752826888509 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030970122348606625, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (2.0%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 271.46 us (93.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5177e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8816749949017937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031126537107943022, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.9%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 304.03 us (93.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (65.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3907e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.772523186802695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03128295186727942, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.9%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 277.41 us (93.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5077e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.873051992976638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03143936662661582, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.8%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 269.30 us (93.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3032e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.697358826464034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03159578138595222, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.5%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 343.89 us (94.6%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5718e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.928134188507141 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03175219614528862, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 312.92 us (94.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3486e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.736346095284141 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03190861090462502, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.1%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 271.84 us (93.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9266e+05 | 65536 | 2 | 1.669e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.373817602779543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03206502566396142, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 292.88 us (93.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5140e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8784840201481354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03222144042329782, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 292.39 us (93.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5325e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.894361319383318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03237785518263422, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 303.48 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5364e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8977472117721748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03253426994197062, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 319.18 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5916e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.94518615533594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03269068470130702, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 292.55 us (93.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4639e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8354116687316893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03284709946064342, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 298.16 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5245e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8875344966698235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03300351421997982, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (2.0%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 276.08 us (93.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (59.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6072e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9585448313764227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03315992897931622, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 301.08 us (94.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8989e+05 | 65536 | 2 | 1.681e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.349963320464828 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033316343738652617, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 318.37 us (94.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5466e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9065349635016986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033472758497989016, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.7%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 369.38 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (60.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3018e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.696161243991098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033629173257325416, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 282.01 us (93.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5008e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.867129587005106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033785588016661816, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 318.46 us (94.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4190e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.796833126178518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033942002775998216, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.6%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 340.33 us (94.1%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (64.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4714e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8418416536420876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034098417535334616, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 325.86 us (94.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3847e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.767403729808836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034254832294671016, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 313.04 us (94.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4589e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.831175265009226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034411247054007416, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 316.22 us (93.9%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4592e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.831415796307065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034567661813343815, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 321.83 us (94.5%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4922e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8597121113932897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034724076572680215, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 293.72 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1434e+05 | 65536 | 2 | 2.085e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.700852131449574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034880491332016615, dt = 0.00011950866798338816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 412.65 us (94.9%)
LB move op cnt : 0
LB apply : 4.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (66.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2115e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7647573191155685 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 437.685566122 (s) [Godunov][rank=0]
running minmod hll
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.80 ms [DataInserterUtility][rank=0]
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 : 4.73 us (60.0%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (0.4%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 338.31 us (96.6%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.77 us (3.0%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 368.01 us (93.2%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3067e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.9%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 269.29 us (93.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2662e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6655333011806923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00015641475933639762, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 280.86 us (93.6%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (60.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3339e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7237800126030187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00031282951867279523, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 277.09 us (93.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (60.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8148e+05 | 65536 | 2 | 1.718e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.27770310998929 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004692442780091929, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 286.10 us (93.7%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4905e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8583172823574965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006256590373455905, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 306.06 us (94.0%)
LB move op cnt : 0
LB apply : 4.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (57.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4454e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8195722083331964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007820737966819881, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.0%)
patch tree reduce : 1.41 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 278.18 us (93.3%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4604e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8324356851703114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009384885560183856, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 285.29 us (93.7%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (59.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4162e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.794468727947246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010949033153547832, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 317.89 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (58.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4778e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8473404363466868 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001251318074691181, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 356.69 us (94.5%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4345e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8101746464411614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014077328340275786, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.5%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 342.95 us (94.5%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3917e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7733959675852513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015641475933639763, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 282.93 us (93.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4283e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8048057316967565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001720562352700374, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 344.11 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6310e+05 | 65536 | 2 | 1.805e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.119822545981051 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018769771120367717, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 305.76 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (57.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1480e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5640263791994946 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002033391871373169, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 302.80 us (94.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3194e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7112826630126405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002189806630709567, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 305.65 us (94.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1511e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5666339435847996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023462213900459646, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.9%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 270.55 us (93.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8093e+05 | 65536 | 2 | 1.720e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.273016559811718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025026361493823623, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 288.08 us (93.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5289e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8912918709668047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00265905090871876, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (2.0%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 267.09 us (93.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (57.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5325e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.894386125264028 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028154656680551577, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 300.70 us (94.0%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4850e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.853548201098728 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0029718804273915554, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 335.74 us (94.5%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3254e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7163958813293227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003128295186727953, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.8%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 278.70 us (93.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (58.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3431e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.731664494492672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003284709946064351, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 314.80 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (61.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3110e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7040378202136086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034411247054007485, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.43 us (0.5%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 287.78 us (93.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (61.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3334e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.723326389415966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003597539464737146, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 321.56 us (94.2%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3208e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7125153015285943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003753954224073544, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 319.21 us (93.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3014e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.695803102924327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003910368983409941, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 296.30 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (58.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2349e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6386519421167187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004066783742746338, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 271.27 us (93.2%)
LB move op cnt : 0
LB apply : 4.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (58.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4404e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8152271795344315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004223198502082736, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (2.0%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 281.26 us (93.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3267e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7175381865579498 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004379613261419133, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 288.86 us (93.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (60.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3944e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.775696446202451 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00453602802075553, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 321.95 us (94.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3252e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7162577933207985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046924427800919275, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.8%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 284.02 us (93.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (60.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1564e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5711886231478807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004848857539428325, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 326.80 us (94.2%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3825e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.765504154968076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005005272298764722, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.0%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 284.13 us (93.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3937e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7751567628392353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005161687058101119, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 314.01 us (94.0%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4058e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7855467823524283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0053181018174375165, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 315.90 us (94.2%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4316e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.807656651961477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005474516576773914, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 338.73 us (94.5%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3145e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7070684579074156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005630931336110311, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 291.88 us (93.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (62.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3779e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.761551102834842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005787346095446708, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.8%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 288.99 us (93.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (60.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4712e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.841750333513716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005943760854783106, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 280.56 us (93.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4528e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8259192551401617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006100175614119503, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 293.44 us (94.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (61.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4207e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7983173297007866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0062565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.4%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 327.12 us (89.1%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4190e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7968223992451153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006413005132792297, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 307.99 us (94.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2587e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6591673006833334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006569419892128695, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 280.87 us (93.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (59.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4843e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.852976780478835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006725834651465092, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 301.94 us (94.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7098e+05 | 65536 | 2 | 1.767e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1875113018977297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006882249410801489, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 344.92 us (94.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (58.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3553e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.742115642080818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0070386641701378864, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 331.94 us (94.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4476e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.821416284303424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007195078929474284, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 283.91 us (93.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3615e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.747483120188043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007351493688810681, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (2.0%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 274.59 us (93.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4698e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8404940217151546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007507908448147078, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.1%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 284.44 us (93.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (67.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4410e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8157232538596424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0076643232074834755, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1.42 us (0.5%)
gen split merge : 1.43 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 294.71 us (93.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (61.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3417e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.730404998010204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007820737966819874, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 284.23 us (93.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3039e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6979863106576323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007977152726156272, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.9%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 309.57 us (93.6%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2846e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6813476426184373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00813356748549267, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 271.40 us (93.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3330e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7229672971254537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008289982244829068, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 298.01 us (93.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3921e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7737185466409784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008446397004165466, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (2.0%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 263.69 us (93.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (59.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5085e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.873715324096521 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008602811763501864, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.9%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 293.93 us (93.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3929e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.774409384103399 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008759226522838262, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 281.18 us (86.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2349e+05 | 65536 | 2 | 2.026e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.779503218534821 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00891564128217466, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (0.5%)
patch tree reduce : 1.73 us (0.2%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.1%)
LB compute : 997.74 us (98.1%)
LB move op cnt : 0
LB apply : 3.86 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6779e+05 | 65536 | 2 | 1.782e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.160121915696063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009072056041511059, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.8%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 321.06 us (93.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2183e+05 | 65536 | 2 | 2.036e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7651854846579043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009228470800847457, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.4%)
patch tree reduce : 1.87 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 417.94 us (95.4%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1914e+05 | 65536 | 2 | 2.054e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7420933644896177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009384885560183855, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.4%)
patch tree reduce : 2.24 us (0.5%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 409.93 us (95.2%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (62.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5630e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9206236741216918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009541300319520253, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.3%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 370.32 us (95.0%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0934e+05 | 65536 | 2 | 2.119e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.657845628145018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009697715078856651, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 338.60 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4632e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8348375699091304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00985412983819305, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 278.64 us (93.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (59.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1655e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.579056107502246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010010544597529447, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 328.57 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (64.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7453e+05 | 65536 | 2 | 1.750e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.218030282971645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010166959356865846, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 300.25 us (93.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (57.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9052e+05 | 65536 | 2 | 1.678e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.355358084242666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010323374116202244, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.8%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 272.86 us (93.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (59.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2994e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6941250369378063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010479788875538642, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 327.85 us (94.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4317e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.807772210317957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01063620363487504, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.1%)
patch tree reduce : 1.48 us (0.3%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 454.46 us (95.9%)
LB move op cnt : 0
LB apply : 3.74 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (60.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9626e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4047190078289074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010792618394211438, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (2.0%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 271.71 us (93.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5622e+05 | 65536 | 2 | 1.840e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.060647747011194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010949033153547836, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (2.0%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 271.56 us (92.9%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1055e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.527468764989068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011105447912884234, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.9%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 272.31 us (93.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4876e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.855809889334383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011261862672220633, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 301.70 us (93.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (60.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2562e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.656977946530677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01141827743155703, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (2.1%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 273.16 us (93.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (59.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3946e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7758883595541928 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011574692190893429, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.9%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 319.15 us (94.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5210e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8845066931675762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011731106950229827, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (0.8%)
patch tree reduce : 1.50 us (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 664.77 us (97.2%)
LB move op cnt : 0
LB apply : 3.57 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (59.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4732e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.843435002343196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011887521709566225, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 315.56 us (94.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4281e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.804652178193185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012043936468902623, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 291.73 us (93.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4230e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8002932518517265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012200351228239021, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 295.14 us (94.0%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4796e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.848949400086869 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01235676598757542, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 276.78 us (93.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5661e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.923278449412765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012513180746911818, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.9%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 270.28 us (93.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0695e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.496579992036142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012669595506248216, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (2.0%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 269.89 us (93.1%)
LB move op cnt : 0
LB apply : 3.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4635e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8351001624187884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012826010265584614, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 324.87 us (94.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5034e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.86940826056125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012982425024921012, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 326.28 us (94.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7626e+05 | 65536 | 2 | 1.742e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2328307815898114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01313883978425741, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 274.61 us (93.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1942e+05 | 65536 | 2 | 2.052e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7444886628281275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013295254543593808, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.3%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 611.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 377.20 us (95.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (65.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2489e+05 | 65536 | 2 | 2.017e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7914925533265924 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013451669302930206, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.4%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 351.69 us (94.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (71.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3397e+05 | 65536 | 2 | 1.962e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8695115698019387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013608084062266605, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 317.48 us (94.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2779e+05 | 65536 | 2 | 1.999e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8164290980388684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013764498821603003, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.2%)
patch tree reduce : 1.23 us (0.3%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 403.61 us (95.8%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3134e+05 | 65536 | 2 | 1.978e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8468699027485114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0139209135809394, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 347.33 us (94.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2799e+05 | 65536 | 2 | 1.998e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8181076016600994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014077328340275799, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.7%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 351.28 us (94.6%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2560e+05 | 65536 | 2 | 2.013e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.797635275343985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014233743099612197, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 352.95 us (94.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2759e+05 | 65536 | 2 | 2.001e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8147200065046336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014390157858948595, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.2%)
patch tree reduce : 1.45 us (0.3%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 408.78 us (95.7%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1881e+05 | 65536 | 2 | 2.056e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.739218454090355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014546572618284993, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.3%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 412.88 us (95.3%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4198e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.797559600922883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014702987377621391, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 309.17 us (94.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (57.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4903e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8581217362153586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01485940213695779, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 289.61 us (93.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (59.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3483e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.73614266208441 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015015816896294188, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 307.18 us (94.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5239e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.886960975609636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015172231655630586, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 300.25 us (93.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4983e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.864957716401055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015328646414966984, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 323.85 us (94.0%)
LB move op cnt : 0
LB apply : 4.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5120e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8767888575353004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015485061174303382, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.9%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 277.66 us (93.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4747e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.844746424246847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01564147593363978, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 293.68 us (93.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (64.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7823e+05 | 65536 | 2 | 1.733e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.249806217544539 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015797890692976175, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 339.44 us (94.4%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (60.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1269e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.545917713939133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01595430545231257, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 286.27 us (93.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4730e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.843239728915759 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016110720211648968, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 333.48 us (94.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4389e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8139616214943066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016267134970985364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 325.44 us (94.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7128e+05 | 65536 | 2 | 1.765e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.190094621314956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01642354973032176, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 355.53 us (94.8%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7558e+05 | 65536 | 2 | 1.745e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2270569335262946 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016579964489658157, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.1%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 267.19 us (92.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4389e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.813918661940398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016736379248994553, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 299.76 us (93.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4847e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8532730563793574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01689279400833095, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 346.91 us (94.8%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (60.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5360e+05 | 65536 | 2 | 1.853e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.038171967480984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017049208767667346, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 349.71 us (94.2%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9765e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4166169004814453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017205623527003742, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.4%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 346.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3482e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7360241971194155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01736203828634014, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.9%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 297.90 us (93.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4526e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8257076667887664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017518453045676535, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 275.68 us (93.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1020e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5244508432790003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01767486780501293, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 327.31 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (59.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7754e+05 | 65536 | 2 | 1.736e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2438924287902426 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017831282564349328, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 335.27 us (94.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8731e+05 | 65536 | 2 | 1.692e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.327848061210737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017987697323685724, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 302.61 us (94.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6099e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.96090961243192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01814411208302212, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.8%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 288.32 us (93.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (60.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5236e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8867045398997275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018300526842358517, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 328.83 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (58.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5150e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.879308678860838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018456941601694914, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 294.28 us (94.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5273e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.889939292381028 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01861335636103131, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1.44 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 286.45 us (93.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1279e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5467371243166514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018769771120367706, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.7%)
patch tree reduce : 1.40 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 290.13 us (94.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5204e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8840172748174138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018926185879704103, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 304.39 us (93.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (64.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2362e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.639791202399301 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0190826006390405, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 335.77 us (93.7%)
LB move op cnt : 0
LB apply : 4.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9059e+05 | 65536 | 2 | 1.678e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3560134123154866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019239015398376896, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 301.42 us (94.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6404e+05 | 65536 | 2 | 1.800e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1279121043816125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019395430157713292, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.1%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 268.82 us (93.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2055e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.613430118897235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01955184491704969, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.8%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 276.65 us (93.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8442e+05 | 65536 | 2 | 1.705e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.302995732302859 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019708259676386085, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.7%)
patch tree reduce : 1.42 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 286.69 us (93.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4620e+05 | 65536 | 2 | 1.893e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9745771534244345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01986467443572248, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 27.67 us (8.1%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 298.93 us (87.3%)
LB move op cnt : 0
LB apply : 4.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (58.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3128e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7056510380877286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020021089195058878, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.0%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 275.93 us (93.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3653e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.750720377968461 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020177503954395274, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (2.0%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 263.19 us (93.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3035e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6976178363848797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02033391871373167, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 317.80 us (94.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2303e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.634697497214842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020490333473068067, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1.42 us (0.5%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 279.42 us (93.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2622e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.662092608518855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020646748232404463, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.0%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 286.31 us (93.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (61.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2508e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6523011860818024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02080316299174086, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 290.09 us (93.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3056e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6994137426035802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020959577751077256, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (0.9%)
patch tree reduce : 1.62 us (0.3%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 554.27 us (96.7%)
LB move op cnt : 0
LB apply : 3.94 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2935e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6890159355051746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021115992510413652, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 321.04 us (94.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (58.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5257e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8885186410649495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02127240726975005, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 343.42 us (94.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2524e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.653691805755095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021428822029086445, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.7%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 288.05 us (94.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5557e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9142980960369655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02158523678842284, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 284.61 us (92.9%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (62.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1514e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.566962312458581 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021741651547759238, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.3%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 368.93 us (95.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (59.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2086e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6160420215216744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021898066307095634, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 333.43 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4848e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.853420776309388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02205448106643203, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 298.70 us (93.5%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (61.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9717e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4125565601998953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022210895825768427, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 304.59 us (94.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2571e+05 | 65536 | 2 | 2.012e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7985335048931566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022367310585104824, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (1.8%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 342.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (64.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9443e+05 | 65536 | 2 | 1.662e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3889610821494025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02252372534444122, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 273.31 us (93.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8665e+05 | 65536 | 2 | 1.695e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3221430651130657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022680140103777616, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 305.55 us (93.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0604e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4887852841467266 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022836554863114013, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 308.90 us (94.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1160e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5365399823848604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02299296962245041, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 285.44 us (93.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (65.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6458e+05 | 65536 | 2 | 1.798e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1325522033508313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023149384381786806, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.45 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 292.88 us (93.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4465e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8204606243337826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023305799141123202, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 292.18 us (93.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (59.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1310e+05 | 65536 | 2 | 2.093e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.690232738025479 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0234622139004596, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 326.40 us (94.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2966e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6916577941302187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023618628659795995, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.0%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 311.83 us (93.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0738e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5002450954278554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02377504341913239, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.8%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 315.71 us (93.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (59.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3346e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7243016077877877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023931458178468788, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 343.48 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3558e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7425274643687825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024087872937805184, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.4%)
LB compute : 330.63 us (94.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3965e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7775026974054935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02424428769714158, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.9%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 294.42 us (93.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3080e+05 | 65536 | 2 | 1.981e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.842242692260788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024400702456477977, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.2%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 278.29 us (93.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (59.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6342e+05 | 65536 | 2 | 1.803e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1225315832368183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024557117215814373, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 296.29 us (93.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4748e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.844790894909525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02471353197515077, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.1%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 299.68 us (93.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1922e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6019696893467086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024869946734487166, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 307.28 us (93.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (65.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8362e+05 | 65536 | 2 | 1.708e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.296103708611041 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025026361493823562, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 297.34 us (93.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4239e+05 | 65536 | 2 | 1.914e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.94189621744977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02518277625315996, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 353.84 us (94.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (66.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1609e+05 | 65536 | 2 | 2.073e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7159152476665955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025339191012496355, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.4%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 397.13 us (95.1%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (64.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0376e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4691591326088993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02549560577183275, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (1.9%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 317.29 us (93.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9622e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.404394780893548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025652020531169148, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 321.36 us (94.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2691e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6680812627097463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025808435290505544, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 327.66 us (94.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1283e+05 | 65536 | 2 | 2.095e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.687849413579532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02596485004984194, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 318.32 us (94.8%)
LB move op cnt : 0
LB apply : 3.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (70.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2384e+05 | 65536 | 2 | 2.024e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7824780826209863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026121264809178337, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.2%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 551.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 425.62 us (95.8%)
LB move op cnt : 0
LB apply : 4.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (68.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2240e+05 | 65536 | 2 | 2.033e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7700723538883705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026277679568514734, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (1.7%)
patch tree reduce : 2.10 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 378.94 us (94.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (65.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3418e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.730545894177978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02643409432785113, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 333.91 us (94.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (64.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5750e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.930867611776913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026590509087187526, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 322.94 us (94.3%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3186e+05 | 65536 | 2 | 1.975e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8513448820557334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026746923846523923, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 335.93 us (94.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3783e+05 | 65536 | 2 | 1.940e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.902645957259651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02690333860586032, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 340.88 us (94.6%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4474e+05 | 65536 | 2 | 1.901e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9620709559311393 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027059753365196716, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.4%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 375.10 us (95.2%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7961e+05 | 65536 | 2 | 1.726e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.261645686097659 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027216168124533112, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.7%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 336.53 us (94.3%)
LB move op cnt : 0
LB apply : 4.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8017e+05 | 65536 | 2 | 1.724e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.266464986114027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02737258288386951, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.4%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 356.25 us (94.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3234e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.714674708882858 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027528997643205905, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 349.31 us (94.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3704e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.755132334257877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0276854124025423, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 348.64 us (94.8%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1240e+05 | 65536 | 2 | 2.098e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.68414058703119 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027841827161878697, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (0.8%)
patch tree reduce : 1.60 us (0.2%)
gen split merge : 1.13 us (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.2%)
LB compute : 687.54 us (97.1%)
LB move op cnt : 0
LB apply : 3.88 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (64.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3285e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7191329246801033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027998241921215094, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.3%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 383.88 us (95.2%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2584e+05 | 65536 | 2 | 2.011e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.799629048411443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02815465668055149, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.4%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 347.58 us (94.9%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (60.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1439e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5604789604523552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028311071439887887, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.5%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 320.33 us (94.3%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2722e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6707212558553732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028467486199224283, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 298.08 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (61.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1605e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.574759399830709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02862390095856068, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 329.52 us (94.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2602e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.660439297537281 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028780315717897076, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 287.34 us (93.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2541e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6551340918684683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028936730477233472, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 347.54 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2627e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6625357447848885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02909314523656987, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 293.01 us (93.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2040e+05 | 65536 | 2 | 2.045e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7529076584362477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029249559995906265, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.4%)
patch tree reduce : 21.83 us (5.4%)
gen split merge : 1.01 us (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 365.70 us (90.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2051e+05 | 65536 | 2 | 2.045e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.753886009233262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02940597475524266, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.3%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 372.61 us (95.0%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2122e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6191668478052392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029562389514579058, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.0%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 327.29 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2983e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.693171490636636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029718804273915454, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.9%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 323.98 us (93.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (67.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1910e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.600962575771299 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02987521903325185, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 293.99 us (93.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2443e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6467840892207355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030031633792588247, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (2.0%)
patch tree reduce : 1.41 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 284.38 us (93.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3237e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7149617380073017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030188048551924643, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 355.55 us (94.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2113e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.618414007702576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03034446331126104, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.0%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 292.66 us (93.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (65.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2183e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6244405203683288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030500878070597436, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 324.18 us (94.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1786e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5902874063049737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030657292829933833, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 313.60 us (94.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4843e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8529964745441405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03081370758927023, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 329.06 us (94.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4868e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.855111792081361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030970122348606625, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 314.67 us (94.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5338e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.895533789802607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031126537107943022, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.6%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 341.50 us (94.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2373e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6407654241170784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03128295186727942, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (2.0%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 275.59 us (93.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5506e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9099235507998644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03143936662661582, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.9%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 309.71 us (93.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (65.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4944e+05 | 65536 | 2 | 1.875e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0024438656043633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03159578138595222, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.1%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 447.18 us (95.9%)
LB move op cnt : 0
LB apply : 3.81 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7432e+05 | 65536 | 2 | 1.751e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.216235351991416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03175219614528862, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 346.07 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2499e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6515570423972172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03190861090462502, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 284.17 us (93.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (61.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1953e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6046316375612406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03206502566396142, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 316.22 us (94.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9344e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.380501704454803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03222144042329782, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 335.29 us (94.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0134e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4483482248006005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03237785518263422, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 319.57 us (94.1%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2805e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6778969097355385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03253426994197062, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 323.51 us (94.2%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2874e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.683778055645336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03269068470130702, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 294.76 us (93.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2246e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6297917056954483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03284709946064342, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 333.45 us (94.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2798e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6772825879325417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03300351421997982, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 292.17 us (93.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (59.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7711e+05 | 65536 | 2 | 1.738e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2401804352586785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03315992897931622, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 289.53 us (93.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2310e+05 | 65536 | 2 | 2.028e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7761199832637584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033316343738652617, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.4%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 341.66 us (94.8%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2314e+05 | 65536 | 2 | 2.028e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7764862855611043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033472758497989016, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.3%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 398.47 us (95.2%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0246e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4579675335264137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033629173257325416, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.0%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 303.44 us (93.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (66.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1127e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5337063189478464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033785588016661816, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 320.76 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (61.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3303e+05 | 65536 | 2 | 1.968e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8614473238374103 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033942002775998216, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 344.00 us (94.5%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3213e+05 | 65536 | 2 | 1.973e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.853669525536974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034098417535334616, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 300.18 us (93.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1641e+05 | 65536 | 2 | 2.071e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7186722760563513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034254832294671016, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.6%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 338.01 us (94.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (70.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4902e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8579949867996954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034411247054007416, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 273.27 us (93.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (58.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2000e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6087289855450178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034567661813343815, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 311.79 us (94.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4564e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8289836435739693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034724076572680215, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 282.96 us (93.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5191e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.882880481578427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034880491332016615, dt = 0.00011950866798338816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 287.75 us (93.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3795e+05 | 65536 | 2 | 1.939e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.218600468479552 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 474.401819734 (s) [Godunov][rank=0]
running minmod hllc
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.73 ms [DataInserterUtility][rank=0]
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 : 3.72 us (54.3%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (0.3%)
patch tree reduce : 1.08 us (0.3%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 390.24 us (97.2%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=False
Info: time since start : 474.57714081200004 (s) [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (1.8%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 362.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (67.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6366e+05 | 65536 | 2 | 1.802e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.4%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 392.50 us (95.2%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (61.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3721e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7565527568338695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00015641475933639762, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.4%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 354.25 us (94.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3996e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.780208350701109 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00031282951867279523, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.9%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 316.96 us (94.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (59.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2071e+05 | 65536 | 2 | 2.043e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7555607689402724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004692442780091929, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.4%)
patch tree reduce : 22.99 us (5.9%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 350.23 us (89.4%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3358e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7254103534698775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006256590373455905, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 326.99 us (94.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9742e+05 | 65536 | 2 | 1.649e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4146927318560305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007820737966819881, dt = 9.292620331801207e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 334.96 us (94.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (65.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1936e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.140683928203284 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 475.808439055 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0008750000000000001, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (1.8%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 365.31 us (94.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9259e+05 | 65536 | 2 | 1.669e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3732166317400685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010314147593363978, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 309.56 us (93.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8413e+05 | 65536 | 2 | 1.706e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.300527376963071 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011878295186727955, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.1%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 276.73 us (93.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2832e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6802043518743304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013442442780091932, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 329.55 us (94.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4936e+05 | 65536 | 2 | 1.876e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0017193841387777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001500659037345591, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.5%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 365.85 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2294e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6339354623199362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016570737966819886, dt = 9.292620331801164e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (2.0%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 278.32 us (93.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (59.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1909e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.13930213524018 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 476.87186627600005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0017500000000000003, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (1.6%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 402.65 us (94.9%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5865e+05 | 65536 | 2 | 1.827e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0815251504416974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001906414759336398, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.4%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 712.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 342.54 us (95.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4342e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8098782071147537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020628295186727956, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 312.83 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2693e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6682415061228357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0022192442780091933, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.3%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 408.64 us (95.3%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2322e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.636339701265603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002375659037345591, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 287.82 us (93.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1653e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5788855230537693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025320737966819887, dt = 9.292620331801185e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 313.66 us (94.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2829e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1862652570040875 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 477.89709400500004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0026250000000000006, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (1.6%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 24.12 us (5.4%)
LB compute : 400.80 us (89.9%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (66.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0471e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4772858529202995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027814147593363983, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.2%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 290.01 us (92.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (65.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2804e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.677779995764207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002937829518672796, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (0.7%)
patch tree reduce : 1.98 us (0.2%)
gen split merge : 1.10 us (0.1%)
split / merge op : 0/0
apply split merge : 1.05 us (0.1%)
LB compute : 798.56 us (97.5%)
LB move op cnt : 0
LB apply : 4.09 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (67.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2632e+05 | 65536 | 2 | 2.008e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8037705662503605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030942442780091937, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.4%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 346.98 us (94.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2302e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.63467570158508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0032506590373455914, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 313.13 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2227e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6282009952695593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003407073796681989, dt = 9.292620331801142e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 321.57 us (94.5%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (65.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1578e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1223673280486235 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 478.95758602300003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0035000000000000005, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (1.8%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 381.80 us (94.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (66.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1026e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5249798959827867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003656414759336398, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 292.56 us (93.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3453e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7335576740482943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003812829518672796, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.9%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 283.44 us (93.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2680e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6671503309725355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003969244278009193, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 293.87 us (93.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (58.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2368e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6402681874779685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00412565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 286.43 us (93.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1978e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.606793167502807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004282073796681988, dt = 9.292620331801272e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 327.92 us (94.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2564e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1727165792959173 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 479.961237336 (s) [Godunov][rank=0]
amr::Godunov: t = 0.004375, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.14 us (2.2%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 349.75 us (93.9%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (66.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2075e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.615132671568507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004531414759336398, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 339.19 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2345e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6383146615132143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004687829518672795, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.0%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 273.46 us (93.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2752e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.673262395631084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004844244278009192, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 342.25 us (94.8%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1948e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6042285625381054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0050006590373455895, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 305.23 us (93.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2440e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.646521784924379 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005157073796681987, dt = 9.292620331801445e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 308.81 us (93.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1919e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.139816647629916 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 480.967074684 (s) [Godunov][rank=0]
amr::Godunov: t = 0.005250000000000001, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.0%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 338.46 us (94.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (66.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2626e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6624857186586173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0054064147593363985, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (2.0%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 281.54 us (93.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2462e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.648356462178392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005562829518672796, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 316.89 us (93.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2362e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6397645696525527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005719244278009193, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 306.65 us (94.1%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3226e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.714010976899767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00587565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 328.52 us (94.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (63.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7646e+05 | 65536 | 2 | 1.741e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.234626581135637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0060320737966819875, dt = 9.292620331801359e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 310.21 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3341e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.21236168442902 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 481.97891516500005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.006125000000000001, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (1.6%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 410.88 us (94.7%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (71.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1878e+05 | 65536 | 2 | 2.056e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7390097710101116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006281414759336398, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.4%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 348.93 us (94.8%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3210e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7126623890004016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006437829518672796, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 317.14 us (94.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5793e+05 | 65536 | 2 | 1.831e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0753972939681873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006594244278009193, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.1%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 294.97 us (93.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (60.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2495e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.651206924447168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00675065903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 304.84 us (94.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0479e+05 | 65536 | 2 | 2.150e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.618759499245182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006907073796681987, dt = 9.292620331801359e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.4%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 363.99 us (94.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1440e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1153556074566775 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 483.11941087300005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.007000000000000001, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (1.8%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 373.89 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (65.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1014e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5239531990718413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007156414759336398, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 317.23 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8278e+05 | 65536 | 2 | 1.712e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2889135366038578 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0073128295186727955, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 347.11 us (94.5%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9515e+05 | 65536 | 2 | 1.659e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.395170651889707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007469244278009193, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.9%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 311.52 us (93.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (60.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1777e+05 | 65536 | 2 | 2.062e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7303270933003296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00762565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.5%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 385.35 us (95.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (65.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5182e+05 | 65536 | 2 | 1.863e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0228817903365433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007782073796681987, dt = 9.292620331801445e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 304.27 us (93.7%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0808e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0830967301480743 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 484.24531735700003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.007875000000000002, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (1.8%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 371.51 us (94.4%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (68.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2474e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.649383050442305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0080314147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (2.0%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 266.88 us (93.1%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2709e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.669623846137563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008187829518672798, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 272.75 us (93.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (59.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3299e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7202764217655107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008344244278009196, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.6%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 302.54 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1778e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.589585363354019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008500659037345594, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 289.41 us (93.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2426e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6453048911086787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008657073796681992, dt = 9.292620331800838e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.9%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 301.35 us (93.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1536e+05 | 65536 | 2 | 2.078e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.609795603044251 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 485.297906923 (s) [Godunov][rank=0]
amr::Godunov: t = 0.00875, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.68 us (1.8%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 395.63 us (94.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (59.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2416e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6444591459337317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008906414759336399, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 290.34 us (94.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2445e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.646919944001845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009062829518672797, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.6%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 349.48 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2162e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6225937811834124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009219244278009195, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (2.0%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 294.46 us (93.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2294e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.633912104584475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009375659037345593, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.9%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 291.06 us (93.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1398e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5569449100971458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009532073796681991, dt = 9.292620331801012e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 301.13 us (93.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2480e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1684229421273633 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 486.29977133700004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.009625000000000002, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (2.0%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 345.72 us (93.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (71.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8075e+05 | 65536 | 2 | 1.721e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2714316629448894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0097814147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.8%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 336.52 us (94.0%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (68.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1864e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.597001693000699 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009937829518672798, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 330.85 us (94.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4797e+05 | 65536 | 2 | 1.883e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9898280445670835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010094244278009196, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.0%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 302.27 us (93.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (65.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3030e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6971598106870323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010250659037345594, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (2.0%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 271.86 us (93.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (59.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1076e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5293047753983253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010407073796681992, dt = 9.292620331801012e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.1%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 266.51 us (93.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (61.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2733e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.181359760576852 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 487.35799617600003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.010500000000000002, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.39 us (1.9%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 418.98 us (94.6%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (70.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2295e+05 | 65536 | 2 | 2.029e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.774784702150093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0106564147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 325.19 us (94.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2906e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6865091460194743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010812829518672799, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.9%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 263.28 us (93.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (58.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4597e+05 | 65536 | 2 | 1.894e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9725741015038762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010969244278009197, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.4%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 287.21 us (92.6%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (60.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9511e+05 | 65536 | 2 | 1.659e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3948681556702063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011125659037345595, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 300.72 us (94.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (61.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2953e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6906013852975343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011282073796681993, dt = 9.292620331800838e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 292.88 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0412e+05 | 65536 | 2 | 1.622e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.062861092796642 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 488.460935084 (s) [Godunov][rank=0]
amr::Godunov: t = 0.011375000000000001, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (1.6%)
patch tree reduce : 2.40 us (0.5%)
gen split merge : 1.08 us (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 428.75 us (94.9%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3258e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.716794456456779 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0115314147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 298.91 us (94.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (60.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3752e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.759244659205705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011687829518672798, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 302.10 us (94.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2836e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.680544584560222 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011844244278009196, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 301.58 us (94.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3608e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.746844237427562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012000659037345594, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.9%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 278.72 us (93.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (62.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1365e+05 | 65536 | 2 | 2.089e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.69495456290461 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012157073796681992, dt = 9.292620331801012e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 360.72 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2836e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1865954833798242 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 489.51025281600005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.012250000000000002, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 1.52 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 374.93 us (94.5%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1895e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.599701012201035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0124064147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 290.13 us (93.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2858e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6824090183972182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012562829518672798, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 302.46 us (88.0%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2851e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6817859905231813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012719244278009197, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 329.46 us (94.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6305e+05 | 65536 | 2 | 1.805e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.119384871800645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012875659037345595, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 315.26 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2188e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6248206178643647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013032073796681993, dt = 9.292620331800838e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 298.29 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (62.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8336e+05 | 65536 | 2 | 1.710e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9569017118835585 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 490.55176174700006 (s) [Godunov][rank=0]
amr::Godunov: t = 0.013125000000000001, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (1.9%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 340.54 us (94.1%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2509e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.652402081762456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0132814147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 290.74 us (93.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (62.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2711e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6697524872051184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013437829518672798, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 286.79 us (93.8%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2956e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6908357169328445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013594244278009196, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 291.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2461e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6483121174649757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013750659037345594, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 326.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2382e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6415348245077404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013907073796681992, dt = 9.292620331801012e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (2.0%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 269.79 us (93.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2997e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.194809180761662 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 491.546843747 (s) [Godunov][rank=0]
amr::Godunov: t = 0.014000000000000002, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.98 us (0.9%)
patch tree reduce : 2.32 us (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.01 us (0.1%)
LB compute : 925.43 us (97.3%)
LB move op cnt : 0
LB apply : 4.84 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (74.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2082e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6157449292782964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0141564147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (2.0%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.32 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 270.66 us (93.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3606e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7467016088791816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014312829518672798, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 313.81 us (94.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2106e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.617798428455916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014469244278009196, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 305.72 us (93.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2507e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6522285560137493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014625659037345595, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 318.70 us (94.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (59.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2831e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6801250037638664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014782073796681993, dt = 9.292620331801012e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 313.36 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1803e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1338704458754045 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 492.56294550300004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.014875000000000003, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (1.7%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 388.94 us (94.7%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (67.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0784e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5041981976952177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015031414759336401, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 314.16 us (93.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (55.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1553e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.570292227201708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015187829518672799, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 313.79 us (94.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1859e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.59659933465123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015344244278009197, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 348.94 us (94.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2624e+05 | 65536 | 2 | 2.009e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.803074383420437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015500659037345595, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 326.63 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1338e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.551767805404042 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01565707379668199, dt = 9.292620331801185e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.4%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 21.03 us (5.6%)
LB compute : 337.13 us (89.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2412e+05 | 65536 | 2 | 2.022e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.654493794313375 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 493.67458003800004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.015750000000000004, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (1.9%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 364.03 us (94.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2001e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6087854868619975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0159064147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 331.58 us (94.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2623e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.662196141884479 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016062829518672796, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.4%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 363.72 us (94.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (61.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1970e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6060706144416534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016219244278009193, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (1.7%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 365.47 us (94.3%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (69.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1540e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.569186889068986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01637565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.7%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 343.30 us (94.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1458e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.562110899707898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016532073796681986, dt = 9.292620331801532e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 321.12 us (94.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1186e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1023700626835713 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 494.69554924100004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.016625, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.91 us (1.8%)
patch tree reduce : 1.96 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 415.40 us (94.7%)
LB move op cnt : 0
LB apply : 4.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (64.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2298e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6343268428582483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016781414759336397, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.0%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 284.70 us (93.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2243e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.629603008706418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016937829518672794, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 323.44 us (94.0%)
LB move op cnt : 0
LB apply : 4.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (66.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2479e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.649807762527528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01709424427800919, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 277.62 us (93.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3026e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6968658415845463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017250659037345586, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 323.44 us (93.9%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8897e+05 | 65536 | 2 | 1.685e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.342103570393797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017407073796681983, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 345.38 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0554e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.070117555603252 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 495.715849454 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0175, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (1.7%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 401.14 us (95.0%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (71.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2046e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.612676881928834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017656414759336398, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.4%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 354.90 us (94.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2462e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.648374687317203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017812829518672794, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 317.79 us (94.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (62.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1520e+05 | 65536 | 2 | 2.079e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7082782441900757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01796924427800919, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.3%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 397.26 us (95.4%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6102e+05 | 65536 | 2 | 1.815e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1018918659324033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018125659037345587, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 331.65 us (94.6%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2018e+05 | 65536 | 2 | 2.047e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7510318124972315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018282073796681984, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.3%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 426.94 us (95.6%)
LB move op cnt : 0
LB apply : 4.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2164e+05 | 65536 | 2 | 2.038e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.641827637209798 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 496.89869229400006 (s) [Godunov][rank=0]
amr::Godunov: t = 0.018375000000000002, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (1.2%)
patch tree reduce : 1.86 us (0.4%)
gen split merge : 1.23 us (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 506.29 us (96.0%)
LB move op cnt : 0
LB apply : 4.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (68.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1402e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5572990039392773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0185314147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 312.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (60.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2562e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.656950372935433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018687829518672795, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 317.04 us (94.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2403e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6433382250012425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01884424427800919, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 311.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3995e+05 | 65536 | 2 | 1.928e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9209240688672318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019000659037345588, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.9%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 309.76 us (93.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (64.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6336e+05 | 65536 | 2 | 1.804e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1220299836797585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019157073796681984, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 323.97 us (94.3%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1555e+05 | 65536 | 2 | 2.077e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.61075271462157 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 498.01626495000005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.019250000000000003, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (1.7%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 381.23 us (94.6%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (68.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1893e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.59950781459116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0194064147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.1%)
patch tree reduce : 1.60 us (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.2%)
LB compute : 536.29 us (96.3%)
LB move op cnt : 0
LB apply : 4.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9258e+05 | 65536 | 2 | 1.669e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.373075469467663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019562829518672796, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 306.70 us (93.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (60.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1297e+05 | 65536 | 2 | 2.094e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6890805237767683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019719244278009192, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.3%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 375.14 us (95.2%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1719e+05 | 65536 | 2 | 2.066e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.725302773098506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01987565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 354.05 us (94.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0284e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.461215933229272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020032073796681985, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 298.34 us (94.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (60.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5803e+05 | 65536 | 2 | 1.830e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.827585291248152 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 499.172730396 (s) [Godunov][rank=0]
amr::Godunov: t = 0.020125000000000004, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (1.7%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 375.15 us (94.4%)
LB move op cnt : 0
LB apply : 4.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0177e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.45205997990897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0202814147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.0%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 273.62 us (93.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (61.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3014e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.695846741815929 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020437829518672797, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 293.79 us (92.9%)
LB move op cnt : 0
LB apply : 6.24 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1780e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.589750859078983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020594244278009193, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 302.42 us (93.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3495e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7371470529749433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02075065903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 273.14 us (93.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3263e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7172034724096528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020907073796681986, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 288.47 us (93.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (60.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9848e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0340953325073645 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 500.18312971700004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.021000000000000005, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 369.77 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (68.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1855e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5962085728758675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0211564147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.41 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 306.72 us (93.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1688e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5819097725901745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021312829518672798, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 314.74 us (93.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2684e+05 | 65536 | 2 | 2.005e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8082761861496146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021469244278009194, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 327.11 us (94.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9599e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4024222823650323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02162565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.8%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 283.90 us (93.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6914e+05 | 65536 | 2 | 1.775e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1716821599739458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021782073796681987, dt = 9.292620331801532e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 318.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2901e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.189898239129085 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 501.26810165600006 (s) [Godunov][rank=0]
amr::Godunov: t = 0.021875000000000002, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (1.9%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 360.99 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (68.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2156e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.622096788964846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0220314147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 286.22 us (93.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2411e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6439768409216033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022187829518672795, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.1%)
patch tree reduce : 1.75 us (0.3%)
gen split merge : 1.18 us (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 508.84 us (96.4%)
LB move op cnt : 0
LB apply : 3.48 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2786e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6762374612710347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02234424427800919, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 293.14 us (93.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2840e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6808378884842563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022500659037345588, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.9%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 282.59 us (93.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (65.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2599e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.66011697470263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022657073796681984, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 321.48 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2469e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1678821779741773 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 502.26670765800003 (s) [Godunov][rank=0]
amr::Godunov: t = 0.022750000000000003, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (1.6%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 403.12 us (94.9%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (66.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3024e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6966759067252464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0229064147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 309.20 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (60.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2913e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.687117356143089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023062829518672796, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 287.17 us (93.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0965e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.519741210987958 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023219244278009192, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 326.92 us (94.2%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2782e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6758842744864983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02337565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 315.90 us (94.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2998e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.694456165130383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023532073796681985, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 348.48 us (94.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1133e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0996883569132234 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 503.270566787 (s) [Godunov][rank=0]
amr::Godunov: t = 0.023625000000000004, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.3%)
LB compute : 393.75 us (94.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (68.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2620e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6619716007487355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0237814147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 322.07 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2420e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6447739040471467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023937829518672796, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 316.36 us (94.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2502e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6518227478115817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024094244278009193, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.8%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 322.67 us (94.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1462e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.562479365622629 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02425065903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 2.30 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 302.82 us (93.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3778e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.761448860775987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024407073796681986, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 283.29 us (87.1%)
LB move op cnt : 0
LB apply : 25.97 us (8.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1774e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1324063177847505 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 504.281887277 (s) [Godunov][rank=0]
amr::Godunov: t = 0.024500000000000004, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.0%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 349.06 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (64.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2810e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6782849146380996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0246564147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.6%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 356.35 us (94.6%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2953e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6906098272027115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024812829518672797, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 312.56 us (94.1%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3150e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.707522717288131 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024969244278009194, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (0.9%)
patch tree reduce : 1.85 us (0.2%)
gen split merge : 1.00 us (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 745.43 us (97.1%)
LB move op cnt : 0
LB apply : 4.54 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (65.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3152e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7076665286762593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02512565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 287.29 us (93.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (59.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3083e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7017418219879312 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025282073796681986, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 284.84 us (93.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2580e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1735370912902194 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 505.271896302 (s) [Godunov][rank=0]
amr::Godunov: t = 0.025375000000000005, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.69 us (2.0%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 370.80 us (94.4%)
LB move op cnt : 0
LB apply : 3.33 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2165e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.622872047317045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0255314147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 316.87 us (94.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (65.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3306e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.720938805372389 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025687829518672798, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 298.18 us (93.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1611e+05 | 65536 | 2 | 2.073e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.716092363426925 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025844244278009194, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 335.37 us (94.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2770e+05 | 65536 | 2 | 2.000e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.815641026178267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02600065903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 351.26 us (94.7%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2574e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.658027477175679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026157073796681987, dt = 9.292620331801532e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 304.03 us (94.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2892e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.189470256012242 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 506.366226931 (s) [Godunov][rank=0]
amr::Godunov: t = 0.026250000000000002, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (1.8%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 399.65 us (94.6%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (70.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2234e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6287569094783043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0264064147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 305.56 us (93.6%)
LB move op cnt : 0
LB apply : 5.71 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (60.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9022e+05 | 65536 | 2 | 2.258e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4936102665787407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026562829518672795, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 348.61 us (94.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9264e+05 | 65536 | 2 | 1.669e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3736117104650685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02671924427800919, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 294.30 us (93.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1681e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5812945465417565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026875659037345588, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 278.83 us (93.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2591e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.659483439261201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027032073796681984, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 309.73 us (94.0%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0484e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0665542556645553 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 507.46367075 (s) [Godunov][rank=0]
amr::Godunov: t = 0.027125000000000003, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (1.8%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 376.90 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (68.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1448e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.561284010715171 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0272814147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 334.20 us (94.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2987e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6935179046794016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027437829518672796, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 277.56 us (93.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2796e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6770765069339655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027594244278009192, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 331.88 us (94.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1795e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5911145597819027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02775065903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.0%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 305.75 us (93.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5219e+05 | 65536 | 2 | 1.861e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.026021379905315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027907073796681985, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 306.01 us (93.8%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (68.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0086e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0462478815012886 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 508.50638503600004 (s) [Godunov][rank=0]
amr::Godunov: t = 0.028000000000000004, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.8%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 369.85 us (94.6%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (66.3%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1538e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.568968789960452 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0281564147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 314.93 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1682e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5813342703748994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028312829518672797, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 27.80 us (7.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 337.56 us (87.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (69.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1049e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5269760782798016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028469244278009193, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 307.77 us (93.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7204e+05 | 65536 | 2 | 1.762e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.196590103422738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02862565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 303.71 us (94.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1510e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.56662334840337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028782073796681986, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.4%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 415.51 us (95.1%)
LB move op cnt : 0
LB apply : 4.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0811e+05 | 65536 | 2 | 2.127e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.572790890085426 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 509.60383539900005 (s) [Godunov][rank=0]
amr::Godunov: t = 0.028875000000000005, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (1.6%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 415.07 us (95.2%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (69.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3685e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.753491843924929 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0290314147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 302.94 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3405e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7294318175519265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029187829518672798, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 295.59 us (93.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3359e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7254478915694698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029344244278009194, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 317.33 us (93.8%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8089e+05 | 65536 | 2 | 1.721e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2726882466930025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02950065903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 295.82 us (94.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (60.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4139e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7924363027840706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029657073796681987, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 275.48 us (93.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2648e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.177020396684433 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 510.61638612700006 (s) [Godunov][rank=0]
amr::Godunov: t = 0.029750000000000006, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (1.7%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 400.77 us (94.3%)
LB move op cnt : 0
LB apply : 4.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (65.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3289e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.719444621761698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029906414759336402, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.96 us (4.6%)
patch tree reduce : 5.71 us (1.8%)
gen split merge : 1.63 us (0.5%)
split / merge op : 0/0
apply split merge : 2.35 us (0.7%)
LB compute : 289.14 us (89.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3288e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.719395141766243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0300628295186728, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 289.56 us (93.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2365e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.640048468447456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030219244278009195, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 283.73 us (93.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (66.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2973e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6922748950279307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03037565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 291.53 us (93.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3027e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6969044085596203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030532073796681988, dt = 9.292620331801532e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.0%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 316.57 us (93.6%)
LB move op cnt : 0
LB apply : 4.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (68.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1993e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1435451704844755 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 511.611371483 (s) [Godunov][rank=0]
amr::Godunov: t = 0.030625000000000003, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (1.7%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 379.08 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (66.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3585e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7448633436151164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0307814147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 354.02 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3336e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7234785943527715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030937829518672796, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.0%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 290.54 us (93.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3115e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7044875352081514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031094244278009192, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 333.13 us (94.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (59.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2939e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.689383640037141 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03125065903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.6%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 308.00 us (94.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.2%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3240e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.715264377280424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03140707379668199, dt = 9.292620331801532e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 336.86 us (94.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (61.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3053e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1976715910558227 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 512.6029859380001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.03150000000000001, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (1.6%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 427.52 us (95.1%)
LB move op cnt : 0
LB apply : 4.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (70.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8913e+05 | 65536 | 2 | 1.684e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3434697354260208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03165641475933641, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 299.73 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3786e+05 | 65536 | 2 | 1.940e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9029683778702697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03181282951867281, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 325.89 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (66.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7953e+05 | 65536 | 2 | 1.727e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.260984614457047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03196924427800921, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 347.45 us (94.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.1%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3709e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7555278904070333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03212565903734561, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 315.77 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3292e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7196814020078306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.032282073796682006, dt = 9.292620331800144e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 335.85 us (94.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4218e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.257152937203626 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 513.6614338310001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.03237500000000001, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (2.0%)
patch tree reduce : 2.10 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 366.05 us (94.2%)
LB move op cnt : 0
LB apply : 3.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (65.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4847e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8533212051873424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03253141475933641, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 334.24 us (94.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (63.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4253e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.80226835529301 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03268782951867281, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.0%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 278.56 us (93.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6006e+05 | 65536 | 2 | 1.820e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0936756499860016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03284424427800921, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 294.45 us (93.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (62.6%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3048e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.698754043388375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03300065903734561, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.2%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 269.43 us (92.9%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3150e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7074660599830116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03315707379668201, dt = 9.29262033179945e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 292.95 us (93.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (63.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3221e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2062546720712635 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 514.6694939700001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.03325, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (1.7%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 367.66 us (94.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (63.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2693e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6682029374607574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0334064147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 325.77 us (94.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (66.0%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2825e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.679589235021853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0335628295186728, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 334.83 us (94.4%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3296e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.72006667351824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0337192442780092, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 289.66 us (93.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3474e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7353613384991187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0338756590373456, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 320.31 us (94.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2829e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6798805109147454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034032073796682, dt = 9.292620331800144e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 348.10 us (94.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.4%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1957e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1417529784232507 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 515.6737132740001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.034125, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (1.8%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 355.00 us (94.3%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (69.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3032e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6973807491263897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0342814147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 336.42 us (94.3%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2422e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6449068486513716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0344378295186728, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 331.10 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.8%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2729e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6713373128287485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0345942442780092, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 287.90 us (93.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.5%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2190e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6250172891229524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0347506590373456, dt = 0.00015641475933639762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 289.06 us (93.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.9%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2758e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6738165293554075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034907073796682, dt = 9.292620331800144e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.4%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 325.76 us (94.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.7%)
Info: cfl dt = 0.00015641475933639762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2691e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.179186789878631 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 516.669619029 (s) [Godunov][rank=0]
none_hll
{'none_hll': [{'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924002, 5.99924002, 5.99924002, 5.99924002, 5.99969027,
5.99969027, 5.99969027, 5.99969027, 7.8345761 , 7.8345761 ,
7.8345761 , 7.8345761 , 12.09526797, 12.09526797, 12.09526797,
12.09526797, 13.95870911, 13.95870911, 13.95870911, 13.95870911,
14.2024846 , 14.2024846 , 14.2024846 , 14.2024846 , 14.22462015,
14.22462015, 14.22462015, 14.22462015, 14.25138163, 14.25138163,
14.25138163, 14.25138163, 14.2882224 , 14.2882224 , 14.2882224 ,
14.2882224 , 14.3412807 , 14.3412807 , 14.3412807 , 14.3412807 ,
14.42080121, 14.42080121, 14.42080121, 14.42080121, 14.54141153,
14.54141153, 14.54141153, 14.54141153, 14.72184791, 14.72184791,
14.72184791, 14.72184791, 14.98426056, 14.98426056, 14.98426056,
14.98426056, 15.35313156, 15.35313156, 15.35313156, 15.35313156,
15.85370678, 15.85370678, 15.85370678, 15.85370678, 16.50974361,
16.50974361, 16.50974361, 16.50974361, 17.34034306, 17.34034306,
17.34034306, 17.34034306, 18.35572577, 18.35572577, 18.35572577,
18.35572577, 19.55212633, 19.55212633, 19.55212633, 19.55212633,
20.90657097, 20.90657097, 20.90657097, 20.90657097, 22.372954 ,
22.372954 , 22.372954 , 22.372954 , 23.88071269, 23.88071269,
23.88071269, 23.88071269, 25.3350973 , 25.3350973 , 25.3350973 ,
25.3350973 , 26.61241916, 26.61241916, 26.61241916, 26.61241916,
27.53400021, 27.53400021, 27.53400021, 27.53400021, 27.7841184 ,
27.7841184 , 27.7841184 , 27.7841184 , 26.78077993, 26.78077993,
26.78077993, 26.78077993, 23.60906801, 23.60906801, 23.60906801,
23.60906801, 17.68592041, 17.68592041, 17.68592041, 17.68592041,
10.60486392, 10.60486392, 10.60486392, 10.60486392, 6.35968743,
6.35968743, 6.35968743, 6.35968743, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.59749996, 19.59749996, 19.59749996, 19.59749996, 19.59672155,
19.59672155, 19.59672155, 19.59672155, 16.30074788, 16.30074788,
16.30074788, 16.30074788, 10.81823663, 10.81823663, 10.81823663,
10.81823663, 8.99223833, 8.99223833, 8.99223833, 8.99223833,
8.77305402, 8.77305402, 8.77305402, 8.77305402, 8.76281569,
8.76281569, 8.76281569, 8.76281569, 8.75598985, 8.75598985,
8.75598985, 8.75598985, 8.75018727, 8.75018727, 8.75018727,
8.75018727, 8.74534323, 8.74534323, 8.74534323, 8.74534323,
8.74141416, 8.74141416, 8.74141416, 8.74141416, 8.73834339,
8.73834339, 8.73834339, 8.73834339, 8.73603409, 8.73603409,
8.73603409, 8.73603409, 8.7343356 , 8.7343356 , 8.7343356 ,
8.7343356 , 8.73304747, 8.73304747, 8.73304747, 8.73304747,
8.73194258, 8.73194258, 8.73194258, 8.73194258, 8.73080538,
8.73080538, 8.73080538, 8.73080538, 8.7294729 , 8.7294729 ,
8.7294729 , 8.7294729 , 8.72785766, 8.72785766, 8.72785766,
8.72785766, 8.7259233 , 8.7259233 , 8.7259233 , 8.7259233 ,
8.72356463, 8.72356463, 8.72356463, 8.72356463, 8.72026746,
8.72026746, 8.72026746, 8.72026746, 8.71423837, 8.71423837,
8.71423837, 8.71423837, 8.70028441, 8.70028441, 8.70028441,
8.70028441, 8.66473642, 8.66473642, 8.66473642, 8.66473642,
8.57356949, 8.57356949, 8.57356949, 8.57356949, 8.34500395,
8.34500395, 8.34500395, 8.34500395, 7.78890471, 7.78890471,
7.78890471, 7.78890471, 6.49775127, 6.49775127, 6.49775127,
6.49775127, 3.76893856, 3.76893856, 3.76893856, 3.76893856,
-1.00678094, -1.00678094, -1.00678094, -1.00678094, -5.69612119,
-5.69612119, -5.69612119, -5.69612119, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400232, 460.89400232, 460.89400232, 460.89400232,
460.94243518, 460.94243518, 460.94243518, 460.94243518,
703.2792111 , 703.2792111 , 703.2792111 , 703.2792111 ,
1337.55283241, 1337.55283241, 1337.55283241, 1337.55283241,
1636.90078605, 1636.90078605, 1636.90078605, 1636.90078605,
1676.20510287, 1676.20510287, 1676.20510287, 1676.20510287,
1677.82436261, 1677.82436261, 1677.82436261, 1677.82436261,
1678.89282951, 1678.89282951, 1678.89282951, 1678.89282951,
1679.87092338, 1679.87092338, 1679.87092338, 1679.87092338,
1680.79575443, 1680.79575443, 1680.79575443, 1680.79575443,
1681.69611111, 1681.69611111, 1681.69611111, 1681.69611111,
1682.59148341, 1682.59148341, 1682.59148341, 1682.59148341,
1683.49009397, 1683.49009397, 1683.49009397, 1683.49009397,
1684.38759814, 1684.38759814, 1684.38759814, 1684.38759814,
1685.26799937, 1685.26799937, 1685.26799937, 1685.26799937,
1686.10731691, 1686.10731691, 1686.10731691, 1686.10731691,
1686.87916975, 1686.87916975, 1686.87916975, 1686.87916975,
1687.56065205, 1687.56065205, 1687.56065205, 1687.56065205,
1688.13614788, 1688.13614788, 1688.13614788, 1688.13614788,
1688.59427472, 1688.59427472, 1688.59427472, 1688.59427472,
1688.9045266 , 1688.9045266 , 1688.9045266 , 1688.9045266 ,
1688.93900905, 1688.93900905, 1688.93900905, 1688.93900905,
1688.25216906, 1688.25216906, 1688.25216906, 1688.25216906,
1685.51318965, 1685.51318965, 1685.51318965, 1685.51318965,
1677.15515413, 1677.15515413, 1677.15515413, 1677.15515413,
1654.32146734, 1654.32146734, 1654.32146734, 1654.32146734,
1596.51937462, 1596.51937462, 1596.51937462, 1596.51937462,
1461.36177691, 1461.36177691, 1461.36177691, 1461.36177691,
1183.46702274, 1183.46702274, 1183.46702274, 1183.46702274,
737.79676841, 737.79676841, 737.79676841, 737.79676841,
276.70901347, 276.70901347, 276.70901347, 276.70901347,
59.57019196, 59.57019196, 59.57019196, 59.57019196,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}], 'minmod_rusanov': [{'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924002, 5.99924002, 5.99924002,
5.99924002, 5.99924007, 5.99924007, 5.99924007, 5.99924007,
5.99924031, 5.99924031, 5.99924031, 5.99924031, 5.99924126,
5.99924126, 5.99924126, 5.99924126, 5.99924514, 5.99924514,
5.99924514, 5.99924514, 5.99926098, 5.99926098, 5.99926098,
5.99926098, 5.99932544, 5.99932544, 5.99932544, 5.99932544,
5.99958696, 5.99958696, 5.99958696, 5.99958696, 6.00064486,
6.00064486, 6.00064486, 6.00064486, 6.00490572, 6.00490572,
6.00490572, 6.00490572, 6.02192165, 6.02192165, 6.02192165,
6.02192165, 6.08851456, 6.08851456, 6.08851456, 6.08851456,
6.33685385, 6.33685385, 6.33685385, 6.33685385, 7.17306942,
7.17306942, 7.17306942, 7.17306942, 9.48103328, 9.48103328,
9.48103328, 9.48103328, 12.16879608, 12.16879608, 12.16879608,
12.16879608, 13.57772571, 13.57772571, 13.57772571, 13.57772571,
14.0725543 , 14.0725543 , 14.0725543 , 14.0725543 , 14.20188264,
14.20188264, 14.20188264, 14.20188264, 14.21111476, 14.21111476,
14.21111476, 14.21111476, 14.19594776, 14.19594776, 14.19594776,
14.19594776, 14.16726566, 14.16726566, 14.16726566, 14.16726566,
14.14315288, 14.14315288, 14.14315288, 14.14315288, 14.13984508,
14.13984508, 14.13984508, 14.13984508, 14.15659401, 14.15659401,
14.15659401, 14.15659401, 14.22156771, 14.22156771, 14.22156771,
14.22156771, 14.38201257, 14.38201257, 14.38201257, 14.38201257,
14.70456648, 14.70456648, 14.70456648, 14.70456648, 15.27138194,
15.27138194, 15.27138194, 15.27138194, 16.17496693, 16.17496693,
16.17496693, 16.17496693, 17.5106624 , 17.5106624 , 17.5106624 ,
17.5106624 , 19.3615367 , 19.3615367 , 19.3615367 , 19.3615367 ,
21.75080399, 21.75080399, 21.75080399, 21.75080399, 24.33387543,
24.33387543, 24.33387543, 24.33387543, 26.40333256, 26.40333256,
26.40333256, 26.40333256, 27.90910754, 27.90910754, 27.90910754,
27.90910754, 28.93697999, 28.93697999, 28.93697999, 28.93697999,
29.53951302, 29.53951302, 29.53951302, 29.53951302, 29.73938869,
29.73938869, 29.73938869, 29.73938869, 29.0153186 , 29.0153186 ,
29.0153186 , 29.0153186 , 23.59070901, 23.59070901, 23.59070901,
23.59070901, 10.9415393 , 10.9415393 , 10.9415393 , 10.9415393 ,
6.3541182 , 6.3541182 , 6.3541182 , 6.3541182 , 6.00760847,
6.00760847, 6.00760847, 6.00760847, 5.99286029, 5.99286029,
5.99286029, 5.99286029, 5.99243117, 5.99243117, 5.99243117,
5.99243117, 5.99242027, 5.99242027, 5.99242027, 5.99242027,
5.99242001, 5.99242001, 5.99242001, 5.99242001, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.59749999, 19.59749999,
19.59749999, 19.59749999, 19.59749997, 19.59749997, 19.59749997,
19.59749997, 19.59749987, 19.59749987, 19.59749987, 19.59749987,
19.59749947, 19.59749947, 19.59749947, 19.59749947, 19.59749783,
19.59749783, 19.59749783, 19.59749783, 19.59749112, 19.59749112,
19.59749112, 19.59749112, 19.59746373, 19.59746373, 19.59746373,
19.59746373, 19.59735229, 19.59735229, 19.59735229, 19.59735229,
19.59690001, 19.59690001, 19.59690001, 19.59690001, 19.59506896,
19.59506896, 19.59506896, 19.59506896, 19.58767704, 19.58767704,
19.58767704, 19.58767704, 19.5579792 , 19.5579792 , 19.5579792 ,
19.5579792 , 19.4402373 , 19.4402373 , 19.4402373 , 19.4402373 ,
18.99425966, 18.99425966, 18.99425966, 18.99425966, 17.53641444,
17.53641444, 17.53641444, 17.53641444, 14.1519315 , 14.1519315 ,
14.1519315 , 14.1519315 , 10.74514786, 10.74514786, 10.74514786,
10.74514786, 9.38012207, 9.38012207, 9.38012207, 9.38012207,
8.93087961, 8.93087961, 8.93087961, 8.93087961, 8.78942687,
8.78942687, 8.78942687, 8.78942687, 8.74294599, 8.74294599,
8.74294599, 8.74294599, 8.72650952, 8.72650952, 8.72650952,
8.72650952, 8.72109124, 8.72109124, 8.72109124, 8.72109124,
8.71933594, 8.71933594, 8.71933594, 8.71933594, 8.71788858,
8.71788858, 8.71788858, 8.71788858, 8.71573795, 8.71573795,
8.71573795, 8.71573795, 8.71238766, 8.71238766, 8.71238766,
8.71238766, 8.70882217, 8.70882217, 8.70882217, 8.70882217,
8.70606951, 8.70606951, 8.70606951, 8.70606951, 8.70384986,
8.70384986, 8.70384986, 8.70384986, 8.70175254, 8.70175254,
8.70175254, 8.70175254, 8.69917307, 8.69917307, 8.69917307,
8.69917307, 8.69663571, 8.69663571, 8.69663571, 8.69663571,
8.69489541, 8.69489541, 8.69489541, 8.69489541, 8.69376268,
8.69376268, 8.69376268, 8.69376268, 8.69268692, 8.69268692,
8.69268692, 8.69268692, 8.69101355, 8.69101355, 8.69101355,
8.69101355, 8.68679018, 8.68679018, 8.68679018, 8.68679018,
8.67169423, 8.67169423, 8.67169423, 8.67169423, 8.59940696,
8.59940696, 8.59940696, 8.59940696, 8.19829508, 8.19829508,
8.19829508, 8.19829508, 6.15081393, 6.15081393, 6.15081393,
6.15081393, -0.62046552, -0.62046552, -0.62046552, -0.62046552,
-5.79868084, -5.79868084, -5.79868084, -5.79868084, -6.18525764,
-6.18525764, -6.18525764, -6.18525764, -6.19606479, -6.19606479,
-6.19606479, -6.19606479, -6.19632368, -6.19632368, -6.19632368,
-6.19632368, -6.19632985, -6.19632985, -6.19632985, -6.19632985,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400001, 460.89400001, 460.89400001, 460.89400001,
460.89400003, 460.89400003, 460.89400003, 460.89400003,
460.89400011, 460.89400011, 460.89400011, 460.89400011,
460.89400047, 460.89400047, 460.89400047, 460.89400047,
460.89400194, 460.89400194, 460.89400194, 460.89400194,
460.894008 , 460.894008 , 460.894008 , 460.894008 ,
460.89403291, 460.89403291, 460.89403291, 460.89403291,
460.89413504, 460.89413504, 460.89413504, 460.89413504,
460.89455274, 460.89455274, 460.89455274, 460.89455274,
460.89625675, 460.89625675, 460.89625675, 460.89625675,
460.90319027, 460.90319027, 460.90319027, 460.90319027,
460.93133142, 460.93133142, 460.93133142, 460.93133142,
461.04527487, 461.04527487, 461.04527487, 461.04527487,
461.50551801, 461.50551801, 461.50551801, 461.50551801,
463.35874362, 463.35874362, 463.35874362, 463.35874362,
470.77399165, 470.77399165, 470.77399165, 470.77399165,
499.91311649, 499.91311649, 499.91311649, 499.91311649,
607.72907468, 607.72907468, 607.72907468, 607.72907468,
937.52073538, 937.52073538, 937.52073538, 937.52073538,
1342.554988 , 1342.554988 , 1342.554988 , 1342.554988 ,
1565.38590105, 1565.38590105, 1565.38590105, 1565.38590105,
1644.82582902, 1644.82582902, 1644.82582902, 1644.82582902,
1670.41110412, 1670.41110412, 1670.41110412, 1670.41110412,
1678.82418254, 1678.82418254, 1678.82418254, 1678.82418254,
1682.32094248, 1682.32094248, 1682.32094248, 1682.32094248,
1684.65256293, 1684.65256293, 1684.65256293, 1684.65256293,
1686.56765509, 1686.56765509, 1686.56765509, 1686.56765509,
1688.04385825, 1688.04385825, 1688.04385825, 1688.04385825,
1689.13073435, 1689.13073435, 1689.13073435, 1689.13073435,
1689.86045769, 1689.86045769, 1689.86045769, 1689.86045769,
1690.38179979, 1690.38179979, 1690.38179979, 1690.38179979,
1690.86871462, 1690.86871462, 1690.86871462, 1690.86871462,
1691.29315664, 1691.29315664, 1691.29315664, 1691.29315664,
1691.56097335, 1691.56097335, 1691.56097335, 1691.56097335,
1691.61386226, 1691.61386226, 1691.61386226, 1691.61386226,
1691.50761164, 1691.50761164, 1691.50761164, 1691.50761164,
1691.41625769, 1691.41625769, 1691.41625769, 1691.41625769,
1691.40650495, 1691.40650495, 1691.40650495, 1691.40650495,
1691.37915294, 1691.37915294, 1691.37915294, 1691.37915294,
1691.2478804 , 1691.2478804 , 1691.2478804 , 1691.2478804 ,
1690.632513 , 1690.632513 , 1690.632513 , 1690.632513 ,
1687.30275079, 1687.30275079, 1687.30275079, 1687.30275079,
1667.9703053 , 1667.9703053 , 1667.9703053 , 1667.9703053 ,
1564.50056367, 1564.50056367, 1564.50056367, 1564.50056367,
1129.34533559, 1129.34533559, 1129.34533559, 1129.34533559,
308.00600506, 308.00600506, 308.00600506, 308.00600506,
55.7105872 , 55.7105872 , 55.7105872 , 55.7105872 ,
46.31374378, 46.31374378, 46.31374378, 46.31374378,
46.10021519, 46.10021519, 46.10021519, 46.10021519,
46.09512428, 46.09512428, 46.09512428, 46.09512428,
46.09500296, 46.09500296, 46.09500296, 46.09500296,
46.09500007, 46.09500007, 46.09500007, 46.09500007,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}], 'minmod_hll': [{'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924175,
5.99924175, 5.99924175, 5.99924175, 7.50328369, 7.50328369,
7.50328369, 7.50328369, 12.95563948, 12.95563948, 12.95563948,
12.95563948, 14.21461244, 14.21461244, 14.21461244, 14.21461244,
14.26597869, 14.26597869, 14.26597869, 14.26597869, 14.29620398,
14.29620398, 14.29620398, 14.29620398, 14.31140104, 14.31140104,
14.31140104, 14.31140104, 14.31100702, 14.31100702, 14.31100702,
14.31100702, 14.29446786, 14.29446786, 14.29446786, 14.29446786,
14.25457189, 14.25457189, 14.25457189, 14.25457189, 14.22089279,
14.22089279, 14.22089279, 14.22089279, 14.2140995 , 14.2140995 ,
14.2140995 , 14.2140995 , 14.230855 , 14.230855 , 14.230855 ,
14.230855 , 14.30451572, 14.30451572, 14.30451572, 14.30451572,
14.49280321, 14.49280321, 14.49280321, 14.49280321, 14.87118548,
14.87118548, 14.87118548, 14.87118548, 15.55993934, 15.55993934,
15.55993934, 15.55993934, 16.72599032, 16.72599032, 16.72599032,
16.72599032, 18.54190558, 18.54190558, 18.54190558, 18.54190558,
21.12396593, 21.12396593, 21.12396593, 21.12396593, 24.34154715,
24.34154715, 24.34154715, 24.34154715, 27.04434474, 27.04434474,
27.04434474, 27.04434474, 28.79121568, 28.79121568, 28.79121568,
28.79121568, 29.84306714, 29.84306714, 29.84306714, 29.84306714,
30.37592471, 30.37592471, 30.37592471, 30.37592471, 30.48110966,
30.48110966, 30.48110966, 30.48110966, 29.62085485, 29.62085485,
29.62085485, 29.62085485, 24.0650166 , 24.0650166 , 24.0650166 ,
24.0650166 , 11.01922569, 11.01922569, 11.01922569, 11.01922569,
6.02823674, 6.02823674, 6.02823674, 6.02823674, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749697,
19.59749697, 19.59749697, 19.59749697, 16.95529738, 16.95529738,
16.95529738, 16.95529738, 9.94886504, 9.94886504, 9.94886504,
9.94886504, 8.7751003 , 8.7751003 , 8.7751003 , 8.7751003 ,
8.75876513, 8.75876513, 8.75876513, 8.75876513, 8.75481978,
8.75481978, 8.75481978, 8.75481978, 8.74649755, 8.74649755,
8.74649755, 8.74649755, 8.73232047, 8.73232047, 8.73232047,
8.73232047, 8.71080399, 8.71080399, 8.71080399, 8.71080399,
8.67933271, 8.67933271, 8.67933271, 8.67933271, 8.65538411,
8.65538411, 8.65538411, 8.65538411, 8.64657396, 8.64657396,
8.64657396, 8.64657396, 8.64656243, 8.64656243, 8.64656243,
8.64656243, 8.65512649, 8.65512649, 8.65512649, 8.65512649,
8.67124445, 8.67124445, 8.67124445, 8.67124445, 8.68455317,
8.68455317, 8.68455317, 8.68455317, 8.6926855 , 8.6926855 ,
8.6926855 , 8.6926855 , 8.6977869 , 8.6977869 , 8.6977869 ,
8.6977869 , 8.70066537, 8.70066537, 8.70066537, 8.70066537,
8.70186509, 8.70186509, 8.70186509, 8.70186509, 8.7025879 ,
8.7025879 , 8.7025879 , 8.7025879 , 8.70423534, 8.70423534,
8.70423534, 8.70423534, 8.70472602, 8.70472602, 8.70472602,
8.70472602, 8.70339833, 8.70339833, 8.70339833, 8.70339833,
8.69328274, 8.69328274, 8.69328274, 8.69328274, 8.63090024,
8.63090024, 8.63090024, 8.63090024, 8.27365336, 8.27365336,
8.27365336, 8.27365336, 6.3370291 , 6.3370291 , 6.3370291 ,
6.3370291 , -0.42820866, -0.42820866, -0.42820866, -0.42820866,
-6.14805215, -6.14805215, -6.14805215, -6.14805215, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89418872, 460.89418872, 460.89418872, 460.89418872,
662.15281107, 662.15281107, 662.15281107, 662.15281107,
1476.59370104, 1476.59370104, 1476.59370104, 1476.59370104,
1682.0283287 , 1682.0283287 , 1682.0283287 , 1682.0283287 ,
1687.07142158, 1687.07142158, 1687.07142158, 1687.07142158,
1689.30892977, 1689.30892977, 1689.30892977, 1689.30892977,
1690.54048929, 1690.54048929, 1690.54048929, 1690.54048929,
1690.25795278, 1690.25795278, 1690.25795278, 1690.25795278,
1688.31057081, 1688.31057081, 1688.31057081, 1688.31057081,
1684.27799582, 1684.27799582, 1684.27799582, 1684.27799582,
1681.35018005, 1681.35018005, 1681.35018005, 1681.35018005,
1680.9883242 , 1680.9883242 , 1680.9883242 , 1680.9883242 ,
1682.0518864 , 1682.0518864 , 1682.0518864 , 1682.0518864 ,
1684.46279298, 1684.46279298, 1684.46279298, 1684.46279298,
1688.12789868, 1688.12789868, 1688.12789868, 1688.12789868,
1691.19706367, 1691.19706367, 1691.19706367, 1691.19706367,
1693.28049544, 1693.28049544, 1693.28049544, 1693.28049544,
1694.83831558, 1694.83831558, 1694.83831558, 1694.83831558,
1696.01546425, 1696.01546425, 1696.01546425, 1696.01546425,
1696.7906615 , 1696.7906615 , 1696.7906615 , 1696.7906615 ,
1697.18753803, 1697.18753803, 1697.18753803, 1697.18753803,
1697.04110035, 1697.04110035, 1697.04110035, 1697.04110035,
1696.87609094, 1696.87609094, 1696.87609094, 1696.87609094,
1696.40061659, 1696.40061659, 1696.40061659, 1696.40061659,
1693.52125738, 1693.52125738, 1693.52125738, 1693.52125738,
1676.64941951, 1676.64941951, 1676.64941951, 1676.64941951,
1582.38983336, 1582.38983336, 1582.38983336, 1582.38983336,
1162.96939042, 1162.96939042, 1162.96939042, 1162.96939042,
318.04766103, 318.04766103, 318.04766103, 318.04766103,
47.31074005, 47.31074005, 47.31074005, 47.31074005,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}], 'minmod_hllc': [{'rho': array([5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633]), 'P': array([460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 12.70268903,
12.70268903, 12.70268903, 12.70268903, 7.94541357, 7.94541357,
7.94541357, 7.94541357, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 7.09582484,
7.09582484, 7.09582484, 7.09582484, -3.14962884, -3.14962884,
-3.14962884, -3.14962884, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1125.57882152, 1125.57882152, 1125.57882152, 1125.57882152,
167.18428479, 167.18428479, 167.18428479, 167.18428479,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 14.65201256,
14.65201256, 14.65201256, 14.65201256, 14.1609294 , 14.1609294 ,
14.1609294 , 14.1609294 , 6.49084323, 6.49084323, 6.49084323,
6.49084323, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 10.42468887,
10.42468887, 10.42468887, 10.42468887, 3.58967233, 3.58967233,
3.58967233, 3.58967233, -5.58060798, -5.58060798, -5.58060798,
-5.58060798, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1509.2991421 , 1509.2991421 , 1509.2991421 , 1509.2991421 ,
815.9988919 , 815.9988919 , 815.9988919 , 815.9988919 ,
60.09885512, 60.09885512, 60.09885512, 60.09885512,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 13.6342065 ,
13.6342065 , 13.6342065 , 13.6342065 , 18.15293127, 18.15293127,
18.15293127, 18.15293127, 12.16929563, 12.16929563, 12.16929563,
12.16929563, 6.00303438, 6.00303438, 6.00303438, 6.00303438,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.41089904,
11.41089904, 11.41089904, 11.41089904, 7.63691331, 7.63691331,
7.63691331, 7.63691331, 1.02824549, 1.02824549, 1.02824549,
1.02824549, -6.18504836, -6.18504836, -6.18504836, -6.18504836,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1503.91400046, 1503.91400046, 1503.91400046, 1503.91400046,
1488.96829463, 1488.96829463, 1488.96829463, 1488.96829463,
470.61112439, 470.61112439, 470.61112439, 470.61112439,
46.315976 , 46.315976 , 46.315976 , 46.315976 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 11.54713795,
11.54713795, 11.54713795, 11.54713795, 19.12548955, 19.12548955,
19.12548955, 19.12548955, 18.48218756, 18.48218756, 18.48218756,
18.48218756, 9.4679153 , 9.4679153 , 9.4679153 , 9.4679153 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.70335328,
11.70335328, 11.70335328, 11.70335328, 8.99974457, 8.99974457,
8.99974457, 8.99974457, 6.45769361, 6.45769361, 6.45769361,
6.45769361, -1.86410647, -1.86410647, -1.86410647, -1.86410647,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1350.42527422, 1350.42527422, 1350.42527422, 1350.42527422,
1792.05437148, 1792.05437148, 1792.05437148, 1792.05437148,
1224.90003591, 1224.90003591, 1224.90003591, 1224.90003591,
223.0972597 , 223.0972597 , 223.0972597 , 223.0972597 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.55899688,
10.55899688, 10.55899688, 10.55899688, 17.52496537, 17.52496537,
17.52496537, 17.52496537, 19.92934821, 19.92934821, 19.92934821,
19.92934821, 17.99707036, 17.99707036, 17.99707036, 17.99707036,
7.26803214, 7.26803214, 7.26803214, 7.26803214, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.63398171,
11.63398171, 11.63398171, 11.63398171, 9.12548235, 9.12548235,
9.12548235, 9.12548235, 8.70353792, 8.70353792, 8.70353792,
8.70353792, 4.889767 , 4.889767 , 4.889767 , 4.889767 ,
-4.54241731, -4.54241731, -4.54241731, -4.54241731, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1202.7937303 , 1202.7937303 , 1202.7937303 , 1202.7937303 ,
1836.37786652, 1836.37786652, 1836.37786652, 1836.37786652,
1649.76861147, 1649.76861147, 1649.76861147, 1649.76861147,
943.78416678, 943.78416678, 943.78416678, 943.78416678,
93.25195493, 93.25195493, 93.25195493, 93.25195493,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.30570418,
10.30570418, 10.30570418, 10.30570418, 15.31637241, 15.31637241,
15.31637241, 15.31637241, 18.9791078 , 18.9791078 , 18.9791078 ,
18.9791078 , 21.63035995, 21.63035995, 21.63035995, 21.63035995,
15.46350461, 15.46350461, 15.46350461, 15.46350461, 6.2390466 ,
6.2390466 , 6.2390466 , 6.2390466 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.76919101,
11.76919101, 11.76919101, 11.76919101, 8.80224489, 8.80224489,
8.80224489, 8.80224489, 9.09238506, 9.09238506, 9.09238506,
9.09238506, 8.12333611, 8.12333611, 8.12333611, 8.12333611,
2.96585865, 2.96585865, 2.96585865, 2.96585865, -5.89754921,
-5.89754921, -5.89754921, -5.89754921, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1135.16202434, 1135.16202434, 1135.16202434, 1135.16202434,
1759.44703479, 1759.44703479, 1759.44703479, 1759.44703479,
1733.21469229, 1733.21469229, 1733.21469229, 1733.21469229,
1537.63026242, 1537.63026242, 1537.63026242, 1537.63026242,
655.14721744, 655.14721744, 655.14721744, 655.14721744,
52.68789681, 52.68789681, 52.68789681, 52.68789681,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.21337442,
10.21337442, 10.21337442, 10.21337442, 13.99862304, 13.99862304,
13.99862304, 13.99862304, 17.03111413, 17.03111413, 17.03111413,
17.03111413, 21.43390917, 21.43390917, 21.43390917, 21.43390917,
21.7588112 , 21.7588112 , 21.7588112 , 21.7588112 , 12.16152619,
12.16152619, 12.16152619, 12.16152619, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 12.13621027,
12.13621027, 12.13621027, 12.13621027, 8.62418669, 8.62418669,
8.62418669, 8.62418669, 8.95777872, 8.95777872, 8.95777872,
8.95777872, 8.81664421, 8.81664421, 8.81664421, 8.81664421,
7.33932219, 7.33932219, 7.33932219, 7.33932219, 0.56862407,
0.56862407, 0.56862407, 0.56862407, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1099.96956372, 1099.96956372, 1099.96956372, 1099.96956372,
1710.4465244 , 1710.4465244 , 1710.4465244 , 1710.4465244 ,
1704.42259337, 1704.42259337, 1704.42259337, 1704.42259337,
1695.22675438, 1695.22675438, 1695.22675438, 1695.22675438,
1362.18896468, 1362.18896468, 1362.18896468, 1362.18896468,
395.14058089, 395.14058089, 395.14058089, 395.14058089,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.22313019,
10.22313019, 10.22313019, 10.22313019, 13.34785117, 13.34785117,
13.34785117, 13.34785117, 15.5094266 , 15.5094266 , 15.5094266 ,
15.5094266 , 19.56706902, 19.56706902, 19.56706902, 19.56706902,
22.6681537 , 22.6681537 , 22.6681537 , 22.6681537 , 20.82008041,
20.82008041, 20.82008041, 20.82008041, 9.11732965, 9.11732965,
9.11732965, 9.11732965, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 12.52788663,
12.52788663, 12.52788663, 12.52788663, 8.58922451, 8.58922451,
8.58922451, 8.58922451, 8.81451991, 8.81451991, 8.81451991,
8.81451991, 8.8340112 , 8.8340112 , 8.8340112 , 8.8340112 ,
8.5886347 , 8.5886347 , 8.5886347 , 8.5886347 , 6.18718895,
6.18718895, 6.18718895, 6.18718895, -2.27317635, -2.27317635,
-2.27317635, -2.27317635, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1067.13409325, 1067.13409325, 1067.13409325, 1067.13409325,
1690.10203345, 1690.10203345, 1690.10203345, 1690.10203345,
1677.77771501, 1677.77771501, 1677.77771501, 1677.77771501,
1699.24085344, 1699.24085344, 1699.24085344, 1699.24085344,
1626.99145622, 1626.99145622, 1626.99145622, 1626.99145622,
1137.85447905, 1137.85447905, 1137.85447905, 1137.85447905,
195.96745623, 195.96745623, 195.96745623, 195.96745623,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.20035213,
10.20035213, 10.20035213, 10.20035213, 13.15694058, 13.15694058,
13.15694058, 13.15694058, 14.4992978 , 14.4992978 , 14.4992978 ,
14.4992978 , 17.41908334, 17.41908334, 17.41908334, 17.41908334,
21.67196262, 21.67196262, 21.67196262, 21.67196262, 23.40867052,
23.40867052, 23.40867052, 23.40867052, 18.47858247, 18.47858247,
18.47858247, 18.47858247, 7.07383389, 7.07383389, 7.07383389,
7.07383389, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 12.96924236,
12.96924236, 12.96924236, 12.96924236, 8.58665363, 8.58665363,
8.58665363, 8.58665363, 8.73327632, 8.73327632, 8.73327632,
8.73327632, 8.76976507, 8.76976507, 8.76976507, 8.76976507,
8.78887952, 8.78887952, 8.78887952, 8.78887952, 8.21209119,
8.21209119, 8.21209119, 8.21209119, 4.54306925, 4.54306925,
4.54306925, 4.54306925, -4.80641289, -4.80641289, -4.80641289,
-4.80641289, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1034.34945451, 1034.34945451, 1034.34945451, 1034.34945451,
1679.03320625, 1679.03320625, 1679.03320625, 1679.03320625,
1664.63745801, 1664.63745801, 1664.63745801, 1664.63745801,
1684.09424 , 1684.09424 , 1684.09424 , 1684.09424 ,
1673.42176972, 1673.42176972, 1673.42176972, 1673.42176972,
1539.49588798, 1539.49588798, 1539.49588798, 1539.49588798,
861.67230835, 861.67230835, 861.67230835, 861.67230835,
84.43620991, 84.43620991, 84.43620991, 84.43620991,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.02954724,
10.02954724, 10.02954724, 10.02954724, 13.30998119, 13.30998119,
13.30998119, 13.30998119, 13.9266306 , 13.9266306 , 13.9266306 ,
13.9266306 , 15.83435153, 15.83435153, 15.83435153, 15.83435153,
19.57096804, 19.57096804, 19.57096804, 19.57096804, 23.30670777,
23.30670777, 23.30670777, 23.30670777, 23.49784333, 23.49784333,
23.49784333, 23.49784333, 14.97949036, 14.97949036, 14.97949036,
14.97949036, 6.10888587, 6.10888587, 6.10888587, 6.10888587,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 13.49842594,
13.49842594, 13.49842594, 13.49842594, 8.59916052, 8.59916052,
8.59916052, 8.59916052, 8.69439542, 8.69439542, 8.69439542,
8.69439542, 8.71379635, 8.71379635, 8.71379635, 8.71379635,
8.78352452, 8.78352452, 8.78352452, 8.78352452, 8.67635375,
8.67635375, 8.67635375, 8.67635375, 7.62020122, 7.62020122,
7.62020122, 7.62020122, 2.3026965 , 2.3026965 , 2.3026965 ,
2.3026965 , -6.05984314, -6.05984314, -6.05984314, -6.05984314,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
999.1673707 , 999.1673707 , 999.1673707 , 999.1673707 ,
1673.29394535, 1673.29394535, 1673.29394535, 1673.29394535,
1659.65444353, 1659.65444353, 1659.65444353, 1659.65444353,
1670.2297542 , 1670.2297542 , 1670.2297542 , 1670.2297542 ,
1671.94982265, 1671.94982265, 1671.94982265, 1671.94982265,
1649.23987565, 1649.23987565, 1649.23987565, 1649.23987565,
1412.10782611, 1412.10782611, 1412.10782611, 1412.10782611,
566.73710562, 566.73710562, 566.73710562, 566.73710562,
48.98587735, 48.98587735, 48.98587735, 48.98587735,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 9.65533767,
9.65533767, 9.65533767, 9.65533767, 13.68252917, 13.68252917,
13.68252917, 13.68252917, 13.71303715, 13.71303715, 13.71303715,
13.71303715, 14.79110894, 14.79110894, 14.79110894, 14.79110894,
17.50309985, 17.50309985, 17.50309985, 17.50309985, 21.84028144,
21.84028144, 21.84028144, 21.84028144, 24.32473078, 24.32473078,
24.32473078, 24.32473078, 22.68068249, 22.68068249, 22.68068249,
22.68068249, 11.03686103, 11.03686103, 11.03686103, 11.03686103,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 14.14741904,
14.14741904, 14.14741904, 14.14741904, 8.62178593, 8.62178593,
8.62178593, 8.62178593, 8.68626335, 8.68626335, 8.68626335,
8.68626335, 8.68737656, 8.68737656, 8.68737656, 8.68737656,
8.74732911, 8.74732911, 8.74732911, 8.74732911, 8.74308312,
8.74308312, 8.74308312, 8.74308312, 8.49452049, 8.49452049,
8.49452049, 8.49452049, 6.69456047, 6.69456047, 6.69456047,
6.69456047, -0.52317349, -0.52317349, -0.52317349, -0.52317349,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
958.44988475, 958.44988475, 958.44988475, 958.44988475,
1671.21493997, 1671.21493997, 1671.21493997, 1671.21493997,
1659.26320397, 1659.26320397, 1659.26320397, 1659.26320397,
1662.91567575, 1662.91567575, 1662.91567575, 1662.91567575,
1664.13115487, 1664.13115487, 1664.13115487, 1664.13115487,
1665.297139 , 1665.297139 , 1665.297139 , 1665.297139 ,
1610.83715793, 1610.83715793, 1610.83715793, 1610.83715793,
1229.41899476, 1229.41899476, 1229.41899476, 1229.41899476,
305.12836104, 305.12836104, 305.12836104, 305.12836104,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 9.17559129,
9.17559129, 9.17559129, 9.17559129, 14.02365251, 14.02365251,
14.02365251, 14.02365251, 13.76047403, 13.76047403, 13.76047403,
13.76047403, 14.22025893, 14.22025893, 14.22025893, 14.22025893,
15.99479628, 15.99479628, 15.99479628, 15.99479628, 19.62994353,
19.62994353, 19.62994353, 19.62994353, 23.68403303, 23.68403303,
23.68403303, 23.68403303, 24.86589844, 24.86589844, 24.86589844,
24.86589844, 20.52055368, 20.52055368, 20.52055368, 20.52055368,
8.00814937, 8.00814937, 8.00814937, 8.00814937, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 14.77025981,
14.77025981, 14.77025981, 14.77025981, 8.70672217, 8.70672217,
8.70672217, 8.70672217, 8.71185652, 8.71185652, 8.71185652,
8.71185652, 8.69053038, 8.69053038, 8.69053038, 8.69053038,
8.72003541, 8.72003541, 8.72003541, 8.72003541, 8.7334469 ,
8.7334469 , 8.7334469 , 8.7334469 , 8.68309091, 8.68309091,
8.68309091, 8.68309091, 8.20418663, 8.20418663, 8.20418663,
8.20418663, 5.29342736, 5.29342736, 5.29342736, 5.29342736,
-3.63537019, -3.63537019, -3.63537019, -3.63537019, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
899.70891154, 899.70891154, 899.70891154, 899.70891154,
1681.7730429 , 1681.7730429 , 1681.7730429 , 1681.7730429 ,
1664.38132397, 1664.38132397, 1664.38132397, 1664.38132397,
1661.56266831, 1661.56266831, 1661.56266831, 1661.56266831,
1658.70555605, 1658.70555605, 1658.70555605, 1658.70555605,
1663.28075963, 1663.28075963, 1663.28075963, 1663.28075963,
1656.53499514, 1656.53499514, 1656.53499514, 1656.53499514,
1545.9854808 , 1545.9854808 , 1545.9854808 , 1545.9854808 ,
979.576008 , 979.576008 , 979.576008 , 979.576008 ,
128.91410923, 128.91410923, 128.91410923, 128.91410923,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 8.67292336,
8.67292336, 8.67292336, 8.67292336, 14.19695604, 14.19695604,
14.19695604, 14.19695604, 13.91254383, 13.91254383, 13.91254383,
13.91254383, 14.02878657, 14.02878657, 14.02878657, 14.02878657,
15.03196644, 15.03196644, 15.03196644, 15.03196644, 17.65576232,
17.65576232, 17.65576232, 17.65576232, 21.93563921, 21.93563921,
21.93563921, 21.93563921, 24.89950561, 24.89950561, 24.89950561,
24.89950561, 24.90292343, 24.90292343, 24.90292343, 24.90292343,
16.88767399, 16.88767399, 16.88767399, 16.88767399, 6.4143529 ,
6.4143529 , 6.4143529 , 6.4143529 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 15.37284549,
15.37284549, 15.37284549, 15.37284549, 8.76622365, 8.76622365,
8.76622365, 8.76622365, 8.77570001, 8.77570001, 8.77570001,
8.77570001, 8.73436398, 8.73436398, 8.73436398, 8.73436398,
8.7207272 , 8.7207272 , 8.7207272 , 8.7207272 , 8.71892386,
8.71892386, 8.71892386, 8.71892386, 8.70849585, 8.70849585,
8.70849585, 8.70849585, 8.59195686, 8.59195686, 8.59195686,
8.59195686, 7.72578913, 7.72578913, 7.72578913, 7.72578913,
3.25941775, 3.25941775, 3.25941775, 3.25941775, -5.6791429 ,
-5.6791429 , -5.6791429 , -5.6791429 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
829.22159977, 829.22159977, 829.22159977, 829.22159977,
1689.36090883, 1689.36090883, 1689.36090883, 1689.36090883,
1675.83139319, 1675.83139319, 1675.83139319, 1675.83139319,
1667.43562786, 1667.43562786, 1667.43562786, 1667.43562786,
1658.97291748, 1658.97291748, 1658.97291748, 1658.97291748,
1660.46027375, 1660.46027375, 1660.46027375, 1660.46027375,
1662.95586925, 1662.95586925, 1662.95586925, 1662.95586925,
1639.8598087 , 1639.8598087 , 1639.8598087 , 1639.8598087 ,
1441.93374147, 1441.93374147, 1441.93374147, 1441.93374147,
679.55620664, 679.55620664, 679.55620664, 679.55620664,
58.13303639, 58.13303639, 58.13303639, 58.13303639,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 8.1726475 ,
8.1726475 , 8.1726475 , 8.1726475 , 14.2751961 , 14.2751961 ,
14.2751961 , 14.2751961 , 14.0398136 , 14.0398136 , 14.0398136 ,
14.0398136 , 14.02269412, 14.02269412, 14.02269412, 14.02269412,
14.51703694, 14.51703694, 14.51703694, 14.51703694, 16.24603055,
16.24603055, 16.24603055, 16.24603055, 19.72642061, 19.72642061,
19.72642061, 19.72642061, 23.89358146, 23.89358146, 23.89358146,
23.89358146, 25.71866923, 25.71866923, 25.71866923, 25.71866923,
24.04908508, 24.04908508, 24.04908508, 24.04908508, 12.5411211 ,
12.5411211 , 12.5411211 , 12.5411211 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 16.03410104,
16.03410104, 16.03410104, 16.03410104, 8.79130006, 8.79130006,
8.79130006, 8.79130006, 8.81715052, 8.81715052, 8.81715052,
8.81715052, 8.79265702, 8.79265702, 8.79265702, 8.79265702,
8.75616599, 8.75616599, 8.75616599, 8.75616599, 8.72386962,
8.72386962, 8.72386962, 8.72386962, 8.70850068, 8.70850068,
8.70850068, 8.70850068, 8.67535339, 8.67535339, 8.67535339,
8.67535339, 8.43738605, 8.43738605, 8.43738605, 8.43738605,
6.95183196, 6.95183196, 6.95183196, 6.95183196, 0.562619 ,
0.562619 , 0.562619 , 0.562619 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
756.31863848, 756.31863848, 756.31863848, 756.31863848,
1690.90500563, 1690.90500563, 1690.90500563, 1690.90500563,
1682.50978857, 1682.50978857, 1682.50978857, 1682.50978857,
1676.32059956, 1676.32059956, 1676.32059956, 1676.32059956,
1666.00066684, 1666.00066684, 1666.00066684, 1666.00066684,
1662.155713 , 1662.155713 , 1662.155713 , 1662.155713 ,
1663.26314213, 1663.26314213, 1663.26314213, 1663.26314213,
1660.5139094 , 1660.5139094 , 1660.5139094 , 1660.5139094 ,
1610.4610547 , 1610.4610547 , 1610.4610547 , 1610.4610547 ,
1281.72005283, 1281.72005283, 1281.72005283, 1281.72005283,
390.01870408, 390.01870408, 390.01870408, 390.01870408,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 7.65835956,
7.65835956, 7.65835956, 7.65835956, 14.32165135, 14.32165135,
14.32165135, 14.32165135, 14.14230367, 14.14230367, 14.14230367,
14.14230367, 14.05183665, 14.05183665, 14.05183665, 14.05183665,
14.28205848, 14.28205848, 14.28205848, 14.28205848, 15.34364942,
15.34364942, 15.34364942, 15.34364942, 17.87691577, 17.87691577,
17.87691577, 17.87691577, 22.0032607 , 22.0032607 , 22.0032607 ,
22.0032607 , 25.32794076, 25.32794076, 25.32794076, 25.32794076,
26.09347017, 26.09347017, 26.09347017, 26.09347017, 21.90065484,
21.90065484, 21.90065484, 21.90065484, 8.85587752, 8.85587752,
8.85587752, 8.85587752, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 16.78663193,
16.78663193, 16.78663193, 16.78663193, 8.80903942, 8.80903942,
8.80903942, 8.80903942, 8.83420513, 8.83420513, 8.83420513,
8.83420513, 8.82578366, 8.82578366, 8.82578366, 8.82578366,
8.80624892, 8.80624892, 8.80624892, 8.80624892, 8.75606374,
8.75606374, 8.75606374, 8.75606374, 8.72014166, 8.72014166,
8.72014166, 8.72014166, 8.69359444, 8.69359444, 8.69359444,
8.69359444, 8.61961759, 8.61961759, 8.61961759, 8.61961759,
8.1975906 , 8.1975906 , 8.1975906 , 8.1975906 , 5.72784319,
5.72784319, 5.72784319, 5.72784319, -2.66628544, -2.66628544,
-2.66628544, -2.66628544, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
681.23245756, 681.23245756, 681.23245756, 681.23245756,
1690.30672294, 1690.30672294, 1690.30672294, 1690.30672294,
1684.86233553, 1684.86233553, 1684.86233553, 1684.86233553,
1681.43710379, 1681.43710379, 1681.43710379, 1681.43710379,
1675.40103056, 1675.40103056, 1675.40103056, 1675.40103056,
1669.20788372, 1669.20788372, 1669.20788372, 1669.20788372,
1666.30842464, 1666.30842464, 1666.30842464, 1666.30842464,
1665.3407405 , 1665.3407405 , 1665.3407405 , 1665.3407405 ,
1655.60295511, 1655.60295511, 1655.60295511, 1655.60295511,
1554.56956983, 1554.56956983, 1554.56956983, 1554.56956983,
1052.37511398, 1052.37511398, 1052.37511398, 1052.37511398,
173.89490782, 173.89490782, 173.89490782, 173.89490782,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 7.1186186 ,
7.1186186 , 7.1186186 , 7.1186186 , 14.36047128, 14.36047128,
14.36047128, 14.36047128, 14.23425478, 14.23425478, 14.23425478,
14.23425478, 14.08783389, 14.08783389, 14.08783389, 14.08783389,
14.1779188 , 14.1779188 , 14.1779188 , 14.1779188 , 14.80411924,
14.80411924, 14.80411924, 14.80411924, 16.54777994, 16.54777994,
16.54777994, 16.54777994, 19.86979654, 19.86979654, 19.86979654,
19.86979654, 24.0787207 , 24.0787207 , 24.0787207 , 24.0787207 ,
26.24622763, 26.24622763, 26.24622763, 26.24622763, 25.9971748 ,
25.9971748 , 25.9971748 , 25.9971748 , 18.23903099, 18.23903099,
18.23903099, 18.23903099, 6.75171429, 6.75171429, 6.75171429,
6.75171429, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 17.66210704,
17.66210704, 17.66210704, 17.66210704, 8.82876563, 8.82876563,
8.82876563, 8.82876563, 8.8421663 , 8.8421663 , 8.8421663 ,
8.8421663 , 8.84053347, 8.84053347, 8.84053347, 8.84053347,
8.83357077, 8.83357077, 8.83357077, 8.83357077, 8.79975317,
8.79975317, 8.79975317, 8.79975317, 8.75109312, 8.75109312,
8.75109312, 8.75109312, 8.71258084, 8.71258084, 8.71258084,
8.71258084, 8.66774146, 8.66774146, 8.66774146, 8.66774146,
8.54608762, 8.54608762, 8.54608762, 8.54608762, 7.79555086,
7.79555086, 7.79555086, 7.79555086, 3.87424856, 3.87424856,
3.87424856, 3.87424856, -5.24819713, -5.24819713, -5.24819713,
-5.24819713, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
603.49144206, 603.49144206, 603.49144206, 603.49144206,
1688.86963269, 1688.86963269, 1688.86963269, 1688.86963269,
1685.80128371, 1685.80128371, 1685.80128371, 1685.80128371,
1683.63621235, 1683.63621235, 1683.63621235, 1683.63621235,
1680.55379063, 1680.55379063, 1680.55379063, 1680.55379063,
1678.31408237, 1678.31408237, 1678.31408237, 1678.31408237,
1673.35912582, 1673.35912582, 1673.35912582, 1673.35912582,
1670.22253987, 1670.22253987, 1670.22253987, 1670.22253987,
1667.74232817, 1667.74232817, 1667.74232817, 1667.74232817,
1640.45420665, 1640.45420665, 1640.45420665, 1640.45420665,
1461.51470867, 1461.51470867, 1461.51470867, 1461.51470867,
759.33857352, 759.33857352, 759.33857352, 759.33857352,
70.18449572, 70.18449572, 70.18449572, 70.18449572,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.61166788,
6.61166788, 6.61166788, 6.61166788, 14.33732237, 14.33732237,
14.33732237, 14.33732237, 14.30419681, 14.30419681, 14.30419681,
14.30419681, 14.14329976, 14.14329976, 14.14329976, 14.14329976,
14.14882045, 14.14882045, 14.14882045, 14.14882045, 14.48679804,
14.48679804, 14.48679804, 14.48679804, 15.63739956, 15.63739956,
15.63739956, 15.63739956, 18.13287272, 18.13287272, 18.13287272,
18.13287272, 22.14916876, 22.14916876, 22.14916876, 22.14916876,
25.56645324, 25.56645324, 25.56645324, 25.56645324, 26.84277136,
26.84277136, 26.84277136, 26.84277136, 25.05246497, 25.05246497,
25.05246497, 25.05246497, 13.74497893, 13.74497893, 13.74497893,
13.74497893, 6.01112923, 6.01112923, 6.01112923, 6.01112923,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 18.54223612,
18.54223612, 18.54223612, 18.54223612, 8.88501318, 8.88501318,
8.88501318, 8.88501318, 8.84657176, 8.84657176, 8.84657176,
8.84657176, 8.84965017, 8.84965017, 8.84965017, 8.84965017,
8.8439096 , 8.8439096 , 8.8439096 , 8.8439096 , 8.82217206,
8.82217206, 8.82217206, 8.82217206, 8.78976792, 8.78976792,
8.78976792, 8.78976792, 8.74465325, 8.74465325, 8.74465325,
8.74465325, 8.69615282, 8.69615282, 8.69615282, 8.69615282,
8.64451555, 8.64451555, 8.64451555, 8.64451555, 8.41921963,
8.41921963, 8.41921963, 8.41921963, 7.12455216, 7.12455216,
7.12455216, 7.12455216, 1.30137393, 1.30137393, 1.30137393,
1.30137393, -6.17610092, -6.17610092, -6.17610092, -6.17610092,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
533.78877038, 533.78877038, 533.78877038, 533.78877038,
1678.61449002, 1678.61449002, 1678.61449002, 1678.61449002,
1686.24594275, 1686.24594275, 1686.24594275, 1686.24594275,
1684.76417808, 1684.76417808, 1684.76417808, 1684.76417808,
1682.9536793 , 1682.9536793 , 1682.9536793 , 1682.9536793 ,
1683.43245703, 1683.43245703, 1683.43245703, 1683.43245703,
1681.720835 , 1681.720835 , 1681.720835 , 1681.720835 ,
1678.00552301, 1678.00552301, 1678.00552301, 1678.00552301,
1674.93385409, 1674.93385409, 1674.93385409, 1674.93385409,
1665.09193546, 1665.09193546, 1665.09193546, 1665.09193546,
1612.92728612, 1612.92728612, 1612.92728612, 1612.92728612,
1316.10582435, 1316.10582435, 1316.10582435, 1316.10582435,
457.58271286, 457.58271286, 457.58271286, 457.58271286,
46.49640428, 46.49640428, 46.49640428, 46.49640428,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.30239337,
6.30239337, 6.30239337, 6.30239337, 14.12698879, 14.12698879,
14.12698879, 14.12698879, 14.31831538, 14.31831538, 14.31831538,
14.31831538, 14.21203217, 14.21203217, 14.21203217, 14.21203217,
14.16122537, 14.16122537, 14.16122537, 14.16122537, 14.32221796,
14.32221796, 14.32221796, 14.32221796, 15.0335877 , 15.0335877 ,
15.0335877 , 15.0335877 , 16.82226028, 16.82226028, 16.82226028,
16.82226028, 20.08622976, 20.08622976, 20.08622976, 20.08622976,
24.19351535, 24.19351535, 24.19351535, 24.19351535, 26.65990335,
26.65990335, 26.65990335, 26.65990335, 27.07991409, 27.07991409,
27.07991409, 27.07991409, 22.89045836, 22.89045836, 22.89045836,
22.89045836, 9.62356471, 9.62356471, 9.62356471, 9.62356471,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.07308975,
19.07308975, 19.07308975, 19.07308975, 9.02253672, 9.02253672,
9.02253672, 9.02253672, 8.84125812, 8.84125812, 8.84125812,
8.84125812, 8.85134124, 8.85134124, 8.85134124, 8.85134124,
8.84877196, 8.84877196, 8.84877196, 8.84877196, 8.83196853,
8.83196853, 8.83196853, 8.83196853, 8.8088514 , 8.8088514 ,
8.8088514 , 8.8088514 , 8.77595509, 8.77595509, 8.77595509,
8.77595509, 8.73009145, 8.73009145, 8.73009145, 8.73009145,
8.68944343, 8.68944343, 8.68944343, 8.68944343, 8.60375556,
8.60375556, 8.60375556, 8.60375556, 8.2108148 , 8.2108148 ,
8.2108148 , 8.2108148 , 6.02573007, 6.02573007, 6.02573007,
6.02573007, -1.89911994, -1.89911994, -1.89911994, -1.89911994,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
495.38194177, 495.38194177, 495.38194177, 495.38194177,
1644.53020156, 1644.53020156, 1644.53020156, 1644.53020156,
1684.91455494, 1684.91455494, 1684.91455494, 1684.91455494,
1684.79944511, 1684.79944511, 1684.79944511, 1684.79944511,
1684.57865248, 1684.57865248, 1684.57865248, 1684.57865248,
1686.13849473, 1686.13849473, 1686.13849473, 1686.13849473,
1686.35971641, 1686.35971641, 1686.35971641, 1686.35971641,
1685.52441483, 1685.52441483, 1685.52441483, 1685.52441483,
1683.13310285, 1683.13310285, 1683.13310285, 1683.13310285,
1676.29508646, 1676.29508646, 1676.29508646, 1676.29508646,
1659.30479154, 1659.30479154, 1659.30479154, 1659.30479154,
1562.7097678 , 1562.7097678 , 1562.7097678 , 1562.7097678 ,
1103.51026707, 1103.51026707, 1103.51026707, 1103.51026707,
215.162548 , 215.162548 , 215.162548 , 215.162548 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.14195652,
6.14195652, 6.14195652, 6.14195652, 13.80144353, 13.80144353,
13.80144353, 13.80144353, 14.30497421, 14.30497421, 14.30497421,
14.30497421, 14.25642284, 14.25642284, 14.25642284, 14.25642284,
14.18160262, 14.18160262, 14.18160262, 14.18160262, 14.2515204 ,
14.2515204 , 14.2515204 , 14.2515204 , 14.6640006 , 14.6640006 ,
14.6640006 , 14.6640006 , 15.87822517, 15.87822517, 15.87822517,
15.87822517, 18.37538004, 18.37538004, 18.37538004, 18.37538004,
22.25500924, 22.25500924, 22.25500924, 22.25500924, 25.80283472,
25.80283472, 25.80283472, 25.80283472, 27.34875521, 27.34875521,
27.34875521, 27.34875521, 26.85683706, 26.85683706, 26.85683706,
26.85683706, 19.30182288, 19.30182288, 19.30182288, 19.30182288,
7.0675042 , 7.0675042 , 7.0675042 , 7.0675042 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.3502001 ,
19.3502001 , 19.3502001 , 19.3502001 , 9.21603967, 9.21603967,
9.21603967, 9.21603967, 8.82260996, 8.82260996, 8.82260996,
8.82260996, 8.84048313, 8.84048313, 8.84048313, 8.84048313,
8.84501152, 8.84501152, 8.84501152, 8.84501152, 8.83433152,
8.83433152, 8.83433152, 8.83433152, 8.81787069, 8.81787069,
8.81787069, 8.81787069, 8.79269969, 8.79269969, 8.79269969,
8.79269969, 8.75772964, 8.75772964, 8.75772964, 8.75772964,
8.72570412, 8.72570412, 8.72570412, 8.72570412, 8.67435325,
8.67435325, 8.67435325, 8.67435325, 8.54192455, 8.54192455,
8.54192455, 8.54192455, 7.86009779, 7.86009779, 7.86009779,
7.86009779, 4.30783648, 4.30783648, 4.30783648, 4.30783648,
-4.84140731, -4.84140731, -4.84140731, -4.84140731, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
476.70326546, 476.70326546, 476.70326546, 476.70326546,
1599.20542388, 1599.20542388, 1599.20542388, 1599.20542388,
1681.12761211, 1681.12761211, 1681.12761211, 1681.12761211,
1682.89800753, 1682.89800753, 1682.89800753, 1682.89800753,
1684.67100901, 1684.67100901, 1684.67100901, 1684.67100901,
1687.53791343, 1687.53791343, 1687.53791343, 1687.53791343,
1689.10128233, 1689.10128233, 1689.10128233, 1689.10128233,
1690.03751927, 1690.03751927, 1690.03751927, 1690.03751927,
1689.74571632, 1689.74571632, 1689.74571632, 1689.74571632,
1685.17838523, 1685.17838523, 1685.17838523, 1685.17838523,
1677.17996362, 1677.17996362, 1677.17996362, 1677.17996362,
1645.59189795, 1645.59189795, 1645.59189795, 1645.59189795,
1477.69337386, 1477.69337386, 1477.69337386, 1477.69337386,
821.52788889, 821.52788889, 821.52788889, 821.52788889,
83.10819658, 83.10819658, 83.10819658, 83.10819658,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.06469207,
6.06469207, 6.06469207, 6.06469207, 13.43969448, 13.43969448,
13.43969448, 13.43969448, 14.27300861, 14.27300861, 14.27300861,
14.27300861, 14.26232073, 14.26232073, 14.26232073, 14.26232073,
14.20693264, 14.20693264, 14.20693264, 14.20693264, 14.22600941,
14.22600941, 14.22600941, 14.22600941, 14.451735 , 14.451735 ,
14.451735 , 14.451735 , 15.23715871, 15.23715871, 15.23715871,
15.23715871, 17.05674781, 17.05674781, 17.05674781, 17.05674781,
20.23122256, 20.23122256, 20.23122256, 20.23122256, 24.33909909,
24.33909909, 24.33909909, 24.33909909, 26.94680512, 26.94680512,
26.94680512, 26.94680512, 27.76657318, 27.76657318, 27.76657318,
27.76657318, 25.87187706, 25.87187706, 25.87187706, 25.87187706,
14.71753118, 14.71753118, 14.71753118, 14.71753118, 6.05256418,
6.05256418, 6.05256418, 6.05256418, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.48410417,
19.48410417, 19.48410417, 19.48410417, 9.45689754, 9.45689754,
9.45689754, 9.45689754, 8.79920582, 8.79920582, 8.79920582,
8.79920582, 8.81925127, 8.81925127, 8.81925127, 8.81925127,
8.8299591 , 8.8299591 , 8.8299591 , 8.8299591 , 8.82715687,
8.82715687, 8.82715687, 8.82715687, 8.81789768, 8.81789768,
8.81789768, 8.81789768, 8.80087111, 8.80087111, 8.80087111,
8.80087111, 8.77473484, 8.77473484, 8.77473484, 8.77473484,
8.75195341, 8.75195341, 8.75195341, 8.75195341, 8.71520383,
8.71520383, 8.71520383, 8.71520383, 8.65591151, 8.65591151,
8.65591151, 8.65591151, 8.43568632, 8.43568632, 8.43568632,
8.43568632, 7.25174947, 7.25174947, 7.25174947, 7.25174947,
1.85536253, 1.85536253, 1.85536253, 1.85536253, -6.1268406 ,
-6.1268406 , -6.1268406 , -6.1268406 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
468.03926864, 468.03926864, 468.03926864, 468.03926864,
1550.80208207, 1550.80208207, 1550.80208207, 1550.80208207,
1676.67695683, 1676.67695683, 1676.67695683, 1676.67695683,
1679.10151146, 1679.10151146, 1679.10151146, 1679.10151146,
1682.92083724, 1682.92083724, 1682.92083724, 1682.92083724,
1687.22320793, 1687.22320793, 1687.22320793, 1687.22320793,
1690.31989424, 1690.31989424, 1690.31989424, 1690.31989424,
1692.80543508, 1692.80543508, 1692.80543508, 1692.80543508,
1693.9292418 , 1693.9292418 , 1693.9292418 , 1693.9292418 ,
1691.48316721, 1691.48316721, 1691.48316721, 1691.48316721,
1687.48123227, 1687.48123227, 1687.48123227, 1687.48123227,
1674.61113379, 1674.61113379, 1674.61113379, 1674.61113379,
1619.83613221, 1619.83613221, 1619.83613221, 1619.83613221,
1345.15261819, 1345.15261819, 1345.15261819, 1345.15261819,
513.60242111, 513.60242111, 513.60242111, 513.60242111,
47.53604724, 47.53604724, 47.53604724, 47.53604724,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.02886327,
6.02886327, 6.02886327, 6.02886327, 13.07839128, 13.07839128,
13.07839128, 13.07839128, 14.23346801, 14.23346801, 14.23346801,
14.23346801, 14.24717384, 14.24717384, 14.24717384, 14.24717384,
14.22281297, 14.22281297, 14.22281297, 14.22281297, 14.22054517,
14.22054517, 14.22054517, 14.22054517, 14.33456656, 14.33456656,
14.33456656, 14.33456656, 14.82163366, 14.82163366, 14.82163366,
14.82163366, 16.09047457, 16.09047457, 16.09047457, 16.09047457,
18.55177024, 18.55177024, 18.55177024, 18.55177024, 22.37387504,
22.37387504, 22.37387504, 22.37387504, 25.95158279, 25.95158279,
25.95158279, 25.95158279, 27.73836656, 27.73836656, 27.73836656,
27.73836656, 27.94116204, 27.94116204, 27.94116204, 27.94116204,
23.71135453, 23.71135453, 23.71135453, 23.71135453, 10.2611939 ,
10.2611939 , 10.2611939 , 10.2611939 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.54621347,
19.54621347, 19.54621347, 19.54621347, 9.73291458, 9.73291458,
9.73291458, 9.73291458, 8.78207223, 8.78207223, 8.78207223,
8.78207223, 8.7976568 , 8.7976568 , 8.7976568 , 8.7976568 ,
8.80630024, 8.80630024, 8.80630024, 8.80630024, 8.80930339,
8.80930339, 8.80930339, 8.80930339, 8.80766016, 8.80766016,
8.80766016, 8.80766016, 8.79917595, 8.79917595, 8.79917595,
8.79917595, 8.78413417, 8.78413417, 8.78413417, 8.78413417,
8.76829084, 8.76829084, 8.76829084, 8.76829084, 8.74129772,
8.74129772, 8.74129772, 8.74129772, 8.707466 , 8.707466 ,
8.707466 , 8.707466 , 8.62437495, 8.62437495, 8.62437495,
8.62437495, 8.2411141 , 8.2411141 , 8.2411141 , 8.2411141 ,
6.25193806, 6.25193806, 6.25193806, 6.25193806, -1.28878105,
-1.28878105, -1.28878105, -1.28878105, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
464.10347553, 464.10347553, 464.10347553, 464.10347553,
1501.75676947, 1501.75676947, 1501.75676947, 1501.75676947,
1673.48248244, 1673.48248244, 1673.48248244, 1673.48248244,
1675.26131852, 1675.26131852, 1675.26131852, 1675.26131852,
1679.69511989, 1679.69511989, 1679.69511989, 1679.69511989,
1685.03144267, 1685.03144267, 1685.03144267, 1685.03144267,
1689.69499574, 1689.69499574, 1689.69499574, 1689.69499574,
1693.77032209, 1693.77032209, 1693.77032209, 1693.77032209,
1696.36802183, 1696.36802183, 1696.36802183, 1696.36802183,
1695.45911111, 1695.45911111, 1695.45911111, 1695.45911111,
1694.01527689, 1694.01527689, 1694.01527689, 1694.01527689,
1687.72253001, 1687.72253001, 1687.72253001, 1687.72253001,
1668.0637948 , 1668.0637948 , 1668.0637948 , 1668.0637948 ,
1576.4342413 , 1576.4342413 , 1576.4342413 , 1576.4342413 ,
1145.88619696, 1145.88619696, 1145.88619696, 1145.88619696,
252.0045113 , 252.0045113 , 252.0045113 , 252.0045113 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.01256033,
6.01256033, 6.01256033, 6.01256033, 12.72818781, 12.72818781,
12.72818781, 12.72818781, 14.18966502, 14.18966502, 14.18966502,
14.18966502, 14.23050382, 14.23050382, 14.23050382, 14.23050382,
14.22786886, 14.22786886, 14.22786886, 14.22786886, 14.22013033,
14.22013033, 14.22013033, 14.22013033, 14.27375708, 14.27375708,
14.27375708, 14.27375708, 14.56135118, 14.56135118, 14.56135118,
14.56135118, 15.41020384, 15.41020384, 15.41020384, 15.41020384,
17.24030876, 17.24030876, 17.24030876, 17.24030876, 20.3753365 ,
20.3753365 , 20.3753365 , 20.3753365 , 24.41284547, 24.41284547,
24.41284547, 24.41284547, 27.14093669, 27.14093669, 27.14093669,
27.14093669, 28.30381699, 28.30381699, 28.30381699, 28.30381699,
27.61366449, 27.61366449, 27.61366449, 27.61366449, 20.12961367,
20.12961367, 20.12961367, 20.12961367, 7.39216618, 7.39216618,
7.39216618, 7.39216618, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.57445277,
19.57445277, 19.57445277, 19.57445277, 10.03253127, 10.03253127,
10.03253127, 10.03253127, 8.77393351, 8.77393351, 8.77393351,
8.77393351, 8.78266557, 8.78266557, 8.78266557, 8.78266557,
8.78358149, 8.78358149, 8.78358149, 8.78358149, 8.78542818,
8.78542818, 8.78542818, 8.78542818, 8.78785646, 8.78785646,
8.78785646, 8.78785646, 8.78658804, 8.78658804, 8.78658804,
8.78658804, 8.78385244, 8.78385244, 8.78385244, 8.78385244,
8.77594863, 8.77594863, 8.77594863, 8.77594863, 8.75713227,
8.75713227, 8.75713227, 8.75713227, 8.73606701, 8.73606701,
8.73606701, 8.73606701, 8.69641263, 8.69641263, 8.69641263,
8.69641263, 8.55917242, 8.55917242, 8.55917242, 8.55917242,
7.92994353, 7.92994353, 7.92994353, 7.92994353, 4.665091 ,
4.665091 , 4.665091 , 4.665091 , -4.42403255, -4.42403255,
-4.42403255, -4.42403255, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
462.3317026 , 462.3317026 , 462.3317026 , 462.3317026 ,
1452.09052865, 1452.09052865, 1452.09052865, 1452.09052865,
1671.9017181 , 1671.9017181 , 1671.9017181 , 1671.9017181 ,
1672.88932596, 1672.88932596, 1672.88932596, 1672.88932596,
1676.49949878, 1676.49949878, 1676.49949878, 1676.49949878,
1681.82659859, 1681.82659859, 1681.82659859, 1681.82659859,
1687.39626942, 1687.39626942, 1687.39626942, 1687.39626942,
1692.75436141, 1692.75436141, 1692.75436141, 1692.75436141,
1696.73494397, 1696.73494397, 1696.73494397, 1696.73494397,
1697.56704436, 1697.56704436, 1697.56704436, 1697.56704436,
1697.99798875, 1697.99798875, 1697.99798875, 1697.99798875,
1694.92491575, 1694.92491575, 1694.92491575, 1694.92491575,
1686.67457302, 1686.67457302, 1686.67457302, 1686.67457302,
1657.45734097, 1657.45734097, 1657.45734097, 1657.45734097,
1497.50055341, 1497.50055341, 1497.50055341, 1497.50055341,
873.62567544, 873.62567544, 873.62567544, 873.62567544,
97.74146277, 97.74146277, 97.74146277, 97.74146277,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.00521078,
6.00521078, 6.00521078, 6.00521078, 12.38993388, 12.38993388,
12.38993388, 12.38993388, 14.14519572, 14.14519572, 14.14519572,
14.14519572, 14.21203317, 14.21203317, 14.21203317, 14.21203317,
14.22915807, 14.22915807, 14.22915807, 14.22915807, 14.22348347,
14.22348347, 14.22348347, 14.22348347, 14.24506269, 14.24506269,
14.24506269, 14.24506269, 14.40465933, 14.40465933, 14.40465933,
14.40465933, 14.94868214, 14.94868214, 14.94868214, 14.94868214,
16.25655917, 16.25655917, 16.25655917, 16.25655917, 18.71532853,
18.71532853, 18.71532853, 18.71532853, 22.4416374 , 22.4416374 ,
22.4416374 , 22.4416374 , 26.03175799, 26.03175799, 26.03175799,
26.03175799, 28.07389691, 28.07389691, 28.07389691, 28.07389691,
28.57139062, 28.57139062, 28.57139062, 28.57139062, 26.53452027,
26.53452027, 26.53452027, 26.53452027, 15.55324352, 15.55324352,
15.55324352, 15.55324352, 6.13684598, 6.13684598, 6.13684598,
6.13684598, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.58717335,
19.58717335, 19.58717335, 19.58717335, 10.34899927, 10.34899927,
10.34899927, 10.34899927, 8.77184226, 8.77184226, 8.77184226,
8.77184226, 8.77457278, 8.77457278, 8.77457278, 8.77457278,
8.76864579, 8.76864579, 8.76864579, 8.76864579, 8.76390782,
8.76390782, 8.76390782, 8.76390782, 8.76368947, 8.76368947,
8.76368947, 8.76368947, 8.76607598, 8.76607598, 8.76607598,
8.76607598, 8.77190498, 8.77190498, 8.77190498, 8.77190498,
8.77293894, 8.77293894, 8.77293894, 8.77293894, 8.76486151,
8.76486151, 8.76486151, 8.76486151, 8.75224516, 8.75224516,
8.75224516, 8.75224516, 8.73002234, 8.73002234, 8.73002234,
8.73002234, 8.66900729, 8.66900729, 8.66900729, 8.66900729,
8.46716317, 8.46716317, 8.46716317, 8.46716317, 7.38774697,
7.38774697, 7.38774697, 7.38774697, 2.33157677, 2.33157677,
2.33157677, 2.33157677, -6.0273606 , -6.0273606 , -6.0273606 ,
-6.0273606 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
461.53725474, 461.53725474, 461.53725474, 461.53725474,
1401.46357119, 1401.46357119, 1401.46357119, 1401.46357119,
1671.44416708, 1671.44416708, 1671.44416708, 1671.44416708,
1671.94879141, 1671.94879141, 1671.94879141, 1671.94879141,
1674.76785448, 1674.76785448, 1674.76785448, 1674.76785448,
1679.02439986, 1679.02439986, 1679.02439986, 1679.02439986,
1684.35393811, 1684.35393811, 1684.35393811, 1684.35393811,
1690.14122531, 1690.14122531, 1690.14122531, 1690.14122531,
1694.93535923, 1694.93535923, 1694.93535923, 1694.93535923,
1697.61431565, 1697.61431565, 1697.61431565, 1697.61431565,
1700.01321682, 1700.01321682, 1700.01321682, 1700.01321682,
1698.95105971, 1698.95105971, 1698.95105971, 1698.95105971,
1695.36387827, 1695.36387827, 1695.36387827, 1695.36387827,
1686.00022927, 1686.00022927, 1686.00022927, 1686.00022927,
1632.25134395, 1632.25134395, 1632.25134395, 1632.25134395,
1372.90297687, 1372.90297687, 1372.90297687, 1372.90297687,
565.30554122, 565.30554122, 565.30554122, 565.30554122,
49.69965112, 49.69965112, 49.69965112, 49.69965112,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.00191237,
6.00191237, 6.00191237, 6.00191237, 12.0611019 , 12.0611019 ,
12.0611019 , 12.0611019 , 14.10481587, 14.10481587, 14.10481587,
14.10481587, 14.18654067, 14.18654067, 14.18654067, 14.18654067,
14.23049568, 14.23049568, 14.23049568, 14.23049568, 14.2298967 ,
14.2298967 , 14.2298967 , 14.2298967 , 14.23613946, 14.23613946,
14.23613946, 14.23613946, 14.31707273, 14.31707273, 14.31707273,
14.31707273, 14.64765446, 14.64765446, 14.64765446, 14.64765446,
15.54787982, 15.54787982, 15.54787982, 15.54787982, 17.39854503,
17.39854503, 17.39854503, 17.39854503, 20.47814225, 20.47814225,
20.47814225, 20.47814225, 24.43048632, 24.43048632, 24.43048632,
24.43048632, 27.34776012, 27.34776012, 27.34776012, 27.34776012,
28.62183206, 28.62183206, 28.62183206, 28.62183206, 28.6252776 ,
28.6252776 , 28.6252776 , 28.6252776 , 24.3768406 , 24.3768406 ,
24.3768406 , 24.3768406 , 10.93946855, 10.93946855, 10.93946855,
10.93946855, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59287913,
19.59287913, 19.59287913, 19.59287913, 10.67986783, 10.67986783,
10.67986783, 10.67986783, 8.77244753, 8.77244753, 8.77244753,
8.77244753, 8.77089439, 8.77089439, 8.77089439, 8.77089439,
8.76033975, 8.76033975, 8.76033975, 8.76033975, 8.74995589,
8.74995589, 8.74995589, 8.74995589, 8.743477 , 8.743477 ,
8.743477 , 8.743477 , 8.74369671, 8.74369671, 8.74369671,
8.74369671, 8.75189311, 8.75189311, 8.75189311, 8.75189311,
8.75950663, 8.75950663, 8.75950663, 8.75950663, 8.76196429,
8.76196429, 8.76196429, 8.76196429, 8.75864593, 8.75864593,
8.75864593, 8.75864593, 8.74698766, 8.74698766, 8.74698766,
8.74698766, 8.71314943, 8.71314943, 8.71314943, 8.71314943,
8.64426969, 8.64426969, 8.64426969, 8.64426969, 8.29748153,
8.29748153, 8.29748153, 8.29748153, 6.47495531, 6.47495531,
6.47495531, 6.47495531, -0.70842801, -0.70842801, -0.70842801,
-0.70842801, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
461.18165087, 461.18165087, 461.18165087, 461.18165087,
1349.74992079, 1349.74992079, 1349.74992079, 1349.74992079,
1671.60482909, 1671.60482909, 1671.60482909, 1671.60482909,
1671.83120898, 1671.83120898, 1671.83120898, 1671.83120898,
1674.38970894, 1674.38970894, 1674.38970894, 1674.38970894,
1677.64758285, 1677.64758285, 1677.64758285, 1677.64758285,
1681.89797938, 1681.89797938, 1681.89797938, 1681.89797938,
1687.02073081, 1687.02073081, 1687.02073081, 1687.02073081,
1691.69948158, 1691.69948158, 1691.69948158, 1691.69948158,
1695.89819179, 1695.89819179, 1695.89819179, 1695.89819179,
1699.59855312, 1699.59855312, 1699.59855312, 1699.59855312,
1700.59794297, 1700.59794297, 1700.59794297, 1700.59794297,
1699.78993323, 1699.78993323, 1699.78993323, 1699.78993323,
1697.54039263, 1697.54039263, 1697.54039263, 1697.54039263,
1678.14710016, 1678.14710016, 1678.14710016, 1678.14710016,
1590.4085702 , 1590.4085702 , 1590.4085702 , 1590.4085702 ,
1186.37141402, 1186.37141402, 1186.37141402, 1186.37141402,
291.00638382, 291.00638382, 291.00638382, 291.00638382,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.00043524,
6.00043524, 6.00043524, 6.00043524, 11.7372962 , 11.7372962 ,
11.7372962 , 11.7372962 , 14.07379548, 14.07379548, 14.07379548,
14.07379548, 14.15517935, 14.15517935, 14.15517935, 14.15517935,
14.2272544 , 14.2272544 , 14.2272544 , 14.2272544 , 14.2375337 ,
14.2375337 , 14.2375337 , 14.2375337 , 14.23872925, 14.23872925,
14.23872925, 14.23872925, 14.2748018 , 14.2748018 , 14.2748018 ,
14.2748018 , 14.46334784, 14.46334784, 14.46334784, 14.46334784,
15.05471701, 15.05471701, 15.05471701, 15.05471701, 16.39861085,
16.39861085, 16.39861085, 16.39861085, 18.83588578, 18.83588578,
18.83588578, 18.83588578, 22.45137204, 22.45137204, 22.45137204,
22.45137204, 26.17620124, 26.17620124, 26.17620124, 26.17620124,
28.20662605, 28.20662605, 28.20662605, 28.20662605, 29.01571741,
29.01571741, 29.01571741, 29.01571741, 28.20622566, 28.20622566,
28.20622566, 28.20622566, 20.93126273, 20.93126273, 20.93126273,
20.93126273, 7.75255279, 7.75255279, 7.75255279, 7.75255279,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59543352,
19.59543352, 19.59543352, 19.59543352, 11.02536985, 11.02536985,
11.02536985, 11.02536985, 8.77430718, 8.77430718, 8.77430718,
8.77430718, 8.76967261, 8.76967261, 8.76967261, 8.76967261,
8.75558013, 8.75558013, 8.75558013, 8.75558013, 8.74203901,
8.74203901, 8.74203901, 8.74203901, 8.73063358, 8.73063358,
8.73063358, 8.73063358, 8.72592755, 8.72592755, 8.72592755,
8.72592755, 8.73068524, 8.73068524, 8.73068524, 8.73068524,
8.73880591, 8.73880591, 8.73880591, 8.73880591, 8.74949988,
8.74949988, 8.74949988, 8.74949988, 8.7555838 , 8.7555838 ,
8.7555838 , 8.7555838 , 8.75211587, 8.75211587, 8.75211587,
8.75211587, 8.73247564, 8.73247564, 8.73247564, 8.73247564,
8.70783033, 8.70783033, 8.70783033, 8.70783033, 8.59135962,
8.59135962, 8.59135962, 8.59135962, 8.01612734, 8.01612734,
8.01612734, 8.01612734, 5.00404045, 5.00404045, 5.00404045,
5.00404045, -3.96613135, -3.96613135, -3.96613135, -3.96613135,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
461.02260131, 461.02260131, 461.02260131, 461.02260131,
1296.91397167, 1296.91397167, 1296.91397167, 1296.91397167,
1672.10552341, 1672.10552341, 1672.10552341, 1672.10552341,
1672.2542597 , 1672.2542597 , 1672.2542597 , 1672.2542597 ,
1674.70858572, 1674.70858572, 1674.70858572, 1674.70858572,
1677.49459326, 1677.49459326, 1677.49459326, 1677.49459326,
1680.67202342, 1680.67202342, 1680.67202342, 1680.67202342,
1684.60404744, 1684.60404744, 1684.60404744, 1684.60404744,
1688.38179454, 1688.38179454, 1688.38179454, 1688.38179454,
1692.71350426, 1692.71350426, 1692.71350426, 1692.71350426,
1697.41354258, 1697.41354258, 1697.41354258, 1697.41354258,
1700.07117267, 1700.07117267, 1700.07117267, 1700.07117267,
1701.30754546, 1701.30754546, 1701.30754546, 1701.30754546,
1702.62380877, 1702.62380877, 1702.62380877, 1702.62380877,
1694.7539739 , 1694.7539739 , 1694.7539739 , 1694.7539739 ,
1666.22273512, 1666.22273512, 1666.22273512, 1666.22273512,
1517.56453226, 1517.56453226, 1517.56453226, 1517.56453226,
927.27397973, 927.27397973, 927.27397973, 927.27397973,
115.53325364, 115.53325364, 115.53325364, 115.53325364,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99977441,
5.99977441, 5.99977441, 5.99977441, 11.41328059, 11.41328059,
11.41328059, 11.41328059, 14.05574474, 14.05574474, 14.05574474,
14.05574474, 14.123278 , 14.123278 , 14.123278 , 14.123278 ,
14.21476462, 14.21476462, 14.21476462, 14.21476462, 14.24380362,
14.24380362, 14.24380362, 14.24380362, 14.24638528, 14.24638528,
14.24638528, 14.24638528, 14.25961634, 14.25961634, 14.25961634,
14.25961634, 14.36000574, 14.36000574, 14.36000574, 14.36000574,
14.73020721, 14.73020721, 14.73020721, 14.73020721, 15.66543029,
15.66543029, 15.66543029, 15.66543029, 17.52510797, 17.52510797,
17.52510797, 17.52510797, 20.53937827, 20.53937827, 20.53937827,
20.53937827, 24.52191428, 24.52191428, 24.52191428, 24.52191428,
27.36117172, 27.36117172, 27.36117172, 27.36117172, 28.8831646 ,
28.8831646 , 28.8831646 , 28.8831646 , 29.18373553, 29.18373553,
29.18373553, 29.18373553, 27.11704018, 27.11704018, 27.11704018,
27.11704018, 16.38597363, 16.38597363, 16.38597363, 16.38597363,
6.26345038, 6.26345038, 6.26345038, 6.26345038, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59657611,
19.59657611, 19.59657611, 19.59657611, 11.38698932, 11.38698932,
11.38698932, 11.38698932, 8.77633703, 8.77633703, 8.77633703,
8.77633703, 8.76949213, 8.76949213, 8.76949213, 8.76949213,
8.75299555, 8.75299555, 8.75299555, 8.75299555, 8.73760248,
8.73760248, 8.73760248, 8.73760248, 8.72374953, 8.72374953,
8.72374953, 8.72374953, 8.71466863, 8.71466863, 8.71466863,
8.71466863, 8.71514638, 8.71514638, 8.71514638, 8.71514638,
8.71899761, 8.71899761, 8.71899761, 8.71899761, 8.72886327,
8.72886327, 8.72886327, 8.72886327, 8.74369615, 8.74369615,
8.74369615, 8.74369615, 8.74722894, 8.74722894, 8.74722894,
8.74722894, 8.73902406, 8.73902406, 8.73902406, 8.73902406,
8.7320913 , 8.7320913 , 8.7320913 , 8.7320913 , 8.68916945,
8.68916945, 8.68916945, 8.68916945, 8.5080931 , 8.5080931 ,
8.5080931 , 8.5080931 , 7.52056852, 7.52056852, 7.52056852,
7.52056852, 2.80913789, 2.80913789, 2.80913789, 2.80913789,
-5.87118686, -5.87118686, -5.87118686, -5.87118686, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.95148826, 460.95148826, 460.95148826, 460.95148826,
1242.93498529, 1242.93498529, 1242.93498529, 1242.93498529,
1672.75025416, 1672.75025416, 1672.75025416, 1672.75025416,
1672.99461337, 1672.99461337, 1672.99461337, 1672.99461337,
1675.45802531, 1675.45802531, 1675.45802531, 1675.45802531,
1677.97013096, 1677.97013096, 1677.97013096, 1677.97013096,
1680.56820927, 1680.56820927, 1680.56820927, 1680.56820927,
1683.25513146, 1683.25513146, 1683.25513146, 1683.25513146,
1686.15902024, 1686.15902024, 1686.15902024, 1686.15902024,
1689.63290509, 1689.63290509, 1689.63290509, 1689.63290509,
1693.61270105, 1693.61270105, 1693.61270105, 1693.61270105,
1697.83925189, 1697.83925189, 1697.83925189, 1697.83925189,
1700.67539901, 1700.67539901, 1700.67539901, 1700.67539901,
1704.34738929, 1704.34738929, 1704.34738929, 1704.34738929,
1701.04658492, 1701.04658492, 1701.04658492, 1701.04658492,
1691.91391925, 1691.91391925, 1691.91391925, 1691.91391925,
1642.61175186, 1642.61175186, 1642.61175186, 1642.61175186,
1403.02981473, 1403.02981473, 1403.02981473, 1403.02981473,
620.35429771, 620.35429771, 620.35429771, 620.35429771,
53.31876512, 53.31876512, 53.31876512, 53.31876512,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99947891,
5.99947891, 5.99947891, 5.99947891, 11.08383716, 11.08383716,
11.08383716, 11.08383716, 14.0517203 , 14.0517203 , 14.0517203 ,
14.0517203 , 14.10023842, 14.10023842, 14.10023842, 14.10023842,
14.19023691, 14.19023691, 14.19023691, 14.19023691, 14.24455191,
14.24455191, 14.24455191, 14.24455191, 14.25421038, 14.25421038,
14.25421038, 14.25421038, 14.25918171, 14.25918171, 14.25918171,
14.25918171, 14.3079739 , 14.3079739 , 14.3079739 , 14.3079739 ,
14.52901048, 14.52901048, 14.52901048, 14.52901048, 15.15486733,
15.15486733, 15.15486733, 15.15486733, 16.51738142, 16.51738142,
16.51738142, 16.51738142, 18.93314834, 18.93314834, 18.93314834,
18.93314834, 22.5440941 , 22.5440941 , 22.5440941 , 22.5440941 ,
26.12029499, 26.12029499, 26.12029499, 26.12029499, 28.34016344,
28.34016344, 28.34016344, 28.34016344, 29.28063222, 29.28063222,
29.28063222, 29.28063222, 29.17431829, 29.17431829, 29.17431829,
29.17431829, 25.00476923, 25.00476923, 25.00476923, 25.00476923,
11.66638056, 11.66638056, 11.66638056, 11.66638056, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59708699,
19.59708699, 19.59708699, 19.59708699, 11.76705719, 11.76705719,
11.76705719, 11.76705719, 8.77822243, 8.77822243, 8.77822243,
8.77822243, 8.76947767, 8.76947767, 8.76947767, 8.76947767,
8.75155398, 8.75155398, 8.75155398, 8.75155398, 8.73518896,
8.73518896, 8.73518896, 8.73518896, 8.72041919, 8.72041919,
8.72041919, 8.72041919, 8.70930751, 8.70930751, 8.70930751,
8.70930751, 8.70529704, 8.70529704, 8.70529704, 8.70529704,
8.70515517, 8.70515517, 8.70515517, 8.70515517, 8.7108029 ,
8.7108029 , 8.7108029 , 8.7108029 , 8.72327917, 8.72327917,
8.72327917, 8.72327917, 8.73376459, 8.73376459, 8.73376459,
8.73376459, 8.73563619, 8.73563619, 8.73563619, 8.73563619,
8.73912673, 8.73912673, 8.73912673, 8.73912673, 8.7231003 ,
8.7231003 , 8.7231003 , 8.7231003 , 8.66683961, 8.66683961,
8.66683961, 8.66683961, 8.34928421, 8.34928421, 8.34928421,
8.34928421, 6.69362993, 6.69362993, 6.69362993, 6.69362993,
-0.11035176, -0.11035176, -0.11035176, -0.11035176, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.91969759, 460.91969759, 460.91969759, 460.91969759,
1187.76602814, 1187.76602814, 1187.76602814, 1187.76602814,
1673.48445735, 1673.48445735, 1673.48445735, 1673.48445735,
1673.88930321, 1673.88930321, 1673.88930321, 1673.88930321,
1676.44790452, 1676.44790452, 1676.44790452, 1676.44790452,
1678.80370938, 1678.80370938, 1678.80370938, 1678.80370938,
1681.08682083, 1681.08682083, 1681.08682083, 1681.08682083,
1682.92808089, 1682.92808089, 1682.92808089, 1682.92808089,
1684.95201261, 1684.95201261, 1684.95201261, 1684.95201261,
1687.57615561, 1687.57615561, 1687.57615561, 1687.57615561,
1690.39132258, 1690.39132258, 1690.39132258, 1690.39132258,
1693.96066674, 1693.96066674, 1693.96066674, 1693.96066674,
1698.52754203, 1698.52754203, 1698.52754203, 1698.52754203,
1703.48239845, 1703.48239845, 1703.48239845, 1703.48239845,
1702.84220627, 1702.84220627, 1702.84220627, 1702.84220627,
1700.85106284, 1700.85106284, 1700.85106284, 1700.85106284,
1684.25604605, 1684.25604605, 1684.25604605, 1684.25604605,
1605.27478628, 1605.27478628, 1605.27478628, 1605.27478628,
1228.27305079, 1228.27305079, 1228.27305079, 1228.27305079,
335.18146113, 335.18146113, 335.18146113, 335.18146113,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99934679,
5.99934679, 5.99934679, 5.99934679, 10.74428295, 10.74428295,
10.74428295, 10.74428295, 14.06074113, 14.06074113, 14.06074113,
14.06074113, 14.08825244, 14.08825244, 14.08825244, 14.08825244,
14.16060415, 14.16060415, 14.16060415, 14.16060415, 14.23700048,
14.23700048, 14.23700048, 14.23700048, 14.25988941, 14.25988941,
14.25988941, 14.25988941, 14.26414574, 14.26414574, 14.26414574,
14.26414574, 14.28645883, 14.28645883, 14.28645883, 14.28645883,
14.41128533, 14.41128533, 14.41128533, 14.41128533, 14.81477318,
14.81477318, 14.81477318, 14.81477318, 15.77868117, 15.77868117,
15.77868117, 15.77868117, 17.63924517, 17.63924517, 17.63924517,
17.63924517, 20.63133131, 20.63133131, 20.63133131, 20.63133131,
24.46822871, 24.46822871, 24.46822871, 24.46822871, 27.42698268,
27.42698268, 27.42698268, 27.42698268, 28.98413403, 28.98413403,
28.98413403, 28.98413403, 29.5817967 , 29.5817967 , 29.5817967 ,
29.5817967 , 28.69012861, 28.69012861, 28.69012861, 28.69012861,
21.68686674, 21.68686674, 21.68686674, 21.68686674, 8.19799704,
8.19799704, 8.19799704, 8.19799704, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59731538,
19.59731538, 19.59731538, 19.59731538, 12.16840072, 12.16840072,
12.16840072, 12.16840072, 8.78024108, 8.78024108, 8.78024108,
8.78024108, 8.76942457, 8.76942457, 8.76942457, 8.76942457,
8.75063752, 8.75063752, 8.75063752, 8.75063752, 8.73380138,
8.73380138, 8.73380138, 8.73380138, 8.71931988, 8.71931988,
8.71931988, 8.71931988, 8.70751446, 8.70751446, 8.70751446,
8.70751446, 8.70043512, 8.70043512, 8.70043512, 8.70043512,
8.6963955 , 8.6963955 , 8.6963955 , 8.6963955 , 8.69863881,
8.69863881, 8.69863881, 8.69863881, 8.70564688, 8.70564688,
8.70564688, 8.70564688, 8.71289181, 8.71289181, 8.71289181,
8.71289181, 8.72393276, 8.72393276, 8.72393276, 8.72393276,
8.73662685, 8.73662685, 8.73662685, 8.73662685, 8.73213167,
8.73213167, 8.73213167, 8.73213167, 8.71801496, 8.71801496,
8.71801496, 8.71801496, 8.61367472, 8.61367472, 8.61367472,
8.61367472, 8.09804238, 8.09804238, 8.09804238, 8.09804238,
5.3488366 , 5.3488366 , 5.3488366 , 5.3488366 , -3.4209141 ,
-3.4209141 , -3.4209141 , -3.4209141 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.90548673, 460.90548673, 460.90548673, 460.90548673,
1131.28216963, 1131.28216963, 1131.28216963, 1131.28216963,
1674.35990348, 1674.35990348, 1674.35990348, 1674.35990348,
1674.9052894 , 1674.9052894 , 1674.9052894 , 1674.9052894 ,
1677.56332958, 1677.56332958, 1677.56332958, 1677.56332958,
1679.80215724, 1679.80215724, 1679.80215724, 1679.80215724,
1681.87647357, 1681.87647357, 1681.87647357, 1681.87647357,
1683.2938581 , 1683.2938581 , 1683.2938581 , 1683.2938581 ,
1684.63505998, 1684.63505998, 1684.63505998, 1684.63505998,
1686.40409864, 1686.40409864, 1686.40409864, 1686.40409864,
1688.38421778, 1688.38421778, 1688.38421778, 1688.38421778,
1690.7810856 , 1690.7810856 , 1690.7810856 , 1690.7810856 ,
1695.0191866 , 1695.0191866 , 1695.0191866 , 1695.0191866 ,
1700.58403003, 1700.58403003, 1700.58403003, 1700.58403003,
1702.25724958, 1702.25724958, 1702.25724958, 1702.25724958,
1703.22609002, 1703.22609002, 1703.22609002, 1703.22609002,
1697.8039036 , 1697.8039036 , 1697.8039036 , 1697.8039036 ,
1674.27076203, 1674.27076203, 1674.27076203, 1674.27076203,
1537.78741563, 1537.78741563, 1537.78741563, 1537.78741563,
982.5775785 , 982.5775785 , 982.5775785 , 982.5775785 ,
138.82378594, 138.82378594, 138.82378594, 138.82378594,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99928774,
5.99928774, 5.99928774, 5.99928774, 10.39078099, 10.39078099,
10.39078099, 10.39078099, 14.08078884, 14.08078884, 14.08078884,
14.08078884, 14.0878413 , 14.0878413 , 14.0878413 , 14.0878413 ,
14.13721429, 14.13721429, 14.13721429, 14.13721429, 14.2174942 ,
14.2174942 , 14.2174942 , 14.2174942 , 14.26073522, 14.26073522,
14.26073522, 14.26073522, 14.26930759, 14.26930759, 14.26930759,
14.26930759, 14.28127892, 14.28127892, 14.28127892, 14.28127892,
14.3476456 , 14.3476456 , 14.3476456 , 14.3476456 , 14.59756023,
14.59756023, 14.59756023, 14.59756023, 15.25815684, 15.25815684,
15.25815684, 15.25815684, 16.64338379, 16.64338379, 16.64338379,
16.64338379, 19.03513382, 19.03513382, 19.03513382, 19.03513382,
22.51673868, 22.51673868, 22.51673868, 22.51673868, 26.15862478,
26.15862478, 26.15862478, 26.15862478, 28.33037535, 28.33037535,
28.33037535, 28.33037535, 29.51352736, 29.51352736, 29.51352736,
29.51352736, 29.65310158, 29.65310158, 29.65310158, 29.65310158,
27.58144993, 27.58144993, 27.58144993, 27.58144993, 17.26013663,
17.26013663, 17.26013663, 17.26013663, 6.44729149, 6.44729149,
6.44729149, 6.44729149, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59741748,
19.59741748, 19.59741748, 19.59741748, 12.59432549, 12.59432549,
12.59432549, 12.59432549, 8.78272684, 8.78272684, 8.78272684,
8.78272684, 8.7695597 , 8.7695597 , 8.7695597 , 8.7695597 ,
8.75004629, 8.75004629, 8.75004629, 8.75004629, 8.7330606 ,
8.7330606 , 8.7330606 , 8.7330606 , 8.71914468, 8.71914468,
8.71914468, 8.71914468, 8.70767497, 8.70767497, 8.70767497,
8.70767497, 8.69893603, 8.69893603, 8.69893603, 8.69893603,
8.69236612, 8.69236612, 8.69236612, 8.69236612, 8.69135946,
8.69135946, 8.69135946, 8.69135946, 8.6939429 , 8.6939429 ,
8.6939429 , 8.6939429 , 8.69555098, 8.69555098, 8.69555098,
8.69555098, 8.70543976, 8.70543976, 8.70543976, 8.70543976,
8.72511174, 8.72511174, 8.72511174, 8.72511174, 8.73073902,
8.73073902, 8.73073902, 8.73073902, 8.73171085, 8.73171085,
8.73171085, 8.73171085, 8.69602356, 8.69602356, 8.69602356,
8.69602356, 8.54135272, 8.54135272, 8.54135272, 8.54135272,
7.65763407, 7.65763407, 7.65763407, 7.65763407, 3.29824437,
3.29824437, 3.29824437, 3.29824437, -5.63941553, -5.63941553,
-5.63941553, -5.63941553, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89913448, 460.89913448, 460.89913448, 460.89913448,
1073.29357241, 1073.29357241, 1073.29357241, 1073.29357241,
1675.4363695 , 1675.4363695 , 1675.4363695 , 1675.4363695 ,
1676.07220414, 1676.07220414, 1676.07220414, 1676.07220414,
1678.75202029, 1678.75202029, 1678.75202029, 1678.75202029,
1680.85729776, 1680.85729776, 1680.85729776, 1680.85729776,
1682.74486588, 1682.74486588, 1682.74486588, 1682.74486588,
1683.98582995, 1683.98582995, 1683.98582995, 1683.98582995,
1684.99503989, 1684.99503989, 1684.99503989, 1684.99503989,
1686.00718632, 1686.00718632, 1686.00718632, 1686.00718632,
1687.30762953, 1687.30762953, 1687.30762953, 1687.30762953,
1688.93728425, 1688.93728425, 1688.93728425, 1688.93728425,
1692.17310128, 1692.17310128, 1692.17310128, 1692.17310128,
1696.30600482, 1696.30600482, 1696.30600482, 1696.30600482,
1699.65506547, 1699.65506547, 1699.65506547, 1699.65506547,
1702.84641388, 1702.84641388, 1702.84641388, 1702.84641388,
1701.42378925, 1701.42378925, 1701.42378925, 1701.42378925,
1696.13380537, 1696.13380537, 1696.13380537, 1696.13380537,
1651.65906992, 1651.65906992, 1651.65906992, 1651.65906992,
1431.51432175, 1431.51432175, 1431.51432175, 1431.51432175,
680.78792856, 680.78792856, 680.78792856, 680.78792856,
59.1911723 , 59.1911723 , 59.1911723 , 59.1911723 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99926134,
5.99926134, 5.99926134, 5.99926134, 10.01149603, 10.01149603,
10.01149603, 10.01149603, 14.12198239, 14.12198239, 14.12198239,
14.12198239, 14.09397493, 14.09397493, 14.09397493, 14.09397493,
14.12583022, 14.12583022, 14.12583022, 14.12583022, 14.19086237,
14.19086237, 14.19086237, 14.19086237, 14.25410719, 14.25410719,
14.25410719, 14.25410719, 14.27197374, 14.27197374, 14.27197374,
14.27197374, 14.28240806, 14.28240806, 14.28240806, 14.28240806,
14.31746027, 14.31746027, 14.31746027, 14.31746027, 14.46525854,
14.46525854, 14.46525854, 14.46525854, 14.90386223, 14.90386223,
14.90386223, 14.90386223, 15.90395761, 15.90395761, 15.90395761,
15.90395761, 17.75867 , 17.75867 , 17.75867 , 17.75867 ,
20.66876633, 20.66876633, 20.66876633, 20.66876633, 24.48136911,
24.48136911, 24.48136911, 24.48136911, 27.35753674, 27.35753674,
27.35753674, 27.35753674, 29.11294259, 29.11294259, 29.11294259,
29.11294259, 29.76350665, 29.76350665, 29.76350665, 29.76350665,
29.55660544, 29.55660544, 29.55660544, 29.55660544, 25.57934994,
25.57934994, 25.57934994, 25.57934994, 12.50993605, 12.50993605,
12.50993605, 12.50993605, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59746311,
19.59746311, 19.59746311, 19.59746311, 13.11664088, 13.11664088,
13.11664088, 13.11664088, 8.7476418 , 8.7476418 , 8.7476418 ,
8.7476418 , 8.76172138, 8.76172138, 8.76172138, 8.76172138,
8.75090622, 8.75090622, 8.75090622, 8.75090622, 8.73331556,
8.73331556, 8.73331556, 8.73331556, 8.71942064, 8.71942064,
8.71942064, 8.71942064, 8.70850652, 8.70850652, 8.70850652,
8.70850652, 8.69937096, 8.69937096, 8.69937096, 8.69937096,
8.6918181 , 8.6918181 , 8.6918181 , 8.6918181 , 8.68797472,
8.68797472, 8.68797472, 8.68797472, 8.68694529, 8.68694529,
8.68694529, 8.68694529, 8.68441506, 8.68441506, 8.68441506,
8.68441506, 8.68993672, 8.68993672, 8.68993672, 8.68993672,
8.70660633, 8.70660633, 8.70660633, 8.70660633, 8.72124868,
8.72124868, 8.72124868, 8.72124868, 8.73158052, 8.73158052,
8.73158052, 8.73158052, 8.71859206, 8.71859206, 8.71859206,
8.71859206, 8.67848867, 8.67848867, 8.67848867, 8.67848867,
8.40323401, 8.40323401, 8.40323401, 8.40323401, 6.90752715,
6.90752715, 6.90752715, 6.90752715, 0.51776593, 0.51776593,
0.51776593, 0.51776593, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89629506, 460.89629506, 460.89629506, 460.89629506,
1020.63327811, 1020.63327811, 1020.63327811, 1020.63327811,
1669.85230227, 1669.85230227, 1669.85230227, 1669.85230227,
1675.8969543 , 1675.8969543 , 1675.8969543 , 1675.8969543 ,
1680.18457824, 1680.18457824, 1680.18457824, 1680.18457824,
1682.0220882 , 1682.0220882 , 1682.0220882 , 1682.0220882 ,
1683.62770096, 1683.62770096, 1683.62770096, 1683.62770096,
1684.79442324, 1684.79442324, 1684.79442324, 1684.79442324,
1685.66338677, 1685.66338677, 1685.66338677, 1685.66338677,
1686.26360422, 1686.26360422, 1686.26360422, 1686.26360422,
1686.92243376, 1686.92243376, 1686.92243376, 1686.92243376,
1688.08320996, 1688.08320996, 1688.08320996, 1688.08320996,
1690.43113774, 1690.43113774, 1690.43113774, 1690.43113774,
1692.97314487, 1692.97314487, 1692.97314487, 1692.97314487,
1695.63062127, 1695.63062127, 1695.63062127, 1695.63062127,
1700.35370598, 1700.35370598, 1700.35370598, 1700.35370598,
1701.42617062, 1701.42617062, 1701.42617062, 1701.42617062,
1702.15521488, 1702.15521488, 1702.15521488, 1702.15521488,
1687.91525614, 1687.91525614, 1687.91525614, 1687.91525614,
1616.43289599, 1616.43289599, 1616.43289599, 1616.43289599,
1270.51340497, 1270.51340497, 1270.51340497, 1270.51340497,
386.67443541, 386.67443541, 386.67443541, 386.67443541,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924954,
5.99924954, 5.99924954, 5.99924954, 9.66826894, 9.66826894,
9.66826894, 9.66826894, 14.14354628, 14.14354628, 14.14354628,
14.14354628, 14.09739682, 14.09739682, 14.09739682, 14.09739682,
14.11011649, 14.11011649, 14.11011649, 14.11011649, 14.16398654,
14.16398654, 14.16398654, 14.16398654, 14.2398651 , 14.2398651 ,
14.2398651 , 14.2398651 , 14.27146969, 14.27146969, 14.27146969,
14.27146969, 14.28374376, 14.28374376, 14.28374376, 14.28374376,
14.30484557, 14.30484557, 14.30484557, 14.30484557, 14.39007039,
14.39007039, 14.39007039, 14.39007039, 14.6715911 , 14.6715911 ,
14.6715911 , 14.6715911 , 15.37150836, 15.37150836, 15.37150836,
15.37150836, 16.76969247, 16.76969247, 16.76969247, 16.76969247,
19.12080813, 19.12080813, 19.12080813, 19.12080813, 22.55397837,
22.55397837, 22.55397837, 22.55397837, 26.06313675, 26.06313675,
26.06313675, 26.06313675, 28.40882972, 28.40882972, 28.40882972,
28.40882972, 29.55435353, 29.55435353, 29.55435353, 29.55435353,
29.95164766, 29.95164766, 29.95164766, 29.95164766, 29.06215617,
29.06215617, 29.06215617, 29.06215617, 22.44531357, 22.44531357,
22.44531357, 22.44531357, 8.74122541, 8.74122541, 8.74122541,
8.74122541, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59748351,
19.59748351, 19.59748351, 19.59748351, 13.76566568, 13.76566568,
13.76566568, 13.76566568, 8.69088535, 8.69088535, 8.69088535,
8.69088535, 8.71862458, 8.71862458, 8.71862458, 8.71862458,
8.73345405, 8.73345405, 8.73345405, 8.73345405, 8.7321204 ,
8.7321204 , 8.7321204 , 8.7321204 , 8.72134726, 8.72134726,
8.72134726, 8.72134726, 8.709702 , 8.709702 , 8.709702 ,
8.709702 , 8.70076536, 8.70076536, 8.70076536, 8.70076536,
8.69310476, 8.69310476, 8.69310476, 8.69310476, 8.68783555,
8.68783555, 8.68783555, 8.68783555, 8.68326968, 8.68326968,
8.68326968, 8.68326968, 8.67770749, 8.67770749, 8.67770749,
8.67770749, 8.68049792, 8.68049792, 8.68049792, 8.68049792,
8.69140992, 8.69140992, 8.69140992, 8.69140992, 8.7042477 ,
8.7042477 , 8.7042477 , 8.7042477 , 8.72283297, 8.72283297,
8.72283297, 8.72283297, 8.72175327, 8.72175327, 8.72175327,
8.72175327, 8.71728265, 8.71728265, 8.71728265, 8.71728265,
8.63471975, 8.63471975, 8.63471975, 8.63471975, 8.1726214 ,
8.1726214 , 8.1726214 , 8.1726214 , 5.68476992, 5.68476992,
5.68476992, 5.68476992, -2.78464709, -2.78464709, -2.78464709,
-2.78464709, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89502587, 460.89502587, 460.89502587, 460.89502587,
977.63636544, 977.63636544, 977.63636544, 977.63636544,
1660.64047954, 1660.64047954, 1660.64047954, 1660.64047954,
1669.69997985, 1669.69997985, 1669.69997985, 1669.69997985,
1678.16688547, 1678.16688547, 1678.16688547, 1678.16688547,
1682.79062275, 1682.79062275, 1682.79062275, 1682.79062275,
1684.77106257, 1684.77106257, 1684.77106257, 1684.77106257,
1685.65774717, 1685.65774717, 1685.65774717, 1685.65774717,
1686.43346359, 1686.43346359, 1686.43346359, 1686.43346359,
1686.84774538, 1686.84774538, 1686.84774538, 1686.84774538,
1687.17743209, 1687.17743209, 1687.17743209, 1687.17743209,
1687.93813276, 1687.93813276, 1687.93813276, 1687.93813276,
1689.48124456, 1689.48124456, 1689.48124456, 1689.48124456,
1691.07878894, 1691.07878894, 1691.07878894, 1691.07878894,
1692.3943848 , 1692.3943848 , 1692.3943848 , 1692.3943848 ,
1696.07410941, 1696.07410941, 1696.07410941, 1696.07410941,
1699.33801236, 1699.33801236, 1699.33801236, 1699.33801236,
1702.98520641, 1702.98520641, 1702.98520641, 1702.98520641,
1698.23180489, 1698.23180489, 1698.23180489, 1698.23180489,
1677.28093815, 1677.28093815, 1677.28093815, 1677.28093815,
1556.19872094, 1556.19872094, 1556.19872094, 1556.19872094,
1039.76131293, 1039.76131293, 1039.76131293, 1039.76131293,
169.13872798, 169.13872798, 169.13872798, 169.13872798,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924426,
5.99924426, 5.99924426, 5.99924426, 9.35728004, 9.35728004,
9.35728004, 9.35728004, 14.16291039, 14.16291039, 14.16291039,
14.16291039, 14.10395741, 14.10395741, 14.10395741, 14.10395741,
14.09257603, 14.09257603, 14.09257603, 14.09257603, 14.12849497,
14.12849497, 14.12849497, 14.12849497, 14.20670054, 14.20670054,
14.20670054, 14.20670054, 14.26589425, 14.26589425, 14.26589425,
14.26589425, 14.28383717, 14.28383717, 14.28383717, 14.28383717,
14.30001853, 14.30001853, 14.30001853, 14.30001853, 14.34990572,
14.34990572, 14.34990572, 14.34990572, 14.52613511, 14.52613511,
14.52613511, 14.52613511, 15.00074608, 15.00074608, 15.00074608,
15.00074608, 16.02431223, 16.02431223, 16.02431223, 16.02431223,
17.86960949, 17.86960949, 17.86960949, 17.86960949, 20.74362606,
20.74362606, 20.74362606, 20.74362606, 24.40548791, 24.40548791,
24.40548791, 24.40548791, 27.40928301, 27.40928301, 27.40928301,
27.40928301, 29.06335744, 29.06335744, 29.06335744, 29.06335744,
29.9165526 , 29.9165526 , 29.9165526 , 29.9165526 , 29.98430588,
29.98430588, 29.98430588, 29.98430588, 27.98012646, 27.98012646,
27.98012646, 27.98012646, 18.17540099, 18.17540099, 18.17540099,
18.17540099, 6.69272036, 6.69272036, 6.69272036, 6.69272036,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749263,
19.59749263, 19.59749263, 19.59749263, 14.44020267, 14.44020267,
14.44020267, 14.44020267, 8.68307991, 8.68307991, 8.68307991,
8.68307991, 8.67610529, 8.67610529, 8.67610529, 8.67610529,
8.69064221, 8.69064221, 8.69064221, 8.69064221, 8.71075289,
8.71075289, 8.71075289, 8.71075289, 8.71568545, 8.71568545,
8.71568545, 8.71568545, 8.71157748, 8.71157748, 8.71157748,
8.71157748, 8.70303395, 8.70303395, 8.70303395, 8.70303395,
8.69529177, 8.69529177, 8.69529177, 8.69529177, 8.68929269,
8.68929269, 8.68929269, 8.68929269, 8.68241914, 8.68241914,
8.68241914, 8.68241914, 8.67489554, 8.67489554, 8.67489554,
8.67489554, 8.67568357, 8.67568357, 8.67568357, 8.67568357,
8.68245141, 8.68245141, 8.68245141, 8.68245141, 8.68976966,
8.68976966, 8.68976966, 8.68976966, 8.70694721, 8.70694721,
8.70694721, 8.70694721, 8.71454705, 8.71454705, 8.71454705,
8.71454705, 8.7247428 , 8.7247428 , 8.7247428 , 8.7247428 ,
8.7020353 , 8.7020353 , 8.7020353 , 8.7020353 , 8.56502968,
8.56502968, 8.56502968, 8.56502968, 7.77996246, 7.77996246,
7.77996246, 7.77996246, 3.7935205 , 3.7935205 , 3.7935205 ,
3.7935205 , -5.32354542, -5.32354542, -5.32354542, -5.32354542,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89445855, 460.89445855, 460.89445855, 460.89445855,
933.18597423, 933.18597423, 933.18597423, 933.18597423,
1660.42668543, 1660.42668543, 1660.42668543, 1660.42668543,
1663.32563193, 1663.32563193, 1663.32563193, 1663.32563193,
1671.66824541, 1671.66824541, 1671.66824541, 1671.66824541,
1679.89539446, 1679.89539446, 1679.89539446, 1679.89539446,
1684.41359508, 1684.41359508, 1684.41359508, 1684.41359508,
1686.60247269, 1686.60247269, 1686.60247269, 1686.60247269,
1687.3086245 , 1687.3086245 , 1687.3086245 , 1687.3086245 ,
1687.55852867, 1687.55852867, 1687.55852867, 1687.55852867,
1687.79354963, 1687.79354963, 1687.79354963, 1687.79354963,
1688.38417159, 1688.38417159, 1688.38417159, 1688.38417159,
1689.21739813, 1689.21739813, 1689.21739813, 1689.21739813,
1690.08745483, 1690.08745483, 1690.08745483, 1690.08745483,
1690.47095516, 1690.47095516, 1690.47095516, 1690.47095516,
1692.60016332, 1692.60016332, 1692.60016332, 1692.60016332,
1695.64625151, 1695.64625151, 1695.64625151, 1695.64625151,
1701.02926834, 1701.02926834, 1701.02926834, 1701.02926834,
1700.19286408, 1700.19286408, 1700.19286408, 1700.19286408,
1695.24499175, 1695.24499175, 1695.24499175, 1695.24499175,
1657.82666898, 1657.82666898, 1657.82666898, 1657.82666898,
1458.91114694, 1458.91114694, 1458.91114694, 1458.91114694,
745.64720626, 745.64720626, 745.64720626, 745.64720626,
68.08707772, 68.08707772, 68.08707772, 68.08707772,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924191,
5.99924191, 5.99924191, 5.99924191, 8.91010155, 8.91010155,
8.91010155, 8.91010155, 14.26626517, 14.26626517, 14.26626517,
14.26626517, 14.17721536, 14.17721536, 14.17721536, 14.17721536,
14.10140812, 14.10140812, 14.10140812, 14.10140812, 14.09717055,
14.09717055, 14.09717055, 14.09717055, 14.15221798, 14.15221798,
14.15221798, 14.15221798, 14.23981658, 14.23981658, 14.23981658,
14.23981658, 14.27811207, 14.27811207, 14.27811207, 14.27811207,
14.29795704, 14.29795704, 14.29795704, 14.29795704, 14.32981899,
14.32981899, 14.32981899, 14.32981899, 14.43868552, 14.43868552,
14.43868552, 14.43868552, 14.75128835, 14.75128835, 14.75128835,
14.75128835, 15.4791328 , 15.4791328 , 15.4791328 , 15.4791328 ,
16.88725445, 16.88725445, 16.88725445, 16.88725445, 19.22712749,
19.22712749, 19.22712749, 19.22712749, 22.52991222, 22.52991222,
22.52991222, 22.52991222, 26.10771279, 26.10771279, 26.10771279,
26.10771279, 28.31774838, 28.31774838, 28.31774838, 28.31774838,
29.61540996, 29.61540996, 29.61540996, 29.61540996, 30.10739131,
30.10739131, 30.10739131, 30.10739131, 29.83141011, 29.83141011,
29.83141011, 29.83141011, 26.0883515 , 26.0883515 , 26.0883515 ,
26.0883515 , 13.46458057, 13.46458057, 13.46458057, 13.46458057,
6.00283479, 6.00283479, 6.00283479, 6.00283479, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749671,
19.59749671, 19.59749671, 19.59749671, 15.04816172, 15.04816172,
15.04816172, 15.04816172, 8.7701521 , 8.7701521 , 8.7701521 ,
8.7701521 , 8.70248982, 8.70248982, 8.70248982, 8.70248982,
8.66631628, 8.66631628, 8.66631628, 8.66631628, 8.6681861 ,
8.6681861 , 8.6681861 , 8.6681861 , 8.69045951, 8.69045951,
8.69045951, 8.69045951, 8.70219543, 8.70219543, 8.70219543,
8.70219543, 8.70303138, 8.70303138, 8.70303138, 8.70303138,
8.6983274 , 8.6983274 , 8.6983274 , 8.6983274 , 8.69148957,
8.69148957, 8.69148957, 8.69148957, 8.68319102, 8.68319102,
8.68319102, 8.68319102, 8.67523211, 8.67523211, 8.67523211,
8.67523211, 8.67446784, 8.67446784, 8.67446784, 8.67446784,
8.67812393, 8.67812393, 8.67812393, 8.67812393, 8.68119307,
8.68119307, 8.68119307, 8.68119307, 8.69199202, 8.69199202,
8.69199202, 8.69199202, 8.70119277, 8.70119277, 8.70119277,
8.70119277, 8.71979547, 8.71979547, 8.71979547, 8.71979547,
8.71680504, 8.71680504, 8.71680504, 8.71680504, 8.68181304,
8.68181304, 8.68181304, 8.68181304, 8.44316553, 8.44316553,
8.44316553, 8.44316553, 7.11113592, 7.11113592, 7.11113592,
7.11113592, 1.15816769, 1.15816769, 1.15816769, 1.15816769,
-6.18526944, -6.18526944, -6.18526944, -6.18526944, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89420497, 460.89420497, 460.89420497, 460.89420497,
866.68575165, 866.68575165, 866.68575165, 866.68575165,
1677.80431545, 1677.80431545, 1677.80431545, 1677.80431545,
1669.27099826, 1669.27099826, 1669.27099826, 1669.27099826,
1668.33038019, 1668.33038019, 1668.33038019, 1668.33038019,
1673.11657162, 1673.11657162, 1673.11657162, 1673.11657162,
1680.58894839, 1680.58894839, 1680.58894839, 1680.58894839,
1685.43245866, 1685.43245866, 1685.43245866, 1685.43245866,
1687.67463941, 1687.67463941, 1687.67463941, 1687.67463941,
1688.43144069, 1688.43144069, 1688.43144069, 1688.43144069,
1688.59202001, 1688.59202001, 1688.59202001, 1688.59202001,
1689.13976246, 1689.13976246, 1689.13976246, 1689.13976246,
1689.47201636, 1689.47201636, 1689.47201636, 1689.47201636,
1689.75793919, 1689.75793919, 1689.75793919, 1689.75793919,
1689.54059646, 1689.54059646, 1689.54059646, 1689.54059646,
1690.6375146 , 1690.6375146 , 1690.6375146 , 1690.6375146 ,
1692.31798241, 1692.31798241, 1692.31798241, 1692.31798241,
1697.44345312, 1697.44345312, 1697.44345312, 1697.44345312,
1698.88800322, 1698.88800322, 1698.88800322, 1698.88800322,
1699.19910236, 1699.19910236, 1699.19910236, 1699.19910236,
1688.88906962, 1688.88906962, 1688.88906962, 1688.88906962,
1625.54418239, 1625.54418239, 1625.54418239, 1625.54418239,
1310.40246856, 1310.40246856, 1310.40246856, 1310.40246856,
445.12057808, 445.12057808, 445.12057808, 445.12057808,
46.31207091, 46.31207091, 46.31207091, 46.31207091,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924085,
5.99924085, 5.99924085, 5.99924085, 8.41963211, 8.41963211,
8.41963211, 8.41963211, 14.32067919, 14.32067919, 14.32067919,
14.32067919, 14.27805193, 14.27805193, 14.27805193, 14.27805193,
14.17042384, 14.17042384, 14.17042384, 14.17042384, 14.10927185,
14.10927185, 14.10927185, 14.10927185, 14.11632094, 14.11632094,
14.11632094, 14.11632094, 14.18029111, 14.18029111, 14.18029111,
14.18029111, 14.25486229, 14.25486229, 14.25486229, 14.25486229,
14.28741679, 14.28741679, 14.28741679, 14.28741679, 14.31927422,
14.31927422, 14.31927422, 14.31927422, 14.38898131, 14.38898131,
14.38898131, 14.38898131, 14.58934533, 14.58934533, 14.58934533,
14.58934533, 15.09190069, 15.09190069, 15.09190069, 15.09190069,
16.13771089, 16.13771089, 16.13771089, 16.13771089, 17.99138552,
17.99138552, 17.99138552, 17.99138552, 20.79661541, 20.79661541,
20.79661541, 20.79661541, 24.45432855, 24.45432855, 24.45432855,
24.45432855, 27.30539236, 27.30539236, 27.30539236, 27.30539236,
29.07403061, 29.07403061, 29.07403061, 29.07403061, 29.96466621,
29.96466621, 29.96466621, 29.96466621, 30.21014242, 30.21014242,
30.21014242, 30.21014242, 29.33077419, 29.33077419, 29.33077419,
29.33077419, 23.1665558 , 23.1665558 , 23.1665558 , 23.1665558 ,
9.40413373, 9.40413373, 9.40413373, 9.40413373, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749853,
19.59749853, 19.59749853, 19.59749853, 15.69123852, 15.69123852,
15.69123852, 15.69123852, 8.81172522, 8.81172522, 8.81172522,
8.81172522, 8.76473273, 8.76473273, 8.76473273, 8.76473273,
8.69598215, 8.69598215, 8.69598215, 8.69598215, 8.66163298,
8.66163298, 8.66163298, 8.66163298, 8.65659671, 8.65659671,
8.65659671, 8.65659671, 8.67284391, 8.67284391, 8.67284391,
8.67284391, 8.69087936, 8.69087936, 8.69087936, 8.69087936,
8.69553597, 8.69553597, 8.69553597, 8.69553597, 8.69293291,
8.69293291, 8.69293291, 8.69293291, 8.68585684, 8.68585684,
8.68585684, 8.68585684, 8.67775947, 8.67775947, 8.67775947,
8.67775947, 8.67539766, 8.67539766, 8.67539766, 8.67539766,
8.67700313, 8.67700313, 8.67700313, 8.67700313, 8.67727649,
8.67727649, 8.67727649, 8.67727649, 8.68275622, 8.68275622,
8.68275622, 8.68275622, 8.68768458, 8.68768458, 8.68768458,
8.68768458, 8.70787439, 8.70787439, 8.70787439, 8.70787439,
8.71508163, 8.71508163, 8.71508163, 8.71508163, 8.71081194,
8.71081194, 8.71081194, 8.71081194, 8.64451366, 8.64451366,
8.64451366, 8.64451366, 8.23766224, 8.23766224, 8.23766224,
8.23766224, 6.00485414, 6.00485414, 6.00485414, 6.00485414,
-2.07997892, -2.07997892, -2.07997892, -2.07997892, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89409162, 460.89409162, 460.89409162, 460.89409162,
793.36263021, 793.36263021, 793.36263021, 793.36263021,
1686.43990471, 1686.43990471, 1686.43990471, 1686.43990471,
1682.15207572, 1682.15207572, 1682.15207572, 1682.15207572,
1674.7933506 , 1674.7933506 , 1674.7933506 , 1674.7933506 ,
1672.61097758, 1672.61097758, 1672.61097758, 1672.61097758,
1675.16126234, 1675.16126234, 1675.16126234, 1675.16126234,
1680.61556691, 1680.61556691, 1680.61556691, 1680.61556691,
1685.85859429, 1685.85859429, 1685.85859429, 1685.85859429,
1688.19601121, 1688.19601121, 1688.19601121, 1688.19601121,
1689.32894658, 1689.32894658, 1689.32894658, 1689.32894658,
1690.14987454, 1690.14987454, 1690.14987454, 1690.14987454,
1690.06145822, 1690.06145822, 1690.06145822, 1690.06145822,
1689.78496303, 1689.78496303, 1689.78496303, 1689.78496303,
1689.32314367, 1689.32314367, 1689.32314367, 1689.32314367,
1689.78670108, 1689.78670108, 1689.78670108, 1689.78670108,
1690.37884588, 1690.37884588, 1690.37884588, 1690.37884588,
1693.90794861, 1693.90794861, 1693.90794861, 1693.90794861,
1695.8182888 , 1695.8182888 , 1695.8182888 , 1695.8182888 ,
1698.7344182 , 1698.7344182 , 1698.7344182 , 1698.7344182 ,
1696.6502919 , 1696.6502919 , 1696.6502919 , 1696.6502919 ,
1678.73322594, 1678.73322594, 1678.73322594, 1678.73322594,
1571.30068303, 1571.30068303, 1571.30068303, 1571.30068303,
1095.87520815, 1095.87520815, 1095.87520815, 1095.87520815,
206.6425445 , 206.6425445 , 206.6425445 , 206.6425445 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924038,
5.99924038, 5.99924038, 5.99924038, 7.91003434, 7.91003434,
7.91003434, 7.91003434, 14.34738841, 14.34738841, 14.34738841,
14.34738841, 14.3316937 , 14.3316937 , 14.3316937 , 14.3316937 ,
14.2729339 , 14.2729339 , 14.2729339 , 14.2729339 , 14.1680748 ,
14.1680748 , 14.1680748 , 14.1680748 , 14.1263544 , 14.1263544 ,
14.1263544 , 14.1263544 , 14.14345566, 14.14345566, 14.14345566,
14.14345566, 14.20258109, 14.20258109, 14.20258109, 14.20258109,
14.26182758, 14.26182758, 14.26182758, 14.26182758, 14.30299917,
14.30299917, 14.30299917, 14.30299917, 14.35723166, 14.35723166,
14.35723166, 14.35723166, 14.4884073 , 14.4884073 , 14.4884073 ,
14.4884073 , 14.82597909, 14.82597909, 14.82597909, 14.82597909,
15.5815915 , 15.5815915 , 15.5815915 , 15.5815915 , 17.01102296,
17.01102296, 17.01102296, 17.01102296, 19.32252828, 19.32252828,
19.32252828, 19.32252828, 22.61974042, 22.61974042, 22.61974042,
22.61974042, 26.01729543, 26.01729543, 26.01729543, 26.01729543,
28.30360654, 28.30360654, 28.30360654, 28.30360654, 29.59819706,
29.59819706, 29.59819706, 29.59819706, 30.19748238, 30.19748238,
30.19748238, 30.19748238, 30.19846012, 30.19846012, 30.19846012,
30.19846012, 28.29821234, 28.29821234, 28.29821234, 28.29821234,
19.13418208, 19.13418208, 19.13418208, 19.13418208, 6.99659014,
6.99659014, 6.99659014, 6.99659014, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749934,
19.59749934, 19.59749934, 19.59749934, 16.40941664, 16.40941664,
16.40941664, 16.40941664, 8.82485533, 8.82485533, 8.82485533,
8.82485533, 8.79573239, 8.79573239, 8.79573239, 8.79573239,
8.75227497, 8.75227497, 8.75227497, 8.75227497, 8.69333804,
8.69333804, 8.69333804, 8.69333804, 8.65873307, 8.65873307,
8.65873307, 8.65873307, 8.65069359, 8.65069359, 8.65069359,
8.65069359, 8.66077701, 8.66077701, 8.66077701, 8.66077701,
8.68028982, 8.68028982, 8.68028982, 8.68028982, 8.6866413 ,
8.6866413 , 8.6866413 , 8.6866413 , 8.6861228 , 8.6861228 ,
8.6861228 , 8.6861228 , 8.6814526 , 8.6814526 , 8.6814526 ,
8.6814526 , 8.67888773, 8.67888773, 8.67888773, 8.67888773,
8.67775411, 8.67775411, 8.67775411, 8.67775411, 8.6764208 ,
8.6764208 , 8.6764208 , 8.6764208 , 8.67872569, 8.67872569,
8.67872569, 8.67872569, 8.67909904, 8.67909904, 8.67909904,
8.67909904, 8.69435722, 8.69435722, 8.69435722, 8.69435722,
8.70621475, 8.70621475, 8.70621475, 8.70621475, 8.71308756,
8.71308756, 8.71308756, 8.71308756, 8.69901201, 8.69901201,
8.69901201, 8.69901201, 8.58258793, 8.58258793, 8.58258793,
8.58258793, 7.88962994, 7.88962994, 7.88962994, 7.88962994,
4.2672388 , 4.2672388 , 4.2672388 , 4.2672388 , -4.92722735,
-4.92722735, -4.92722735, -4.92722735, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89404095, 460.89404095, 460.89404095, 460.89404095,
717.96564395, 717.96564395, 717.96564395, 717.96564395,
1688.71209354, 1688.71209354, 1688.71209354, 1688.71209354,
1689.07064819, 1689.07064819, 1689.07064819, 1689.07064819,
1686.21538307, 1686.21538307, 1686.21538307, 1686.21538307,
1679.32245135, 1679.32245135, 1679.32245135, 1679.32245135,
1676.00126704, 1676.00126704, 1676.00126704, 1676.00126704,
1677.10005677, 1677.10005677, 1677.10005677, 1677.10005677,
1680.69637722, 1680.69637722, 1680.69637722, 1680.69637722,
1685.80087348, 1685.80087348, 1685.80087348, 1685.80087348,
1688.70920636, 1688.70920636, 1688.70920636, 1688.70920636,
1690.54735925, 1690.54735925, 1690.54735925, 1690.54735925,
1690.85510267, 1690.85510267, 1690.85510267, 1690.85510267,
1690.25181985, 1690.25181985, 1690.25181985, 1690.25181985,
1689.51821895, 1689.51821895, 1689.51821895, 1689.51821895,
1689.57783456, 1689.57783456, 1689.57783456, 1689.57783456,
1689.65603804, 1689.65603804, 1689.65603804, 1689.65603804,
1691.7166648 , 1691.7166648 , 1691.7166648 , 1691.7166648 ,
1692.37997272, 1692.37997272, 1692.37997272, 1692.37997272,
1696.3701987 , 1696.3701987 , 1696.3701987 , 1696.3701987 ,
1697.25391001, 1697.25391001, 1697.25391001, 1697.25391001,
1693.31920613, 1693.31920613, 1693.31920613, 1693.31920613,
1661.12117656, 1661.12117656, 1661.12117656, 1661.12117656,
1483.02354923, 1483.02354923, 1483.02354923, 1483.02354923,
813.24144598, 813.24144598, 813.24144598, 813.24144598,
80.51859504, 80.51859504, 80.51859504, 80.51859504,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924017,
5.99924017, 5.99924017, 5.99924017, 7.37649405, 7.37649405,
7.37649405, 7.37649405, 14.37562881, 14.37562881, 14.37562881,
14.37562881, 14.36338351, 14.36338351, 14.36338351, 14.36338351,
14.33192819, 14.33192819, 14.33192819, 14.33192819, 14.25919308,
14.25919308, 14.25919308, 14.25919308, 14.17470022, 14.17470022,
14.17470022, 14.17470022, 14.15010967, 14.15010967, 14.15010967,
14.15010967, 14.17053714, 14.17053714, 14.17053714, 14.17053714,
14.21908177, 14.21908177, 14.21908177, 14.21908177, 14.27226922,
14.27226922, 14.27226922, 14.27226922, 14.32794724, 14.32794724,
14.32794724, 14.32794724, 14.42101915, 14.42101915, 14.42101915,
14.42101915, 14.64801748, 14.64801748, 14.64801748, 14.64801748,
15.18142497, 15.18142497, 15.18142497, 15.18142497, 16.25430901,
16.25430901, 16.25430901, 16.25430901, 18.10584037, 18.10584037,
18.10584037, 18.10584037, 20.9014521 , 20.9014521 , 20.9014521 ,
20.9014521 , 24.42096823, 24.42096823, 24.42096823, 24.42096823,
27.2930598 , 27.2930598 , 27.2930598 , 27.2930598 , 29.03043122,
29.03043122, 29.03043122, 29.03043122, 29.98245032, 29.98245032,
29.98245032, 29.98245032, 30.32051206, 30.32051206, 30.32051206,
30.32051206, 30.0073725 , 30.0073725 , 30.0073725 , 30.0073725 ,
26.56613444, 26.56613444, 26.56613444, 26.56613444, 14.47373671,
14.47373671, 14.47373671, 14.47373671, 6.04555189, 6.04555189,
6.04555189, 6.04555189, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749971,
19.59749971, 19.59749971, 19.59749971, 17.23455179, 17.23455179,
17.23455179, 17.23455179, 8.83283516, 8.83283516, 8.83283516,
8.83283516, 8.8066986 , 8.8066986 , 8.8066986 , 8.8066986 ,
8.77893982, 8.77893982, 8.77893982, 8.77893982, 8.74393893,
8.74393893, 8.74393893, 8.74393893, 8.69303006, 8.69303006,
8.69303006, 8.69303006, 8.65793403, 8.65793403, 8.65793403,
8.65793403, 8.64844462, 8.64844462, 8.64844462, 8.64844462,
8.65286137, 8.65286137, 8.65286137, 8.65286137, 8.66758632,
8.66758632, 8.66758632, 8.66758632, 8.67826838, 8.67826838,
8.67826838, 8.67826838, 8.6813123 , 8.6813123 , 8.6813123 ,
8.6813123 , 8.68212227, 8.68212227, 8.68212227, 8.68212227,
8.68063646, 8.68063646, 8.68063646, 8.68063646, 8.67755171,
8.67755171, 8.67755171, 8.67755171, 8.67747348, 8.67747348,
8.67747348, 8.67747348, 8.67572487, 8.67572487, 8.67572487,
8.67572487, 8.68568246, 8.68568246, 8.68568246, 8.68568246,
8.69305859, 8.69305859, 8.69305859, 8.69305859, 8.7076952 ,
8.7076952 , 8.7076952 , 8.7076952 , 8.70857632, 8.70857632,
8.70857632, 8.70857632, 8.68124002, 8.68124002, 8.68124002,
8.68124002, 8.47594433, 8.47594433, 8.47594433, 8.47594433,
7.28729035, 7.28729035, 7.28729035, 7.28729035, 1.78738917,
1.78738917, 1.78738917, 1.78738917, -6.13549158, -6.13549158,
-6.13549158, -6.13549158, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89401831, 460.89401831, 460.89401831, 460.89401831,
640.32907573, 640.32907573, 640.32907573, 640.32907573,
1688.97283917, 1688.97283917, 1688.97283917, 1688.97283917,
1692.25449937, 1692.25449937, 1692.25449937, 1692.25449937,
1692.17941475, 1692.17941475, 1692.17941475, 1692.17941475,
1689.40271881, 1689.40271881, 1689.40271881, 1689.40271881,
1682.99070598, 1682.99070598, 1682.99070598, 1682.99070598,
1678.7420523 , 1678.7420523 , 1678.7420523 , 1678.7420523 ,
1678.78423243, 1678.78423243, 1678.78423243, 1678.78423243,
1681.18667403, 1681.18667403, 1681.18667403, 1681.18667403,
1685.75284892, 1685.75284892, 1685.75284892, 1685.75284892,
1689.4021576 , 1689.4021576 , 1689.4021576 , 1689.4021576 ,
1690.83803066, 1690.83803066, 1690.83803066, 1690.83803066,
1690.71746463, 1690.71746463, 1690.71746463, 1690.71746463,
1690.14739212, 1690.14739212, 1690.14739212, 1690.14739212,
1689.75355011, 1689.75355011, 1689.75355011, 1689.75355011,
1689.60668819, 1689.60668819, 1689.60668819, 1689.60668819,
1690.78190264, 1690.78190264, 1690.78190264, 1690.78190264,
1690.18310948, 1690.18310948, 1690.18310948, 1690.18310948,
1692.92688656, 1692.92688656, 1692.92688656, 1692.92688656,
1695.814461 , 1695.814461 , 1695.814461 , 1695.814461 ,
1695.87960857, 1695.87960857, 1695.87960857, 1695.87960857,
1687.43569733, 1687.43569733, 1687.43569733, 1687.43569733,
1631.68447877, 1631.68447877, 1631.68447877, 1631.68447877,
1348.20337487, 1348.20337487, 1348.20337487, 1348.20337487,
508.05741301, 508.05741301, 508.05741301, 508.05741301,
47.34758171, 47.34758171, 47.34758171, 47.34758171,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924008,
5.99924008, 5.99924008, 5.99924008, 6.8239293 , 6.8239293 ,
6.8239293 , 6.8239293 , 14.40274093, 14.40274093, 14.40274093,
14.40274093, 14.3932066 , 14.3932066 , 14.3932066 , 14.3932066 ,
14.36759642, 14.36759642, 14.36759642, 14.36759642, 14.32050287,
14.32050287, 14.32050287, 14.32050287, 14.2461405 , 14.2461405 ,
14.2461405 , 14.2461405 , 14.19058987, 14.19058987, 14.19058987,
14.19058987, 14.17646248, 14.17646248, 14.17646248, 14.17646248,
14.19509807, 14.19509807, 14.19509807, 14.19509807, 14.23721094,
14.23721094, 14.23721094, 14.23721094, 14.28812531, 14.28812531,
14.28812531, 14.28812531, 14.36660987, 14.36660987, 14.36660987,
14.36660987, 14.52667974, 14.52667974, 14.52667974, 14.52667974,
14.89833561, 14.89833561, 14.89833561, 14.89833561, 15.68674478,
15.68674478, 15.68674478, 15.68674478, 17.1304627 , 17.1304627 ,
17.1304627 , 17.1304627 , 19.43884554, 19.43884554, 19.43884554,
19.43884554, 22.63759009, 22.63759009, 22.63759009, 22.63759009,
26.033954 , 26.033954 , 26.033954 , 26.033954 , 28.25091774,
28.25091774, 28.25091774, 28.25091774, 29.58183321, 29.58183321,
29.58183321, 29.58183321, 30.2262222 , 30.2262222 , 30.2262222 ,
30.2262222 , 30.36632078, 30.36632078, 30.36632078, 30.36632078,
29.54572325, 29.54572325, 29.54572325, 29.54572325, 23.86518351,
23.86518351, 23.86518351, 23.86518351, 10.13978954, 10.13978954,
10.13978954, 10.13978954, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749987,
19.59749987, 19.59749987, 19.59749987, 18.17769491, 18.17769491,
18.17769491, 18.17769491, 8.84955886, 8.84955886, 8.84955886,
8.84955886, 8.8105969 , 8.8105969 , 8.8105969 , 8.8105969 ,
8.79050179, 8.79050179, 8.79050179, 8.79050179, 8.76811031,
8.76811031, 8.76811031, 8.76811031, 8.73833779, 8.73833779,
8.73833779, 8.73833779, 8.69433495, 8.69433495, 8.69433495,
8.69433495, 8.6589408 , 8.6589408 , 8.6589408 , 8.6589408 ,
8.6468022 , 8.6468022 , 8.6468022 , 8.6468022 , 8.64574578,
8.64574578, 8.64574578, 8.64574578, 8.65697301, 8.65697301,
8.65697301, 8.65697301, 8.67297466, 8.67297466, 8.67297466,
8.67297466, 8.68055394, 8.68055394, 8.68055394, 8.68055394,
8.68217584, 8.68217584, 8.68217584, 8.68217584, 8.68050877,
8.68050877, 8.68050877, 8.68050877, 8.67805459, 8.67805459,
8.67805459, 8.67805459, 8.67504229, 8.67504229, 8.67504229,
8.67504229, 8.68217954, 8.68217954, 8.68217954, 8.68217954,
8.68445857, 8.68445857, 8.68445857, 8.68445857, 8.69633107,
8.69633107, 8.69633107, 8.69633107, 8.70611691, 8.70611691,
8.70611691, 8.70611691, 8.70394195, 8.70394195, 8.70394195,
8.70394195, 8.65001892, 8.65001892, 8.65001892, 8.65001892,
8.28551311, 8.28551311, 8.28551311, 8.28551311, 6.29162128,
6.29162128, 6.29162128, 6.29162128, -1.35153772, -1.35153772,
-1.35153772, -1.35153772, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400818, 460.89400818, 460.89400818, 460.89400818,
561.91173373, 561.91173373, 561.91173373, 561.91173373,
1686.98261782, 1686.98261782, 1686.98261782, 1686.98261782,
1694.14142956, 1694.14142956, 1694.14142956, 1694.14142956,
1695.23081499, 1695.23081499, 1695.23081499, 1695.23081499,
1694.61345363, 1694.61345363, 1694.61345363, 1694.61345363,
1691.89465258, 1691.89465258, 1691.89465258, 1691.89465258,
1685.89527761, 1685.89527761, 1685.89527761, 1685.89527761,
1681.04668541, 1681.04668541, 1681.04668541, 1681.04668541,
1680.43546913, 1680.43546913, 1680.43546913, 1680.43546913,
1682.24858591, 1682.24858591, 1682.24858591, 1682.24858591,
1685.76509806, 1685.76509806, 1685.76509806, 1685.76509806,
1689.22071843, 1689.22071843, 1689.22071843, 1689.22071843,
1690.37791746, 1690.37791746, 1690.37791746, 1690.37791746,
1690.46076304, 1690.46076304, 1690.46076304, 1690.46076304,
1690.30669745, 1690.30669745, 1690.30669745, 1690.30669745,
1689.95002867, 1689.95002867, 1689.95002867, 1689.95002867,
1690.38732396, 1690.38732396, 1690.38732396, 1690.38732396,
1689.31280473, 1689.31280473, 1689.31280473, 1689.31280473,
1690.73856944, 1690.73856944, 1690.73856944, 1690.73856944,
1692.81693624, 1692.81693624, 1692.81693624, 1692.81693624,
1695.21481449, 1695.21481449, 1695.21481449, 1695.21481449,
1693.51935784, 1693.51935784, 1693.51935784, 1693.51935784,
1677.81359698, 1677.81359698, 1677.81359698, 1677.81359698,
1584.72629656, 1584.72629656, 1584.72629656, 1584.72629656,
1149.1337881 , 1149.1337881 , 1149.1337881 , 1149.1337881 ,
250.14536714, 250.14536714, 250.14536714, 250.14536714,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924003,
5.99924003, 5.99924003, 5.99924003, 6.42236937, 6.42236937,
6.42236937, 6.42236937, 14.27010826, 14.27010826, 14.27010826,
14.27010826, 14.4126468 , 14.4126468 , 14.4126468 , 14.4126468 ,
14.39597654, 14.39597654, 14.39597654, 14.39597654, 14.36168051,
14.36168051, 14.36168051, 14.36168051, 14.30366886, 14.30366886,
14.30366886, 14.30366886, 14.24235343, 14.24235343, 14.24235343,
14.24235343, 14.21217733, 14.21217733, 14.21217733, 14.21217733,
14.20366908, 14.20366908, 14.20366908, 14.20366908, 14.21910348,
14.21910348, 14.21910348, 14.21910348, 14.25682454, 14.25682454,
14.25682454, 14.25682454, 14.31287435, 14.31287435, 14.31287435,
14.31287435, 14.43267012, 14.43267012, 14.43267012, 14.43267012,
14.69868846, 14.69868846, 14.69868846, 14.69868846, 15.2685669 ,
15.2685669 , 15.2685669 , 15.2685669 , 16.36890068, 16.36890068,
16.36890068, 16.36890068, 18.22751099, 18.22751099, 18.22751099,
18.22751099, 20.96900914, 20.96900914, 20.96900914, 20.96900914,
24.46575553, 24.46575553, 24.46575553, 24.46575553, 27.25217639,
27.25217639, 27.25217639, 27.25217639, 28.99882734, 28.99882734,
28.99882734, 28.99882734, 29.96353182, 29.96353182, 29.96353182,
29.96353182, 30.37169742, 30.37169742, 30.37169742, 30.37169742,
30.35145464, 30.35145464, 30.35145464, 30.35145464, 28.58089868,
28.58089868, 28.58089868, 28.58089868, 20.0510233 , 20.0510233 ,
20.0510233 , 20.0510233 , 7.37833451, 7.37833451, 7.37833451,
7.37833451, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749994,
19.59749994, 19.59749994, 19.59749994, 18.86697027, 18.86697027,
18.86697027, 18.86697027, 8.94442174, 8.94442174, 8.94442174,
8.94442174, 8.80588337, 8.80588337, 8.80588337, 8.80588337,
8.79530798, 8.79530798, 8.79530798, 8.79530798, 8.77969636,
8.77969636, 8.77969636, 8.77969636, 8.76091086, 8.76091086,
8.76091086, 8.76091086, 8.73545381, 8.73545381, 8.73545381,
8.73545381, 8.69648824, 8.69648824, 8.69648824, 8.69648824,
8.65982364, 8.65982364, 8.65982364, 8.65982364, 8.64404307,
8.64404307, 8.64404307, 8.64404307, 8.64167024, 8.64167024,
8.64167024, 8.64167024, 8.65208368, 8.65208368, 8.65208368,
8.65208368, 8.67004128, 8.67004128, 8.67004128, 8.67004128,
8.67930451, 8.67930451, 8.67930451, 8.67930451, 8.68093874,
8.68093874, 8.68093874, 8.68093874, 8.67969659, 8.67969659,
8.67969659, 8.67969659, 8.67661374, 8.67661374, 8.67661374,
8.67661374, 8.68148369, 8.68148369, 8.68148369, 8.68148369,
8.68079809, 8.68079809, 8.68079809, 8.68079809, 8.68712559,
8.68712559, 8.68712559, 8.68712559, 8.6978669 , 8.6978669 ,
8.6978669 , 8.6978669 , 8.70516092, 8.70516092, 8.70516092,
8.70516092, 8.69567966, 8.69567966, 8.69567966, 8.69567966,
8.58804587, 8.58804587, 8.58804587, 8.58804587, 7.97762984,
7.97762984, 7.97762984, 7.97762984, 4.70992139, 4.70992139,
4.70992139, 4.70992139, -4.43122609, -4.43122609, -4.43122609,
-4.43122609, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400366, 460.89400366, 460.89400366, 460.89400366,
509.90329157, 509.90329157, 509.90329157, 509.90329157,
1663.63547926, 1663.63547926, 1663.63547926, 1663.63547926,
1694.47462545, 1694.47462545, 1694.47462545, 1694.47462545,
1696.88211107, 1696.88211107, 1696.88211107, 1696.88211107,
1697.4475742 , 1697.4475742 , 1697.4475742 , 1697.4475742 ,
1696.59973906, 1696.59973906, 1696.59973906, 1696.59973906,
1693.8549966 , 1693.8549966 , 1693.8549966 , 1693.8549966 ,
1688.33995701, 1688.33995701, 1688.33995701, 1688.33995701,
1683.3210705 , 1683.3210705 , 1683.3210705 , 1683.3210705 ,
1682.21112957, 1682.21112957, 1682.21112957, 1682.21112957,
1683.21609253, 1683.21609253, 1683.21609253, 1683.21609253,
1685.32211388, 1685.32211388, 1685.32211388, 1685.32211388,
1688.36110403, 1688.36110403, 1688.36110403, 1688.36110403,
1689.95318059, 1689.95318059, 1689.95318059, 1689.95318059,
1690.40115385, 1690.40115385, 1690.40115385, 1690.40115385,
1690.46507549, 1690.46507549, 1690.46507549, 1690.46507549,
1690.41821033, 1690.41821033, 1690.41821033, 1690.41821033,
1689.1741802 , 1689.1741802 , 1689.1741802 , 1689.1741802 ,
1689.83735913, 1689.83735913, 1689.83735913, 1689.83735913,
1690.41986428, 1690.41986428, 1690.41986428, 1690.41986428,
1693.00179797, 1693.00179797, 1693.00179797, 1693.00179797,
1693.83768418, 1693.83768418, 1693.83768418, 1693.83768418,
1690.0603828 , 1690.0603828 , 1690.0603828 , 1690.0603828 ,
1663.86839515, 1663.86839515, 1663.86839515, 1663.86839515,
1504.50895424, 1504.50895424, 1504.50895424, 1504.50895424,
879.19259319, 879.19259319, 879.19259319, 879.19259319,
97.9252393 , 97.9252393 , 97.9252393 , 97.9252393 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924002,
5.99924002, 5.99924002, 5.99924002, 6.20229089, 6.20229089,
6.20229089, 6.20229089, 13.98207114, 13.98207114, 13.98207114,
13.98207114, 14.40679582, 14.40679582, 14.40679582, 14.40679582,
14.4068119 , 14.4068119 , 14.4068119 , 14.4068119 , 14.38943713,
14.38943713, 14.38943713, 14.38943713, 14.34820465, 14.34820465,
14.34820465, 14.34820465, 14.28633915, 14.28633915, 14.28633915,
14.28633915, 14.25163213, 14.25163213, 14.25163213, 14.25163213,
14.23754499, 14.23754499, 14.23754499, 14.23754499, 14.23024107,
14.23024107, 14.23024107, 14.23024107, 14.24174742, 14.24174742,
14.24174742, 14.24174742, 14.27889962, 14.27889962, 14.27889962,
14.27889962, 14.35759486, 14.35759486, 14.35759486, 14.35759486,
14.54696917, 14.54696917, 14.54696917, 14.54696917, 14.96266718,
14.96266718, 14.96266718, 14.96266718, 15.78642563, 15.78642563,
15.78642563, 15.78642563, 17.2487071 , 17.2487071 , 17.2487071 ,
17.2487071 , 19.53398038, 19.53398038, 19.53398038, 19.53398038,
22.71582829, 22.71582829, 22.71582829, 22.71582829, 26.01707632,
26.01707632, 26.01707632, 26.01707632, 28.22634492, 28.22634492,
28.22634492, 28.22634492, 29.54364225, 29.54364225, 29.54364225,
29.54364225, 30.21788417, 30.21788417, 30.21788417, 30.21788417,
30.48270507, 30.48270507, 30.48270507, 30.48270507, 30.13950965,
30.13950965, 30.13950965, 30.13950965, 26.97376455, 26.97376455,
26.97376455, 26.97376455, 15.48772497, 15.48772497, 15.48772497,
15.48772497, 6.14534066, 6.14534066, 6.14534066, 6.14534066,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749997,
19.59749997, 19.59749997, 19.59749997, 19.24583929, 19.24583929,
19.24583929, 19.24583929, 9.10319349, 9.10319349, 9.10319349,
9.10319349, 8.78429254, 8.78429254, 8.78429254, 8.78429254,
8.78782172, 8.78782172, 8.78782172, 8.78782172, 8.78396219,
8.78396219, 8.78396219, 8.78396219, 8.77215789, 8.77215789,
8.77215789, 8.77215789, 8.75660895, 8.75660895, 8.75660895,
8.75660895, 8.73364152, 8.73364152, 8.73364152, 8.73364152,
8.69780904, 8.69780904, 8.69780904, 8.69780904, 8.65998853,
8.65998853, 8.65998853, 8.65998853, 8.6435601 , 8.6435601 ,
8.6435601 , 8.6435601 , 8.64283542, 8.64283542, 8.64283542,
8.64283542, 8.65074582, 8.65074582, 8.65074582, 8.65074582,
8.6663228 , 8.6663228 , 8.6663228 , 8.6663228 , 8.67666959,
8.67666959, 8.67666959, 8.67666959, 8.67914542, 8.67914542,
8.67914542, 8.67914542, 8.67858192, 8.67858192, 8.67858192,
8.67858192, 8.6821574 , 8.6821574 , 8.6821574 , 8.6821574 ,
8.68024296, 8.68024296, 8.68024296, 8.68024296, 8.68336799,
8.68336799, 8.68336799, 8.68336799, 8.68857928, 8.68857928,
8.68857928, 8.68857928, 8.70010128, 8.70010128, 8.70010128,
8.70010128, 8.70339846, 8.70339846, 8.70339846, 8.70339846,
8.67320959, 8.67320959, 8.67320959, 8.67320959, 8.49611712,
8.49611712, 8.49611712, 8.49611712, 7.44340708, 7.44340708,
7.44340708, 7.44340708, 2.38465564, 2.38465564, 2.38465564,
2.38465564, -6.01693913, -6.01693913, -6.01693913, -6.01693913,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400163, 460.89400163, 460.89400163, 460.89400163,
483.62121622, 483.62121622, 483.62121622, 483.62121622,
1623.60310845, 1623.60310845, 1623.60310845, 1623.60310845,
1691.64939439, 1691.64939439, 1691.64939439, 1691.64939439,
1696.27722361, 1696.27722361, 1696.27722361, 1696.27722361,
1698.77708803, 1698.77708803, 1698.77708803, 1698.77708803,
1699.18532234, 1699.18532234, 1699.18532234, 1699.18532234,
1698.15429252, 1698.15429252, 1698.15429252, 1698.15429252,
1695.56154428, 1695.56154428, 1695.56154428, 1695.56154428,
1690.76866638, 1690.76866638, 1690.76866638, 1690.76866638,
1685.52418568, 1685.52418568, 1685.52418568, 1685.52418568,
1683.61591444, 1683.61591444, 1683.61591444, 1683.61591444,
1683.59485251, 1683.59485251, 1683.59485251, 1683.59485251,
1684.73977157, 1684.73977157, 1684.73977157, 1684.73977157,
1687.5610475 , 1687.5610475 , 1687.5610475 , 1687.5610475 ,
1689.67184918, 1689.67184918, 1689.67184918, 1689.67184918,
1690.44238069, 1690.44238069, 1690.44238069, 1690.44238069,
1690.51459133, 1690.51459133, 1690.51459133, 1690.51459133,
1689.39687915, 1689.39687915, 1689.39687915, 1689.39687915,
1689.68288809, 1689.68288809, 1689.68288809, 1689.68288809,
1689.44048287, 1689.44048287, 1689.44048287, 1689.44048287,
1690.53791285, 1690.53791285, 1690.53791285, 1690.53791285,
1692.47561232, 1692.47561232, 1692.47561232, 1692.47561232,
1692.13797522, 1692.13797522, 1692.13797522, 1692.13797522,
1686.64509245, 1686.64509245, 1686.64509245, 1686.64509245,
1636.82834627, 1636.82834627, 1636.82834627, 1636.82834627,
1380.81911464, 1380.81911464, 1380.81911464, 1380.81911464,
573.2312164 , 573.2312164 , 573.2312164 , 573.2312164 ,
49.93303743, 49.93303743, 49.93303743, 49.93303743,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924001,
5.99924001, 5.99924001, 5.99924001, 6.09328922, 6.09328922,
6.09328922, 6.09328922, 13.6337493 , 13.6337493 , 13.6337493 ,
13.6337493 , 14.37575791, 14.37575791, 14.37575791, 14.37575791,
14.39780884, 14.39780884, 14.39780884, 14.39780884, 14.39651705,
14.39651705, 14.39651705, 14.39651705, 14.37570225, 14.37570225,
14.37570225, 14.37570225, 14.32770213, 14.32770213, 14.32770213,
14.32770213, 14.28176433, 14.28176433, 14.28176433, 14.28176433,
14.26966435, 14.26966435, 14.26966435, 14.26966435, 14.26233205,
14.26233205, 14.26233205, 14.26233205, 14.25388775, 14.25388775,
14.25388775, 14.25388775, 14.26400898, 14.26400898, 14.26400898,
14.26400898, 14.31271717, 14.31271717, 14.31271717, 14.31271717,
14.43756452, 14.43756452, 14.43756452, 14.43756452, 14.73121993,
14.73121993, 14.73121993, 14.73121993, 15.34476464, 15.34476464,
15.34476464, 15.34476464, 16.4748069 , 16.4748069 , 16.4748069 ,
16.4748069 , 18.33346911, 18.33346911, 18.33346911, 18.33346911,
21.06320454, 21.06320454, 21.06320454, 21.06320454, 24.48736259,
24.48736259, 24.48736259, 24.48736259, 27.25029256, 27.25029256,
27.25029256, 27.25029256, 28.96000247, 28.96000247, 28.96000247,
28.96000247, 29.92152696, 29.92152696, 29.92152696, 29.92152696,
30.43071774, 30.43071774, 30.43071774, 30.43071774, 30.48158285,
30.48158285, 30.48158285, 30.48158285, 29.6931038 , 29.6931038 ,
29.6931038 , 29.6931038 , 24.48036157, 24.48036157, 24.48036157,
24.48036157, 10.97656215, 10.97656215, 10.97656215, 10.97656215,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749999,
19.59749999, 19.59749999, 19.59749999, 19.43452953, 19.43452953,
19.43452953, 19.43452953, 9.31334143, 9.31334143, 9.31334143,
9.31334143, 8.75472416, 8.75472416, 8.75472416, 8.75472416,
8.76559912, 8.76559912, 8.76559912, 8.76559912, 8.77409202,
8.77409202, 8.77409202, 8.77409202, 8.77426307, 8.77426307,
8.77426307, 8.77426307, 8.76671477, 8.76671477, 8.76671477,
8.76671477, 8.75319922, 8.75319922, 8.75319922, 8.75319922,
8.73118346, 8.73118346, 8.73118346, 8.73118346, 8.69883596,
8.69883596, 8.69883596, 8.69883596, 8.6628458 , 8.6628458 ,
8.6628458 , 8.6628458 , 8.64715364, 8.64715364, 8.64715364,
8.64715364, 8.64581082, 8.64581082, 8.64581082, 8.64581082,
8.6500293 , 8.6500293 , 8.6500293 , 8.6500293 , 8.66179058,
8.66179058, 8.66179058, 8.66179058, 8.67373076, 8.67373076,
8.67373076, 8.67373076, 8.67820923, 8.67820923, 8.67820923,
8.67820923, 8.68267612, 8.68267612, 8.68267612, 8.68267612,
8.68084071, 8.68084071, 8.68084071, 8.68084071, 8.68254662,
8.68254662, 8.68254662, 8.68254662, 8.68459313, 8.68459313,
8.68459313, 8.68459313, 8.69197139, 8.69197139, 8.69197139,
8.69197139, 8.70122804, 8.70122804, 8.70122804, 8.70122804,
8.69267096, 8.69267096, 8.69267096, 8.69267096, 8.64859801,
8.64859801, 8.64859801, 8.64859801, 8.32819372, 8.32819372,
8.32819372, 8.32819372, 6.54834767, 6.54834767, 6.54834767,
6.54834767, -0.62600176, -0.62600176, -0.62600176, -0.62600176,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400073, 460.89400073, 460.89400073, 460.89400073,
471.21870464, 471.21870464, 471.21870464, 471.21870464,
1578.16502252, 1578.16502252, 1578.16502252, 1578.16502252,
1687.33089712, 1687.33089712, 1687.33089712, 1687.33089712,
1693.02479095, 1693.02479095, 1693.02479095, 1693.02479095,
1697.54588006, 1697.54588006, 1697.54588006, 1697.54588006,
1699.94044253, 1699.94044253, 1699.94044253, 1699.94044253,
1700.41506288, 1700.41506288, 1700.41506288, 1700.41506288,
1699.56653883, 1699.56653883, 1699.56653883, 1699.56653883,
1697.376822 , 1697.376822 , 1697.376822 , 1697.376822 ,
1692.99504777, 1692.99504777, 1692.99504777, 1692.99504777,
1687.18710596, 1687.18710596, 1687.18710596, 1687.18710596,
1684.33621036, 1684.33621036, 1684.33621036, 1684.33621036,
1683.78877304, 1683.78877304, 1683.78877304, 1683.78877304,
1684.56316017, 1684.56316017, 1684.56316017, 1684.56316017,
1686.96306445, 1686.96306445, 1686.96306445, 1686.96306445,
1689.43070189, 1689.43070189, 1689.43070189, 1689.43070189,
1690.13566238, 1690.13566238, 1690.13566238, 1690.13566238,
1689.59333228, 1689.59333228, 1689.59333228, 1689.59333228,
1689.76788396, 1689.76788396, 1689.76788396, 1689.76788396,
1689.21360274, 1689.21360274, 1689.21360274, 1689.21360274,
1689.48965314, 1689.48965314, 1689.48965314, 1689.48965314,
1690.29182232, 1690.29182232, 1690.29182232, 1690.29182232,
1691.56567658, 1691.56567658, 1691.56567658, 1691.56567658,
1691.87982295, 1691.87982295, 1691.87982295, 1691.87982295,
1677.31394855, 1677.31394855, 1677.31394855, 1677.31394855,
1594.38740565, 1594.38740565, 1594.38740565, 1594.38740565,
1197.27536033, 1197.27536033, 1197.27536033, 1197.27536033,
299.03174315, 299.03174315, 299.03174315, 299.03174315,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}]}
minmod_rusanov
{'none_hll': [{'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924002, 5.99924002, 5.99924002, 5.99924002, 5.99969027,
5.99969027, 5.99969027, 5.99969027, 7.8345761 , 7.8345761 ,
7.8345761 , 7.8345761 , 12.09526797, 12.09526797, 12.09526797,
12.09526797, 13.95870911, 13.95870911, 13.95870911, 13.95870911,
14.2024846 , 14.2024846 , 14.2024846 , 14.2024846 , 14.22462015,
14.22462015, 14.22462015, 14.22462015, 14.25138163, 14.25138163,
14.25138163, 14.25138163, 14.2882224 , 14.2882224 , 14.2882224 ,
14.2882224 , 14.3412807 , 14.3412807 , 14.3412807 , 14.3412807 ,
14.42080121, 14.42080121, 14.42080121, 14.42080121, 14.54141153,
14.54141153, 14.54141153, 14.54141153, 14.72184791, 14.72184791,
14.72184791, 14.72184791, 14.98426056, 14.98426056, 14.98426056,
14.98426056, 15.35313156, 15.35313156, 15.35313156, 15.35313156,
15.85370678, 15.85370678, 15.85370678, 15.85370678, 16.50974361,
16.50974361, 16.50974361, 16.50974361, 17.34034306, 17.34034306,
17.34034306, 17.34034306, 18.35572577, 18.35572577, 18.35572577,
18.35572577, 19.55212633, 19.55212633, 19.55212633, 19.55212633,
20.90657097, 20.90657097, 20.90657097, 20.90657097, 22.372954 ,
22.372954 , 22.372954 , 22.372954 , 23.88071269, 23.88071269,
23.88071269, 23.88071269, 25.3350973 , 25.3350973 , 25.3350973 ,
25.3350973 , 26.61241916, 26.61241916, 26.61241916, 26.61241916,
27.53400021, 27.53400021, 27.53400021, 27.53400021, 27.7841184 ,
27.7841184 , 27.7841184 , 27.7841184 , 26.78077993, 26.78077993,
26.78077993, 26.78077993, 23.60906801, 23.60906801, 23.60906801,
23.60906801, 17.68592041, 17.68592041, 17.68592041, 17.68592041,
10.60486392, 10.60486392, 10.60486392, 10.60486392, 6.35968743,
6.35968743, 6.35968743, 6.35968743, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.59749996, 19.59749996, 19.59749996, 19.59749996, 19.59672155,
19.59672155, 19.59672155, 19.59672155, 16.30074788, 16.30074788,
16.30074788, 16.30074788, 10.81823663, 10.81823663, 10.81823663,
10.81823663, 8.99223833, 8.99223833, 8.99223833, 8.99223833,
8.77305402, 8.77305402, 8.77305402, 8.77305402, 8.76281569,
8.76281569, 8.76281569, 8.76281569, 8.75598985, 8.75598985,
8.75598985, 8.75598985, 8.75018727, 8.75018727, 8.75018727,
8.75018727, 8.74534323, 8.74534323, 8.74534323, 8.74534323,
8.74141416, 8.74141416, 8.74141416, 8.74141416, 8.73834339,
8.73834339, 8.73834339, 8.73834339, 8.73603409, 8.73603409,
8.73603409, 8.73603409, 8.7343356 , 8.7343356 , 8.7343356 ,
8.7343356 , 8.73304747, 8.73304747, 8.73304747, 8.73304747,
8.73194258, 8.73194258, 8.73194258, 8.73194258, 8.73080538,
8.73080538, 8.73080538, 8.73080538, 8.7294729 , 8.7294729 ,
8.7294729 , 8.7294729 , 8.72785766, 8.72785766, 8.72785766,
8.72785766, 8.7259233 , 8.7259233 , 8.7259233 , 8.7259233 ,
8.72356463, 8.72356463, 8.72356463, 8.72356463, 8.72026746,
8.72026746, 8.72026746, 8.72026746, 8.71423837, 8.71423837,
8.71423837, 8.71423837, 8.70028441, 8.70028441, 8.70028441,
8.70028441, 8.66473642, 8.66473642, 8.66473642, 8.66473642,
8.57356949, 8.57356949, 8.57356949, 8.57356949, 8.34500395,
8.34500395, 8.34500395, 8.34500395, 7.78890471, 7.78890471,
7.78890471, 7.78890471, 6.49775127, 6.49775127, 6.49775127,
6.49775127, 3.76893856, 3.76893856, 3.76893856, 3.76893856,
-1.00678094, -1.00678094, -1.00678094, -1.00678094, -5.69612119,
-5.69612119, -5.69612119, -5.69612119, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400232, 460.89400232, 460.89400232, 460.89400232,
460.94243518, 460.94243518, 460.94243518, 460.94243518,
703.2792111 , 703.2792111 , 703.2792111 , 703.2792111 ,
1337.55283241, 1337.55283241, 1337.55283241, 1337.55283241,
1636.90078605, 1636.90078605, 1636.90078605, 1636.90078605,
1676.20510287, 1676.20510287, 1676.20510287, 1676.20510287,
1677.82436261, 1677.82436261, 1677.82436261, 1677.82436261,
1678.89282951, 1678.89282951, 1678.89282951, 1678.89282951,
1679.87092338, 1679.87092338, 1679.87092338, 1679.87092338,
1680.79575443, 1680.79575443, 1680.79575443, 1680.79575443,
1681.69611111, 1681.69611111, 1681.69611111, 1681.69611111,
1682.59148341, 1682.59148341, 1682.59148341, 1682.59148341,
1683.49009397, 1683.49009397, 1683.49009397, 1683.49009397,
1684.38759814, 1684.38759814, 1684.38759814, 1684.38759814,
1685.26799937, 1685.26799937, 1685.26799937, 1685.26799937,
1686.10731691, 1686.10731691, 1686.10731691, 1686.10731691,
1686.87916975, 1686.87916975, 1686.87916975, 1686.87916975,
1687.56065205, 1687.56065205, 1687.56065205, 1687.56065205,
1688.13614788, 1688.13614788, 1688.13614788, 1688.13614788,
1688.59427472, 1688.59427472, 1688.59427472, 1688.59427472,
1688.9045266 , 1688.9045266 , 1688.9045266 , 1688.9045266 ,
1688.93900905, 1688.93900905, 1688.93900905, 1688.93900905,
1688.25216906, 1688.25216906, 1688.25216906, 1688.25216906,
1685.51318965, 1685.51318965, 1685.51318965, 1685.51318965,
1677.15515413, 1677.15515413, 1677.15515413, 1677.15515413,
1654.32146734, 1654.32146734, 1654.32146734, 1654.32146734,
1596.51937462, 1596.51937462, 1596.51937462, 1596.51937462,
1461.36177691, 1461.36177691, 1461.36177691, 1461.36177691,
1183.46702274, 1183.46702274, 1183.46702274, 1183.46702274,
737.79676841, 737.79676841, 737.79676841, 737.79676841,
276.70901347, 276.70901347, 276.70901347, 276.70901347,
59.57019196, 59.57019196, 59.57019196, 59.57019196,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}], 'minmod_rusanov': [{'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924002, 5.99924002, 5.99924002,
5.99924002, 5.99924007, 5.99924007, 5.99924007, 5.99924007,
5.99924031, 5.99924031, 5.99924031, 5.99924031, 5.99924126,
5.99924126, 5.99924126, 5.99924126, 5.99924514, 5.99924514,
5.99924514, 5.99924514, 5.99926098, 5.99926098, 5.99926098,
5.99926098, 5.99932544, 5.99932544, 5.99932544, 5.99932544,
5.99958696, 5.99958696, 5.99958696, 5.99958696, 6.00064486,
6.00064486, 6.00064486, 6.00064486, 6.00490572, 6.00490572,
6.00490572, 6.00490572, 6.02192165, 6.02192165, 6.02192165,
6.02192165, 6.08851456, 6.08851456, 6.08851456, 6.08851456,
6.33685385, 6.33685385, 6.33685385, 6.33685385, 7.17306942,
7.17306942, 7.17306942, 7.17306942, 9.48103328, 9.48103328,
9.48103328, 9.48103328, 12.16879608, 12.16879608, 12.16879608,
12.16879608, 13.57772571, 13.57772571, 13.57772571, 13.57772571,
14.0725543 , 14.0725543 , 14.0725543 , 14.0725543 , 14.20188264,
14.20188264, 14.20188264, 14.20188264, 14.21111476, 14.21111476,
14.21111476, 14.21111476, 14.19594776, 14.19594776, 14.19594776,
14.19594776, 14.16726566, 14.16726566, 14.16726566, 14.16726566,
14.14315288, 14.14315288, 14.14315288, 14.14315288, 14.13984508,
14.13984508, 14.13984508, 14.13984508, 14.15659401, 14.15659401,
14.15659401, 14.15659401, 14.22156771, 14.22156771, 14.22156771,
14.22156771, 14.38201257, 14.38201257, 14.38201257, 14.38201257,
14.70456648, 14.70456648, 14.70456648, 14.70456648, 15.27138194,
15.27138194, 15.27138194, 15.27138194, 16.17496693, 16.17496693,
16.17496693, 16.17496693, 17.5106624 , 17.5106624 , 17.5106624 ,
17.5106624 , 19.3615367 , 19.3615367 , 19.3615367 , 19.3615367 ,
21.75080399, 21.75080399, 21.75080399, 21.75080399, 24.33387543,
24.33387543, 24.33387543, 24.33387543, 26.40333256, 26.40333256,
26.40333256, 26.40333256, 27.90910754, 27.90910754, 27.90910754,
27.90910754, 28.93697999, 28.93697999, 28.93697999, 28.93697999,
29.53951302, 29.53951302, 29.53951302, 29.53951302, 29.73938869,
29.73938869, 29.73938869, 29.73938869, 29.0153186 , 29.0153186 ,
29.0153186 , 29.0153186 , 23.59070901, 23.59070901, 23.59070901,
23.59070901, 10.9415393 , 10.9415393 , 10.9415393 , 10.9415393 ,
6.3541182 , 6.3541182 , 6.3541182 , 6.3541182 , 6.00760847,
6.00760847, 6.00760847, 6.00760847, 5.99286029, 5.99286029,
5.99286029, 5.99286029, 5.99243117, 5.99243117, 5.99243117,
5.99243117, 5.99242027, 5.99242027, 5.99242027, 5.99242027,
5.99242001, 5.99242001, 5.99242001, 5.99242001, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.59749999, 19.59749999,
19.59749999, 19.59749999, 19.59749997, 19.59749997, 19.59749997,
19.59749997, 19.59749987, 19.59749987, 19.59749987, 19.59749987,
19.59749947, 19.59749947, 19.59749947, 19.59749947, 19.59749783,
19.59749783, 19.59749783, 19.59749783, 19.59749112, 19.59749112,
19.59749112, 19.59749112, 19.59746373, 19.59746373, 19.59746373,
19.59746373, 19.59735229, 19.59735229, 19.59735229, 19.59735229,
19.59690001, 19.59690001, 19.59690001, 19.59690001, 19.59506896,
19.59506896, 19.59506896, 19.59506896, 19.58767704, 19.58767704,
19.58767704, 19.58767704, 19.5579792 , 19.5579792 , 19.5579792 ,
19.5579792 , 19.4402373 , 19.4402373 , 19.4402373 , 19.4402373 ,
18.99425966, 18.99425966, 18.99425966, 18.99425966, 17.53641444,
17.53641444, 17.53641444, 17.53641444, 14.1519315 , 14.1519315 ,
14.1519315 , 14.1519315 , 10.74514786, 10.74514786, 10.74514786,
10.74514786, 9.38012207, 9.38012207, 9.38012207, 9.38012207,
8.93087961, 8.93087961, 8.93087961, 8.93087961, 8.78942687,
8.78942687, 8.78942687, 8.78942687, 8.74294599, 8.74294599,
8.74294599, 8.74294599, 8.72650952, 8.72650952, 8.72650952,
8.72650952, 8.72109124, 8.72109124, 8.72109124, 8.72109124,
8.71933594, 8.71933594, 8.71933594, 8.71933594, 8.71788858,
8.71788858, 8.71788858, 8.71788858, 8.71573795, 8.71573795,
8.71573795, 8.71573795, 8.71238766, 8.71238766, 8.71238766,
8.71238766, 8.70882217, 8.70882217, 8.70882217, 8.70882217,
8.70606951, 8.70606951, 8.70606951, 8.70606951, 8.70384986,
8.70384986, 8.70384986, 8.70384986, 8.70175254, 8.70175254,
8.70175254, 8.70175254, 8.69917307, 8.69917307, 8.69917307,
8.69917307, 8.69663571, 8.69663571, 8.69663571, 8.69663571,
8.69489541, 8.69489541, 8.69489541, 8.69489541, 8.69376268,
8.69376268, 8.69376268, 8.69376268, 8.69268692, 8.69268692,
8.69268692, 8.69268692, 8.69101355, 8.69101355, 8.69101355,
8.69101355, 8.68679018, 8.68679018, 8.68679018, 8.68679018,
8.67169423, 8.67169423, 8.67169423, 8.67169423, 8.59940696,
8.59940696, 8.59940696, 8.59940696, 8.19829508, 8.19829508,
8.19829508, 8.19829508, 6.15081393, 6.15081393, 6.15081393,
6.15081393, -0.62046552, -0.62046552, -0.62046552, -0.62046552,
-5.79868084, -5.79868084, -5.79868084, -5.79868084, -6.18525764,
-6.18525764, -6.18525764, -6.18525764, -6.19606479, -6.19606479,
-6.19606479, -6.19606479, -6.19632368, -6.19632368, -6.19632368,
-6.19632368, -6.19632985, -6.19632985, -6.19632985, -6.19632985,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400001, 460.89400001, 460.89400001, 460.89400001,
460.89400003, 460.89400003, 460.89400003, 460.89400003,
460.89400011, 460.89400011, 460.89400011, 460.89400011,
460.89400047, 460.89400047, 460.89400047, 460.89400047,
460.89400194, 460.89400194, 460.89400194, 460.89400194,
460.894008 , 460.894008 , 460.894008 , 460.894008 ,
460.89403291, 460.89403291, 460.89403291, 460.89403291,
460.89413504, 460.89413504, 460.89413504, 460.89413504,
460.89455274, 460.89455274, 460.89455274, 460.89455274,
460.89625675, 460.89625675, 460.89625675, 460.89625675,
460.90319027, 460.90319027, 460.90319027, 460.90319027,
460.93133142, 460.93133142, 460.93133142, 460.93133142,
461.04527487, 461.04527487, 461.04527487, 461.04527487,
461.50551801, 461.50551801, 461.50551801, 461.50551801,
463.35874362, 463.35874362, 463.35874362, 463.35874362,
470.77399165, 470.77399165, 470.77399165, 470.77399165,
499.91311649, 499.91311649, 499.91311649, 499.91311649,
607.72907468, 607.72907468, 607.72907468, 607.72907468,
937.52073538, 937.52073538, 937.52073538, 937.52073538,
1342.554988 , 1342.554988 , 1342.554988 , 1342.554988 ,
1565.38590105, 1565.38590105, 1565.38590105, 1565.38590105,
1644.82582902, 1644.82582902, 1644.82582902, 1644.82582902,
1670.41110412, 1670.41110412, 1670.41110412, 1670.41110412,
1678.82418254, 1678.82418254, 1678.82418254, 1678.82418254,
1682.32094248, 1682.32094248, 1682.32094248, 1682.32094248,
1684.65256293, 1684.65256293, 1684.65256293, 1684.65256293,
1686.56765509, 1686.56765509, 1686.56765509, 1686.56765509,
1688.04385825, 1688.04385825, 1688.04385825, 1688.04385825,
1689.13073435, 1689.13073435, 1689.13073435, 1689.13073435,
1689.86045769, 1689.86045769, 1689.86045769, 1689.86045769,
1690.38179979, 1690.38179979, 1690.38179979, 1690.38179979,
1690.86871462, 1690.86871462, 1690.86871462, 1690.86871462,
1691.29315664, 1691.29315664, 1691.29315664, 1691.29315664,
1691.56097335, 1691.56097335, 1691.56097335, 1691.56097335,
1691.61386226, 1691.61386226, 1691.61386226, 1691.61386226,
1691.50761164, 1691.50761164, 1691.50761164, 1691.50761164,
1691.41625769, 1691.41625769, 1691.41625769, 1691.41625769,
1691.40650495, 1691.40650495, 1691.40650495, 1691.40650495,
1691.37915294, 1691.37915294, 1691.37915294, 1691.37915294,
1691.2478804 , 1691.2478804 , 1691.2478804 , 1691.2478804 ,
1690.632513 , 1690.632513 , 1690.632513 , 1690.632513 ,
1687.30275079, 1687.30275079, 1687.30275079, 1687.30275079,
1667.9703053 , 1667.9703053 , 1667.9703053 , 1667.9703053 ,
1564.50056367, 1564.50056367, 1564.50056367, 1564.50056367,
1129.34533559, 1129.34533559, 1129.34533559, 1129.34533559,
308.00600506, 308.00600506, 308.00600506, 308.00600506,
55.7105872 , 55.7105872 , 55.7105872 , 55.7105872 ,
46.31374378, 46.31374378, 46.31374378, 46.31374378,
46.10021519, 46.10021519, 46.10021519, 46.10021519,
46.09512428, 46.09512428, 46.09512428, 46.09512428,
46.09500296, 46.09500296, 46.09500296, 46.09500296,
46.09500007, 46.09500007, 46.09500007, 46.09500007,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}], 'minmod_hll': [{'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924175,
5.99924175, 5.99924175, 5.99924175, 7.50328369, 7.50328369,
7.50328369, 7.50328369, 12.95563948, 12.95563948, 12.95563948,
12.95563948, 14.21461244, 14.21461244, 14.21461244, 14.21461244,
14.26597869, 14.26597869, 14.26597869, 14.26597869, 14.29620398,
14.29620398, 14.29620398, 14.29620398, 14.31140104, 14.31140104,
14.31140104, 14.31140104, 14.31100702, 14.31100702, 14.31100702,
14.31100702, 14.29446786, 14.29446786, 14.29446786, 14.29446786,
14.25457189, 14.25457189, 14.25457189, 14.25457189, 14.22089279,
14.22089279, 14.22089279, 14.22089279, 14.2140995 , 14.2140995 ,
14.2140995 , 14.2140995 , 14.230855 , 14.230855 , 14.230855 ,
14.230855 , 14.30451572, 14.30451572, 14.30451572, 14.30451572,
14.49280321, 14.49280321, 14.49280321, 14.49280321, 14.87118548,
14.87118548, 14.87118548, 14.87118548, 15.55993934, 15.55993934,
15.55993934, 15.55993934, 16.72599032, 16.72599032, 16.72599032,
16.72599032, 18.54190558, 18.54190558, 18.54190558, 18.54190558,
21.12396593, 21.12396593, 21.12396593, 21.12396593, 24.34154715,
24.34154715, 24.34154715, 24.34154715, 27.04434474, 27.04434474,
27.04434474, 27.04434474, 28.79121568, 28.79121568, 28.79121568,
28.79121568, 29.84306714, 29.84306714, 29.84306714, 29.84306714,
30.37592471, 30.37592471, 30.37592471, 30.37592471, 30.48110966,
30.48110966, 30.48110966, 30.48110966, 29.62085485, 29.62085485,
29.62085485, 29.62085485, 24.0650166 , 24.0650166 , 24.0650166 ,
24.0650166 , 11.01922569, 11.01922569, 11.01922569, 11.01922569,
6.02823674, 6.02823674, 6.02823674, 6.02823674, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749697,
19.59749697, 19.59749697, 19.59749697, 16.95529738, 16.95529738,
16.95529738, 16.95529738, 9.94886504, 9.94886504, 9.94886504,
9.94886504, 8.7751003 , 8.7751003 , 8.7751003 , 8.7751003 ,
8.75876513, 8.75876513, 8.75876513, 8.75876513, 8.75481978,
8.75481978, 8.75481978, 8.75481978, 8.74649755, 8.74649755,
8.74649755, 8.74649755, 8.73232047, 8.73232047, 8.73232047,
8.73232047, 8.71080399, 8.71080399, 8.71080399, 8.71080399,
8.67933271, 8.67933271, 8.67933271, 8.67933271, 8.65538411,
8.65538411, 8.65538411, 8.65538411, 8.64657396, 8.64657396,
8.64657396, 8.64657396, 8.64656243, 8.64656243, 8.64656243,
8.64656243, 8.65512649, 8.65512649, 8.65512649, 8.65512649,
8.67124445, 8.67124445, 8.67124445, 8.67124445, 8.68455317,
8.68455317, 8.68455317, 8.68455317, 8.6926855 , 8.6926855 ,
8.6926855 , 8.6926855 , 8.6977869 , 8.6977869 , 8.6977869 ,
8.6977869 , 8.70066537, 8.70066537, 8.70066537, 8.70066537,
8.70186509, 8.70186509, 8.70186509, 8.70186509, 8.7025879 ,
8.7025879 , 8.7025879 , 8.7025879 , 8.70423534, 8.70423534,
8.70423534, 8.70423534, 8.70472602, 8.70472602, 8.70472602,
8.70472602, 8.70339833, 8.70339833, 8.70339833, 8.70339833,
8.69328274, 8.69328274, 8.69328274, 8.69328274, 8.63090024,
8.63090024, 8.63090024, 8.63090024, 8.27365336, 8.27365336,
8.27365336, 8.27365336, 6.3370291 , 6.3370291 , 6.3370291 ,
6.3370291 , -0.42820866, -0.42820866, -0.42820866, -0.42820866,
-6.14805215, -6.14805215, -6.14805215, -6.14805215, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89418872, 460.89418872, 460.89418872, 460.89418872,
662.15281107, 662.15281107, 662.15281107, 662.15281107,
1476.59370104, 1476.59370104, 1476.59370104, 1476.59370104,
1682.0283287 , 1682.0283287 , 1682.0283287 , 1682.0283287 ,
1687.07142158, 1687.07142158, 1687.07142158, 1687.07142158,
1689.30892977, 1689.30892977, 1689.30892977, 1689.30892977,
1690.54048929, 1690.54048929, 1690.54048929, 1690.54048929,
1690.25795278, 1690.25795278, 1690.25795278, 1690.25795278,
1688.31057081, 1688.31057081, 1688.31057081, 1688.31057081,
1684.27799582, 1684.27799582, 1684.27799582, 1684.27799582,
1681.35018005, 1681.35018005, 1681.35018005, 1681.35018005,
1680.9883242 , 1680.9883242 , 1680.9883242 , 1680.9883242 ,
1682.0518864 , 1682.0518864 , 1682.0518864 , 1682.0518864 ,
1684.46279298, 1684.46279298, 1684.46279298, 1684.46279298,
1688.12789868, 1688.12789868, 1688.12789868, 1688.12789868,
1691.19706367, 1691.19706367, 1691.19706367, 1691.19706367,
1693.28049544, 1693.28049544, 1693.28049544, 1693.28049544,
1694.83831558, 1694.83831558, 1694.83831558, 1694.83831558,
1696.01546425, 1696.01546425, 1696.01546425, 1696.01546425,
1696.7906615 , 1696.7906615 , 1696.7906615 , 1696.7906615 ,
1697.18753803, 1697.18753803, 1697.18753803, 1697.18753803,
1697.04110035, 1697.04110035, 1697.04110035, 1697.04110035,
1696.87609094, 1696.87609094, 1696.87609094, 1696.87609094,
1696.40061659, 1696.40061659, 1696.40061659, 1696.40061659,
1693.52125738, 1693.52125738, 1693.52125738, 1693.52125738,
1676.64941951, 1676.64941951, 1676.64941951, 1676.64941951,
1582.38983336, 1582.38983336, 1582.38983336, 1582.38983336,
1162.96939042, 1162.96939042, 1162.96939042, 1162.96939042,
318.04766103, 318.04766103, 318.04766103, 318.04766103,
47.31074005, 47.31074005, 47.31074005, 47.31074005,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}], 'minmod_hllc': [{'rho': array([5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633]), 'P': array([460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 12.70268903,
12.70268903, 12.70268903, 12.70268903, 7.94541357, 7.94541357,
7.94541357, 7.94541357, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 7.09582484,
7.09582484, 7.09582484, 7.09582484, -3.14962884, -3.14962884,
-3.14962884, -3.14962884, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1125.57882152, 1125.57882152, 1125.57882152, 1125.57882152,
167.18428479, 167.18428479, 167.18428479, 167.18428479,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 14.65201256,
14.65201256, 14.65201256, 14.65201256, 14.1609294 , 14.1609294 ,
14.1609294 , 14.1609294 , 6.49084323, 6.49084323, 6.49084323,
6.49084323, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 10.42468887,
10.42468887, 10.42468887, 10.42468887, 3.58967233, 3.58967233,
3.58967233, 3.58967233, -5.58060798, -5.58060798, -5.58060798,
-5.58060798, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1509.2991421 , 1509.2991421 , 1509.2991421 , 1509.2991421 ,
815.9988919 , 815.9988919 , 815.9988919 , 815.9988919 ,
60.09885512, 60.09885512, 60.09885512, 60.09885512,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 13.6342065 ,
13.6342065 , 13.6342065 , 13.6342065 , 18.15293127, 18.15293127,
18.15293127, 18.15293127, 12.16929563, 12.16929563, 12.16929563,
12.16929563, 6.00303438, 6.00303438, 6.00303438, 6.00303438,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.41089904,
11.41089904, 11.41089904, 11.41089904, 7.63691331, 7.63691331,
7.63691331, 7.63691331, 1.02824549, 1.02824549, 1.02824549,
1.02824549, -6.18504836, -6.18504836, -6.18504836, -6.18504836,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1503.91400046, 1503.91400046, 1503.91400046, 1503.91400046,
1488.96829463, 1488.96829463, 1488.96829463, 1488.96829463,
470.61112439, 470.61112439, 470.61112439, 470.61112439,
46.315976 , 46.315976 , 46.315976 , 46.315976 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 11.54713795,
11.54713795, 11.54713795, 11.54713795, 19.12548955, 19.12548955,
19.12548955, 19.12548955, 18.48218756, 18.48218756, 18.48218756,
18.48218756, 9.4679153 , 9.4679153 , 9.4679153 , 9.4679153 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.70335328,
11.70335328, 11.70335328, 11.70335328, 8.99974457, 8.99974457,
8.99974457, 8.99974457, 6.45769361, 6.45769361, 6.45769361,
6.45769361, -1.86410647, -1.86410647, -1.86410647, -1.86410647,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1350.42527422, 1350.42527422, 1350.42527422, 1350.42527422,
1792.05437148, 1792.05437148, 1792.05437148, 1792.05437148,
1224.90003591, 1224.90003591, 1224.90003591, 1224.90003591,
223.0972597 , 223.0972597 , 223.0972597 , 223.0972597 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.55899688,
10.55899688, 10.55899688, 10.55899688, 17.52496537, 17.52496537,
17.52496537, 17.52496537, 19.92934821, 19.92934821, 19.92934821,
19.92934821, 17.99707036, 17.99707036, 17.99707036, 17.99707036,
7.26803214, 7.26803214, 7.26803214, 7.26803214, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.63398171,
11.63398171, 11.63398171, 11.63398171, 9.12548235, 9.12548235,
9.12548235, 9.12548235, 8.70353792, 8.70353792, 8.70353792,
8.70353792, 4.889767 , 4.889767 , 4.889767 , 4.889767 ,
-4.54241731, -4.54241731, -4.54241731, -4.54241731, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1202.7937303 , 1202.7937303 , 1202.7937303 , 1202.7937303 ,
1836.37786652, 1836.37786652, 1836.37786652, 1836.37786652,
1649.76861147, 1649.76861147, 1649.76861147, 1649.76861147,
943.78416678, 943.78416678, 943.78416678, 943.78416678,
93.25195493, 93.25195493, 93.25195493, 93.25195493,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.30570418,
10.30570418, 10.30570418, 10.30570418, 15.31637241, 15.31637241,
15.31637241, 15.31637241, 18.9791078 , 18.9791078 , 18.9791078 ,
18.9791078 , 21.63035995, 21.63035995, 21.63035995, 21.63035995,
15.46350461, 15.46350461, 15.46350461, 15.46350461, 6.2390466 ,
6.2390466 , 6.2390466 , 6.2390466 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.76919101,
11.76919101, 11.76919101, 11.76919101, 8.80224489, 8.80224489,
8.80224489, 8.80224489, 9.09238506, 9.09238506, 9.09238506,
9.09238506, 8.12333611, 8.12333611, 8.12333611, 8.12333611,
2.96585865, 2.96585865, 2.96585865, 2.96585865, -5.89754921,
-5.89754921, -5.89754921, -5.89754921, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1135.16202434, 1135.16202434, 1135.16202434, 1135.16202434,
1759.44703479, 1759.44703479, 1759.44703479, 1759.44703479,
1733.21469229, 1733.21469229, 1733.21469229, 1733.21469229,
1537.63026242, 1537.63026242, 1537.63026242, 1537.63026242,
655.14721744, 655.14721744, 655.14721744, 655.14721744,
52.68789681, 52.68789681, 52.68789681, 52.68789681,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.21337442,
10.21337442, 10.21337442, 10.21337442, 13.99862304, 13.99862304,
13.99862304, 13.99862304, 17.03111413, 17.03111413, 17.03111413,
17.03111413, 21.43390917, 21.43390917, 21.43390917, 21.43390917,
21.7588112 , 21.7588112 , 21.7588112 , 21.7588112 , 12.16152619,
12.16152619, 12.16152619, 12.16152619, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 12.13621027,
12.13621027, 12.13621027, 12.13621027, 8.62418669, 8.62418669,
8.62418669, 8.62418669, 8.95777872, 8.95777872, 8.95777872,
8.95777872, 8.81664421, 8.81664421, 8.81664421, 8.81664421,
7.33932219, 7.33932219, 7.33932219, 7.33932219, 0.56862407,
0.56862407, 0.56862407, 0.56862407, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1099.96956372, 1099.96956372, 1099.96956372, 1099.96956372,
1710.4465244 , 1710.4465244 , 1710.4465244 , 1710.4465244 ,
1704.42259337, 1704.42259337, 1704.42259337, 1704.42259337,
1695.22675438, 1695.22675438, 1695.22675438, 1695.22675438,
1362.18896468, 1362.18896468, 1362.18896468, 1362.18896468,
395.14058089, 395.14058089, 395.14058089, 395.14058089,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.22313019,
10.22313019, 10.22313019, 10.22313019, 13.34785117, 13.34785117,
13.34785117, 13.34785117, 15.5094266 , 15.5094266 , 15.5094266 ,
15.5094266 , 19.56706902, 19.56706902, 19.56706902, 19.56706902,
22.6681537 , 22.6681537 , 22.6681537 , 22.6681537 , 20.82008041,
20.82008041, 20.82008041, 20.82008041, 9.11732965, 9.11732965,
9.11732965, 9.11732965, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 12.52788663,
12.52788663, 12.52788663, 12.52788663, 8.58922451, 8.58922451,
8.58922451, 8.58922451, 8.81451991, 8.81451991, 8.81451991,
8.81451991, 8.8340112 , 8.8340112 , 8.8340112 , 8.8340112 ,
8.5886347 , 8.5886347 , 8.5886347 , 8.5886347 , 6.18718895,
6.18718895, 6.18718895, 6.18718895, -2.27317635, -2.27317635,
-2.27317635, -2.27317635, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1067.13409325, 1067.13409325, 1067.13409325, 1067.13409325,
1690.10203345, 1690.10203345, 1690.10203345, 1690.10203345,
1677.77771501, 1677.77771501, 1677.77771501, 1677.77771501,
1699.24085344, 1699.24085344, 1699.24085344, 1699.24085344,
1626.99145622, 1626.99145622, 1626.99145622, 1626.99145622,
1137.85447905, 1137.85447905, 1137.85447905, 1137.85447905,
195.96745623, 195.96745623, 195.96745623, 195.96745623,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.20035213,
10.20035213, 10.20035213, 10.20035213, 13.15694058, 13.15694058,
13.15694058, 13.15694058, 14.4992978 , 14.4992978 , 14.4992978 ,
14.4992978 , 17.41908334, 17.41908334, 17.41908334, 17.41908334,
21.67196262, 21.67196262, 21.67196262, 21.67196262, 23.40867052,
23.40867052, 23.40867052, 23.40867052, 18.47858247, 18.47858247,
18.47858247, 18.47858247, 7.07383389, 7.07383389, 7.07383389,
7.07383389, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 12.96924236,
12.96924236, 12.96924236, 12.96924236, 8.58665363, 8.58665363,
8.58665363, 8.58665363, 8.73327632, 8.73327632, 8.73327632,
8.73327632, 8.76976507, 8.76976507, 8.76976507, 8.76976507,
8.78887952, 8.78887952, 8.78887952, 8.78887952, 8.21209119,
8.21209119, 8.21209119, 8.21209119, 4.54306925, 4.54306925,
4.54306925, 4.54306925, -4.80641289, -4.80641289, -4.80641289,
-4.80641289, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1034.34945451, 1034.34945451, 1034.34945451, 1034.34945451,
1679.03320625, 1679.03320625, 1679.03320625, 1679.03320625,
1664.63745801, 1664.63745801, 1664.63745801, 1664.63745801,
1684.09424 , 1684.09424 , 1684.09424 , 1684.09424 ,
1673.42176972, 1673.42176972, 1673.42176972, 1673.42176972,
1539.49588798, 1539.49588798, 1539.49588798, 1539.49588798,
861.67230835, 861.67230835, 861.67230835, 861.67230835,
84.43620991, 84.43620991, 84.43620991, 84.43620991,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.02954724,
10.02954724, 10.02954724, 10.02954724, 13.30998119, 13.30998119,
13.30998119, 13.30998119, 13.9266306 , 13.9266306 , 13.9266306 ,
13.9266306 , 15.83435153, 15.83435153, 15.83435153, 15.83435153,
19.57096804, 19.57096804, 19.57096804, 19.57096804, 23.30670777,
23.30670777, 23.30670777, 23.30670777, 23.49784333, 23.49784333,
23.49784333, 23.49784333, 14.97949036, 14.97949036, 14.97949036,
14.97949036, 6.10888587, 6.10888587, 6.10888587, 6.10888587,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 13.49842594,
13.49842594, 13.49842594, 13.49842594, 8.59916052, 8.59916052,
8.59916052, 8.59916052, 8.69439542, 8.69439542, 8.69439542,
8.69439542, 8.71379635, 8.71379635, 8.71379635, 8.71379635,
8.78352452, 8.78352452, 8.78352452, 8.78352452, 8.67635375,
8.67635375, 8.67635375, 8.67635375, 7.62020122, 7.62020122,
7.62020122, 7.62020122, 2.3026965 , 2.3026965 , 2.3026965 ,
2.3026965 , -6.05984314, -6.05984314, -6.05984314, -6.05984314,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
999.1673707 , 999.1673707 , 999.1673707 , 999.1673707 ,
1673.29394535, 1673.29394535, 1673.29394535, 1673.29394535,
1659.65444353, 1659.65444353, 1659.65444353, 1659.65444353,
1670.2297542 , 1670.2297542 , 1670.2297542 , 1670.2297542 ,
1671.94982265, 1671.94982265, 1671.94982265, 1671.94982265,
1649.23987565, 1649.23987565, 1649.23987565, 1649.23987565,
1412.10782611, 1412.10782611, 1412.10782611, 1412.10782611,
566.73710562, 566.73710562, 566.73710562, 566.73710562,
48.98587735, 48.98587735, 48.98587735, 48.98587735,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 9.65533767,
9.65533767, 9.65533767, 9.65533767, 13.68252917, 13.68252917,
13.68252917, 13.68252917, 13.71303715, 13.71303715, 13.71303715,
13.71303715, 14.79110894, 14.79110894, 14.79110894, 14.79110894,
17.50309985, 17.50309985, 17.50309985, 17.50309985, 21.84028144,
21.84028144, 21.84028144, 21.84028144, 24.32473078, 24.32473078,
24.32473078, 24.32473078, 22.68068249, 22.68068249, 22.68068249,
22.68068249, 11.03686103, 11.03686103, 11.03686103, 11.03686103,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 14.14741904,
14.14741904, 14.14741904, 14.14741904, 8.62178593, 8.62178593,
8.62178593, 8.62178593, 8.68626335, 8.68626335, 8.68626335,
8.68626335, 8.68737656, 8.68737656, 8.68737656, 8.68737656,
8.74732911, 8.74732911, 8.74732911, 8.74732911, 8.74308312,
8.74308312, 8.74308312, 8.74308312, 8.49452049, 8.49452049,
8.49452049, 8.49452049, 6.69456047, 6.69456047, 6.69456047,
6.69456047, -0.52317349, -0.52317349, -0.52317349, -0.52317349,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
958.44988475, 958.44988475, 958.44988475, 958.44988475,
1671.21493997, 1671.21493997, 1671.21493997, 1671.21493997,
1659.26320397, 1659.26320397, 1659.26320397, 1659.26320397,
1662.91567575, 1662.91567575, 1662.91567575, 1662.91567575,
1664.13115487, 1664.13115487, 1664.13115487, 1664.13115487,
1665.297139 , 1665.297139 , 1665.297139 , 1665.297139 ,
1610.83715793, 1610.83715793, 1610.83715793, 1610.83715793,
1229.41899476, 1229.41899476, 1229.41899476, 1229.41899476,
305.12836104, 305.12836104, 305.12836104, 305.12836104,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 9.17559129,
9.17559129, 9.17559129, 9.17559129, 14.02365251, 14.02365251,
14.02365251, 14.02365251, 13.76047403, 13.76047403, 13.76047403,
13.76047403, 14.22025893, 14.22025893, 14.22025893, 14.22025893,
15.99479628, 15.99479628, 15.99479628, 15.99479628, 19.62994353,
19.62994353, 19.62994353, 19.62994353, 23.68403303, 23.68403303,
23.68403303, 23.68403303, 24.86589844, 24.86589844, 24.86589844,
24.86589844, 20.52055368, 20.52055368, 20.52055368, 20.52055368,
8.00814937, 8.00814937, 8.00814937, 8.00814937, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 14.77025981,
14.77025981, 14.77025981, 14.77025981, 8.70672217, 8.70672217,
8.70672217, 8.70672217, 8.71185652, 8.71185652, 8.71185652,
8.71185652, 8.69053038, 8.69053038, 8.69053038, 8.69053038,
8.72003541, 8.72003541, 8.72003541, 8.72003541, 8.7334469 ,
8.7334469 , 8.7334469 , 8.7334469 , 8.68309091, 8.68309091,
8.68309091, 8.68309091, 8.20418663, 8.20418663, 8.20418663,
8.20418663, 5.29342736, 5.29342736, 5.29342736, 5.29342736,
-3.63537019, -3.63537019, -3.63537019, -3.63537019, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
899.70891154, 899.70891154, 899.70891154, 899.70891154,
1681.7730429 , 1681.7730429 , 1681.7730429 , 1681.7730429 ,
1664.38132397, 1664.38132397, 1664.38132397, 1664.38132397,
1661.56266831, 1661.56266831, 1661.56266831, 1661.56266831,
1658.70555605, 1658.70555605, 1658.70555605, 1658.70555605,
1663.28075963, 1663.28075963, 1663.28075963, 1663.28075963,
1656.53499514, 1656.53499514, 1656.53499514, 1656.53499514,
1545.9854808 , 1545.9854808 , 1545.9854808 , 1545.9854808 ,
979.576008 , 979.576008 , 979.576008 , 979.576008 ,
128.91410923, 128.91410923, 128.91410923, 128.91410923,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 8.67292336,
8.67292336, 8.67292336, 8.67292336, 14.19695604, 14.19695604,
14.19695604, 14.19695604, 13.91254383, 13.91254383, 13.91254383,
13.91254383, 14.02878657, 14.02878657, 14.02878657, 14.02878657,
15.03196644, 15.03196644, 15.03196644, 15.03196644, 17.65576232,
17.65576232, 17.65576232, 17.65576232, 21.93563921, 21.93563921,
21.93563921, 21.93563921, 24.89950561, 24.89950561, 24.89950561,
24.89950561, 24.90292343, 24.90292343, 24.90292343, 24.90292343,
16.88767399, 16.88767399, 16.88767399, 16.88767399, 6.4143529 ,
6.4143529 , 6.4143529 , 6.4143529 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 15.37284549,
15.37284549, 15.37284549, 15.37284549, 8.76622365, 8.76622365,
8.76622365, 8.76622365, 8.77570001, 8.77570001, 8.77570001,
8.77570001, 8.73436398, 8.73436398, 8.73436398, 8.73436398,
8.7207272 , 8.7207272 , 8.7207272 , 8.7207272 , 8.71892386,
8.71892386, 8.71892386, 8.71892386, 8.70849585, 8.70849585,
8.70849585, 8.70849585, 8.59195686, 8.59195686, 8.59195686,
8.59195686, 7.72578913, 7.72578913, 7.72578913, 7.72578913,
3.25941775, 3.25941775, 3.25941775, 3.25941775, -5.6791429 ,
-5.6791429 , -5.6791429 , -5.6791429 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
829.22159977, 829.22159977, 829.22159977, 829.22159977,
1689.36090883, 1689.36090883, 1689.36090883, 1689.36090883,
1675.83139319, 1675.83139319, 1675.83139319, 1675.83139319,
1667.43562786, 1667.43562786, 1667.43562786, 1667.43562786,
1658.97291748, 1658.97291748, 1658.97291748, 1658.97291748,
1660.46027375, 1660.46027375, 1660.46027375, 1660.46027375,
1662.95586925, 1662.95586925, 1662.95586925, 1662.95586925,
1639.8598087 , 1639.8598087 , 1639.8598087 , 1639.8598087 ,
1441.93374147, 1441.93374147, 1441.93374147, 1441.93374147,
679.55620664, 679.55620664, 679.55620664, 679.55620664,
58.13303639, 58.13303639, 58.13303639, 58.13303639,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 8.1726475 ,
8.1726475 , 8.1726475 , 8.1726475 , 14.2751961 , 14.2751961 ,
14.2751961 , 14.2751961 , 14.0398136 , 14.0398136 , 14.0398136 ,
14.0398136 , 14.02269412, 14.02269412, 14.02269412, 14.02269412,
14.51703694, 14.51703694, 14.51703694, 14.51703694, 16.24603055,
16.24603055, 16.24603055, 16.24603055, 19.72642061, 19.72642061,
19.72642061, 19.72642061, 23.89358146, 23.89358146, 23.89358146,
23.89358146, 25.71866923, 25.71866923, 25.71866923, 25.71866923,
24.04908508, 24.04908508, 24.04908508, 24.04908508, 12.5411211 ,
12.5411211 , 12.5411211 , 12.5411211 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 16.03410104,
16.03410104, 16.03410104, 16.03410104, 8.79130006, 8.79130006,
8.79130006, 8.79130006, 8.81715052, 8.81715052, 8.81715052,
8.81715052, 8.79265702, 8.79265702, 8.79265702, 8.79265702,
8.75616599, 8.75616599, 8.75616599, 8.75616599, 8.72386962,
8.72386962, 8.72386962, 8.72386962, 8.70850068, 8.70850068,
8.70850068, 8.70850068, 8.67535339, 8.67535339, 8.67535339,
8.67535339, 8.43738605, 8.43738605, 8.43738605, 8.43738605,
6.95183196, 6.95183196, 6.95183196, 6.95183196, 0.562619 ,
0.562619 , 0.562619 , 0.562619 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
756.31863848, 756.31863848, 756.31863848, 756.31863848,
1690.90500563, 1690.90500563, 1690.90500563, 1690.90500563,
1682.50978857, 1682.50978857, 1682.50978857, 1682.50978857,
1676.32059956, 1676.32059956, 1676.32059956, 1676.32059956,
1666.00066684, 1666.00066684, 1666.00066684, 1666.00066684,
1662.155713 , 1662.155713 , 1662.155713 , 1662.155713 ,
1663.26314213, 1663.26314213, 1663.26314213, 1663.26314213,
1660.5139094 , 1660.5139094 , 1660.5139094 , 1660.5139094 ,
1610.4610547 , 1610.4610547 , 1610.4610547 , 1610.4610547 ,
1281.72005283, 1281.72005283, 1281.72005283, 1281.72005283,
390.01870408, 390.01870408, 390.01870408, 390.01870408,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 7.65835956,
7.65835956, 7.65835956, 7.65835956, 14.32165135, 14.32165135,
14.32165135, 14.32165135, 14.14230367, 14.14230367, 14.14230367,
14.14230367, 14.05183665, 14.05183665, 14.05183665, 14.05183665,
14.28205848, 14.28205848, 14.28205848, 14.28205848, 15.34364942,
15.34364942, 15.34364942, 15.34364942, 17.87691577, 17.87691577,
17.87691577, 17.87691577, 22.0032607 , 22.0032607 , 22.0032607 ,
22.0032607 , 25.32794076, 25.32794076, 25.32794076, 25.32794076,
26.09347017, 26.09347017, 26.09347017, 26.09347017, 21.90065484,
21.90065484, 21.90065484, 21.90065484, 8.85587752, 8.85587752,
8.85587752, 8.85587752, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 16.78663193,
16.78663193, 16.78663193, 16.78663193, 8.80903942, 8.80903942,
8.80903942, 8.80903942, 8.83420513, 8.83420513, 8.83420513,
8.83420513, 8.82578366, 8.82578366, 8.82578366, 8.82578366,
8.80624892, 8.80624892, 8.80624892, 8.80624892, 8.75606374,
8.75606374, 8.75606374, 8.75606374, 8.72014166, 8.72014166,
8.72014166, 8.72014166, 8.69359444, 8.69359444, 8.69359444,
8.69359444, 8.61961759, 8.61961759, 8.61961759, 8.61961759,
8.1975906 , 8.1975906 , 8.1975906 , 8.1975906 , 5.72784319,
5.72784319, 5.72784319, 5.72784319, -2.66628544, -2.66628544,
-2.66628544, -2.66628544, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
681.23245756, 681.23245756, 681.23245756, 681.23245756,
1690.30672294, 1690.30672294, 1690.30672294, 1690.30672294,
1684.86233553, 1684.86233553, 1684.86233553, 1684.86233553,
1681.43710379, 1681.43710379, 1681.43710379, 1681.43710379,
1675.40103056, 1675.40103056, 1675.40103056, 1675.40103056,
1669.20788372, 1669.20788372, 1669.20788372, 1669.20788372,
1666.30842464, 1666.30842464, 1666.30842464, 1666.30842464,
1665.3407405 , 1665.3407405 , 1665.3407405 , 1665.3407405 ,
1655.60295511, 1655.60295511, 1655.60295511, 1655.60295511,
1554.56956983, 1554.56956983, 1554.56956983, 1554.56956983,
1052.37511398, 1052.37511398, 1052.37511398, 1052.37511398,
173.89490782, 173.89490782, 173.89490782, 173.89490782,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 7.1186186 ,
7.1186186 , 7.1186186 , 7.1186186 , 14.36047128, 14.36047128,
14.36047128, 14.36047128, 14.23425478, 14.23425478, 14.23425478,
14.23425478, 14.08783389, 14.08783389, 14.08783389, 14.08783389,
14.1779188 , 14.1779188 , 14.1779188 , 14.1779188 , 14.80411924,
14.80411924, 14.80411924, 14.80411924, 16.54777994, 16.54777994,
16.54777994, 16.54777994, 19.86979654, 19.86979654, 19.86979654,
19.86979654, 24.0787207 , 24.0787207 , 24.0787207 , 24.0787207 ,
26.24622763, 26.24622763, 26.24622763, 26.24622763, 25.9971748 ,
25.9971748 , 25.9971748 , 25.9971748 , 18.23903099, 18.23903099,
18.23903099, 18.23903099, 6.75171429, 6.75171429, 6.75171429,
6.75171429, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 17.66210704,
17.66210704, 17.66210704, 17.66210704, 8.82876563, 8.82876563,
8.82876563, 8.82876563, 8.8421663 , 8.8421663 , 8.8421663 ,
8.8421663 , 8.84053347, 8.84053347, 8.84053347, 8.84053347,
8.83357077, 8.83357077, 8.83357077, 8.83357077, 8.79975317,
8.79975317, 8.79975317, 8.79975317, 8.75109312, 8.75109312,
8.75109312, 8.75109312, 8.71258084, 8.71258084, 8.71258084,
8.71258084, 8.66774146, 8.66774146, 8.66774146, 8.66774146,
8.54608762, 8.54608762, 8.54608762, 8.54608762, 7.79555086,
7.79555086, 7.79555086, 7.79555086, 3.87424856, 3.87424856,
3.87424856, 3.87424856, -5.24819713, -5.24819713, -5.24819713,
-5.24819713, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
603.49144206, 603.49144206, 603.49144206, 603.49144206,
1688.86963269, 1688.86963269, 1688.86963269, 1688.86963269,
1685.80128371, 1685.80128371, 1685.80128371, 1685.80128371,
1683.63621235, 1683.63621235, 1683.63621235, 1683.63621235,
1680.55379063, 1680.55379063, 1680.55379063, 1680.55379063,
1678.31408237, 1678.31408237, 1678.31408237, 1678.31408237,
1673.35912582, 1673.35912582, 1673.35912582, 1673.35912582,
1670.22253987, 1670.22253987, 1670.22253987, 1670.22253987,
1667.74232817, 1667.74232817, 1667.74232817, 1667.74232817,
1640.45420665, 1640.45420665, 1640.45420665, 1640.45420665,
1461.51470867, 1461.51470867, 1461.51470867, 1461.51470867,
759.33857352, 759.33857352, 759.33857352, 759.33857352,
70.18449572, 70.18449572, 70.18449572, 70.18449572,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.61166788,
6.61166788, 6.61166788, 6.61166788, 14.33732237, 14.33732237,
14.33732237, 14.33732237, 14.30419681, 14.30419681, 14.30419681,
14.30419681, 14.14329976, 14.14329976, 14.14329976, 14.14329976,
14.14882045, 14.14882045, 14.14882045, 14.14882045, 14.48679804,
14.48679804, 14.48679804, 14.48679804, 15.63739956, 15.63739956,
15.63739956, 15.63739956, 18.13287272, 18.13287272, 18.13287272,
18.13287272, 22.14916876, 22.14916876, 22.14916876, 22.14916876,
25.56645324, 25.56645324, 25.56645324, 25.56645324, 26.84277136,
26.84277136, 26.84277136, 26.84277136, 25.05246497, 25.05246497,
25.05246497, 25.05246497, 13.74497893, 13.74497893, 13.74497893,
13.74497893, 6.01112923, 6.01112923, 6.01112923, 6.01112923,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 18.54223612,
18.54223612, 18.54223612, 18.54223612, 8.88501318, 8.88501318,
8.88501318, 8.88501318, 8.84657176, 8.84657176, 8.84657176,
8.84657176, 8.84965017, 8.84965017, 8.84965017, 8.84965017,
8.8439096 , 8.8439096 , 8.8439096 , 8.8439096 , 8.82217206,
8.82217206, 8.82217206, 8.82217206, 8.78976792, 8.78976792,
8.78976792, 8.78976792, 8.74465325, 8.74465325, 8.74465325,
8.74465325, 8.69615282, 8.69615282, 8.69615282, 8.69615282,
8.64451555, 8.64451555, 8.64451555, 8.64451555, 8.41921963,
8.41921963, 8.41921963, 8.41921963, 7.12455216, 7.12455216,
7.12455216, 7.12455216, 1.30137393, 1.30137393, 1.30137393,
1.30137393, -6.17610092, -6.17610092, -6.17610092, -6.17610092,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
533.78877038, 533.78877038, 533.78877038, 533.78877038,
1678.61449002, 1678.61449002, 1678.61449002, 1678.61449002,
1686.24594275, 1686.24594275, 1686.24594275, 1686.24594275,
1684.76417808, 1684.76417808, 1684.76417808, 1684.76417808,
1682.9536793 , 1682.9536793 , 1682.9536793 , 1682.9536793 ,
1683.43245703, 1683.43245703, 1683.43245703, 1683.43245703,
1681.720835 , 1681.720835 , 1681.720835 , 1681.720835 ,
1678.00552301, 1678.00552301, 1678.00552301, 1678.00552301,
1674.93385409, 1674.93385409, 1674.93385409, 1674.93385409,
1665.09193546, 1665.09193546, 1665.09193546, 1665.09193546,
1612.92728612, 1612.92728612, 1612.92728612, 1612.92728612,
1316.10582435, 1316.10582435, 1316.10582435, 1316.10582435,
457.58271286, 457.58271286, 457.58271286, 457.58271286,
46.49640428, 46.49640428, 46.49640428, 46.49640428,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.30239337,
6.30239337, 6.30239337, 6.30239337, 14.12698879, 14.12698879,
14.12698879, 14.12698879, 14.31831538, 14.31831538, 14.31831538,
14.31831538, 14.21203217, 14.21203217, 14.21203217, 14.21203217,
14.16122537, 14.16122537, 14.16122537, 14.16122537, 14.32221796,
14.32221796, 14.32221796, 14.32221796, 15.0335877 , 15.0335877 ,
15.0335877 , 15.0335877 , 16.82226028, 16.82226028, 16.82226028,
16.82226028, 20.08622976, 20.08622976, 20.08622976, 20.08622976,
24.19351535, 24.19351535, 24.19351535, 24.19351535, 26.65990335,
26.65990335, 26.65990335, 26.65990335, 27.07991409, 27.07991409,
27.07991409, 27.07991409, 22.89045836, 22.89045836, 22.89045836,
22.89045836, 9.62356471, 9.62356471, 9.62356471, 9.62356471,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.07308975,
19.07308975, 19.07308975, 19.07308975, 9.02253672, 9.02253672,
9.02253672, 9.02253672, 8.84125812, 8.84125812, 8.84125812,
8.84125812, 8.85134124, 8.85134124, 8.85134124, 8.85134124,
8.84877196, 8.84877196, 8.84877196, 8.84877196, 8.83196853,
8.83196853, 8.83196853, 8.83196853, 8.8088514 , 8.8088514 ,
8.8088514 , 8.8088514 , 8.77595509, 8.77595509, 8.77595509,
8.77595509, 8.73009145, 8.73009145, 8.73009145, 8.73009145,
8.68944343, 8.68944343, 8.68944343, 8.68944343, 8.60375556,
8.60375556, 8.60375556, 8.60375556, 8.2108148 , 8.2108148 ,
8.2108148 , 8.2108148 , 6.02573007, 6.02573007, 6.02573007,
6.02573007, -1.89911994, -1.89911994, -1.89911994, -1.89911994,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
495.38194177, 495.38194177, 495.38194177, 495.38194177,
1644.53020156, 1644.53020156, 1644.53020156, 1644.53020156,
1684.91455494, 1684.91455494, 1684.91455494, 1684.91455494,
1684.79944511, 1684.79944511, 1684.79944511, 1684.79944511,
1684.57865248, 1684.57865248, 1684.57865248, 1684.57865248,
1686.13849473, 1686.13849473, 1686.13849473, 1686.13849473,
1686.35971641, 1686.35971641, 1686.35971641, 1686.35971641,
1685.52441483, 1685.52441483, 1685.52441483, 1685.52441483,
1683.13310285, 1683.13310285, 1683.13310285, 1683.13310285,
1676.29508646, 1676.29508646, 1676.29508646, 1676.29508646,
1659.30479154, 1659.30479154, 1659.30479154, 1659.30479154,
1562.7097678 , 1562.7097678 , 1562.7097678 , 1562.7097678 ,
1103.51026707, 1103.51026707, 1103.51026707, 1103.51026707,
215.162548 , 215.162548 , 215.162548 , 215.162548 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.14195652,
6.14195652, 6.14195652, 6.14195652, 13.80144353, 13.80144353,
13.80144353, 13.80144353, 14.30497421, 14.30497421, 14.30497421,
14.30497421, 14.25642284, 14.25642284, 14.25642284, 14.25642284,
14.18160262, 14.18160262, 14.18160262, 14.18160262, 14.2515204 ,
14.2515204 , 14.2515204 , 14.2515204 , 14.6640006 , 14.6640006 ,
14.6640006 , 14.6640006 , 15.87822517, 15.87822517, 15.87822517,
15.87822517, 18.37538004, 18.37538004, 18.37538004, 18.37538004,
22.25500924, 22.25500924, 22.25500924, 22.25500924, 25.80283472,
25.80283472, 25.80283472, 25.80283472, 27.34875521, 27.34875521,
27.34875521, 27.34875521, 26.85683706, 26.85683706, 26.85683706,
26.85683706, 19.30182288, 19.30182288, 19.30182288, 19.30182288,
7.0675042 , 7.0675042 , 7.0675042 , 7.0675042 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.3502001 ,
19.3502001 , 19.3502001 , 19.3502001 , 9.21603967, 9.21603967,
9.21603967, 9.21603967, 8.82260996, 8.82260996, 8.82260996,
8.82260996, 8.84048313, 8.84048313, 8.84048313, 8.84048313,
8.84501152, 8.84501152, 8.84501152, 8.84501152, 8.83433152,
8.83433152, 8.83433152, 8.83433152, 8.81787069, 8.81787069,
8.81787069, 8.81787069, 8.79269969, 8.79269969, 8.79269969,
8.79269969, 8.75772964, 8.75772964, 8.75772964, 8.75772964,
8.72570412, 8.72570412, 8.72570412, 8.72570412, 8.67435325,
8.67435325, 8.67435325, 8.67435325, 8.54192455, 8.54192455,
8.54192455, 8.54192455, 7.86009779, 7.86009779, 7.86009779,
7.86009779, 4.30783648, 4.30783648, 4.30783648, 4.30783648,
-4.84140731, -4.84140731, -4.84140731, -4.84140731, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
476.70326546, 476.70326546, 476.70326546, 476.70326546,
1599.20542388, 1599.20542388, 1599.20542388, 1599.20542388,
1681.12761211, 1681.12761211, 1681.12761211, 1681.12761211,
1682.89800753, 1682.89800753, 1682.89800753, 1682.89800753,
1684.67100901, 1684.67100901, 1684.67100901, 1684.67100901,
1687.53791343, 1687.53791343, 1687.53791343, 1687.53791343,
1689.10128233, 1689.10128233, 1689.10128233, 1689.10128233,
1690.03751927, 1690.03751927, 1690.03751927, 1690.03751927,
1689.74571632, 1689.74571632, 1689.74571632, 1689.74571632,
1685.17838523, 1685.17838523, 1685.17838523, 1685.17838523,
1677.17996362, 1677.17996362, 1677.17996362, 1677.17996362,
1645.59189795, 1645.59189795, 1645.59189795, 1645.59189795,
1477.69337386, 1477.69337386, 1477.69337386, 1477.69337386,
821.52788889, 821.52788889, 821.52788889, 821.52788889,
83.10819658, 83.10819658, 83.10819658, 83.10819658,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.06469207,
6.06469207, 6.06469207, 6.06469207, 13.43969448, 13.43969448,
13.43969448, 13.43969448, 14.27300861, 14.27300861, 14.27300861,
14.27300861, 14.26232073, 14.26232073, 14.26232073, 14.26232073,
14.20693264, 14.20693264, 14.20693264, 14.20693264, 14.22600941,
14.22600941, 14.22600941, 14.22600941, 14.451735 , 14.451735 ,
14.451735 , 14.451735 , 15.23715871, 15.23715871, 15.23715871,
15.23715871, 17.05674781, 17.05674781, 17.05674781, 17.05674781,
20.23122256, 20.23122256, 20.23122256, 20.23122256, 24.33909909,
24.33909909, 24.33909909, 24.33909909, 26.94680512, 26.94680512,
26.94680512, 26.94680512, 27.76657318, 27.76657318, 27.76657318,
27.76657318, 25.87187706, 25.87187706, 25.87187706, 25.87187706,
14.71753118, 14.71753118, 14.71753118, 14.71753118, 6.05256418,
6.05256418, 6.05256418, 6.05256418, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.48410417,
19.48410417, 19.48410417, 19.48410417, 9.45689754, 9.45689754,
9.45689754, 9.45689754, 8.79920582, 8.79920582, 8.79920582,
8.79920582, 8.81925127, 8.81925127, 8.81925127, 8.81925127,
8.8299591 , 8.8299591 , 8.8299591 , 8.8299591 , 8.82715687,
8.82715687, 8.82715687, 8.82715687, 8.81789768, 8.81789768,
8.81789768, 8.81789768, 8.80087111, 8.80087111, 8.80087111,
8.80087111, 8.77473484, 8.77473484, 8.77473484, 8.77473484,
8.75195341, 8.75195341, 8.75195341, 8.75195341, 8.71520383,
8.71520383, 8.71520383, 8.71520383, 8.65591151, 8.65591151,
8.65591151, 8.65591151, 8.43568632, 8.43568632, 8.43568632,
8.43568632, 7.25174947, 7.25174947, 7.25174947, 7.25174947,
1.85536253, 1.85536253, 1.85536253, 1.85536253, -6.1268406 ,
-6.1268406 , -6.1268406 , -6.1268406 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
468.03926864, 468.03926864, 468.03926864, 468.03926864,
1550.80208207, 1550.80208207, 1550.80208207, 1550.80208207,
1676.67695683, 1676.67695683, 1676.67695683, 1676.67695683,
1679.10151146, 1679.10151146, 1679.10151146, 1679.10151146,
1682.92083724, 1682.92083724, 1682.92083724, 1682.92083724,
1687.22320793, 1687.22320793, 1687.22320793, 1687.22320793,
1690.31989424, 1690.31989424, 1690.31989424, 1690.31989424,
1692.80543508, 1692.80543508, 1692.80543508, 1692.80543508,
1693.9292418 , 1693.9292418 , 1693.9292418 , 1693.9292418 ,
1691.48316721, 1691.48316721, 1691.48316721, 1691.48316721,
1687.48123227, 1687.48123227, 1687.48123227, 1687.48123227,
1674.61113379, 1674.61113379, 1674.61113379, 1674.61113379,
1619.83613221, 1619.83613221, 1619.83613221, 1619.83613221,
1345.15261819, 1345.15261819, 1345.15261819, 1345.15261819,
513.60242111, 513.60242111, 513.60242111, 513.60242111,
47.53604724, 47.53604724, 47.53604724, 47.53604724,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.02886327,
6.02886327, 6.02886327, 6.02886327, 13.07839128, 13.07839128,
13.07839128, 13.07839128, 14.23346801, 14.23346801, 14.23346801,
14.23346801, 14.24717384, 14.24717384, 14.24717384, 14.24717384,
14.22281297, 14.22281297, 14.22281297, 14.22281297, 14.22054517,
14.22054517, 14.22054517, 14.22054517, 14.33456656, 14.33456656,
14.33456656, 14.33456656, 14.82163366, 14.82163366, 14.82163366,
14.82163366, 16.09047457, 16.09047457, 16.09047457, 16.09047457,
18.55177024, 18.55177024, 18.55177024, 18.55177024, 22.37387504,
22.37387504, 22.37387504, 22.37387504, 25.95158279, 25.95158279,
25.95158279, 25.95158279, 27.73836656, 27.73836656, 27.73836656,
27.73836656, 27.94116204, 27.94116204, 27.94116204, 27.94116204,
23.71135453, 23.71135453, 23.71135453, 23.71135453, 10.2611939 ,
10.2611939 , 10.2611939 , 10.2611939 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.54621347,
19.54621347, 19.54621347, 19.54621347, 9.73291458, 9.73291458,
9.73291458, 9.73291458, 8.78207223, 8.78207223, 8.78207223,
8.78207223, 8.7976568 , 8.7976568 , 8.7976568 , 8.7976568 ,
8.80630024, 8.80630024, 8.80630024, 8.80630024, 8.80930339,
8.80930339, 8.80930339, 8.80930339, 8.80766016, 8.80766016,
8.80766016, 8.80766016, 8.79917595, 8.79917595, 8.79917595,
8.79917595, 8.78413417, 8.78413417, 8.78413417, 8.78413417,
8.76829084, 8.76829084, 8.76829084, 8.76829084, 8.74129772,
8.74129772, 8.74129772, 8.74129772, 8.707466 , 8.707466 ,
8.707466 , 8.707466 , 8.62437495, 8.62437495, 8.62437495,
8.62437495, 8.2411141 , 8.2411141 , 8.2411141 , 8.2411141 ,
6.25193806, 6.25193806, 6.25193806, 6.25193806, -1.28878105,
-1.28878105, -1.28878105, -1.28878105, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
464.10347553, 464.10347553, 464.10347553, 464.10347553,
1501.75676947, 1501.75676947, 1501.75676947, 1501.75676947,
1673.48248244, 1673.48248244, 1673.48248244, 1673.48248244,
1675.26131852, 1675.26131852, 1675.26131852, 1675.26131852,
1679.69511989, 1679.69511989, 1679.69511989, 1679.69511989,
1685.03144267, 1685.03144267, 1685.03144267, 1685.03144267,
1689.69499574, 1689.69499574, 1689.69499574, 1689.69499574,
1693.77032209, 1693.77032209, 1693.77032209, 1693.77032209,
1696.36802183, 1696.36802183, 1696.36802183, 1696.36802183,
1695.45911111, 1695.45911111, 1695.45911111, 1695.45911111,
1694.01527689, 1694.01527689, 1694.01527689, 1694.01527689,
1687.72253001, 1687.72253001, 1687.72253001, 1687.72253001,
1668.0637948 , 1668.0637948 , 1668.0637948 , 1668.0637948 ,
1576.4342413 , 1576.4342413 , 1576.4342413 , 1576.4342413 ,
1145.88619696, 1145.88619696, 1145.88619696, 1145.88619696,
252.0045113 , 252.0045113 , 252.0045113 , 252.0045113 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.01256033,
6.01256033, 6.01256033, 6.01256033, 12.72818781, 12.72818781,
12.72818781, 12.72818781, 14.18966502, 14.18966502, 14.18966502,
14.18966502, 14.23050382, 14.23050382, 14.23050382, 14.23050382,
14.22786886, 14.22786886, 14.22786886, 14.22786886, 14.22013033,
14.22013033, 14.22013033, 14.22013033, 14.27375708, 14.27375708,
14.27375708, 14.27375708, 14.56135118, 14.56135118, 14.56135118,
14.56135118, 15.41020384, 15.41020384, 15.41020384, 15.41020384,
17.24030876, 17.24030876, 17.24030876, 17.24030876, 20.3753365 ,
20.3753365 , 20.3753365 , 20.3753365 , 24.41284547, 24.41284547,
24.41284547, 24.41284547, 27.14093669, 27.14093669, 27.14093669,
27.14093669, 28.30381699, 28.30381699, 28.30381699, 28.30381699,
27.61366449, 27.61366449, 27.61366449, 27.61366449, 20.12961367,
20.12961367, 20.12961367, 20.12961367, 7.39216618, 7.39216618,
7.39216618, 7.39216618, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.57445277,
19.57445277, 19.57445277, 19.57445277, 10.03253127, 10.03253127,
10.03253127, 10.03253127, 8.77393351, 8.77393351, 8.77393351,
8.77393351, 8.78266557, 8.78266557, 8.78266557, 8.78266557,
8.78358149, 8.78358149, 8.78358149, 8.78358149, 8.78542818,
8.78542818, 8.78542818, 8.78542818, 8.78785646, 8.78785646,
8.78785646, 8.78785646, 8.78658804, 8.78658804, 8.78658804,
8.78658804, 8.78385244, 8.78385244, 8.78385244, 8.78385244,
8.77594863, 8.77594863, 8.77594863, 8.77594863, 8.75713227,
8.75713227, 8.75713227, 8.75713227, 8.73606701, 8.73606701,
8.73606701, 8.73606701, 8.69641263, 8.69641263, 8.69641263,
8.69641263, 8.55917242, 8.55917242, 8.55917242, 8.55917242,
7.92994353, 7.92994353, 7.92994353, 7.92994353, 4.665091 ,
4.665091 , 4.665091 , 4.665091 , -4.42403255, -4.42403255,
-4.42403255, -4.42403255, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
462.3317026 , 462.3317026 , 462.3317026 , 462.3317026 ,
1452.09052865, 1452.09052865, 1452.09052865, 1452.09052865,
1671.9017181 , 1671.9017181 , 1671.9017181 , 1671.9017181 ,
1672.88932596, 1672.88932596, 1672.88932596, 1672.88932596,
1676.49949878, 1676.49949878, 1676.49949878, 1676.49949878,
1681.82659859, 1681.82659859, 1681.82659859, 1681.82659859,
1687.39626942, 1687.39626942, 1687.39626942, 1687.39626942,
1692.75436141, 1692.75436141, 1692.75436141, 1692.75436141,
1696.73494397, 1696.73494397, 1696.73494397, 1696.73494397,
1697.56704436, 1697.56704436, 1697.56704436, 1697.56704436,
1697.99798875, 1697.99798875, 1697.99798875, 1697.99798875,
1694.92491575, 1694.92491575, 1694.92491575, 1694.92491575,
1686.67457302, 1686.67457302, 1686.67457302, 1686.67457302,
1657.45734097, 1657.45734097, 1657.45734097, 1657.45734097,
1497.50055341, 1497.50055341, 1497.50055341, 1497.50055341,
873.62567544, 873.62567544, 873.62567544, 873.62567544,
97.74146277, 97.74146277, 97.74146277, 97.74146277,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.00521078,
6.00521078, 6.00521078, 6.00521078, 12.38993388, 12.38993388,
12.38993388, 12.38993388, 14.14519572, 14.14519572, 14.14519572,
14.14519572, 14.21203317, 14.21203317, 14.21203317, 14.21203317,
14.22915807, 14.22915807, 14.22915807, 14.22915807, 14.22348347,
14.22348347, 14.22348347, 14.22348347, 14.24506269, 14.24506269,
14.24506269, 14.24506269, 14.40465933, 14.40465933, 14.40465933,
14.40465933, 14.94868214, 14.94868214, 14.94868214, 14.94868214,
16.25655917, 16.25655917, 16.25655917, 16.25655917, 18.71532853,
18.71532853, 18.71532853, 18.71532853, 22.4416374 , 22.4416374 ,
22.4416374 , 22.4416374 , 26.03175799, 26.03175799, 26.03175799,
26.03175799, 28.07389691, 28.07389691, 28.07389691, 28.07389691,
28.57139062, 28.57139062, 28.57139062, 28.57139062, 26.53452027,
26.53452027, 26.53452027, 26.53452027, 15.55324352, 15.55324352,
15.55324352, 15.55324352, 6.13684598, 6.13684598, 6.13684598,
6.13684598, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.58717335,
19.58717335, 19.58717335, 19.58717335, 10.34899927, 10.34899927,
10.34899927, 10.34899927, 8.77184226, 8.77184226, 8.77184226,
8.77184226, 8.77457278, 8.77457278, 8.77457278, 8.77457278,
8.76864579, 8.76864579, 8.76864579, 8.76864579, 8.76390782,
8.76390782, 8.76390782, 8.76390782, 8.76368947, 8.76368947,
8.76368947, 8.76368947, 8.76607598, 8.76607598, 8.76607598,
8.76607598, 8.77190498, 8.77190498, 8.77190498, 8.77190498,
8.77293894, 8.77293894, 8.77293894, 8.77293894, 8.76486151,
8.76486151, 8.76486151, 8.76486151, 8.75224516, 8.75224516,
8.75224516, 8.75224516, 8.73002234, 8.73002234, 8.73002234,
8.73002234, 8.66900729, 8.66900729, 8.66900729, 8.66900729,
8.46716317, 8.46716317, 8.46716317, 8.46716317, 7.38774697,
7.38774697, 7.38774697, 7.38774697, 2.33157677, 2.33157677,
2.33157677, 2.33157677, -6.0273606 , -6.0273606 , -6.0273606 ,
-6.0273606 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
461.53725474, 461.53725474, 461.53725474, 461.53725474,
1401.46357119, 1401.46357119, 1401.46357119, 1401.46357119,
1671.44416708, 1671.44416708, 1671.44416708, 1671.44416708,
1671.94879141, 1671.94879141, 1671.94879141, 1671.94879141,
1674.76785448, 1674.76785448, 1674.76785448, 1674.76785448,
1679.02439986, 1679.02439986, 1679.02439986, 1679.02439986,
1684.35393811, 1684.35393811, 1684.35393811, 1684.35393811,
1690.14122531, 1690.14122531, 1690.14122531, 1690.14122531,
1694.93535923, 1694.93535923, 1694.93535923, 1694.93535923,
1697.61431565, 1697.61431565, 1697.61431565, 1697.61431565,
1700.01321682, 1700.01321682, 1700.01321682, 1700.01321682,
1698.95105971, 1698.95105971, 1698.95105971, 1698.95105971,
1695.36387827, 1695.36387827, 1695.36387827, 1695.36387827,
1686.00022927, 1686.00022927, 1686.00022927, 1686.00022927,
1632.25134395, 1632.25134395, 1632.25134395, 1632.25134395,
1372.90297687, 1372.90297687, 1372.90297687, 1372.90297687,
565.30554122, 565.30554122, 565.30554122, 565.30554122,
49.69965112, 49.69965112, 49.69965112, 49.69965112,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.00191237,
6.00191237, 6.00191237, 6.00191237, 12.0611019 , 12.0611019 ,
12.0611019 , 12.0611019 , 14.10481587, 14.10481587, 14.10481587,
14.10481587, 14.18654067, 14.18654067, 14.18654067, 14.18654067,
14.23049568, 14.23049568, 14.23049568, 14.23049568, 14.2298967 ,
14.2298967 , 14.2298967 , 14.2298967 , 14.23613946, 14.23613946,
14.23613946, 14.23613946, 14.31707273, 14.31707273, 14.31707273,
14.31707273, 14.64765446, 14.64765446, 14.64765446, 14.64765446,
15.54787982, 15.54787982, 15.54787982, 15.54787982, 17.39854503,
17.39854503, 17.39854503, 17.39854503, 20.47814225, 20.47814225,
20.47814225, 20.47814225, 24.43048632, 24.43048632, 24.43048632,
24.43048632, 27.34776012, 27.34776012, 27.34776012, 27.34776012,
28.62183206, 28.62183206, 28.62183206, 28.62183206, 28.6252776 ,
28.6252776 , 28.6252776 , 28.6252776 , 24.3768406 , 24.3768406 ,
24.3768406 , 24.3768406 , 10.93946855, 10.93946855, 10.93946855,
10.93946855, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59287913,
19.59287913, 19.59287913, 19.59287913, 10.67986783, 10.67986783,
10.67986783, 10.67986783, 8.77244753, 8.77244753, 8.77244753,
8.77244753, 8.77089439, 8.77089439, 8.77089439, 8.77089439,
8.76033975, 8.76033975, 8.76033975, 8.76033975, 8.74995589,
8.74995589, 8.74995589, 8.74995589, 8.743477 , 8.743477 ,
8.743477 , 8.743477 , 8.74369671, 8.74369671, 8.74369671,
8.74369671, 8.75189311, 8.75189311, 8.75189311, 8.75189311,
8.75950663, 8.75950663, 8.75950663, 8.75950663, 8.76196429,
8.76196429, 8.76196429, 8.76196429, 8.75864593, 8.75864593,
8.75864593, 8.75864593, 8.74698766, 8.74698766, 8.74698766,
8.74698766, 8.71314943, 8.71314943, 8.71314943, 8.71314943,
8.64426969, 8.64426969, 8.64426969, 8.64426969, 8.29748153,
8.29748153, 8.29748153, 8.29748153, 6.47495531, 6.47495531,
6.47495531, 6.47495531, -0.70842801, -0.70842801, -0.70842801,
-0.70842801, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
461.18165087, 461.18165087, 461.18165087, 461.18165087,
1349.74992079, 1349.74992079, 1349.74992079, 1349.74992079,
1671.60482909, 1671.60482909, 1671.60482909, 1671.60482909,
1671.83120898, 1671.83120898, 1671.83120898, 1671.83120898,
1674.38970894, 1674.38970894, 1674.38970894, 1674.38970894,
1677.64758285, 1677.64758285, 1677.64758285, 1677.64758285,
1681.89797938, 1681.89797938, 1681.89797938, 1681.89797938,
1687.02073081, 1687.02073081, 1687.02073081, 1687.02073081,
1691.69948158, 1691.69948158, 1691.69948158, 1691.69948158,
1695.89819179, 1695.89819179, 1695.89819179, 1695.89819179,
1699.59855312, 1699.59855312, 1699.59855312, 1699.59855312,
1700.59794297, 1700.59794297, 1700.59794297, 1700.59794297,
1699.78993323, 1699.78993323, 1699.78993323, 1699.78993323,
1697.54039263, 1697.54039263, 1697.54039263, 1697.54039263,
1678.14710016, 1678.14710016, 1678.14710016, 1678.14710016,
1590.4085702 , 1590.4085702 , 1590.4085702 , 1590.4085702 ,
1186.37141402, 1186.37141402, 1186.37141402, 1186.37141402,
291.00638382, 291.00638382, 291.00638382, 291.00638382,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.00043524,
6.00043524, 6.00043524, 6.00043524, 11.7372962 , 11.7372962 ,
11.7372962 , 11.7372962 , 14.07379548, 14.07379548, 14.07379548,
14.07379548, 14.15517935, 14.15517935, 14.15517935, 14.15517935,
14.2272544 , 14.2272544 , 14.2272544 , 14.2272544 , 14.2375337 ,
14.2375337 , 14.2375337 , 14.2375337 , 14.23872925, 14.23872925,
14.23872925, 14.23872925, 14.2748018 , 14.2748018 , 14.2748018 ,
14.2748018 , 14.46334784, 14.46334784, 14.46334784, 14.46334784,
15.05471701, 15.05471701, 15.05471701, 15.05471701, 16.39861085,
16.39861085, 16.39861085, 16.39861085, 18.83588578, 18.83588578,
18.83588578, 18.83588578, 22.45137204, 22.45137204, 22.45137204,
22.45137204, 26.17620124, 26.17620124, 26.17620124, 26.17620124,
28.20662605, 28.20662605, 28.20662605, 28.20662605, 29.01571741,
29.01571741, 29.01571741, 29.01571741, 28.20622566, 28.20622566,
28.20622566, 28.20622566, 20.93126273, 20.93126273, 20.93126273,
20.93126273, 7.75255279, 7.75255279, 7.75255279, 7.75255279,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59543352,
19.59543352, 19.59543352, 19.59543352, 11.02536985, 11.02536985,
11.02536985, 11.02536985, 8.77430718, 8.77430718, 8.77430718,
8.77430718, 8.76967261, 8.76967261, 8.76967261, 8.76967261,
8.75558013, 8.75558013, 8.75558013, 8.75558013, 8.74203901,
8.74203901, 8.74203901, 8.74203901, 8.73063358, 8.73063358,
8.73063358, 8.73063358, 8.72592755, 8.72592755, 8.72592755,
8.72592755, 8.73068524, 8.73068524, 8.73068524, 8.73068524,
8.73880591, 8.73880591, 8.73880591, 8.73880591, 8.74949988,
8.74949988, 8.74949988, 8.74949988, 8.7555838 , 8.7555838 ,
8.7555838 , 8.7555838 , 8.75211587, 8.75211587, 8.75211587,
8.75211587, 8.73247564, 8.73247564, 8.73247564, 8.73247564,
8.70783033, 8.70783033, 8.70783033, 8.70783033, 8.59135962,
8.59135962, 8.59135962, 8.59135962, 8.01612734, 8.01612734,
8.01612734, 8.01612734, 5.00404045, 5.00404045, 5.00404045,
5.00404045, -3.96613135, -3.96613135, -3.96613135, -3.96613135,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
461.02260131, 461.02260131, 461.02260131, 461.02260131,
1296.91397167, 1296.91397167, 1296.91397167, 1296.91397167,
1672.10552341, 1672.10552341, 1672.10552341, 1672.10552341,
1672.2542597 , 1672.2542597 , 1672.2542597 , 1672.2542597 ,
1674.70858572, 1674.70858572, 1674.70858572, 1674.70858572,
1677.49459326, 1677.49459326, 1677.49459326, 1677.49459326,
1680.67202342, 1680.67202342, 1680.67202342, 1680.67202342,
1684.60404744, 1684.60404744, 1684.60404744, 1684.60404744,
1688.38179454, 1688.38179454, 1688.38179454, 1688.38179454,
1692.71350426, 1692.71350426, 1692.71350426, 1692.71350426,
1697.41354258, 1697.41354258, 1697.41354258, 1697.41354258,
1700.07117267, 1700.07117267, 1700.07117267, 1700.07117267,
1701.30754546, 1701.30754546, 1701.30754546, 1701.30754546,
1702.62380877, 1702.62380877, 1702.62380877, 1702.62380877,
1694.7539739 , 1694.7539739 , 1694.7539739 , 1694.7539739 ,
1666.22273512, 1666.22273512, 1666.22273512, 1666.22273512,
1517.56453226, 1517.56453226, 1517.56453226, 1517.56453226,
927.27397973, 927.27397973, 927.27397973, 927.27397973,
115.53325364, 115.53325364, 115.53325364, 115.53325364,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99977441,
5.99977441, 5.99977441, 5.99977441, 11.41328059, 11.41328059,
11.41328059, 11.41328059, 14.05574474, 14.05574474, 14.05574474,
14.05574474, 14.123278 , 14.123278 , 14.123278 , 14.123278 ,
14.21476462, 14.21476462, 14.21476462, 14.21476462, 14.24380362,
14.24380362, 14.24380362, 14.24380362, 14.24638528, 14.24638528,
14.24638528, 14.24638528, 14.25961634, 14.25961634, 14.25961634,
14.25961634, 14.36000574, 14.36000574, 14.36000574, 14.36000574,
14.73020721, 14.73020721, 14.73020721, 14.73020721, 15.66543029,
15.66543029, 15.66543029, 15.66543029, 17.52510797, 17.52510797,
17.52510797, 17.52510797, 20.53937827, 20.53937827, 20.53937827,
20.53937827, 24.52191428, 24.52191428, 24.52191428, 24.52191428,
27.36117172, 27.36117172, 27.36117172, 27.36117172, 28.8831646 ,
28.8831646 , 28.8831646 , 28.8831646 , 29.18373553, 29.18373553,
29.18373553, 29.18373553, 27.11704018, 27.11704018, 27.11704018,
27.11704018, 16.38597363, 16.38597363, 16.38597363, 16.38597363,
6.26345038, 6.26345038, 6.26345038, 6.26345038, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59657611,
19.59657611, 19.59657611, 19.59657611, 11.38698932, 11.38698932,
11.38698932, 11.38698932, 8.77633703, 8.77633703, 8.77633703,
8.77633703, 8.76949213, 8.76949213, 8.76949213, 8.76949213,
8.75299555, 8.75299555, 8.75299555, 8.75299555, 8.73760248,
8.73760248, 8.73760248, 8.73760248, 8.72374953, 8.72374953,
8.72374953, 8.72374953, 8.71466863, 8.71466863, 8.71466863,
8.71466863, 8.71514638, 8.71514638, 8.71514638, 8.71514638,
8.71899761, 8.71899761, 8.71899761, 8.71899761, 8.72886327,
8.72886327, 8.72886327, 8.72886327, 8.74369615, 8.74369615,
8.74369615, 8.74369615, 8.74722894, 8.74722894, 8.74722894,
8.74722894, 8.73902406, 8.73902406, 8.73902406, 8.73902406,
8.7320913 , 8.7320913 , 8.7320913 , 8.7320913 , 8.68916945,
8.68916945, 8.68916945, 8.68916945, 8.5080931 , 8.5080931 ,
8.5080931 , 8.5080931 , 7.52056852, 7.52056852, 7.52056852,
7.52056852, 2.80913789, 2.80913789, 2.80913789, 2.80913789,
-5.87118686, -5.87118686, -5.87118686, -5.87118686, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.95148826, 460.95148826, 460.95148826, 460.95148826,
1242.93498529, 1242.93498529, 1242.93498529, 1242.93498529,
1672.75025416, 1672.75025416, 1672.75025416, 1672.75025416,
1672.99461337, 1672.99461337, 1672.99461337, 1672.99461337,
1675.45802531, 1675.45802531, 1675.45802531, 1675.45802531,
1677.97013096, 1677.97013096, 1677.97013096, 1677.97013096,
1680.56820927, 1680.56820927, 1680.56820927, 1680.56820927,
1683.25513146, 1683.25513146, 1683.25513146, 1683.25513146,
1686.15902024, 1686.15902024, 1686.15902024, 1686.15902024,
1689.63290509, 1689.63290509, 1689.63290509, 1689.63290509,
1693.61270105, 1693.61270105, 1693.61270105, 1693.61270105,
1697.83925189, 1697.83925189, 1697.83925189, 1697.83925189,
1700.67539901, 1700.67539901, 1700.67539901, 1700.67539901,
1704.34738929, 1704.34738929, 1704.34738929, 1704.34738929,
1701.04658492, 1701.04658492, 1701.04658492, 1701.04658492,
1691.91391925, 1691.91391925, 1691.91391925, 1691.91391925,
1642.61175186, 1642.61175186, 1642.61175186, 1642.61175186,
1403.02981473, 1403.02981473, 1403.02981473, 1403.02981473,
620.35429771, 620.35429771, 620.35429771, 620.35429771,
53.31876512, 53.31876512, 53.31876512, 53.31876512,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99947891,
5.99947891, 5.99947891, 5.99947891, 11.08383716, 11.08383716,
11.08383716, 11.08383716, 14.0517203 , 14.0517203 , 14.0517203 ,
14.0517203 , 14.10023842, 14.10023842, 14.10023842, 14.10023842,
14.19023691, 14.19023691, 14.19023691, 14.19023691, 14.24455191,
14.24455191, 14.24455191, 14.24455191, 14.25421038, 14.25421038,
14.25421038, 14.25421038, 14.25918171, 14.25918171, 14.25918171,
14.25918171, 14.3079739 , 14.3079739 , 14.3079739 , 14.3079739 ,
14.52901048, 14.52901048, 14.52901048, 14.52901048, 15.15486733,
15.15486733, 15.15486733, 15.15486733, 16.51738142, 16.51738142,
16.51738142, 16.51738142, 18.93314834, 18.93314834, 18.93314834,
18.93314834, 22.5440941 , 22.5440941 , 22.5440941 , 22.5440941 ,
26.12029499, 26.12029499, 26.12029499, 26.12029499, 28.34016344,
28.34016344, 28.34016344, 28.34016344, 29.28063222, 29.28063222,
29.28063222, 29.28063222, 29.17431829, 29.17431829, 29.17431829,
29.17431829, 25.00476923, 25.00476923, 25.00476923, 25.00476923,
11.66638056, 11.66638056, 11.66638056, 11.66638056, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59708699,
19.59708699, 19.59708699, 19.59708699, 11.76705719, 11.76705719,
11.76705719, 11.76705719, 8.77822243, 8.77822243, 8.77822243,
8.77822243, 8.76947767, 8.76947767, 8.76947767, 8.76947767,
8.75155398, 8.75155398, 8.75155398, 8.75155398, 8.73518896,
8.73518896, 8.73518896, 8.73518896, 8.72041919, 8.72041919,
8.72041919, 8.72041919, 8.70930751, 8.70930751, 8.70930751,
8.70930751, 8.70529704, 8.70529704, 8.70529704, 8.70529704,
8.70515517, 8.70515517, 8.70515517, 8.70515517, 8.7108029 ,
8.7108029 , 8.7108029 , 8.7108029 , 8.72327917, 8.72327917,
8.72327917, 8.72327917, 8.73376459, 8.73376459, 8.73376459,
8.73376459, 8.73563619, 8.73563619, 8.73563619, 8.73563619,
8.73912673, 8.73912673, 8.73912673, 8.73912673, 8.7231003 ,
8.7231003 , 8.7231003 , 8.7231003 , 8.66683961, 8.66683961,
8.66683961, 8.66683961, 8.34928421, 8.34928421, 8.34928421,
8.34928421, 6.69362993, 6.69362993, 6.69362993, 6.69362993,
-0.11035176, -0.11035176, -0.11035176, -0.11035176, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.91969759, 460.91969759, 460.91969759, 460.91969759,
1187.76602814, 1187.76602814, 1187.76602814, 1187.76602814,
1673.48445735, 1673.48445735, 1673.48445735, 1673.48445735,
1673.88930321, 1673.88930321, 1673.88930321, 1673.88930321,
1676.44790452, 1676.44790452, 1676.44790452, 1676.44790452,
1678.80370938, 1678.80370938, 1678.80370938, 1678.80370938,
1681.08682083, 1681.08682083, 1681.08682083, 1681.08682083,
1682.92808089, 1682.92808089, 1682.92808089, 1682.92808089,
1684.95201261, 1684.95201261, 1684.95201261, 1684.95201261,
1687.57615561, 1687.57615561, 1687.57615561, 1687.57615561,
1690.39132258, 1690.39132258, 1690.39132258, 1690.39132258,
1693.96066674, 1693.96066674, 1693.96066674, 1693.96066674,
1698.52754203, 1698.52754203, 1698.52754203, 1698.52754203,
1703.48239845, 1703.48239845, 1703.48239845, 1703.48239845,
1702.84220627, 1702.84220627, 1702.84220627, 1702.84220627,
1700.85106284, 1700.85106284, 1700.85106284, 1700.85106284,
1684.25604605, 1684.25604605, 1684.25604605, 1684.25604605,
1605.27478628, 1605.27478628, 1605.27478628, 1605.27478628,
1228.27305079, 1228.27305079, 1228.27305079, 1228.27305079,
335.18146113, 335.18146113, 335.18146113, 335.18146113,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99934679,
5.99934679, 5.99934679, 5.99934679, 10.74428295, 10.74428295,
10.74428295, 10.74428295, 14.06074113, 14.06074113, 14.06074113,
14.06074113, 14.08825244, 14.08825244, 14.08825244, 14.08825244,
14.16060415, 14.16060415, 14.16060415, 14.16060415, 14.23700048,
14.23700048, 14.23700048, 14.23700048, 14.25988941, 14.25988941,
14.25988941, 14.25988941, 14.26414574, 14.26414574, 14.26414574,
14.26414574, 14.28645883, 14.28645883, 14.28645883, 14.28645883,
14.41128533, 14.41128533, 14.41128533, 14.41128533, 14.81477318,
14.81477318, 14.81477318, 14.81477318, 15.77868117, 15.77868117,
15.77868117, 15.77868117, 17.63924517, 17.63924517, 17.63924517,
17.63924517, 20.63133131, 20.63133131, 20.63133131, 20.63133131,
24.46822871, 24.46822871, 24.46822871, 24.46822871, 27.42698268,
27.42698268, 27.42698268, 27.42698268, 28.98413403, 28.98413403,
28.98413403, 28.98413403, 29.5817967 , 29.5817967 , 29.5817967 ,
29.5817967 , 28.69012861, 28.69012861, 28.69012861, 28.69012861,
21.68686674, 21.68686674, 21.68686674, 21.68686674, 8.19799704,
8.19799704, 8.19799704, 8.19799704, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59731538,
19.59731538, 19.59731538, 19.59731538, 12.16840072, 12.16840072,
12.16840072, 12.16840072, 8.78024108, 8.78024108, 8.78024108,
8.78024108, 8.76942457, 8.76942457, 8.76942457, 8.76942457,
8.75063752, 8.75063752, 8.75063752, 8.75063752, 8.73380138,
8.73380138, 8.73380138, 8.73380138, 8.71931988, 8.71931988,
8.71931988, 8.71931988, 8.70751446, 8.70751446, 8.70751446,
8.70751446, 8.70043512, 8.70043512, 8.70043512, 8.70043512,
8.6963955 , 8.6963955 , 8.6963955 , 8.6963955 , 8.69863881,
8.69863881, 8.69863881, 8.69863881, 8.70564688, 8.70564688,
8.70564688, 8.70564688, 8.71289181, 8.71289181, 8.71289181,
8.71289181, 8.72393276, 8.72393276, 8.72393276, 8.72393276,
8.73662685, 8.73662685, 8.73662685, 8.73662685, 8.73213167,
8.73213167, 8.73213167, 8.73213167, 8.71801496, 8.71801496,
8.71801496, 8.71801496, 8.61367472, 8.61367472, 8.61367472,
8.61367472, 8.09804238, 8.09804238, 8.09804238, 8.09804238,
5.3488366 , 5.3488366 , 5.3488366 , 5.3488366 , -3.4209141 ,
-3.4209141 , -3.4209141 , -3.4209141 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.90548673, 460.90548673, 460.90548673, 460.90548673,
1131.28216963, 1131.28216963, 1131.28216963, 1131.28216963,
1674.35990348, 1674.35990348, 1674.35990348, 1674.35990348,
1674.9052894 , 1674.9052894 , 1674.9052894 , 1674.9052894 ,
1677.56332958, 1677.56332958, 1677.56332958, 1677.56332958,
1679.80215724, 1679.80215724, 1679.80215724, 1679.80215724,
1681.87647357, 1681.87647357, 1681.87647357, 1681.87647357,
1683.2938581 , 1683.2938581 , 1683.2938581 , 1683.2938581 ,
1684.63505998, 1684.63505998, 1684.63505998, 1684.63505998,
1686.40409864, 1686.40409864, 1686.40409864, 1686.40409864,
1688.38421778, 1688.38421778, 1688.38421778, 1688.38421778,
1690.7810856 , 1690.7810856 , 1690.7810856 , 1690.7810856 ,
1695.0191866 , 1695.0191866 , 1695.0191866 , 1695.0191866 ,
1700.58403003, 1700.58403003, 1700.58403003, 1700.58403003,
1702.25724958, 1702.25724958, 1702.25724958, 1702.25724958,
1703.22609002, 1703.22609002, 1703.22609002, 1703.22609002,
1697.8039036 , 1697.8039036 , 1697.8039036 , 1697.8039036 ,
1674.27076203, 1674.27076203, 1674.27076203, 1674.27076203,
1537.78741563, 1537.78741563, 1537.78741563, 1537.78741563,
982.5775785 , 982.5775785 , 982.5775785 , 982.5775785 ,
138.82378594, 138.82378594, 138.82378594, 138.82378594,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99928774,
5.99928774, 5.99928774, 5.99928774, 10.39078099, 10.39078099,
10.39078099, 10.39078099, 14.08078884, 14.08078884, 14.08078884,
14.08078884, 14.0878413 , 14.0878413 , 14.0878413 , 14.0878413 ,
14.13721429, 14.13721429, 14.13721429, 14.13721429, 14.2174942 ,
14.2174942 , 14.2174942 , 14.2174942 , 14.26073522, 14.26073522,
14.26073522, 14.26073522, 14.26930759, 14.26930759, 14.26930759,
14.26930759, 14.28127892, 14.28127892, 14.28127892, 14.28127892,
14.3476456 , 14.3476456 , 14.3476456 , 14.3476456 , 14.59756023,
14.59756023, 14.59756023, 14.59756023, 15.25815684, 15.25815684,
15.25815684, 15.25815684, 16.64338379, 16.64338379, 16.64338379,
16.64338379, 19.03513382, 19.03513382, 19.03513382, 19.03513382,
22.51673868, 22.51673868, 22.51673868, 22.51673868, 26.15862478,
26.15862478, 26.15862478, 26.15862478, 28.33037535, 28.33037535,
28.33037535, 28.33037535, 29.51352736, 29.51352736, 29.51352736,
29.51352736, 29.65310158, 29.65310158, 29.65310158, 29.65310158,
27.58144993, 27.58144993, 27.58144993, 27.58144993, 17.26013663,
17.26013663, 17.26013663, 17.26013663, 6.44729149, 6.44729149,
6.44729149, 6.44729149, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59741748,
19.59741748, 19.59741748, 19.59741748, 12.59432549, 12.59432549,
12.59432549, 12.59432549, 8.78272684, 8.78272684, 8.78272684,
8.78272684, 8.7695597 , 8.7695597 , 8.7695597 , 8.7695597 ,
8.75004629, 8.75004629, 8.75004629, 8.75004629, 8.7330606 ,
8.7330606 , 8.7330606 , 8.7330606 , 8.71914468, 8.71914468,
8.71914468, 8.71914468, 8.70767497, 8.70767497, 8.70767497,
8.70767497, 8.69893603, 8.69893603, 8.69893603, 8.69893603,
8.69236612, 8.69236612, 8.69236612, 8.69236612, 8.69135946,
8.69135946, 8.69135946, 8.69135946, 8.6939429 , 8.6939429 ,
8.6939429 , 8.6939429 , 8.69555098, 8.69555098, 8.69555098,
8.69555098, 8.70543976, 8.70543976, 8.70543976, 8.70543976,
8.72511174, 8.72511174, 8.72511174, 8.72511174, 8.73073902,
8.73073902, 8.73073902, 8.73073902, 8.73171085, 8.73171085,
8.73171085, 8.73171085, 8.69602356, 8.69602356, 8.69602356,
8.69602356, 8.54135272, 8.54135272, 8.54135272, 8.54135272,
7.65763407, 7.65763407, 7.65763407, 7.65763407, 3.29824437,
3.29824437, 3.29824437, 3.29824437, -5.63941553, -5.63941553,
-5.63941553, -5.63941553, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89913448, 460.89913448, 460.89913448, 460.89913448,
1073.29357241, 1073.29357241, 1073.29357241, 1073.29357241,
1675.4363695 , 1675.4363695 , 1675.4363695 , 1675.4363695 ,
1676.07220414, 1676.07220414, 1676.07220414, 1676.07220414,
1678.75202029, 1678.75202029, 1678.75202029, 1678.75202029,
1680.85729776, 1680.85729776, 1680.85729776, 1680.85729776,
1682.74486588, 1682.74486588, 1682.74486588, 1682.74486588,
1683.98582995, 1683.98582995, 1683.98582995, 1683.98582995,
1684.99503989, 1684.99503989, 1684.99503989, 1684.99503989,
1686.00718632, 1686.00718632, 1686.00718632, 1686.00718632,
1687.30762953, 1687.30762953, 1687.30762953, 1687.30762953,
1688.93728425, 1688.93728425, 1688.93728425, 1688.93728425,
1692.17310128, 1692.17310128, 1692.17310128, 1692.17310128,
1696.30600482, 1696.30600482, 1696.30600482, 1696.30600482,
1699.65506547, 1699.65506547, 1699.65506547, 1699.65506547,
1702.84641388, 1702.84641388, 1702.84641388, 1702.84641388,
1701.42378925, 1701.42378925, 1701.42378925, 1701.42378925,
1696.13380537, 1696.13380537, 1696.13380537, 1696.13380537,
1651.65906992, 1651.65906992, 1651.65906992, 1651.65906992,
1431.51432175, 1431.51432175, 1431.51432175, 1431.51432175,
680.78792856, 680.78792856, 680.78792856, 680.78792856,
59.1911723 , 59.1911723 , 59.1911723 , 59.1911723 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99926134,
5.99926134, 5.99926134, 5.99926134, 10.01149603, 10.01149603,
10.01149603, 10.01149603, 14.12198239, 14.12198239, 14.12198239,
14.12198239, 14.09397493, 14.09397493, 14.09397493, 14.09397493,
14.12583022, 14.12583022, 14.12583022, 14.12583022, 14.19086237,
14.19086237, 14.19086237, 14.19086237, 14.25410719, 14.25410719,
14.25410719, 14.25410719, 14.27197374, 14.27197374, 14.27197374,
14.27197374, 14.28240806, 14.28240806, 14.28240806, 14.28240806,
14.31746027, 14.31746027, 14.31746027, 14.31746027, 14.46525854,
14.46525854, 14.46525854, 14.46525854, 14.90386223, 14.90386223,
14.90386223, 14.90386223, 15.90395761, 15.90395761, 15.90395761,
15.90395761, 17.75867 , 17.75867 , 17.75867 , 17.75867 ,
20.66876633, 20.66876633, 20.66876633, 20.66876633, 24.48136911,
24.48136911, 24.48136911, 24.48136911, 27.35753674, 27.35753674,
27.35753674, 27.35753674, 29.11294259, 29.11294259, 29.11294259,
29.11294259, 29.76350665, 29.76350665, 29.76350665, 29.76350665,
29.55660544, 29.55660544, 29.55660544, 29.55660544, 25.57934994,
25.57934994, 25.57934994, 25.57934994, 12.50993605, 12.50993605,
12.50993605, 12.50993605, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59746311,
19.59746311, 19.59746311, 19.59746311, 13.11664088, 13.11664088,
13.11664088, 13.11664088, 8.7476418 , 8.7476418 , 8.7476418 ,
8.7476418 , 8.76172138, 8.76172138, 8.76172138, 8.76172138,
8.75090622, 8.75090622, 8.75090622, 8.75090622, 8.73331556,
8.73331556, 8.73331556, 8.73331556, 8.71942064, 8.71942064,
8.71942064, 8.71942064, 8.70850652, 8.70850652, 8.70850652,
8.70850652, 8.69937096, 8.69937096, 8.69937096, 8.69937096,
8.6918181 , 8.6918181 , 8.6918181 , 8.6918181 , 8.68797472,
8.68797472, 8.68797472, 8.68797472, 8.68694529, 8.68694529,
8.68694529, 8.68694529, 8.68441506, 8.68441506, 8.68441506,
8.68441506, 8.68993672, 8.68993672, 8.68993672, 8.68993672,
8.70660633, 8.70660633, 8.70660633, 8.70660633, 8.72124868,
8.72124868, 8.72124868, 8.72124868, 8.73158052, 8.73158052,
8.73158052, 8.73158052, 8.71859206, 8.71859206, 8.71859206,
8.71859206, 8.67848867, 8.67848867, 8.67848867, 8.67848867,
8.40323401, 8.40323401, 8.40323401, 8.40323401, 6.90752715,
6.90752715, 6.90752715, 6.90752715, 0.51776593, 0.51776593,
0.51776593, 0.51776593, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89629506, 460.89629506, 460.89629506, 460.89629506,
1020.63327811, 1020.63327811, 1020.63327811, 1020.63327811,
1669.85230227, 1669.85230227, 1669.85230227, 1669.85230227,
1675.8969543 , 1675.8969543 , 1675.8969543 , 1675.8969543 ,
1680.18457824, 1680.18457824, 1680.18457824, 1680.18457824,
1682.0220882 , 1682.0220882 , 1682.0220882 , 1682.0220882 ,
1683.62770096, 1683.62770096, 1683.62770096, 1683.62770096,
1684.79442324, 1684.79442324, 1684.79442324, 1684.79442324,
1685.66338677, 1685.66338677, 1685.66338677, 1685.66338677,
1686.26360422, 1686.26360422, 1686.26360422, 1686.26360422,
1686.92243376, 1686.92243376, 1686.92243376, 1686.92243376,
1688.08320996, 1688.08320996, 1688.08320996, 1688.08320996,
1690.43113774, 1690.43113774, 1690.43113774, 1690.43113774,
1692.97314487, 1692.97314487, 1692.97314487, 1692.97314487,
1695.63062127, 1695.63062127, 1695.63062127, 1695.63062127,
1700.35370598, 1700.35370598, 1700.35370598, 1700.35370598,
1701.42617062, 1701.42617062, 1701.42617062, 1701.42617062,
1702.15521488, 1702.15521488, 1702.15521488, 1702.15521488,
1687.91525614, 1687.91525614, 1687.91525614, 1687.91525614,
1616.43289599, 1616.43289599, 1616.43289599, 1616.43289599,
1270.51340497, 1270.51340497, 1270.51340497, 1270.51340497,
386.67443541, 386.67443541, 386.67443541, 386.67443541,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924954,
5.99924954, 5.99924954, 5.99924954, 9.66826894, 9.66826894,
9.66826894, 9.66826894, 14.14354628, 14.14354628, 14.14354628,
14.14354628, 14.09739682, 14.09739682, 14.09739682, 14.09739682,
14.11011649, 14.11011649, 14.11011649, 14.11011649, 14.16398654,
14.16398654, 14.16398654, 14.16398654, 14.2398651 , 14.2398651 ,
14.2398651 , 14.2398651 , 14.27146969, 14.27146969, 14.27146969,
14.27146969, 14.28374376, 14.28374376, 14.28374376, 14.28374376,
14.30484557, 14.30484557, 14.30484557, 14.30484557, 14.39007039,
14.39007039, 14.39007039, 14.39007039, 14.6715911 , 14.6715911 ,
14.6715911 , 14.6715911 , 15.37150836, 15.37150836, 15.37150836,
15.37150836, 16.76969247, 16.76969247, 16.76969247, 16.76969247,
19.12080813, 19.12080813, 19.12080813, 19.12080813, 22.55397837,
22.55397837, 22.55397837, 22.55397837, 26.06313675, 26.06313675,
26.06313675, 26.06313675, 28.40882972, 28.40882972, 28.40882972,
28.40882972, 29.55435353, 29.55435353, 29.55435353, 29.55435353,
29.95164766, 29.95164766, 29.95164766, 29.95164766, 29.06215617,
29.06215617, 29.06215617, 29.06215617, 22.44531357, 22.44531357,
22.44531357, 22.44531357, 8.74122541, 8.74122541, 8.74122541,
8.74122541, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59748351,
19.59748351, 19.59748351, 19.59748351, 13.76566568, 13.76566568,
13.76566568, 13.76566568, 8.69088535, 8.69088535, 8.69088535,
8.69088535, 8.71862458, 8.71862458, 8.71862458, 8.71862458,
8.73345405, 8.73345405, 8.73345405, 8.73345405, 8.7321204 ,
8.7321204 , 8.7321204 , 8.7321204 , 8.72134726, 8.72134726,
8.72134726, 8.72134726, 8.709702 , 8.709702 , 8.709702 ,
8.709702 , 8.70076536, 8.70076536, 8.70076536, 8.70076536,
8.69310476, 8.69310476, 8.69310476, 8.69310476, 8.68783555,
8.68783555, 8.68783555, 8.68783555, 8.68326968, 8.68326968,
8.68326968, 8.68326968, 8.67770749, 8.67770749, 8.67770749,
8.67770749, 8.68049792, 8.68049792, 8.68049792, 8.68049792,
8.69140992, 8.69140992, 8.69140992, 8.69140992, 8.7042477 ,
8.7042477 , 8.7042477 , 8.7042477 , 8.72283297, 8.72283297,
8.72283297, 8.72283297, 8.72175327, 8.72175327, 8.72175327,
8.72175327, 8.71728265, 8.71728265, 8.71728265, 8.71728265,
8.63471975, 8.63471975, 8.63471975, 8.63471975, 8.1726214 ,
8.1726214 , 8.1726214 , 8.1726214 , 5.68476992, 5.68476992,
5.68476992, 5.68476992, -2.78464709, -2.78464709, -2.78464709,
-2.78464709, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89502587, 460.89502587, 460.89502587, 460.89502587,
977.63636544, 977.63636544, 977.63636544, 977.63636544,
1660.64047954, 1660.64047954, 1660.64047954, 1660.64047954,
1669.69997985, 1669.69997985, 1669.69997985, 1669.69997985,
1678.16688547, 1678.16688547, 1678.16688547, 1678.16688547,
1682.79062275, 1682.79062275, 1682.79062275, 1682.79062275,
1684.77106257, 1684.77106257, 1684.77106257, 1684.77106257,
1685.65774717, 1685.65774717, 1685.65774717, 1685.65774717,
1686.43346359, 1686.43346359, 1686.43346359, 1686.43346359,
1686.84774538, 1686.84774538, 1686.84774538, 1686.84774538,
1687.17743209, 1687.17743209, 1687.17743209, 1687.17743209,
1687.93813276, 1687.93813276, 1687.93813276, 1687.93813276,
1689.48124456, 1689.48124456, 1689.48124456, 1689.48124456,
1691.07878894, 1691.07878894, 1691.07878894, 1691.07878894,
1692.3943848 , 1692.3943848 , 1692.3943848 , 1692.3943848 ,
1696.07410941, 1696.07410941, 1696.07410941, 1696.07410941,
1699.33801236, 1699.33801236, 1699.33801236, 1699.33801236,
1702.98520641, 1702.98520641, 1702.98520641, 1702.98520641,
1698.23180489, 1698.23180489, 1698.23180489, 1698.23180489,
1677.28093815, 1677.28093815, 1677.28093815, 1677.28093815,
1556.19872094, 1556.19872094, 1556.19872094, 1556.19872094,
1039.76131293, 1039.76131293, 1039.76131293, 1039.76131293,
169.13872798, 169.13872798, 169.13872798, 169.13872798,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924426,
5.99924426, 5.99924426, 5.99924426, 9.35728004, 9.35728004,
9.35728004, 9.35728004, 14.16291039, 14.16291039, 14.16291039,
14.16291039, 14.10395741, 14.10395741, 14.10395741, 14.10395741,
14.09257603, 14.09257603, 14.09257603, 14.09257603, 14.12849497,
14.12849497, 14.12849497, 14.12849497, 14.20670054, 14.20670054,
14.20670054, 14.20670054, 14.26589425, 14.26589425, 14.26589425,
14.26589425, 14.28383717, 14.28383717, 14.28383717, 14.28383717,
14.30001853, 14.30001853, 14.30001853, 14.30001853, 14.34990572,
14.34990572, 14.34990572, 14.34990572, 14.52613511, 14.52613511,
14.52613511, 14.52613511, 15.00074608, 15.00074608, 15.00074608,
15.00074608, 16.02431223, 16.02431223, 16.02431223, 16.02431223,
17.86960949, 17.86960949, 17.86960949, 17.86960949, 20.74362606,
20.74362606, 20.74362606, 20.74362606, 24.40548791, 24.40548791,
24.40548791, 24.40548791, 27.40928301, 27.40928301, 27.40928301,
27.40928301, 29.06335744, 29.06335744, 29.06335744, 29.06335744,
29.9165526 , 29.9165526 , 29.9165526 , 29.9165526 , 29.98430588,
29.98430588, 29.98430588, 29.98430588, 27.98012646, 27.98012646,
27.98012646, 27.98012646, 18.17540099, 18.17540099, 18.17540099,
18.17540099, 6.69272036, 6.69272036, 6.69272036, 6.69272036,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749263,
19.59749263, 19.59749263, 19.59749263, 14.44020267, 14.44020267,
14.44020267, 14.44020267, 8.68307991, 8.68307991, 8.68307991,
8.68307991, 8.67610529, 8.67610529, 8.67610529, 8.67610529,
8.69064221, 8.69064221, 8.69064221, 8.69064221, 8.71075289,
8.71075289, 8.71075289, 8.71075289, 8.71568545, 8.71568545,
8.71568545, 8.71568545, 8.71157748, 8.71157748, 8.71157748,
8.71157748, 8.70303395, 8.70303395, 8.70303395, 8.70303395,
8.69529177, 8.69529177, 8.69529177, 8.69529177, 8.68929269,
8.68929269, 8.68929269, 8.68929269, 8.68241914, 8.68241914,
8.68241914, 8.68241914, 8.67489554, 8.67489554, 8.67489554,
8.67489554, 8.67568357, 8.67568357, 8.67568357, 8.67568357,
8.68245141, 8.68245141, 8.68245141, 8.68245141, 8.68976966,
8.68976966, 8.68976966, 8.68976966, 8.70694721, 8.70694721,
8.70694721, 8.70694721, 8.71454705, 8.71454705, 8.71454705,
8.71454705, 8.7247428 , 8.7247428 , 8.7247428 , 8.7247428 ,
8.7020353 , 8.7020353 , 8.7020353 , 8.7020353 , 8.56502968,
8.56502968, 8.56502968, 8.56502968, 7.77996246, 7.77996246,
7.77996246, 7.77996246, 3.7935205 , 3.7935205 , 3.7935205 ,
3.7935205 , -5.32354542, -5.32354542, -5.32354542, -5.32354542,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89445855, 460.89445855, 460.89445855, 460.89445855,
933.18597423, 933.18597423, 933.18597423, 933.18597423,
1660.42668543, 1660.42668543, 1660.42668543, 1660.42668543,
1663.32563193, 1663.32563193, 1663.32563193, 1663.32563193,
1671.66824541, 1671.66824541, 1671.66824541, 1671.66824541,
1679.89539446, 1679.89539446, 1679.89539446, 1679.89539446,
1684.41359508, 1684.41359508, 1684.41359508, 1684.41359508,
1686.60247269, 1686.60247269, 1686.60247269, 1686.60247269,
1687.3086245 , 1687.3086245 , 1687.3086245 , 1687.3086245 ,
1687.55852867, 1687.55852867, 1687.55852867, 1687.55852867,
1687.79354963, 1687.79354963, 1687.79354963, 1687.79354963,
1688.38417159, 1688.38417159, 1688.38417159, 1688.38417159,
1689.21739813, 1689.21739813, 1689.21739813, 1689.21739813,
1690.08745483, 1690.08745483, 1690.08745483, 1690.08745483,
1690.47095516, 1690.47095516, 1690.47095516, 1690.47095516,
1692.60016332, 1692.60016332, 1692.60016332, 1692.60016332,
1695.64625151, 1695.64625151, 1695.64625151, 1695.64625151,
1701.02926834, 1701.02926834, 1701.02926834, 1701.02926834,
1700.19286408, 1700.19286408, 1700.19286408, 1700.19286408,
1695.24499175, 1695.24499175, 1695.24499175, 1695.24499175,
1657.82666898, 1657.82666898, 1657.82666898, 1657.82666898,
1458.91114694, 1458.91114694, 1458.91114694, 1458.91114694,
745.64720626, 745.64720626, 745.64720626, 745.64720626,
68.08707772, 68.08707772, 68.08707772, 68.08707772,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924191,
5.99924191, 5.99924191, 5.99924191, 8.91010155, 8.91010155,
8.91010155, 8.91010155, 14.26626517, 14.26626517, 14.26626517,
14.26626517, 14.17721536, 14.17721536, 14.17721536, 14.17721536,
14.10140812, 14.10140812, 14.10140812, 14.10140812, 14.09717055,
14.09717055, 14.09717055, 14.09717055, 14.15221798, 14.15221798,
14.15221798, 14.15221798, 14.23981658, 14.23981658, 14.23981658,
14.23981658, 14.27811207, 14.27811207, 14.27811207, 14.27811207,
14.29795704, 14.29795704, 14.29795704, 14.29795704, 14.32981899,
14.32981899, 14.32981899, 14.32981899, 14.43868552, 14.43868552,
14.43868552, 14.43868552, 14.75128835, 14.75128835, 14.75128835,
14.75128835, 15.4791328 , 15.4791328 , 15.4791328 , 15.4791328 ,
16.88725445, 16.88725445, 16.88725445, 16.88725445, 19.22712749,
19.22712749, 19.22712749, 19.22712749, 22.52991222, 22.52991222,
22.52991222, 22.52991222, 26.10771279, 26.10771279, 26.10771279,
26.10771279, 28.31774838, 28.31774838, 28.31774838, 28.31774838,
29.61540996, 29.61540996, 29.61540996, 29.61540996, 30.10739131,
30.10739131, 30.10739131, 30.10739131, 29.83141011, 29.83141011,
29.83141011, 29.83141011, 26.0883515 , 26.0883515 , 26.0883515 ,
26.0883515 , 13.46458057, 13.46458057, 13.46458057, 13.46458057,
6.00283479, 6.00283479, 6.00283479, 6.00283479, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749671,
19.59749671, 19.59749671, 19.59749671, 15.04816172, 15.04816172,
15.04816172, 15.04816172, 8.7701521 , 8.7701521 , 8.7701521 ,
8.7701521 , 8.70248982, 8.70248982, 8.70248982, 8.70248982,
8.66631628, 8.66631628, 8.66631628, 8.66631628, 8.6681861 ,
8.6681861 , 8.6681861 , 8.6681861 , 8.69045951, 8.69045951,
8.69045951, 8.69045951, 8.70219543, 8.70219543, 8.70219543,
8.70219543, 8.70303138, 8.70303138, 8.70303138, 8.70303138,
8.6983274 , 8.6983274 , 8.6983274 , 8.6983274 , 8.69148957,
8.69148957, 8.69148957, 8.69148957, 8.68319102, 8.68319102,
8.68319102, 8.68319102, 8.67523211, 8.67523211, 8.67523211,
8.67523211, 8.67446784, 8.67446784, 8.67446784, 8.67446784,
8.67812393, 8.67812393, 8.67812393, 8.67812393, 8.68119307,
8.68119307, 8.68119307, 8.68119307, 8.69199202, 8.69199202,
8.69199202, 8.69199202, 8.70119277, 8.70119277, 8.70119277,
8.70119277, 8.71979547, 8.71979547, 8.71979547, 8.71979547,
8.71680504, 8.71680504, 8.71680504, 8.71680504, 8.68181304,
8.68181304, 8.68181304, 8.68181304, 8.44316553, 8.44316553,
8.44316553, 8.44316553, 7.11113592, 7.11113592, 7.11113592,
7.11113592, 1.15816769, 1.15816769, 1.15816769, 1.15816769,
-6.18526944, -6.18526944, -6.18526944, -6.18526944, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89420497, 460.89420497, 460.89420497, 460.89420497,
866.68575165, 866.68575165, 866.68575165, 866.68575165,
1677.80431545, 1677.80431545, 1677.80431545, 1677.80431545,
1669.27099826, 1669.27099826, 1669.27099826, 1669.27099826,
1668.33038019, 1668.33038019, 1668.33038019, 1668.33038019,
1673.11657162, 1673.11657162, 1673.11657162, 1673.11657162,
1680.58894839, 1680.58894839, 1680.58894839, 1680.58894839,
1685.43245866, 1685.43245866, 1685.43245866, 1685.43245866,
1687.67463941, 1687.67463941, 1687.67463941, 1687.67463941,
1688.43144069, 1688.43144069, 1688.43144069, 1688.43144069,
1688.59202001, 1688.59202001, 1688.59202001, 1688.59202001,
1689.13976246, 1689.13976246, 1689.13976246, 1689.13976246,
1689.47201636, 1689.47201636, 1689.47201636, 1689.47201636,
1689.75793919, 1689.75793919, 1689.75793919, 1689.75793919,
1689.54059646, 1689.54059646, 1689.54059646, 1689.54059646,
1690.6375146 , 1690.6375146 , 1690.6375146 , 1690.6375146 ,
1692.31798241, 1692.31798241, 1692.31798241, 1692.31798241,
1697.44345312, 1697.44345312, 1697.44345312, 1697.44345312,
1698.88800322, 1698.88800322, 1698.88800322, 1698.88800322,
1699.19910236, 1699.19910236, 1699.19910236, 1699.19910236,
1688.88906962, 1688.88906962, 1688.88906962, 1688.88906962,
1625.54418239, 1625.54418239, 1625.54418239, 1625.54418239,
1310.40246856, 1310.40246856, 1310.40246856, 1310.40246856,
445.12057808, 445.12057808, 445.12057808, 445.12057808,
46.31207091, 46.31207091, 46.31207091, 46.31207091,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924085,
5.99924085, 5.99924085, 5.99924085, 8.41963211, 8.41963211,
8.41963211, 8.41963211, 14.32067919, 14.32067919, 14.32067919,
14.32067919, 14.27805193, 14.27805193, 14.27805193, 14.27805193,
14.17042384, 14.17042384, 14.17042384, 14.17042384, 14.10927185,
14.10927185, 14.10927185, 14.10927185, 14.11632094, 14.11632094,
14.11632094, 14.11632094, 14.18029111, 14.18029111, 14.18029111,
14.18029111, 14.25486229, 14.25486229, 14.25486229, 14.25486229,
14.28741679, 14.28741679, 14.28741679, 14.28741679, 14.31927422,
14.31927422, 14.31927422, 14.31927422, 14.38898131, 14.38898131,
14.38898131, 14.38898131, 14.58934533, 14.58934533, 14.58934533,
14.58934533, 15.09190069, 15.09190069, 15.09190069, 15.09190069,
16.13771089, 16.13771089, 16.13771089, 16.13771089, 17.99138552,
17.99138552, 17.99138552, 17.99138552, 20.79661541, 20.79661541,
20.79661541, 20.79661541, 24.45432855, 24.45432855, 24.45432855,
24.45432855, 27.30539236, 27.30539236, 27.30539236, 27.30539236,
29.07403061, 29.07403061, 29.07403061, 29.07403061, 29.96466621,
29.96466621, 29.96466621, 29.96466621, 30.21014242, 30.21014242,
30.21014242, 30.21014242, 29.33077419, 29.33077419, 29.33077419,
29.33077419, 23.1665558 , 23.1665558 , 23.1665558 , 23.1665558 ,
9.40413373, 9.40413373, 9.40413373, 9.40413373, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749853,
19.59749853, 19.59749853, 19.59749853, 15.69123852, 15.69123852,
15.69123852, 15.69123852, 8.81172522, 8.81172522, 8.81172522,
8.81172522, 8.76473273, 8.76473273, 8.76473273, 8.76473273,
8.69598215, 8.69598215, 8.69598215, 8.69598215, 8.66163298,
8.66163298, 8.66163298, 8.66163298, 8.65659671, 8.65659671,
8.65659671, 8.65659671, 8.67284391, 8.67284391, 8.67284391,
8.67284391, 8.69087936, 8.69087936, 8.69087936, 8.69087936,
8.69553597, 8.69553597, 8.69553597, 8.69553597, 8.69293291,
8.69293291, 8.69293291, 8.69293291, 8.68585684, 8.68585684,
8.68585684, 8.68585684, 8.67775947, 8.67775947, 8.67775947,
8.67775947, 8.67539766, 8.67539766, 8.67539766, 8.67539766,
8.67700313, 8.67700313, 8.67700313, 8.67700313, 8.67727649,
8.67727649, 8.67727649, 8.67727649, 8.68275622, 8.68275622,
8.68275622, 8.68275622, 8.68768458, 8.68768458, 8.68768458,
8.68768458, 8.70787439, 8.70787439, 8.70787439, 8.70787439,
8.71508163, 8.71508163, 8.71508163, 8.71508163, 8.71081194,
8.71081194, 8.71081194, 8.71081194, 8.64451366, 8.64451366,
8.64451366, 8.64451366, 8.23766224, 8.23766224, 8.23766224,
8.23766224, 6.00485414, 6.00485414, 6.00485414, 6.00485414,
-2.07997892, -2.07997892, -2.07997892, -2.07997892, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89409162, 460.89409162, 460.89409162, 460.89409162,
793.36263021, 793.36263021, 793.36263021, 793.36263021,
1686.43990471, 1686.43990471, 1686.43990471, 1686.43990471,
1682.15207572, 1682.15207572, 1682.15207572, 1682.15207572,
1674.7933506 , 1674.7933506 , 1674.7933506 , 1674.7933506 ,
1672.61097758, 1672.61097758, 1672.61097758, 1672.61097758,
1675.16126234, 1675.16126234, 1675.16126234, 1675.16126234,
1680.61556691, 1680.61556691, 1680.61556691, 1680.61556691,
1685.85859429, 1685.85859429, 1685.85859429, 1685.85859429,
1688.19601121, 1688.19601121, 1688.19601121, 1688.19601121,
1689.32894658, 1689.32894658, 1689.32894658, 1689.32894658,
1690.14987454, 1690.14987454, 1690.14987454, 1690.14987454,
1690.06145822, 1690.06145822, 1690.06145822, 1690.06145822,
1689.78496303, 1689.78496303, 1689.78496303, 1689.78496303,
1689.32314367, 1689.32314367, 1689.32314367, 1689.32314367,
1689.78670108, 1689.78670108, 1689.78670108, 1689.78670108,
1690.37884588, 1690.37884588, 1690.37884588, 1690.37884588,
1693.90794861, 1693.90794861, 1693.90794861, 1693.90794861,
1695.8182888 , 1695.8182888 , 1695.8182888 , 1695.8182888 ,
1698.7344182 , 1698.7344182 , 1698.7344182 , 1698.7344182 ,
1696.6502919 , 1696.6502919 , 1696.6502919 , 1696.6502919 ,
1678.73322594, 1678.73322594, 1678.73322594, 1678.73322594,
1571.30068303, 1571.30068303, 1571.30068303, 1571.30068303,
1095.87520815, 1095.87520815, 1095.87520815, 1095.87520815,
206.6425445 , 206.6425445 , 206.6425445 , 206.6425445 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924038,
5.99924038, 5.99924038, 5.99924038, 7.91003434, 7.91003434,
7.91003434, 7.91003434, 14.34738841, 14.34738841, 14.34738841,
14.34738841, 14.3316937 , 14.3316937 , 14.3316937 , 14.3316937 ,
14.2729339 , 14.2729339 , 14.2729339 , 14.2729339 , 14.1680748 ,
14.1680748 , 14.1680748 , 14.1680748 , 14.1263544 , 14.1263544 ,
14.1263544 , 14.1263544 , 14.14345566, 14.14345566, 14.14345566,
14.14345566, 14.20258109, 14.20258109, 14.20258109, 14.20258109,
14.26182758, 14.26182758, 14.26182758, 14.26182758, 14.30299917,
14.30299917, 14.30299917, 14.30299917, 14.35723166, 14.35723166,
14.35723166, 14.35723166, 14.4884073 , 14.4884073 , 14.4884073 ,
14.4884073 , 14.82597909, 14.82597909, 14.82597909, 14.82597909,
15.5815915 , 15.5815915 , 15.5815915 , 15.5815915 , 17.01102296,
17.01102296, 17.01102296, 17.01102296, 19.32252828, 19.32252828,
19.32252828, 19.32252828, 22.61974042, 22.61974042, 22.61974042,
22.61974042, 26.01729543, 26.01729543, 26.01729543, 26.01729543,
28.30360654, 28.30360654, 28.30360654, 28.30360654, 29.59819706,
29.59819706, 29.59819706, 29.59819706, 30.19748238, 30.19748238,
30.19748238, 30.19748238, 30.19846012, 30.19846012, 30.19846012,
30.19846012, 28.29821234, 28.29821234, 28.29821234, 28.29821234,
19.13418208, 19.13418208, 19.13418208, 19.13418208, 6.99659014,
6.99659014, 6.99659014, 6.99659014, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749934,
19.59749934, 19.59749934, 19.59749934, 16.40941664, 16.40941664,
16.40941664, 16.40941664, 8.82485533, 8.82485533, 8.82485533,
8.82485533, 8.79573239, 8.79573239, 8.79573239, 8.79573239,
8.75227497, 8.75227497, 8.75227497, 8.75227497, 8.69333804,
8.69333804, 8.69333804, 8.69333804, 8.65873307, 8.65873307,
8.65873307, 8.65873307, 8.65069359, 8.65069359, 8.65069359,
8.65069359, 8.66077701, 8.66077701, 8.66077701, 8.66077701,
8.68028982, 8.68028982, 8.68028982, 8.68028982, 8.6866413 ,
8.6866413 , 8.6866413 , 8.6866413 , 8.6861228 , 8.6861228 ,
8.6861228 , 8.6861228 , 8.6814526 , 8.6814526 , 8.6814526 ,
8.6814526 , 8.67888773, 8.67888773, 8.67888773, 8.67888773,
8.67775411, 8.67775411, 8.67775411, 8.67775411, 8.6764208 ,
8.6764208 , 8.6764208 , 8.6764208 , 8.67872569, 8.67872569,
8.67872569, 8.67872569, 8.67909904, 8.67909904, 8.67909904,
8.67909904, 8.69435722, 8.69435722, 8.69435722, 8.69435722,
8.70621475, 8.70621475, 8.70621475, 8.70621475, 8.71308756,
8.71308756, 8.71308756, 8.71308756, 8.69901201, 8.69901201,
8.69901201, 8.69901201, 8.58258793, 8.58258793, 8.58258793,
8.58258793, 7.88962994, 7.88962994, 7.88962994, 7.88962994,
4.2672388 , 4.2672388 , 4.2672388 , 4.2672388 , -4.92722735,
-4.92722735, -4.92722735, -4.92722735, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89404095, 460.89404095, 460.89404095, 460.89404095,
717.96564395, 717.96564395, 717.96564395, 717.96564395,
1688.71209354, 1688.71209354, 1688.71209354, 1688.71209354,
1689.07064819, 1689.07064819, 1689.07064819, 1689.07064819,
1686.21538307, 1686.21538307, 1686.21538307, 1686.21538307,
1679.32245135, 1679.32245135, 1679.32245135, 1679.32245135,
1676.00126704, 1676.00126704, 1676.00126704, 1676.00126704,
1677.10005677, 1677.10005677, 1677.10005677, 1677.10005677,
1680.69637722, 1680.69637722, 1680.69637722, 1680.69637722,
1685.80087348, 1685.80087348, 1685.80087348, 1685.80087348,
1688.70920636, 1688.70920636, 1688.70920636, 1688.70920636,
1690.54735925, 1690.54735925, 1690.54735925, 1690.54735925,
1690.85510267, 1690.85510267, 1690.85510267, 1690.85510267,
1690.25181985, 1690.25181985, 1690.25181985, 1690.25181985,
1689.51821895, 1689.51821895, 1689.51821895, 1689.51821895,
1689.57783456, 1689.57783456, 1689.57783456, 1689.57783456,
1689.65603804, 1689.65603804, 1689.65603804, 1689.65603804,
1691.7166648 , 1691.7166648 , 1691.7166648 , 1691.7166648 ,
1692.37997272, 1692.37997272, 1692.37997272, 1692.37997272,
1696.3701987 , 1696.3701987 , 1696.3701987 , 1696.3701987 ,
1697.25391001, 1697.25391001, 1697.25391001, 1697.25391001,
1693.31920613, 1693.31920613, 1693.31920613, 1693.31920613,
1661.12117656, 1661.12117656, 1661.12117656, 1661.12117656,
1483.02354923, 1483.02354923, 1483.02354923, 1483.02354923,
813.24144598, 813.24144598, 813.24144598, 813.24144598,
80.51859504, 80.51859504, 80.51859504, 80.51859504,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924017,
5.99924017, 5.99924017, 5.99924017, 7.37649405, 7.37649405,
7.37649405, 7.37649405, 14.37562881, 14.37562881, 14.37562881,
14.37562881, 14.36338351, 14.36338351, 14.36338351, 14.36338351,
14.33192819, 14.33192819, 14.33192819, 14.33192819, 14.25919308,
14.25919308, 14.25919308, 14.25919308, 14.17470022, 14.17470022,
14.17470022, 14.17470022, 14.15010967, 14.15010967, 14.15010967,
14.15010967, 14.17053714, 14.17053714, 14.17053714, 14.17053714,
14.21908177, 14.21908177, 14.21908177, 14.21908177, 14.27226922,
14.27226922, 14.27226922, 14.27226922, 14.32794724, 14.32794724,
14.32794724, 14.32794724, 14.42101915, 14.42101915, 14.42101915,
14.42101915, 14.64801748, 14.64801748, 14.64801748, 14.64801748,
15.18142497, 15.18142497, 15.18142497, 15.18142497, 16.25430901,
16.25430901, 16.25430901, 16.25430901, 18.10584037, 18.10584037,
18.10584037, 18.10584037, 20.9014521 , 20.9014521 , 20.9014521 ,
20.9014521 , 24.42096823, 24.42096823, 24.42096823, 24.42096823,
27.2930598 , 27.2930598 , 27.2930598 , 27.2930598 , 29.03043122,
29.03043122, 29.03043122, 29.03043122, 29.98245032, 29.98245032,
29.98245032, 29.98245032, 30.32051206, 30.32051206, 30.32051206,
30.32051206, 30.0073725 , 30.0073725 , 30.0073725 , 30.0073725 ,
26.56613444, 26.56613444, 26.56613444, 26.56613444, 14.47373671,
14.47373671, 14.47373671, 14.47373671, 6.04555189, 6.04555189,
6.04555189, 6.04555189, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749971,
19.59749971, 19.59749971, 19.59749971, 17.23455179, 17.23455179,
17.23455179, 17.23455179, 8.83283516, 8.83283516, 8.83283516,
8.83283516, 8.8066986 , 8.8066986 , 8.8066986 , 8.8066986 ,
8.77893982, 8.77893982, 8.77893982, 8.77893982, 8.74393893,
8.74393893, 8.74393893, 8.74393893, 8.69303006, 8.69303006,
8.69303006, 8.69303006, 8.65793403, 8.65793403, 8.65793403,
8.65793403, 8.64844462, 8.64844462, 8.64844462, 8.64844462,
8.65286137, 8.65286137, 8.65286137, 8.65286137, 8.66758632,
8.66758632, 8.66758632, 8.66758632, 8.67826838, 8.67826838,
8.67826838, 8.67826838, 8.6813123 , 8.6813123 , 8.6813123 ,
8.6813123 , 8.68212227, 8.68212227, 8.68212227, 8.68212227,
8.68063646, 8.68063646, 8.68063646, 8.68063646, 8.67755171,
8.67755171, 8.67755171, 8.67755171, 8.67747348, 8.67747348,
8.67747348, 8.67747348, 8.67572487, 8.67572487, 8.67572487,
8.67572487, 8.68568246, 8.68568246, 8.68568246, 8.68568246,
8.69305859, 8.69305859, 8.69305859, 8.69305859, 8.7076952 ,
8.7076952 , 8.7076952 , 8.7076952 , 8.70857632, 8.70857632,
8.70857632, 8.70857632, 8.68124002, 8.68124002, 8.68124002,
8.68124002, 8.47594433, 8.47594433, 8.47594433, 8.47594433,
7.28729035, 7.28729035, 7.28729035, 7.28729035, 1.78738917,
1.78738917, 1.78738917, 1.78738917, -6.13549158, -6.13549158,
-6.13549158, -6.13549158, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89401831, 460.89401831, 460.89401831, 460.89401831,
640.32907573, 640.32907573, 640.32907573, 640.32907573,
1688.97283917, 1688.97283917, 1688.97283917, 1688.97283917,
1692.25449937, 1692.25449937, 1692.25449937, 1692.25449937,
1692.17941475, 1692.17941475, 1692.17941475, 1692.17941475,
1689.40271881, 1689.40271881, 1689.40271881, 1689.40271881,
1682.99070598, 1682.99070598, 1682.99070598, 1682.99070598,
1678.7420523 , 1678.7420523 , 1678.7420523 , 1678.7420523 ,
1678.78423243, 1678.78423243, 1678.78423243, 1678.78423243,
1681.18667403, 1681.18667403, 1681.18667403, 1681.18667403,
1685.75284892, 1685.75284892, 1685.75284892, 1685.75284892,
1689.4021576 , 1689.4021576 , 1689.4021576 , 1689.4021576 ,
1690.83803066, 1690.83803066, 1690.83803066, 1690.83803066,
1690.71746463, 1690.71746463, 1690.71746463, 1690.71746463,
1690.14739212, 1690.14739212, 1690.14739212, 1690.14739212,
1689.75355011, 1689.75355011, 1689.75355011, 1689.75355011,
1689.60668819, 1689.60668819, 1689.60668819, 1689.60668819,
1690.78190264, 1690.78190264, 1690.78190264, 1690.78190264,
1690.18310948, 1690.18310948, 1690.18310948, 1690.18310948,
1692.92688656, 1692.92688656, 1692.92688656, 1692.92688656,
1695.814461 , 1695.814461 , 1695.814461 , 1695.814461 ,
1695.87960857, 1695.87960857, 1695.87960857, 1695.87960857,
1687.43569733, 1687.43569733, 1687.43569733, 1687.43569733,
1631.68447877, 1631.68447877, 1631.68447877, 1631.68447877,
1348.20337487, 1348.20337487, 1348.20337487, 1348.20337487,
508.05741301, 508.05741301, 508.05741301, 508.05741301,
47.34758171, 47.34758171, 47.34758171, 47.34758171,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924008,
5.99924008, 5.99924008, 5.99924008, 6.8239293 , 6.8239293 ,
6.8239293 , 6.8239293 , 14.40274093, 14.40274093, 14.40274093,
14.40274093, 14.3932066 , 14.3932066 , 14.3932066 , 14.3932066 ,
14.36759642, 14.36759642, 14.36759642, 14.36759642, 14.32050287,
14.32050287, 14.32050287, 14.32050287, 14.2461405 , 14.2461405 ,
14.2461405 , 14.2461405 , 14.19058987, 14.19058987, 14.19058987,
14.19058987, 14.17646248, 14.17646248, 14.17646248, 14.17646248,
14.19509807, 14.19509807, 14.19509807, 14.19509807, 14.23721094,
14.23721094, 14.23721094, 14.23721094, 14.28812531, 14.28812531,
14.28812531, 14.28812531, 14.36660987, 14.36660987, 14.36660987,
14.36660987, 14.52667974, 14.52667974, 14.52667974, 14.52667974,
14.89833561, 14.89833561, 14.89833561, 14.89833561, 15.68674478,
15.68674478, 15.68674478, 15.68674478, 17.1304627 , 17.1304627 ,
17.1304627 , 17.1304627 , 19.43884554, 19.43884554, 19.43884554,
19.43884554, 22.63759009, 22.63759009, 22.63759009, 22.63759009,
26.033954 , 26.033954 , 26.033954 , 26.033954 , 28.25091774,
28.25091774, 28.25091774, 28.25091774, 29.58183321, 29.58183321,
29.58183321, 29.58183321, 30.2262222 , 30.2262222 , 30.2262222 ,
30.2262222 , 30.36632078, 30.36632078, 30.36632078, 30.36632078,
29.54572325, 29.54572325, 29.54572325, 29.54572325, 23.86518351,
23.86518351, 23.86518351, 23.86518351, 10.13978954, 10.13978954,
10.13978954, 10.13978954, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749987,
19.59749987, 19.59749987, 19.59749987, 18.17769491, 18.17769491,
18.17769491, 18.17769491, 8.84955886, 8.84955886, 8.84955886,
8.84955886, 8.8105969 , 8.8105969 , 8.8105969 , 8.8105969 ,
8.79050179, 8.79050179, 8.79050179, 8.79050179, 8.76811031,
8.76811031, 8.76811031, 8.76811031, 8.73833779, 8.73833779,
8.73833779, 8.73833779, 8.69433495, 8.69433495, 8.69433495,
8.69433495, 8.6589408 , 8.6589408 , 8.6589408 , 8.6589408 ,
8.6468022 , 8.6468022 , 8.6468022 , 8.6468022 , 8.64574578,
8.64574578, 8.64574578, 8.64574578, 8.65697301, 8.65697301,
8.65697301, 8.65697301, 8.67297466, 8.67297466, 8.67297466,
8.67297466, 8.68055394, 8.68055394, 8.68055394, 8.68055394,
8.68217584, 8.68217584, 8.68217584, 8.68217584, 8.68050877,
8.68050877, 8.68050877, 8.68050877, 8.67805459, 8.67805459,
8.67805459, 8.67805459, 8.67504229, 8.67504229, 8.67504229,
8.67504229, 8.68217954, 8.68217954, 8.68217954, 8.68217954,
8.68445857, 8.68445857, 8.68445857, 8.68445857, 8.69633107,
8.69633107, 8.69633107, 8.69633107, 8.70611691, 8.70611691,
8.70611691, 8.70611691, 8.70394195, 8.70394195, 8.70394195,
8.70394195, 8.65001892, 8.65001892, 8.65001892, 8.65001892,
8.28551311, 8.28551311, 8.28551311, 8.28551311, 6.29162128,
6.29162128, 6.29162128, 6.29162128, -1.35153772, -1.35153772,
-1.35153772, -1.35153772, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400818, 460.89400818, 460.89400818, 460.89400818,
561.91173373, 561.91173373, 561.91173373, 561.91173373,
1686.98261782, 1686.98261782, 1686.98261782, 1686.98261782,
1694.14142956, 1694.14142956, 1694.14142956, 1694.14142956,
1695.23081499, 1695.23081499, 1695.23081499, 1695.23081499,
1694.61345363, 1694.61345363, 1694.61345363, 1694.61345363,
1691.89465258, 1691.89465258, 1691.89465258, 1691.89465258,
1685.89527761, 1685.89527761, 1685.89527761, 1685.89527761,
1681.04668541, 1681.04668541, 1681.04668541, 1681.04668541,
1680.43546913, 1680.43546913, 1680.43546913, 1680.43546913,
1682.24858591, 1682.24858591, 1682.24858591, 1682.24858591,
1685.76509806, 1685.76509806, 1685.76509806, 1685.76509806,
1689.22071843, 1689.22071843, 1689.22071843, 1689.22071843,
1690.37791746, 1690.37791746, 1690.37791746, 1690.37791746,
1690.46076304, 1690.46076304, 1690.46076304, 1690.46076304,
1690.30669745, 1690.30669745, 1690.30669745, 1690.30669745,
1689.95002867, 1689.95002867, 1689.95002867, 1689.95002867,
1690.38732396, 1690.38732396, 1690.38732396, 1690.38732396,
1689.31280473, 1689.31280473, 1689.31280473, 1689.31280473,
1690.73856944, 1690.73856944, 1690.73856944, 1690.73856944,
1692.81693624, 1692.81693624, 1692.81693624, 1692.81693624,
1695.21481449, 1695.21481449, 1695.21481449, 1695.21481449,
1693.51935784, 1693.51935784, 1693.51935784, 1693.51935784,
1677.81359698, 1677.81359698, 1677.81359698, 1677.81359698,
1584.72629656, 1584.72629656, 1584.72629656, 1584.72629656,
1149.1337881 , 1149.1337881 , 1149.1337881 , 1149.1337881 ,
250.14536714, 250.14536714, 250.14536714, 250.14536714,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924003,
5.99924003, 5.99924003, 5.99924003, 6.42236937, 6.42236937,
6.42236937, 6.42236937, 14.27010826, 14.27010826, 14.27010826,
14.27010826, 14.4126468 , 14.4126468 , 14.4126468 , 14.4126468 ,
14.39597654, 14.39597654, 14.39597654, 14.39597654, 14.36168051,
14.36168051, 14.36168051, 14.36168051, 14.30366886, 14.30366886,
14.30366886, 14.30366886, 14.24235343, 14.24235343, 14.24235343,
14.24235343, 14.21217733, 14.21217733, 14.21217733, 14.21217733,
14.20366908, 14.20366908, 14.20366908, 14.20366908, 14.21910348,
14.21910348, 14.21910348, 14.21910348, 14.25682454, 14.25682454,
14.25682454, 14.25682454, 14.31287435, 14.31287435, 14.31287435,
14.31287435, 14.43267012, 14.43267012, 14.43267012, 14.43267012,
14.69868846, 14.69868846, 14.69868846, 14.69868846, 15.2685669 ,
15.2685669 , 15.2685669 , 15.2685669 , 16.36890068, 16.36890068,
16.36890068, 16.36890068, 18.22751099, 18.22751099, 18.22751099,
18.22751099, 20.96900914, 20.96900914, 20.96900914, 20.96900914,
24.46575553, 24.46575553, 24.46575553, 24.46575553, 27.25217639,
27.25217639, 27.25217639, 27.25217639, 28.99882734, 28.99882734,
28.99882734, 28.99882734, 29.96353182, 29.96353182, 29.96353182,
29.96353182, 30.37169742, 30.37169742, 30.37169742, 30.37169742,
30.35145464, 30.35145464, 30.35145464, 30.35145464, 28.58089868,
28.58089868, 28.58089868, 28.58089868, 20.0510233 , 20.0510233 ,
20.0510233 , 20.0510233 , 7.37833451, 7.37833451, 7.37833451,
7.37833451, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749994,
19.59749994, 19.59749994, 19.59749994, 18.86697027, 18.86697027,
18.86697027, 18.86697027, 8.94442174, 8.94442174, 8.94442174,
8.94442174, 8.80588337, 8.80588337, 8.80588337, 8.80588337,
8.79530798, 8.79530798, 8.79530798, 8.79530798, 8.77969636,
8.77969636, 8.77969636, 8.77969636, 8.76091086, 8.76091086,
8.76091086, 8.76091086, 8.73545381, 8.73545381, 8.73545381,
8.73545381, 8.69648824, 8.69648824, 8.69648824, 8.69648824,
8.65982364, 8.65982364, 8.65982364, 8.65982364, 8.64404307,
8.64404307, 8.64404307, 8.64404307, 8.64167024, 8.64167024,
8.64167024, 8.64167024, 8.65208368, 8.65208368, 8.65208368,
8.65208368, 8.67004128, 8.67004128, 8.67004128, 8.67004128,
8.67930451, 8.67930451, 8.67930451, 8.67930451, 8.68093874,
8.68093874, 8.68093874, 8.68093874, 8.67969659, 8.67969659,
8.67969659, 8.67969659, 8.67661374, 8.67661374, 8.67661374,
8.67661374, 8.68148369, 8.68148369, 8.68148369, 8.68148369,
8.68079809, 8.68079809, 8.68079809, 8.68079809, 8.68712559,
8.68712559, 8.68712559, 8.68712559, 8.6978669 , 8.6978669 ,
8.6978669 , 8.6978669 , 8.70516092, 8.70516092, 8.70516092,
8.70516092, 8.69567966, 8.69567966, 8.69567966, 8.69567966,
8.58804587, 8.58804587, 8.58804587, 8.58804587, 7.97762984,
7.97762984, 7.97762984, 7.97762984, 4.70992139, 4.70992139,
4.70992139, 4.70992139, -4.43122609, -4.43122609, -4.43122609,
-4.43122609, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400366, 460.89400366, 460.89400366, 460.89400366,
509.90329157, 509.90329157, 509.90329157, 509.90329157,
1663.63547926, 1663.63547926, 1663.63547926, 1663.63547926,
1694.47462545, 1694.47462545, 1694.47462545, 1694.47462545,
1696.88211107, 1696.88211107, 1696.88211107, 1696.88211107,
1697.4475742 , 1697.4475742 , 1697.4475742 , 1697.4475742 ,
1696.59973906, 1696.59973906, 1696.59973906, 1696.59973906,
1693.8549966 , 1693.8549966 , 1693.8549966 , 1693.8549966 ,
1688.33995701, 1688.33995701, 1688.33995701, 1688.33995701,
1683.3210705 , 1683.3210705 , 1683.3210705 , 1683.3210705 ,
1682.21112957, 1682.21112957, 1682.21112957, 1682.21112957,
1683.21609253, 1683.21609253, 1683.21609253, 1683.21609253,
1685.32211388, 1685.32211388, 1685.32211388, 1685.32211388,
1688.36110403, 1688.36110403, 1688.36110403, 1688.36110403,
1689.95318059, 1689.95318059, 1689.95318059, 1689.95318059,
1690.40115385, 1690.40115385, 1690.40115385, 1690.40115385,
1690.46507549, 1690.46507549, 1690.46507549, 1690.46507549,
1690.41821033, 1690.41821033, 1690.41821033, 1690.41821033,
1689.1741802 , 1689.1741802 , 1689.1741802 , 1689.1741802 ,
1689.83735913, 1689.83735913, 1689.83735913, 1689.83735913,
1690.41986428, 1690.41986428, 1690.41986428, 1690.41986428,
1693.00179797, 1693.00179797, 1693.00179797, 1693.00179797,
1693.83768418, 1693.83768418, 1693.83768418, 1693.83768418,
1690.0603828 , 1690.0603828 , 1690.0603828 , 1690.0603828 ,
1663.86839515, 1663.86839515, 1663.86839515, 1663.86839515,
1504.50895424, 1504.50895424, 1504.50895424, 1504.50895424,
879.19259319, 879.19259319, 879.19259319, 879.19259319,
97.9252393 , 97.9252393 , 97.9252393 , 97.9252393 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924002,
5.99924002, 5.99924002, 5.99924002, 6.20229089, 6.20229089,
6.20229089, 6.20229089, 13.98207114, 13.98207114, 13.98207114,
13.98207114, 14.40679582, 14.40679582, 14.40679582, 14.40679582,
14.4068119 , 14.4068119 , 14.4068119 , 14.4068119 , 14.38943713,
14.38943713, 14.38943713, 14.38943713, 14.34820465, 14.34820465,
14.34820465, 14.34820465, 14.28633915, 14.28633915, 14.28633915,
14.28633915, 14.25163213, 14.25163213, 14.25163213, 14.25163213,
14.23754499, 14.23754499, 14.23754499, 14.23754499, 14.23024107,
14.23024107, 14.23024107, 14.23024107, 14.24174742, 14.24174742,
14.24174742, 14.24174742, 14.27889962, 14.27889962, 14.27889962,
14.27889962, 14.35759486, 14.35759486, 14.35759486, 14.35759486,
14.54696917, 14.54696917, 14.54696917, 14.54696917, 14.96266718,
14.96266718, 14.96266718, 14.96266718, 15.78642563, 15.78642563,
15.78642563, 15.78642563, 17.2487071 , 17.2487071 , 17.2487071 ,
17.2487071 , 19.53398038, 19.53398038, 19.53398038, 19.53398038,
22.71582829, 22.71582829, 22.71582829, 22.71582829, 26.01707632,
26.01707632, 26.01707632, 26.01707632, 28.22634492, 28.22634492,
28.22634492, 28.22634492, 29.54364225, 29.54364225, 29.54364225,
29.54364225, 30.21788417, 30.21788417, 30.21788417, 30.21788417,
30.48270507, 30.48270507, 30.48270507, 30.48270507, 30.13950965,
30.13950965, 30.13950965, 30.13950965, 26.97376455, 26.97376455,
26.97376455, 26.97376455, 15.48772497, 15.48772497, 15.48772497,
15.48772497, 6.14534066, 6.14534066, 6.14534066, 6.14534066,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749997,
19.59749997, 19.59749997, 19.59749997, 19.24583929, 19.24583929,
19.24583929, 19.24583929, 9.10319349, 9.10319349, 9.10319349,
9.10319349, 8.78429254, 8.78429254, 8.78429254, 8.78429254,
8.78782172, 8.78782172, 8.78782172, 8.78782172, 8.78396219,
8.78396219, 8.78396219, 8.78396219, 8.77215789, 8.77215789,
8.77215789, 8.77215789, 8.75660895, 8.75660895, 8.75660895,
8.75660895, 8.73364152, 8.73364152, 8.73364152, 8.73364152,
8.69780904, 8.69780904, 8.69780904, 8.69780904, 8.65998853,
8.65998853, 8.65998853, 8.65998853, 8.6435601 , 8.6435601 ,
8.6435601 , 8.6435601 , 8.64283542, 8.64283542, 8.64283542,
8.64283542, 8.65074582, 8.65074582, 8.65074582, 8.65074582,
8.6663228 , 8.6663228 , 8.6663228 , 8.6663228 , 8.67666959,
8.67666959, 8.67666959, 8.67666959, 8.67914542, 8.67914542,
8.67914542, 8.67914542, 8.67858192, 8.67858192, 8.67858192,
8.67858192, 8.6821574 , 8.6821574 , 8.6821574 , 8.6821574 ,
8.68024296, 8.68024296, 8.68024296, 8.68024296, 8.68336799,
8.68336799, 8.68336799, 8.68336799, 8.68857928, 8.68857928,
8.68857928, 8.68857928, 8.70010128, 8.70010128, 8.70010128,
8.70010128, 8.70339846, 8.70339846, 8.70339846, 8.70339846,
8.67320959, 8.67320959, 8.67320959, 8.67320959, 8.49611712,
8.49611712, 8.49611712, 8.49611712, 7.44340708, 7.44340708,
7.44340708, 7.44340708, 2.38465564, 2.38465564, 2.38465564,
2.38465564, -6.01693913, -6.01693913, -6.01693913, -6.01693913,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400163, 460.89400163, 460.89400163, 460.89400163,
483.62121622, 483.62121622, 483.62121622, 483.62121622,
1623.60310845, 1623.60310845, 1623.60310845, 1623.60310845,
1691.64939439, 1691.64939439, 1691.64939439, 1691.64939439,
1696.27722361, 1696.27722361, 1696.27722361, 1696.27722361,
1698.77708803, 1698.77708803, 1698.77708803, 1698.77708803,
1699.18532234, 1699.18532234, 1699.18532234, 1699.18532234,
1698.15429252, 1698.15429252, 1698.15429252, 1698.15429252,
1695.56154428, 1695.56154428, 1695.56154428, 1695.56154428,
1690.76866638, 1690.76866638, 1690.76866638, 1690.76866638,
1685.52418568, 1685.52418568, 1685.52418568, 1685.52418568,
1683.61591444, 1683.61591444, 1683.61591444, 1683.61591444,
1683.59485251, 1683.59485251, 1683.59485251, 1683.59485251,
1684.73977157, 1684.73977157, 1684.73977157, 1684.73977157,
1687.5610475 , 1687.5610475 , 1687.5610475 , 1687.5610475 ,
1689.67184918, 1689.67184918, 1689.67184918, 1689.67184918,
1690.44238069, 1690.44238069, 1690.44238069, 1690.44238069,
1690.51459133, 1690.51459133, 1690.51459133, 1690.51459133,
1689.39687915, 1689.39687915, 1689.39687915, 1689.39687915,
1689.68288809, 1689.68288809, 1689.68288809, 1689.68288809,
1689.44048287, 1689.44048287, 1689.44048287, 1689.44048287,
1690.53791285, 1690.53791285, 1690.53791285, 1690.53791285,
1692.47561232, 1692.47561232, 1692.47561232, 1692.47561232,
1692.13797522, 1692.13797522, 1692.13797522, 1692.13797522,
1686.64509245, 1686.64509245, 1686.64509245, 1686.64509245,
1636.82834627, 1636.82834627, 1636.82834627, 1636.82834627,
1380.81911464, 1380.81911464, 1380.81911464, 1380.81911464,
573.2312164 , 573.2312164 , 573.2312164 , 573.2312164 ,
49.93303743, 49.93303743, 49.93303743, 49.93303743,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924001,
5.99924001, 5.99924001, 5.99924001, 6.09328922, 6.09328922,
6.09328922, 6.09328922, 13.6337493 , 13.6337493 , 13.6337493 ,
13.6337493 , 14.37575791, 14.37575791, 14.37575791, 14.37575791,
14.39780884, 14.39780884, 14.39780884, 14.39780884, 14.39651705,
14.39651705, 14.39651705, 14.39651705, 14.37570225, 14.37570225,
14.37570225, 14.37570225, 14.32770213, 14.32770213, 14.32770213,
14.32770213, 14.28176433, 14.28176433, 14.28176433, 14.28176433,
14.26966435, 14.26966435, 14.26966435, 14.26966435, 14.26233205,
14.26233205, 14.26233205, 14.26233205, 14.25388775, 14.25388775,
14.25388775, 14.25388775, 14.26400898, 14.26400898, 14.26400898,
14.26400898, 14.31271717, 14.31271717, 14.31271717, 14.31271717,
14.43756452, 14.43756452, 14.43756452, 14.43756452, 14.73121993,
14.73121993, 14.73121993, 14.73121993, 15.34476464, 15.34476464,
15.34476464, 15.34476464, 16.4748069 , 16.4748069 , 16.4748069 ,
16.4748069 , 18.33346911, 18.33346911, 18.33346911, 18.33346911,
21.06320454, 21.06320454, 21.06320454, 21.06320454, 24.48736259,
24.48736259, 24.48736259, 24.48736259, 27.25029256, 27.25029256,
27.25029256, 27.25029256, 28.96000247, 28.96000247, 28.96000247,
28.96000247, 29.92152696, 29.92152696, 29.92152696, 29.92152696,
30.43071774, 30.43071774, 30.43071774, 30.43071774, 30.48158285,
30.48158285, 30.48158285, 30.48158285, 29.6931038 , 29.6931038 ,
29.6931038 , 29.6931038 , 24.48036157, 24.48036157, 24.48036157,
24.48036157, 10.97656215, 10.97656215, 10.97656215, 10.97656215,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749999,
19.59749999, 19.59749999, 19.59749999, 19.43452953, 19.43452953,
19.43452953, 19.43452953, 9.31334143, 9.31334143, 9.31334143,
9.31334143, 8.75472416, 8.75472416, 8.75472416, 8.75472416,
8.76559912, 8.76559912, 8.76559912, 8.76559912, 8.77409202,
8.77409202, 8.77409202, 8.77409202, 8.77426307, 8.77426307,
8.77426307, 8.77426307, 8.76671477, 8.76671477, 8.76671477,
8.76671477, 8.75319922, 8.75319922, 8.75319922, 8.75319922,
8.73118346, 8.73118346, 8.73118346, 8.73118346, 8.69883596,
8.69883596, 8.69883596, 8.69883596, 8.6628458 , 8.6628458 ,
8.6628458 , 8.6628458 , 8.64715364, 8.64715364, 8.64715364,
8.64715364, 8.64581082, 8.64581082, 8.64581082, 8.64581082,
8.6500293 , 8.6500293 , 8.6500293 , 8.6500293 , 8.66179058,
8.66179058, 8.66179058, 8.66179058, 8.67373076, 8.67373076,
8.67373076, 8.67373076, 8.67820923, 8.67820923, 8.67820923,
8.67820923, 8.68267612, 8.68267612, 8.68267612, 8.68267612,
8.68084071, 8.68084071, 8.68084071, 8.68084071, 8.68254662,
8.68254662, 8.68254662, 8.68254662, 8.68459313, 8.68459313,
8.68459313, 8.68459313, 8.69197139, 8.69197139, 8.69197139,
8.69197139, 8.70122804, 8.70122804, 8.70122804, 8.70122804,
8.69267096, 8.69267096, 8.69267096, 8.69267096, 8.64859801,
8.64859801, 8.64859801, 8.64859801, 8.32819372, 8.32819372,
8.32819372, 8.32819372, 6.54834767, 6.54834767, 6.54834767,
6.54834767, -0.62600176, -0.62600176, -0.62600176, -0.62600176,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400073, 460.89400073, 460.89400073, 460.89400073,
471.21870464, 471.21870464, 471.21870464, 471.21870464,
1578.16502252, 1578.16502252, 1578.16502252, 1578.16502252,
1687.33089712, 1687.33089712, 1687.33089712, 1687.33089712,
1693.02479095, 1693.02479095, 1693.02479095, 1693.02479095,
1697.54588006, 1697.54588006, 1697.54588006, 1697.54588006,
1699.94044253, 1699.94044253, 1699.94044253, 1699.94044253,
1700.41506288, 1700.41506288, 1700.41506288, 1700.41506288,
1699.56653883, 1699.56653883, 1699.56653883, 1699.56653883,
1697.376822 , 1697.376822 , 1697.376822 , 1697.376822 ,
1692.99504777, 1692.99504777, 1692.99504777, 1692.99504777,
1687.18710596, 1687.18710596, 1687.18710596, 1687.18710596,
1684.33621036, 1684.33621036, 1684.33621036, 1684.33621036,
1683.78877304, 1683.78877304, 1683.78877304, 1683.78877304,
1684.56316017, 1684.56316017, 1684.56316017, 1684.56316017,
1686.96306445, 1686.96306445, 1686.96306445, 1686.96306445,
1689.43070189, 1689.43070189, 1689.43070189, 1689.43070189,
1690.13566238, 1690.13566238, 1690.13566238, 1690.13566238,
1689.59333228, 1689.59333228, 1689.59333228, 1689.59333228,
1689.76788396, 1689.76788396, 1689.76788396, 1689.76788396,
1689.21360274, 1689.21360274, 1689.21360274, 1689.21360274,
1689.48965314, 1689.48965314, 1689.48965314, 1689.48965314,
1690.29182232, 1690.29182232, 1690.29182232, 1690.29182232,
1691.56567658, 1691.56567658, 1691.56567658, 1691.56567658,
1691.87982295, 1691.87982295, 1691.87982295, 1691.87982295,
1677.31394855, 1677.31394855, 1677.31394855, 1677.31394855,
1594.38740565, 1594.38740565, 1594.38740565, 1594.38740565,
1197.27536033, 1197.27536033, 1197.27536033, 1197.27536033,
299.03174315, 299.03174315, 299.03174315, 299.03174315,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}]}
minmod_hll
{'none_hll': [{'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924002, 5.99924002, 5.99924002, 5.99924002, 5.99969027,
5.99969027, 5.99969027, 5.99969027, 7.8345761 , 7.8345761 ,
7.8345761 , 7.8345761 , 12.09526797, 12.09526797, 12.09526797,
12.09526797, 13.95870911, 13.95870911, 13.95870911, 13.95870911,
14.2024846 , 14.2024846 , 14.2024846 , 14.2024846 , 14.22462015,
14.22462015, 14.22462015, 14.22462015, 14.25138163, 14.25138163,
14.25138163, 14.25138163, 14.2882224 , 14.2882224 , 14.2882224 ,
14.2882224 , 14.3412807 , 14.3412807 , 14.3412807 , 14.3412807 ,
14.42080121, 14.42080121, 14.42080121, 14.42080121, 14.54141153,
14.54141153, 14.54141153, 14.54141153, 14.72184791, 14.72184791,
14.72184791, 14.72184791, 14.98426056, 14.98426056, 14.98426056,
14.98426056, 15.35313156, 15.35313156, 15.35313156, 15.35313156,
15.85370678, 15.85370678, 15.85370678, 15.85370678, 16.50974361,
16.50974361, 16.50974361, 16.50974361, 17.34034306, 17.34034306,
17.34034306, 17.34034306, 18.35572577, 18.35572577, 18.35572577,
18.35572577, 19.55212633, 19.55212633, 19.55212633, 19.55212633,
20.90657097, 20.90657097, 20.90657097, 20.90657097, 22.372954 ,
22.372954 , 22.372954 , 22.372954 , 23.88071269, 23.88071269,
23.88071269, 23.88071269, 25.3350973 , 25.3350973 , 25.3350973 ,
25.3350973 , 26.61241916, 26.61241916, 26.61241916, 26.61241916,
27.53400021, 27.53400021, 27.53400021, 27.53400021, 27.7841184 ,
27.7841184 , 27.7841184 , 27.7841184 , 26.78077993, 26.78077993,
26.78077993, 26.78077993, 23.60906801, 23.60906801, 23.60906801,
23.60906801, 17.68592041, 17.68592041, 17.68592041, 17.68592041,
10.60486392, 10.60486392, 10.60486392, 10.60486392, 6.35968743,
6.35968743, 6.35968743, 6.35968743, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.59749996, 19.59749996, 19.59749996, 19.59749996, 19.59672155,
19.59672155, 19.59672155, 19.59672155, 16.30074788, 16.30074788,
16.30074788, 16.30074788, 10.81823663, 10.81823663, 10.81823663,
10.81823663, 8.99223833, 8.99223833, 8.99223833, 8.99223833,
8.77305402, 8.77305402, 8.77305402, 8.77305402, 8.76281569,
8.76281569, 8.76281569, 8.76281569, 8.75598985, 8.75598985,
8.75598985, 8.75598985, 8.75018727, 8.75018727, 8.75018727,
8.75018727, 8.74534323, 8.74534323, 8.74534323, 8.74534323,
8.74141416, 8.74141416, 8.74141416, 8.74141416, 8.73834339,
8.73834339, 8.73834339, 8.73834339, 8.73603409, 8.73603409,
8.73603409, 8.73603409, 8.7343356 , 8.7343356 , 8.7343356 ,
8.7343356 , 8.73304747, 8.73304747, 8.73304747, 8.73304747,
8.73194258, 8.73194258, 8.73194258, 8.73194258, 8.73080538,
8.73080538, 8.73080538, 8.73080538, 8.7294729 , 8.7294729 ,
8.7294729 , 8.7294729 , 8.72785766, 8.72785766, 8.72785766,
8.72785766, 8.7259233 , 8.7259233 , 8.7259233 , 8.7259233 ,
8.72356463, 8.72356463, 8.72356463, 8.72356463, 8.72026746,
8.72026746, 8.72026746, 8.72026746, 8.71423837, 8.71423837,
8.71423837, 8.71423837, 8.70028441, 8.70028441, 8.70028441,
8.70028441, 8.66473642, 8.66473642, 8.66473642, 8.66473642,
8.57356949, 8.57356949, 8.57356949, 8.57356949, 8.34500395,
8.34500395, 8.34500395, 8.34500395, 7.78890471, 7.78890471,
7.78890471, 7.78890471, 6.49775127, 6.49775127, 6.49775127,
6.49775127, 3.76893856, 3.76893856, 3.76893856, 3.76893856,
-1.00678094, -1.00678094, -1.00678094, -1.00678094, -5.69612119,
-5.69612119, -5.69612119, -5.69612119, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400232, 460.89400232, 460.89400232, 460.89400232,
460.94243518, 460.94243518, 460.94243518, 460.94243518,
703.2792111 , 703.2792111 , 703.2792111 , 703.2792111 ,
1337.55283241, 1337.55283241, 1337.55283241, 1337.55283241,
1636.90078605, 1636.90078605, 1636.90078605, 1636.90078605,
1676.20510287, 1676.20510287, 1676.20510287, 1676.20510287,
1677.82436261, 1677.82436261, 1677.82436261, 1677.82436261,
1678.89282951, 1678.89282951, 1678.89282951, 1678.89282951,
1679.87092338, 1679.87092338, 1679.87092338, 1679.87092338,
1680.79575443, 1680.79575443, 1680.79575443, 1680.79575443,
1681.69611111, 1681.69611111, 1681.69611111, 1681.69611111,
1682.59148341, 1682.59148341, 1682.59148341, 1682.59148341,
1683.49009397, 1683.49009397, 1683.49009397, 1683.49009397,
1684.38759814, 1684.38759814, 1684.38759814, 1684.38759814,
1685.26799937, 1685.26799937, 1685.26799937, 1685.26799937,
1686.10731691, 1686.10731691, 1686.10731691, 1686.10731691,
1686.87916975, 1686.87916975, 1686.87916975, 1686.87916975,
1687.56065205, 1687.56065205, 1687.56065205, 1687.56065205,
1688.13614788, 1688.13614788, 1688.13614788, 1688.13614788,
1688.59427472, 1688.59427472, 1688.59427472, 1688.59427472,
1688.9045266 , 1688.9045266 , 1688.9045266 , 1688.9045266 ,
1688.93900905, 1688.93900905, 1688.93900905, 1688.93900905,
1688.25216906, 1688.25216906, 1688.25216906, 1688.25216906,
1685.51318965, 1685.51318965, 1685.51318965, 1685.51318965,
1677.15515413, 1677.15515413, 1677.15515413, 1677.15515413,
1654.32146734, 1654.32146734, 1654.32146734, 1654.32146734,
1596.51937462, 1596.51937462, 1596.51937462, 1596.51937462,
1461.36177691, 1461.36177691, 1461.36177691, 1461.36177691,
1183.46702274, 1183.46702274, 1183.46702274, 1183.46702274,
737.79676841, 737.79676841, 737.79676841, 737.79676841,
276.70901347, 276.70901347, 276.70901347, 276.70901347,
59.57019196, 59.57019196, 59.57019196, 59.57019196,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}], 'minmod_rusanov': [{'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924002, 5.99924002, 5.99924002,
5.99924002, 5.99924007, 5.99924007, 5.99924007, 5.99924007,
5.99924031, 5.99924031, 5.99924031, 5.99924031, 5.99924126,
5.99924126, 5.99924126, 5.99924126, 5.99924514, 5.99924514,
5.99924514, 5.99924514, 5.99926098, 5.99926098, 5.99926098,
5.99926098, 5.99932544, 5.99932544, 5.99932544, 5.99932544,
5.99958696, 5.99958696, 5.99958696, 5.99958696, 6.00064486,
6.00064486, 6.00064486, 6.00064486, 6.00490572, 6.00490572,
6.00490572, 6.00490572, 6.02192165, 6.02192165, 6.02192165,
6.02192165, 6.08851456, 6.08851456, 6.08851456, 6.08851456,
6.33685385, 6.33685385, 6.33685385, 6.33685385, 7.17306942,
7.17306942, 7.17306942, 7.17306942, 9.48103328, 9.48103328,
9.48103328, 9.48103328, 12.16879608, 12.16879608, 12.16879608,
12.16879608, 13.57772571, 13.57772571, 13.57772571, 13.57772571,
14.0725543 , 14.0725543 , 14.0725543 , 14.0725543 , 14.20188264,
14.20188264, 14.20188264, 14.20188264, 14.21111476, 14.21111476,
14.21111476, 14.21111476, 14.19594776, 14.19594776, 14.19594776,
14.19594776, 14.16726566, 14.16726566, 14.16726566, 14.16726566,
14.14315288, 14.14315288, 14.14315288, 14.14315288, 14.13984508,
14.13984508, 14.13984508, 14.13984508, 14.15659401, 14.15659401,
14.15659401, 14.15659401, 14.22156771, 14.22156771, 14.22156771,
14.22156771, 14.38201257, 14.38201257, 14.38201257, 14.38201257,
14.70456648, 14.70456648, 14.70456648, 14.70456648, 15.27138194,
15.27138194, 15.27138194, 15.27138194, 16.17496693, 16.17496693,
16.17496693, 16.17496693, 17.5106624 , 17.5106624 , 17.5106624 ,
17.5106624 , 19.3615367 , 19.3615367 , 19.3615367 , 19.3615367 ,
21.75080399, 21.75080399, 21.75080399, 21.75080399, 24.33387543,
24.33387543, 24.33387543, 24.33387543, 26.40333256, 26.40333256,
26.40333256, 26.40333256, 27.90910754, 27.90910754, 27.90910754,
27.90910754, 28.93697999, 28.93697999, 28.93697999, 28.93697999,
29.53951302, 29.53951302, 29.53951302, 29.53951302, 29.73938869,
29.73938869, 29.73938869, 29.73938869, 29.0153186 , 29.0153186 ,
29.0153186 , 29.0153186 , 23.59070901, 23.59070901, 23.59070901,
23.59070901, 10.9415393 , 10.9415393 , 10.9415393 , 10.9415393 ,
6.3541182 , 6.3541182 , 6.3541182 , 6.3541182 , 6.00760847,
6.00760847, 6.00760847, 6.00760847, 5.99286029, 5.99286029,
5.99286029, 5.99286029, 5.99243117, 5.99243117, 5.99243117,
5.99243117, 5.99242027, 5.99242027, 5.99242027, 5.99242027,
5.99242001, 5.99242001, 5.99242001, 5.99242001, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.59749999, 19.59749999,
19.59749999, 19.59749999, 19.59749997, 19.59749997, 19.59749997,
19.59749997, 19.59749987, 19.59749987, 19.59749987, 19.59749987,
19.59749947, 19.59749947, 19.59749947, 19.59749947, 19.59749783,
19.59749783, 19.59749783, 19.59749783, 19.59749112, 19.59749112,
19.59749112, 19.59749112, 19.59746373, 19.59746373, 19.59746373,
19.59746373, 19.59735229, 19.59735229, 19.59735229, 19.59735229,
19.59690001, 19.59690001, 19.59690001, 19.59690001, 19.59506896,
19.59506896, 19.59506896, 19.59506896, 19.58767704, 19.58767704,
19.58767704, 19.58767704, 19.5579792 , 19.5579792 , 19.5579792 ,
19.5579792 , 19.4402373 , 19.4402373 , 19.4402373 , 19.4402373 ,
18.99425966, 18.99425966, 18.99425966, 18.99425966, 17.53641444,
17.53641444, 17.53641444, 17.53641444, 14.1519315 , 14.1519315 ,
14.1519315 , 14.1519315 , 10.74514786, 10.74514786, 10.74514786,
10.74514786, 9.38012207, 9.38012207, 9.38012207, 9.38012207,
8.93087961, 8.93087961, 8.93087961, 8.93087961, 8.78942687,
8.78942687, 8.78942687, 8.78942687, 8.74294599, 8.74294599,
8.74294599, 8.74294599, 8.72650952, 8.72650952, 8.72650952,
8.72650952, 8.72109124, 8.72109124, 8.72109124, 8.72109124,
8.71933594, 8.71933594, 8.71933594, 8.71933594, 8.71788858,
8.71788858, 8.71788858, 8.71788858, 8.71573795, 8.71573795,
8.71573795, 8.71573795, 8.71238766, 8.71238766, 8.71238766,
8.71238766, 8.70882217, 8.70882217, 8.70882217, 8.70882217,
8.70606951, 8.70606951, 8.70606951, 8.70606951, 8.70384986,
8.70384986, 8.70384986, 8.70384986, 8.70175254, 8.70175254,
8.70175254, 8.70175254, 8.69917307, 8.69917307, 8.69917307,
8.69917307, 8.69663571, 8.69663571, 8.69663571, 8.69663571,
8.69489541, 8.69489541, 8.69489541, 8.69489541, 8.69376268,
8.69376268, 8.69376268, 8.69376268, 8.69268692, 8.69268692,
8.69268692, 8.69268692, 8.69101355, 8.69101355, 8.69101355,
8.69101355, 8.68679018, 8.68679018, 8.68679018, 8.68679018,
8.67169423, 8.67169423, 8.67169423, 8.67169423, 8.59940696,
8.59940696, 8.59940696, 8.59940696, 8.19829508, 8.19829508,
8.19829508, 8.19829508, 6.15081393, 6.15081393, 6.15081393,
6.15081393, -0.62046552, -0.62046552, -0.62046552, -0.62046552,
-5.79868084, -5.79868084, -5.79868084, -5.79868084, -6.18525764,
-6.18525764, -6.18525764, -6.18525764, -6.19606479, -6.19606479,
-6.19606479, -6.19606479, -6.19632368, -6.19632368, -6.19632368,
-6.19632368, -6.19632985, -6.19632985, -6.19632985, -6.19632985,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400001, 460.89400001, 460.89400001, 460.89400001,
460.89400003, 460.89400003, 460.89400003, 460.89400003,
460.89400011, 460.89400011, 460.89400011, 460.89400011,
460.89400047, 460.89400047, 460.89400047, 460.89400047,
460.89400194, 460.89400194, 460.89400194, 460.89400194,
460.894008 , 460.894008 , 460.894008 , 460.894008 ,
460.89403291, 460.89403291, 460.89403291, 460.89403291,
460.89413504, 460.89413504, 460.89413504, 460.89413504,
460.89455274, 460.89455274, 460.89455274, 460.89455274,
460.89625675, 460.89625675, 460.89625675, 460.89625675,
460.90319027, 460.90319027, 460.90319027, 460.90319027,
460.93133142, 460.93133142, 460.93133142, 460.93133142,
461.04527487, 461.04527487, 461.04527487, 461.04527487,
461.50551801, 461.50551801, 461.50551801, 461.50551801,
463.35874362, 463.35874362, 463.35874362, 463.35874362,
470.77399165, 470.77399165, 470.77399165, 470.77399165,
499.91311649, 499.91311649, 499.91311649, 499.91311649,
607.72907468, 607.72907468, 607.72907468, 607.72907468,
937.52073538, 937.52073538, 937.52073538, 937.52073538,
1342.554988 , 1342.554988 , 1342.554988 , 1342.554988 ,
1565.38590105, 1565.38590105, 1565.38590105, 1565.38590105,
1644.82582902, 1644.82582902, 1644.82582902, 1644.82582902,
1670.41110412, 1670.41110412, 1670.41110412, 1670.41110412,
1678.82418254, 1678.82418254, 1678.82418254, 1678.82418254,
1682.32094248, 1682.32094248, 1682.32094248, 1682.32094248,
1684.65256293, 1684.65256293, 1684.65256293, 1684.65256293,
1686.56765509, 1686.56765509, 1686.56765509, 1686.56765509,
1688.04385825, 1688.04385825, 1688.04385825, 1688.04385825,
1689.13073435, 1689.13073435, 1689.13073435, 1689.13073435,
1689.86045769, 1689.86045769, 1689.86045769, 1689.86045769,
1690.38179979, 1690.38179979, 1690.38179979, 1690.38179979,
1690.86871462, 1690.86871462, 1690.86871462, 1690.86871462,
1691.29315664, 1691.29315664, 1691.29315664, 1691.29315664,
1691.56097335, 1691.56097335, 1691.56097335, 1691.56097335,
1691.61386226, 1691.61386226, 1691.61386226, 1691.61386226,
1691.50761164, 1691.50761164, 1691.50761164, 1691.50761164,
1691.41625769, 1691.41625769, 1691.41625769, 1691.41625769,
1691.40650495, 1691.40650495, 1691.40650495, 1691.40650495,
1691.37915294, 1691.37915294, 1691.37915294, 1691.37915294,
1691.2478804 , 1691.2478804 , 1691.2478804 , 1691.2478804 ,
1690.632513 , 1690.632513 , 1690.632513 , 1690.632513 ,
1687.30275079, 1687.30275079, 1687.30275079, 1687.30275079,
1667.9703053 , 1667.9703053 , 1667.9703053 , 1667.9703053 ,
1564.50056367, 1564.50056367, 1564.50056367, 1564.50056367,
1129.34533559, 1129.34533559, 1129.34533559, 1129.34533559,
308.00600506, 308.00600506, 308.00600506, 308.00600506,
55.7105872 , 55.7105872 , 55.7105872 , 55.7105872 ,
46.31374378, 46.31374378, 46.31374378, 46.31374378,
46.10021519, 46.10021519, 46.10021519, 46.10021519,
46.09512428, 46.09512428, 46.09512428, 46.09512428,
46.09500296, 46.09500296, 46.09500296, 46.09500296,
46.09500007, 46.09500007, 46.09500007, 46.09500007,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}], 'minmod_hll': [{'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924175,
5.99924175, 5.99924175, 5.99924175, 7.50328369, 7.50328369,
7.50328369, 7.50328369, 12.95563948, 12.95563948, 12.95563948,
12.95563948, 14.21461244, 14.21461244, 14.21461244, 14.21461244,
14.26597869, 14.26597869, 14.26597869, 14.26597869, 14.29620398,
14.29620398, 14.29620398, 14.29620398, 14.31140104, 14.31140104,
14.31140104, 14.31140104, 14.31100702, 14.31100702, 14.31100702,
14.31100702, 14.29446786, 14.29446786, 14.29446786, 14.29446786,
14.25457189, 14.25457189, 14.25457189, 14.25457189, 14.22089279,
14.22089279, 14.22089279, 14.22089279, 14.2140995 , 14.2140995 ,
14.2140995 , 14.2140995 , 14.230855 , 14.230855 , 14.230855 ,
14.230855 , 14.30451572, 14.30451572, 14.30451572, 14.30451572,
14.49280321, 14.49280321, 14.49280321, 14.49280321, 14.87118548,
14.87118548, 14.87118548, 14.87118548, 15.55993934, 15.55993934,
15.55993934, 15.55993934, 16.72599032, 16.72599032, 16.72599032,
16.72599032, 18.54190558, 18.54190558, 18.54190558, 18.54190558,
21.12396593, 21.12396593, 21.12396593, 21.12396593, 24.34154715,
24.34154715, 24.34154715, 24.34154715, 27.04434474, 27.04434474,
27.04434474, 27.04434474, 28.79121568, 28.79121568, 28.79121568,
28.79121568, 29.84306714, 29.84306714, 29.84306714, 29.84306714,
30.37592471, 30.37592471, 30.37592471, 30.37592471, 30.48110966,
30.48110966, 30.48110966, 30.48110966, 29.62085485, 29.62085485,
29.62085485, 29.62085485, 24.0650166 , 24.0650166 , 24.0650166 ,
24.0650166 , 11.01922569, 11.01922569, 11.01922569, 11.01922569,
6.02823674, 6.02823674, 6.02823674, 6.02823674, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749697,
19.59749697, 19.59749697, 19.59749697, 16.95529738, 16.95529738,
16.95529738, 16.95529738, 9.94886504, 9.94886504, 9.94886504,
9.94886504, 8.7751003 , 8.7751003 , 8.7751003 , 8.7751003 ,
8.75876513, 8.75876513, 8.75876513, 8.75876513, 8.75481978,
8.75481978, 8.75481978, 8.75481978, 8.74649755, 8.74649755,
8.74649755, 8.74649755, 8.73232047, 8.73232047, 8.73232047,
8.73232047, 8.71080399, 8.71080399, 8.71080399, 8.71080399,
8.67933271, 8.67933271, 8.67933271, 8.67933271, 8.65538411,
8.65538411, 8.65538411, 8.65538411, 8.64657396, 8.64657396,
8.64657396, 8.64657396, 8.64656243, 8.64656243, 8.64656243,
8.64656243, 8.65512649, 8.65512649, 8.65512649, 8.65512649,
8.67124445, 8.67124445, 8.67124445, 8.67124445, 8.68455317,
8.68455317, 8.68455317, 8.68455317, 8.6926855 , 8.6926855 ,
8.6926855 , 8.6926855 , 8.6977869 , 8.6977869 , 8.6977869 ,
8.6977869 , 8.70066537, 8.70066537, 8.70066537, 8.70066537,
8.70186509, 8.70186509, 8.70186509, 8.70186509, 8.7025879 ,
8.7025879 , 8.7025879 , 8.7025879 , 8.70423534, 8.70423534,
8.70423534, 8.70423534, 8.70472602, 8.70472602, 8.70472602,
8.70472602, 8.70339833, 8.70339833, 8.70339833, 8.70339833,
8.69328274, 8.69328274, 8.69328274, 8.69328274, 8.63090024,
8.63090024, 8.63090024, 8.63090024, 8.27365336, 8.27365336,
8.27365336, 8.27365336, 6.3370291 , 6.3370291 , 6.3370291 ,
6.3370291 , -0.42820866, -0.42820866, -0.42820866, -0.42820866,
-6.14805215, -6.14805215, -6.14805215, -6.14805215, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89418872, 460.89418872, 460.89418872, 460.89418872,
662.15281107, 662.15281107, 662.15281107, 662.15281107,
1476.59370104, 1476.59370104, 1476.59370104, 1476.59370104,
1682.0283287 , 1682.0283287 , 1682.0283287 , 1682.0283287 ,
1687.07142158, 1687.07142158, 1687.07142158, 1687.07142158,
1689.30892977, 1689.30892977, 1689.30892977, 1689.30892977,
1690.54048929, 1690.54048929, 1690.54048929, 1690.54048929,
1690.25795278, 1690.25795278, 1690.25795278, 1690.25795278,
1688.31057081, 1688.31057081, 1688.31057081, 1688.31057081,
1684.27799582, 1684.27799582, 1684.27799582, 1684.27799582,
1681.35018005, 1681.35018005, 1681.35018005, 1681.35018005,
1680.9883242 , 1680.9883242 , 1680.9883242 , 1680.9883242 ,
1682.0518864 , 1682.0518864 , 1682.0518864 , 1682.0518864 ,
1684.46279298, 1684.46279298, 1684.46279298, 1684.46279298,
1688.12789868, 1688.12789868, 1688.12789868, 1688.12789868,
1691.19706367, 1691.19706367, 1691.19706367, 1691.19706367,
1693.28049544, 1693.28049544, 1693.28049544, 1693.28049544,
1694.83831558, 1694.83831558, 1694.83831558, 1694.83831558,
1696.01546425, 1696.01546425, 1696.01546425, 1696.01546425,
1696.7906615 , 1696.7906615 , 1696.7906615 , 1696.7906615 ,
1697.18753803, 1697.18753803, 1697.18753803, 1697.18753803,
1697.04110035, 1697.04110035, 1697.04110035, 1697.04110035,
1696.87609094, 1696.87609094, 1696.87609094, 1696.87609094,
1696.40061659, 1696.40061659, 1696.40061659, 1696.40061659,
1693.52125738, 1693.52125738, 1693.52125738, 1693.52125738,
1676.64941951, 1676.64941951, 1676.64941951, 1676.64941951,
1582.38983336, 1582.38983336, 1582.38983336, 1582.38983336,
1162.96939042, 1162.96939042, 1162.96939042, 1162.96939042,
318.04766103, 318.04766103, 318.04766103, 318.04766103,
47.31074005, 47.31074005, 47.31074005, 47.31074005,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}], 'minmod_hllc': [{'rho': array([5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633]), 'P': array([460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 12.70268903,
12.70268903, 12.70268903, 12.70268903, 7.94541357, 7.94541357,
7.94541357, 7.94541357, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 7.09582484,
7.09582484, 7.09582484, 7.09582484, -3.14962884, -3.14962884,
-3.14962884, -3.14962884, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1125.57882152, 1125.57882152, 1125.57882152, 1125.57882152,
167.18428479, 167.18428479, 167.18428479, 167.18428479,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 14.65201256,
14.65201256, 14.65201256, 14.65201256, 14.1609294 , 14.1609294 ,
14.1609294 , 14.1609294 , 6.49084323, 6.49084323, 6.49084323,
6.49084323, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 10.42468887,
10.42468887, 10.42468887, 10.42468887, 3.58967233, 3.58967233,
3.58967233, 3.58967233, -5.58060798, -5.58060798, -5.58060798,
-5.58060798, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1509.2991421 , 1509.2991421 , 1509.2991421 , 1509.2991421 ,
815.9988919 , 815.9988919 , 815.9988919 , 815.9988919 ,
60.09885512, 60.09885512, 60.09885512, 60.09885512,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 13.6342065 ,
13.6342065 , 13.6342065 , 13.6342065 , 18.15293127, 18.15293127,
18.15293127, 18.15293127, 12.16929563, 12.16929563, 12.16929563,
12.16929563, 6.00303438, 6.00303438, 6.00303438, 6.00303438,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.41089904,
11.41089904, 11.41089904, 11.41089904, 7.63691331, 7.63691331,
7.63691331, 7.63691331, 1.02824549, 1.02824549, 1.02824549,
1.02824549, -6.18504836, -6.18504836, -6.18504836, -6.18504836,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1503.91400046, 1503.91400046, 1503.91400046, 1503.91400046,
1488.96829463, 1488.96829463, 1488.96829463, 1488.96829463,
470.61112439, 470.61112439, 470.61112439, 470.61112439,
46.315976 , 46.315976 , 46.315976 , 46.315976 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 11.54713795,
11.54713795, 11.54713795, 11.54713795, 19.12548955, 19.12548955,
19.12548955, 19.12548955, 18.48218756, 18.48218756, 18.48218756,
18.48218756, 9.4679153 , 9.4679153 , 9.4679153 , 9.4679153 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.70335328,
11.70335328, 11.70335328, 11.70335328, 8.99974457, 8.99974457,
8.99974457, 8.99974457, 6.45769361, 6.45769361, 6.45769361,
6.45769361, -1.86410647, -1.86410647, -1.86410647, -1.86410647,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1350.42527422, 1350.42527422, 1350.42527422, 1350.42527422,
1792.05437148, 1792.05437148, 1792.05437148, 1792.05437148,
1224.90003591, 1224.90003591, 1224.90003591, 1224.90003591,
223.0972597 , 223.0972597 , 223.0972597 , 223.0972597 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.55899688,
10.55899688, 10.55899688, 10.55899688, 17.52496537, 17.52496537,
17.52496537, 17.52496537, 19.92934821, 19.92934821, 19.92934821,
19.92934821, 17.99707036, 17.99707036, 17.99707036, 17.99707036,
7.26803214, 7.26803214, 7.26803214, 7.26803214, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.63398171,
11.63398171, 11.63398171, 11.63398171, 9.12548235, 9.12548235,
9.12548235, 9.12548235, 8.70353792, 8.70353792, 8.70353792,
8.70353792, 4.889767 , 4.889767 , 4.889767 , 4.889767 ,
-4.54241731, -4.54241731, -4.54241731, -4.54241731, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1202.7937303 , 1202.7937303 , 1202.7937303 , 1202.7937303 ,
1836.37786652, 1836.37786652, 1836.37786652, 1836.37786652,
1649.76861147, 1649.76861147, 1649.76861147, 1649.76861147,
943.78416678, 943.78416678, 943.78416678, 943.78416678,
93.25195493, 93.25195493, 93.25195493, 93.25195493,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.30570418,
10.30570418, 10.30570418, 10.30570418, 15.31637241, 15.31637241,
15.31637241, 15.31637241, 18.9791078 , 18.9791078 , 18.9791078 ,
18.9791078 , 21.63035995, 21.63035995, 21.63035995, 21.63035995,
15.46350461, 15.46350461, 15.46350461, 15.46350461, 6.2390466 ,
6.2390466 , 6.2390466 , 6.2390466 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.76919101,
11.76919101, 11.76919101, 11.76919101, 8.80224489, 8.80224489,
8.80224489, 8.80224489, 9.09238506, 9.09238506, 9.09238506,
9.09238506, 8.12333611, 8.12333611, 8.12333611, 8.12333611,
2.96585865, 2.96585865, 2.96585865, 2.96585865, -5.89754921,
-5.89754921, -5.89754921, -5.89754921, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1135.16202434, 1135.16202434, 1135.16202434, 1135.16202434,
1759.44703479, 1759.44703479, 1759.44703479, 1759.44703479,
1733.21469229, 1733.21469229, 1733.21469229, 1733.21469229,
1537.63026242, 1537.63026242, 1537.63026242, 1537.63026242,
655.14721744, 655.14721744, 655.14721744, 655.14721744,
52.68789681, 52.68789681, 52.68789681, 52.68789681,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.21337442,
10.21337442, 10.21337442, 10.21337442, 13.99862304, 13.99862304,
13.99862304, 13.99862304, 17.03111413, 17.03111413, 17.03111413,
17.03111413, 21.43390917, 21.43390917, 21.43390917, 21.43390917,
21.7588112 , 21.7588112 , 21.7588112 , 21.7588112 , 12.16152619,
12.16152619, 12.16152619, 12.16152619, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 12.13621027,
12.13621027, 12.13621027, 12.13621027, 8.62418669, 8.62418669,
8.62418669, 8.62418669, 8.95777872, 8.95777872, 8.95777872,
8.95777872, 8.81664421, 8.81664421, 8.81664421, 8.81664421,
7.33932219, 7.33932219, 7.33932219, 7.33932219, 0.56862407,
0.56862407, 0.56862407, 0.56862407, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1099.96956372, 1099.96956372, 1099.96956372, 1099.96956372,
1710.4465244 , 1710.4465244 , 1710.4465244 , 1710.4465244 ,
1704.42259337, 1704.42259337, 1704.42259337, 1704.42259337,
1695.22675438, 1695.22675438, 1695.22675438, 1695.22675438,
1362.18896468, 1362.18896468, 1362.18896468, 1362.18896468,
395.14058089, 395.14058089, 395.14058089, 395.14058089,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.22313019,
10.22313019, 10.22313019, 10.22313019, 13.34785117, 13.34785117,
13.34785117, 13.34785117, 15.5094266 , 15.5094266 , 15.5094266 ,
15.5094266 , 19.56706902, 19.56706902, 19.56706902, 19.56706902,
22.6681537 , 22.6681537 , 22.6681537 , 22.6681537 , 20.82008041,
20.82008041, 20.82008041, 20.82008041, 9.11732965, 9.11732965,
9.11732965, 9.11732965, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 12.52788663,
12.52788663, 12.52788663, 12.52788663, 8.58922451, 8.58922451,
8.58922451, 8.58922451, 8.81451991, 8.81451991, 8.81451991,
8.81451991, 8.8340112 , 8.8340112 , 8.8340112 , 8.8340112 ,
8.5886347 , 8.5886347 , 8.5886347 , 8.5886347 , 6.18718895,
6.18718895, 6.18718895, 6.18718895, -2.27317635, -2.27317635,
-2.27317635, -2.27317635, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1067.13409325, 1067.13409325, 1067.13409325, 1067.13409325,
1690.10203345, 1690.10203345, 1690.10203345, 1690.10203345,
1677.77771501, 1677.77771501, 1677.77771501, 1677.77771501,
1699.24085344, 1699.24085344, 1699.24085344, 1699.24085344,
1626.99145622, 1626.99145622, 1626.99145622, 1626.99145622,
1137.85447905, 1137.85447905, 1137.85447905, 1137.85447905,
195.96745623, 195.96745623, 195.96745623, 195.96745623,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.20035213,
10.20035213, 10.20035213, 10.20035213, 13.15694058, 13.15694058,
13.15694058, 13.15694058, 14.4992978 , 14.4992978 , 14.4992978 ,
14.4992978 , 17.41908334, 17.41908334, 17.41908334, 17.41908334,
21.67196262, 21.67196262, 21.67196262, 21.67196262, 23.40867052,
23.40867052, 23.40867052, 23.40867052, 18.47858247, 18.47858247,
18.47858247, 18.47858247, 7.07383389, 7.07383389, 7.07383389,
7.07383389, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 12.96924236,
12.96924236, 12.96924236, 12.96924236, 8.58665363, 8.58665363,
8.58665363, 8.58665363, 8.73327632, 8.73327632, 8.73327632,
8.73327632, 8.76976507, 8.76976507, 8.76976507, 8.76976507,
8.78887952, 8.78887952, 8.78887952, 8.78887952, 8.21209119,
8.21209119, 8.21209119, 8.21209119, 4.54306925, 4.54306925,
4.54306925, 4.54306925, -4.80641289, -4.80641289, -4.80641289,
-4.80641289, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1034.34945451, 1034.34945451, 1034.34945451, 1034.34945451,
1679.03320625, 1679.03320625, 1679.03320625, 1679.03320625,
1664.63745801, 1664.63745801, 1664.63745801, 1664.63745801,
1684.09424 , 1684.09424 , 1684.09424 , 1684.09424 ,
1673.42176972, 1673.42176972, 1673.42176972, 1673.42176972,
1539.49588798, 1539.49588798, 1539.49588798, 1539.49588798,
861.67230835, 861.67230835, 861.67230835, 861.67230835,
84.43620991, 84.43620991, 84.43620991, 84.43620991,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.02954724,
10.02954724, 10.02954724, 10.02954724, 13.30998119, 13.30998119,
13.30998119, 13.30998119, 13.9266306 , 13.9266306 , 13.9266306 ,
13.9266306 , 15.83435153, 15.83435153, 15.83435153, 15.83435153,
19.57096804, 19.57096804, 19.57096804, 19.57096804, 23.30670777,
23.30670777, 23.30670777, 23.30670777, 23.49784333, 23.49784333,
23.49784333, 23.49784333, 14.97949036, 14.97949036, 14.97949036,
14.97949036, 6.10888587, 6.10888587, 6.10888587, 6.10888587,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 13.49842594,
13.49842594, 13.49842594, 13.49842594, 8.59916052, 8.59916052,
8.59916052, 8.59916052, 8.69439542, 8.69439542, 8.69439542,
8.69439542, 8.71379635, 8.71379635, 8.71379635, 8.71379635,
8.78352452, 8.78352452, 8.78352452, 8.78352452, 8.67635375,
8.67635375, 8.67635375, 8.67635375, 7.62020122, 7.62020122,
7.62020122, 7.62020122, 2.3026965 , 2.3026965 , 2.3026965 ,
2.3026965 , -6.05984314, -6.05984314, -6.05984314, -6.05984314,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
999.1673707 , 999.1673707 , 999.1673707 , 999.1673707 ,
1673.29394535, 1673.29394535, 1673.29394535, 1673.29394535,
1659.65444353, 1659.65444353, 1659.65444353, 1659.65444353,
1670.2297542 , 1670.2297542 , 1670.2297542 , 1670.2297542 ,
1671.94982265, 1671.94982265, 1671.94982265, 1671.94982265,
1649.23987565, 1649.23987565, 1649.23987565, 1649.23987565,
1412.10782611, 1412.10782611, 1412.10782611, 1412.10782611,
566.73710562, 566.73710562, 566.73710562, 566.73710562,
48.98587735, 48.98587735, 48.98587735, 48.98587735,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 9.65533767,
9.65533767, 9.65533767, 9.65533767, 13.68252917, 13.68252917,
13.68252917, 13.68252917, 13.71303715, 13.71303715, 13.71303715,
13.71303715, 14.79110894, 14.79110894, 14.79110894, 14.79110894,
17.50309985, 17.50309985, 17.50309985, 17.50309985, 21.84028144,
21.84028144, 21.84028144, 21.84028144, 24.32473078, 24.32473078,
24.32473078, 24.32473078, 22.68068249, 22.68068249, 22.68068249,
22.68068249, 11.03686103, 11.03686103, 11.03686103, 11.03686103,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 14.14741904,
14.14741904, 14.14741904, 14.14741904, 8.62178593, 8.62178593,
8.62178593, 8.62178593, 8.68626335, 8.68626335, 8.68626335,
8.68626335, 8.68737656, 8.68737656, 8.68737656, 8.68737656,
8.74732911, 8.74732911, 8.74732911, 8.74732911, 8.74308312,
8.74308312, 8.74308312, 8.74308312, 8.49452049, 8.49452049,
8.49452049, 8.49452049, 6.69456047, 6.69456047, 6.69456047,
6.69456047, -0.52317349, -0.52317349, -0.52317349, -0.52317349,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
958.44988475, 958.44988475, 958.44988475, 958.44988475,
1671.21493997, 1671.21493997, 1671.21493997, 1671.21493997,
1659.26320397, 1659.26320397, 1659.26320397, 1659.26320397,
1662.91567575, 1662.91567575, 1662.91567575, 1662.91567575,
1664.13115487, 1664.13115487, 1664.13115487, 1664.13115487,
1665.297139 , 1665.297139 , 1665.297139 , 1665.297139 ,
1610.83715793, 1610.83715793, 1610.83715793, 1610.83715793,
1229.41899476, 1229.41899476, 1229.41899476, 1229.41899476,
305.12836104, 305.12836104, 305.12836104, 305.12836104,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 9.17559129,
9.17559129, 9.17559129, 9.17559129, 14.02365251, 14.02365251,
14.02365251, 14.02365251, 13.76047403, 13.76047403, 13.76047403,
13.76047403, 14.22025893, 14.22025893, 14.22025893, 14.22025893,
15.99479628, 15.99479628, 15.99479628, 15.99479628, 19.62994353,
19.62994353, 19.62994353, 19.62994353, 23.68403303, 23.68403303,
23.68403303, 23.68403303, 24.86589844, 24.86589844, 24.86589844,
24.86589844, 20.52055368, 20.52055368, 20.52055368, 20.52055368,
8.00814937, 8.00814937, 8.00814937, 8.00814937, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 14.77025981,
14.77025981, 14.77025981, 14.77025981, 8.70672217, 8.70672217,
8.70672217, 8.70672217, 8.71185652, 8.71185652, 8.71185652,
8.71185652, 8.69053038, 8.69053038, 8.69053038, 8.69053038,
8.72003541, 8.72003541, 8.72003541, 8.72003541, 8.7334469 ,
8.7334469 , 8.7334469 , 8.7334469 , 8.68309091, 8.68309091,
8.68309091, 8.68309091, 8.20418663, 8.20418663, 8.20418663,
8.20418663, 5.29342736, 5.29342736, 5.29342736, 5.29342736,
-3.63537019, -3.63537019, -3.63537019, -3.63537019, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
899.70891154, 899.70891154, 899.70891154, 899.70891154,
1681.7730429 , 1681.7730429 , 1681.7730429 , 1681.7730429 ,
1664.38132397, 1664.38132397, 1664.38132397, 1664.38132397,
1661.56266831, 1661.56266831, 1661.56266831, 1661.56266831,
1658.70555605, 1658.70555605, 1658.70555605, 1658.70555605,
1663.28075963, 1663.28075963, 1663.28075963, 1663.28075963,
1656.53499514, 1656.53499514, 1656.53499514, 1656.53499514,
1545.9854808 , 1545.9854808 , 1545.9854808 , 1545.9854808 ,
979.576008 , 979.576008 , 979.576008 , 979.576008 ,
128.91410923, 128.91410923, 128.91410923, 128.91410923,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 8.67292336,
8.67292336, 8.67292336, 8.67292336, 14.19695604, 14.19695604,
14.19695604, 14.19695604, 13.91254383, 13.91254383, 13.91254383,
13.91254383, 14.02878657, 14.02878657, 14.02878657, 14.02878657,
15.03196644, 15.03196644, 15.03196644, 15.03196644, 17.65576232,
17.65576232, 17.65576232, 17.65576232, 21.93563921, 21.93563921,
21.93563921, 21.93563921, 24.89950561, 24.89950561, 24.89950561,
24.89950561, 24.90292343, 24.90292343, 24.90292343, 24.90292343,
16.88767399, 16.88767399, 16.88767399, 16.88767399, 6.4143529 ,
6.4143529 , 6.4143529 , 6.4143529 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 15.37284549,
15.37284549, 15.37284549, 15.37284549, 8.76622365, 8.76622365,
8.76622365, 8.76622365, 8.77570001, 8.77570001, 8.77570001,
8.77570001, 8.73436398, 8.73436398, 8.73436398, 8.73436398,
8.7207272 , 8.7207272 , 8.7207272 , 8.7207272 , 8.71892386,
8.71892386, 8.71892386, 8.71892386, 8.70849585, 8.70849585,
8.70849585, 8.70849585, 8.59195686, 8.59195686, 8.59195686,
8.59195686, 7.72578913, 7.72578913, 7.72578913, 7.72578913,
3.25941775, 3.25941775, 3.25941775, 3.25941775, -5.6791429 ,
-5.6791429 , -5.6791429 , -5.6791429 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
829.22159977, 829.22159977, 829.22159977, 829.22159977,
1689.36090883, 1689.36090883, 1689.36090883, 1689.36090883,
1675.83139319, 1675.83139319, 1675.83139319, 1675.83139319,
1667.43562786, 1667.43562786, 1667.43562786, 1667.43562786,
1658.97291748, 1658.97291748, 1658.97291748, 1658.97291748,
1660.46027375, 1660.46027375, 1660.46027375, 1660.46027375,
1662.95586925, 1662.95586925, 1662.95586925, 1662.95586925,
1639.8598087 , 1639.8598087 , 1639.8598087 , 1639.8598087 ,
1441.93374147, 1441.93374147, 1441.93374147, 1441.93374147,
679.55620664, 679.55620664, 679.55620664, 679.55620664,
58.13303639, 58.13303639, 58.13303639, 58.13303639,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 8.1726475 ,
8.1726475 , 8.1726475 , 8.1726475 , 14.2751961 , 14.2751961 ,
14.2751961 , 14.2751961 , 14.0398136 , 14.0398136 , 14.0398136 ,
14.0398136 , 14.02269412, 14.02269412, 14.02269412, 14.02269412,
14.51703694, 14.51703694, 14.51703694, 14.51703694, 16.24603055,
16.24603055, 16.24603055, 16.24603055, 19.72642061, 19.72642061,
19.72642061, 19.72642061, 23.89358146, 23.89358146, 23.89358146,
23.89358146, 25.71866923, 25.71866923, 25.71866923, 25.71866923,
24.04908508, 24.04908508, 24.04908508, 24.04908508, 12.5411211 ,
12.5411211 , 12.5411211 , 12.5411211 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 16.03410104,
16.03410104, 16.03410104, 16.03410104, 8.79130006, 8.79130006,
8.79130006, 8.79130006, 8.81715052, 8.81715052, 8.81715052,
8.81715052, 8.79265702, 8.79265702, 8.79265702, 8.79265702,
8.75616599, 8.75616599, 8.75616599, 8.75616599, 8.72386962,
8.72386962, 8.72386962, 8.72386962, 8.70850068, 8.70850068,
8.70850068, 8.70850068, 8.67535339, 8.67535339, 8.67535339,
8.67535339, 8.43738605, 8.43738605, 8.43738605, 8.43738605,
6.95183196, 6.95183196, 6.95183196, 6.95183196, 0.562619 ,
0.562619 , 0.562619 , 0.562619 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
756.31863848, 756.31863848, 756.31863848, 756.31863848,
1690.90500563, 1690.90500563, 1690.90500563, 1690.90500563,
1682.50978857, 1682.50978857, 1682.50978857, 1682.50978857,
1676.32059956, 1676.32059956, 1676.32059956, 1676.32059956,
1666.00066684, 1666.00066684, 1666.00066684, 1666.00066684,
1662.155713 , 1662.155713 , 1662.155713 , 1662.155713 ,
1663.26314213, 1663.26314213, 1663.26314213, 1663.26314213,
1660.5139094 , 1660.5139094 , 1660.5139094 , 1660.5139094 ,
1610.4610547 , 1610.4610547 , 1610.4610547 , 1610.4610547 ,
1281.72005283, 1281.72005283, 1281.72005283, 1281.72005283,
390.01870408, 390.01870408, 390.01870408, 390.01870408,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 7.65835956,
7.65835956, 7.65835956, 7.65835956, 14.32165135, 14.32165135,
14.32165135, 14.32165135, 14.14230367, 14.14230367, 14.14230367,
14.14230367, 14.05183665, 14.05183665, 14.05183665, 14.05183665,
14.28205848, 14.28205848, 14.28205848, 14.28205848, 15.34364942,
15.34364942, 15.34364942, 15.34364942, 17.87691577, 17.87691577,
17.87691577, 17.87691577, 22.0032607 , 22.0032607 , 22.0032607 ,
22.0032607 , 25.32794076, 25.32794076, 25.32794076, 25.32794076,
26.09347017, 26.09347017, 26.09347017, 26.09347017, 21.90065484,
21.90065484, 21.90065484, 21.90065484, 8.85587752, 8.85587752,
8.85587752, 8.85587752, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 16.78663193,
16.78663193, 16.78663193, 16.78663193, 8.80903942, 8.80903942,
8.80903942, 8.80903942, 8.83420513, 8.83420513, 8.83420513,
8.83420513, 8.82578366, 8.82578366, 8.82578366, 8.82578366,
8.80624892, 8.80624892, 8.80624892, 8.80624892, 8.75606374,
8.75606374, 8.75606374, 8.75606374, 8.72014166, 8.72014166,
8.72014166, 8.72014166, 8.69359444, 8.69359444, 8.69359444,
8.69359444, 8.61961759, 8.61961759, 8.61961759, 8.61961759,
8.1975906 , 8.1975906 , 8.1975906 , 8.1975906 , 5.72784319,
5.72784319, 5.72784319, 5.72784319, -2.66628544, -2.66628544,
-2.66628544, -2.66628544, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
681.23245756, 681.23245756, 681.23245756, 681.23245756,
1690.30672294, 1690.30672294, 1690.30672294, 1690.30672294,
1684.86233553, 1684.86233553, 1684.86233553, 1684.86233553,
1681.43710379, 1681.43710379, 1681.43710379, 1681.43710379,
1675.40103056, 1675.40103056, 1675.40103056, 1675.40103056,
1669.20788372, 1669.20788372, 1669.20788372, 1669.20788372,
1666.30842464, 1666.30842464, 1666.30842464, 1666.30842464,
1665.3407405 , 1665.3407405 , 1665.3407405 , 1665.3407405 ,
1655.60295511, 1655.60295511, 1655.60295511, 1655.60295511,
1554.56956983, 1554.56956983, 1554.56956983, 1554.56956983,
1052.37511398, 1052.37511398, 1052.37511398, 1052.37511398,
173.89490782, 173.89490782, 173.89490782, 173.89490782,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 7.1186186 ,
7.1186186 , 7.1186186 , 7.1186186 , 14.36047128, 14.36047128,
14.36047128, 14.36047128, 14.23425478, 14.23425478, 14.23425478,
14.23425478, 14.08783389, 14.08783389, 14.08783389, 14.08783389,
14.1779188 , 14.1779188 , 14.1779188 , 14.1779188 , 14.80411924,
14.80411924, 14.80411924, 14.80411924, 16.54777994, 16.54777994,
16.54777994, 16.54777994, 19.86979654, 19.86979654, 19.86979654,
19.86979654, 24.0787207 , 24.0787207 , 24.0787207 , 24.0787207 ,
26.24622763, 26.24622763, 26.24622763, 26.24622763, 25.9971748 ,
25.9971748 , 25.9971748 , 25.9971748 , 18.23903099, 18.23903099,
18.23903099, 18.23903099, 6.75171429, 6.75171429, 6.75171429,
6.75171429, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 17.66210704,
17.66210704, 17.66210704, 17.66210704, 8.82876563, 8.82876563,
8.82876563, 8.82876563, 8.8421663 , 8.8421663 , 8.8421663 ,
8.8421663 , 8.84053347, 8.84053347, 8.84053347, 8.84053347,
8.83357077, 8.83357077, 8.83357077, 8.83357077, 8.79975317,
8.79975317, 8.79975317, 8.79975317, 8.75109312, 8.75109312,
8.75109312, 8.75109312, 8.71258084, 8.71258084, 8.71258084,
8.71258084, 8.66774146, 8.66774146, 8.66774146, 8.66774146,
8.54608762, 8.54608762, 8.54608762, 8.54608762, 7.79555086,
7.79555086, 7.79555086, 7.79555086, 3.87424856, 3.87424856,
3.87424856, 3.87424856, -5.24819713, -5.24819713, -5.24819713,
-5.24819713, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
603.49144206, 603.49144206, 603.49144206, 603.49144206,
1688.86963269, 1688.86963269, 1688.86963269, 1688.86963269,
1685.80128371, 1685.80128371, 1685.80128371, 1685.80128371,
1683.63621235, 1683.63621235, 1683.63621235, 1683.63621235,
1680.55379063, 1680.55379063, 1680.55379063, 1680.55379063,
1678.31408237, 1678.31408237, 1678.31408237, 1678.31408237,
1673.35912582, 1673.35912582, 1673.35912582, 1673.35912582,
1670.22253987, 1670.22253987, 1670.22253987, 1670.22253987,
1667.74232817, 1667.74232817, 1667.74232817, 1667.74232817,
1640.45420665, 1640.45420665, 1640.45420665, 1640.45420665,
1461.51470867, 1461.51470867, 1461.51470867, 1461.51470867,
759.33857352, 759.33857352, 759.33857352, 759.33857352,
70.18449572, 70.18449572, 70.18449572, 70.18449572,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.61166788,
6.61166788, 6.61166788, 6.61166788, 14.33732237, 14.33732237,
14.33732237, 14.33732237, 14.30419681, 14.30419681, 14.30419681,
14.30419681, 14.14329976, 14.14329976, 14.14329976, 14.14329976,
14.14882045, 14.14882045, 14.14882045, 14.14882045, 14.48679804,
14.48679804, 14.48679804, 14.48679804, 15.63739956, 15.63739956,
15.63739956, 15.63739956, 18.13287272, 18.13287272, 18.13287272,
18.13287272, 22.14916876, 22.14916876, 22.14916876, 22.14916876,
25.56645324, 25.56645324, 25.56645324, 25.56645324, 26.84277136,
26.84277136, 26.84277136, 26.84277136, 25.05246497, 25.05246497,
25.05246497, 25.05246497, 13.74497893, 13.74497893, 13.74497893,
13.74497893, 6.01112923, 6.01112923, 6.01112923, 6.01112923,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 18.54223612,
18.54223612, 18.54223612, 18.54223612, 8.88501318, 8.88501318,
8.88501318, 8.88501318, 8.84657176, 8.84657176, 8.84657176,
8.84657176, 8.84965017, 8.84965017, 8.84965017, 8.84965017,
8.8439096 , 8.8439096 , 8.8439096 , 8.8439096 , 8.82217206,
8.82217206, 8.82217206, 8.82217206, 8.78976792, 8.78976792,
8.78976792, 8.78976792, 8.74465325, 8.74465325, 8.74465325,
8.74465325, 8.69615282, 8.69615282, 8.69615282, 8.69615282,
8.64451555, 8.64451555, 8.64451555, 8.64451555, 8.41921963,
8.41921963, 8.41921963, 8.41921963, 7.12455216, 7.12455216,
7.12455216, 7.12455216, 1.30137393, 1.30137393, 1.30137393,
1.30137393, -6.17610092, -6.17610092, -6.17610092, -6.17610092,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
533.78877038, 533.78877038, 533.78877038, 533.78877038,
1678.61449002, 1678.61449002, 1678.61449002, 1678.61449002,
1686.24594275, 1686.24594275, 1686.24594275, 1686.24594275,
1684.76417808, 1684.76417808, 1684.76417808, 1684.76417808,
1682.9536793 , 1682.9536793 , 1682.9536793 , 1682.9536793 ,
1683.43245703, 1683.43245703, 1683.43245703, 1683.43245703,
1681.720835 , 1681.720835 , 1681.720835 , 1681.720835 ,
1678.00552301, 1678.00552301, 1678.00552301, 1678.00552301,
1674.93385409, 1674.93385409, 1674.93385409, 1674.93385409,
1665.09193546, 1665.09193546, 1665.09193546, 1665.09193546,
1612.92728612, 1612.92728612, 1612.92728612, 1612.92728612,
1316.10582435, 1316.10582435, 1316.10582435, 1316.10582435,
457.58271286, 457.58271286, 457.58271286, 457.58271286,
46.49640428, 46.49640428, 46.49640428, 46.49640428,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.30239337,
6.30239337, 6.30239337, 6.30239337, 14.12698879, 14.12698879,
14.12698879, 14.12698879, 14.31831538, 14.31831538, 14.31831538,
14.31831538, 14.21203217, 14.21203217, 14.21203217, 14.21203217,
14.16122537, 14.16122537, 14.16122537, 14.16122537, 14.32221796,
14.32221796, 14.32221796, 14.32221796, 15.0335877 , 15.0335877 ,
15.0335877 , 15.0335877 , 16.82226028, 16.82226028, 16.82226028,
16.82226028, 20.08622976, 20.08622976, 20.08622976, 20.08622976,
24.19351535, 24.19351535, 24.19351535, 24.19351535, 26.65990335,
26.65990335, 26.65990335, 26.65990335, 27.07991409, 27.07991409,
27.07991409, 27.07991409, 22.89045836, 22.89045836, 22.89045836,
22.89045836, 9.62356471, 9.62356471, 9.62356471, 9.62356471,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.07308975,
19.07308975, 19.07308975, 19.07308975, 9.02253672, 9.02253672,
9.02253672, 9.02253672, 8.84125812, 8.84125812, 8.84125812,
8.84125812, 8.85134124, 8.85134124, 8.85134124, 8.85134124,
8.84877196, 8.84877196, 8.84877196, 8.84877196, 8.83196853,
8.83196853, 8.83196853, 8.83196853, 8.8088514 , 8.8088514 ,
8.8088514 , 8.8088514 , 8.77595509, 8.77595509, 8.77595509,
8.77595509, 8.73009145, 8.73009145, 8.73009145, 8.73009145,
8.68944343, 8.68944343, 8.68944343, 8.68944343, 8.60375556,
8.60375556, 8.60375556, 8.60375556, 8.2108148 , 8.2108148 ,
8.2108148 , 8.2108148 , 6.02573007, 6.02573007, 6.02573007,
6.02573007, -1.89911994, -1.89911994, -1.89911994, -1.89911994,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
495.38194177, 495.38194177, 495.38194177, 495.38194177,
1644.53020156, 1644.53020156, 1644.53020156, 1644.53020156,
1684.91455494, 1684.91455494, 1684.91455494, 1684.91455494,
1684.79944511, 1684.79944511, 1684.79944511, 1684.79944511,
1684.57865248, 1684.57865248, 1684.57865248, 1684.57865248,
1686.13849473, 1686.13849473, 1686.13849473, 1686.13849473,
1686.35971641, 1686.35971641, 1686.35971641, 1686.35971641,
1685.52441483, 1685.52441483, 1685.52441483, 1685.52441483,
1683.13310285, 1683.13310285, 1683.13310285, 1683.13310285,
1676.29508646, 1676.29508646, 1676.29508646, 1676.29508646,
1659.30479154, 1659.30479154, 1659.30479154, 1659.30479154,
1562.7097678 , 1562.7097678 , 1562.7097678 , 1562.7097678 ,
1103.51026707, 1103.51026707, 1103.51026707, 1103.51026707,
215.162548 , 215.162548 , 215.162548 , 215.162548 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.14195652,
6.14195652, 6.14195652, 6.14195652, 13.80144353, 13.80144353,
13.80144353, 13.80144353, 14.30497421, 14.30497421, 14.30497421,
14.30497421, 14.25642284, 14.25642284, 14.25642284, 14.25642284,
14.18160262, 14.18160262, 14.18160262, 14.18160262, 14.2515204 ,
14.2515204 , 14.2515204 , 14.2515204 , 14.6640006 , 14.6640006 ,
14.6640006 , 14.6640006 , 15.87822517, 15.87822517, 15.87822517,
15.87822517, 18.37538004, 18.37538004, 18.37538004, 18.37538004,
22.25500924, 22.25500924, 22.25500924, 22.25500924, 25.80283472,
25.80283472, 25.80283472, 25.80283472, 27.34875521, 27.34875521,
27.34875521, 27.34875521, 26.85683706, 26.85683706, 26.85683706,
26.85683706, 19.30182288, 19.30182288, 19.30182288, 19.30182288,
7.0675042 , 7.0675042 , 7.0675042 , 7.0675042 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.3502001 ,
19.3502001 , 19.3502001 , 19.3502001 , 9.21603967, 9.21603967,
9.21603967, 9.21603967, 8.82260996, 8.82260996, 8.82260996,
8.82260996, 8.84048313, 8.84048313, 8.84048313, 8.84048313,
8.84501152, 8.84501152, 8.84501152, 8.84501152, 8.83433152,
8.83433152, 8.83433152, 8.83433152, 8.81787069, 8.81787069,
8.81787069, 8.81787069, 8.79269969, 8.79269969, 8.79269969,
8.79269969, 8.75772964, 8.75772964, 8.75772964, 8.75772964,
8.72570412, 8.72570412, 8.72570412, 8.72570412, 8.67435325,
8.67435325, 8.67435325, 8.67435325, 8.54192455, 8.54192455,
8.54192455, 8.54192455, 7.86009779, 7.86009779, 7.86009779,
7.86009779, 4.30783648, 4.30783648, 4.30783648, 4.30783648,
-4.84140731, -4.84140731, -4.84140731, -4.84140731, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
476.70326546, 476.70326546, 476.70326546, 476.70326546,
1599.20542388, 1599.20542388, 1599.20542388, 1599.20542388,
1681.12761211, 1681.12761211, 1681.12761211, 1681.12761211,
1682.89800753, 1682.89800753, 1682.89800753, 1682.89800753,
1684.67100901, 1684.67100901, 1684.67100901, 1684.67100901,
1687.53791343, 1687.53791343, 1687.53791343, 1687.53791343,
1689.10128233, 1689.10128233, 1689.10128233, 1689.10128233,
1690.03751927, 1690.03751927, 1690.03751927, 1690.03751927,
1689.74571632, 1689.74571632, 1689.74571632, 1689.74571632,
1685.17838523, 1685.17838523, 1685.17838523, 1685.17838523,
1677.17996362, 1677.17996362, 1677.17996362, 1677.17996362,
1645.59189795, 1645.59189795, 1645.59189795, 1645.59189795,
1477.69337386, 1477.69337386, 1477.69337386, 1477.69337386,
821.52788889, 821.52788889, 821.52788889, 821.52788889,
83.10819658, 83.10819658, 83.10819658, 83.10819658,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.06469207,
6.06469207, 6.06469207, 6.06469207, 13.43969448, 13.43969448,
13.43969448, 13.43969448, 14.27300861, 14.27300861, 14.27300861,
14.27300861, 14.26232073, 14.26232073, 14.26232073, 14.26232073,
14.20693264, 14.20693264, 14.20693264, 14.20693264, 14.22600941,
14.22600941, 14.22600941, 14.22600941, 14.451735 , 14.451735 ,
14.451735 , 14.451735 , 15.23715871, 15.23715871, 15.23715871,
15.23715871, 17.05674781, 17.05674781, 17.05674781, 17.05674781,
20.23122256, 20.23122256, 20.23122256, 20.23122256, 24.33909909,
24.33909909, 24.33909909, 24.33909909, 26.94680512, 26.94680512,
26.94680512, 26.94680512, 27.76657318, 27.76657318, 27.76657318,
27.76657318, 25.87187706, 25.87187706, 25.87187706, 25.87187706,
14.71753118, 14.71753118, 14.71753118, 14.71753118, 6.05256418,
6.05256418, 6.05256418, 6.05256418, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.48410417,
19.48410417, 19.48410417, 19.48410417, 9.45689754, 9.45689754,
9.45689754, 9.45689754, 8.79920582, 8.79920582, 8.79920582,
8.79920582, 8.81925127, 8.81925127, 8.81925127, 8.81925127,
8.8299591 , 8.8299591 , 8.8299591 , 8.8299591 , 8.82715687,
8.82715687, 8.82715687, 8.82715687, 8.81789768, 8.81789768,
8.81789768, 8.81789768, 8.80087111, 8.80087111, 8.80087111,
8.80087111, 8.77473484, 8.77473484, 8.77473484, 8.77473484,
8.75195341, 8.75195341, 8.75195341, 8.75195341, 8.71520383,
8.71520383, 8.71520383, 8.71520383, 8.65591151, 8.65591151,
8.65591151, 8.65591151, 8.43568632, 8.43568632, 8.43568632,
8.43568632, 7.25174947, 7.25174947, 7.25174947, 7.25174947,
1.85536253, 1.85536253, 1.85536253, 1.85536253, -6.1268406 ,
-6.1268406 , -6.1268406 , -6.1268406 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
468.03926864, 468.03926864, 468.03926864, 468.03926864,
1550.80208207, 1550.80208207, 1550.80208207, 1550.80208207,
1676.67695683, 1676.67695683, 1676.67695683, 1676.67695683,
1679.10151146, 1679.10151146, 1679.10151146, 1679.10151146,
1682.92083724, 1682.92083724, 1682.92083724, 1682.92083724,
1687.22320793, 1687.22320793, 1687.22320793, 1687.22320793,
1690.31989424, 1690.31989424, 1690.31989424, 1690.31989424,
1692.80543508, 1692.80543508, 1692.80543508, 1692.80543508,
1693.9292418 , 1693.9292418 , 1693.9292418 , 1693.9292418 ,
1691.48316721, 1691.48316721, 1691.48316721, 1691.48316721,
1687.48123227, 1687.48123227, 1687.48123227, 1687.48123227,
1674.61113379, 1674.61113379, 1674.61113379, 1674.61113379,
1619.83613221, 1619.83613221, 1619.83613221, 1619.83613221,
1345.15261819, 1345.15261819, 1345.15261819, 1345.15261819,
513.60242111, 513.60242111, 513.60242111, 513.60242111,
47.53604724, 47.53604724, 47.53604724, 47.53604724,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.02886327,
6.02886327, 6.02886327, 6.02886327, 13.07839128, 13.07839128,
13.07839128, 13.07839128, 14.23346801, 14.23346801, 14.23346801,
14.23346801, 14.24717384, 14.24717384, 14.24717384, 14.24717384,
14.22281297, 14.22281297, 14.22281297, 14.22281297, 14.22054517,
14.22054517, 14.22054517, 14.22054517, 14.33456656, 14.33456656,
14.33456656, 14.33456656, 14.82163366, 14.82163366, 14.82163366,
14.82163366, 16.09047457, 16.09047457, 16.09047457, 16.09047457,
18.55177024, 18.55177024, 18.55177024, 18.55177024, 22.37387504,
22.37387504, 22.37387504, 22.37387504, 25.95158279, 25.95158279,
25.95158279, 25.95158279, 27.73836656, 27.73836656, 27.73836656,
27.73836656, 27.94116204, 27.94116204, 27.94116204, 27.94116204,
23.71135453, 23.71135453, 23.71135453, 23.71135453, 10.2611939 ,
10.2611939 , 10.2611939 , 10.2611939 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.54621347,
19.54621347, 19.54621347, 19.54621347, 9.73291458, 9.73291458,
9.73291458, 9.73291458, 8.78207223, 8.78207223, 8.78207223,
8.78207223, 8.7976568 , 8.7976568 , 8.7976568 , 8.7976568 ,
8.80630024, 8.80630024, 8.80630024, 8.80630024, 8.80930339,
8.80930339, 8.80930339, 8.80930339, 8.80766016, 8.80766016,
8.80766016, 8.80766016, 8.79917595, 8.79917595, 8.79917595,
8.79917595, 8.78413417, 8.78413417, 8.78413417, 8.78413417,
8.76829084, 8.76829084, 8.76829084, 8.76829084, 8.74129772,
8.74129772, 8.74129772, 8.74129772, 8.707466 , 8.707466 ,
8.707466 , 8.707466 , 8.62437495, 8.62437495, 8.62437495,
8.62437495, 8.2411141 , 8.2411141 , 8.2411141 , 8.2411141 ,
6.25193806, 6.25193806, 6.25193806, 6.25193806, -1.28878105,
-1.28878105, -1.28878105, -1.28878105, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
464.10347553, 464.10347553, 464.10347553, 464.10347553,
1501.75676947, 1501.75676947, 1501.75676947, 1501.75676947,
1673.48248244, 1673.48248244, 1673.48248244, 1673.48248244,
1675.26131852, 1675.26131852, 1675.26131852, 1675.26131852,
1679.69511989, 1679.69511989, 1679.69511989, 1679.69511989,
1685.03144267, 1685.03144267, 1685.03144267, 1685.03144267,
1689.69499574, 1689.69499574, 1689.69499574, 1689.69499574,
1693.77032209, 1693.77032209, 1693.77032209, 1693.77032209,
1696.36802183, 1696.36802183, 1696.36802183, 1696.36802183,
1695.45911111, 1695.45911111, 1695.45911111, 1695.45911111,
1694.01527689, 1694.01527689, 1694.01527689, 1694.01527689,
1687.72253001, 1687.72253001, 1687.72253001, 1687.72253001,
1668.0637948 , 1668.0637948 , 1668.0637948 , 1668.0637948 ,
1576.4342413 , 1576.4342413 , 1576.4342413 , 1576.4342413 ,
1145.88619696, 1145.88619696, 1145.88619696, 1145.88619696,
252.0045113 , 252.0045113 , 252.0045113 , 252.0045113 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.01256033,
6.01256033, 6.01256033, 6.01256033, 12.72818781, 12.72818781,
12.72818781, 12.72818781, 14.18966502, 14.18966502, 14.18966502,
14.18966502, 14.23050382, 14.23050382, 14.23050382, 14.23050382,
14.22786886, 14.22786886, 14.22786886, 14.22786886, 14.22013033,
14.22013033, 14.22013033, 14.22013033, 14.27375708, 14.27375708,
14.27375708, 14.27375708, 14.56135118, 14.56135118, 14.56135118,
14.56135118, 15.41020384, 15.41020384, 15.41020384, 15.41020384,
17.24030876, 17.24030876, 17.24030876, 17.24030876, 20.3753365 ,
20.3753365 , 20.3753365 , 20.3753365 , 24.41284547, 24.41284547,
24.41284547, 24.41284547, 27.14093669, 27.14093669, 27.14093669,
27.14093669, 28.30381699, 28.30381699, 28.30381699, 28.30381699,
27.61366449, 27.61366449, 27.61366449, 27.61366449, 20.12961367,
20.12961367, 20.12961367, 20.12961367, 7.39216618, 7.39216618,
7.39216618, 7.39216618, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.57445277,
19.57445277, 19.57445277, 19.57445277, 10.03253127, 10.03253127,
10.03253127, 10.03253127, 8.77393351, 8.77393351, 8.77393351,
8.77393351, 8.78266557, 8.78266557, 8.78266557, 8.78266557,
8.78358149, 8.78358149, 8.78358149, 8.78358149, 8.78542818,
8.78542818, 8.78542818, 8.78542818, 8.78785646, 8.78785646,
8.78785646, 8.78785646, 8.78658804, 8.78658804, 8.78658804,
8.78658804, 8.78385244, 8.78385244, 8.78385244, 8.78385244,
8.77594863, 8.77594863, 8.77594863, 8.77594863, 8.75713227,
8.75713227, 8.75713227, 8.75713227, 8.73606701, 8.73606701,
8.73606701, 8.73606701, 8.69641263, 8.69641263, 8.69641263,
8.69641263, 8.55917242, 8.55917242, 8.55917242, 8.55917242,
7.92994353, 7.92994353, 7.92994353, 7.92994353, 4.665091 ,
4.665091 , 4.665091 , 4.665091 , -4.42403255, -4.42403255,
-4.42403255, -4.42403255, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
462.3317026 , 462.3317026 , 462.3317026 , 462.3317026 ,
1452.09052865, 1452.09052865, 1452.09052865, 1452.09052865,
1671.9017181 , 1671.9017181 , 1671.9017181 , 1671.9017181 ,
1672.88932596, 1672.88932596, 1672.88932596, 1672.88932596,
1676.49949878, 1676.49949878, 1676.49949878, 1676.49949878,
1681.82659859, 1681.82659859, 1681.82659859, 1681.82659859,
1687.39626942, 1687.39626942, 1687.39626942, 1687.39626942,
1692.75436141, 1692.75436141, 1692.75436141, 1692.75436141,
1696.73494397, 1696.73494397, 1696.73494397, 1696.73494397,
1697.56704436, 1697.56704436, 1697.56704436, 1697.56704436,
1697.99798875, 1697.99798875, 1697.99798875, 1697.99798875,
1694.92491575, 1694.92491575, 1694.92491575, 1694.92491575,
1686.67457302, 1686.67457302, 1686.67457302, 1686.67457302,
1657.45734097, 1657.45734097, 1657.45734097, 1657.45734097,
1497.50055341, 1497.50055341, 1497.50055341, 1497.50055341,
873.62567544, 873.62567544, 873.62567544, 873.62567544,
97.74146277, 97.74146277, 97.74146277, 97.74146277,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.00521078,
6.00521078, 6.00521078, 6.00521078, 12.38993388, 12.38993388,
12.38993388, 12.38993388, 14.14519572, 14.14519572, 14.14519572,
14.14519572, 14.21203317, 14.21203317, 14.21203317, 14.21203317,
14.22915807, 14.22915807, 14.22915807, 14.22915807, 14.22348347,
14.22348347, 14.22348347, 14.22348347, 14.24506269, 14.24506269,
14.24506269, 14.24506269, 14.40465933, 14.40465933, 14.40465933,
14.40465933, 14.94868214, 14.94868214, 14.94868214, 14.94868214,
16.25655917, 16.25655917, 16.25655917, 16.25655917, 18.71532853,
18.71532853, 18.71532853, 18.71532853, 22.4416374 , 22.4416374 ,
22.4416374 , 22.4416374 , 26.03175799, 26.03175799, 26.03175799,
26.03175799, 28.07389691, 28.07389691, 28.07389691, 28.07389691,
28.57139062, 28.57139062, 28.57139062, 28.57139062, 26.53452027,
26.53452027, 26.53452027, 26.53452027, 15.55324352, 15.55324352,
15.55324352, 15.55324352, 6.13684598, 6.13684598, 6.13684598,
6.13684598, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.58717335,
19.58717335, 19.58717335, 19.58717335, 10.34899927, 10.34899927,
10.34899927, 10.34899927, 8.77184226, 8.77184226, 8.77184226,
8.77184226, 8.77457278, 8.77457278, 8.77457278, 8.77457278,
8.76864579, 8.76864579, 8.76864579, 8.76864579, 8.76390782,
8.76390782, 8.76390782, 8.76390782, 8.76368947, 8.76368947,
8.76368947, 8.76368947, 8.76607598, 8.76607598, 8.76607598,
8.76607598, 8.77190498, 8.77190498, 8.77190498, 8.77190498,
8.77293894, 8.77293894, 8.77293894, 8.77293894, 8.76486151,
8.76486151, 8.76486151, 8.76486151, 8.75224516, 8.75224516,
8.75224516, 8.75224516, 8.73002234, 8.73002234, 8.73002234,
8.73002234, 8.66900729, 8.66900729, 8.66900729, 8.66900729,
8.46716317, 8.46716317, 8.46716317, 8.46716317, 7.38774697,
7.38774697, 7.38774697, 7.38774697, 2.33157677, 2.33157677,
2.33157677, 2.33157677, -6.0273606 , -6.0273606 , -6.0273606 ,
-6.0273606 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
461.53725474, 461.53725474, 461.53725474, 461.53725474,
1401.46357119, 1401.46357119, 1401.46357119, 1401.46357119,
1671.44416708, 1671.44416708, 1671.44416708, 1671.44416708,
1671.94879141, 1671.94879141, 1671.94879141, 1671.94879141,
1674.76785448, 1674.76785448, 1674.76785448, 1674.76785448,
1679.02439986, 1679.02439986, 1679.02439986, 1679.02439986,
1684.35393811, 1684.35393811, 1684.35393811, 1684.35393811,
1690.14122531, 1690.14122531, 1690.14122531, 1690.14122531,
1694.93535923, 1694.93535923, 1694.93535923, 1694.93535923,
1697.61431565, 1697.61431565, 1697.61431565, 1697.61431565,
1700.01321682, 1700.01321682, 1700.01321682, 1700.01321682,
1698.95105971, 1698.95105971, 1698.95105971, 1698.95105971,
1695.36387827, 1695.36387827, 1695.36387827, 1695.36387827,
1686.00022927, 1686.00022927, 1686.00022927, 1686.00022927,
1632.25134395, 1632.25134395, 1632.25134395, 1632.25134395,
1372.90297687, 1372.90297687, 1372.90297687, 1372.90297687,
565.30554122, 565.30554122, 565.30554122, 565.30554122,
49.69965112, 49.69965112, 49.69965112, 49.69965112,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.00191237,
6.00191237, 6.00191237, 6.00191237, 12.0611019 , 12.0611019 ,
12.0611019 , 12.0611019 , 14.10481587, 14.10481587, 14.10481587,
14.10481587, 14.18654067, 14.18654067, 14.18654067, 14.18654067,
14.23049568, 14.23049568, 14.23049568, 14.23049568, 14.2298967 ,
14.2298967 , 14.2298967 , 14.2298967 , 14.23613946, 14.23613946,
14.23613946, 14.23613946, 14.31707273, 14.31707273, 14.31707273,
14.31707273, 14.64765446, 14.64765446, 14.64765446, 14.64765446,
15.54787982, 15.54787982, 15.54787982, 15.54787982, 17.39854503,
17.39854503, 17.39854503, 17.39854503, 20.47814225, 20.47814225,
20.47814225, 20.47814225, 24.43048632, 24.43048632, 24.43048632,
24.43048632, 27.34776012, 27.34776012, 27.34776012, 27.34776012,
28.62183206, 28.62183206, 28.62183206, 28.62183206, 28.6252776 ,
28.6252776 , 28.6252776 , 28.6252776 , 24.3768406 , 24.3768406 ,
24.3768406 , 24.3768406 , 10.93946855, 10.93946855, 10.93946855,
10.93946855, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59287913,
19.59287913, 19.59287913, 19.59287913, 10.67986783, 10.67986783,
10.67986783, 10.67986783, 8.77244753, 8.77244753, 8.77244753,
8.77244753, 8.77089439, 8.77089439, 8.77089439, 8.77089439,
8.76033975, 8.76033975, 8.76033975, 8.76033975, 8.74995589,
8.74995589, 8.74995589, 8.74995589, 8.743477 , 8.743477 ,
8.743477 , 8.743477 , 8.74369671, 8.74369671, 8.74369671,
8.74369671, 8.75189311, 8.75189311, 8.75189311, 8.75189311,
8.75950663, 8.75950663, 8.75950663, 8.75950663, 8.76196429,
8.76196429, 8.76196429, 8.76196429, 8.75864593, 8.75864593,
8.75864593, 8.75864593, 8.74698766, 8.74698766, 8.74698766,
8.74698766, 8.71314943, 8.71314943, 8.71314943, 8.71314943,
8.64426969, 8.64426969, 8.64426969, 8.64426969, 8.29748153,
8.29748153, 8.29748153, 8.29748153, 6.47495531, 6.47495531,
6.47495531, 6.47495531, -0.70842801, -0.70842801, -0.70842801,
-0.70842801, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
461.18165087, 461.18165087, 461.18165087, 461.18165087,
1349.74992079, 1349.74992079, 1349.74992079, 1349.74992079,
1671.60482909, 1671.60482909, 1671.60482909, 1671.60482909,
1671.83120898, 1671.83120898, 1671.83120898, 1671.83120898,
1674.38970894, 1674.38970894, 1674.38970894, 1674.38970894,
1677.64758285, 1677.64758285, 1677.64758285, 1677.64758285,
1681.89797938, 1681.89797938, 1681.89797938, 1681.89797938,
1687.02073081, 1687.02073081, 1687.02073081, 1687.02073081,
1691.69948158, 1691.69948158, 1691.69948158, 1691.69948158,
1695.89819179, 1695.89819179, 1695.89819179, 1695.89819179,
1699.59855312, 1699.59855312, 1699.59855312, 1699.59855312,
1700.59794297, 1700.59794297, 1700.59794297, 1700.59794297,
1699.78993323, 1699.78993323, 1699.78993323, 1699.78993323,
1697.54039263, 1697.54039263, 1697.54039263, 1697.54039263,
1678.14710016, 1678.14710016, 1678.14710016, 1678.14710016,
1590.4085702 , 1590.4085702 , 1590.4085702 , 1590.4085702 ,
1186.37141402, 1186.37141402, 1186.37141402, 1186.37141402,
291.00638382, 291.00638382, 291.00638382, 291.00638382,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.00043524,
6.00043524, 6.00043524, 6.00043524, 11.7372962 , 11.7372962 ,
11.7372962 , 11.7372962 , 14.07379548, 14.07379548, 14.07379548,
14.07379548, 14.15517935, 14.15517935, 14.15517935, 14.15517935,
14.2272544 , 14.2272544 , 14.2272544 , 14.2272544 , 14.2375337 ,
14.2375337 , 14.2375337 , 14.2375337 , 14.23872925, 14.23872925,
14.23872925, 14.23872925, 14.2748018 , 14.2748018 , 14.2748018 ,
14.2748018 , 14.46334784, 14.46334784, 14.46334784, 14.46334784,
15.05471701, 15.05471701, 15.05471701, 15.05471701, 16.39861085,
16.39861085, 16.39861085, 16.39861085, 18.83588578, 18.83588578,
18.83588578, 18.83588578, 22.45137204, 22.45137204, 22.45137204,
22.45137204, 26.17620124, 26.17620124, 26.17620124, 26.17620124,
28.20662605, 28.20662605, 28.20662605, 28.20662605, 29.01571741,
29.01571741, 29.01571741, 29.01571741, 28.20622566, 28.20622566,
28.20622566, 28.20622566, 20.93126273, 20.93126273, 20.93126273,
20.93126273, 7.75255279, 7.75255279, 7.75255279, 7.75255279,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59543352,
19.59543352, 19.59543352, 19.59543352, 11.02536985, 11.02536985,
11.02536985, 11.02536985, 8.77430718, 8.77430718, 8.77430718,
8.77430718, 8.76967261, 8.76967261, 8.76967261, 8.76967261,
8.75558013, 8.75558013, 8.75558013, 8.75558013, 8.74203901,
8.74203901, 8.74203901, 8.74203901, 8.73063358, 8.73063358,
8.73063358, 8.73063358, 8.72592755, 8.72592755, 8.72592755,
8.72592755, 8.73068524, 8.73068524, 8.73068524, 8.73068524,
8.73880591, 8.73880591, 8.73880591, 8.73880591, 8.74949988,
8.74949988, 8.74949988, 8.74949988, 8.7555838 , 8.7555838 ,
8.7555838 , 8.7555838 , 8.75211587, 8.75211587, 8.75211587,
8.75211587, 8.73247564, 8.73247564, 8.73247564, 8.73247564,
8.70783033, 8.70783033, 8.70783033, 8.70783033, 8.59135962,
8.59135962, 8.59135962, 8.59135962, 8.01612734, 8.01612734,
8.01612734, 8.01612734, 5.00404045, 5.00404045, 5.00404045,
5.00404045, -3.96613135, -3.96613135, -3.96613135, -3.96613135,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
461.02260131, 461.02260131, 461.02260131, 461.02260131,
1296.91397167, 1296.91397167, 1296.91397167, 1296.91397167,
1672.10552341, 1672.10552341, 1672.10552341, 1672.10552341,
1672.2542597 , 1672.2542597 , 1672.2542597 , 1672.2542597 ,
1674.70858572, 1674.70858572, 1674.70858572, 1674.70858572,
1677.49459326, 1677.49459326, 1677.49459326, 1677.49459326,
1680.67202342, 1680.67202342, 1680.67202342, 1680.67202342,
1684.60404744, 1684.60404744, 1684.60404744, 1684.60404744,
1688.38179454, 1688.38179454, 1688.38179454, 1688.38179454,
1692.71350426, 1692.71350426, 1692.71350426, 1692.71350426,
1697.41354258, 1697.41354258, 1697.41354258, 1697.41354258,
1700.07117267, 1700.07117267, 1700.07117267, 1700.07117267,
1701.30754546, 1701.30754546, 1701.30754546, 1701.30754546,
1702.62380877, 1702.62380877, 1702.62380877, 1702.62380877,
1694.7539739 , 1694.7539739 , 1694.7539739 , 1694.7539739 ,
1666.22273512, 1666.22273512, 1666.22273512, 1666.22273512,
1517.56453226, 1517.56453226, 1517.56453226, 1517.56453226,
927.27397973, 927.27397973, 927.27397973, 927.27397973,
115.53325364, 115.53325364, 115.53325364, 115.53325364,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99977441,
5.99977441, 5.99977441, 5.99977441, 11.41328059, 11.41328059,
11.41328059, 11.41328059, 14.05574474, 14.05574474, 14.05574474,
14.05574474, 14.123278 , 14.123278 , 14.123278 , 14.123278 ,
14.21476462, 14.21476462, 14.21476462, 14.21476462, 14.24380362,
14.24380362, 14.24380362, 14.24380362, 14.24638528, 14.24638528,
14.24638528, 14.24638528, 14.25961634, 14.25961634, 14.25961634,
14.25961634, 14.36000574, 14.36000574, 14.36000574, 14.36000574,
14.73020721, 14.73020721, 14.73020721, 14.73020721, 15.66543029,
15.66543029, 15.66543029, 15.66543029, 17.52510797, 17.52510797,
17.52510797, 17.52510797, 20.53937827, 20.53937827, 20.53937827,
20.53937827, 24.52191428, 24.52191428, 24.52191428, 24.52191428,
27.36117172, 27.36117172, 27.36117172, 27.36117172, 28.8831646 ,
28.8831646 , 28.8831646 , 28.8831646 , 29.18373553, 29.18373553,
29.18373553, 29.18373553, 27.11704018, 27.11704018, 27.11704018,
27.11704018, 16.38597363, 16.38597363, 16.38597363, 16.38597363,
6.26345038, 6.26345038, 6.26345038, 6.26345038, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59657611,
19.59657611, 19.59657611, 19.59657611, 11.38698932, 11.38698932,
11.38698932, 11.38698932, 8.77633703, 8.77633703, 8.77633703,
8.77633703, 8.76949213, 8.76949213, 8.76949213, 8.76949213,
8.75299555, 8.75299555, 8.75299555, 8.75299555, 8.73760248,
8.73760248, 8.73760248, 8.73760248, 8.72374953, 8.72374953,
8.72374953, 8.72374953, 8.71466863, 8.71466863, 8.71466863,
8.71466863, 8.71514638, 8.71514638, 8.71514638, 8.71514638,
8.71899761, 8.71899761, 8.71899761, 8.71899761, 8.72886327,
8.72886327, 8.72886327, 8.72886327, 8.74369615, 8.74369615,
8.74369615, 8.74369615, 8.74722894, 8.74722894, 8.74722894,
8.74722894, 8.73902406, 8.73902406, 8.73902406, 8.73902406,
8.7320913 , 8.7320913 , 8.7320913 , 8.7320913 , 8.68916945,
8.68916945, 8.68916945, 8.68916945, 8.5080931 , 8.5080931 ,
8.5080931 , 8.5080931 , 7.52056852, 7.52056852, 7.52056852,
7.52056852, 2.80913789, 2.80913789, 2.80913789, 2.80913789,
-5.87118686, -5.87118686, -5.87118686, -5.87118686, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.95148826, 460.95148826, 460.95148826, 460.95148826,
1242.93498529, 1242.93498529, 1242.93498529, 1242.93498529,
1672.75025416, 1672.75025416, 1672.75025416, 1672.75025416,
1672.99461337, 1672.99461337, 1672.99461337, 1672.99461337,
1675.45802531, 1675.45802531, 1675.45802531, 1675.45802531,
1677.97013096, 1677.97013096, 1677.97013096, 1677.97013096,
1680.56820927, 1680.56820927, 1680.56820927, 1680.56820927,
1683.25513146, 1683.25513146, 1683.25513146, 1683.25513146,
1686.15902024, 1686.15902024, 1686.15902024, 1686.15902024,
1689.63290509, 1689.63290509, 1689.63290509, 1689.63290509,
1693.61270105, 1693.61270105, 1693.61270105, 1693.61270105,
1697.83925189, 1697.83925189, 1697.83925189, 1697.83925189,
1700.67539901, 1700.67539901, 1700.67539901, 1700.67539901,
1704.34738929, 1704.34738929, 1704.34738929, 1704.34738929,
1701.04658492, 1701.04658492, 1701.04658492, 1701.04658492,
1691.91391925, 1691.91391925, 1691.91391925, 1691.91391925,
1642.61175186, 1642.61175186, 1642.61175186, 1642.61175186,
1403.02981473, 1403.02981473, 1403.02981473, 1403.02981473,
620.35429771, 620.35429771, 620.35429771, 620.35429771,
53.31876512, 53.31876512, 53.31876512, 53.31876512,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99947891,
5.99947891, 5.99947891, 5.99947891, 11.08383716, 11.08383716,
11.08383716, 11.08383716, 14.0517203 , 14.0517203 , 14.0517203 ,
14.0517203 , 14.10023842, 14.10023842, 14.10023842, 14.10023842,
14.19023691, 14.19023691, 14.19023691, 14.19023691, 14.24455191,
14.24455191, 14.24455191, 14.24455191, 14.25421038, 14.25421038,
14.25421038, 14.25421038, 14.25918171, 14.25918171, 14.25918171,
14.25918171, 14.3079739 , 14.3079739 , 14.3079739 , 14.3079739 ,
14.52901048, 14.52901048, 14.52901048, 14.52901048, 15.15486733,
15.15486733, 15.15486733, 15.15486733, 16.51738142, 16.51738142,
16.51738142, 16.51738142, 18.93314834, 18.93314834, 18.93314834,
18.93314834, 22.5440941 , 22.5440941 , 22.5440941 , 22.5440941 ,
26.12029499, 26.12029499, 26.12029499, 26.12029499, 28.34016344,
28.34016344, 28.34016344, 28.34016344, 29.28063222, 29.28063222,
29.28063222, 29.28063222, 29.17431829, 29.17431829, 29.17431829,
29.17431829, 25.00476923, 25.00476923, 25.00476923, 25.00476923,
11.66638056, 11.66638056, 11.66638056, 11.66638056, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59708699,
19.59708699, 19.59708699, 19.59708699, 11.76705719, 11.76705719,
11.76705719, 11.76705719, 8.77822243, 8.77822243, 8.77822243,
8.77822243, 8.76947767, 8.76947767, 8.76947767, 8.76947767,
8.75155398, 8.75155398, 8.75155398, 8.75155398, 8.73518896,
8.73518896, 8.73518896, 8.73518896, 8.72041919, 8.72041919,
8.72041919, 8.72041919, 8.70930751, 8.70930751, 8.70930751,
8.70930751, 8.70529704, 8.70529704, 8.70529704, 8.70529704,
8.70515517, 8.70515517, 8.70515517, 8.70515517, 8.7108029 ,
8.7108029 , 8.7108029 , 8.7108029 , 8.72327917, 8.72327917,
8.72327917, 8.72327917, 8.73376459, 8.73376459, 8.73376459,
8.73376459, 8.73563619, 8.73563619, 8.73563619, 8.73563619,
8.73912673, 8.73912673, 8.73912673, 8.73912673, 8.7231003 ,
8.7231003 , 8.7231003 , 8.7231003 , 8.66683961, 8.66683961,
8.66683961, 8.66683961, 8.34928421, 8.34928421, 8.34928421,
8.34928421, 6.69362993, 6.69362993, 6.69362993, 6.69362993,
-0.11035176, -0.11035176, -0.11035176, -0.11035176, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.91969759, 460.91969759, 460.91969759, 460.91969759,
1187.76602814, 1187.76602814, 1187.76602814, 1187.76602814,
1673.48445735, 1673.48445735, 1673.48445735, 1673.48445735,
1673.88930321, 1673.88930321, 1673.88930321, 1673.88930321,
1676.44790452, 1676.44790452, 1676.44790452, 1676.44790452,
1678.80370938, 1678.80370938, 1678.80370938, 1678.80370938,
1681.08682083, 1681.08682083, 1681.08682083, 1681.08682083,
1682.92808089, 1682.92808089, 1682.92808089, 1682.92808089,
1684.95201261, 1684.95201261, 1684.95201261, 1684.95201261,
1687.57615561, 1687.57615561, 1687.57615561, 1687.57615561,
1690.39132258, 1690.39132258, 1690.39132258, 1690.39132258,
1693.96066674, 1693.96066674, 1693.96066674, 1693.96066674,
1698.52754203, 1698.52754203, 1698.52754203, 1698.52754203,
1703.48239845, 1703.48239845, 1703.48239845, 1703.48239845,
1702.84220627, 1702.84220627, 1702.84220627, 1702.84220627,
1700.85106284, 1700.85106284, 1700.85106284, 1700.85106284,
1684.25604605, 1684.25604605, 1684.25604605, 1684.25604605,
1605.27478628, 1605.27478628, 1605.27478628, 1605.27478628,
1228.27305079, 1228.27305079, 1228.27305079, 1228.27305079,
335.18146113, 335.18146113, 335.18146113, 335.18146113,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99934679,
5.99934679, 5.99934679, 5.99934679, 10.74428295, 10.74428295,
10.74428295, 10.74428295, 14.06074113, 14.06074113, 14.06074113,
14.06074113, 14.08825244, 14.08825244, 14.08825244, 14.08825244,
14.16060415, 14.16060415, 14.16060415, 14.16060415, 14.23700048,
14.23700048, 14.23700048, 14.23700048, 14.25988941, 14.25988941,
14.25988941, 14.25988941, 14.26414574, 14.26414574, 14.26414574,
14.26414574, 14.28645883, 14.28645883, 14.28645883, 14.28645883,
14.41128533, 14.41128533, 14.41128533, 14.41128533, 14.81477318,
14.81477318, 14.81477318, 14.81477318, 15.77868117, 15.77868117,
15.77868117, 15.77868117, 17.63924517, 17.63924517, 17.63924517,
17.63924517, 20.63133131, 20.63133131, 20.63133131, 20.63133131,
24.46822871, 24.46822871, 24.46822871, 24.46822871, 27.42698268,
27.42698268, 27.42698268, 27.42698268, 28.98413403, 28.98413403,
28.98413403, 28.98413403, 29.5817967 , 29.5817967 , 29.5817967 ,
29.5817967 , 28.69012861, 28.69012861, 28.69012861, 28.69012861,
21.68686674, 21.68686674, 21.68686674, 21.68686674, 8.19799704,
8.19799704, 8.19799704, 8.19799704, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59731538,
19.59731538, 19.59731538, 19.59731538, 12.16840072, 12.16840072,
12.16840072, 12.16840072, 8.78024108, 8.78024108, 8.78024108,
8.78024108, 8.76942457, 8.76942457, 8.76942457, 8.76942457,
8.75063752, 8.75063752, 8.75063752, 8.75063752, 8.73380138,
8.73380138, 8.73380138, 8.73380138, 8.71931988, 8.71931988,
8.71931988, 8.71931988, 8.70751446, 8.70751446, 8.70751446,
8.70751446, 8.70043512, 8.70043512, 8.70043512, 8.70043512,
8.6963955 , 8.6963955 , 8.6963955 , 8.6963955 , 8.69863881,
8.69863881, 8.69863881, 8.69863881, 8.70564688, 8.70564688,
8.70564688, 8.70564688, 8.71289181, 8.71289181, 8.71289181,
8.71289181, 8.72393276, 8.72393276, 8.72393276, 8.72393276,
8.73662685, 8.73662685, 8.73662685, 8.73662685, 8.73213167,
8.73213167, 8.73213167, 8.73213167, 8.71801496, 8.71801496,
8.71801496, 8.71801496, 8.61367472, 8.61367472, 8.61367472,
8.61367472, 8.09804238, 8.09804238, 8.09804238, 8.09804238,
5.3488366 , 5.3488366 , 5.3488366 , 5.3488366 , -3.4209141 ,
-3.4209141 , -3.4209141 , -3.4209141 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.90548673, 460.90548673, 460.90548673, 460.90548673,
1131.28216963, 1131.28216963, 1131.28216963, 1131.28216963,
1674.35990348, 1674.35990348, 1674.35990348, 1674.35990348,
1674.9052894 , 1674.9052894 , 1674.9052894 , 1674.9052894 ,
1677.56332958, 1677.56332958, 1677.56332958, 1677.56332958,
1679.80215724, 1679.80215724, 1679.80215724, 1679.80215724,
1681.87647357, 1681.87647357, 1681.87647357, 1681.87647357,
1683.2938581 , 1683.2938581 , 1683.2938581 , 1683.2938581 ,
1684.63505998, 1684.63505998, 1684.63505998, 1684.63505998,
1686.40409864, 1686.40409864, 1686.40409864, 1686.40409864,
1688.38421778, 1688.38421778, 1688.38421778, 1688.38421778,
1690.7810856 , 1690.7810856 , 1690.7810856 , 1690.7810856 ,
1695.0191866 , 1695.0191866 , 1695.0191866 , 1695.0191866 ,
1700.58403003, 1700.58403003, 1700.58403003, 1700.58403003,
1702.25724958, 1702.25724958, 1702.25724958, 1702.25724958,
1703.22609002, 1703.22609002, 1703.22609002, 1703.22609002,
1697.8039036 , 1697.8039036 , 1697.8039036 , 1697.8039036 ,
1674.27076203, 1674.27076203, 1674.27076203, 1674.27076203,
1537.78741563, 1537.78741563, 1537.78741563, 1537.78741563,
982.5775785 , 982.5775785 , 982.5775785 , 982.5775785 ,
138.82378594, 138.82378594, 138.82378594, 138.82378594,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99928774,
5.99928774, 5.99928774, 5.99928774, 10.39078099, 10.39078099,
10.39078099, 10.39078099, 14.08078884, 14.08078884, 14.08078884,
14.08078884, 14.0878413 , 14.0878413 , 14.0878413 , 14.0878413 ,
14.13721429, 14.13721429, 14.13721429, 14.13721429, 14.2174942 ,
14.2174942 , 14.2174942 , 14.2174942 , 14.26073522, 14.26073522,
14.26073522, 14.26073522, 14.26930759, 14.26930759, 14.26930759,
14.26930759, 14.28127892, 14.28127892, 14.28127892, 14.28127892,
14.3476456 , 14.3476456 , 14.3476456 , 14.3476456 , 14.59756023,
14.59756023, 14.59756023, 14.59756023, 15.25815684, 15.25815684,
15.25815684, 15.25815684, 16.64338379, 16.64338379, 16.64338379,
16.64338379, 19.03513382, 19.03513382, 19.03513382, 19.03513382,
22.51673868, 22.51673868, 22.51673868, 22.51673868, 26.15862478,
26.15862478, 26.15862478, 26.15862478, 28.33037535, 28.33037535,
28.33037535, 28.33037535, 29.51352736, 29.51352736, 29.51352736,
29.51352736, 29.65310158, 29.65310158, 29.65310158, 29.65310158,
27.58144993, 27.58144993, 27.58144993, 27.58144993, 17.26013663,
17.26013663, 17.26013663, 17.26013663, 6.44729149, 6.44729149,
6.44729149, 6.44729149, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59741748,
19.59741748, 19.59741748, 19.59741748, 12.59432549, 12.59432549,
12.59432549, 12.59432549, 8.78272684, 8.78272684, 8.78272684,
8.78272684, 8.7695597 , 8.7695597 , 8.7695597 , 8.7695597 ,
8.75004629, 8.75004629, 8.75004629, 8.75004629, 8.7330606 ,
8.7330606 , 8.7330606 , 8.7330606 , 8.71914468, 8.71914468,
8.71914468, 8.71914468, 8.70767497, 8.70767497, 8.70767497,
8.70767497, 8.69893603, 8.69893603, 8.69893603, 8.69893603,
8.69236612, 8.69236612, 8.69236612, 8.69236612, 8.69135946,
8.69135946, 8.69135946, 8.69135946, 8.6939429 , 8.6939429 ,
8.6939429 , 8.6939429 , 8.69555098, 8.69555098, 8.69555098,
8.69555098, 8.70543976, 8.70543976, 8.70543976, 8.70543976,
8.72511174, 8.72511174, 8.72511174, 8.72511174, 8.73073902,
8.73073902, 8.73073902, 8.73073902, 8.73171085, 8.73171085,
8.73171085, 8.73171085, 8.69602356, 8.69602356, 8.69602356,
8.69602356, 8.54135272, 8.54135272, 8.54135272, 8.54135272,
7.65763407, 7.65763407, 7.65763407, 7.65763407, 3.29824437,
3.29824437, 3.29824437, 3.29824437, -5.63941553, -5.63941553,
-5.63941553, -5.63941553, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89913448, 460.89913448, 460.89913448, 460.89913448,
1073.29357241, 1073.29357241, 1073.29357241, 1073.29357241,
1675.4363695 , 1675.4363695 , 1675.4363695 , 1675.4363695 ,
1676.07220414, 1676.07220414, 1676.07220414, 1676.07220414,
1678.75202029, 1678.75202029, 1678.75202029, 1678.75202029,
1680.85729776, 1680.85729776, 1680.85729776, 1680.85729776,
1682.74486588, 1682.74486588, 1682.74486588, 1682.74486588,
1683.98582995, 1683.98582995, 1683.98582995, 1683.98582995,
1684.99503989, 1684.99503989, 1684.99503989, 1684.99503989,
1686.00718632, 1686.00718632, 1686.00718632, 1686.00718632,
1687.30762953, 1687.30762953, 1687.30762953, 1687.30762953,
1688.93728425, 1688.93728425, 1688.93728425, 1688.93728425,
1692.17310128, 1692.17310128, 1692.17310128, 1692.17310128,
1696.30600482, 1696.30600482, 1696.30600482, 1696.30600482,
1699.65506547, 1699.65506547, 1699.65506547, 1699.65506547,
1702.84641388, 1702.84641388, 1702.84641388, 1702.84641388,
1701.42378925, 1701.42378925, 1701.42378925, 1701.42378925,
1696.13380537, 1696.13380537, 1696.13380537, 1696.13380537,
1651.65906992, 1651.65906992, 1651.65906992, 1651.65906992,
1431.51432175, 1431.51432175, 1431.51432175, 1431.51432175,
680.78792856, 680.78792856, 680.78792856, 680.78792856,
59.1911723 , 59.1911723 , 59.1911723 , 59.1911723 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99926134,
5.99926134, 5.99926134, 5.99926134, 10.01149603, 10.01149603,
10.01149603, 10.01149603, 14.12198239, 14.12198239, 14.12198239,
14.12198239, 14.09397493, 14.09397493, 14.09397493, 14.09397493,
14.12583022, 14.12583022, 14.12583022, 14.12583022, 14.19086237,
14.19086237, 14.19086237, 14.19086237, 14.25410719, 14.25410719,
14.25410719, 14.25410719, 14.27197374, 14.27197374, 14.27197374,
14.27197374, 14.28240806, 14.28240806, 14.28240806, 14.28240806,
14.31746027, 14.31746027, 14.31746027, 14.31746027, 14.46525854,
14.46525854, 14.46525854, 14.46525854, 14.90386223, 14.90386223,
14.90386223, 14.90386223, 15.90395761, 15.90395761, 15.90395761,
15.90395761, 17.75867 , 17.75867 , 17.75867 , 17.75867 ,
20.66876633, 20.66876633, 20.66876633, 20.66876633, 24.48136911,
24.48136911, 24.48136911, 24.48136911, 27.35753674, 27.35753674,
27.35753674, 27.35753674, 29.11294259, 29.11294259, 29.11294259,
29.11294259, 29.76350665, 29.76350665, 29.76350665, 29.76350665,
29.55660544, 29.55660544, 29.55660544, 29.55660544, 25.57934994,
25.57934994, 25.57934994, 25.57934994, 12.50993605, 12.50993605,
12.50993605, 12.50993605, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59746311,
19.59746311, 19.59746311, 19.59746311, 13.11664088, 13.11664088,
13.11664088, 13.11664088, 8.7476418 , 8.7476418 , 8.7476418 ,
8.7476418 , 8.76172138, 8.76172138, 8.76172138, 8.76172138,
8.75090622, 8.75090622, 8.75090622, 8.75090622, 8.73331556,
8.73331556, 8.73331556, 8.73331556, 8.71942064, 8.71942064,
8.71942064, 8.71942064, 8.70850652, 8.70850652, 8.70850652,
8.70850652, 8.69937096, 8.69937096, 8.69937096, 8.69937096,
8.6918181 , 8.6918181 , 8.6918181 , 8.6918181 , 8.68797472,
8.68797472, 8.68797472, 8.68797472, 8.68694529, 8.68694529,
8.68694529, 8.68694529, 8.68441506, 8.68441506, 8.68441506,
8.68441506, 8.68993672, 8.68993672, 8.68993672, 8.68993672,
8.70660633, 8.70660633, 8.70660633, 8.70660633, 8.72124868,
8.72124868, 8.72124868, 8.72124868, 8.73158052, 8.73158052,
8.73158052, 8.73158052, 8.71859206, 8.71859206, 8.71859206,
8.71859206, 8.67848867, 8.67848867, 8.67848867, 8.67848867,
8.40323401, 8.40323401, 8.40323401, 8.40323401, 6.90752715,
6.90752715, 6.90752715, 6.90752715, 0.51776593, 0.51776593,
0.51776593, 0.51776593, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89629506, 460.89629506, 460.89629506, 460.89629506,
1020.63327811, 1020.63327811, 1020.63327811, 1020.63327811,
1669.85230227, 1669.85230227, 1669.85230227, 1669.85230227,
1675.8969543 , 1675.8969543 , 1675.8969543 , 1675.8969543 ,
1680.18457824, 1680.18457824, 1680.18457824, 1680.18457824,
1682.0220882 , 1682.0220882 , 1682.0220882 , 1682.0220882 ,
1683.62770096, 1683.62770096, 1683.62770096, 1683.62770096,
1684.79442324, 1684.79442324, 1684.79442324, 1684.79442324,
1685.66338677, 1685.66338677, 1685.66338677, 1685.66338677,
1686.26360422, 1686.26360422, 1686.26360422, 1686.26360422,
1686.92243376, 1686.92243376, 1686.92243376, 1686.92243376,
1688.08320996, 1688.08320996, 1688.08320996, 1688.08320996,
1690.43113774, 1690.43113774, 1690.43113774, 1690.43113774,
1692.97314487, 1692.97314487, 1692.97314487, 1692.97314487,
1695.63062127, 1695.63062127, 1695.63062127, 1695.63062127,
1700.35370598, 1700.35370598, 1700.35370598, 1700.35370598,
1701.42617062, 1701.42617062, 1701.42617062, 1701.42617062,
1702.15521488, 1702.15521488, 1702.15521488, 1702.15521488,
1687.91525614, 1687.91525614, 1687.91525614, 1687.91525614,
1616.43289599, 1616.43289599, 1616.43289599, 1616.43289599,
1270.51340497, 1270.51340497, 1270.51340497, 1270.51340497,
386.67443541, 386.67443541, 386.67443541, 386.67443541,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924954,
5.99924954, 5.99924954, 5.99924954, 9.66826894, 9.66826894,
9.66826894, 9.66826894, 14.14354628, 14.14354628, 14.14354628,
14.14354628, 14.09739682, 14.09739682, 14.09739682, 14.09739682,
14.11011649, 14.11011649, 14.11011649, 14.11011649, 14.16398654,
14.16398654, 14.16398654, 14.16398654, 14.2398651 , 14.2398651 ,
14.2398651 , 14.2398651 , 14.27146969, 14.27146969, 14.27146969,
14.27146969, 14.28374376, 14.28374376, 14.28374376, 14.28374376,
14.30484557, 14.30484557, 14.30484557, 14.30484557, 14.39007039,
14.39007039, 14.39007039, 14.39007039, 14.6715911 , 14.6715911 ,
14.6715911 , 14.6715911 , 15.37150836, 15.37150836, 15.37150836,
15.37150836, 16.76969247, 16.76969247, 16.76969247, 16.76969247,
19.12080813, 19.12080813, 19.12080813, 19.12080813, 22.55397837,
22.55397837, 22.55397837, 22.55397837, 26.06313675, 26.06313675,
26.06313675, 26.06313675, 28.40882972, 28.40882972, 28.40882972,
28.40882972, 29.55435353, 29.55435353, 29.55435353, 29.55435353,
29.95164766, 29.95164766, 29.95164766, 29.95164766, 29.06215617,
29.06215617, 29.06215617, 29.06215617, 22.44531357, 22.44531357,
22.44531357, 22.44531357, 8.74122541, 8.74122541, 8.74122541,
8.74122541, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59748351,
19.59748351, 19.59748351, 19.59748351, 13.76566568, 13.76566568,
13.76566568, 13.76566568, 8.69088535, 8.69088535, 8.69088535,
8.69088535, 8.71862458, 8.71862458, 8.71862458, 8.71862458,
8.73345405, 8.73345405, 8.73345405, 8.73345405, 8.7321204 ,
8.7321204 , 8.7321204 , 8.7321204 , 8.72134726, 8.72134726,
8.72134726, 8.72134726, 8.709702 , 8.709702 , 8.709702 ,
8.709702 , 8.70076536, 8.70076536, 8.70076536, 8.70076536,
8.69310476, 8.69310476, 8.69310476, 8.69310476, 8.68783555,
8.68783555, 8.68783555, 8.68783555, 8.68326968, 8.68326968,
8.68326968, 8.68326968, 8.67770749, 8.67770749, 8.67770749,
8.67770749, 8.68049792, 8.68049792, 8.68049792, 8.68049792,
8.69140992, 8.69140992, 8.69140992, 8.69140992, 8.7042477 ,
8.7042477 , 8.7042477 , 8.7042477 , 8.72283297, 8.72283297,
8.72283297, 8.72283297, 8.72175327, 8.72175327, 8.72175327,
8.72175327, 8.71728265, 8.71728265, 8.71728265, 8.71728265,
8.63471975, 8.63471975, 8.63471975, 8.63471975, 8.1726214 ,
8.1726214 , 8.1726214 , 8.1726214 , 5.68476992, 5.68476992,
5.68476992, 5.68476992, -2.78464709, -2.78464709, -2.78464709,
-2.78464709, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89502587, 460.89502587, 460.89502587, 460.89502587,
977.63636544, 977.63636544, 977.63636544, 977.63636544,
1660.64047954, 1660.64047954, 1660.64047954, 1660.64047954,
1669.69997985, 1669.69997985, 1669.69997985, 1669.69997985,
1678.16688547, 1678.16688547, 1678.16688547, 1678.16688547,
1682.79062275, 1682.79062275, 1682.79062275, 1682.79062275,
1684.77106257, 1684.77106257, 1684.77106257, 1684.77106257,
1685.65774717, 1685.65774717, 1685.65774717, 1685.65774717,
1686.43346359, 1686.43346359, 1686.43346359, 1686.43346359,
1686.84774538, 1686.84774538, 1686.84774538, 1686.84774538,
1687.17743209, 1687.17743209, 1687.17743209, 1687.17743209,
1687.93813276, 1687.93813276, 1687.93813276, 1687.93813276,
1689.48124456, 1689.48124456, 1689.48124456, 1689.48124456,
1691.07878894, 1691.07878894, 1691.07878894, 1691.07878894,
1692.3943848 , 1692.3943848 , 1692.3943848 , 1692.3943848 ,
1696.07410941, 1696.07410941, 1696.07410941, 1696.07410941,
1699.33801236, 1699.33801236, 1699.33801236, 1699.33801236,
1702.98520641, 1702.98520641, 1702.98520641, 1702.98520641,
1698.23180489, 1698.23180489, 1698.23180489, 1698.23180489,
1677.28093815, 1677.28093815, 1677.28093815, 1677.28093815,
1556.19872094, 1556.19872094, 1556.19872094, 1556.19872094,
1039.76131293, 1039.76131293, 1039.76131293, 1039.76131293,
169.13872798, 169.13872798, 169.13872798, 169.13872798,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924426,
5.99924426, 5.99924426, 5.99924426, 9.35728004, 9.35728004,
9.35728004, 9.35728004, 14.16291039, 14.16291039, 14.16291039,
14.16291039, 14.10395741, 14.10395741, 14.10395741, 14.10395741,
14.09257603, 14.09257603, 14.09257603, 14.09257603, 14.12849497,
14.12849497, 14.12849497, 14.12849497, 14.20670054, 14.20670054,
14.20670054, 14.20670054, 14.26589425, 14.26589425, 14.26589425,
14.26589425, 14.28383717, 14.28383717, 14.28383717, 14.28383717,
14.30001853, 14.30001853, 14.30001853, 14.30001853, 14.34990572,
14.34990572, 14.34990572, 14.34990572, 14.52613511, 14.52613511,
14.52613511, 14.52613511, 15.00074608, 15.00074608, 15.00074608,
15.00074608, 16.02431223, 16.02431223, 16.02431223, 16.02431223,
17.86960949, 17.86960949, 17.86960949, 17.86960949, 20.74362606,
20.74362606, 20.74362606, 20.74362606, 24.40548791, 24.40548791,
24.40548791, 24.40548791, 27.40928301, 27.40928301, 27.40928301,
27.40928301, 29.06335744, 29.06335744, 29.06335744, 29.06335744,
29.9165526 , 29.9165526 , 29.9165526 , 29.9165526 , 29.98430588,
29.98430588, 29.98430588, 29.98430588, 27.98012646, 27.98012646,
27.98012646, 27.98012646, 18.17540099, 18.17540099, 18.17540099,
18.17540099, 6.69272036, 6.69272036, 6.69272036, 6.69272036,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749263,
19.59749263, 19.59749263, 19.59749263, 14.44020267, 14.44020267,
14.44020267, 14.44020267, 8.68307991, 8.68307991, 8.68307991,
8.68307991, 8.67610529, 8.67610529, 8.67610529, 8.67610529,
8.69064221, 8.69064221, 8.69064221, 8.69064221, 8.71075289,
8.71075289, 8.71075289, 8.71075289, 8.71568545, 8.71568545,
8.71568545, 8.71568545, 8.71157748, 8.71157748, 8.71157748,
8.71157748, 8.70303395, 8.70303395, 8.70303395, 8.70303395,
8.69529177, 8.69529177, 8.69529177, 8.69529177, 8.68929269,
8.68929269, 8.68929269, 8.68929269, 8.68241914, 8.68241914,
8.68241914, 8.68241914, 8.67489554, 8.67489554, 8.67489554,
8.67489554, 8.67568357, 8.67568357, 8.67568357, 8.67568357,
8.68245141, 8.68245141, 8.68245141, 8.68245141, 8.68976966,
8.68976966, 8.68976966, 8.68976966, 8.70694721, 8.70694721,
8.70694721, 8.70694721, 8.71454705, 8.71454705, 8.71454705,
8.71454705, 8.7247428 , 8.7247428 , 8.7247428 , 8.7247428 ,
8.7020353 , 8.7020353 , 8.7020353 , 8.7020353 , 8.56502968,
8.56502968, 8.56502968, 8.56502968, 7.77996246, 7.77996246,
7.77996246, 7.77996246, 3.7935205 , 3.7935205 , 3.7935205 ,
3.7935205 , -5.32354542, -5.32354542, -5.32354542, -5.32354542,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89445855, 460.89445855, 460.89445855, 460.89445855,
933.18597423, 933.18597423, 933.18597423, 933.18597423,
1660.42668543, 1660.42668543, 1660.42668543, 1660.42668543,
1663.32563193, 1663.32563193, 1663.32563193, 1663.32563193,
1671.66824541, 1671.66824541, 1671.66824541, 1671.66824541,
1679.89539446, 1679.89539446, 1679.89539446, 1679.89539446,
1684.41359508, 1684.41359508, 1684.41359508, 1684.41359508,
1686.60247269, 1686.60247269, 1686.60247269, 1686.60247269,
1687.3086245 , 1687.3086245 , 1687.3086245 , 1687.3086245 ,
1687.55852867, 1687.55852867, 1687.55852867, 1687.55852867,
1687.79354963, 1687.79354963, 1687.79354963, 1687.79354963,
1688.38417159, 1688.38417159, 1688.38417159, 1688.38417159,
1689.21739813, 1689.21739813, 1689.21739813, 1689.21739813,
1690.08745483, 1690.08745483, 1690.08745483, 1690.08745483,
1690.47095516, 1690.47095516, 1690.47095516, 1690.47095516,
1692.60016332, 1692.60016332, 1692.60016332, 1692.60016332,
1695.64625151, 1695.64625151, 1695.64625151, 1695.64625151,
1701.02926834, 1701.02926834, 1701.02926834, 1701.02926834,
1700.19286408, 1700.19286408, 1700.19286408, 1700.19286408,
1695.24499175, 1695.24499175, 1695.24499175, 1695.24499175,
1657.82666898, 1657.82666898, 1657.82666898, 1657.82666898,
1458.91114694, 1458.91114694, 1458.91114694, 1458.91114694,
745.64720626, 745.64720626, 745.64720626, 745.64720626,
68.08707772, 68.08707772, 68.08707772, 68.08707772,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924191,
5.99924191, 5.99924191, 5.99924191, 8.91010155, 8.91010155,
8.91010155, 8.91010155, 14.26626517, 14.26626517, 14.26626517,
14.26626517, 14.17721536, 14.17721536, 14.17721536, 14.17721536,
14.10140812, 14.10140812, 14.10140812, 14.10140812, 14.09717055,
14.09717055, 14.09717055, 14.09717055, 14.15221798, 14.15221798,
14.15221798, 14.15221798, 14.23981658, 14.23981658, 14.23981658,
14.23981658, 14.27811207, 14.27811207, 14.27811207, 14.27811207,
14.29795704, 14.29795704, 14.29795704, 14.29795704, 14.32981899,
14.32981899, 14.32981899, 14.32981899, 14.43868552, 14.43868552,
14.43868552, 14.43868552, 14.75128835, 14.75128835, 14.75128835,
14.75128835, 15.4791328 , 15.4791328 , 15.4791328 , 15.4791328 ,
16.88725445, 16.88725445, 16.88725445, 16.88725445, 19.22712749,
19.22712749, 19.22712749, 19.22712749, 22.52991222, 22.52991222,
22.52991222, 22.52991222, 26.10771279, 26.10771279, 26.10771279,
26.10771279, 28.31774838, 28.31774838, 28.31774838, 28.31774838,
29.61540996, 29.61540996, 29.61540996, 29.61540996, 30.10739131,
30.10739131, 30.10739131, 30.10739131, 29.83141011, 29.83141011,
29.83141011, 29.83141011, 26.0883515 , 26.0883515 , 26.0883515 ,
26.0883515 , 13.46458057, 13.46458057, 13.46458057, 13.46458057,
6.00283479, 6.00283479, 6.00283479, 6.00283479, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749671,
19.59749671, 19.59749671, 19.59749671, 15.04816172, 15.04816172,
15.04816172, 15.04816172, 8.7701521 , 8.7701521 , 8.7701521 ,
8.7701521 , 8.70248982, 8.70248982, 8.70248982, 8.70248982,
8.66631628, 8.66631628, 8.66631628, 8.66631628, 8.6681861 ,
8.6681861 , 8.6681861 , 8.6681861 , 8.69045951, 8.69045951,
8.69045951, 8.69045951, 8.70219543, 8.70219543, 8.70219543,
8.70219543, 8.70303138, 8.70303138, 8.70303138, 8.70303138,
8.6983274 , 8.6983274 , 8.6983274 , 8.6983274 , 8.69148957,
8.69148957, 8.69148957, 8.69148957, 8.68319102, 8.68319102,
8.68319102, 8.68319102, 8.67523211, 8.67523211, 8.67523211,
8.67523211, 8.67446784, 8.67446784, 8.67446784, 8.67446784,
8.67812393, 8.67812393, 8.67812393, 8.67812393, 8.68119307,
8.68119307, 8.68119307, 8.68119307, 8.69199202, 8.69199202,
8.69199202, 8.69199202, 8.70119277, 8.70119277, 8.70119277,
8.70119277, 8.71979547, 8.71979547, 8.71979547, 8.71979547,
8.71680504, 8.71680504, 8.71680504, 8.71680504, 8.68181304,
8.68181304, 8.68181304, 8.68181304, 8.44316553, 8.44316553,
8.44316553, 8.44316553, 7.11113592, 7.11113592, 7.11113592,
7.11113592, 1.15816769, 1.15816769, 1.15816769, 1.15816769,
-6.18526944, -6.18526944, -6.18526944, -6.18526944, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89420497, 460.89420497, 460.89420497, 460.89420497,
866.68575165, 866.68575165, 866.68575165, 866.68575165,
1677.80431545, 1677.80431545, 1677.80431545, 1677.80431545,
1669.27099826, 1669.27099826, 1669.27099826, 1669.27099826,
1668.33038019, 1668.33038019, 1668.33038019, 1668.33038019,
1673.11657162, 1673.11657162, 1673.11657162, 1673.11657162,
1680.58894839, 1680.58894839, 1680.58894839, 1680.58894839,
1685.43245866, 1685.43245866, 1685.43245866, 1685.43245866,
1687.67463941, 1687.67463941, 1687.67463941, 1687.67463941,
1688.43144069, 1688.43144069, 1688.43144069, 1688.43144069,
1688.59202001, 1688.59202001, 1688.59202001, 1688.59202001,
1689.13976246, 1689.13976246, 1689.13976246, 1689.13976246,
1689.47201636, 1689.47201636, 1689.47201636, 1689.47201636,
1689.75793919, 1689.75793919, 1689.75793919, 1689.75793919,
1689.54059646, 1689.54059646, 1689.54059646, 1689.54059646,
1690.6375146 , 1690.6375146 , 1690.6375146 , 1690.6375146 ,
1692.31798241, 1692.31798241, 1692.31798241, 1692.31798241,
1697.44345312, 1697.44345312, 1697.44345312, 1697.44345312,
1698.88800322, 1698.88800322, 1698.88800322, 1698.88800322,
1699.19910236, 1699.19910236, 1699.19910236, 1699.19910236,
1688.88906962, 1688.88906962, 1688.88906962, 1688.88906962,
1625.54418239, 1625.54418239, 1625.54418239, 1625.54418239,
1310.40246856, 1310.40246856, 1310.40246856, 1310.40246856,
445.12057808, 445.12057808, 445.12057808, 445.12057808,
46.31207091, 46.31207091, 46.31207091, 46.31207091,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924085,
5.99924085, 5.99924085, 5.99924085, 8.41963211, 8.41963211,
8.41963211, 8.41963211, 14.32067919, 14.32067919, 14.32067919,
14.32067919, 14.27805193, 14.27805193, 14.27805193, 14.27805193,
14.17042384, 14.17042384, 14.17042384, 14.17042384, 14.10927185,
14.10927185, 14.10927185, 14.10927185, 14.11632094, 14.11632094,
14.11632094, 14.11632094, 14.18029111, 14.18029111, 14.18029111,
14.18029111, 14.25486229, 14.25486229, 14.25486229, 14.25486229,
14.28741679, 14.28741679, 14.28741679, 14.28741679, 14.31927422,
14.31927422, 14.31927422, 14.31927422, 14.38898131, 14.38898131,
14.38898131, 14.38898131, 14.58934533, 14.58934533, 14.58934533,
14.58934533, 15.09190069, 15.09190069, 15.09190069, 15.09190069,
16.13771089, 16.13771089, 16.13771089, 16.13771089, 17.99138552,
17.99138552, 17.99138552, 17.99138552, 20.79661541, 20.79661541,
20.79661541, 20.79661541, 24.45432855, 24.45432855, 24.45432855,
24.45432855, 27.30539236, 27.30539236, 27.30539236, 27.30539236,
29.07403061, 29.07403061, 29.07403061, 29.07403061, 29.96466621,
29.96466621, 29.96466621, 29.96466621, 30.21014242, 30.21014242,
30.21014242, 30.21014242, 29.33077419, 29.33077419, 29.33077419,
29.33077419, 23.1665558 , 23.1665558 , 23.1665558 , 23.1665558 ,
9.40413373, 9.40413373, 9.40413373, 9.40413373, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749853,
19.59749853, 19.59749853, 19.59749853, 15.69123852, 15.69123852,
15.69123852, 15.69123852, 8.81172522, 8.81172522, 8.81172522,
8.81172522, 8.76473273, 8.76473273, 8.76473273, 8.76473273,
8.69598215, 8.69598215, 8.69598215, 8.69598215, 8.66163298,
8.66163298, 8.66163298, 8.66163298, 8.65659671, 8.65659671,
8.65659671, 8.65659671, 8.67284391, 8.67284391, 8.67284391,
8.67284391, 8.69087936, 8.69087936, 8.69087936, 8.69087936,
8.69553597, 8.69553597, 8.69553597, 8.69553597, 8.69293291,
8.69293291, 8.69293291, 8.69293291, 8.68585684, 8.68585684,
8.68585684, 8.68585684, 8.67775947, 8.67775947, 8.67775947,
8.67775947, 8.67539766, 8.67539766, 8.67539766, 8.67539766,
8.67700313, 8.67700313, 8.67700313, 8.67700313, 8.67727649,
8.67727649, 8.67727649, 8.67727649, 8.68275622, 8.68275622,
8.68275622, 8.68275622, 8.68768458, 8.68768458, 8.68768458,
8.68768458, 8.70787439, 8.70787439, 8.70787439, 8.70787439,
8.71508163, 8.71508163, 8.71508163, 8.71508163, 8.71081194,
8.71081194, 8.71081194, 8.71081194, 8.64451366, 8.64451366,
8.64451366, 8.64451366, 8.23766224, 8.23766224, 8.23766224,
8.23766224, 6.00485414, 6.00485414, 6.00485414, 6.00485414,
-2.07997892, -2.07997892, -2.07997892, -2.07997892, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89409162, 460.89409162, 460.89409162, 460.89409162,
793.36263021, 793.36263021, 793.36263021, 793.36263021,
1686.43990471, 1686.43990471, 1686.43990471, 1686.43990471,
1682.15207572, 1682.15207572, 1682.15207572, 1682.15207572,
1674.7933506 , 1674.7933506 , 1674.7933506 , 1674.7933506 ,
1672.61097758, 1672.61097758, 1672.61097758, 1672.61097758,
1675.16126234, 1675.16126234, 1675.16126234, 1675.16126234,
1680.61556691, 1680.61556691, 1680.61556691, 1680.61556691,
1685.85859429, 1685.85859429, 1685.85859429, 1685.85859429,
1688.19601121, 1688.19601121, 1688.19601121, 1688.19601121,
1689.32894658, 1689.32894658, 1689.32894658, 1689.32894658,
1690.14987454, 1690.14987454, 1690.14987454, 1690.14987454,
1690.06145822, 1690.06145822, 1690.06145822, 1690.06145822,
1689.78496303, 1689.78496303, 1689.78496303, 1689.78496303,
1689.32314367, 1689.32314367, 1689.32314367, 1689.32314367,
1689.78670108, 1689.78670108, 1689.78670108, 1689.78670108,
1690.37884588, 1690.37884588, 1690.37884588, 1690.37884588,
1693.90794861, 1693.90794861, 1693.90794861, 1693.90794861,
1695.8182888 , 1695.8182888 , 1695.8182888 , 1695.8182888 ,
1698.7344182 , 1698.7344182 , 1698.7344182 , 1698.7344182 ,
1696.6502919 , 1696.6502919 , 1696.6502919 , 1696.6502919 ,
1678.73322594, 1678.73322594, 1678.73322594, 1678.73322594,
1571.30068303, 1571.30068303, 1571.30068303, 1571.30068303,
1095.87520815, 1095.87520815, 1095.87520815, 1095.87520815,
206.6425445 , 206.6425445 , 206.6425445 , 206.6425445 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924038,
5.99924038, 5.99924038, 5.99924038, 7.91003434, 7.91003434,
7.91003434, 7.91003434, 14.34738841, 14.34738841, 14.34738841,
14.34738841, 14.3316937 , 14.3316937 , 14.3316937 , 14.3316937 ,
14.2729339 , 14.2729339 , 14.2729339 , 14.2729339 , 14.1680748 ,
14.1680748 , 14.1680748 , 14.1680748 , 14.1263544 , 14.1263544 ,
14.1263544 , 14.1263544 , 14.14345566, 14.14345566, 14.14345566,
14.14345566, 14.20258109, 14.20258109, 14.20258109, 14.20258109,
14.26182758, 14.26182758, 14.26182758, 14.26182758, 14.30299917,
14.30299917, 14.30299917, 14.30299917, 14.35723166, 14.35723166,
14.35723166, 14.35723166, 14.4884073 , 14.4884073 , 14.4884073 ,
14.4884073 , 14.82597909, 14.82597909, 14.82597909, 14.82597909,
15.5815915 , 15.5815915 , 15.5815915 , 15.5815915 , 17.01102296,
17.01102296, 17.01102296, 17.01102296, 19.32252828, 19.32252828,
19.32252828, 19.32252828, 22.61974042, 22.61974042, 22.61974042,
22.61974042, 26.01729543, 26.01729543, 26.01729543, 26.01729543,
28.30360654, 28.30360654, 28.30360654, 28.30360654, 29.59819706,
29.59819706, 29.59819706, 29.59819706, 30.19748238, 30.19748238,
30.19748238, 30.19748238, 30.19846012, 30.19846012, 30.19846012,
30.19846012, 28.29821234, 28.29821234, 28.29821234, 28.29821234,
19.13418208, 19.13418208, 19.13418208, 19.13418208, 6.99659014,
6.99659014, 6.99659014, 6.99659014, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749934,
19.59749934, 19.59749934, 19.59749934, 16.40941664, 16.40941664,
16.40941664, 16.40941664, 8.82485533, 8.82485533, 8.82485533,
8.82485533, 8.79573239, 8.79573239, 8.79573239, 8.79573239,
8.75227497, 8.75227497, 8.75227497, 8.75227497, 8.69333804,
8.69333804, 8.69333804, 8.69333804, 8.65873307, 8.65873307,
8.65873307, 8.65873307, 8.65069359, 8.65069359, 8.65069359,
8.65069359, 8.66077701, 8.66077701, 8.66077701, 8.66077701,
8.68028982, 8.68028982, 8.68028982, 8.68028982, 8.6866413 ,
8.6866413 , 8.6866413 , 8.6866413 , 8.6861228 , 8.6861228 ,
8.6861228 , 8.6861228 , 8.6814526 , 8.6814526 , 8.6814526 ,
8.6814526 , 8.67888773, 8.67888773, 8.67888773, 8.67888773,
8.67775411, 8.67775411, 8.67775411, 8.67775411, 8.6764208 ,
8.6764208 , 8.6764208 , 8.6764208 , 8.67872569, 8.67872569,
8.67872569, 8.67872569, 8.67909904, 8.67909904, 8.67909904,
8.67909904, 8.69435722, 8.69435722, 8.69435722, 8.69435722,
8.70621475, 8.70621475, 8.70621475, 8.70621475, 8.71308756,
8.71308756, 8.71308756, 8.71308756, 8.69901201, 8.69901201,
8.69901201, 8.69901201, 8.58258793, 8.58258793, 8.58258793,
8.58258793, 7.88962994, 7.88962994, 7.88962994, 7.88962994,
4.2672388 , 4.2672388 , 4.2672388 , 4.2672388 , -4.92722735,
-4.92722735, -4.92722735, -4.92722735, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89404095, 460.89404095, 460.89404095, 460.89404095,
717.96564395, 717.96564395, 717.96564395, 717.96564395,
1688.71209354, 1688.71209354, 1688.71209354, 1688.71209354,
1689.07064819, 1689.07064819, 1689.07064819, 1689.07064819,
1686.21538307, 1686.21538307, 1686.21538307, 1686.21538307,
1679.32245135, 1679.32245135, 1679.32245135, 1679.32245135,
1676.00126704, 1676.00126704, 1676.00126704, 1676.00126704,
1677.10005677, 1677.10005677, 1677.10005677, 1677.10005677,
1680.69637722, 1680.69637722, 1680.69637722, 1680.69637722,
1685.80087348, 1685.80087348, 1685.80087348, 1685.80087348,
1688.70920636, 1688.70920636, 1688.70920636, 1688.70920636,
1690.54735925, 1690.54735925, 1690.54735925, 1690.54735925,
1690.85510267, 1690.85510267, 1690.85510267, 1690.85510267,
1690.25181985, 1690.25181985, 1690.25181985, 1690.25181985,
1689.51821895, 1689.51821895, 1689.51821895, 1689.51821895,
1689.57783456, 1689.57783456, 1689.57783456, 1689.57783456,
1689.65603804, 1689.65603804, 1689.65603804, 1689.65603804,
1691.7166648 , 1691.7166648 , 1691.7166648 , 1691.7166648 ,
1692.37997272, 1692.37997272, 1692.37997272, 1692.37997272,
1696.3701987 , 1696.3701987 , 1696.3701987 , 1696.3701987 ,
1697.25391001, 1697.25391001, 1697.25391001, 1697.25391001,
1693.31920613, 1693.31920613, 1693.31920613, 1693.31920613,
1661.12117656, 1661.12117656, 1661.12117656, 1661.12117656,
1483.02354923, 1483.02354923, 1483.02354923, 1483.02354923,
813.24144598, 813.24144598, 813.24144598, 813.24144598,
80.51859504, 80.51859504, 80.51859504, 80.51859504,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924017,
5.99924017, 5.99924017, 5.99924017, 7.37649405, 7.37649405,
7.37649405, 7.37649405, 14.37562881, 14.37562881, 14.37562881,
14.37562881, 14.36338351, 14.36338351, 14.36338351, 14.36338351,
14.33192819, 14.33192819, 14.33192819, 14.33192819, 14.25919308,
14.25919308, 14.25919308, 14.25919308, 14.17470022, 14.17470022,
14.17470022, 14.17470022, 14.15010967, 14.15010967, 14.15010967,
14.15010967, 14.17053714, 14.17053714, 14.17053714, 14.17053714,
14.21908177, 14.21908177, 14.21908177, 14.21908177, 14.27226922,
14.27226922, 14.27226922, 14.27226922, 14.32794724, 14.32794724,
14.32794724, 14.32794724, 14.42101915, 14.42101915, 14.42101915,
14.42101915, 14.64801748, 14.64801748, 14.64801748, 14.64801748,
15.18142497, 15.18142497, 15.18142497, 15.18142497, 16.25430901,
16.25430901, 16.25430901, 16.25430901, 18.10584037, 18.10584037,
18.10584037, 18.10584037, 20.9014521 , 20.9014521 , 20.9014521 ,
20.9014521 , 24.42096823, 24.42096823, 24.42096823, 24.42096823,
27.2930598 , 27.2930598 , 27.2930598 , 27.2930598 , 29.03043122,
29.03043122, 29.03043122, 29.03043122, 29.98245032, 29.98245032,
29.98245032, 29.98245032, 30.32051206, 30.32051206, 30.32051206,
30.32051206, 30.0073725 , 30.0073725 , 30.0073725 , 30.0073725 ,
26.56613444, 26.56613444, 26.56613444, 26.56613444, 14.47373671,
14.47373671, 14.47373671, 14.47373671, 6.04555189, 6.04555189,
6.04555189, 6.04555189, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749971,
19.59749971, 19.59749971, 19.59749971, 17.23455179, 17.23455179,
17.23455179, 17.23455179, 8.83283516, 8.83283516, 8.83283516,
8.83283516, 8.8066986 , 8.8066986 , 8.8066986 , 8.8066986 ,
8.77893982, 8.77893982, 8.77893982, 8.77893982, 8.74393893,
8.74393893, 8.74393893, 8.74393893, 8.69303006, 8.69303006,
8.69303006, 8.69303006, 8.65793403, 8.65793403, 8.65793403,
8.65793403, 8.64844462, 8.64844462, 8.64844462, 8.64844462,
8.65286137, 8.65286137, 8.65286137, 8.65286137, 8.66758632,
8.66758632, 8.66758632, 8.66758632, 8.67826838, 8.67826838,
8.67826838, 8.67826838, 8.6813123 , 8.6813123 , 8.6813123 ,
8.6813123 , 8.68212227, 8.68212227, 8.68212227, 8.68212227,
8.68063646, 8.68063646, 8.68063646, 8.68063646, 8.67755171,
8.67755171, 8.67755171, 8.67755171, 8.67747348, 8.67747348,
8.67747348, 8.67747348, 8.67572487, 8.67572487, 8.67572487,
8.67572487, 8.68568246, 8.68568246, 8.68568246, 8.68568246,
8.69305859, 8.69305859, 8.69305859, 8.69305859, 8.7076952 ,
8.7076952 , 8.7076952 , 8.7076952 , 8.70857632, 8.70857632,
8.70857632, 8.70857632, 8.68124002, 8.68124002, 8.68124002,
8.68124002, 8.47594433, 8.47594433, 8.47594433, 8.47594433,
7.28729035, 7.28729035, 7.28729035, 7.28729035, 1.78738917,
1.78738917, 1.78738917, 1.78738917, -6.13549158, -6.13549158,
-6.13549158, -6.13549158, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89401831, 460.89401831, 460.89401831, 460.89401831,
640.32907573, 640.32907573, 640.32907573, 640.32907573,
1688.97283917, 1688.97283917, 1688.97283917, 1688.97283917,
1692.25449937, 1692.25449937, 1692.25449937, 1692.25449937,
1692.17941475, 1692.17941475, 1692.17941475, 1692.17941475,
1689.40271881, 1689.40271881, 1689.40271881, 1689.40271881,
1682.99070598, 1682.99070598, 1682.99070598, 1682.99070598,
1678.7420523 , 1678.7420523 , 1678.7420523 , 1678.7420523 ,
1678.78423243, 1678.78423243, 1678.78423243, 1678.78423243,
1681.18667403, 1681.18667403, 1681.18667403, 1681.18667403,
1685.75284892, 1685.75284892, 1685.75284892, 1685.75284892,
1689.4021576 , 1689.4021576 , 1689.4021576 , 1689.4021576 ,
1690.83803066, 1690.83803066, 1690.83803066, 1690.83803066,
1690.71746463, 1690.71746463, 1690.71746463, 1690.71746463,
1690.14739212, 1690.14739212, 1690.14739212, 1690.14739212,
1689.75355011, 1689.75355011, 1689.75355011, 1689.75355011,
1689.60668819, 1689.60668819, 1689.60668819, 1689.60668819,
1690.78190264, 1690.78190264, 1690.78190264, 1690.78190264,
1690.18310948, 1690.18310948, 1690.18310948, 1690.18310948,
1692.92688656, 1692.92688656, 1692.92688656, 1692.92688656,
1695.814461 , 1695.814461 , 1695.814461 , 1695.814461 ,
1695.87960857, 1695.87960857, 1695.87960857, 1695.87960857,
1687.43569733, 1687.43569733, 1687.43569733, 1687.43569733,
1631.68447877, 1631.68447877, 1631.68447877, 1631.68447877,
1348.20337487, 1348.20337487, 1348.20337487, 1348.20337487,
508.05741301, 508.05741301, 508.05741301, 508.05741301,
47.34758171, 47.34758171, 47.34758171, 47.34758171,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924008,
5.99924008, 5.99924008, 5.99924008, 6.8239293 , 6.8239293 ,
6.8239293 , 6.8239293 , 14.40274093, 14.40274093, 14.40274093,
14.40274093, 14.3932066 , 14.3932066 , 14.3932066 , 14.3932066 ,
14.36759642, 14.36759642, 14.36759642, 14.36759642, 14.32050287,
14.32050287, 14.32050287, 14.32050287, 14.2461405 , 14.2461405 ,
14.2461405 , 14.2461405 , 14.19058987, 14.19058987, 14.19058987,
14.19058987, 14.17646248, 14.17646248, 14.17646248, 14.17646248,
14.19509807, 14.19509807, 14.19509807, 14.19509807, 14.23721094,
14.23721094, 14.23721094, 14.23721094, 14.28812531, 14.28812531,
14.28812531, 14.28812531, 14.36660987, 14.36660987, 14.36660987,
14.36660987, 14.52667974, 14.52667974, 14.52667974, 14.52667974,
14.89833561, 14.89833561, 14.89833561, 14.89833561, 15.68674478,
15.68674478, 15.68674478, 15.68674478, 17.1304627 , 17.1304627 ,
17.1304627 , 17.1304627 , 19.43884554, 19.43884554, 19.43884554,
19.43884554, 22.63759009, 22.63759009, 22.63759009, 22.63759009,
26.033954 , 26.033954 , 26.033954 , 26.033954 , 28.25091774,
28.25091774, 28.25091774, 28.25091774, 29.58183321, 29.58183321,
29.58183321, 29.58183321, 30.2262222 , 30.2262222 , 30.2262222 ,
30.2262222 , 30.36632078, 30.36632078, 30.36632078, 30.36632078,
29.54572325, 29.54572325, 29.54572325, 29.54572325, 23.86518351,
23.86518351, 23.86518351, 23.86518351, 10.13978954, 10.13978954,
10.13978954, 10.13978954, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749987,
19.59749987, 19.59749987, 19.59749987, 18.17769491, 18.17769491,
18.17769491, 18.17769491, 8.84955886, 8.84955886, 8.84955886,
8.84955886, 8.8105969 , 8.8105969 , 8.8105969 , 8.8105969 ,
8.79050179, 8.79050179, 8.79050179, 8.79050179, 8.76811031,
8.76811031, 8.76811031, 8.76811031, 8.73833779, 8.73833779,
8.73833779, 8.73833779, 8.69433495, 8.69433495, 8.69433495,
8.69433495, 8.6589408 , 8.6589408 , 8.6589408 , 8.6589408 ,
8.6468022 , 8.6468022 , 8.6468022 , 8.6468022 , 8.64574578,
8.64574578, 8.64574578, 8.64574578, 8.65697301, 8.65697301,
8.65697301, 8.65697301, 8.67297466, 8.67297466, 8.67297466,
8.67297466, 8.68055394, 8.68055394, 8.68055394, 8.68055394,
8.68217584, 8.68217584, 8.68217584, 8.68217584, 8.68050877,
8.68050877, 8.68050877, 8.68050877, 8.67805459, 8.67805459,
8.67805459, 8.67805459, 8.67504229, 8.67504229, 8.67504229,
8.67504229, 8.68217954, 8.68217954, 8.68217954, 8.68217954,
8.68445857, 8.68445857, 8.68445857, 8.68445857, 8.69633107,
8.69633107, 8.69633107, 8.69633107, 8.70611691, 8.70611691,
8.70611691, 8.70611691, 8.70394195, 8.70394195, 8.70394195,
8.70394195, 8.65001892, 8.65001892, 8.65001892, 8.65001892,
8.28551311, 8.28551311, 8.28551311, 8.28551311, 6.29162128,
6.29162128, 6.29162128, 6.29162128, -1.35153772, -1.35153772,
-1.35153772, -1.35153772, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400818, 460.89400818, 460.89400818, 460.89400818,
561.91173373, 561.91173373, 561.91173373, 561.91173373,
1686.98261782, 1686.98261782, 1686.98261782, 1686.98261782,
1694.14142956, 1694.14142956, 1694.14142956, 1694.14142956,
1695.23081499, 1695.23081499, 1695.23081499, 1695.23081499,
1694.61345363, 1694.61345363, 1694.61345363, 1694.61345363,
1691.89465258, 1691.89465258, 1691.89465258, 1691.89465258,
1685.89527761, 1685.89527761, 1685.89527761, 1685.89527761,
1681.04668541, 1681.04668541, 1681.04668541, 1681.04668541,
1680.43546913, 1680.43546913, 1680.43546913, 1680.43546913,
1682.24858591, 1682.24858591, 1682.24858591, 1682.24858591,
1685.76509806, 1685.76509806, 1685.76509806, 1685.76509806,
1689.22071843, 1689.22071843, 1689.22071843, 1689.22071843,
1690.37791746, 1690.37791746, 1690.37791746, 1690.37791746,
1690.46076304, 1690.46076304, 1690.46076304, 1690.46076304,
1690.30669745, 1690.30669745, 1690.30669745, 1690.30669745,
1689.95002867, 1689.95002867, 1689.95002867, 1689.95002867,
1690.38732396, 1690.38732396, 1690.38732396, 1690.38732396,
1689.31280473, 1689.31280473, 1689.31280473, 1689.31280473,
1690.73856944, 1690.73856944, 1690.73856944, 1690.73856944,
1692.81693624, 1692.81693624, 1692.81693624, 1692.81693624,
1695.21481449, 1695.21481449, 1695.21481449, 1695.21481449,
1693.51935784, 1693.51935784, 1693.51935784, 1693.51935784,
1677.81359698, 1677.81359698, 1677.81359698, 1677.81359698,
1584.72629656, 1584.72629656, 1584.72629656, 1584.72629656,
1149.1337881 , 1149.1337881 , 1149.1337881 , 1149.1337881 ,
250.14536714, 250.14536714, 250.14536714, 250.14536714,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924003,
5.99924003, 5.99924003, 5.99924003, 6.42236937, 6.42236937,
6.42236937, 6.42236937, 14.27010826, 14.27010826, 14.27010826,
14.27010826, 14.4126468 , 14.4126468 , 14.4126468 , 14.4126468 ,
14.39597654, 14.39597654, 14.39597654, 14.39597654, 14.36168051,
14.36168051, 14.36168051, 14.36168051, 14.30366886, 14.30366886,
14.30366886, 14.30366886, 14.24235343, 14.24235343, 14.24235343,
14.24235343, 14.21217733, 14.21217733, 14.21217733, 14.21217733,
14.20366908, 14.20366908, 14.20366908, 14.20366908, 14.21910348,
14.21910348, 14.21910348, 14.21910348, 14.25682454, 14.25682454,
14.25682454, 14.25682454, 14.31287435, 14.31287435, 14.31287435,
14.31287435, 14.43267012, 14.43267012, 14.43267012, 14.43267012,
14.69868846, 14.69868846, 14.69868846, 14.69868846, 15.2685669 ,
15.2685669 , 15.2685669 , 15.2685669 , 16.36890068, 16.36890068,
16.36890068, 16.36890068, 18.22751099, 18.22751099, 18.22751099,
18.22751099, 20.96900914, 20.96900914, 20.96900914, 20.96900914,
24.46575553, 24.46575553, 24.46575553, 24.46575553, 27.25217639,
27.25217639, 27.25217639, 27.25217639, 28.99882734, 28.99882734,
28.99882734, 28.99882734, 29.96353182, 29.96353182, 29.96353182,
29.96353182, 30.37169742, 30.37169742, 30.37169742, 30.37169742,
30.35145464, 30.35145464, 30.35145464, 30.35145464, 28.58089868,
28.58089868, 28.58089868, 28.58089868, 20.0510233 , 20.0510233 ,
20.0510233 , 20.0510233 , 7.37833451, 7.37833451, 7.37833451,
7.37833451, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749994,
19.59749994, 19.59749994, 19.59749994, 18.86697027, 18.86697027,
18.86697027, 18.86697027, 8.94442174, 8.94442174, 8.94442174,
8.94442174, 8.80588337, 8.80588337, 8.80588337, 8.80588337,
8.79530798, 8.79530798, 8.79530798, 8.79530798, 8.77969636,
8.77969636, 8.77969636, 8.77969636, 8.76091086, 8.76091086,
8.76091086, 8.76091086, 8.73545381, 8.73545381, 8.73545381,
8.73545381, 8.69648824, 8.69648824, 8.69648824, 8.69648824,
8.65982364, 8.65982364, 8.65982364, 8.65982364, 8.64404307,
8.64404307, 8.64404307, 8.64404307, 8.64167024, 8.64167024,
8.64167024, 8.64167024, 8.65208368, 8.65208368, 8.65208368,
8.65208368, 8.67004128, 8.67004128, 8.67004128, 8.67004128,
8.67930451, 8.67930451, 8.67930451, 8.67930451, 8.68093874,
8.68093874, 8.68093874, 8.68093874, 8.67969659, 8.67969659,
8.67969659, 8.67969659, 8.67661374, 8.67661374, 8.67661374,
8.67661374, 8.68148369, 8.68148369, 8.68148369, 8.68148369,
8.68079809, 8.68079809, 8.68079809, 8.68079809, 8.68712559,
8.68712559, 8.68712559, 8.68712559, 8.6978669 , 8.6978669 ,
8.6978669 , 8.6978669 , 8.70516092, 8.70516092, 8.70516092,
8.70516092, 8.69567966, 8.69567966, 8.69567966, 8.69567966,
8.58804587, 8.58804587, 8.58804587, 8.58804587, 7.97762984,
7.97762984, 7.97762984, 7.97762984, 4.70992139, 4.70992139,
4.70992139, 4.70992139, -4.43122609, -4.43122609, -4.43122609,
-4.43122609, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400366, 460.89400366, 460.89400366, 460.89400366,
509.90329157, 509.90329157, 509.90329157, 509.90329157,
1663.63547926, 1663.63547926, 1663.63547926, 1663.63547926,
1694.47462545, 1694.47462545, 1694.47462545, 1694.47462545,
1696.88211107, 1696.88211107, 1696.88211107, 1696.88211107,
1697.4475742 , 1697.4475742 , 1697.4475742 , 1697.4475742 ,
1696.59973906, 1696.59973906, 1696.59973906, 1696.59973906,
1693.8549966 , 1693.8549966 , 1693.8549966 , 1693.8549966 ,
1688.33995701, 1688.33995701, 1688.33995701, 1688.33995701,
1683.3210705 , 1683.3210705 , 1683.3210705 , 1683.3210705 ,
1682.21112957, 1682.21112957, 1682.21112957, 1682.21112957,
1683.21609253, 1683.21609253, 1683.21609253, 1683.21609253,
1685.32211388, 1685.32211388, 1685.32211388, 1685.32211388,
1688.36110403, 1688.36110403, 1688.36110403, 1688.36110403,
1689.95318059, 1689.95318059, 1689.95318059, 1689.95318059,
1690.40115385, 1690.40115385, 1690.40115385, 1690.40115385,
1690.46507549, 1690.46507549, 1690.46507549, 1690.46507549,
1690.41821033, 1690.41821033, 1690.41821033, 1690.41821033,
1689.1741802 , 1689.1741802 , 1689.1741802 , 1689.1741802 ,
1689.83735913, 1689.83735913, 1689.83735913, 1689.83735913,
1690.41986428, 1690.41986428, 1690.41986428, 1690.41986428,
1693.00179797, 1693.00179797, 1693.00179797, 1693.00179797,
1693.83768418, 1693.83768418, 1693.83768418, 1693.83768418,
1690.0603828 , 1690.0603828 , 1690.0603828 , 1690.0603828 ,
1663.86839515, 1663.86839515, 1663.86839515, 1663.86839515,
1504.50895424, 1504.50895424, 1504.50895424, 1504.50895424,
879.19259319, 879.19259319, 879.19259319, 879.19259319,
97.9252393 , 97.9252393 , 97.9252393 , 97.9252393 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924002,
5.99924002, 5.99924002, 5.99924002, 6.20229089, 6.20229089,
6.20229089, 6.20229089, 13.98207114, 13.98207114, 13.98207114,
13.98207114, 14.40679582, 14.40679582, 14.40679582, 14.40679582,
14.4068119 , 14.4068119 , 14.4068119 , 14.4068119 , 14.38943713,
14.38943713, 14.38943713, 14.38943713, 14.34820465, 14.34820465,
14.34820465, 14.34820465, 14.28633915, 14.28633915, 14.28633915,
14.28633915, 14.25163213, 14.25163213, 14.25163213, 14.25163213,
14.23754499, 14.23754499, 14.23754499, 14.23754499, 14.23024107,
14.23024107, 14.23024107, 14.23024107, 14.24174742, 14.24174742,
14.24174742, 14.24174742, 14.27889962, 14.27889962, 14.27889962,
14.27889962, 14.35759486, 14.35759486, 14.35759486, 14.35759486,
14.54696917, 14.54696917, 14.54696917, 14.54696917, 14.96266718,
14.96266718, 14.96266718, 14.96266718, 15.78642563, 15.78642563,
15.78642563, 15.78642563, 17.2487071 , 17.2487071 , 17.2487071 ,
17.2487071 , 19.53398038, 19.53398038, 19.53398038, 19.53398038,
22.71582829, 22.71582829, 22.71582829, 22.71582829, 26.01707632,
26.01707632, 26.01707632, 26.01707632, 28.22634492, 28.22634492,
28.22634492, 28.22634492, 29.54364225, 29.54364225, 29.54364225,
29.54364225, 30.21788417, 30.21788417, 30.21788417, 30.21788417,
30.48270507, 30.48270507, 30.48270507, 30.48270507, 30.13950965,
30.13950965, 30.13950965, 30.13950965, 26.97376455, 26.97376455,
26.97376455, 26.97376455, 15.48772497, 15.48772497, 15.48772497,
15.48772497, 6.14534066, 6.14534066, 6.14534066, 6.14534066,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749997,
19.59749997, 19.59749997, 19.59749997, 19.24583929, 19.24583929,
19.24583929, 19.24583929, 9.10319349, 9.10319349, 9.10319349,
9.10319349, 8.78429254, 8.78429254, 8.78429254, 8.78429254,
8.78782172, 8.78782172, 8.78782172, 8.78782172, 8.78396219,
8.78396219, 8.78396219, 8.78396219, 8.77215789, 8.77215789,
8.77215789, 8.77215789, 8.75660895, 8.75660895, 8.75660895,
8.75660895, 8.73364152, 8.73364152, 8.73364152, 8.73364152,
8.69780904, 8.69780904, 8.69780904, 8.69780904, 8.65998853,
8.65998853, 8.65998853, 8.65998853, 8.6435601 , 8.6435601 ,
8.6435601 , 8.6435601 , 8.64283542, 8.64283542, 8.64283542,
8.64283542, 8.65074582, 8.65074582, 8.65074582, 8.65074582,
8.6663228 , 8.6663228 , 8.6663228 , 8.6663228 , 8.67666959,
8.67666959, 8.67666959, 8.67666959, 8.67914542, 8.67914542,
8.67914542, 8.67914542, 8.67858192, 8.67858192, 8.67858192,
8.67858192, 8.6821574 , 8.6821574 , 8.6821574 , 8.6821574 ,
8.68024296, 8.68024296, 8.68024296, 8.68024296, 8.68336799,
8.68336799, 8.68336799, 8.68336799, 8.68857928, 8.68857928,
8.68857928, 8.68857928, 8.70010128, 8.70010128, 8.70010128,
8.70010128, 8.70339846, 8.70339846, 8.70339846, 8.70339846,
8.67320959, 8.67320959, 8.67320959, 8.67320959, 8.49611712,
8.49611712, 8.49611712, 8.49611712, 7.44340708, 7.44340708,
7.44340708, 7.44340708, 2.38465564, 2.38465564, 2.38465564,
2.38465564, -6.01693913, -6.01693913, -6.01693913, -6.01693913,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400163, 460.89400163, 460.89400163, 460.89400163,
483.62121622, 483.62121622, 483.62121622, 483.62121622,
1623.60310845, 1623.60310845, 1623.60310845, 1623.60310845,
1691.64939439, 1691.64939439, 1691.64939439, 1691.64939439,
1696.27722361, 1696.27722361, 1696.27722361, 1696.27722361,
1698.77708803, 1698.77708803, 1698.77708803, 1698.77708803,
1699.18532234, 1699.18532234, 1699.18532234, 1699.18532234,
1698.15429252, 1698.15429252, 1698.15429252, 1698.15429252,
1695.56154428, 1695.56154428, 1695.56154428, 1695.56154428,
1690.76866638, 1690.76866638, 1690.76866638, 1690.76866638,
1685.52418568, 1685.52418568, 1685.52418568, 1685.52418568,
1683.61591444, 1683.61591444, 1683.61591444, 1683.61591444,
1683.59485251, 1683.59485251, 1683.59485251, 1683.59485251,
1684.73977157, 1684.73977157, 1684.73977157, 1684.73977157,
1687.5610475 , 1687.5610475 , 1687.5610475 , 1687.5610475 ,
1689.67184918, 1689.67184918, 1689.67184918, 1689.67184918,
1690.44238069, 1690.44238069, 1690.44238069, 1690.44238069,
1690.51459133, 1690.51459133, 1690.51459133, 1690.51459133,
1689.39687915, 1689.39687915, 1689.39687915, 1689.39687915,
1689.68288809, 1689.68288809, 1689.68288809, 1689.68288809,
1689.44048287, 1689.44048287, 1689.44048287, 1689.44048287,
1690.53791285, 1690.53791285, 1690.53791285, 1690.53791285,
1692.47561232, 1692.47561232, 1692.47561232, 1692.47561232,
1692.13797522, 1692.13797522, 1692.13797522, 1692.13797522,
1686.64509245, 1686.64509245, 1686.64509245, 1686.64509245,
1636.82834627, 1636.82834627, 1636.82834627, 1636.82834627,
1380.81911464, 1380.81911464, 1380.81911464, 1380.81911464,
573.2312164 , 573.2312164 , 573.2312164 , 573.2312164 ,
49.93303743, 49.93303743, 49.93303743, 49.93303743,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924001,
5.99924001, 5.99924001, 5.99924001, 6.09328922, 6.09328922,
6.09328922, 6.09328922, 13.6337493 , 13.6337493 , 13.6337493 ,
13.6337493 , 14.37575791, 14.37575791, 14.37575791, 14.37575791,
14.39780884, 14.39780884, 14.39780884, 14.39780884, 14.39651705,
14.39651705, 14.39651705, 14.39651705, 14.37570225, 14.37570225,
14.37570225, 14.37570225, 14.32770213, 14.32770213, 14.32770213,
14.32770213, 14.28176433, 14.28176433, 14.28176433, 14.28176433,
14.26966435, 14.26966435, 14.26966435, 14.26966435, 14.26233205,
14.26233205, 14.26233205, 14.26233205, 14.25388775, 14.25388775,
14.25388775, 14.25388775, 14.26400898, 14.26400898, 14.26400898,
14.26400898, 14.31271717, 14.31271717, 14.31271717, 14.31271717,
14.43756452, 14.43756452, 14.43756452, 14.43756452, 14.73121993,
14.73121993, 14.73121993, 14.73121993, 15.34476464, 15.34476464,
15.34476464, 15.34476464, 16.4748069 , 16.4748069 , 16.4748069 ,
16.4748069 , 18.33346911, 18.33346911, 18.33346911, 18.33346911,
21.06320454, 21.06320454, 21.06320454, 21.06320454, 24.48736259,
24.48736259, 24.48736259, 24.48736259, 27.25029256, 27.25029256,
27.25029256, 27.25029256, 28.96000247, 28.96000247, 28.96000247,
28.96000247, 29.92152696, 29.92152696, 29.92152696, 29.92152696,
30.43071774, 30.43071774, 30.43071774, 30.43071774, 30.48158285,
30.48158285, 30.48158285, 30.48158285, 29.6931038 , 29.6931038 ,
29.6931038 , 29.6931038 , 24.48036157, 24.48036157, 24.48036157,
24.48036157, 10.97656215, 10.97656215, 10.97656215, 10.97656215,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749999,
19.59749999, 19.59749999, 19.59749999, 19.43452953, 19.43452953,
19.43452953, 19.43452953, 9.31334143, 9.31334143, 9.31334143,
9.31334143, 8.75472416, 8.75472416, 8.75472416, 8.75472416,
8.76559912, 8.76559912, 8.76559912, 8.76559912, 8.77409202,
8.77409202, 8.77409202, 8.77409202, 8.77426307, 8.77426307,
8.77426307, 8.77426307, 8.76671477, 8.76671477, 8.76671477,
8.76671477, 8.75319922, 8.75319922, 8.75319922, 8.75319922,
8.73118346, 8.73118346, 8.73118346, 8.73118346, 8.69883596,
8.69883596, 8.69883596, 8.69883596, 8.6628458 , 8.6628458 ,
8.6628458 , 8.6628458 , 8.64715364, 8.64715364, 8.64715364,
8.64715364, 8.64581082, 8.64581082, 8.64581082, 8.64581082,
8.6500293 , 8.6500293 , 8.6500293 , 8.6500293 , 8.66179058,
8.66179058, 8.66179058, 8.66179058, 8.67373076, 8.67373076,
8.67373076, 8.67373076, 8.67820923, 8.67820923, 8.67820923,
8.67820923, 8.68267612, 8.68267612, 8.68267612, 8.68267612,
8.68084071, 8.68084071, 8.68084071, 8.68084071, 8.68254662,
8.68254662, 8.68254662, 8.68254662, 8.68459313, 8.68459313,
8.68459313, 8.68459313, 8.69197139, 8.69197139, 8.69197139,
8.69197139, 8.70122804, 8.70122804, 8.70122804, 8.70122804,
8.69267096, 8.69267096, 8.69267096, 8.69267096, 8.64859801,
8.64859801, 8.64859801, 8.64859801, 8.32819372, 8.32819372,
8.32819372, 8.32819372, 6.54834767, 6.54834767, 6.54834767,
6.54834767, -0.62600176, -0.62600176, -0.62600176, -0.62600176,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400073, 460.89400073, 460.89400073, 460.89400073,
471.21870464, 471.21870464, 471.21870464, 471.21870464,
1578.16502252, 1578.16502252, 1578.16502252, 1578.16502252,
1687.33089712, 1687.33089712, 1687.33089712, 1687.33089712,
1693.02479095, 1693.02479095, 1693.02479095, 1693.02479095,
1697.54588006, 1697.54588006, 1697.54588006, 1697.54588006,
1699.94044253, 1699.94044253, 1699.94044253, 1699.94044253,
1700.41506288, 1700.41506288, 1700.41506288, 1700.41506288,
1699.56653883, 1699.56653883, 1699.56653883, 1699.56653883,
1697.376822 , 1697.376822 , 1697.376822 , 1697.376822 ,
1692.99504777, 1692.99504777, 1692.99504777, 1692.99504777,
1687.18710596, 1687.18710596, 1687.18710596, 1687.18710596,
1684.33621036, 1684.33621036, 1684.33621036, 1684.33621036,
1683.78877304, 1683.78877304, 1683.78877304, 1683.78877304,
1684.56316017, 1684.56316017, 1684.56316017, 1684.56316017,
1686.96306445, 1686.96306445, 1686.96306445, 1686.96306445,
1689.43070189, 1689.43070189, 1689.43070189, 1689.43070189,
1690.13566238, 1690.13566238, 1690.13566238, 1690.13566238,
1689.59333228, 1689.59333228, 1689.59333228, 1689.59333228,
1689.76788396, 1689.76788396, 1689.76788396, 1689.76788396,
1689.21360274, 1689.21360274, 1689.21360274, 1689.21360274,
1689.48965314, 1689.48965314, 1689.48965314, 1689.48965314,
1690.29182232, 1690.29182232, 1690.29182232, 1690.29182232,
1691.56567658, 1691.56567658, 1691.56567658, 1691.56567658,
1691.87982295, 1691.87982295, 1691.87982295, 1691.87982295,
1677.31394855, 1677.31394855, 1677.31394855, 1677.31394855,
1594.38740565, 1594.38740565, 1594.38740565, 1594.38740565,
1197.27536033, 1197.27536033, 1197.27536033, 1197.27536033,
299.03174315, 299.03174315, 299.03174315, 299.03174315,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}]}
minmod_hllc
{'none_hll': [{'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924002, 5.99924002, 5.99924002, 5.99924002, 5.99969027,
5.99969027, 5.99969027, 5.99969027, 7.8345761 , 7.8345761 ,
7.8345761 , 7.8345761 , 12.09526797, 12.09526797, 12.09526797,
12.09526797, 13.95870911, 13.95870911, 13.95870911, 13.95870911,
14.2024846 , 14.2024846 , 14.2024846 , 14.2024846 , 14.22462015,
14.22462015, 14.22462015, 14.22462015, 14.25138163, 14.25138163,
14.25138163, 14.25138163, 14.2882224 , 14.2882224 , 14.2882224 ,
14.2882224 , 14.3412807 , 14.3412807 , 14.3412807 , 14.3412807 ,
14.42080121, 14.42080121, 14.42080121, 14.42080121, 14.54141153,
14.54141153, 14.54141153, 14.54141153, 14.72184791, 14.72184791,
14.72184791, 14.72184791, 14.98426056, 14.98426056, 14.98426056,
14.98426056, 15.35313156, 15.35313156, 15.35313156, 15.35313156,
15.85370678, 15.85370678, 15.85370678, 15.85370678, 16.50974361,
16.50974361, 16.50974361, 16.50974361, 17.34034306, 17.34034306,
17.34034306, 17.34034306, 18.35572577, 18.35572577, 18.35572577,
18.35572577, 19.55212633, 19.55212633, 19.55212633, 19.55212633,
20.90657097, 20.90657097, 20.90657097, 20.90657097, 22.372954 ,
22.372954 , 22.372954 , 22.372954 , 23.88071269, 23.88071269,
23.88071269, 23.88071269, 25.3350973 , 25.3350973 , 25.3350973 ,
25.3350973 , 26.61241916, 26.61241916, 26.61241916, 26.61241916,
27.53400021, 27.53400021, 27.53400021, 27.53400021, 27.7841184 ,
27.7841184 , 27.7841184 , 27.7841184 , 26.78077993, 26.78077993,
26.78077993, 26.78077993, 23.60906801, 23.60906801, 23.60906801,
23.60906801, 17.68592041, 17.68592041, 17.68592041, 17.68592041,
10.60486392, 10.60486392, 10.60486392, 10.60486392, 6.35968743,
6.35968743, 6.35968743, 6.35968743, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.59749996, 19.59749996, 19.59749996, 19.59749996, 19.59672155,
19.59672155, 19.59672155, 19.59672155, 16.30074788, 16.30074788,
16.30074788, 16.30074788, 10.81823663, 10.81823663, 10.81823663,
10.81823663, 8.99223833, 8.99223833, 8.99223833, 8.99223833,
8.77305402, 8.77305402, 8.77305402, 8.77305402, 8.76281569,
8.76281569, 8.76281569, 8.76281569, 8.75598985, 8.75598985,
8.75598985, 8.75598985, 8.75018727, 8.75018727, 8.75018727,
8.75018727, 8.74534323, 8.74534323, 8.74534323, 8.74534323,
8.74141416, 8.74141416, 8.74141416, 8.74141416, 8.73834339,
8.73834339, 8.73834339, 8.73834339, 8.73603409, 8.73603409,
8.73603409, 8.73603409, 8.7343356 , 8.7343356 , 8.7343356 ,
8.7343356 , 8.73304747, 8.73304747, 8.73304747, 8.73304747,
8.73194258, 8.73194258, 8.73194258, 8.73194258, 8.73080538,
8.73080538, 8.73080538, 8.73080538, 8.7294729 , 8.7294729 ,
8.7294729 , 8.7294729 , 8.72785766, 8.72785766, 8.72785766,
8.72785766, 8.7259233 , 8.7259233 , 8.7259233 , 8.7259233 ,
8.72356463, 8.72356463, 8.72356463, 8.72356463, 8.72026746,
8.72026746, 8.72026746, 8.72026746, 8.71423837, 8.71423837,
8.71423837, 8.71423837, 8.70028441, 8.70028441, 8.70028441,
8.70028441, 8.66473642, 8.66473642, 8.66473642, 8.66473642,
8.57356949, 8.57356949, 8.57356949, 8.57356949, 8.34500395,
8.34500395, 8.34500395, 8.34500395, 7.78890471, 7.78890471,
7.78890471, 7.78890471, 6.49775127, 6.49775127, 6.49775127,
6.49775127, 3.76893856, 3.76893856, 3.76893856, 3.76893856,
-1.00678094, -1.00678094, -1.00678094, -1.00678094, -5.69612119,
-5.69612119, -5.69612119, -5.69612119, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400232, 460.89400232, 460.89400232, 460.89400232,
460.94243518, 460.94243518, 460.94243518, 460.94243518,
703.2792111 , 703.2792111 , 703.2792111 , 703.2792111 ,
1337.55283241, 1337.55283241, 1337.55283241, 1337.55283241,
1636.90078605, 1636.90078605, 1636.90078605, 1636.90078605,
1676.20510287, 1676.20510287, 1676.20510287, 1676.20510287,
1677.82436261, 1677.82436261, 1677.82436261, 1677.82436261,
1678.89282951, 1678.89282951, 1678.89282951, 1678.89282951,
1679.87092338, 1679.87092338, 1679.87092338, 1679.87092338,
1680.79575443, 1680.79575443, 1680.79575443, 1680.79575443,
1681.69611111, 1681.69611111, 1681.69611111, 1681.69611111,
1682.59148341, 1682.59148341, 1682.59148341, 1682.59148341,
1683.49009397, 1683.49009397, 1683.49009397, 1683.49009397,
1684.38759814, 1684.38759814, 1684.38759814, 1684.38759814,
1685.26799937, 1685.26799937, 1685.26799937, 1685.26799937,
1686.10731691, 1686.10731691, 1686.10731691, 1686.10731691,
1686.87916975, 1686.87916975, 1686.87916975, 1686.87916975,
1687.56065205, 1687.56065205, 1687.56065205, 1687.56065205,
1688.13614788, 1688.13614788, 1688.13614788, 1688.13614788,
1688.59427472, 1688.59427472, 1688.59427472, 1688.59427472,
1688.9045266 , 1688.9045266 , 1688.9045266 , 1688.9045266 ,
1688.93900905, 1688.93900905, 1688.93900905, 1688.93900905,
1688.25216906, 1688.25216906, 1688.25216906, 1688.25216906,
1685.51318965, 1685.51318965, 1685.51318965, 1685.51318965,
1677.15515413, 1677.15515413, 1677.15515413, 1677.15515413,
1654.32146734, 1654.32146734, 1654.32146734, 1654.32146734,
1596.51937462, 1596.51937462, 1596.51937462, 1596.51937462,
1461.36177691, 1461.36177691, 1461.36177691, 1461.36177691,
1183.46702274, 1183.46702274, 1183.46702274, 1183.46702274,
737.79676841, 737.79676841, 737.79676841, 737.79676841,
276.70901347, 276.70901347, 276.70901347, 276.70901347,
59.57019196, 59.57019196, 59.57019196, 59.57019196,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}], 'minmod_rusanov': [{'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924002, 5.99924002, 5.99924002,
5.99924002, 5.99924007, 5.99924007, 5.99924007, 5.99924007,
5.99924031, 5.99924031, 5.99924031, 5.99924031, 5.99924126,
5.99924126, 5.99924126, 5.99924126, 5.99924514, 5.99924514,
5.99924514, 5.99924514, 5.99926098, 5.99926098, 5.99926098,
5.99926098, 5.99932544, 5.99932544, 5.99932544, 5.99932544,
5.99958696, 5.99958696, 5.99958696, 5.99958696, 6.00064486,
6.00064486, 6.00064486, 6.00064486, 6.00490572, 6.00490572,
6.00490572, 6.00490572, 6.02192165, 6.02192165, 6.02192165,
6.02192165, 6.08851456, 6.08851456, 6.08851456, 6.08851456,
6.33685385, 6.33685385, 6.33685385, 6.33685385, 7.17306942,
7.17306942, 7.17306942, 7.17306942, 9.48103328, 9.48103328,
9.48103328, 9.48103328, 12.16879608, 12.16879608, 12.16879608,
12.16879608, 13.57772571, 13.57772571, 13.57772571, 13.57772571,
14.0725543 , 14.0725543 , 14.0725543 , 14.0725543 , 14.20188264,
14.20188264, 14.20188264, 14.20188264, 14.21111476, 14.21111476,
14.21111476, 14.21111476, 14.19594776, 14.19594776, 14.19594776,
14.19594776, 14.16726566, 14.16726566, 14.16726566, 14.16726566,
14.14315288, 14.14315288, 14.14315288, 14.14315288, 14.13984508,
14.13984508, 14.13984508, 14.13984508, 14.15659401, 14.15659401,
14.15659401, 14.15659401, 14.22156771, 14.22156771, 14.22156771,
14.22156771, 14.38201257, 14.38201257, 14.38201257, 14.38201257,
14.70456648, 14.70456648, 14.70456648, 14.70456648, 15.27138194,
15.27138194, 15.27138194, 15.27138194, 16.17496693, 16.17496693,
16.17496693, 16.17496693, 17.5106624 , 17.5106624 , 17.5106624 ,
17.5106624 , 19.3615367 , 19.3615367 , 19.3615367 , 19.3615367 ,
21.75080399, 21.75080399, 21.75080399, 21.75080399, 24.33387543,
24.33387543, 24.33387543, 24.33387543, 26.40333256, 26.40333256,
26.40333256, 26.40333256, 27.90910754, 27.90910754, 27.90910754,
27.90910754, 28.93697999, 28.93697999, 28.93697999, 28.93697999,
29.53951302, 29.53951302, 29.53951302, 29.53951302, 29.73938869,
29.73938869, 29.73938869, 29.73938869, 29.0153186 , 29.0153186 ,
29.0153186 , 29.0153186 , 23.59070901, 23.59070901, 23.59070901,
23.59070901, 10.9415393 , 10.9415393 , 10.9415393 , 10.9415393 ,
6.3541182 , 6.3541182 , 6.3541182 , 6.3541182 , 6.00760847,
6.00760847, 6.00760847, 6.00760847, 5.99286029, 5.99286029,
5.99286029, 5.99286029, 5.99243117, 5.99243117, 5.99243117,
5.99243117, 5.99242027, 5.99242027, 5.99242027, 5.99242027,
5.99242001, 5.99242001, 5.99242001, 5.99242001, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.59749999, 19.59749999,
19.59749999, 19.59749999, 19.59749997, 19.59749997, 19.59749997,
19.59749997, 19.59749987, 19.59749987, 19.59749987, 19.59749987,
19.59749947, 19.59749947, 19.59749947, 19.59749947, 19.59749783,
19.59749783, 19.59749783, 19.59749783, 19.59749112, 19.59749112,
19.59749112, 19.59749112, 19.59746373, 19.59746373, 19.59746373,
19.59746373, 19.59735229, 19.59735229, 19.59735229, 19.59735229,
19.59690001, 19.59690001, 19.59690001, 19.59690001, 19.59506896,
19.59506896, 19.59506896, 19.59506896, 19.58767704, 19.58767704,
19.58767704, 19.58767704, 19.5579792 , 19.5579792 , 19.5579792 ,
19.5579792 , 19.4402373 , 19.4402373 , 19.4402373 , 19.4402373 ,
18.99425966, 18.99425966, 18.99425966, 18.99425966, 17.53641444,
17.53641444, 17.53641444, 17.53641444, 14.1519315 , 14.1519315 ,
14.1519315 , 14.1519315 , 10.74514786, 10.74514786, 10.74514786,
10.74514786, 9.38012207, 9.38012207, 9.38012207, 9.38012207,
8.93087961, 8.93087961, 8.93087961, 8.93087961, 8.78942687,
8.78942687, 8.78942687, 8.78942687, 8.74294599, 8.74294599,
8.74294599, 8.74294599, 8.72650952, 8.72650952, 8.72650952,
8.72650952, 8.72109124, 8.72109124, 8.72109124, 8.72109124,
8.71933594, 8.71933594, 8.71933594, 8.71933594, 8.71788858,
8.71788858, 8.71788858, 8.71788858, 8.71573795, 8.71573795,
8.71573795, 8.71573795, 8.71238766, 8.71238766, 8.71238766,
8.71238766, 8.70882217, 8.70882217, 8.70882217, 8.70882217,
8.70606951, 8.70606951, 8.70606951, 8.70606951, 8.70384986,
8.70384986, 8.70384986, 8.70384986, 8.70175254, 8.70175254,
8.70175254, 8.70175254, 8.69917307, 8.69917307, 8.69917307,
8.69917307, 8.69663571, 8.69663571, 8.69663571, 8.69663571,
8.69489541, 8.69489541, 8.69489541, 8.69489541, 8.69376268,
8.69376268, 8.69376268, 8.69376268, 8.69268692, 8.69268692,
8.69268692, 8.69268692, 8.69101355, 8.69101355, 8.69101355,
8.69101355, 8.68679018, 8.68679018, 8.68679018, 8.68679018,
8.67169423, 8.67169423, 8.67169423, 8.67169423, 8.59940696,
8.59940696, 8.59940696, 8.59940696, 8.19829508, 8.19829508,
8.19829508, 8.19829508, 6.15081393, 6.15081393, 6.15081393,
6.15081393, -0.62046552, -0.62046552, -0.62046552, -0.62046552,
-5.79868084, -5.79868084, -5.79868084, -5.79868084, -6.18525764,
-6.18525764, -6.18525764, -6.18525764, -6.19606479, -6.19606479,
-6.19606479, -6.19606479, -6.19632368, -6.19632368, -6.19632368,
-6.19632368, -6.19632985, -6.19632985, -6.19632985, -6.19632985,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400001, 460.89400001, 460.89400001, 460.89400001,
460.89400003, 460.89400003, 460.89400003, 460.89400003,
460.89400011, 460.89400011, 460.89400011, 460.89400011,
460.89400047, 460.89400047, 460.89400047, 460.89400047,
460.89400194, 460.89400194, 460.89400194, 460.89400194,
460.894008 , 460.894008 , 460.894008 , 460.894008 ,
460.89403291, 460.89403291, 460.89403291, 460.89403291,
460.89413504, 460.89413504, 460.89413504, 460.89413504,
460.89455274, 460.89455274, 460.89455274, 460.89455274,
460.89625675, 460.89625675, 460.89625675, 460.89625675,
460.90319027, 460.90319027, 460.90319027, 460.90319027,
460.93133142, 460.93133142, 460.93133142, 460.93133142,
461.04527487, 461.04527487, 461.04527487, 461.04527487,
461.50551801, 461.50551801, 461.50551801, 461.50551801,
463.35874362, 463.35874362, 463.35874362, 463.35874362,
470.77399165, 470.77399165, 470.77399165, 470.77399165,
499.91311649, 499.91311649, 499.91311649, 499.91311649,
607.72907468, 607.72907468, 607.72907468, 607.72907468,
937.52073538, 937.52073538, 937.52073538, 937.52073538,
1342.554988 , 1342.554988 , 1342.554988 , 1342.554988 ,
1565.38590105, 1565.38590105, 1565.38590105, 1565.38590105,
1644.82582902, 1644.82582902, 1644.82582902, 1644.82582902,
1670.41110412, 1670.41110412, 1670.41110412, 1670.41110412,
1678.82418254, 1678.82418254, 1678.82418254, 1678.82418254,
1682.32094248, 1682.32094248, 1682.32094248, 1682.32094248,
1684.65256293, 1684.65256293, 1684.65256293, 1684.65256293,
1686.56765509, 1686.56765509, 1686.56765509, 1686.56765509,
1688.04385825, 1688.04385825, 1688.04385825, 1688.04385825,
1689.13073435, 1689.13073435, 1689.13073435, 1689.13073435,
1689.86045769, 1689.86045769, 1689.86045769, 1689.86045769,
1690.38179979, 1690.38179979, 1690.38179979, 1690.38179979,
1690.86871462, 1690.86871462, 1690.86871462, 1690.86871462,
1691.29315664, 1691.29315664, 1691.29315664, 1691.29315664,
1691.56097335, 1691.56097335, 1691.56097335, 1691.56097335,
1691.61386226, 1691.61386226, 1691.61386226, 1691.61386226,
1691.50761164, 1691.50761164, 1691.50761164, 1691.50761164,
1691.41625769, 1691.41625769, 1691.41625769, 1691.41625769,
1691.40650495, 1691.40650495, 1691.40650495, 1691.40650495,
1691.37915294, 1691.37915294, 1691.37915294, 1691.37915294,
1691.2478804 , 1691.2478804 , 1691.2478804 , 1691.2478804 ,
1690.632513 , 1690.632513 , 1690.632513 , 1690.632513 ,
1687.30275079, 1687.30275079, 1687.30275079, 1687.30275079,
1667.9703053 , 1667.9703053 , 1667.9703053 , 1667.9703053 ,
1564.50056367, 1564.50056367, 1564.50056367, 1564.50056367,
1129.34533559, 1129.34533559, 1129.34533559, 1129.34533559,
308.00600506, 308.00600506, 308.00600506, 308.00600506,
55.7105872 , 55.7105872 , 55.7105872 , 55.7105872 ,
46.31374378, 46.31374378, 46.31374378, 46.31374378,
46.10021519, 46.10021519, 46.10021519, 46.10021519,
46.09512428, 46.09512428, 46.09512428, 46.09512428,
46.09500296, 46.09500296, 46.09500296, 46.09500296,
46.09500007, 46.09500007, 46.09500007, 46.09500007,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}], 'minmod_hll': [{'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924175,
5.99924175, 5.99924175, 5.99924175, 7.50328369, 7.50328369,
7.50328369, 7.50328369, 12.95563948, 12.95563948, 12.95563948,
12.95563948, 14.21461244, 14.21461244, 14.21461244, 14.21461244,
14.26597869, 14.26597869, 14.26597869, 14.26597869, 14.29620398,
14.29620398, 14.29620398, 14.29620398, 14.31140104, 14.31140104,
14.31140104, 14.31140104, 14.31100702, 14.31100702, 14.31100702,
14.31100702, 14.29446786, 14.29446786, 14.29446786, 14.29446786,
14.25457189, 14.25457189, 14.25457189, 14.25457189, 14.22089279,
14.22089279, 14.22089279, 14.22089279, 14.2140995 , 14.2140995 ,
14.2140995 , 14.2140995 , 14.230855 , 14.230855 , 14.230855 ,
14.230855 , 14.30451572, 14.30451572, 14.30451572, 14.30451572,
14.49280321, 14.49280321, 14.49280321, 14.49280321, 14.87118548,
14.87118548, 14.87118548, 14.87118548, 15.55993934, 15.55993934,
15.55993934, 15.55993934, 16.72599032, 16.72599032, 16.72599032,
16.72599032, 18.54190558, 18.54190558, 18.54190558, 18.54190558,
21.12396593, 21.12396593, 21.12396593, 21.12396593, 24.34154715,
24.34154715, 24.34154715, 24.34154715, 27.04434474, 27.04434474,
27.04434474, 27.04434474, 28.79121568, 28.79121568, 28.79121568,
28.79121568, 29.84306714, 29.84306714, 29.84306714, 29.84306714,
30.37592471, 30.37592471, 30.37592471, 30.37592471, 30.48110966,
30.48110966, 30.48110966, 30.48110966, 29.62085485, 29.62085485,
29.62085485, 29.62085485, 24.0650166 , 24.0650166 , 24.0650166 ,
24.0650166 , 11.01922569, 11.01922569, 11.01922569, 11.01922569,
6.02823674, 6.02823674, 6.02823674, 6.02823674, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749697,
19.59749697, 19.59749697, 19.59749697, 16.95529738, 16.95529738,
16.95529738, 16.95529738, 9.94886504, 9.94886504, 9.94886504,
9.94886504, 8.7751003 , 8.7751003 , 8.7751003 , 8.7751003 ,
8.75876513, 8.75876513, 8.75876513, 8.75876513, 8.75481978,
8.75481978, 8.75481978, 8.75481978, 8.74649755, 8.74649755,
8.74649755, 8.74649755, 8.73232047, 8.73232047, 8.73232047,
8.73232047, 8.71080399, 8.71080399, 8.71080399, 8.71080399,
8.67933271, 8.67933271, 8.67933271, 8.67933271, 8.65538411,
8.65538411, 8.65538411, 8.65538411, 8.64657396, 8.64657396,
8.64657396, 8.64657396, 8.64656243, 8.64656243, 8.64656243,
8.64656243, 8.65512649, 8.65512649, 8.65512649, 8.65512649,
8.67124445, 8.67124445, 8.67124445, 8.67124445, 8.68455317,
8.68455317, 8.68455317, 8.68455317, 8.6926855 , 8.6926855 ,
8.6926855 , 8.6926855 , 8.6977869 , 8.6977869 , 8.6977869 ,
8.6977869 , 8.70066537, 8.70066537, 8.70066537, 8.70066537,
8.70186509, 8.70186509, 8.70186509, 8.70186509, 8.7025879 ,
8.7025879 , 8.7025879 , 8.7025879 , 8.70423534, 8.70423534,
8.70423534, 8.70423534, 8.70472602, 8.70472602, 8.70472602,
8.70472602, 8.70339833, 8.70339833, 8.70339833, 8.70339833,
8.69328274, 8.69328274, 8.69328274, 8.69328274, 8.63090024,
8.63090024, 8.63090024, 8.63090024, 8.27365336, 8.27365336,
8.27365336, 8.27365336, 6.3370291 , 6.3370291 , 6.3370291 ,
6.3370291 , -0.42820866, -0.42820866, -0.42820866, -0.42820866,
-6.14805215, -6.14805215, -6.14805215, -6.14805215, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89418872, 460.89418872, 460.89418872, 460.89418872,
662.15281107, 662.15281107, 662.15281107, 662.15281107,
1476.59370104, 1476.59370104, 1476.59370104, 1476.59370104,
1682.0283287 , 1682.0283287 , 1682.0283287 , 1682.0283287 ,
1687.07142158, 1687.07142158, 1687.07142158, 1687.07142158,
1689.30892977, 1689.30892977, 1689.30892977, 1689.30892977,
1690.54048929, 1690.54048929, 1690.54048929, 1690.54048929,
1690.25795278, 1690.25795278, 1690.25795278, 1690.25795278,
1688.31057081, 1688.31057081, 1688.31057081, 1688.31057081,
1684.27799582, 1684.27799582, 1684.27799582, 1684.27799582,
1681.35018005, 1681.35018005, 1681.35018005, 1681.35018005,
1680.9883242 , 1680.9883242 , 1680.9883242 , 1680.9883242 ,
1682.0518864 , 1682.0518864 , 1682.0518864 , 1682.0518864 ,
1684.46279298, 1684.46279298, 1684.46279298, 1684.46279298,
1688.12789868, 1688.12789868, 1688.12789868, 1688.12789868,
1691.19706367, 1691.19706367, 1691.19706367, 1691.19706367,
1693.28049544, 1693.28049544, 1693.28049544, 1693.28049544,
1694.83831558, 1694.83831558, 1694.83831558, 1694.83831558,
1696.01546425, 1696.01546425, 1696.01546425, 1696.01546425,
1696.7906615 , 1696.7906615 , 1696.7906615 , 1696.7906615 ,
1697.18753803, 1697.18753803, 1697.18753803, 1697.18753803,
1697.04110035, 1697.04110035, 1697.04110035, 1697.04110035,
1696.87609094, 1696.87609094, 1696.87609094, 1696.87609094,
1696.40061659, 1696.40061659, 1696.40061659, 1696.40061659,
1693.52125738, 1693.52125738, 1693.52125738, 1693.52125738,
1676.64941951, 1676.64941951, 1676.64941951, 1676.64941951,
1582.38983336, 1582.38983336, 1582.38983336, 1582.38983336,
1162.96939042, 1162.96939042, 1162.96939042, 1162.96939042,
318.04766103, 318.04766103, 318.04766103, 318.04766103,
47.31074005, 47.31074005, 47.31074005, 47.31074005,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}], 'minmod_hllc': [{'rho': array([5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924,
5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99924, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242, 5.99242,
5.99242, 5.99242, 5.99242]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633, -6.19633, -6.19633, -6.19633,
-6.19633, -6.19633, -6.19633]), 'P': array([460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 460.894,
460.894, 460.894, 460.894, 460.894, 460.894, 460.894, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095, 46.095, 46.095, 46.095, 46.095,
46.095, 46.095, 46.095])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 12.70268903,
12.70268903, 12.70268903, 12.70268903, 7.94541357, 7.94541357,
7.94541357, 7.94541357, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 7.09582484,
7.09582484, 7.09582484, 7.09582484, -3.14962884, -3.14962884,
-3.14962884, -3.14962884, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1125.57882152, 1125.57882152, 1125.57882152, 1125.57882152,
167.18428479, 167.18428479, 167.18428479, 167.18428479,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 14.65201256,
14.65201256, 14.65201256, 14.65201256, 14.1609294 , 14.1609294 ,
14.1609294 , 14.1609294 , 6.49084323, 6.49084323, 6.49084323,
6.49084323, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 10.42468887,
10.42468887, 10.42468887, 10.42468887, 3.58967233, 3.58967233,
3.58967233, 3.58967233, -5.58060798, -5.58060798, -5.58060798,
-5.58060798, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1509.2991421 , 1509.2991421 , 1509.2991421 , 1509.2991421 ,
815.9988919 , 815.9988919 , 815.9988919 , 815.9988919 ,
60.09885512, 60.09885512, 60.09885512, 60.09885512,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 13.6342065 ,
13.6342065 , 13.6342065 , 13.6342065 , 18.15293127, 18.15293127,
18.15293127, 18.15293127, 12.16929563, 12.16929563, 12.16929563,
12.16929563, 6.00303438, 6.00303438, 6.00303438, 6.00303438,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.41089904,
11.41089904, 11.41089904, 11.41089904, 7.63691331, 7.63691331,
7.63691331, 7.63691331, 1.02824549, 1.02824549, 1.02824549,
1.02824549, -6.18504836, -6.18504836, -6.18504836, -6.18504836,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1503.91400046, 1503.91400046, 1503.91400046, 1503.91400046,
1488.96829463, 1488.96829463, 1488.96829463, 1488.96829463,
470.61112439, 470.61112439, 470.61112439, 470.61112439,
46.315976 , 46.315976 , 46.315976 , 46.315976 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 11.54713795,
11.54713795, 11.54713795, 11.54713795, 19.12548955, 19.12548955,
19.12548955, 19.12548955, 18.48218756, 18.48218756, 18.48218756,
18.48218756, 9.4679153 , 9.4679153 , 9.4679153 , 9.4679153 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.70335328,
11.70335328, 11.70335328, 11.70335328, 8.99974457, 8.99974457,
8.99974457, 8.99974457, 6.45769361, 6.45769361, 6.45769361,
6.45769361, -1.86410647, -1.86410647, -1.86410647, -1.86410647,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1350.42527422, 1350.42527422, 1350.42527422, 1350.42527422,
1792.05437148, 1792.05437148, 1792.05437148, 1792.05437148,
1224.90003591, 1224.90003591, 1224.90003591, 1224.90003591,
223.0972597 , 223.0972597 , 223.0972597 , 223.0972597 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.55899688,
10.55899688, 10.55899688, 10.55899688, 17.52496537, 17.52496537,
17.52496537, 17.52496537, 19.92934821, 19.92934821, 19.92934821,
19.92934821, 17.99707036, 17.99707036, 17.99707036, 17.99707036,
7.26803214, 7.26803214, 7.26803214, 7.26803214, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.63398171,
11.63398171, 11.63398171, 11.63398171, 9.12548235, 9.12548235,
9.12548235, 9.12548235, 8.70353792, 8.70353792, 8.70353792,
8.70353792, 4.889767 , 4.889767 , 4.889767 , 4.889767 ,
-4.54241731, -4.54241731, -4.54241731, -4.54241731, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1202.7937303 , 1202.7937303 , 1202.7937303 , 1202.7937303 ,
1836.37786652, 1836.37786652, 1836.37786652, 1836.37786652,
1649.76861147, 1649.76861147, 1649.76861147, 1649.76861147,
943.78416678, 943.78416678, 943.78416678, 943.78416678,
93.25195493, 93.25195493, 93.25195493, 93.25195493,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.30570418,
10.30570418, 10.30570418, 10.30570418, 15.31637241, 15.31637241,
15.31637241, 15.31637241, 18.9791078 , 18.9791078 , 18.9791078 ,
18.9791078 , 21.63035995, 21.63035995, 21.63035995, 21.63035995,
15.46350461, 15.46350461, 15.46350461, 15.46350461, 6.2390466 ,
6.2390466 , 6.2390466 , 6.2390466 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 11.76919101,
11.76919101, 11.76919101, 11.76919101, 8.80224489, 8.80224489,
8.80224489, 8.80224489, 9.09238506, 9.09238506, 9.09238506,
9.09238506, 8.12333611, 8.12333611, 8.12333611, 8.12333611,
2.96585865, 2.96585865, 2.96585865, 2.96585865, -5.89754921,
-5.89754921, -5.89754921, -5.89754921, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1135.16202434, 1135.16202434, 1135.16202434, 1135.16202434,
1759.44703479, 1759.44703479, 1759.44703479, 1759.44703479,
1733.21469229, 1733.21469229, 1733.21469229, 1733.21469229,
1537.63026242, 1537.63026242, 1537.63026242, 1537.63026242,
655.14721744, 655.14721744, 655.14721744, 655.14721744,
52.68789681, 52.68789681, 52.68789681, 52.68789681,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.21337442,
10.21337442, 10.21337442, 10.21337442, 13.99862304, 13.99862304,
13.99862304, 13.99862304, 17.03111413, 17.03111413, 17.03111413,
17.03111413, 21.43390917, 21.43390917, 21.43390917, 21.43390917,
21.7588112 , 21.7588112 , 21.7588112 , 21.7588112 , 12.16152619,
12.16152619, 12.16152619, 12.16152619, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 12.13621027,
12.13621027, 12.13621027, 12.13621027, 8.62418669, 8.62418669,
8.62418669, 8.62418669, 8.95777872, 8.95777872, 8.95777872,
8.95777872, 8.81664421, 8.81664421, 8.81664421, 8.81664421,
7.33932219, 7.33932219, 7.33932219, 7.33932219, 0.56862407,
0.56862407, 0.56862407, 0.56862407, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1099.96956372, 1099.96956372, 1099.96956372, 1099.96956372,
1710.4465244 , 1710.4465244 , 1710.4465244 , 1710.4465244 ,
1704.42259337, 1704.42259337, 1704.42259337, 1704.42259337,
1695.22675438, 1695.22675438, 1695.22675438, 1695.22675438,
1362.18896468, 1362.18896468, 1362.18896468, 1362.18896468,
395.14058089, 395.14058089, 395.14058089, 395.14058089,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.22313019,
10.22313019, 10.22313019, 10.22313019, 13.34785117, 13.34785117,
13.34785117, 13.34785117, 15.5094266 , 15.5094266 , 15.5094266 ,
15.5094266 , 19.56706902, 19.56706902, 19.56706902, 19.56706902,
22.6681537 , 22.6681537 , 22.6681537 , 22.6681537 , 20.82008041,
20.82008041, 20.82008041, 20.82008041, 9.11732965, 9.11732965,
9.11732965, 9.11732965, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 12.52788663,
12.52788663, 12.52788663, 12.52788663, 8.58922451, 8.58922451,
8.58922451, 8.58922451, 8.81451991, 8.81451991, 8.81451991,
8.81451991, 8.8340112 , 8.8340112 , 8.8340112 , 8.8340112 ,
8.5886347 , 8.5886347 , 8.5886347 , 8.5886347 , 6.18718895,
6.18718895, 6.18718895, 6.18718895, -2.27317635, -2.27317635,
-2.27317635, -2.27317635, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1067.13409325, 1067.13409325, 1067.13409325, 1067.13409325,
1690.10203345, 1690.10203345, 1690.10203345, 1690.10203345,
1677.77771501, 1677.77771501, 1677.77771501, 1677.77771501,
1699.24085344, 1699.24085344, 1699.24085344, 1699.24085344,
1626.99145622, 1626.99145622, 1626.99145622, 1626.99145622,
1137.85447905, 1137.85447905, 1137.85447905, 1137.85447905,
195.96745623, 195.96745623, 195.96745623, 195.96745623,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.20035213,
10.20035213, 10.20035213, 10.20035213, 13.15694058, 13.15694058,
13.15694058, 13.15694058, 14.4992978 , 14.4992978 , 14.4992978 ,
14.4992978 , 17.41908334, 17.41908334, 17.41908334, 17.41908334,
21.67196262, 21.67196262, 21.67196262, 21.67196262, 23.40867052,
23.40867052, 23.40867052, 23.40867052, 18.47858247, 18.47858247,
18.47858247, 18.47858247, 7.07383389, 7.07383389, 7.07383389,
7.07383389, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 12.96924236,
12.96924236, 12.96924236, 12.96924236, 8.58665363, 8.58665363,
8.58665363, 8.58665363, 8.73327632, 8.73327632, 8.73327632,
8.73327632, 8.76976507, 8.76976507, 8.76976507, 8.76976507,
8.78887952, 8.78887952, 8.78887952, 8.78887952, 8.21209119,
8.21209119, 8.21209119, 8.21209119, 4.54306925, 4.54306925,
4.54306925, 4.54306925, -4.80641289, -4.80641289, -4.80641289,
-4.80641289, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
1034.34945451, 1034.34945451, 1034.34945451, 1034.34945451,
1679.03320625, 1679.03320625, 1679.03320625, 1679.03320625,
1664.63745801, 1664.63745801, 1664.63745801, 1664.63745801,
1684.09424 , 1684.09424 , 1684.09424 , 1684.09424 ,
1673.42176972, 1673.42176972, 1673.42176972, 1673.42176972,
1539.49588798, 1539.49588798, 1539.49588798, 1539.49588798,
861.67230835, 861.67230835, 861.67230835, 861.67230835,
84.43620991, 84.43620991, 84.43620991, 84.43620991,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 10.02954724,
10.02954724, 10.02954724, 10.02954724, 13.30998119, 13.30998119,
13.30998119, 13.30998119, 13.9266306 , 13.9266306 , 13.9266306 ,
13.9266306 , 15.83435153, 15.83435153, 15.83435153, 15.83435153,
19.57096804, 19.57096804, 19.57096804, 19.57096804, 23.30670777,
23.30670777, 23.30670777, 23.30670777, 23.49784333, 23.49784333,
23.49784333, 23.49784333, 14.97949036, 14.97949036, 14.97949036,
14.97949036, 6.10888587, 6.10888587, 6.10888587, 6.10888587,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 13.49842594,
13.49842594, 13.49842594, 13.49842594, 8.59916052, 8.59916052,
8.59916052, 8.59916052, 8.69439542, 8.69439542, 8.69439542,
8.69439542, 8.71379635, 8.71379635, 8.71379635, 8.71379635,
8.78352452, 8.78352452, 8.78352452, 8.78352452, 8.67635375,
8.67635375, 8.67635375, 8.67635375, 7.62020122, 7.62020122,
7.62020122, 7.62020122, 2.3026965 , 2.3026965 , 2.3026965 ,
2.3026965 , -6.05984314, -6.05984314, -6.05984314, -6.05984314,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
999.1673707 , 999.1673707 , 999.1673707 , 999.1673707 ,
1673.29394535, 1673.29394535, 1673.29394535, 1673.29394535,
1659.65444353, 1659.65444353, 1659.65444353, 1659.65444353,
1670.2297542 , 1670.2297542 , 1670.2297542 , 1670.2297542 ,
1671.94982265, 1671.94982265, 1671.94982265, 1671.94982265,
1649.23987565, 1649.23987565, 1649.23987565, 1649.23987565,
1412.10782611, 1412.10782611, 1412.10782611, 1412.10782611,
566.73710562, 566.73710562, 566.73710562, 566.73710562,
48.98587735, 48.98587735, 48.98587735, 48.98587735,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 9.65533767,
9.65533767, 9.65533767, 9.65533767, 13.68252917, 13.68252917,
13.68252917, 13.68252917, 13.71303715, 13.71303715, 13.71303715,
13.71303715, 14.79110894, 14.79110894, 14.79110894, 14.79110894,
17.50309985, 17.50309985, 17.50309985, 17.50309985, 21.84028144,
21.84028144, 21.84028144, 21.84028144, 24.32473078, 24.32473078,
24.32473078, 24.32473078, 22.68068249, 22.68068249, 22.68068249,
22.68068249, 11.03686103, 11.03686103, 11.03686103, 11.03686103,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 14.14741904,
14.14741904, 14.14741904, 14.14741904, 8.62178593, 8.62178593,
8.62178593, 8.62178593, 8.68626335, 8.68626335, 8.68626335,
8.68626335, 8.68737656, 8.68737656, 8.68737656, 8.68737656,
8.74732911, 8.74732911, 8.74732911, 8.74732911, 8.74308312,
8.74308312, 8.74308312, 8.74308312, 8.49452049, 8.49452049,
8.49452049, 8.49452049, 6.69456047, 6.69456047, 6.69456047,
6.69456047, -0.52317349, -0.52317349, -0.52317349, -0.52317349,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
958.44988475, 958.44988475, 958.44988475, 958.44988475,
1671.21493997, 1671.21493997, 1671.21493997, 1671.21493997,
1659.26320397, 1659.26320397, 1659.26320397, 1659.26320397,
1662.91567575, 1662.91567575, 1662.91567575, 1662.91567575,
1664.13115487, 1664.13115487, 1664.13115487, 1664.13115487,
1665.297139 , 1665.297139 , 1665.297139 , 1665.297139 ,
1610.83715793, 1610.83715793, 1610.83715793, 1610.83715793,
1229.41899476, 1229.41899476, 1229.41899476, 1229.41899476,
305.12836104, 305.12836104, 305.12836104, 305.12836104,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 9.17559129,
9.17559129, 9.17559129, 9.17559129, 14.02365251, 14.02365251,
14.02365251, 14.02365251, 13.76047403, 13.76047403, 13.76047403,
13.76047403, 14.22025893, 14.22025893, 14.22025893, 14.22025893,
15.99479628, 15.99479628, 15.99479628, 15.99479628, 19.62994353,
19.62994353, 19.62994353, 19.62994353, 23.68403303, 23.68403303,
23.68403303, 23.68403303, 24.86589844, 24.86589844, 24.86589844,
24.86589844, 20.52055368, 20.52055368, 20.52055368, 20.52055368,
8.00814937, 8.00814937, 8.00814937, 8.00814937, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 14.77025981,
14.77025981, 14.77025981, 14.77025981, 8.70672217, 8.70672217,
8.70672217, 8.70672217, 8.71185652, 8.71185652, 8.71185652,
8.71185652, 8.69053038, 8.69053038, 8.69053038, 8.69053038,
8.72003541, 8.72003541, 8.72003541, 8.72003541, 8.7334469 ,
8.7334469 , 8.7334469 , 8.7334469 , 8.68309091, 8.68309091,
8.68309091, 8.68309091, 8.20418663, 8.20418663, 8.20418663,
8.20418663, 5.29342736, 5.29342736, 5.29342736, 5.29342736,
-3.63537019, -3.63537019, -3.63537019, -3.63537019, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
899.70891154, 899.70891154, 899.70891154, 899.70891154,
1681.7730429 , 1681.7730429 , 1681.7730429 , 1681.7730429 ,
1664.38132397, 1664.38132397, 1664.38132397, 1664.38132397,
1661.56266831, 1661.56266831, 1661.56266831, 1661.56266831,
1658.70555605, 1658.70555605, 1658.70555605, 1658.70555605,
1663.28075963, 1663.28075963, 1663.28075963, 1663.28075963,
1656.53499514, 1656.53499514, 1656.53499514, 1656.53499514,
1545.9854808 , 1545.9854808 , 1545.9854808 , 1545.9854808 ,
979.576008 , 979.576008 , 979.576008 , 979.576008 ,
128.91410923, 128.91410923, 128.91410923, 128.91410923,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 8.67292336,
8.67292336, 8.67292336, 8.67292336, 14.19695604, 14.19695604,
14.19695604, 14.19695604, 13.91254383, 13.91254383, 13.91254383,
13.91254383, 14.02878657, 14.02878657, 14.02878657, 14.02878657,
15.03196644, 15.03196644, 15.03196644, 15.03196644, 17.65576232,
17.65576232, 17.65576232, 17.65576232, 21.93563921, 21.93563921,
21.93563921, 21.93563921, 24.89950561, 24.89950561, 24.89950561,
24.89950561, 24.90292343, 24.90292343, 24.90292343, 24.90292343,
16.88767399, 16.88767399, 16.88767399, 16.88767399, 6.4143529 ,
6.4143529 , 6.4143529 , 6.4143529 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 15.37284549,
15.37284549, 15.37284549, 15.37284549, 8.76622365, 8.76622365,
8.76622365, 8.76622365, 8.77570001, 8.77570001, 8.77570001,
8.77570001, 8.73436398, 8.73436398, 8.73436398, 8.73436398,
8.7207272 , 8.7207272 , 8.7207272 , 8.7207272 , 8.71892386,
8.71892386, 8.71892386, 8.71892386, 8.70849585, 8.70849585,
8.70849585, 8.70849585, 8.59195686, 8.59195686, 8.59195686,
8.59195686, 7.72578913, 7.72578913, 7.72578913, 7.72578913,
3.25941775, 3.25941775, 3.25941775, 3.25941775, -5.6791429 ,
-5.6791429 , -5.6791429 , -5.6791429 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
829.22159977, 829.22159977, 829.22159977, 829.22159977,
1689.36090883, 1689.36090883, 1689.36090883, 1689.36090883,
1675.83139319, 1675.83139319, 1675.83139319, 1675.83139319,
1667.43562786, 1667.43562786, 1667.43562786, 1667.43562786,
1658.97291748, 1658.97291748, 1658.97291748, 1658.97291748,
1660.46027375, 1660.46027375, 1660.46027375, 1660.46027375,
1662.95586925, 1662.95586925, 1662.95586925, 1662.95586925,
1639.8598087 , 1639.8598087 , 1639.8598087 , 1639.8598087 ,
1441.93374147, 1441.93374147, 1441.93374147, 1441.93374147,
679.55620664, 679.55620664, 679.55620664, 679.55620664,
58.13303639, 58.13303639, 58.13303639, 58.13303639,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 8.1726475 ,
8.1726475 , 8.1726475 , 8.1726475 , 14.2751961 , 14.2751961 ,
14.2751961 , 14.2751961 , 14.0398136 , 14.0398136 , 14.0398136 ,
14.0398136 , 14.02269412, 14.02269412, 14.02269412, 14.02269412,
14.51703694, 14.51703694, 14.51703694, 14.51703694, 16.24603055,
16.24603055, 16.24603055, 16.24603055, 19.72642061, 19.72642061,
19.72642061, 19.72642061, 23.89358146, 23.89358146, 23.89358146,
23.89358146, 25.71866923, 25.71866923, 25.71866923, 25.71866923,
24.04908508, 24.04908508, 24.04908508, 24.04908508, 12.5411211 ,
12.5411211 , 12.5411211 , 12.5411211 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 16.03410104,
16.03410104, 16.03410104, 16.03410104, 8.79130006, 8.79130006,
8.79130006, 8.79130006, 8.81715052, 8.81715052, 8.81715052,
8.81715052, 8.79265702, 8.79265702, 8.79265702, 8.79265702,
8.75616599, 8.75616599, 8.75616599, 8.75616599, 8.72386962,
8.72386962, 8.72386962, 8.72386962, 8.70850068, 8.70850068,
8.70850068, 8.70850068, 8.67535339, 8.67535339, 8.67535339,
8.67535339, 8.43738605, 8.43738605, 8.43738605, 8.43738605,
6.95183196, 6.95183196, 6.95183196, 6.95183196, 0.562619 ,
0.562619 , 0.562619 , 0.562619 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
756.31863848, 756.31863848, 756.31863848, 756.31863848,
1690.90500563, 1690.90500563, 1690.90500563, 1690.90500563,
1682.50978857, 1682.50978857, 1682.50978857, 1682.50978857,
1676.32059956, 1676.32059956, 1676.32059956, 1676.32059956,
1666.00066684, 1666.00066684, 1666.00066684, 1666.00066684,
1662.155713 , 1662.155713 , 1662.155713 , 1662.155713 ,
1663.26314213, 1663.26314213, 1663.26314213, 1663.26314213,
1660.5139094 , 1660.5139094 , 1660.5139094 , 1660.5139094 ,
1610.4610547 , 1610.4610547 , 1610.4610547 , 1610.4610547 ,
1281.72005283, 1281.72005283, 1281.72005283, 1281.72005283,
390.01870408, 390.01870408, 390.01870408, 390.01870408,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 7.65835956,
7.65835956, 7.65835956, 7.65835956, 14.32165135, 14.32165135,
14.32165135, 14.32165135, 14.14230367, 14.14230367, 14.14230367,
14.14230367, 14.05183665, 14.05183665, 14.05183665, 14.05183665,
14.28205848, 14.28205848, 14.28205848, 14.28205848, 15.34364942,
15.34364942, 15.34364942, 15.34364942, 17.87691577, 17.87691577,
17.87691577, 17.87691577, 22.0032607 , 22.0032607 , 22.0032607 ,
22.0032607 , 25.32794076, 25.32794076, 25.32794076, 25.32794076,
26.09347017, 26.09347017, 26.09347017, 26.09347017, 21.90065484,
21.90065484, 21.90065484, 21.90065484, 8.85587752, 8.85587752,
8.85587752, 8.85587752, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 16.78663193,
16.78663193, 16.78663193, 16.78663193, 8.80903942, 8.80903942,
8.80903942, 8.80903942, 8.83420513, 8.83420513, 8.83420513,
8.83420513, 8.82578366, 8.82578366, 8.82578366, 8.82578366,
8.80624892, 8.80624892, 8.80624892, 8.80624892, 8.75606374,
8.75606374, 8.75606374, 8.75606374, 8.72014166, 8.72014166,
8.72014166, 8.72014166, 8.69359444, 8.69359444, 8.69359444,
8.69359444, 8.61961759, 8.61961759, 8.61961759, 8.61961759,
8.1975906 , 8.1975906 , 8.1975906 , 8.1975906 , 5.72784319,
5.72784319, 5.72784319, 5.72784319, -2.66628544, -2.66628544,
-2.66628544, -2.66628544, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
681.23245756, 681.23245756, 681.23245756, 681.23245756,
1690.30672294, 1690.30672294, 1690.30672294, 1690.30672294,
1684.86233553, 1684.86233553, 1684.86233553, 1684.86233553,
1681.43710379, 1681.43710379, 1681.43710379, 1681.43710379,
1675.40103056, 1675.40103056, 1675.40103056, 1675.40103056,
1669.20788372, 1669.20788372, 1669.20788372, 1669.20788372,
1666.30842464, 1666.30842464, 1666.30842464, 1666.30842464,
1665.3407405 , 1665.3407405 , 1665.3407405 , 1665.3407405 ,
1655.60295511, 1655.60295511, 1655.60295511, 1655.60295511,
1554.56956983, 1554.56956983, 1554.56956983, 1554.56956983,
1052.37511398, 1052.37511398, 1052.37511398, 1052.37511398,
173.89490782, 173.89490782, 173.89490782, 173.89490782,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 7.1186186 ,
7.1186186 , 7.1186186 , 7.1186186 , 14.36047128, 14.36047128,
14.36047128, 14.36047128, 14.23425478, 14.23425478, 14.23425478,
14.23425478, 14.08783389, 14.08783389, 14.08783389, 14.08783389,
14.1779188 , 14.1779188 , 14.1779188 , 14.1779188 , 14.80411924,
14.80411924, 14.80411924, 14.80411924, 16.54777994, 16.54777994,
16.54777994, 16.54777994, 19.86979654, 19.86979654, 19.86979654,
19.86979654, 24.0787207 , 24.0787207 , 24.0787207 , 24.0787207 ,
26.24622763, 26.24622763, 26.24622763, 26.24622763, 25.9971748 ,
25.9971748 , 25.9971748 , 25.9971748 , 18.23903099, 18.23903099,
18.23903099, 18.23903099, 6.75171429, 6.75171429, 6.75171429,
6.75171429, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 17.66210704,
17.66210704, 17.66210704, 17.66210704, 8.82876563, 8.82876563,
8.82876563, 8.82876563, 8.8421663 , 8.8421663 , 8.8421663 ,
8.8421663 , 8.84053347, 8.84053347, 8.84053347, 8.84053347,
8.83357077, 8.83357077, 8.83357077, 8.83357077, 8.79975317,
8.79975317, 8.79975317, 8.79975317, 8.75109312, 8.75109312,
8.75109312, 8.75109312, 8.71258084, 8.71258084, 8.71258084,
8.71258084, 8.66774146, 8.66774146, 8.66774146, 8.66774146,
8.54608762, 8.54608762, 8.54608762, 8.54608762, 7.79555086,
7.79555086, 7.79555086, 7.79555086, 3.87424856, 3.87424856,
3.87424856, 3.87424856, -5.24819713, -5.24819713, -5.24819713,
-5.24819713, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
603.49144206, 603.49144206, 603.49144206, 603.49144206,
1688.86963269, 1688.86963269, 1688.86963269, 1688.86963269,
1685.80128371, 1685.80128371, 1685.80128371, 1685.80128371,
1683.63621235, 1683.63621235, 1683.63621235, 1683.63621235,
1680.55379063, 1680.55379063, 1680.55379063, 1680.55379063,
1678.31408237, 1678.31408237, 1678.31408237, 1678.31408237,
1673.35912582, 1673.35912582, 1673.35912582, 1673.35912582,
1670.22253987, 1670.22253987, 1670.22253987, 1670.22253987,
1667.74232817, 1667.74232817, 1667.74232817, 1667.74232817,
1640.45420665, 1640.45420665, 1640.45420665, 1640.45420665,
1461.51470867, 1461.51470867, 1461.51470867, 1461.51470867,
759.33857352, 759.33857352, 759.33857352, 759.33857352,
70.18449572, 70.18449572, 70.18449572, 70.18449572,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.61166788,
6.61166788, 6.61166788, 6.61166788, 14.33732237, 14.33732237,
14.33732237, 14.33732237, 14.30419681, 14.30419681, 14.30419681,
14.30419681, 14.14329976, 14.14329976, 14.14329976, 14.14329976,
14.14882045, 14.14882045, 14.14882045, 14.14882045, 14.48679804,
14.48679804, 14.48679804, 14.48679804, 15.63739956, 15.63739956,
15.63739956, 15.63739956, 18.13287272, 18.13287272, 18.13287272,
18.13287272, 22.14916876, 22.14916876, 22.14916876, 22.14916876,
25.56645324, 25.56645324, 25.56645324, 25.56645324, 26.84277136,
26.84277136, 26.84277136, 26.84277136, 25.05246497, 25.05246497,
25.05246497, 25.05246497, 13.74497893, 13.74497893, 13.74497893,
13.74497893, 6.01112923, 6.01112923, 6.01112923, 6.01112923,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 18.54223612,
18.54223612, 18.54223612, 18.54223612, 8.88501318, 8.88501318,
8.88501318, 8.88501318, 8.84657176, 8.84657176, 8.84657176,
8.84657176, 8.84965017, 8.84965017, 8.84965017, 8.84965017,
8.8439096 , 8.8439096 , 8.8439096 , 8.8439096 , 8.82217206,
8.82217206, 8.82217206, 8.82217206, 8.78976792, 8.78976792,
8.78976792, 8.78976792, 8.74465325, 8.74465325, 8.74465325,
8.74465325, 8.69615282, 8.69615282, 8.69615282, 8.69615282,
8.64451555, 8.64451555, 8.64451555, 8.64451555, 8.41921963,
8.41921963, 8.41921963, 8.41921963, 7.12455216, 7.12455216,
7.12455216, 7.12455216, 1.30137393, 1.30137393, 1.30137393,
1.30137393, -6.17610092, -6.17610092, -6.17610092, -6.17610092,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
533.78877038, 533.78877038, 533.78877038, 533.78877038,
1678.61449002, 1678.61449002, 1678.61449002, 1678.61449002,
1686.24594275, 1686.24594275, 1686.24594275, 1686.24594275,
1684.76417808, 1684.76417808, 1684.76417808, 1684.76417808,
1682.9536793 , 1682.9536793 , 1682.9536793 , 1682.9536793 ,
1683.43245703, 1683.43245703, 1683.43245703, 1683.43245703,
1681.720835 , 1681.720835 , 1681.720835 , 1681.720835 ,
1678.00552301, 1678.00552301, 1678.00552301, 1678.00552301,
1674.93385409, 1674.93385409, 1674.93385409, 1674.93385409,
1665.09193546, 1665.09193546, 1665.09193546, 1665.09193546,
1612.92728612, 1612.92728612, 1612.92728612, 1612.92728612,
1316.10582435, 1316.10582435, 1316.10582435, 1316.10582435,
457.58271286, 457.58271286, 457.58271286, 457.58271286,
46.49640428, 46.49640428, 46.49640428, 46.49640428,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.30239337,
6.30239337, 6.30239337, 6.30239337, 14.12698879, 14.12698879,
14.12698879, 14.12698879, 14.31831538, 14.31831538, 14.31831538,
14.31831538, 14.21203217, 14.21203217, 14.21203217, 14.21203217,
14.16122537, 14.16122537, 14.16122537, 14.16122537, 14.32221796,
14.32221796, 14.32221796, 14.32221796, 15.0335877 , 15.0335877 ,
15.0335877 , 15.0335877 , 16.82226028, 16.82226028, 16.82226028,
16.82226028, 20.08622976, 20.08622976, 20.08622976, 20.08622976,
24.19351535, 24.19351535, 24.19351535, 24.19351535, 26.65990335,
26.65990335, 26.65990335, 26.65990335, 27.07991409, 27.07991409,
27.07991409, 27.07991409, 22.89045836, 22.89045836, 22.89045836,
22.89045836, 9.62356471, 9.62356471, 9.62356471, 9.62356471,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.07308975,
19.07308975, 19.07308975, 19.07308975, 9.02253672, 9.02253672,
9.02253672, 9.02253672, 8.84125812, 8.84125812, 8.84125812,
8.84125812, 8.85134124, 8.85134124, 8.85134124, 8.85134124,
8.84877196, 8.84877196, 8.84877196, 8.84877196, 8.83196853,
8.83196853, 8.83196853, 8.83196853, 8.8088514 , 8.8088514 ,
8.8088514 , 8.8088514 , 8.77595509, 8.77595509, 8.77595509,
8.77595509, 8.73009145, 8.73009145, 8.73009145, 8.73009145,
8.68944343, 8.68944343, 8.68944343, 8.68944343, 8.60375556,
8.60375556, 8.60375556, 8.60375556, 8.2108148 , 8.2108148 ,
8.2108148 , 8.2108148 , 6.02573007, 6.02573007, 6.02573007,
6.02573007, -1.89911994, -1.89911994, -1.89911994, -1.89911994,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
495.38194177, 495.38194177, 495.38194177, 495.38194177,
1644.53020156, 1644.53020156, 1644.53020156, 1644.53020156,
1684.91455494, 1684.91455494, 1684.91455494, 1684.91455494,
1684.79944511, 1684.79944511, 1684.79944511, 1684.79944511,
1684.57865248, 1684.57865248, 1684.57865248, 1684.57865248,
1686.13849473, 1686.13849473, 1686.13849473, 1686.13849473,
1686.35971641, 1686.35971641, 1686.35971641, 1686.35971641,
1685.52441483, 1685.52441483, 1685.52441483, 1685.52441483,
1683.13310285, 1683.13310285, 1683.13310285, 1683.13310285,
1676.29508646, 1676.29508646, 1676.29508646, 1676.29508646,
1659.30479154, 1659.30479154, 1659.30479154, 1659.30479154,
1562.7097678 , 1562.7097678 , 1562.7097678 , 1562.7097678 ,
1103.51026707, 1103.51026707, 1103.51026707, 1103.51026707,
215.162548 , 215.162548 , 215.162548 , 215.162548 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.14195652,
6.14195652, 6.14195652, 6.14195652, 13.80144353, 13.80144353,
13.80144353, 13.80144353, 14.30497421, 14.30497421, 14.30497421,
14.30497421, 14.25642284, 14.25642284, 14.25642284, 14.25642284,
14.18160262, 14.18160262, 14.18160262, 14.18160262, 14.2515204 ,
14.2515204 , 14.2515204 , 14.2515204 , 14.6640006 , 14.6640006 ,
14.6640006 , 14.6640006 , 15.87822517, 15.87822517, 15.87822517,
15.87822517, 18.37538004, 18.37538004, 18.37538004, 18.37538004,
22.25500924, 22.25500924, 22.25500924, 22.25500924, 25.80283472,
25.80283472, 25.80283472, 25.80283472, 27.34875521, 27.34875521,
27.34875521, 27.34875521, 26.85683706, 26.85683706, 26.85683706,
26.85683706, 19.30182288, 19.30182288, 19.30182288, 19.30182288,
7.0675042 , 7.0675042 , 7.0675042 , 7.0675042 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.3502001 ,
19.3502001 , 19.3502001 , 19.3502001 , 9.21603967, 9.21603967,
9.21603967, 9.21603967, 8.82260996, 8.82260996, 8.82260996,
8.82260996, 8.84048313, 8.84048313, 8.84048313, 8.84048313,
8.84501152, 8.84501152, 8.84501152, 8.84501152, 8.83433152,
8.83433152, 8.83433152, 8.83433152, 8.81787069, 8.81787069,
8.81787069, 8.81787069, 8.79269969, 8.79269969, 8.79269969,
8.79269969, 8.75772964, 8.75772964, 8.75772964, 8.75772964,
8.72570412, 8.72570412, 8.72570412, 8.72570412, 8.67435325,
8.67435325, 8.67435325, 8.67435325, 8.54192455, 8.54192455,
8.54192455, 8.54192455, 7.86009779, 7.86009779, 7.86009779,
7.86009779, 4.30783648, 4.30783648, 4.30783648, 4.30783648,
-4.84140731, -4.84140731, -4.84140731, -4.84140731, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
476.70326546, 476.70326546, 476.70326546, 476.70326546,
1599.20542388, 1599.20542388, 1599.20542388, 1599.20542388,
1681.12761211, 1681.12761211, 1681.12761211, 1681.12761211,
1682.89800753, 1682.89800753, 1682.89800753, 1682.89800753,
1684.67100901, 1684.67100901, 1684.67100901, 1684.67100901,
1687.53791343, 1687.53791343, 1687.53791343, 1687.53791343,
1689.10128233, 1689.10128233, 1689.10128233, 1689.10128233,
1690.03751927, 1690.03751927, 1690.03751927, 1690.03751927,
1689.74571632, 1689.74571632, 1689.74571632, 1689.74571632,
1685.17838523, 1685.17838523, 1685.17838523, 1685.17838523,
1677.17996362, 1677.17996362, 1677.17996362, 1677.17996362,
1645.59189795, 1645.59189795, 1645.59189795, 1645.59189795,
1477.69337386, 1477.69337386, 1477.69337386, 1477.69337386,
821.52788889, 821.52788889, 821.52788889, 821.52788889,
83.10819658, 83.10819658, 83.10819658, 83.10819658,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.06469207,
6.06469207, 6.06469207, 6.06469207, 13.43969448, 13.43969448,
13.43969448, 13.43969448, 14.27300861, 14.27300861, 14.27300861,
14.27300861, 14.26232073, 14.26232073, 14.26232073, 14.26232073,
14.20693264, 14.20693264, 14.20693264, 14.20693264, 14.22600941,
14.22600941, 14.22600941, 14.22600941, 14.451735 , 14.451735 ,
14.451735 , 14.451735 , 15.23715871, 15.23715871, 15.23715871,
15.23715871, 17.05674781, 17.05674781, 17.05674781, 17.05674781,
20.23122256, 20.23122256, 20.23122256, 20.23122256, 24.33909909,
24.33909909, 24.33909909, 24.33909909, 26.94680512, 26.94680512,
26.94680512, 26.94680512, 27.76657318, 27.76657318, 27.76657318,
27.76657318, 25.87187706, 25.87187706, 25.87187706, 25.87187706,
14.71753118, 14.71753118, 14.71753118, 14.71753118, 6.05256418,
6.05256418, 6.05256418, 6.05256418, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.48410417,
19.48410417, 19.48410417, 19.48410417, 9.45689754, 9.45689754,
9.45689754, 9.45689754, 8.79920582, 8.79920582, 8.79920582,
8.79920582, 8.81925127, 8.81925127, 8.81925127, 8.81925127,
8.8299591 , 8.8299591 , 8.8299591 , 8.8299591 , 8.82715687,
8.82715687, 8.82715687, 8.82715687, 8.81789768, 8.81789768,
8.81789768, 8.81789768, 8.80087111, 8.80087111, 8.80087111,
8.80087111, 8.77473484, 8.77473484, 8.77473484, 8.77473484,
8.75195341, 8.75195341, 8.75195341, 8.75195341, 8.71520383,
8.71520383, 8.71520383, 8.71520383, 8.65591151, 8.65591151,
8.65591151, 8.65591151, 8.43568632, 8.43568632, 8.43568632,
8.43568632, 7.25174947, 7.25174947, 7.25174947, 7.25174947,
1.85536253, 1.85536253, 1.85536253, 1.85536253, -6.1268406 ,
-6.1268406 , -6.1268406 , -6.1268406 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
468.03926864, 468.03926864, 468.03926864, 468.03926864,
1550.80208207, 1550.80208207, 1550.80208207, 1550.80208207,
1676.67695683, 1676.67695683, 1676.67695683, 1676.67695683,
1679.10151146, 1679.10151146, 1679.10151146, 1679.10151146,
1682.92083724, 1682.92083724, 1682.92083724, 1682.92083724,
1687.22320793, 1687.22320793, 1687.22320793, 1687.22320793,
1690.31989424, 1690.31989424, 1690.31989424, 1690.31989424,
1692.80543508, 1692.80543508, 1692.80543508, 1692.80543508,
1693.9292418 , 1693.9292418 , 1693.9292418 , 1693.9292418 ,
1691.48316721, 1691.48316721, 1691.48316721, 1691.48316721,
1687.48123227, 1687.48123227, 1687.48123227, 1687.48123227,
1674.61113379, 1674.61113379, 1674.61113379, 1674.61113379,
1619.83613221, 1619.83613221, 1619.83613221, 1619.83613221,
1345.15261819, 1345.15261819, 1345.15261819, 1345.15261819,
513.60242111, 513.60242111, 513.60242111, 513.60242111,
47.53604724, 47.53604724, 47.53604724, 47.53604724,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.02886327,
6.02886327, 6.02886327, 6.02886327, 13.07839128, 13.07839128,
13.07839128, 13.07839128, 14.23346801, 14.23346801, 14.23346801,
14.23346801, 14.24717384, 14.24717384, 14.24717384, 14.24717384,
14.22281297, 14.22281297, 14.22281297, 14.22281297, 14.22054517,
14.22054517, 14.22054517, 14.22054517, 14.33456656, 14.33456656,
14.33456656, 14.33456656, 14.82163366, 14.82163366, 14.82163366,
14.82163366, 16.09047457, 16.09047457, 16.09047457, 16.09047457,
18.55177024, 18.55177024, 18.55177024, 18.55177024, 22.37387504,
22.37387504, 22.37387504, 22.37387504, 25.95158279, 25.95158279,
25.95158279, 25.95158279, 27.73836656, 27.73836656, 27.73836656,
27.73836656, 27.94116204, 27.94116204, 27.94116204, 27.94116204,
23.71135453, 23.71135453, 23.71135453, 23.71135453, 10.2611939 ,
10.2611939 , 10.2611939 , 10.2611939 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.54621347,
19.54621347, 19.54621347, 19.54621347, 9.73291458, 9.73291458,
9.73291458, 9.73291458, 8.78207223, 8.78207223, 8.78207223,
8.78207223, 8.7976568 , 8.7976568 , 8.7976568 , 8.7976568 ,
8.80630024, 8.80630024, 8.80630024, 8.80630024, 8.80930339,
8.80930339, 8.80930339, 8.80930339, 8.80766016, 8.80766016,
8.80766016, 8.80766016, 8.79917595, 8.79917595, 8.79917595,
8.79917595, 8.78413417, 8.78413417, 8.78413417, 8.78413417,
8.76829084, 8.76829084, 8.76829084, 8.76829084, 8.74129772,
8.74129772, 8.74129772, 8.74129772, 8.707466 , 8.707466 ,
8.707466 , 8.707466 , 8.62437495, 8.62437495, 8.62437495,
8.62437495, 8.2411141 , 8.2411141 , 8.2411141 , 8.2411141 ,
6.25193806, 6.25193806, 6.25193806, 6.25193806, -1.28878105,
-1.28878105, -1.28878105, -1.28878105, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
464.10347553, 464.10347553, 464.10347553, 464.10347553,
1501.75676947, 1501.75676947, 1501.75676947, 1501.75676947,
1673.48248244, 1673.48248244, 1673.48248244, 1673.48248244,
1675.26131852, 1675.26131852, 1675.26131852, 1675.26131852,
1679.69511989, 1679.69511989, 1679.69511989, 1679.69511989,
1685.03144267, 1685.03144267, 1685.03144267, 1685.03144267,
1689.69499574, 1689.69499574, 1689.69499574, 1689.69499574,
1693.77032209, 1693.77032209, 1693.77032209, 1693.77032209,
1696.36802183, 1696.36802183, 1696.36802183, 1696.36802183,
1695.45911111, 1695.45911111, 1695.45911111, 1695.45911111,
1694.01527689, 1694.01527689, 1694.01527689, 1694.01527689,
1687.72253001, 1687.72253001, 1687.72253001, 1687.72253001,
1668.0637948 , 1668.0637948 , 1668.0637948 , 1668.0637948 ,
1576.4342413 , 1576.4342413 , 1576.4342413 , 1576.4342413 ,
1145.88619696, 1145.88619696, 1145.88619696, 1145.88619696,
252.0045113 , 252.0045113 , 252.0045113 , 252.0045113 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.01256033,
6.01256033, 6.01256033, 6.01256033, 12.72818781, 12.72818781,
12.72818781, 12.72818781, 14.18966502, 14.18966502, 14.18966502,
14.18966502, 14.23050382, 14.23050382, 14.23050382, 14.23050382,
14.22786886, 14.22786886, 14.22786886, 14.22786886, 14.22013033,
14.22013033, 14.22013033, 14.22013033, 14.27375708, 14.27375708,
14.27375708, 14.27375708, 14.56135118, 14.56135118, 14.56135118,
14.56135118, 15.41020384, 15.41020384, 15.41020384, 15.41020384,
17.24030876, 17.24030876, 17.24030876, 17.24030876, 20.3753365 ,
20.3753365 , 20.3753365 , 20.3753365 , 24.41284547, 24.41284547,
24.41284547, 24.41284547, 27.14093669, 27.14093669, 27.14093669,
27.14093669, 28.30381699, 28.30381699, 28.30381699, 28.30381699,
27.61366449, 27.61366449, 27.61366449, 27.61366449, 20.12961367,
20.12961367, 20.12961367, 20.12961367, 7.39216618, 7.39216618,
7.39216618, 7.39216618, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.57445277,
19.57445277, 19.57445277, 19.57445277, 10.03253127, 10.03253127,
10.03253127, 10.03253127, 8.77393351, 8.77393351, 8.77393351,
8.77393351, 8.78266557, 8.78266557, 8.78266557, 8.78266557,
8.78358149, 8.78358149, 8.78358149, 8.78358149, 8.78542818,
8.78542818, 8.78542818, 8.78542818, 8.78785646, 8.78785646,
8.78785646, 8.78785646, 8.78658804, 8.78658804, 8.78658804,
8.78658804, 8.78385244, 8.78385244, 8.78385244, 8.78385244,
8.77594863, 8.77594863, 8.77594863, 8.77594863, 8.75713227,
8.75713227, 8.75713227, 8.75713227, 8.73606701, 8.73606701,
8.73606701, 8.73606701, 8.69641263, 8.69641263, 8.69641263,
8.69641263, 8.55917242, 8.55917242, 8.55917242, 8.55917242,
7.92994353, 7.92994353, 7.92994353, 7.92994353, 4.665091 ,
4.665091 , 4.665091 , 4.665091 , -4.42403255, -4.42403255,
-4.42403255, -4.42403255, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
462.3317026 , 462.3317026 , 462.3317026 , 462.3317026 ,
1452.09052865, 1452.09052865, 1452.09052865, 1452.09052865,
1671.9017181 , 1671.9017181 , 1671.9017181 , 1671.9017181 ,
1672.88932596, 1672.88932596, 1672.88932596, 1672.88932596,
1676.49949878, 1676.49949878, 1676.49949878, 1676.49949878,
1681.82659859, 1681.82659859, 1681.82659859, 1681.82659859,
1687.39626942, 1687.39626942, 1687.39626942, 1687.39626942,
1692.75436141, 1692.75436141, 1692.75436141, 1692.75436141,
1696.73494397, 1696.73494397, 1696.73494397, 1696.73494397,
1697.56704436, 1697.56704436, 1697.56704436, 1697.56704436,
1697.99798875, 1697.99798875, 1697.99798875, 1697.99798875,
1694.92491575, 1694.92491575, 1694.92491575, 1694.92491575,
1686.67457302, 1686.67457302, 1686.67457302, 1686.67457302,
1657.45734097, 1657.45734097, 1657.45734097, 1657.45734097,
1497.50055341, 1497.50055341, 1497.50055341, 1497.50055341,
873.62567544, 873.62567544, 873.62567544, 873.62567544,
97.74146277, 97.74146277, 97.74146277, 97.74146277,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.00521078,
6.00521078, 6.00521078, 6.00521078, 12.38993388, 12.38993388,
12.38993388, 12.38993388, 14.14519572, 14.14519572, 14.14519572,
14.14519572, 14.21203317, 14.21203317, 14.21203317, 14.21203317,
14.22915807, 14.22915807, 14.22915807, 14.22915807, 14.22348347,
14.22348347, 14.22348347, 14.22348347, 14.24506269, 14.24506269,
14.24506269, 14.24506269, 14.40465933, 14.40465933, 14.40465933,
14.40465933, 14.94868214, 14.94868214, 14.94868214, 14.94868214,
16.25655917, 16.25655917, 16.25655917, 16.25655917, 18.71532853,
18.71532853, 18.71532853, 18.71532853, 22.4416374 , 22.4416374 ,
22.4416374 , 22.4416374 , 26.03175799, 26.03175799, 26.03175799,
26.03175799, 28.07389691, 28.07389691, 28.07389691, 28.07389691,
28.57139062, 28.57139062, 28.57139062, 28.57139062, 26.53452027,
26.53452027, 26.53452027, 26.53452027, 15.55324352, 15.55324352,
15.55324352, 15.55324352, 6.13684598, 6.13684598, 6.13684598,
6.13684598, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.58717335,
19.58717335, 19.58717335, 19.58717335, 10.34899927, 10.34899927,
10.34899927, 10.34899927, 8.77184226, 8.77184226, 8.77184226,
8.77184226, 8.77457278, 8.77457278, 8.77457278, 8.77457278,
8.76864579, 8.76864579, 8.76864579, 8.76864579, 8.76390782,
8.76390782, 8.76390782, 8.76390782, 8.76368947, 8.76368947,
8.76368947, 8.76368947, 8.76607598, 8.76607598, 8.76607598,
8.76607598, 8.77190498, 8.77190498, 8.77190498, 8.77190498,
8.77293894, 8.77293894, 8.77293894, 8.77293894, 8.76486151,
8.76486151, 8.76486151, 8.76486151, 8.75224516, 8.75224516,
8.75224516, 8.75224516, 8.73002234, 8.73002234, 8.73002234,
8.73002234, 8.66900729, 8.66900729, 8.66900729, 8.66900729,
8.46716317, 8.46716317, 8.46716317, 8.46716317, 7.38774697,
7.38774697, 7.38774697, 7.38774697, 2.33157677, 2.33157677,
2.33157677, 2.33157677, -6.0273606 , -6.0273606 , -6.0273606 ,
-6.0273606 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
461.53725474, 461.53725474, 461.53725474, 461.53725474,
1401.46357119, 1401.46357119, 1401.46357119, 1401.46357119,
1671.44416708, 1671.44416708, 1671.44416708, 1671.44416708,
1671.94879141, 1671.94879141, 1671.94879141, 1671.94879141,
1674.76785448, 1674.76785448, 1674.76785448, 1674.76785448,
1679.02439986, 1679.02439986, 1679.02439986, 1679.02439986,
1684.35393811, 1684.35393811, 1684.35393811, 1684.35393811,
1690.14122531, 1690.14122531, 1690.14122531, 1690.14122531,
1694.93535923, 1694.93535923, 1694.93535923, 1694.93535923,
1697.61431565, 1697.61431565, 1697.61431565, 1697.61431565,
1700.01321682, 1700.01321682, 1700.01321682, 1700.01321682,
1698.95105971, 1698.95105971, 1698.95105971, 1698.95105971,
1695.36387827, 1695.36387827, 1695.36387827, 1695.36387827,
1686.00022927, 1686.00022927, 1686.00022927, 1686.00022927,
1632.25134395, 1632.25134395, 1632.25134395, 1632.25134395,
1372.90297687, 1372.90297687, 1372.90297687, 1372.90297687,
565.30554122, 565.30554122, 565.30554122, 565.30554122,
49.69965112, 49.69965112, 49.69965112, 49.69965112,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.00191237,
6.00191237, 6.00191237, 6.00191237, 12.0611019 , 12.0611019 ,
12.0611019 , 12.0611019 , 14.10481587, 14.10481587, 14.10481587,
14.10481587, 14.18654067, 14.18654067, 14.18654067, 14.18654067,
14.23049568, 14.23049568, 14.23049568, 14.23049568, 14.2298967 ,
14.2298967 , 14.2298967 , 14.2298967 , 14.23613946, 14.23613946,
14.23613946, 14.23613946, 14.31707273, 14.31707273, 14.31707273,
14.31707273, 14.64765446, 14.64765446, 14.64765446, 14.64765446,
15.54787982, 15.54787982, 15.54787982, 15.54787982, 17.39854503,
17.39854503, 17.39854503, 17.39854503, 20.47814225, 20.47814225,
20.47814225, 20.47814225, 24.43048632, 24.43048632, 24.43048632,
24.43048632, 27.34776012, 27.34776012, 27.34776012, 27.34776012,
28.62183206, 28.62183206, 28.62183206, 28.62183206, 28.6252776 ,
28.6252776 , 28.6252776 , 28.6252776 , 24.3768406 , 24.3768406 ,
24.3768406 , 24.3768406 , 10.93946855, 10.93946855, 10.93946855,
10.93946855, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59287913,
19.59287913, 19.59287913, 19.59287913, 10.67986783, 10.67986783,
10.67986783, 10.67986783, 8.77244753, 8.77244753, 8.77244753,
8.77244753, 8.77089439, 8.77089439, 8.77089439, 8.77089439,
8.76033975, 8.76033975, 8.76033975, 8.76033975, 8.74995589,
8.74995589, 8.74995589, 8.74995589, 8.743477 , 8.743477 ,
8.743477 , 8.743477 , 8.74369671, 8.74369671, 8.74369671,
8.74369671, 8.75189311, 8.75189311, 8.75189311, 8.75189311,
8.75950663, 8.75950663, 8.75950663, 8.75950663, 8.76196429,
8.76196429, 8.76196429, 8.76196429, 8.75864593, 8.75864593,
8.75864593, 8.75864593, 8.74698766, 8.74698766, 8.74698766,
8.74698766, 8.71314943, 8.71314943, 8.71314943, 8.71314943,
8.64426969, 8.64426969, 8.64426969, 8.64426969, 8.29748153,
8.29748153, 8.29748153, 8.29748153, 6.47495531, 6.47495531,
6.47495531, 6.47495531, -0.70842801, -0.70842801, -0.70842801,
-0.70842801, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
461.18165087, 461.18165087, 461.18165087, 461.18165087,
1349.74992079, 1349.74992079, 1349.74992079, 1349.74992079,
1671.60482909, 1671.60482909, 1671.60482909, 1671.60482909,
1671.83120898, 1671.83120898, 1671.83120898, 1671.83120898,
1674.38970894, 1674.38970894, 1674.38970894, 1674.38970894,
1677.64758285, 1677.64758285, 1677.64758285, 1677.64758285,
1681.89797938, 1681.89797938, 1681.89797938, 1681.89797938,
1687.02073081, 1687.02073081, 1687.02073081, 1687.02073081,
1691.69948158, 1691.69948158, 1691.69948158, 1691.69948158,
1695.89819179, 1695.89819179, 1695.89819179, 1695.89819179,
1699.59855312, 1699.59855312, 1699.59855312, 1699.59855312,
1700.59794297, 1700.59794297, 1700.59794297, 1700.59794297,
1699.78993323, 1699.78993323, 1699.78993323, 1699.78993323,
1697.54039263, 1697.54039263, 1697.54039263, 1697.54039263,
1678.14710016, 1678.14710016, 1678.14710016, 1678.14710016,
1590.4085702 , 1590.4085702 , 1590.4085702 , 1590.4085702 ,
1186.37141402, 1186.37141402, 1186.37141402, 1186.37141402,
291.00638382, 291.00638382, 291.00638382, 291.00638382,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 6.00043524,
6.00043524, 6.00043524, 6.00043524, 11.7372962 , 11.7372962 ,
11.7372962 , 11.7372962 , 14.07379548, 14.07379548, 14.07379548,
14.07379548, 14.15517935, 14.15517935, 14.15517935, 14.15517935,
14.2272544 , 14.2272544 , 14.2272544 , 14.2272544 , 14.2375337 ,
14.2375337 , 14.2375337 , 14.2375337 , 14.23872925, 14.23872925,
14.23872925, 14.23872925, 14.2748018 , 14.2748018 , 14.2748018 ,
14.2748018 , 14.46334784, 14.46334784, 14.46334784, 14.46334784,
15.05471701, 15.05471701, 15.05471701, 15.05471701, 16.39861085,
16.39861085, 16.39861085, 16.39861085, 18.83588578, 18.83588578,
18.83588578, 18.83588578, 22.45137204, 22.45137204, 22.45137204,
22.45137204, 26.17620124, 26.17620124, 26.17620124, 26.17620124,
28.20662605, 28.20662605, 28.20662605, 28.20662605, 29.01571741,
29.01571741, 29.01571741, 29.01571741, 28.20622566, 28.20622566,
28.20622566, 28.20622566, 20.93126273, 20.93126273, 20.93126273,
20.93126273, 7.75255279, 7.75255279, 7.75255279, 7.75255279,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59543352,
19.59543352, 19.59543352, 19.59543352, 11.02536985, 11.02536985,
11.02536985, 11.02536985, 8.77430718, 8.77430718, 8.77430718,
8.77430718, 8.76967261, 8.76967261, 8.76967261, 8.76967261,
8.75558013, 8.75558013, 8.75558013, 8.75558013, 8.74203901,
8.74203901, 8.74203901, 8.74203901, 8.73063358, 8.73063358,
8.73063358, 8.73063358, 8.72592755, 8.72592755, 8.72592755,
8.72592755, 8.73068524, 8.73068524, 8.73068524, 8.73068524,
8.73880591, 8.73880591, 8.73880591, 8.73880591, 8.74949988,
8.74949988, 8.74949988, 8.74949988, 8.7555838 , 8.7555838 ,
8.7555838 , 8.7555838 , 8.75211587, 8.75211587, 8.75211587,
8.75211587, 8.73247564, 8.73247564, 8.73247564, 8.73247564,
8.70783033, 8.70783033, 8.70783033, 8.70783033, 8.59135962,
8.59135962, 8.59135962, 8.59135962, 8.01612734, 8.01612734,
8.01612734, 8.01612734, 5.00404045, 5.00404045, 5.00404045,
5.00404045, -3.96613135, -3.96613135, -3.96613135, -3.96613135,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
461.02260131, 461.02260131, 461.02260131, 461.02260131,
1296.91397167, 1296.91397167, 1296.91397167, 1296.91397167,
1672.10552341, 1672.10552341, 1672.10552341, 1672.10552341,
1672.2542597 , 1672.2542597 , 1672.2542597 , 1672.2542597 ,
1674.70858572, 1674.70858572, 1674.70858572, 1674.70858572,
1677.49459326, 1677.49459326, 1677.49459326, 1677.49459326,
1680.67202342, 1680.67202342, 1680.67202342, 1680.67202342,
1684.60404744, 1684.60404744, 1684.60404744, 1684.60404744,
1688.38179454, 1688.38179454, 1688.38179454, 1688.38179454,
1692.71350426, 1692.71350426, 1692.71350426, 1692.71350426,
1697.41354258, 1697.41354258, 1697.41354258, 1697.41354258,
1700.07117267, 1700.07117267, 1700.07117267, 1700.07117267,
1701.30754546, 1701.30754546, 1701.30754546, 1701.30754546,
1702.62380877, 1702.62380877, 1702.62380877, 1702.62380877,
1694.7539739 , 1694.7539739 , 1694.7539739 , 1694.7539739 ,
1666.22273512, 1666.22273512, 1666.22273512, 1666.22273512,
1517.56453226, 1517.56453226, 1517.56453226, 1517.56453226,
927.27397973, 927.27397973, 927.27397973, 927.27397973,
115.53325364, 115.53325364, 115.53325364, 115.53325364,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99977441,
5.99977441, 5.99977441, 5.99977441, 11.41328059, 11.41328059,
11.41328059, 11.41328059, 14.05574474, 14.05574474, 14.05574474,
14.05574474, 14.123278 , 14.123278 , 14.123278 , 14.123278 ,
14.21476462, 14.21476462, 14.21476462, 14.21476462, 14.24380362,
14.24380362, 14.24380362, 14.24380362, 14.24638528, 14.24638528,
14.24638528, 14.24638528, 14.25961634, 14.25961634, 14.25961634,
14.25961634, 14.36000574, 14.36000574, 14.36000574, 14.36000574,
14.73020721, 14.73020721, 14.73020721, 14.73020721, 15.66543029,
15.66543029, 15.66543029, 15.66543029, 17.52510797, 17.52510797,
17.52510797, 17.52510797, 20.53937827, 20.53937827, 20.53937827,
20.53937827, 24.52191428, 24.52191428, 24.52191428, 24.52191428,
27.36117172, 27.36117172, 27.36117172, 27.36117172, 28.8831646 ,
28.8831646 , 28.8831646 , 28.8831646 , 29.18373553, 29.18373553,
29.18373553, 29.18373553, 27.11704018, 27.11704018, 27.11704018,
27.11704018, 16.38597363, 16.38597363, 16.38597363, 16.38597363,
6.26345038, 6.26345038, 6.26345038, 6.26345038, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59657611,
19.59657611, 19.59657611, 19.59657611, 11.38698932, 11.38698932,
11.38698932, 11.38698932, 8.77633703, 8.77633703, 8.77633703,
8.77633703, 8.76949213, 8.76949213, 8.76949213, 8.76949213,
8.75299555, 8.75299555, 8.75299555, 8.75299555, 8.73760248,
8.73760248, 8.73760248, 8.73760248, 8.72374953, 8.72374953,
8.72374953, 8.72374953, 8.71466863, 8.71466863, 8.71466863,
8.71466863, 8.71514638, 8.71514638, 8.71514638, 8.71514638,
8.71899761, 8.71899761, 8.71899761, 8.71899761, 8.72886327,
8.72886327, 8.72886327, 8.72886327, 8.74369615, 8.74369615,
8.74369615, 8.74369615, 8.74722894, 8.74722894, 8.74722894,
8.74722894, 8.73902406, 8.73902406, 8.73902406, 8.73902406,
8.7320913 , 8.7320913 , 8.7320913 , 8.7320913 , 8.68916945,
8.68916945, 8.68916945, 8.68916945, 8.5080931 , 8.5080931 ,
8.5080931 , 8.5080931 , 7.52056852, 7.52056852, 7.52056852,
7.52056852, 2.80913789, 2.80913789, 2.80913789, 2.80913789,
-5.87118686, -5.87118686, -5.87118686, -5.87118686, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.95148826, 460.95148826, 460.95148826, 460.95148826,
1242.93498529, 1242.93498529, 1242.93498529, 1242.93498529,
1672.75025416, 1672.75025416, 1672.75025416, 1672.75025416,
1672.99461337, 1672.99461337, 1672.99461337, 1672.99461337,
1675.45802531, 1675.45802531, 1675.45802531, 1675.45802531,
1677.97013096, 1677.97013096, 1677.97013096, 1677.97013096,
1680.56820927, 1680.56820927, 1680.56820927, 1680.56820927,
1683.25513146, 1683.25513146, 1683.25513146, 1683.25513146,
1686.15902024, 1686.15902024, 1686.15902024, 1686.15902024,
1689.63290509, 1689.63290509, 1689.63290509, 1689.63290509,
1693.61270105, 1693.61270105, 1693.61270105, 1693.61270105,
1697.83925189, 1697.83925189, 1697.83925189, 1697.83925189,
1700.67539901, 1700.67539901, 1700.67539901, 1700.67539901,
1704.34738929, 1704.34738929, 1704.34738929, 1704.34738929,
1701.04658492, 1701.04658492, 1701.04658492, 1701.04658492,
1691.91391925, 1691.91391925, 1691.91391925, 1691.91391925,
1642.61175186, 1642.61175186, 1642.61175186, 1642.61175186,
1403.02981473, 1403.02981473, 1403.02981473, 1403.02981473,
620.35429771, 620.35429771, 620.35429771, 620.35429771,
53.31876512, 53.31876512, 53.31876512, 53.31876512,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99947891,
5.99947891, 5.99947891, 5.99947891, 11.08383716, 11.08383716,
11.08383716, 11.08383716, 14.0517203 , 14.0517203 , 14.0517203 ,
14.0517203 , 14.10023842, 14.10023842, 14.10023842, 14.10023842,
14.19023691, 14.19023691, 14.19023691, 14.19023691, 14.24455191,
14.24455191, 14.24455191, 14.24455191, 14.25421038, 14.25421038,
14.25421038, 14.25421038, 14.25918171, 14.25918171, 14.25918171,
14.25918171, 14.3079739 , 14.3079739 , 14.3079739 , 14.3079739 ,
14.52901048, 14.52901048, 14.52901048, 14.52901048, 15.15486733,
15.15486733, 15.15486733, 15.15486733, 16.51738142, 16.51738142,
16.51738142, 16.51738142, 18.93314834, 18.93314834, 18.93314834,
18.93314834, 22.5440941 , 22.5440941 , 22.5440941 , 22.5440941 ,
26.12029499, 26.12029499, 26.12029499, 26.12029499, 28.34016344,
28.34016344, 28.34016344, 28.34016344, 29.28063222, 29.28063222,
29.28063222, 29.28063222, 29.17431829, 29.17431829, 29.17431829,
29.17431829, 25.00476923, 25.00476923, 25.00476923, 25.00476923,
11.66638056, 11.66638056, 11.66638056, 11.66638056, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59708699,
19.59708699, 19.59708699, 19.59708699, 11.76705719, 11.76705719,
11.76705719, 11.76705719, 8.77822243, 8.77822243, 8.77822243,
8.77822243, 8.76947767, 8.76947767, 8.76947767, 8.76947767,
8.75155398, 8.75155398, 8.75155398, 8.75155398, 8.73518896,
8.73518896, 8.73518896, 8.73518896, 8.72041919, 8.72041919,
8.72041919, 8.72041919, 8.70930751, 8.70930751, 8.70930751,
8.70930751, 8.70529704, 8.70529704, 8.70529704, 8.70529704,
8.70515517, 8.70515517, 8.70515517, 8.70515517, 8.7108029 ,
8.7108029 , 8.7108029 , 8.7108029 , 8.72327917, 8.72327917,
8.72327917, 8.72327917, 8.73376459, 8.73376459, 8.73376459,
8.73376459, 8.73563619, 8.73563619, 8.73563619, 8.73563619,
8.73912673, 8.73912673, 8.73912673, 8.73912673, 8.7231003 ,
8.7231003 , 8.7231003 , 8.7231003 , 8.66683961, 8.66683961,
8.66683961, 8.66683961, 8.34928421, 8.34928421, 8.34928421,
8.34928421, 6.69362993, 6.69362993, 6.69362993, 6.69362993,
-0.11035176, -0.11035176, -0.11035176, -0.11035176, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.91969759, 460.91969759, 460.91969759, 460.91969759,
1187.76602814, 1187.76602814, 1187.76602814, 1187.76602814,
1673.48445735, 1673.48445735, 1673.48445735, 1673.48445735,
1673.88930321, 1673.88930321, 1673.88930321, 1673.88930321,
1676.44790452, 1676.44790452, 1676.44790452, 1676.44790452,
1678.80370938, 1678.80370938, 1678.80370938, 1678.80370938,
1681.08682083, 1681.08682083, 1681.08682083, 1681.08682083,
1682.92808089, 1682.92808089, 1682.92808089, 1682.92808089,
1684.95201261, 1684.95201261, 1684.95201261, 1684.95201261,
1687.57615561, 1687.57615561, 1687.57615561, 1687.57615561,
1690.39132258, 1690.39132258, 1690.39132258, 1690.39132258,
1693.96066674, 1693.96066674, 1693.96066674, 1693.96066674,
1698.52754203, 1698.52754203, 1698.52754203, 1698.52754203,
1703.48239845, 1703.48239845, 1703.48239845, 1703.48239845,
1702.84220627, 1702.84220627, 1702.84220627, 1702.84220627,
1700.85106284, 1700.85106284, 1700.85106284, 1700.85106284,
1684.25604605, 1684.25604605, 1684.25604605, 1684.25604605,
1605.27478628, 1605.27478628, 1605.27478628, 1605.27478628,
1228.27305079, 1228.27305079, 1228.27305079, 1228.27305079,
335.18146113, 335.18146113, 335.18146113, 335.18146113,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99934679,
5.99934679, 5.99934679, 5.99934679, 10.74428295, 10.74428295,
10.74428295, 10.74428295, 14.06074113, 14.06074113, 14.06074113,
14.06074113, 14.08825244, 14.08825244, 14.08825244, 14.08825244,
14.16060415, 14.16060415, 14.16060415, 14.16060415, 14.23700048,
14.23700048, 14.23700048, 14.23700048, 14.25988941, 14.25988941,
14.25988941, 14.25988941, 14.26414574, 14.26414574, 14.26414574,
14.26414574, 14.28645883, 14.28645883, 14.28645883, 14.28645883,
14.41128533, 14.41128533, 14.41128533, 14.41128533, 14.81477318,
14.81477318, 14.81477318, 14.81477318, 15.77868117, 15.77868117,
15.77868117, 15.77868117, 17.63924517, 17.63924517, 17.63924517,
17.63924517, 20.63133131, 20.63133131, 20.63133131, 20.63133131,
24.46822871, 24.46822871, 24.46822871, 24.46822871, 27.42698268,
27.42698268, 27.42698268, 27.42698268, 28.98413403, 28.98413403,
28.98413403, 28.98413403, 29.5817967 , 29.5817967 , 29.5817967 ,
29.5817967 , 28.69012861, 28.69012861, 28.69012861, 28.69012861,
21.68686674, 21.68686674, 21.68686674, 21.68686674, 8.19799704,
8.19799704, 8.19799704, 8.19799704, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59731538,
19.59731538, 19.59731538, 19.59731538, 12.16840072, 12.16840072,
12.16840072, 12.16840072, 8.78024108, 8.78024108, 8.78024108,
8.78024108, 8.76942457, 8.76942457, 8.76942457, 8.76942457,
8.75063752, 8.75063752, 8.75063752, 8.75063752, 8.73380138,
8.73380138, 8.73380138, 8.73380138, 8.71931988, 8.71931988,
8.71931988, 8.71931988, 8.70751446, 8.70751446, 8.70751446,
8.70751446, 8.70043512, 8.70043512, 8.70043512, 8.70043512,
8.6963955 , 8.6963955 , 8.6963955 , 8.6963955 , 8.69863881,
8.69863881, 8.69863881, 8.69863881, 8.70564688, 8.70564688,
8.70564688, 8.70564688, 8.71289181, 8.71289181, 8.71289181,
8.71289181, 8.72393276, 8.72393276, 8.72393276, 8.72393276,
8.73662685, 8.73662685, 8.73662685, 8.73662685, 8.73213167,
8.73213167, 8.73213167, 8.73213167, 8.71801496, 8.71801496,
8.71801496, 8.71801496, 8.61367472, 8.61367472, 8.61367472,
8.61367472, 8.09804238, 8.09804238, 8.09804238, 8.09804238,
5.3488366 , 5.3488366 , 5.3488366 , 5.3488366 , -3.4209141 ,
-3.4209141 , -3.4209141 , -3.4209141 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.90548673, 460.90548673, 460.90548673, 460.90548673,
1131.28216963, 1131.28216963, 1131.28216963, 1131.28216963,
1674.35990348, 1674.35990348, 1674.35990348, 1674.35990348,
1674.9052894 , 1674.9052894 , 1674.9052894 , 1674.9052894 ,
1677.56332958, 1677.56332958, 1677.56332958, 1677.56332958,
1679.80215724, 1679.80215724, 1679.80215724, 1679.80215724,
1681.87647357, 1681.87647357, 1681.87647357, 1681.87647357,
1683.2938581 , 1683.2938581 , 1683.2938581 , 1683.2938581 ,
1684.63505998, 1684.63505998, 1684.63505998, 1684.63505998,
1686.40409864, 1686.40409864, 1686.40409864, 1686.40409864,
1688.38421778, 1688.38421778, 1688.38421778, 1688.38421778,
1690.7810856 , 1690.7810856 , 1690.7810856 , 1690.7810856 ,
1695.0191866 , 1695.0191866 , 1695.0191866 , 1695.0191866 ,
1700.58403003, 1700.58403003, 1700.58403003, 1700.58403003,
1702.25724958, 1702.25724958, 1702.25724958, 1702.25724958,
1703.22609002, 1703.22609002, 1703.22609002, 1703.22609002,
1697.8039036 , 1697.8039036 , 1697.8039036 , 1697.8039036 ,
1674.27076203, 1674.27076203, 1674.27076203, 1674.27076203,
1537.78741563, 1537.78741563, 1537.78741563, 1537.78741563,
982.5775785 , 982.5775785 , 982.5775785 , 982.5775785 ,
138.82378594, 138.82378594, 138.82378594, 138.82378594,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99928774,
5.99928774, 5.99928774, 5.99928774, 10.39078099, 10.39078099,
10.39078099, 10.39078099, 14.08078884, 14.08078884, 14.08078884,
14.08078884, 14.0878413 , 14.0878413 , 14.0878413 , 14.0878413 ,
14.13721429, 14.13721429, 14.13721429, 14.13721429, 14.2174942 ,
14.2174942 , 14.2174942 , 14.2174942 , 14.26073522, 14.26073522,
14.26073522, 14.26073522, 14.26930759, 14.26930759, 14.26930759,
14.26930759, 14.28127892, 14.28127892, 14.28127892, 14.28127892,
14.3476456 , 14.3476456 , 14.3476456 , 14.3476456 , 14.59756023,
14.59756023, 14.59756023, 14.59756023, 15.25815684, 15.25815684,
15.25815684, 15.25815684, 16.64338379, 16.64338379, 16.64338379,
16.64338379, 19.03513382, 19.03513382, 19.03513382, 19.03513382,
22.51673868, 22.51673868, 22.51673868, 22.51673868, 26.15862478,
26.15862478, 26.15862478, 26.15862478, 28.33037535, 28.33037535,
28.33037535, 28.33037535, 29.51352736, 29.51352736, 29.51352736,
29.51352736, 29.65310158, 29.65310158, 29.65310158, 29.65310158,
27.58144993, 27.58144993, 27.58144993, 27.58144993, 17.26013663,
17.26013663, 17.26013663, 17.26013663, 6.44729149, 6.44729149,
6.44729149, 6.44729149, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59741748,
19.59741748, 19.59741748, 19.59741748, 12.59432549, 12.59432549,
12.59432549, 12.59432549, 8.78272684, 8.78272684, 8.78272684,
8.78272684, 8.7695597 , 8.7695597 , 8.7695597 , 8.7695597 ,
8.75004629, 8.75004629, 8.75004629, 8.75004629, 8.7330606 ,
8.7330606 , 8.7330606 , 8.7330606 , 8.71914468, 8.71914468,
8.71914468, 8.71914468, 8.70767497, 8.70767497, 8.70767497,
8.70767497, 8.69893603, 8.69893603, 8.69893603, 8.69893603,
8.69236612, 8.69236612, 8.69236612, 8.69236612, 8.69135946,
8.69135946, 8.69135946, 8.69135946, 8.6939429 , 8.6939429 ,
8.6939429 , 8.6939429 , 8.69555098, 8.69555098, 8.69555098,
8.69555098, 8.70543976, 8.70543976, 8.70543976, 8.70543976,
8.72511174, 8.72511174, 8.72511174, 8.72511174, 8.73073902,
8.73073902, 8.73073902, 8.73073902, 8.73171085, 8.73171085,
8.73171085, 8.73171085, 8.69602356, 8.69602356, 8.69602356,
8.69602356, 8.54135272, 8.54135272, 8.54135272, 8.54135272,
7.65763407, 7.65763407, 7.65763407, 7.65763407, 3.29824437,
3.29824437, 3.29824437, 3.29824437, -5.63941553, -5.63941553,
-5.63941553, -5.63941553, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89913448, 460.89913448, 460.89913448, 460.89913448,
1073.29357241, 1073.29357241, 1073.29357241, 1073.29357241,
1675.4363695 , 1675.4363695 , 1675.4363695 , 1675.4363695 ,
1676.07220414, 1676.07220414, 1676.07220414, 1676.07220414,
1678.75202029, 1678.75202029, 1678.75202029, 1678.75202029,
1680.85729776, 1680.85729776, 1680.85729776, 1680.85729776,
1682.74486588, 1682.74486588, 1682.74486588, 1682.74486588,
1683.98582995, 1683.98582995, 1683.98582995, 1683.98582995,
1684.99503989, 1684.99503989, 1684.99503989, 1684.99503989,
1686.00718632, 1686.00718632, 1686.00718632, 1686.00718632,
1687.30762953, 1687.30762953, 1687.30762953, 1687.30762953,
1688.93728425, 1688.93728425, 1688.93728425, 1688.93728425,
1692.17310128, 1692.17310128, 1692.17310128, 1692.17310128,
1696.30600482, 1696.30600482, 1696.30600482, 1696.30600482,
1699.65506547, 1699.65506547, 1699.65506547, 1699.65506547,
1702.84641388, 1702.84641388, 1702.84641388, 1702.84641388,
1701.42378925, 1701.42378925, 1701.42378925, 1701.42378925,
1696.13380537, 1696.13380537, 1696.13380537, 1696.13380537,
1651.65906992, 1651.65906992, 1651.65906992, 1651.65906992,
1431.51432175, 1431.51432175, 1431.51432175, 1431.51432175,
680.78792856, 680.78792856, 680.78792856, 680.78792856,
59.1911723 , 59.1911723 , 59.1911723 , 59.1911723 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99926134,
5.99926134, 5.99926134, 5.99926134, 10.01149603, 10.01149603,
10.01149603, 10.01149603, 14.12198239, 14.12198239, 14.12198239,
14.12198239, 14.09397493, 14.09397493, 14.09397493, 14.09397493,
14.12583022, 14.12583022, 14.12583022, 14.12583022, 14.19086237,
14.19086237, 14.19086237, 14.19086237, 14.25410719, 14.25410719,
14.25410719, 14.25410719, 14.27197374, 14.27197374, 14.27197374,
14.27197374, 14.28240806, 14.28240806, 14.28240806, 14.28240806,
14.31746027, 14.31746027, 14.31746027, 14.31746027, 14.46525854,
14.46525854, 14.46525854, 14.46525854, 14.90386223, 14.90386223,
14.90386223, 14.90386223, 15.90395761, 15.90395761, 15.90395761,
15.90395761, 17.75867 , 17.75867 , 17.75867 , 17.75867 ,
20.66876633, 20.66876633, 20.66876633, 20.66876633, 24.48136911,
24.48136911, 24.48136911, 24.48136911, 27.35753674, 27.35753674,
27.35753674, 27.35753674, 29.11294259, 29.11294259, 29.11294259,
29.11294259, 29.76350665, 29.76350665, 29.76350665, 29.76350665,
29.55660544, 29.55660544, 29.55660544, 29.55660544, 25.57934994,
25.57934994, 25.57934994, 25.57934994, 12.50993605, 12.50993605,
12.50993605, 12.50993605, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59746311,
19.59746311, 19.59746311, 19.59746311, 13.11664088, 13.11664088,
13.11664088, 13.11664088, 8.7476418 , 8.7476418 , 8.7476418 ,
8.7476418 , 8.76172138, 8.76172138, 8.76172138, 8.76172138,
8.75090622, 8.75090622, 8.75090622, 8.75090622, 8.73331556,
8.73331556, 8.73331556, 8.73331556, 8.71942064, 8.71942064,
8.71942064, 8.71942064, 8.70850652, 8.70850652, 8.70850652,
8.70850652, 8.69937096, 8.69937096, 8.69937096, 8.69937096,
8.6918181 , 8.6918181 , 8.6918181 , 8.6918181 , 8.68797472,
8.68797472, 8.68797472, 8.68797472, 8.68694529, 8.68694529,
8.68694529, 8.68694529, 8.68441506, 8.68441506, 8.68441506,
8.68441506, 8.68993672, 8.68993672, 8.68993672, 8.68993672,
8.70660633, 8.70660633, 8.70660633, 8.70660633, 8.72124868,
8.72124868, 8.72124868, 8.72124868, 8.73158052, 8.73158052,
8.73158052, 8.73158052, 8.71859206, 8.71859206, 8.71859206,
8.71859206, 8.67848867, 8.67848867, 8.67848867, 8.67848867,
8.40323401, 8.40323401, 8.40323401, 8.40323401, 6.90752715,
6.90752715, 6.90752715, 6.90752715, 0.51776593, 0.51776593,
0.51776593, 0.51776593, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89629506, 460.89629506, 460.89629506, 460.89629506,
1020.63327811, 1020.63327811, 1020.63327811, 1020.63327811,
1669.85230227, 1669.85230227, 1669.85230227, 1669.85230227,
1675.8969543 , 1675.8969543 , 1675.8969543 , 1675.8969543 ,
1680.18457824, 1680.18457824, 1680.18457824, 1680.18457824,
1682.0220882 , 1682.0220882 , 1682.0220882 , 1682.0220882 ,
1683.62770096, 1683.62770096, 1683.62770096, 1683.62770096,
1684.79442324, 1684.79442324, 1684.79442324, 1684.79442324,
1685.66338677, 1685.66338677, 1685.66338677, 1685.66338677,
1686.26360422, 1686.26360422, 1686.26360422, 1686.26360422,
1686.92243376, 1686.92243376, 1686.92243376, 1686.92243376,
1688.08320996, 1688.08320996, 1688.08320996, 1688.08320996,
1690.43113774, 1690.43113774, 1690.43113774, 1690.43113774,
1692.97314487, 1692.97314487, 1692.97314487, 1692.97314487,
1695.63062127, 1695.63062127, 1695.63062127, 1695.63062127,
1700.35370598, 1700.35370598, 1700.35370598, 1700.35370598,
1701.42617062, 1701.42617062, 1701.42617062, 1701.42617062,
1702.15521488, 1702.15521488, 1702.15521488, 1702.15521488,
1687.91525614, 1687.91525614, 1687.91525614, 1687.91525614,
1616.43289599, 1616.43289599, 1616.43289599, 1616.43289599,
1270.51340497, 1270.51340497, 1270.51340497, 1270.51340497,
386.67443541, 386.67443541, 386.67443541, 386.67443541,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924954,
5.99924954, 5.99924954, 5.99924954, 9.66826894, 9.66826894,
9.66826894, 9.66826894, 14.14354628, 14.14354628, 14.14354628,
14.14354628, 14.09739682, 14.09739682, 14.09739682, 14.09739682,
14.11011649, 14.11011649, 14.11011649, 14.11011649, 14.16398654,
14.16398654, 14.16398654, 14.16398654, 14.2398651 , 14.2398651 ,
14.2398651 , 14.2398651 , 14.27146969, 14.27146969, 14.27146969,
14.27146969, 14.28374376, 14.28374376, 14.28374376, 14.28374376,
14.30484557, 14.30484557, 14.30484557, 14.30484557, 14.39007039,
14.39007039, 14.39007039, 14.39007039, 14.6715911 , 14.6715911 ,
14.6715911 , 14.6715911 , 15.37150836, 15.37150836, 15.37150836,
15.37150836, 16.76969247, 16.76969247, 16.76969247, 16.76969247,
19.12080813, 19.12080813, 19.12080813, 19.12080813, 22.55397837,
22.55397837, 22.55397837, 22.55397837, 26.06313675, 26.06313675,
26.06313675, 26.06313675, 28.40882972, 28.40882972, 28.40882972,
28.40882972, 29.55435353, 29.55435353, 29.55435353, 29.55435353,
29.95164766, 29.95164766, 29.95164766, 29.95164766, 29.06215617,
29.06215617, 29.06215617, 29.06215617, 22.44531357, 22.44531357,
22.44531357, 22.44531357, 8.74122541, 8.74122541, 8.74122541,
8.74122541, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59748351,
19.59748351, 19.59748351, 19.59748351, 13.76566568, 13.76566568,
13.76566568, 13.76566568, 8.69088535, 8.69088535, 8.69088535,
8.69088535, 8.71862458, 8.71862458, 8.71862458, 8.71862458,
8.73345405, 8.73345405, 8.73345405, 8.73345405, 8.7321204 ,
8.7321204 , 8.7321204 , 8.7321204 , 8.72134726, 8.72134726,
8.72134726, 8.72134726, 8.709702 , 8.709702 , 8.709702 ,
8.709702 , 8.70076536, 8.70076536, 8.70076536, 8.70076536,
8.69310476, 8.69310476, 8.69310476, 8.69310476, 8.68783555,
8.68783555, 8.68783555, 8.68783555, 8.68326968, 8.68326968,
8.68326968, 8.68326968, 8.67770749, 8.67770749, 8.67770749,
8.67770749, 8.68049792, 8.68049792, 8.68049792, 8.68049792,
8.69140992, 8.69140992, 8.69140992, 8.69140992, 8.7042477 ,
8.7042477 , 8.7042477 , 8.7042477 , 8.72283297, 8.72283297,
8.72283297, 8.72283297, 8.72175327, 8.72175327, 8.72175327,
8.72175327, 8.71728265, 8.71728265, 8.71728265, 8.71728265,
8.63471975, 8.63471975, 8.63471975, 8.63471975, 8.1726214 ,
8.1726214 , 8.1726214 , 8.1726214 , 5.68476992, 5.68476992,
5.68476992, 5.68476992, -2.78464709, -2.78464709, -2.78464709,
-2.78464709, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89502587, 460.89502587, 460.89502587, 460.89502587,
977.63636544, 977.63636544, 977.63636544, 977.63636544,
1660.64047954, 1660.64047954, 1660.64047954, 1660.64047954,
1669.69997985, 1669.69997985, 1669.69997985, 1669.69997985,
1678.16688547, 1678.16688547, 1678.16688547, 1678.16688547,
1682.79062275, 1682.79062275, 1682.79062275, 1682.79062275,
1684.77106257, 1684.77106257, 1684.77106257, 1684.77106257,
1685.65774717, 1685.65774717, 1685.65774717, 1685.65774717,
1686.43346359, 1686.43346359, 1686.43346359, 1686.43346359,
1686.84774538, 1686.84774538, 1686.84774538, 1686.84774538,
1687.17743209, 1687.17743209, 1687.17743209, 1687.17743209,
1687.93813276, 1687.93813276, 1687.93813276, 1687.93813276,
1689.48124456, 1689.48124456, 1689.48124456, 1689.48124456,
1691.07878894, 1691.07878894, 1691.07878894, 1691.07878894,
1692.3943848 , 1692.3943848 , 1692.3943848 , 1692.3943848 ,
1696.07410941, 1696.07410941, 1696.07410941, 1696.07410941,
1699.33801236, 1699.33801236, 1699.33801236, 1699.33801236,
1702.98520641, 1702.98520641, 1702.98520641, 1702.98520641,
1698.23180489, 1698.23180489, 1698.23180489, 1698.23180489,
1677.28093815, 1677.28093815, 1677.28093815, 1677.28093815,
1556.19872094, 1556.19872094, 1556.19872094, 1556.19872094,
1039.76131293, 1039.76131293, 1039.76131293, 1039.76131293,
169.13872798, 169.13872798, 169.13872798, 169.13872798,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924426,
5.99924426, 5.99924426, 5.99924426, 9.35728004, 9.35728004,
9.35728004, 9.35728004, 14.16291039, 14.16291039, 14.16291039,
14.16291039, 14.10395741, 14.10395741, 14.10395741, 14.10395741,
14.09257603, 14.09257603, 14.09257603, 14.09257603, 14.12849497,
14.12849497, 14.12849497, 14.12849497, 14.20670054, 14.20670054,
14.20670054, 14.20670054, 14.26589425, 14.26589425, 14.26589425,
14.26589425, 14.28383717, 14.28383717, 14.28383717, 14.28383717,
14.30001853, 14.30001853, 14.30001853, 14.30001853, 14.34990572,
14.34990572, 14.34990572, 14.34990572, 14.52613511, 14.52613511,
14.52613511, 14.52613511, 15.00074608, 15.00074608, 15.00074608,
15.00074608, 16.02431223, 16.02431223, 16.02431223, 16.02431223,
17.86960949, 17.86960949, 17.86960949, 17.86960949, 20.74362606,
20.74362606, 20.74362606, 20.74362606, 24.40548791, 24.40548791,
24.40548791, 24.40548791, 27.40928301, 27.40928301, 27.40928301,
27.40928301, 29.06335744, 29.06335744, 29.06335744, 29.06335744,
29.9165526 , 29.9165526 , 29.9165526 , 29.9165526 , 29.98430588,
29.98430588, 29.98430588, 29.98430588, 27.98012646, 27.98012646,
27.98012646, 27.98012646, 18.17540099, 18.17540099, 18.17540099,
18.17540099, 6.69272036, 6.69272036, 6.69272036, 6.69272036,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749263,
19.59749263, 19.59749263, 19.59749263, 14.44020267, 14.44020267,
14.44020267, 14.44020267, 8.68307991, 8.68307991, 8.68307991,
8.68307991, 8.67610529, 8.67610529, 8.67610529, 8.67610529,
8.69064221, 8.69064221, 8.69064221, 8.69064221, 8.71075289,
8.71075289, 8.71075289, 8.71075289, 8.71568545, 8.71568545,
8.71568545, 8.71568545, 8.71157748, 8.71157748, 8.71157748,
8.71157748, 8.70303395, 8.70303395, 8.70303395, 8.70303395,
8.69529177, 8.69529177, 8.69529177, 8.69529177, 8.68929269,
8.68929269, 8.68929269, 8.68929269, 8.68241914, 8.68241914,
8.68241914, 8.68241914, 8.67489554, 8.67489554, 8.67489554,
8.67489554, 8.67568357, 8.67568357, 8.67568357, 8.67568357,
8.68245141, 8.68245141, 8.68245141, 8.68245141, 8.68976966,
8.68976966, 8.68976966, 8.68976966, 8.70694721, 8.70694721,
8.70694721, 8.70694721, 8.71454705, 8.71454705, 8.71454705,
8.71454705, 8.7247428 , 8.7247428 , 8.7247428 , 8.7247428 ,
8.7020353 , 8.7020353 , 8.7020353 , 8.7020353 , 8.56502968,
8.56502968, 8.56502968, 8.56502968, 7.77996246, 7.77996246,
7.77996246, 7.77996246, 3.7935205 , 3.7935205 , 3.7935205 ,
3.7935205 , -5.32354542, -5.32354542, -5.32354542, -5.32354542,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89445855, 460.89445855, 460.89445855, 460.89445855,
933.18597423, 933.18597423, 933.18597423, 933.18597423,
1660.42668543, 1660.42668543, 1660.42668543, 1660.42668543,
1663.32563193, 1663.32563193, 1663.32563193, 1663.32563193,
1671.66824541, 1671.66824541, 1671.66824541, 1671.66824541,
1679.89539446, 1679.89539446, 1679.89539446, 1679.89539446,
1684.41359508, 1684.41359508, 1684.41359508, 1684.41359508,
1686.60247269, 1686.60247269, 1686.60247269, 1686.60247269,
1687.3086245 , 1687.3086245 , 1687.3086245 , 1687.3086245 ,
1687.55852867, 1687.55852867, 1687.55852867, 1687.55852867,
1687.79354963, 1687.79354963, 1687.79354963, 1687.79354963,
1688.38417159, 1688.38417159, 1688.38417159, 1688.38417159,
1689.21739813, 1689.21739813, 1689.21739813, 1689.21739813,
1690.08745483, 1690.08745483, 1690.08745483, 1690.08745483,
1690.47095516, 1690.47095516, 1690.47095516, 1690.47095516,
1692.60016332, 1692.60016332, 1692.60016332, 1692.60016332,
1695.64625151, 1695.64625151, 1695.64625151, 1695.64625151,
1701.02926834, 1701.02926834, 1701.02926834, 1701.02926834,
1700.19286408, 1700.19286408, 1700.19286408, 1700.19286408,
1695.24499175, 1695.24499175, 1695.24499175, 1695.24499175,
1657.82666898, 1657.82666898, 1657.82666898, 1657.82666898,
1458.91114694, 1458.91114694, 1458.91114694, 1458.91114694,
745.64720626, 745.64720626, 745.64720626, 745.64720626,
68.08707772, 68.08707772, 68.08707772, 68.08707772,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924191,
5.99924191, 5.99924191, 5.99924191, 8.91010155, 8.91010155,
8.91010155, 8.91010155, 14.26626517, 14.26626517, 14.26626517,
14.26626517, 14.17721536, 14.17721536, 14.17721536, 14.17721536,
14.10140812, 14.10140812, 14.10140812, 14.10140812, 14.09717055,
14.09717055, 14.09717055, 14.09717055, 14.15221798, 14.15221798,
14.15221798, 14.15221798, 14.23981658, 14.23981658, 14.23981658,
14.23981658, 14.27811207, 14.27811207, 14.27811207, 14.27811207,
14.29795704, 14.29795704, 14.29795704, 14.29795704, 14.32981899,
14.32981899, 14.32981899, 14.32981899, 14.43868552, 14.43868552,
14.43868552, 14.43868552, 14.75128835, 14.75128835, 14.75128835,
14.75128835, 15.4791328 , 15.4791328 , 15.4791328 , 15.4791328 ,
16.88725445, 16.88725445, 16.88725445, 16.88725445, 19.22712749,
19.22712749, 19.22712749, 19.22712749, 22.52991222, 22.52991222,
22.52991222, 22.52991222, 26.10771279, 26.10771279, 26.10771279,
26.10771279, 28.31774838, 28.31774838, 28.31774838, 28.31774838,
29.61540996, 29.61540996, 29.61540996, 29.61540996, 30.10739131,
30.10739131, 30.10739131, 30.10739131, 29.83141011, 29.83141011,
29.83141011, 29.83141011, 26.0883515 , 26.0883515 , 26.0883515 ,
26.0883515 , 13.46458057, 13.46458057, 13.46458057, 13.46458057,
6.00283479, 6.00283479, 6.00283479, 6.00283479, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749671,
19.59749671, 19.59749671, 19.59749671, 15.04816172, 15.04816172,
15.04816172, 15.04816172, 8.7701521 , 8.7701521 , 8.7701521 ,
8.7701521 , 8.70248982, 8.70248982, 8.70248982, 8.70248982,
8.66631628, 8.66631628, 8.66631628, 8.66631628, 8.6681861 ,
8.6681861 , 8.6681861 , 8.6681861 , 8.69045951, 8.69045951,
8.69045951, 8.69045951, 8.70219543, 8.70219543, 8.70219543,
8.70219543, 8.70303138, 8.70303138, 8.70303138, 8.70303138,
8.6983274 , 8.6983274 , 8.6983274 , 8.6983274 , 8.69148957,
8.69148957, 8.69148957, 8.69148957, 8.68319102, 8.68319102,
8.68319102, 8.68319102, 8.67523211, 8.67523211, 8.67523211,
8.67523211, 8.67446784, 8.67446784, 8.67446784, 8.67446784,
8.67812393, 8.67812393, 8.67812393, 8.67812393, 8.68119307,
8.68119307, 8.68119307, 8.68119307, 8.69199202, 8.69199202,
8.69199202, 8.69199202, 8.70119277, 8.70119277, 8.70119277,
8.70119277, 8.71979547, 8.71979547, 8.71979547, 8.71979547,
8.71680504, 8.71680504, 8.71680504, 8.71680504, 8.68181304,
8.68181304, 8.68181304, 8.68181304, 8.44316553, 8.44316553,
8.44316553, 8.44316553, 7.11113592, 7.11113592, 7.11113592,
7.11113592, 1.15816769, 1.15816769, 1.15816769, 1.15816769,
-6.18526944, -6.18526944, -6.18526944, -6.18526944, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89420497, 460.89420497, 460.89420497, 460.89420497,
866.68575165, 866.68575165, 866.68575165, 866.68575165,
1677.80431545, 1677.80431545, 1677.80431545, 1677.80431545,
1669.27099826, 1669.27099826, 1669.27099826, 1669.27099826,
1668.33038019, 1668.33038019, 1668.33038019, 1668.33038019,
1673.11657162, 1673.11657162, 1673.11657162, 1673.11657162,
1680.58894839, 1680.58894839, 1680.58894839, 1680.58894839,
1685.43245866, 1685.43245866, 1685.43245866, 1685.43245866,
1687.67463941, 1687.67463941, 1687.67463941, 1687.67463941,
1688.43144069, 1688.43144069, 1688.43144069, 1688.43144069,
1688.59202001, 1688.59202001, 1688.59202001, 1688.59202001,
1689.13976246, 1689.13976246, 1689.13976246, 1689.13976246,
1689.47201636, 1689.47201636, 1689.47201636, 1689.47201636,
1689.75793919, 1689.75793919, 1689.75793919, 1689.75793919,
1689.54059646, 1689.54059646, 1689.54059646, 1689.54059646,
1690.6375146 , 1690.6375146 , 1690.6375146 , 1690.6375146 ,
1692.31798241, 1692.31798241, 1692.31798241, 1692.31798241,
1697.44345312, 1697.44345312, 1697.44345312, 1697.44345312,
1698.88800322, 1698.88800322, 1698.88800322, 1698.88800322,
1699.19910236, 1699.19910236, 1699.19910236, 1699.19910236,
1688.88906962, 1688.88906962, 1688.88906962, 1688.88906962,
1625.54418239, 1625.54418239, 1625.54418239, 1625.54418239,
1310.40246856, 1310.40246856, 1310.40246856, 1310.40246856,
445.12057808, 445.12057808, 445.12057808, 445.12057808,
46.31207091, 46.31207091, 46.31207091, 46.31207091,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924085,
5.99924085, 5.99924085, 5.99924085, 8.41963211, 8.41963211,
8.41963211, 8.41963211, 14.32067919, 14.32067919, 14.32067919,
14.32067919, 14.27805193, 14.27805193, 14.27805193, 14.27805193,
14.17042384, 14.17042384, 14.17042384, 14.17042384, 14.10927185,
14.10927185, 14.10927185, 14.10927185, 14.11632094, 14.11632094,
14.11632094, 14.11632094, 14.18029111, 14.18029111, 14.18029111,
14.18029111, 14.25486229, 14.25486229, 14.25486229, 14.25486229,
14.28741679, 14.28741679, 14.28741679, 14.28741679, 14.31927422,
14.31927422, 14.31927422, 14.31927422, 14.38898131, 14.38898131,
14.38898131, 14.38898131, 14.58934533, 14.58934533, 14.58934533,
14.58934533, 15.09190069, 15.09190069, 15.09190069, 15.09190069,
16.13771089, 16.13771089, 16.13771089, 16.13771089, 17.99138552,
17.99138552, 17.99138552, 17.99138552, 20.79661541, 20.79661541,
20.79661541, 20.79661541, 24.45432855, 24.45432855, 24.45432855,
24.45432855, 27.30539236, 27.30539236, 27.30539236, 27.30539236,
29.07403061, 29.07403061, 29.07403061, 29.07403061, 29.96466621,
29.96466621, 29.96466621, 29.96466621, 30.21014242, 30.21014242,
30.21014242, 30.21014242, 29.33077419, 29.33077419, 29.33077419,
29.33077419, 23.1665558 , 23.1665558 , 23.1665558 , 23.1665558 ,
9.40413373, 9.40413373, 9.40413373, 9.40413373, 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749853,
19.59749853, 19.59749853, 19.59749853, 15.69123852, 15.69123852,
15.69123852, 15.69123852, 8.81172522, 8.81172522, 8.81172522,
8.81172522, 8.76473273, 8.76473273, 8.76473273, 8.76473273,
8.69598215, 8.69598215, 8.69598215, 8.69598215, 8.66163298,
8.66163298, 8.66163298, 8.66163298, 8.65659671, 8.65659671,
8.65659671, 8.65659671, 8.67284391, 8.67284391, 8.67284391,
8.67284391, 8.69087936, 8.69087936, 8.69087936, 8.69087936,
8.69553597, 8.69553597, 8.69553597, 8.69553597, 8.69293291,
8.69293291, 8.69293291, 8.69293291, 8.68585684, 8.68585684,
8.68585684, 8.68585684, 8.67775947, 8.67775947, 8.67775947,
8.67775947, 8.67539766, 8.67539766, 8.67539766, 8.67539766,
8.67700313, 8.67700313, 8.67700313, 8.67700313, 8.67727649,
8.67727649, 8.67727649, 8.67727649, 8.68275622, 8.68275622,
8.68275622, 8.68275622, 8.68768458, 8.68768458, 8.68768458,
8.68768458, 8.70787439, 8.70787439, 8.70787439, 8.70787439,
8.71508163, 8.71508163, 8.71508163, 8.71508163, 8.71081194,
8.71081194, 8.71081194, 8.71081194, 8.64451366, 8.64451366,
8.64451366, 8.64451366, 8.23766224, 8.23766224, 8.23766224,
8.23766224, 6.00485414, 6.00485414, 6.00485414, 6.00485414,
-2.07997892, -2.07997892, -2.07997892, -2.07997892, -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89409162, 460.89409162, 460.89409162, 460.89409162,
793.36263021, 793.36263021, 793.36263021, 793.36263021,
1686.43990471, 1686.43990471, 1686.43990471, 1686.43990471,
1682.15207572, 1682.15207572, 1682.15207572, 1682.15207572,
1674.7933506 , 1674.7933506 , 1674.7933506 , 1674.7933506 ,
1672.61097758, 1672.61097758, 1672.61097758, 1672.61097758,
1675.16126234, 1675.16126234, 1675.16126234, 1675.16126234,
1680.61556691, 1680.61556691, 1680.61556691, 1680.61556691,
1685.85859429, 1685.85859429, 1685.85859429, 1685.85859429,
1688.19601121, 1688.19601121, 1688.19601121, 1688.19601121,
1689.32894658, 1689.32894658, 1689.32894658, 1689.32894658,
1690.14987454, 1690.14987454, 1690.14987454, 1690.14987454,
1690.06145822, 1690.06145822, 1690.06145822, 1690.06145822,
1689.78496303, 1689.78496303, 1689.78496303, 1689.78496303,
1689.32314367, 1689.32314367, 1689.32314367, 1689.32314367,
1689.78670108, 1689.78670108, 1689.78670108, 1689.78670108,
1690.37884588, 1690.37884588, 1690.37884588, 1690.37884588,
1693.90794861, 1693.90794861, 1693.90794861, 1693.90794861,
1695.8182888 , 1695.8182888 , 1695.8182888 , 1695.8182888 ,
1698.7344182 , 1698.7344182 , 1698.7344182 , 1698.7344182 ,
1696.6502919 , 1696.6502919 , 1696.6502919 , 1696.6502919 ,
1678.73322594, 1678.73322594, 1678.73322594, 1678.73322594,
1571.30068303, 1571.30068303, 1571.30068303, 1571.30068303,
1095.87520815, 1095.87520815, 1095.87520815, 1095.87520815,
206.6425445 , 206.6425445 , 206.6425445 , 206.6425445 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924038,
5.99924038, 5.99924038, 5.99924038, 7.91003434, 7.91003434,
7.91003434, 7.91003434, 14.34738841, 14.34738841, 14.34738841,
14.34738841, 14.3316937 , 14.3316937 , 14.3316937 , 14.3316937 ,
14.2729339 , 14.2729339 , 14.2729339 , 14.2729339 , 14.1680748 ,
14.1680748 , 14.1680748 , 14.1680748 , 14.1263544 , 14.1263544 ,
14.1263544 , 14.1263544 , 14.14345566, 14.14345566, 14.14345566,
14.14345566, 14.20258109, 14.20258109, 14.20258109, 14.20258109,
14.26182758, 14.26182758, 14.26182758, 14.26182758, 14.30299917,
14.30299917, 14.30299917, 14.30299917, 14.35723166, 14.35723166,
14.35723166, 14.35723166, 14.4884073 , 14.4884073 , 14.4884073 ,
14.4884073 , 14.82597909, 14.82597909, 14.82597909, 14.82597909,
15.5815915 , 15.5815915 , 15.5815915 , 15.5815915 , 17.01102296,
17.01102296, 17.01102296, 17.01102296, 19.32252828, 19.32252828,
19.32252828, 19.32252828, 22.61974042, 22.61974042, 22.61974042,
22.61974042, 26.01729543, 26.01729543, 26.01729543, 26.01729543,
28.30360654, 28.30360654, 28.30360654, 28.30360654, 29.59819706,
29.59819706, 29.59819706, 29.59819706, 30.19748238, 30.19748238,
30.19748238, 30.19748238, 30.19846012, 30.19846012, 30.19846012,
30.19846012, 28.29821234, 28.29821234, 28.29821234, 28.29821234,
19.13418208, 19.13418208, 19.13418208, 19.13418208, 6.99659014,
6.99659014, 6.99659014, 6.99659014, 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749934,
19.59749934, 19.59749934, 19.59749934, 16.40941664, 16.40941664,
16.40941664, 16.40941664, 8.82485533, 8.82485533, 8.82485533,
8.82485533, 8.79573239, 8.79573239, 8.79573239, 8.79573239,
8.75227497, 8.75227497, 8.75227497, 8.75227497, 8.69333804,
8.69333804, 8.69333804, 8.69333804, 8.65873307, 8.65873307,
8.65873307, 8.65873307, 8.65069359, 8.65069359, 8.65069359,
8.65069359, 8.66077701, 8.66077701, 8.66077701, 8.66077701,
8.68028982, 8.68028982, 8.68028982, 8.68028982, 8.6866413 ,
8.6866413 , 8.6866413 , 8.6866413 , 8.6861228 , 8.6861228 ,
8.6861228 , 8.6861228 , 8.6814526 , 8.6814526 , 8.6814526 ,
8.6814526 , 8.67888773, 8.67888773, 8.67888773, 8.67888773,
8.67775411, 8.67775411, 8.67775411, 8.67775411, 8.6764208 ,
8.6764208 , 8.6764208 , 8.6764208 , 8.67872569, 8.67872569,
8.67872569, 8.67872569, 8.67909904, 8.67909904, 8.67909904,
8.67909904, 8.69435722, 8.69435722, 8.69435722, 8.69435722,
8.70621475, 8.70621475, 8.70621475, 8.70621475, 8.71308756,
8.71308756, 8.71308756, 8.71308756, 8.69901201, 8.69901201,
8.69901201, 8.69901201, 8.58258793, 8.58258793, 8.58258793,
8.58258793, 7.88962994, 7.88962994, 7.88962994, 7.88962994,
4.2672388 , 4.2672388 , 4.2672388 , 4.2672388 , -4.92722735,
-4.92722735, -4.92722735, -4.92722735, -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89404095, 460.89404095, 460.89404095, 460.89404095,
717.96564395, 717.96564395, 717.96564395, 717.96564395,
1688.71209354, 1688.71209354, 1688.71209354, 1688.71209354,
1689.07064819, 1689.07064819, 1689.07064819, 1689.07064819,
1686.21538307, 1686.21538307, 1686.21538307, 1686.21538307,
1679.32245135, 1679.32245135, 1679.32245135, 1679.32245135,
1676.00126704, 1676.00126704, 1676.00126704, 1676.00126704,
1677.10005677, 1677.10005677, 1677.10005677, 1677.10005677,
1680.69637722, 1680.69637722, 1680.69637722, 1680.69637722,
1685.80087348, 1685.80087348, 1685.80087348, 1685.80087348,
1688.70920636, 1688.70920636, 1688.70920636, 1688.70920636,
1690.54735925, 1690.54735925, 1690.54735925, 1690.54735925,
1690.85510267, 1690.85510267, 1690.85510267, 1690.85510267,
1690.25181985, 1690.25181985, 1690.25181985, 1690.25181985,
1689.51821895, 1689.51821895, 1689.51821895, 1689.51821895,
1689.57783456, 1689.57783456, 1689.57783456, 1689.57783456,
1689.65603804, 1689.65603804, 1689.65603804, 1689.65603804,
1691.7166648 , 1691.7166648 , 1691.7166648 , 1691.7166648 ,
1692.37997272, 1692.37997272, 1692.37997272, 1692.37997272,
1696.3701987 , 1696.3701987 , 1696.3701987 , 1696.3701987 ,
1697.25391001, 1697.25391001, 1697.25391001, 1697.25391001,
1693.31920613, 1693.31920613, 1693.31920613, 1693.31920613,
1661.12117656, 1661.12117656, 1661.12117656, 1661.12117656,
1483.02354923, 1483.02354923, 1483.02354923, 1483.02354923,
813.24144598, 813.24144598, 813.24144598, 813.24144598,
80.51859504, 80.51859504, 80.51859504, 80.51859504,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924017,
5.99924017, 5.99924017, 5.99924017, 7.37649405, 7.37649405,
7.37649405, 7.37649405, 14.37562881, 14.37562881, 14.37562881,
14.37562881, 14.36338351, 14.36338351, 14.36338351, 14.36338351,
14.33192819, 14.33192819, 14.33192819, 14.33192819, 14.25919308,
14.25919308, 14.25919308, 14.25919308, 14.17470022, 14.17470022,
14.17470022, 14.17470022, 14.15010967, 14.15010967, 14.15010967,
14.15010967, 14.17053714, 14.17053714, 14.17053714, 14.17053714,
14.21908177, 14.21908177, 14.21908177, 14.21908177, 14.27226922,
14.27226922, 14.27226922, 14.27226922, 14.32794724, 14.32794724,
14.32794724, 14.32794724, 14.42101915, 14.42101915, 14.42101915,
14.42101915, 14.64801748, 14.64801748, 14.64801748, 14.64801748,
15.18142497, 15.18142497, 15.18142497, 15.18142497, 16.25430901,
16.25430901, 16.25430901, 16.25430901, 18.10584037, 18.10584037,
18.10584037, 18.10584037, 20.9014521 , 20.9014521 , 20.9014521 ,
20.9014521 , 24.42096823, 24.42096823, 24.42096823, 24.42096823,
27.2930598 , 27.2930598 , 27.2930598 , 27.2930598 , 29.03043122,
29.03043122, 29.03043122, 29.03043122, 29.98245032, 29.98245032,
29.98245032, 29.98245032, 30.32051206, 30.32051206, 30.32051206,
30.32051206, 30.0073725 , 30.0073725 , 30.0073725 , 30.0073725 ,
26.56613444, 26.56613444, 26.56613444, 26.56613444, 14.47373671,
14.47373671, 14.47373671, 14.47373671, 6.04555189, 6.04555189,
6.04555189, 6.04555189, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749971,
19.59749971, 19.59749971, 19.59749971, 17.23455179, 17.23455179,
17.23455179, 17.23455179, 8.83283516, 8.83283516, 8.83283516,
8.83283516, 8.8066986 , 8.8066986 , 8.8066986 , 8.8066986 ,
8.77893982, 8.77893982, 8.77893982, 8.77893982, 8.74393893,
8.74393893, 8.74393893, 8.74393893, 8.69303006, 8.69303006,
8.69303006, 8.69303006, 8.65793403, 8.65793403, 8.65793403,
8.65793403, 8.64844462, 8.64844462, 8.64844462, 8.64844462,
8.65286137, 8.65286137, 8.65286137, 8.65286137, 8.66758632,
8.66758632, 8.66758632, 8.66758632, 8.67826838, 8.67826838,
8.67826838, 8.67826838, 8.6813123 , 8.6813123 , 8.6813123 ,
8.6813123 , 8.68212227, 8.68212227, 8.68212227, 8.68212227,
8.68063646, 8.68063646, 8.68063646, 8.68063646, 8.67755171,
8.67755171, 8.67755171, 8.67755171, 8.67747348, 8.67747348,
8.67747348, 8.67747348, 8.67572487, 8.67572487, 8.67572487,
8.67572487, 8.68568246, 8.68568246, 8.68568246, 8.68568246,
8.69305859, 8.69305859, 8.69305859, 8.69305859, 8.7076952 ,
8.7076952 , 8.7076952 , 8.7076952 , 8.70857632, 8.70857632,
8.70857632, 8.70857632, 8.68124002, 8.68124002, 8.68124002,
8.68124002, 8.47594433, 8.47594433, 8.47594433, 8.47594433,
7.28729035, 7.28729035, 7.28729035, 7.28729035, 1.78738917,
1.78738917, 1.78738917, 1.78738917, -6.13549158, -6.13549158,
-6.13549158, -6.13549158, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89401831, 460.89401831, 460.89401831, 460.89401831,
640.32907573, 640.32907573, 640.32907573, 640.32907573,
1688.97283917, 1688.97283917, 1688.97283917, 1688.97283917,
1692.25449937, 1692.25449937, 1692.25449937, 1692.25449937,
1692.17941475, 1692.17941475, 1692.17941475, 1692.17941475,
1689.40271881, 1689.40271881, 1689.40271881, 1689.40271881,
1682.99070598, 1682.99070598, 1682.99070598, 1682.99070598,
1678.7420523 , 1678.7420523 , 1678.7420523 , 1678.7420523 ,
1678.78423243, 1678.78423243, 1678.78423243, 1678.78423243,
1681.18667403, 1681.18667403, 1681.18667403, 1681.18667403,
1685.75284892, 1685.75284892, 1685.75284892, 1685.75284892,
1689.4021576 , 1689.4021576 , 1689.4021576 , 1689.4021576 ,
1690.83803066, 1690.83803066, 1690.83803066, 1690.83803066,
1690.71746463, 1690.71746463, 1690.71746463, 1690.71746463,
1690.14739212, 1690.14739212, 1690.14739212, 1690.14739212,
1689.75355011, 1689.75355011, 1689.75355011, 1689.75355011,
1689.60668819, 1689.60668819, 1689.60668819, 1689.60668819,
1690.78190264, 1690.78190264, 1690.78190264, 1690.78190264,
1690.18310948, 1690.18310948, 1690.18310948, 1690.18310948,
1692.92688656, 1692.92688656, 1692.92688656, 1692.92688656,
1695.814461 , 1695.814461 , 1695.814461 , 1695.814461 ,
1695.87960857, 1695.87960857, 1695.87960857, 1695.87960857,
1687.43569733, 1687.43569733, 1687.43569733, 1687.43569733,
1631.68447877, 1631.68447877, 1631.68447877, 1631.68447877,
1348.20337487, 1348.20337487, 1348.20337487, 1348.20337487,
508.05741301, 508.05741301, 508.05741301, 508.05741301,
47.34758171, 47.34758171, 47.34758171, 47.34758171,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924008,
5.99924008, 5.99924008, 5.99924008, 6.8239293 , 6.8239293 ,
6.8239293 , 6.8239293 , 14.40274093, 14.40274093, 14.40274093,
14.40274093, 14.3932066 , 14.3932066 , 14.3932066 , 14.3932066 ,
14.36759642, 14.36759642, 14.36759642, 14.36759642, 14.32050287,
14.32050287, 14.32050287, 14.32050287, 14.2461405 , 14.2461405 ,
14.2461405 , 14.2461405 , 14.19058987, 14.19058987, 14.19058987,
14.19058987, 14.17646248, 14.17646248, 14.17646248, 14.17646248,
14.19509807, 14.19509807, 14.19509807, 14.19509807, 14.23721094,
14.23721094, 14.23721094, 14.23721094, 14.28812531, 14.28812531,
14.28812531, 14.28812531, 14.36660987, 14.36660987, 14.36660987,
14.36660987, 14.52667974, 14.52667974, 14.52667974, 14.52667974,
14.89833561, 14.89833561, 14.89833561, 14.89833561, 15.68674478,
15.68674478, 15.68674478, 15.68674478, 17.1304627 , 17.1304627 ,
17.1304627 , 17.1304627 , 19.43884554, 19.43884554, 19.43884554,
19.43884554, 22.63759009, 22.63759009, 22.63759009, 22.63759009,
26.033954 , 26.033954 , 26.033954 , 26.033954 , 28.25091774,
28.25091774, 28.25091774, 28.25091774, 29.58183321, 29.58183321,
29.58183321, 29.58183321, 30.2262222 , 30.2262222 , 30.2262222 ,
30.2262222 , 30.36632078, 30.36632078, 30.36632078, 30.36632078,
29.54572325, 29.54572325, 29.54572325, 29.54572325, 23.86518351,
23.86518351, 23.86518351, 23.86518351, 10.13978954, 10.13978954,
10.13978954, 10.13978954, 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749987,
19.59749987, 19.59749987, 19.59749987, 18.17769491, 18.17769491,
18.17769491, 18.17769491, 8.84955886, 8.84955886, 8.84955886,
8.84955886, 8.8105969 , 8.8105969 , 8.8105969 , 8.8105969 ,
8.79050179, 8.79050179, 8.79050179, 8.79050179, 8.76811031,
8.76811031, 8.76811031, 8.76811031, 8.73833779, 8.73833779,
8.73833779, 8.73833779, 8.69433495, 8.69433495, 8.69433495,
8.69433495, 8.6589408 , 8.6589408 , 8.6589408 , 8.6589408 ,
8.6468022 , 8.6468022 , 8.6468022 , 8.6468022 , 8.64574578,
8.64574578, 8.64574578, 8.64574578, 8.65697301, 8.65697301,
8.65697301, 8.65697301, 8.67297466, 8.67297466, 8.67297466,
8.67297466, 8.68055394, 8.68055394, 8.68055394, 8.68055394,
8.68217584, 8.68217584, 8.68217584, 8.68217584, 8.68050877,
8.68050877, 8.68050877, 8.68050877, 8.67805459, 8.67805459,
8.67805459, 8.67805459, 8.67504229, 8.67504229, 8.67504229,
8.67504229, 8.68217954, 8.68217954, 8.68217954, 8.68217954,
8.68445857, 8.68445857, 8.68445857, 8.68445857, 8.69633107,
8.69633107, 8.69633107, 8.69633107, 8.70611691, 8.70611691,
8.70611691, 8.70611691, 8.70394195, 8.70394195, 8.70394195,
8.70394195, 8.65001892, 8.65001892, 8.65001892, 8.65001892,
8.28551311, 8.28551311, 8.28551311, 8.28551311, 6.29162128,
6.29162128, 6.29162128, 6.29162128, -1.35153772, -1.35153772,
-1.35153772, -1.35153772, -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400818, 460.89400818, 460.89400818, 460.89400818,
561.91173373, 561.91173373, 561.91173373, 561.91173373,
1686.98261782, 1686.98261782, 1686.98261782, 1686.98261782,
1694.14142956, 1694.14142956, 1694.14142956, 1694.14142956,
1695.23081499, 1695.23081499, 1695.23081499, 1695.23081499,
1694.61345363, 1694.61345363, 1694.61345363, 1694.61345363,
1691.89465258, 1691.89465258, 1691.89465258, 1691.89465258,
1685.89527761, 1685.89527761, 1685.89527761, 1685.89527761,
1681.04668541, 1681.04668541, 1681.04668541, 1681.04668541,
1680.43546913, 1680.43546913, 1680.43546913, 1680.43546913,
1682.24858591, 1682.24858591, 1682.24858591, 1682.24858591,
1685.76509806, 1685.76509806, 1685.76509806, 1685.76509806,
1689.22071843, 1689.22071843, 1689.22071843, 1689.22071843,
1690.37791746, 1690.37791746, 1690.37791746, 1690.37791746,
1690.46076304, 1690.46076304, 1690.46076304, 1690.46076304,
1690.30669745, 1690.30669745, 1690.30669745, 1690.30669745,
1689.95002867, 1689.95002867, 1689.95002867, 1689.95002867,
1690.38732396, 1690.38732396, 1690.38732396, 1690.38732396,
1689.31280473, 1689.31280473, 1689.31280473, 1689.31280473,
1690.73856944, 1690.73856944, 1690.73856944, 1690.73856944,
1692.81693624, 1692.81693624, 1692.81693624, 1692.81693624,
1695.21481449, 1695.21481449, 1695.21481449, 1695.21481449,
1693.51935784, 1693.51935784, 1693.51935784, 1693.51935784,
1677.81359698, 1677.81359698, 1677.81359698, 1677.81359698,
1584.72629656, 1584.72629656, 1584.72629656, 1584.72629656,
1149.1337881 , 1149.1337881 , 1149.1337881 , 1149.1337881 ,
250.14536714, 250.14536714, 250.14536714, 250.14536714,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924003,
5.99924003, 5.99924003, 5.99924003, 6.42236937, 6.42236937,
6.42236937, 6.42236937, 14.27010826, 14.27010826, 14.27010826,
14.27010826, 14.4126468 , 14.4126468 , 14.4126468 , 14.4126468 ,
14.39597654, 14.39597654, 14.39597654, 14.39597654, 14.36168051,
14.36168051, 14.36168051, 14.36168051, 14.30366886, 14.30366886,
14.30366886, 14.30366886, 14.24235343, 14.24235343, 14.24235343,
14.24235343, 14.21217733, 14.21217733, 14.21217733, 14.21217733,
14.20366908, 14.20366908, 14.20366908, 14.20366908, 14.21910348,
14.21910348, 14.21910348, 14.21910348, 14.25682454, 14.25682454,
14.25682454, 14.25682454, 14.31287435, 14.31287435, 14.31287435,
14.31287435, 14.43267012, 14.43267012, 14.43267012, 14.43267012,
14.69868846, 14.69868846, 14.69868846, 14.69868846, 15.2685669 ,
15.2685669 , 15.2685669 , 15.2685669 , 16.36890068, 16.36890068,
16.36890068, 16.36890068, 18.22751099, 18.22751099, 18.22751099,
18.22751099, 20.96900914, 20.96900914, 20.96900914, 20.96900914,
24.46575553, 24.46575553, 24.46575553, 24.46575553, 27.25217639,
27.25217639, 27.25217639, 27.25217639, 28.99882734, 28.99882734,
28.99882734, 28.99882734, 29.96353182, 29.96353182, 29.96353182,
29.96353182, 30.37169742, 30.37169742, 30.37169742, 30.37169742,
30.35145464, 30.35145464, 30.35145464, 30.35145464, 28.58089868,
28.58089868, 28.58089868, 28.58089868, 20.0510233 , 20.0510233 ,
20.0510233 , 20.0510233 , 7.37833451, 7.37833451, 7.37833451,
7.37833451, 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749994,
19.59749994, 19.59749994, 19.59749994, 18.86697027, 18.86697027,
18.86697027, 18.86697027, 8.94442174, 8.94442174, 8.94442174,
8.94442174, 8.80588337, 8.80588337, 8.80588337, 8.80588337,
8.79530798, 8.79530798, 8.79530798, 8.79530798, 8.77969636,
8.77969636, 8.77969636, 8.77969636, 8.76091086, 8.76091086,
8.76091086, 8.76091086, 8.73545381, 8.73545381, 8.73545381,
8.73545381, 8.69648824, 8.69648824, 8.69648824, 8.69648824,
8.65982364, 8.65982364, 8.65982364, 8.65982364, 8.64404307,
8.64404307, 8.64404307, 8.64404307, 8.64167024, 8.64167024,
8.64167024, 8.64167024, 8.65208368, 8.65208368, 8.65208368,
8.65208368, 8.67004128, 8.67004128, 8.67004128, 8.67004128,
8.67930451, 8.67930451, 8.67930451, 8.67930451, 8.68093874,
8.68093874, 8.68093874, 8.68093874, 8.67969659, 8.67969659,
8.67969659, 8.67969659, 8.67661374, 8.67661374, 8.67661374,
8.67661374, 8.68148369, 8.68148369, 8.68148369, 8.68148369,
8.68079809, 8.68079809, 8.68079809, 8.68079809, 8.68712559,
8.68712559, 8.68712559, 8.68712559, 8.6978669 , 8.6978669 ,
8.6978669 , 8.6978669 , 8.70516092, 8.70516092, 8.70516092,
8.70516092, 8.69567966, 8.69567966, 8.69567966, 8.69567966,
8.58804587, 8.58804587, 8.58804587, 8.58804587, 7.97762984,
7.97762984, 7.97762984, 7.97762984, 4.70992139, 4.70992139,
4.70992139, 4.70992139, -4.43122609, -4.43122609, -4.43122609,
-4.43122609, -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400366, 460.89400366, 460.89400366, 460.89400366,
509.90329157, 509.90329157, 509.90329157, 509.90329157,
1663.63547926, 1663.63547926, 1663.63547926, 1663.63547926,
1694.47462545, 1694.47462545, 1694.47462545, 1694.47462545,
1696.88211107, 1696.88211107, 1696.88211107, 1696.88211107,
1697.4475742 , 1697.4475742 , 1697.4475742 , 1697.4475742 ,
1696.59973906, 1696.59973906, 1696.59973906, 1696.59973906,
1693.8549966 , 1693.8549966 , 1693.8549966 , 1693.8549966 ,
1688.33995701, 1688.33995701, 1688.33995701, 1688.33995701,
1683.3210705 , 1683.3210705 , 1683.3210705 , 1683.3210705 ,
1682.21112957, 1682.21112957, 1682.21112957, 1682.21112957,
1683.21609253, 1683.21609253, 1683.21609253, 1683.21609253,
1685.32211388, 1685.32211388, 1685.32211388, 1685.32211388,
1688.36110403, 1688.36110403, 1688.36110403, 1688.36110403,
1689.95318059, 1689.95318059, 1689.95318059, 1689.95318059,
1690.40115385, 1690.40115385, 1690.40115385, 1690.40115385,
1690.46507549, 1690.46507549, 1690.46507549, 1690.46507549,
1690.41821033, 1690.41821033, 1690.41821033, 1690.41821033,
1689.1741802 , 1689.1741802 , 1689.1741802 , 1689.1741802 ,
1689.83735913, 1689.83735913, 1689.83735913, 1689.83735913,
1690.41986428, 1690.41986428, 1690.41986428, 1690.41986428,
1693.00179797, 1693.00179797, 1693.00179797, 1693.00179797,
1693.83768418, 1693.83768418, 1693.83768418, 1693.83768418,
1690.0603828 , 1690.0603828 , 1690.0603828 , 1690.0603828 ,
1663.86839515, 1663.86839515, 1663.86839515, 1663.86839515,
1504.50895424, 1504.50895424, 1504.50895424, 1504.50895424,
879.19259319, 879.19259319, 879.19259319, 879.19259319,
97.9252393 , 97.9252393 , 97.9252393 , 97.9252393 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924002,
5.99924002, 5.99924002, 5.99924002, 6.20229089, 6.20229089,
6.20229089, 6.20229089, 13.98207114, 13.98207114, 13.98207114,
13.98207114, 14.40679582, 14.40679582, 14.40679582, 14.40679582,
14.4068119 , 14.4068119 , 14.4068119 , 14.4068119 , 14.38943713,
14.38943713, 14.38943713, 14.38943713, 14.34820465, 14.34820465,
14.34820465, 14.34820465, 14.28633915, 14.28633915, 14.28633915,
14.28633915, 14.25163213, 14.25163213, 14.25163213, 14.25163213,
14.23754499, 14.23754499, 14.23754499, 14.23754499, 14.23024107,
14.23024107, 14.23024107, 14.23024107, 14.24174742, 14.24174742,
14.24174742, 14.24174742, 14.27889962, 14.27889962, 14.27889962,
14.27889962, 14.35759486, 14.35759486, 14.35759486, 14.35759486,
14.54696917, 14.54696917, 14.54696917, 14.54696917, 14.96266718,
14.96266718, 14.96266718, 14.96266718, 15.78642563, 15.78642563,
15.78642563, 15.78642563, 17.2487071 , 17.2487071 , 17.2487071 ,
17.2487071 , 19.53398038, 19.53398038, 19.53398038, 19.53398038,
22.71582829, 22.71582829, 22.71582829, 22.71582829, 26.01707632,
26.01707632, 26.01707632, 26.01707632, 28.22634492, 28.22634492,
28.22634492, 28.22634492, 29.54364225, 29.54364225, 29.54364225,
29.54364225, 30.21788417, 30.21788417, 30.21788417, 30.21788417,
30.48270507, 30.48270507, 30.48270507, 30.48270507, 30.13950965,
30.13950965, 30.13950965, 30.13950965, 26.97376455, 26.97376455,
26.97376455, 26.97376455, 15.48772497, 15.48772497, 15.48772497,
15.48772497, 6.14534066, 6.14534066, 6.14534066, 6.14534066,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749997,
19.59749997, 19.59749997, 19.59749997, 19.24583929, 19.24583929,
19.24583929, 19.24583929, 9.10319349, 9.10319349, 9.10319349,
9.10319349, 8.78429254, 8.78429254, 8.78429254, 8.78429254,
8.78782172, 8.78782172, 8.78782172, 8.78782172, 8.78396219,
8.78396219, 8.78396219, 8.78396219, 8.77215789, 8.77215789,
8.77215789, 8.77215789, 8.75660895, 8.75660895, 8.75660895,
8.75660895, 8.73364152, 8.73364152, 8.73364152, 8.73364152,
8.69780904, 8.69780904, 8.69780904, 8.69780904, 8.65998853,
8.65998853, 8.65998853, 8.65998853, 8.6435601 , 8.6435601 ,
8.6435601 , 8.6435601 , 8.64283542, 8.64283542, 8.64283542,
8.64283542, 8.65074582, 8.65074582, 8.65074582, 8.65074582,
8.6663228 , 8.6663228 , 8.6663228 , 8.6663228 , 8.67666959,
8.67666959, 8.67666959, 8.67666959, 8.67914542, 8.67914542,
8.67914542, 8.67914542, 8.67858192, 8.67858192, 8.67858192,
8.67858192, 8.6821574 , 8.6821574 , 8.6821574 , 8.6821574 ,
8.68024296, 8.68024296, 8.68024296, 8.68024296, 8.68336799,
8.68336799, 8.68336799, 8.68336799, 8.68857928, 8.68857928,
8.68857928, 8.68857928, 8.70010128, 8.70010128, 8.70010128,
8.70010128, 8.70339846, 8.70339846, 8.70339846, 8.70339846,
8.67320959, 8.67320959, 8.67320959, 8.67320959, 8.49611712,
8.49611712, 8.49611712, 8.49611712, 7.44340708, 7.44340708,
7.44340708, 7.44340708, 2.38465564, 2.38465564, 2.38465564,
2.38465564, -6.01693913, -6.01693913, -6.01693913, -6.01693913,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400163, 460.89400163, 460.89400163, 460.89400163,
483.62121622, 483.62121622, 483.62121622, 483.62121622,
1623.60310845, 1623.60310845, 1623.60310845, 1623.60310845,
1691.64939439, 1691.64939439, 1691.64939439, 1691.64939439,
1696.27722361, 1696.27722361, 1696.27722361, 1696.27722361,
1698.77708803, 1698.77708803, 1698.77708803, 1698.77708803,
1699.18532234, 1699.18532234, 1699.18532234, 1699.18532234,
1698.15429252, 1698.15429252, 1698.15429252, 1698.15429252,
1695.56154428, 1695.56154428, 1695.56154428, 1695.56154428,
1690.76866638, 1690.76866638, 1690.76866638, 1690.76866638,
1685.52418568, 1685.52418568, 1685.52418568, 1685.52418568,
1683.61591444, 1683.61591444, 1683.61591444, 1683.61591444,
1683.59485251, 1683.59485251, 1683.59485251, 1683.59485251,
1684.73977157, 1684.73977157, 1684.73977157, 1684.73977157,
1687.5610475 , 1687.5610475 , 1687.5610475 , 1687.5610475 ,
1689.67184918, 1689.67184918, 1689.67184918, 1689.67184918,
1690.44238069, 1690.44238069, 1690.44238069, 1690.44238069,
1690.51459133, 1690.51459133, 1690.51459133, 1690.51459133,
1689.39687915, 1689.39687915, 1689.39687915, 1689.39687915,
1689.68288809, 1689.68288809, 1689.68288809, 1689.68288809,
1689.44048287, 1689.44048287, 1689.44048287, 1689.44048287,
1690.53791285, 1690.53791285, 1690.53791285, 1690.53791285,
1692.47561232, 1692.47561232, 1692.47561232, 1692.47561232,
1692.13797522, 1692.13797522, 1692.13797522, 1692.13797522,
1686.64509245, 1686.64509245, 1686.64509245, 1686.64509245,
1636.82834627, 1636.82834627, 1636.82834627, 1636.82834627,
1380.81911464, 1380.81911464, 1380.81911464, 1380.81911464,
573.2312164 , 573.2312164 , 573.2312164 , 573.2312164 ,
49.93303743, 49.93303743, 49.93303743, 49.93303743,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}, {'rho': array([ 5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924 ,
5.99924 , 5.99924 , 5.99924 , 5.99924 , 5.99924001,
5.99924001, 5.99924001, 5.99924001, 6.09328922, 6.09328922,
6.09328922, 6.09328922, 13.6337493 , 13.6337493 , 13.6337493 ,
13.6337493 , 14.37575791, 14.37575791, 14.37575791, 14.37575791,
14.39780884, 14.39780884, 14.39780884, 14.39780884, 14.39651705,
14.39651705, 14.39651705, 14.39651705, 14.37570225, 14.37570225,
14.37570225, 14.37570225, 14.32770213, 14.32770213, 14.32770213,
14.32770213, 14.28176433, 14.28176433, 14.28176433, 14.28176433,
14.26966435, 14.26966435, 14.26966435, 14.26966435, 14.26233205,
14.26233205, 14.26233205, 14.26233205, 14.25388775, 14.25388775,
14.25388775, 14.25388775, 14.26400898, 14.26400898, 14.26400898,
14.26400898, 14.31271717, 14.31271717, 14.31271717, 14.31271717,
14.43756452, 14.43756452, 14.43756452, 14.43756452, 14.73121993,
14.73121993, 14.73121993, 14.73121993, 15.34476464, 15.34476464,
15.34476464, 15.34476464, 16.4748069 , 16.4748069 , 16.4748069 ,
16.4748069 , 18.33346911, 18.33346911, 18.33346911, 18.33346911,
21.06320454, 21.06320454, 21.06320454, 21.06320454, 24.48736259,
24.48736259, 24.48736259, 24.48736259, 27.25029256, 27.25029256,
27.25029256, 27.25029256, 28.96000247, 28.96000247, 28.96000247,
28.96000247, 29.92152696, 29.92152696, 29.92152696, 29.92152696,
30.43071774, 30.43071774, 30.43071774, 30.43071774, 30.48158285,
30.48158285, 30.48158285, 30.48158285, 29.6931038 , 29.6931038 ,
29.6931038 , 29.6931038 , 24.48036157, 24.48036157, 24.48036157,
24.48036157, 10.97656215, 10.97656215, 10.97656215, 10.97656215,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ,
5.99242 , 5.99242 , 5.99242 , 5.99242 , 5.99242 ]), 'vx': array([19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.5975 ,
19.5975 , 19.5975 , 19.5975 , 19.5975 , 19.59749999,
19.59749999, 19.59749999, 19.59749999, 19.43452953, 19.43452953,
19.43452953, 19.43452953, 9.31334143, 9.31334143, 9.31334143,
9.31334143, 8.75472416, 8.75472416, 8.75472416, 8.75472416,
8.76559912, 8.76559912, 8.76559912, 8.76559912, 8.77409202,
8.77409202, 8.77409202, 8.77409202, 8.77426307, 8.77426307,
8.77426307, 8.77426307, 8.76671477, 8.76671477, 8.76671477,
8.76671477, 8.75319922, 8.75319922, 8.75319922, 8.75319922,
8.73118346, 8.73118346, 8.73118346, 8.73118346, 8.69883596,
8.69883596, 8.69883596, 8.69883596, 8.6628458 , 8.6628458 ,
8.6628458 , 8.6628458 , 8.64715364, 8.64715364, 8.64715364,
8.64715364, 8.64581082, 8.64581082, 8.64581082, 8.64581082,
8.6500293 , 8.6500293 , 8.6500293 , 8.6500293 , 8.66179058,
8.66179058, 8.66179058, 8.66179058, 8.67373076, 8.67373076,
8.67373076, 8.67373076, 8.67820923, 8.67820923, 8.67820923,
8.67820923, 8.68267612, 8.68267612, 8.68267612, 8.68267612,
8.68084071, 8.68084071, 8.68084071, 8.68084071, 8.68254662,
8.68254662, 8.68254662, 8.68254662, 8.68459313, 8.68459313,
8.68459313, 8.68459313, 8.69197139, 8.69197139, 8.69197139,
8.69197139, 8.70122804, 8.70122804, 8.70122804, 8.70122804,
8.69267096, 8.69267096, 8.69267096, 8.69267096, 8.64859801,
8.64859801, 8.64859801, 8.64859801, 8.32819372, 8.32819372,
8.32819372, 8.32819372, 6.54834767, 6.54834767, 6.54834767,
6.54834767, -0.62600176, -0.62600176, -0.62600176, -0.62600176,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ,
-6.19633 , -6.19633 , -6.19633 , -6.19633 , -6.19633 ]), 'P': array([ 460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.894 , 460.894 , 460.894 , 460.894 ,
460.89400073, 460.89400073, 460.89400073, 460.89400073,
471.21870464, 471.21870464, 471.21870464, 471.21870464,
1578.16502252, 1578.16502252, 1578.16502252, 1578.16502252,
1687.33089712, 1687.33089712, 1687.33089712, 1687.33089712,
1693.02479095, 1693.02479095, 1693.02479095, 1693.02479095,
1697.54588006, 1697.54588006, 1697.54588006, 1697.54588006,
1699.94044253, 1699.94044253, 1699.94044253, 1699.94044253,
1700.41506288, 1700.41506288, 1700.41506288, 1700.41506288,
1699.56653883, 1699.56653883, 1699.56653883, 1699.56653883,
1697.376822 , 1697.376822 , 1697.376822 , 1697.376822 ,
1692.99504777, 1692.99504777, 1692.99504777, 1692.99504777,
1687.18710596, 1687.18710596, 1687.18710596, 1687.18710596,
1684.33621036, 1684.33621036, 1684.33621036, 1684.33621036,
1683.78877304, 1683.78877304, 1683.78877304, 1683.78877304,
1684.56316017, 1684.56316017, 1684.56316017, 1684.56316017,
1686.96306445, 1686.96306445, 1686.96306445, 1686.96306445,
1689.43070189, 1689.43070189, 1689.43070189, 1689.43070189,
1690.13566238, 1690.13566238, 1690.13566238, 1690.13566238,
1689.59333228, 1689.59333228, 1689.59333228, 1689.59333228,
1689.76788396, 1689.76788396, 1689.76788396, 1689.76788396,
1689.21360274, 1689.21360274, 1689.21360274, 1689.21360274,
1689.48965314, 1689.48965314, 1689.48965314, 1689.48965314,
1690.29182232, 1690.29182232, 1690.29182232, 1690.29182232,
1691.56567658, 1691.56567658, 1691.56567658, 1691.56567658,
1691.87982295, 1691.87982295, 1691.87982295, 1691.87982295,
1677.31394855, 1677.31394855, 1677.31394855, 1677.31394855,
1594.38740565, 1594.38740565, 1594.38740565, 1594.38740565,
1197.27536033, 1197.27536033, 1197.27536033, 1197.27536033,
299.03174315, 299.03174315, 299.03174315, 299.03174315,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 , 46.095 ,
46.095 , 46.095 , 46.095 ])}]}
running none hll
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 15.76 ms [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (53.5%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 20.60 us (3.1%)
patch tree reduce : 1.23 us (0.2%)
gen split merge : 781.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.1%)
LB compute : 641.18 us (95.3%)
LB move op cnt : 0
LB apply : 2.95 us (0.4%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running none hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (1.3%)
patch tree reduce : 1.16 us (0.2%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 581.00 ns (0.1%)
LB compute : 497.67 us (96.6%)
LB move op cnt : 0
LB apply : 2.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.2498e+05 | 65536 | 2 | 2.913e-01 | 0.0% | 1.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.4%)
patch tree reduce : 2.12 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.2%)
LB compute : 449.31 us (95.5%)
LB move op cnt : 0
LB apply : 4.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3044e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.943997562789838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 8.221661412416737e-05, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.4%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 385.72 us (95.0%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3204e+05 | 65536 | 2 | 1.974e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4995898992762269 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00016443322824833475, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.5%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 370.54 us (94.8%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (63.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4324e+05 | 65536 | 2 | 1.909e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5501727567873578 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0002466498423725021, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.5%)
patch tree reduce : 2.31 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 382.60 us (94.8%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4895e+05 | 65536 | 2 | 1.878e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.57596512069829 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0003288664564966695, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.2%)
patch tree reduce : 1.92 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.2%)
LB compute : 412.80 us (95.5%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (58.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5173e+05 | 65536 | 2 | 1.863e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5885354598422243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004110830706208369, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.4%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 388.52 us (95.0%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4480e+05 | 65536 | 2 | 1.901e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5572220427220311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004932996847450043, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.4%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 368.40 us (91.1%)
LB move op cnt : 0
LB apply : 8.05 us (2.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4321e+05 | 65536 | 2 | 1.909e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5500484093080333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005755162988691717, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 327.82 us (94.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (58.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4044e+05 | 65536 | 2 | 1.925e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5375338168670372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006577329129933391, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 306.22 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5638e+05 | 65536 | 2 | 1.839e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6095309331128724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007399495271175065, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.5%)
patch tree reduce : 1.77 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 375.94 us (95.2%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (60.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5509e+05 | 65536 | 2 | 1.846e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6036789324524048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008221661412416739, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.7%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 344.06 us (94.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (64.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4882e+05 | 65536 | 2 | 1.879e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5753689488812221 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009043827553658413, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.5%)
patch tree reduce : 2.44 us (0.7%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 352.22 us (94.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4681e+05 | 65536 | 2 | 1.890e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5663025608714103 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009865993694900086, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.9%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 298.36 us (94.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (60.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4942e+05 | 65536 | 2 | 1.876e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5780906896156883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010688159836141759, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 335.65 us (94.5%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5020e+05 | 65536 | 2 | 1.871e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5816140453092076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011510325977383432, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 292.83 us (93.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5492e+05 | 65536 | 2 | 1.847e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6029047115323287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012332492118625105, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 2.36 us (0.8%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 294.34 us (93.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4959e+05 | 65536 | 2 | 1.875e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5788531799496022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013154658259866777, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 331.01 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (59.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5805e+05 | 65536 | 2 | 1.830e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6170485764751514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001397682440110845, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.0%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 295.62 us (93.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5009e+05 | 65536 | 2 | 1.872e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5811199754796572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014798990542350123, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.4%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 346.29 us (94.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (62.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5386e+05 | 65536 | 2 | 1.852e-01 | 0.0% | 1.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5981354774348424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015621156683591796, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 337.24 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5460e+05 | 65536 | 2 | 1.848e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6014557254129562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001644332282483347, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 2.47 us (0.8%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 293.67 us (93.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5043e+05 | 65536 | 2 | 1.870e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5826524224952456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017265488966075142, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 332.62 us (94.6%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (58.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5151e+05 | 65536 | 2 | 1.864e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5875294384614538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018087655107316815, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 392.46 us (95.1%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5060e+05 | 65536 | 2 | 1.869e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5834205313505538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018909821248558488, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 334.24 us (94.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5457e+05 | 65536 | 2 | 1.848e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6013594545590404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019731987389800163, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 323.88 us (94.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (62.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5034e+05 | 65536 | 2 | 1.871e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.58222675313008 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020554153531041836, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 321.43 us (94.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5939e+05 | 65536 | 2 | 1.824e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6231053913307931 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002137631967228351, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 309.35 us (94.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4849e+05 | 65536 | 2 | 1.881e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5738666609241563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002219848581352518, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 301.40 us (94.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4819e+05 | 65536 | 2 | 1.882e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5725356262031154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023020651954766855, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 324.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4310e+05 | 65536 | 2 | 1.910e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.549536284018856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023842818096008528, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 303.39 us (94.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4890e+05 | 65536 | 2 | 1.878e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5757567997559079 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00246649842372502, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 289.69 us (93.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5428e+05 | 65536 | 2 | 1.850e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.600044084475454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025487150378491873, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.4%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 368.88 us (95.1%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (61.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5108e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.037226485732939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0026309316519733546, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 292.79 us (93.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5338e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.047587950485825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002713148266097522, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 300.27 us (93.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5106e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.037099760861229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002795364880221689, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 368.97 us (95.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4979e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.031364951336037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028775814943458565, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 326.42 us (94.1%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5339e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.04762500734793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002959798108470024, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 326.98 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4817e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.024065474443169 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003042014722594191, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 323.59 us (94.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4673e+05 | 65536 | 2 | 1.890e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5659307742131265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031242313367183584, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 312.41 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (59.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6821e+05 | 65536 | 2 | 1.780e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6629249848149565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0032064479508425257, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.2%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 408.22 us (95.5%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4696e+05 | 65536 | 2 | 1.889e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5669912694155919 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003288664564966693, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 313.44 us (94.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2302e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9105018013646335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033708811790908602, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 328.75 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5256e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0438961107549223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034530977932150275, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.1%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 293.09 us (93.6%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (59.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4816e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0240073689766733 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003535314407339195, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.9%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 297.92 us (93.6%)
LB move op cnt : 0
LB apply : 4.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5317e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0466264851933036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003617531021463362, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.2%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 291.95 us (93.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (59.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5155e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.039313415876976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036997476355875294, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 321.98 us (94.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (64.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5456e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.05293386928968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0037819642497116967, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 347.53 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (61.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3933e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9841361705721252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003864180863835864, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 322.69 us (94.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (64.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4676e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.017684911481789 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003946397477960032, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 288.20 us (93.7%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (61.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5396e+05 | 65536 | 2 | 1.852e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.598577780372537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0040286140920841994, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.9%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.46 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 308.27 us (93.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2515e+05 | 65536 | 2 | 2.016e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4684554105893979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004110830706208367, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.2%)
patch tree reduce : 1.89 us (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 428.37 us (95.5%)
LB move op cnt : 0
LB apply : 4.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (66.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5276e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.04478340240419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004193047320332535, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.0%)
patch tree reduce : 2.35 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 300.92 us (93.2%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5578e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0584175980546466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004275263934456703, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.1%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 294.95 us (93.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (59.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4802e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0233971447878 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00435748054858087, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 341.54 us (94.6%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3613e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9697076816106682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004439697162705038, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.0%)
patch tree reduce : 2.29 us (0.8%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 283.72 us (93.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (60.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.4299e+05 | 65536 | 2 | 2.697e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0974196030878753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004521913776829206, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.4%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 350.45 us (94.9%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1354e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8676578425361796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046041303909533735, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 342.59 us (94.5%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0670e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8367592876018155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004686347005077541, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 293.76 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3952e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9849873805342717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004768563619201709, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.9%)
patch tree reduce : 2.43 us (0.8%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 290.90 us (93.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2186e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9052341959168066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004850780233325877, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 322.68 us (94.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4035e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9887654024143346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004932996847450044, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.8%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 318.17 us (93.9%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4179e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9952654436630564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005015213461574212, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.9%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 281.89 us (93.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (8.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5191e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0409621942852616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00509743007569838, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 329.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5380e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0495019422294525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005179646689822548, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 293.64 us (93.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (63.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5433e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0518902626299376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005261863303946715, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (2.0%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 279.38 us (93.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8130e+05 | 65536 | 2 | 2.330e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2704280287446674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005344079918070883, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 366.60 us (94.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (63.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2298e+05 | 65536 | 2 | 2.029e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4586771182179536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005426296532195051, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.5%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 389.98 us (95.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (61.7%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9484e+05 | 65536 | 2 | 2.223e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3315625470751953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0055085131463192185, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 345.73 us (94.7%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.2%)
Info: cfl dt = 8.221661412416744e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3251e+05 | 65536 | 2 | 1.971e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5017198622711374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005590729760443386, dt = 8.221661412416744e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.4%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 361.94 us (94.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.0%)
Info: cfl dt = 8.221661412416758e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3541e+05 | 65536 | 2 | 1.954e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.514799962046569 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005672946374567554, dt = 8.221661412416758e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 364.12 us (94.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (61.0%)
Info: cfl dt = 8.221661412416794e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1893e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8920084800682475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005755162988691722, dt = 8.221661412416794e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.4%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 356.41 us (95.0%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.0%)
Info: cfl dt = 8.221661412416885e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2507e+05 | 65536 | 2 | 2.016e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.468091204021534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005837379602815889, dt = 8.221661412416885e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.6%)
patch tree reduce : 2.47 us (0.7%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 338.19 us (94.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.0%)
Info: cfl dt = 8.221661412417106e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3829e+05 | 65536 | 2 | 1.937e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5278007724169205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005919596216940058, dt = 8.221661412417106e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.4%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 371.41 us (95.0%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.7%)
Info: cfl dt = 8.221661412417637e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5457e+05 | 65536 | 2 | 1.848e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6013390425704488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006001812831064229, dt = 8.221661412417637e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 323.68 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.8%)
Info: cfl dt = 8.221661412418862e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4580e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.013359941112789 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006084029445188406, dt = 8.221661412418862e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 323.24 us (88.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (65.6%)
Info: cfl dt = 8.221661412421604e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6798e+05 | 65536 | 2 | 1.781e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6618889575323992 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006166246059312594, dt = 8.221661412421604e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 331.24 us (94.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.2%)
Info: cfl dt = 8.221661412427566e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3143e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9484837040430143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00624846267343681, dt = 8.221661412427566e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 327.34 us (94.1%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.7%)
Info: cfl dt = 8.221661412440174e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3768e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9766847543258528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006330679287561086, dt = 8.221661412440174e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 290.35 us (93.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.8%)
Info: cfl dt = 8.221661412466151e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3874e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.98148029625423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006412895901685488, dt = 8.221661412466151e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 288.62 us (93.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.5%)
Info: cfl dt = 8.221661412518349e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3571e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9677815544393977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006495112515810149, dt = 8.221661412518349e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.4%)
LB compute : 325.53 us (93.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.9%)
Info: cfl dt = 8.221661412620788e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3782e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9773233564329886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006577329129935332, dt = 8.221661412620788e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 330.95 us (94.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (63.5%)
Info: cfl dt = 8.221661412817336e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2869e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9360916706065334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00665954574406154, dt = 8.221661412817336e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 287.14 us (93.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.7%)
Info: cfl dt = 8.221661413186408e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2702e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9285255126920986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006741762358189713, dt = 8.221661413186408e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.4%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 384.68 us (94.9%)
LB move op cnt : 0
LB apply : 4.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.7%)
Info: cfl dt = 8.221661413865328e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2956e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9400266629935874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006823978972321577, dt = 8.221661413865328e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 299.37 us (94.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (62.9%)
Info: cfl dt = 8.221661415089862e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4058e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.989773338999051 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006906195586460231, dt = 8.221661415089862e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 318.06 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.0%)
Info: cfl dt = 8.221661417257232e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1231e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.862095566263416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0069884122006111295, dt = 8.221661417257232e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.0%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 285.42 us (93.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (61.3%)
Info: cfl dt = 8.221661421024609e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3879e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9817007781448568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007070628814783702, dt = 8.221661421024609e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 302.75 us (94.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.3%)
Info: cfl dt = 8.221661427460442e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5896e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.072796023406334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0071528454289939486, dt = 8.221661427460442e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 308.10 us (94.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.3%)
Info: cfl dt = 8.221661438272913e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5865e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0713880023670295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007235062043268553, dt = 8.221661438272913e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 316.46 us (93.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (61.8%)
Info: cfl dt = 8.221661456149165e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4551e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.012056957344466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007317278657651282, dt = 8.221661456149165e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 292.49 us (93.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (61.9%)
Info: cfl dt = 8.221661485250954e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4548e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0119151322118918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007399495272212774, dt = 8.221661485250954e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 2.31 us (0.7%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 315.00 us (93.8%)
LB move op cnt : 0
LB apply : 4.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.1%)
Info: cfl dt = 8.22166153192759e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5145e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0388863743367867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0074817118870652835, dt = 8.22166153192759e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.40 us (0.5%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 285.86 us (93.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.6%)
Info: cfl dt = 8.221661605726003e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4792e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0229209232308016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0075639285023845594, dt = 8.221661605726003e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 330.10 us (94.6%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.2%)
Info: cfl dt = 8.221661720800759e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1532e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8756894796888561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00764614511844182, dt = 8.221661720800759e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 313.48 us (94.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (60.5%)
Info: cfl dt = 8.221661897854317e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5023e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0333615484836374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007728361735649827, dt = 8.221661897854317e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 335.92 us (94.4%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.9%)
Info: cfl dt = 8.221662166769725e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2984e+05 | 65536 | 2 | 1.987e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.489651600157949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00781057835462837, dt = 8.221662166769725e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 319.91 us (94.2%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.0%)
Info: cfl dt = 8.221662570134271e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3951e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9849629884389293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007892794976296068, dt = 8.221662570134271e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 344.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.9%)
Info: cfl dt = 8.221663167892783e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2593e+05 | 65536 | 2 | 2.011e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4719948416836568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00797501160199741, dt = 8.221663167892783e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.3%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 383.88 us (95.2%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.6%)
Info: cfl dt = 8.221664043412473e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8184e+05 | 65536 | 2 | 1.716e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.724487924484271 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008057228233676338, dt = 8.221664043412473e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 296.75 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.2%)
Info: cfl dt = 8.221665311286093e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4378e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0042206576740593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008139444874110464, dt = 8.221665311286093e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 337.15 us (94.5%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (60.3%)
Info: cfl dt = 8.22166712724476e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6427e+05 | 65536 | 2 | 1.412e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0967618357085547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008221661527223324, dt = 8.22166712724476e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 2.48 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 352.01 us (94.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.5%)
Info: cfl dt = 8.22166970059389e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0234e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.81707797057813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00830387819849577, dt = 8.22166970059389e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 272.33 us (93.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.3%)
Info: cfl dt = 8.22167330962201e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4023e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.988196528145707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00838609489550171, dt = 8.22167330962201e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.1%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 270.61 us (92.9%)
LB move op cnt : 0
LB apply : 3.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (61.3%)
Info: cfl dt = 8.22167832045964e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6421e+05 | 65536 | 2 | 1.412e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0965067587949693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00846831162859793, dt = 8.22167832045964e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 295.00 us (93.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.0%)
Info: cfl dt = 8.221685209879884e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4405e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.005475306639823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008550528411802526, dt = 8.221685209879884e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.4%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 349.09 us (94.8%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.5%)
Info: cfl dt = 8.221694592529832e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8580e+05 | 65536 | 2 | 1.699e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7423876311342021 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008632745263901325, dt = 8.221694592529832e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 290.92 us (93.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (59.2%)
Info: cfl dt = 8.221707253058221e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7824e+05 | 65536 | 2 | 1.733e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7082648956540938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008714962209826623, dt = 8.221707253058221e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 276.26 us (93.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.5%)
Info: cfl dt = 8.221724183555953e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8063e+05 | 65536 | 2 | 1.722e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7190353910927687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008797179282357206, dt = 8.221724183555953e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 276.39 us (93.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.9%)
Info: cfl dt = 8.221746626648717e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8849e+05 | 65536 | 2 | 1.687e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7545511894020627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008879396524192765, dt = 8.221746626648717e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 2.43 us (0.8%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 273.68 us (93.4%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.9%)
Info: cfl dt = 8.221776124472195e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3559e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9672640068300562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008961613990459253, dt = 8.221776124472195e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 281.75 us (93.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.1%)
Info: cfl dt = 8.221814573618833e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3788e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9776298186378913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009043831751703976, dt = 8.221814573618833e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.18 us (8.1%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 281.98 us (87.4%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.2%)
Info: cfl dt = 8.221864285970647e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3269e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9541776149797434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009126049897440165, dt = 8.221864285970647e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 309.55 us (94.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (61.9%)
Info: cfl dt = 8.221928055126726e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4534e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0113172937405452 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009208268540299871, dt = 8.221928055126726e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 2.24 us (0.8%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 276.08 us (93.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.7%)
Info: cfl dt = 8.222009227900736e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4121e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9927177025846714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009290487820851139, dt = 8.222009227900736e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (2.0%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 274.48 us (93.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.5%)
Info: cfl dt = 8.222111780108391e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5726e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.065219292824127 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009372707913130145, dt = 8.222111780108391e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 332.80 us (94.4%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.7%)
Info: cfl dt = 8.222240395595671e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4843e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0253733012177486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009454929030931229, dt = 8.222240395595671e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 320.83 us (94.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.8%)
Info: cfl dt = 8.222400547185504e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3919e+05 | 65536 | 2 | 1.932e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.531972805997599 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009537151434887186, dt = 8.222400547185504e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.3%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.3%)
LB compute : 371.92 us (95.2%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.5%)
Info: cfl dt = 8.22259857795537e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2979e+05 | 65536 | 2 | 1.987e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4895634125884225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00961937544035904, dt = 8.22259857795537e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.4%)
patch tree reduce : 1.83 us (0.4%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 391.42 us (95.0%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.0%)
Info: cfl dt = 8.222841781014156e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2878e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9366970525087837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009701601426138594, dt = 8.222841781014156e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 350.90 us (94.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.6%)
Info: cfl dt = 8.223138475737504e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3109e+05 | 65536 | 2 | 1.979e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4955168773237824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009783829843948735, dt = 8.223138475737504e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (1.9%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 333.23 us (94.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.4%)
Info: cfl dt = 8.22349807826075e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2330e+05 | 65536 | 2 | 2.027e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4604005581687598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00986606122870611, dt = 8.22349807826075e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.5%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 973.00 ns (0.3%)
LB compute : 358.94 us (94.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (64.3%)
Info: cfl dt = 8.223931163930775e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1961e+05 | 65536 | 2 | 2.051e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4437704509561429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009948296209488717, dt = 8.223931163930775e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.4%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 414.53 us (95.4%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (64.9%)
Info: cfl dt = 8.224449519393963e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3003e+05 | 65536 | 2 | 1.986e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.490941503777887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010030535521128025, dt = 8.224449519393963e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 351.90 us (94.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.9%)
Info: cfl dt = 8.225066182056098e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2226e+05 | 65536 | 2 | 2.034e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4559062159086966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010112780016321965, dt = 8.225066182056098e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.2%)
patch tree reduce : 2.11 us (0.4%)
gen split merge : 1.01 us (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 492.94 us (96.0%)
LB move op cnt : 0
LB apply : 3.95 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (64.4%)
Info: cfl dt = 8.225795464796984e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1811e+05 | 65536 | 2 | 2.060e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4372693433843888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010195030678142526, dt = 8.225795464796984e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.4%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 421.78 us (95.3%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (65.6%)
Info: cfl dt = 8.226652964058996e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3078e+05 | 65536 | 2 | 1.981e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4946597968328974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010277288632790496, dt = 8.226652964058996e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.4%)
LB compute : 337.29 us (94.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.2%)
Info: cfl dt = 8.227655549751834e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3410e+05 | 65536 | 2 | 1.962e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5097980669562905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010359555162431085, dt = 8.227655549751834e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 369.43 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (61.4%)
Info: cfl dt = 8.228821335817372e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2943e+05 | 65536 | 2 | 1.989e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4889036040636754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010441831717928604, dt = 8.228821335817372e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 346.61 us (94.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.2%)
Info: cfl dt = 8.230169630766204e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2356e+05 | 65536 | 2 | 2.025e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4625517934252918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010524119931286777, dt = 8.230169630766204e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (1.7%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 1.32 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 381.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (68.8%)
Info: cfl dt = 8.231720868014472e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2737e+05 | 65536 | 2 | 2.002e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4800084895808303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01060642162759444, dt = 8.231720868014472e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.4%)
patch tree reduce : 1.83 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 408.00 us (95.3%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (68.8%)
Info: cfl dt = 8.23349651639611e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3655e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5218052929272106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010688738836274584, dt = 8.23349651639611e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 345.10 us (94.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.0%)
Info: cfl dt = 8.235518971778913e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2058e+05 | 65536 | 2 | 2.044e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4499077611826576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010771073801438545, dt = 8.235518971778913e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 333.67 us (94.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.4%)
Info: cfl dt = 8.237811431250033e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4897e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.031111013781561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010853428991156334, dt = 8.237811431250033e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 297.85 us (94.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.0%)
Info: cfl dt = 8.240397751834099e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4129e+05 | 65536 | 2 | 1.920e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5443838059552437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010935807105468834, dt = 8.240397751834099e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.6%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 21.57 us (6.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 322.49 us (89.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.7%)
Info: cfl dt = 8.243302296144367e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6132e+05 | 65536 | 2 | 1.814e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6355574860067594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011018211082987174, dt = 8.243302296144367e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.7%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 291.59 us (93.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (60.2%)
Info: cfl dt = 8.246549767725602e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6616e+05 | 65536 | 2 | 1.406e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.110856508655207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011100644105948618, dt = 8.246549767725602e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (2.0%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.43 us (0.5%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 274.76 us (93.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.3%)
Info: cfl dt = 8.250165039112761e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1816e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8942376613763146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011183109603625873, dt = 8.250165039112761e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 3.91 us (1.1%)
gen split merge : 2.24 us (0.7%)
split / merge op : 0/0
apply split merge : 3.30 us (1.0%)
LB compute : 316.09 us (92.6%)
LB move op cnt : 0
LB apply : 3.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (61.6%)
Info: cfl dt = 8.254172975792788e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6671e+05 | 65536 | 2 | 1.404e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1150850244896264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011265611254017, dt = 8.254172975792788e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 303.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (58.5%)
Info: cfl dt = 8.258598259313787e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9020e+05 | 65536 | 2 | 1.680e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.769226157494507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011348152983774928, dt = 8.258598259313787e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 278.04 us (93.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.6%)
Info: cfl dt = 8.26346521273775e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4446e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.016334425371813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011430738966368066, dt = 8.26346521273775e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.3%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 385.33 us (95.3%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.2%)
Info: cfl dt = 8.268797631486431e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1025e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8622114221407982 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011513373618495444, dt = 8.268797631486431e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 304.76 us (94.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (59.3%)
Info: cfl dt = 8.274618622395014e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7123e+05 | 65536 | 2 | 1.765e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.686180486663249 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011596061594810308, dt = 8.274618622395014e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.8%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 274.93 us (93.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.4%)
Info: cfl dt = 8.280950453479284e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7125e+05 | 65536 | 2 | 1.765e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6874675773124799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011678807781034257, dt = 8.280950453479284e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 272.09 us (93.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.1%)
Info: cfl dt = 8.287814416555488e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6122e+05 | 65536 | 2 | 1.814e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6431622151721117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01176161728556905, dt = 8.287814416555488e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.03 us (7.6%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 292.08 us (88.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.7%)
Info: cfl dt = 8.295230704445567e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2296e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9255992737845586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011844495429734604, dt = 8.295230704445567e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 299.99 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (59.2%)
Info: cfl dt = 8.303218304072293e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5916e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0922574932784395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011927447736779059, dt = 7.25522632209416e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 313.79 us (94.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (64.1%)
Info: cfl dt = 8.310710031172254e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2355e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6880113011629005 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 580.446374544 (s) [Godunov][rank=0]
running minmod rusanov
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.13 ms [DataInserterUtility][rank=0]
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 : 4.09 us (56.9%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (0.4%)
patch tree reduce : 1.08 us (0.2%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 443.93 us (97.4%)
LB move op cnt : 0
LB apply : 3.32 us (0.7%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.10 us (2.5%)
patch tree reduce : 2.10 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 413.78 us (94.0%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (67.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9764e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.6%)
patch tree reduce : 2.17 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 386.60 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (66.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5383e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0496495891740936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 8.221661412416737e-05, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 325.10 us (94.4%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (58.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2706e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9287401344941144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00016443322824833475, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 314.43 us (94.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4419e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0061009749319605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0002466498423725021, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 326.98 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5891e+05 | 65536 | 2 | 1.826e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6209252572748283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0003288664564966695, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.7%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 302.75 us (94.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6727e+05 | 65536 | 2 | 1.403e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.110325013410765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004110830706208369, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 334.88 us (94.5%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6209e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0869433424064154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004932996847450043, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.8%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 272.39 us (93.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (62.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5742e+05 | 65536 | 2 | 1.834e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6142129080286776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005755162988691717, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 327.01 us (94.2%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4488e+05 | 65536 | 2 | 1.900e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.557585139501065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006577329129933391, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 299.14 us (93.8%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4615e+05 | 65536 | 2 | 1.893e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5633038635401788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007399495271175065, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 297.30 us (94.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2736e+05 | 65536 | 2 | 2.002e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4784661396371377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008221661412416739, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.3%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 390.56 us (95.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5433e+05 | 65536 | 2 | 1.850e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6002444975272996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009043827553658413, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 333.40 us (94.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5216e+05 | 65536 | 2 | 1.861e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5904375920955198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009865993694900086, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (2.0%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 281.47 us (93.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7652e+05 | 65536 | 2 | 1.741e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7004673452752692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010688159836141759, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 326.67 us (94.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9285e+05 | 65536 | 2 | 1.668e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.774242803856209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011510325977383432, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.6%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 303.14 us (94.1%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3353e+05 | 65536 | 2 | 1.965e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.506334716353208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012332492118625105, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 292.64 us (93.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (67.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3688e+05 | 65536 | 2 | 1.945e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5214446096860974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013154658259866777, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.0%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 307.58 us (93.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (64.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3382e+05 | 65536 | 2 | 1.963e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5076147728483986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001397682440110845, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 316.65 us (94.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (58.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3700e+05 | 65536 | 2 | 1.945e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5219792462997557 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014798990542350123, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.9%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 316.38 us (93.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3359e+05 | 65536 | 2 | 1.965e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.506593464816075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015621156683591796, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.3%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 369.98 us (95.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3369e+05 | 65536 | 2 | 1.964e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.507029273377528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001644332282483347, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 342.43 us (94.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3445e+05 | 65536 | 2 | 1.960e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.510479466269369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017265488966075142, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.9%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 303.32 us (93.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (65.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3504e+05 | 65536 | 2 | 1.956e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5131185816014006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018087655107316815, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 340.70 us (94.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (63.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3483e+05 | 65536 | 2 | 1.957e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5121970580253472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018909821248558488, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 319.83 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3908e+05 | 65536 | 2 | 1.933e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.531368154131183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019731987389800163, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 310.71 us (94.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (60.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3384e+05 | 65536 | 2 | 1.963e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5077142640685364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020554153531041836, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 317.47 us (94.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3211e+05 | 65536 | 2 | 1.973e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4999071861370628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002137631967228351, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 338.58 us (94.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3427e+05 | 65536 | 2 | 1.961e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.509650968692317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002219848581352518, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 323.41 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3858e+05 | 65536 | 2 | 1.936e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5291438947591771 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023020651954766855, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 313.25 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3355e+05 | 65536 | 2 | 1.965e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5063880367520568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023842818096008528, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.6%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 24.17 us (6.0%)
split / merge op : 0/0
apply split merge : 1.53 us (0.4%)
LB compute : 358.28 us (88.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3698e+05 | 65536 | 2 | 1.945e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5218810563017293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00246649842372502, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.4%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 366.49 us (95.0%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4022e+05 | 65536 | 2 | 1.926e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.536512430945356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025487150378491873, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 338.92 us (94.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3699e+05 | 65536 | 2 | 1.945e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.521962200853171 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0026309316519733546, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 306.83 us (94.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3498e+05 | 65536 | 2 | 1.956e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5128560096996353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002713148266097522, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.6%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 307.59 us (94.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (59.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3656e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5200085145130455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002795364880221689, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 318.36 us (94.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3642e+05 | 65536 | 2 | 1.948e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5193721060474488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028775814943458565, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 308.38 us (94.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3431e+05 | 65536 | 2 | 1.960e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5098591285280292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002959798108470024, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 334.88 us (94.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3559e+05 | 65536 | 2 | 1.953e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5156030395556799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003042014722594191, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.5%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 316.70 us (94.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3306e+05 | 65536 | 2 | 1.968e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5042138131222604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031242313367183584, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 306.78 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (61.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3441e+05 | 65536 | 2 | 1.960e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.510289846569713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0032064479508425257, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.4%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 348.06 us (94.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3521e+05 | 65536 | 2 | 1.955e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5138964760070552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003288664564966693, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 349.44 us (94.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (65.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0562e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8319141437095199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033708811790908602, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.6%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 310.47 us (94.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2461e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9176825079558477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034530977932150275, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 300.52 us (93.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1038e+05 | 65536 | 2 | 2.112e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.401748047173775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003535314407339195, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.4%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 404.79 us (95.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4896e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.027636979933715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003617531021463362, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 334.47 us (94.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5035e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0339010444663876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036997476355875294, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.4%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 367.94 us (95.2%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4444e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0072031693119645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0037819642497116967, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 332.44 us (94.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (63.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5102e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0369215622833794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003864180863835864, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 286.07 us (93.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4510e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0102138109886565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003946397477960032, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 326.26 us (94.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (65.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5343e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0478221848735347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0040286140920841994, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 296.17 us (93.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5390e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.049940843724016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004110830706208367, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 318.07 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (58.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4844e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0252643704327262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004193047320332535, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.5%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 339.18 us (94.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3882e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9818311196979523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004275263934456703, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 321.66 us (94.3%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3959e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.985313026419286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00435748054858087, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 306.64 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5860e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0711850685515425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004439697162705038, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 301.98 us (93.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5747e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.066071648496939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004521913776829206, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 323.15 us (94.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5032e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.033771686471875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046041303909533735, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 289.11 us (93.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (63.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5131e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0382656407858173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004686347005077541, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 325.43 us (93.9%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5186e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0407245455648173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004768563619201709, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 280.62 us (93.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4525e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.010872365722754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004850780233325877, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.5%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 309.27 us (94.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4116e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9924032750599263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004932996847450044, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.4%)
patch tree reduce : 2.36 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 329.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5356e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.048429624850011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005015213461574212, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 317.56 us (94.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (62.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5453e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0527962274619416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00509743007569838, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 302.58 us (94.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5563e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.057741615710873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005179646689822548, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 287.53 us (93.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4474e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0085710135764403 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005261863303946715, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.5%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 334.84 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5560e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0576275313256405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005344079918070883, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 294.51 us (93.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5340e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0476723219577946 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005426296532195051, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 307.72 us (94.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5232e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0428090366771112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0055085131463192185, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 272.11 us (93.6%)
LB move op cnt : 0
LB apply : 3.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (63.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5806e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0687459931266012 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005590729760443386, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 277.90 us (93.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5649e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.061623947940239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005672946374567554, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.8%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 268.83 us (93.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5994e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.077230806085254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005755162988691722, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.9%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 270.05 us (93.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4355e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0031978419363714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005837379602815889, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 269.49 us (93.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4159e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9943296454427746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005919596216940057, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 315.04 us (94.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4177e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.995159297757692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006001812831064225, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 279.97 us (93.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4039e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.988920839992826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006084029445188393, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 278.30 us (93.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (65.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5432e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0518472050635173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00616624605931256, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 285.63 us (93.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5223e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.042400735931338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006248462673436728, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 306.14 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4249e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9984366220382348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006330679287560896, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.2%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 411.80 us (95.6%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3779e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9772048195717784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0064128959016850635, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 342.67 us (94.6%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5186e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.040750449514582 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006495112515809231, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 297.23 us (93.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (61.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8823e+05 | 65536 | 2 | 1.688e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7533700922452429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006577329129933399, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 268.55 us (93.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (62.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4459e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0078816007063947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006659545744057567, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.9%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 300.37 us (93.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4464e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0081458587532244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006741762358181734, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 320.09 us (94.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.2%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5498e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.054814847734481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006823978972305902, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 287.15 us (93.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.6%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5408e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.050765186079051 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00690619558643007, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 323.50 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.0%)
Info: cfl dt = 8.221661412416744e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5189e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0408659207464233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0069884122005542375, dt = 8.221661412416744e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.0%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 288.95 us (93.5%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.0%)
Info: cfl dt = 8.221661412416748e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5291e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.045477005342091 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007070628814678405, dt = 8.221661412416748e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 290.42 us (93.8%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.1%)
Info: cfl dt = 8.221661412416758e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4823e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0243383019250385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007152845428802573, dt = 8.221661412416758e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 323.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.5%)
Info: cfl dt = 8.221661412416778e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5243e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.043312162441331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007235062042926741, dt = 8.221661412416778e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.8%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 326.29 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.7%)
Info: cfl dt = 8.221661412416824e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5363e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0487341748681773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0073172786570509084, dt = 8.221661412416824e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 321.46 us (94.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.2%)
Info: cfl dt = 8.221661412416916e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5603e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0595588852289493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007399495271175077, dt = 8.221661412416916e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 316.39 us (93.7%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (65.4%)
Info: cfl dt = 8.2216614124171e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4797e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0231687962495393 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0074817118852992465, dt = 8.2216614124171e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 287.12 us (93.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.0%)
Info: cfl dt = 8.221661412417461e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4359e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0033669476813913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007563928499423418, dt = 8.221661412417461e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.9%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 281.70 us (93.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.5%)
Info: cfl dt = 8.221661412418163e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5045e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0343705246605523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007646145113547592, dt = 8.221661412418163e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 327.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.6%)
Info: cfl dt = 8.221661412419503e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4305e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.000946802059695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007728361727671774, dt = 8.221661412419503e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 287.51 us (93.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.4%)
Info: cfl dt = 8.221661412422036e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5476e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0538143192674103 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007810578341795969, dt = 8.221661412422036e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 320.08 us (94.4%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.1%)
Info: cfl dt = 8.221661412426749e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1294e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8649780770873678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007892794955920188, dt = 8.221661412426749e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 306.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.6%)
Info: cfl dt = 8.221661412435402e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5616e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.060168576908676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007975011570044457, dt = 8.221661412435402e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 296.61 us (93.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.5%)
Info: cfl dt = 8.221661412451093e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5552e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0572594290295467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00805722818416881, dt = 8.221661412451093e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.0%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 292.70 us (93.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.7%)
Info: cfl dt = 8.221661412479193e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5765e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.066892058335019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008139444798293321, dt = 8.221661412479193e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 285.25 us (93.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.0%)
Info: cfl dt = 8.221661412528907e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5479e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.05397266554144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008221661412418113, dt = 8.221661412528907e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 314.39 us (94.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.4%)
Info: cfl dt = 8.221661412615832e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5296e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0457136979829937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008303878026543402, dt = 8.221661412615832e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.5%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 314.56 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.6%)
Info: cfl dt = 8.221661412766083e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5802e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.068539561523495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00838609464066956, dt = 8.221661412766083e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 294.21 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.3%)
Info: cfl dt = 8.221661413022904e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5618e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.060225765747691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00846831125479722, dt = 8.221661413022904e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (0.7%)
patch tree reduce : 1.81 us (0.2%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.03 us (0.1%)
LB compute : 769.93 us (97.4%)
LB move op cnt : 0
LB apply : 4.36 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (68.2%)
Info: cfl dt = 8.221661413457113e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6029e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0788177158733405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00855052786892745, dt = 8.221661413457113e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 20.92 us (6.1%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 304.18 us (88.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.5%)
Info: cfl dt = 8.221661414183454e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5401e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0504614243237964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00863274448306202, dt = 8.221661414183454e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 324.85 us (94.0%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.7%)
Info: cfl dt = 8.22166141538588e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5737e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.065618721076386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008714961097203855, dt = 8.22166141538588e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 311.26 us (94.1%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 8.22166141735631e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5658e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.062058949786336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008797177711357714, dt = 8.22166141735631e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (2.1%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 271.94 us (93.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.1%)
Info: cfl dt = 8.221661420553325e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4995e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.032124958509912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008879394325531276, dt = 8.221661420553325e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.9%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 272.74 us (93.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.8%)
Info: cfl dt = 8.221661425690268e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4884e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.027094660784995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00896161093973681, dt = 8.221661425690268e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 319.02 us (94.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.6%)
Info: cfl dt = 8.221661433866073e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5342e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0477886803392473 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009043827553993711, dt = 8.221661433866073e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (2.0%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 270.53 us (93.1%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (62.6%)
Info: cfl dt = 8.221661446757714e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5298e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0458108872527285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009126044168332372, dt = 8.221661446757714e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 306.82 us (94.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.7%)
Info: cfl dt = 8.221661466900497e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5871e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0716681449769774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00920826078279995, dt = 8.221661466900497e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 266.37 us (93.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (60.8%)
Info: cfl dt = 8.221661498092464e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5954e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0754065473418493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009290477397468954, dt = 8.221661498092464e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 283.32 us (93.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.0%)
Info: cfl dt = 8.221661545972298e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6183e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.085762215328416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009372694012449879, dt = 8.221661545972298e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 280.36 us (93.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (60.4%)
Info: cfl dt = 8.221661618837543e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5361e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0486546554090035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009454910627909601, dt = 8.221661618837543e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.6%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 280.28 us (93.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.5%)
Info: cfl dt = 8.221661728792332e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5739e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0656901330862865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009537127244097977, dt = 8.221661728792332e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 306.62 us (93.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.6%)
Info: cfl dt = 8.221661893342678e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5531e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0563048268753903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0096193438613859, dt = 8.221661893342678e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.8%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 274.75 us (93.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.7%)
Info: cfl dt = 8.221662137593678e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5765e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0668971010856523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009701560480319327, dt = 8.221662137593678e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.9%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 270.13 us (93.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.1%)
Info: cfl dt = 8.221662497248537e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4808e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.023682022024236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009783777101695264, dt = 8.221662497248537e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 307.74 us (94.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.4%)
Info: cfl dt = 8.221663022665312e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5974e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0763388913199656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009865993726667749, dt = 8.221663022665312e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.8%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 280.57 us (93.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.7%)
Info: cfl dt = 8.221663784295375e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6006e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0777633996314893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009948210356894402, dt = 8.221663784295375e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 304.69 us (94.1%)
LB move op cnt : 0
LB apply : 4.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.5%)
Info: cfl dt = 8.221664879909285e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6125e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.083131093908442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010030426994737355, dt = 8.221664879909285e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.9%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 277.15 us (93.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.3%)
Info: cfl dt = 8.221666444111895e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6439e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0973131524736877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010112643643536447, dt = 8.221666444111895e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 321.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.1%)
Info: cfl dt = 8.221668660760116e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9334e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7764534834882204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010194860307977567, dt = 8.221668660760116e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 299.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (62.8%)
Info: cfl dt = 8.221671779023681e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3246e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9531244039797258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010277076994585169, dt = 8.221671779023681e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 284.36 us (93.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.0%)
Info: cfl dt = 8.221676133970351e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4985e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.031655448671329 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010359293712375406, dt = 8.221676133970351e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 273.96 us (93.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.4%)
Info: cfl dt = 8.221682172710613e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4965e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.030752261407811 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01044151047371511, dt = 8.221682172710613e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 285.77 us (93.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.4%)
Info: cfl dt = 8.2216904872983e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5485e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.054226367181659 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010523727295442216, dt = 8.2216904872983e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 319.94 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (61.6%)
Info: cfl dt = 8.221701855747675e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5259e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.044031800387626 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0106059442003152, dt = 8.221701855747675e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.6%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 301.27 us (94.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.3%)
Info: cfl dt = 8.221717292685503e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3900e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9826640743585495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010688161218872677, dt = 8.221717292685503e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 281.71 us (93.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.2%)
Info: cfl dt = 8.221738111297747e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4133e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9931712354843312 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010770378391799533, dt = 8.221738111297747e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.7%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 280.66 us (93.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (64.0%)
Info: cfl dt = 8.221765998341059e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3481e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9637532828820203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01085259577291251, dt = 8.221765998341059e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.7%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 281.16 us (93.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.6%)
Info: cfl dt = 8.22180310405221e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5450e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0526654548676317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01093481343289592, dt = 8.22180310405221e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 316.02 us (94.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.0%)
Info: cfl dt = 8.221852148784643e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4833e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.024819267943863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011017031463936443, dt = 8.221852148784643e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 289.40 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.6%)
Info: cfl dt = 8.221916548108689e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4536e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.011408333782843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01109924998542429, dt = 8.221916548108689e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 337.38 us (94.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.4%)
Info: cfl dt = 8.222000557907168e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5448e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.052626186189248 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011181469150905376, dt = 8.222000557907168e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 299.72 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.5%)
Info: cfl dt = 8.222109440657938e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5424e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0515544446504004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011263689156484447, dt = 8.222109440657938e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.37 us (7.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 287.28 us (87.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.7%)
Info: cfl dt = 8.2222496535974e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5042e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.034353078693937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011345910250891027, dt = 8.2222496535974e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 323.02 us (94.1%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.7%)
Info: cfl dt = 8.222429058786043e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2918e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9384514860945081 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011428132747427001, dt = 8.222429058786043e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 318.22 us (94.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.7%)
Info: cfl dt = 8.222657154237282e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5584e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.058915255206543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011510357038014861, dt = 8.222657154237282e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 324.07 us (94.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.4%)
Info: cfl dt = 8.222945324222079e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5564e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.058057924261788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011592583609557235, dt = 8.222945324222079e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 301.29 us (94.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.0%)
Info: cfl dt = 8.223307105634716e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5212e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0422300990242364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011674813062799456, dt = 8.223307105634716e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 286.17 us (93.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.0%)
Info: cfl dt = 8.223758465925945e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3929e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9843547553583867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011757046133855803, dt = 8.223758465925945e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 307.80 us (94.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.8%)
Info: cfl dt = 8.224318086622746e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4240e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9985163300419058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011839283718515062, dt = 8.224318086622746e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 271.19 us (93.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.8%)
Info: cfl dt = 8.225007644922805e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2180e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9055854968145465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01192152689938129, dt = 7.847310061871032e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.3%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 364.44 us (95.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.6%)
Info: cfl dt = 8.225804765303368e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1422e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7855772520646422 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 603.893452062 (s) [Godunov][rank=0]
running minmod hll
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.12 ms [DataInserterUtility][rank=0]
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 : 3.58 us (56.9%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (0.4%)
patch tree reduce : 1.14 us (0.3%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 380.55 us (97.0%)
LB move op cnt : 0
LB apply : 3.17 us (0.8%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.86 us (2.8%)
patch tree reduce : 1.28 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 299.36 us (93.5%)
LB move op cnt : 0
LB apply : 3.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (61.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2960e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 338.30 us (94.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3478e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9636135948503861 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 8.221661412416737e-05, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 327.40 us (94.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5603e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0595498708650863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00016443322824833475, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 284.93 us (93.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9891e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.801607371330164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0002466498423725021, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.4%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 355.50 us (94.9%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5275e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0447743897792394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0003288664564966695, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.76 us (0.5%)
LB compute : 355.09 us (94.4%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (66.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6752e+05 | 65536 | 2 | 1.783e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6598507620990122 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004110830706208369, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 317.10 us (94.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9036e+05 | 65536 | 2 | 1.679e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7629755203145951 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004932996847450043, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 304.24 us (94.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6220e+05 | 65536 | 2 | 1.809e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6357974276148952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005755162988691717, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 22.43 us (6.9%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 286.97 us (87.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5088e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0363185596761255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006577329129933391, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 298.83 us (94.0%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (61.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5008e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0327136401532124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007399495271175065, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 306.96 us (94.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (65.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1381e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8688862546340175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008221661412416739, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.0%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 271.73 us (93.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4439e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.006993852850169 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009043827553658413, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.8%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 338.48 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (61.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5687e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 1.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0633442117588032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009865993694900086, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 326.30 us (94.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5282e+05 | 65536 | 2 | 1.858e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.593426681919398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010688159836141759, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 342.70 us (94.7%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4669e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.017386414365399 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011510325977383432, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.5%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 313.03 us (94.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4742e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0206825011207363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012332492118625105, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 313.16 us (94.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (66.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3093e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9462181225256316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013154658259866777, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 314.53 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (59.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4563e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0125769264605804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001397682440110845, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.9%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 286.83 us (93.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (59.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5848e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0706314168295257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014798990542350123, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.8%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 330.56 us (94.0%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8742e+05 | 65536 | 2 | 1.692e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7497027554549331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015621156683591796, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 334.27 us (94.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (60.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4309e+05 | 65536 | 2 | 1.910e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5495008829616521 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001644332282483347, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 353.73 us (94.5%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4463e+05 | 65536 | 2 | 1.902e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5564444883264485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017265488966075142, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.3%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 279.19 us (92.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2131e+05 | 65536 | 2 | 2.040e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4511471279143353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018087655107316815, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.2%)
patch tree reduce : 2.07 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.2%)
LB compute : 517.11 us (96.0%)
LB move op cnt : 0
LB apply : 4.08 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (69.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3669e+05 | 65536 | 2 | 1.946e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5206051758005632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018909821248558488, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 355.41 us (94.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3616e+05 | 65536 | 2 | 1.950e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5181845331089596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019731987389800163, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.9%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 307.96 us (93.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3819e+05 | 65536 | 2 | 1.938e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5273668514438874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020554153531041836, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 307.90 us (94.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2828e+05 | 65536 | 2 | 1.996e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4826240876556418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002137631967228351, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.0%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 304.88 us (93.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (63.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3144e+05 | 65536 | 2 | 1.977e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4968877043108637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002219848581352518, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 298.37 us (93.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2909e+05 | 65536 | 2 | 1.991e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4862773689756505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023020651954766855, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 338.44 us (94.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2271e+05 | 65536 | 2 | 2.031e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4574582848192845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023842818096008528, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.4%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 366.16 us (95.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (61.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2248e+05 | 65536 | 2 | 2.032e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4563952811414618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00246649842372502, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.3%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 397.76 us (95.5%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1479e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8733154333872424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025487150378491873, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 20.83 us (5.8%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 321.66 us (89.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7610e+05 | 65536 | 2 | 1.742e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6986000437270279 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0026309316519733546, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 289.84 us (93.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5420e+05 | 65536 | 2 | 1.850e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5996613742403718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002713148266097522, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.5%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 307.65 us (94.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5300e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.045872876333296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002795364880221689, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 356.72 us (94.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7236e+05 | 65536 | 2 | 1.760e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6816834625104096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028775814943458565, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 291.14 us (94.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5162e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0396324224650964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002959798108470024, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 291.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (64.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0195e+05 | 65536 | 2 | 1.630e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8153164664599062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003042014722594191, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 345.75 us (94.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6512e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.100633636527271 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031242313367183584, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 302.51 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2516e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9201539983369458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0032064479508425257, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.9%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 279.36 us (93.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (62.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5036e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0339651286083646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003288664564966693, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.9%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 270.59 us (93.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5439e+05 | 65536 | 2 | 1.849e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.600510734273527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033708811790908602, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.3%)
LB compute : 294.04 us (87.9%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5113e+05 | 65536 | 2 | 1.866e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.585826397992362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034530977932150275, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 294.63 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (61.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4339e+05 | 65536 | 2 | 1.909e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5508476431903084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003535314407339195, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 332.20 us (94.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7851e+05 | 65536 | 2 | 1.731e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7094512642167896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003617531021463362, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 272.17 us (93.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (60.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3903e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.982797806847921 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036997476355875294, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.4%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 324.40 us (94.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5064e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.035233553183823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0037819642497116967, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.6%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 286.15 us (94.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (58.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5200e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0413576288496786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003864180863835864, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 333.43 us (94.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7489e+05 | 65536 | 2 | 1.748e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6931106788611205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003946397477960032, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 21.79 us (6.2%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 313.33 us (88.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5090e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.036393444365232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0040286140920841994, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.4%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 324.60 us (94.6%)
LB move op cnt : 0
LB apply : 3.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5905e+05 | 65536 | 2 | 1.825e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6215841060626612 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004110830706208367, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 345.08 us (94.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0111e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8115271395741885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004193047320332535, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 299.05 us (94.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (60.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4453e+05 | 65536 | 2 | 1.902e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5560066294346844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004275263934456703, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 327.50 us (94.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6487e+05 | 65536 | 2 | 1.796e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.647868562644656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00435748054858087, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 297.26 us (94.1%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (63.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5724e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0650226847191813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004439697162705038, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 288.76 us (94.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (62.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0463e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8274259797509895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004521913776829206, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 344.27 us (94.6%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3837e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.979823042095384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046041303909533735, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 302.50 us (94.3%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5828e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0697100354316746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004686347005077541, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 294.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (61.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5360e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0486076874942185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004768563619201709, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.7%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 332.65 us (94.5%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (67.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8914e+05 | 65536 | 2 | 1.684e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7574541376914512 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004850780233325877, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 315.86 us (94.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4601e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0143234622187833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004932996847450044, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 328.07 us (94.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4932e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.029247390665794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005015213461574212, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 311.74 us (94.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6068e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.080555031865083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00509743007569838, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 311.85 us (94.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (61.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5364e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0487697558017763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005179646689822548, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 305.89 us (94.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9781e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7966120302160649 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005261863303946715, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 330.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4795e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0230888103814784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005344079918070883, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.8%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 275.94 us (93.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (61.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8834e+05 | 65536 | 2 | 1.688e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.753878750233738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005426296532195051, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 364.71 us (94.7%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (69.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5466e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.053389456251208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0055085131463192185, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 307.11 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (60.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4429e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0065652843700166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005590729760443386, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 334.58 us (94.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5418e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.051193142952179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005672946374567554, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (2.0%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 270.47 us (93.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7236e+05 | 65536 | 2 | 1.760e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.681678656406431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005755162988691722, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.6%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 356.46 us (94.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5130e+05 | 65536 | 2 | 1.866e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.586552108399018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005837379602815889, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 288.95 us (93.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (65.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5256e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.043910803718355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005919596216940057, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 342.37 us (94.7%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2611e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9244598308155847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006001812831064225, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 305.41 us (94.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9008e+05 | 65536 | 2 | 1.680e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7617096108528862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006084029445188393, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 292.85 us (93.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (59.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4606e+05 | 65536 | 2 | 1.894e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5629243214958113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00616624605931256, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 333.91 us (94.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4693e+05 | 65536 | 2 | 1.889e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5668521073353907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006248462673436728, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.0%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 273.55 us (92.9%)
LB move op cnt : 0
LB apply : 3.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (61.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0092e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8106782136211146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006330679287560896, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 2.30 us (0.7%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 305.53 us (93.9%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5264e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0442731558390146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0064128959016850635, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 337.35 us (94.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4781e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.02242375107739 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006495112515809231, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 278.49 us (93.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (58.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4439e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.007006645503118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006577329129933399, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 304.63 us (94.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (58.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0337e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8217179261990226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006659545744057567, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 302.89 us (94.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7422e+05 | 65536 | 2 | 1.751e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6900901300723417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006741762358181734, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.1%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 295.47 us (93.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6885e+05 | 65536 | 2 | 1.777e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6658288974536986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006823978972305902, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.5%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 342.97 us (94.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.5%)
Info: cfl dt = 8.221661412416739e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7694e+05 | 65536 | 2 | 1.739e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7023593575057847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00690619558643007, dt = 8.221661412416739e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.71 us (7.1%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 307.87 us (89.0%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.1%)
Info: cfl dt = 8.221661412416741e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5030e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0336839431542346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0069884122005542375, dt = 8.221661412416741e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 326.39 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.4%)
Info: cfl dt = 8.221661412416745e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5882e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.07215511429536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007070628814678405, dt = 8.221661412416745e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.7%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 335.90 us (94.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.6%)
Info: cfl dt = 8.221661412416756e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1362e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8680242300468375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007152845428802573, dt = 8.221661412416756e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 321.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.9%)
Info: cfl dt = 8.22166141241678e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5924e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.074046440261557 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007235062042926741, dt = 8.22166141241678e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 333.04 us (94.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.0%)
Info: cfl dt = 8.221661412416828e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3779e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9771868698902997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0073172786570509084, dt = 8.221661412416828e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.8%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 315.65 us (93.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.8%)
Info: cfl dt = 8.221661412416922e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4952e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.030143715287916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007399495271175077, dt = 8.221661412416922e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 329.49 us (94.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.2%)
Info: cfl dt = 8.221661412417113e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0798e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8425433053171854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0074817118852992465, dt = 8.221661412417113e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.6%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 295.75 us (94.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.5%)
Info: cfl dt = 8.221661412417488e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4848e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.025457846950318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007563928499423418, dt = 8.221661412417488e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 280.54 us (93.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.4%)
Info: cfl dt = 8.221661412418219e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4804e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.023500603225684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007646145113547592, dt = 8.221661412418219e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.6%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 301.28 us (94.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.1%)
Info: cfl dt = 8.221661412419614e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4851e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.025597683077321 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007728361727671775, dt = 8.221661412419614e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.9%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 273.11 us (93.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.0%)
Info: cfl dt = 8.221661412422248e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4632e+05 | 65536 | 2 | 1.892e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5640895445858314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007810578341795971, dt = 8.221661412422248e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 353.96 us (94.7%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.7%)
Info: cfl dt = 8.221661412427148e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4436e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0068390474607494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007892794955920194, dt = 8.221661412427148e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.6%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 300.41 us (94.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (64.5%)
Info: cfl dt = 8.221661412436144e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2201e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.905925637527493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007975011570044465, dt = 8.221661412436144e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 293.17 us (94.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.1%)
Info: cfl dt = 8.221661412452451e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5885e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.072315445342794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008057228184168827, dt = 8.221661412452451e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (2.0%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 274.56 us (93.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.4%)
Info: cfl dt = 8.221661412481648e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5838e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0701636590566004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008139444798293352, dt = 8.221661412481648e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 268.79 us (93.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.0%)
Info: cfl dt = 8.221661412533293e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4765e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.021703613835014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008221661412418169, dt = 8.221661412533293e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.8%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 281.64 us (93.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.7%)
Info: cfl dt = 8.221661412623577e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4595e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.014046296727665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008303878026543502, dt = 8.221661412623577e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 277.14 us (93.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.0%)
Info: cfl dt = 8.2216614127796e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7532e+05 | 65536 | 2 | 1.746e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6950544807022423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008386094640669738, dt = 8.2216614127796e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.8%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 289.62 us (94.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.7%)
Info: cfl dt = 8.221661413046229e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8961e+05 | 65536 | 2 | 1.682e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7596034133882588 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008468311254797535, dt = 8.221661413046229e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.2%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 398.88 us (95.5%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.9%)
Info: cfl dt = 8.221661413496921e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5885e+05 | 65536 | 2 | 1.826e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6206523370730805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008550527868927998, dt = 8.221661413496921e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 305.10 us (93.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.0%)
Info: cfl dt = 8.221661414250668e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4755e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0212775753054024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008632744483062968, dt = 8.221661414250668e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.8%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 267.36 us (93.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.4%)
Info: cfl dt = 8.221661415498194e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5081e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.035985281498354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008714961097205475, dt = 8.221661415498194e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 289.69 us (93.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (61.7%)
Info: cfl dt = 8.221661417542081e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5436e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0520198879660416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008797177711360456, dt = 8.221661417542081e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 332.11 us (94.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.0%)
Info: cfl dt = 8.22166142085755e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6252e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.088864486467356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008879394325535877, dt = 8.22166142085755e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.0%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 299.16 us (93.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.0%)
Info: cfl dt = 8.221661426183641e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4458e+05 | 65536 | 2 | 1.902e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5562396363387316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008961610939744452, dt = 8.221661426183641e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 299.30 us (94.2%)
LB move op cnt : 0
LB apply : 3.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (59.9%)
Info: cfl dt = 8.221661434658597e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5371e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0490664663960643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00904382755400629, dt = 8.221661434658597e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.9%)
patch tree reduce : 1.44 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 297.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.4%)
Info: cfl dt = 8.221661448018937e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4517e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0105346952952474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009126044168352875, dt = 8.221661448018937e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 302.92 us (93.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (59.5%)
Info: cfl dt = 8.22166146888932e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9997e+05 | 65536 | 2 | 1.639e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8063966250833368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009208260782833065, dt = 8.22166146888932e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 317.86 us (94.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (60.8%)
Info: cfl dt = 8.221661501200618e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5463e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0532532630189646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009290477397521958, dt = 8.221661501200618e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.9%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 288.40 us (93.7%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (60.4%)
Info: cfl dt = 8.221661550787187e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6360e+05 | 65536 | 2 | 1.414e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.093735474467384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009372694012533964, dt = 8.221661550787187e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.5%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 336.14 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.4%)
Info: cfl dt = 8.221661626232199e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8529e+05 | 65536 | 2 | 1.701e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.740070311679067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009454910628041836, dt = 8.221661626232199e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 310.14 us (93.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (67.6%)
Info: cfl dt = 8.221661740053047e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6128e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.083271773811413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009537127244304158, dt = 8.221661740053047e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.4%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 355.50 us (94.9%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.8%)
Info: cfl dt = 8.221661910348403e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5679e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0629843958250187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00961934386170469, dt = 8.221661910348403e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 296.24 us (93.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.9%)
Info: cfl dt = 8.221662163065925e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7189e+05 | 65536 | 2 | 1.762e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6795603867171158 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009701560480808172, dt = 8.221662163065925e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 343.72 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.4%)
Info: cfl dt = 8.221662535096405e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2806e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9332496301387532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009783777102438832, dt = 8.221662535096405e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 279.78 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (60.8%)
Info: cfl dt = 8.221663078457541e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4579e+05 | 65536 | 2 | 1.895e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.561680901047545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009865993727789795, dt = 8.221663078457541e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 331.68 us (94.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.2%)
Info: cfl dt = 8.221663865900575e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5076e+05 | 65536 | 2 | 1.868e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5841242338892183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00994821035857437, dt = 8.221663865900575e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.9%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 275.81 us (93.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (57.4%)
Info: cfl dt = 8.221664998356479e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6088e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0814797060752515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010030426997233376, dt = 8.221664998356479e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 307.28 us (94.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.6%)
Info: cfl dt = 8.221666614737061e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5625e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.060541115839792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01011264364721694, dt = 8.221666614737061e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 324.87 us (94.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.7%)
Info: cfl dt = 8.221668904720291e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5995e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.077281527595523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010194860313364312, dt = 8.221668904720291e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 311.91 us (94.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.8%)
Info: cfl dt = 8.22167212527877e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4735e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0203521624119314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010277077002411514, dt = 8.22167212527877e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 278.89 us (93.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (62.8%)
Info: cfl dt = 8.221676621854156e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4486e+05 | 65536 | 2 | 1.900e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5574961329810753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010359293723664302, dt = 8.221676621854156e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 103.61 us (24.1%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.2%)
LB compute : 313.45 us (72.8%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.2%)
Info: cfl dt = 8.221682855236433e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6321e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0919736788410224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010441510489882844, dt = 8.221682855236433e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.4%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 356.33 us (94.9%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.8%)
Info: cfl dt = 8.221691435370798e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4738e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0204838264097726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010523727318435209, dt = 8.221691435370798e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.7%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 272.25 us (93.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (60.4%)
Info: cfl dt = 8.22170316348068e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4961e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.030579522160131 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010605944232788917, dt = 8.22170316348068e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.7%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 275.89 us (93.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (59.7%)
Info: cfl dt = 8.221719084054263e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4298e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.000633280189539 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010688161264423724, dt = 8.221719084054263e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.8%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 311.97 us (93.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (63.6%)
Info: cfl dt = 8.221740548382683e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4610e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0147443180713136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010770378455264266, dt = 8.221740548382683e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.0%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 273.77 us (93.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (56.1%)
Info: cfl dt = 8.221769291446321e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4911e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.028311457615727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010852595860748092, dt = 8.221769291446321e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 287.80 us (93.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (58.6%)
Info: cfl dt = 8.221807524004319e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2312e+05 | 65536 | 2 | 2.028e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4593022816278007 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010934813553662555, dt = 8.221807524004319e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 340.14 us (94.7%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.0%)
Info: cfl dt = 8.221858041731437e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5549e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0571725343950567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011017031628902598, dt = 8.221858041731437e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (2.0%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 271.72 us (93.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (59.4%)
Info: cfl dt = 8.221924353143362e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4820e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.024255301293258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011099250209319914, dt = 8.221924353143362e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 270.00 us (93.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.1%)
Info: cfl dt = 8.222010827833035e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4827e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.02456265631232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011181469452851348, dt = 8.222010827833035e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.9%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 273.26 us (93.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.2%)
Info: cfl dt = 8.222122866182599e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5098e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0368328004710246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011263689561129678, dt = 8.222122866182599e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.9%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 272.88 us (93.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.8%)
Info: cfl dt = 8.222267091196441e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4691e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.018498336809376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011345910789791504, dt = 8.222267091196441e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 311.32 us (94.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.0%)
Info: cfl dt = 8.222451562402441e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9236e+05 | 65536 | 2 | 1.670e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7721510489916796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011428133460703468, dt = 8.222451562402441e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 310.92 us (94.4%)
LB move op cnt : 0
LB apply : 3.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (60.9%)
Info: cfl dt = 8.222686010880407e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9508e+05 | 65536 | 2 | 2.221e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.332775319382875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011510357976327493, dt = 8.222686010880407e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 374.84 us (95.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.6%)
Info: cfl dt = 8.222982093397195e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5430e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0520279276318756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011592584836436298, dt = 8.222982093397195e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.7%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 277.50 us (93.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (58.3%)
Info: cfl dt = 8.223353662370028e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5888e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0727550696395283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01167481465737027, dt = 8.223353662370028e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.8%)
patch tree reduce : 1.42 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 267.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.1%)
Info: cfl dt = 8.223817046970688e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7076e+05 | 65536 | 2 | 1.768e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6747944792006304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01175704819399397, dt = 8.223817046970688e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 339.02 us (94.4%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (61.7%)
Info: cfl dt = 8.22439133917082e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0225e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8171627140348772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011839286364463675, dt = 8.22439133917082e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 309.73 us (94.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.1%)
Info: cfl dt = 8.225098676978775e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4618e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0157350089405552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011921530277855384, dt = 7.846972214461609e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (2.1%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 270.45 us (93.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (63.5%)
Info: cfl dt = 8.225915943778646e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5041e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9414738242064586 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 627.7429415060001 (s) [Godunov][rank=0]
running minmod hllc
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1.96 ms [DataInserterUtility][rank=0]
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 : 4.03 us (57.8%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (0.3%)
patch tree reduce : 962.00 ns (0.2%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 375.76 us (97.1%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=False
Info: time since start : 627.920669254 (s) [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.0%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 335.40 us (94.0%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1782e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.1%)
patch tree reduce : 1.55 us (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 522.45 us (96.2%)
LB move op cnt : 0
LB apply : 4.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (68.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3296e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9553523553538437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 8.221661412416737e-05, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 312.25 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3771e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9768365531418395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00016443322824833475, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 310.00 us (94.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3816e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9788628910026107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0002466498423725021, dt = 5.335015762749794e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 303.23 us (93.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8365e+05 | 65536 | 2 | 1.708e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1243374937814625 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 628.785920152 (s) [Godunov][rank=0]
amr::Godunov: t = 0.00030000000000000003, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (1.7%)
patch tree reduce : 1.85 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 408.99 us (95.0%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (66.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3510e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9650189154403348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00038221661412416743, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 301.28 us (93.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8616e+05 | 65536 | 2 | 1.697e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7440275538322279 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00046443322824833483, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.4%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 351.23 us (94.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3721e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5229519227882462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005466498423725022, dt = 5.335015762749783e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 297.36 us (94.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4207e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.29553057948024 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 629.5218916140001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0006000000000000001, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.21 us (2.2%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 353.51 us (93.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (63.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4288e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0001888607601574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006822166141241675, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 301.15 us (93.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3107e+05 | 65536 | 2 | 1.980e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4952196202189372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007644332282483349, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 328.77 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2289e+05 | 65536 | 2 | 2.030e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4582729250868909 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008466498423725023, dt = 5.335015762749783e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.3%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.3%)
LB compute : 406.82 us (95.3%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (67.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5076e+05 | 65536 | 2 | 1.868e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0279381781148176 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 630.345445919 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0009000000000000001, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (1.9%)
patch tree reduce : 2.66 us (0.7%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 361.39 us (94.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4647e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.016371538847826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009822166141241675, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 301.41 us (94.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3981e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9863030022608723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010644332282483348, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.9%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 275.64 us (93.6%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6372e+05 | 65536 | 2 | 1.802e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.64266939000796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001146649842372502, dt = 5.3350157627498045e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 272.06 us (93.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0646e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1911636524896363 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 631.05271186 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0012000000000000001, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (1.8%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 378.62 us (94.5%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4264e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9991059661653126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012822166141241674, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.5%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 377.23 us (95.1%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (65.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3305e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9557802988675956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013644332282483347, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 327.74 us (94.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3413e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.960670395005467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001446649842372502, dt = 5.3350157627498045e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 325.96 us (94.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (61.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1930e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2288016818409915 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 631.731254504 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0015, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (1.7%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 402.91 us (95.0%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (68.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4861e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.02603250713669 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015822166141241673, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.6%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 346.36 us (94.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4901e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0278644904072727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016644332282483346, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.4%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 342.77 us (94.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4567e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0127655636646016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001746649842372502, dt = 5.335015762749826e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 290.81 us (94.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3460e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2736522459055775 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 632.3961606390001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0018000000000000002, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (1.7%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 396.36 us (95.0%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9739e+05 | 65536 | 2 | 1.649e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.794736364665501 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018822166141241675, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 310.00 us (94.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8345e+05 | 65536 | 2 | 1.709e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.731778870238785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001964433228248335, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (2.0%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 268.54 us (93.2%)
LB move op cnt : 0
LB apply : 3.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1811e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.888310773043156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020466498423725023, dt = 5.3350157627498045e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.4%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 352.01 us (94.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.9%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2898e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2571792157679065 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 633.116405127 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0021000000000000003, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (1.8%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 382.32 us (94.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (67.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8478e+05 | 65536 | 2 | 1.703e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.737765799777292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0021822166141241676, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 281.79 us (93.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1177e+05 | 65536 | 2 | 2.102e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.408048219269577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002264433228248335, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.4%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.2%)
LB compute : 406.51 us (95.1%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (64.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2028e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.898098510060993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002346649842372502, dt = 5.3350157627498045e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.2%)
patch tree reduce : 2.33 us (0.8%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 272.27 us (93.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9405e+05 | 65536 | 2 | 1.663e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.154813683809009 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 633.8948085420001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0024000000000000002, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (1.9%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 343.57 us (94.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (62.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8515e+05 | 65536 | 2 | 1.702e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7394540570091506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024822166141241675, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 308.22 us (94.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2108e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9017210325931764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002564433228248335, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 326.50 us (94.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3600e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9691125023522187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002646649842372502, dt = 5.3350157627498045e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 276.76 us (93.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8266e+05 | 65536 | 2 | 1.713e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1214357433201563 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 634.616110507 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0027, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (1.7%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 370.95 us (94.7%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (64.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4268e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9992895475470884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027822166141241674, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 338.06 us (94.8%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4676e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.017679946121834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028644332282483347, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 298.48 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4842e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0252148707754474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002946649842372502, dt = 5.3350157627498045e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 294.17 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (60.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9471e+05 | 65536 | 2 | 1.660e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1567436110837404 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 635.3029572720001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.003, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (1.8%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 343.49 us (93.9%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8541e+05 | 65536 | 2 | 1.700e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7406111314817165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030822166141241674, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 321.97 us (94.4%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4191e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9957900310150238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031644332282483346, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 292.31 us (94.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4338e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.002452202768871 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003246649842372502, dt = 5.335015762749848e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 331.64 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5584e+05 | 65536 | 2 | 1.842e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.042841284732982 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 636.0248870280001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0033000000000000004, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (1.9%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 367.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (63.7%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3886e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9820194522831427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033822166141241677, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 273.95 us (93.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.5%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7289e+05 | 65536 | 2 | 1.758e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6840649124709148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003464433228248335, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.6%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 296.95 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2843e+05 | 65536 | 2 | 1.995e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4832892378677447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0035466498423725023, dt = 5.3350157627498045e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 302.53 us (93.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3281e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2684071292392751 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 636.7731375950001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0036000000000000003, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (1.9%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 348.46 us (94.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (63.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2849e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.935202356644897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036822166141241676, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 322.67 us (94.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0752e+05 | 65536 | 2 | 2.131e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.388872248982555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003764433228248335, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 329.42 us (94.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3889e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.982156567009532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003846649842372502, dt = 5.3350157627498045e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 330.55 us (94.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.2%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3844e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2848992858894803 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 637.516662136 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0039000000000000003, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.57 us (2.1%)
patch tree reduce : 2.25 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 386.81 us (94.2%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (69.6%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8210e+05 | 65536 | 2 | 1.715e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7256906991182386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0039822166141241675, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 301.29 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (63.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3543e+05 | 65536 | 2 | 1.954e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5148915958021094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004064433228248335, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 332.08 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9158e+05 | 65536 | 2 | 1.674e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7685098523772085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004146649842372503, dt = 5.335015762749761e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (2.0%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 281.84 us (93.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (61.8%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1936e+05 | 65536 | 2 | 2.052e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9359119106435669 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 638.332220041 (s) [Godunov][rank=0]
amr::Godunov: t = 0.004200000000000001, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (1.8%)
patch tree reduce : 2.20 us (0.5%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 404.57 us (94.8%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.0%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0845e+05 | 65536 | 2 | 2.125e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3930452332167265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004282216614124168, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 343.22 us (89.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (65.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8449e+05 | 65536 | 2 | 1.704e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7364825695947994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004364433228248336, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.1%)
patch tree reduce : 1.58 us (0.3%)
gen split merge : 1.22 us (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 530.80 us (96.3%)
LB move op cnt : 0
LB apply : 3.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (62.4%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4492e+05 | 65536 | 2 | 1.900e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5577691945992462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004446649842372504, dt = 5.3350157627496744e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.4%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 346.49 us (95.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.3%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2168e+05 | 65536 | 2 | 2.037e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9427163182568308 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 639.181709642 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0045000000000000005, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (1.5%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 427.63 us (95.3%)
LB move op cnt : 0
LB apply : 3.74 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.1%)
Info: cfl dt = 8.221661412416737e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2406e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9151633895727234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004582216614124168, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 346.35 us (94.7%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.3%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5321e+05 | 65536 | 2 | 1.855e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5952070483760377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004664433228248336, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 310.78 us (94.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.5%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0722e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.839119086168635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004746649842372504, dt = 5.3350157627496744e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 351.99 us (94.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.3%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6646e+05 | 65536 | 2 | 1.788e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0739548743846588 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 639.9349855620001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0048000000000000004, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (1.8%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 383.70 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (63.7%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9926e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8031646299497686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004882216614124168, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 313.47 us (94.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.9%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0660e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8363432960739257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004964433228248336, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 297.78 us (94.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.4%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1833e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.889300894243507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005046649842372504, dt = 5.3350157627496744e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.0%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 271.30 us (93.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.4%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9667e+05 | 65536 | 2 | 1.652e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1624753476875853 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 640.654750186 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0051, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (1.7%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 395.77 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (69.1%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6286e+05 | 65536 | 2 | 1.806e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6387940417501328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005182216614124168, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.6%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 339.77 us (94.2%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.3%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6215e+05 | 65536 | 2 | 1.810e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6355719049382027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005264433228248336, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 307.91 us (94.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.0%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6429e+05 | 65536 | 2 | 1.799e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6452444882898805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0053466498423725035, dt = 5.3350157627496744e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 328.94 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.0%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6419e+05 | 65536 | 2 | 1.800e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.067285526653467 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 641.456376243 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0054, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (1.7%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 369.03 us (94.7%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (63.1%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0045e+05 | 65536 | 2 | 1.637e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.808544904424241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005482216614124168, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 299.75 us (93.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.2%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2722e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9294721031682613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005564433228248336, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 288.52 us (93.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.8%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2652e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9262889040221525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0056466498423725035, dt = 5.3350157627496744e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 312.04 us (93.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.2%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3894e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.286356087127644 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 642.147783238 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0057, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.16 us (2.1%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 362.92 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (67.7%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3884e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9819205901338235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005782216614124168, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 301.58 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (60.5%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3831e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9795348340769308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005864433228248336, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.0%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 294.29 us (93.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.6%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7212e+05 | 65536 | 2 | 1.761e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.680610014282143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005946649842372503, dt = 5.3350157627496744e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.8%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 270.02 us (93.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.8%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3256e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2676572611210428 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 642.851278993 (s) [Godunov][rank=0]
amr::Godunov: t = 0.006, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.0%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 332.25 us (93.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (65.0%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3946e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9847473619919416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006082216614124168, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.8%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 271.86 us (93.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (60.7%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6095e+05 | 65536 | 2 | 1.816e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.630161927852839 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006164433228248336, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 292.32 us (93.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (59.6%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6290e+05 | 65536 | 2 | 1.806e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6389803560287715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006246649842372503, dt = 5.335015762749761e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 295.79 us (93.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.6%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8351e+05 | 65536 | 2 | 1.709e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1239078626672412 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 643.6116700360001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.006300000000000001, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.7%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 364.64 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (61.3%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6886e+05 | 65536 | 2 | 1.777e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6658845622027898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006382216614124169, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 299.98 us (94.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (60.6%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2425e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9160521018324446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006464433228248336, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 318.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.6%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4491e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0093367133519653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006546649842372504, dt = 5.3350157627496744e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 288.10 us (93.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.3%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3701e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2806922632611955 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 644.3138066180001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.006600000000000001, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.1%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 329.57 us (93.7%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.9%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3793e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9778195451542886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0066822166141241686, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 288.84 us (93.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.7%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3439e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9618177893055568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006764433228248336, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 334.09 us (94.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.5%)
Info: cfl dt = 8.22166141241674e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2919e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9383653191670551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006846649842372504, dt = 5.3350157627496744e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.6%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 300.81 us (94.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.0%)
Info: cfl dt = 8.221661412416741e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3050e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2616322097376769 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 644.993137494 (s) [Godunov][rank=0]
amr::Godunov: t = 0.006900000000000001, dt = 8.221661412416741e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (2.0%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 351.22 us (94.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (59.1%)
Info: cfl dt = 8.221661412416745e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3501e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.964641820118166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0069822166141241685, dt = 8.221661412416745e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 293.57 us (93.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (60.3%)
Info: cfl dt = 8.221661412416756e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2322e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9114039045076956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007064433228248336, dt = 8.221661412416756e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 290.94 us (93.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.1%)
Info: cfl dt = 8.221661412416774e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3287e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.954987896392598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007146649842372504, dt = 5.3350157627496744e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 285.63 us (93.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (60.7%)
Info: cfl dt = 8.221661412416797e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3692e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2804547707688938 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 645.673659977 (s) [Godunov][rank=0]
amr::Godunov: t = 0.007200000000000001, dt = 8.221661412416797e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (1.7%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 391.03 us (94.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (63.9%)
Info: cfl dt = 8.221661412416859e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2135e+05 | 65536 | 2 | 2.039e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4513121239362146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007282216614124168, dt = 8.221661412416859e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.4%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 376.74 us (95.0%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (67.6%)
Info: cfl dt = 8.221661412416983e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5824e+05 | 65536 | 2 | 1.829e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6179131273514742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007364433228248337, dt = 8.221661412416983e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 343.14 us (94.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.5%)
Info: cfl dt = 8.221661412417222e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9570e+05 | 65536 | 2 | 1.656e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7870885171991038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0074466498423725064, dt = 5.335015762749414e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 342.68 us (94.6%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.3%)
Info: cfl dt = 8.2216614124175e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1083e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2039892879182859 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 646.464631736 (s) [Godunov][rank=0]
amr::Godunov: t = 0.007500000000000001, dt = 8.2216614124175e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (1.7%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 392.47 us (94.8%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (65.8%)
Info: cfl dt = 8.221661412418221e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3114e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.947174043919401 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007582216614124175, dt = 8.221661412418221e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 334.43 us (94.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.0%)
Info: cfl dt = 8.221661412419575e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3157e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9490989747669356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007664433228248358, dt = 8.221661412419575e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.2%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 274.00 us (92.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.8%)
Info: cfl dt = 8.221661412422092e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3359e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.958221568519705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007746649842372553, dt = 5.3350157627447305e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 297.66 us (93.8%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (60.5%)
Info: cfl dt = 8.22166141242484e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3492e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2745926009913076 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 647.144858296 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0078000000000000005, dt = 8.22166141242484e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (1.9%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 336.21 us (94.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.6%)
Info: cfl dt = 8.221661412431759e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3340e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9573615052090119 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007882216614124249, dt = 8.221661412431759e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.5%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 382.85 us (95.0%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.5%)
Info: cfl dt = 8.221661412444174e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0734e+05 | 65536 | 2 | 2.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.388047860338863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007964433228248566, dt = 8.221661412444174e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 337.93 us (94.7%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.8%)
Info: cfl dt = 8.221661412466216e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0150e+05 | 65536 | 2 | 2.174e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3616643874315282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008046649842373008, dt = 5.3350157626993674e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.3%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 402.85 us (95.5%)
LB move op cnt : 0
LB apply : 3.44 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (60.4%)
Info: cfl dt = 8.221661412489296e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0449e+05 | 65536 | 2 | 2.152e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8923430191424677 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 648.0157132290001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.008100000000000001, dt = 8.221661412489296e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (1.8%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 399.97 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (65.4%)
Info: cfl dt = 8.221661412545618e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4428e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.006498657602287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008182216614124894, dt = 8.221661412545618e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 330.91 us (94.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.3%)
Info: cfl dt = 8.221661412642587e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4299e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.000694212888873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00826443322825035, dt = 8.221661412642587e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 306.59 us (94.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.8%)
Info: cfl dt = 8.221661412807881e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4116e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9924225214700906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008346649842376777, dt = 5.335015762322412e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.7%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 329.92 us (94.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.0%)
Info: cfl dt = 8.221661412974226e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7906e+05 | 65536 | 2 | 1.729e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1108651121569149 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 648.708103456 (s) [Godunov][rank=0]
amr::Godunov: t = 0.008400000000000001, dt = 8.221661412974226e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 372.29 us (94.6%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.7%)
Info: cfl dt = 8.221661413369184e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4744e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0207514805767177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008482216614129744, dt = 8.221661413369184e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.4%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 359.50 us (94.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.0%)
Info: cfl dt = 8.221661414023743e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7874e+05 | 65536 | 2 | 1.730e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7105214420356318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008564433228263436, dt = 8.221661414023743e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 332.83 us (94.3%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.7%)
Info: cfl dt = 8.221661415098693e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3433e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9615645561351929 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008646649842403674, dt = 5.335015759632723e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 303.23 us (93.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.4%)
Info: cfl dt = 8.221661416141767e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6064e+05 | 65536 | 2 | 1.817e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0569102636957894 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 649.4403133530001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.008700000000000001, dt = 8.221661416141767e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (2.1%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 335.41 us (93.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.6%)
Info: cfl dt = 8.221661418557305e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4461e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.007977267584496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008782216614161419, dt = 8.221661418557305e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 311.99 us (94.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (61.1%)
Info: cfl dt = 8.221661422422239e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3418e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.96086777118485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008864433228346992, dt = 8.221661422422239e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 365.95 us (94.8%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.7%)
Info: cfl dt = 8.221661428554604e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2891e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9370909527755313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008946649842571215, dt = 5.3350157428785905e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 312.53 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.9%)
Info: cfl dt = 8.221661434307755e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4275e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2975147190479133 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 650.110656521 (s) [Godunov][rank=0]
amr::Godunov: t = 0.009000000000000001, dt = 8.221661434307755e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (1.8%)
patch tree reduce : 2.56 us (0.7%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 369.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.3%)
Info: cfl dt = 8.221661447329104e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3876e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9815715180002982 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009082216614343079, dt = 8.221661447329104e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 303.03 us (93.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.0%)
Info: cfl dt = 8.221661467494495e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9563e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7867613822476913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00916443322881637, dt = 8.221661467494495e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.09 us (7.2%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 320.75 us (88.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.5%)
Info: cfl dt = 8.221661498481748e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3436e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9616900268505535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009246649843491314, dt = 5.335015650868684e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 297.16 us (94.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (60.6%)
Info: cfl dt = 8.221661526653278e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3568e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2768162175850704 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 650.8029080040001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.009300000000000001, dt = 8.221661526653278e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (1.9%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 22.44 us (5.9%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 338.13 us (88.7%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.5%)
Info: cfl dt = 8.221661589079605e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0308e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8204501467097987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009382216615266534, dt = 8.221661589079605e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 312.16 us (94.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.5%)
Info: cfl dt = 8.221661682850214e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3349e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.957787819622409 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00946443323115733, dt = 8.221661682850214e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 301.80 us (94.0%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.1%)
Info: cfl dt = 8.221661822686468e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3051e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9443054782486104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009546649847985833, dt = 5.33501520141675e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 304.35 us (94.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.0%)
Info: cfl dt = 8.221661946123446e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3150e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.264549893590418 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 651.496088061 (s) [Godunov][rank=0]
amr::Godunov: t = 0.009600000000000001, dt = 8.221661946123446e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 402.29 us (95.1%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (63.7%)
Info: cfl dt = 8.221662214317213e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4540e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0115521803578105 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009682216619461236, dt = 8.221662214317213e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 288.16 us (93.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.7%)
Info: cfl dt = 8.22166260577189e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4674e+05 | 65536 | 2 | 1.890e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.565969957705718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009764433241604408, dt = 8.22166260577189e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (2.0%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 271.09 us (93.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.6%)
Info: cfl dt = 8.22166317326734e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9131e+05 | 65536 | 2 | 1.675e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7672899206380153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009846649867662127, dt = 5.335013233787392e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 294.32 us (94.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (57.9%)
Info: cfl dt = 8.221663660463793e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7940e+05 | 65536 | 2 | 1.727e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1118730045745369 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 652.2453229250001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0099, dt = 8.221663660463793e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (1.9%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 340.30 us (94.1%)
LB move op cnt : 0
LB apply : 4.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (63.3%)
Info: cfl dt = 8.221664699651166e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7987e+05 | 65536 | 2 | 1.725e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7156146030811397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00998221663660464, dt = 8.221664699651166e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 330.73 us (94.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (64.5%)
Info: cfl dt = 8.221666175779364e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3991e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9867621998085165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01006443328360115, dt = 8.221666175779364e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.9%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.69 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 297.88 us (93.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.2%)
Info: cfl dt = 8.22166825914724e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1471e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8729644321834555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010146649945358945, dt = 5.335005464105619e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.9%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 278.07 us (93.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (61.6%)
Info: cfl dt = 8.221670001062295e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7244e+05 | 65536 | 2 | 1.760e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0914649517659325 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 652.9748504510001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0102, dt = 8.221670001062295e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.8%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 348.02 us (94.2%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.6%)
Info: cfl dt = 8.221673652452565e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4536e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0113673539801282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010282216700010624, dt = 8.221673652452565e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.4%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 375.81 us (94.8%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.5%)
Info: cfl dt = 8.221678706520262e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1479e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8733274230653938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01036443343653515, dt = 8.221678706520262e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.1%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.48 us (0.5%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 269.13 us (93.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.6%)
Info: cfl dt = 8.22168565951049e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3776e+05 | 65536 | 2 | 1.940e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5254238426032556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010446650223600352, dt = 5.334977639964884e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.0%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 292.91 us (93.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.3%)
Info: cfl dt = 8.221691327777472e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3504e+05 | 65536 | 2 | 1.956e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9818578083100418 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 653.7473092280001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0105, dt = 8.221691327777472e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (1.7%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 396.20 us (95.0%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (65.5%)
Info: cfl dt = 8.221703014816065e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3334e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.957115532458794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010582216913277775, dt = 8.221703014816065e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 298.64 us (94.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (59.8%)
Info: cfl dt = 8.221718794449508e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7750e+05 | 65536 | 2 | 1.736e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7049022545079962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010664433943425936, dt = 8.221718794449508e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 287.84 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.3%)
Info: cfl dt = 8.221739975523554e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3022e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9430081382770628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010746651131370431, dt = 5.334886862956925e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 331.02 us (94.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.3%)
Info: cfl dt = 8.221756827208893e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3050e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2615991748236566 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 654.449516269 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0108, dt = 8.221756827208893e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.9%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 335.55 us (94.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (63.7%)
Info: cfl dt = 8.221791028250544e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5289e+05 | 65536 | 2 | 1.857e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5937797768543247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010882217568272089, dt = 8.221791028250544e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.8%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 268.96 us (93.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (59.7%)
Info: cfl dt = 8.221836110819141e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2874e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9363343004828586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010964435478554593, dt = 8.221836110819141e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 324.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.4%)
Info: cfl dt = 8.221895202229865e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4033e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9886924355986066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011046653839662786, dt = 5.334616033721498e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 329.36 us (94.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.4%)
Info: cfl dt = 8.221941115122871e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4527e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3048039504011208 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 655.157336695 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0111, dt = 8.221941115122871e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.8%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 363.71 us (94.5%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (63.2%)
Info: cfl dt = 8.222032894483579e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3179e+05 | 65536 | 2 | 1.975e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.498491987830712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01118221941115123, dt = 8.222032894483579e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 323.22 us (94.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.9%)
Info: cfl dt = 8.222151083568567e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0996e+05 | 65536 | 2 | 2.114e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3999539073547478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011264439740096065, dt = 8.222151083568567e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 346.44 us (94.8%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.5%)
Info: cfl dt = 8.222302447867297e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3176e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9500836652982123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01134666125093175, dt = 5.333874906825013e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 299.14 us (93.9%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.3%)
Info: cfl dt = 8.222417351668559e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1239e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2083025684003992 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 655.966390001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0114, dt = 8.222417351668559e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (1.9%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 365.97 us (94.1%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (67.4%)
Info: cfl dt = 8.222643719360103e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8365e+05 | 65536 | 2 | 1.708e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7328132401824008 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011482224173516686, dt = 8.222643719360103e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 306.22 us (94.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.1%)
Info: cfl dt = 8.222928642163885e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3882e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.982065794562004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011564450610710287, dt = 8.222928642163885e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 330.32 us (94.3%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.6%)
Info: cfl dt = 8.223285343814189e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9213e+05 | 65536 | 2 | 1.671e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7712366045308807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011646679897131926, dt = 5.332010286807423e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 303.36 us (94.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (60.7%)
Info: cfl dt = 8.223549926029232e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4339e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2986861168073003 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 656.675353992 (s) [Godunov][rank=0]
amr::Godunov: t = 0.0117, dt = 8.223549926029232e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (1.8%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 377.66 us (94.6%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (63.1%)
Info: cfl dt = 8.224063974063606e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3751e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9763834891638292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011782235499260293, dt = 8.224063974063606e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 295.27 us (93.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.7%)
Info: cfl dt = 8.224696627570122e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4052e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9900958646148568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01186447613900093, dt = 8.224696627570122e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (2.0%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 283.56 us (93.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (61.9%)
Info: cfl dt = 8.225471153671995e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3003e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9428710573413865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01194672310527663, dt = 5.3276894723369717e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 286.16 us (93.8%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.2%)
Info: cfl dt = 8.226032306387038e-05 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2748e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2510654274173196 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 657.352968269 (s) [Godunov][rank=0]
none_hll
{'none_hll': [{'rho': array([0.98643656, 0.98643656, 0.98643656, 0.98643656, 0.98187523,
0.98187523, 0.98187523, 0.98187523, 0.97629826, 0.97629826,
0.97629826, 0.97629826, 0.9696374 , 0.9696374 , 0.9696374 ,
0.9696374 , 0.96185114, 0.96185114, 0.96185114, 0.96185114,
0.95292797, 0.95292797, 0.95292797, 0.95292797, 0.94288584,
0.94288584, 0.94288584, 0.94288584, 0.9317694 , 0.9317694 ,
0.9317694 , 0.9317694 , 0.91964579, 0.91964579, 0.91964579,
0.91964579, 0.90659974, 0.90659974, 0.90659974, 0.90659974,
0.89272851, 0.89272851, 0.89272851, 0.89272851, 0.87813721,
0.87813721, 0.87813721, 0.87813721, 0.86293485, 0.86293485,
0.86293485, 0.86293485, 0.84723115, 0.84723115, 0.84723115,
0.84723115, 0.83113423, 0.83113423, 0.83113423, 0.83113423,
0.81474914, 0.81474914, 0.81474914, 0.81474914, 0.79817706,
0.79817706, 0.79817706, 0.79817706, 0.78151514, 0.78151514,
0.78151514, 0.78151514, 0.7648568 , 0.7648568 , 0.7648568 ,
0.7648568 , 0.74829246, 0.74829246, 0.74829246, 0.74829246,
0.73191055, 0.73191055, 0.73191055, 0.73191055, 0.71579881,
0.71579881, 0.71579881, 0.71579881, 0.70004568, 0.70004568,
0.70004568, 0.70004568, 0.68474183, 0.68474183, 0.68474183,
0.68474183, 0.66998162, 0.66998162, 0.66998162, 0.66998162,
0.65586424, 0.65586424, 0.65586424, 0.65586424, 0.6424944 ,
0.6424944 , 0.6424944 , 0.6424944 , 0.62998191, 0.62998191,
0.62998191, 0.62998191, 0.61843985, 0.61843985, 0.61843985,
0.61843985, 0.60798063, 0.60798063, 0.60798063, 0.60798063,
0.59870956, 0.59870956, 0.59870956, 0.59870956, 0.59071647,
0.59071647, 0.59071647, 0.59071647, 0.58406669, 0.58406669,
0.58406669, 0.58406669, 0.57879508, 0.57879508, 0.57879508,
0.57879508, 0.57490833, 0.57490833, 0.57490833, 0.57490833,
0.57240215, 0.57240215, 0.57240215, 0.57240215, 0.57129898,
0.57129898, 0.57129898, 0.57129898, 0.57170911, 0.57170911,
0.57170911, 0.57170911, 0.57391234, 0.57391234, 0.57391234,
0.57391234, 0.5784582 , 0.5784582 , 0.5784582 , 0.5784582 ,
0.58628442, 0.58628442, 0.58628442, 0.58628442, 0.5988519 ,
0.5988519 , 0.5988519 , 0.5988519 , 0.61830681, 0.61830681,
0.61830681, 0.61830681, 0.647687 , 0.647687 , 0.647687 ,
0.647687 , 0.6912014 , 0.6912014 , 0.6912014 , 0.6912014 ,
0.75462142, 0.75462142, 0.75462142, 0.75462142, 0.84582344,
0.84582344, 0.84582344, 0.84582344, 0.97548882, 0.97548882,
0.97548882, 0.97548882, 1.15786481, 1.15786481, 1.15786481,
1.15786481, 1.41124647, 1.41124647, 1.41124647, 1.41124647,
1.75733819, 1.75733819, 1.75733819, 1.75733819, 2.21753898,
2.21753898, 2.21753898, 2.21753898, 2.80005074, 2.80005074,
2.80005074, 2.80005074, 3.44725292, 3.44725292, 3.44725292,
3.44725292, 3.82905469, 3.82905469, 3.82905469, 3.82905469,
3.12499981, 3.12499981, 3.12499981, 3.12499981, 1.3656139 ,
1.3656139 , 1.3656139 , 1.3656139 , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.08809248, -19.08809248, -19.08809248, -19.08809248,
-18.91571278, -18.91571278, -18.91571278, -18.91571278,
-18.70427812, -18.70427812, -18.70427812, -18.70427812,
-18.45066681, -18.45066681, -18.45066681, -18.45066681,
-18.15264725, -18.15264725, -18.15264725, -18.15264725,
-17.80897874, -17.80897874, -17.80897874, -17.80897874,
-17.41940216, -17.41940216, -17.41940216, -17.41940216,
-16.98456454, -16.98456454, -16.98456454, -16.98456454,
-16.50589809, -16.50589809, -16.50589809, -16.50589809,
-15.98547575, -15.98547575, -15.98547575, -15.98547575,
-15.42586267, -15.42586267, -15.42586267, -15.42586267,
-14.82997877, -14.82997877, -14.82997877, -14.82997877,
-14.20098192, -14.20098192, -14.20098192, -14.20098192,
-13.54217671, -13.54217671, -13.54217671, -13.54217671,
-12.85695051, -12.85695051, -12.85695051, -12.85695051,
-12.14873569, -12.14873569, -12.14873569, -12.14873569,
-11.42099626, -11.42099626, -11.42099626, -11.42099626,
-10.6772362 , -10.6772362 , -10.6772362 , -10.6772362 ,
-9.92102727, -9.92102727, -9.92102727, -9.92102727,
-9.15605434, -9.15605434, -9.15605434, -9.15605434,
-8.38617637, -8.38617637, -8.38617637, -8.38617637,
-7.61550147, -7.61550147, -7.61550147, -7.61550147,
-6.84847361, -6.84847361, -6.84847361, -6.84847361,
-6.08996685, -6.08996685, -6.08996685, -6.08996685,
-5.34537978, -5.34537978, -5.34537978, -5.34537978,
-4.62071699, -4.62071699, -4.62071699, -4.62071699,
-3.92263644, -3.92263644, -3.92263644, -3.92263644,
-3.25843008, -3.25843008, -3.25843008, -3.25843008,
-2.6358936 , -2.6358936 , -2.6358936 , -2.6358936 ,
-2.06303263, -2.06303263, -2.06303263, -2.06303263,
-1.54755819, -1.54755819, -1.54755819, -1.54755819,
-1.09615573, -1.09615573, -1.09615573, -1.09615573,
-0.7135819 , -0.7135819 , -0.7135819 , -0.7135819 ,
-0.40174647, -0.40174647, -0.40174647, -0.40174647,
-0.15903767, -0.15903767, -0.15903767, -0.15903767,
0.01982193, 0.01982193, 0.01982193, 0.01982193,
0.14321155, 0.14321155, 0.14321155, 0.14321155,
0.22140683, 0.22140683, 0.22140683, 0.22140683,
0.2650672 , 0.2650672 , 0.2650672 , 0.2650672 ,
0.28387795, 0.28387795, 0.28387795, 0.28387795,
0.28571464, 0.28571464, 0.28571464, 0.28571464,
0.27644787, 0.27644787, 0.27644787, 0.27644787,
0.2602505 , 0.2602505 , 0.2602505 , 0.2602505 ,
0.24013665, 0.24013665, 0.24013665, 0.24013665,
0.21847094, 0.21847094, 0.21847094, 0.21847094,
0.19728409, 0.19728409, 0.19728409, 0.19728409,
0.17833933, 0.17833933, 0.17833933, 0.17833933,
0.16296261, 0.16296261, 0.16296261, 0.16296261,
0.15165979, 0.15165979, 0.15165979, 0.15165979,
0.14349381, 0.14349381, 0.14349381, 0.14349381,
0.13494011, 0.13494011, 0.13494011, 0.13494011,
0.11621768, 0.11621768, 0.11621768, 0.11621768,
0.05201945, 0.05201945, 0.05201945, 0.05201945,
-0.2248209 , -0.2248209 , -0.2248209 , -0.2248209 ,
-1.41256056, -1.41256056, -1.41256056, -1.41256056,
-5.32034825, -5.32034825, -5.32034825, -5.32034825,
-15.36743081, -15.36743081, -15.36743081, -15.36743081,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([9.81089727e+02, 9.81089727e+02, 9.81089727e+02, 9.81089727e+02,
9.74759239e+02, 9.74759239e+02, 9.74759239e+02, 9.74759239e+02,
9.67040664e+02, 9.67040664e+02, 9.67040664e+02, 9.67040664e+02,
9.57850178e+02, 9.57850178e+02, 9.57850178e+02, 9.57850178e+02,
9.47144747e+02, 9.47144747e+02, 9.47144747e+02, 9.47144747e+02,
9.34925440e+02, 9.34925440e+02, 9.34925440e+02, 9.34925440e+02,
9.21235831e+02, 9.21235831e+02, 9.21235831e+02, 9.21235831e+02,
9.06157333e+02, 9.06157333e+02, 9.06157333e+02, 9.06157333e+02,
8.89802452e+02, 8.89802452e+02, 8.89802452e+02, 8.89802452e+02,
8.72307073e+02, 8.72307073e+02, 8.72307073e+02, 8.72307073e+02,
8.53822684e+02, 8.53822684e+02, 8.53822684e+02, 8.53822684e+02,
8.34509276e+02, 8.34509276e+02, 8.34509276e+02, 8.34509276e+02,
8.14529348e+02, 8.14529348e+02, 8.14529348e+02, 8.14529348e+02,
7.94043216e+02, 7.94043216e+02, 7.94043216e+02, 7.94043216e+02,
7.73205652e+02, 7.73205652e+02, 7.73205652e+02, 7.73205652e+02,
7.52163729e+02, 7.52163729e+02, 7.52163729e+02, 7.52163729e+02,
7.31055735e+02, 7.31055735e+02, 7.31055735e+02, 7.31055735e+02,
7.10010929e+02, 7.10010929e+02, 7.10010929e+02, 7.10010929e+02,
6.89149991e+02, 6.89149991e+02, 6.89149991e+02, 6.89149991e+02,
6.68585986e+02, 6.68585986e+02, 6.68585986e+02, 6.68585986e+02,
6.48425713e+02, 6.48425713e+02, 6.48425713e+02, 6.48425713e+02,
6.28771322e+02, 6.28771322e+02, 6.28771322e+02, 6.28771322e+02,
6.09722091e+02, 6.09722091e+02, 6.09722091e+02, 6.09722091e+02,
5.91376246e+02, 5.91376246e+02, 5.91376246e+02, 5.91376246e+02,
5.73832666e+02, 5.73832666e+02, 5.73832666e+02, 5.73832666e+02,
5.57192250e+02, 5.57192250e+02, 5.57192250e+02, 5.57192250e+02,
5.41558609e+02, 5.41558609e+02, 5.41558609e+02, 5.41558609e+02,
5.27037604e+02, 5.27037604e+02, 5.27037604e+02, 5.27037604e+02,
5.13735105e+02, 5.13735105e+02, 5.13735105e+02, 5.13735105e+02,
5.01752265e+02, 5.01752265e+02, 5.01752265e+02, 5.01752265e+02,
4.91177719e+02, 4.91177719e+02, 4.91177719e+02, 4.91177719e+02,
4.82076611e+02, 4.82076611e+02, 4.82076611e+02, 4.82076611e+02,
4.74477430e+02, 4.74477430e+02, 4.74477430e+02, 4.74477430e+02,
4.68359105e+02, 4.68359105e+02, 4.68359105e+02, 4.68359105e+02,
4.63642342e+02, 4.63642342e+02, 4.63642342e+02, 4.63642342e+02,
4.60189553e+02, 4.60189553e+02, 4.60189553e+02, 4.60189553e+02,
4.57816053e+02, 4.57816053e+02, 4.57816053e+02, 4.57816053e+02,
4.56311386e+02, 4.56311386e+02, 4.56311386e+02, 4.56311386e+02,
4.55465320e+02, 4.55465320e+02, 4.55465320e+02, 4.55465320e+02,
4.55090849e+02, 4.55090849e+02, 4.55090849e+02, 4.55090849e+02,
4.55037987e+02, 4.55037987e+02, 4.55037987e+02, 4.55037987e+02,
4.55196337e+02, 4.55196337e+02, 4.55196337e+02, 4.55196337e+02,
4.55488829e+02, 4.55488829e+02, 4.55488829e+02, 4.55488829e+02,
4.55861344e+02, 4.55861344e+02, 4.55861344e+02, 4.55861344e+02,
4.56272676e+02, 4.56272676e+02, 4.56272676e+02, 4.56272676e+02,
4.56687434e+02, 4.56687434e+02, 4.56687434e+02, 4.56687434e+02,
4.57072673e+02, 4.57072673e+02, 4.57072673e+02, 4.57072673e+02,
4.57398268e+02, 4.57398268e+02, 4.57398268e+02, 4.57398268e+02,
4.57641962e+02, 4.57641962e+02, 4.57641962e+02, 4.57641962e+02,
4.57800997e+02, 4.57800997e+02, 4.57800997e+02, 4.57800997e+02,
4.57901826e+02, 4.57901826e+02, 4.57901826e+02, 4.57901826e+02,
4.57899342e+02, 4.57899342e+02, 4.57899342e+02, 4.57899342e+02,
4.56697527e+02, 4.56697527e+02, 4.56697527e+02, 4.56697527e+02,
4.46045725e+02, 4.46045725e+02, 4.46045725e+02, 4.46045725e+02,
3.88965031e+02, 3.88965031e+02, 3.88965031e+02, 3.88965031e+02,
2.27741725e+02, 2.27741725e+02, 2.27741725e+02, 2.27741725e+02,
3.27405159e+01, 3.27405159e+01, 3.27405159e+01, 3.27405159e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_rusanov': [{'rho': array([0.99936044, 0.99936044, 0.99936044, 0.99936044, 0.9985534 ,
0.9985534 , 0.9985534 , 0.9985534 , 0.9973132 , 0.9973132 ,
0.9973132 , 0.9973132 , 0.99515557, 0.99515557, 0.99515557,
0.99515557, 0.99170689, 0.99170689, 0.99170689, 0.99170689,
0.98648889, 0.98648889, 0.98648889, 0.98648889, 0.97905098,
0.97905098, 0.97905098, 0.97905098, 0.96904495, 0.96904495,
0.96904495, 0.96904495, 0.95630818, 0.95630818, 0.95630818,
0.95630818, 0.94090147, 0.94090147, 0.94090147, 0.94090147,
0.92309062, 0.92309062, 0.92309062, 0.92309062, 0.9032792 ,
0.9032792 , 0.9032792 , 0.9032792 , 0.88191867, 0.88191867,
0.88191867, 0.88191867, 0.85942638, 0.85942638, 0.85942638,
0.85942638, 0.83614726, 0.83614726, 0.83614726, 0.83614726,
0.81247789, 0.81247789, 0.81247789, 0.81247789, 0.78923474,
0.78923474, 0.78923474, 0.78923474, 0.76675375, 0.76675375,
0.76675375, 0.76675375, 0.74498531, 0.74498531, 0.74498531,
0.74498531, 0.72392675, 0.72392675, 0.72392675, 0.72392675,
0.70357996, 0.70357996, 0.70357996, 0.70357996, 0.68397009,
0.68397009, 0.68397009, 0.68397009, 0.66515637, 0.66515637,
0.66515637, 0.66515637, 0.64724516, 0.64724516, 0.64724516,
0.64724516, 0.63040323, 0.63040323, 0.63040323, 0.63040323,
0.61486697, 0.61486697, 0.61486697, 0.61486697, 0.60093753,
0.60093753, 0.60093753, 0.60093753, 0.58894559, 0.58894559,
0.58894559, 0.58894559, 0.5791716 , 0.5791716 , 0.5791716 ,
0.5791716 , 0.57173786, 0.57173786, 0.57173786, 0.57173786,
0.56656387, 0.56656387, 0.56656387, 0.56656387, 0.56343019,
0.56343019, 0.56343019, 0.56343019, 0.56206964, 0.56206964,
0.56206964, 0.56206964, 0.56186718, 0.56186718, 0.56186718,
0.56186718, 0.5622292 , 0.5622292 , 0.5622292 , 0.5622292 ,
0.56352241, 0.56352241, 0.56352241, 0.56352241, 0.56619671,
0.56619671, 0.56619671, 0.56619671, 0.56859552, 0.56859552,
0.56859552, 0.56859552, 0.56940349, 0.56940349, 0.56940349,
0.56940349, 0.56923843, 0.56923843, 0.56923843, 0.56923843,
0.56845654, 0.56845654, 0.56845654, 0.56845654, 0.56753857,
0.56753857, 0.56753857, 0.56753857, 0.5672215 , 0.5672215 ,
0.5672215 , 0.5672215 , 0.56822016, 0.56822016, 0.56822016,
0.56822016, 0.57247 , 0.57247 , 0.57247 , 0.57247 ,
0.5839843 , 0.5839843 , 0.5839843 , 0.5839843 , 0.61018524,
0.61018524, 0.61018524, 0.61018524, 0.66484813, 0.66484813,
0.66484813, 0.66484813, 0.77317594, 0.77317594, 0.77317594,
0.77317594, 0.98031916, 0.98031916, 0.98031916, 0.98031916,
1.36620913, 1.36620913, 1.36620913, 1.36620913, 2.05407781,
2.05407781, 2.05407781, 2.05407781, 3.0909881 , 3.0909881 ,
3.0909881 , 3.0909881 , 4.09901557, 4.09901557, 4.09901557,
4.09901557, 4.67576107, 4.67576107, 4.67576107, 4.67576107,
3.58271781, 3.58271781, 3.58271781, 3.58271781, 1.62778827,
1.62778827, 1.62778827, 1.62778827, 1.05141403, 1.05141403,
1.05141403, 1.05141403, 1.002022 , 1.002022 , 1.002022 ,
1.002022 , 1.00002489, 1.00002489, 1.00002489, 1.00002489,
1.00000006, 1.00000006, 1.00000006, 1.00000006, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.57351664, -19.57351664, -19.57351664, -19.57351664,
-19.54329587, -19.54329587, -19.54329587, -19.54329587,
-19.49682652, -19.49682652, -19.49682652, -19.49682652,
-19.41587326, -19.41587326, -19.41587326, -19.41587326,
-19.28619913, -19.28619913, -19.28619913, -19.28619913,
-19.08931809, -19.08931809, -19.08931809, -19.08931809,
-18.80723575, -18.80723575, -18.80723575, -18.80723575,
-18.42502783, -18.42502783, -18.42502783, -18.42502783,
-17.93388119, -17.93388119, -17.93388119, -17.93388119,
-17.33267704, -17.33267704, -17.33267704, -17.33267704,
-16.62769653, -16.62769653, -16.62769653, -16.62769653,
-15.83056805, -15.83056805, -15.83056805, -15.83056805,
-14.95522479, -14.95522479, -14.95522479, -14.95522479,
-14.01470288, -14.01470288, -14.01470288, -14.01470288,
-13.01895689, -13.01895689, -13.01895689, -13.01895689,
-11.98720526, -11.98720526, -11.98720526, -11.98720526,
-10.9521084 , -10.9521084 , -10.9521084 , -10.9521084 ,
-9.9234869 , -9.9234869 , -9.9234869 , -9.9234869 ,
-8.90475082, -8.90475082, -8.90475082, -8.90475082,
-7.89631245, -7.89631245, -7.89631245, -7.89631245,
-6.8995546 , -6.8995546 , -6.8995546 , -6.8995546 ,
-5.91698346, -5.91698346, -5.91698346, -5.91698346,
-4.95296473, -4.95296473, -4.95296473, -4.95296473,
-4.01464772, -4.01464772, -4.01464772, -4.01464772,
-3.11301518, -3.11301518, -3.11301518, -3.11301518,
-2.2637381 , -2.2637381 , -2.2637381 , -2.2637381 ,
-1.48720372, -1.48720372, -1.48720372, -1.48720372,
-0.80685477, -0.80685477, -0.80685477, -0.80685477,
-0.24516991, -0.24516991, -0.24516991, -0.24516991,
0.18238648, 0.18238648, 0.18238648, 0.18238648,
0.47381192, 0.47381192, 0.47381192, 0.47381192,
0.64435108, 0.64435108, 0.64435108, 0.64435108,
0.72335373, 0.72335373, 0.72335373, 0.72335373,
0.74473342, 0.74473342, 0.74473342, 0.74473342,
0.73856117, 0.73856117, 0.73856117, 0.73856117,
0.6849367 , 0.6849367 , 0.6849367 , 0.6849367 ,
0.56264789, 0.56264789, 0.56264789, 0.56264789,
0.43696319, 0.43696319, 0.43696319, 0.43696319,
0.35096003, 0.35096003, 0.35096003, 0.35096003,
0.29570925, 0.29570925, 0.29570925, 0.29570925,
0.26317089, 0.26317089, 0.26317089, 0.26317089,
0.2477037 , 0.2477037 , 0.2477037 , 0.2477037 ,
0.2405064 , 0.2405064 , 0.2405064 , 0.2405064 ,
0.23764166, 0.23764166, 0.23764166, 0.23764166,
0.23553365, 0.23553365, 0.23553365, 0.23553365,
0.23121368, 0.23121368, 0.23121368, 0.23121368,
0.21923797, 0.21923797, 0.21923797, 0.21923797,
0.19361124, 0.19361124, 0.19361124, 0.19361124,
0.15341409, 0.15341409, 0.15341409, 0.15341409,
0.12239052, 0.12239052, 0.12239052, 0.12239052,
0.11071176, 0.11071176, 0.11071176, 0.11071176,
0.12002847, 0.12002847, 0.12002847, 0.12002847,
0.15646164, 0.15646164, 0.15646164, 0.15646164,
0.17647316, 0.17647316, 0.17647316, 0.17647316,
-0.559644 , -0.559644 , -0.559644 , -0.559644 ,
-5.21017841, -5.21017841, -5.21017841, -5.21017841,
-14.79033422, -14.79033422, -14.79033422, -14.79033422,
-19.25410748, -19.25410748, -19.25410748, -19.25410748,
-19.59196705, -19.59196705, -19.59196705, -19.59196705,
-19.59743635, -19.59743635, -19.59743635, -19.59743635,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([9.99104868e+02, 9.99104868e+02, 9.99104868e+02, 9.99104868e+02,
9.97975676e+02, 9.97975676e+02, 9.97975676e+02, 9.97975676e+02,
9.96241518e+02, 9.96241518e+02, 9.96241518e+02, 9.96241518e+02,
9.93227116e+02, 9.93227116e+02, 9.93227116e+02, 9.93227116e+02,
9.88415564e+02, 9.88415564e+02, 9.88415564e+02, 9.88415564e+02,
9.81150008e+02, 9.81150008e+02, 9.81150008e+02, 9.81150008e+02,
9.70822440e+02, 9.70822440e+02, 9.70822440e+02, 9.70822440e+02,
9.56980992e+02, 9.56980992e+02, 9.56980992e+02, 9.56980992e+02,
9.39446248e+02, 9.39446248e+02, 9.39446248e+02, 9.39446248e+02,
9.18360061e+02, 9.18360061e+02, 9.18360061e+02, 9.18360061e+02,
8.94152425e+02, 8.94152425e+02, 8.94152425e+02, 8.94152425e+02,
8.67439511e+02, 8.67439511e+02, 8.67439511e+02, 8.67439511e+02,
8.38892594e+02, 8.38892594e+02, 8.38892594e+02, 8.38892594e+02,
8.09115807e+02, 8.09115807e+02, 8.09115807e+02, 8.09115807e+02,
7.78532813e+02, 7.78532813e+02, 7.78532813e+02, 7.78532813e+02,
7.47781594e+02, 7.47781594e+02, 7.47781594e+02, 7.47781594e+02,
7.17990672e+02, 7.17990672e+02, 7.17990672e+02, 7.17990672e+02,
6.89530685e+02, 6.89530685e+02, 6.89530685e+02, 6.89530685e+02,
6.62290410e+02, 6.62290410e+02, 6.62290410e+02, 6.62290410e+02,
6.36241730e+02, 6.36241730e+02, 6.36241730e+02, 6.36241730e+02,
6.11362815e+02, 6.11362815e+02, 6.11362815e+02, 6.11362815e+02,
5.87658689e+02, 5.87658689e+02, 5.87658689e+02, 5.87658689e+02,
5.65172198e+02, 5.65172198e+02, 5.65172198e+02, 5.65172198e+02,
5.43997977e+02, 5.43997977e+02, 5.43997977e+02, 5.43997977e+02,
5.24296334e+02, 5.24296334e+02, 5.24296334e+02, 5.24296334e+02,
5.06301281e+02, 5.06301281e+02, 5.06301281e+02, 5.06301281e+02,
4.90312750e+02, 4.90312750e+02, 4.90312750e+02, 4.90312750e+02,
4.76661009e+02, 4.76661009e+02, 4.76661009e+02, 4.76661009e+02,
4.65636316e+02, 4.65636316e+02, 4.65636316e+02, 4.65636316e+02,
4.57390322e+02, 4.57390322e+02, 4.57390322e+02, 4.57390322e+02,
4.51845821e+02, 4.51845821e+02, 4.51845821e+02, 4.51845821e+02,
4.48623358e+02, 4.48623358e+02, 4.48623358e+02, 4.48623358e+02,
4.47149698e+02, 4.47149698e+02, 4.47149698e+02, 4.47149698e+02,
4.46744951e+02, 4.46744951e+02, 4.46744951e+02, 4.46744951e+02,
4.46867378e+02, 4.46867378e+02, 4.46867378e+02, 4.46867378e+02,
4.47880353e+02, 4.47880353e+02, 4.47880353e+02, 4.47880353e+02,
4.50188582e+02, 4.50188582e+02, 4.50188582e+02, 4.50188582e+02,
4.52565860e+02, 4.52565860e+02, 4.52565860e+02, 4.52565860e+02,
4.54208238e+02, 4.54208238e+02, 4.54208238e+02, 4.54208238e+02,
4.55263682e+02, 4.55263682e+02, 4.55263682e+02, 4.55263682e+02,
4.55866441e+02, 4.55866441e+02, 4.55866441e+02, 4.55866441e+02,
4.56177752e+02, 4.56177752e+02, 4.56177752e+02, 4.56177752e+02,
4.56286145e+02, 4.56286145e+02, 4.56286145e+02, 4.56286145e+02,
4.56325796e+02, 4.56325796e+02, 4.56325796e+02, 4.56325796e+02,
4.56354405e+02, 4.56354405e+02, 4.56354405e+02, 4.56354405e+02,
4.56418263e+02, 4.56418263e+02, 4.56418263e+02, 4.56418263e+02,
4.56621863e+02, 4.56621863e+02, 4.56621863e+02, 4.56621863e+02,
4.57112300e+02, 4.57112300e+02, 4.57112300e+02, 4.57112300e+02,
4.57973595e+02, 4.57973595e+02, 4.57973595e+02, 4.57973595e+02,
4.58739636e+02, 4.58739636e+02, 4.58739636e+02, 4.58739636e+02,
4.59226578e+02, 4.59226578e+02, 4.59226578e+02, 4.59226578e+02,
4.59409554e+02, 4.59409554e+02, 4.59409554e+02, 4.59409554e+02,
4.58892267e+02, 4.58892267e+02, 4.58892267e+02, 4.58892267e+02,
4.57009278e+02, 4.57009278e+02, 4.57009278e+02, 4.57009278e+02,
4.27595172e+02, 4.27595172e+02, 4.27595172e+02, 4.27595172e+02,
2.37359835e+02, 2.37359835e+02, 2.37359835e+02, 2.37359835e+02,
3.60951923e+01, 3.60951923e+01, 3.60951923e+01, 3.60951923e+01,
9.83220267e-01, 9.83220267e-01, 9.83220267e-01, 9.83220267e-01,
1.30337788e-02, 1.30337788e-02, 1.30337788e-02, 1.30337788e-02,
1.00016618e-02, 1.00016618e-02, 1.00016618e-02, 1.00016618e-02,
1.00000014e-02, 1.00000014e-02, 1.00000014e-02, 1.00000014e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hll': [{'rho': array([0.99934328, 0.99934328, 0.99934328, 0.99934328, 0.99851611,
0.99851611, 0.99851611, 0.99851611, 0.99724725, 0.99724725,
0.99724725, 0.99724725, 0.99504269, 0.99504269, 0.99504269,
0.99504269, 0.9915246 , 0.9915246 , 0.9915246 , 0.9915246 ,
0.98621019, 0.98621019, 0.98621019, 0.98621019, 0.97864743,
0.97864743, 0.97864743, 0.97864743, 0.96849024, 0.96849024,
0.96849024, 0.96849024, 0.95558156, 0.95558156, 0.95558156,
0.95558156, 0.93998953, 0.93998953, 0.93998953, 0.93998953,
0.92198657, 0.92198657, 0.92198657, 0.92198657, 0.90197947,
0.90197947, 0.90197947, 0.90197947, 0.88041737, 0.88041737,
0.88041737, 0.88041737, 0.8577076 , 0.8577076 , 0.8577076 ,
0.8577076 , 0.83419893, 0.83419893, 0.83419893, 0.83419893,
0.81039602, 0.81039602, 0.81039602, 0.81039602, 0.7871834 ,
0.7871834 , 0.7871834 , 0.7871834 , 0.76477086, 0.76477086,
0.76477086, 0.76477086, 0.74313096, 0.74313096, 0.74313096,
0.74313096, 0.72227041, 0.72227041, 0.72227041, 0.72227041,
0.70221675, 0.70221675, 0.70221675, 0.70221675, 0.68302785,
0.68302785, 0.68302785, 0.68302785, 0.66480295, 0.66480295,
0.66480295, 0.66480295, 0.64769042, 0.64769042, 0.64769042,
0.64769042, 0.63188795, 0.63188795, 0.63188795, 0.63188795,
0.61762934, 0.61762934, 0.61762934, 0.61762934, 0.60514723,
0.60514723, 0.60514723, 0.60514723, 0.59461052, 0.59461052,
0.59461052, 0.59461052, 0.58606043, 0.58606043, 0.58606043,
0.58606043, 0.57936591, 0.57936591, 0.57936591, 0.57936591,
0.5742849 , 0.5742849 , 0.5742849 , 0.5742849 , 0.57056455,
0.57056455, 0.57056455, 0.57056455, 0.56812439, 0.56812439,
0.56812439, 0.56812439, 0.56694752, 0.56694752, 0.56694752,
0.56694752, 0.56675102, 0.56675102, 0.56675102, 0.56675102,
0.56703227, 0.56703227, 0.56703227, 0.56703227, 0.56746887,
0.56746887, 0.56746887, 0.56746887, 0.56814229, 0.56814229,
0.56814229, 0.56814229, 0.56926731, 0.56926731, 0.56926731,
0.56926731, 0.5708412 , 0.5708412 , 0.5708412 , 0.5708412 ,
0.57146233, 0.57146233, 0.57146233, 0.57146233, 0.57138607,
0.57138607, 0.57138607, 0.57138607, 0.57157687, 0.57157687,
0.57157687, 0.57157687, 0.57307564, 0.57307564, 0.57307564,
0.57307564, 0.57778305, 0.57778305, 0.57778305, 0.57778305,
0.58965085, 0.58965085, 0.58965085, 0.58965085, 0.61757489,
0.61757489, 0.61757489, 0.61757489, 0.676769 , 0.676769 ,
0.676769 , 0.676769 , 0.7947168 , 0.7947168 , 0.7947168 ,
0.7947168 , 1.02208294, 1.02208294, 1.02208294, 1.02208294,
1.45188831, 1.45188831, 1.45188831, 1.45188831, 2.23726335,
2.23726335, 2.23726335, 2.23726335, 3.36644262, 3.36644262,
3.36644262, 3.36644262, 4.30863495, 4.30863495, 4.30863495,
4.30863495, 4.7719083 , 4.7719083 , 4.7719083 , 4.7719083 ,
3.26199935, 3.26199935, 3.26199935, 3.26199935, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95728753e+01, -1.95728753e+01, -1.95728753e+01, -1.95728753e+01,
-1.95419011e+01, -1.95419011e+01, -1.95419011e+01, -1.95419011e+01,
-1.94943606e+01, -1.94943606e+01, -1.94943606e+01, -1.94943606e+01,
-1.94116539e+01, -1.94116539e+01, -1.94116539e+01, -1.94116539e+01,
-1.92793874e+01, -1.92793874e+01, -1.92793874e+01, -1.92793874e+01,
-1.90789037e+01, -1.90789037e+01, -1.90789037e+01, -1.90789037e+01,
-1.87921421e+01, -1.87921421e+01, -1.87921421e+01, -1.87921421e+01,
-1.84042251e+01, -1.84042251e+01, -1.84042251e+01, -1.84042251e+01,
-1.79064879e+01, -1.79064879e+01, -1.79064879e+01, -1.79064879e+01,
-1.72980007e+01, -1.72980007e+01, -1.72980007e+01, -1.72980007e+01,
-1.65851908e+01, -1.65851908e+01, -1.65851908e+01, -1.65851908e+01,
-1.57797077e+01, -1.57797077e+01, -1.57797077e+01, -1.57797077e+01,
-1.48953072e+01, -1.48953072e+01, -1.48953072e+01, -1.48953072e+01,
-1.39445524e+01, -1.39445524e+01, -1.39445524e+01, -1.39445524e+01,
-1.29362385e+01, -1.29362385e+01, -1.29362385e+01, -1.29362385e+01,
-1.18953231e+01, -1.18953231e+01, -1.18953231e+01, -1.18953231e+01,
-1.08579328e+01, -1.08579328e+01, -1.08579328e+01, -1.08579328e+01,
-9.83073930e+00, -9.83073930e+00, -9.83073930e+00, -9.83073930e+00,
-8.81601604e+00, -8.81601604e+00, -8.81601604e+00, -8.81601604e+00,
-7.81530982e+00, -7.81530982e+00, -7.81530982e+00, -7.81530982e+00,
-6.83139415e+00, -6.83139415e+00, -6.83139415e+00, -6.83139415e+00,
-5.86884536e+00, -5.86884536e+00, -5.86884536e+00, -5.86884536e+00,
-4.93466417e+00, -4.93466417e+00, -4.93466417e+00, -4.93466417e+00,
-4.03889039e+00, -4.03889039e+00, -4.03889039e+00, -4.03889039e+00,
-3.19481551e+00, -3.19481551e+00, -3.19481551e+00, -3.19481551e+00,
-2.41823045e+00, -2.41823045e+00, -2.41823045e+00, -2.41823045e+00,
-1.72550236e+00, -1.72550236e+00, -1.72550236e+00, -1.72550236e+00,
-1.13060519e+00, -1.13060519e+00, -1.13060519e+00, -1.13060519e+00,
-6.41517880e-01, -6.41517880e-01, -6.41517880e-01, -6.41517880e-01,
-2.58502471e-01, -2.58502471e-01, -2.58502471e-01, -2.58502471e-01,
2.67096654e-02, 2.67096654e-02, 2.67096654e-02, 2.67096654e-02,
2.26622767e-01, 2.26622767e-01, 2.26622767e-01, 2.26622767e-01,
3.57372328e-01, 3.57372328e-01, 3.57372328e-01, 3.57372328e-01,
4.33214769e-01, 4.33214769e-01, 4.33214769e-01, 4.33214769e-01,
4.69047565e-01, 4.69047565e-01, 4.69047565e-01, 4.69047565e-01,
4.79570771e-01, 4.79570771e-01, 4.79570771e-01, 4.79570771e-01,
4.76227154e-01, 4.76227154e-01, 4.76227154e-01, 4.76227154e-01,
4.46162545e-01, 4.46162545e-01, 4.46162545e-01, 4.46162545e-01,
3.63818059e-01, 3.63818059e-01, 3.63818059e-01, 3.63818059e-01,
2.15124074e-01, 2.15124074e-01, 2.15124074e-01, 2.15124074e-01,
8.93027653e-02, 8.93027653e-02, 8.93027653e-02, 8.93027653e-02,
2.06270782e-02, 2.06270782e-02, 2.06270782e-02, 2.06270782e-02,
-2.92513730e-03, -2.92513730e-03, -2.92513730e-03, -2.92513730e-03,
-3.92937495e-03, -3.92937495e-03, -3.92937495e-03, -3.92937495e-03,
2.35331575e-02, 2.35331575e-02, 2.35331575e-02, 2.35331575e-02,
9.46626638e-02, 9.46626638e-02, 9.46626638e-02, 9.46626638e-02,
1.49629928e-01, 1.49629928e-01, 1.49629928e-01, 1.49629928e-01,
1.70157235e-01, 1.70157235e-01, 1.70157235e-01, 1.70157235e-01,
1.69584193e-01, 1.69584193e-01, 1.69584193e-01, 1.69584193e-01,
1.45946700e-01, 1.45946700e-01, 1.45946700e-01, 1.45946700e-01,
7.66535320e-02, 7.66535320e-02, 7.66535320e-02, 7.66535320e-02,
1.60429550e-02, 1.60429550e-02, 1.60429550e-02, 1.60429550e-02,
3.24300562e-02, 3.24300562e-02, 3.24300562e-02, 3.24300562e-02,
1.15367973e-01, 1.15367973e-01, 1.15367973e-01, 1.15367973e-01,
-2.77732333e-01, -2.77732333e-01, -2.77732333e-01, -2.77732333e-01,
-6.88001983e+00, -6.88001983e+00, -6.88001983e+00, -6.88001983e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99080830e+02, 9.99080830e+02, 9.99080830e+02, 9.99080830e+02,
9.97923433e+02, 9.97923433e+02, 9.97923433e+02, 9.97923433e+02,
9.96149113e+02, 9.96149113e+02, 9.96149113e+02, 9.96149113e+02,
9.93068920e+02, 9.93068920e+02, 9.93068920e+02, 9.93068920e+02,
9.88160094e+02, 9.88160094e+02, 9.88160094e+02, 9.88160094e+02,
9.80759608e+02, 9.80759608e+02, 9.80759608e+02, 9.80759608e+02,
9.70257799e+02, 9.70257799e+02, 9.70257799e+02, 9.70257799e+02,
9.56206452e+02, 9.56206452e+02, 9.56206452e+02, 9.56206452e+02,
9.38434995e+02, 9.38434995e+02, 9.38434995e+02, 9.38434995e+02,
9.17096911e+02, 9.17096911e+02, 9.17096911e+02, 9.17096911e+02,
8.92632853e+02, 8.92632853e+02, 8.92632853e+02, 8.92632853e+02,
8.65664895e+02, 8.65664895e+02, 8.65664895e+02, 8.65664895e+02,
8.36862646e+02, 8.36862646e+02, 8.36862646e+02, 8.36862646e+02,
8.06819454e+02, 8.06819454e+02, 8.06819454e+02, 8.06819454e+02,
7.75972344e+02, 7.75972344e+02, 7.75972344e+02, 7.75972344e+02,
7.45104729e+02, 7.45104729e+02, 7.45104729e+02, 7.45104729e+02,
7.15395716e+02, 7.15395716e+02, 7.15395716e+02, 7.15395716e+02,
6.87051653e+02, 6.87051653e+02, 6.87051653e+02, 6.87051653e+02,
6.59998015e+02, 6.59998015e+02, 6.59998015e+02, 6.59998015e+02,
6.34216437e+02, 6.34216437e+02, 6.34216437e+02, 6.34216437e+02,
6.09714105e+02, 6.09714105e+02, 6.09714105e+02, 6.09714105e+02,
5.86533693e+02, 5.86533693e+02, 5.86533693e+02, 5.86533693e+02,
5.64763854e+02, 5.64763854e+02, 5.64763854e+02, 5.64763854e+02,
5.44544477e+02, 5.44544477e+02, 5.44544477e+02, 5.44544477e+02,
5.26062779e+02, 5.26062779e+02, 5.26062779e+02, 5.26062779e+02,
5.09535724e+02, 5.09535724e+02, 5.09535724e+02, 5.09535724e+02,
4.95171163e+02, 4.95171163e+02, 4.95171163e+02, 4.95171163e+02,
4.83112079e+02, 4.83112079e+02, 4.83112079e+02, 4.83112079e+02,
4.73389742e+02, 4.73389742e+02, 4.73389742e+02, 4.73389742e+02,
4.65887995e+02, 4.65887995e+02, 4.65887995e+02, 4.65887995e+02,
4.60378925e+02, 4.60378925e+02, 4.60378925e+02, 4.60378925e+02,
4.56538628e+02, 4.56538628e+02, 4.56538628e+02, 4.56538628e+02,
4.54058031e+02, 4.54058031e+02, 4.54058031e+02, 4.54058031e+02,
4.52614854e+02, 4.52614854e+02, 4.52614854e+02, 4.52614854e+02,
4.51934049e+02, 4.51934049e+02, 4.51934049e+02, 4.51934049e+02,
4.51747252e+02, 4.51747252e+02, 4.51747252e+02, 4.51747252e+02,
4.51807226e+02, 4.51807226e+02, 4.51807226e+02, 4.51807226e+02,
4.52374748e+02, 4.52374748e+02, 4.52374748e+02, 4.52374748e+02,
4.53942543e+02, 4.53942543e+02, 4.53942543e+02, 4.53942543e+02,
4.56782749e+02, 4.56782749e+02, 4.56782749e+02, 4.56782749e+02,
4.59187550e+02, 4.59187550e+02, 4.59187550e+02, 4.59187550e+02,
4.60484560e+02, 4.60484560e+02, 4.60484560e+02, 4.60484560e+02,
4.60945937e+02, 4.60945937e+02, 4.60945937e+02, 4.60945937e+02,
4.60942022e+02, 4.60942022e+02, 4.60942022e+02, 4.60942022e+02,
4.60400779e+02, 4.60400779e+02, 4.60400779e+02, 4.60400779e+02,
4.59005251e+02, 4.59005251e+02, 4.59005251e+02, 4.59005251e+02,
4.57913462e+02, 4.57913462e+02, 4.57913462e+02, 4.57913462e+02,
4.57449218e+02, 4.57449218e+02, 4.57449218e+02, 4.57449218e+02,
4.57370070e+02, 4.57370070e+02, 4.57370070e+02, 4.57370070e+02,
4.57864703e+02, 4.57864703e+02, 4.57864703e+02, 4.57864703e+02,
4.59758501e+02, 4.59758501e+02, 4.59758501e+02, 4.59758501e+02,
4.61753093e+02, 4.61753093e+02, 4.61753093e+02, 4.61753093e+02,
4.62763243e+02, 4.62763243e+02, 4.62763243e+02, 4.62763243e+02,
4.57485339e+02, 4.57485339e+02, 4.57485339e+02, 4.57485339e+02,
4.14686087e+02, 4.14686087e+02, 4.14686087e+02, 4.14686087e+02,
2.01684986e+02, 2.01684986e+02, 2.01684986e+02, 2.01684986e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hllc': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745]), 'P': array([1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99948739, 0.99948739, 0.99948739,
0.99948739, 0.98895197, 0.98895197, 0.98895197, 0.98895197,
0.91124915, 0.91124915, 0.91124915, 0.91124915, 0.8298636 ,
0.8298636 , 0.8298636 , 0.8298636 , 1.27044789, 1.27044789,
1.27044789, 1.27044789, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.57838487, -19.57838487, -19.57838487, -19.57838487,
-19.19065938, -19.19065938, -19.19065938, -19.19065938,
-16.24242196, -16.24242196, -16.24242196, -16.24242196,
-7.5071121 , -7.5071121 , -7.5071121 , -7.5071121 ,
-15.1204002 , -15.1204002 , -15.1204002 , -15.1204002 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99286910e+02, 9.99286910e+02, 9.99286910e+02, 9.99286910e+02,
9.84883800e+02, 9.84883800e+02, 9.84883800e+02, 9.84883800e+02,
8.82839182e+02, 8.82839182e+02, 8.82839182e+02, 8.82839182e+02,
6.88955301e+02, 6.88955301e+02, 6.88955301e+02, 6.88955301e+02,
3.63390464e+01, 3.63390464e+01, 3.63390464e+01, 3.63390464e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999956, 0.99999956, 0.99999956, 0.99999956,
0.99998097, 0.99998097, 0.99998097, 0.99998097, 0.99964679,
0.99964679, 0.99964679, 0.99964679, 0.99634543, 0.99634543,
0.99634543, 0.99634543, 0.97673083, 0.97673083, 0.97673083,
0.97673083, 0.90100139, 0.90100139, 0.90100139, 0.90100139,
0.75547019, 0.75547019, 0.75547019, 0.75547019, 0.70753077,
0.70753077, 0.70753077, 0.70753077, 1.66329407, 1.66329407,
1.66329407, 1.66329407, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59743357, -19.59743357, -19.59743357, -19.59743357,
-19.59673808, -19.59673808, -19.59673808, -19.59673808,
-19.58424969, -19.58424969, -19.58424969, -19.58424969,
-19.46129146, -19.46129146, -19.46129146, -19.46129146,
-18.73730805, -18.73730805, -18.73730805, -18.73730805,
-16.00950488, -16.00950488, -16.00950488, -16.00950488,
-9.43290713, -9.43290713, -9.43290713, -9.43290713,
-1.48421801, -1.48421801, -1.48421801, -1.48421801,
-11.3713146 , -11.3713146 , -11.3713146 , -11.3713146 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999385e+02, 9.99999385e+02, 9.99999385e+02, 9.99999385e+02,
9.99973363e+02, 9.99973363e+02, 9.99973363e+02, 9.99973363e+02,
9.99506198e+02, 9.99506198e+02, 9.99506198e+02, 9.99506198e+02,
9.94916589e+02, 9.94916589e+02, 9.94916589e+02, 9.94916589e+02,
9.68255214e+02, 9.68255214e+02, 9.68255214e+02, 9.68255214e+02,
8.73242615e+02, 8.73242615e+02, 8.73242615e+02, 8.73242615e+02,
6.79344724e+02, 6.79344724e+02, 6.79344724e+02, 6.79344724e+02,
5.50094126e+02, 5.50094126e+02, 5.50094126e+02, 5.50094126e+02,
9.51270435e+01, 9.51270435e+01, 9.51270435e+01, 9.51270435e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999926, 0.99999926,
0.99999926, 0.99999926, 0.99998694, 0.99998694, 0.99998694,
0.99998694, 0.99984664, 0.99984664, 0.99984664, 0.99984664,
0.9987454 , 0.9987454 , 0.9987454 , 0.9987454 , 0.99266643,
0.99266643, 0.99266643, 0.99266643, 0.96887737, 0.96887737,
0.96887737, 0.96887737, 0.90244574, 0.90244574, 0.90244574,
0.90244574, 0.76901116, 0.76901116, 0.76901116, 0.76901116,
0.6478654 , 0.6478654 , 0.6478654 , 0.6478654 , 0.65349069,
0.65349069, 0.65349069, 0.65349069, 2.067065 , 2.067065 ,
2.067065 , 2.067065 , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744907, -19.59744907, -19.59744907, -19.59744907,
-19.59742242, -19.59742242, -19.59742242, -19.59742242,
-19.5969614 , -19.5969614 , -19.5969614 , -19.5969614 ,
-19.59171353, -19.59171353, -19.59171353, -19.59171353,
-19.55055566, -19.55055566, -19.55055566, -19.55055566,
-19.3236798 , -19.3236798 , -19.3236798 , -19.3236798 ,
-18.43434783, -18.43434783, -18.43434783, -18.43434783,
-15.90408442, -15.90408442, -15.90408442, -15.90408442,
-10.48663119, -10.48663119, -10.48663119, -10.48663119,
-4.574182 , -4.574182 , -4.574182 , -4.574182 ,
1.13492526, 1.13492526, 1.13492526, 1.13492526,
-8.69947782, -8.69947782, -8.69947782, -8.69947782,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999965e+02, 9.99999965e+02, 9.99999965e+02, 9.99999965e+02,
9.99998968e+02, 9.99998968e+02, 9.99998968e+02, 9.99998968e+02,
9.99981718e+02, 9.99981718e+02, 9.99981718e+02, 9.99981718e+02,
9.99785381e+02, 9.99785381e+02, 9.99785381e+02, 9.99785381e+02,
9.98246693e+02, 9.98246693e+02, 9.98246693e+02, 9.98246693e+02,
9.89801126e+02, 9.89801126e+02, 9.89801126e+02, 9.89801126e+02,
9.57286658e+02, 9.57286658e+02, 9.57286658e+02, 9.57286658e+02,
8.69906714e+02, 8.69906714e+02, 8.69906714e+02, 8.69906714e+02,
7.07459228e+02, 7.07459228e+02, 7.07459228e+02, 7.07459228e+02,
5.43451614e+02, 5.43451614e+02, 5.43451614e+02, 5.43451614e+02,
4.93414823e+02, 4.93414823e+02, 4.93414823e+02, 4.93414823e+02,
1.61847159e+02, 1.61847159e+02, 1.61847159e+02, 1.61847159e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999949, 0.99999949, 0.99999949, 0.99999949, 0.99999357,
0.99999357, 0.99999357, 0.99999357, 0.99993888, 0.99993888,
0.99993888, 0.99993888, 0.99955523, 0.99955523, 0.99955523,
0.99955523, 0.99750061, 0.99750061, 0.99750061, 0.99750061,
0.98912252, 0.98912252, 0.98912252, 0.98912252, 0.96323089,
0.96323089, 0.96323089, 0.96323089, 0.90234429, 0.90234429,
0.90234429, 0.90234429, 0.79042885, 0.79042885, 0.79042885,
0.79042885, 0.66843501, 0.66843501, 0.66843501, 0.66843501,
0.59183401, 0.59183401, 0.59183401, 0.59183401, 0.63275902,
0.63275902, 0.63275902, 0.63275902, 2.46485766, 2.46485766,
2.46485766, 2.46485766, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744996, -19.59744996, -19.59744996, -19.59744996,
-19.5974489 , -19.5974489 , -19.5974489 , -19.5974489 ,
-19.59743093, -19.59743093, -19.59743093, -19.59743093,
-19.59720925, -19.59720925, -19.59720925, -19.59720925,
-19.5951631 , -19.5951631 , -19.5951631 , -19.5951631 ,
-19.58081283, -19.58081283, -19.58081283, -19.58081283,
-19.50398779, -19.50398779, -19.50398779, -19.50398779,
-19.1904876 , -19.1904876 , -19.1904876 , -19.1904876 ,
-18.21442327, -18.21442327, -18.21442327, -18.21442327,
-15.85574791, -15.85574791, -15.85574791, -15.85574791,
-11.23238647, -11.23238647, -11.23238647, -11.23238647,
-5.46798522, -5.46798522, -5.46798522, -5.46798522,
-2.02281046, -2.02281046, -2.02281046, -2.02281046,
1.33644011, 1.33644011, 1.33644011, 1.33644011,
-6.66695933, -6.66695933, -6.66695933, -6.66695933,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
9.99999286e+02, 9.99999286e+02, 9.99999286e+02, 9.99999286e+02,
9.99990992e+02, 9.99990992e+02, 9.99990992e+02, 9.99990992e+02,
9.99914435e+02, 9.99914435e+02, 9.99914435e+02, 9.99914435e+02,
9.99377660e+02, 9.99377660e+02, 9.99377660e+02, 9.99377660e+02,
9.96508169e+02, 9.96508169e+02, 9.96508169e+02, 9.96508169e+02,
9.84871586e+02, 9.84871586e+02, 9.84871586e+02, 9.84871586e+02,
9.49393535e+02, 9.49393535e+02, 9.49393535e+02, 9.49393535e+02,
8.68303546e+02, 8.68303546e+02, 8.68303546e+02, 8.68303546e+02,
7.27511818e+02, 7.27511818e+02, 7.27511818e+02, 7.27511818e+02,
5.81800666e+02, 5.81800666e+02, 5.81800666e+02, 5.81800666e+02,
4.77773799e+02, 4.77773799e+02, 4.77773799e+02, 4.77773799e+02,
4.72750813e+02, 4.72750813e+02, 4.72750813e+02, 4.72750813e+02,
2.21621630e+02, 2.21621630e+02, 2.21621630e+02, 2.21621630e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999973, 0.99999973, 0.99999973,
0.99999973, 0.99999717, 0.99999717, 0.99999717, 0.99999717,
0.99997627, 0.99997627, 0.99997627, 0.99997627, 0.99983916,
0.99983916, 0.99983916, 0.99983916, 0.99911628, 0.99911628,
0.99911628, 0.99911628, 0.9960667 , 0.9960667 , 0.9960667 ,
0.9960667 , 0.985847 , 0.985847 , 0.985847 , 0.985847 ,
0.95879846, 0.95879846, 0.95879846, 0.95879846, 0.9020718 ,
0.9020718 , 0.9020718 , 0.9020718 , 0.80567311, 0.80567311,
0.80567311, 0.80567311, 0.69028634, 0.69028634, 0.69028634,
0.69028634, 0.61553465, 0.61553465, 0.61553465, 0.61553465,
0.57082122, 0.57082122, 0.57082122, 0.57082122, 0.62660163,
0.62660163, 0.62660163, 0.62660163, 2.8493705 , 2.8493705 ,
2.8493705 , 2.8493705 , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744996, -19.59744996, -19.59744996, -19.59744996,
-19.59744923, -19.59744923, -19.59744923, -19.59744923,
-19.59743987, -19.59743987, -19.59743987, -19.59743987,
-19.59734408, -19.59734408, -19.59734408, -19.59734408,
-19.59656205, -19.59656205, -19.59656205, -19.59656205,
-19.59143234, -19.59143234, -19.59143234, -19.59143234,
-19.56439055, -19.56439055, -19.56439055, -19.56439055,
-19.45029042, -19.45029042, -19.45029042, -19.45029042,
-19.06697844, -19.06697844, -19.06697844, -19.06697844,
-18.04151049, -18.04151049, -18.04151049, -18.04151049,
-15.82304381, -15.82304381, -15.82304381, -15.82304381,
-11.78035985, -11.78035985, -11.78035985, -11.78035985,
-6.62297822, -6.62297822, -6.62297822, -6.62297822,
-2.34925393, -2.34925393, -2.34925393, -2.34925393,
-0.93147575, -0.93147575, -0.93147575, -0.93147575,
0.57907591, 0.57907591, 0.57907591, 0.57907591,
-5.12959986, -5.12959986, -5.12959986, -5.12959986,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999971e+02, 9.99999971e+02, 9.99999971e+02, 9.99999971e+02,
9.99999621e+02, 9.99999621e+02, 9.99999621e+02, 9.99999621e+02,
9.99996037e+02, 9.99996037e+02, 9.99996037e+02, 9.99996037e+02,
9.99966776e+02, 9.99966776e+02, 9.99966776e+02, 9.99966776e+02,
9.99774861e+02, 9.99774861e+02, 9.99774861e+02, 9.99774861e+02,
9.98763679e+02, 9.98763679e+02, 9.98763679e+02, 9.98763679e+02,
9.94506696e+02, 9.94506696e+02, 9.94506696e+02, 9.94506696e+02,
9.80319621e+02, 9.80319621e+02, 9.80319621e+02, 9.80319621e+02,
9.43228677e+02, 9.43228677e+02, 9.43228677e+02, 9.43228677e+02,
8.67220336e+02, 8.67220336e+02, 8.67220336e+02, 8.67220336e+02,
7.42845128e+02, 7.42845128e+02, 7.42845128e+02, 7.42845128e+02,
6.04271160e+02, 6.04271160e+02, 6.04271160e+02, 6.04271160e+02,
5.17946575e+02, 5.17946575e+02, 5.17946575e+02, 5.17946575e+02,
4.54246489e+02, 4.54246489e+02, 4.54246489e+02, 4.54246489e+02,
4.66921417e+02, 4.66921417e+02, 4.66921417e+02, 4.66921417e+02,
2.65782010e+02, 2.65782010e+02, 2.65782010e+02, 2.65782010e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999882, 0.99999882,
0.99999882, 0.99999882, 0.99999087, 0.99999087, 0.99999087,
0.99999087, 0.99994103, 0.99994103, 0.99994103, 0.99994103,
0.99968069, 0.99968069, 0.99968069, 0.99968069, 0.99855338,
0.99855338, 0.99855338, 0.99855338, 0.99453492, 0.99453492,
0.99453492, 0.99453492, 0.9828373 , 0.9828373 , 0.9828373 ,
0.9828373 , 0.95517652, 0.95517652, 0.95517652, 0.95517652,
0.90186652, 0.90186652, 0.90186652, 0.90186652, 0.81635295,
0.81635295, 0.81635295, 0.81635295, 0.71244513, 0.71244513,
0.71244513, 0.71244513, 0.62960431, 0.62960431, 0.62960431,
0.62960431, 0.5905485 , 0.5905485 , 0.5905485 , 0.5905485 ,
0.56964965, 0.56964965, 0.56964965, 0.56964965, 0.62277297,
0.62277297, 0.62277297, 0.62277297, 3.22604657, 3.22604657,
3.22604657, 3.22604657, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744957, -19.59744957, -19.59744957, -19.59744957,
-19.59744521, -19.59744521, -19.59744521, -19.59744521,
-19.59740573, -19.59740573, -19.59740573, -19.59740573,
-19.59710849, -19.59710849, -19.59710849, -19.59710849,
-19.59524365, -19.59524365, -19.59524365, -19.59524365,
-19.58550347, -19.58550347, -19.58550347, -19.58550347,
-19.54332535, -19.54332535, -19.54332535, -19.54332535,
-19.39286212, -19.39286212, -19.39286212, -19.39286212,
-18.95316282, -18.95316282, -18.95316282, -18.95316282,
-17.89996733, -17.89996733, -17.89996733, -17.89996733,
-15.80397365, -15.80397365, -15.80397365, -15.80397365,
-12.20514556, -12.20514556, -12.20514556, -12.20514556,
-7.48327423, -7.48327423, -7.48327423, -7.48327423,
-3.65059602, -3.65059602, -3.65059602, -3.65059602,
-0.6984312 , -0.6984312 , -0.6984312 , -0.6984312 ,
-0.45527074, -0.45527074, -0.45527074, -0.45527074,
0.02647803, 0.02647803, 0.02647803, 0.02647803,
-4.01833224, -4.01833224, -4.01833224, -4.01833224,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999984e+02, 9.99999984e+02, 9.99999984e+02, 9.99999984e+02,
9.99999821e+02, 9.99999821e+02, 9.99999821e+02, 9.99999821e+02,
9.99998344e+02, 9.99998344e+02, 9.99998344e+02, 9.99998344e+02,
9.99987222e+02, 9.99987222e+02, 9.99987222e+02, 9.99987222e+02,
9.99917449e+02, 9.99917449e+02, 9.99917449e+02, 9.99917449e+02,
9.99553087e+02, 9.99553087e+02, 9.99553087e+02, 9.99553087e+02,
9.97976586e+02, 9.97976586e+02, 9.97976586e+02, 9.97976586e+02,
9.92370003e+02, 9.92370003e+02, 9.92370003e+02, 9.92370003e+02,
9.76141335e+02, 9.76141335e+02, 9.76141335e+02, 9.76141335e+02,
9.38208895e+02, 9.38208895e+02, 9.38208895e+02, 9.38208895e+02,
8.66586204e+02, 8.66586204e+02, 8.66586204e+02, 8.66586204e+02,
7.55006792e+02, 7.55006792e+02, 7.55006792e+02, 7.55006792e+02,
6.26897420e+02, 6.26897420e+02, 6.26897420e+02, 6.26897420e+02,
5.32228005e+02, 5.32228005e+02, 5.32228005e+02, 5.32228005e+02,
4.88558147e+02, 4.88558147e+02, 4.88558147e+02, 4.88558147e+02,
4.52862489e+02, 4.52862489e+02, 4.52862489e+02, 4.52862489e+02,
4.62028109e+02, 4.62028109e+02, 4.62028109e+02, 4.62028109e+02,
3.00499029e+02, 3.00499029e+02, 3.00499029e+02, 3.00499029e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999952, 0.99999952, 0.99999952, 0.99999952, 0.9999965 ,
0.9999965 , 0.9999965 , 0.9999965 , 0.99997816, 0.99997816,
0.99997816, 0.99997816, 0.99988296, 0.99988296, 0.99988296,
0.99988296, 0.99946234, 0.99946234, 0.99946234, 0.99946234,
0.99789034, 0.99789034, 0.99789034, 0.99789034, 0.99295856,
0.99295856, 0.99295856, 0.99295856, 0.980071 , 0.980071 ,
0.980071 , 0.980071 , 0.9521403 , 0.9521403 , 0.9521403 ,
0.9521403 , 0.90173314, 0.90173314, 0.90173314, 0.90173314,
0.82445024, 0.82445024, 0.82445024, 0.82445024, 0.72949004,
0.72949004, 0.72949004, 0.72949004, 0.65187205, 0.65187205,
0.65187205, 0.65187205, 0.59559841, 0.59559841, 0.59559841,
0.59559841, 0.57914818, 0.57914818, 0.57914818, 0.57914818,
0.57437002, 0.57437002, 0.57437002, 0.57437002, 0.63368918,
0.63368918, 0.63368918, 0.63368918, 3.58726912, 3.58726912,
3.58726912, 3.58726912, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974479e+01, -1.95974479e+01, -1.95974479e+01, -1.95974479e+01,
-1.95974320e+01, -1.95974320e+01, -1.95974320e+01, -1.95974320e+01,
-1.95973191e+01, -1.95973191e+01, -1.95973191e+01, -1.95973191e+01,
-1.95966329e+01, -1.95966329e+01, -1.95966329e+01, -1.95966329e+01,
-1.95930707e+01, -1.95930707e+01, -1.95930707e+01, -1.95930707e+01,
-1.95773334e+01, -1.95773334e+01, -1.95773334e+01, -1.95773334e+01,
-1.95185033e+01, -1.95185033e+01, -1.95185033e+01, -1.95185033e+01,
-1.93336877e+01, -1.93336877e+01, -1.93336877e+01, -1.93336877e+01,
-1.88482664e+01, -1.88482664e+01, -1.88482664e+01, -1.88482664e+01,
-1.77810596e+01, -1.77810596e+01, -1.77810596e+01, -1.77810596e+01,
-1.57923139e+01, -1.57923139e+01, -1.57923139e+01, -1.57923139e+01,
-1.25447227e+01, -1.25447227e+01, -1.25447227e+01, -1.25447227e+01,
-8.23822829e+00, -8.23822829e+00, -8.23822829e+00, -8.23822829e+00,
-4.43863694e+00, -4.43863694e+00, -4.43863694e+00, -4.43863694e+00,
-1.92160634e+00, -1.92160634e+00, -1.92160634e+00, -1.92160634e+00,
-1.77949723e-02, -1.77949723e-02, -1.77949723e-02, -1.77949723e-02,
-2.01908997e-01, -2.01908997e-01, -2.01908997e-01, -2.01908997e-01,
-2.14835096e-01, -2.14835096e-01, -2.14835096e-01, -2.14835096e-01,
-3.18805273e+00, -3.18805273e+00, -3.18805273e+00, -3.18805273e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999921e+02, 9.99999921e+02, 9.99999921e+02, 9.99999921e+02,
9.99999326e+02, 9.99999326e+02, 9.99999326e+02, 9.99999326e+02,
9.99995102e+02, 9.99995102e+02, 9.99995102e+02, 9.99995102e+02,
9.99969427e+02, 9.99969427e+02, 9.99969427e+02, 9.99969427e+02,
9.99836154e+02, 9.99836154e+02, 9.99836154e+02, 9.99836154e+02,
9.99247547e+02, 9.99247547e+02, 9.99247547e+02, 9.99247547e+02,
9.97049802e+02, 9.97049802e+02, 9.97049802e+02, 9.97049802e+02,
9.90172519e+02, 9.90172519e+02, 9.90172519e+02, 9.90172519e+02,
9.72304421e+02, 9.72304421e+02, 9.72304421e+02, 9.72304421e+02,
9.34010134e+02, 9.34010134e+02, 9.34010134e+02, 9.34010134e+02,
8.66196340e+02, 8.66196340e+02, 8.66196340e+02, 8.66196340e+02,
7.64882551e+02, 7.64882551e+02, 7.64882551e+02, 7.64882551e+02,
6.45657443e+02, 6.45657443e+02, 6.45657443e+02, 6.45657443e+02,
5.54585581e+02, 5.54585581e+02, 5.54585581e+02, 5.54585581e+02,
4.92797177e+02, 4.92797177e+02, 4.92797177e+02, 4.92797177e+02,
4.75345099e+02, 4.75345099e+02, 4.75345099e+02, 4.75345099e+02,
4.57990819e+02, 4.57990819e+02, 4.57990819e+02, 4.57990819e+02,
4.60103261e+02, 4.60103261e+02, 4.60103261e+02, 4.60103261e+02,
3.30008496e+02, 3.30008496e+02, 3.30008496e+02, 3.30008496e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999981, 0.99999981, 0.99999981,
0.99999981, 0.99999866, 0.99999866, 0.99999866, 0.99999866,
0.99999185, 0.99999185, 0.99999185, 0.99999185, 0.99995665,
0.99995665, 0.99995665, 0.99995665, 0.9997987 , 0.9997987 ,
0.9997987 , 0.9997987 , 0.99918622, 0.99918622, 0.99918622,
0.99918622, 0.99714781, 0.99714781, 0.99714781, 0.99714781,
0.99137002, 0.99137002, 0.99137002, 0.99137002, 0.97752123,
0.97752123, 0.97752123, 0.97752123, 0.94954186, 0.94954186,
0.94954186, 0.94954186, 0.90166108, 0.90166108, 0.90166108,
0.90166108, 0.83096957, 0.83096957, 0.83096957, 0.83096957,
0.7436459 , 0.7436459 , 0.7436459 , 0.7436459 , 0.66836636,
0.66836636, 0.66836636, 0.66836636, 0.61591285, 0.61591285,
0.61591285, 0.61591285, 0.57809044, 0.57809044, 0.57809044,
0.57809044, 0.57324242, 0.57324242, 0.57324242, 0.57324242,
0.57874876, 0.57874876, 0.57874876, 0.57874876, 0.65663366,
0.65663366, 0.65663366, 0.65663366, 3.93821618, 3.93821618,
3.93821618, 3.93821618, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.5974499 , -19.5974499 , -19.5974499 , -19.5974499 ,
-19.59744909, -19.59744909, -19.59744909, -19.59744909,
-19.59744279, -19.59744279, -19.59744279, -19.59744279,
-19.59739985, -19.59739985, -19.59739985, -19.59739985,
-19.59714503, -19.59714503, -19.59714503, -19.59714503,
-19.59582803, -19.59582803, -19.59582803, -19.59582803,
-19.58991798, -19.58991798, -19.58991798, -19.58991798,
-19.56700021, -19.56700021, -19.56700021, -19.56700021,
-19.49069137, -19.49069137, -19.49069137, -19.49069137,
-19.27397613, -19.27397613, -19.27397613, -19.27397613,
-18.75133258, -18.75133258, -18.75133258, -18.75133258,
-17.67906739, -17.67906739, -17.67906739, -17.67906739,
-15.78509673, -15.78509673, -15.78509673, -15.78509673,
-12.82087437, -12.82087437, -12.82087437, -12.82087437,
-8.87533311, -8.87533311, -8.87533311, -8.87533311,
-5.28368574, -5.28368574, -5.28368574, -5.28368574,
-2.42980818, -2.42980818, -2.42980818, -2.42980818,
-1.01970799, -1.01970799, -1.01970799, -1.01970799,
0.11540562, 0.11540562, 0.11540562, 0.11540562,
-0.03629139, -0.03629139, -0.03629139, -0.03629139,
-0.24415936, -0.24415936, -0.24415936, -0.24415936,
-2.52596988, -2.52596988, -2.52596988, -2.52596988,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999966e+02, 9.99999966e+02, 9.99999966e+02, 9.99999966e+02,
9.99999730e+02, 9.99999730e+02, 9.99999730e+02, 9.99999730e+02,
9.99998124e+02, 9.99998124e+02, 9.99998124e+02, 9.99998124e+02,
9.99988589e+02, 9.99988589e+02, 9.99988589e+02, 9.99988589e+02,
9.99939313e+02, 9.99939313e+02, 9.99939313e+02, 9.99939313e+02,
9.99718211e+02, 9.99718211e+02, 9.99718211e+02, 9.99718211e+02,
9.98861226e+02, 9.98861226e+02, 9.98861226e+02, 9.98861226e+02,
9.96012267e+02, 9.96012267e+02, 9.96012267e+02, 9.96012267e+02,
9.87959394e+02, 9.87959394e+02, 9.87959394e+02, 9.87959394e+02,
9.68770607e+02, 9.68770607e+02, 9.68770607e+02, 9.68770607e+02,
9.30421725e+02, 9.30421725e+02, 9.30421725e+02, 9.30421725e+02,
8.65952932e+02, 8.65952932e+02, 8.65952932e+02, 8.65952932e+02,
7.73014001e+02, 7.73014001e+02, 7.73014001e+02, 7.73014001e+02,
6.62399864e+02, 6.62399864e+02, 6.62399864e+02, 6.62399864e+02,
5.71846195e+02, 5.71846195e+02, 5.71846195e+02, 5.71846195e+02,
5.12728848e+02, 5.12728848e+02, 5.12728848e+02, 5.12728848e+02,
4.72759582e+02, 4.72759582e+02, 4.72759582e+02, 4.72759582e+02,
4.68567984e+02, 4.68567984e+02, 4.68567984e+02, 4.68567984e+02,
4.62783905e+02, 4.62783905e+02, 4.62783905e+02, 4.62783905e+02,
4.61540554e+02, 4.61540554e+02, 4.61540554e+02, 4.61540554e+02,
3.57220974e+02, 3.57220974e+02, 3.57220974e+02, 3.57220974e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999992,
0.99999992, 0.99999992, 0.99999992, 0.99999949, 0.99999949,
0.99999949, 0.99999949, 0.99999694, 0.99999694, 0.99999694,
0.99999694, 0.99998382, 0.99998382, 0.99998382, 0.99998382,
0.9999242 , 0.9999242 , 0.9999242 , 0.9999242 , 0.99968622,
0.99968622, 0.99968622, 0.99968622, 0.99885605, 0.99885605,
0.99885605, 0.99885605, 0.99634282, 0.99634282, 0.99634282,
0.99634282, 0.98978924, 0.98978924, 0.98978924, 0.98978924,
0.97516207, 0.97516207, 0.97516207, 0.97516207, 0.9472807 ,
0.9472807 , 0.9472807 , 0.9472807 , 0.9016408 , 0.9016408 ,
0.9016408 , 0.9016408 , 0.83637229, 0.83637229, 0.83637229,
0.83637229, 0.75564896, 0.75564896, 0.75564896, 0.75564896,
0.68361276, 0.68361276, 0.68361276, 0.68361276, 0.6288253 ,
0.6288253 , 0.6288253 , 0.6288253 , 0.59528975, 0.59528975,
0.59528975, 0.59528975, 0.57037586, 0.57037586, 0.57037586,
0.57037586, 0.57016667, 0.57016667, 0.57016667, 0.57016667,
0.58091342, 0.58091342, 0.58091342, 0.58091342, 0.68382481,
0.68382481, 0.68382481, 0.68382481, 4.28630792, 4.28630792,
4.28630792, 4.28630792, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974496e+01, -1.95974496e+01, -1.95974496e+01, -1.95974496e+01,
-1.95974471e+01, -1.95974471e+01, -1.95974471e+01, -1.95974471e+01,
-1.95974308e+01, -1.95974308e+01, -1.95974308e+01, -1.95974308e+01,
-1.95973355e+01, -1.95973355e+01, -1.95973355e+01, -1.95973355e+01,
-1.95968445e+01, -1.95968445e+01, -1.95968445e+01, -1.95968445e+01,
-1.95946140e+01, -1.95946140e+01, -1.95946140e+01, -1.95946140e+01,
-1.95857093e+01, -1.95857093e+01, -1.95857093e+01, -1.95857093e+01,
-1.95546421e+01, -1.95546421e+01, -1.95546421e+01, -1.95546421e+01,
-1.94605230e+01, -1.94605230e+01, -1.94605230e+01, -1.94605230e+01,
-1.92144746e+01, -1.92144746e+01, -1.92144746e+01, -1.92144746e+01,
-1.86614309e+01, -1.86614309e+01, -1.86614309e+01, -1.86614309e+01,
-1.75901244e+01, -1.75901244e+01, -1.75901244e+01, -1.75901244e+01,
-1.57811609e+01, -1.57811609e+01, -1.57811609e+01, -1.57811609e+01,
-1.30521736e+01, -1.30521736e+01, -1.30521736e+01, -1.30521736e+01,
-9.42385469e+00, -9.42385469e+00, -9.42385469e+00, -9.42385469e+00,
-5.98755008e+00, -5.98755008e+00, -5.98755008e+00, -5.98755008e+00,
-3.23573271e+00, -3.23573271e+00, -3.23573271e+00, -3.23573271e+00,
-1.20413317e+00, -1.20413317e+00, -1.20413317e+00, -1.20413317e+00,
-5.64305177e-01, -5.64305177e-01, -5.64305177e-01, -5.64305177e-01,
1.39995268e-02, 1.39995268e-02, 1.39995268e-02, 1.39995268e-02,
1.89256301e-02, 1.89256301e-02, 1.89256301e-02, 1.89256301e-02,
-1.95671716e-01, -1.95671716e-01, -1.95671716e-01, -1.95671716e-01,
-1.96806591e+00, -1.96806591e+00, -1.96806591e+00, -1.96806591e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999986e+02, 9.99999986e+02, 9.99999986e+02, 9.99999986e+02,
9.99999893e+02, 9.99999893e+02, 9.99999893e+02, 9.99999893e+02,
9.99999281e+02, 9.99999281e+02, 9.99999281e+02, 9.99999281e+02,
9.99995715e+02, 9.99995715e+02, 9.99995715e+02, 9.99995715e+02,
9.99977346e+02, 9.99977346e+02, 9.99977346e+02, 9.99977346e+02,
9.99893890e+02, 9.99893890e+02, 9.99893890e+02, 9.99893890e+02,
9.99560786e+02, 9.99560786e+02, 9.99560786e+02, 9.99560786e+02,
9.98399370e+02, 9.98399370e+02, 9.98399370e+02, 9.98399370e+02,
9.94887882e+02, 9.94887882e+02, 9.94887882e+02, 9.94887882e+02,
9.85758358e+02, 9.85758358e+02, 9.85758358e+02, 9.85758358e+02,
9.65503274e+02, 9.65503274e+02, 9.65503274e+02, 9.65503274e+02,
9.27302076e+02, 9.27302076e+02, 9.27302076e+02, 9.27302076e+02,
8.65817631e+02, 8.65817631e+02, 8.65817631e+02, 8.65817631e+02,
7.79892533e+02, 7.79892533e+02, 7.79892533e+02, 7.79892533e+02,
6.76933134e+02, 6.76933134e+02, 6.76933134e+02, 6.76933134e+02,
5.89167334e+02, 5.89167334e+02, 5.89167334e+02, 5.89167334e+02,
5.25412022e+02, 5.25412022e+02, 5.25412022e+02, 5.25412022e+02,
4.89078201e+02, 4.89078201e+02, 4.89078201e+02, 4.89078201e+02,
4.63985098e+02, 4.63985098e+02, 4.63985098e+02, 4.63985098e+02,
4.65058638e+02, 4.65058638e+02, 4.65058638e+02, 4.65058638e+02,
4.65156283e+02, 4.65156283e+02, 4.65156283e+02, 4.65156283e+02,
4.64659087e+02, 4.64659087e+02, 4.64659087e+02, 4.64659087e+02,
3.83686908e+02, 3.83686908e+02, 3.83686908e+02, 3.83686908e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.9999998 , 0.9999998 , 0.9999998 , 0.9999998 , 0.99999884,
0.99999884, 0.99999884, 0.99999884, 0.99999392, 0.99999392,
0.99999392, 0.99999392, 0.99997133, 0.99997133, 0.99997133,
0.99997133, 0.99987901, 0.99987901, 0.99987901, 0.99987901,
0.99954452, 0.99954452, 0.99954452, 0.99954452, 0.99847623,
0.99847623, 0.99847623, 0.99847623, 0.9954892 , 0.9954892 ,
0.9954892 , 0.9954892 , 0.98822855, 0.98822855, 0.98822855,
0.98822855, 0.97297074, 0.97297074, 0.97297074, 0.97297074,
0.94528761, 0.94528761, 0.94528761, 0.94528761, 0.90165787,
0.90165787, 0.90165787, 0.90165787, 0.84092906, 0.84092906,
0.84092906, 0.84092906, 0.76608711, 0.76608711, 0.76608711,
0.76608711, 0.69670731, 0.69670731, 0.69670731, 0.69670731,
0.64308367, 0.64308367, 0.64308367, 0.64308367, 0.60371067,
0.60371067, 0.60371067, 0.60371067, 0.58425946, 0.58425946,
0.58425946, 0.58425946, 0.56833535, 0.56833535, 0.56833535,
0.56833535, 0.56833068, 0.56833068, 0.56833068, 0.56833068,
0.58142537, 0.58142537, 0.58142537, 0.58142537, 0.70986026,
0.70986026, 0.70986026, 0.70986026, 4.63577346, 4.63577346,
4.63577346, 4.63577346, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744984, -19.59744984, -19.59744984, -19.59744984,
-19.59744887, -19.59744887, -19.59744887, -19.59744887,
-19.59744263, -19.59744263, -19.59744263, -19.59744263,
-19.59740678, -19.59740678, -19.59740678, -19.59740678,
-19.5972226 , -19.5972226 , -19.5972226 , -19.5972226 ,
-19.59637732, -19.59637732, -19.59637732, -19.59637732,
-19.59292292, -19.59292292, -19.59292292, -19.59292292,
-19.58040675, -19.58040675, -19.58040675, -19.58040675,
-19.54042297, -19.54042297, -19.54042297, -19.54042297,
-19.42851195, -19.42851195, -19.42851195, -19.42851195,
-19.15564745, -19.15564745, -19.15564745, -19.15564745,
-18.57773882, -18.57773882, -18.57773882, -18.57773882,
-17.51157549, -17.51157549, -17.51157549, -17.51157549,
-15.77941976, -15.77941976, -15.77941976, -15.77941976,
-13.24556307, -13.24556307, -13.24556307, -13.24556307,
-9.90130641, -9.90130641, -9.90130641, -9.90130641,
-6.63662472, -6.63662472, -6.63662472, -6.63662472,
-3.86321413, -3.86321413, -3.86321413, -3.86321413,
-1.90761467, -1.90761467, -1.90761467, -1.90761467,
-0.53373993, -0.53373993, -0.53373993, -0.53373993,
-0.32840898, -0.32840898, -0.32840898, -0.32840898,
-0.10921252, -0.10921252, -0.10921252, -0.10921252,
-0.05293691, -0.05293691, -0.05293691, -0.05293691,
-0.18859653, -0.18859653, -0.18859653, -0.18859653,
-1.47682846, -1.47682846, -1.47682846, -1.47682846,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999958e+02, 9.99999958e+02, 9.99999958e+02, 9.99999958e+02,
9.99999724e+02, 9.99999724e+02, 9.99999724e+02, 9.99999724e+02,
9.99998383e+02, 9.99998383e+02, 9.99998383e+02, 9.99998383e+02,
9.99991492e+02, 9.99991492e+02, 9.99991492e+02, 9.99991492e+02,
9.99959865e+02, 9.99959865e+02, 9.99959865e+02, 9.99959865e+02,
9.99830624e+02, 9.99830624e+02, 9.99830624e+02, 9.99830624e+02,
9.99362473e+02, 9.99362473e+02, 9.99362473e+02, 9.99362473e+02,
9.97868188e+02, 9.97868188e+02, 9.97868188e+02, 9.97868188e+02,
9.93696023e+02, 9.93696023e+02, 9.93696023e+02, 9.93696023e+02,
9.83586489e+02, 9.83586489e+02, 9.83586489e+02, 9.83586489e+02,
9.62470316e+02, 9.62470316e+02, 9.62470316e+02, 9.62470316e+02,
9.24554339e+02, 9.24554339e+02, 9.24554339e+02, 9.24554339e+02,
8.65754701e+02, 8.65754701e+02, 8.65754701e+02, 8.65754701e+02,
7.85690318e+02, 7.85690318e+02, 7.85690318e+02, 7.85690318e+02,
6.89822261e+02, 6.89822261e+02, 6.89822261e+02, 6.89822261e+02,
6.04497868e+02, 6.04497868e+02, 6.04497868e+02, 6.04497868e+02,
5.41108543e+02, 5.41108543e+02, 5.41108543e+02, 5.41108543e+02,
4.96459113e+02, 4.96459113e+02, 4.96459113e+02, 4.96459113e+02,
4.76533195e+02, 4.76533195e+02, 4.76533195e+02, 4.76533195e+02,
4.61671833e+02, 4.61671833e+02, 4.61671833e+02, 4.61671833e+02,
4.62965063e+02, 4.62965063e+02, 4.62965063e+02, 4.62965063e+02,
4.65651723e+02, 4.65651723e+02, 4.65651723e+02, 4.65651723e+02,
4.67608555e+02, 4.67608555e+02, 4.67608555e+02, 4.67608555e+02,
4.10156069e+02, 4.10156069e+02, 4.10156069e+02, 4.10156069e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999992, 0.99999992, 0.99999992,
0.99999992, 0.99999956, 0.99999956, 0.99999956, 0.99999956,
0.99999771, 0.99999771, 0.99999771, 0.99999771, 0.99998912,
0.99998912, 0.99998912, 0.99998912, 0.99995333, 0.99995333,
0.99995333, 0.99995333, 0.9998196 , 0.9998196 , 0.9998196 ,
0.9998196 , 0.99937333, 0.99937333, 0.99937333, 0.99937333,
0.99805138, 0.99805138, 0.99805138, 0.99805138, 0.99459812,
0.99459812, 0.99459812, 0.99459812, 0.98669552, 0.98669552,
0.98669552, 0.98669552, 0.97092763, 0.97092763, 0.97092763,
0.97092763, 0.94351056, 0.94351056, 0.94351056, 0.94351056,
0.90169368, 0.90169368, 0.90169368, 0.90169368, 0.84485234,
0.84485234, 0.84485234, 0.84485234, 0.77523312, 0.77523312,
0.77523312, 0.77523312, 0.70864528, 0.70864528, 0.70864528,
0.70864528, 0.65509869, 0.65509869, 0.65509869, 0.65509869,
0.61605444, 0.61605444, 0.61605444, 0.61605444, 0.58867936,
0.58867936, 0.58867936, 0.58867936, 0.57853282, 0.57853282,
0.57853282, 0.57853282, 0.56884845, 0.56884845, 0.56884845,
0.56884845, 0.56787447, 0.56787447, 0.56787447, 0.56787447,
0.58180732, 0.58180732, 0.58180732, 0.58180732, 0.73521701,
0.73521701, 0.73521701, 0.73521701, 4.82794137, 4.82794137,
4.82794137, 4.82794137, 1.15660589, 1.15660589, 1.15660589,
1.15660589, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744994, -19.59744994, -19.59744994, -19.59744994,
-19.59744956, -19.59744956, -19.59744956, -19.59744956,
-19.59744717, -19.59744717, -19.59744717, -19.59744717,
-19.59743362, -19.59743362, -19.59743362, -19.59743362,
-19.59736417, -19.59736417, -19.59736417, -19.59736417,
-19.59704275, -19.59704275, -19.59704275, -19.59704275,
-19.59570378, -19.59570378, -19.59570378, -19.59570378,
-19.5906998 , -19.5906998 , -19.5906998 , -19.5906998 ,
-19.5740004 , -19.5740004 , -19.5740004 , -19.5740004 ,
-19.52451298, -19.52451298, -19.52451298, -19.52451298,
-19.39507264, -19.39507264, -19.39507264, -19.39507264,
-19.09778358, -19.09778358, -19.09778358, -19.09778358,
-18.49954665, -18.49954665, -18.49954665, -18.49954665,
-17.4414217 , -17.4414217 , -17.4414217 , -17.4414217 ,
-15.7788963 , -15.7788963 , -15.7788963 , -15.7788963 ,
-13.41092033, -13.41092033, -13.41092033, -13.41092033,
-10.31819294, -10.31819294, -10.31819294, -10.31819294,
-7.21065328, -7.21065328, -7.21065328, -7.21065328,
-4.51408308, -4.51408308, -4.51408308, -4.51408308,
-2.3752154 , -2.3752154 , -2.3752154 , -2.3752154 ,
-1.10270149, -1.10270149, -1.10270149, -1.10270149,
-0.21896876, -0.21896876, -0.21896876, -0.21896876,
-0.20366948, -0.20366948, -0.20366948, -0.20366948,
-0.18404565, -0.18404565, -0.18404565, -0.18404565,
-0.20213983, -0.20213983, -0.20213983, -0.20213983,
-0.22669592, -0.22669592, -0.22669592, -0.22669592,
-1.09863355, -1.09863355, -1.09863355, -1.09863355,
-16.8535667 , -16.8535667 , -16.8535667 , -16.8535667 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999983e+02, 9.99999983e+02, 9.99999983e+02, 9.99999983e+02,
9.99999894e+02, 9.99999894e+02, 9.99999894e+02, 9.99999894e+02,
9.99999387e+02, 9.99999387e+02, 9.99999387e+02, 9.99999387e+02,
9.99996788e+02, 9.99996788e+02, 9.99996788e+02, 9.99996788e+02,
9.99984762e+02, 9.99984762e+02, 9.99984762e+02, 9.99984762e+02,
9.99934664e+02, 9.99934664e+02, 9.99934664e+02, 9.99934664e+02,
9.99747458e+02, 9.99747458e+02, 9.99747458e+02, 9.99747458e+02,
9.99122925e+02, 9.99122925e+02, 9.99122925e+02, 9.99122925e+02,
9.97274131e+02, 9.97274131e+02, 9.97274131e+02, 9.97274131e+02,
9.92452313e+02, 9.92452313e+02, 9.92452313e+02, 9.92452313e+02,
9.81454273e+02, 9.81454273e+02, 9.81454273e+02, 9.81454273e+02,
9.59644205e+02, 9.59644205e+02, 9.59644205e+02, 9.59644205e+02,
9.22105989e+02, 9.22105989e+02, 9.22105989e+02, 9.22105989e+02,
8.65731962e+02, 8.65731962e+02, 8.65731962e+02, 8.65731962e+02,
7.90681314e+02, 7.90681314e+02, 7.90681314e+02, 7.90681314e+02,
7.01198820e+02, 7.01198820e+02, 7.01198820e+02, 7.01198820e+02,
6.18767047e+02, 6.18767047e+02, 6.18767047e+02, 6.18767047e+02,
5.54775362e+02, 5.54775362e+02, 5.54775362e+02, 5.54775362e+02,
5.09686354e+02, 5.09686354e+02, 5.09686354e+02, 5.09686354e+02,
4.79330707e+02, 4.79330707e+02, 4.79330707e+02, 4.79330707e+02,
4.70045366e+02, 4.70045366e+02, 4.70045366e+02, 4.70045366e+02,
4.62262247e+02, 4.62262247e+02, 4.62262247e+02, 4.62262247e+02,
4.62428940e+02, 4.62428940e+02, 4.62428940e+02, 4.62428940e+02,
4.65813647e+02, 4.65813647e+02, 4.65813647e+02, 4.65813647e+02,
4.69117027e+02, 4.69117027e+02, 4.69117027e+02, 4.69117027e+02,
4.26259896e+02, 4.26259896e+02, 4.26259896e+02, 4.26259896e+02,
2.11117906e+01, 2.11117906e+01, 2.11117906e+01, 2.11117906e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.99999983, 0.99999983,
0.99999983, 0.99999983, 0.99999913, 0.99999913, 0.99999913,
0.99999913, 0.99999585, 0.99999585, 0.99999585, 0.99999585,
0.99998199, 0.99998199, 0.99998199, 0.99998199, 0.99992882,
0.99992882, 0.99992882, 0.99992882, 0.99974481, 0.99974481,
0.99974481, 0.99974481, 0.99917295, 0.99917295, 0.99917295,
0.99917295, 0.99758596, 0.99758596, 0.99758596, 0.99758596,
0.99367857, 0.99367857, 0.99367857, 0.99367857, 0.98519471,
0.98519471, 0.98519471, 0.98519471, 0.96901577, 0.96901577,
0.96901577, 0.96901577, 0.94191031, 0.94191031, 0.94191031,
0.94191031, 0.90174038, 0.90174038, 0.90174038, 0.90174038,
0.8482627 , 0.8482627 , 0.8482627 , 0.8482627 , 0.78331437,
0.78331437, 0.78331437, 0.78331437, 0.71940582, 0.71940582,
0.71940582, 0.71940582, 0.66684154, 0.66684154, 0.66684154,
0.66684154, 0.62576044, 0.62576044, 0.62576044, 0.62576044,
0.598823 , 0.598823 , 0.598823 , 0.598823 , 0.58041014,
0.58041014, 0.58041014, 0.58041014, 0.57556638, 0.57556638,
0.57556638, 0.57556638, 0.56997368, 0.56997368, 0.56997368,
0.56997368, 0.56894812, 0.56894812, 0.56894812, 0.56894812,
0.58243209, 0.58243209, 0.58243209, 0.58243209, 0.75514243,
0.75514243, 0.75514243, 0.75514243, 4.86958295, 4.86958295,
4.86958295, 4.86958295, 1.4675873 , 1.4675873 , 1.4675873 ,
1.4675873 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744983, -19.59744983, -19.59744983, -19.59744983,
-19.59744891, -19.59744891, -19.59744891, -19.59744891,
-19.59744377, -19.59744377, -19.59744377, -19.59744377,
-19.59741747, -19.59741747, -19.59741747, -19.59741747,
-19.5972949 , -19.5972949 , -19.5972949 , -19.5972949 ,
-19.59677605, -19.59677605, -19.59677605, -19.59677605,
-19.59478652, -19.59478652, -19.59478652, -19.59478652,
-19.5879016 , -19.5879016 , -19.5879016 , -19.5879016 ,
-19.56650065, -19.56650065, -19.56650065, -19.56650065,
-19.50707861, -19.50707861, -19.50707861, -19.50707861,
-19.36053978, -19.36053978, -19.36053978, -19.36053978,
-19.0410584 , -19.0410584 , -19.0410584 , -19.0410584 ,
-18.42623744, -18.42623744, -18.42623744, -18.42623744,
-17.37815423, -17.37815423, -17.37815423, -17.37815423,
-15.77916693, -15.77916693, -15.77916693, -15.77916693,
-13.55541778, -13.55541778, -13.55541778, -13.55541778,
-10.68190654, -10.68190654, -10.68190654, -10.68190654,
-7.72976671, -7.72976671, -7.72976671, -7.72976671,
-5.09556067, -5.09556067, -5.09556067, -5.09556067,
-2.96483941, -2.96483941, -2.96483941, -2.96483941,
-1.38469248, -1.38469248, -1.38469248, -1.38469248,
-0.64781783, -0.64781783, -0.64781783, -0.64781783,
-0.11541459, -0.11541459, -0.11541459, -0.11541459,
-0.14563479, -0.14563479, -0.14563479, -0.14563479,
-0.2273905 , -0.2273905 , -0.2273905 , -0.2273905 ,
-0.32875463, -0.32875463, -0.32875463, -0.32875463,
-0.25700739, -0.25700739, -0.25700739, -0.25700739,
-0.75025376, -0.75025376, -0.75025376, -0.75025376,
-13.29087238, -13.29087238, -13.29087238, -13.29087238,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999993e+02, 9.99999993e+02, 9.99999993e+02, 9.99999993e+02,
9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
9.99999767e+02, 9.99999767e+02, 9.99999767e+02, 9.99999767e+02,
9.99998783e+02, 9.99998783e+02, 9.99998783e+02, 9.99998783e+02,
9.99994197e+02, 9.99994197e+02, 9.99994197e+02, 9.99994197e+02,
9.99974783e+02, 9.99974783e+02, 9.99974783e+02, 9.99974783e+02,
9.99900346e+02, 9.99900346e+02, 9.99900346e+02, 9.99900346e+02,
9.99642786e+02, 9.99642786e+02, 9.99642786e+02, 9.99642786e+02,
9.98842554e+02, 9.98842554e+02, 9.98842554e+02, 9.98842554e+02,
9.96623508e+02, 9.96623508e+02, 9.96623508e+02, 9.96623508e+02,
9.91169354e+02, 9.91169354e+02, 9.91169354e+02, 9.91169354e+02,
9.79367942e+02, 9.79367942e+02, 9.79367942e+02, 9.79367942e+02,
9.57001145e+02, 9.57001145e+02, 9.57001145e+02, 9.57001145e+02,
9.19902519e+02, 9.19902519e+02, 9.19902519e+02, 9.19902519e+02,
8.65735512e+02, 8.65735512e+02, 8.65735512e+02, 8.65735512e+02,
7.95067170e+02, 7.95067170e+02, 7.95067170e+02, 7.95067170e+02,
7.11251816e+02, 7.11251816e+02, 7.11251816e+02, 7.11251816e+02,
6.31754233e+02, 6.31754233e+02, 6.31754233e+02, 6.31754233e+02,
5.68454564e+02, 5.68454564e+02, 5.68454564e+02, 5.68454564e+02,
5.20436257e+02, 5.20436257e+02, 5.20436257e+02, 5.20436257e+02,
4.89916889e+02, 4.89916889e+02, 4.89916889e+02, 4.89916889e+02,
4.69972551e+02, 4.69972551e+02, 4.69972551e+02, 4.69972551e+02,
4.66691674e+02, 4.66691674e+02, 4.66691674e+02, 4.66691674e+02,
4.63549400e+02, 4.63549400e+02, 4.63549400e+02, 4.63549400e+02,
4.63619987e+02, 4.63619987e+02, 4.63619987e+02, 4.63619987e+02,
4.65989306e+02, 4.65989306e+02, 4.65989306e+02, 4.65989306e+02,
4.68533238e+02, 4.68533238e+02, 4.68533238e+02, 4.68533238e+02,
4.31027931e+02, 4.31027931e+02, 4.31027931e+02, 4.31027931e+02,
5.66211425e+01, 5.66211425e+01, 5.66211425e+01, 5.66211425e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999994, 0.99999994, 0.99999994, 0.99999994, 0.99999967,
0.99999967, 0.99999967, 0.99999967, 0.99999842, 0.99999842,
0.99999842, 0.99999842, 0.99999304, 0.99999304, 0.99999304,
0.99999304, 0.99997199, 0.99997199, 0.99997199, 0.99997199,
0.99989687, 0.99989687, 0.99989687, 0.99989687, 0.99965381,
0.99965381, 0.99965381, 0.99965381, 0.99894405, 0.99894405,
0.99894405, 0.99894405, 0.99708423, 0.99708423, 0.99708423,
0.99708423, 0.99273783, 0.99273783, 0.99273783, 0.99273783,
0.98372864, 0.98372864, 0.98372864, 0.98372864, 0.96722065,
0.96722065, 0.96722065, 0.96722065, 0.94045739, 0.94045739,
0.94045739, 0.94045739, 0.90179181, 0.90179181, 0.90179181,
0.90179181, 0.85125479, 0.85125479, 0.85125479, 0.85125479,
0.79043349, 0.79043349, 0.79043349, 0.79043349, 0.72930804,
0.72930804, 0.72930804, 0.72930804, 0.67758323, 0.67758323,
0.67758323, 0.67758323, 0.6363278 , 0.6363278 , 0.6363278 ,
0.6363278 , 0.605747 , 0.605747 , 0.605747 , 0.605747 ,
0.58842753, 0.58842753, 0.58842753, 0.58842753, 0.57645186,
0.57645186, 0.57645186, 0.57645186, 0.5740469 , 0.5740469 ,
0.5740469 , 0.5740469 , 0.57095662, 0.57095662, 0.57095662,
0.57095662, 0.57067495, 0.57067495, 0.57067495, 0.57067495,
0.58291142, 0.58291142, 0.58291142, 0.58291142, 0.76449003,
0.76449003, 0.76449003, 0.76449003, 4.85506785, 4.85506785,
4.85506785, 4.85506785, 1.84484019, 1.84484019, 1.84484019,
1.84484019, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744993, -19.59744993, -19.59744993, -19.59744993,
-19.59744958, -19.59744958, -19.59744958, -19.59744958,
-19.59744762, -19.59744762, -19.59744762, -19.59744762,
-19.59743763, -19.59743763, -19.59743763, -19.59743763,
-19.59739077, -19.59739077, -19.59739077, -19.59739077,
-19.59718971, -19.59718971, -19.59718971, -19.59718971,
-19.59640187, -19.59640187, -19.59640187, -19.59640187,
-19.59359107, -19.59359107, -19.59359107, -19.59359107,
-19.58449607, -19.58449607, -19.58449607, -19.58449607,
-19.55793209, -19.55793209, -19.55793209, -19.55793209,
-19.48827738, -19.48827738, -19.48827738, -19.48827738,
-19.32518419, -19.32518419, -19.32518419, -19.32518419,
-18.98557228, -18.98557228, -18.98557228, -18.98557228,
-18.35728175, -18.35728175, -18.35728175, -18.35728175,
-17.32063739, -17.32063739, -17.32063739, -17.32063739,
-15.77991266, -15.77991266, -15.77991266, -15.77991266,
-13.6812212 , -13.6812212 , -13.6812212 , -13.6812212 ,
-11.00333419, -11.00333419, -11.00333419, -11.00333419,
-8.1945414 , -8.1945414 , -8.1945414 , -8.1945414 ,
-5.64796666, -5.64796666, -5.64796666, -5.64796666,
-3.48446947, -3.48446947, -3.48446947, -3.48446947,
-1.8815922 , -1.8815922 , -1.8815922 , -1.8815922 ,
-0.77042698, -0.77042698, -0.77042698, -0.77042698,
-0.40469083, -0.40469083, -0.40469083, -0.40469083,
-0.12184113, -0.12184113, -0.12184113, -0.12184113,
-0.14071004, -0.14071004, -0.14071004, -0.14071004,
-0.26047921, -0.26047921, -0.26047921, -0.26047921,
-0.35229931, -0.35229931, -0.35229931, -0.35229931,
-0.22801595, -0.22801595, -0.22801595, -0.22801595,
-0.38194114, -0.38194114, -0.38194114, -0.38194114,
-10.70298365, -10.70298365, -10.70298365, -10.70298365,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999984e+02, 9.99999984e+02, 9.99999984e+02, 9.99999984e+02,
9.99999911e+02, 9.99999911e+02, 9.99999911e+02, 9.99999911e+02,
9.99999537e+02, 9.99999537e+02, 9.99999537e+02, 9.99999537e+02,
9.99997784e+02, 9.99997784e+02, 9.99997784e+02, 9.99997784e+02,
9.99990261e+02, 9.99990261e+02, 9.99990261e+02, 9.99990261e+02,
9.99960783e+02, 9.99960783e+02, 9.99960783e+02, 9.99960783e+02,
9.99855621e+02, 9.99855621e+02, 9.99855621e+02, 9.99855621e+02,
9.99515409e+02, 9.99515409e+02, 9.99515409e+02, 9.99515409e+02,
9.98522310e+02, 9.98522310e+02, 9.98522310e+02, 9.98522310e+02,
9.95922289e+02, 9.95922289e+02, 9.95922289e+02, 9.95922289e+02,
9.89857327e+02, 9.89857327e+02, 9.89857327e+02, 9.89857327e+02,
9.77330935e+02, 9.77330935e+02, 9.77330935e+02, 9.77330935e+02,
9.54520808e+02, 9.54520808e+02, 9.54520808e+02, 9.54520808e+02,
9.17903025e+02, 9.17903025e+02, 9.17903025e+02, 9.17903025e+02,
8.65754858e+02, 8.65754858e+02, 8.65754858e+02, 8.65754858e+02,
7.98905080e+02, 7.98905080e+02, 7.98905080e+02, 7.98905080e+02,
7.20192047e+02, 7.20192047e+02, 7.20192047e+02, 7.20192047e+02,
6.43756595e+02, 6.43756595e+02, 6.43756595e+02, 6.43756595e+02,
5.81098528e+02, 5.81098528e+02, 5.81098528e+02, 5.81098528e+02,
5.32495831e+02, 5.32495831e+02, 5.32495831e+02, 5.32495831e+02,
4.97357191e+02, 4.97357191e+02, 4.97357191e+02, 4.97357191e+02,
4.78087561e+02, 4.78087561e+02, 4.78087561e+02, 4.78087561e+02,
4.65512575e+02, 4.65512575e+02, 4.65512575e+02, 4.65512575e+02,
4.64978936e+02, 4.64978936e+02, 4.64978936e+02, 4.64978936e+02,
4.64673717e+02, 4.64673717e+02, 4.64673717e+02, 4.64673717e+02,
4.65549665e+02, 4.65549665e+02, 4.65549665e+02, 4.65549665e+02,
4.65877259e+02, 4.65877259e+02, 4.65877259e+02, 4.65877259e+02,
4.66221730e+02, 4.66221730e+02, 4.66221730e+02, 4.66221730e+02,
4.29568087e+02, 4.29568087e+02, 4.29568087e+02, 4.29568087e+02,
9.52105367e+01, 9.52105367e+01, 9.52105367e+01, 9.52105367e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999939, 0.99999939, 0.99999939, 0.99999939, 0.99999731,
0.99999731, 0.99999731, 0.99999731, 0.999989 , 0.999989 ,
0.999989 , 0.999989 , 0.99995856, 0.99995856, 0.99995856,
0.99995856, 0.99985665, 0.99985665, 0.99985665, 0.99985665,
0.99954597, 0.99954597, 0.99954597, 0.99954597, 0.99868755,
0.99868755, 0.99868755, 0.99868755, 0.99655014, 0.99655014,
0.99655014, 0.99655014, 0.99178181, 0.99178181, 0.99178181,
0.99178181, 0.98229854, 0.98229854, 0.98229854, 0.98229854,
0.96552985, 0.96552985, 0.96552985, 0.96552985, 0.93912839,
0.93912839, 0.93912839, 0.93912839, 0.90184264, 0.90184264,
0.90184264, 0.90184264, 0.85390898, 0.85390898, 0.85390898,
0.85390898, 0.7967545 , 0.7967545 , 0.7967545 , 0.7967545 ,
0.73829091, 0.73829091, 0.73829091, 0.73829091, 0.68780613,
0.68780613, 0.68780613, 0.68780613, 0.64606705, 0.64606705,
0.64606705, 0.64606705, 0.61466511, 0.61466511, 0.61466511,
0.61466511, 0.59269096, 0.59269096, 0.59269096, 0.59269096,
0.58250874, 0.58250874, 0.58250874, 0.58250874, 0.57508641,
0.57508641, 0.57508641, 0.57508641, 0.5734657 , 0.5734657 ,
0.5734657 , 0.5734657 , 0.57174434, 0.57174434, 0.57174434,
0.57174434, 0.57164142, 0.57164142, 0.57164142, 0.57164142,
0.58284131, 0.58284131, 0.58284131, 0.58284131, 0.76151887,
0.76151887, 0.76151887, 0.76151887, 4.81691328, 4.81691328,
4.81691328, 4.81691328, 2.25893065, 2.25893065, 2.25893065,
2.25893065, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744984, -19.59744984, -19.59744984, -19.59744984,
-19.59744909, -19.59744909, -19.59744909, -19.59744909,
-19.59744528, -19.59744528, -19.59744528, -19.59744528,
-19.59742733, -19.59742733, -19.59742733, -19.59742733,
-19.59734939, -19.59734939, -19.59734939, -19.59734939,
-19.59703833, -19.59703833, -19.59703833, -19.59703833,
-19.59589939, -19.59589939, -19.59589939, -19.59589939,
-19.5920864 , -19.5920864 , -19.5920864 , -19.5920864 ,
-19.58046039, -19.58046039, -19.58046039, -19.58046039,
-19.54832897, -19.54832897, -19.54832897, -19.54832897,
-19.46825555, -19.46825555, -19.46825555, -19.46825555,
-19.28922569, -19.28922569, -19.28922569, -19.28922569,
-18.93137655, -18.93137655, -18.93137655, -18.93137655,
-18.29222556, -18.29222556, -18.29222556, -18.29222556,
-17.26796639, -17.26796639, -17.26796639, -17.26796639,
-15.78084771, -15.78084771, -15.78084771, -15.78084771,
-13.79230809, -13.79230809, -13.79230809, -13.79230809,
-11.28800263, -11.28800263, -11.28800263, -11.28800263,
-8.61569585, -8.61569585, -8.61569585, -8.61569585,
-6.15272067, -6.15272067, -6.15272067, -6.15272067,
-4.01418509, -4.01418509, -4.01418509, -4.01418509,
-2.29585438, -2.29585438, -2.29585438, -2.29585438,
-1.16557706, -1.16557706, -1.16557706, -1.16557706,
-0.4224157 , -0.4224157 , -0.4224157 , -0.4224157 ,
-0.28119683, -0.28119683, -0.28119683, -0.28119683,
-0.1676693 , -0.1676693 , -0.1676693 , -0.1676693 ,
-0.19033632, -0.19033632, -0.19033632, -0.19033632,
-0.26119683, -0.26119683, -0.26119683, -0.26119683,
-0.27753473, -0.27753473, -0.27753473, -0.27753473,
-0.11037821, -0.11037821, -0.11037821, -0.11037821,
-0.04365842, -0.04365842, -0.04365842, -0.04365842,
-8.8283585 , -8.8283585 , -8.8283585 , -8.8283585 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999966e+02, 9.99999966e+02, 9.99999966e+02, 9.99999966e+02,
9.99999823e+02, 9.99999823e+02, 9.99999823e+02, 9.99999823e+02,
9.99999152e+02, 9.99999152e+02, 9.99999152e+02, 9.99999152e+02,
9.99996236e+02, 9.99996236e+02, 9.99996236e+02, 9.99996236e+02,
9.99984597e+02, 9.99984597e+02, 9.99984597e+02, 9.99984597e+02,
9.99941983e+02, 9.99941983e+02, 9.99941983e+02, 9.99941983e+02,
9.99799330e+02, 9.99799330e+02, 9.99799330e+02, 9.99799330e+02,
9.99364480e+02, 9.99364480e+02, 9.99364480e+02, 9.99364480e+02,
9.98163506e+02, 9.98163506e+02, 9.98163506e+02, 9.98163506e+02,
9.95176015e+02, 9.95176015e+02, 9.95176015e+02, 9.95176015e+02,
9.88524479e+02, 9.88524479e+02, 9.88524479e+02, 9.88524479e+02,
9.75344870e+02, 9.75344870e+02, 9.75344870e+02, 9.75344870e+02,
9.52185825e+02, 9.52185825e+02, 9.52185825e+02, 9.52185825e+02,
9.16075033e+02, 9.16075033e+02, 9.16075033e+02, 9.16075033e+02,
8.65780612e+02, 8.65780612e+02, 8.65780612e+02, 8.65780612e+02,
8.02308999e+02, 8.02308999e+02, 8.02308999e+02, 8.02308999e+02,
7.28177860e+02, 7.28177860e+02, 7.28177860e+02, 7.28177860e+02,
6.54721861e+02, 6.54721861e+02, 6.54721861e+02, 6.54721861e+02,
5.93204423e+02, 5.93204423e+02, 5.93204423e+02, 5.93204423e+02,
5.43726171e+02, 5.43726171e+02, 5.43726171e+02, 5.43726171e+02,
5.07365905e+02, 5.07365905e+02, 5.07365905e+02, 5.07365905e+02,
4.82452325e+02, 4.82452325e+02, 4.82452325e+02, 4.82452325e+02,
4.71384603e+02, 4.71384603e+02, 4.71384603e+02, 4.71384603e+02,
4.63981574e+02, 4.63981574e+02, 4.63981574e+02, 4.63981574e+02,
4.64333018e+02, 4.64333018e+02, 4.64333018e+02, 4.64333018e+02,
4.65577731e+02, 4.65577731e+02, 4.65577731e+02, 4.65577731e+02,
4.66613550e+02, 4.66613550e+02, 4.66613550e+02, 4.66613550e+02,
4.65261608e+02, 4.65261608e+02, 4.65261608e+02, 4.65261608e+02,
4.62630505e+02, 4.62630505e+02, 4.62630505e+02, 4.62630505e+02,
4.25746506e+02, 4.25746506e+02, 4.25746506e+02, 4.25746506e+02,
1.35534849e+02, 1.35534849e+02, 1.35534849e+02, 1.35534849e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999977, 0.99999977, 0.99999977,
0.99999977, 0.99999896, 0.99999896, 0.99999896, 0.99999896,
0.99999568, 0.99999568, 0.99999568, 0.99999568, 0.99998342,
0.99998342, 0.99998342, 0.99998342, 0.99994115, 0.99994115,
0.99994115, 0.99994115, 0.99980744, 0.99980744, 0.99980744,
0.99980744, 0.9994209 , 0.9994209 , 0.9994209 , 0.9994209 ,
0.99840456, 0.99840456, 0.99840456, 0.99840456, 0.99598731,
0.99598731, 0.99598731, 0.99598731, 0.9908153 , 0.9908153 ,
0.9908153 , 0.9908153 , 0.98090476, 0.98090476, 0.98090476,
0.98090476, 0.96393267, 0.96393267, 0.96393267, 0.96393267,
0.93790486, 0.93790486, 0.93790486, 0.93790486, 0.90189069,
0.90189069, 0.90189069, 0.90189069, 0.85628111, 0.85628111,
0.85628111, 0.85628111, 0.80238217, 0.80238217, 0.80238217,
0.80238217, 0.74650695, 0.74650695, 0.74650695, 0.74650695,
0.69727486, 0.69727486, 0.69727486, 0.69727486, 0.65578044,
0.65578044, 0.65578044, 0.65578044, 0.62276211, 0.62276211,
0.62276211, 0.62276211, 0.59984564, 0.59984564, 0.59984564,
0.59984564, 0.58469198, 0.58469198, 0.58469198, 0.58469198,
0.57937376, 0.57937376, 0.57937376, 0.57937376, 0.5751276 ,
0.5751276 , 0.5751276 , 0.5751276 , 0.57353803, 0.57353803,
0.57353803, 0.57353803, 0.57206183, 0.57206183, 0.57206183,
0.57206183, 0.5713875 , 0.5713875 , 0.5713875 , 0.5713875 ,
0.58173584, 0.58173584, 0.58173584, 0.58173584, 0.75615848,
0.75615848, 0.75615848, 0.75615848, 4.80345797, 4.80345797,
4.80345797, 4.80345797, 2.65264632, 2.65264632, 2.65264632,
2.65264632, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744994, -19.59744994, -19.59744994, -19.59744994,
-19.59744965, -19.59744965, -19.59744965, -19.59744965,
-19.5974482 , -19.5974482 , -19.5974482 , -19.5974482 ,
-19.5974413 , -19.5974413 , -19.5974413 , -19.5974413 ,
-19.59741108, -19.59741108, -19.59741108, -19.59741108,
-19.59728853, -19.59728853, -19.59728853, -19.59728853,
-19.5968297 , -19.5968297 , -19.5968297 , -19.5968297 ,
-19.5952481 , -19.5952481 , -19.5952481 , -19.5952481 ,
-19.59024502, -19.59024502, -19.59024502, -19.59024502,
-19.57577973, -19.57577973, -19.57577973, -19.57577973,
-19.53773193, -19.53773193, -19.53773193, -19.53773193,
-19.4471473 , -19.4471473 , -19.4471473 , -19.4471473 ,
-19.25284345, -19.25284345, -19.25284345, -19.25284345,
-18.87848976, -18.87848976, -18.87848976, -18.87848976,
-18.23067614, -18.23067614, -18.23067614, -18.23067614,
-17.21942704, -17.21942704, -17.21942704, -17.21942704,
-15.78184245, -15.78184245, -15.78184245, -15.78184245,
-13.89153438, -13.89153438, -13.89153438, -13.89153438,
-11.5404357 , -11.5404357 , -11.5404357 , -11.5404357 ,
-8.99690317, -8.99690317, -8.99690317, -8.99690317,
-6.62316736, -6.62316736, -6.62316736, -6.62316736,
-4.50690243, -4.50690243, -4.50690243, -4.50690243,
-2.76629623, -2.76629623, -2.76629623, -2.76629623,
-1.45746824, -1.45746824, -1.45746824, -1.45746824,
-0.72191187, -0.72191187, -0.72191187, -0.72191187,
-0.25384882, -0.25384882, -0.25384882, -0.25384882,
-0.22267787, -0.22267787, -0.22267787, -0.22267787,
-0.21716883, -0.21716883, -0.21716883, -0.21716883,
-0.24125632, -0.24125632, -0.24125632, -0.24125632,
-0.23810243, -0.23810243, -0.23810243, -0.23810243,
-0.14361122, -0.14361122, -0.14361122, -0.14361122,
0.10057084, 0.10057084, 0.10057084, 0.10057084,
0.16443868, 0.16443868, 0.16443868, 0.16443868,
-7.3920307 , -7.3920307 , -7.3920307 , -7.3920307 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999987e+02, 9.99999987e+02, 9.99999987e+02, 9.99999987e+02,
9.99999932e+02, 9.99999932e+02, 9.99999932e+02, 9.99999932e+02,
9.99999675e+02, 9.99999675e+02, 9.99999675e+02, 9.99999675e+02,
9.99998544e+02, 9.99998544e+02, 9.99998544e+02, 9.99998544e+02,
9.99993958e+02, 9.99993958e+02, 9.99993958e+02, 9.99993958e+02,
9.99976791e+02, 9.99976791e+02, 9.99976791e+02, 9.99976791e+02,
9.99917615e+02, 9.99917615e+02, 9.99917615e+02, 9.99917615e+02,
9.99730445e+02, 9.99730445e+02, 9.99730445e+02, 9.99730445e+02,
9.99189454e+02, 9.99189454e+02, 9.99189454e+02, 9.99189454e+02,
9.97767695e+02, 9.97767695e+02, 9.97767695e+02, 9.97767695e+02,
9.94389774e+02, 9.94389774e+02, 9.94389774e+02, 9.94389774e+02,
9.87177517e+02, 9.87177517e+02, 9.87177517e+02, 9.87177517e+02,
9.73410164e+02, 9.73410164e+02, 9.73410164e+02, 9.73410164e+02,
9.49981230e+02, 9.49981230e+02, 9.49981230e+02, 9.49981230e+02,
9.14392984e+02, 9.14392984e+02, 9.14392984e+02, 9.14392984e+02,
8.65808514e+02, 8.65808514e+02, 8.65808514e+02, 8.65808514e+02,
8.05361247e+02, 8.05361247e+02, 8.05361247e+02, 8.05361247e+02,
7.35330772e+02, 7.35330772e+02, 7.35330772e+02, 7.35330772e+02,
6.64800382e+02, 6.64800382e+02, 6.64800382e+02, 6.64800382e+02,
6.04494583e+02, 6.04494583e+02, 6.04494583e+02, 6.04494583e+02,
5.55006186e+02, 5.55006186e+02, 5.55006186e+02, 5.55006186e+02,
5.16541818e+02, 5.16541818e+02, 5.16541818e+02, 5.16541818e+02,
4.90365807e+02, 4.90365807e+02, 4.90365807e+02, 4.90365807e+02,
4.73379066e+02, 4.73379066e+02, 4.73379066e+02, 4.73379066e+02,
4.67844270e+02, 4.67844270e+02, 4.67844270e+02, 4.67844270e+02,
4.64036881e+02, 4.64036881e+02, 4.64036881e+02, 4.64036881e+02,
4.64430634e+02, 4.64430634e+02, 4.64430634e+02, 4.64430634e+02,
4.65947772e+02, 4.65947772e+02, 4.65947772e+02, 4.65947772e+02,
4.66292983e+02, 4.66292983e+02, 4.66292983e+02, 4.66292983e+02,
4.63793327e+02, 4.63793327e+02, 4.63793327e+02, 4.63793327e+02,
4.58295049e+02, 4.58295049e+02, 4.58295049e+02, 4.58295049e+02,
4.26680001e+02, 4.26680001e+02, 4.26680001e+02, 4.26680001e+02,
1.72719750e+02, 1.72719750e+02, 1.72719750e+02, 1.72719750e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999991,
0.99999991, 0.99999991, 0.99999991, 0.9999996 , 0.9999996 ,
0.9999996 , 0.9999996 , 0.99999831, 0.99999831, 0.99999831,
0.99999831, 0.99999339, 0.99999339, 0.99999339, 0.99999339,
0.99997601, 0.99997601, 0.99997601, 0.99997601, 0.99991924,
0.99991924, 0.99991924, 0.99991924, 0.9997486 , 0.9997486 ,
0.9997486 , 0.9997486 , 0.9992784 , 0.9992784 , 0.9992784 ,
0.9992784 , 0.99809628, 0.99809628, 0.99809628, 0.99809628,
0.99539903, 0.99539903, 0.99539903, 0.99539903, 0.98984223,
0.98984223, 0.98984223, 0.98984223, 0.97954708, 0.97954708,
0.97954708, 0.97954708, 0.9624199 , 0.9624199 , 0.9624199 ,
0.9624199 , 0.93677211, 0.93677211, 0.93677211, 0.93677211,
0.90193406, 0.90193406, 0.90193406, 0.90193406, 0.85840937,
0.85840937, 0.85840937, 0.85840937, 0.80742851, 0.80742851,
0.80742851, 0.80742851, 0.75400455, 0.75400455, 0.75400455,
0.75400455, 0.70614068, 0.70614068, 0.70614068, 0.70614068,
0.66495362, 0.66495362, 0.66495362, 0.66495362, 0.63140079,
0.63140079, 0.63140079, 0.63140079, 0.60602151, 0.60602151,
0.60602151, 0.60602151, 0.59019289, 0.59019289, 0.59019289,
0.59019289, 0.58021561, 0.58021561, 0.58021561, 0.58021561,
0.57785903, 0.57785903, 0.57785903, 0.57785903, 0.5756833 ,
0.5756833 , 0.5756833 , 0.5756833 , 0.57399443, 0.57399443,
0.57399443, 0.57399443, 0.57175661, 0.57175661, 0.57175661,
0.57175661, 0.57016666, 0.57016666, 0.57016666, 0.57016666,
0.57891026, 0.57891026, 0.57891026, 0.57891026, 0.75167445,
0.75167445, 0.75167445, 0.75167445, 4.81541575, 4.81541575,
4.81541575, 4.81541575, 3.02284787, 3.02284787, 3.02284787,
3.02284787, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744987, -19.59744987, -19.59744987, -19.59744987,
-19.59744931, -19.59744931, -19.59744931, -19.59744931,
-19.59744666, -19.59744666, -19.59744666, -19.59744666,
-19.59743493, -19.59743493, -19.59743493, -19.59743493,
-19.59738673, -19.59738673, -19.59738673, -19.59738673,
-19.59720271, -19.59720271, -19.59720271, -19.59720271,
-19.59655219, -19.59655219, -19.59655219, -19.59655219,
-19.59442804, -19.59442804, -19.59442804, -19.59442804,
-19.58804304, -19.58804304, -19.58804304, -19.58804304,
-19.57044604, -19.57044604, -19.57044604, -19.57044604,
-19.52618557, -19.52618557, -19.52618557, -19.52618557,
-19.42507494, -19.42507494, -19.42507494, -19.42507494,
-19.21618398, -19.21618398, -19.21618398, -19.21618398,
-18.82690858, -18.82690858, -18.82690858, -18.82690858,
-18.17229471, -18.17229471, -18.17229471, -18.17229471,
-17.17444894, -17.17444894, -17.17444894, -17.17444894,
-15.78278408, -15.78278408, -15.78278408, -15.78278408,
-13.98043263, -13.98043263, -13.98043263, -13.98043263,
-11.76527896, -11.76527896, -11.76527896, -11.76527896,
-9.34378632, -9.34378632, -9.34378632, -9.34378632,
-7.05643989, -7.05643989, -7.05643989, -7.05643989,
-4.98262758, -4.98262758, -4.98262758, -4.98262758,
-3.20805664, -3.20805664, -3.20805664, -3.20805664,
-1.84956697, -1.84956697, -1.84956697, -1.84956697,
-0.89863961, -0.89863961, -0.89863961, -0.89863961,
-0.46628545, -0.46628545, -0.46628545, -0.46628545,
-0.19649909, -0.19649909, -0.19649909, -0.19649909,
-0.20536213, -0.20536213, -0.20536213, -0.20536213,
-0.24763714, -0.24763714, -0.24763714, -0.24763714,
-0.25291938, -0.25291938, -0.25291938, -0.25291938,
-0.18625508, -0.18625508, -0.18625508, -0.18625508,
0.04128025, 0.04128025, 0.04128025, 0.04128025,
0.30247955, 0.30247955, 0.30247955, 0.30247955,
0.2509268 , 0.2509268 , 0.2509268 , 0.2509268 ,
-6.20156314, -6.20156314, -6.20156314, -6.20156314,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999995e+02, 9.99999995e+02, 9.99999995e+02, 9.99999995e+02,
9.99999974e+02, 9.99999974e+02, 9.99999974e+02, 9.99999974e+02,
9.99999875e+02, 9.99999875e+02, 9.99999875e+02, 9.99999875e+02,
9.99999436e+02, 9.99999436e+02, 9.99999436e+02, 9.99999436e+02,
9.99997633e+02, 9.99997633e+02, 9.99997633e+02, 9.99997633e+02,
9.99990747e+02, 9.99990747e+02, 9.99990747e+02, 9.99990747e+02,
9.99966408e+02, 9.99966408e+02, 9.99966408e+02, 9.99966408e+02,
9.99886934e+02, 9.99886934e+02, 9.99886934e+02, 9.99886934e+02,
9.99648077e+02, 9.99648077e+02, 9.99648077e+02, 9.99648077e+02,
9.98990041e+02, 9.98990041e+02, 9.98990041e+02, 9.98990041e+02,
9.97336580e+02, 9.97336580e+02, 9.97336580e+02, 9.97336580e+02,
9.93568199e+02, 9.93568199e+02, 9.93568199e+02, 9.93568199e+02,
9.85821909e+02, 9.85821909e+02, 9.85821909e+02, 9.85821909e+02,
9.71526437e+02, 9.71526437e+02, 9.71526437e+02, 9.71526437e+02,
9.47894147e+02, 9.47894147e+02, 9.47894147e+02, 9.47894147e+02,
9.12836507e+02, 9.12836507e+02, 9.12836507e+02, 9.12836507e+02,
8.65834851e+02, 8.65834851e+02, 8.65834851e+02, 8.65834851e+02,
8.08105172e+02, 8.08105172e+02, 8.08105172e+02, 8.08105172e+02,
7.41758147e+02, 7.41758147e+02, 7.41758147e+02, 7.41758147e+02,
6.74072947e+02, 6.74072947e+02, 6.74072947e+02, 6.74072947e+02,
6.15130380e+02, 6.15130380e+02, 6.15130380e+02, 6.15130380e+02,
5.65729150e+02, 5.65729150e+02, 5.65729150e+02, 5.65729150e+02,
5.26412191e+02, 5.26412191e+02, 5.26412191e+02, 5.26412191e+02,
4.97253516e+02, 4.97253516e+02, 4.97253516e+02, 4.97253516e+02,
4.79375696e+02, 4.79375696e+02, 4.79375696e+02, 4.79375696e+02,
4.68320744e+02, 4.68320744e+02, 4.68320744e+02, 4.68320744e+02,
4.66136700e+02, 4.66136700e+02, 4.66136700e+02, 4.66136700e+02,
4.64672864e+02, 4.64672864e+02, 4.64672864e+02, 4.64672864e+02,
4.64966289e+02, 4.64966289e+02, 4.64966289e+02, 4.64966289e+02,
4.65608335e+02, 4.65608335e+02, 4.65608335e+02, 4.65608335e+02,
4.64881882e+02, 4.64881882e+02, 4.64881882e+02, 4.64881882e+02,
4.60646102e+02, 4.60646102e+02, 4.60646102e+02, 4.60646102e+02,
4.55385849e+02, 4.55385849e+02, 4.55385849e+02, 4.55385849e+02,
4.31816803e+02, 4.31816803e+02, 4.31816803e+02, 4.31816803e+02,
2.06635628e+02, 2.06635628e+02, 2.06635628e+02, 2.06635628e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999984, 0.99999984, 0.99999984, 0.99999984, 0.99999934,
0.99999934, 0.99999934, 0.99999934, 0.99999737, 0.99999737,
0.99999737, 0.99999737, 0.99999027, 0.99999027, 0.99999027,
0.99999027, 0.99996643, 0.99996643, 0.99996643, 0.99996643,
0.9998923 , 0.9998923 , 0.9998923 , 0.9998923 , 0.99967957,
0.99967957, 0.99967957, 0.99967957, 0.9991184 , 0.9991184 ,
0.9991184 , 0.9991184 , 0.99776398, 0.99776398, 0.99776398,
0.99776398, 0.99478831, 0.99478831, 0.99478831, 0.99478831,
0.9888658 , 0.9888658 , 0.9888658 , 0.9888658 , 0.9782249 ,
0.9782249 , 0.9782249 , 0.9782249 , 0.96098356, 0.96098356,
0.96098356, 0.96098356, 0.93571801, 0.93571801, 0.93571801,
0.93571801, 0.90197123, 0.90197123, 0.90197123, 0.90197123,
0.86032975, 0.86032975, 0.86032975, 0.86032975, 0.81198217,
0.81198217, 0.81198217, 0.81198217, 0.76085236, 0.76085236,
0.76085236, 0.76085236, 0.71438618, 0.71438618, 0.71438618,
0.71438618, 0.673788 , 0.673788 , 0.673788 , 0.673788 ,
0.63968963, 0.63968963, 0.63968963, 0.63968963, 0.61328797,
0.61328797, 0.61328797, 0.61328797, 0.59447045, 0.59447045,
0.59447045, 0.59447045, 0.58428705, 0.58428705, 0.58428705,
0.58428705, 0.57809617, 0.57809617, 0.57809617, 0.57809617,
0.57719122, 0.57719122, 0.57719122, 0.57719122, 0.57620897,
0.57620897, 0.57620897, 0.57620897, 0.57422688, 0.57422688,
0.57422688, 0.57422688, 0.571107 , 0.571107 , 0.571107 ,
0.571107 , 0.56786369, 0.56786369, 0.56786369, 0.56786369,
0.57567961, 0.57567961, 0.57567961, 0.57567961, 0.74817334,
0.74817334, 0.74817334, 0.74817334, 4.84157196, 4.84157196,
4.84157196, 4.84157196, 3.37984832, 3.37984832, 3.37984832,
3.37984832, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744995, -19.59744995, -19.59744995, -19.59744995,
-19.59744973, -19.59744973, -19.59744973, -19.59744973,
-19.59744871, -19.59744871, -19.59744871, -19.59744871,
-19.59744416, -19.59744416, -19.59744416, -19.59744416,
-19.59742522, -19.59742522, -19.59742522, -19.59742522,
-19.59735169, -19.59735169, -19.59735169, -19.59735169,
-19.59708593, -19.59708593, -19.59708593, -19.59708593,
-19.59619382, -19.59619382, -19.59619382, -19.59619382,
-19.59342017, -19.59342017, -19.59342017, -19.59342017,
-19.58545999, -19.58545999, -19.58545999, -19.58545999,
-19.56445685, -19.56445685, -19.56445685, -19.56445685,
-19.51373667, -19.51373667, -19.51373667, -19.51373667,
-19.40214943, -19.40214943, -19.40214943, -19.40214943,
-19.17936756, -19.17936756, -19.17936756, -19.17936756,
-18.77661552, -18.77661552, -18.77661552, -18.77661552,
-18.1167873 , -18.1167873 , -18.1167873 , -18.1167873 ,
-17.1325607 , -17.1325607 , -17.1325607 , -17.1325607 ,
-15.78358459, -15.78358459, -15.78358459, -15.78358459,
-14.06052277, -14.06052277, -14.06052277, -14.06052277,
-11.96678578, -11.96678578, -11.96678578, -11.96678578,
-9.66020929, -9.66020929, -9.66020929, -9.66020929,
-7.45697342, -7.45697342, -7.45697342, -7.45697342,
-5.42891389, -5.42891389, -5.42891389, -5.42891389,
-3.65587783, -3.65587783, -3.65587783, -3.65587783,
-2.21451375, -2.21451375, -2.21451375, -2.21451375,
-1.20771195, -1.20771195, -1.20771195, -1.20771195,
-0.55292829, -0.55292829, -0.55292829, -0.55292829,
-0.33291113, -0.33291113, -0.33291113, -0.33291113,
-0.1977434 , -0.1977434 , -0.1977434 , -0.1977434 ,
-0.2087287 , -0.2087287 , -0.2087287 , -0.2087287 ,
-0.24528779, -0.24528779, -0.24528779, -0.24528779,
-0.22555601, -0.22555601, -0.22555601, -0.22555601,
-0.07111291, -0.07111291, -0.07111291, -0.07111291,
0.21894468, 0.21894468, 0.21894468, 0.21894468,
0.41981187, 0.41981187, 0.41981187, 0.41981187,
0.26295954, 0.26295954, 0.26295954, 0.26295954,
-5.18426791, -5.18426791, -5.18426791, -5.18426791,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
9.99999952e+02, 9.99999952e+02, 9.99999952e+02, 9.99999952e+02,
9.99999782e+02, 9.99999782e+02, 9.99999782e+02, 9.99999782e+02,
9.99999073e+02, 9.99999073e+02, 9.99999073e+02, 9.99999073e+02,
9.99996322e+02, 9.99996322e+02, 9.99996322e+02, 9.99996322e+02,
9.99986378e+02, 9.99986378e+02, 9.99986378e+02, 9.99986378e+02,
9.99952999e+02, 9.99952999e+02, 9.99952999e+02, 9.99952999e+02,
9.99849227e+02, 9.99849227e+02, 9.99849227e+02, 9.99849227e+02,
9.99551461e+02, 9.99551461e+02, 9.99551461e+02, 9.99551461e+02,
9.98766163e+02, 9.98766163e+02, 9.98766163e+02, 9.98766163e+02,
9.96871948e+02, 9.96871948e+02, 9.96871948e+02, 9.96871948e+02,
9.92715494e+02, 9.92715494e+02, 9.92715494e+02, 9.92715494e+02,
9.84462129e+02, 9.84462129e+02, 9.84462129e+02, 9.84462129e+02,
9.69692798e+02, 9.69692798e+02, 9.69692798e+02, 9.69692798e+02,
9.45913437e+02, 9.45913437e+02, 9.45913437e+02, 9.45913437e+02,
9.11388812e+02, 9.11388812e+02, 9.11388812e+02, 9.11388812e+02,
8.65856722e+02, 8.65856722e+02, 8.65856722e+02, 8.65856722e+02,
8.10584836e+02, 8.10584836e+02, 8.10584836e+02, 8.10584836e+02,
7.47563377e+02, 7.47563377e+02, 7.47563377e+02, 7.47563377e+02,
6.82592921e+02, 6.82592921e+02, 6.82592921e+02, 6.82592921e+02,
6.25100512e+02, 6.25100512e+02, 6.25100512e+02, 6.25100512e+02,
5.76125421e+02, 5.76125421e+02, 5.76125421e+02, 5.76125421e+02,
5.35939873e+02, 5.35939873e+02, 5.35939873e+02, 5.35939873e+02,
5.05443149e+02, 5.05443149e+02, 5.05443149e+02, 5.05443149e+02,
4.84061172e+02, 4.84061172e+02, 4.84061172e+02, 4.84061172e+02,
4.72683354e+02, 4.72683354e+02, 4.72683354e+02, 4.72683354e+02,
4.65930774e+02, 4.65930774e+02, 4.65930774e+02, 4.65930774e+02,
4.65385730e+02, 4.65385730e+02, 4.65385730e+02, 4.65385730e+02,
4.65275096e+02, 4.65275096e+02, 4.65275096e+02, 4.65275096e+02,
4.65244567e+02, 4.65244567e+02, 4.65244567e+02, 4.65244567e+02,
4.64880653e+02, 4.64880653e+02, 4.64880653e+02, 4.64880653e+02,
4.62253833e+02, 4.62253833e+02, 4.62253833e+02, 4.62253833e+02,
4.57097301e+02, 4.57097301e+02, 4.57097301e+02, 4.57097301e+02,
4.53882832e+02, 4.53882832e+02, 4.53882832e+02, 4.53882832e+02,
4.39418517e+02, 4.39418517e+02, 4.39418517e+02, 4.39418517e+02,
2.38228799e+02, 2.38228799e+02, 2.38228799e+02, 2.38228799e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999994, 0.99999994, 0.99999994,
0.99999994, 0.99999974, 0.99999974, 0.99999974, 0.99999974,
0.99999896, 0.99999896, 0.99999896, 0.99999896, 0.99999607,
0.99999607, 0.99999607, 0.99999607, 0.99998615, 0.99998615,
0.99998615, 0.99998615, 0.99995436, 0.99995436, 0.99995436,
0.99995436, 0.99985986, 0.99985986, 0.99985986, 0.99985986,
0.99959991, 0.99959991, 0.99959991, 0.99959991, 0.99894097,
0.99894097, 0.99894097, 0.99894097, 0.99740896, 0.99740896,
0.99740896, 0.99740896, 0.99415786, 0.99415786, 0.99415786,
0.99415786, 0.98788866, 0.98788866, 0.98788866, 0.98788866,
0.9769374 , 0.9769374 , 0.9769374 , 0.9769374 , 0.9596167 ,
0.9596167 , 0.9596167 , 0.9596167 , 0.93473263, 0.93473263,
0.93473263, 0.93473263, 0.90200243, 0.90200243, 0.90200243,
0.90200243, 0.86207191, 0.86207191, 0.86207191, 0.86207191,
0.8160811 , 0.8160811 , 0.8160811 , 0.8160811 , 0.76717167,
0.76717167, 0.76717167, 0.76717167, 0.72204334, 0.72204334,
0.72204334, 0.72204334, 0.68214793, 0.68214793, 0.68214793,
0.68214793, 0.64796307, 0.64796307, 0.64796307, 0.64796307,
0.62031392, 0.62031392, 0.62031392, 0.62031392, 0.60028844,
0.60028844, 0.60028844, 0.60028844, 0.58692937, 0.58692937,
0.58692937, 0.58692937, 0.58094604, 0.58094604, 0.58094604,
0.58094604, 0.57737342, 0.57737342, 0.57737342, 0.57737342,
0.57696531, 0.57696531, 0.57696531, 0.57696531, 0.57635167,
0.57635167, 0.57635167, 0.57635167, 0.57411717, 0.57411717,
0.57411717, 0.57411717, 0.56976281, 0.56976281, 0.56976281,
0.56976281, 0.5647334 , 0.5647334 , 0.5647334 , 0.5647334 ,
0.57337992, 0.57337992, 0.57337992, 0.57337992, 0.74560079,
0.74560079, 0.74560079, 0.74560079, 4.86173883, 4.86173883,
4.86173883, 4.86173883, 3.74293932, 3.74293932, 3.74293932,
3.74293932, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.5974499 , -19.5974499 , -19.5974499 , -19.5974499 ,
-19.5974495 , -19.5974495 , -19.5974495 , -19.5974495 ,
-19.59744774, -19.59744774, -19.59744774, -19.59744774,
-19.5974403 , -19.5974403 , -19.5974403 , -19.5974403 ,
-19.597411 , -19.597411 , -19.597411 , -19.597411 ,
-19.59730302, -19.59730302, -19.59730302, -19.59730302,
-19.59693164, -19.59693164, -19.59693164, -19.59693164,
-19.59574238, -19.59574238, -19.59574238, -19.59574238,
-19.59220644, -19.59220644, -19.59220644, -19.59220644,
-19.5824787 , -19.5824787 , -19.5824787 , -19.5824787 ,
-19.55781439, -19.55781439, -19.55781439, -19.55781439,
-19.50043296, -19.50043296, -19.50043296, -19.50043296,
-19.37847127, -19.37847127, -19.37847127, -19.37847127,
-19.14249326, -19.14249326, -19.14249326, -19.14249326,
-18.72758373, -18.72758373, -18.72758373, -18.72758373,
-18.06389686, -18.06389686, -18.06389686, -18.06389686,
-17.09337525, -17.09337525, -17.09337525, -17.09337525,
-15.7842355 , -15.7842355 , -15.7842355 , -15.7842355 ,
-14.13315083, -14.13315083, -14.13315083, -14.13315083,
-12.14786666, -12.14786666, -12.14786666, -12.14786666,
-9.94885509, -9.94885509, -9.94885509, -9.94885509,
-7.8279918 , -7.8279918 , -7.8279918 , -7.8279918 ,
-5.85096961, -5.85096961, -5.85096961, -5.85096961,
-4.083866 , -4.083866 , -4.083866 , -4.083866 ,
-2.61044982, -2.61044982, -2.61044982, -2.61044982,
-1.48449895, -1.48449895, -1.48449895, -1.48449895,
-0.78457656, -0.78457656, -0.78457656, -0.78457656,
-0.36023962, -0.36023962, -0.36023962, -0.36023962,
-0.26982385, -0.26982385, -0.26982385, -0.26982385,
-0.21660221, -0.21660221, -0.21660221, -0.21660221,
-0.21563676, -0.21563676, -0.21563676, -0.21563676,
-0.21823924, -0.21823924, -0.21823924, -0.21823924,
-0.14247469, -0.14247469, -0.14247469, -0.14247469,
0.10258168, 0.10258168, 0.10258168, 0.10258168,
0.32671238, 0.32671238, 0.32671238, 0.32671238,
0.4520803 , 0.4520803 , 0.4520803 , 0.4520803 ,
0.25674662, 0.25674662, 0.25674662, 0.25674662,
-4.32220372, -4.32220372, -4.32220372, -4.32220372,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999981e+02, 9.99999981e+02, 9.99999981e+02, 9.99999981e+02,
9.99999915e+02, 9.99999915e+02, 9.99999915e+02, 9.99999915e+02,
9.99999637e+02, 9.99999637e+02, 9.99999637e+02, 9.99999637e+02,
9.99998541e+02, 9.99998541e+02, 9.99998541e+02, 9.99998541e+02,
9.99994500e+02, 9.99994500e+02, 9.99994500e+02, 9.99994500e+02,
9.99980605e+02, 9.99980605e+02, 9.99980605e+02, 9.99980605e+02,
9.99936108e+02, 9.99936108e+02, 9.99936108e+02, 9.99936108e+02,
9.99803820e+02, 9.99803820e+02, 9.99803820e+02, 9.99803820e+02,
9.99439960e+02, 9.99439960e+02, 9.99439960e+02, 9.99439960e+02,
9.98517915e+02, 9.98517915e+02, 9.98517915e+02, 9.98517915e+02,
9.96375619e+02, 9.96375619e+02, 9.96375619e+02, 9.96375619e+02,
9.91835461e+02, 9.91835461e+02, 9.91835461e+02, 9.91835461e+02,
9.83101847e+02, 9.83101847e+02, 9.83101847e+02, 9.83101847e+02,
9.67908032e+02, 9.67908032e+02, 9.67908032e+02, 9.67908032e+02,
9.44029385e+02, 9.44029385e+02, 9.44029385e+02, 9.44029385e+02,
9.10036140e+02, 9.10036140e+02, 9.10036140e+02, 9.10036140e+02,
8.65873851e+02, 8.65873851e+02, 8.65873851e+02, 8.65873851e+02,
8.12839676e+02, 8.12839676e+02, 8.12839676e+02, 8.12839676e+02,
7.52816562e+02, 7.52816562e+02, 7.52816562e+02, 7.52816562e+02,
6.90463584e+02, 6.90463584e+02, 6.90463584e+02, 6.90463584e+02,
6.34422698e+02, 6.34422698e+02, 6.34422698e+02, 6.34422698e+02,
5.86040349e+02, 5.86040349e+02, 5.86040349e+02, 5.86040349e+02,
5.45517331e+02, 5.45517331e+02, 5.45517331e+02, 5.45517331e+02,
5.13402817e+02, 5.13402817e+02, 5.13402817e+02, 5.13402817e+02,
4.90538861e+02, 4.90538861e+02, 4.90538861e+02, 4.90538861e+02,
4.75499560e+02, 4.75499560e+02, 4.75499560e+02, 4.75499560e+02,
4.68907799e+02, 4.68907799e+02, 4.68907799e+02, 4.68907799e+02,
4.65117682e+02, 4.65117682e+02, 4.65117682e+02, 4.65117682e+02,
4.65134695e+02, 4.65134695e+02, 4.65134695e+02, 4.65134695e+02,
4.65442962e+02, 4.65442962e+02, 4.65442962e+02, 4.65442962e+02,
4.65131540e+02, 4.65131540e+02, 4.65131540e+02, 4.65131540e+02,
4.63362159e+02, 4.63362159e+02, 4.63362159e+02, 4.63362159e+02,
4.58697323e+02, 4.58697323e+02, 4.58697323e+02, 4.58697323e+02,
4.54631528e+02, 4.54631528e+02, 4.54631528e+02, 4.54631528e+02,
4.53420612e+02, 4.53420612e+02, 4.53420612e+02, 4.53420612e+02,
4.46380765e+02, 4.46380765e+02, 4.46380765e+02, 4.46380765e+02,
2.69672349e+02, 2.69672349e+02, 2.69672349e+02, 2.69672349e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.9999999 , 0.9999999 ,
0.9999999 , 0.9999999 , 0.99999959, 0.99999959, 0.99999959,
0.99999959, 0.99999842, 0.99999842, 0.99999842, 0.99999842,
0.99999432, 0.99999432, 0.99999432, 0.99999432, 0.99998084,
0.99998084, 0.99998084, 0.99998084, 0.99993948, 0.99993948,
0.99993948, 0.99993948, 0.99982148, 0.99982148, 0.99982148,
0.99982148, 0.99950923, 0.99950923, 0.99950923, 0.99950923,
0.99874628, 0.99874628, 0.99874628, 0.99874628, 0.9970325 ,
0.9970325 , 0.9970325 , 0.9970325 , 0.99351011, 0.99351011,
0.99351011, 0.99351011, 0.98691297, 0.98691297, 0.98691297,
0.98691297, 0.97568359, 0.97568359, 0.97568359, 0.97568359,
0.95831325, 0.95831325, 0.95831325, 0.95831325, 0.93380786,
0.93380786, 0.93380786, 0.93380786, 0.90202785, 0.90202785,
0.90202785, 0.90202785, 0.86366009, 0.86366009, 0.86366009,
0.86366009, 0.81979651, 0.81979651, 0.81979651, 0.81979651,
0.77297936, 0.77297936, 0.77297936, 0.77297936, 0.72920034,
0.72920034, 0.72920034, 0.72920034, 0.69006306, 0.69006306,
0.69006306, 0.69006306, 0.65593137, 0.65593137, 0.65593137,
0.65593137, 0.62766415, 0.62766415, 0.62766415, 0.62766415,
0.60587119, 0.60587119, 0.60587119, 0.60587119, 0.59137799,
0.59137799, 0.59137799, 0.59137799, 0.58235921, 0.58235921,
0.58235921, 0.58235921, 0.57922962, 0.57922962, 0.57922962,
0.57922962, 0.57732033, 0.57732033, 0.57732033, 0.57732033,
0.57686979, 0.57686979, 0.57686979, 0.57686979, 0.57610032,
0.57610032, 0.57610032, 0.57610032, 0.57333709, 0.57333709,
0.57333709, 0.57333709, 0.56738045, 0.56738045, 0.56738045,
0.56738045, 0.56220514, 0.56220514, 0.56220514, 0.56220514,
0.57216743, 0.57216743, 0.57216743, 0.57216743, 0.74383759,
0.74383759, 0.74383759, 0.74383759, 4.87563631, 4.87563631,
4.87563631, 4.87563631, 4.11173504, 4.11173504, 4.11173504,
4.11173504, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974491e+01, -1.95974491e+01, -1.95974491e+01, -1.95974491e+01,
-1.95974462e+01, -1.95974462e+01, -1.95974462e+01, -1.95974462e+01,
-1.95974346e+01, -1.95974346e+01, -1.95974346e+01, -1.95974346e+01,
-1.95973909e+01, -1.95973909e+01, -1.95973909e+01, -1.95973909e+01,
-1.95972374e+01, -1.95972374e+01, -1.95972374e+01, -1.95972374e+01,
-1.95967329e+01, -1.95967329e+01, -1.95967329e+01, -1.95967329e+01,
-1.95951856e+01, -1.95951856e+01, -1.95951856e+01, -1.95951856e+01,
-1.95907700e+01, -1.95907700e+01, -1.95907700e+01, -1.95907700e+01,
-1.95790850e+01, -1.95790850e+01, -1.95790850e+01, -1.95790850e+01,
-1.95505247e+01, -1.95505247e+01, -1.95505247e+01, -1.95505247e+01,
-1.94863222e+01, -1.94863222e+01, -1.94863222e+01, -1.94863222e+01,
-1.93541313e+01, -1.93541313e+01, -1.93541313e+01, -1.93541313e+01,
-1.91056428e+01, -1.91056428e+01, -1.91056428e+01, -1.91056428e+01,
-1.86797805e+01, -1.86797805e+01, -1.86797805e+01, -1.86797805e+01,
-1.80133989e+01, -1.80133989e+01, -1.80133989e+01, -1.80133989e+01,
-1.70565763e+01, -1.70565763e+01, -1.70565763e+01, -1.70565763e+01,
-1.57847291e+01, -1.57847291e+01, -1.57847291e+01, -1.57847291e+01,
-1.41993110e+01, -1.41993110e+01, -1.41993110e+01, -1.41993110e+01,
-1.23114182e+01, -1.23114182e+01, -1.23114182e+01, -1.23114182e+01,
-1.02128458e+01, -1.02128458e+01, -1.02128458e+01, -1.02128458e+01,
-8.17097157e+00, -8.17097157e+00, -8.17097157e+00, -8.17097157e+00,
-6.24791835e+00, -6.24791835e+00, -6.24791835e+00, -6.24791835e+00,
-4.50048637e+00, -4.50048637e+00, -4.50048637e+00, -4.50048637e+00,
-2.99529183e+00, -2.99529183e+00, -2.99529183e+00, -2.99529183e+00,
-1.81501387e+00, -1.81501387e+00, -1.81501387e+00, -1.81501387e+00,
-9.74971294e-01, -9.74971294e-01, -9.74971294e-01, -9.74971294e-01,
-5.25188680e-01, -5.25188680e-01, -5.25188680e-01, -5.25188680e-01,
-2.68903625e-01, -2.68903625e-01, -2.68903625e-01, -2.68903625e-01,
-2.41934051e-01, -2.41934051e-01, -2.41934051e-01, -2.41934051e-01,
-2.27678422e-01, -2.27678422e-01, -2.27678422e-01, -2.27678422e-01,
-2.13501022e-01, -2.13501022e-01, -2.13501022e-01, -2.13501022e-01,
-1.62982931e-01, -1.62982931e-01, -1.62982931e-01, -1.62982931e-01,
1.15379653e-02, 1.15379653e-02, 1.15379653e-02, 1.15379653e-02,
2.50688575e-01, 2.50688575e-01, 2.50688575e-01, 2.50688575e-01,
3.71810186e-01, 3.71810186e-01, 3.71810186e-01, 3.71810186e-01,
4.26658879e-01, 4.26658879e-01, 4.26658879e-01, 4.26658879e-01,
2.36045219e-01, 2.36045219e-01, 2.36045219e-01, 2.36045219e-01,
-3.58270901e+00, -3.58270901e+00, -3.58270901e+00, -3.58270901e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999993e+02, 9.99999993e+02, 9.99999993e+02, 9.99999993e+02,
9.99999967e+02, 9.99999967e+02, 9.99999967e+02, 9.99999967e+02,
9.99999858e+02, 9.99999858e+02, 9.99999858e+02, 9.99999858e+02,
9.99999422e+02, 9.99999422e+02, 9.99999422e+02, 9.99999422e+02,
9.99997788e+02, 9.99997788e+02, 9.99997788e+02, 9.99997788e+02,
9.99992045e+02, 9.99992045e+02, 9.99992045e+02, 9.99992045e+02,
9.99973169e+02, 9.99973169e+02, 9.99973169e+02, 9.99973169e+02,
9.99915278e+02, 9.99915278e+02, 9.99915278e+02, 9.99915278e+02,
9.99750084e+02, 9.99750084e+02, 9.99750084e+02, 9.99750084e+02,
9.99313048e+02, 9.99313048e+02, 9.99313048e+02, 9.99313048e+02,
9.98245539e+02, 9.98245539e+02, 9.98245539e+02, 9.98245539e+02,
9.95849414e+02, 9.95849414e+02, 9.95849414e+02, 9.95849414e+02,
9.90931538e+02, 9.90931538e+02, 9.90931538e+02, 9.90931538e+02,
9.81744079e+02, 9.81744079e+02, 9.81744079e+02, 9.81744079e+02,
9.66170722e+02, 9.66170722e+02, 9.66170722e+02, 9.66170722e+02,
9.42233527e+02, 9.42233527e+02, 9.42233527e+02, 9.42233527e+02,
9.08767261e+02, 9.08767261e+02, 9.08767261e+02, 9.08767261e+02,
8.65885982e+02, 8.65885982e+02, 8.65885982e+02, 8.65885982e+02,
8.14898864e+02, 8.14898864e+02, 8.14898864e+02, 8.14898864e+02,
7.57590795e+02, 7.57590795e+02, 7.57590795e+02, 7.57590795e+02,
6.97731013e+02, 6.97731013e+02, 6.97731013e+02, 6.97731013e+02,
6.43163759e+02, 6.43163759e+02, 6.43163759e+02, 6.43163759e+02,
5.95496479e+02, 5.95496479e+02, 5.95496479e+02, 5.95496479e+02,
5.54812201e+02, 5.54812201e+02, 5.54812201e+02, 5.54812201e+02,
5.21793149e+02, 5.21793149e+02, 5.21793149e+02, 5.21793149e+02,
4.96779727e+02, 4.96779727e+02, 4.96779727e+02, 4.96779727e+02,
4.80392572e+02, 4.80392572e+02, 4.80392572e+02, 4.80392572e+02,
4.70330245e+02, 4.70330245e+02, 4.70330245e+02, 4.70330245e+02,
4.66971151e+02, 4.66971151e+02, 4.66971151e+02, 4.66971151e+02,
4.65060012e+02, 4.65060012e+02, 4.65060012e+02, 4.65060012e+02,
4.65030737e+02, 4.65030737e+02, 4.65030737e+02, 4.65030737e+02,
4.65164746e+02, 4.65164746e+02, 4.65164746e+02, 4.65164746e+02,
4.64255999e+02, 4.64255999e+02, 4.64255999e+02, 4.64255999e+02,
4.60656577e+02, 4.60656577e+02, 4.60656577e+02, 4.60656577e+02,
4.55837406e+02, 4.55837406e+02, 4.55837406e+02, 4.55837406e+02,
4.53402412e+02, 4.53402412e+02, 4.53402412e+02, 4.53402412e+02,
4.53640419e+02, 4.53640419e+02, 4.53640419e+02, 4.53640419e+02,
4.52229350e+02, 4.52229350e+02, 4.52229350e+02, 4.52229350e+02,
3.01077885e+02, 3.01077885e+02, 3.01077885e+02, 3.01077885e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999984,
0.99999984, 0.99999984, 0.99999984, 0.99999937, 0.99999937,
0.99999937, 0.99999937, 0.99999768, 0.99999768, 0.99999768,
0.99999768, 0.99999201, 0.99999201, 0.99999201, 0.99999201,
0.99997414, 0.99997414, 0.99997414, 0.99997414, 0.99992146,
0.99992146, 0.99992146, 0.99992146, 0.99977672, 0.99977672,
0.99977672, 0.99977672, 0.99940724, 0.99940724, 0.99940724,
0.99940724, 0.99853457, 0.99853457, 0.99853457, 0.99853457,
0.99663589, 0.99663589, 0.99663589, 0.99663589, 0.9928473 ,
0.9928473 , 0.9928473 , 0.9928473 , 0.98594052, 0.98594052,
0.98594052, 0.98594052, 0.97446242, 0.97446242, 0.97446242,
0.97446242, 0.95706792, 0.95706792, 0.95706792, 0.95706792,
0.93293693, 0.93293693, 0.93293693, 0.93293693, 0.90204737,
0.90204737, 0.90204737, 0.90204737, 0.86511108, 0.86511108,
0.86511108, 0.86511108, 0.82318738, 0.82318738, 0.82318738,
0.82318738, 0.77830857, 0.77830857, 0.77830857, 0.77830857,
0.73588408, 0.73588408, 0.73588408, 0.73588408, 0.6975687 ,
0.6975687 , 0.6975687 , 0.6975687 , 0.66365245, 0.66365245,
0.66365245, 0.66365245, 0.63486674, 0.63486674, 0.63486674,
0.63486674, 0.61208758, 0.61208758, 0.61208758, 0.61208758,
0.59551372, 0.59551372, 0.59551372, 0.59551372, 0.58561868,
0.58561868, 0.58561868, 0.58561868, 0.57985691, 0.57985691,
0.57985691, 0.57985691, 0.57840454, 0.57840454, 0.57840454,
0.57840454, 0.57741333, 0.57741333, 0.57741333, 0.57741333,
0.5767517 , 0.5767517 , 0.5767517 , 0.5767517 , 0.57543994,
0.57543994, 0.57543994, 0.57543994, 0.57152955, 0.57152955,
0.57152955, 0.57152955, 0.56468211, 0.56468211, 0.56468211,
0.56468211, 0.56091344, 0.56091344, 0.56091344, 0.56091344,
0.57188894, 0.57188894, 0.57188894, 0.57188894, 0.74278857,
0.74278857, 0.74278857, 0.74278857, 4.88603985, 4.88603985,
4.88603985, 4.88603985, 4.4829508 , 4.4829508 , 4.4829508 ,
4.4829508 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744993, -19.59744993, -19.59744993, -19.59744993,
-19.59744966, -19.59744966, -19.59744966, -19.59744966,
-19.59744852, -19.59744852, -19.59744852, -19.59744852,
-19.59744389, -19.59744389, -19.59744389, -19.59744389,
-19.59742629, -19.59742629, -19.59742629, -19.59742629,
-19.59736324, -19.59736324, -19.59736324, -19.59736324,
-19.59715114, -19.59715114, -19.59715114, -19.59715114,
-19.59648246, -19.59648246, -19.59648246, -19.59648246,
-19.59451143, -19.59451143, -19.59451143, -19.59451143,
-19.5890952 , -19.5890952 , -19.5890952 , -19.5890952 ,
-19.5752676 , -19.5752676 , -19.5752676 , -19.5752676 ,
-19.54259686, -19.54259686, -19.54259686, -19.54259686,
-19.47145154, -19.47145154, -19.47145154, -19.47145154,
-19.32921166, -19.32921166, -19.32921166, -19.32921166,
-19.06888403, -19.06888403, -19.06888403, -19.06888403,
-18.63316989, -18.63316989, -18.63316989, -18.63316989,
-17.9650968 , -17.9650968 , -17.9650968 , -17.9650968 ,
-17.0218994 , -17.0218994 , -17.0218994 , -17.0218994 ,
-15.78504755, -15.78504755, -15.78504755, -15.78504755,
-14.25968055, -14.25968055, -14.25968055, -14.25968055,
-12.4597091 , -12.4597091 , -12.4597091 , -12.4597091 ,
-10.45568507, -10.45568507, -10.45568507, -10.45568507,
-8.48812092, -8.48812092, -8.48812092, -8.48812092,
-6.62035699, -6.62035699, -6.62035699, -6.62035699,
-4.89903379, -4.89903379, -4.89903379, -4.89903379,
-3.38404759, -3.38404759, -3.38404759, -3.38404759,
-2.13969306, -2.13969306, -2.13969306, -2.13969306,
-1.23614386, -1.23614386, -1.23614386, -1.23614386,
-0.64167605, -0.64167605, -0.64167605, -0.64167605,
-0.37914747, -0.37914747, -0.37914747, -0.37914747,
-0.23502088, -0.23502088, -0.23502088, -0.23502088,
-0.22631738, -0.22631738, -0.22631738, -0.22631738,
-0.22300658, -0.22300658, -0.22300658, -0.22300658,
-0.18972395, -0.18972395, -0.18972395, -0.18972395,
-0.06053401, -0.06053401, -0.06053401, -0.06053401,
0.18328595, 0.18328595, 0.18328595, 0.18328595,
0.33774148, 0.33774148, 0.33774148, 0.33774148,
0.37790834, 0.37790834, 0.37790834, 0.37790834,
0.36595791, 0.36595791, 0.36595791, 0.36595791,
0.20139712, 0.20139712, 0.20139712, 0.20139712,
-2.94185063, -2.94185063, -2.94185063, -2.94185063,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999987e+02, 9.99999987e+02, 9.99999987e+02, 9.99999987e+02,
9.99999944e+02, 9.99999944e+02, 9.99999944e+02, 9.99999944e+02,
9.99999771e+02, 9.99999771e+02, 9.99999771e+02, 9.99999771e+02,
9.99999113e+02, 9.99999113e+02, 9.99999113e+02, 9.99999113e+02,
9.99996754e+02, 9.99996754e+02, 9.99996754e+02, 9.99996754e+02,
9.99988818e+02, 9.99988818e+02, 9.99988818e+02, 9.99988818e+02,
9.99963798e+02, 9.99963798e+02, 9.99963798e+02, 9.99963798e+02,
9.99890054e+02, 9.99890054e+02, 9.99890054e+02, 9.99890054e+02,
9.99687434e+02, 9.99687434e+02, 9.99687434e+02, 9.99687434e+02,
9.99170306e+02, 9.99170306e+02, 9.99170306e+02, 9.99170306e+02,
9.97949393e+02, 9.97949393e+02, 9.97949393e+02, 9.97949393e+02,
9.95295134e+02, 9.95295134e+02, 9.95295134e+02, 9.95295134e+02,
9.90006831e+02, 9.90006831e+02, 9.90006831e+02, 9.90006831e+02,
9.80391310e+02, 9.80391310e+02, 9.80391310e+02, 9.80391310e+02,
9.64479348e+02, 9.64479348e+02, 9.64479348e+02, 9.64479348e+02,
9.40518463e+02, 9.40518463e+02, 9.40518463e+02, 9.40518463e+02,
9.07572798e+02, 9.07572798e+02, 9.07572798e+02, 9.07572798e+02,
8.65892510e+02, 8.65892510e+02, 8.65892510e+02, 8.65892510e+02,
8.16782085e+02, 8.16782085e+02, 8.16782085e+02, 8.16782085e+02,
7.61943905e+02, 7.61943905e+02, 7.61943905e+02, 7.61943905e+02,
7.04440896e+02, 7.04440896e+02, 7.04440896e+02, 7.04440896e+02,
6.51364154e+02, 6.51364154e+02, 6.51364154e+02, 6.51364154e+02,
6.04502355e+02, 6.04502355e+02, 6.04502355e+02, 6.04502355e+02,
5.63886999e+02, 5.63886999e+02, 5.63886999e+02, 5.63886999e+02,
5.30076096e+02, 5.30076096e+02, 5.30076096e+02, 5.30076096e+02,
5.03790017e+02, 5.03790017e+02, 5.03790017e+02, 5.03790017e+02,
4.84951336e+02, 4.84951336e+02, 4.84951336e+02, 4.84951336e+02,
4.73864273e+02, 4.73864273e+02, 4.73864273e+02, 4.73864273e+02,
4.67506026e+02, 4.67506026e+02, 4.67506026e+02, 4.67506026e+02,
4.66041067e+02, 4.66041067e+02, 4.66041067e+02, 4.66041067e+02,
4.65166922e+02, 4.65166922e+02, 4.65166922e+02, 4.65166922e+02,
4.64900848e+02, 4.64900848e+02, 4.64900848e+02, 4.64900848e+02,
4.64424099e+02, 4.64424099e+02, 4.64424099e+02, 4.64424099e+02,
4.62213743e+02, 4.62213743e+02, 4.62213743e+02, 4.62213743e+02,
4.57590437e+02, 4.57590437e+02, 4.57590437e+02, 4.57590437e+02,
4.54377588e+02, 4.54377588e+02, 4.54377588e+02, 4.54377588e+02,
4.53225414e+02, 4.53225414e+02, 4.53225414e+02, 4.53225414e+02,
4.54269492e+02, 4.54269492e+02, 4.54269492e+02, 4.54269492e+02,
4.56975917e+02, 4.56975917e+02, 4.56975917e+02, 4.56975917e+02,
3.32154512e+02, 3.32154512e+02, 3.32154512e+02, 3.32154512e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999975, 0.99999975, 0.99999975, 0.99999975, 0.99999906,
0.99999906, 0.99999906, 0.99999906, 0.99999669, 0.99999669,
0.99999669, 0.99999669, 0.99998905, 0.99998905, 0.99998905,
0.99998905, 0.99996586, 0.99996586, 0.99996586, 0.99996586,
0.99989999, 0.99989999, 0.99989999, 0.99989999, 0.99972521,
0.99972521, 0.99972521, 0.99972521, 0.99929369, 0.99929369,
0.99929369, 0.99929369, 0.99830617, 0.99830617, 0.99830617,
0.99830617, 0.99622037, 0.99622037, 0.99622037, 0.99622037,
0.99217142, 0.99217142, 0.99217142, 0.99217142, 0.9849728 ,
0.9849728 , 0.9849728 , 0.9849728 , 0.97327279, 0.97327279,
0.97327279, 0.97327279, 0.95587603, 0.95587603, 0.95587603,
0.95587603, 0.93211405, 0.93211405, 0.93211405, 0.93211405,
0.90206095, 0.90206095, 0.90206095, 0.90206095, 0.86644292,
0.86644292, 0.86644292, 0.86644292, 0.82627812, 0.82627812,
0.82627812, 0.82627812, 0.78324576, 0.78324576, 0.78324576,
0.78324576, 0.74209651, 0.74209651, 0.74209651, 0.74209651,
0.70467067, 0.70467067, 0.70467067, 0.70467067, 0.6710924 ,
0.6710924 , 0.6710924 , 0.6710924 , 0.64204803, 0.64204803,
0.64204803, 0.64204803, 0.61827118, 0.61827118, 0.61827118,
0.61827118, 0.60052582, 0.60052582, 0.60052582, 0.60052582,
0.58845153, 0.58845153, 0.58845153, 0.58845153, 0.58214806,
0.58214806, 0.58214806, 0.58214806, 0.57865038, 0.57865038,
0.57865038, 0.57865038, 0.57797488, 0.57797488, 0.57797488,
0.57797488, 0.57738553, 0.57738553, 0.57738553, 0.57738553,
0.57646935, 0.57646935, 0.57646935, 0.57646935, 0.57417533,
0.57417533, 0.57417533, 0.57417533, 0.56878133, 0.56878133,
0.56878133, 0.56878133, 0.56286248, 0.56286248, 0.56286248,
0.56286248, 0.56053437, 0.56053437, 0.56053437, 0.56053437,
0.57217087, 0.57217087, 0.57217087, 0.57217087, 0.74285488,
0.74285488, 0.74285488, 0.74285488, 4.89602032, 4.89602032,
4.89602032, 4.89602032, 4.85298549, 4.85298549, 4.85298549,
4.85298549, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744987, -19.59744987, -19.59744987, -19.59744987,
-19.59744942, -19.59744942, -19.59744942, -19.59744942,
-19.59744759, -19.59744759, -19.59744759, -19.59744759,
-19.59744051, -19.59744051, -19.59744051, -19.59744051,
-19.59741474, -19.59741474, -19.59741474, -19.59741474,
-19.59732623, -19.59732623, -19.59732623, -19.59732623,
-19.59704025, -19.59704025, -19.59704025, -19.59704025,
-19.59617271, -19.59617271, -19.59617271, -19.59617271,
-19.59370781, -19.59370781, -19.59370781, -19.59370781,
-19.5871677 , -19.5871677 , -19.5871677 , -19.5871677 ,
-19.57101768, -19.57101768, -19.57101768, -19.57101768,
-19.53404259, -19.53404259, -19.53404259, -19.53404259,
-19.45586713, -19.45586713, -19.45586713, -19.45586713,
-19.30378665, -19.30378665, -19.30378665, -19.30378665,
-19.03227296, -19.03227296, -19.03227296, -19.03227296,
-18.58771423, -18.58771423, -18.58771423, -18.58771423,
-17.91881719, -17.91881719, -17.91881719, -17.91881719,
-16.98911722, -16.98911722, -16.98911722, -16.98911722,
-15.78517919, -15.78517919, -15.78517919, -15.78517919,
-14.31505356, -14.31505356, -14.31505356, -14.31505356,
-12.59466668, -12.59466668, -12.59466668, -12.59466668,
-10.67884325, -10.67884325, -10.67884325, -10.67884325,
-8.78284546, -8.78284546, -8.78284546, -8.78284546,
-6.96953529, -6.96953529, -6.96953529, -6.96953529,
-5.27984005, -5.27984005, -5.27984005, -5.27984005,
-3.76278511, -3.76278511, -3.76278511, -3.76278511,
-2.48379605, -2.48379605, -2.48379605, -2.48379605,
-1.49232242, -1.49232242, -1.49232242, -1.49232242,
-0.83744489, -0.83744489, -0.83744489, -0.83744489,
-0.44040496, -0.44040496, -0.44040496, -0.44040496,
-0.30291626, -0.30291626, -0.30291626, -0.30291626,
-0.22614522, -0.22614522, -0.22614522, -0.22614522,
-0.21208699, -0.21208699, -0.21208699, -0.21208699,
-0.19822265, -0.19822265, -0.19822265, -0.19822265,
-0.12194001, -0.12194001, -0.12194001, -0.12194001,
0.08999319, 0.08999319, 0.08999319, 0.08999319,
0.29386176, 0.29386176, 0.29386176, 0.29386176,
0.37116051, 0.37116051, 0.37116051, 0.37116051,
0.36272859, 0.36272859, 0.36272859, 0.36272859,
0.28212421, 0.28212421, 0.28212421, 0.28212421,
0.15734376, 0.15734376, 0.15734376, 0.15734376,
-2.38397278, -2.38397278, -2.38397278, -2.38397278,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999995e+02, 9.99999995e+02, 9.99999995e+02, 9.99999995e+02,
9.99999978e+02, 9.99999978e+02, 9.99999978e+02, 9.99999978e+02,
9.99999910e+02, 9.99999910e+02, 9.99999910e+02, 9.99999910e+02,
9.99999645e+02, 9.99999645e+02, 9.99999645e+02, 9.99999645e+02,
9.99998681e+02, 9.99998681e+02, 9.99998681e+02, 9.99998681e+02,
9.99995369e+02, 9.99995369e+02, 9.99995369e+02, 9.99995369e+02,
9.99984669e+02, 9.99984669e+02, 9.99984669e+02, 9.99984669e+02,
9.99952209e+02, 9.99952209e+02, 9.99952209e+02, 9.99952209e+02,
9.99859989e+02, 9.99859989e+02, 9.99859989e+02, 9.99859989e+02,
9.99615335e+02, 9.99615335e+02, 9.99615335e+02, 9.99615335e+02,
9.99011413e+02, 9.99011413e+02, 9.99011413e+02, 9.99011413e+02,
9.97629932e+02, 9.97629932e+02, 9.97629932e+02, 9.97629932e+02,
9.94714537e+02, 9.94714537e+02, 9.94714537e+02, 9.94714537e+02,
9.89064142e+02, 9.89064142e+02, 9.89064142e+02, 9.89064142e+02,
9.79045586e+02, 9.79045586e+02, 9.79045586e+02, 9.79045586e+02,
9.62832342e+02, 9.62832342e+02, 9.62832342e+02, 9.62832342e+02,
9.38877680e+02, 9.38877680e+02, 9.38877680e+02, 9.38877680e+02,
9.06444711e+02, 9.06444711e+02, 9.06444711e+02, 9.06444711e+02,
8.65893051e+02, 8.65893051e+02, 8.65893051e+02, 8.65893051e+02,
8.18513038e+02, 8.18513038e+02, 8.18513038e+02, 8.18513038e+02,
7.65925567e+02, 7.65925567e+02, 7.65925567e+02, 7.65925567e+02,
7.10661539e+02, 7.10661539e+02, 7.10661539e+02, 7.10661539e+02,
6.59031108e+02, 6.59031108e+02, 6.59031108e+02, 6.59031108e+02,
6.13064332e+02, 6.13064332e+02, 6.13064332e+02, 6.13064332e+02,
5.72674499e+02, 5.72674499e+02, 5.72674499e+02, 5.72674499e+02,
5.38398891e+02, 5.38398891e+02, 5.38398891e+02, 5.38398891e+02,
5.10813983e+02, 5.10813983e+02, 5.10813983e+02, 5.10813983e+02,
4.90540957e+02, 4.90540957e+02, 4.90540957e+02, 4.90540957e+02,
4.76930301e+02, 4.76930301e+02, 4.76930301e+02, 4.76930301e+02,
4.69941361e+02, 4.69941361e+02, 4.69941361e+02, 4.69941361e+02,
4.66145998e+02, 4.66145998e+02, 4.66145998e+02, 4.66145998e+02,
4.65557284e+02, 4.65557284e+02, 4.65557284e+02, 4.65557284e+02,
4.65137442e+02, 4.65137442e+02, 4.65137442e+02, 4.65137442e+02,
4.64585189e+02, 4.64585189e+02, 4.64585189e+02, 4.64585189e+02,
4.63000203e+02, 4.63000203e+02, 4.63000203e+02, 4.63000203e+02,
4.59105657e+02, 4.59105657e+02, 4.59105657e+02, 4.59105657e+02,
4.55518041e+02, 4.55518041e+02, 4.55518041e+02, 4.55518041e+02,
4.53947203e+02, 4.53947203e+02, 4.53947203e+02, 4.53947203e+02,
4.53673503e+02, 4.53673503e+02, 4.53673503e+02, 4.53673503e+02,
4.55580551e+02, 4.55580551e+02, 4.55580551e+02, 4.55580551e+02,
4.60645373e+02, 4.60645373e+02, 4.60645373e+02, 4.60645373e+02,
3.62537064e+02, 3.62537064e+02, 3.62537064e+02, 3.62537064e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999997, 0.99999997,
0.99999997, 0.99999997, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999962, 0.99999962, 0.99999962, 0.99999962,
0.99999864, 0.99999864, 0.99999864, 0.99999864, 0.9999954 ,
0.9999954 , 0.9999954 , 0.9999954 , 0.99998531, 0.99998531,
0.99998531, 0.99998531, 0.99995579, 0.99995579, 0.99995579,
0.99995579, 0.99987474, 0.99987474, 0.99987474, 0.99987474,
0.9996666 , 0.9996666 , 0.9996666 , 0.9996666 , 0.99916844,
0.99916844, 0.99916844, 0.99916844, 0.99806145, 0.99806145,
0.99806145, 0.99806145, 0.99578716, 0.99578716, 0.99578716,
0.99578716, 0.99148428, 0.99148428, 0.99148428, 0.99148428,
0.98401101, 0.98401101, 0.98401101, 0.98401101, 0.9721136 ,
0.9721136 , 0.9721136 , 0.9721136 , 0.95473344, 0.95473344,
0.95473344, 0.95473344, 0.93133428, 0.93133428, 0.93133428,
0.93133428, 0.90206896, 0.90206896, 0.90206896, 0.90206896,
0.86766988, 0.86766988, 0.86766988, 0.86766988, 0.82910964,
0.82910964, 0.82910964, 0.82910964, 0.78781314, 0.78781314,
0.78781314, 0.78781314, 0.74790844, 0.74790844, 0.74790844,
0.74790844, 0.71135798, 0.71135798, 0.71135798, 0.71135798,
0.67823814, 0.67823814, 0.67823814, 0.67823814, 0.64908766,
0.64908766, 0.64908766, 0.64908766, 0.62466081, 0.62466081,
0.62466081, 0.62466081, 0.6055593 , 0.6055593 , 0.6055593 ,
0.6055593 , 0.59230699, 0.59230699, 0.59230699, 0.59230699,
0.58392543, 0.58392543, 0.58392543, 0.58392543, 0.58019951,
0.58019951, 0.58019951, 0.58019951, 0.57813804, 0.57813804,
0.57813804, 0.57813804, 0.5776455 , 0.5776455 , 0.5776455 ,
0.5776455 , 0.57710118, 0.57710118, 0.57710118, 0.57710118,
0.57572559, 0.57572559, 0.57572559, 0.57572559, 0.57206785,
0.57206785, 0.57206785, 0.57206785, 0.56644016, 0.56644016,
0.56644016, 0.56644016, 0.56196219, 0.56196219, 0.56196219,
0.56196219, 0.5606061 , 0.5606061 , 0.5606061 , 0.5606061 ,
0.57295 , 0.57295 , 0.57295 , 0.57295 , 0.74382089,
0.74382089, 0.74382089, 0.74382089, 4.90781149, 4.90781149,
4.90781149, 4.90781149, 5.21965552, 5.21965552, 5.21965552,
5.21965552, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974490e+01, -1.95974490e+01, -1.95974490e+01, -1.95974490e+01,
-1.95974462e+01, -1.95974462e+01, -1.95974462e+01, -1.95974462e+01,
-1.95974357e+01, -1.95974357e+01, -1.95974357e+01, -1.95974357e+01,
-1.95973990e+01, -1.95973990e+01, -1.95973990e+01, -1.95973990e+01,
-1.95972778e+01, -1.95972778e+01, -1.95972778e+01, -1.95972778e+01,
-1.95969004e+01, -1.95969004e+01, -1.95969004e+01, -1.95969004e+01,
-1.95957959e+01, -1.95957959e+01, -1.95957959e+01, -1.95957959e+01,
-1.95927631e+01, -1.95927631e+01, -1.95927631e+01, -1.95927631e+01,
-1.95849744e+01, -1.95849744e+01, -1.95849744e+01, -1.95849744e+01,
-1.95663288e+01, -1.95663288e+01, -1.95663288e+01, -1.95663288e+01,
-1.95248756e+01, -1.95248756e+01, -1.95248756e+01, -1.95248756e+01,
-1.94396138e+01, -1.94396138e+01, -1.94396138e+01, -1.94396138e+01,
-1.92779235e+01, -1.92779235e+01, -1.92779235e+01, -1.92779235e+01,
-1.89958563e+01, -1.89958563e+01, -1.89958563e+01, -1.89958563e+01,
-1.85433753e+01, -1.85433753e+01, -1.85433753e+01, -1.85433753e+01,
-1.78744061e+01, -1.78744061e+01, -1.78744061e+01, -1.78744061e+01,
-1.69580372e+01, -1.69580372e+01, -1.69580372e+01, -1.69580372e+01,
-1.57851310e+01, -1.57851310e+01, -1.57851310e+01, -1.57851310e+01,
-1.43660369e+01, -1.43660369e+01, -1.43660369e+01, -1.43660369e+01,
-1.27180677e+01, -1.27180677e+01, -1.27180677e+01, -1.27180677e+01,
-1.08842763e+01, -1.08842763e+01, -1.08842763e+01, -1.08842763e+01,
-9.05630951e+00, -9.05630951e+00, -9.05630951e+00, -9.05630951e+00,
-7.29760506e+00, -7.29760506e+00, -7.29760506e+00, -7.29760506e+00,
-5.64239272e+00, -5.64239272e+00, -5.64239272e+00, -5.64239272e+00,
-4.13310877e+00, -4.13310877e+00, -4.13310877e+00, -4.13310877e+00,
-2.82532524e+00, -2.82532524e+00, -2.82532524e+00, -2.82532524e+00,
-1.78143548e+00, -1.78143548e+00, -1.78143548e+00, -1.78143548e+00,
-1.02528008e+00, -1.02528008e+00, -1.02528008e+00, -1.02528008e+00,
-5.79884468e-01, -5.79884468e-01, -5.79884468e-01, -5.79884468e-01,
-3.29472357e-01, -3.29472357e-01, -3.29472357e-01, -3.29472357e-01,
-2.63387045e-01, -2.63387045e-01, -2.63387045e-01, -2.63387045e-01,
-2.20777631e-01, -2.20777631e-01, -2.20777631e-01, -2.20777631e-01,
-1.94945989e-01, -1.94945989e-01, -1.94945989e-01, -1.94945989e-01,
-1.44701458e-01, -1.44701458e-01, -1.44701458e-01, -1.44701458e-01,
6.34160686e-03, 6.34160686e-03, 6.34160686e-03, 6.34160686e-03,
2.19027902e-01, 2.19027902e-01, 2.19027902e-01, 2.19027902e-01,
3.42281353e-01, 3.42281353e-01, 3.42281353e-01, 3.42281353e-01,
3.69210178e-01, 3.69210178e-01, 3.69210178e-01, 3.69210178e-01,
3.25110505e-01, 3.25110505e-01, 3.25110505e-01, 3.25110505e-01,
1.89137060e-01, 1.89137060e-01, 1.89137060e-01, 1.89137060e-01,
1.05454908e-01, 1.05454908e-01, 1.05454908e-01, 1.05454908e-01,
-1.89313025e+00, -1.89313025e+00, -1.89313025e+00, -1.89313025e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999964e+02, 9.99999964e+02, 9.99999964e+02, 9.99999964e+02,
9.99999858e+02, 9.99999858e+02, 9.99999858e+02, 9.99999858e+02,
9.99999466e+02, 9.99999466e+02, 9.99999466e+02, 9.99999466e+02,
9.99998093e+02, 9.99998093e+02, 9.99998093e+02, 9.99998093e+02,
9.99993556e+02, 9.99993556e+02, 9.99993556e+02, 9.99993556e+02,
9.99979438e+02, 9.99979438e+02, 9.99979438e+02, 9.99979438e+02,
9.99938111e+02, 9.99938111e+02, 9.99938111e+02, 9.99938111e+02,
9.99824646e+02, 9.99824646e+02, 9.99824646e+02, 9.99824646e+02,
9.99533300e+02, 9.99533300e+02, 9.99533300e+02, 9.99533300e+02,
9.98836134e+02, 9.98836134e+02, 9.98836134e+02, 9.98836134e+02,
9.97287686e+02, 9.97287686e+02, 9.97287686e+02, 9.97287686e+02,
9.94109332e+02, 9.94109332e+02, 9.94109332e+02, 9.94109332e+02,
9.88106008e+02, 9.88106008e+02, 9.88106008e+02, 9.88106008e+02,
9.77708597e+02, 9.77708597e+02, 9.77708597e+02, 9.77708597e+02,
9.61228130e+02, 9.61228130e+02, 9.61228130e+02, 9.61228130e+02,
9.37305407e+02, 9.37305407e+02, 9.37305407e+02, 9.37305407e+02,
9.05376194e+02, 9.05376194e+02, 9.05376194e+02, 9.05376194e+02,
8.65887823e+02, 8.65887823e+02, 8.65887823e+02, 8.65887823e+02,
8.20109819e+02, 8.20109819e+02, 8.20109819e+02, 8.20109819e+02,
7.69583036e+02, 7.69583036e+02, 7.69583036e+02, 7.69583036e+02,
7.16430551e+02, 7.16430551e+02, 7.16430551e+02, 7.16430551e+02,
6.66223949e+02, 6.66223949e+02, 6.66223949e+02, 6.66223949e+02,
6.21173301e+02, 6.21173301e+02, 6.21173301e+02, 6.21173301e+02,
5.81155829e+02, 5.81155829e+02, 5.81155829e+02, 5.81155829e+02,
5.46599575e+02, 5.46599575e+02, 5.46599575e+02, 5.46599575e+02,
5.18131035e+02, 5.18131035e+02, 5.18131035e+02, 5.18131035e+02,
4.96195244e+02, 4.96195244e+02, 4.96195244e+02, 4.96195244e+02,
4.81181444e+02, 4.81181444e+02, 4.81181444e+02, 4.81181444e+02,
4.71808248e+02, 4.71808248e+02, 4.71808248e+02, 4.71808248e+02,
4.67742557e+02, 4.67742557e+02, 4.67742557e+02, 4.67742557e+02,
4.65569109e+02, 4.65569109e+02, 4.65569109e+02, 4.65569109e+02,
4.65186953e+02, 4.65186953e+02, 4.65186953e+02, 4.65186953e+02,
4.64818182e+02, 4.64818182e+02, 4.64818182e+02, 4.64818182e+02,
4.63748697e+02, 4.63748697e+02, 4.63748697e+02, 4.63748697e+02,
4.60625400e+02, 4.60625400e+02, 4.60625400e+02, 4.60625400e+02,
4.56453004e+02, 4.56453004e+02, 4.56453004e+02, 4.56453004e+02,
4.54485814e+02, 4.54485814e+02, 4.54485814e+02, 4.54485814e+02,
4.54025030e+02, 4.54025030e+02, 4.54025030e+02, 4.54025030e+02,
4.54666768e+02, 4.54666768e+02, 4.54666768e+02, 4.54666768e+02,
4.57364563e+02, 4.57364563e+02, 4.57364563e+02, 4.57364563e+02,
4.63513392e+02, 4.63513392e+02, 4.63513392e+02, 4.63513392e+02,
3.92058603e+02, 3.92058603e+02, 3.92058603e+02, 3.92058603e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999985, 0.99999985,
0.99999985, 0.99999985, 0.99999944, 0.99999944, 0.99999944,
0.99999944, 0.99999808, 0.99999808, 0.99999808, 0.99999808,
0.99999374, 0.99999374, 0.99999374, 0.99999374, 0.99998068,
0.99998068, 0.99998068, 0.99998068, 0.99994372, 0.99994372,
0.99994372, 0.99994372, 0.99984542, 0.99984542, 0.99984542,
0.99984542, 0.99960058, 0.99960058, 0.99960058, 0.99960058,
0.99903135, 0.99903135, 0.99903135, 0.99903135, 0.99780084,
0.99780084, 0.99780084, 0.99780084, 0.99533744, 0.99533744,
0.99533744, 0.99533744, 0.99078751, 0.99078751, 0.99078751,
0.99078751, 0.98305618, 0.98305618, 0.98305618, 0.98305618,
0.97098376, 0.97098376, 0.97098376, 0.97098376, 0.9536365 ,
0.9536365 , 0.9536365 , 0.9536365 , 0.93059345, 0.93059345,
0.93059345, 0.93059345, 0.90207179, 0.90207179, 0.90207179,
0.90207179, 0.86880396, 0.86880396, 0.86880396, 0.86880396,
0.83171985, 0.83171985, 0.83171985, 0.83171985, 0.79203515,
0.79203515, 0.79203515, 0.79203515, 0.7533453 , 0.7533453 ,
0.7533453 , 0.7533453 , 0.71768018, 0.71768018, 0.71768018,
0.71768018, 0.6850616 , 0.6850616 , 0.6850616 , 0.6850616 ,
0.65597209, 0.65597209, 0.65597209, 0.65597209, 0.63103729,
0.63103729, 0.63103729, 0.63103729, 0.61099977, 0.61099977,
0.61099977, 0.61099977, 0.59617655, 0.59617655, 0.59617655,
0.59617655, 0.58676144, 0.58676144, 0.58676144, 0.58676144,
0.58122289, 0.58122289, 0.58122289, 0.58122289, 0.57914956,
0.57914956, 0.57914956, 0.57914956, 0.57788872, 0.57788872,
0.57788872, 0.57788872, 0.57727667, 0.57727667, 0.57727667,
0.57727667, 0.57646173, 0.57646173, 0.57646173, 0.57646173,
0.57419256, 0.57419256, 0.57419256, 0.57419256, 0.56967625,
0.56967625, 0.56967625, 0.56967625, 0.56515937, 0.56515937,
0.56515937, 0.56515937, 0.56171673, 0.56171673, 0.56171673,
0.56171673, 0.56096013, 0.56096013, 0.56096013, 0.56096013,
0.57428334, 0.57428334, 0.57428334, 0.57428334, 0.7451832 ,
0.7451832 , 0.7451832 , 0.7451832 , 4.92344734, 4.92344734,
4.92344734, 4.92344734, 5.54443902, 5.54443902, 5.54443902,
5.54443902, 1.03668904, 1.03668904, 1.03668904, 1.03668904,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744991, -19.59744991, -19.59744991, -19.59744991,
-19.59744962, -19.59744962, -19.59744962, -19.59744962,
-19.59744849, -19.59744849, -19.59744849, -19.59744849,
-19.59744424, -19.59744424, -19.59744424, -19.59744424,
-19.5974291 , -19.5974291 , -19.5974291 , -19.5974291 ,
-19.59737809, -19.59737809, -19.59737809, -19.59737809,
-19.59721561, -19.59721561, -19.59721561, -19.59721561,
-19.59672713, -19.59672713, -19.59672713, -19.59672713,
-19.59534416, -19.59534416, -19.59534416, -19.59534416,
-19.59166604, -19.59166604, -19.59166604, -19.59166604,
-19.58250357, -19.58250357, -19.58250357, -19.58250357,
-19.56119668, -19.56119668, -19.56119668, -19.56119668,
-19.51511105, -19.51511105, -19.51511105, -19.51511105,
-19.42273472, -19.42273472, -19.42273472, -19.42273472,
-19.251683 , -19.251683 , -19.251683 , -19.251683 ,
-18.95967279, -18.95967279, -18.95967279, -18.95967279,
-18.50011506, -18.50011506, -18.50011506, -18.50011506,
-17.83172671, -17.83172671, -17.83172671, -17.83172671,
-16.92849548, -16.92849548, -16.92849548, -16.92849548,
-15.78491275, -15.78491275, -15.78491275, -15.78491275,
-14.41313248, -14.41313248, -14.41313248, -14.41313248,
-12.83150634, -12.83150634, -12.83150634, -12.83150634,
-11.07369836, -11.07369836, -11.07369836, -11.07369836,
-9.31046166, -9.31046166, -9.31046166, -9.31046166,
-7.60499608, -7.60499608, -7.60499608, -7.60499608,
-5.98738913, -5.98738913, -5.98738913, -5.98738913,
-4.49180344, -4.49180344, -4.49180344, -4.49180344,
-3.16917603, -3.16917603, -3.16917603, -3.16917603,
-2.07337458, -2.07337458, -2.07337458, -2.07337458,
-1.25572681, -1.25572681, -1.25572681, -1.25572681,
-0.7068368 , -0.7068368 , -0.7068368 , -0.7068368 ,
-0.42441014, -0.42441014, -0.42441014, -0.42441014,
-0.27338143, -0.27338143, -0.27338143, -0.27338143,
-0.23810574, -0.23810574, -0.23810574, -0.23810574,
-0.20742784, -0.20742784, -0.20742784, -0.20742784,
-0.16323872, -0.16323872, -0.16323872, -0.16323872,
-0.05173445, -0.05173445, -0.05173445, -0.05173445,
0.15602623, 0.15602623, 0.15602623, 0.15602623,
0.29414628, 0.29414628, 0.29414628, 0.29414628,
0.34985691, 0.34985691, 0.34985691, 0.34985691,
0.34552838, 0.34552838, 0.34552838, 0.34552838,
0.24827772, 0.24827772, 0.24827772, 0.24827772,
0.09253274, 0.09253274, 0.09253274, 0.09253274,
0.04840488, 0.04840488, 0.04840488, 0.04840488,
-1.4699531 , -1.4699531 , -1.4699531 , -1.4699531 ,
-18.88215158, -18.88215158, -18.88215158, -18.88215158,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999986e+02, 9.99999986e+02, 9.99999986e+02, 9.99999986e+02,
9.99999944e+02, 9.99999944e+02, 9.99999944e+02, 9.99999944e+02,
9.99999784e+02, 9.99999784e+02, 9.99999784e+02, 9.99999784e+02,
9.99999218e+02, 9.99999218e+02, 9.99999218e+02, 9.99999218e+02,
9.99997309e+02, 9.99997309e+02, 9.99997309e+02, 9.99997309e+02,
9.99991230e+02, 9.99991230e+02, 9.99991230e+02, 9.99991230e+02,
9.99972953e+02, 9.99972953e+02, 9.99972953e+02, 9.99972953e+02,
9.99921209e+02, 9.99921209e+02, 9.99921209e+02, 9.99921209e+02,
9.99783604e+02, 9.99783604e+02, 9.99783604e+02, 9.99783604e+02,
9.99440890e+02, 9.99440890e+02, 9.99440890e+02, 9.99440890e+02,
9.98644316e+02, 9.98644316e+02, 9.98644316e+02, 9.98644316e+02,
9.96923244e+02, 9.96923244e+02, 9.96923244e+02, 9.96923244e+02,
9.93481167e+02, 9.93481167e+02, 9.93481167e+02, 9.93481167e+02,
9.87134721e+02, 9.87134721e+02, 9.87134721e+02, 9.87134721e+02,
9.76381734e+02, 9.76381734e+02, 9.76381734e+02, 9.76381734e+02,
9.59665158e+02, 9.59665158e+02, 9.59665158e+02, 9.59665158e+02,
9.35796522e+02, 9.35796522e+02, 9.35796522e+02, 9.35796522e+02,
9.04361456e+02, 9.04361456e+02, 9.04361456e+02, 9.04361456e+02,
8.65877146e+02, 8.65877146e+02, 8.65877146e+02, 8.65877146e+02,
8.21587440e+02, 8.21587440e+02, 8.21587440e+02, 8.21587440e+02,
7.72959478e+02, 7.72959478e+02, 7.72959478e+02, 7.72959478e+02,
7.21780593e+02, 7.21780593e+02, 7.21780593e+02, 7.21780593e+02,
6.72972279e+02, 6.72972279e+02, 6.72972279e+02, 6.72972279e+02,
6.28869375e+02, 6.28869375e+02, 6.28869375e+02, 6.28869375e+02,
5.89301495e+02, 5.89301495e+02, 5.89301495e+02, 5.89301495e+02,
5.54659058e+02, 5.54659058e+02, 5.54659058e+02, 5.54659058e+02,
5.25470740e+02, 5.25470740e+02, 5.25470740e+02, 5.25470740e+02,
5.02361432e+02, 5.02361432e+02, 5.02361432e+02, 5.02361432e+02,
4.85480560e+02, 4.85480560e+02, 4.85480560e+02, 4.85480560e+02,
4.74893544e+02, 4.74893544e+02, 4.74893544e+02, 4.74893544e+02,
4.68756735e+02, 4.68756735e+02, 4.68756735e+02, 4.68756735e+02,
4.66559010e+02, 4.66559010e+02, 4.66559010e+02, 4.66559010e+02,
4.65288869e+02, 4.65288869e+02, 4.65288869e+02, 4.65288869e+02,
4.64772037e+02, 4.64772037e+02, 4.64772037e+02, 4.64772037e+02,
4.64098592e+02, 4.64098592e+02, 4.64098592e+02, 4.64098592e+02,
4.62022815e+02, 4.62022815e+02, 4.62022815e+02, 4.62022815e+02,
4.57930558e+02, 4.57930558e+02, 4.57930558e+02, 4.57930558e+02,
4.54992894e+02, 4.54992894e+02, 4.54992894e+02, 4.54992894e+02,
4.54194262e+02, 4.54194262e+02, 4.54194262e+02, 4.54194262e+02,
4.54422763e+02, 4.54422763e+02, 4.54422763e+02, 4.54422763e+02,
4.56256877e+02, 4.56256877e+02, 4.56256877e+02, 4.56256877e+02,
4.59141920e+02, 4.59141920e+02, 4.59141920e+02, 4.59141920e+02,
4.65891529e+02, 4.65891529e+02, 4.65891529e+02, 4.65891529e+02,
4.18365297e+02, 4.18365297e+02, 4.18365297e+02, 4.18365297e+02,
5.12475122e+00, 5.12475122e+00, 5.12475122e+00, 5.12475122e+00,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999994, 0.99999994, 0.99999994, 0.99999994, 0.99999977,
0.99999977, 0.99999977, 0.99999977, 0.9999992 , 0.9999992 ,
0.9999992 , 0.9999992 , 0.99999735, 0.99999735, 0.99999735,
0.99999735, 0.99999164, 0.99999164, 0.99999164, 0.99999164,
0.99997502, 0.99997502, 0.99997502, 0.99997502, 0.99992943,
0.99992943, 0.99992943, 0.99992943, 0.99981174, 0.99981174,
0.99981174, 0.99981174, 0.99952686, 0.99952686, 0.99952686,
0.99952686, 0.99888237, 0.99888237, 0.99888237, 0.99888237,
0.99752477, 0.99752477, 0.99752477, 0.99752477, 0.99487232,
0.99487232, 0.99487232, 0.99487232, 0.99008261, 0.99008261,
0.99008261, 0.99008261, 0.98210912, 0.98210912, 0.98210912,
0.98210912, 0.96988221, 0.96988221, 0.96988221, 0.96988221,
0.95258192, 0.95258192, 0.95258192, 0.95258192, 0.92988797,
0.92988797, 0.92988797, 0.92988797, 0.90206987, 0.90206987,
0.90206987, 0.90206987, 0.8698544 , 0.8698544 , 0.8698544 ,
0.8698544 , 0.83413065, 0.83413065, 0.83413065, 0.83413065,
0.79594485, 0.79594485, 0.79594485, 0.79594485, 0.75844031,
0.75844031, 0.75844031, 0.75844031, 0.72364822, 0.72364822,
0.72364822, 0.72364822, 0.69158842, 0.69158842, 0.69158842,
0.69158842, 0.66264934, 0.66264934, 0.66264934, 0.66264934,
0.63741371, 0.63741371, 0.63741371, 0.63741371, 0.61652579,
0.61652579, 0.61652579, 0.61652579, 0.60060459, 0.60060459,
0.60060459, 0.60060459, 0.58955963, 0.58955963, 0.58955963,
0.58955963, 0.58323093, 0.58323093, 0.58323093, 0.58323093,
0.57971575, 0.57971575, 0.57971575, 0.57971575, 0.57853261,
0.57853261, 0.57853261, 0.57853261, 0.5776235 , 0.5776235 ,
0.5776235 , 0.5776235 , 0.57679716, 0.57679716, 0.57679716,
0.57679716, 0.57528483, 0.57528483, 0.57528483, 0.57528483,
0.57185478, 0.57185478, 0.57185478, 0.57185478, 0.56806429,
0.56806429, 0.56806429, 0.56806429, 0.56470465, 0.56470465,
0.56470465, 0.56470465, 0.56183268, 0.56183268, 0.56183268,
0.56183268, 0.56175025, 0.56175025, 0.56175025, 0.56175025,
0.5759848 , 0.5759848 , 0.5759848 , 0.5759848 , 0.74891143,
0.74891143, 0.74891143, 0.74891143, 4.93884917, 4.93884917,
4.93884917, 4.93884917, 5.66590098, 5.66590098, 5.66590098,
5.66590098, 1.27347817, 1.27347817, 1.27347817, 1.27347817,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974494e+01, -1.95974494e+01, -1.95974494e+01, -1.95974494e+01,
-1.95974477e+01, -1.95974477e+01, -1.95974477e+01, -1.95974477e+01,
-1.95974415e+01, -1.95974415e+01, -1.95974415e+01, -1.95974415e+01,
-1.95974201e+01, -1.95974201e+01, -1.95974201e+01, -1.95974201e+01,
-1.95973508e+01, -1.95973508e+01, -1.95973508e+01, -1.95973508e+01,
-1.95971372e+01, -1.95971372e+01, -1.95971372e+01, -1.95971372e+01,
-1.95965155e+01, -1.95965155e+01, -1.95965155e+01, -1.95965155e+01,
-1.95948095e+01, -1.95948095e+01, -1.95948095e+01, -1.95948095e+01,
-1.95904057e+01, -1.95904057e+01, -1.95904057e+01, -1.95904057e+01,
-1.95797446e+01, -1.95797446e+01, -1.95797446e+01, -1.95797446e+01,
-1.95556189e+01, -1.95556189e+01, -1.95556189e+01, -1.95556189e+01,
-1.95047656e+01, -1.95047656e+01, -1.95047656e+01, -1.95047656e+01,
-1.94052717e+01, -1.94052717e+01, -1.94052717e+01, -1.94052717e+01,
-1.92251204e+01, -1.92251204e+01, -1.92251204e+01, -1.92251204e+01,
-1.89237547e+01, -1.89237547e+01, -1.89237547e+01, -1.89237547e+01,
-1.84578960e+01, -1.84578960e+01, -1.84578960e+01, -1.84578960e+01,
-1.77906570e+01, -1.77906570e+01, -1.77906570e+01, -1.77906570e+01,
-1.69003509e+01, -1.69003509e+01, -1.69003509e+01, -1.69003509e+01,
-1.57845359e+01, -1.57845359e+01, -1.57845359e+01, -1.57845359e+01,
-1.44567240e+01, -1.44567240e+01, -1.44567240e+01, -1.44567240e+01,
-1.29357405e+01, -1.29357405e+01, -1.29357405e+01, -1.29357405e+01,
-1.12493994e+01, -1.12493994e+01, -1.12493994e+01, -1.12493994e+01,
-9.54671305e+00, -9.54671305e+00, -9.54671305e+00, -9.54671305e+00,
-7.89350141e+00, -7.89350141e+00, -7.89350141e+00, -7.89350141e+00,
-6.31429754e+00, -6.31429754e+00, -6.31429754e+00, -6.31429754e+00,
-4.83839512e+00, -4.83839512e+00, -4.83839512e+00, -4.83839512e+00,
-3.50859895e+00, -3.50859895e+00, -3.50859895e+00, -3.50859895e+00,
-2.37834278e+00, -2.37834278e+00, -2.37834278e+00, -2.37834278e+00,
-1.49153448e+00, -1.49153448e+00, -1.49153448e+00, -1.49153448e+00,
-8.81150155e-01, -8.81150155e-01, -8.81150155e-01, -8.81150155e-01,
-5.03007927e-01, -5.03007927e-01, -5.03007927e-01, -5.03007927e-01,
-3.35564422e-01, -3.35564422e-01, -3.35564422e-01, -3.35564422e-01,
-2.44374177e-01, -2.44374177e-01, -2.44374177e-01, -2.44374177e-01,
-2.13624834e-01, -2.13624834e-01, -2.13624834e-01, -2.13624834e-01,
-1.79605715e-01, -1.79605715e-01, -1.79605715e-01, -1.79605715e-01,
-1.01292744e-01, -1.01292744e-01, -1.01292744e-01, -1.01292744e-01,
8.17207680e-02, 8.17207680e-02, 8.17207680e-02, 8.17207680e-02,
2.58649244e-01, 2.58649244e-01, 2.58649244e-01, 2.58649244e-01,
3.25934462e-01, 3.25934462e-01, 3.25934462e-01, 3.25934462e-01,
3.39498005e-01, 3.39498005e-01, 3.39498005e-01, 3.39498005e-01,
2.91982036e-01, 2.91982036e-01, 2.91982036e-01, 2.91982036e-01,
1.45463974e-01, 1.45463974e-01, 1.45463974e-01, 1.45463974e-01,
1.49557604e-03, 1.49557604e-03, 1.49557604e-03, 1.49557604e-03,
-7.12752738e-03, -7.12752738e-03, -7.12752738e-03, -7.12752738e-03,
-1.14206431e+00, -1.14206431e+00, -1.14206431e+00, -1.14206431e+00,
-1.52900050e+01, -1.52900050e+01, -1.52900050e+01, -1.52900050e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999978e+02, 9.99999978e+02, 9.99999978e+02, 9.99999978e+02,
9.99999913e+02, 9.99999913e+02, 9.99999913e+02, 9.99999913e+02,
9.99999681e+02, 9.99999681e+02, 9.99999681e+02, 9.99999681e+02,
9.99998883e+02, 9.99998883e+02, 9.99998883e+02, 9.99998883e+02,
9.99996287e+02, 9.99996287e+02, 9.99996287e+02, 9.99996287e+02,
9.99988295e+02, 9.99988295e+02, 9.99988295e+02, 9.99988295e+02,
9.99965035e+02, 9.99965035e+02, 9.99965035e+02, 9.99965035e+02,
9.99901205e+02, 9.99901205e+02, 9.99901205e+02, 9.99901205e+02,
9.99736456e+02, 9.99736456e+02, 9.99736456e+02, 9.99736456e+02,
9.99337713e+02, 9.99337713e+02, 9.99337713e+02, 9.99337713e+02,
9.98435876e+02, 9.98435876e+02, 9.98435876e+02, 9.98435876e+02,
9.96537247e+02, 9.96537247e+02, 9.96537247e+02, 9.96537247e+02,
9.92831630e+02, 9.92831630e+02, 9.92831630e+02, 9.92831630e+02,
9.86152355e+02, 9.86152355e+02, 9.86152355e+02, 9.86152355e+02,
9.75066144e+02, 9.75066144e+02, 9.75066144e+02, 9.75066144e+02,
9.58141907e+02, 9.58141907e+02, 9.58141907e+02, 9.58141907e+02,
9.34346468e+02, 9.34346468e+02, 9.34346468e+02, 9.34346468e+02,
9.03395524e+02, 9.03395524e+02, 9.03395524e+02, 9.03395524e+02,
8.65861385e+02, 8.65861385e+02, 8.65861385e+02, 8.65861385e+02,
8.22957333e+02, 8.22957333e+02, 8.22957333e+02, 8.22957333e+02,
7.76073993e+02, 7.76073993e+02, 7.76073993e+02, 7.76073993e+02,
7.26756358e+02, 7.26756358e+02, 7.26756358e+02, 7.26756358e+02,
6.79318181e+02, 6.79318181e+02, 6.79318181e+02, 6.79318181e+02,
6.36159247e+02, 6.36159247e+02, 6.36159247e+02, 6.36159247e+02,
5.97127968e+02, 5.97127968e+02, 5.97127968e+02, 5.97127968e+02,
5.62520663e+02, 5.62520663e+02, 5.62520663e+02, 5.62520663e+02,
5.32846267e+02, 5.32846267e+02, 5.32846267e+02, 5.32846267e+02,
5.08656450e+02, 5.08656450e+02, 5.08656450e+02, 5.08656450e+02,
4.90453284e+02, 4.90453284e+02, 4.90453284e+02, 4.90453284e+02,
4.77962657e+02, 4.77962657e+02, 4.77962657e+02, 4.77962657e+02,
4.70901728e+02, 4.70901728e+02, 4.70901728e+02, 4.70901728e+02,
4.67057305e+02, 4.67057305e+02, 4.67057305e+02, 4.67057305e+02,
4.65864101e+02, 4.65864101e+02, 4.65864101e+02, 4.65864101e+02,
4.64990688e+02, 4.64990688e+02, 4.64990688e+02, 4.64990688e+02,
4.64232471e+02, 4.64232471e+02, 4.64232471e+02, 4.64232471e+02,
4.62773942e+02, 4.62773942e+02, 4.62773942e+02, 4.62773942e+02,
4.59392911e+02, 4.59392911e+02, 4.59392911e+02, 4.59392911e+02,
4.56109899e+02, 4.56109899e+02, 4.56109899e+02, 4.56109899e+02,
4.54464219e+02, 4.54464219e+02, 4.54464219e+02, 4.54464219e+02,
4.54313380e+02, 4.54313380e+02, 4.54313380e+02, 4.54313380e+02,
4.55313392e+02, 4.55313392e+02, 4.55313392e+02, 4.55313392e+02,
4.58230030e+02, 4.58230030e+02, 4.58230030e+02, 4.58230030e+02,
4.60740057e+02, 4.60740057e+02, 4.60740057e+02, 4.60740057e+02,
4.67566587e+02, 4.67566587e+02, 4.67566587e+02, 4.67566587e+02,
4.31360769e+02, 4.31360769e+02, 4.31360769e+02, 4.31360769e+02,
3.42890427e+01, 3.42890427e+01, 3.42890427e+01, 3.42890427e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999967, 0.99999967, 0.99999967, 0.99999967, 0.99999888,
0.99999888, 0.99999888, 0.99999888, 0.99999641, 0.99999641,
0.99999641, 0.99999641, 0.99998904, 0.99998904, 0.99998904,
0.99998904, 0.99996821, 0.99996821, 0.99996821, 0.99996821,
0.99991271, 0.99991271, 0.99991271, 0.99991271, 0.99977342,
0.99977342, 0.99977342, 0.99977342, 0.9994452 , 0.9994452 ,
0.9994452 , 0.9994452 , 0.99872149, 0.99872149, 0.99872149,
0.99872149, 0.99723373, 0.99723373, 0.99723373, 0.99723373,
0.99439289, 0.99439289, 0.99439289, 0.99439289, 0.9893709 ,
0.9893709 , 0.9893709 , 0.9893709 , 0.98117054, 0.98117054,
0.98117054, 0.98117054, 0.96880792, 0.96880792, 0.96880792,
0.96880792, 0.95156679, 0.95156679, 0.95156679, 0.95156679,
0.92921472, 0.92921472, 0.92921472, 0.92921472, 0.90206335,
0.90206335, 0.90206335, 0.90206335, 0.87082942, 0.87082942,
0.87082942, 0.87082942, 0.83635999, 0.83635999, 0.83635999,
0.83635999, 0.79958445, 0.79958445, 0.79958445, 0.79958445,
0.76320845, 0.76320845, 0.76320845, 0.76320845, 0.72928639,
0.72928639, 0.72928639, 0.72928639, 0.69781444, 0.69781444,
0.69781444, 0.69781444, 0.66912302, 0.66912302, 0.66912302,
0.66912302, 0.64370616, 0.64370616, 0.64370616, 0.64370616,
0.6222069 , 0.6222069 , 0.6222069 , 0.6222069 , 0.60517495,
0.60517495, 0.60517495, 0.60517495, 0.59300247, 0.59300247,
0.59300247, 0.59300247, 0.58513219, 0.58513219, 0.58513219,
0.58513219, 0.58110197, 0.58110197, 0.58110197, 0.58110197,
0.57888883, 0.57888883, 0.57888883, 0.57888883, 0.57804355,
0.57804355, 0.57804355, 0.57804355, 0.57721529, 0.57721529,
0.57721529, 0.57721529, 0.57599771, 0.57599771, 0.57599771,
0.57599771, 0.57339499, 0.57339499, 0.57339499, 0.57339499,
0.56977182, 0.56977182, 0.56977182, 0.56977182, 0.56723157,
0.56723157, 0.56723157, 0.56723157, 0.56473558, 0.56473558,
0.56473558, 0.56473558, 0.56229282, 0.56229282, 0.56229282,
0.56229282, 0.56318072, 0.56318072, 0.56318072, 0.56318072,
0.57767617, 0.57767617, 0.57767617, 0.57767617, 0.75745676,
0.75745676, 0.75745676, 0.75745676, 4.94626224, 4.94626224,
4.94626224, 4.94626224, 5.70365604, 5.70365604, 5.70365604,
5.70365604, 1.59603937, 1.59603937, 1.59603937, 1.59603937,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974491e+01, -1.95974491e+01, -1.95974491e+01, -1.95974491e+01,
-1.95974465e+01, -1.95974465e+01, -1.95974465e+01, -1.95974465e+01,
-1.95974377e+01, -1.95974377e+01, -1.95974377e+01, -1.95974377e+01,
-1.95974083e+01, -1.95974083e+01, -1.95974083e+01, -1.95974083e+01,
-1.95973158e+01, -1.95973158e+01, -1.95973158e+01, -1.95973158e+01,
-1.95970397e+01, -1.95970397e+01, -1.95970397e+01, -1.95970397e+01,
-1.95962605e+01, -1.95962605e+01, -1.95962605e+01, -1.95962605e+01,
-1.95941839e+01, -1.95941839e+01, -1.95941839e+01, -1.95941839e+01,
-1.95889717e+01, -1.95889717e+01, -1.95889717e+01, -1.95889717e+01,
-1.95766882e+01, -1.95766882e+01, -1.95766882e+01, -1.95766882e+01,
-1.95495946e+01, -1.95495946e+01, -1.95495946e+01, -1.95495946e+01,
-1.94938567e+01, -1.94938567e+01, -1.94938567e+01, -1.94938567e+01,
-1.93872645e+01, -1.93872645e+01, -1.93872645e+01, -1.93872645e+01,
-1.91982859e+01, -1.91982859e+01, -1.91982859e+01, -1.91982859e+01,
-1.88881287e+01, -1.88881287e+01, -1.88881287e+01, -1.88881287e+01,
-1.84166819e+01, -1.84166819e+01, -1.84166819e+01, -1.84166819e+01,
-1.77510879e+01, -1.77510879e+01, -1.77510879e+01, -1.77510879e+01,
-1.68734808e+01, -1.68734808e+01, -1.68734808e+01, -1.68734808e+01,
-1.57840020e+01, -1.57840020e+01, -1.57840020e+01, -1.57840020e+01,
-1.44971612e+01, -1.44971612e+01, -1.44971612e+01, -1.44971612e+01,
-1.30320182e+01, -1.30320182e+01, -1.30320182e+01, -1.30320182e+01,
-1.14121779e+01, -1.14121779e+01, -1.14121779e+01, -1.14121779e+01,
-9.76721197e+00, -9.76721197e+00, -9.76721197e+00, -9.76721197e+00,
-8.16411172e+00, -8.16411172e+00, -8.16411172e+00, -8.16411172e+00,
-6.62422222e+00, -6.62422222e+00, -6.62422222e+00, -6.62422222e+00,
-5.17120266e+00, -5.17120266e+00, -5.17120266e+00, -5.17120266e+00,
-3.84277734e+00, -3.84277734e+00, -3.84277734e+00, -3.84277734e+00,
-2.68552665e+00, -2.68552665e+00, -2.68552665e+00, -2.68552665e+00,
-1.74959038e+00, -1.74959038e+00, -1.74959038e+00, -1.74959038e+00,
-1.06046860e+00, -1.06046860e+00, -1.06046860e+00, -1.06046860e+00,
-6.28540492e-01, -6.28540492e-01, -6.28540492e-01, -6.28540492e-01,
-3.80399014e-01, -3.80399014e-01, -3.80399014e-01, -3.80399014e-01,
-2.84130885e-01, -2.84130885e-01, -2.84130885e-01, -2.84130885e-01,
-2.23268367e-01, -2.23268367e-01, -2.23268367e-01, -2.23268367e-01,
-1.84588285e-01, -1.84588285e-01, -1.84588285e-01, -1.84588285e-01,
-1.29141084e-01, -1.29141084e-01, -1.29141084e-01, -1.29141084e-01,
6.83486785e-03, 6.83486785e-03, 6.83486785e-03, 6.83486785e-03,
1.97766665e-01, 1.97766665e-01, 1.97766665e-01, 1.97766665e-01,
3.09999709e-01, 3.09999709e-01, 3.09999709e-01, 3.09999709e-01,
3.31130840e-01, 3.31130840e-01, 3.31130840e-01, 3.31130840e-01,
3.11345179e-01, 3.11345179e-01, 3.11345179e-01, 3.11345179e-01,
2.02708054e-01, 2.02708054e-01, 2.02708054e-01, 2.02708054e-01,
4.65881958e-02, 4.65881958e-02, 4.65881958e-02, 4.65881958e-02,
-7.39224859e-02, -7.39224859e-02, -7.39224859e-02, -7.39224859e-02,
-4.98197741e-02, -4.98197741e-02, -4.98197741e-02, -4.98197741e-02,
-7.95118272e-01, -7.95118272e-01, -7.95118272e-01, -7.95118272e-01,
-1.23208546e+01, -1.23208546e+01, -1.23208546e+01, -1.23208546e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999965e+02, 9.99999965e+02, 9.99999965e+02, 9.99999965e+02,
9.99999870e+02, 9.99999870e+02, 9.99999870e+02, 9.99999870e+02,
9.99999538e+02, 9.99999538e+02, 9.99999538e+02, 9.99999538e+02,
9.99998439e+02, 9.99998439e+02, 9.99998439e+02, 9.99998439e+02,
9.99994977e+02, 9.99994977e+02, 9.99994977e+02, 9.99994977e+02,
9.99984649e+02, 9.99984649e+02, 9.99984649e+02, 9.99984649e+02,
9.99955495e+02, 9.99955495e+02, 9.99955495e+02, 9.99955495e+02,
9.99877798e+02, 9.99877798e+02, 9.99877798e+02, 9.99877798e+02,
9.99682814e+02, 9.99682814e+02, 9.99682814e+02, 9.99682814e+02,
9.99223425e+02, 9.99223425e+02, 9.99223425e+02, 9.99223425e+02,
9.98210796e+02, 9.98210796e+02, 9.98210796e+02, 9.98210796e+02,
9.96130367e+02, 9.96130367e+02, 9.96130367e+02, 9.96130367e+02,
9.92162242e+02, 9.92162242e+02, 9.92162242e+02, 9.92162242e+02,
9.85160792e+02, 9.85160792e+02, 9.85160792e+02, 9.85160792e+02,
9.73762768e+02, 9.73762768e+02, 9.73762768e+02, 9.73762768e+02,
9.56656908e+02, 9.56656908e+02, 9.56656908e+02, 9.56656908e+02,
9.32951170e+02, 9.32951170e+02, 9.32951170e+02, 9.32951170e+02,
9.02474070e+02, 9.02474070e+02, 9.02474070e+02, 9.02474070e+02,
8.65840584e+02, 8.65840584e+02, 8.65840584e+02, 8.65840584e+02,
8.24230005e+02, 8.24230005e+02, 8.24230005e+02, 8.24230005e+02,
7.78960946e+02, 7.78960946e+02, 7.78960946e+02, 7.78960946e+02,
7.31389568e+02, 7.31389568e+02, 7.31389568e+02, 7.31389568e+02,
6.85282099e+02, 6.85282099e+02, 6.85282099e+02, 6.85282099e+02,
6.43071666e+02, 6.43071666e+02, 6.43071666e+02, 6.43071666e+02,
6.04622306e+02, 6.04622306e+02, 6.04622306e+02, 6.04622306e+02,
5.70179058e+02, 5.70179058e+02, 5.70179058e+02, 5.70179058e+02,
5.40165336e+02, 5.40165336e+02, 5.40165336e+02, 5.40165336e+02,
5.15159492e+02, 5.15159492e+02, 5.15159492e+02, 5.15159492e+02,
4.95611984e+02, 4.95611984e+02, 4.95611984e+02, 4.95611984e+02,
4.81794631e+02, 4.81794631e+02, 4.81794631e+02, 4.81794631e+02,
4.72949862e+02, 4.72949862e+02, 4.72949862e+02, 4.72949862e+02,
4.68498842e+02, 4.68498842e+02, 4.68498842e+02, 4.68498842e+02,
4.66125758e+02, 4.66125758e+02, 4.66125758e+02, 4.66125758e+02,
4.65313538e+02, 4.65313538e+02, 4.65313538e+02, 4.65313538e+02,
4.64531340e+02, 4.64531340e+02, 4.64531340e+02, 4.64531340e+02,
4.63332769e+02, 4.63332769e+02, 4.63332769e+02, 4.63332769e+02,
4.60648627e+02, 4.60648627e+02, 4.60648627e+02, 4.60648627e+02,
4.57050259e+02, 4.57050259e+02, 4.57050259e+02, 4.57050259e+02,
4.55164938e+02, 4.55164938e+02, 4.55164938e+02, 4.55164938e+02,
4.54482635e+02, 4.54482635e+02, 4.54482635e+02, 4.54482635e+02,
4.54824233e+02, 4.54824233e+02, 4.54824233e+02, 4.54824233e+02,
4.56931029e+02, 4.56931029e+02, 4.56931029e+02, 4.56931029e+02,
4.60138981e+02, 4.60138981e+02, 4.60138981e+02, 4.60138981e+02,
4.61981491e+02, 4.61981491e+02, 4.61981491e+02, 4.61981491e+02,
4.68140685e+02, 4.68140685e+02, 4.68140685e+02, 4.68140685e+02,
4.36428727e+02, 4.36428727e+02, 4.36428727e+02, 4.36428727e+02,
6.81746616e+01, 6.81746616e+01, 6.81746616e+01, 6.81746616e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999996, 0.99999996,
0.99999996, 0.99999996, 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999953, 0.99999953, 0.99999953, 0.99999953,
0.99999847, 0.99999847, 0.99999847, 0.99999847, 0.99999523,
0.99999523, 0.99999523, 0.99999523, 0.99998585, 0.99998585,
0.99998585, 0.99998585, 0.9999601 , 0.9999601 , 0.9999601 ,
0.9999601 , 0.99989335, 0.99989335, 0.99989335, 0.99989335,
0.9997302 , 0.9997302 , 0.9997302 , 0.9997302 , 0.99935538,
0.99935538, 0.99935538, 0.99935538, 0.99854873, 0.99854873,
0.99854873, 0.99854873, 0.99692822, 0.99692822, 0.99692822,
0.99692822, 0.99390018, 0.99390018, 0.99390018, 0.99390018,
0.98865363, 0.98865363, 0.98865363, 0.98865363, 0.98024099,
0.98024099, 0.98024099, 0.98024099, 0.96775988, 0.96775988,
0.96775988, 0.96775988, 0.95058848, 0.95058848, 0.95058848,
0.95058848, 0.92857093, 0.92857093, 0.92857093, 0.92857093,
0.90205249, 0.90205249, 0.90205249, 0.90205249, 0.87173692,
0.87173692, 0.87173692, 0.87173692, 0.83843181, 0.83843181,
0.83843181, 0.83843181, 0.80297224, 0.80297224, 0.80297224,
0.80297224, 0.76768315, 0.76768315, 0.76768315, 0.76768315,
0.73460513, 0.73460513, 0.73460513, 0.73460513, 0.70375228,
0.70375228, 0.70375228, 0.70375228, 0.67537121, 0.67537121,
0.67537121, 0.67537121, 0.64990447, 0.64990447, 0.64990447,
0.64990447, 0.6279201 , 0.6279201 , 0.6279201 , 0.6279201 ,
0.61003833, 0.61003833, 0.61003833, 0.61003833, 0.59659904,
0.59659904, 0.59659904, 0.59659904, 0.58769343, 0.58769343,
0.58769343, 0.58769343, 0.58232612, 0.58232612, 0.58232612,
0.58232612, 0.5798438 , 0.5798438 , 0.5798438 , 0.5798438 ,
0.57836002, 0.57836002, 0.57836002, 0.57836002, 0.5775144 ,
0.5775144 , 0.5775144 , 0.5775144 , 0.57654461, 0.57654461,
0.57654461, 0.57654461, 0.57463809, 0.57463809, 0.57463809,
0.57463809, 0.5712413 , 0.5712413 , 0.5712413 , 0.5712413 ,
0.56852502, 0.56852502, 0.56852502, 0.56852502, 0.56695785,
0.56695785, 0.56695785, 0.56695785, 0.56500277, 0.56500277,
0.56500277, 0.56500277, 0.56330734, 0.56330734, 0.56330734,
0.56330734, 0.56495911, 0.56495911, 0.56495911, 0.56495911,
0.57910712, 0.57910712, 0.57910712, 0.57910712, 0.76822579,
0.76822579, 0.76822579, 0.76822579, 4.94398567, 4.94398567,
4.94398567, 4.94398567, 5.69120284, 5.69120284, 5.69120284,
5.69120284, 1.97538859, 1.97538859, 1.97538859, 1.97538859,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744991, -19.59744991, -19.59744991, -19.59744991,
-19.59744963, -19.59744963, -19.59744963, -19.59744963,
-19.59744859, -19.59744859, -19.59744859, -19.59744859,
-19.59744492, -19.59744492, -19.59744492, -19.59744492,
-19.59743255, -19.59743255, -19.59743255, -19.59743255,
-19.59739282, -19.59739282, -19.59739282, -19.59739282,
-19.59727157, -19.59727157, -19.59727157, -19.59727157,
-19.59692039, -19.59692039, -19.59692039, -19.59692039,
-19.59595704, -19.59595704, -19.59595704, -19.59595704,
-19.59345932, -19.59345932, -19.59345932, -19.59345932,
-19.58735413, -19.58735413, -19.58735413, -19.58735413,
-19.57332626, -19.57332626, -19.57332626, -19.57332626,
-19.54312485, -19.54312485, -19.54312485, -19.54312485,
-19.48240267, -19.48240267, -19.48240267, -19.48240267,
-19.3687515 , -19.3687515 , -19.3687515 , -19.3687515 ,
-19.17122488, -19.17122488, -19.17122488, -19.17122488,
-18.85281695, -18.85281695, -18.85281695, -18.85281695,
-18.37643738, -18.37643738, -18.37643738, -18.37643738,
-17.71292094, -17.71292094, -17.71292094, -17.71292094,
-16.84777683, -16.84777683, -16.84777683, -16.84777683,
-15.78331816, -15.78331816, -15.78331816, -15.78331816,
-14.5347797 , -14.5347797 , -14.5347797 , -14.5347797 ,
-13.12131832, -13.12131832, -13.12131832, -13.12131832,
-11.56320641, -11.56320641, -11.56320641, -11.56320641,
-9.973158 , -9.973158 , -9.973158 , -9.973158 ,
-8.41839728, -8.41839728, -8.41839728, -8.41839728,
-6.91752776, -6.91752776, -6.91752776, -6.91752776,
-5.4904841 , -5.4904841 , -5.4904841 , -5.4904841 ,
-4.16868979, -4.16868979, -4.16868979, -4.16868979,
-2.99503252, -2.99503252, -2.99503252, -2.99503252,
-2.01492746, -2.01492746, -2.01492746, -2.01492746,
-1.26852879, -1.26852879, -1.26852879, -1.26852879,
-0.75659699, -0.75659699, -0.75659699, -0.75659699,
-0.46721793, -0.46721793, -0.46721793, -0.46721793,
-0.30912043, -0.30912043, -0.30912043, -0.30912043,
-0.24875555, -0.24875555, -0.24875555, -0.24875555,
-0.19892335, -0.19892335, -0.19892335, -0.19892335,
-0.14564527, -0.14564527, -0.14564527, -0.14564527,
-0.04528153, -0.04528153, -0.04528153, -0.04528153,
0.13535818, 0.13535818, 0.13535818, 0.13535818,
0.26623507, 0.26623507, 0.26623507, 0.26623507,
0.32428685, 0.32428685, 0.32428685, 0.32428685,
0.32067534, 0.32067534, 0.32067534, 0.32067534,
0.25398083, 0.25398083, 0.25398083, 0.25398083,
0.09430057, 0.09430057, 0.09430057, 0.09430057,
-0.03007264, -0.03007264, -0.03007264, -0.03007264,
-0.11990385, -0.11990385, -0.11990385, -0.11990385,
-0.0709073 , -0.0709073 , -0.0709073 , -0.0709073 ,
-0.44599011, -0.44599011, -0.44599011, -0.44599011,
-10.13576154, -10.13576154, -10.13576154, -10.13576154,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999986e+02, 9.99999986e+02, 9.99999986e+02, 9.99999986e+02,
9.99999947e+02, 9.99999947e+02, 9.99999947e+02, 9.99999947e+02,
9.99999810e+02, 9.99999810e+02, 9.99999810e+02, 9.99999810e+02,
9.99999347e+02, 9.99999347e+02, 9.99999347e+02, 9.99999347e+02,
9.99997861e+02, 9.99997861e+02, 9.99997861e+02, 9.99997861e+02,
9.99993324e+02, 9.99993324e+02, 9.99993324e+02, 9.99993324e+02,
9.99980184e+02, 9.99980184e+02, 9.99980184e+02, 9.99980184e+02,
9.99944140e+02, 9.99944140e+02, 9.99944140e+02, 9.99944140e+02,
9.99850692e+02, 9.99850692e+02, 9.99850692e+02, 9.99850692e+02,
9.99622309e+02, 9.99622309e+02, 9.99622309e+02, 9.99622309e+02,
9.99097723e+02, 9.99097723e+02, 9.99097723e+02, 9.99097723e+02,
9.97969118e+02, 9.97969118e+02, 9.97969118e+02, 9.97969118e+02,
9.95703309e+02, 9.95703309e+02, 9.95703309e+02, 9.95703309e+02,
9.91474458e+02, 9.91474458e+02, 9.91474458e+02, 9.91474458e+02,
9.84161735e+02, 9.84161735e+02, 9.84161735e+02, 9.84161735e+02,
9.72472374e+02, 9.72472374e+02, 9.72472374e+02, 9.72472374e+02,
9.55208747e+02, 9.55208747e+02, 9.55208747e+02, 9.55208747e+02,
9.31606965e+02, 9.31606965e+02, 9.31606965e+02, 9.31606965e+02,
9.01593286e+02, 9.01593286e+02, 9.01593286e+02, 9.01593286e+02,
8.65814973e+02, 8.65814973e+02, 8.65814973e+02, 8.65814973e+02,
8.25415615e+02, 8.25415615e+02, 8.25415615e+02, 8.25415615e+02,
7.81647504e+02, 7.81647504e+02, 7.81647504e+02, 7.81647504e+02,
7.35710520e+02, 7.35710520e+02, 7.35710520e+02, 7.35710520e+02,
6.90890172e+02, 6.90890172e+02, 6.90890172e+02, 6.90890172e+02,
6.49620359e+02, 6.49620359e+02, 6.49620359e+02, 6.49620359e+02,
6.11797773e+02, 6.11797773e+02, 6.11797773e+02, 6.11797773e+02,
5.77600780e+02, 5.77600780e+02, 5.77600780e+02, 5.77600780e+02,
5.47410199e+02, 5.47410199e+02, 5.47410199e+02, 5.47410199e+02,
5.21734770e+02, 5.21734770e+02, 5.21734770e+02, 5.21734770e+02,
5.01128594e+02, 5.01128594e+02, 5.01128594e+02, 5.01128594e+02,
4.85819157e+02, 4.85819157e+02, 4.85819157e+02, 4.85819157e+02,
4.75772518e+02, 4.75772518e+02, 4.75772518e+02, 4.75772518e+02,
4.69779973e+02, 4.69779973e+02, 4.69779973e+02, 4.69779973e+02,
4.67080362e+02, 4.67080362e+02, 4.67080362e+02, 4.67080362e+02,
4.65530456e+02, 4.65530456e+02, 4.65530456e+02, 4.65530456e+02,
4.64717921e+02, 4.64717921e+02, 4.64717921e+02, 4.64717921e+02,
4.63776491e+02, 4.63776491e+02, 4.63776491e+02, 4.63776491e+02,
4.61803434e+02, 4.61803434e+02, 4.61803434e+02, 4.61803434e+02,
4.58228685e+02, 4.58228685e+02, 4.58228685e+02, 4.58228685e+02,
4.55647155e+02, 4.55647155e+02, 4.55647155e+02, 4.55647155e+02,
4.54848420e+02, 4.54848420e+02, 4.54848420e+02, 4.54848420e+02,
4.54769138e+02, 4.54769138e+02, 4.54769138e+02, 4.54769138e+02,
4.55961825e+02, 4.55961825e+02, 4.55961825e+02, 4.55961825e+02,
4.58949241e+02, 4.58949241e+02, 4.58949241e+02, 4.58949241e+02,
4.61614848e+02, 4.61614848e+02, 4.61614848e+02, 4.61614848e+02,
4.62795907e+02, 4.62795907e+02, 4.62795907e+02, 4.62795907e+02,
4.67523312e+02, 4.67523312e+02, 4.67523312e+02, 4.67523312e+02,
4.35653571e+02, 4.35653571e+02, 4.35653571e+02, 4.35653571e+02,
1.05168891e+02, 1.05168891e+02, 1.05168891e+02, 1.05168891e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999981, 0.99999981,
0.99999981, 0.99999981, 0.99999935, 0.99999935, 0.99999935,
0.99999935, 0.99999794, 0.99999794, 0.99999794, 0.99999794,
0.99999376, 0.99999376, 0.99999376, 0.99999376, 0.99998199,
0.99998199, 0.99998199, 0.99998199, 0.99995055, 0.99995055,
0.99995055, 0.99995055, 0.99987113, 0.99987113, 0.99987113,
0.99987113, 0.99968182, 0.99968182, 0.99968182, 0.99968182,
0.99925722, 0.99925722, 0.99925722, 0.99925722, 0.99836415,
0.99836415, 0.99836415, 0.99836415, 0.99660874, 0.99660874,
0.99660874, 0.99660874, 0.9933952 , 0.9933952 , 0.9933952 ,
0.9933952 , 0.98793188, 0.98793188, 0.98793188, 0.98793188,
0.97932093, 0.97932093, 0.97932093, 0.97932093, 0.96673715,
0.96673715, 0.96673715, 0.96673715, 0.94964461, 0.94964461,
0.94964461, 0.94964461, 0.92795422, 0.92795422, 0.92795422,
0.92795422, 0.90203767, 0.90203767, 0.90203767, 0.90203767,
0.87258376, 0.87258376, 0.87258376, 0.87258376, 0.84036293,
0.84036293, 0.84036293, 0.84036293, 0.80613056, 0.80613056,
0.80613056, 0.80613056, 0.77188664, 0.77188664, 0.77188664,
0.77188664, 0.73963167, 0.73963167, 0.73963167, 0.73963167,
0.70940128, 0.70940128, 0.70940128, 0.70940128, 0.68139366,
0.68139366, 0.68139366, 0.68139366, 0.65596808, 0.65596808,
0.65596808, 0.65596808, 0.63365536, 0.63365536, 0.63365536,
0.63365536, 0.61502818, 0.61502818, 0.61502818, 0.61502818,
0.60059309, 0.60059309, 0.60059309, 0.60059309, 0.59038095,
0.59038095, 0.59038095, 0.59038095, 0.58416103, 0.58416103,
0.58416103, 0.58416103, 0.58061715, 0.58061715, 0.58061715,
0.58061715, 0.57903944, 0.57903944, 0.57903944, 0.57903944,
0.57787713, 0.57787713, 0.57787713, 0.57787713, 0.57688412,
0.57688412, 0.57688412, 0.57688412, 0.57544855, 0.57544855,
0.57544855, 0.57544855, 0.57263323, 0.57263323, 0.57263323,
0.57263323, 0.56974145, 0.56974145, 0.56974145, 0.56974145,
0.56797788, 0.56797788, 0.56797788, 0.56797788, 0.56697796,
0.56697796, 0.56697796, 0.56697796, 0.56563572, 0.56563572,
0.56563572, 0.56563572, 0.56494658, 0.56494658, 0.56494658,
0.56494658, 0.56645921, 0.56645921, 0.56645921, 0.56645921,
0.58020504, 0.58020504, 0.58020504, 0.58020504, 0.7785362 ,
0.7785362 , 0.7785362 , 0.7785362 , 4.93202993, 4.93202993,
4.93202993, 4.93202993, 5.66253368, 5.66253368, 5.66253368,
5.66253368, 2.38055149, 2.38055149, 2.38055149, 2.38055149,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974494e+01, -1.95974494e+01, -1.95974494e+01, -1.95974494e+01,
-1.95974479e+01, -1.95974479e+01, -1.95974479e+01, -1.95974479e+01,
-1.95974427e+01, -1.95974427e+01, -1.95974427e+01, -1.95974427e+01,
-1.95974258e+01, -1.95974258e+01, -1.95974258e+01, -1.95974258e+01,
-1.95973730e+01, -1.95973730e+01, -1.95973730e+01, -1.95973730e+01,
-1.95972166e+01, -1.95972166e+01, -1.95972166e+01, -1.95972166e+01,
-1.95967760e+01, -1.95967760e+01, -1.95967760e+01, -1.95967760e+01,
-1.95955997e+01, -1.95955997e+01, -1.95955997e+01, -1.95955997e+01,
-1.95926280e+01, -1.95926280e+01, -1.95926280e+01, -1.95926280e+01,
-1.95855437e+01, -1.95855437e+01, -1.95855437e+01, -1.95855437e+01,
-1.95696517e+01, -1.95696517e+01, -1.95696517e+01, -1.95696517e+01,
-1.95362117e+01, -1.95362117e+01, -1.95362117e+01, -1.95362117e+01,
-1.94704222e+01, -1.94704222e+01, -1.94704222e+01, -1.94704222e+01,
-1.93497692e+01, -1.93497692e+01, -1.93497692e+01, -1.93497692e+01,
-1.91439788e+01, -1.91439788e+01, -1.91439788e+01, -1.91439788e+01,
-1.88178378e+01, -1.88178378e+01, -1.88178378e+01, -1.88178378e+01,
-1.83371287e+01, -1.83371287e+01, -1.83371287e+01, -1.83371287e+01,
-1.76760675e+01, -1.76760675e+01, -1.76760675e+01, -1.76760675e+01,
-1.68231445e+01, -1.68231445e+01, -1.68231445e+01, -1.68231445e+01,
-1.57824961e+01, -1.57824961e+01, -1.57824961e+01, -1.57824961e+01,
-1.45698677e+01, -1.45698677e+01, -1.45698677e+01, -1.45698677e+01,
-1.32043830e+01, -1.32043830e+01, -1.32043830e+01, -1.32043830e+01,
-1.17036224e+01, -1.17036224e+01, -1.17036224e+01, -1.17036224e+01,
-1.01657129e+01, -1.01657129e+01, -1.01657129e+01, -1.01657129e+01,
-8.65745604e+00, -8.65745604e+00, -8.65745604e+00, -8.65745604e+00,
-7.19532725e+00, -7.19532725e+00, -7.19532725e+00, -7.19532725e+00,
-5.79578003e+00, -5.79578003e+00, -5.79578003e+00, -5.79578003e+00,
-4.48580583e+00, -4.48580583e+00, -4.48580583e+00, -4.48580583e+00,
-3.30233895e+00, -3.30233895e+00, -3.30233895e+00, -3.30233895e+00,
-2.28999205e+00, -2.28999205e+00, -2.28999205e+00, -2.28999205e+00,
-1.48665190e+00, -1.48665190e+00, -1.48665190e+00, -1.48665190e+00,
-9.16444051e-01, -9.16444051e-01, -9.16444051e-01, -9.16444051e-01,
-5.53286287e-01, -5.53286287e-01, -5.53286287e-01, -5.53286287e-01,
-3.67878530e-01, -3.67878530e-01, -3.67878530e-01, -3.67878530e-01,
-2.65094265e-01, -2.65094265e-01, -2.65094265e-01, -2.65094265e-01,
-2.15784356e-01, -2.15784356e-01, -2.15784356e-01, -2.15784356e-01,
-1.65192236e-01, -1.65192236e-01, -1.65192236e-01, -1.65192236e-01,
-8.52631416e-02, -8.52631416e-02, -8.52631416e-02, -8.52631416e-02,
7.31961690e-02, 7.31961690e-02, 7.31961690e-02, 7.31961690e-02,
2.28177984e-01, 2.28177984e-01, 2.28177984e-01, 2.28177984e-01,
2.97213404e-01, 2.97213404e-01, 2.97213404e-01, 2.97213404e-01,
3.18155586e-01, 3.18155586e-01, 3.18155586e-01, 3.18155586e-01,
2.86936146e-01, 2.86936146e-01, 2.86936146e-01, 2.86936146e-01,
1.60097390e-01, 1.60097390e-01, 1.60097390e-01, 1.60097390e-01,
2.21384777e-03, 2.21384777e-03, 2.21384777e-03, 2.21384777e-03,
-7.99984086e-02, -7.99984086e-02, -7.99984086e-02, -7.99984086e-02,
-1.34246115e-01, -1.34246115e-01, -1.34246115e-01, -1.34246115e-01,
-6.71255258e-02, -6.71255258e-02, -6.71255258e-02, -6.71255258e-02,
-1.58018574e-01, -1.58018574e-01, -1.58018574e-01, -1.58018574e-01,
-8.46790736e+00, -8.46790736e+00, -8.46790736e+00, -8.46790736e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999979e+02, 9.99999979e+02, 9.99999979e+02, 9.99999979e+02,
9.99999922e+02, 9.99999922e+02, 9.99999922e+02, 9.99999922e+02,
9.99999728e+02, 9.99999728e+02, 9.99999728e+02, 9.99999728e+02,
9.99999095e+02, 9.99999095e+02, 9.99999095e+02, 9.99999095e+02,
9.99997120e+02, 9.99997120e+02, 9.99997120e+02, 9.99997120e+02,
9.99991266e+02, 9.99991266e+02, 9.99991266e+02, 9.99991266e+02,
9.99974782e+02, 9.99974782e+02, 9.99974782e+02, 9.99974782e+02,
9.99930769e+02, 9.99930769e+02, 9.99930769e+02, 9.99930769e+02,
9.99819590e+02, 9.99819590e+02, 9.99819590e+02, 9.99819590e+02,
9.99554591e+02, 9.99554591e+02, 9.99554591e+02, 9.99554591e+02,
9.98960349e+02, 9.98960349e+02, 9.98960349e+02, 9.98960349e+02,
9.97710932e+02, 9.97710932e+02, 9.97710932e+02, 9.97710932e+02,
9.95256792e+02, 9.95256792e+02, 9.95256792e+02, 9.95256792e+02,
9.90769668e+02, 9.90769668e+02, 9.90769668e+02, 9.90769668e+02,
9.83156734e+02, 9.83156734e+02, 9.83156734e+02, 9.83156734e+02,
9.71195587e+02, 9.71195587e+02, 9.71195587e+02, 9.71195587e+02,
9.53796069e+02, 9.53796069e+02, 9.53796069e+02, 9.53796069e+02,
9.30310551e+02, 9.30310551e+02, 9.30310551e+02, 9.30310551e+02,
9.00749846e+02, 9.00749846e+02, 9.00749846e+02, 9.00749846e+02,
8.65784928e+02, 8.65784928e+02, 8.65784928e+02, 8.65784928e+02,
8.26522912e+02, 8.26522912e+02, 8.26522912e+02, 8.26522912e+02,
7.84154118e+02, 7.84154118e+02, 7.84154118e+02, 7.84154118e+02,
7.39746922e+02, 7.39746922e+02, 7.39746922e+02, 7.39746922e+02,
6.96170009e+02, 6.96170009e+02, 6.96170009e+02, 6.96170009e+02,
6.55827330e+02, 6.55827330e+02, 6.55827330e+02, 6.55827330e+02,
6.18654000e+02, 6.18654000e+02, 6.18654000e+02, 6.18654000e+02,
5.84783454e+02, 5.84783454e+02, 5.84783454e+02, 5.84783454e+02,
5.54527180e+02, 5.54527180e+02, 5.54527180e+02, 5.54527180e+02,
5.28367773e+02, 5.28367773e+02, 5.28367773e+02, 5.28367773e+02,
5.06818722e+02, 5.06818722e+02, 5.06818722e+02, 5.06818722e+02,
4.90312899e+02, 4.90312899e+02, 4.90312899e+02, 4.90312899e+02,
4.78752254e+02, 4.78752254e+02, 4.78752254e+02, 4.78752254e+02,
4.71776805e+02, 4.71776805e+02, 4.71776805e+02, 4.71776805e+02,
4.67852179e+02, 4.67852179e+02, 4.67852179e+02, 4.67852179e+02,
4.66174199e+02, 4.66174199e+02, 4.66174199e+02, 4.66174199e+02,
4.64987016e+02, 4.64987016e+02, 4.64987016e+02, 4.64987016e+02,
4.64008579e+02, 4.64008579e+02, 4.64008579e+02, 4.64008579e+02,
4.62543362e+02, 4.62543362e+02, 4.62543362e+02, 4.62543362e+02,
4.59550569e+02, 4.59550569e+02, 4.59550569e+02, 4.59550569e+02,
4.56544154e+02, 4.56544154e+02, 4.56544154e+02, 4.56544154e+02,
4.55029340e+02, 4.55029340e+02, 4.55029340e+02, 4.55029340e+02,
4.54863605e+02, 4.54863605e+02, 4.54863605e+02, 4.54863605e+02,
4.55470217e+02, 4.55470217e+02, 4.55470217e+02, 4.55470217e+02,
4.57808682e+02, 4.57808682e+02, 4.57808682e+02, 4.57808682e+02,
4.60652422e+02, 4.60652422e+02, 4.60652422e+02, 4.60652422e+02,
4.62610659e+02, 4.62610659e+02, 4.62610659e+02, 4.62610659e+02,
4.63106902e+02, 4.63106902e+02, 4.63106902e+02, 4.63106902e+02,
4.65810686e+02, 4.65810686e+02, 4.65810686e+02, 4.65810686e+02,
4.33002408e+02, 4.33002408e+02, 4.33002408e+02, 4.33002408e+02,
1.43412267e+02, 1.43412267e+02, 1.43412267e+02, 1.43412267e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999973,
0.99999973, 0.99999973, 0.99999973, 0.99999912, 0.99999912,
0.99999912, 0.99999912, 0.99999728, 0.99999728, 0.99999728,
0.99999728, 0.99999196, 0.99999196, 0.99999196, 0.99999196,
0.99997737, 0.99997737, 0.99997737, 0.99997737, 0.99993941,
0.99993941, 0.99993941, 0.99993941, 0.99984585, 0.99984585,
0.99984585, 0.99984585, 0.99962805, 0.99962805, 0.99962805,
0.99962805, 0.99915055, 0.99915055, 0.99915055, 0.99915055,
0.99816786, 0.99816786, 0.99816786, 0.99816786, 0.99627582,
0.99627582, 0.99627582, 0.99627582, 0.99287886, 0.99287886,
0.99287886, 0.99287886, 0.98720668, 0.98720668, 0.98720668,
0.98720668, 0.97841074, 0.97841074, 0.97841074, 0.97841074,
0.96573881, 0.96573881, 0.96573881, 0.96573881, 0.94873306,
0.94873306, 0.94873306, 0.94873306, 0.92736246, 0.92736246,
0.92736246, 0.92736246, 0.90201925, 0.90201925, 0.90201925,
0.90201925, 0.87337573, 0.87337573, 0.87337573, 0.87337573,
0.84216635, 0.84216635, 0.84216635, 0.84216635, 0.80907948,
0.80907948, 0.80907948, 0.80907948, 0.77584278, 0.77584278,
0.77584278, 0.77584278, 0.74438392, 0.74438392, 0.74438392,
0.74438392, 0.71477986, 0.71477986, 0.71477986, 0.71477986,
0.68717736, 0.68717736, 0.68717736, 0.68717736, 0.66188455,
0.66188455, 0.66188455, 0.66188455, 0.63935361, 0.63935361,
0.63935361, 0.63935361, 0.62015224, 0.62015224, 0.62015224,
0.62015224, 0.60477483, 0.60477483, 0.60477483, 0.60477483,
0.59352547, 0.59352547, 0.59352547, 0.59352547, 0.58607117,
0.58607117, 0.58607117, 0.58607117, 0.58190303, 0.58190303,
0.58190303, 0.58190303, 0.57956123, 0.57956123, 0.57956123,
0.57956123, 0.57839561, 0.57839561, 0.57839561, 0.57839561,
0.57731562, 0.57731562, 0.57731562, 0.57731562, 0.57602663,
0.57602663, 0.57602663, 0.57602663, 0.57376643, 0.57376643,
0.57376643, 0.57376643, 0.57079695, 0.57079695, 0.57079695,
0.57079695, 0.56893066, 0.56893066, 0.56893066, 0.56893066,
0.5678998 , 0.5678998 , 0.5678998 , 0.5678998 , 0.56725258,
0.56725258, 0.56725258, 0.56725258, 0.56680513, 0.56680513,
0.56680513, 0.56680513, 0.56673813, 0.56673813, 0.56673813,
0.56673813, 0.56753107, 0.56753107, 0.56753107, 0.56753107,
0.58083764, 0.58083764, 0.58083764, 0.58083764, 0.78629949,
0.78629949, 0.78629949, 0.78629949, 4.91489404, 4.91489404,
4.91489404, 4.91489404, 5.66513057, 5.66513057, 5.66513057,
5.66513057, 2.7620253 , 2.7620253 , 2.7620253 , 2.7620253 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974491e+01, -1.95974491e+01, -1.95974491e+01, -1.95974491e+01,
-1.95974470e+01, -1.95974470e+01, -1.95974470e+01, -1.95974470e+01,
-1.95974398e+01, -1.95974398e+01, -1.95974398e+01, -1.95974398e+01,
-1.95974170e+01, -1.95974170e+01, -1.95974170e+01, -1.95974170e+01,
-1.95973480e+01, -1.95973480e+01, -1.95973480e+01, -1.95973480e+01,
-1.95971491e+01, -1.95971491e+01, -1.95971491e+01, -1.95971491e+01,
-1.95966033e+01, -1.95966033e+01, -1.95966033e+01, -1.95966033e+01,
-1.95951829e+01, -1.95951829e+01, -1.95951829e+01, -1.95951829e+01,
-1.95916820e+01, -1.95916820e+01, -1.95916820e+01, -1.95916820e+01,
-1.95835315e+01, -1.95835315e+01, -1.95835315e+01, -1.95835315e+01,
-1.95656587e+01, -1.95656587e+01, -1.95656587e+01, -1.95656587e+01,
-1.95288585e+01, -1.95288585e+01, -1.95288585e+01, -1.95288585e+01,
-1.94579343e+01, -1.94579343e+01, -1.94579343e+01, -1.94579343e+01,
-1.93303524e+01, -1.93303524e+01, -1.93303524e+01, -1.93303524e+01,
-1.91165854e+01, -1.91165854e+01, -1.91165854e+01, -1.91165854e+01,
-1.87832063e+01, -1.87832063e+01, -1.87832063e+01, -1.87832063e+01,
-1.82987235e+01, -1.82987235e+01, -1.82987235e+01, -1.82987235e+01,
-1.76404471e+01, -1.76404471e+01, -1.76404471e+01, -1.76404471e+01,
-1.67995009e+01, -1.67995009e+01, -1.67995009e+01, -1.67995009e+01,
-1.57815477e+01, -1.57815477e+01, -1.57815477e+01, -1.57815477e+01,
-1.46026675e+01, -1.46026675e+01, -1.46026675e+01, -1.46026675e+01,
-1.32817990e+01, -1.32817990e+01, -1.32817990e+01, -1.32817990e+01,
-1.18344185e+01, -1.18344185e+01, -1.18344185e+01, -1.18344185e+01,
-1.03460033e+01, -1.03460033e+01, -1.03460033e+01, -1.03460033e+01,
-8.88243558e+00, -8.88243558e+00, -8.88243558e+00, -8.88243558e+00,
-7.45829243e+00, -7.45829243e+00, -7.45829243e+00, -7.45829243e+00,
-6.08759632e+00, -6.08759632e+00, -6.08759632e+00, -6.08759632e+00,
-4.79273953e+00, -4.79273953e+00, -4.79273953e+00, -4.79273953e+00,
-3.60646122e+00, -3.60646122e+00, -3.60646122e+00, -3.60646122e+00,
-2.56866215e+00, -2.56866215e+00, -2.56866215e+00, -2.56866215e+00,
-1.72080838e+00, -1.72080838e+00, -1.72080838e+00, -1.72080838e+00,
-1.08667636e+00, -1.08667636e+00, -1.08667636e+00, -1.08667636e+00,
-6.70713020e-01, -6.70713020e-01, -6.70713020e-01, -6.70713020e-01,
-4.23210123e-01, -4.23210123e-01, -4.23210123e-01, -4.23210123e-01,
-3.05329615e-01, -3.05329615e-01, -3.05329615e-01, -3.05329615e-01,
-2.30979266e-01, -2.30979266e-01, -2.30979266e-01, -2.30979266e-01,
-1.78612761e-01, -1.78612761e-01, -1.78612761e-01, -1.78612761e-01,
-1.14935463e-01, -1.14935463e-01, -1.14935463e-01, -1.14935463e-01,
9.76005905e-03, 9.76005905e-03, 9.76005905e-03, 9.76005905e-03,
1.79021055e-01, 1.79021055e-01, 1.79021055e-01, 1.79021055e-01,
2.79211031e-01, 2.79211031e-01, 2.79211031e-01, 2.79211031e-01,
3.04181047e-01, 3.04181047e-01, 3.04181047e-01, 3.04181047e-01,
2.97229303e-01, 2.97229303e-01, 2.97229303e-01, 2.97229303e-01,
2.16892653e-01, 2.16892653e-01, 2.16892653e-01, 2.16892653e-01,
5.77330288e-02, 5.77330288e-02, 5.77330288e-02, 5.77330288e-02,
-6.18141614e-02, -6.18141614e-02, -6.18141614e-02, -6.18141614e-02,
-1.02834268e-01, -1.02834268e-01, -1.02834268e-01, -1.02834268e-01,
-1.20319256e-01, -1.20319256e-01, -1.20319256e-01, -1.20319256e-01,
-4.57384322e-02, -4.57384322e-02, -4.57384322e-02, -4.57384322e-02,
5.57803118e-03, 5.57803118e-03, 5.57803118e-03, 5.57803118e-03,
-7.12586604e+00, -7.12586604e+00, -7.12586604e+00, -7.12586604e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999968e+02, 9.99999968e+02, 9.99999968e+02, 9.99999968e+02,
9.99999887e+02, 9.99999887e+02, 9.99999887e+02, 9.99999887e+02,
9.99999619e+02, 9.99999619e+02, 9.99999619e+02, 9.99999619e+02,
9.99998767e+02, 9.99998767e+02, 9.99998767e+02, 9.99998767e+02,
9.99996185e+02, 9.99996185e+02, 9.99996185e+02, 9.99996185e+02,
9.99988740e+02, 9.99988740e+02, 9.99988740e+02, 9.99988740e+02,
9.99968321e+02, 9.99968321e+02, 9.99968321e+02, 9.99968321e+02,
9.99915177e+02, 9.99915177e+02, 9.99915177e+02, 9.99915177e+02,
9.99784202e+02, 9.99784202e+02, 9.99784202e+02, 9.99784202e+02,
9.99479333e+02, 9.99479333e+02, 9.99479333e+02, 9.99479333e+02,
9.98811087e+02, 9.98811087e+02, 9.98811087e+02, 9.98811087e+02,
9.97436379e+02, 9.97436379e+02, 9.97436379e+02, 9.97436379e+02,
9.94791552e+02, 9.94791552e+02, 9.94791552e+02, 9.94791552e+02,
9.90049195e+02, 9.90049195e+02, 9.90049195e+02, 9.90049195e+02,
9.82147193e+02, 9.82147193e+02, 9.82147193e+02, 9.82147193e+02,
9.69932912e+02, 9.69932912e+02, 9.69932912e+02, 9.69932912e+02,
9.52417576e+02, 9.52417576e+02, 9.52417576e+02, 9.52417576e+02,
9.29058942e+02, 9.29058942e+02, 9.29058942e+02, 9.29058942e+02,
8.99940834e+02, 8.99940834e+02, 8.99940834e+02, 8.99940834e+02,
8.65750838e+02, 8.65750838e+02, 8.65750838e+02, 8.65750838e+02,
8.27559253e+02, 8.27559253e+02, 8.27559253e+02, 8.27559253e+02,
7.86496911e+02, 7.86496911e+02, 7.86496911e+02, 7.86496911e+02,
7.43523058e+02, 7.43523058e+02, 7.43523058e+02, 7.43523058e+02,
7.01150546e+02, 7.01150546e+02, 7.01150546e+02, 7.01150546e+02,
6.61711091e+02, 6.61711091e+02, 6.61711091e+02, 6.61711091e+02,
6.25204662e+02, 6.25204662e+02, 6.25204662e+02, 6.25204662e+02,
5.91711941e+02, 5.91711941e+02, 5.91711941e+02, 5.91711941e+02,
5.61500060e+02, 5.61500060e+02, 5.61500060e+02, 5.61500060e+02,
5.34985301e+02, 5.34985301e+02, 5.34985301e+02, 5.34985301e+02,
5.12690393e+02, 5.12690393e+02, 5.12690393e+02, 5.12690393e+02,
4.95042975e+02, 4.95042975e+02, 4.95042975e+02, 4.95042975e+02,
4.82262615e+02, 4.82262615e+02, 4.82262615e+02, 4.82262615e+02,
4.73870538e+02, 4.73870538e+02, 4.73870538e+02, 4.73870538e+02,
4.69227241e+02, 4.69227241e+02, 4.69227241e+02, 4.69227241e+02,
4.66662152e+02, 4.66662152e+02, 4.66662152e+02, 4.66662152e+02,
4.65449266e+02, 4.65449266e+02, 4.65449266e+02, 4.65449266e+02,
4.64355113e+02, 4.64355113e+02, 4.64355113e+02, 4.64355113e+02,
4.63043852e+02, 4.63043852e+02, 4.63043852e+02, 4.63043852e+02,
4.60652662e+02, 4.60652662e+02, 4.60652662e+02, 4.60652662e+02,
4.57488839e+02, 4.57488839e+02, 4.57488839e+02, 4.57488839e+02,
4.55633138e+02, 4.55633138e+02, 4.55633138e+02, 4.55633138e+02,
4.54937737e+02, 4.54937737e+02, 4.54937737e+02, 4.54937737e+02,
4.55166468e+02, 4.55166468e+02, 4.55166468e+02, 4.55166468e+02,
4.56778687e+02, 4.56778687e+02, 4.56778687e+02, 4.56778687e+02,
4.59834516e+02, 4.59834516e+02, 4.59834516e+02, 4.59834516e+02,
4.61863307e+02, 4.61863307e+02, 4.61863307e+02, 4.61863307e+02,
4.63045537e+02, 4.63045537e+02, 4.63045537e+02, 4.63045537e+02,
4.62941773e+02, 4.62941773e+02, 4.62941773e+02, 4.62941773e+02,
4.63527536e+02, 4.63527536e+02, 4.63527536e+02, 4.63527536e+02,
4.33471825e+02, 4.33471825e+02, 4.33471825e+02, 4.33471825e+02,
1.78922418e+02, 1.78922418e+02, 1.78922418e+02, 1.78922418e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999989, 0.99999989, 0.99999989, 0.99999989,
0.99999963, 0.99999963, 0.99999963, 0.99999963, 0.99999882,
0.99999882, 0.99999882, 0.99999882, 0.99999644, 0.99999644,
0.99999644, 0.99999644, 0.99998977, 0.99998977, 0.99998977,
0.99998977, 0.99997191, 0.99997191, 0.99997191, 0.99997191,
0.99992654, 0.99992654, 0.99992654, 0.99992654, 0.9998173 ,
0.9998173 , 0.9998173 , 0.9998173 , 0.99956868, 0.99956868,
0.99956868, 0.99956868, 0.99903526, 0.99903526, 0.99903526,
0.99903526, 0.99795997, 0.99795997, 0.99795997, 0.99795997,
0.99592998, 0.99592998, 0.99592998, 0.99592998, 0.99235208,
0.99235208, 0.99235208, 0.99235208, 0.98647893, 0.98647893,
0.98647893, 0.98647893, 0.97751071, 0.97751071, 0.97751071,
0.97751071, 0.96476399, 0.96476399, 0.96476399, 0.96476399,
0.94785186, 0.94785186, 0.94785186, 0.94785186, 0.92679381,
0.92679381, 0.92679381, 0.92679381, 0.90199754, 0.90199754,
0.90199754, 0.90199754, 0.87411778, 0.87411778, 0.87411778,
0.87411778, 0.84385313, 0.84385313, 0.84385313, 0.84385313,
0.81183641, 0.81183641, 0.81183641, 0.81183641, 0.77956921,
0.77956921, 0.77956921, 0.77956921, 0.74888406, 0.74888406,
0.74888406, 0.74888406, 0.7199006 , 0.7199006 , 0.7199006 ,
0.7199006 , 0.69273028, 0.69273028, 0.69273028, 0.69273028,
0.66762803, 0.66762803, 0.66762803, 0.66762803, 0.64499394,
0.64499394, 0.64499394, 0.64499394, 0.6253336 , 0.6253336 ,
0.6253336 , 0.6253336 , 0.60918725, 0.60918725, 0.60918725,
0.60918725, 0.59688024, 0.59688024, 0.59688024, 0.59688024,
0.58844927, 0.58844927, 0.58844927, 0.58844927, 0.58320842,
0.58320842, 0.58320842, 0.58320842, 0.58046856, 0.58046856,
0.58046856, 0.58046856, 0.57881722, 0.57881722, 0.57881722,
0.57881722, 0.5777376 , 0.5777376 , 0.5777376 , 0.5777376 ,
0.57657412, 0.57657412, 0.57657412, 0.57657412, 0.5747604 ,
0.5747604 , 0.5747604 , 0.5747604 , 0.57183611, 0.57183611,
0.57183611, 0.57183611, 0.569634 , 0.569634 , 0.569634 ,
0.569634 , 0.56863337, 0.56863337, 0.56863337, 0.56863337,
0.56807231, 0.56807231, 0.56807231, 0.56807231, 0.567998 ,
0.567998 , 0.567998 , 0.567998 , 0.56850304, 0.56850304,
0.56850304, 0.56850304, 0.5680767 , 0.5680767 , 0.5680767 ,
0.5680767 , 0.56811621, 0.56811621, 0.56811621, 0.56811621,
0.58104156, 0.58104156, 0.58104156, 0.58104156, 0.79189278,
0.79189278, 0.79189278, 0.79189278, 4.89390634, 4.89390634,
4.89390634, 4.89390634, 5.69720114, 5.69720114, 5.69720114,
5.69720114, 3.1202153 , 3.1202153 , 3.1202153 , 3.1202153 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974497e+01, -1.95974497e+01, -1.95974497e+01, -1.95974497e+01,
-1.95974488e+01, -1.95974488e+01, -1.95974488e+01, -1.95974488e+01,
-1.95974457e+01, -1.95974457e+01, -1.95974457e+01, -1.95974457e+01,
-1.95974360e+01, -1.95974360e+01, -1.95974360e+01, -1.95974360e+01,
-1.95974058e+01, -1.95974058e+01, -1.95974058e+01, -1.95974058e+01,
-1.95973169e+01, -1.95973169e+01, -1.95973169e+01, -1.95973169e+01,
-1.95970671e+01, -1.95970671e+01, -1.95970671e+01, -1.95970671e+01,
-1.95963988e+01, -1.95963988e+01, -1.95963988e+01, -1.95963988e+01,
-1.95947013e+01, -1.95947013e+01, -1.95947013e+01, -1.95947013e+01,
-1.95906138e+01, -1.95906138e+01, -1.95906138e+01, -1.95906138e+01,
-1.95813093e+01, -1.95813093e+01, -1.95813093e+01, -1.95813093e+01,
-1.95613423e+01, -1.95613423e+01, -1.95613423e+01, -1.95613423e+01,
-1.95210699e+01, -1.95210699e+01, -1.95210699e+01, -1.95210699e+01,
-1.94449585e+01, -1.94449585e+01, -1.94449585e+01, -1.94449585e+01,
-1.93105344e+01, -1.93105344e+01, -1.93105344e+01, -1.93105344e+01,
-1.90890791e+01, -1.90890791e+01, -1.90890791e+01, -1.90890791e+01,
-1.87489345e+01, -1.87489345e+01, -1.87489345e+01, -1.87489345e+01,
-1.82611905e+01, -1.82611905e+01, -1.82611905e+01, -1.82611905e+01,
-1.76059869e+01, -1.76059869e+01, -1.76059869e+01, -1.76059869e+01,
-1.67767728e+01, -1.67767728e+01, -1.67767728e+01, -1.67767728e+01,
-1.57804835e+01, -1.57804835e+01, -1.57804835e+01, -1.57804835e+01,
-1.46333874e+01, -1.46333874e+01, -1.46333874e+01, -1.46333874e+01,
-1.33540076e+01, -1.33540076e+01, -1.33540076e+01, -1.33540076e+01,
-1.19567666e+01, -1.19567666e+01, -1.19567666e+01, -1.19567666e+01,
-1.05150525e+01, -1.05150525e+01, -1.05150525e+01, -1.05150525e+01,
-9.09417104e+00, -9.09417104e+00, -9.09417104e+00, -9.09417104e+00,
-7.70728617e+00, -7.70728617e+00, -7.70728617e+00, -7.70728617e+00,
-6.36602576e+00, -6.36602576e+00, -6.36602576e+00, -6.36602576e+00,
-5.08930766e+00, -5.08930766e+00, -5.08930766e+00, -5.08930766e+00,
-3.90506198e+00, -3.90506198e+00, -3.90506198e+00, -3.90506198e+00,
-2.85010424e+00, -2.85010424e+00, -2.85010424e+00, -2.85010424e+00,
-1.96328393e+00, -1.96328393e+00, -1.96328393e+00, -1.96328393e+00,
-1.27734670e+00, -1.27734670e+00, -1.27734670e+00, -1.27734670e+00,
-7.96811737e-01, -7.96811737e-01, -7.96811737e-01, -7.96811737e-01,
-5.06534830e-01, -5.06534830e-01, -5.06534830e-01, -5.06534830e-01,
-3.41035658e-01, -3.41035658e-01, -3.41035658e-01, -3.41035658e-01,
-2.60177787e-01, -2.60177787e-01, -2.60177787e-01, -2.60177787e-01,
-1.96085942e-01, -1.96085942e-01, -1.96085942e-01, -1.96085942e-01,
-1.34052428e-01, -1.34052428e-01, -1.34052428e-01, -1.34052428e-01,
-3.82449631e-02, -3.82449631e-02, -3.82449631e-02, -3.82449631e-02,
1.21841959e-01, 1.21841959e-01, 1.21841959e-01, 1.21841959e-01,
2.44077637e-01, 2.44077637e-01, 2.44077637e-01, 2.44077637e-01,
2.97824945e-01, 2.97824945e-01, 2.97824945e-01, 2.97824945e-01,
2.98149986e-01, 2.98149986e-01, 2.98149986e-01, 2.98149986e-01,
2.51414537e-01, 2.51414537e-01, 2.51414537e-01, 2.51414537e-01,
1.13404337e-01, 1.13404337e-01, 1.13404337e-01, 1.13404337e-01,
-1.88380192e-02, -1.88380192e-02, -1.88380192e-02, -1.88380192e-02,
-9.54487222e-02, -9.54487222e-02, -9.54487222e-02, -9.54487222e-02,
-1.06443174e-01, -1.06443174e-01, -1.06443174e-01, -1.06443174e-01,
-9.56457136e-02, -9.56457136e-02, -9.56457136e-02, -9.56457136e-02,
-1.47955638e-02, -1.47955638e-02, -1.47955638e-02, -1.47955638e-02,
7.16811944e-02, 7.16811944e-02, 7.16811944e-02, 7.16811944e-02,
-5.99756818e+00, -5.99756818e+00, -5.99756818e+00, -5.99756818e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999987e+02, 9.99999987e+02, 9.99999987e+02, 9.99999987e+02,
9.99999954e+02, 9.99999954e+02, 9.99999954e+02, 9.99999954e+02,
9.99999841e+02, 9.99999841e+02, 9.99999841e+02, 9.99999841e+02,
9.99999475e+02, 9.99999475e+02, 9.99999475e+02, 9.99999475e+02,
9.99998347e+02, 9.99998347e+02, 9.99998347e+02, 9.99998347e+02,
9.99995020e+02, 9.99995020e+02, 9.99995020e+02, 9.99995020e+02,
9.99985672e+02, 9.99985672e+02, 9.99985672e+02, 9.99985672e+02,
9.99960670e+02, 9.99960670e+02, 9.99960670e+02, 9.99960670e+02,
9.99897156e+02, 9.99897156e+02, 9.99897156e+02, 9.99897156e+02,
9.99744241e+02, 9.99744241e+02, 9.99744241e+02, 9.99744241e+02,
9.99396229e+02, 9.99396229e+02, 9.99396229e+02, 9.99396229e+02,
9.98649758e+02, 9.98649758e+02, 9.98649758e+02, 9.98649758e+02,
9.97145637e+02, 9.97145637e+02, 9.97145637e+02, 9.97145637e+02,
9.94308330e+02, 9.94308330e+02, 9.94308330e+02, 9.94308330e+02,
9.89314303e+02, 9.89314303e+02, 9.89314303e+02, 9.89314303e+02,
9.81134393e+02, 9.81134393e+02, 9.81134393e+02, 9.81134393e+02,
9.68684747e+02, 9.68684747e+02, 9.68684747e+02, 9.68684747e+02,
9.51072032e+02, 9.51072032e+02, 9.51072032e+02, 9.51072032e+02,
9.27849434e+02, 9.27849434e+02, 9.27849434e+02, 9.27849434e+02,
8.99163679e+02, 8.99163679e+02, 8.99163679e+02, 8.99163679e+02,
8.65713041e+02, 8.65713041e+02, 8.65713041e+02, 8.65713041e+02,
8.28530977e+02, 8.28530977e+02, 8.28530977e+02, 8.28530977e+02,
7.88687888e+02, 7.88687888e+02, 7.88687888e+02, 7.88687888e+02,
7.47065213e+02, 7.47065213e+02, 7.47065213e+02, 7.47065213e+02,
7.05848815e+02, 7.05848815e+02, 7.05848815e+02, 7.05848815e+02,
6.67297293e+02, 6.67297293e+02, 6.67297293e+02, 6.67297293e+02,
6.31460182e+02, 6.31460182e+02, 6.31460182e+02, 6.31460182e+02,
5.98389306e+02, 5.98389306e+02, 5.98389306e+02, 5.98389306e+02,
5.68299134e+02, 5.68299134e+02, 5.68299134e+02, 5.68299134e+02,
5.41562282e+02, 5.41562282e+02, 5.41562282e+02, 5.41562282e+02,
5.18651711e+02, 5.18651711e+02, 5.18651711e+02, 5.18651711e+02,
5.00058715e+02, 5.00058715e+02, 5.00058715e+02, 5.00058715e+02,
4.86029006e+02, 4.86029006e+02, 4.86029006e+02, 4.86029006e+02,
4.76503061e+02, 4.76503061e+02, 4.76503061e+02, 4.76503061e+02,
4.70635195e+02, 4.70635195e+02, 4.70635195e+02, 4.70635195e+02,
4.67609427e+02, 4.67609427e+02, 4.67609427e+02, 4.67609427e+02,
4.65824201e+02, 4.65824201e+02, 4.65824201e+02, 4.65824201e+02,
4.64708600e+02, 4.64708600e+02, 4.64708600e+02, 4.64708600e+02,
4.63520829e+02, 4.63520829e+02, 4.63520829e+02, 4.63520829e+02,
4.61620235e+02, 4.61620235e+02, 4.61620235e+02, 4.61620235e+02,
4.58485045e+02, 4.58485045e+02, 4.58485045e+02, 4.58485045e+02,
4.56183830e+02, 4.56183830e+02, 4.56183830e+02, 4.56183830e+02,
4.55297909e+02, 4.55297909e+02, 4.55297909e+02, 4.55297909e+02,
4.55128431e+02, 4.55128431e+02, 4.55128431e+02, 4.55128431e+02,
4.55999279e+02, 4.55999279e+02, 4.55999279e+02, 4.55999279e+02,
4.58687543e+02, 4.58687543e+02, 4.58687543e+02, 4.58687543e+02,
4.61354361e+02, 4.61354361e+02, 4.61354361e+02, 4.61354361e+02,
4.62516612e+02, 4.62516612e+02, 4.62516612e+02, 4.62516612e+02,
4.63019726e+02, 4.63019726e+02, 4.63019726e+02, 4.63019726e+02,
4.62614600e+02, 4.62614600e+02, 4.62614600e+02, 4.62614600e+02,
4.60825538e+02, 4.60825538e+02, 4.60825538e+02, 4.60825538e+02,
4.37294799e+02, 4.37294799e+02, 4.37294799e+02, 4.37294799e+02,
2.11305840e+02, 2.11305840e+02, 2.11305840e+02, 2.11305840e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999984, 0.99999984, 0.99999984,
0.99999984, 0.99999949, 0.99999949, 0.99999949, 0.99999949,
0.99999844, 0.99999844, 0.99999844, 0.99999844, 0.99999542,
0.99999542, 0.99999542, 0.99999542, 0.99998713, 0.99998713,
0.99998713, 0.99998713, 0.9999655 , 0.9999655 , 0.9999655 ,
0.9999655 , 0.99991178, 0.99991178, 0.99991178, 0.99991178,
0.99978529, 0.99978529, 0.99978529, 0.99978529, 0.99950349,
0.99950349, 0.99950349, 0.99950349, 0.99891123, 0.99891123,
0.99891123, 0.99891123, 0.99774064, 0.99774064, 0.99774064,
0.99774064, 0.99557175, 0.99557175, 0.99557175, 0.99557175,
0.99181571, 0.99181571, 0.99181571, 0.99181571, 0.98574947,
0.98574947, 0.98574947, 0.98574947, 0.97662108, 0.97662108,
0.97662108, 0.97662108, 0.96381185, 0.96381185, 0.96381185,
0.96381185, 0.94699927, 0.94699927, 0.94699927, 0.94699927,
0.92624661, 0.92624661, 0.92624661, 0.92624661, 0.9019728 ,
0.9019728 , 0.9019728 , 0.9019728 , 0.87481407, 0.87481407,
0.87481407, 0.87481407, 0.84543522, 0.84543522, 0.84543522,
0.84543522, 0.81442283, 0.81442283, 0.81442283, 0.81442283,
0.78307637, 0.78307637, 0.78307637, 0.78307637, 0.75314632,
0.75314632, 0.75314632, 0.75314632, 0.72477941, 0.72477941,
0.72477941, 0.72477941, 0.69805716, 0.69805716, 0.69805716,
0.69805716, 0.67319587, 0.67319587, 0.67319587, 0.67319587,
0.65053818, 0.65053818, 0.65053818, 0.65053818, 0.63054983,
0.63054983, 0.63054983, 0.63054983, 0.61373695, 0.61373695,
0.61373695, 0.61373695, 0.60053603, 0.60053603, 0.60053603,
0.60053603, 0.59102357, 0.59102357, 0.59102357, 0.59102357,
0.58494867, 0.58494867, 0.58494867, 0.58494867, 0.58135283,
0.58135283, 0.58135283, 0.58135283, 0.5794891 , 0.5794891 ,
0.5794891 , 0.5794891 , 0.57815267, 0.57815267, 0.57815267,
0.57815267, 0.57699224, 0.57699224, 0.57699224, 0.57699224,
0.57552182, 0.57552182, 0.57552182, 0.57552182, 0.57298965,
0.57298965, 0.57298965, 0.57298965, 0.57043829, 0.57043829,
0.57043829, 0.57043829, 0.56906326, 0.56906326, 0.56906326,
0.56906326, 0.5686265 , 0.5686265 , 0.5686265 , 0.5686265 ,
0.56854901, 0.56854901, 0.56854901, 0.56854901, 0.56940057,
0.56940057, 0.56940057, 0.56940057, 0.57005639, 0.57005639,
0.57005639, 0.57005639, 0.5688696 , 0.5688696 , 0.5688696 ,
0.5688696 , 0.56831975, 0.56831975, 0.56831975, 0.56831975,
0.58103903, 0.58103903, 0.58103903, 0.58103903, 0.79374436,
0.79374436, 0.79374436, 0.79374436, 4.87720755, 4.87720755,
4.87720755, 4.87720755, 5.74403588, 5.74403588, 5.74403588,
5.74403588, 3.46330428, 3.46330428, 3.46330428, 3.46330428,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974495e+01, -1.95974495e+01, -1.95974495e+01, -1.95974495e+01,
-1.95974482e+01, -1.95974482e+01, -1.95974482e+01, -1.95974482e+01,
-1.95974441e+01, -1.95974441e+01, -1.95974441e+01, -1.95974441e+01,
-1.95974310e+01, -1.95974310e+01, -1.95974310e+01, -1.95974310e+01,
-1.95973916e+01, -1.95973916e+01, -1.95973916e+01, -1.95973916e+01,
-1.95972786e+01, -1.95972786e+01, -1.95972786e+01, -1.95972786e+01,
-1.95969686e+01, -1.95969686e+01, -1.95969686e+01, -1.95969686e+01,
-1.95961590e+01, -1.95961590e+01, -1.95961590e+01, -1.95961590e+01,
-1.95941491e+01, -1.95941491e+01, -1.95941491e+01, -1.95941491e+01,
-1.95894158e+01, -1.95894158e+01, -1.95894158e+01, -1.95894158e+01,
-1.95788696e+01, -1.95788696e+01, -1.95788696e+01, -1.95788696e+01,
-1.95566985e+01, -1.95566985e+01, -1.95566985e+01, -1.95566985e+01,
-1.95128512e+01, -1.95128512e+01, -1.95128512e+01, -1.95128512e+01,
-1.94315140e+01, -1.94315140e+01, -1.94315140e+01, -1.94315140e+01,
-1.92903467e+01, -1.92903467e+01, -1.92903467e+01, -1.92903467e+01,
-1.90614912e+01, -1.90614912e+01, -1.90614912e+01, -1.90614912e+01,
-1.87150326e+01, -1.87150326e+01, -1.87150326e+01, -1.87150326e+01,
-1.82245001e+01, -1.82245001e+01, -1.82245001e+01, -1.82245001e+01,
-1.75726207e+01, -1.75726207e+01, -1.75726207e+01, -1.75726207e+01,
-1.67548950e+01, -1.67548950e+01, -1.67548950e+01, -1.67548950e+01,
-1.57793118e+01, -1.57793118e+01, -1.57793118e+01, -1.57793118e+01,
-1.46622014e+01, -1.46622014e+01, -1.46622014e+01, -1.46622014e+01,
-1.34216191e+01, -1.34216191e+01, -1.34216191e+01, -1.34216191e+01,
-1.20712287e+01, -1.20712287e+01, -1.20712287e+01, -1.20712287e+01,
-1.06739044e+01, -1.06739044e+01, -1.06739044e+01, -1.06739044e+01,
-9.29379307e+00, -9.29379307e+00, -9.29379307e+00, -9.29379307e+00,
-7.94296336e+00, -7.94296336e+00, -7.94296336e+00, -7.94296336e+00,
-6.63150668e+00, -6.63150668e+00, -6.63150668e+00, -6.63150668e+00,
-5.37490939e+00, -5.37490939e+00, -5.37490939e+00, -5.37490939e+00,
-4.19730994e+00, -4.19730994e+00, -4.19730994e+00, -4.19730994e+00,
-3.13108259e+00, -3.13108259e+00, -3.13108259e+00, -3.13108259e+00,
-2.21417361e+00, -2.21417361e+00, -2.21417361e+00, -2.21417361e+00,
-1.47930262e+00, -1.47930262e+00, -1.47930262e+00, -1.47930262e+00,
-9.45385444e-01, -9.45385444e-01, -9.45385444e-01, -9.45385444e-01,
-5.95656521e-01, -5.95656521e-01, -5.95656521e-01, -5.95656521e-01,
-3.99403090e-01, -3.99403090e-01, -3.99403090e-01, -3.99403090e-01,
-2.85622461e-01, -2.85622461e-01, -2.85622461e-01, -2.85622461e-01,
-2.19284573e-01, -2.19284573e-01, -2.19284573e-01, -2.19284573e-01,
-1.55493166e-01, -1.55493166e-01, -1.55493166e-01, -1.55493166e-01,
-7.35015435e-02, -7.35015435e-02, -7.35015435e-02, -7.35015435e-02,
6.72846414e-02, 6.72846414e-02, 6.72846414e-02, 6.72846414e-02,
2.05392028e-01, 2.05392028e-01, 2.05392028e-01, 2.05392028e-01,
2.75414455e-01, 2.75414455e-01, 2.75414455e-01, 2.75414455e-01,
2.96233980e-01, 2.96233980e-01, 2.96233980e-01, 2.96233980e-01,
2.74443594e-01, 2.74443594e-01, 2.74443594e-01, 2.74443594e-01,
1.70168341e-01, 1.70168341e-01, 1.70168341e-01, 1.70168341e-01,
1.80150915e-02, 1.80150915e-02, 1.80150915e-02, 1.80150915e-02,
-6.51449274e-02, -6.51449274e-02, -6.51449274e-02, -6.51449274e-02,
-1.04137959e-01, -1.04137959e-01, -1.04137959e-01, -1.04137959e-01,
-9.96987947e-02, -9.96987947e-02, -9.96987947e-02, -9.96987947e-02,
-6.02066209e-02, -6.02066209e-02, -6.02066209e-02, -6.02066209e-02,
1.77838561e-02, 1.77838561e-02, 1.77838561e-02, 1.77838561e-02,
6.95679407e-02, 6.95679407e-02, 6.95679407e-02, 6.95679407e-02,
-5.01910078e+00, -5.01910078e+00, -5.01910078e+00, -5.01910078e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999995e+02, 9.99999995e+02, 9.99999995e+02, 9.99999995e+02,
9.99999981e+02, 9.99999981e+02, 9.99999981e+02, 9.99999981e+02,
9.99999934e+02, 9.99999934e+02, 9.99999934e+02, 9.99999934e+02,
9.99999778e+02, 9.99999778e+02, 9.99999778e+02, 9.99999778e+02,
9.99999289e+02, 9.99999289e+02, 9.99999289e+02, 9.99999289e+02,
9.99997817e+02, 9.99997817e+02, 9.99997817e+02, 9.99997817e+02,
9.99993586e+02, 9.99993586e+02, 9.99993586e+02, 9.99993586e+02,
9.99981987e+02, 9.99981987e+02, 9.99981987e+02, 9.99981987e+02,
9.99951696e+02, 9.99951696e+02, 9.99951696e+02, 9.99951696e+02,
9.99876497e+02, 9.99876497e+02, 9.99876497e+02, 9.99876497e+02,
9.99699428e+02, 9.99699428e+02, 9.99699428e+02, 9.99699428e+02,
9.99304995e+02, 9.99304995e+02, 9.99304995e+02, 9.99304995e+02,
9.98476220e+02, 9.98476220e+02, 9.98476220e+02, 9.98476220e+02,
9.96838923e+02, 9.96838923e+02, 9.96838923e+02, 9.96838923e+02,
9.93807871e+02, 9.93807871e+02, 9.93807871e+02, 9.93807871e+02,
9.88566189e+02, 9.88566189e+02, 9.88566189e+02, 9.88566189e+02,
9.80119496e+02, 9.80119496e+02, 9.80119496e+02, 9.80119496e+02,
9.67451408e+02, 9.67451408e+02, 9.67451408e+02, 9.67451408e+02,
9.49758258e+02, 9.49758258e+02, 9.49758258e+02, 9.49758258e+02,
9.26679567e+02, 9.26679567e+02, 9.26679567e+02, 9.26679567e+02,
8.98416091e+02, 8.98416091e+02, 8.98416091e+02, 8.98416091e+02,
8.65671807e+02, 8.65671807e+02, 8.65671807e+02, 8.65671807e+02,
8.29443378e+02, 8.29443378e+02, 8.29443378e+02, 8.29443378e+02,
7.90744448e+02, 7.90744448e+02, 7.90744448e+02, 7.90744448e+02,
7.50392349e+02, 7.50392349e+02, 7.50392349e+02, 7.50392349e+02,
7.10283801e+02, 7.10283801e+02, 7.10283801e+02, 7.10283801e+02,
6.72599183e+02, 6.72599183e+02, 6.72599183e+02, 6.72599183e+02,
6.37437464e+02, 6.37437464e+02, 6.37437464e+02, 6.37437464e+02,
6.04816164e+02, 6.04816164e+02, 6.04816164e+02, 6.04816164e+02,
5.74916672e+02, 5.74916672e+02, 5.74916672e+02, 5.74916672e+02,
5.48055621e+02, 5.48055621e+02, 5.48055621e+02, 5.48055621e+02,
5.24676970e+02, 5.24676970e+02, 5.24676970e+02, 5.24676970e+02,
5.05250741e+02, 5.05250741e+02, 5.05250741e+02, 5.05250741e+02,
4.90155215e+02, 4.90155215e+02, 4.90155215e+02, 4.90155215e+02,
4.79371457e+02, 4.79371457e+02, 4.79371457e+02, 4.79371457e+02,
4.72542024e+02, 4.72542024e+02, 4.72542024e+02, 4.72542024e+02,
4.68541201e+02, 4.68541201e+02, 4.68541201e+02, 4.68541201e+02,
4.66505642e+02, 4.66505642e+02, 4.66505642e+02, 4.66505642e+02,
4.65076084e+02, 4.65076084e+02, 4.65076084e+02, 4.65076084e+02,
4.63869864e+02, 4.63869864e+02, 4.63869864e+02, 4.63869864e+02,
4.62337447e+02, 4.62337447e+02, 4.62337447e+02, 4.62337447e+02,
4.59631278e+02, 4.59631278e+02, 4.59631278e+02, 4.59631278e+02,
4.56916646e+02, 4.56916646e+02, 4.56916646e+02, 4.56916646e+02,
4.55543102e+02, 4.55543102e+02, 4.55543102e+02, 4.55543102e+02,
4.55288433e+02, 4.55288433e+02, 4.55288433e+02, 4.55288433e+02,
4.55661668e+02, 4.55661668e+02, 4.55661668e+02, 4.55661668e+02,
4.57571932e+02, 4.57571932e+02, 4.57571932e+02, 4.57571932e+02,
4.60440601e+02, 4.60440601e+02, 4.60440601e+02, 4.60440601e+02,
4.62258112e+02, 4.62258112e+02, 4.62258112e+02, 4.62258112e+02,
4.62734330e+02, 4.62734330e+02, 4.62734330e+02, 4.62734330e+02,
4.62796077e+02, 4.62796077e+02, 4.62796077e+02, 4.62796077e+02,
4.61928393e+02, 4.61928393e+02, 4.61928393e+02, 4.61928393e+02,
4.58737919e+02, 4.58737919e+02, 4.58737919e+02, 4.58737919e+02,
4.42781939e+02, 4.42781939e+02, 4.42781939e+02, 4.42781939e+02,
2.41372986e+02, 2.41372986e+02, 2.41372986e+02, 2.41372986e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999993,
0.99999993, 0.99999993, 0.99999993, 0.99999978, 0.99999978,
0.99999978, 0.99999978, 0.99999932, 0.99999932, 0.99999932,
0.99999932, 0.99999797, 0.99999797, 0.99999797, 0.99999797,
0.99999417, 0.99999417, 0.99999417, 0.99999417, 0.999984 ,
0.999984 , 0.999984 , 0.999984 , 0.99995804, 0.99995804,
0.99995804, 0.99995804, 0.99989499, 0.99989499, 0.99989499,
0.99989499, 0.99974962, 0.99974962, 0.99974962, 0.99974962,
0.99943231, 0.99943231, 0.99943231, 0.99943231, 0.9987784 ,
0.9987784 , 0.9987784 , 0.9987784 , 0.99751004, 0.99751004,
0.99751004, 0.99751004, 0.99520166, 0.99520166, 0.99520166,
0.99520166, 0.99127057, 0.99127057, 0.99127057, 0.99127057,
0.98501906, 0.98501906, 0.98501906, 0.98501906, 0.97574203,
0.97574203, 0.97574203, 0.97574203, 0.96288161, 0.96288161,
0.96288161, 0.96288161, 0.94617367, 0.94617367, 0.94617367,
0.94617367, 0.92571938, 0.92571938, 0.92571938, 0.92571938,
0.90194529, 0.90194529, 0.90194529, 0.90194529, 0.87546863,
0.87546863, 0.87546863, 0.87546863, 0.84692236, 0.84692236,
0.84692236, 0.84692236, 0.81685217, 0.81685217, 0.81685217,
0.81685217, 0.78638667, 0.78638667, 0.78638667, 0.78638667,
0.75718146, 0.75718146, 0.75718146, 0.75718146, 0.72942531,
0.72942531, 0.72942531, 0.72942531, 0.70316587, 0.70316587,
0.70316587, 0.70316587, 0.67858288, 0.67858288, 0.67858288,
0.67858288, 0.65597405, 0.65597405, 0.65597405, 0.65597405,
0.63575206, 0.63575206, 0.63575206, 0.63575206, 0.61840948,
0.61840948, 0.61840948, 0.61840948, 0.60438506, 0.60438506,
0.60438506, 0.60438506, 0.59393624, 0.59393624, 0.59393624,
0.59393624, 0.58684429, 0.58684429, 0.58684429, 0.58684429,
0.58260576, 0.58260576, 0.58260576, 0.58260576, 0.58011986,
0.58011986, 0.58011986, 0.58011986, 0.57869565, 0.57869565,
0.57869565, 0.57869565, 0.57744153, 0.57744153, 0.57744153,
0.57744153, 0.57608399, 0.57608399, 0.57608399, 0.57608399,
0.57399938, 0.57399938, 0.57399938, 0.57399938, 0.57135742,
0.57135742, 0.57135742, 0.57135742, 0.56964605, 0.56964605,
0.56964605, 0.56964605, 0.56892105, 0.56892105, 0.56892105,
0.56892105, 0.56882419, 0.56882419, 0.56882419, 0.56882419,
0.56950857, 0.56950857, 0.56950857, 0.56950857, 0.57114483,
0.57114483, 0.57114483, 0.57114483, 0.57107418, 0.57107418,
0.57107418, 0.57107418, 0.56920045, 0.56920045, 0.56920045,
0.56920045, 0.56832702, 0.56832702, 0.56832702, 0.56832702,
0.58078103, 0.58078103, 0.58078103, 0.58078103, 0.79262627,
0.79262627, 0.79262627, 0.79262627, 4.86702127, 4.86702127,
4.86702127, 4.86702127, 5.78223717, 5.78223717, 5.78223717,
5.78223717, 3.81184601, 3.81184601, 3.81184601, 3.81184601,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974493e+01, -1.95974493e+01, -1.95974493e+01, -1.95974493e+01,
-1.95974475e+01, -1.95974475e+01, -1.95974475e+01, -1.95974475e+01,
-1.95974419e+01, -1.95974419e+01, -1.95974419e+01, -1.95974419e+01,
-1.95974246e+01, -1.95974246e+01, -1.95974246e+01, -1.95974246e+01,
-1.95973740e+01, -1.95973740e+01, -1.95973740e+01, -1.95973740e+01,
-1.95972319e+01, -1.95972319e+01, -1.95972319e+01, -1.95972319e+01,
-1.95968514e+01, -1.95968514e+01, -1.95968514e+01, -1.95968514e+01,
-1.95958800e+01, -1.95958800e+01, -1.95958800e+01, -1.95958800e+01,
-1.95935206e+01, -1.95935206e+01, -1.95935206e+01, -1.95935206e+01,
-1.95880809e+01, -1.95880809e+01, -1.95880809e+01, -1.95880809e+01,
-1.95762053e+01, -1.95762053e+01, -1.95762053e+01, -1.95762053e+01,
-1.95517244e+01, -1.95517244e+01, -1.95517244e+01, -1.95517244e+01,
-1.95042089e+01, -1.95042089e+01, -1.95042089e+01, -1.95042089e+01,
-1.94176204e+01, -1.94176204e+01, -1.94176204e+01, -1.94176204e+01,
-1.92698195e+01, -1.92698195e+01, -1.92698195e+01, -1.92698195e+01,
-1.90338503e+01, -1.90338503e+01, -1.90338503e+01, -1.90338503e+01,
-1.86815082e+01, -1.86815082e+01, -1.86815082e+01, -1.86815082e+01,
-1.81886240e+01, -1.81886240e+01, -1.81886240e+01, -1.81886240e+01,
-1.75402879e+01, -1.75402879e+01, -1.75402879e+01, -1.75402879e+01,
-1.67338090e+01, -1.67338090e+01, -1.67338090e+01, -1.67338090e+01,
-1.57780412e+01, -1.57780412e+01, -1.57780412e+01, -1.57780412e+01,
-1.46892782e+01, -1.46892782e+01, -1.46892782e+01, -1.46892782e+01,
-1.34850821e+01, -1.34850821e+01, -1.34850821e+01, -1.34850821e+01,
-1.21784352e+01, -1.21784352e+01, -1.21784352e+01, -1.21784352e+01,
-1.08233333e+01, -1.08233333e+01, -1.08233333e+01, -1.08233333e+01,
-9.48224377e+00, -9.48224377e+00, -9.48224377e+00, -9.48224377e+00,
-8.16634118e+00, -8.16634118e+00, -8.16634118e+00, -8.16634118e+00,
-6.88441851e+00, -6.88441851e+00, -6.88441851e+00, -6.88441851e+00,
-5.64948922e+00, -5.64948922e+00, -5.64948922e+00, -5.64948922e+00,
-4.48186684e+00, -4.48186684e+00, -4.48186684e+00, -4.48186684e+00,
-3.41031651e+00, -3.41031651e+00, -3.41031651e+00, -3.41031651e+00,
-2.46946575e+00, -2.46946575e+00, -2.46946575e+00, -2.46946575e+00,
-1.69431946e+00, -1.69431946e+00, -1.69431946e+00, -1.69431946e+00,
-1.10616540e+00, -1.10616540e+00, -1.10616540e+00, -1.10616540e+00,
-7.06921216e-01, -7.06921216e-01, -7.06921216e-01, -7.06921216e-01,
-4.60561327e-01, -4.60561327e-01, -4.60561327e-01, -4.60561327e-01,
-3.27519514e-01, -3.27519514e-01, -3.27519514e-01, -3.27519514e-01,
-2.41286344e-01, -2.41286344e-01, -2.41286344e-01, -2.41286344e-01,
-1.75610234e-01, -1.75610234e-01, -1.75610234e-01, -1.75610234e-01,
-1.03249567e-01, -1.03249567e-01, -1.03249567e-01, -1.03249567e-01,
1.33675271e-02, 1.33675271e-02, 1.33675271e-02, 1.33675271e-02,
1.63319383e-01, 1.63319383e-01, 1.63319383e-01, 1.63319383e-01,
2.54046087e-01, 2.54046087e-01, 2.54046087e-01, 2.54046087e-01,
2.83350944e-01, 2.83350944e-01, 2.83350944e-01, 2.83350944e-01,
2.81705115e-01, 2.81705115e-01, 2.81705115e-01, 2.81705115e-01,
2.18881548e-01, 2.18881548e-01, 2.18881548e-01, 2.18881548e-01,
7.08959660e-02, 7.08959660e-02, 7.08959660e-02, 7.08959660e-02,
-4.37712428e-02, -4.37712428e-02, -4.37712428e-02, -4.37712428e-02,
-8.61595623e-02, -8.61595623e-02, -8.61595623e-02, -8.61595623e-02,
-9.95145426e-02, -9.95145426e-02, -9.95145426e-02, -9.95145426e-02,
-8.00099892e-02, -8.00099892e-02, -8.00099892e-02, -8.00099892e-02,
-1.40168724e-02, -1.40168724e-02, -1.40168724e-02, -1.40168724e-02,
4.44646346e-02, 4.44646346e-02, 4.44646346e-02, 4.44646346e-02,
5.51074031e-02, 5.51074031e-02, 5.51074031e-02, 5.51074031e-02,
-4.18963902e+00, -4.18963902e+00, -4.18963902e+00, -4.18963902e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999975e+02, 9.99999975e+02, 9.99999975e+02, 9.99999975e+02,
9.99999906e+02, 9.99999906e+02, 9.99999906e+02, 9.99999906e+02,
9.99999696e+02, 9.99999696e+02, 9.99999696e+02, 9.99999696e+02,
9.99999050e+02, 9.99999050e+02, 9.99999050e+02, 9.99999050e+02,
9.99997155e+02, 9.99997155e+02, 9.99997155e+02, 9.99997155e+02,
9.99991840e+02, 9.99991840e+02, 9.99991840e+02, 9.99991840e+02,
9.99977604e+02, 9.99977604e+02, 9.99977604e+02, 9.99977604e+02,
9.99941258e+02, 9.99941258e+02, 9.99941258e+02, 9.99941258e+02,
9.99852986e+02, 9.99852986e+02, 9.99852986e+02, 9.99852986e+02,
9.99649493e+02, 9.99649493e+02, 9.99649493e+02, 9.99649493e+02,
9.99205369e+02, 9.99205369e+02, 9.99205369e+02, 9.99205369e+02,
9.98290366e+02, 9.98290366e+02, 9.98290366e+02, 9.98290366e+02,
9.96516485e+02, 9.96516485e+02, 9.96516485e+02, 9.96516485e+02,
9.93290921e+02, 9.93290921e+02, 9.93290921e+02, 9.93290921e+02,
9.87805996e+02, 9.87805996e+02, 9.87805996e+02, 9.87805996e+02,
9.79103562e+02, 9.79103562e+02, 9.79103562e+02, 9.79103562e+02,
9.66233133e+02, 9.66233133e+02, 9.66233133e+02, 9.66233133e+02,
9.48475131e+02, 9.48475131e+02, 9.48475131e+02, 9.48475131e+02,
9.25547100e+02, 9.25547100e+02, 9.25547100e+02, 9.25547100e+02,
8.97696017e+02, 8.97696017e+02, 8.97696017e+02, 8.97696017e+02,
8.65627412e+02, 8.65627412e+02, 8.65627412e+02, 8.65627412e+02,
8.30301627e+02, 8.30301627e+02, 8.30301627e+02, 8.30301627e+02,
7.92679285e+02, 7.92679285e+02, 7.92679285e+02, 7.92679285e+02,
7.53520678e+02, 7.53520678e+02, 7.53520678e+02, 7.53520678e+02,
7.14478917e+02, 7.14478917e+02, 7.14478917e+02, 7.14478917e+02,
6.77632914e+02, 6.77632914e+02, 6.77632914e+02, 6.77632914e+02,
6.43143598e+02, 6.43143598e+02, 6.43143598e+02, 6.43143598e+02,
6.10999150e+02, 6.10999150e+02, 6.10999150e+02, 6.10999150e+02,
5.81341858e+02, 5.81341858e+02, 5.81341858e+02, 5.81341858e+02,
5.54448013e+02, 5.54448013e+02, 5.54448013e+02, 5.54448013e+02,
5.30711825e+02, 5.30711825e+02, 5.30711825e+02, 5.30711825e+02,
5.10603365e+02, 5.10603365e+02, 5.10603365e+02, 5.10603365e+02,
4.94516248e+02, 4.94516248e+02, 4.94516248e+02, 4.94516248e+02,
4.82637190e+02, 4.82637190e+02, 4.82637190e+02, 4.82637190e+02,
4.74635917e+02, 4.74635917e+02, 4.74635917e+02, 4.74635917e+02,
4.69895823e+02, 4.69895823e+02, 4.69895823e+02, 4.69895823e+02,
4.67151190e+02, 4.67151190e+02, 4.67151190e+02, 4.67151190e+02,
4.65611990e+02, 4.65611990e+02, 4.65611990e+02, 4.65611990e+02,
4.64275780e+02, 4.64275780e+02, 4.64275780e+02, 4.64275780e+02,
4.62848342e+02, 4.62848342e+02, 4.62848342e+02, 4.62848342e+02,
4.60626892e+02, 4.60626892e+02, 4.60626892e+02, 4.60626892e+02,
4.57799422e+02, 4.57799422e+02, 4.57799422e+02, 4.57799422e+02,
4.56027912e+02, 4.56027912e+02, 4.56027912e+02, 4.56027912e+02,
4.55382671e+02, 4.55382671e+02, 4.55382671e+02, 4.55382671e+02,
4.55509319e+02, 4.55509319e+02, 4.55509319e+02, 4.55509319e+02,
4.56736182e+02, 4.56736182e+02, 4.56736182e+02, 4.56736182e+02,
4.59533346e+02, 4.59533346e+02, 4.59533346e+02, 4.59533346e+02,
4.61594941e+02, 4.61594941e+02, 4.61594941e+02, 4.61594941e+02,
4.62637384e+02, 4.62637384e+02, 4.62637384e+02, 4.62637384e+02,
4.62728900e+02, 4.62728900e+02, 4.62728900e+02, 4.62728900e+02,
4.62351006e+02, 4.62351006e+02, 4.62351006e+02, 4.62351006e+02,
4.60928952e+02, 4.60928952e+02, 4.60928952e+02, 4.60928952e+02,
4.57695734e+02, 4.57695734e+02, 4.57695734e+02, 4.57695734e+02,
4.47171068e+02, 4.47171068e+02, 4.47171068e+02, 4.47171068e+02,
2.71217336e+02, 2.71217336e+02, 2.71217336e+02, 2.71217336e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999971,
0.99999971, 0.99999971, 0.99999971, 0.99999911, 0.99999911,
0.99999911, 0.99999911, 0.99999739, 0.99999739, 0.99999739,
0.99999739, 0.99999267, 0.99999267, 0.99999267, 0.99999267,
0.99998031, 0.99998031, 0.99998031, 0.99998031, 0.99994944,
0.99994944, 0.99994944, 0.99994944, 0.999876 , 0.999876 ,
0.999876 , 0.999876 , 0.9997101 , 0.9997101 , 0.9997101 ,
0.9997101 , 0.99935495, 0.99935495, 0.99935495, 0.99935495,
0.9986367 , 0.9986367 , 0.9986367 , 0.9986367 , 0.99726837,
0.99726837, 0.99726837, 0.99726837, 0.99482024, 0.99482024,
0.99482024, 0.99482024, 0.99071741, 0.99071741, 0.99071741,
0.99071741, 0.9842884 , 0.9842884 , 0.9842884 , 0.9842884 ,
0.9748737 , 0.9748737 , 0.9748737 , 0.9748737 , 0.96197251,
0.96197251, 0.96197251, 0.96197251, 0.94537359, 0.94537359,
0.94537359, 0.94537359, 0.92521078, 0.92521078, 0.92521078,
0.92521078, 0.90191525, 0.90191525, 0.90191525, 0.90191525,
0.876085 , 0.876085 , 0.876085 , 0.876085 , 0.84832273,
0.84832273, 0.84832273, 0.84832273, 0.81913764, 0.81913764,
0.81913764, 0.81913764, 0.78951498, 0.78951498, 0.78951498,
0.78951498, 0.76100793, 0.76100793, 0.76100793, 0.76100793,
0.73384867, 0.73384867, 0.73384867, 0.73384867, 0.70805934,
0.70805934, 0.70805934, 0.70805934, 0.68378781, 0.68378781,
0.68378781, 0.68378781, 0.66128539, 0.66128539, 0.66128539,
0.66128539, 0.64092085, 0.64092085, 0.64092085, 0.64092085,
0.62314771, 0.62314771, 0.62314771, 0.62314771, 0.60843108,
0.60843108, 0.60843108, 0.60843108, 0.59706805, 0.59706805,
0.59706805, 0.59706805, 0.58908105, 0.58908105, 0.58908105,
0.58908105, 0.58396071, 0.58396071, 0.58396071, 0.58396071,
0.5810339 , 0.5810339 , 0.5810339 , 0.5810339 , 0.57920442,
0.57920442, 0.57920442, 0.57920442, 0.57791599, 0.57791599,
0.57791599, 0.57791599, 0.57661402, 0.57661402, 0.57661402,
0.57661402, 0.5748629 , 0.5748629 , 0.5748629 , 0.5748629 ,
0.57227022, 0.57227022, 0.57227022, 0.57227022, 0.57028763,
0.57028763, 0.57028763, 0.57028763, 0.56933094, 0.56933094,
0.56933094, 0.56933094, 0.56902355, 0.56902355, 0.56902355,
0.56902355, 0.56940079, 0.56940079, 0.56940079, 0.56940079,
0.57104666, 0.57104666, 0.57104666, 0.57104666, 0.57246836,
0.57246836, 0.57246836, 0.57246836, 0.57162258, 0.57162258,
0.57162258, 0.57162258, 0.56923572, 0.56923572, 0.56923572,
0.56923572, 0.56817358, 0.56817358, 0.56817358, 0.56817358,
0.58016529, 0.58016529, 0.58016529, 0.58016529, 0.79143159,
0.79143159, 0.79143159, 0.79143159, 4.85974362, 4.85974362,
4.85974362, 4.85974362, 5.81302905, 5.81302905, 5.81302905,
5.81302905, 4.16554379, 4.16554379, 4.16554379, 4.16554379,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974469e+01, -1.95974469e+01, -1.95974469e+01, -1.95974469e+01,
-1.95974390e+01, -1.95974390e+01, -1.95974390e+01, -1.95974390e+01,
-1.95974166e+01, -1.95974166e+01, -1.95974166e+01, -1.95974166e+01,
-1.95973522e+01, -1.95973522e+01, -1.95973522e+01, -1.95973522e+01,
-1.95971757e+01, -1.95971757e+01, -1.95971757e+01, -1.95971757e+01,
-1.95967133e+01, -1.95967133e+01, -1.95967133e+01, -1.95967133e+01,
-1.95955581e+01, -1.95955581e+01, -1.95955581e+01, -1.95955581e+01,
-1.95928103e+01, -1.95928103e+01, -1.95928103e+01, -1.95928103e+01,
-1.95866019e+01, -1.95866019e+01, -1.95866019e+01, -1.95866019e+01,
-1.95733099e+01, -1.95733099e+01, -1.95733099e+01, -1.95733099e+01,
-1.95464179e+01, -1.95464179e+01, -1.95464179e+01, -1.95464179e+01,
-1.94951499e+01, -1.94951499e+01, -1.94951499e+01, -1.94951499e+01,
-1.94032968e+01, -1.94032968e+01, -1.94032968e+01, -1.94032968e+01,
-1.92489814e+01, -1.92489814e+01, -1.92489814e+01, -1.92489814e+01,
-1.90061827e+01, -1.90061827e+01, -1.90061827e+01, -1.90061827e+01,
-1.86483677e+01, -1.86483677e+01, -1.86483677e+01, -1.86483677e+01,
-1.81535351e+01, -1.81535351e+01, -1.81535351e+01, -1.81535351e+01,
-1.75089329e+01, -1.75089329e+01, -1.75089329e+01, -1.75089329e+01,
-1.67134622e+01, -1.67134622e+01, -1.67134622e+01, -1.67134622e+01,
-1.57766805e+01, -1.57766805e+01, -1.57766805e+01, -1.57766805e+01,
-1.47147662e+01, -1.47147662e+01, -1.47147662e+01, -1.47147662e+01,
-1.35447639e+01, -1.35447639e+01, -1.35447639e+01, -1.35447639e+01,
-1.22790265e+01, -1.22790265e+01, -1.22790265e+01, -1.22790265e+01,
-1.09641145e+01, -1.09641145e+01, -1.09641145e+01, -1.09641145e+01,
-9.66023669e+00, -9.66023669e+00, -9.66023669e+00, -9.66023669e+00,
-8.37815306e+00, -8.37815306e+00, -8.37815306e+00, -8.37815306e+00,
-7.12552266e+00, -7.12552266e+00, -7.12552266e+00, -7.12552266e+00,
-5.91304958e+00, -5.91304958e+00, -5.91304958e+00, -5.91304958e+00,
-4.75817216e+00, -4.75817216e+00, -4.75817216e+00, -4.75817216e+00,
-3.68577556e+00, -3.68577556e+00, -3.68577556e+00, -3.68577556e+00,
-2.72779239e+00, -2.72779239e+00, -2.72779239e+00, -2.72779239e+00,
-1.91777898e+00, -1.91777898e+00, -1.91777898e+00, -1.91777898e+00,
-1.28310499e+00, -1.28310499e+00, -1.28310499e+00, -1.28310499e+00,
-8.29422624e-01, -8.29422624e-01, -8.29422624e-01, -8.29422624e-01,
-5.41561776e-01, -5.41561776e-01, -5.41561776e-01, -5.41561776e-01,
-3.69927246e-01, -3.69927246e-01, -3.69927246e-01, -3.69927246e-01,
-2.73484493e-01, -2.73484493e-01, -2.73484493e-01, -2.73484493e-01,
-1.97816530e-01, -1.97816530e-01, -1.97816530e-01, -1.97816530e-01,
-1.26255045e-01, -1.26255045e-01, -1.26255045e-01, -1.26255045e-01,
-3.10231901e-02, -3.10231901e-02, -3.10231901e-02, -3.10231901e-02,
1.13087024e-01, 1.13087024e-01, 1.13087024e-01, 1.13087024e-01,
2.24997833e-01, 2.24997833e-01, 2.24997833e-01, 2.24997833e-01,
2.74197895e-01, 2.74197895e-01, 2.74197895e-01, 2.74197895e-01,
2.79075899e-01, 2.79075899e-01, 2.79075899e-01, 2.79075899e-01,
2.45111094e-01, 2.45111094e-01, 2.45111094e-01, 2.45111094e-01,
1.27012783e-01, 1.27012783e-01, 1.27012783e-01, 1.27012783e-01,
-3.74802683e-03, -3.74802683e-03, -3.74802683e-03, -3.74802683e-03,
-7.60495587e-02, -7.60495587e-02, -7.60495587e-02, -7.60495587e-02,
-9.11323448e-02, -9.11323448e-02, -9.11323448e-02, -9.11323448e-02,
-8.66414148e-02, -8.66414148e-02, -8.66414148e-02, -8.66414148e-02,
-4.09801118e-02, -4.09801118e-02, -4.09801118e-02, -4.09801118e-02,
3.37800291e-02, 3.37800291e-02, 3.37800291e-02, 3.37800291e-02,
6.27722422e-02, 6.27722422e-02, 6.27722422e-02, 6.27722422e-02,
3.77295256e-02, 3.77295256e-02, 3.77295256e-02, 3.77295256e-02,
-3.48506696e+00, -3.48506696e+00, -3.48506696e+00, -3.48506696e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999885e+02, 9.99999885e+02, 9.99999885e+02, 9.99999885e+02,
9.99999587e+02, 9.99999587e+02, 9.99999587e+02, 9.99999587e+02,
9.99998749e+02, 9.99998749e+02, 9.99998749e+02, 9.99998749e+02,
9.99996339e+02, 9.99996339e+02, 9.99996339e+02, 9.99996339e+02,
9.99989735e+02, 9.99989735e+02, 9.99989735e+02, 9.99989735e+02,
9.99972435e+02, 9.99972435e+02, 9.99972435e+02, 9.99972435e+02,
9.99929213e+02, 9.99929213e+02, 9.99929213e+02, 9.99929213e+02,
9.99826413e+02, 9.99826413e+02, 9.99826413e+02, 9.99826413e+02,
9.99594173e+02, 9.99594173e+02, 9.99594173e+02, 9.99594173e+02,
9.99097110e+02, 9.99097110e+02, 9.99097110e+02, 9.99097110e+02,
9.98092125e+02, 9.98092125e+02, 9.98092125e+02, 9.98092125e+02,
9.96178599e+02, 9.96178599e+02, 9.96178599e+02, 9.96178599e+02,
9.92758220e+02, 9.92758220e+02, 9.92758220e+02, 9.92758220e+02,
9.87034806e+02, 9.87034806e+02, 9.87034806e+02, 9.87034806e+02,
9.78087556e+02, 9.78087556e+02, 9.78087556e+02, 9.78087556e+02,
9.65030100e+02, 9.65030100e+02, 9.65030100e+02, 9.65030100e+02,
9.47221585e+02, 9.47221585e+02, 9.47221585e+02, 9.47221585e+02,
9.24449980e+02, 9.24449980e+02, 9.24449980e+02, 9.24449980e+02,
8.97001618e+02, 8.97001618e+02, 8.97001618e+02, 8.97001618e+02,
8.65580147e+02, 8.65580147e+02, 8.65580147e+02, 8.65580147e+02,
8.31110268e+02, 8.31110268e+02, 8.31110268e+02, 8.31110268e+02,
7.94502788e+02, 7.94502788e+02, 7.94502788e+02, 7.94502788e+02,
7.56466644e+02, 7.56466644e+02, 7.56466644e+02, 7.56466644e+02,
7.18450539e+02, 7.18450539e+02, 7.18450539e+02, 7.18450539e+02,
6.82418620e+02, 6.82418620e+02, 6.82418620e+02, 6.82418620e+02,
6.48592320e+02, 6.48592320e+02, 6.48592320e+02, 6.48592320e+02,
6.16938186e+02, 6.16938186e+02, 6.16938186e+02, 6.16938186e+02,
5.87570375e+02, 5.87570375e+02, 5.87570375e+02, 5.87570375e+02,
5.60716611e+02, 5.60716611e+02, 5.60716611e+02, 5.60716611e+02,
5.36732244e+02, 5.36732244e+02, 5.36732244e+02, 5.36732244e+02,
5.16053779e+02, 5.16053779e+02, 5.16053779e+02, 5.16053779e+02,
4.99117615e+02, 4.99117615e+02, 4.99117615e+02, 4.99117615e+02,
4.86162589e+02, 4.86162589e+02, 4.86162589e+02, 4.86162589e+02,
4.77126861e+02, 4.77126861e+02, 4.77126861e+02, 4.77126861e+02,
4.71375846e+02, 4.71375846e+02, 4.71375846e+02, 4.71375846e+02,
4.68122671e+02, 4.68122671e+02, 4.68122671e+02, 4.68122671e+02,
4.66119857e+02, 4.66119857e+02, 4.66119857e+02, 4.66119857e+02,
4.64734326e+02, 4.64734326e+02, 4.64734326e+02, 4.64734326e+02,
4.63344884e+02, 4.63344884e+02, 4.63344884e+02, 4.63344884e+02,
4.61475963e+02, 4.61475963e+02, 4.61475963e+02, 4.61475963e+02,
4.58685817e+02, 4.58685817e+02, 4.58685817e+02, 4.58685817e+02,
4.56599529e+02, 4.56599529e+02, 4.56599529e+02, 4.56599529e+02,
4.55674010e+02, 4.55674010e+02, 4.55674010e+02, 4.55674010e+02,
4.55497004e+02, 4.55497004e+02, 4.55497004e+02, 4.55497004e+02,
4.56154582e+02, 4.56154582e+02, 4.56154582e+02, 4.56154582e+02,
4.58463143e+02, 4.58463143e+02, 4.58463143e+02, 4.58463143e+02,
4.61025271e+02, 4.61025271e+02, 4.61025271e+02, 4.61025271e+02,
4.62220731e+02, 4.62220731e+02, 4.62220731e+02, 4.62220731e+02,
4.62680443e+02, 4.62680443e+02, 4.62680443e+02, 4.62680443e+02,
4.62542981e+02, 4.62542981e+02, 4.62542981e+02, 4.62542981e+02,
4.61609496e+02, 4.61609496e+02, 4.61609496e+02, 4.61609496e+02,
4.60016813e+02, 4.60016813e+02, 4.60016813e+02, 4.60016813e+02,
4.57384347e+02, 4.57384347e+02, 4.57384347e+02, 4.57384347e+02,
4.50690581e+02, 4.50690581e+02, 4.50690581e+02, 4.50690581e+02,
3.00854088e+02, 3.00854088e+02, 3.00854088e+02, 3.00854088e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999965, 0.99999965, 0.99999965, 0.99999965, 0.99999883,
0.99999883, 0.99999883, 0.99999883, 0.99999668, 0.99999668,
0.99999668, 0.99999668, 0.99999087, 0.99999087, 0.99999087,
0.99999087, 0.99997599, 0.99997599, 0.99997599, 0.99997599,
0.99993958, 0.99993958, 0.99993958, 0.99993958, 0.99985468,
0.99985468, 0.99985468, 0.99985468, 0.99966655, 0.99966655,
0.99966655, 0.99966655, 0.99927127, 0.99927127, 0.99927127,
0.99927127, 0.9984861 , 0.9984861 , 0.9984861 , 0.9984861 ,
0.99701584, 0.99701584, 0.99701584, 0.99701584, 0.99442799,
0.99442799, 0.99442799, 0.99442799, 0.99015699, 0.99015699,
0.99015699, 0.99015699, 0.98355812, 0.98355812, 0.98355812,
0.98355812, 0.97401619, 0.97401619, 0.97401619, 0.97401619,
0.96108383, 0.96108383, 0.96108383, 0.96108383, 0.94459768,
0.94459768, 0.94459768, 0.94459768, 0.92471963, 0.92471963,
0.92471963, 0.92471963, 0.90188293, 0.90188293, 0.90188293,
0.90188293, 0.8766663 , 0.8766663 , 0.8766663 , 0.8766663 ,
0.84964378, 0.84964378, 0.84964378, 0.84964378, 0.82129228,
0.82129228, 0.82129228, 0.82129228, 0.79247278, 0.79247278,
0.79247278, 0.79247278, 0.76464054, 0.76464054, 0.76464054,
0.76464054, 0.73806341, 0.73806341, 0.73806341, 0.73806341,
0.71274558, 0.71274558, 0.71274558, 0.71274558, 0.68880715,
0.68880715, 0.68880715, 0.68880715, 0.66646177, 0.66646177,
0.66646177, 0.66646177, 0.64602927, 0.64602927, 0.64602927,
0.64602927, 0.62792918, 0.62792918, 0.62792918, 0.62792918,
0.61261162, 0.61261162, 0.61261162, 0.61261162, 0.60044938,
0.60044938, 0.60044938, 0.60044938, 0.59153236, 0.59153236,
0.59153236, 0.59153236, 0.58562922, 0.58562922, 0.58562922,
0.58562922, 0.58199914, 0.58199914, 0.58199914, 0.58199914,
0.57990817, 0.57990817, 0.57990817, 0.57990817, 0.57839319,
0.57839319, 0.57839319, 0.57839319, 0.57707272, 0.57707272,
0.57707272, 0.57707272, 0.57556284, 0.57556284, 0.57556284,
0.57556284, 0.57325415, 0.57325415, 0.57325415, 0.57325415,
0.57098055, 0.57098055, 0.57098055, 0.57098055, 0.5697302 ,
0.5697302 , 0.5697302 , 0.5697302 , 0.56931036, 0.56931036,
0.56931036, 0.56931036, 0.56937657, 0.56937657, 0.56937657,
0.56937657, 0.5705669 , 0.5705669 , 0.5705669 , 0.5705669 ,
0.57256309, 0.57256309, 0.57256309, 0.57256309, 0.57325538,
0.57325538, 0.57325538, 0.57325538, 0.57183133, 0.57183133,
0.57183133, 0.57183133, 0.56912943, 0.56912943, 0.56912943,
0.56912943, 0.56776262, 0.56776262, 0.56776262, 0.56776262,
0.57933344, 0.57933344, 0.57933344, 0.57933344, 0.79052151,
0.79052151, 0.79052151, 0.79052151, 4.85360037, 4.85360037,
4.85360037, 4.85360037, 5.84137874, 5.84137874, 5.84137874,
5.84137874, 4.52085551, 4.52085551, 4.52085551, 4.52085551,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974370e+01, -1.95974370e+01, -1.95974370e+01, -1.95974370e+01,
-1.95974062e+01, -1.95974062e+01, -1.95974062e+01, -1.95974062e+01,
-1.95973256e+01, -1.95973256e+01, -1.95973256e+01, -1.95973256e+01,
-1.95971084e+01, -1.95971084e+01, -1.95971084e+01, -1.95971084e+01,
-1.95965517e+01, -1.95965517e+01, -1.95965517e+01, -1.95965517e+01,
-1.95951892e+01, -1.95951892e+01, -1.95951892e+01, -1.95951892e+01,
-1.95920125e+01, -1.95920125e+01, -1.95920125e+01, -1.95920125e+01,
-1.95849721e+01, -1.95849721e+01, -1.95849721e+01, -1.95849721e+01,
-1.95701774e+01, -1.95701774e+01, -1.95701774e+01, -1.95701774e+01,
-1.95407776e+01, -1.95407776e+01, -1.95407776e+01, -1.95407776e+01,
-1.94856819e+01, -1.94856819e+01, -1.94856819e+01, -1.94856819e+01,
-1.93885625e+01, -1.93885625e+01, -1.93885625e+01, -1.93885625e+01,
-1.92278595e+01, -1.92278595e+01, -1.92278595e+01, -1.92278595e+01,
-1.89785124e+01, -1.89785124e+01, -1.89785124e+01, -1.89785124e+01,
-1.86156156e+01, -1.86156156e+01, -1.86156156e+01, -1.86156156e+01,
-1.81192078e+01, -1.81192078e+01, -1.81192078e+01, -1.81192078e+01,
-1.74785049e+01, -1.74785049e+01, -1.74785049e+01, -1.74785049e+01,
-1.66938078e+01, -1.66938078e+01, -1.66938078e+01, -1.66938078e+01,
-1.57752383e+01, -1.57752383e+01, -1.57752383e+01, -1.57752383e+01,
-1.47387955e+01, -1.47387955e+01, -1.47387955e+01, -1.47387955e+01,
-1.36009952e+01, -1.36009952e+01, -1.36009952e+01, -1.36009952e+01,
-1.23736297e+01, -1.23736297e+01, -1.23736297e+01, -1.23736297e+01,
-1.10969073e+01, -1.10969073e+01, -1.10969073e+01, -1.10969073e+01,
-9.82853423e+00, -9.82853423e+00, -9.82853423e+00, -9.82853423e+00,
-8.57904516e+00, -8.57904516e+00, -8.57904516e+00, -8.57904516e+00,
-7.35526177e+00, -7.35526177e+00, -7.35526177e+00, -7.35526177e+00,
-6.16596318e+00, -6.16596318e+00, -6.16596318e+00, -6.16596318e+00,
-5.02576394e+00, -5.02576394e+00, -5.02576394e+00, -5.02576394e+00,
-3.95645826e+00, -3.95645826e+00, -3.95645826e+00, -3.95645826e+00,
-2.98656698e+00, -2.98656698e+00, -2.98656698e+00, -2.98656698e+00,
-2.14870831e+00, -2.14870831e+00, -2.14870831e+00, -2.14870831e+00,
-1.47116257e+00, -1.47116257e+00, -1.47116257e+00, -1.47116257e+00,
-9.69349069e-01, -9.69349069e-01, -9.69349069e-01, -9.69349069e-01,
-6.31501761e-01, -6.31501761e-01, -6.31501761e-01, -6.31501761e-01,
-4.28578097e-01, -4.28578097e-01, -4.28578097e-01, -4.28578097e-01,
-3.05263503e-01, -3.05263503e-01, -3.05263503e-01, -3.05263503e-01,
-2.25158174e-01, -2.25158174e-01, -2.25158174e-01, -2.25158174e-01,
-1.50493126e-01, -1.50493126e-01, -1.50493126e-01, -1.50493126e-01,
-6.50892648e-02, -6.50892648e-02, -6.50892648e-02, -6.50892648e-02,
6.41363546e-02, 6.41363546e-02, 6.41363546e-02, 6.41363546e-02,
1.88613090e-01, 1.88613090e-01, 1.88613090e-01, 1.88613090e-01,
2.56441246e-01, 2.56441246e-01, 2.56441246e-01, 2.56441246e-01,
2.75531189e-01, 2.75531189e-01, 2.75531189e-01, 2.75531189e-01,
2.60699180e-01, 2.60699180e-01, 2.60699180e-01, 2.60699180e-01,
1.76470541e-01, 1.76470541e-01, 1.76470541e-01, 1.76470541e-01,
3.56270391e-02, 3.56270391e-02, 3.56270391e-02, 3.56270391e-02,
-4.88762956e-02, -4.88762956e-02, -4.88762956e-02, -4.88762956e-02,
-8.67370262e-02, -8.67370262e-02, -8.67370262e-02, -8.67370262e-02,
-8.76578509e-02, -8.76578509e-02, -8.76578509e-02, -8.76578509e-02,
-6.10342800e-02, -6.10342800e-02, -6.10342800e-02, -6.10342800e-02,
9.32487586e-03, 9.32487586e-03, 9.32487586e-03, 9.32487586e-03,
6.88182460e-02, 6.88182460e-02, 6.88182460e-02, 6.88182460e-02,
7.39662064e-02, 7.39662064e-02, 7.39662064e-02, 7.39662064e-02,
1.82197835e-02, 1.82197835e-02, 1.82197835e-02, 1.82197835e-02,
-2.88079782e+00, -2.88079782e+00, -2.88079782e+00, -2.88079782e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999514e+02, 9.99999514e+02, 9.99999514e+02, 9.99999514e+02,
9.99998362e+02, 9.99998362e+02, 9.99998362e+02, 9.99998362e+02,
9.99995345e+02, 9.99995345e+02, 9.99995345e+02, 9.99995345e+02,
9.99987220e+02, 9.99987220e+02, 9.99987220e+02, 9.99987220e+02,
9.99966390e+02, 9.99966390e+02, 9.99966390e+02, 9.99966390e+02,
9.99915413e+02, 9.99915413e+02, 9.99915413e+02, 9.99915413e+02,
9.99796564e+02, 9.99796564e+02, 9.99796564e+02, 9.99796564e+02,
9.99533214e+02, 9.99533214e+02, 9.99533214e+02, 9.99533214e+02,
9.98980002e+02, 9.98980002e+02, 9.98980002e+02, 9.98980002e+02,
9.97881452e+02, 9.97881452e+02, 9.97881452e+02, 9.97881452e+02,
9.95825567e+02, 9.95825567e+02, 9.95825567e+02, 9.95825567e+02,
9.92210502e+02, 9.92210502e+02, 9.92210502e+02, 9.92210502e+02,
9.86253649e+02, 9.86253649e+02, 9.86253649e+02, 9.86253649e+02,
9.77072357e+02, 9.77072357e+02, 9.77072357e+02, 9.77072357e+02,
9.63842431e+02, 9.63842431e+02, 9.63842431e+02, 9.63842431e+02,
9.45996603e+02, 9.45996603e+02, 9.45996603e+02, 9.45996603e+02,
9.23386326e+02, 9.23386326e+02, 9.23386326e+02, 9.23386326e+02,
8.96331244e+02, 8.96331244e+02, 8.96331244e+02, 8.96331244e+02,
8.65530285e+02, 8.65530285e+02, 8.65530285e+02, 8.65530285e+02,
8.31873307e+02, 8.31873307e+02, 8.31873307e+02, 8.31873307e+02,
7.96224374e+02, 7.96224374e+02, 7.96224374e+02, 7.96224374e+02,
7.59246685e+02, 7.59246685e+02, 7.59246685e+02, 7.59246685e+02,
7.22211610e+02, 7.22211610e+02, 7.22211610e+02, 7.22211610e+02,
6.86971971e+02, 6.86971971e+02, 6.86971971e+02, 6.86971971e+02,
6.53798816e+02, 6.53798816e+02, 6.53798816e+02, 6.53798816e+02,
6.22643027e+02, 6.22643027e+02, 6.22643027e+02, 6.22643027e+02,
5.93594856e+02, 5.93594856e+02, 5.93594856e+02, 5.93594856e+02,
5.66846654e+02, 5.66846654e+02, 5.66846654e+02, 5.66846654e+02,
5.42704013e+02, 5.42704013e+02, 5.42704013e+02, 5.42704013e+02,
5.21575845e+02, 5.21575845e+02, 5.21575845e+02, 5.21575845e+02,
5.03891081e+02, 5.03891081e+02, 5.03891081e+02, 5.03891081e+02,
4.89983321e+02, 4.89983321e+02, 4.89983321e+02, 4.89983321e+02,
4.79868835e+02, 4.79868835e+02, 4.79868835e+02, 4.79868835e+02,
4.73219637e+02, 4.73219637e+02, 4.73219637e+02, 4.73219637e+02,
4.69161552e+02, 4.69161552e+02, 4.69161552e+02, 4.69161552e+02,
4.66853875e+02, 4.66853875e+02, 4.66853875e+02, 4.66853875e+02,
4.65206448e+02, 4.65206448e+02, 4.65206448e+02, 4.65206448e+02,
4.63785479e+02, 4.63785479e+02, 4.63785479e+02, 4.63785479e+02,
4.62163120e+02, 4.62163120e+02, 4.62163120e+02, 4.62163120e+02,
4.59669599e+02, 4.59669599e+02, 4.59669599e+02, 4.59669599e+02,
4.57239211e+02, 4.57239211e+02, 4.57239211e+02, 4.57239211e+02,
4.55974237e+02, 4.55974237e+02, 4.55974237e+02, 4.55974237e+02,
4.55650208e+02, 4.55650208e+02, 4.55650208e+02, 4.55650208e+02,
4.55892185e+02, 4.55892185e+02, 4.55892185e+02, 4.55892185e+02,
4.57462397e+02, 4.57462397e+02, 4.57462397e+02, 4.57462397e+02,
4.60168133e+02, 4.60168133e+02, 4.60168133e+02, 4.60168133e+02,
4.61914920e+02, 4.61914920e+02, 4.61914920e+02, 4.61914920e+02,
4.62462614e+02, 4.62462614e+02, 4.62462614e+02, 4.62462614e+02,
4.62562577e+02, 4.62562577e+02, 4.62562577e+02, 4.62562577e+02,
4.62068300e+02, 4.62068300e+02, 4.62068300e+02, 4.62068300e+02,
4.60681300e+02, 4.60681300e+02, 4.60681300e+02, 4.60681300e+02,
4.59493495e+02, 4.59493495e+02, 4.59493495e+02, 4.59493495e+02,
4.57392928e+02, 4.57392928e+02, 4.57392928e+02, 4.57392928e+02,
4.53913561e+02, 4.53913561e+02, 4.53913561e+02, 4.53913561e+02,
3.30038409e+02, 3.30038409e+02, 3.30038409e+02, 3.30038409e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999867, 0.99999867, 0.99999867, 0.99999867, 0.99999578,
0.99999578, 0.99999578, 0.99999578, 0.99998875, 0.99998875,
0.99998875, 0.99998875, 0.99997098, 0.99997098, 0.99997098,
0.99997098, 0.99992836, 0.99992836, 0.99992836, 0.99992836,
0.99983087, 0.99983087, 0.99983087, 0.99983087, 0.99961879,
0.99961879, 0.99961879, 0.99961879, 0.99918112, 0.99918112,
0.99918112, 0.99918112, 0.9983266 , 0.9983266 , 0.9983266 ,
0.9983266 , 0.99675268, 0.99675268, 0.99675268, 0.99675268,
0.99402545, 0.99402545, 0.99402545, 0.99402545, 0.98958998,
0.98958998, 0.98958998, 0.98958998, 0.98282879, 0.98282879,
0.98282879, 0.98282879, 0.97316956, 0.97316956, 0.97316956,
0.97316956, 0.96021489, 0.96021489, 0.96021489, 0.96021489,
0.94384469, 0.94384469, 0.94384469, 0.94384469, 0.92424484,
0.92424484, 0.92424484, 0.92424484, 0.90184854, 0.90184854,
0.90184854, 0.90184854, 0.87721523, 0.87721523, 0.87721523,
0.87721523, 0.85089155, 0.85089155, 0.85089155, 0.85089155,
0.82332582, 0.82332582, 0.82332582, 0.82332582, 0.79527381,
0.79527381, 0.79527381, 0.79527381, 0.76809201, 0.76809201,
0.76809201, 0.76809201, 0.74208156, 0.74208156, 0.74208156,
0.74208156, 0.71723328, 0.71723328, 0.71723328, 0.71723328,
0.69364464, 0.69364464, 0.69364464, 0.69364464, 0.67149312,
0.67149312, 0.67149312, 0.67149312, 0.65105899, 0.65105899,
0.65105899, 0.65105899, 0.63271791, 0.63271791, 0.63271791,
0.63271791, 0.61690679, 0.61690679, 0.61690679, 0.61690679,
0.60401515, 0.60401515, 0.60401515, 0.60401515, 0.59425918,
0.59425918, 0.59425918, 0.59425918, 0.58748277, 0.58748277,
0.58748277, 0.58748277, 0.58322875, 0.58322875, 0.58322875,
0.58322875, 0.58062538, 0.58062538, 0.58062538, 0.58062538,
0.57898247, 0.57898247, 0.57898247, 0.57898247, 0.57755952,
0.57755952, 0.57755952, 0.57755952, 0.57611261, 0.57611261,
0.57611261, 0.57611261, 0.57414348, 0.57414348, 0.57414348,
0.57414348, 0.57178794, 0.57178794, 0.57178794, 0.57178794,
0.57021715, 0.57021715, 0.57021715, 0.57021715, 0.56956111,
0.56956111, 0.56956111, 0.56956111, 0.5694658 , 0.5694658 ,
0.5694658 , 0.5694658 , 0.57015934, 0.57015934, 0.57015934,
0.57015934, 0.57215308, 0.57215308, 0.57215308, 0.57215308,
0.57357105, 0.57357105, 0.57357105, 0.57357105, 0.57362037,
0.57362037, 0.57362037, 0.57362037, 0.57184744, 0.57184744,
0.57184744, 0.57184744, 0.56886696, 0.56886696, 0.56886696,
0.56886696, 0.56703172, 0.56703172, 0.56703172, 0.56703172,
0.57864765, 0.57864765, 0.57864765, 0.57864765, 0.78978655,
0.78978655, 0.78978655, 0.78978655, 4.84874627, 4.84874627,
4.84874627, 4.84874627, 5.86893587, 5.86893587, 5.86893587,
5.86893587, 4.87589923, 4.87589923, 4.87589923, 4.87589923,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974004e+01, -1.95974004e+01, -1.95974004e+01, -1.95974004e+01,
-1.95972922e+01, -1.95972922e+01, -1.95972922e+01, -1.95972922e+01,
-1.95970290e+01, -1.95970290e+01, -1.95970290e+01, -1.95970290e+01,
-1.95963642e+01, -1.95963642e+01, -1.95963642e+01, -1.95963642e+01,
-1.95947694e+01, -1.95947694e+01, -1.95947694e+01, -1.95947694e+01,
-1.95911214e+01, -1.95911214e+01, -1.95911214e+01, -1.95911214e+01,
-1.95831849e+01, -1.95831849e+01, -1.95831849e+01, -1.95831849e+01,
-1.95668027e+01, -1.95668027e+01, -1.95668027e+01, -1.95668027e+01,
-1.95348031e+01, -1.95348031e+01, -1.95348031e+01, -1.95348031e+01,
-1.94758134e+01, -1.94758134e+01, -1.94758134e+01, -1.94758134e+01,
-1.93734365e+01, -1.93734365e+01, -1.93734365e+01, -1.93734365e+01,
-1.92064799e+01, -1.92064799e+01, -1.92064799e+01, -1.92064799e+01,
-1.89508611e+01, -1.89508611e+01, -1.89508611e+01, -1.89508611e+01,
-1.85832555e+01, -1.85832555e+01, -1.85832555e+01, -1.85832555e+01,
-1.80856173e+01, -1.80856173e+01, -1.80856173e+01, -1.80856173e+01,
-1.74489569e+01, -1.74489569e+01, -1.74489569e+01, -1.74489569e+01,
-1.66748031e+01, -1.66748031e+01, -1.66748031e+01, -1.66748031e+01,
-1.57737222e+01, -1.57737222e+01, -1.57737222e+01, -1.57737222e+01,
-1.47614795e+01, -1.47614795e+01, -1.47614795e+01, -1.47614795e+01,
-1.36540462e+01, -1.36540462e+01, -1.36540462e+01, -1.36540462e+01,
-1.24627500e+01, -1.24627500e+01, -1.24627500e+01, -1.24627500e+01,
-1.12223935e+01, -1.12223935e+01, -1.12223935e+01, -1.12223935e+01,
-9.98784228e+00, -9.98784228e+00, -9.98784228e+00, -9.98784228e+00,
-8.76973584e+00, -8.76973584e+00, -8.76973584e+00, -8.76973584e+00,
-7.57415342e+00, -7.57415342e+00, -7.57415342e+00, -7.57415342e+00,
-6.40832079e+00, -6.40832079e+00, -6.40832079e+00, -6.40832079e+00,
-5.28453104e+00, -5.28453104e+00, -5.28453104e+00, -5.28453104e+00,
-4.22138557e+00, -4.22138557e+00, -4.22138557e+00, -4.22138557e+00,
-3.24449956e+00, -3.24449956e+00, -3.24449956e+00, -3.24449956e+00,
-2.38417185e+00, -2.38417185e+00, -2.38417185e+00, -2.38417185e+00,
-1.67026111e+00, -1.67026111e+00, -1.67026111e+00, -1.67026111e+00,
-1.12140919e+00, -1.12140919e+00, -1.12140919e+00, -1.12140919e+00,
-7.38356684e-01, -7.38356684e-01, -7.38356684e-01, -7.38356684e-01,
-4.93334980e-01, -4.93334980e-01, -4.93334980e-01, -4.93334980e-01,
-3.49056282e-01, -3.49056282e-01, -3.49056282e-01, -3.49056282e-01,
-2.52375478e-01, -2.52375478e-01, -2.52375478e-01, -2.52375478e-01,
-1.75397469e-01, -1.75397469e-01, -1.75397469e-01, -1.75397469e-01,
-9.51083212e-02, -9.51083212e-02, -9.51083212e-02, -9.51083212e-02,
1.66418888e-02, 1.66418888e-02, 1.66418888e-02, 1.66418888e-02,
1.50553797e-01, 1.50553797e-01, 1.50553797e-01, 1.50553797e-01,
2.34098283e-01, 2.34098283e-01, 2.34098283e-01, 2.34098283e-01,
2.65453663e-01, 2.65453663e-01, 2.65453663e-01, 2.65453663e-01,
2.65583246e-01, 2.65583246e-01, 2.65583246e-01, 2.65583246e-01,
2.15878598e-01, 2.15878598e-01, 2.15878598e-01, 2.15878598e-01,
8.50200679e-02, 8.50200679e-02, 8.50200679e-02, 8.50200679e-02,
-2.53150527e-02, -2.53150527e-02, -2.53150527e-02, -2.53150527e-02,
-7.07834536e-02, -7.07834536e-02, -7.07834536e-02, -7.07834536e-02,
-8.52030740e-02, -8.52030740e-02, -8.52030740e-02, -8.52030740e-02,
-7.38433396e-02, -7.38433396e-02, -7.38433396e-02, -7.38433396e-02,
-1.83894011e-02, -1.83894011e-02, -1.83894011e-02, -1.83894011e-02,
4.92953993e-02, 4.92953993e-02, 4.92953993e-02, 4.92953993e-02,
8.87128688e-02, 8.87128688e-02, 8.87128688e-02, 8.87128688e-02,
7.93095475e-02, 7.93095475e-02, 7.93095475e-02, 7.93095475e-02,
-4.65037464e-03, -4.65037464e-03, -4.65037464e-03, -4.65037464e-03,
-2.35462822e+00, -2.35462822e+00, -2.35462822e+00, -2.35462822e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99998143e+02, 9.99998143e+02, 9.99998143e+02, 9.99998143e+02,
9.99994094e+02, 9.99994094e+02, 9.99994094e+02, 9.99994094e+02,
9.99984249e+02, 9.99984249e+02, 9.99984249e+02, 9.99984249e+02,
9.99959373e+02, 9.99959373e+02, 9.99959373e+02, 9.99959373e+02,
9.99899705e+02, 9.99899705e+02, 9.99899705e+02, 9.99899705e+02,
9.99763230e+02, 9.99763230e+02, 9.99763230e+02, 9.99763230e+02,
9.99466373e+02, 9.99466373e+02, 9.99466373e+02, 9.99466373e+02,
9.98853848e+02, 9.98853848e+02, 9.98853848e+02, 9.98853848e+02,
9.97658336e+02, 9.97658336e+02, 9.97658336e+02, 9.97658336e+02,
9.95457711e+02, 9.95457711e+02, 9.95457711e+02, 9.95457711e+02,
9.91648494e+02, 9.91648494e+02, 9.91648494e+02, 9.91648494e+02,
9.85463501e+02, 9.85463501e+02, 9.85463501e+02, 9.85463501e+02,
9.76058768e+02, 9.76058768e+02, 9.76058768e+02, 9.76058768e+02,
9.62670205e+02, 9.62670205e+02, 9.62670205e+02, 9.62670205e+02,
9.44799218e+02, 9.44799218e+02, 9.44799218e+02, 9.44799218e+02,
9.22354408e+02, 9.22354408e+02, 9.22354408e+02, 9.22354408e+02,
8.95683407e+02, 8.95683407e+02, 8.95683407e+02, 8.95683407e+02,
8.65478073e+02, 8.65478073e+02, 8.65478073e+02, 8.65478073e+02,
8.32594221e+02, 8.32594221e+02, 8.32594221e+02, 8.32594221e+02,
7.97851707e+02, 7.97851707e+02, 7.97851707e+02, 7.97851707e+02,
7.61874003e+02, 7.61874003e+02, 7.61874003e+02, 7.61874003e+02,
7.25777678e+02, 7.25777678e+02, 7.25777678e+02, 7.25777678e+02,
6.91306690e+02, 6.91306690e+02, 6.91306690e+02, 6.91306690e+02,
6.58775118e+02, 6.58775118e+02, 6.58775118e+02, 6.58775118e+02,
6.28122753e+02, 6.28122753e+02, 6.28122753e+02, 6.28122753e+02,
5.99419362e+02, 5.99419362e+02, 5.99419362e+02, 5.99419362e+02,
5.72823606e+02, 5.72823606e+02, 5.72823606e+02, 5.72823606e+02,
5.48603814e+02, 5.48603814e+02, 5.48603814e+02, 5.48603814e+02,
5.27126068e+02, 5.27126068e+02, 5.27126068e+02, 5.27126068e+02,
5.08814510e+02, 5.08814510e+02, 5.08814510e+02, 5.08814510e+02,
4.94028498e+02, 4.94028498e+02, 4.94028498e+02, 4.94028498e+02,
4.82931682e+02, 4.82931682e+02, 4.82931682e+02, 4.82931682e+02,
4.75278864e+02, 4.75278864e+02, 4.75278864e+02, 4.75278864e+02,
4.70507508e+02, 4.70507508e+02, 4.70507508e+02, 4.70507508e+02,
4.67612437e+02, 4.67612437e+02, 4.67612437e+02, 4.67612437e+02,
4.65811203e+02, 4.65811203e+02, 4.65811203e+02, 4.65811203e+02,
4.64268238e+02, 4.64268238e+02, 4.64268238e+02, 4.64268238e+02,
4.62705833e+02, 4.62705833e+02, 4.62705833e+02, 4.62705833e+02,
4.60568868e+02, 4.60568868e+02, 4.60568868e+02, 4.60568868e+02,
4.58024576e+02, 4.58024576e+02, 4.58024576e+02, 4.58024576e+02,
4.56383188e+02, 4.56383188e+02, 4.56383188e+02, 4.56383188e+02,
4.55784075e+02, 4.55784075e+02, 4.55784075e+02, 4.55784075e+02,
4.55824044e+02, 4.55824044e+02, 4.55824044e+02, 4.55824044e+02,
4.56769147e+02, 4.56769147e+02, 4.56769147e+02, 4.56769147e+02,
4.59243942e+02, 4.59243942e+02, 4.59243942e+02, 4.59243942e+02,
4.61303394e+02, 4.61303394e+02, 4.61303394e+02, 4.61303394e+02,
4.62328948e+02, 4.62328948e+02, 4.62328948e+02, 4.62328948e+02,
4.62486115e+02, 4.62486115e+02, 4.62486115e+02, 4.62486115e+02,
4.62267075e+02, 4.62267075e+02, 4.62267075e+02, 4.62267075e+02,
4.61235100e+02, 4.61235100e+02, 4.61235100e+02, 4.61235100e+02,
4.59928707e+02, 4.59928707e+02, 4.59928707e+02, 4.59928707e+02,
4.59250045e+02, 4.59250045e+02, 4.59250045e+02, 4.59250045e+02,
4.57693976e+02, 4.57693976e+02, 4.57693976e+02, 4.57693976e+02,
4.57023386e+02, 4.57023386e+02, 4.57023386e+02, 4.57023386e+02,
3.58689867e+02, 3.58689867e+02, 3.58689867e+02, 3.58689867e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999538, 0.99999538, 0.99999538, 0.99999538, 0.99998612,
0.99998612, 0.99998612, 0.99998612, 0.99996523, 0.99996523,
0.99996523, 0.99996523, 0.99991566, 0.99991566, 0.99991566,
0.99991566, 0.99980442, 0.99980442, 0.99980442, 0.99980442,
0.99956667, 0.99956667, 0.99956667, 0.99956667, 0.99908438,
0.99908438, 0.99908438, 0.99908438, 0.9981582 , 0.9981582 ,
0.9981582 , 0.9981582 , 0.99647912, 0.99647912, 0.99647912,
0.99647912, 0.99361312, 0.99361312, 0.99361312, 0.99361312,
0.98901706, 0.98901706, 0.98901706, 0.98901706, 0.98210095,
0.98210095, 0.98210095, 0.98210095, 0.97233385, 0.97233385,
0.97233385, 0.97233385, 0.95936505, 0.95936505, 0.95936505,
0.95936505, 0.94311347, 0.94311347, 0.94311347, 0.94311347,
0.92378545, 0.92378545, 0.92378545, 0.92378545, 0.90181228,
0.90181228, 0.90181228, 0.90181228, 0.87773428, 0.87773428,
0.87773428, 0.87773428, 0.85207217, 0.85207217, 0.85207217,
0.85207217, 0.82524779, 0.82524779, 0.82524779, 0.82524779,
0.79793012, 0.79793012, 0.79793012, 0.79793012, 0.77137347,
0.77137347, 0.77137347, 0.77137347, 0.74591438, 0.74591438,
0.74591438, 0.74591438, 0.72153077, 0.72153077, 0.72153077,
0.72153077, 0.69830271, 0.69830271, 0.69830271, 0.69830271,
0.67637729, 0.67637729, 0.67637729, 0.67637729, 0.6559935 ,
0.6559935 , 0.6559935 , 0.6559935 , 0.63749026, 0.63749026,
0.63749026, 0.63749026, 0.62127461, 0.62127461, 0.62127461,
0.62127461, 0.60775437, 0.60775437, 0.60775437, 0.60775437,
0.59719597, 0.59719597, 0.59719597, 0.59719597, 0.58961078,
0.58961078, 0.58961078, 0.58961078, 0.58459875, 0.58459875,
0.58459875, 0.58459875, 0.58154644, 0.58154644, 0.58154644,
0.58154644, 0.57956789, 0.57956789, 0.57956789, 0.57956789,
0.57809384, 0.57809384, 0.57809384, 0.57809384, 0.5766483 ,
0.5766483 , 0.5766483 , 0.5766483 , 0.57490927, 0.57490927,
0.57490927, 0.57490927, 0.57258674, 0.57258674, 0.57258674,
0.57258674, 0.57080227, 0.57080227, 0.57080227, 0.57080227,
0.56988942, 0.56988942, 0.56988942, 0.56988942, 0.56961772,
0.56961772, 0.56961772, 0.56961772, 0.56992665, 0.56992665,
0.56992665, 0.56992665, 0.57149984, 0.57149984, 0.57149984,
0.57149984, 0.57344071, 0.57344071, 0.57344071, 0.57344071,
0.5741351 , 0.5741351 , 0.5741351 , 0.5741351 , 0.57370279,
0.57370279, 0.57370279, 0.57370279, 0.57173725, 0.57173725,
0.57173725, 0.57173725, 0.56835509, 0.56835509, 0.56835509,
0.56835509, 0.56625614, 0.56625614, 0.56625614, 0.56625614,
0.57818403, 0.57818403, 0.57818403, 0.57818403, 0.78902347,
0.78902347, 0.78902347, 0.78902347, 4.84563091, 4.84563091,
4.84563091, 4.84563091, 5.89681659, 5.89681659, 5.89681659,
5.89681659, 5.22913532, 5.22913532, 5.22913532, 5.22913532,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95972771e+01, -1.95972771e+01, -1.95972771e+01, -1.95972771e+01,
-1.95969308e+01, -1.95969308e+01, -1.95969308e+01, -1.95969308e+01,
-1.95961489e+01, -1.95961489e+01, -1.95961489e+01, -1.95961489e+01,
-1.95942943e+01, -1.95942943e+01, -1.95942943e+01, -1.95942943e+01,
-1.95901316e+01, -1.95901316e+01, -1.95901316e+01, -1.95901316e+01,
-1.95812342e+01, -1.95812342e+01, -1.95812342e+01, -1.95812342e+01,
-1.95631808e+01, -1.95631808e+01, -1.95631808e+01, -1.95631808e+01,
-1.95284944e+01, -1.95284944e+01, -1.95284944e+01, -1.95284944e+01,
-1.94655530e+01, -1.94655530e+01, -1.94655530e+01, -1.94655530e+01,
-1.93579374e+01, -1.93579374e+01, -1.93579374e+01, -1.93579374e+01,
-1.91848670e+01, -1.91848670e+01, -1.91848670e+01, -1.91848670e+01,
-1.89232491e+01, -1.89232491e+01, -1.89232491e+01, -1.89232491e+01,
-1.85512896e+01, -1.85512896e+01, -1.85512896e+01, -1.85512896e+01,
-1.80527404e+01, -1.80527404e+01, -1.80527404e+01, -1.80527404e+01,
-1.74202459e+01, -1.74202459e+01, -1.74202459e+01, -1.74202459e+01,
-1.66564095e+01, -1.66564095e+01, -1.66564095e+01, -1.66564095e+01,
-1.57721388e+01, -1.57721388e+01, -1.57721388e+01, -1.57721388e+01,
-1.47829225e+01, -1.47829225e+01, -1.47829225e+01, -1.47829225e+01,
-1.37041866e+01, -1.37041866e+01, -1.37041866e+01, -1.37041866e+01,
-1.25468001e+01, -1.25468001e+01, -1.25468001e+01, -1.25468001e+01,
-1.13410969e+01, -1.13410969e+01, -1.13410969e+01, -1.13410969e+01,
-1.01388758e+01, -1.01388758e+01, -1.01388758e+01, -1.01388758e+01,
-8.95090319e+00, -8.95090319e+00, -8.95090319e+00, -8.95090319e+00,
-7.78279664e+00, -7.78279664e+00, -7.78279664e+00, -7.78279664e+00,
-6.64045094e+00, -6.64045094e+00, -6.64045094e+00, -6.64045094e+00,
-5.53417374e+00, -5.53417374e+00, -5.53417374e+00, -5.53417374e+00,
-4.47992916e+00, -4.47992916e+00, -4.47992916e+00, -4.47992916e+00,
-3.50010154e+00, -3.50010154e+00, -3.50010154e+00, -3.50010154e+00,
-2.62282955e+00, -2.62282955e+00, -2.62282955e+00, -2.62282955e+00,
-1.87734906e+00, -1.87734906e+00, -1.87734906e+00, -1.87734906e+00,
-1.28680720e+00, -1.28680720e+00, -1.28680720e+00, -1.28680720e+00,
-8.56753744e-01, -8.56753744e-01, -8.56753744e-01, -8.56753744e-01,
-5.73064847e-01, -5.73064847e-01, -5.73064847e-01, -5.73064847e-01,
-3.96338091e-01, -3.96338091e-01, -3.96338091e-01, -3.96338091e-01,
-2.87478608e-01, -2.87478608e-01, -2.87478608e-01, -2.87478608e-01,
-2.01767988e-01, -2.01767988e-01, -2.01767988e-01, -2.01767988e-01,
-1.21315708e-01, -1.21315708e-01, -1.21315708e-01, -1.21315708e-01,
-2.45951015e-02, -2.45951015e-02, -2.45951015e-02, -2.45951015e-02,
1.06631073e-01, 1.06631073e-01, 1.06631073e-01, 1.06631073e-01,
2.08068982e-01, 2.08068982e-01, 2.08068982e-01, 2.08068982e-01,
2.54184782e-01, 2.54184782e-01, 2.54184782e-01, 2.54184782e-01,
2.62270660e-01, 2.62270660e-01, 2.62270660e-01, 2.62270660e-01,
2.37118542e-01, 2.37118542e-01, 2.37118542e-01, 2.37118542e-01,
1.37104974e-01, 1.37104974e-01, 1.37104974e-01, 1.37104974e-01,
1.14799455e-02, 1.14799455e-02, 1.14799455e-02, 1.14799455e-02,
-5.88503272e-02, -5.88503272e-02, -5.88503272e-02, -5.88503272e-02,
-7.72674055e-02, -7.72674055e-02, -7.72674055e-02, -7.72674055e-02,
-7.69762484e-02, -7.69762484e-02, -7.69762484e-02, -7.69762484e-02,
-4.30209826e-02, -4.30209826e-02, -4.30209826e-02, -4.30209826e-02,
2.68143715e-02, 2.68143715e-02, 2.68143715e-02, 2.68143715e-02,
7.36951015e-02, 7.36951015e-02, 7.36951015e-02, 7.36951015e-02,
1.00445939e-01, 1.00445939e-01, 1.00445939e-01, 1.00445939e-01,
7.72401459e-02, 7.72401459e-02, 7.72401459e-02, 7.72401459e-02,
-3.04146394e-02, -3.04146394e-02, -3.04146394e-02, -3.04146394e-02,
-1.89020525e+00, -1.89020525e+00, -1.89020525e+00, -1.89020525e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99993532e+02, 9.99993532e+02, 9.99993532e+02, 9.99993532e+02,
9.99980573e+02, 9.99980573e+02, 9.99980573e+02, 9.99980573e+02,
9.99951320e+02, 9.99951320e+02, 9.99951320e+02, 9.99951320e+02,
9.99881930e+02, 9.99881930e+02, 9.99881930e+02, 9.99881930e+02,
9.99726202e+02, 9.99726202e+02, 9.99726202e+02, 9.99726202e+02,
9.99393418e+02, 9.99393418e+02, 9.99393418e+02, 9.99393418e+02,
9.98718474e+02, 9.98718474e+02, 9.98718474e+02, 9.98718474e+02,
9.97422790e+02, 9.97422790e+02, 9.97422790e+02, 9.97422790e+02,
9.95075374e+02, 9.95075374e+02, 9.95075374e+02, 9.95075374e+02,
9.91072910e+02, 9.91072910e+02, 9.91072910e+02, 9.91072910e+02,
9.84665288e+02, 9.84665288e+02, 9.84665288e+02, 9.84665288e+02,
9.75047519e+02, 9.75047519e+02, 9.75047519e+02, 9.75047519e+02,
9.61513458e+02, 9.61513458e+02, 9.61513458e+02, 9.61513458e+02,
9.43628510e+02, 9.43628510e+02, 9.43628510e+02, 9.43628510e+02,
9.21352632e+02, 9.21352632e+02, 9.21352632e+02, 9.21352632e+02,
8.95056756e+02, 8.95056756e+02, 8.95056756e+02, 8.95056756e+02,
8.65423729e+02, 8.65423729e+02, 8.65423729e+02, 8.65423729e+02,
8.33276228e+02, 8.33276228e+02, 8.33276228e+02, 8.33276228e+02,
7.99392547e+02, 7.99392547e+02, 7.99392547e+02, 7.99392547e+02,
7.64359306e+02, 7.64359306e+02, 7.64359306e+02, 7.64359306e+02,
7.29165290e+02, 7.29165290e+02, 7.29165290e+02, 7.29165290e+02,
6.95434650e+02, 6.95434650e+02, 6.95434650e+02, 6.95434650e+02,
6.63532667e+02, 6.63532667e+02, 6.63532667e+02, 6.63532667e+02,
6.33384943e+02, 6.33384943e+02, 6.33384943e+02, 6.33384943e+02,
6.05045669e+02, 6.05045669e+02, 6.05045669e+02, 6.05045669e+02,
5.78644436e+02, 5.78644436e+02, 5.78644436e+02, 5.78644436e+02,
5.54410312e+02, 5.54410312e+02, 5.54410312e+02, 5.54410312e+02,
5.32675821e+02, 5.32675821e+02, 5.32675821e+02, 5.32675821e+02,
5.13838499e+02, 5.13838499e+02, 5.13838499e+02, 5.13838499e+02,
4.98286665e+02, 4.98286665e+02, 4.98286665e+02, 4.98286665e+02,
4.86243970e+02, 4.86243970e+02, 4.86243970e+02, 4.86243970e+02,
4.77654925e+02, 4.77654925e+02, 4.77654925e+02, 4.77654925e+02,
4.72017226e+02, 4.72017226e+02, 4.72017226e+02, 4.72017226e+02,
4.68609235e+02, 4.68609235e+02, 4.68609235e+02, 4.68609235e+02,
4.66420881e+02, 4.66420881e+02, 4.66420881e+02, 4.66420881e+02,
4.64810868e+02, 4.64810868e+02, 4.64810868e+02, 4.64810868e+02,
4.63243299e+02, 4.63243299e+02, 4.63243299e+02, 4.63243299e+02,
4.61353730e+02, 4.61353730e+02, 4.61353730e+02, 4.61353730e+02,
4.58821840e+02, 4.58821840e+02, 4.58821840e+02, 4.58821840e+02,
4.56919372e+02, 4.56919372e+02, 4.56919372e+02, 4.56919372e+02,
4.56015430e+02, 4.56015430e+02, 4.56015430e+02, 4.56015430e+02,
4.55847073e+02, 4.55847073e+02, 4.55847073e+02, 4.55847073e+02,
4.56339867e+02, 4.56339867e+02, 4.56339867e+02, 4.56339867e+02,
4.58273518e+02, 4.58273518e+02, 4.58273518e+02, 4.58273518e+02,
4.60691622e+02, 4.60691622e+02, 4.60691622e+02, 4.60691622e+02,
4.61940052e+02, 4.61940052e+02, 4.61940052e+02, 4.61940052e+02,
4.62423882e+02, 4.62423882e+02, 4.62423882e+02, 4.62423882e+02,
4.62366066e+02, 4.62366066e+02, 4.62366066e+02, 4.62366066e+02,
4.61687055e+02, 4.61687055e+02, 4.61687055e+02, 4.61687055e+02,
4.60352457e+02, 4.60352457e+02, 4.60352457e+02, 4.60352457e+02,
4.59436330e+02, 4.59436330e+02, 4.59436330e+02, 4.59436330e+02,
4.59072327e+02, 4.59072327e+02, 4.59072327e+02, 4.59072327e+02,
4.58356748e+02, 4.58356748e+02, 4.58356748e+02, 4.58356748e+02,
4.60139027e+02, 4.60139027e+02, 4.60139027e+02, 4.60139027e+02,
3.86730264e+02, 3.86730264e+02, 3.86730264e+02, 3.86730264e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99998526, 0.99998526, 0.99998526, 0.99998526, 0.99995818,
0.99995818, 0.99995818, 0.99995818, 0.99990147, 0.99990147,
0.99990147, 0.99990147, 0.99977516, 0.99977516, 0.99977516,
0.99977516, 0.99951002, 0.99951002, 0.99951002, 0.99951002,
0.99898094, 0.99898094, 0.99898094, 0.99898094, 0.99798092,
0.99798092, 0.99798092, 0.99798092, 0.99619543, 0.99619543,
0.99619543, 0.99619543, 0.99319149, 0.99319149, 0.99319149,
0.99319149, 0.98843886, 0.98843886, 0.98843886, 0.98843886,
0.98137507, 0.98137507, 0.98137507, 0.98137507, 0.97150907,
0.97150907, 0.97150907, 0.97150907, 0.95853367, 0.95853367,
0.95853367, 0.95853367, 0.94240299, 0.94240299, 0.94240299,
0.94240299, 0.92334056, 0.92334056, 0.92334056, 0.92334056,
0.90177433, 0.90177433, 0.90177433, 0.90177433, 0.87822575,
0.87822575, 0.87822575, 0.87822575, 0.85319098, 0.85319098,
0.85319098, 0.85319098, 0.82706749, 0.82706749, 0.82706749,
0.82706749, 0.8004512 , 0.8004512 , 0.8004512 , 0.8004512 ,
0.77449713, 0.77449713, 0.77449713, 0.77449713, 0.74957228,
0.74957228, 0.74957228, 0.74957228, 0.72564661, 0.72564661,
0.72564661, 0.72564661, 0.70278531, 0.70278531, 0.70278531,
0.70278531, 0.68110979, 0.68110979, 0.68110979, 0.68110979,
0.66082377, 0.66082377, 0.66082377, 0.66082377, 0.64222378,
0.64222378, 0.64222378, 0.64222378, 0.62568987, 0.62568987,
0.62568987, 0.62568987, 0.61162285, 0.61162285, 0.61162285,
0.61162285, 0.60034623, 0.60034623, 0.60034623, 0.60034623,
0.5919485 , 0.5919485 , 0.5919485 , 0.5919485 , 0.58621901,
0.58621901, 0.58621901, 0.58621901, 0.58256005, 0.58256005,
0.58256005, 0.58256005, 0.58029577, 0.58029577, 0.58029577,
0.58029577, 0.57863174, 0.57863174, 0.57863174, 0.57863174,
0.57716122, 0.57716122, 0.57716122, 0.57716122, 0.57557548,
0.57557548, 0.57557548, 0.57557548, 0.57342052, 0.57342052,
0.57342052, 0.57342052, 0.57141033, 0.57141033, 0.57141033,
0.57141033, 0.57026937, 0.57026937, 0.57026937, 0.57026937,
0.56984951, 0.56984951, 0.56984951, 0.56984951, 0.5698766 ,
0.5698766 , 0.5698766 , 0.5698766 , 0.57088644, 0.57088644,
0.57088644, 0.57088644, 0.5729459 , 0.5729459 , 0.5729459 ,
0.5729459 , 0.57423757, 0.57423757, 0.57423757, 0.57423757,
0.574373 , 0.574373 , 0.574373 , 0.574373 , 0.57363822,
0.57363822, 0.57363822, 0.57363822, 0.57142449, 0.57142449,
0.57142449, 0.57142449, 0.56761669, 0.56761669, 0.56761669,
0.56761669, 0.56571332, 0.56571332, 0.56571332, 0.56571332,
0.57789593, 0.57789593, 0.57789593, 0.57789593, 0.78847243,
0.78847243, 0.78847243, 0.78847243, 4.84561161, 4.84561161,
4.84561161, 4.84561161, 5.92487332, 5.92487332, 5.92487332,
5.92487332, 5.56008978, 5.56008978, 5.56008978, 5.56008978,
1.01890847, 1.01890847, 1.01890847, 1.01890847, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95968986e+01, -1.95968986e+01, -1.95968986e+01, -1.95968986e+01,
-1.95958851e+01, -1.95958851e+01, -1.95958851e+01, -1.95958851e+01,
-1.95937634e+01, -1.95937634e+01, -1.95937634e+01, -1.95937634e+01,
-1.95890367e+01, -1.95890367e+01, -1.95890367e+01, -1.95890367e+01,
-1.95791140e+01, -1.95791140e+01, -1.95791140e+01, -1.95791140e+01,
-1.95593077e+01, -1.95593077e+01, -1.95593077e+01, -1.95593077e+01,
-1.95218526e+01, -1.95218526e+01, -1.95218526e+01, -1.95218526e+01,
-1.94549100e+01, -1.94549100e+01, -1.94549100e+01, -1.94549100e+01,
-1.93420837e+01, -1.93420837e+01, -1.93420837e+01, -1.93420837e+01,
-1.91630441e+01, -1.91630441e+01, -1.91630441e+01, -1.91630441e+01,
-1.88956946e+01, -1.88956946e+01, -1.88956946e+01, -1.88956946e+01,
-1.85197193e+01, -1.85197193e+01, -1.85197193e+01, -1.85197193e+01,
-1.80205547e+01, -1.80205547e+01, -1.80205547e+01, -1.80205547e+01,
-1.73923318e+01, -1.73923318e+01, -1.73923318e+01, -1.73923318e+01,
-1.66385920e+01, -1.66385920e+01, -1.66385920e+01, -1.66385920e+01,
-1.57704949e+01, -1.57704949e+01, -1.57704949e+01, -1.57704949e+01,
-1.48032199e+01, -1.48032199e+01, -1.48032199e+01, -1.48032199e+01,
-1.37516531e+01, -1.37516531e+01, -1.37516531e+01, -1.37516531e+01,
-1.26262172e+01, -1.26262172e+01, -1.26262172e+01, -1.26262172e+01,
-1.14535020e+01, -1.14535020e+01, -1.14535020e+01, -1.14535020e+01,
-1.02821453e+01, -1.02821453e+01, -1.02821453e+01, -1.02821453e+01,
-9.12320232e+00, -9.12320232e+00, -9.12320232e+00, -9.12320232e+00,
-7.98177804e+00, -7.98177804e+00, -7.98177804e+00, -7.98177804e+00,
-6.86275610e+00, -6.86275610e+00, -6.86275610e+00, -6.86275610e+00,
-5.77476709e+00, -5.77476709e+00, -5.77476709e+00, -5.77476709e+00,
-4.73138920e+00, -4.73138920e+00, -4.73138920e+00, -4.73138920e+00,
-3.75227727e+00, -3.75227727e+00, -3.75227727e+00, -3.75227727e+00,
-2.86276827e+00, -2.86276827e+00, -2.86276827e+00, -2.86276827e+00,
-2.09133332e+00, -2.09133332e+00, -2.09133332e+00, -2.09133332e+00,
-1.46258067e+00, -1.46258067e+00, -1.46258067e+00, -1.46258067e+00,
-9.89318476e-01, -9.89318476e-01, -9.89318476e-01, -9.89318476e-01,
-6.62514752e-01, -6.62514752e-01, -6.62514752e-01, -6.62514752e-01,
-4.55770547e-01, -4.55770547e-01, -4.55770547e-01, -4.55770547e-01,
-3.24250432e-01, -3.24250432e-01, -3.24250432e-01, -3.24250432e-01,
-2.32672703e-01, -2.32672703e-01, -2.32672703e-01, -2.32672703e-01,
-1.48617001e-01, -1.48617001e-01, -1.48617001e-01, -1.48617001e-01,
-5.86592212e-02, -5.86592212e-02, -5.86592212e-02, -5.86592212e-02,
6.31526138e-02, 6.31526138e-02, 6.31526138e-02, 6.31526138e-02,
1.75222055e-01, 1.75222055e-01, 1.75222055e-01, 1.75222055e-01,
2.38802823e-01, 2.38802823e-01, 2.38802823e-01, 2.38802823e-01,
2.56988016e-01, 2.56988016e-01, 2.56988016e-01, 2.56988016e-01,
2.47598723e-01, 2.47598723e-01, 2.47598723e-01, 2.47598723e-01,
1.80365419e-01, 1.80365419e-01, 1.80365419e-01, 1.80365419e-01,
5.14782436e-02, 5.14782436e-02, 5.14782436e-02, 5.14782436e-02,
-3.39863591e-02, -3.39863591e-02, -3.39863591e-02, -3.39863591e-02,
-7.21591911e-02, -7.21591911e-02, -7.21591911e-02, -7.21591911e-02,
-7.57049020e-02, -7.57049020e-02, -7.57049020e-02, -7.57049020e-02,
-5.76945925e-02, -5.76945925e-02, -5.76945925e-02, -5.76945925e-02,
2.02918872e-03, 2.02918872e-03, 2.02918872e-03, 2.02918872e-03,
5.93265617e-02, 5.93265617e-02, 5.93265617e-02, 5.93265617e-02,
8.69993438e-02, 8.69993438e-02, 8.69993438e-02, 8.69993438e-02,
9.91468953e-02, 9.91468953e-02, 9.91468953e-02, 9.91468953e-02,
6.81715401e-02, 6.81715401e-02, 6.81715401e-02, 6.81715401e-02,
-5.78795911e-02, -5.78795911e-02, -5.78795911e-02, -5.78795911e-02,
-1.48260790e+00, -1.48260790e+00, -1.48260790e+00, -1.48260790e+00,
-1.92261170e+01, -1.92261170e+01, -1.92261170e+01, -1.92261170e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99979369e+02, 9.99979369e+02, 9.99979369e+02, 9.99979369e+02,
9.99941447e+02, 9.99941447e+02, 9.99941447e+02, 9.99941447e+02,
9.99862069e+02, 9.99862069e+02, 9.99862069e+02, 9.99862069e+02,
9.99685247e+02, 9.99685247e+02, 9.99685247e+02, 9.99685247e+02,
9.99314134e+02, 9.99314134e+02, 9.99314134e+02, 9.99314134e+02,
9.98573724e+02, 9.98573724e+02, 9.98573724e+02, 9.98573724e+02,
9.97174855e+02, 9.97174855e+02, 9.97174855e+02, 9.97174855e+02,
9.94678914e+02, 9.94678914e+02, 9.94678914e+02, 9.94678914e+02,
9.90484455e+02, 9.90484455e+02, 9.90484455e+02, 9.90484455e+02,
9.83859889e+02, 9.83859889e+02, 9.83859889e+02, 9.83859889e+02,
9.74039277e+02, 9.74039277e+02, 9.74039277e+02, 9.74039277e+02,
9.60372194e+02, 9.60372194e+02, 9.60372194e+02, 9.60372194e+02,
9.42483603e+02, 9.42483603e+02, 9.42483603e+02, 9.42483603e+02,
9.20379525e+02, 9.20379525e+02, 9.20379525e+02, 9.20379525e+02,
8.94450060e+02, 8.94450060e+02, 8.94450060e+02, 8.94450060e+02,
8.65367467e+02, 8.65367467e+02, 8.65367467e+02, 8.65367467e+02,
8.33922282e+02, 8.33922282e+02, 8.33922282e+02, 8.33922282e+02,
8.00853716e+02, 8.00853716e+02, 8.00853716e+02, 8.00853716e+02,
7.66714287e+02, 7.66714287e+02, 7.66714287e+02, 7.66714287e+02,
7.32385088e+02, 7.32385088e+02, 7.32385088e+02, 7.32385088e+02,
6.99371304e+02, 6.99371304e+02, 6.99371304e+02, 6.99371304e+02,
6.68082034e+02, 6.68082034e+02, 6.68082034e+02, 6.68082034e+02,
6.38437470e+02, 6.38437470e+02, 6.38437470e+02, 6.38437470e+02,
6.10476279e+02, 6.10476279e+02, 6.10476279e+02, 6.10476279e+02,
5.84302961e+02, 5.84302961e+02, 5.84302961e+02, 5.84302961e+02,
5.60112630e+02, 5.60112630e+02, 5.60112630e+02, 5.60112630e+02,
5.38197751e+02, 5.38197751e+02, 5.38197751e+02, 5.38197751e+02,
5.18933488e+02, 5.18933488e+02, 5.18933488e+02, 5.18933488e+02,
5.02706670e+02, 5.02706670e+02, 5.02706670e+02, 5.02706670e+02,
4.89810839e+02, 4.89810839e+02, 4.89810839e+02, 4.89810839e+02,
4.80277054e+02, 4.80277054e+02, 4.80277054e+02, 4.80277054e+02,
4.73814598e+02, 4.73814598e+02, 4.73814598e+02, 4.73814598e+02,
4.69715186e+02, 4.69715186e+02, 4.69715186e+02, 4.69715186e+02,
4.67199322e+02, 4.67199322e+02, 4.67199322e+02, 4.67199322e+02,
4.65366731e+02, 4.65366731e+02, 4.65366731e+02, 4.65366731e+02,
4.63761585e+02, 4.63761585e+02, 4.63761585e+02, 4.63761585e+02,
4.62037437e+02, 4.62037437e+02, 4.62037437e+02, 4.62037437e+02,
4.59682472e+02, 4.59682472e+02, 4.59682472e+02, 4.59682472e+02,
4.57502635e+02, 4.57502635e+02, 4.57502635e+02, 4.57502635e+02,
4.56321878e+02, 4.56321878e+02, 4.56321878e+02, 4.56321878e+02,
4.55970132e+02, 4.55970132e+02, 4.55970132e+02, 4.55970132e+02,
4.56136790e+02, 4.56136790e+02, 4.56136790e+02, 4.56136790e+02,
4.57415845e+02, 4.57415845e+02, 4.57415845e+02, 4.57415845e+02,
4.59897903e+02, 4.59897903e+02, 4.59897903e+02, 4.59897903e+02,
4.61588569e+02, 4.61588569e+02, 4.61588569e+02, 4.61588569e+02,
4.62209244e+02, 4.62209244e+02, 4.62209244e+02, 4.62209244e+02,
4.62353018e+02, 4.62353018e+02, 4.62353018e+02, 4.62353018e+02,
4.62015675e+02, 4.62015675e+02, 4.62015675e+02, 4.62015675e+02,
4.60848083e+02, 4.60848083e+02, 4.60848083e+02, 4.60848083e+02,
4.59735200e+02, 4.59735200e+02, 4.59735200e+02, 4.59735200e+02,
4.59147681e+02, 4.59147681e+02, 4.59147681e+02, 4.59147681e+02,
4.59088113e+02, 4.59088113e+02, 4.59088113e+02, 4.59088113e+02,
4.59331732e+02, 4.59331732e+02, 4.59331732e+02, 4.59331732e+02,
4.63222937e+02, 4.63222937e+02, 4.63222937e+02, 4.63222937e+02,
4.12875360e+02, 4.12875360e+02, 4.12875360e+02, 4.12875360e+02,
2.66044212e+00, 2.66044212e+00, 2.66044212e+00, 2.66044212e+00,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.9999568 , 0.9999568 , 0.9999568 , 0.9999568 , 0.99988411,
0.99988411, 0.99988411, 0.99988411, 0.99974329, 0.99974329,
0.99974329, 0.99974329, 0.99944863, 0.99944863, 0.99944863,
0.99944863, 0.9988707 , 0.9988707 , 0.9988707 , 0.9988707 ,
0.99779482, 0.99779482, 0.99779482, 0.99779482, 0.99590186,
0.99590186, 0.99590186, 0.99590186, 0.99276106, 0.99276106,
0.99276106, 0.99276106, 0.98785596, 0.98785596, 0.98785596,
0.98785596, 0.9806516 , 0.9806516 , 0.9806516 , 0.9806516 ,
0.97069523, 0.97069523, 0.97069523, 0.97069523, 0.95772017,
0.95772017, 0.95772017, 0.95772017, 0.94171224, 0.94171224,
0.94171224, 0.94171224, 0.92290936, 0.92290936, 0.92290936,
0.92290936, 0.90173487, 0.90173487, 0.90173487, 0.90173487,
0.8786917 , 0.8786917 , 0.8786917 , 0.8786917 , 0.85425278,
0.85425278, 0.85425278, 0.85425278, 0.8287934 , 0.8287934 ,
0.8287934 , 0.8287934 , 0.80284574, 0.80284574, 0.80284574,
0.80284574, 0.77747275, 0.77747275, 0.77747275, 0.77747275,
0.75306658, 0.75306658, 0.75306658, 0.75306658, 0.72958985,
0.72958985, 0.72958985, 0.72958985, 0.70709754, 0.70709754,
0.70709754, 0.70709754, 0.68568965, 0.68568965, 0.68568965,
0.68568965, 0.66553819, 0.66553819, 0.66553819, 0.66553819,
0.64690258, 0.64690258, 0.64690258, 0.64690258, 0.63012541,
0.63012541, 0.63012541, 0.63012541, 0.61559842, 0.61559842,
0.61559842, 0.61559842, 0.60366745, 0.60366745, 0.60366745,
0.60366745, 0.59451738, 0.59451738, 0.59451738, 0.59451738,
0.58802631, 0.58802631, 0.58802631, 0.58802631, 0.58378365,
0.58378365, 0.58378365, 0.58378365, 0.58107477, 0.58107477,
0.58107477, 0.58107477, 0.57925414, 0.57925414, 0.57925414,
0.57925414, 0.5776933 , 0.5776933 , 0.5776933 , 0.5776933 ,
0.57614202, 0.57614202, 0.57614202, 0.57614202, 0.57421305,
0.57421305, 0.57421305, 0.57421305, 0.57210238, 0.57210238,
0.57210238, 0.57210238, 0.57069122, 0.57069122, 0.57069122,
0.57069122, 0.57008977, 0.57008977, 0.57008977, 0.57008977,
0.56996923, 0.56996923, 0.56996923, 0.56996923, 0.57050701,
0.57050701, 0.57050701, 0.57050701, 0.57229866, 0.57229866,
0.57229866, 0.57229866, 0.57395096, 0.57395096, 0.57395096,
0.57395096, 0.57464105, 0.57464105, 0.57464105, 0.57464105,
0.57441387, 0.57441387, 0.57441387, 0.57441387, 0.57344931,
0.57344931, 0.57344931, 0.57344931, 0.57081974, 0.57081974,
0.57081974, 0.57081974, 0.56695245, 0.56695245, 0.56695245,
0.56695245, 0.5653931 , 0.5653931 , 0.5653931 , 0.5653931 ,
0.57781064, 0.57781064, 0.57781064, 0.57781064, 0.78815072,
0.78815072, 0.78815072, 0.78815072, 4.84873862, 4.84873862,
4.84873862, 4.84873862, 5.95129464, 5.95129464, 5.95129464,
5.95129464, 5.69033524, 5.69033524, 5.69033524, 5.69033524,
1.23675129, 1.23675129, 1.23675129, 1.23675129, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95958337e+01, -1.95958337e+01, -1.95958337e+01, -1.95958337e+01,
-1.95931138e+01, -1.95931138e+01, -1.95931138e+01, -1.95931138e+01,
-1.95878441e+01, -1.95878441e+01, -1.95878441e+01, -1.95878441e+01,
-1.95768162e+01, -1.95768162e+01, -1.95768162e+01, -1.95768162e+01,
-1.95551801e+01, -1.95551801e+01, -1.95551801e+01, -1.95551801e+01,
-1.95148789e+01, -1.95148789e+01, -1.95148789e+01, -1.95148789e+01,
-1.94438939e+01, -1.94438939e+01, -1.94438939e+01, -1.94438939e+01,
-1.93258934e+01, -1.93258934e+01, -1.93258934e+01, -1.93258934e+01,
-1.91410336e+01, -1.91410336e+01, -1.91410336e+01, -1.91410336e+01,
-1.88682144e+01, -1.88682144e+01, -1.88682144e+01, -1.88682144e+01,
-1.84885452e+01, -1.84885452e+01, -1.84885452e+01, -1.84885452e+01,
-1.79890388e+01, -1.79890388e+01, -1.79890388e+01, -1.79890388e+01,
-1.73651775e+01, -1.73651775e+01, -1.73651775e+01, -1.73651775e+01,
-1.66213186e+01, -1.66213186e+01, -1.66213186e+01, -1.66213186e+01,
-1.57687966e+01, -1.57687966e+01, -1.57687966e+01, -1.57687966e+01,
-1.48224580e+01, -1.48224580e+01, -1.48224580e+01, -1.48224580e+01,
-1.37966567e+01, -1.37966567e+01, -1.37966567e+01, -1.37966567e+01,
-1.27013995e+01, -1.27013995e+01, -1.27013995e+01, -1.27013995e+01,
-1.15600509e+01, -1.15600509e+01, -1.15600509e+01, -1.15600509e+01,
-1.04182048e+01, -1.04182048e+01, -1.04182048e+01, -1.04182048e+01,
-9.28712587e+00, -9.28712587e+00, -9.28712587e+00, -9.28712587e+00,
-8.17164148e+00, -8.17164148e+00, -8.17164148e+00, -8.17164148e+00,
-7.07566309e+00, -7.07566309e+00, -7.07566309e+00, -7.07566309e+00,
-6.00644370e+00, -6.00644370e+00, -6.00644370e+00, -6.00644370e+00,
-4.97553083e+00, -4.97553083e+00, -4.97553083e+00, -4.97553083e+00,
-3.99995165e+00, -3.99995165e+00, -3.99995165e+00, -3.99995165e+00,
-3.10256800e+00, -3.10256800e+00, -3.10256800e+00, -3.10256800e+00,
-2.31003786e+00, -2.31003786e+00, -2.31003786e+00, -2.31003786e+00,
-1.64818046e+00, -1.64818046e+00, -1.64818046e+00, -1.64818046e+00,
-1.13330666e+00, -1.13330666e+00, -1.13330666e+00, -1.13330666e+00,
-7.65570923e-01, -7.65570923e-01, -7.65570923e-01, -7.65570923e-01,
-5.22454306e-01, -5.22454306e-01, -5.22454306e-01, -5.22454306e-01,
-3.69998280e-01, -3.69998280e-01, -3.69998280e-01, -3.69998280e-01,
-2.64295091e-01, -2.64295091e-01, -2.64295091e-01, -2.64295091e-01,
-1.77586047e-01, -1.77586047e-01, -1.77586047e-01, -1.77586047e-01,
-8.97984962e-02, -8.97984962e-02, -8.97984962e-02, -8.97984962e-02,
2.02366682e-02, 2.02366682e-02, 2.02366682e-02, 2.02366682e-02,
1.40871427e-01, 1.40871427e-01, 1.40871427e-01, 1.40871427e-01,
2.17683902e-01, 2.17683902e-01, 2.17683902e-01, 2.17683902e-01,
2.48809269e-01, 2.48809269e-01, 2.48809269e-01, 2.48809269e-01,
2.49974501e-01, 2.49974501e-01, 2.49974501e-01, 2.49974501e-01,
2.11052255e-01, 2.11052255e-01, 2.11052255e-01, 2.11052255e-01,
9.78510344e-02, 9.78510344e-02, 9.78510344e-02, 9.78510344e-02,
-8.37863695e-03, -8.37863695e-03, -8.37863695e-03, -8.37863695e-03,
-5.72066887e-02, -5.72066887e-02, -5.72066887e-02, -5.72066887e-02,
-7.30169147e-02, -7.30169147e-02, -7.30169147e-02, -7.30169147e-02,
-6.62494184e-02, -6.62494184e-02, -6.62494184e-02, -6.62494184e-02,
-2.27194938e-02, -2.27194938e-02, -2.27194938e-02, -2.27194938e-02,
4.23152353e-02, 4.23152353e-02, 4.23152353e-02, 4.23152353e-02,
7.98077113e-02, 7.98077113e-02, 7.98077113e-02, 7.98077113e-02,
8.99657409e-02, 8.99657409e-02, 8.99657409e-02, 8.99657409e-02,
8.76200018e-02, 8.76200018e-02, 8.76200018e-02, 8.76200018e-02,
5.15213448e-02, 5.15213448e-02, 5.15213448e-02, 5.15213448e-02,
-8.33703850e-02, -8.33703850e-02, -8.33703850e-02, -8.33703850e-02,
-1.17071868e+00, -1.17071868e+00, -1.17071868e+00, -1.17071868e+00,
-1.57576738e+01, -1.57576738e+01, -1.57576738e+01, -1.57576738e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99939525e+02, 9.99939525e+02, 9.99939525e+02, 9.99939525e+02,
9.99837766e+02, 9.99837766e+02, 9.99837766e+02, 9.99837766e+02,
9.99640638e+02, 9.99640638e+02, 9.99640638e+02, 9.99640638e+02,
9.99228211e+02, 9.99228211e+02, 9.99228211e+02, 9.99228211e+02,
9.98419485e+02, 9.98419485e+02, 9.98419485e+02, 9.98419485e+02,
9.96914590e+02, 9.96914590e+02, 9.96914590e+02, 9.96914590e+02,
9.94268703e+02, 9.94268703e+02, 9.94268703e+02, 9.94268703e+02,
9.89883820e+02, 9.89883820e+02, 9.89883820e+02, 9.89883820e+02,
9.83048138e+02, 9.83048138e+02, 9.83048138e+02, 9.83048138e+02,
9.73034649e+02, 9.73034649e+02, 9.73034649e+02, 9.73034649e+02,
9.59246390e+02, 9.59246390e+02, 9.59246390e+02, 9.59246390e+02,
9.41363662e+02, 9.41363662e+02, 9.41363662e+02, 9.41363662e+02,
9.19433724e+02, 9.19433724e+02, 9.19433724e+02, 9.19433724e+02,
8.93862202e+02, 8.93862202e+02, 8.93862202e+02, 8.93862202e+02,
8.65309492e+02, 8.65309492e+02, 8.65309492e+02, 8.65309492e+02,
8.34535046e+02, 8.34535046e+02, 8.34535046e+02, 8.34535046e+02,
8.02241316e+02, 8.02241316e+02, 8.02241316e+02, 8.02241316e+02,
7.68949683e+02, 7.68949683e+02, 7.68949683e+02, 7.68949683e+02,
7.35447246e+02, 7.35447246e+02, 7.35447246e+02, 7.35447246e+02,
7.03127884e+02, 7.03127884e+02, 7.03127884e+02, 7.03127884e+02,
6.72436702e+02, 6.72436702e+02, 6.72436702e+02, 6.72436702e+02,
6.43288985e+02, 6.43288985e+02, 6.43288985e+02, 6.43288985e+02,
6.15714808e+02, 6.15714808e+02, 6.15714808e+02, 6.15714808e+02,
5.89796153e+02, 5.89796153e+02, 5.89796153e+02, 5.89796153e+02,
5.65696642e+02, 5.65696642e+02, 5.65696642e+02, 5.65696642e+02,
5.43673421e+02, 5.43673421e+02, 5.43673421e+02, 5.43673421e+02,
5.24067479e+02, 5.24067479e+02, 5.24067479e+02, 5.24067479e+02,
5.07263040e+02, 5.07263040e+02, 5.07263040e+02, 5.07263040e+02,
4.93583436e+02, 4.93583436e+02, 4.93583436e+02, 4.93583436e+02,
4.83170545e+02, 4.83170545e+02, 4.83170545e+02, 4.83170545e+02,
4.75830313e+02, 4.75830313e+02, 4.75830313e+02, 4.75830313e+02,
4.71062300e+02, 4.71062300e+02, 4.71062300e+02, 4.71062300e+02,
4.68039933e+02, 4.68039933e+02, 4.68039933e+02, 4.68039933e+02,
4.66025920e+02, 4.66025920e+02, 4.66025920e+02, 4.66025920e+02,
4.64310633e+02, 4.64310633e+02, 4.64310633e+02, 4.64310633e+02,
4.62615659e+02, 4.62615659e+02, 4.62615659e+02, 4.62615659e+02,
4.60507433e+02, 4.60507433e+02, 4.60507433e+02, 4.60507433e+02,
4.58203933e+02, 4.58203933e+02, 4.58203933e+02, 4.58203933e+02,
4.56696564e+02, 4.56696564e+02, 4.56696564e+02, 4.56696564e+02,
4.56120188e+02, 4.56120188e+02, 4.56120188e+02, 4.56120188e+02,
4.56103981e+02, 4.56103981e+02, 4.56103981e+02, 4.56103981e+02,
4.56842760e+02, 4.56842760e+02, 4.56842760e+02, 4.56842760e+02,
4.59001087e+02, 4.59001087e+02, 4.59001087e+02, 4.59001087e+02,
4.61027897e+02, 4.61027897e+02, 4.61027897e+02, 4.61027897e+02,
4.62043421e+02, 4.62043421e+02, 4.62043421e+02, 4.62043421e+02,
4.62256123e+02, 4.62256123e+02, 4.62256123e+02, 4.62256123e+02,
4.62141741e+02, 4.62141741e+02, 4.62141741e+02, 4.62141741e+02,
4.61332932e+02, 4.61332932e+02, 4.61332932e+02, 4.61332932e+02,
4.60092606e+02, 4.60092606e+02, 4.60092606e+02, 4.60092606e+02,
4.59370752e+02, 4.59370752e+02, 4.59370752e+02, 4.59370752e+02,
4.59088554e+02, 4.59088554e+02, 4.59088554e+02, 4.59088554e+02,
4.59254680e+02, 4.59254680e+02, 4.59254680e+02, 4.59254680e+02,
4.60509205e+02, 4.60509205e+02, 4.60509205e+02, 4.60509205e+02,
4.66097515e+02, 4.66097515e+02, 4.66097515e+02, 4.66097515e+02,
4.26096149e+02, 4.26096149e+02, 4.26096149e+02, 4.26096149e+02,
3.00682752e+01, 3.00682752e+01, 3.00682752e+01, 3.00682752e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99988326, 0.99988326, 0.99988326, 0.99988326, 0.999704 ,
0.999704 , 0.999704 , 0.999704 , 0.99938342, 0.99938342,
0.99938342, 0.99938342, 0.99875337, 0.99875337, 0.99875337,
0.99875337, 0.9976 , 0.9976 , 0.9976 , 0.9976 ,
0.99559867, 0.99559867, 0.99559867, 0.99559867, 0.99232231,
0.99232231, 0.99232231, 0.99232231, 0.98726893, 0.98726893,
0.98726893, 0.98726893, 0.97993094, 0.97993094, 0.97993094,
0.97993094, 0.96989227, 0.96989227, 0.96989227, 0.96989227,
0.95692399, 0.95692399, 0.95692399, 0.95692399, 0.94104033,
0.94104033, 0.94104033, 0.94104033, 0.92249112, 0.92249112,
0.92249112, 0.92249112, 0.90169405, 0.90169405, 0.90169405,
0.90169405, 0.87913399, 0.87913399, 0.87913399, 0.87913399,
0.85526183, 0.85526183, 0.85526183, 0.85526183, 0.83043251,
0.83043251, 0.83043251, 0.83043251, 0.80512253, 0.80512253,
0.80512253, 0.80512253, 0.78031019, 0.78031019, 0.78031019,
0.78031019, 0.75640567, 0.75640567, 0.75640567, 0.75640567,
0.73337002, 0.73337002, 0.73337002, 0.73337002, 0.71124617,
0.71124617, 0.71124617, 0.71124617, 0.69011779, 0.69011779,
0.69011779, 0.69011779, 0.67013055, 0.67013055, 0.67013055,
0.67013055, 0.6515084 , 0.6515084 , 0.6515084 , 0.6515084 ,
0.63455967, 0.63455967, 0.63455967, 0.63455967, 0.61965102,
0.61965102, 0.61965102, 0.61965102, 0.60714502, 0.60714502,
0.60714502, 0.60714502, 0.59727955, 0.59727955, 0.59727955,
0.59727955, 0.59006029, 0.59006029, 0.59006029, 0.59006029,
0.58515653, 0.58515653, 0.58515653, 0.58515653, 0.58201574,
0.58201574, 0.58201574, 0.58201574, 0.57990123, 0.57990123,
0.57990123, 0.57990123, 0.57826932, 0.57826932, 0.57826932,
0.57826932, 0.57670096, 0.57670096, 0.57670096, 0.57670096,
0.57492881, 0.57492881, 0.57492881, 0.57492881, 0.57279932,
0.57279932, 0.57279932, 0.57279932, 0.57119697, 0.57119697,
0.57119697, 0.57119697, 0.57036293, 0.57036293, 0.57036293,
0.57036293, 0.57011927, 0.57011927, 0.57011927, 0.57011927,
0.57033952, 0.57033952, 0.57033952, 0.57033952, 0.57164869,
0.57164869, 0.57164869, 0.57164869, 0.57354091, 0.57354091,
0.57354091, 0.57354091, 0.57453357, 0.57453357, 0.57453357,
0.57453357, 0.57476819, 0.57476819, 0.57476819, 0.57476819,
0.57434562, 0.57434562, 0.57434562, 0.57434562, 0.57305035,
0.57305035, 0.57305035, 0.57305035, 0.57007335, 0.57007335,
0.57007335, 0.57007335, 0.56651932, 0.56651932, 0.56651932,
0.56651932, 0.56528181, 0.56528181, 0.56528181, 0.56528181,
0.57785762, 0.57785762, 0.57785762, 0.57785762, 0.78811457,
0.78811457, 0.78811457, 0.78811457, 4.85478737, 4.85478737,
4.85478737, 4.85478737, 5.97063495, 5.97063495, 5.97063495,
5.97063495, 5.73063938, 5.73063938, 5.73063938, 5.73063938,
1.54830122, 1.54830122, 1.54830122, 1.54830122, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95930819e+01, -1.95930819e+01, -1.95930819e+01, -1.95930819e+01,
-1.95863736e+01, -1.95863736e+01, -1.95863736e+01, -1.95863736e+01,
-1.95743754e+01, -1.95743754e+01, -1.95743754e+01, -1.95743754e+01,
-1.95507862e+01, -1.95507862e+01, -1.95507862e+01, -1.95507862e+01,
-1.95075773e+01, -1.95075773e+01, -1.95075773e+01, -1.95075773e+01,
-1.94325144e+01, -1.94325144e+01, -1.94325144e+01, -1.94325144e+01,
-1.93093843e+01, -1.93093843e+01, -1.93093843e+01, -1.93093843e+01,
-1.91188563e+01, -1.91188563e+01, -1.91188563e+01, -1.91188563e+01,
-1.88408241e+01, -1.88408241e+01, -1.88408241e+01, -1.88408241e+01,
-1.84577672e+01, -1.84577672e+01, -1.84577672e+01, -1.84577672e+01,
-1.79581724e+01, -1.79581724e+01, -1.79581724e+01, -1.79581724e+01,
-1.73387486e+01, -1.73387486e+01, -1.73387486e+01, -1.73387486e+01,
-1.66045599e+01, -1.66045599e+01, -1.66045599e+01, -1.66045599e+01,
-1.57670502e+01, -1.57670502e+01, -1.57670502e+01, -1.57670502e+01,
-1.48407146e+01, -1.48407146e+01, -1.48407146e+01, -1.48407146e+01,
-1.38393853e+01, -1.38393853e+01, -1.38393853e+01, -1.38393853e+01,
-1.27726733e+01, -1.27726733e+01, -1.27726733e+01, -1.27726733e+01,
-1.16611698e+01, -1.16611698e+01, -1.16611698e+01, -1.16611698e+01,
-1.05475404e+01, -1.05475404e+01, -1.05475404e+01, -1.05475404e+01,
-9.44325436e+00, -9.44325436e+00, -9.44325436e+00, -9.44325436e+00,
-8.35283609e+00, -8.35283609e+00, -8.35283609e+00, -8.35283609e+00,
-7.27955851e+00, -7.27955851e+00, -7.27955851e+00, -7.27955851e+00,
-6.22940672e+00, -6.22940672e+00, -6.22940672e+00, -6.22940672e+00,
-5.21215603e+00, -5.21215603e+00, -5.21215603e+00, -5.21215603e+00,
-4.24254847e+00, -4.24254847e+00, -4.24254847e+00, -4.24254847e+00,
-3.34084414e+00, -3.34084414e+00, -3.34084414e+00, -3.34084414e+00,
-2.53194446e+00, -2.53194446e+00, -2.53194446e+00, -2.53194446e+00,
-1.84137728e+00, -1.84137728e+00, -1.84137728e+00, -1.84137728e+00,
-1.28893894e+00, -1.28893894e+00, -1.28893894e+00, -1.28893894e+00,
-8.79748296e-01, -8.79748296e-01, -8.79748296e-01, -8.79748296e-01,
-6.01098798e-01, -6.01098798e-01, -6.01098798e-01, -6.01098798e-01,
-4.20495914e-01, -4.20495914e-01, -4.20495914e-01, -4.20495914e-01,
-3.01953822e-01, -3.01953822e-01, -3.01953822e-01, -3.01953822e-01,
-2.07663266e-01, -2.07663266e-01, -2.07663266e-01, -2.07663266e-01,
-1.19176721e-01, -1.19176721e-01, -1.19176721e-01, -1.19176721e-01,
-1.91871139e-02, -1.91871139e-02, -1.91871139e-02, -1.91871139e-02,
1.02083270e-01, 1.02083270e-01, 1.02083270e-01, 1.02083270e-01,
1.94011664e-01, 1.94011664e-01, 1.94011664e-01, 1.94011664e-01,
2.37494805e-01, 2.37494805e-01, 2.37494805e-01, 2.37494805e-01,
2.46839725e-01, 2.46839725e-01, 2.46839725e-01, 2.46839725e-01,
2.27976078e-01, 2.27976078e-01, 2.27976078e-01, 2.27976078e-01,
1.44238385e-01, 1.44238385e-01, 1.44238385e-01, 1.44238385e-01,
2.56541650e-02, 2.56541650e-02, 2.56541650e-02, 2.56541650e-02,
-4.30667260e-02, -4.30667260e-02, -4.30667260e-02, -4.30667260e-02,
-6.50812561e-02, -6.50812561e-02, -6.50812561e-02, -6.50812561e-02,
-6.75568397e-02, -6.75568397e-02, -6.75568397e-02, -6.75568397e-02,
-4.29914005e-02, -4.29914005e-02, -4.29914005e-02, -4.29914005e-02,
2.01746029e-02, 2.01746029e-02, 2.01746029e-02, 2.01746029e-02,
6.79679763e-02, 6.79679763e-02, 6.79679763e-02, 6.79679763e-02,
8.76333776e-02, 8.76333776e-02, 8.76333776e-02, 8.76333776e-02,
8.70600238e-02, 8.70600238e-02, 8.70600238e-02, 8.70600238e-02,
6.94231077e-02, 6.94231077e-02, 6.94231077e-02, 6.94231077e-02,
2.81120195e-02, 2.81120195e-02, 2.81120195e-02, 2.81120195e-02,
-9.88861807e-02, -9.88861807e-02, -9.88861807e-02, -9.88861807e-02,
-8.40443242e-01, -8.40443242e-01, -8.40443242e-01, -8.40443242e-01,
-1.27034745e+01, -1.27034745e+01, -1.27034745e+01, -1.27034745e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99836573e+02, 9.99836573e+02, 9.99836573e+02, 9.99836573e+02,
9.99585634e+02, 9.99585634e+02, 9.99585634e+02, 9.99585634e+02,
9.99136947e+02, 9.99136947e+02, 9.99136947e+02, 9.99136947e+02,
9.98255317e+02, 9.98255317e+02, 9.98255317e+02, 9.98255317e+02,
9.96642152e+02, 9.96642152e+02, 9.96642152e+02, 9.96642152e+02,
9.93845109e+02, 9.93845109e+02, 9.93845109e+02, 9.93845109e+02,
9.89271683e+02, 9.89271683e+02, 9.89271683e+02, 9.89271683e+02,
9.82230823e+02, 9.82230823e+02, 9.82230823e+02, 9.82230823e+02,
9.72034191e+02, 9.72034191e+02, 9.72034191e+02, 9.72034191e+02,
9.58135996e+02, 9.58135996e+02, 9.58135996e+02, 9.58135996e+02,
9.40267890e+02, 9.40267890e+02, 9.40267890e+02, 9.40267890e+02,
9.18513964e+02, 9.18513964e+02, 9.18513964e+02, 9.18513964e+02,
8.93292158e+02, 8.93292158e+02, 8.93292158e+02, 8.93292158e+02,
8.65250000e+02, 8.65250000e+02, 8.65250000e+02, 8.65250000e+02,
8.35116935e+02, 8.35116935e+02, 8.35116935e+02, 8.35116935e+02,
8.03560799e+02, 8.03560799e+02, 8.03560799e+02, 8.03560799e+02,
7.71074253e+02, 7.71074253e+02, 7.71074253e+02, 7.71074253e+02,
7.38362407e+02, 7.38362407e+02, 7.38362407e+02, 7.38362407e+02,
7.06715729e+02, 7.06715729e+02, 7.06715729e+02, 7.06715729e+02,
6.76606066e+02, 6.76606066e+02, 6.76606066e+02, 6.76606066e+02,
6.47950106e+02, 6.47950106e+02, 6.47950106e+02, 6.47950106e+02,
6.20767030e+02, 6.20767030e+02, 6.20767030e+02, 6.20767030e+02,
5.95122800e+02, 5.95122800e+02, 5.95122800e+02, 5.95122800e+02,
5.71153608e+02, 5.71153608e+02, 5.71153608e+02, 5.71153608e+02,
5.49081527e+02, 5.49081527e+02, 5.49081527e+02, 5.49081527e+02,
5.29216091e+02, 5.29216091e+02, 5.29216091e+02, 5.29216091e+02,
5.11921185e+02, 5.11921185e+02, 5.11921185e+02, 5.11921185e+02,
4.97545244e+02, 4.97545244e+02, 4.97545244e+02, 4.97545244e+02,
4.86291897e+02, 4.86291897e+02, 4.86291897e+02, 4.86291897e+02,
4.78109904e+02, 4.78109904e+02, 4.78109904e+02, 4.78109904e+02,
4.72583831e+02, 4.72583831e+02, 4.72583831e+02, 4.72583831e+02,
4.69066980e+02, 4.69066980e+02, 4.69066980e+02, 4.69066980e+02,
4.66717402e+02, 4.66717402e+02, 4.66717402e+02, 4.66717402e+02,
4.64917242e+02, 4.64917242e+02, 4.64917242e+02, 4.64917242e+02,
4.63194566e+02, 4.63194566e+02, 4.63194566e+02, 4.63194566e+02,
4.61252714e+02, 4.61252714e+02, 4.61252714e+02, 4.61252714e+02,
4.58921153e+02, 4.58921153e+02, 4.58921153e+02, 4.58921153e+02,
4.57188983e+02, 4.57188983e+02, 4.57188983e+02, 4.57188983e+02,
4.56328452e+02, 4.56328452e+02, 4.56328452e+02, 4.56328452e+02,
4.56152886e+02, 4.56152886e+02, 4.56152886e+02, 4.56152886e+02,
4.56518413e+02, 4.56518413e+02, 4.56518413e+02, 4.56518413e+02,
4.58123265e+02, 4.58123265e+02, 4.58123265e+02, 4.58123265e+02,
4.60396684e+02, 4.60396684e+02, 4.60396684e+02, 4.60396684e+02,
4.61683518e+02, 4.61683518e+02, 4.61683518e+02, 4.61683518e+02,
4.62187018e+02, 4.62187018e+02, 4.62187018e+02, 4.62187018e+02,
4.62180069e+02, 4.62180069e+02, 4.62180069e+02, 4.62180069e+02,
4.61692947e+02, 4.61692947e+02, 4.61692947e+02, 4.61692947e+02,
4.60488509e+02, 4.60488509e+02, 4.60488509e+02, 4.60488509e+02,
4.59598259e+02, 4.59598259e+02, 4.59598259e+02, 4.59598259e+02,
4.59243526e+02, 4.59243526e+02, 4.59243526e+02, 4.59243526e+02,
4.59176256e+02, 4.59176256e+02, 4.59176256e+02, 4.59176256e+02,
4.59584943e+02, 4.59584943e+02, 4.59584943e+02, 4.59584943e+02,
4.61767872e+02, 4.61767872e+02, 4.61767872e+02, 4.61767872e+02,
4.68198377e+02, 4.68198377e+02, 4.68198377e+02, 4.68198377e+02,
4.31471330e+02, 4.31471330e+02, 4.31471330e+02, 4.31471330e+02,
6.31355976e+01, 6.31355976e+01, 6.31355976e+01, 6.31355976e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99970841, 0.99970841, 0.99970841, 0.99970841, 0.99930144,
0.99930144, 0.99930144, 0.99930144, 0.99863196, 0.99863196,
0.99863196, 0.99863196, 0.99739581, 0.99739581, 0.99739581,
0.99739581, 0.99528631, 0.99528631, 0.99528631, 0.99528631,
0.99187569, 0.99187569, 0.99187569, 0.99187569, 0.98667832,
0.98667832, 0.98667832, 0.98667832, 0.97921344, 0.97921344,
0.97921344, 0.97921344, 0.96910018, 0.96910018, 0.96910018,
0.96910018, 0.95614459, 0.95614459, 0.95614459, 0.95614459,
0.9403864 , 0.9403864 , 0.9403864 , 0.9403864 , 0.92208515,
0.92208515, 0.92208515, 0.92208515, 0.90165204, 0.90165204,
0.90165204, 0.90165204, 0.8795543 , 0.8795543 , 0.8795543 ,
0.8795543 , 0.8562219 , 0.8562219 , 0.8562219 , 0.8562219 ,
0.83199086, 0.83199086, 0.83199086, 0.83199086, 0.8072897 ,
0.8072897 , 0.8072897 , 0.8072897 , 0.78301889, 0.78301889,
0.78301889, 0.78301889, 0.75959872, 0.75959872, 0.75959872,
0.75959872, 0.73699392, 0.73699392, 0.73699392, 0.73699392,
0.71523797, 0.71523797, 0.71523797, 0.71523797, 0.69439779,
0.69439779, 0.69439779, 0.69439779, 0.67459707, 0.67459707,
0.67459707, 0.67459707, 0.65602985, 0.65602985, 0.65602985,
0.65602985, 0.63896899, 0.63896899, 0.63896899, 0.63896899,
0.62375603, 0.62375603, 0.62375603, 0.62375603, 0.61074842,
0.61074842, 0.61074842, 0.61074842, 0.60023158, 0.60023158,
0.60023158, 0.60023158, 0.59228914, 0.59228914, 0.59228914,
0.59228914, 0.58673321, 0.58673321, 0.58673321, 0.58673321,
0.5830625 , 0.5830625 , 0.5830625 , 0.5830625 , 0.58066207,
0.58066207, 0.58066207, 0.58066207, 0.57886054, 0.57886054,
0.57886054, 0.57886054, 0.57725697, 0.57725697, 0.57725697,
0.57725697, 0.57558483, 0.57558483, 0.57558483, 0.57558483,
0.57353187, 0.57353187, 0.57353187, 0.57353187, 0.57172821,
0.57172821, 0.57172821, 0.57172821, 0.57069065, 0.57069065,
0.57069065, 0.57069065, 0.57030617, 0.57030617, 0.57030617,
0.57030617, 0.5703162 , 0.5703162 , 0.5703162 , 0.5703162 ,
0.57112889, 0.57112889, 0.57112889, 0.57112889, 0.57300196,
0.57300196, 0.57300196, 0.57300196, 0.57433756, 0.57433756,
0.57433756, 0.57433756, 0.57479763, 0.57479763, 0.57479763,
0.57479763, 0.5747401 , 0.5747401 , 0.5747401 , 0.5747401 ,
0.57411922, 0.57411922, 0.57411922, 0.57411922, 0.57239232,
0.57239232, 0.57239232, 0.57239232, 0.56952083, 0.56952083,
0.56952083, 0.56952083, 0.56630556, 0.56630556, 0.56630556,
0.56630556, 0.56528681, 0.56528681, 0.56528681, 0.56528681,
0.57801817, 0.57801817, 0.57801817, 0.57801817, 0.78841406,
0.78841406, 0.78841406, 0.78841406, 4.86286501, 4.86286501,
4.86286501, 4.86286501, 5.97828859, 5.97828859, 5.97828859,
5.97828859, 5.72444693, 5.72444693, 5.72444693, 5.72444693,
1.91551567, 1.91551567, 1.91551567, 1.91551567, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95865388e+01, -1.95865388e+01, -1.95865388e+01, -1.95865388e+01,
-1.95713064e+01, -1.95713064e+01, -1.95713064e+01, -1.95713064e+01,
-1.95462396e+01, -1.95462396e+01, -1.95462396e+01, -1.95462396e+01,
-1.94999235e+01, -1.94999235e+01, -1.94999235e+01, -1.94999235e+01,
-1.94207876e+01, -1.94207876e+01, -1.94207876e+01, -1.94207876e+01,
-1.92925726e+01, -1.92925726e+01, -1.92925726e+01, -1.92925726e+01,
-1.90965325e+01, -1.90965325e+01, -1.90965325e+01, -1.90965325e+01,
-1.88135375e+01, -1.88135375e+01, -1.88135375e+01, -1.88135375e+01,
-1.84273846e+01, -1.84273846e+01, -1.84273846e+01, -1.84273846e+01,
-1.79279360e+01, -1.79279360e+01, -1.79279360e+01, -1.79279360e+01,
-1.73130132e+01, -1.73130132e+01, -1.73130132e+01, -1.73130132e+01,
-1.65882893e+01, -1.65882893e+01, -1.65882893e+01, -1.65882893e+01,
-1.57652611e+01, -1.57652611e+01, -1.57652611e+01, -1.57652611e+01,
-1.48580597e+01, -1.48580597e+01, -1.48580597e+01, -1.48580597e+01,
-1.38800039e+01, -1.38800039e+01, -1.38800039e+01, -1.38800039e+01,
-1.28403183e+01, -1.28403183e+01, -1.28403183e+01, -1.28403183e+01,
-1.17572595e+01, -1.17572595e+01, -1.17572595e+01, -1.17572595e+01,
-1.06706023e+01, -1.06706023e+01, -1.06706023e+01, -1.06706023e+01,
-9.59207782e+00, -9.59207782e+00, -9.59207782e+00, -9.59207782e+00,
-8.52590941e+00, -8.52590941e+00, -8.52590941e+00, -8.52590941e+00,
-7.47481508e+00, -7.47481508e+00, -7.47481508e+00, -7.47481508e+00,
-6.44384352e+00, -6.44384352e+00, -6.44384352e+00, -6.44384352e+00,
-5.44119216e+00, -5.44119216e+00, -5.44119216e+00, -5.44119216e+00,
-4.47950487e+00, -4.47950487e+00, -4.47950487e+00, -4.47950487e+00,
-3.57669281e+00, -3.57669281e+00, -3.57669281e+00, -3.57669281e+00,
-2.75546701e+00, -2.75546701e+00, -2.75546701e+00, -2.75546701e+00,
-2.04082894e+00, -2.04082894e+00, -2.04082894e+00, -2.04082894e+00,
-1.45414272e+00, -1.45414272e+00, -1.45414272e+00, -1.45414272e+00,
-1.00612603e+00, -1.00612603e+00, -1.00612603e+00, -1.00612603e+00,
-6.89455908e-01, -6.89455908e-01, -6.89455908e-01, -6.89455908e-01,
-4.80670053e-01, -4.80670053e-01, -4.80670053e-01, -4.80670053e-01,
-3.42319475e-01, -3.42319475e-01, -3.42319475e-01, -3.42319475e-01,
-2.41375012e-01, -2.41375012e-01, -2.41375012e-01, -2.41375012e-01,
-1.49405839e-01, -1.49405839e-01, -1.49405839e-01, -1.49405839e-01,
-5.40162466e-02, -5.40162466e-02, -5.40162466e-02, -5.40162466e-02,
6.27764545e-02, 6.27764545e-02, 6.27764545e-02, 6.27764545e-02,
1.64311210e-01, 1.64311210e-01, 1.64311210e-01, 1.64311210e-01,
2.23440404e-01, 2.23440404e-01, 2.23440404e-01, 2.23440404e-01,
2.41331685e-01, 2.41331685e-01, 2.41331685e-01, 2.41331685e-01,
2.35342066e-01, 2.35342066e-01, 2.35342066e-01, 2.35342066e-01,
1.81482270e-01, 1.81482270e-01, 1.81482270e-01, 1.81482270e-01,
6.48488095e-02, 6.48488095e-02, 6.48488095e-02, 6.48488095e-02,
-2.03568679e-02, -2.03568679e-02, -2.03568679e-02, -2.03568679e-02,
-5.86975676e-02, -5.86975676e-02, -5.86975676e-02, -5.86975676e-02,
-6.46947945e-02, -6.46947945e-02, -6.46947945e-02, -6.46947945e-02,
-5.30438151e-02, -5.30438151e-02, -5.30438151e-02, -5.30438151e-02,
-3.73867515e-03, -3.73867515e-03, -3.73867515e-03, -3.73867515e-03,
5.22001451e-02, 5.22001451e-02, 5.22001451e-02, 5.22001451e-02,
7.99846270e-02, 7.99846270e-02, 7.99846270e-02, 7.99846270e-02,
8.71690661e-02, 8.71690661e-02, 8.71690661e-02, 8.71690661e-02,
7.83717458e-02, 7.83717458e-02, 7.83717458e-02, 7.83717458e-02,
4.48742665e-02, 4.48742665e-02, 4.48742665e-02, 4.48742665e-02,
1.53078823e-03, 1.53078823e-03, 1.53078823e-03, 1.53078823e-03,
-9.86484392e-02, -9.86484392e-02, -9.86484392e-02, -9.86484392e-02,
-4.95626950e-01, -4.95626950e-01, -4.95626950e-01, -4.95626950e-01,
-1.04680111e+01, -1.04680111e+01, -1.04680111e+01, -1.04680111e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99591815e+02, 9.99591815e+02, 9.99591815e+02, 9.99591815e+02,
9.99022210e+02, 9.99022210e+02, 9.99022210e+02, 9.99022210e+02,
9.98085463e+02, 9.98085463e+02, 9.98085463e+02, 9.98085463e+02,
9.96356640e+02, 9.96356640e+02, 9.96356640e+02, 9.96356640e+02,
9.93408753e+02, 9.93408753e+02, 9.93408753e+02, 9.93408753e+02,
9.88648660e+02, 9.88648660e+02, 9.88648660e+02, 9.88648660e+02,
9.81408703e+02, 9.81408703e+02, 9.81408703e+02, 9.81408703e+02,
9.71038404e+02, 9.71038404e+02, 9.71038404e+02, 9.71038404e+02,
9.57040940e+02, 9.57040940e+02, 9.57040940e+02, 9.57040940e+02,
9.39195528e+02, 9.39195528e+02, 9.39195528e+02, 9.39195528e+02,
9.17619067e+02, 9.17619067e+02, 9.17619067e+02, 9.17619067e+02,
8.92738992e+02, 8.92738992e+02, 8.92738992e+02, 8.92738992e+02,
8.65189172e+02, 8.65189172e+02, 8.65189172e+02, 8.65189172e+02,
8.35670124e+02, 8.35670124e+02, 8.35670124e+02, 8.35670124e+02,
8.04816955e+02, 8.04816955e+02, 8.04816955e+02, 8.04816955e+02,
7.73095509e+02, 7.73095509e+02, 7.73095509e+02, 7.73095509e+02,
7.41140547e+02, 7.41140547e+02, 7.41140547e+02, 7.41140547e+02,
7.10145956e+02, 7.10145956e+02, 7.10145956e+02, 7.10145956e+02,
6.80600426e+02, 6.80600426e+02, 6.80600426e+02, 6.80600426e+02,
6.52428119e+02, 6.52428119e+02, 6.52428119e+02, 6.52428119e+02,
6.25639802e+02, 6.25639802e+02, 6.25639802e+02, 6.25639802e+02,
6.00284835e+02, 6.00284835e+02, 6.00284835e+02, 6.00284835e+02,
5.76477037e+02, 5.76477037e+02, 5.76477037e+02, 5.76477037e+02,
5.54407827e+02, 5.54407827e+02, 5.54407827e+02, 5.54407827e+02,
5.34352397e+02, 5.34352397e+02, 5.34352397e+02, 5.34352397e+02,
5.16653749e+02, 5.16653749e+02, 5.16653749e+02, 5.16653749e+02,
5.01661646e+02, 5.01661646e+02, 5.01661646e+02, 5.01661646e+02,
4.89637328e+02, 4.89637328e+02, 4.89637328e+02, 4.89637328e+02,
4.80616585e+02, 4.80616585e+02, 4.80616585e+02, 4.80616585e+02,
4.74341772e+02, 4.74341772e+02, 4.74341772e+02, 4.74341772e+02,
4.70218666e+02, 4.70218666e+02, 4.70218666e+02, 4.70218666e+02,
4.67540691e+02, 4.67540691e+02, 4.67540691e+02, 4.67540691e+02,
4.65545430e+02, 4.65545430e+02, 4.65545430e+02, 4.65545430e+02,
4.63778314e+02, 4.63778314e+02, 4.63778314e+02, 4.63778314e+02,
4.61940211e+02, 4.61940211e+02, 4.61940211e+02, 4.61940211e+02,
4.59684748e+02, 4.59684748e+02, 4.59684748e+02, 4.59684748e+02,
4.57720215e+02, 4.57720215e+02, 4.57720215e+02, 4.57720215e+02,
4.56621500e+02, 4.56621500e+02, 4.56621500e+02, 4.56621500e+02,
4.56264513e+02, 4.56264513e+02, 4.56264513e+02, 4.56264513e+02,
4.56373259e+02, 4.56373259e+02, 4.56373259e+02, 4.56373259e+02,
4.57402934e+02, 4.57402934e+02, 4.57402934e+02, 4.57402934e+02,
4.59642497e+02, 4.59642497e+02, 4.59642497e+02, 4.59642497e+02,
4.61292364e+02, 4.61292364e+02, 4.61292364e+02, 4.61292364e+02,
4.61981033e+02, 4.61981033e+02, 4.61981033e+02, 4.61981033e+02,
4.62155688e+02, 4.62155688e+02, 4.62155688e+02, 4.62155688e+02,
4.61925772e+02, 4.61925772e+02, 4.61925772e+02, 4.61925772e+02,
4.60951335e+02, 4.60951335e+02, 4.60951335e+02, 4.60951335e+02,
4.59861646e+02, 4.59861646e+02, 4.59861646e+02, 4.59861646e+02,
4.59352273e+02, 4.59352273e+02, 4.59352273e+02, 4.59352273e+02,
4.59248358e+02, 4.59248358e+02, 4.59248358e+02, 4.59248358e+02,
4.59387673e+02, 4.59387673e+02, 4.59387673e+02, 4.59387673e+02,
4.60098101e+02, 4.60098101e+02, 4.60098101e+02, 4.60098101e+02,
4.62949741e+02, 4.62949741e+02, 4.62949741e+02, 4.62949741e+02,
4.69024772e+02, 4.69024772e+02, 4.69024772e+02, 4.69024772e+02,
4.31422201e+02, 4.31422201e+02, 4.31422201e+02, 4.31422201e+02,
9.89530174e+01, 9.89530174e+01, 9.89530174e+01, 9.89530174e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99932538, 0.99932538, 0.99932538, 0.99932538, 0.99847389,
0.99847389, 0.99847389, 0.99847389, 0.99719065, 0.99719065,
0.99719065, 0.99719065, 0.99496302, 0.99496302, 0.99496302,
0.99496302, 0.99142211, 0.99142211, 0.99142211, 0.99142211,
0.98608452, 0.98608452, 0.98608452, 0.98608452, 0.97849947,
0.97849947, 0.97849947, 0.97849947, 0.96831888, 0.96831888,
0.96831888, 0.96831888, 0.95538145, 0.95538145, 0.95538145,
0.95538145, 0.93974967, 0.93974967, 0.93974967, 0.93974967,
0.92169084, 0.92169084, 0.92169084, 0.92169084, 0.90160897,
0.90160897, 0.90160897, 0.90160897, 0.87995416, 0.87995416,
0.87995416, 0.87995416, 0.85713646, 0.85713646, 0.85713646,
0.85713646, 0.83347361, 0.83347361, 0.83347361, 0.83347361,
0.80935571, 0.80935571, 0.80935571, 0.80935571, 0.78560567,
0.78560567, 0.78560567, 0.78560567, 0.76265514, 0.76265514,
0.76265514, 0.76265514, 0.74047006, 0.74047006, 0.74047006,
0.74047006, 0.71907784, 0.71907784, 0.71907784, 0.71907784,
0.69853288, 0.69853288, 0.69853288, 0.69853288, 0.67893724,
0.67893724, 0.67893724, 0.67893724, 0.66045809, 0.66045809,
0.66045809, 0.66045809, 0.64333733, 0.64333733, 0.64333733,
0.64333733, 0.62788631, 0.62788631, 0.62788631, 0.62788631,
0.61445357, 0.61445357, 0.61445357, 0.61445357, 0.60334507,
0.60334507, 0.60334507, 0.60334507, 0.59472239, 0.59472239,
0.59472239, 0.59472239, 0.58848768, 0.58848768, 0.58848768,
0.58848768, 0.58427796, 0.58427796, 0.58427796, 0.58427796,
0.5814882 , 0.5814882 , 0.5814882 , 0.5814882 , 0.5795213 ,
0.5795213 , 0.5795213 , 0.5795213 , 0.57783345, 0.57783345,
0.57783345, 0.57783345, 0.5761768 , 0.5761768 , 0.5761768 ,
0.5761768 , 0.57425319, 0.57425319, 0.57425319, 0.57425319,
0.57233885, 0.57233885, 0.57233885, 0.57233885, 0.57105499,
0.57105499, 0.57105499, 0.57105499, 0.57050443, 0.57050443,
0.57050443, 0.57050443, 0.57039605, 0.57039605, 0.57039605,
0.57039605, 0.5708286 , 0.5708286 , 0.5708286 , 0.5708286 ,
0.57237405, 0.57237405, 0.57237405, 0.57237405, 0.57399928,
0.57399928, 0.57399928, 0.57399928, 0.57476715, 0.57476715,
0.57476715, 0.57476715, 0.57485765, 0.57485765, 0.57485765,
0.57485765, 0.57460734, 0.57460734, 0.57460734, 0.57460734,
0.57363085, 0.57363085, 0.57363085, 0.57363085, 0.57174526,
0.57174526, 0.57174526, 0.57174526, 0.56921496, 0.56921496,
0.56921496, 0.56921496, 0.56625196, 0.56625196, 0.56625196,
0.56625196, 0.56536145, 0.56536145, 0.56536145, 0.56536145,
0.578315 , 0.578315 , 0.578315 , 0.578315 , 0.78931831,
0.78931831, 0.78931831, 0.78931831, 4.87110358, 4.87110358,
4.87110358, 4.87110358, 5.97236196, 5.97236196, 5.97236196,
5.97236196, 5.69785103, 5.69785103, 5.69785103, 5.69785103,
2.31571933, 2.31571933, 2.31571933, 2.31571933, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95722036e+01, -1.95722036e+01, -1.95722036e+01, -1.95722036e+01,
-1.95403180e+01, -1.95403180e+01, -1.95403180e+01, -1.95403180e+01,
-1.94922333e+01, -1.94922333e+01, -1.94922333e+01, -1.94922333e+01,
-1.94086470e+01, -1.94086470e+01, -1.94086470e+01, -1.94086470e+01,
-1.92754934e+01, -1.92754934e+01, -1.92754934e+01, -1.92754934e+01,
-1.90740772e+01, -1.90740772e+01, -1.90740772e+01, -1.90740772e+01,
-1.87863686e+01, -1.87863686e+01, -1.87863686e+01, -1.87863686e+01,
-1.83973957e+01, -1.83973957e+01, -1.83973957e+01, -1.83973957e+01,
-1.78983110e+01, -1.78983110e+01, -1.78983110e+01, -1.78983110e+01,
-1.72879413e+01, -1.72879413e+01, -1.72879413e+01, -1.72879413e+01,
-1.65724820e+01, -1.65724820e+01, -1.65724820e+01, -1.65724820e+01,
-1.57634345e+01, -1.57634345e+01, -1.57634345e+01, -1.57634345e+01,
-1.48745566e+01, -1.48745566e+01, -1.48745566e+01, -1.48745566e+01,
-1.39186657e+01, -1.39186657e+01, -1.39186657e+01, -1.39186657e+01,
-1.29046184e+01, -1.29046184e+01, -1.29046184e+01, -1.29046184e+01,
-1.18486586e+01, -1.18486586e+01, -1.18486586e+01, -1.18486586e+01,
-1.07878435e+01, -1.07878435e+01, -1.07878435e+01, -1.07878435e+01,
-9.73402118e+00, -9.73402118e+00, -9.73402118e+00, -9.73402118e+00,
-8.69129853e+00, -8.69129853e+00, -8.69129853e+00, -8.69129853e+00,
-7.66189814e+00, -7.66189814e+00, -7.66189814e+00, -7.66189814e+00,
-6.65000920e+00, -6.65000920e+00, -6.65000920e+00, -6.65000920e+00,
-5.66259114e+00, -5.66259114e+00, -5.66259114e+00, -5.66259114e+00,
-4.71044094e+00, -4.71044094e+00, -4.71044094e+00, -4.71044094e+00,
-3.80919260e+00, -3.80919260e+00, -3.80919260e+00, -3.80919260e+00,
-2.97944840e+00, -2.97944840e+00, -2.97944840e+00, -2.97944840e+00,
-2.24489039e+00, -2.24489039e+00, -2.24489039e+00, -2.24489039e+00,
-1.62801708e+00, -1.62801708e+00, -1.62801708e+00, -1.62801708e+00,
-1.14294391e+00, -1.14294391e+00, -1.14294391e+00, -1.14294391e+00,
-7.89386694e-01, -7.89386694e-01, -7.89386694e-01, -7.89386694e-01,
-5.48465812e-01, -5.48465812e-01, -5.48465812e-01, -5.48465812e-01,
-3.89880604e-01, -3.89880604e-01, -3.89880604e-01, -3.89880604e-01,
-2.76421292e-01, -2.76421292e-01, -2.76421292e-01, -2.76421292e-01,
-1.81423842e-01, -1.81423842e-01, -1.81423842e-01, -1.81423842e-01,
-8.68886822e-02, -8.68886822e-02, -8.68886822e-02, -8.68886822e-02,
2.34026624e-02, 2.34026624e-02, 2.34026624e-02, 2.34026624e-02,
1.32897657e-01, 1.32897657e-01, 1.32897657e-01, 1.32897657e-01,
2.03757123e-01, 2.03757123e-01, 2.03757123e-01, 2.03757123e-01,
2.33947740e-01, 2.33947740e-01, 2.33947740e-01, 2.33947740e-01,
2.36273663e-01, 2.36273663e-01, 2.36273663e-01, 2.36273663e-01,
2.05566425e-01, 2.05566425e-01, 2.05566425e-01, 2.05566425e-01,
1.08555848e-01, 1.08555848e-01, 1.08555848e-01, 1.08555848e-01,
6.17048246e-03, 6.17048246e-03, 6.17048246e-03, 6.17048246e-03,
-4.50500960e-02, -4.50500960e-02, -4.50500960e-02, -4.50500960e-02,
-6.17988256e-02, -6.17988256e-02, -6.17988256e-02, -6.17988256e-02,
-5.81251979e-02, -5.81251979e-02, -5.81251979e-02, -5.81251979e-02,
-2.45396980e-02, -2.45396980e-02, -2.45396980e-02, -2.45396980e-02,
3.52554497e-02, 3.52554497e-02, 3.52554497e-02, 3.52554497e-02,
7.06347195e-02, 7.06347195e-02, 7.06347195e-02, 7.06347195e-02,
8.26184454e-02, 8.26184454e-02, 8.26184454e-02, 8.26184454e-02,
8.19573239e-02, 8.19573239e-02, 8.19573239e-02, 8.19573239e-02,
6.05906148e-02, 6.05906148e-02, 6.05906148e-02, 6.05906148e-02,
1.53916128e-02, 1.53916128e-02, 1.53916128e-02, 1.53916128e-02,
-2.36280500e-02, -2.36280500e-02, -2.36280500e-02, -2.36280500e-02,
-8.08509569e-02, -8.08509569e-02, -8.08509569e-02, -8.08509569e-02,
-1.88053082e-01, -1.88053082e-01, -1.88053082e-01, -1.88053082e-01,
-8.77545493e+00, -8.77545493e+00, -8.77545493e+00, -8.77545493e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99055758e+02, 9.99055758e+02, 9.99055758e+02, 9.99055758e+02,
9.97864296e+02, 9.97864296e+02, 9.97864296e+02, 9.97864296e+02,
9.96069823e+02, 9.96069823e+02, 9.96069823e+02, 9.96069823e+02,
9.92957177e+02, 9.92957177e+02, 9.92957177e+02, 9.92957177e+02,
9.88016071e+02, 9.88016071e+02, 9.88016071e+02, 9.88016071e+02,
9.80582335e+02, 9.80582335e+02, 9.80582335e+02, 9.80582335e+02,
9.70047780e+02, 9.70047780e+02, 9.70047780e+02, 9.70047780e+02,
9.55961126e+02, 9.55961126e+02, 9.55961126e+02, 9.55961126e+02,
9.38145851e+02, 9.38145851e+02, 9.38145851e+02, 9.38145851e+02,
9.16747939e+02, 9.16747939e+02, 9.16747939e+02, 9.16747939e+02,
8.92201843e+02, 8.92201843e+02, 8.92201843e+02, 8.92201843e+02,
8.65127175e+02, 8.65127175e+02, 8.65127175e+02, 8.65127175e+02,
8.36196578e+02, 8.36196578e+02, 8.36196578e+02, 8.36196578e+02,
8.06014257e+02, 8.06014257e+02, 8.06014257e+02, 8.06014257e+02,
7.75021205e+02, 7.75021205e+02, 7.75021205e+02, 7.75021205e+02,
7.43790671e+02, 7.43790671e+02, 7.43790671e+02, 7.43790671e+02,
7.13426487e+02, 7.13426487e+02, 7.13426487e+02, 7.13426487e+02,
6.84430514e+02, 6.84430514e+02, 6.84430514e+02, 6.84430514e+02,
6.56732353e+02, 6.56732353e+02, 6.56732353e+02, 6.56732353e+02,
6.30337925e+02, 6.30337925e+02, 6.30337925e+02, 6.30337925e+02,
6.05284642e+02, 6.05284642e+02, 6.05284642e+02, 6.05284642e+02,
5.81664184e+02, 5.81664184e+02, 5.81664184e+02, 5.81664184e+02,
5.59640349e+02, 5.59640349e+02, 5.59640349e+02, 5.59640349e+02,
5.39457397e+02, 5.39457397e+02, 5.39457397e+02, 5.39457397e+02,
5.21430448e+02, 5.21430448e+02, 5.21430448e+02, 5.21430448e+02,
5.05906319e+02, 5.05906319e+02, 5.05906319e+02, 5.05906319e+02,
4.93174854e+02, 4.93174854e+02, 4.93174854e+02, 4.93174854e+02,
4.83361102e+02, 4.83361102e+02, 4.83361102e+02, 4.83361102e+02,
4.76305712e+02, 4.76305712e+02, 4.76305712e+02, 4.76305712e+02,
4.71566197e+02, 4.71566197e+02, 4.71566197e+02, 4.71566197e+02,
4.68442609e+02, 4.68442609e+02, 4.68442609e+02, 4.68442609e+02,
4.66255482e+02, 4.66255482e+02, 4.66255482e+02, 4.66255482e+02,
4.64389544e+02, 4.64389544e+02, 4.64389544e+02, 4.64389544e+02,
4.62563951e+02, 4.62563951e+02, 4.62563951e+02, 4.62563951e+02,
4.60445001e+02, 4.60445001e+02, 4.60445001e+02, 4.60445001e+02,
4.58346750e+02, 4.58346750e+02, 4.58346750e+02, 4.58346750e+02,
4.56965719e+02, 4.56965719e+02, 4.56965719e+02, 4.56965719e+02,
4.56412626e+02, 4.56412626e+02, 4.56412626e+02, 4.56412626e+02,
4.56365020e+02, 4.56365020e+02, 4.56365020e+02, 4.56365020e+02,
4.56946993e+02, 4.56946993e+02, 4.56946993e+02, 4.56946993e+02,
4.58799914e+02, 4.58799914e+02, 4.58799914e+02, 4.58799914e+02,
4.60763034e+02, 4.60763034e+02, 4.60763034e+02, 4.60763034e+02,
4.61775701e+02, 4.61775701e+02, 4.61775701e+02, 4.61775701e+02,
4.62048828e+02, 4.62048828e+02, 4.62048828e+02, 4.62048828e+02,
4.62006574e+02, 4.62006574e+02, 4.62006574e+02, 4.62006574e+02,
4.61376208e+02, 4.61376208e+02, 4.61376208e+02, 4.61376208e+02,
4.60221577e+02, 4.60221577e+02, 4.60221577e+02, 4.60221577e+02,
4.59512318e+02, 4.59512318e+02, 4.59512318e+02, 4.59512318e+02,
4.59287827e+02, 4.59287827e+02, 4.59287827e+02, 4.59287827e+02,
4.59332397e+02, 4.59332397e+02, 4.59332397e+02, 4.59332397e+02,
4.59745748e+02, 4.59745748e+02, 4.59745748e+02, 4.59745748e+02,
4.60735106e+02, 4.60735106e+02, 4.60735106e+02, 4.60735106e+02,
4.63863896e+02, 4.63863896e+02, 4.63863896e+02, 4.63863896e+02,
4.68374949e+02, 4.68374949e+02, 4.68374949e+02, 4.68374949e+02,
4.28980647e+02, 4.28980647e+02, 4.28980647e+02, 4.28980647e+02,
1.36568031e+02, 1.36568031e+02, 1.36568031e+02, 1.36568031e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}]}
minmod_rusanov
{'none_hll': [{'rho': array([0.98643656, 0.98643656, 0.98643656, 0.98643656, 0.98187523,
0.98187523, 0.98187523, 0.98187523, 0.97629826, 0.97629826,
0.97629826, 0.97629826, 0.9696374 , 0.9696374 , 0.9696374 ,
0.9696374 , 0.96185114, 0.96185114, 0.96185114, 0.96185114,
0.95292797, 0.95292797, 0.95292797, 0.95292797, 0.94288584,
0.94288584, 0.94288584, 0.94288584, 0.9317694 , 0.9317694 ,
0.9317694 , 0.9317694 , 0.91964579, 0.91964579, 0.91964579,
0.91964579, 0.90659974, 0.90659974, 0.90659974, 0.90659974,
0.89272851, 0.89272851, 0.89272851, 0.89272851, 0.87813721,
0.87813721, 0.87813721, 0.87813721, 0.86293485, 0.86293485,
0.86293485, 0.86293485, 0.84723115, 0.84723115, 0.84723115,
0.84723115, 0.83113423, 0.83113423, 0.83113423, 0.83113423,
0.81474914, 0.81474914, 0.81474914, 0.81474914, 0.79817706,
0.79817706, 0.79817706, 0.79817706, 0.78151514, 0.78151514,
0.78151514, 0.78151514, 0.7648568 , 0.7648568 , 0.7648568 ,
0.7648568 , 0.74829246, 0.74829246, 0.74829246, 0.74829246,
0.73191055, 0.73191055, 0.73191055, 0.73191055, 0.71579881,
0.71579881, 0.71579881, 0.71579881, 0.70004568, 0.70004568,
0.70004568, 0.70004568, 0.68474183, 0.68474183, 0.68474183,
0.68474183, 0.66998162, 0.66998162, 0.66998162, 0.66998162,
0.65586424, 0.65586424, 0.65586424, 0.65586424, 0.6424944 ,
0.6424944 , 0.6424944 , 0.6424944 , 0.62998191, 0.62998191,
0.62998191, 0.62998191, 0.61843985, 0.61843985, 0.61843985,
0.61843985, 0.60798063, 0.60798063, 0.60798063, 0.60798063,
0.59870956, 0.59870956, 0.59870956, 0.59870956, 0.59071647,
0.59071647, 0.59071647, 0.59071647, 0.58406669, 0.58406669,
0.58406669, 0.58406669, 0.57879508, 0.57879508, 0.57879508,
0.57879508, 0.57490833, 0.57490833, 0.57490833, 0.57490833,
0.57240215, 0.57240215, 0.57240215, 0.57240215, 0.57129898,
0.57129898, 0.57129898, 0.57129898, 0.57170911, 0.57170911,
0.57170911, 0.57170911, 0.57391234, 0.57391234, 0.57391234,
0.57391234, 0.5784582 , 0.5784582 , 0.5784582 , 0.5784582 ,
0.58628442, 0.58628442, 0.58628442, 0.58628442, 0.5988519 ,
0.5988519 , 0.5988519 , 0.5988519 , 0.61830681, 0.61830681,
0.61830681, 0.61830681, 0.647687 , 0.647687 , 0.647687 ,
0.647687 , 0.6912014 , 0.6912014 , 0.6912014 , 0.6912014 ,
0.75462142, 0.75462142, 0.75462142, 0.75462142, 0.84582344,
0.84582344, 0.84582344, 0.84582344, 0.97548882, 0.97548882,
0.97548882, 0.97548882, 1.15786481, 1.15786481, 1.15786481,
1.15786481, 1.41124647, 1.41124647, 1.41124647, 1.41124647,
1.75733819, 1.75733819, 1.75733819, 1.75733819, 2.21753898,
2.21753898, 2.21753898, 2.21753898, 2.80005074, 2.80005074,
2.80005074, 2.80005074, 3.44725292, 3.44725292, 3.44725292,
3.44725292, 3.82905469, 3.82905469, 3.82905469, 3.82905469,
3.12499981, 3.12499981, 3.12499981, 3.12499981, 1.3656139 ,
1.3656139 , 1.3656139 , 1.3656139 , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.08809248, -19.08809248, -19.08809248, -19.08809248,
-18.91571278, -18.91571278, -18.91571278, -18.91571278,
-18.70427812, -18.70427812, -18.70427812, -18.70427812,
-18.45066681, -18.45066681, -18.45066681, -18.45066681,
-18.15264725, -18.15264725, -18.15264725, -18.15264725,
-17.80897874, -17.80897874, -17.80897874, -17.80897874,
-17.41940216, -17.41940216, -17.41940216, -17.41940216,
-16.98456454, -16.98456454, -16.98456454, -16.98456454,
-16.50589809, -16.50589809, -16.50589809, -16.50589809,
-15.98547575, -15.98547575, -15.98547575, -15.98547575,
-15.42586267, -15.42586267, -15.42586267, -15.42586267,
-14.82997877, -14.82997877, -14.82997877, -14.82997877,
-14.20098192, -14.20098192, -14.20098192, -14.20098192,
-13.54217671, -13.54217671, -13.54217671, -13.54217671,
-12.85695051, -12.85695051, -12.85695051, -12.85695051,
-12.14873569, -12.14873569, -12.14873569, -12.14873569,
-11.42099626, -11.42099626, -11.42099626, -11.42099626,
-10.6772362 , -10.6772362 , -10.6772362 , -10.6772362 ,
-9.92102727, -9.92102727, -9.92102727, -9.92102727,
-9.15605434, -9.15605434, -9.15605434, -9.15605434,
-8.38617637, -8.38617637, -8.38617637, -8.38617637,
-7.61550147, -7.61550147, -7.61550147, -7.61550147,
-6.84847361, -6.84847361, -6.84847361, -6.84847361,
-6.08996685, -6.08996685, -6.08996685, -6.08996685,
-5.34537978, -5.34537978, -5.34537978, -5.34537978,
-4.62071699, -4.62071699, -4.62071699, -4.62071699,
-3.92263644, -3.92263644, -3.92263644, -3.92263644,
-3.25843008, -3.25843008, -3.25843008, -3.25843008,
-2.6358936 , -2.6358936 , -2.6358936 , -2.6358936 ,
-2.06303263, -2.06303263, -2.06303263, -2.06303263,
-1.54755819, -1.54755819, -1.54755819, -1.54755819,
-1.09615573, -1.09615573, -1.09615573, -1.09615573,
-0.7135819 , -0.7135819 , -0.7135819 , -0.7135819 ,
-0.40174647, -0.40174647, -0.40174647, -0.40174647,
-0.15903767, -0.15903767, -0.15903767, -0.15903767,
0.01982193, 0.01982193, 0.01982193, 0.01982193,
0.14321155, 0.14321155, 0.14321155, 0.14321155,
0.22140683, 0.22140683, 0.22140683, 0.22140683,
0.2650672 , 0.2650672 , 0.2650672 , 0.2650672 ,
0.28387795, 0.28387795, 0.28387795, 0.28387795,
0.28571464, 0.28571464, 0.28571464, 0.28571464,
0.27644787, 0.27644787, 0.27644787, 0.27644787,
0.2602505 , 0.2602505 , 0.2602505 , 0.2602505 ,
0.24013665, 0.24013665, 0.24013665, 0.24013665,
0.21847094, 0.21847094, 0.21847094, 0.21847094,
0.19728409, 0.19728409, 0.19728409, 0.19728409,
0.17833933, 0.17833933, 0.17833933, 0.17833933,
0.16296261, 0.16296261, 0.16296261, 0.16296261,
0.15165979, 0.15165979, 0.15165979, 0.15165979,
0.14349381, 0.14349381, 0.14349381, 0.14349381,
0.13494011, 0.13494011, 0.13494011, 0.13494011,
0.11621768, 0.11621768, 0.11621768, 0.11621768,
0.05201945, 0.05201945, 0.05201945, 0.05201945,
-0.2248209 , -0.2248209 , -0.2248209 , -0.2248209 ,
-1.41256056, -1.41256056, -1.41256056, -1.41256056,
-5.32034825, -5.32034825, -5.32034825, -5.32034825,
-15.36743081, -15.36743081, -15.36743081, -15.36743081,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([9.81089727e+02, 9.81089727e+02, 9.81089727e+02, 9.81089727e+02,
9.74759239e+02, 9.74759239e+02, 9.74759239e+02, 9.74759239e+02,
9.67040664e+02, 9.67040664e+02, 9.67040664e+02, 9.67040664e+02,
9.57850178e+02, 9.57850178e+02, 9.57850178e+02, 9.57850178e+02,
9.47144747e+02, 9.47144747e+02, 9.47144747e+02, 9.47144747e+02,
9.34925440e+02, 9.34925440e+02, 9.34925440e+02, 9.34925440e+02,
9.21235831e+02, 9.21235831e+02, 9.21235831e+02, 9.21235831e+02,
9.06157333e+02, 9.06157333e+02, 9.06157333e+02, 9.06157333e+02,
8.89802452e+02, 8.89802452e+02, 8.89802452e+02, 8.89802452e+02,
8.72307073e+02, 8.72307073e+02, 8.72307073e+02, 8.72307073e+02,
8.53822684e+02, 8.53822684e+02, 8.53822684e+02, 8.53822684e+02,
8.34509276e+02, 8.34509276e+02, 8.34509276e+02, 8.34509276e+02,
8.14529348e+02, 8.14529348e+02, 8.14529348e+02, 8.14529348e+02,
7.94043216e+02, 7.94043216e+02, 7.94043216e+02, 7.94043216e+02,
7.73205652e+02, 7.73205652e+02, 7.73205652e+02, 7.73205652e+02,
7.52163729e+02, 7.52163729e+02, 7.52163729e+02, 7.52163729e+02,
7.31055735e+02, 7.31055735e+02, 7.31055735e+02, 7.31055735e+02,
7.10010929e+02, 7.10010929e+02, 7.10010929e+02, 7.10010929e+02,
6.89149991e+02, 6.89149991e+02, 6.89149991e+02, 6.89149991e+02,
6.68585986e+02, 6.68585986e+02, 6.68585986e+02, 6.68585986e+02,
6.48425713e+02, 6.48425713e+02, 6.48425713e+02, 6.48425713e+02,
6.28771322e+02, 6.28771322e+02, 6.28771322e+02, 6.28771322e+02,
6.09722091e+02, 6.09722091e+02, 6.09722091e+02, 6.09722091e+02,
5.91376246e+02, 5.91376246e+02, 5.91376246e+02, 5.91376246e+02,
5.73832666e+02, 5.73832666e+02, 5.73832666e+02, 5.73832666e+02,
5.57192250e+02, 5.57192250e+02, 5.57192250e+02, 5.57192250e+02,
5.41558609e+02, 5.41558609e+02, 5.41558609e+02, 5.41558609e+02,
5.27037604e+02, 5.27037604e+02, 5.27037604e+02, 5.27037604e+02,
5.13735105e+02, 5.13735105e+02, 5.13735105e+02, 5.13735105e+02,
5.01752265e+02, 5.01752265e+02, 5.01752265e+02, 5.01752265e+02,
4.91177719e+02, 4.91177719e+02, 4.91177719e+02, 4.91177719e+02,
4.82076611e+02, 4.82076611e+02, 4.82076611e+02, 4.82076611e+02,
4.74477430e+02, 4.74477430e+02, 4.74477430e+02, 4.74477430e+02,
4.68359105e+02, 4.68359105e+02, 4.68359105e+02, 4.68359105e+02,
4.63642342e+02, 4.63642342e+02, 4.63642342e+02, 4.63642342e+02,
4.60189553e+02, 4.60189553e+02, 4.60189553e+02, 4.60189553e+02,
4.57816053e+02, 4.57816053e+02, 4.57816053e+02, 4.57816053e+02,
4.56311386e+02, 4.56311386e+02, 4.56311386e+02, 4.56311386e+02,
4.55465320e+02, 4.55465320e+02, 4.55465320e+02, 4.55465320e+02,
4.55090849e+02, 4.55090849e+02, 4.55090849e+02, 4.55090849e+02,
4.55037987e+02, 4.55037987e+02, 4.55037987e+02, 4.55037987e+02,
4.55196337e+02, 4.55196337e+02, 4.55196337e+02, 4.55196337e+02,
4.55488829e+02, 4.55488829e+02, 4.55488829e+02, 4.55488829e+02,
4.55861344e+02, 4.55861344e+02, 4.55861344e+02, 4.55861344e+02,
4.56272676e+02, 4.56272676e+02, 4.56272676e+02, 4.56272676e+02,
4.56687434e+02, 4.56687434e+02, 4.56687434e+02, 4.56687434e+02,
4.57072673e+02, 4.57072673e+02, 4.57072673e+02, 4.57072673e+02,
4.57398268e+02, 4.57398268e+02, 4.57398268e+02, 4.57398268e+02,
4.57641962e+02, 4.57641962e+02, 4.57641962e+02, 4.57641962e+02,
4.57800997e+02, 4.57800997e+02, 4.57800997e+02, 4.57800997e+02,
4.57901826e+02, 4.57901826e+02, 4.57901826e+02, 4.57901826e+02,
4.57899342e+02, 4.57899342e+02, 4.57899342e+02, 4.57899342e+02,
4.56697527e+02, 4.56697527e+02, 4.56697527e+02, 4.56697527e+02,
4.46045725e+02, 4.46045725e+02, 4.46045725e+02, 4.46045725e+02,
3.88965031e+02, 3.88965031e+02, 3.88965031e+02, 3.88965031e+02,
2.27741725e+02, 2.27741725e+02, 2.27741725e+02, 2.27741725e+02,
3.27405159e+01, 3.27405159e+01, 3.27405159e+01, 3.27405159e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_rusanov': [{'rho': array([0.99936044, 0.99936044, 0.99936044, 0.99936044, 0.9985534 ,
0.9985534 , 0.9985534 , 0.9985534 , 0.9973132 , 0.9973132 ,
0.9973132 , 0.9973132 , 0.99515557, 0.99515557, 0.99515557,
0.99515557, 0.99170689, 0.99170689, 0.99170689, 0.99170689,
0.98648889, 0.98648889, 0.98648889, 0.98648889, 0.97905098,
0.97905098, 0.97905098, 0.97905098, 0.96904495, 0.96904495,
0.96904495, 0.96904495, 0.95630818, 0.95630818, 0.95630818,
0.95630818, 0.94090147, 0.94090147, 0.94090147, 0.94090147,
0.92309062, 0.92309062, 0.92309062, 0.92309062, 0.9032792 ,
0.9032792 , 0.9032792 , 0.9032792 , 0.88191867, 0.88191867,
0.88191867, 0.88191867, 0.85942638, 0.85942638, 0.85942638,
0.85942638, 0.83614726, 0.83614726, 0.83614726, 0.83614726,
0.81247789, 0.81247789, 0.81247789, 0.81247789, 0.78923474,
0.78923474, 0.78923474, 0.78923474, 0.76675375, 0.76675375,
0.76675375, 0.76675375, 0.74498531, 0.74498531, 0.74498531,
0.74498531, 0.72392675, 0.72392675, 0.72392675, 0.72392675,
0.70357996, 0.70357996, 0.70357996, 0.70357996, 0.68397009,
0.68397009, 0.68397009, 0.68397009, 0.66515637, 0.66515637,
0.66515637, 0.66515637, 0.64724516, 0.64724516, 0.64724516,
0.64724516, 0.63040323, 0.63040323, 0.63040323, 0.63040323,
0.61486697, 0.61486697, 0.61486697, 0.61486697, 0.60093753,
0.60093753, 0.60093753, 0.60093753, 0.58894559, 0.58894559,
0.58894559, 0.58894559, 0.5791716 , 0.5791716 , 0.5791716 ,
0.5791716 , 0.57173786, 0.57173786, 0.57173786, 0.57173786,
0.56656387, 0.56656387, 0.56656387, 0.56656387, 0.56343019,
0.56343019, 0.56343019, 0.56343019, 0.56206964, 0.56206964,
0.56206964, 0.56206964, 0.56186718, 0.56186718, 0.56186718,
0.56186718, 0.5622292 , 0.5622292 , 0.5622292 , 0.5622292 ,
0.56352241, 0.56352241, 0.56352241, 0.56352241, 0.56619671,
0.56619671, 0.56619671, 0.56619671, 0.56859552, 0.56859552,
0.56859552, 0.56859552, 0.56940349, 0.56940349, 0.56940349,
0.56940349, 0.56923843, 0.56923843, 0.56923843, 0.56923843,
0.56845654, 0.56845654, 0.56845654, 0.56845654, 0.56753857,
0.56753857, 0.56753857, 0.56753857, 0.5672215 , 0.5672215 ,
0.5672215 , 0.5672215 , 0.56822016, 0.56822016, 0.56822016,
0.56822016, 0.57247 , 0.57247 , 0.57247 , 0.57247 ,
0.5839843 , 0.5839843 , 0.5839843 , 0.5839843 , 0.61018524,
0.61018524, 0.61018524, 0.61018524, 0.66484813, 0.66484813,
0.66484813, 0.66484813, 0.77317594, 0.77317594, 0.77317594,
0.77317594, 0.98031916, 0.98031916, 0.98031916, 0.98031916,
1.36620913, 1.36620913, 1.36620913, 1.36620913, 2.05407781,
2.05407781, 2.05407781, 2.05407781, 3.0909881 , 3.0909881 ,
3.0909881 , 3.0909881 , 4.09901557, 4.09901557, 4.09901557,
4.09901557, 4.67576107, 4.67576107, 4.67576107, 4.67576107,
3.58271781, 3.58271781, 3.58271781, 3.58271781, 1.62778827,
1.62778827, 1.62778827, 1.62778827, 1.05141403, 1.05141403,
1.05141403, 1.05141403, 1.002022 , 1.002022 , 1.002022 ,
1.002022 , 1.00002489, 1.00002489, 1.00002489, 1.00002489,
1.00000006, 1.00000006, 1.00000006, 1.00000006, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.57351664, -19.57351664, -19.57351664, -19.57351664,
-19.54329587, -19.54329587, -19.54329587, -19.54329587,
-19.49682652, -19.49682652, -19.49682652, -19.49682652,
-19.41587326, -19.41587326, -19.41587326, -19.41587326,
-19.28619913, -19.28619913, -19.28619913, -19.28619913,
-19.08931809, -19.08931809, -19.08931809, -19.08931809,
-18.80723575, -18.80723575, -18.80723575, -18.80723575,
-18.42502783, -18.42502783, -18.42502783, -18.42502783,
-17.93388119, -17.93388119, -17.93388119, -17.93388119,
-17.33267704, -17.33267704, -17.33267704, -17.33267704,
-16.62769653, -16.62769653, -16.62769653, -16.62769653,
-15.83056805, -15.83056805, -15.83056805, -15.83056805,
-14.95522479, -14.95522479, -14.95522479, -14.95522479,
-14.01470288, -14.01470288, -14.01470288, -14.01470288,
-13.01895689, -13.01895689, -13.01895689, -13.01895689,
-11.98720526, -11.98720526, -11.98720526, -11.98720526,
-10.9521084 , -10.9521084 , -10.9521084 , -10.9521084 ,
-9.9234869 , -9.9234869 , -9.9234869 , -9.9234869 ,
-8.90475082, -8.90475082, -8.90475082, -8.90475082,
-7.89631245, -7.89631245, -7.89631245, -7.89631245,
-6.8995546 , -6.8995546 , -6.8995546 , -6.8995546 ,
-5.91698346, -5.91698346, -5.91698346, -5.91698346,
-4.95296473, -4.95296473, -4.95296473, -4.95296473,
-4.01464772, -4.01464772, -4.01464772, -4.01464772,
-3.11301518, -3.11301518, -3.11301518, -3.11301518,
-2.2637381 , -2.2637381 , -2.2637381 , -2.2637381 ,
-1.48720372, -1.48720372, -1.48720372, -1.48720372,
-0.80685477, -0.80685477, -0.80685477, -0.80685477,
-0.24516991, -0.24516991, -0.24516991, -0.24516991,
0.18238648, 0.18238648, 0.18238648, 0.18238648,
0.47381192, 0.47381192, 0.47381192, 0.47381192,
0.64435108, 0.64435108, 0.64435108, 0.64435108,
0.72335373, 0.72335373, 0.72335373, 0.72335373,
0.74473342, 0.74473342, 0.74473342, 0.74473342,
0.73856117, 0.73856117, 0.73856117, 0.73856117,
0.6849367 , 0.6849367 , 0.6849367 , 0.6849367 ,
0.56264789, 0.56264789, 0.56264789, 0.56264789,
0.43696319, 0.43696319, 0.43696319, 0.43696319,
0.35096003, 0.35096003, 0.35096003, 0.35096003,
0.29570925, 0.29570925, 0.29570925, 0.29570925,
0.26317089, 0.26317089, 0.26317089, 0.26317089,
0.2477037 , 0.2477037 , 0.2477037 , 0.2477037 ,
0.2405064 , 0.2405064 , 0.2405064 , 0.2405064 ,
0.23764166, 0.23764166, 0.23764166, 0.23764166,
0.23553365, 0.23553365, 0.23553365, 0.23553365,
0.23121368, 0.23121368, 0.23121368, 0.23121368,
0.21923797, 0.21923797, 0.21923797, 0.21923797,
0.19361124, 0.19361124, 0.19361124, 0.19361124,
0.15341409, 0.15341409, 0.15341409, 0.15341409,
0.12239052, 0.12239052, 0.12239052, 0.12239052,
0.11071176, 0.11071176, 0.11071176, 0.11071176,
0.12002847, 0.12002847, 0.12002847, 0.12002847,
0.15646164, 0.15646164, 0.15646164, 0.15646164,
0.17647316, 0.17647316, 0.17647316, 0.17647316,
-0.559644 , -0.559644 , -0.559644 , -0.559644 ,
-5.21017841, -5.21017841, -5.21017841, -5.21017841,
-14.79033422, -14.79033422, -14.79033422, -14.79033422,
-19.25410748, -19.25410748, -19.25410748, -19.25410748,
-19.59196705, -19.59196705, -19.59196705, -19.59196705,
-19.59743635, -19.59743635, -19.59743635, -19.59743635,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([9.99104868e+02, 9.99104868e+02, 9.99104868e+02, 9.99104868e+02,
9.97975676e+02, 9.97975676e+02, 9.97975676e+02, 9.97975676e+02,
9.96241518e+02, 9.96241518e+02, 9.96241518e+02, 9.96241518e+02,
9.93227116e+02, 9.93227116e+02, 9.93227116e+02, 9.93227116e+02,
9.88415564e+02, 9.88415564e+02, 9.88415564e+02, 9.88415564e+02,
9.81150008e+02, 9.81150008e+02, 9.81150008e+02, 9.81150008e+02,
9.70822440e+02, 9.70822440e+02, 9.70822440e+02, 9.70822440e+02,
9.56980992e+02, 9.56980992e+02, 9.56980992e+02, 9.56980992e+02,
9.39446248e+02, 9.39446248e+02, 9.39446248e+02, 9.39446248e+02,
9.18360061e+02, 9.18360061e+02, 9.18360061e+02, 9.18360061e+02,
8.94152425e+02, 8.94152425e+02, 8.94152425e+02, 8.94152425e+02,
8.67439511e+02, 8.67439511e+02, 8.67439511e+02, 8.67439511e+02,
8.38892594e+02, 8.38892594e+02, 8.38892594e+02, 8.38892594e+02,
8.09115807e+02, 8.09115807e+02, 8.09115807e+02, 8.09115807e+02,
7.78532813e+02, 7.78532813e+02, 7.78532813e+02, 7.78532813e+02,
7.47781594e+02, 7.47781594e+02, 7.47781594e+02, 7.47781594e+02,
7.17990672e+02, 7.17990672e+02, 7.17990672e+02, 7.17990672e+02,
6.89530685e+02, 6.89530685e+02, 6.89530685e+02, 6.89530685e+02,
6.62290410e+02, 6.62290410e+02, 6.62290410e+02, 6.62290410e+02,
6.36241730e+02, 6.36241730e+02, 6.36241730e+02, 6.36241730e+02,
6.11362815e+02, 6.11362815e+02, 6.11362815e+02, 6.11362815e+02,
5.87658689e+02, 5.87658689e+02, 5.87658689e+02, 5.87658689e+02,
5.65172198e+02, 5.65172198e+02, 5.65172198e+02, 5.65172198e+02,
5.43997977e+02, 5.43997977e+02, 5.43997977e+02, 5.43997977e+02,
5.24296334e+02, 5.24296334e+02, 5.24296334e+02, 5.24296334e+02,
5.06301281e+02, 5.06301281e+02, 5.06301281e+02, 5.06301281e+02,
4.90312750e+02, 4.90312750e+02, 4.90312750e+02, 4.90312750e+02,
4.76661009e+02, 4.76661009e+02, 4.76661009e+02, 4.76661009e+02,
4.65636316e+02, 4.65636316e+02, 4.65636316e+02, 4.65636316e+02,
4.57390322e+02, 4.57390322e+02, 4.57390322e+02, 4.57390322e+02,
4.51845821e+02, 4.51845821e+02, 4.51845821e+02, 4.51845821e+02,
4.48623358e+02, 4.48623358e+02, 4.48623358e+02, 4.48623358e+02,
4.47149698e+02, 4.47149698e+02, 4.47149698e+02, 4.47149698e+02,
4.46744951e+02, 4.46744951e+02, 4.46744951e+02, 4.46744951e+02,
4.46867378e+02, 4.46867378e+02, 4.46867378e+02, 4.46867378e+02,
4.47880353e+02, 4.47880353e+02, 4.47880353e+02, 4.47880353e+02,
4.50188582e+02, 4.50188582e+02, 4.50188582e+02, 4.50188582e+02,
4.52565860e+02, 4.52565860e+02, 4.52565860e+02, 4.52565860e+02,
4.54208238e+02, 4.54208238e+02, 4.54208238e+02, 4.54208238e+02,
4.55263682e+02, 4.55263682e+02, 4.55263682e+02, 4.55263682e+02,
4.55866441e+02, 4.55866441e+02, 4.55866441e+02, 4.55866441e+02,
4.56177752e+02, 4.56177752e+02, 4.56177752e+02, 4.56177752e+02,
4.56286145e+02, 4.56286145e+02, 4.56286145e+02, 4.56286145e+02,
4.56325796e+02, 4.56325796e+02, 4.56325796e+02, 4.56325796e+02,
4.56354405e+02, 4.56354405e+02, 4.56354405e+02, 4.56354405e+02,
4.56418263e+02, 4.56418263e+02, 4.56418263e+02, 4.56418263e+02,
4.56621863e+02, 4.56621863e+02, 4.56621863e+02, 4.56621863e+02,
4.57112300e+02, 4.57112300e+02, 4.57112300e+02, 4.57112300e+02,
4.57973595e+02, 4.57973595e+02, 4.57973595e+02, 4.57973595e+02,
4.58739636e+02, 4.58739636e+02, 4.58739636e+02, 4.58739636e+02,
4.59226578e+02, 4.59226578e+02, 4.59226578e+02, 4.59226578e+02,
4.59409554e+02, 4.59409554e+02, 4.59409554e+02, 4.59409554e+02,
4.58892267e+02, 4.58892267e+02, 4.58892267e+02, 4.58892267e+02,
4.57009278e+02, 4.57009278e+02, 4.57009278e+02, 4.57009278e+02,
4.27595172e+02, 4.27595172e+02, 4.27595172e+02, 4.27595172e+02,
2.37359835e+02, 2.37359835e+02, 2.37359835e+02, 2.37359835e+02,
3.60951923e+01, 3.60951923e+01, 3.60951923e+01, 3.60951923e+01,
9.83220267e-01, 9.83220267e-01, 9.83220267e-01, 9.83220267e-01,
1.30337788e-02, 1.30337788e-02, 1.30337788e-02, 1.30337788e-02,
1.00016618e-02, 1.00016618e-02, 1.00016618e-02, 1.00016618e-02,
1.00000014e-02, 1.00000014e-02, 1.00000014e-02, 1.00000014e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hll': [{'rho': array([0.99934328, 0.99934328, 0.99934328, 0.99934328, 0.99851611,
0.99851611, 0.99851611, 0.99851611, 0.99724725, 0.99724725,
0.99724725, 0.99724725, 0.99504269, 0.99504269, 0.99504269,
0.99504269, 0.9915246 , 0.9915246 , 0.9915246 , 0.9915246 ,
0.98621019, 0.98621019, 0.98621019, 0.98621019, 0.97864743,
0.97864743, 0.97864743, 0.97864743, 0.96849024, 0.96849024,
0.96849024, 0.96849024, 0.95558156, 0.95558156, 0.95558156,
0.95558156, 0.93998953, 0.93998953, 0.93998953, 0.93998953,
0.92198657, 0.92198657, 0.92198657, 0.92198657, 0.90197947,
0.90197947, 0.90197947, 0.90197947, 0.88041737, 0.88041737,
0.88041737, 0.88041737, 0.8577076 , 0.8577076 , 0.8577076 ,
0.8577076 , 0.83419893, 0.83419893, 0.83419893, 0.83419893,
0.81039602, 0.81039602, 0.81039602, 0.81039602, 0.7871834 ,
0.7871834 , 0.7871834 , 0.7871834 , 0.76477086, 0.76477086,
0.76477086, 0.76477086, 0.74313096, 0.74313096, 0.74313096,
0.74313096, 0.72227041, 0.72227041, 0.72227041, 0.72227041,
0.70221675, 0.70221675, 0.70221675, 0.70221675, 0.68302785,
0.68302785, 0.68302785, 0.68302785, 0.66480295, 0.66480295,
0.66480295, 0.66480295, 0.64769042, 0.64769042, 0.64769042,
0.64769042, 0.63188795, 0.63188795, 0.63188795, 0.63188795,
0.61762934, 0.61762934, 0.61762934, 0.61762934, 0.60514723,
0.60514723, 0.60514723, 0.60514723, 0.59461052, 0.59461052,
0.59461052, 0.59461052, 0.58606043, 0.58606043, 0.58606043,
0.58606043, 0.57936591, 0.57936591, 0.57936591, 0.57936591,
0.5742849 , 0.5742849 , 0.5742849 , 0.5742849 , 0.57056455,
0.57056455, 0.57056455, 0.57056455, 0.56812439, 0.56812439,
0.56812439, 0.56812439, 0.56694752, 0.56694752, 0.56694752,
0.56694752, 0.56675102, 0.56675102, 0.56675102, 0.56675102,
0.56703227, 0.56703227, 0.56703227, 0.56703227, 0.56746887,
0.56746887, 0.56746887, 0.56746887, 0.56814229, 0.56814229,
0.56814229, 0.56814229, 0.56926731, 0.56926731, 0.56926731,
0.56926731, 0.5708412 , 0.5708412 , 0.5708412 , 0.5708412 ,
0.57146233, 0.57146233, 0.57146233, 0.57146233, 0.57138607,
0.57138607, 0.57138607, 0.57138607, 0.57157687, 0.57157687,
0.57157687, 0.57157687, 0.57307564, 0.57307564, 0.57307564,
0.57307564, 0.57778305, 0.57778305, 0.57778305, 0.57778305,
0.58965085, 0.58965085, 0.58965085, 0.58965085, 0.61757489,
0.61757489, 0.61757489, 0.61757489, 0.676769 , 0.676769 ,
0.676769 , 0.676769 , 0.7947168 , 0.7947168 , 0.7947168 ,
0.7947168 , 1.02208294, 1.02208294, 1.02208294, 1.02208294,
1.45188831, 1.45188831, 1.45188831, 1.45188831, 2.23726335,
2.23726335, 2.23726335, 2.23726335, 3.36644262, 3.36644262,
3.36644262, 3.36644262, 4.30863495, 4.30863495, 4.30863495,
4.30863495, 4.7719083 , 4.7719083 , 4.7719083 , 4.7719083 ,
3.26199935, 3.26199935, 3.26199935, 3.26199935, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95728753e+01, -1.95728753e+01, -1.95728753e+01, -1.95728753e+01,
-1.95419011e+01, -1.95419011e+01, -1.95419011e+01, -1.95419011e+01,
-1.94943606e+01, -1.94943606e+01, -1.94943606e+01, -1.94943606e+01,
-1.94116539e+01, -1.94116539e+01, -1.94116539e+01, -1.94116539e+01,
-1.92793874e+01, -1.92793874e+01, -1.92793874e+01, -1.92793874e+01,
-1.90789037e+01, -1.90789037e+01, -1.90789037e+01, -1.90789037e+01,
-1.87921421e+01, -1.87921421e+01, -1.87921421e+01, -1.87921421e+01,
-1.84042251e+01, -1.84042251e+01, -1.84042251e+01, -1.84042251e+01,
-1.79064879e+01, -1.79064879e+01, -1.79064879e+01, -1.79064879e+01,
-1.72980007e+01, -1.72980007e+01, -1.72980007e+01, -1.72980007e+01,
-1.65851908e+01, -1.65851908e+01, -1.65851908e+01, -1.65851908e+01,
-1.57797077e+01, -1.57797077e+01, -1.57797077e+01, -1.57797077e+01,
-1.48953072e+01, -1.48953072e+01, -1.48953072e+01, -1.48953072e+01,
-1.39445524e+01, -1.39445524e+01, -1.39445524e+01, -1.39445524e+01,
-1.29362385e+01, -1.29362385e+01, -1.29362385e+01, -1.29362385e+01,
-1.18953231e+01, -1.18953231e+01, -1.18953231e+01, -1.18953231e+01,
-1.08579328e+01, -1.08579328e+01, -1.08579328e+01, -1.08579328e+01,
-9.83073930e+00, -9.83073930e+00, -9.83073930e+00, -9.83073930e+00,
-8.81601604e+00, -8.81601604e+00, -8.81601604e+00, -8.81601604e+00,
-7.81530982e+00, -7.81530982e+00, -7.81530982e+00, -7.81530982e+00,
-6.83139415e+00, -6.83139415e+00, -6.83139415e+00, -6.83139415e+00,
-5.86884536e+00, -5.86884536e+00, -5.86884536e+00, -5.86884536e+00,
-4.93466417e+00, -4.93466417e+00, -4.93466417e+00, -4.93466417e+00,
-4.03889039e+00, -4.03889039e+00, -4.03889039e+00, -4.03889039e+00,
-3.19481551e+00, -3.19481551e+00, -3.19481551e+00, -3.19481551e+00,
-2.41823045e+00, -2.41823045e+00, -2.41823045e+00, -2.41823045e+00,
-1.72550236e+00, -1.72550236e+00, -1.72550236e+00, -1.72550236e+00,
-1.13060519e+00, -1.13060519e+00, -1.13060519e+00, -1.13060519e+00,
-6.41517880e-01, -6.41517880e-01, -6.41517880e-01, -6.41517880e-01,
-2.58502471e-01, -2.58502471e-01, -2.58502471e-01, -2.58502471e-01,
2.67096654e-02, 2.67096654e-02, 2.67096654e-02, 2.67096654e-02,
2.26622767e-01, 2.26622767e-01, 2.26622767e-01, 2.26622767e-01,
3.57372328e-01, 3.57372328e-01, 3.57372328e-01, 3.57372328e-01,
4.33214769e-01, 4.33214769e-01, 4.33214769e-01, 4.33214769e-01,
4.69047565e-01, 4.69047565e-01, 4.69047565e-01, 4.69047565e-01,
4.79570771e-01, 4.79570771e-01, 4.79570771e-01, 4.79570771e-01,
4.76227154e-01, 4.76227154e-01, 4.76227154e-01, 4.76227154e-01,
4.46162545e-01, 4.46162545e-01, 4.46162545e-01, 4.46162545e-01,
3.63818059e-01, 3.63818059e-01, 3.63818059e-01, 3.63818059e-01,
2.15124074e-01, 2.15124074e-01, 2.15124074e-01, 2.15124074e-01,
8.93027653e-02, 8.93027653e-02, 8.93027653e-02, 8.93027653e-02,
2.06270782e-02, 2.06270782e-02, 2.06270782e-02, 2.06270782e-02,
-2.92513730e-03, -2.92513730e-03, -2.92513730e-03, -2.92513730e-03,
-3.92937495e-03, -3.92937495e-03, -3.92937495e-03, -3.92937495e-03,
2.35331575e-02, 2.35331575e-02, 2.35331575e-02, 2.35331575e-02,
9.46626638e-02, 9.46626638e-02, 9.46626638e-02, 9.46626638e-02,
1.49629928e-01, 1.49629928e-01, 1.49629928e-01, 1.49629928e-01,
1.70157235e-01, 1.70157235e-01, 1.70157235e-01, 1.70157235e-01,
1.69584193e-01, 1.69584193e-01, 1.69584193e-01, 1.69584193e-01,
1.45946700e-01, 1.45946700e-01, 1.45946700e-01, 1.45946700e-01,
7.66535320e-02, 7.66535320e-02, 7.66535320e-02, 7.66535320e-02,
1.60429550e-02, 1.60429550e-02, 1.60429550e-02, 1.60429550e-02,
3.24300562e-02, 3.24300562e-02, 3.24300562e-02, 3.24300562e-02,
1.15367973e-01, 1.15367973e-01, 1.15367973e-01, 1.15367973e-01,
-2.77732333e-01, -2.77732333e-01, -2.77732333e-01, -2.77732333e-01,
-6.88001983e+00, -6.88001983e+00, -6.88001983e+00, -6.88001983e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99080830e+02, 9.99080830e+02, 9.99080830e+02, 9.99080830e+02,
9.97923433e+02, 9.97923433e+02, 9.97923433e+02, 9.97923433e+02,
9.96149113e+02, 9.96149113e+02, 9.96149113e+02, 9.96149113e+02,
9.93068920e+02, 9.93068920e+02, 9.93068920e+02, 9.93068920e+02,
9.88160094e+02, 9.88160094e+02, 9.88160094e+02, 9.88160094e+02,
9.80759608e+02, 9.80759608e+02, 9.80759608e+02, 9.80759608e+02,
9.70257799e+02, 9.70257799e+02, 9.70257799e+02, 9.70257799e+02,
9.56206452e+02, 9.56206452e+02, 9.56206452e+02, 9.56206452e+02,
9.38434995e+02, 9.38434995e+02, 9.38434995e+02, 9.38434995e+02,
9.17096911e+02, 9.17096911e+02, 9.17096911e+02, 9.17096911e+02,
8.92632853e+02, 8.92632853e+02, 8.92632853e+02, 8.92632853e+02,
8.65664895e+02, 8.65664895e+02, 8.65664895e+02, 8.65664895e+02,
8.36862646e+02, 8.36862646e+02, 8.36862646e+02, 8.36862646e+02,
8.06819454e+02, 8.06819454e+02, 8.06819454e+02, 8.06819454e+02,
7.75972344e+02, 7.75972344e+02, 7.75972344e+02, 7.75972344e+02,
7.45104729e+02, 7.45104729e+02, 7.45104729e+02, 7.45104729e+02,
7.15395716e+02, 7.15395716e+02, 7.15395716e+02, 7.15395716e+02,
6.87051653e+02, 6.87051653e+02, 6.87051653e+02, 6.87051653e+02,
6.59998015e+02, 6.59998015e+02, 6.59998015e+02, 6.59998015e+02,
6.34216437e+02, 6.34216437e+02, 6.34216437e+02, 6.34216437e+02,
6.09714105e+02, 6.09714105e+02, 6.09714105e+02, 6.09714105e+02,
5.86533693e+02, 5.86533693e+02, 5.86533693e+02, 5.86533693e+02,
5.64763854e+02, 5.64763854e+02, 5.64763854e+02, 5.64763854e+02,
5.44544477e+02, 5.44544477e+02, 5.44544477e+02, 5.44544477e+02,
5.26062779e+02, 5.26062779e+02, 5.26062779e+02, 5.26062779e+02,
5.09535724e+02, 5.09535724e+02, 5.09535724e+02, 5.09535724e+02,
4.95171163e+02, 4.95171163e+02, 4.95171163e+02, 4.95171163e+02,
4.83112079e+02, 4.83112079e+02, 4.83112079e+02, 4.83112079e+02,
4.73389742e+02, 4.73389742e+02, 4.73389742e+02, 4.73389742e+02,
4.65887995e+02, 4.65887995e+02, 4.65887995e+02, 4.65887995e+02,
4.60378925e+02, 4.60378925e+02, 4.60378925e+02, 4.60378925e+02,
4.56538628e+02, 4.56538628e+02, 4.56538628e+02, 4.56538628e+02,
4.54058031e+02, 4.54058031e+02, 4.54058031e+02, 4.54058031e+02,
4.52614854e+02, 4.52614854e+02, 4.52614854e+02, 4.52614854e+02,
4.51934049e+02, 4.51934049e+02, 4.51934049e+02, 4.51934049e+02,
4.51747252e+02, 4.51747252e+02, 4.51747252e+02, 4.51747252e+02,
4.51807226e+02, 4.51807226e+02, 4.51807226e+02, 4.51807226e+02,
4.52374748e+02, 4.52374748e+02, 4.52374748e+02, 4.52374748e+02,
4.53942543e+02, 4.53942543e+02, 4.53942543e+02, 4.53942543e+02,
4.56782749e+02, 4.56782749e+02, 4.56782749e+02, 4.56782749e+02,
4.59187550e+02, 4.59187550e+02, 4.59187550e+02, 4.59187550e+02,
4.60484560e+02, 4.60484560e+02, 4.60484560e+02, 4.60484560e+02,
4.60945937e+02, 4.60945937e+02, 4.60945937e+02, 4.60945937e+02,
4.60942022e+02, 4.60942022e+02, 4.60942022e+02, 4.60942022e+02,
4.60400779e+02, 4.60400779e+02, 4.60400779e+02, 4.60400779e+02,
4.59005251e+02, 4.59005251e+02, 4.59005251e+02, 4.59005251e+02,
4.57913462e+02, 4.57913462e+02, 4.57913462e+02, 4.57913462e+02,
4.57449218e+02, 4.57449218e+02, 4.57449218e+02, 4.57449218e+02,
4.57370070e+02, 4.57370070e+02, 4.57370070e+02, 4.57370070e+02,
4.57864703e+02, 4.57864703e+02, 4.57864703e+02, 4.57864703e+02,
4.59758501e+02, 4.59758501e+02, 4.59758501e+02, 4.59758501e+02,
4.61753093e+02, 4.61753093e+02, 4.61753093e+02, 4.61753093e+02,
4.62763243e+02, 4.62763243e+02, 4.62763243e+02, 4.62763243e+02,
4.57485339e+02, 4.57485339e+02, 4.57485339e+02, 4.57485339e+02,
4.14686087e+02, 4.14686087e+02, 4.14686087e+02, 4.14686087e+02,
2.01684986e+02, 2.01684986e+02, 2.01684986e+02, 2.01684986e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hllc': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745]), 'P': array([1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99948739, 0.99948739, 0.99948739,
0.99948739, 0.98895197, 0.98895197, 0.98895197, 0.98895197,
0.91124915, 0.91124915, 0.91124915, 0.91124915, 0.8298636 ,
0.8298636 , 0.8298636 , 0.8298636 , 1.27044789, 1.27044789,
1.27044789, 1.27044789, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.57838487, -19.57838487, -19.57838487, -19.57838487,
-19.19065938, -19.19065938, -19.19065938, -19.19065938,
-16.24242196, -16.24242196, -16.24242196, -16.24242196,
-7.5071121 , -7.5071121 , -7.5071121 , -7.5071121 ,
-15.1204002 , -15.1204002 , -15.1204002 , -15.1204002 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99286910e+02, 9.99286910e+02, 9.99286910e+02, 9.99286910e+02,
9.84883800e+02, 9.84883800e+02, 9.84883800e+02, 9.84883800e+02,
8.82839182e+02, 8.82839182e+02, 8.82839182e+02, 8.82839182e+02,
6.88955301e+02, 6.88955301e+02, 6.88955301e+02, 6.88955301e+02,
3.63390464e+01, 3.63390464e+01, 3.63390464e+01, 3.63390464e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999956, 0.99999956, 0.99999956, 0.99999956,
0.99998097, 0.99998097, 0.99998097, 0.99998097, 0.99964679,
0.99964679, 0.99964679, 0.99964679, 0.99634543, 0.99634543,
0.99634543, 0.99634543, 0.97673083, 0.97673083, 0.97673083,
0.97673083, 0.90100139, 0.90100139, 0.90100139, 0.90100139,
0.75547019, 0.75547019, 0.75547019, 0.75547019, 0.70753077,
0.70753077, 0.70753077, 0.70753077, 1.66329407, 1.66329407,
1.66329407, 1.66329407, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59743357, -19.59743357, -19.59743357, -19.59743357,
-19.59673808, -19.59673808, -19.59673808, -19.59673808,
-19.58424969, -19.58424969, -19.58424969, -19.58424969,
-19.46129146, -19.46129146, -19.46129146, -19.46129146,
-18.73730805, -18.73730805, -18.73730805, -18.73730805,
-16.00950488, -16.00950488, -16.00950488, -16.00950488,
-9.43290713, -9.43290713, -9.43290713, -9.43290713,
-1.48421801, -1.48421801, -1.48421801, -1.48421801,
-11.3713146 , -11.3713146 , -11.3713146 , -11.3713146 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999385e+02, 9.99999385e+02, 9.99999385e+02, 9.99999385e+02,
9.99973363e+02, 9.99973363e+02, 9.99973363e+02, 9.99973363e+02,
9.99506198e+02, 9.99506198e+02, 9.99506198e+02, 9.99506198e+02,
9.94916589e+02, 9.94916589e+02, 9.94916589e+02, 9.94916589e+02,
9.68255214e+02, 9.68255214e+02, 9.68255214e+02, 9.68255214e+02,
8.73242615e+02, 8.73242615e+02, 8.73242615e+02, 8.73242615e+02,
6.79344724e+02, 6.79344724e+02, 6.79344724e+02, 6.79344724e+02,
5.50094126e+02, 5.50094126e+02, 5.50094126e+02, 5.50094126e+02,
9.51270435e+01, 9.51270435e+01, 9.51270435e+01, 9.51270435e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999926, 0.99999926,
0.99999926, 0.99999926, 0.99998694, 0.99998694, 0.99998694,
0.99998694, 0.99984664, 0.99984664, 0.99984664, 0.99984664,
0.9987454 , 0.9987454 , 0.9987454 , 0.9987454 , 0.99266643,
0.99266643, 0.99266643, 0.99266643, 0.96887737, 0.96887737,
0.96887737, 0.96887737, 0.90244574, 0.90244574, 0.90244574,
0.90244574, 0.76901116, 0.76901116, 0.76901116, 0.76901116,
0.6478654 , 0.6478654 , 0.6478654 , 0.6478654 , 0.65349069,
0.65349069, 0.65349069, 0.65349069, 2.067065 , 2.067065 ,
2.067065 , 2.067065 , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744907, -19.59744907, -19.59744907, -19.59744907,
-19.59742242, -19.59742242, -19.59742242, -19.59742242,
-19.5969614 , -19.5969614 , -19.5969614 , -19.5969614 ,
-19.59171353, -19.59171353, -19.59171353, -19.59171353,
-19.55055566, -19.55055566, -19.55055566, -19.55055566,
-19.3236798 , -19.3236798 , -19.3236798 , -19.3236798 ,
-18.43434783, -18.43434783, -18.43434783, -18.43434783,
-15.90408442, -15.90408442, -15.90408442, -15.90408442,
-10.48663119, -10.48663119, -10.48663119, -10.48663119,
-4.574182 , -4.574182 , -4.574182 , -4.574182 ,
1.13492526, 1.13492526, 1.13492526, 1.13492526,
-8.69947782, -8.69947782, -8.69947782, -8.69947782,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999965e+02, 9.99999965e+02, 9.99999965e+02, 9.99999965e+02,
9.99998968e+02, 9.99998968e+02, 9.99998968e+02, 9.99998968e+02,
9.99981718e+02, 9.99981718e+02, 9.99981718e+02, 9.99981718e+02,
9.99785381e+02, 9.99785381e+02, 9.99785381e+02, 9.99785381e+02,
9.98246693e+02, 9.98246693e+02, 9.98246693e+02, 9.98246693e+02,
9.89801126e+02, 9.89801126e+02, 9.89801126e+02, 9.89801126e+02,
9.57286658e+02, 9.57286658e+02, 9.57286658e+02, 9.57286658e+02,
8.69906714e+02, 8.69906714e+02, 8.69906714e+02, 8.69906714e+02,
7.07459228e+02, 7.07459228e+02, 7.07459228e+02, 7.07459228e+02,
5.43451614e+02, 5.43451614e+02, 5.43451614e+02, 5.43451614e+02,
4.93414823e+02, 4.93414823e+02, 4.93414823e+02, 4.93414823e+02,
1.61847159e+02, 1.61847159e+02, 1.61847159e+02, 1.61847159e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999949, 0.99999949, 0.99999949, 0.99999949, 0.99999357,
0.99999357, 0.99999357, 0.99999357, 0.99993888, 0.99993888,
0.99993888, 0.99993888, 0.99955523, 0.99955523, 0.99955523,
0.99955523, 0.99750061, 0.99750061, 0.99750061, 0.99750061,
0.98912252, 0.98912252, 0.98912252, 0.98912252, 0.96323089,
0.96323089, 0.96323089, 0.96323089, 0.90234429, 0.90234429,
0.90234429, 0.90234429, 0.79042885, 0.79042885, 0.79042885,
0.79042885, 0.66843501, 0.66843501, 0.66843501, 0.66843501,
0.59183401, 0.59183401, 0.59183401, 0.59183401, 0.63275902,
0.63275902, 0.63275902, 0.63275902, 2.46485766, 2.46485766,
2.46485766, 2.46485766, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744996, -19.59744996, -19.59744996, -19.59744996,
-19.5974489 , -19.5974489 , -19.5974489 , -19.5974489 ,
-19.59743093, -19.59743093, -19.59743093, -19.59743093,
-19.59720925, -19.59720925, -19.59720925, -19.59720925,
-19.5951631 , -19.5951631 , -19.5951631 , -19.5951631 ,
-19.58081283, -19.58081283, -19.58081283, -19.58081283,
-19.50398779, -19.50398779, -19.50398779, -19.50398779,
-19.1904876 , -19.1904876 , -19.1904876 , -19.1904876 ,
-18.21442327, -18.21442327, -18.21442327, -18.21442327,
-15.85574791, -15.85574791, -15.85574791, -15.85574791,
-11.23238647, -11.23238647, -11.23238647, -11.23238647,
-5.46798522, -5.46798522, -5.46798522, -5.46798522,
-2.02281046, -2.02281046, -2.02281046, -2.02281046,
1.33644011, 1.33644011, 1.33644011, 1.33644011,
-6.66695933, -6.66695933, -6.66695933, -6.66695933,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
9.99999286e+02, 9.99999286e+02, 9.99999286e+02, 9.99999286e+02,
9.99990992e+02, 9.99990992e+02, 9.99990992e+02, 9.99990992e+02,
9.99914435e+02, 9.99914435e+02, 9.99914435e+02, 9.99914435e+02,
9.99377660e+02, 9.99377660e+02, 9.99377660e+02, 9.99377660e+02,
9.96508169e+02, 9.96508169e+02, 9.96508169e+02, 9.96508169e+02,
9.84871586e+02, 9.84871586e+02, 9.84871586e+02, 9.84871586e+02,
9.49393535e+02, 9.49393535e+02, 9.49393535e+02, 9.49393535e+02,
8.68303546e+02, 8.68303546e+02, 8.68303546e+02, 8.68303546e+02,
7.27511818e+02, 7.27511818e+02, 7.27511818e+02, 7.27511818e+02,
5.81800666e+02, 5.81800666e+02, 5.81800666e+02, 5.81800666e+02,
4.77773799e+02, 4.77773799e+02, 4.77773799e+02, 4.77773799e+02,
4.72750813e+02, 4.72750813e+02, 4.72750813e+02, 4.72750813e+02,
2.21621630e+02, 2.21621630e+02, 2.21621630e+02, 2.21621630e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999973, 0.99999973, 0.99999973,
0.99999973, 0.99999717, 0.99999717, 0.99999717, 0.99999717,
0.99997627, 0.99997627, 0.99997627, 0.99997627, 0.99983916,
0.99983916, 0.99983916, 0.99983916, 0.99911628, 0.99911628,
0.99911628, 0.99911628, 0.9960667 , 0.9960667 , 0.9960667 ,
0.9960667 , 0.985847 , 0.985847 , 0.985847 , 0.985847 ,
0.95879846, 0.95879846, 0.95879846, 0.95879846, 0.9020718 ,
0.9020718 , 0.9020718 , 0.9020718 , 0.80567311, 0.80567311,
0.80567311, 0.80567311, 0.69028634, 0.69028634, 0.69028634,
0.69028634, 0.61553465, 0.61553465, 0.61553465, 0.61553465,
0.57082122, 0.57082122, 0.57082122, 0.57082122, 0.62660163,
0.62660163, 0.62660163, 0.62660163, 2.8493705 , 2.8493705 ,
2.8493705 , 2.8493705 , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744996, -19.59744996, -19.59744996, -19.59744996,
-19.59744923, -19.59744923, -19.59744923, -19.59744923,
-19.59743987, -19.59743987, -19.59743987, -19.59743987,
-19.59734408, -19.59734408, -19.59734408, -19.59734408,
-19.59656205, -19.59656205, -19.59656205, -19.59656205,
-19.59143234, -19.59143234, -19.59143234, -19.59143234,
-19.56439055, -19.56439055, -19.56439055, -19.56439055,
-19.45029042, -19.45029042, -19.45029042, -19.45029042,
-19.06697844, -19.06697844, -19.06697844, -19.06697844,
-18.04151049, -18.04151049, -18.04151049, -18.04151049,
-15.82304381, -15.82304381, -15.82304381, -15.82304381,
-11.78035985, -11.78035985, -11.78035985, -11.78035985,
-6.62297822, -6.62297822, -6.62297822, -6.62297822,
-2.34925393, -2.34925393, -2.34925393, -2.34925393,
-0.93147575, -0.93147575, -0.93147575, -0.93147575,
0.57907591, 0.57907591, 0.57907591, 0.57907591,
-5.12959986, -5.12959986, -5.12959986, -5.12959986,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999971e+02, 9.99999971e+02, 9.99999971e+02, 9.99999971e+02,
9.99999621e+02, 9.99999621e+02, 9.99999621e+02, 9.99999621e+02,
9.99996037e+02, 9.99996037e+02, 9.99996037e+02, 9.99996037e+02,
9.99966776e+02, 9.99966776e+02, 9.99966776e+02, 9.99966776e+02,
9.99774861e+02, 9.99774861e+02, 9.99774861e+02, 9.99774861e+02,
9.98763679e+02, 9.98763679e+02, 9.98763679e+02, 9.98763679e+02,
9.94506696e+02, 9.94506696e+02, 9.94506696e+02, 9.94506696e+02,
9.80319621e+02, 9.80319621e+02, 9.80319621e+02, 9.80319621e+02,
9.43228677e+02, 9.43228677e+02, 9.43228677e+02, 9.43228677e+02,
8.67220336e+02, 8.67220336e+02, 8.67220336e+02, 8.67220336e+02,
7.42845128e+02, 7.42845128e+02, 7.42845128e+02, 7.42845128e+02,
6.04271160e+02, 6.04271160e+02, 6.04271160e+02, 6.04271160e+02,
5.17946575e+02, 5.17946575e+02, 5.17946575e+02, 5.17946575e+02,
4.54246489e+02, 4.54246489e+02, 4.54246489e+02, 4.54246489e+02,
4.66921417e+02, 4.66921417e+02, 4.66921417e+02, 4.66921417e+02,
2.65782010e+02, 2.65782010e+02, 2.65782010e+02, 2.65782010e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999882, 0.99999882,
0.99999882, 0.99999882, 0.99999087, 0.99999087, 0.99999087,
0.99999087, 0.99994103, 0.99994103, 0.99994103, 0.99994103,
0.99968069, 0.99968069, 0.99968069, 0.99968069, 0.99855338,
0.99855338, 0.99855338, 0.99855338, 0.99453492, 0.99453492,
0.99453492, 0.99453492, 0.9828373 , 0.9828373 , 0.9828373 ,
0.9828373 , 0.95517652, 0.95517652, 0.95517652, 0.95517652,
0.90186652, 0.90186652, 0.90186652, 0.90186652, 0.81635295,
0.81635295, 0.81635295, 0.81635295, 0.71244513, 0.71244513,
0.71244513, 0.71244513, 0.62960431, 0.62960431, 0.62960431,
0.62960431, 0.5905485 , 0.5905485 , 0.5905485 , 0.5905485 ,
0.56964965, 0.56964965, 0.56964965, 0.56964965, 0.62277297,
0.62277297, 0.62277297, 0.62277297, 3.22604657, 3.22604657,
3.22604657, 3.22604657, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744957, -19.59744957, -19.59744957, -19.59744957,
-19.59744521, -19.59744521, -19.59744521, -19.59744521,
-19.59740573, -19.59740573, -19.59740573, -19.59740573,
-19.59710849, -19.59710849, -19.59710849, -19.59710849,
-19.59524365, -19.59524365, -19.59524365, -19.59524365,
-19.58550347, -19.58550347, -19.58550347, -19.58550347,
-19.54332535, -19.54332535, -19.54332535, -19.54332535,
-19.39286212, -19.39286212, -19.39286212, -19.39286212,
-18.95316282, -18.95316282, -18.95316282, -18.95316282,
-17.89996733, -17.89996733, -17.89996733, -17.89996733,
-15.80397365, -15.80397365, -15.80397365, -15.80397365,
-12.20514556, -12.20514556, -12.20514556, -12.20514556,
-7.48327423, -7.48327423, -7.48327423, -7.48327423,
-3.65059602, -3.65059602, -3.65059602, -3.65059602,
-0.6984312 , -0.6984312 , -0.6984312 , -0.6984312 ,
-0.45527074, -0.45527074, -0.45527074, -0.45527074,
0.02647803, 0.02647803, 0.02647803, 0.02647803,
-4.01833224, -4.01833224, -4.01833224, -4.01833224,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999984e+02, 9.99999984e+02, 9.99999984e+02, 9.99999984e+02,
9.99999821e+02, 9.99999821e+02, 9.99999821e+02, 9.99999821e+02,
9.99998344e+02, 9.99998344e+02, 9.99998344e+02, 9.99998344e+02,
9.99987222e+02, 9.99987222e+02, 9.99987222e+02, 9.99987222e+02,
9.99917449e+02, 9.99917449e+02, 9.99917449e+02, 9.99917449e+02,
9.99553087e+02, 9.99553087e+02, 9.99553087e+02, 9.99553087e+02,
9.97976586e+02, 9.97976586e+02, 9.97976586e+02, 9.97976586e+02,
9.92370003e+02, 9.92370003e+02, 9.92370003e+02, 9.92370003e+02,
9.76141335e+02, 9.76141335e+02, 9.76141335e+02, 9.76141335e+02,
9.38208895e+02, 9.38208895e+02, 9.38208895e+02, 9.38208895e+02,
8.66586204e+02, 8.66586204e+02, 8.66586204e+02, 8.66586204e+02,
7.55006792e+02, 7.55006792e+02, 7.55006792e+02, 7.55006792e+02,
6.26897420e+02, 6.26897420e+02, 6.26897420e+02, 6.26897420e+02,
5.32228005e+02, 5.32228005e+02, 5.32228005e+02, 5.32228005e+02,
4.88558147e+02, 4.88558147e+02, 4.88558147e+02, 4.88558147e+02,
4.52862489e+02, 4.52862489e+02, 4.52862489e+02, 4.52862489e+02,
4.62028109e+02, 4.62028109e+02, 4.62028109e+02, 4.62028109e+02,
3.00499029e+02, 3.00499029e+02, 3.00499029e+02, 3.00499029e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999952, 0.99999952, 0.99999952, 0.99999952, 0.9999965 ,
0.9999965 , 0.9999965 , 0.9999965 , 0.99997816, 0.99997816,
0.99997816, 0.99997816, 0.99988296, 0.99988296, 0.99988296,
0.99988296, 0.99946234, 0.99946234, 0.99946234, 0.99946234,
0.99789034, 0.99789034, 0.99789034, 0.99789034, 0.99295856,
0.99295856, 0.99295856, 0.99295856, 0.980071 , 0.980071 ,
0.980071 , 0.980071 , 0.9521403 , 0.9521403 , 0.9521403 ,
0.9521403 , 0.90173314, 0.90173314, 0.90173314, 0.90173314,
0.82445024, 0.82445024, 0.82445024, 0.82445024, 0.72949004,
0.72949004, 0.72949004, 0.72949004, 0.65187205, 0.65187205,
0.65187205, 0.65187205, 0.59559841, 0.59559841, 0.59559841,
0.59559841, 0.57914818, 0.57914818, 0.57914818, 0.57914818,
0.57437002, 0.57437002, 0.57437002, 0.57437002, 0.63368918,
0.63368918, 0.63368918, 0.63368918, 3.58726912, 3.58726912,
3.58726912, 3.58726912, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974479e+01, -1.95974479e+01, -1.95974479e+01, -1.95974479e+01,
-1.95974320e+01, -1.95974320e+01, -1.95974320e+01, -1.95974320e+01,
-1.95973191e+01, -1.95973191e+01, -1.95973191e+01, -1.95973191e+01,
-1.95966329e+01, -1.95966329e+01, -1.95966329e+01, -1.95966329e+01,
-1.95930707e+01, -1.95930707e+01, -1.95930707e+01, -1.95930707e+01,
-1.95773334e+01, -1.95773334e+01, -1.95773334e+01, -1.95773334e+01,
-1.95185033e+01, -1.95185033e+01, -1.95185033e+01, -1.95185033e+01,
-1.93336877e+01, -1.93336877e+01, -1.93336877e+01, -1.93336877e+01,
-1.88482664e+01, -1.88482664e+01, -1.88482664e+01, -1.88482664e+01,
-1.77810596e+01, -1.77810596e+01, -1.77810596e+01, -1.77810596e+01,
-1.57923139e+01, -1.57923139e+01, -1.57923139e+01, -1.57923139e+01,
-1.25447227e+01, -1.25447227e+01, -1.25447227e+01, -1.25447227e+01,
-8.23822829e+00, -8.23822829e+00, -8.23822829e+00, -8.23822829e+00,
-4.43863694e+00, -4.43863694e+00, -4.43863694e+00, -4.43863694e+00,
-1.92160634e+00, -1.92160634e+00, -1.92160634e+00, -1.92160634e+00,
-1.77949723e-02, -1.77949723e-02, -1.77949723e-02, -1.77949723e-02,
-2.01908997e-01, -2.01908997e-01, -2.01908997e-01, -2.01908997e-01,
-2.14835096e-01, -2.14835096e-01, -2.14835096e-01, -2.14835096e-01,
-3.18805273e+00, -3.18805273e+00, -3.18805273e+00, -3.18805273e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999921e+02, 9.99999921e+02, 9.99999921e+02, 9.99999921e+02,
9.99999326e+02, 9.99999326e+02, 9.99999326e+02, 9.99999326e+02,
9.99995102e+02, 9.99995102e+02, 9.99995102e+02, 9.99995102e+02,
9.99969427e+02, 9.99969427e+02, 9.99969427e+02, 9.99969427e+02,
9.99836154e+02, 9.99836154e+02, 9.99836154e+02, 9.99836154e+02,
9.99247547e+02, 9.99247547e+02, 9.99247547e+02, 9.99247547e+02,
9.97049802e+02, 9.97049802e+02, 9.97049802e+02, 9.97049802e+02,
9.90172519e+02, 9.90172519e+02, 9.90172519e+02, 9.90172519e+02,
9.72304421e+02, 9.72304421e+02, 9.72304421e+02, 9.72304421e+02,
9.34010134e+02, 9.34010134e+02, 9.34010134e+02, 9.34010134e+02,
8.66196340e+02, 8.66196340e+02, 8.66196340e+02, 8.66196340e+02,
7.64882551e+02, 7.64882551e+02, 7.64882551e+02, 7.64882551e+02,
6.45657443e+02, 6.45657443e+02, 6.45657443e+02, 6.45657443e+02,
5.54585581e+02, 5.54585581e+02, 5.54585581e+02, 5.54585581e+02,
4.92797177e+02, 4.92797177e+02, 4.92797177e+02, 4.92797177e+02,
4.75345099e+02, 4.75345099e+02, 4.75345099e+02, 4.75345099e+02,
4.57990819e+02, 4.57990819e+02, 4.57990819e+02, 4.57990819e+02,
4.60103261e+02, 4.60103261e+02, 4.60103261e+02, 4.60103261e+02,
3.30008496e+02, 3.30008496e+02, 3.30008496e+02, 3.30008496e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999981, 0.99999981, 0.99999981,
0.99999981, 0.99999866, 0.99999866, 0.99999866, 0.99999866,
0.99999185, 0.99999185, 0.99999185, 0.99999185, 0.99995665,
0.99995665, 0.99995665, 0.99995665, 0.9997987 , 0.9997987 ,
0.9997987 , 0.9997987 , 0.99918622, 0.99918622, 0.99918622,
0.99918622, 0.99714781, 0.99714781, 0.99714781, 0.99714781,
0.99137002, 0.99137002, 0.99137002, 0.99137002, 0.97752123,
0.97752123, 0.97752123, 0.97752123, 0.94954186, 0.94954186,
0.94954186, 0.94954186, 0.90166108, 0.90166108, 0.90166108,
0.90166108, 0.83096957, 0.83096957, 0.83096957, 0.83096957,
0.7436459 , 0.7436459 , 0.7436459 , 0.7436459 , 0.66836636,
0.66836636, 0.66836636, 0.66836636, 0.61591285, 0.61591285,
0.61591285, 0.61591285, 0.57809044, 0.57809044, 0.57809044,
0.57809044, 0.57324242, 0.57324242, 0.57324242, 0.57324242,
0.57874876, 0.57874876, 0.57874876, 0.57874876, 0.65663366,
0.65663366, 0.65663366, 0.65663366, 3.93821618, 3.93821618,
3.93821618, 3.93821618, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.5974499 , -19.5974499 , -19.5974499 , -19.5974499 ,
-19.59744909, -19.59744909, -19.59744909, -19.59744909,
-19.59744279, -19.59744279, -19.59744279, -19.59744279,
-19.59739985, -19.59739985, -19.59739985, -19.59739985,
-19.59714503, -19.59714503, -19.59714503, -19.59714503,
-19.59582803, -19.59582803, -19.59582803, -19.59582803,
-19.58991798, -19.58991798, -19.58991798, -19.58991798,
-19.56700021, -19.56700021, -19.56700021, -19.56700021,
-19.49069137, -19.49069137, -19.49069137, -19.49069137,
-19.27397613, -19.27397613, -19.27397613, -19.27397613,
-18.75133258, -18.75133258, -18.75133258, -18.75133258,
-17.67906739, -17.67906739, -17.67906739, -17.67906739,
-15.78509673, -15.78509673, -15.78509673, -15.78509673,
-12.82087437, -12.82087437, -12.82087437, -12.82087437,
-8.87533311, -8.87533311, -8.87533311, -8.87533311,
-5.28368574, -5.28368574, -5.28368574, -5.28368574,
-2.42980818, -2.42980818, -2.42980818, -2.42980818,
-1.01970799, -1.01970799, -1.01970799, -1.01970799,
0.11540562, 0.11540562, 0.11540562, 0.11540562,
-0.03629139, -0.03629139, -0.03629139, -0.03629139,
-0.24415936, -0.24415936, -0.24415936, -0.24415936,
-2.52596988, -2.52596988, -2.52596988, -2.52596988,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999966e+02, 9.99999966e+02, 9.99999966e+02, 9.99999966e+02,
9.99999730e+02, 9.99999730e+02, 9.99999730e+02, 9.99999730e+02,
9.99998124e+02, 9.99998124e+02, 9.99998124e+02, 9.99998124e+02,
9.99988589e+02, 9.99988589e+02, 9.99988589e+02, 9.99988589e+02,
9.99939313e+02, 9.99939313e+02, 9.99939313e+02, 9.99939313e+02,
9.99718211e+02, 9.99718211e+02, 9.99718211e+02, 9.99718211e+02,
9.98861226e+02, 9.98861226e+02, 9.98861226e+02, 9.98861226e+02,
9.96012267e+02, 9.96012267e+02, 9.96012267e+02, 9.96012267e+02,
9.87959394e+02, 9.87959394e+02, 9.87959394e+02, 9.87959394e+02,
9.68770607e+02, 9.68770607e+02, 9.68770607e+02, 9.68770607e+02,
9.30421725e+02, 9.30421725e+02, 9.30421725e+02, 9.30421725e+02,
8.65952932e+02, 8.65952932e+02, 8.65952932e+02, 8.65952932e+02,
7.73014001e+02, 7.73014001e+02, 7.73014001e+02, 7.73014001e+02,
6.62399864e+02, 6.62399864e+02, 6.62399864e+02, 6.62399864e+02,
5.71846195e+02, 5.71846195e+02, 5.71846195e+02, 5.71846195e+02,
5.12728848e+02, 5.12728848e+02, 5.12728848e+02, 5.12728848e+02,
4.72759582e+02, 4.72759582e+02, 4.72759582e+02, 4.72759582e+02,
4.68567984e+02, 4.68567984e+02, 4.68567984e+02, 4.68567984e+02,
4.62783905e+02, 4.62783905e+02, 4.62783905e+02, 4.62783905e+02,
4.61540554e+02, 4.61540554e+02, 4.61540554e+02, 4.61540554e+02,
3.57220974e+02, 3.57220974e+02, 3.57220974e+02, 3.57220974e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999992,
0.99999992, 0.99999992, 0.99999992, 0.99999949, 0.99999949,
0.99999949, 0.99999949, 0.99999694, 0.99999694, 0.99999694,
0.99999694, 0.99998382, 0.99998382, 0.99998382, 0.99998382,
0.9999242 , 0.9999242 , 0.9999242 , 0.9999242 , 0.99968622,
0.99968622, 0.99968622, 0.99968622, 0.99885605, 0.99885605,
0.99885605, 0.99885605, 0.99634282, 0.99634282, 0.99634282,
0.99634282, 0.98978924, 0.98978924, 0.98978924, 0.98978924,
0.97516207, 0.97516207, 0.97516207, 0.97516207, 0.9472807 ,
0.9472807 , 0.9472807 , 0.9472807 , 0.9016408 , 0.9016408 ,
0.9016408 , 0.9016408 , 0.83637229, 0.83637229, 0.83637229,
0.83637229, 0.75564896, 0.75564896, 0.75564896, 0.75564896,
0.68361276, 0.68361276, 0.68361276, 0.68361276, 0.6288253 ,
0.6288253 , 0.6288253 , 0.6288253 , 0.59528975, 0.59528975,
0.59528975, 0.59528975, 0.57037586, 0.57037586, 0.57037586,
0.57037586, 0.57016667, 0.57016667, 0.57016667, 0.57016667,
0.58091342, 0.58091342, 0.58091342, 0.58091342, 0.68382481,
0.68382481, 0.68382481, 0.68382481, 4.28630792, 4.28630792,
4.28630792, 4.28630792, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974496e+01, -1.95974496e+01, -1.95974496e+01, -1.95974496e+01,
-1.95974471e+01, -1.95974471e+01, -1.95974471e+01, -1.95974471e+01,
-1.95974308e+01, -1.95974308e+01, -1.95974308e+01, -1.95974308e+01,
-1.95973355e+01, -1.95973355e+01, -1.95973355e+01, -1.95973355e+01,
-1.95968445e+01, -1.95968445e+01, -1.95968445e+01, -1.95968445e+01,
-1.95946140e+01, -1.95946140e+01, -1.95946140e+01, -1.95946140e+01,
-1.95857093e+01, -1.95857093e+01, -1.95857093e+01, -1.95857093e+01,
-1.95546421e+01, -1.95546421e+01, -1.95546421e+01, -1.95546421e+01,
-1.94605230e+01, -1.94605230e+01, -1.94605230e+01, -1.94605230e+01,
-1.92144746e+01, -1.92144746e+01, -1.92144746e+01, -1.92144746e+01,
-1.86614309e+01, -1.86614309e+01, -1.86614309e+01, -1.86614309e+01,
-1.75901244e+01, -1.75901244e+01, -1.75901244e+01, -1.75901244e+01,
-1.57811609e+01, -1.57811609e+01, -1.57811609e+01, -1.57811609e+01,
-1.30521736e+01, -1.30521736e+01, -1.30521736e+01, -1.30521736e+01,
-9.42385469e+00, -9.42385469e+00, -9.42385469e+00, -9.42385469e+00,
-5.98755008e+00, -5.98755008e+00, -5.98755008e+00, -5.98755008e+00,
-3.23573271e+00, -3.23573271e+00, -3.23573271e+00, -3.23573271e+00,
-1.20413317e+00, -1.20413317e+00, -1.20413317e+00, -1.20413317e+00,
-5.64305177e-01, -5.64305177e-01, -5.64305177e-01, -5.64305177e-01,
1.39995268e-02, 1.39995268e-02, 1.39995268e-02, 1.39995268e-02,
1.89256301e-02, 1.89256301e-02, 1.89256301e-02, 1.89256301e-02,
-1.95671716e-01, -1.95671716e-01, -1.95671716e-01, -1.95671716e-01,
-1.96806591e+00, -1.96806591e+00, -1.96806591e+00, -1.96806591e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999986e+02, 9.99999986e+02, 9.99999986e+02, 9.99999986e+02,
9.99999893e+02, 9.99999893e+02, 9.99999893e+02, 9.99999893e+02,
9.99999281e+02, 9.99999281e+02, 9.99999281e+02, 9.99999281e+02,
9.99995715e+02, 9.99995715e+02, 9.99995715e+02, 9.99995715e+02,
9.99977346e+02, 9.99977346e+02, 9.99977346e+02, 9.99977346e+02,
9.99893890e+02, 9.99893890e+02, 9.99893890e+02, 9.99893890e+02,
9.99560786e+02, 9.99560786e+02, 9.99560786e+02, 9.99560786e+02,
9.98399370e+02, 9.98399370e+02, 9.98399370e+02, 9.98399370e+02,
9.94887882e+02, 9.94887882e+02, 9.94887882e+02, 9.94887882e+02,
9.85758358e+02, 9.85758358e+02, 9.85758358e+02, 9.85758358e+02,
9.65503274e+02, 9.65503274e+02, 9.65503274e+02, 9.65503274e+02,
9.27302076e+02, 9.27302076e+02, 9.27302076e+02, 9.27302076e+02,
8.65817631e+02, 8.65817631e+02, 8.65817631e+02, 8.65817631e+02,
7.79892533e+02, 7.79892533e+02, 7.79892533e+02, 7.79892533e+02,
6.76933134e+02, 6.76933134e+02, 6.76933134e+02, 6.76933134e+02,
5.89167334e+02, 5.89167334e+02, 5.89167334e+02, 5.89167334e+02,
5.25412022e+02, 5.25412022e+02, 5.25412022e+02, 5.25412022e+02,
4.89078201e+02, 4.89078201e+02, 4.89078201e+02, 4.89078201e+02,
4.63985098e+02, 4.63985098e+02, 4.63985098e+02, 4.63985098e+02,
4.65058638e+02, 4.65058638e+02, 4.65058638e+02, 4.65058638e+02,
4.65156283e+02, 4.65156283e+02, 4.65156283e+02, 4.65156283e+02,
4.64659087e+02, 4.64659087e+02, 4.64659087e+02, 4.64659087e+02,
3.83686908e+02, 3.83686908e+02, 3.83686908e+02, 3.83686908e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.9999998 , 0.9999998 , 0.9999998 , 0.9999998 , 0.99999884,
0.99999884, 0.99999884, 0.99999884, 0.99999392, 0.99999392,
0.99999392, 0.99999392, 0.99997133, 0.99997133, 0.99997133,
0.99997133, 0.99987901, 0.99987901, 0.99987901, 0.99987901,
0.99954452, 0.99954452, 0.99954452, 0.99954452, 0.99847623,
0.99847623, 0.99847623, 0.99847623, 0.9954892 , 0.9954892 ,
0.9954892 , 0.9954892 , 0.98822855, 0.98822855, 0.98822855,
0.98822855, 0.97297074, 0.97297074, 0.97297074, 0.97297074,
0.94528761, 0.94528761, 0.94528761, 0.94528761, 0.90165787,
0.90165787, 0.90165787, 0.90165787, 0.84092906, 0.84092906,
0.84092906, 0.84092906, 0.76608711, 0.76608711, 0.76608711,
0.76608711, 0.69670731, 0.69670731, 0.69670731, 0.69670731,
0.64308367, 0.64308367, 0.64308367, 0.64308367, 0.60371067,
0.60371067, 0.60371067, 0.60371067, 0.58425946, 0.58425946,
0.58425946, 0.58425946, 0.56833535, 0.56833535, 0.56833535,
0.56833535, 0.56833068, 0.56833068, 0.56833068, 0.56833068,
0.58142537, 0.58142537, 0.58142537, 0.58142537, 0.70986026,
0.70986026, 0.70986026, 0.70986026, 4.63577346, 4.63577346,
4.63577346, 4.63577346, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744984, -19.59744984, -19.59744984, -19.59744984,
-19.59744887, -19.59744887, -19.59744887, -19.59744887,
-19.59744263, -19.59744263, -19.59744263, -19.59744263,
-19.59740678, -19.59740678, -19.59740678, -19.59740678,
-19.5972226 , -19.5972226 , -19.5972226 , -19.5972226 ,
-19.59637732, -19.59637732, -19.59637732, -19.59637732,
-19.59292292, -19.59292292, -19.59292292, -19.59292292,
-19.58040675, -19.58040675, -19.58040675, -19.58040675,
-19.54042297, -19.54042297, -19.54042297, -19.54042297,
-19.42851195, -19.42851195, -19.42851195, -19.42851195,
-19.15564745, -19.15564745, -19.15564745, -19.15564745,
-18.57773882, -18.57773882, -18.57773882, -18.57773882,
-17.51157549, -17.51157549, -17.51157549, -17.51157549,
-15.77941976, -15.77941976, -15.77941976, -15.77941976,
-13.24556307, -13.24556307, -13.24556307, -13.24556307,
-9.90130641, -9.90130641, -9.90130641, -9.90130641,
-6.63662472, -6.63662472, -6.63662472, -6.63662472,
-3.86321413, -3.86321413, -3.86321413, -3.86321413,
-1.90761467, -1.90761467, -1.90761467, -1.90761467,
-0.53373993, -0.53373993, -0.53373993, -0.53373993,
-0.32840898, -0.32840898, -0.32840898, -0.32840898,
-0.10921252, -0.10921252, -0.10921252, -0.10921252,
-0.05293691, -0.05293691, -0.05293691, -0.05293691,
-0.18859653, -0.18859653, -0.18859653, -0.18859653,
-1.47682846, -1.47682846, -1.47682846, -1.47682846,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999958e+02, 9.99999958e+02, 9.99999958e+02, 9.99999958e+02,
9.99999724e+02, 9.99999724e+02, 9.99999724e+02, 9.99999724e+02,
9.99998383e+02, 9.99998383e+02, 9.99998383e+02, 9.99998383e+02,
9.99991492e+02, 9.99991492e+02, 9.99991492e+02, 9.99991492e+02,
9.99959865e+02, 9.99959865e+02, 9.99959865e+02, 9.99959865e+02,
9.99830624e+02, 9.99830624e+02, 9.99830624e+02, 9.99830624e+02,
9.99362473e+02, 9.99362473e+02, 9.99362473e+02, 9.99362473e+02,
9.97868188e+02, 9.97868188e+02, 9.97868188e+02, 9.97868188e+02,
9.93696023e+02, 9.93696023e+02, 9.93696023e+02, 9.93696023e+02,
9.83586489e+02, 9.83586489e+02, 9.83586489e+02, 9.83586489e+02,
9.62470316e+02, 9.62470316e+02, 9.62470316e+02, 9.62470316e+02,
9.24554339e+02, 9.24554339e+02, 9.24554339e+02, 9.24554339e+02,
8.65754701e+02, 8.65754701e+02, 8.65754701e+02, 8.65754701e+02,
7.85690318e+02, 7.85690318e+02, 7.85690318e+02, 7.85690318e+02,
6.89822261e+02, 6.89822261e+02, 6.89822261e+02, 6.89822261e+02,
6.04497868e+02, 6.04497868e+02, 6.04497868e+02, 6.04497868e+02,
5.41108543e+02, 5.41108543e+02, 5.41108543e+02, 5.41108543e+02,
4.96459113e+02, 4.96459113e+02, 4.96459113e+02, 4.96459113e+02,
4.76533195e+02, 4.76533195e+02, 4.76533195e+02, 4.76533195e+02,
4.61671833e+02, 4.61671833e+02, 4.61671833e+02, 4.61671833e+02,
4.62965063e+02, 4.62965063e+02, 4.62965063e+02, 4.62965063e+02,
4.65651723e+02, 4.65651723e+02, 4.65651723e+02, 4.65651723e+02,
4.67608555e+02, 4.67608555e+02, 4.67608555e+02, 4.67608555e+02,
4.10156069e+02, 4.10156069e+02, 4.10156069e+02, 4.10156069e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999992, 0.99999992, 0.99999992,
0.99999992, 0.99999956, 0.99999956, 0.99999956, 0.99999956,
0.99999771, 0.99999771, 0.99999771, 0.99999771, 0.99998912,
0.99998912, 0.99998912, 0.99998912, 0.99995333, 0.99995333,
0.99995333, 0.99995333, 0.9998196 , 0.9998196 , 0.9998196 ,
0.9998196 , 0.99937333, 0.99937333, 0.99937333, 0.99937333,
0.99805138, 0.99805138, 0.99805138, 0.99805138, 0.99459812,
0.99459812, 0.99459812, 0.99459812, 0.98669552, 0.98669552,
0.98669552, 0.98669552, 0.97092763, 0.97092763, 0.97092763,
0.97092763, 0.94351056, 0.94351056, 0.94351056, 0.94351056,
0.90169368, 0.90169368, 0.90169368, 0.90169368, 0.84485234,
0.84485234, 0.84485234, 0.84485234, 0.77523312, 0.77523312,
0.77523312, 0.77523312, 0.70864528, 0.70864528, 0.70864528,
0.70864528, 0.65509869, 0.65509869, 0.65509869, 0.65509869,
0.61605444, 0.61605444, 0.61605444, 0.61605444, 0.58867936,
0.58867936, 0.58867936, 0.58867936, 0.57853282, 0.57853282,
0.57853282, 0.57853282, 0.56884845, 0.56884845, 0.56884845,
0.56884845, 0.56787447, 0.56787447, 0.56787447, 0.56787447,
0.58180732, 0.58180732, 0.58180732, 0.58180732, 0.73521701,
0.73521701, 0.73521701, 0.73521701, 4.82794137, 4.82794137,
4.82794137, 4.82794137, 1.15660589, 1.15660589, 1.15660589,
1.15660589, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744994, -19.59744994, -19.59744994, -19.59744994,
-19.59744956, -19.59744956, -19.59744956, -19.59744956,
-19.59744717, -19.59744717, -19.59744717, -19.59744717,
-19.59743362, -19.59743362, -19.59743362, -19.59743362,
-19.59736417, -19.59736417, -19.59736417, -19.59736417,
-19.59704275, -19.59704275, -19.59704275, -19.59704275,
-19.59570378, -19.59570378, -19.59570378, -19.59570378,
-19.5906998 , -19.5906998 , -19.5906998 , -19.5906998 ,
-19.5740004 , -19.5740004 , -19.5740004 , -19.5740004 ,
-19.52451298, -19.52451298, -19.52451298, -19.52451298,
-19.39507264, -19.39507264, -19.39507264, -19.39507264,
-19.09778358, -19.09778358, -19.09778358, -19.09778358,
-18.49954665, -18.49954665, -18.49954665, -18.49954665,
-17.4414217 , -17.4414217 , -17.4414217 , -17.4414217 ,
-15.7788963 , -15.7788963 , -15.7788963 , -15.7788963 ,
-13.41092033, -13.41092033, -13.41092033, -13.41092033,
-10.31819294, -10.31819294, -10.31819294, -10.31819294,
-7.21065328, -7.21065328, -7.21065328, -7.21065328,
-4.51408308, -4.51408308, -4.51408308, -4.51408308,
-2.3752154 , -2.3752154 , -2.3752154 , -2.3752154 ,
-1.10270149, -1.10270149, -1.10270149, -1.10270149,
-0.21896876, -0.21896876, -0.21896876, -0.21896876,
-0.20366948, -0.20366948, -0.20366948, -0.20366948,
-0.18404565, -0.18404565, -0.18404565, -0.18404565,
-0.20213983, -0.20213983, -0.20213983, -0.20213983,
-0.22669592, -0.22669592, -0.22669592, -0.22669592,
-1.09863355, -1.09863355, -1.09863355, -1.09863355,
-16.8535667 , -16.8535667 , -16.8535667 , -16.8535667 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999983e+02, 9.99999983e+02, 9.99999983e+02, 9.99999983e+02,
9.99999894e+02, 9.99999894e+02, 9.99999894e+02, 9.99999894e+02,
9.99999387e+02, 9.99999387e+02, 9.99999387e+02, 9.99999387e+02,
9.99996788e+02, 9.99996788e+02, 9.99996788e+02, 9.99996788e+02,
9.99984762e+02, 9.99984762e+02, 9.99984762e+02, 9.99984762e+02,
9.99934664e+02, 9.99934664e+02, 9.99934664e+02, 9.99934664e+02,
9.99747458e+02, 9.99747458e+02, 9.99747458e+02, 9.99747458e+02,
9.99122925e+02, 9.99122925e+02, 9.99122925e+02, 9.99122925e+02,
9.97274131e+02, 9.97274131e+02, 9.97274131e+02, 9.97274131e+02,
9.92452313e+02, 9.92452313e+02, 9.92452313e+02, 9.92452313e+02,
9.81454273e+02, 9.81454273e+02, 9.81454273e+02, 9.81454273e+02,
9.59644205e+02, 9.59644205e+02, 9.59644205e+02, 9.59644205e+02,
9.22105989e+02, 9.22105989e+02, 9.22105989e+02, 9.22105989e+02,
8.65731962e+02, 8.65731962e+02, 8.65731962e+02, 8.65731962e+02,
7.90681314e+02, 7.90681314e+02, 7.90681314e+02, 7.90681314e+02,
7.01198820e+02, 7.01198820e+02, 7.01198820e+02, 7.01198820e+02,
6.18767047e+02, 6.18767047e+02, 6.18767047e+02, 6.18767047e+02,
5.54775362e+02, 5.54775362e+02, 5.54775362e+02, 5.54775362e+02,
5.09686354e+02, 5.09686354e+02, 5.09686354e+02, 5.09686354e+02,
4.79330707e+02, 4.79330707e+02, 4.79330707e+02, 4.79330707e+02,
4.70045366e+02, 4.70045366e+02, 4.70045366e+02, 4.70045366e+02,
4.62262247e+02, 4.62262247e+02, 4.62262247e+02, 4.62262247e+02,
4.62428940e+02, 4.62428940e+02, 4.62428940e+02, 4.62428940e+02,
4.65813647e+02, 4.65813647e+02, 4.65813647e+02, 4.65813647e+02,
4.69117027e+02, 4.69117027e+02, 4.69117027e+02, 4.69117027e+02,
4.26259896e+02, 4.26259896e+02, 4.26259896e+02, 4.26259896e+02,
2.11117906e+01, 2.11117906e+01, 2.11117906e+01, 2.11117906e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.99999983, 0.99999983,
0.99999983, 0.99999983, 0.99999913, 0.99999913, 0.99999913,
0.99999913, 0.99999585, 0.99999585, 0.99999585, 0.99999585,
0.99998199, 0.99998199, 0.99998199, 0.99998199, 0.99992882,
0.99992882, 0.99992882, 0.99992882, 0.99974481, 0.99974481,
0.99974481, 0.99974481, 0.99917295, 0.99917295, 0.99917295,
0.99917295, 0.99758596, 0.99758596, 0.99758596, 0.99758596,
0.99367857, 0.99367857, 0.99367857, 0.99367857, 0.98519471,
0.98519471, 0.98519471, 0.98519471, 0.96901577, 0.96901577,
0.96901577, 0.96901577, 0.94191031, 0.94191031, 0.94191031,
0.94191031, 0.90174038, 0.90174038, 0.90174038, 0.90174038,
0.8482627 , 0.8482627 , 0.8482627 , 0.8482627 , 0.78331437,
0.78331437, 0.78331437, 0.78331437, 0.71940582, 0.71940582,
0.71940582, 0.71940582, 0.66684154, 0.66684154, 0.66684154,
0.66684154, 0.62576044, 0.62576044, 0.62576044, 0.62576044,
0.598823 , 0.598823 , 0.598823 , 0.598823 , 0.58041014,
0.58041014, 0.58041014, 0.58041014, 0.57556638, 0.57556638,
0.57556638, 0.57556638, 0.56997368, 0.56997368, 0.56997368,
0.56997368, 0.56894812, 0.56894812, 0.56894812, 0.56894812,
0.58243209, 0.58243209, 0.58243209, 0.58243209, 0.75514243,
0.75514243, 0.75514243, 0.75514243, 4.86958295, 4.86958295,
4.86958295, 4.86958295, 1.4675873 , 1.4675873 , 1.4675873 ,
1.4675873 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744983, -19.59744983, -19.59744983, -19.59744983,
-19.59744891, -19.59744891, -19.59744891, -19.59744891,
-19.59744377, -19.59744377, -19.59744377, -19.59744377,
-19.59741747, -19.59741747, -19.59741747, -19.59741747,
-19.5972949 , -19.5972949 , -19.5972949 , -19.5972949 ,
-19.59677605, -19.59677605, -19.59677605, -19.59677605,
-19.59478652, -19.59478652, -19.59478652, -19.59478652,
-19.5879016 , -19.5879016 , -19.5879016 , -19.5879016 ,
-19.56650065, -19.56650065, -19.56650065, -19.56650065,
-19.50707861, -19.50707861, -19.50707861, -19.50707861,
-19.36053978, -19.36053978, -19.36053978, -19.36053978,
-19.0410584 , -19.0410584 , -19.0410584 , -19.0410584 ,
-18.42623744, -18.42623744, -18.42623744, -18.42623744,
-17.37815423, -17.37815423, -17.37815423, -17.37815423,
-15.77916693, -15.77916693, -15.77916693, -15.77916693,
-13.55541778, -13.55541778, -13.55541778, -13.55541778,
-10.68190654, -10.68190654, -10.68190654, -10.68190654,
-7.72976671, -7.72976671, -7.72976671, -7.72976671,
-5.09556067, -5.09556067, -5.09556067, -5.09556067,
-2.96483941, -2.96483941, -2.96483941, -2.96483941,
-1.38469248, -1.38469248, -1.38469248, -1.38469248,
-0.64781783, -0.64781783, -0.64781783, -0.64781783,
-0.11541459, -0.11541459, -0.11541459, -0.11541459,
-0.14563479, -0.14563479, -0.14563479, -0.14563479,
-0.2273905 , -0.2273905 , -0.2273905 , -0.2273905 ,
-0.32875463, -0.32875463, -0.32875463, -0.32875463,
-0.25700739, -0.25700739, -0.25700739, -0.25700739,
-0.75025376, -0.75025376, -0.75025376, -0.75025376,
-13.29087238, -13.29087238, -13.29087238, -13.29087238,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999993e+02, 9.99999993e+02, 9.99999993e+02, 9.99999993e+02,
9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
9.99999767e+02, 9.99999767e+02, 9.99999767e+02, 9.99999767e+02,
9.99998783e+02, 9.99998783e+02, 9.99998783e+02, 9.99998783e+02,
9.99994197e+02, 9.99994197e+02, 9.99994197e+02, 9.99994197e+02,
9.99974783e+02, 9.99974783e+02, 9.99974783e+02, 9.99974783e+02,
9.99900346e+02, 9.99900346e+02, 9.99900346e+02, 9.99900346e+02,
9.99642786e+02, 9.99642786e+02, 9.99642786e+02, 9.99642786e+02,
9.98842554e+02, 9.98842554e+02, 9.98842554e+02, 9.98842554e+02,
9.96623508e+02, 9.96623508e+02, 9.96623508e+02, 9.96623508e+02,
9.91169354e+02, 9.91169354e+02, 9.91169354e+02, 9.91169354e+02,
9.79367942e+02, 9.79367942e+02, 9.79367942e+02, 9.79367942e+02,
9.57001145e+02, 9.57001145e+02, 9.57001145e+02, 9.57001145e+02,
9.19902519e+02, 9.19902519e+02, 9.19902519e+02, 9.19902519e+02,
8.65735512e+02, 8.65735512e+02, 8.65735512e+02, 8.65735512e+02,
7.95067170e+02, 7.95067170e+02, 7.95067170e+02, 7.95067170e+02,
7.11251816e+02, 7.11251816e+02, 7.11251816e+02, 7.11251816e+02,
6.31754233e+02, 6.31754233e+02, 6.31754233e+02, 6.31754233e+02,
5.68454564e+02, 5.68454564e+02, 5.68454564e+02, 5.68454564e+02,
5.20436257e+02, 5.20436257e+02, 5.20436257e+02, 5.20436257e+02,
4.89916889e+02, 4.89916889e+02, 4.89916889e+02, 4.89916889e+02,
4.69972551e+02, 4.69972551e+02, 4.69972551e+02, 4.69972551e+02,
4.66691674e+02, 4.66691674e+02, 4.66691674e+02, 4.66691674e+02,
4.63549400e+02, 4.63549400e+02, 4.63549400e+02, 4.63549400e+02,
4.63619987e+02, 4.63619987e+02, 4.63619987e+02, 4.63619987e+02,
4.65989306e+02, 4.65989306e+02, 4.65989306e+02, 4.65989306e+02,
4.68533238e+02, 4.68533238e+02, 4.68533238e+02, 4.68533238e+02,
4.31027931e+02, 4.31027931e+02, 4.31027931e+02, 4.31027931e+02,
5.66211425e+01, 5.66211425e+01, 5.66211425e+01, 5.66211425e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999994, 0.99999994, 0.99999994, 0.99999994, 0.99999967,
0.99999967, 0.99999967, 0.99999967, 0.99999842, 0.99999842,
0.99999842, 0.99999842, 0.99999304, 0.99999304, 0.99999304,
0.99999304, 0.99997199, 0.99997199, 0.99997199, 0.99997199,
0.99989687, 0.99989687, 0.99989687, 0.99989687, 0.99965381,
0.99965381, 0.99965381, 0.99965381, 0.99894405, 0.99894405,
0.99894405, 0.99894405, 0.99708423, 0.99708423, 0.99708423,
0.99708423, 0.99273783, 0.99273783, 0.99273783, 0.99273783,
0.98372864, 0.98372864, 0.98372864, 0.98372864, 0.96722065,
0.96722065, 0.96722065, 0.96722065, 0.94045739, 0.94045739,
0.94045739, 0.94045739, 0.90179181, 0.90179181, 0.90179181,
0.90179181, 0.85125479, 0.85125479, 0.85125479, 0.85125479,
0.79043349, 0.79043349, 0.79043349, 0.79043349, 0.72930804,
0.72930804, 0.72930804, 0.72930804, 0.67758323, 0.67758323,
0.67758323, 0.67758323, 0.6363278 , 0.6363278 , 0.6363278 ,
0.6363278 , 0.605747 , 0.605747 , 0.605747 , 0.605747 ,
0.58842753, 0.58842753, 0.58842753, 0.58842753, 0.57645186,
0.57645186, 0.57645186, 0.57645186, 0.5740469 , 0.5740469 ,
0.5740469 , 0.5740469 , 0.57095662, 0.57095662, 0.57095662,
0.57095662, 0.57067495, 0.57067495, 0.57067495, 0.57067495,
0.58291142, 0.58291142, 0.58291142, 0.58291142, 0.76449003,
0.76449003, 0.76449003, 0.76449003, 4.85506785, 4.85506785,
4.85506785, 4.85506785, 1.84484019, 1.84484019, 1.84484019,
1.84484019, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744993, -19.59744993, -19.59744993, -19.59744993,
-19.59744958, -19.59744958, -19.59744958, -19.59744958,
-19.59744762, -19.59744762, -19.59744762, -19.59744762,
-19.59743763, -19.59743763, -19.59743763, -19.59743763,
-19.59739077, -19.59739077, -19.59739077, -19.59739077,
-19.59718971, -19.59718971, -19.59718971, -19.59718971,
-19.59640187, -19.59640187, -19.59640187, -19.59640187,
-19.59359107, -19.59359107, -19.59359107, -19.59359107,
-19.58449607, -19.58449607, -19.58449607, -19.58449607,
-19.55793209, -19.55793209, -19.55793209, -19.55793209,
-19.48827738, -19.48827738, -19.48827738, -19.48827738,
-19.32518419, -19.32518419, -19.32518419, -19.32518419,
-18.98557228, -18.98557228, -18.98557228, -18.98557228,
-18.35728175, -18.35728175, -18.35728175, -18.35728175,
-17.32063739, -17.32063739, -17.32063739, -17.32063739,
-15.77991266, -15.77991266, -15.77991266, -15.77991266,
-13.6812212 , -13.6812212 , -13.6812212 , -13.6812212 ,
-11.00333419, -11.00333419, -11.00333419, -11.00333419,
-8.1945414 , -8.1945414 , -8.1945414 , -8.1945414 ,
-5.64796666, -5.64796666, -5.64796666, -5.64796666,
-3.48446947, -3.48446947, -3.48446947, -3.48446947,
-1.8815922 , -1.8815922 , -1.8815922 , -1.8815922 ,
-0.77042698, -0.77042698, -0.77042698, -0.77042698,
-0.40469083, -0.40469083, -0.40469083, -0.40469083,
-0.12184113, -0.12184113, -0.12184113, -0.12184113,
-0.14071004, -0.14071004, -0.14071004, -0.14071004,
-0.26047921, -0.26047921, -0.26047921, -0.26047921,
-0.35229931, -0.35229931, -0.35229931, -0.35229931,
-0.22801595, -0.22801595, -0.22801595, -0.22801595,
-0.38194114, -0.38194114, -0.38194114, -0.38194114,
-10.70298365, -10.70298365, -10.70298365, -10.70298365,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999984e+02, 9.99999984e+02, 9.99999984e+02, 9.99999984e+02,
9.99999911e+02, 9.99999911e+02, 9.99999911e+02, 9.99999911e+02,
9.99999537e+02, 9.99999537e+02, 9.99999537e+02, 9.99999537e+02,
9.99997784e+02, 9.99997784e+02, 9.99997784e+02, 9.99997784e+02,
9.99990261e+02, 9.99990261e+02, 9.99990261e+02, 9.99990261e+02,
9.99960783e+02, 9.99960783e+02, 9.99960783e+02, 9.99960783e+02,
9.99855621e+02, 9.99855621e+02, 9.99855621e+02, 9.99855621e+02,
9.99515409e+02, 9.99515409e+02, 9.99515409e+02, 9.99515409e+02,
9.98522310e+02, 9.98522310e+02, 9.98522310e+02, 9.98522310e+02,
9.95922289e+02, 9.95922289e+02, 9.95922289e+02, 9.95922289e+02,
9.89857327e+02, 9.89857327e+02, 9.89857327e+02, 9.89857327e+02,
9.77330935e+02, 9.77330935e+02, 9.77330935e+02, 9.77330935e+02,
9.54520808e+02, 9.54520808e+02, 9.54520808e+02, 9.54520808e+02,
9.17903025e+02, 9.17903025e+02, 9.17903025e+02, 9.17903025e+02,
8.65754858e+02, 8.65754858e+02, 8.65754858e+02, 8.65754858e+02,
7.98905080e+02, 7.98905080e+02, 7.98905080e+02, 7.98905080e+02,
7.20192047e+02, 7.20192047e+02, 7.20192047e+02, 7.20192047e+02,
6.43756595e+02, 6.43756595e+02, 6.43756595e+02, 6.43756595e+02,
5.81098528e+02, 5.81098528e+02, 5.81098528e+02, 5.81098528e+02,
5.32495831e+02, 5.32495831e+02, 5.32495831e+02, 5.32495831e+02,
4.97357191e+02, 4.97357191e+02, 4.97357191e+02, 4.97357191e+02,
4.78087561e+02, 4.78087561e+02, 4.78087561e+02, 4.78087561e+02,
4.65512575e+02, 4.65512575e+02, 4.65512575e+02, 4.65512575e+02,
4.64978936e+02, 4.64978936e+02, 4.64978936e+02, 4.64978936e+02,
4.64673717e+02, 4.64673717e+02, 4.64673717e+02, 4.64673717e+02,
4.65549665e+02, 4.65549665e+02, 4.65549665e+02, 4.65549665e+02,
4.65877259e+02, 4.65877259e+02, 4.65877259e+02, 4.65877259e+02,
4.66221730e+02, 4.66221730e+02, 4.66221730e+02, 4.66221730e+02,
4.29568087e+02, 4.29568087e+02, 4.29568087e+02, 4.29568087e+02,
9.52105367e+01, 9.52105367e+01, 9.52105367e+01, 9.52105367e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999939, 0.99999939, 0.99999939, 0.99999939, 0.99999731,
0.99999731, 0.99999731, 0.99999731, 0.999989 , 0.999989 ,
0.999989 , 0.999989 , 0.99995856, 0.99995856, 0.99995856,
0.99995856, 0.99985665, 0.99985665, 0.99985665, 0.99985665,
0.99954597, 0.99954597, 0.99954597, 0.99954597, 0.99868755,
0.99868755, 0.99868755, 0.99868755, 0.99655014, 0.99655014,
0.99655014, 0.99655014, 0.99178181, 0.99178181, 0.99178181,
0.99178181, 0.98229854, 0.98229854, 0.98229854, 0.98229854,
0.96552985, 0.96552985, 0.96552985, 0.96552985, 0.93912839,
0.93912839, 0.93912839, 0.93912839, 0.90184264, 0.90184264,
0.90184264, 0.90184264, 0.85390898, 0.85390898, 0.85390898,
0.85390898, 0.7967545 , 0.7967545 , 0.7967545 , 0.7967545 ,
0.73829091, 0.73829091, 0.73829091, 0.73829091, 0.68780613,
0.68780613, 0.68780613, 0.68780613, 0.64606705, 0.64606705,
0.64606705, 0.64606705, 0.61466511, 0.61466511, 0.61466511,
0.61466511, 0.59269096, 0.59269096, 0.59269096, 0.59269096,
0.58250874, 0.58250874, 0.58250874, 0.58250874, 0.57508641,
0.57508641, 0.57508641, 0.57508641, 0.5734657 , 0.5734657 ,
0.5734657 , 0.5734657 , 0.57174434, 0.57174434, 0.57174434,
0.57174434, 0.57164142, 0.57164142, 0.57164142, 0.57164142,
0.58284131, 0.58284131, 0.58284131, 0.58284131, 0.76151887,
0.76151887, 0.76151887, 0.76151887, 4.81691328, 4.81691328,
4.81691328, 4.81691328, 2.25893065, 2.25893065, 2.25893065,
2.25893065, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744984, -19.59744984, -19.59744984, -19.59744984,
-19.59744909, -19.59744909, -19.59744909, -19.59744909,
-19.59744528, -19.59744528, -19.59744528, -19.59744528,
-19.59742733, -19.59742733, -19.59742733, -19.59742733,
-19.59734939, -19.59734939, -19.59734939, -19.59734939,
-19.59703833, -19.59703833, -19.59703833, -19.59703833,
-19.59589939, -19.59589939, -19.59589939, -19.59589939,
-19.5920864 , -19.5920864 , -19.5920864 , -19.5920864 ,
-19.58046039, -19.58046039, -19.58046039, -19.58046039,
-19.54832897, -19.54832897, -19.54832897, -19.54832897,
-19.46825555, -19.46825555, -19.46825555, -19.46825555,
-19.28922569, -19.28922569, -19.28922569, -19.28922569,
-18.93137655, -18.93137655, -18.93137655, -18.93137655,
-18.29222556, -18.29222556, -18.29222556, -18.29222556,
-17.26796639, -17.26796639, -17.26796639, -17.26796639,
-15.78084771, -15.78084771, -15.78084771, -15.78084771,
-13.79230809, -13.79230809, -13.79230809, -13.79230809,
-11.28800263, -11.28800263, -11.28800263, -11.28800263,
-8.61569585, -8.61569585, -8.61569585, -8.61569585,
-6.15272067, -6.15272067, -6.15272067, -6.15272067,
-4.01418509, -4.01418509, -4.01418509, -4.01418509,
-2.29585438, -2.29585438, -2.29585438, -2.29585438,
-1.16557706, -1.16557706, -1.16557706, -1.16557706,
-0.4224157 , -0.4224157 , -0.4224157 , -0.4224157 ,
-0.28119683, -0.28119683, -0.28119683, -0.28119683,
-0.1676693 , -0.1676693 , -0.1676693 , -0.1676693 ,
-0.19033632, -0.19033632, -0.19033632, -0.19033632,
-0.26119683, -0.26119683, -0.26119683, -0.26119683,
-0.27753473, -0.27753473, -0.27753473, -0.27753473,
-0.11037821, -0.11037821, -0.11037821, -0.11037821,
-0.04365842, -0.04365842, -0.04365842, -0.04365842,
-8.8283585 , -8.8283585 , -8.8283585 , -8.8283585 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999966e+02, 9.99999966e+02, 9.99999966e+02, 9.99999966e+02,
9.99999823e+02, 9.99999823e+02, 9.99999823e+02, 9.99999823e+02,
9.99999152e+02, 9.99999152e+02, 9.99999152e+02, 9.99999152e+02,
9.99996236e+02, 9.99996236e+02, 9.99996236e+02, 9.99996236e+02,
9.99984597e+02, 9.99984597e+02, 9.99984597e+02, 9.99984597e+02,
9.99941983e+02, 9.99941983e+02, 9.99941983e+02, 9.99941983e+02,
9.99799330e+02, 9.99799330e+02, 9.99799330e+02, 9.99799330e+02,
9.99364480e+02, 9.99364480e+02, 9.99364480e+02, 9.99364480e+02,
9.98163506e+02, 9.98163506e+02, 9.98163506e+02, 9.98163506e+02,
9.95176015e+02, 9.95176015e+02, 9.95176015e+02, 9.95176015e+02,
9.88524479e+02, 9.88524479e+02, 9.88524479e+02, 9.88524479e+02,
9.75344870e+02, 9.75344870e+02, 9.75344870e+02, 9.75344870e+02,
9.52185825e+02, 9.52185825e+02, 9.52185825e+02, 9.52185825e+02,
9.16075033e+02, 9.16075033e+02, 9.16075033e+02, 9.16075033e+02,
8.65780612e+02, 8.65780612e+02, 8.65780612e+02, 8.65780612e+02,
8.02308999e+02, 8.02308999e+02, 8.02308999e+02, 8.02308999e+02,
7.28177860e+02, 7.28177860e+02, 7.28177860e+02, 7.28177860e+02,
6.54721861e+02, 6.54721861e+02, 6.54721861e+02, 6.54721861e+02,
5.93204423e+02, 5.93204423e+02, 5.93204423e+02, 5.93204423e+02,
5.43726171e+02, 5.43726171e+02, 5.43726171e+02, 5.43726171e+02,
5.07365905e+02, 5.07365905e+02, 5.07365905e+02, 5.07365905e+02,
4.82452325e+02, 4.82452325e+02, 4.82452325e+02, 4.82452325e+02,
4.71384603e+02, 4.71384603e+02, 4.71384603e+02, 4.71384603e+02,
4.63981574e+02, 4.63981574e+02, 4.63981574e+02, 4.63981574e+02,
4.64333018e+02, 4.64333018e+02, 4.64333018e+02, 4.64333018e+02,
4.65577731e+02, 4.65577731e+02, 4.65577731e+02, 4.65577731e+02,
4.66613550e+02, 4.66613550e+02, 4.66613550e+02, 4.66613550e+02,
4.65261608e+02, 4.65261608e+02, 4.65261608e+02, 4.65261608e+02,
4.62630505e+02, 4.62630505e+02, 4.62630505e+02, 4.62630505e+02,
4.25746506e+02, 4.25746506e+02, 4.25746506e+02, 4.25746506e+02,
1.35534849e+02, 1.35534849e+02, 1.35534849e+02, 1.35534849e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999977, 0.99999977, 0.99999977,
0.99999977, 0.99999896, 0.99999896, 0.99999896, 0.99999896,
0.99999568, 0.99999568, 0.99999568, 0.99999568, 0.99998342,
0.99998342, 0.99998342, 0.99998342, 0.99994115, 0.99994115,
0.99994115, 0.99994115, 0.99980744, 0.99980744, 0.99980744,
0.99980744, 0.9994209 , 0.9994209 , 0.9994209 , 0.9994209 ,
0.99840456, 0.99840456, 0.99840456, 0.99840456, 0.99598731,
0.99598731, 0.99598731, 0.99598731, 0.9908153 , 0.9908153 ,
0.9908153 , 0.9908153 , 0.98090476, 0.98090476, 0.98090476,
0.98090476, 0.96393267, 0.96393267, 0.96393267, 0.96393267,
0.93790486, 0.93790486, 0.93790486, 0.93790486, 0.90189069,
0.90189069, 0.90189069, 0.90189069, 0.85628111, 0.85628111,
0.85628111, 0.85628111, 0.80238217, 0.80238217, 0.80238217,
0.80238217, 0.74650695, 0.74650695, 0.74650695, 0.74650695,
0.69727486, 0.69727486, 0.69727486, 0.69727486, 0.65578044,
0.65578044, 0.65578044, 0.65578044, 0.62276211, 0.62276211,
0.62276211, 0.62276211, 0.59984564, 0.59984564, 0.59984564,
0.59984564, 0.58469198, 0.58469198, 0.58469198, 0.58469198,
0.57937376, 0.57937376, 0.57937376, 0.57937376, 0.5751276 ,
0.5751276 , 0.5751276 , 0.5751276 , 0.57353803, 0.57353803,
0.57353803, 0.57353803, 0.57206183, 0.57206183, 0.57206183,
0.57206183, 0.5713875 , 0.5713875 , 0.5713875 , 0.5713875 ,
0.58173584, 0.58173584, 0.58173584, 0.58173584, 0.75615848,
0.75615848, 0.75615848, 0.75615848, 4.80345797, 4.80345797,
4.80345797, 4.80345797, 2.65264632, 2.65264632, 2.65264632,
2.65264632, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744994, -19.59744994, -19.59744994, -19.59744994,
-19.59744965, -19.59744965, -19.59744965, -19.59744965,
-19.5974482 , -19.5974482 , -19.5974482 , -19.5974482 ,
-19.5974413 , -19.5974413 , -19.5974413 , -19.5974413 ,
-19.59741108, -19.59741108, -19.59741108, -19.59741108,
-19.59728853, -19.59728853, -19.59728853, -19.59728853,
-19.5968297 , -19.5968297 , -19.5968297 , -19.5968297 ,
-19.5952481 , -19.5952481 , -19.5952481 , -19.5952481 ,
-19.59024502, -19.59024502, -19.59024502, -19.59024502,
-19.57577973, -19.57577973, -19.57577973, -19.57577973,
-19.53773193, -19.53773193, -19.53773193, -19.53773193,
-19.4471473 , -19.4471473 , -19.4471473 , -19.4471473 ,
-19.25284345, -19.25284345, -19.25284345, -19.25284345,
-18.87848976, -18.87848976, -18.87848976, -18.87848976,
-18.23067614, -18.23067614, -18.23067614, -18.23067614,
-17.21942704, -17.21942704, -17.21942704, -17.21942704,
-15.78184245, -15.78184245, -15.78184245, -15.78184245,
-13.89153438, -13.89153438, -13.89153438, -13.89153438,
-11.5404357 , -11.5404357 , -11.5404357 , -11.5404357 ,
-8.99690317, -8.99690317, -8.99690317, -8.99690317,
-6.62316736, -6.62316736, -6.62316736, -6.62316736,
-4.50690243, -4.50690243, -4.50690243, -4.50690243,
-2.76629623, -2.76629623, -2.76629623, -2.76629623,
-1.45746824, -1.45746824, -1.45746824, -1.45746824,
-0.72191187, -0.72191187, -0.72191187, -0.72191187,
-0.25384882, -0.25384882, -0.25384882, -0.25384882,
-0.22267787, -0.22267787, -0.22267787, -0.22267787,
-0.21716883, -0.21716883, -0.21716883, -0.21716883,
-0.24125632, -0.24125632, -0.24125632, -0.24125632,
-0.23810243, -0.23810243, -0.23810243, -0.23810243,
-0.14361122, -0.14361122, -0.14361122, -0.14361122,
0.10057084, 0.10057084, 0.10057084, 0.10057084,
0.16443868, 0.16443868, 0.16443868, 0.16443868,
-7.3920307 , -7.3920307 , -7.3920307 , -7.3920307 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999987e+02, 9.99999987e+02, 9.99999987e+02, 9.99999987e+02,
9.99999932e+02, 9.99999932e+02, 9.99999932e+02, 9.99999932e+02,
9.99999675e+02, 9.99999675e+02, 9.99999675e+02, 9.99999675e+02,
9.99998544e+02, 9.99998544e+02, 9.99998544e+02, 9.99998544e+02,
9.99993958e+02, 9.99993958e+02, 9.99993958e+02, 9.99993958e+02,
9.99976791e+02, 9.99976791e+02, 9.99976791e+02, 9.99976791e+02,
9.99917615e+02, 9.99917615e+02, 9.99917615e+02, 9.99917615e+02,
9.99730445e+02, 9.99730445e+02, 9.99730445e+02, 9.99730445e+02,
9.99189454e+02, 9.99189454e+02, 9.99189454e+02, 9.99189454e+02,
9.97767695e+02, 9.97767695e+02, 9.97767695e+02, 9.97767695e+02,
9.94389774e+02, 9.94389774e+02, 9.94389774e+02, 9.94389774e+02,
9.87177517e+02, 9.87177517e+02, 9.87177517e+02, 9.87177517e+02,
9.73410164e+02, 9.73410164e+02, 9.73410164e+02, 9.73410164e+02,
9.49981230e+02, 9.49981230e+02, 9.49981230e+02, 9.49981230e+02,
9.14392984e+02, 9.14392984e+02, 9.14392984e+02, 9.14392984e+02,
8.65808514e+02, 8.65808514e+02, 8.65808514e+02, 8.65808514e+02,
8.05361247e+02, 8.05361247e+02, 8.05361247e+02, 8.05361247e+02,
7.35330772e+02, 7.35330772e+02, 7.35330772e+02, 7.35330772e+02,
6.64800382e+02, 6.64800382e+02, 6.64800382e+02, 6.64800382e+02,
6.04494583e+02, 6.04494583e+02, 6.04494583e+02, 6.04494583e+02,
5.55006186e+02, 5.55006186e+02, 5.55006186e+02, 5.55006186e+02,
5.16541818e+02, 5.16541818e+02, 5.16541818e+02, 5.16541818e+02,
4.90365807e+02, 4.90365807e+02, 4.90365807e+02, 4.90365807e+02,
4.73379066e+02, 4.73379066e+02, 4.73379066e+02, 4.73379066e+02,
4.67844270e+02, 4.67844270e+02, 4.67844270e+02, 4.67844270e+02,
4.64036881e+02, 4.64036881e+02, 4.64036881e+02, 4.64036881e+02,
4.64430634e+02, 4.64430634e+02, 4.64430634e+02, 4.64430634e+02,
4.65947772e+02, 4.65947772e+02, 4.65947772e+02, 4.65947772e+02,
4.66292983e+02, 4.66292983e+02, 4.66292983e+02, 4.66292983e+02,
4.63793327e+02, 4.63793327e+02, 4.63793327e+02, 4.63793327e+02,
4.58295049e+02, 4.58295049e+02, 4.58295049e+02, 4.58295049e+02,
4.26680001e+02, 4.26680001e+02, 4.26680001e+02, 4.26680001e+02,
1.72719750e+02, 1.72719750e+02, 1.72719750e+02, 1.72719750e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999991,
0.99999991, 0.99999991, 0.99999991, 0.9999996 , 0.9999996 ,
0.9999996 , 0.9999996 , 0.99999831, 0.99999831, 0.99999831,
0.99999831, 0.99999339, 0.99999339, 0.99999339, 0.99999339,
0.99997601, 0.99997601, 0.99997601, 0.99997601, 0.99991924,
0.99991924, 0.99991924, 0.99991924, 0.9997486 , 0.9997486 ,
0.9997486 , 0.9997486 , 0.9992784 , 0.9992784 , 0.9992784 ,
0.9992784 , 0.99809628, 0.99809628, 0.99809628, 0.99809628,
0.99539903, 0.99539903, 0.99539903, 0.99539903, 0.98984223,
0.98984223, 0.98984223, 0.98984223, 0.97954708, 0.97954708,
0.97954708, 0.97954708, 0.9624199 , 0.9624199 , 0.9624199 ,
0.9624199 , 0.93677211, 0.93677211, 0.93677211, 0.93677211,
0.90193406, 0.90193406, 0.90193406, 0.90193406, 0.85840937,
0.85840937, 0.85840937, 0.85840937, 0.80742851, 0.80742851,
0.80742851, 0.80742851, 0.75400455, 0.75400455, 0.75400455,
0.75400455, 0.70614068, 0.70614068, 0.70614068, 0.70614068,
0.66495362, 0.66495362, 0.66495362, 0.66495362, 0.63140079,
0.63140079, 0.63140079, 0.63140079, 0.60602151, 0.60602151,
0.60602151, 0.60602151, 0.59019289, 0.59019289, 0.59019289,
0.59019289, 0.58021561, 0.58021561, 0.58021561, 0.58021561,
0.57785903, 0.57785903, 0.57785903, 0.57785903, 0.5756833 ,
0.5756833 , 0.5756833 , 0.5756833 , 0.57399443, 0.57399443,
0.57399443, 0.57399443, 0.57175661, 0.57175661, 0.57175661,
0.57175661, 0.57016666, 0.57016666, 0.57016666, 0.57016666,
0.57891026, 0.57891026, 0.57891026, 0.57891026, 0.75167445,
0.75167445, 0.75167445, 0.75167445, 4.81541575, 4.81541575,
4.81541575, 4.81541575, 3.02284787, 3.02284787, 3.02284787,
3.02284787, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744987, -19.59744987, -19.59744987, -19.59744987,
-19.59744931, -19.59744931, -19.59744931, -19.59744931,
-19.59744666, -19.59744666, -19.59744666, -19.59744666,
-19.59743493, -19.59743493, -19.59743493, -19.59743493,
-19.59738673, -19.59738673, -19.59738673, -19.59738673,
-19.59720271, -19.59720271, -19.59720271, -19.59720271,
-19.59655219, -19.59655219, -19.59655219, -19.59655219,
-19.59442804, -19.59442804, -19.59442804, -19.59442804,
-19.58804304, -19.58804304, -19.58804304, -19.58804304,
-19.57044604, -19.57044604, -19.57044604, -19.57044604,
-19.52618557, -19.52618557, -19.52618557, -19.52618557,
-19.42507494, -19.42507494, -19.42507494, -19.42507494,
-19.21618398, -19.21618398, -19.21618398, -19.21618398,
-18.82690858, -18.82690858, -18.82690858, -18.82690858,
-18.17229471, -18.17229471, -18.17229471, -18.17229471,
-17.17444894, -17.17444894, -17.17444894, -17.17444894,
-15.78278408, -15.78278408, -15.78278408, -15.78278408,
-13.98043263, -13.98043263, -13.98043263, -13.98043263,
-11.76527896, -11.76527896, -11.76527896, -11.76527896,
-9.34378632, -9.34378632, -9.34378632, -9.34378632,
-7.05643989, -7.05643989, -7.05643989, -7.05643989,
-4.98262758, -4.98262758, -4.98262758, -4.98262758,
-3.20805664, -3.20805664, -3.20805664, -3.20805664,
-1.84956697, -1.84956697, -1.84956697, -1.84956697,
-0.89863961, -0.89863961, -0.89863961, -0.89863961,
-0.46628545, -0.46628545, -0.46628545, -0.46628545,
-0.19649909, -0.19649909, -0.19649909, -0.19649909,
-0.20536213, -0.20536213, -0.20536213, -0.20536213,
-0.24763714, -0.24763714, -0.24763714, -0.24763714,
-0.25291938, -0.25291938, -0.25291938, -0.25291938,
-0.18625508, -0.18625508, -0.18625508, -0.18625508,
0.04128025, 0.04128025, 0.04128025, 0.04128025,
0.30247955, 0.30247955, 0.30247955, 0.30247955,
0.2509268 , 0.2509268 , 0.2509268 , 0.2509268 ,
-6.20156314, -6.20156314, -6.20156314, -6.20156314,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999995e+02, 9.99999995e+02, 9.99999995e+02, 9.99999995e+02,
9.99999974e+02, 9.99999974e+02, 9.99999974e+02, 9.99999974e+02,
9.99999875e+02, 9.99999875e+02, 9.99999875e+02, 9.99999875e+02,
9.99999436e+02, 9.99999436e+02, 9.99999436e+02, 9.99999436e+02,
9.99997633e+02, 9.99997633e+02, 9.99997633e+02, 9.99997633e+02,
9.99990747e+02, 9.99990747e+02, 9.99990747e+02, 9.99990747e+02,
9.99966408e+02, 9.99966408e+02, 9.99966408e+02, 9.99966408e+02,
9.99886934e+02, 9.99886934e+02, 9.99886934e+02, 9.99886934e+02,
9.99648077e+02, 9.99648077e+02, 9.99648077e+02, 9.99648077e+02,
9.98990041e+02, 9.98990041e+02, 9.98990041e+02, 9.98990041e+02,
9.97336580e+02, 9.97336580e+02, 9.97336580e+02, 9.97336580e+02,
9.93568199e+02, 9.93568199e+02, 9.93568199e+02, 9.93568199e+02,
9.85821909e+02, 9.85821909e+02, 9.85821909e+02, 9.85821909e+02,
9.71526437e+02, 9.71526437e+02, 9.71526437e+02, 9.71526437e+02,
9.47894147e+02, 9.47894147e+02, 9.47894147e+02, 9.47894147e+02,
9.12836507e+02, 9.12836507e+02, 9.12836507e+02, 9.12836507e+02,
8.65834851e+02, 8.65834851e+02, 8.65834851e+02, 8.65834851e+02,
8.08105172e+02, 8.08105172e+02, 8.08105172e+02, 8.08105172e+02,
7.41758147e+02, 7.41758147e+02, 7.41758147e+02, 7.41758147e+02,
6.74072947e+02, 6.74072947e+02, 6.74072947e+02, 6.74072947e+02,
6.15130380e+02, 6.15130380e+02, 6.15130380e+02, 6.15130380e+02,
5.65729150e+02, 5.65729150e+02, 5.65729150e+02, 5.65729150e+02,
5.26412191e+02, 5.26412191e+02, 5.26412191e+02, 5.26412191e+02,
4.97253516e+02, 4.97253516e+02, 4.97253516e+02, 4.97253516e+02,
4.79375696e+02, 4.79375696e+02, 4.79375696e+02, 4.79375696e+02,
4.68320744e+02, 4.68320744e+02, 4.68320744e+02, 4.68320744e+02,
4.66136700e+02, 4.66136700e+02, 4.66136700e+02, 4.66136700e+02,
4.64672864e+02, 4.64672864e+02, 4.64672864e+02, 4.64672864e+02,
4.64966289e+02, 4.64966289e+02, 4.64966289e+02, 4.64966289e+02,
4.65608335e+02, 4.65608335e+02, 4.65608335e+02, 4.65608335e+02,
4.64881882e+02, 4.64881882e+02, 4.64881882e+02, 4.64881882e+02,
4.60646102e+02, 4.60646102e+02, 4.60646102e+02, 4.60646102e+02,
4.55385849e+02, 4.55385849e+02, 4.55385849e+02, 4.55385849e+02,
4.31816803e+02, 4.31816803e+02, 4.31816803e+02, 4.31816803e+02,
2.06635628e+02, 2.06635628e+02, 2.06635628e+02, 2.06635628e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999984, 0.99999984, 0.99999984, 0.99999984, 0.99999934,
0.99999934, 0.99999934, 0.99999934, 0.99999737, 0.99999737,
0.99999737, 0.99999737, 0.99999027, 0.99999027, 0.99999027,
0.99999027, 0.99996643, 0.99996643, 0.99996643, 0.99996643,
0.9998923 , 0.9998923 , 0.9998923 , 0.9998923 , 0.99967957,
0.99967957, 0.99967957, 0.99967957, 0.9991184 , 0.9991184 ,
0.9991184 , 0.9991184 , 0.99776398, 0.99776398, 0.99776398,
0.99776398, 0.99478831, 0.99478831, 0.99478831, 0.99478831,
0.9888658 , 0.9888658 , 0.9888658 , 0.9888658 , 0.9782249 ,
0.9782249 , 0.9782249 , 0.9782249 , 0.96098356, 0.96098356,
0.96098356, 0.96098356, 0.93571801, 0.93571801, 0.93571801,
0.93571801, 0.90197123, 0.90197123, 0.90197123, 0.90197123,
0.86032975, 0.86032975, 0.86032975, 0.86032975, 0.81198217,
0.81198217, 0.81198217, 0.81198217, 0.76085236, 0.76085236,
0.76085236, 0.76085236, 0.71438618, 0.71438618, 0.71438618,
0.71438618, 0.673788 , 0.673788 , 0.673788 , 0.673788 ,
0.63968963, 0.63968963, 0.63968963, 0.63968963, 0.61328797,
0.61328797, 0.61328797, 0.61328797, 0.59447045, 0.59447045,
0.59447045, 0.59447045, 0.58428705, 0.58428705, 0.58428705,
0.58428705, 0.57809617, 0.57809617, 0.57809617, 0.57809617,
0.57719122, 0.57719122, 0.57719122, 0.57719122, 0.57620897,
0.57620897, 0.57620897, 0.57620897, 0.57422688, 0.57422688,
0.57422688, 0.57422688, 0.571107 , 0.571107 , 0.571107 ,
0.571107 , 0.56786369, 0.56786369, 0.56786369, 0.56786369,
0.57567961, 0.57567961, 0.57567961, 0.57567961, 0.74817334,
0.74817334, 0.74817334, 0.74817334, 4.84157196, 4.84157196,
4.84157196, 4.84157196, 3.37984832, 3.37984832, 3.37984832,
3.37984832, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744995, -19.59744995, -19.59744995, -19.59744995,
-19.59744973, -19.59744973, -19.59744973, -19.59744973,
-19.59744871, -19.59744871, -19.59744871, -19.59744871,
-19.59744416, -19.59744416, -19.59744416, -19.59744416,
-19.59742522, -19.59742522, -19.59742522, -19.59742522,
-19.59735169, -19.59735169, -19.59735169, -19.59735169,
-19.59708593, -19.59708593, -19.59708593, -19.59708593,
-19.59619382, -19.59619382, -19.59619382, -19.59619382,
-19.59342017, -19.59342017, -19.59342017, -19.59342017,
-19.58545999, -19.58545999, -19.58545999, -19.58545999,
-19.56445685, -19.56445685, -19.56445685, -19.56445685,
-19.51373667, -19.51373667, -19.51373667, -19.51373667,
-19.40214943, -19.40214943, -19.40214943, -19.40214943,
-19.17936756, -19.17936756, -19.17936756, -19.17936756,
-18.77661552, -18.77661552, -18.77661552, -18.77661552,
-18.1167873 , -18.1167873 , -18.1167873 , -18.1167873 ,
-17.1325607 , -17.1325607 , -17.1325607 , -17.1325607 ,
-15.78358459, -15.78358459, -15.78358459, -15.78358459,
-14.06052277, -14.06052277, -14.06052277, -14.06052277,
-11.96678578, -11.96678578, -11.96678578, -11.96678578,
-9.66020929, -9.66020929, -9.66020929, -9.66020929,
-7.45697342, -7.45697342, -7.45697342, -7.45697342,
-5.42891389, -5.42891389, -5.42891389, -5.42891389,
-3.65587783, -3.65587783, -3.65587783, -3.65587783,
-2.21451375, -2.21451375, -2.21451375, -2.21451375,
-1.20771195, -1.20771195, -1.20771195, -1.20771195,
-0.55292829, -0.55292829, -0.55292829, -0.55292829,
-0.33291113, -0.33291113, -0.33291113, -0.33291113,
-0.1977434 , -0.1977434 , -0.1977434 , -0.1977434 ,
-0.2087287 , -0.2087287 , -0.2087287 , -0.2087287 ,
-0.24528779, -0.24528779, -0.24528779, -0.24528779,
-0.22555601, -0.22555601, -0.22555601, -0.22555601,
-0.07111291, -0.07111291, -0.07111291, -0.07111291,
0.21894468, 0.21894468, 0.21894468, 0.21894468,
0.41981187, 0.41981187, 0.41981187, 0.41981187,
0.26295954, 0.26295954, 0.26295954, 0.26295954,
-5.18426791, -5.18426791, -5.18426791, -5.18426791,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
9.99999952e+02, 9.99999952e+02, 9.99999952e+02, 9.99999952e+02,
9.99999782e+02, 9.99999782e+02, 9.99999782e+02, 9.99999782e+02,
9.99999073e+02, 9.99999073e+02, 9.99999073e+02, 9.99999073e+02,
9.99996322e+02, 9.99996322e+02, 9.99996322e+02, 9.99996322e+02,
9.99986378e+02, 9.99986378e+02, 9.99986378e+02, 9.99986378e+02,
9.99952999e+02, 9.99952999e+02, 9.99952999e+02, 9.99952999e+02,
9.99849227e+02, 9.99849227e+02, 9.99849227e+02, 9.99849227e+02,
9.99551461e+02, 9.99551461e+02, 9.99551461e+02, 9.99551461e+02,
9.98766163e+02, 9.98766163e+02, 9.98766163e+02, 9.98766163e+02,
9.96871948e+02, 9.96871948e+02, 9.96871948e+02, 9.96871948e+02,
9.92715494e+02, 9.92715494e+02, 9.92715494e+02, 9.92715494e+02,
9.84462129e+02, 9.84462129e+02, 9.84462129e+02, 9.84462129e+02,
9.69692798e+02, 9.69692798e+02, 9.69692798e+02, 9.69692798e+02,
9.45913437e+02, 9.45913437e+02, 9.45913437e+02, 9.45913437e+02,
9.11388812e+02, 9.11388812e+02, 9.11388812e+02, 9.11388812e+02,
8.65856722e+02, 8.65856722e+02, 8.65856722e+02, 8.65856722e+02,
8.10584836e+02, 8.10584836e+02, 8.10584836e+02, 8.10584836e+02,
7.47563377e+02, 7.47563377e+02, 7.47563377e+02, 7.47563377e+02,
6.82592921e+02, 6.82592921e+02, 6.82592921e+02, 6.82592921e+02,
6.25100512e+02, 6.25100512e+02, 6.25100512e+02, 6.25100512e+02,
5.76125421e+02, 5.76125421e+02, 5.76125421e+02, 5.76125421e+02,
5.35939873e+02, 5.35939873e+02, 5.35939873e+02, 5.35939873e+02,
5.05443149e+02, 5.05443149e+02, 5.05443149e+02, 5.05443149e+02,
4.84061172e+02, 4.84061172e+02, 4.84061172e+02, 4.84061172e+02,
4.72683354e+02, 4.72683354e+02, 4.72683354e+02, 4.72683354e+02,
4.65930774e+02, 4.65930774e+02, 4.65930774e+02, 4.65930774e+02,
4.65385730e+02, 4.65385730e+02, 4.65385730e+02, 4.65385730e+02,
4.65275096e+02, 4.65275096e+02, 4.65275096e+02, 4.65275096e+02,
4.65244567e+02, 4.65244567e+02, 4.65244567e+02, 4.65244567e+02,
4.64880653e+02, 4.64880653e+02, 4.64880653e+02, 4.64880653e+02,
4.62253833e+02, 4.62253833e+02, 4.62253833e+02, 4.62253833e+02,
4.57097301e+02, 4.57097301e+02, 4.57097301e+02, 4.57097301e+02,
4.53882832e+02, 4.53882832e+02, 4.53882832e+02, 4.53882832e+02,
4.39418517e+02, 4.39418517e+02, 4.39418517e+02, 4.39418517e+02,
2.38228799e+02, 2.38228799e+02, 2.38228799e+02, 2.38228799e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999994, 0.99999994, 0.99999994,
0.99999994, 0.99999974, 0.99999974, 0.99999974, 0.99999974,
0.99999896, 0.99999896, 0.99999896, 0.99999896, 0.99999607,
0.99999607, 0.99999607, 0.99999607, 0.99998615, 0.99998615,
0.99998615, 0.99998615, 0.99995436, 0.99995436, 0.99995436,
0.99995436, 0.99985986, 0.99985986, 0.99985986, 0.99985986,
0.99959991, 0.99959991, 0.99959991, 0.99959991, 0.99894097,
0.99894097, 0.99894097, 0.99894097, 0.99740896, 0.99740896,
0.99740896, 0.99740896, 0.99415786, 0.99415786, 0.99415786,
0.99415786, 0.98788866, 0.98788866, 0.98788866, 0.98788866,
0.9769374 , 0.9769374 , 0.9769374 , 0.9769374 , 0.9596167 ,
0.9596167 , 0.9596167 , 0.9596167 , 0.93473263, 0.93473263,
0.93473263, 0.93473263, 0.90200243, 0.90200243, 0.90200243,
0.90200243, 0.86207191, 0.86207191, 0.86207191, 0.86207191,
0.8160811 , 0.8160811 , 0.8160811 , 0.8160811 , 0.76717167,
0.76717167, 0.76717167, 0.76717167, 0.72204334, 0.72204334,
0.72204334, 0.72204334, 0.68214793, 0.68214793, 0.68214793,
0.68214793, 0.64796307, 0.64796307, 0.64796307, 0.64796307,
0.62031392, 0.62031392, 0.62031392, 0.62031392, 0.60028844,
0.60028844, 0.60028844, 0.60028844, 0.58692937, 0.58692937,
0.58692937, 0.58692937, 0.58094604, 0.58094604, 0.58094604,
0.58094604, 0.57737342, 0.57737342, 0.57737342, 0.57737342,
0.57696531, 0.57696531, 0.57696531, 0.57696531, 0.57635167,
0.57635167, 0.57635167, 0.57635167, 0.57411717, 0.57411717,
0.57411717, 0.57411717, 0.56976281, 0.56976281, 0.56976281,
0.56976281, 0.5647334 , 0.5647334 , 0.5647334 , 0.5647334 ,
0.57337992, 0.57337992, 0.57337992, 0.57337992, 0.74560079,
0.74560079, 0.74560079, 0.74560079, 4.86173883, 4.86173883,
4.86173883, 4.86173883, 3.74293932, 3.74293932, 3.74293932,
3.74293932, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.5974499 , -19.5974499 , -19.5974499 , -19.5974499 ,
-19.5974495 , -19.5974495 , -19.5974495 , -19.5974495 ,
-19.59744774, -19.59744774, -19.59744774, -19.59744774,
-19.5974403 , -19.5974403 , -19.5974403 , -19.5974403 ,
-19.597411 , -19.597411 , -19.597411 , -19.597411 ,
-19.59730302, -19.59730302, -19.59730302, -19.59730302,
-19.59693164, -19.59693164, -19.59693164, -19.59693164,
-19.59574238, -19.59574238, -19.59574238, -19.59574238,
-19.59220644, -19.59220644, -19.59220644, -19.59220644,
-19.5824787 , -19.5824787 , -19.5824787 , -19.5824787 ,
-19.55781439, -19.55781439, -19.55781439, -19.55781439,
-19.50043296, -19.50043296, -19.50043296, -19.50043296,
-19.37847127, -19.37847127, -19.37847127, -19.37847127,
-19.14249326, -19.14249326, -19.14249326, -19.14249326,
-18.72758373, -18.72758373, -18.72758373, -18.72758373,
-18.06389686, -18.06389686, -18.06389686, -18.06389686,
-17.09337525, -17.09337525, -17.09337525, -17.09337525,
-15.7842355 , -15.7842355 , -15.7842355 , -15.7842355 ,
-14.13315083, -14.13315083, -14.13315083, -14.13315083,
-12.14786666, -12.14786666, -12.14786666, -12.14786666,
-9.94885509, -9.94885509, -9.94885509, -9.94885509,
-7.8279918 , -7.8279918 , -7.8279918 , -7.8279918 ,
-5.85096961, -5.85096961, -5.85096961, -5.85096961,
-4.083866 , -4.083866 , -4.083866 , -4.083866 ,
-2.61044982, -2.61044982, -2.61044982, -2.61044982,
-1.48449895, -1.48449895, -1.48449895, -1.48449895,
-0.78457656, -0.78457656, -0.78457656, -0.78457656,
-0.36023962, -0.36023962, -0.36023962, -0.36023962,
-0.26982385, -0.26982385, -0.26982385, -0.26982385,
-0.21660221, -0.21660221, -0.21660221, -0.21660221,
-0.21563676, -0.21563676, -0.21563676, -0.21563676,
-0.21823924, -0.21823924, -0.21823924, -0.21823924,
-0.14247469, -0.14247469, -0.14247469, -0.14247469,
0.10258168, 0.10258168, 0.10258168, 0.10258168,
0.32671238, 0.32671238, 0.32671238, 0.32671238,
0.4520803 , 0.4520803 , 0.4520803 , 0.4520803 ,
0.25674662, 0.25674662, 0.25674662, 0.25674662,
-4.32220372, -4.32220372, -4.32220372, -4.32220372,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999981e+02, 9.99999981e+02, 9.99999981e+02, 9.99999981e+02,
9.99999915e+02, 9.99999915e+02, 9.99999915e+02, 9.99999915e+02,
9.99999637e+02, 9.99999637e+02, 9.99999637e+02, 9.99999637e+02,
9.99998541e+02, 9.99998541e+02, 9.99998541e+02, 9.99998541e+02,
9.99994500e+02, 9.99994500e+02, 9.99994500e+02, 9.99994500e+02,
9.99980605e+02, 9.99980605e+02, 9.99980605e+02, 9.99980605e+02,
9.99936108e+02, 9.99936108e+02, 9.99936108e+02, 9.99936108e+02,
9.99803820e+02, 9.99803820e+02, 9.99803820e+02, 9.99803820e+02,
9.99439960e+02, 9.99439960e+02, 9.99439960e+02, 9.99439960e+02,
9.98517915e+02, 9.98517915e+02, 9.98517915e+02, 9.98517915e+02,
9.96375619e+02, 9.96375619e+02, 9.96375619e+02, 9.96375619e+02,
9.91835461e+02, 9.91835461e+02, 9.91835461e+02, 9.91835461e+02,
9.83101847e+02, 9.83101847e+02, 9.83101847e+02, 9.83101847e+02,
9.67908032e+02, 9.67908032e+02, 9.67908032e+02, 9.67908032e+02,
9.44029385e+02, 9.44029385e+02, 9.44029385e+02, 9.44029385e+02,
9.10036140e+02, 9.10036140e+02, 9.10036140e+02, 9.10036140e+02,
8.65873851e+02, 8.65873851e+02, 8.65873851e+02, 8.65873851e+02,
8.12839676e+02, 8.12839676e+02, 8.12839676e+02, 8.12839676e+02,
7.52816562e+02, 7.52816562e+02, 7.52816562e+02, 7.52816562e+02,
6.90463584e+02, 6.90463584e+02, 6.90463584e+02, 6.90463584e+02,
6.34422698e+02, 6.34422698e+02, 6.34422698e+02, 6.34422698e+02,
5.86040349e+02, 5.86040349e+02, 5.86040349e+02, 5.86040349e+02,
5.45517331e+02, 5.45517331e+02, 5.45517331e+02, 5.45517331e+02,
5.13402817e+02, 5.13402817e+02, 5.13402817e+02, 5.13402817e+02,
4.90538861e+02, 4.90538861e+02, 4.90538861e+02, 4.90538861e+02,
4.75499560e+02, 4.75499560e+02, 4.75499560e+02, 4.75499560e+02,
4.68907799e+02, 4.68907799e+02, 4.68907799e+02, 4.68907799e+02,
4.65117682e+02, 4.65117682e+02, 4.65117682e+02, 4.65117682e+02,
4.65134695e+02, 4.65134695e+02, 4.65134695e+02, 4.65134695e+02,
4.65442962e+02, 4.65442962e+02, 4.65442962e+02, 4.65442962e+02,
4.65131540e+02, 4.65131540e+02, 4.65131540e+02, 4.65131540e+02,
4.63362159e+02, 4.63362159e+02, 4.63362159e+02, 4.63362159e+02,
4.58697323e+02, 4.58697323e+02, 4.58697323e+02, 4.58697323e+02,
4.54631528e+02, 4.54631528e+02, 4.54631528e+02, 4.54631528e+02,
4.53420612e+02, 4.53420612e+02, 4.53420612e+02, 4.53420612e+02,
4.46380765e+02, 4.46380765e+02, 4.46380765e+02, 4.46380765e+02,
2.69672349e+02, 2.69672349e+02, 2.69672349e+02, 2.69672349e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.9999999 , 0.9999999 ,
0.9999999 , 0.9999999 , 0.99999959, 0.99999959, 0.99999959,
0.99999959, 0.99999842, 0.99999842, 0.99999842, 0.99999842,
0.99999432, 0.99999432, 0.99999432, 0.99999432, 0.99998084,
0.99998084, 0.99998084, 0.99998084, 0.99993948, 0.99993948,
0.99993948, 0.99993948, 0.99982148, 0.99982148, 0.99982148,
0.99982148, 0.99950923, 0.99950923, 0.99950923, 0.99950923,
0.99874628, 0.99874628, 0.99874628, 0.99874628, 0.9970325 ,
0.9970325 , 0.9970325 , 0.9970325 , 0.99351011, 0.99351011,
0.99351011, 0.99351011, 0.98691297, 0.98691297, 0.98691297,
0.98691297, 0.97568359, 0.97568359, 0.97568359, 0.97568359,
0.95831325, 0.95831325, 0.95831325, 0.95831325, 0.93380786,
0.93380786, 0.93380786, 0.93380786, 0.90202785, 0.90202785,
0.90202785, 0.90202785, 0.86366009, 0.86366009, 0.86366009,
0.86366009, 0.81979651, 0.81979651, 0.81979651, 0.81979651,
0.77297936, 0.77297936, 0.77297936, 0.77297936, 0.72920034,
0.72920034, 0.72920034, 0.72920034, 0.69006306, 0.69006306,
0.69006306, 0.69006306, 0.65593137, 0.65593137, 0.65593137,
0.65593137, 0.62766415, 0.62766415, 0.62766415, 0.62766415,
0.60587119, 0.60587119, 0.60587119, 0.60587119, 0.59137799,
0.59137799, 0.59137799, 0.59137799, 0.58235921, 0.58235921,
0.58235921, 0.58235921, 0.57922962, 0.57922962, 0.57922962,
0.57922962, 0.57732033, 0.57732033, 0.57732033, 0.57732033,
0.57686979, 0.57686979, 0.57686979, 0.57686979, 0.57610032,
0.57610032, 0.57610032, 0.57610032, 0.57333709, 0.57333709,
0.57333709, 0.57333709, 0.56738045, 0.56738045, 0.56738045,
0.56738045, 0.56220514, 0.56220514, 0.56220514, 0.56220514,
0.57216743, 0.57216743, 0.57216743, 0.57216743, 0.74383759,
0.74383759, 0.74383759, 0.74383759, 4.87563631, 4.87563631,
4.87563631, 4.87563631, 4.11173504, 4.11173504, 4.11173504,
4.11173504, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974491e+01, -1.95974491e+01, -1.95974491e+01, -1.95974491e+01,
-1.95974462e+01, -1.95974462e+01, -1.95974462e+01, -1.95974462e+01,
-1.95974346e+01, -1.95974346e+01, -1.95974346e+01, -1.95974346e+01,
-1.95973909e+01, -1.95973909e+01, -1.95973909e+01, -1.95973909e+01,
-1.95972374e+01, -1.95972374e+01, -1.95972374e+01, -1.95972374e+01,
-1.95967329e+01, -1.95967329e+01, -1.95967329e+01, -1.95967329e+01,
-1.95951856e+01, -1.95951856e+01, -1.95951856e+01, -1.95951856e+01,
-1.95907700e+01, -1.95907700e+01, -1.95907700e+01, -1.95907700e+01,
-1.95790850e+01, -1.95790850e+01, -1.95790850e+01, -1.95790850e+01,
-1.95505247e+01, -1.95505247e+01, -1.95505247e+01, -1.95505247e+01,
-1.94863222e+01, -1.94863222e+01, -1.94863222e+01, -1.94863222e+01,
-1.93541313e+01, -1.93541313e+01, -1.93541313e+01, -1.93541313e+01,
-1.91056428e+01, -1.91056428e+01, -1.91056428e+01, -1.91056428e+01,
-1.86797805e+01, -1.86797805e+01, -1.86797805e+01, -1.86797805e+01,
-1.80133989e+01, -1.80133989e+01, -1.80133989e+01, -1.80133989e+01,
-1.70565763e+01, -1.70565763e+01, -1.70565763e+01, -1.70565763e+01,
-1.57847291e+01, -1.57847291e+01, -1.57847291e+01, -1.57847291e+01,
-1.41993110e+01, -1.41993110e+01, -1.41993110e+01, -1.41993110e+01,
-1.23114182e+01, -1.23114182e+01, -1.23114182e+01, -1.23114182e+01,
-1.02128458e+01, -1.02128458e+01, -1.02128458e+01, -1.02128458e+01,
-8.17097157e+00, -8.17097157e+00, -8.17097157e+00, -8.17097157e+00,
-6.24791835e+00, -6.24791835e+00, -6.24791835e+00, -6.24791835e+00,
-4.50048637e+00, -4.50048637e+00, -4.50048637e+00, -4.50048637e+00,
-2.99529183e+00, -2.99529183e+00, -2.99529183e+00, -2.99529183e+00,
-1.81501387e+00, -1.81501387e+00, -1.81501387e+00, -1.81501387e+00,
-9.74971294e-01, -9.74971294e-01, -9.74971294e-01, -9.74971294e-01,
-5.25188680e-01, -5.25188680e-01, -5.25188680e-01, -5.25188680e-01,
-2.68903625e-01, -2.68903625e-01, -2.68903625e-01, -2.68903625e-01,
-2.41934051e-01, -2.41934051e-01, -2.41934051e-01, -2.41934051e-01,
-2.27678422e-01, -2.27678422e-01, -2.27678422e-01, -2.27678422e-01,
-2.13501022e-01, -2.13501022e-01, -2.13501022e-01, -2.13501022e-01,
-1.62982931e-01, -1.62982931e-01, -1.62982931e-01, -1.62982931e-01,
1.15379653e-02, 1.15379653e-02, 1.15379653e-02, 1.15379653e-02,
2.50688575e-01, 2.50688575e-01, 2.50688575e-01, 2.50688575e-01,
3.71810186e-01, 3.71810186e-01, 3.71810186e-01, 3.71810186e-01,
4.26658879e-01, 4.26658879e-01, 4.26658879e-01, 4.26658879e-01,
2.36045219e-01, 2.36045219e-01, 2.36045219e-01, 2.36045219e-01,
-3.58270901e+00, -3.58270901e+00, -3.58270901e+00, -3.58270901e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999993e+02, 9.99999993e+02, 9.99999993e+02, 9.99999993e+02,
9.99999967e+02, 9.99999967e+02, 9.99999967e+02, 9.99999967e+02,
9.99999858e+02, 9.99999858e+02, 9.99999858e+02, 9.99999858e+02,
9.99999422e+02, 9.99999422e+02, 9.99999422e+02, 9.99999422e+02,
9.99997788e+02, 9.99997788e+02, 9.99997788e+02, 9.99997788e+02,
9.99992045e+02, 9.99992045e+02, 9.99992045e+02, 9.99992045e+02,
9.99973169e+02, 9.99973169e+02, 9.99973169e+02, 9.99973169e+02,
9.99915278e+02, 9.99915278e+02, 9.99915278e+02, 9.99915278e+02,
9.99750084e+02, 9.99750084e+02, 9.99750084e+02, 9.99750084e+02,
9.99313048e+02, 9.99313048e+02, 9.99313048e+02, 9.99313048e+02,
9.98245539e+02, 9.98245539e+02, 9.98245539e+02, 9.98245539e+02,
9.95849414e+02, 9.95849414e+02, 9.95849414e+02, 9.95849414e+02,
9.90931538e+02, 9.90931538e+02, 9.90931538e+02, 9.90931538e+02,
9.81744079e+02, 9.81744079e+02, 9.81744079e+02, 9.81744079e+02,
9.66170722e+02, 9.66170722e+02, 9.66170722e+02, 9.66170722e+02,
9.42233527e+02, 9.42233527e+02, 9.42233527e+02, 9.42233527e+02,
9.08767261e+02, 9.08767261e+02, 9.08767261e+02, 9.08767261e+02,
8.65885982e+02, 8.65885982e+02, 8.65885982e+02, 8.65885982e+02,
8.14898864e+02, 8.14898864e+02, 8.14898864e+02, 8.14898864e+02,
7.57590795e+02, 7.57590795e+02, 7.57590795e+02, 7.57590795e+02,
6.97731013e+02, 6.97731013e+02, 6.97731013e+02, 6.97731013e+02,
6.43163759e+02, 6.43163759e+02, 6.43163759e+02, 6.43163759e+02,
5.95496479e+02, 5.95496479e+02, 5.95496479e+02, 5.95496479e+02,
5.54812201e+02, 5.54812201e+02, 5.54812201e+02, 5.54812201e+02,
5.21793149e+02, 5.21793149e+02, 5.21793149e+02, 5.21793149e+02,
4.96779727e+02, 4.96779727e+02, 4.96779727e+02, 4.96779727e+02,
4.80392572e+02, 4.80392572e+02, 4.80392572e+02, 4.80392572e+02,
4.70330245e+02, 4.70330245e+02, 4.70330245e+02, 4.70330245e+02,
4.66971151e+02, 4.66971151e+02, 4.66971151e+02, 4.66971151e+02,
4.65060012e+02, 4.65060012e+02, 4.65060012e+02, 4.65060012e+02,
4.65030737e+02, 4.65030737e+02, 4.65030737e+02, 4.65030737e+02,
4.65164746e+02, 4.65164746e+02, 4.65164746e+02, 4.65164746e+02,
4.64255999e+02, 4.64255999e+02, 4.64255999e+02, 4.64255999e+02,
4.60656577e+02, 4.60656577e+02, 4.60656577e+02, 4.60656577e+02,
4.55837406e+02, 4.55837406e+02, 4.55837406e+02, 4.55837406e+02,
4.53402412e+02, 4.53402412e+02, 4.53402412e+02, 4.53402412e+02,
4.53640419e+02, 4.53640419e+02, 4.53640419e+02, 4.53640419e+02,
4.52229350e+02, 4.52229350e+02, 4.52229350e+02, 4.52229350e+02,
3.01077885e+02, 3.01077885e+02, 3.01077885e+02, 3.01077885e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999984,
0.99999984, 0.99999984, 0.99999984, 0.99999937, 0.99999937,
0.99999937, 0.99999937, 0.99999768, 0.99999768, 0.99999768,
0.99999768, 0.99999201, 0.99999201, 0.99999201, 0.99999201,
0.99997414, 0.99997414, 0.99997414, 0.99997414, 0.99992146,
0.99992146, 0.99992146, 0.99992146, 0.99977672, 0.99977672,
0.99977672, 0.99977672, 0.99940724, 0.99940724, 0.99940724,
0.99940724, 0.99853457, 0.99853457, 0.99853457, 0.99853457,
0.99663589, 0.99663589, 0.99663589, 0.99663589, 0.9928473 ,
0.9928473 , 0.9928473 , 0.9928473 , 0.98594052, 0.98594052,
0.98594052, 0.98594052, 0.97446242, 0.97446242, 0.97446242,
0.97446242, 0.95706792, 0.95706792, 0.95706792, 0.95706792,
0.93293693, 0.93293693, 0.93293693, 0.93293693, 0.90204737,
0.90204737, 0.90204737, 0.90204737, 0.86511108, 0.86511108,
0.86511108, 0.86511108, 0.82318738, 0.82318738, 0.82318738,
0.82318738, 0.77830857, 0.77830857, 0.77830857, 0.77830857,
0.73588408, 0.73588408, 0.73588408, 0.73588408, 0.6975687 ,
0.6975687 , 0.6975687 , 0.6975687 , 0.66365245, 0.66365245,
0.66365245, 0.66365245, 0.63486674, 0.63486674, 0.63486674,
0.63486674, 0.61208758, 0.61208758, 0.61208758, 0.61208758,
0.59551372, 0.59551372, 0.59551372, 0.59551372, 0.58561868,
0.58561868, 0.58561868, 0.58561868, 0.57985691, 0.57985691,
0.57985691, 0.57985691, 0.57840454, 0.57840454, 0.57840454,
0.57840454, 0.57741333, 0.57741333, 0.57741333, 0.57741333,
0.5767517 , 0.5767517 , 0.5767517 , 0.5767517 , 0.57543994,
0.57543994, 0.57543994, 0.57543994, 0.57152955, 0.57152955,
0.57152955, 0.57152955, 0.56468211, 0.56468211, 0.56468211,
0.56468211, 0.56091344, 0.56091344, 0.56091344, 0.56091344,
0.57188894, 0.57188894, 0.57188894, 0.57188894, 0.74278857,
0.74278857, 0.74278857, 0.74278857, 4.88603985, 4.88603985,
4.88603985, 4.88603985, 4.4829508 , 4.4829508 , 4.4829508 ,
4.4829508 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744993, -19.59744993, -19.59744993, -19.59744993,
-19.59744966, -19.59744966, -19.59744966, -19.59744966,
-19.59744852, -19.59744852, -19.59744852, -19.59744852,
-19.59744389, -19.59744389, -19.59744389, -19.59744389,
-19.59742629, -19.59742629, -19.59742629, -19.59742629,
-19.59736324, -19.59736324, -19.59736324, -19.59736324,
-19.59715114, -19.59715114, -19.59715114, -19.59715114,
-19.59648246, -19.59648246, -19.59648246, -19.59648246,
-19.59451143, -19.59451143, -19.59451143, -19.59451143,
-19.5890952 , -19.5890952 , -19.5890952 , -19.5890952 ,
-19.5752676 , -19.5752676 , -19.5752676 , -19.5752676 ,
-19.54259686, -19.54259686, -19.54259686, -19.54259686,
-19.47145154, -19.47145154, -19.47145154, -19.47145154,
-19.32921166, -19.32921166, -19.32921166, -19.32921166,
-19.06888403, -19.06888403, -19.06888403, -19.06888403,
-18.63316989, -18.63316989, -18.63316989, -18.63316989,
-17.9650968 , -17.9650968 , -17.9650968 , -17.9650968 ,
-17.0218994 , -17.0218994 , -17.0218994 , -17.0218994 ,
-15.78504755, -15.78504755, -15.78504755, -15.78504755,
-14.25968055, -14.25968055, -14.25968055, -14.25968055,
-12.4597091 , -12.4597091 , -12.4597091 , -12.4597091 ,
-10.45568507, -10.45568507, -10.45568507, -10.45568507,
-8.48812092, -8.48812092, -8.48812092, -8.48812092,
-6.62035699, -6.62035699, -6.62035699, -6.62035699,
-4.89903379, -4.89903379, -4.89903379, -4.89903379,
-3.38404759, -3.38404759, -3.38404759, -3.38404759,
-2.13969306, -2.13969306, -2.13969306, -2.13969306,
-1.23614386, -1.23614386, -1.23614386, -1.23614386,
-0.64167605, -0.64167605, -0.64167605, -0.64167605,
-0.37914747, -0.37914747, -0.37914747, -0.37914747,
-0.23502088, -0.23502088, -0.23502088, -0.23502088,
-0.22631738, -0.22631738, -0.22631738, -0.22631738,
-0.22300658, -0.22300658, -0.22300658, -0.22300658,
-0.18972395, -0.18972395, -0.18972395, -0.18972395,
-0.06053401, -0.06053401, -0.06053401, -0.06053401,
0.18328595, 0.18328595, 0.18328595, 0.18328595,
0.33774148, 0.33774148, 0.33774148, 0.33774148,
0.37790834, 0.37790834, 0.37790834, 0.37790834,
0.36595791, 0.36595791, 0.36595791, 0.36595791,
0.20139712, 0.20139712, 0.20139712, 0.20139712,
-2.94185063, -2.94185063, -2.94185063, -2.94185063,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999987e+02, 9.99999987e+02, 9.99999987e+02, 9.99999987e+02,
9.99999944e+02, 9.99999944e+02, 9.99999944e+02, 9.99999944e+02,
9.99999771e+02, 9.99999771e+02, 9.99999771e+02, 9.99999771e+02,
9.99999113e+02, 9.99999113e+02, 9.99999113e+02, 9.99999113e+02,
9.99996754e+02, 9.99996754e+02, 9.99996754e+02, 9.99996754e+02,
9.99988818e+02, 9.99988818e+02, 9.99988818e+02, 9.99988818e+02,
9.99963798e+02, 9.99963798e+02, 9.99963798e+02, 9.99963798e+02,
9.99890054e+02, 9.99890054e+02, 9.99890054e+02, 9.99890054e+02,
9.99687434e+02, 9.99687434e+02, 9.99687434e+02, 9.99687434e+02,
9.99170306e+02, 9.99170306e+02, 9.99170306e+02, 9.99170306e+02,
9.97949393e+02, 9.97949393e+02, 9.97949393e+02, 9.97949393e+02,
9.95295134e+02, 9.95295134e+02, 9.95295134e+02, 9.95295134e+02,
9.90006831e+02, 9.90006831e+02, 9.90006831e+02, 9.90006831e+02,
9.80391310e+02, 9.80391310e+02, 9.80391310e+02, 9.80391310e+02,
9.64479348e+02, 9.64479348e+02, 9.64479348e+02, 9.64479348e+02,
9.40518463e+02, 9.40518463e+02, 9.40518463e+02, 9.40518463e+02,
9.07572798e+02, 9.07572798e+02, 9.07572798e+02, 9.07572798e+02,
8.65892510e+02, 8.65892510e+02, 8.65892510e+02, 8.65892510e+02,
8.16782085e+02, 8.16782085e+02, 8.16782085e+02, 8.16782085e+02,
7.61943905e+02, 7.61943905e+02, 7.61943905e+02, 7.61943905e+02,
7.04440896e+02, 7.04440896e+02, 7.04440896e+02, 7.04440896e+02,
6.51364154e+02, 6.51364154e+02, 6.51364154e+02, 6.51364154e+02,
6.04502355e+02, 6.04502355e+02, 6.04502355e+02, 6.04502355e+02,
5.63886999e+02, 5.63886999e+02, 5.63886999e+02, 5.63886999e+02,
5.30076096e+02, 5.30076096e+02, 5.30076096e+02, 5.30076096e+02,
5.03790017e+02, 5.03790017e+02, 5.03790017e+02, 5.03790017e+02,
4.84951336e+02, 4.84951336e+02, 4.84951336e+02, 4.84951336e+02,
4.73864273e+02, 4.73864273e+02, 4.73864273e+02, 4.73864273e+02,
4.67506026e+02, 4.67506026e+02, 4.67506026e+02, 4.67506026e+02,
4.66041067e+02, 4.66041067e+02, 4.66041067e+02, 4.66041067e+02,
4.65166922e+02, 4.65166922e+02, 4.65166922e+02, 4.65166922e+02,
4.64900848e+02, 4.64900848e+02, 4.64900848e+02, 4.64900848e+02,
4.64424099e+02, 4.64424099e+02, 4.64424099e+02, 4.64424099e+02,
4.62213743e+02, 4.62213743e+02, 4.62213743e+02, 4.62213743e+02,
4.57590437e+02, 4.57590437e+02, 4.57590437e+02, 4.57590437e+02,
4.54377588e+02, 4.54377588e+02, 4.54377588e+02, 4.54377588e+02,
4.53225414e+02, 4.53225414e+02, 4.53225414e+02, 4.53225414e+02,
4.54269492e+02, 4.54269492e+02, 4.54269492e+02, 4.54269492e+02,
4.56975917e+02, 4.56975917e+02, 4.56975917e+02, 4.56975917e+02,
3.32154512e+02, 3.32154512e+02, 3.32154512e+02, 3.32154512e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999975, 0.99999975, 0.99999975, 0.99999975, 0.99999906,
0.99999906, 0.99999906, 0.99999906, 0.99999669, 0.99999669,
0.99999669, 0.99999669, 0.99998905, 0.99998905, 0.99998905,
0.99998905, 0.99996586, 0.99996586, 0.99996586, 0.99996586,
0.99989999, 0.99989999, 0.99989999, 0.99989999, 0.99972521,
0.99972521, 0.99972521, 0.99972521, 0.99929369, 0.99929369,
0.99929369, 0.99929369, 0.99830617, 0.99830617, 0.99830617,
0.99830617, 0.99622037, 0.99622037, 0.99622037, 0.99622037,
0.99217142, 0.99217142, 0.99217142, 0.99217142, 0.9849728 ,
0.9849728 , 0.9849728 , 0.9849728 , 0.97327279, 0.97327279,
0.97327279, 0.97327279, 0.95587603, 0.95587603, 0.95587603,
0.95587603, 0.93211405, 0.93211405, 0.93211405, 0.93211405,
0.90206095, 0.90206095, 0.90206095, 0.90206095, 0.86644292,
0.86644292, 0.86644292, 0.86644292, 0.82627812, 0.82627812,
0.82627812, 0.82627812, 0.78324576, 0.78324576, 0.78324576,
0.78324576, 0.74209651, 0.74209651, 0.74209651, 0.74209651,
0.70467067, 0.70467067, 0.70467067, 0.70467067, 0.6710924 ,
0.6710924 , 0.6710924 , 0.6710924 , 0.64204803, 0.64204803,
0.64204803, 0.64204803, 0.61827118, 0.61827118, 0.61827118,
0.61827118, 0.60052582, 0.60052582, 0.60052582, 0.60052582,
0.58845153, 0.58845153, 0.58845153, 0.58845153, 0.58214806,
0.58214806, 0.58214806, 0.58214806, 0.57865038, 0.57865038,
0.57865038, 0.57865038, 0.57797488, 0.57797488, 0.57797488,
0.57797488, 0.57738553, 0.57738553, 0.57738553, 0.57738553,
0.57646935, 0.57646935, 0.57646935, 0.57646935, 0.57417533,
0.57417533, 0.57417533, 0.57417533, 0.56878133, 0.56878133,
0.56878133, 0.56878133, 0.56286248, 0.56286248, 0.56286248,
0.56286248, 0.56053437, 0.56053437, 0.56053437, 0.56053437,
0.57217087, 0.57217087, 0.57217087, 0.57217087, 0.74285488,
0.74285488, 0.74285488, 0.74285488, 4.89602032, 4.89602032,
4.89602032, 4.89602032, 4.85298549, 4.85298549, 4.85298549,
4.85298549, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744987, -19.59744987, -19.59744987, -19.59744987,
-19.59744942, -19.59744942, -19.59744942, -19.59744942,
-19.59744759, -19.59744759, -19.59744759, -19.59744759,
-19.59744051, -19.59744051, -19.59744051, -19.59744051,
-19.59741474, -19.59741474, -19.59741474, -19.59741474,
-19.59732623, -19.59732623, -19.59732623, -19.59732623,
-19.59704025, -19.59704025, -19.59704025, -19.59704025,
-19.59617271, -19.59617271, -19.59617271, -19.59617271,
-19.59370781, -19.59370781, -19.59370781, -19.59370781,
-19.5871677 , -19.5871677 , -19.5871677 , -19.5871677 ,
-19.57101768, -19.57101768, -19.57101768, -19.57101768,
-19.53404259, -19.53404259, -19.53404259, -19.53404259,
-19.45586713, -19.45586713, -19.45586713, -19.45586713,
-19.30378665, -19.30378665, -19.30378665, -19.30378665,
-19.03227296, -19.03227296, -19.03227296, -19.03227296,
-18.58771423, -18.58771423, -18.58771423, -18.58771423,
-17.91881719, -17.91881719, -17.91881719, -17.91881719,
-16.98911722, -16.98911722, -16.98911722, -16.98911722,
-15.78517919, -15.78517919, -15.78517919, -15.78517919,
-14.31505356, -14.31505356, -14.31505356, -14.31505356,
-12.59466668, -12.59466668, -12.59466668, -12.59466668,
-10.67884325, -10.67884325, -10.67884325, -10.67884325,
-8.78284546, -8.78284546, -8.78284546, -8.78284546,
-6.96953529, -6.96953529, -6.96953529, -6.96953529,
-5.27984005, -5.27984005, -5.27984005, -5.27984005,
-3.76278511, -3.76278511, -3.76278511, -3.76278511,
-2.48379605, -2.48379605, -2.48379605, -2.48379605,
-1.49232242, -1.49232242, -1.49232242, -1.49232242,
-0.83744489, -0.83744489, -0.83744489, -0.83744489,
-0.44040496, -0.44040496, -0.44040496, -0.44040496,
-0.30291626, -0.30291626, -0.30291626, -0.30291626,
-0.22614522, -0.22614522, -0.22614522, -0.22614522,
-0.21208699, -0.21208699, -0.21208699, -0.21208699,
-0.19822265, -0.19822265, -0.19822265, -0.19822265,
-0.12194001, -0.12194001, -0.12194001, -0.12194001,
0.08999319, 0.08999319, 0.08999319, 0.08999319,
0.29386176, 0.29386176, 0.29386176, 0.29386176,
0.37116051, 0.37116051, 0.37116051, 0.37116051,
0.36272859, 0.36272859, 0.36272859, 0.36272859,
0.28212421, 0.28212421, 0.28212421, 0.28212421,
0.15734376, 0.15734376, 0.15734376, 0.15734376,
-2.38397278, -2.38397278, -2.38397278, -2.38397278,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999995e+02, 9.99999995e+02, 9.99999995e+02, 9.99999995e+02,
9.99999978e+02, 9.99999978e+02, 9.99999978e+02, 9.99999978e+02,
9.99999910e+02, 9.99999910e+02, 9.99999910e+02, 9.99999910e+02,
9.99999645e+02, 9.99999645e+02, 9.99999645e+02, 9.99999645e+02,
9.99998681e+02, 9.99998681e+02, 9.99998681e+02, 9.99998681e+02,
9.99995369e+02, 9.99995369e+02, 9.99995369e+02, 9.99995369e+02,
9.99984669e+02, 9.99984669e+02, 9.99984669e+02, 9.99984669e+02,
9.99952209e+02, 9.99952209e+02, 9.99952209e+02, 9.99952209e+02,
9.99859989e+02, 9.99859989e+02, 9.99859989e+02, 9.99859989e+02,
9.99615335e+02, 9.99615335e+02, 9.99615335e+02, 9.99615335e+02,
9.99011413e+02, 9.99011413e+02, 9.99011413e+02, 9.99011413e+02,
9.97629932e+02, 9.97629932e+02, 9.97629932e+02, 9.97629932e+02,
9.94714537e+02, 9.94714537e+02, 9.94714537e+02, 9.94714537e+02,
9.89064142e+02, 9.89064142e+02, 9.89064142e+02, 9.89064142e+02,
9.79045586e+02, 9.79045586e+02, 9.79045586e+02, 9.79045586e+02,
9.62832342e+02, 9.62832342e+02, 9.62832342e+02, 9.62832342e+02,
9.38877680e+02, 9.38877680e+02, 9.38877680e+02, 9.38877680e+02,
9.06444711e+02, 9.06444711e+02, 9.06444711e+02, 9.06444711e+02,
8.65893051e+02, 8.65893051e+02, 8.65893051e+02, 8.65893051e+02,
8.18513038e+02, 8.18513038e+02, 8.18513038e+02, 8.18513038e+02,
7.65925567e+02, 7.65925567e+02, 7.65925567e+02, 7.65925567e+02,
7.10661539e+02, 7.10661539e+02, 7.10661539e+02, 7.10661539e+02,
6.59031108e+02, 6.59031108e+02, 6.59031108e+02, 6.59031108e+02,
6.13064332e+02, 6.13064332e+02, 6.13064332e+02, 6.13064332e+02,
5.72674499e+02, 5.72674499e+02, 5.72674499e+02, 5.72674499e+02,
5.38398891e+02, 5.38398891e+02, 5.38398891e+02, 5.38398891e+02,
5.10813983e+02, 5.10813983e+02, 5.10813983e+02, 5.10813983e+02,
4.90540957e+02, 4.90540957e+02, 4.90540957e+02, 4.90540957e+02,
4.76930301e+02, 4.76930301e+02, 4.76930301e+02, 4.76930301e+02,
4.69941361e+02, 4.69941361e+02, 4.69941361e+02, 4.69941361e+02,
4.66145998e+02, 4.66145998e+02, 4.66145998e+02, 4.66145998e+02,
4.65557284e+02, 4.65557284e+02, 4.65557284e+02, 4.65557284e+02,
4.65137442e+02, 4.65137442e+02, 4.65137442e+02, 4.65137442e+02,
4.64585189e+02, 4.64585189e+02, 4.64585189e+02, 4.64585189e+02,
4.63000203e+02, 4.63000203e+02, 4.63000203e+02, 4.63000203e+02,
4.59105657e+02, 4.59105657e+02, 4.59105657e+02, 4.59105657e+02,
4.55518041e+02, 4.55518041e+02, 4.55518041e+02, 4.55518041e+02,
4.53947203e+02, 4.53947203e+02, 4.53947203e+02, 4.53947203e+02,
4.53673503e+02, 4.53673503e+02, 4.53673503e+02, 4.53673503e+02,
4.55580551e+02, 4.55580551e+02, 4.55580551e+02, 4.55580551e+02,
4.60645373e+02, 4.60645373e+02, 4.60645373e+02, 4.60645373e+02,
3.62537064e+02, 3.62537064e+02, 3.62537064e+02, 3.62537064e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999997, 0.99999997,
0.99999997, 0.99999997, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999962, 0.99999962, 0.99999962, 0.99999962,
0.99999864, 0.99999864, 0.99999864, 0.99999864, 0.9999954 ,
0.9999954 , 0.9999954 , 0.9999954 , 0.99998531, 0.99998531,
0.99998531, 0.99998531, 0.99995579, 0.99995579, 0.99995579,
0.99995579, 0.99987474, 0.99987474, 0.99987474, 0.99987474,
0.9996666 , 0.9996666 , 0.9996666 , 0.9996666 , 0.99916844,
0.99916844, 0.99916844, 0.99916844, 0.99806145, 0.99806145,
0.99806145, 0.99806145, 0.99578716, 0.99578716, 0.99578716,
0.99578716, 0.99148428, 0.99148428, 0.99148428, 0.99148428,
0.98401101, 0.98401101, 0.98401101, 0.98401101, 0.9721136 ,
0.9721136 , 0.9721136 , 0.9721136 , 0.95473344, 0.95473344,
0.95473344, 0.95473344, 0.93133428, 0.93133428, 0.93133428,
0.93133428, 0.90206896, 0.90206896, 0.90206896, 0.90206896,
0.86766988, 0.86766988, 0.86766988, 0.86766988, 0.82910964,
0.82910964, 0.82910964, 0.82910964, 0.78781314, 0.78781314,
0.78781314, 0.78781314, 0.74790844, 0.74790844, 0.74790844,
0.74790844, 0.71135798, 0.71135798, 0.71135798, 0.71135798,
0.67823814, 0.67823814, 0.67823814, 0.67823814, 0.64908766,
0.64908766, 0.64908766, 0.64908766, 0.62466081, 0.62466081,
0.62466081, 0.62466081, 0.6055593 , 0.6055593 , 0.6055593 ,
0.6055593 , 0.59230699, 0.59230699, 0.59230699, 0.59230699,
0.58392543, 0.58392543, 0.58392543, 0.58392543, 0.58019951,
0.58019951, 0.58019951, 0.58019951, 0.57813804, 0.57813804,
0.57813804, 0.57813804, 0.5776455 , 0.5776455 , 0.5776455 ,
0.5776455 , 0.57710118, 0.57710118, 0.57710118, 0.57710118,
0.57572559, 0.57572559, 0.57572559, 0.57572559, 0.57206785,
0.57206785, 0.57206785, 0.57206785, 0.56644016, 0.56644016,
0.56644016, 0.56644016, 0.56196219, 0.56196219, 0.56196219,
0.56196219, 0.5606061 , 0.5606061 , 0.5606061 , 0.5606061 ,
0.57295 , 0.57295 , 0.57295 , 0.57295 , 0.74382089,
0.74382089, 0.74382089, 0.74382089, 4.90781149, 4.90781149,
4.90781149, 4.90781149, 5.21965552, 5.21965552, 5.21965552,
5.21965552, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974490e+01, -1.95974490e+01, -1.95974490e+01, -1.95974490e+01,
-1.95974462e+01, -1.95974462e+01, -1.95974462e+01, -1.95974462e+01,
-1.95974357e+01, -1.95974357e+01, -1.95974357e+01, -1.95974357e+01,
-1.95973990e+01, -1.95973990e+01, -1.95973990e+01, -1.95973990e+01,
-1.95972778e+01, -1.95972778e+01, -1.95972778e+01, -1.95972778e+01,
-1.95969004e+01, -1.95969004e+01, -1.95969004e+01, -1.95969004e+01,
-1.95957959e+01, -1.95957959e+01, -1.95957959e+01, -1.95957959e+01,
-1.95927631e+01, -1.95927631e+01, -1.95927631e+01, -1.95927631e+01,
-1.95849744e+01, -1.95849744e+01, -1.95849744e+01, -1.95849744e+01,
-1.95663288e+01, -1.95663288e+01, -1.95663288e+01, -1.95663288e+01,
-1.95248756e+01, -1.95248756e+01, -1.95248756e+01, -1.95248756e+01,
-1.94396138e+01, -1.94396138e+01, -1.94396138e+01, -1.94396138e+01,
-1.92779235e+01, -1.92779235e+01, -1.92779235e+01, -1.92779235e+01,
-1.89958563e+01, -1.89958563e+01, -1.89958563e+01, -1.89958563e+01,
-1.85433753e+01, -1.85433753e+01, -1.85433753e+01, -1.85433753e+01,
-1.78744061e+01, -1.78744061e+01, -1.78744061e+01, -1.78744061e+01,
-1.69580372e+01, -1.69580372e+01, -1.69580372e+01, -1.69580372e+01,
-1.57851310e+01, -1.57851310e+01, -1.57851310e+01, -1.57851310e+01,
-1.43660369e+01, -1.43660369e+01, -1.43660369e+01, -1.43660369e+01,
-1.27180677e+01, -1.27180677e+01, -1.27180677e+01, -1.27180677e+01,
-1.08842763e+01, -1.08842763e+01, -1.08842763e+01, -1.08842763e+01,
-9.05630951e+00, -9.05630951e+00, -9.05630951e+00, -9.05630951e+00,
-7.29760506e+00, -7.29760506e+00, -7.29760506e+00, -7.29760506e+00,
-5.64239272e+00, -5.64239272e+00, -5.64239272e+00, -5.64239272e+00,
-4.13310877e+00, -4.13310877e+00, -4.13310877e+00, -4.13310877e+00,
-2.82532524e+00, -2.82532524e+00, -2.82532524e+00, -2.82532524e+00,
-1.78143548e+00, -1.78143548e+00, -1.78143548e+00, -1.78143548e+00,
-1.02528008e+00, -1.02528008e+00, -1.02528008e+00, -1.02528008e+00,
-5.79884468e-01, -5.79884468e-01, -5.79884468e-01, -5.79884468e-01,
-3.29472357e-01, -3.29472357e-01, -3.29472357e-01, -3.29472357e-01,
-2.63387045e-01, -2.63387045e-01, -2.63387045e-01, -2.63387045e-01,
-2.20777631e-01, -2.20777631e-01, -2.20777631e-01, -2.20777631e-01,
-1.94945989e-01, -1.94945989e-01, -1.94945989e-01, -1.94945989e-01,
-1.44701458e-01, -1.44701458e-01, -1.44701458e-01, -1.44701458e-01,
6.34160686e-03, 6.34160686e-03, 6.34160686e-03, 6.34160686e-03,
2.19027902e-01, 2.19027902e-01, 2.19027902e-01, 2.19027902e-01,
3.42281353e-01, 3.42281353e-01, 3.42281353e-01, 3.42281353e-01,
3.69210178e-01, 3.69210178e-01, 3.69210178e-01, 3.69210178e-01,
3.25110505e-01, 3.25110505e-01, 3.25110505e-01, 3.25110505e-01,
1.89137060e-01, 1.89137060e-01, 1.89137060e-01, 1.89137060e-01,
1.05454908e-01, 1.05454908e-01, 1.05454908e-01, 1.05454908e-01,
-1.89313025e+00, -1.89313025e+00, -1.89313025e+00, -1.89313025e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999964e+02, 9.99999964e+02, 9.99999964e+02, 9.99999964e+02,
9.99999858e+02, 9.99999858e+02, 9.99999858e+02, 9.99999858e+02,
9.99999466e+02, 9.99999466e+02, 9.99999466e+02, 9.99999466e+02,
9.99998093e+02, 9.99998093e+02, 9.99998093e+02, 9.99998093e+02,
9.99993556e+02, 9.99993556e+02, 9.99993556e+02, 9.99993556e+02,
9.99979438e+02, 9.99979438e+02, 9.99979438e+02, 9.99979438e+02,
9.99938111e+02, 9.99938111e+02, 9.99938111e+02, 9.99938111e+02,
9.99824646e+02, 9.99824646e+02, 9.99824646e+02, 9.99824646e+02,
9.99533300e+02, 9.99533300e+02, 9.99533300e+02, 9.99533300e+02,
9.98836134e+02, 9.98836134e+02, 9.98836134e+02, 9.98836134e+02,
9.97287686e+02, 9.97287686e+02, 9.97287686e+02, 9.97287686e+02,
9.94109332e+02, 9.94109332e+02, 9.94109332e+02, 9.94109332e+02,
9.88106008e+02, 9.88106008e+02, 9.88106008e+02, 9.88106008e+02,
9.77708597e+02, 9.77708597e+02, 9.77708597e+02, 9.77708597e+02,
9.61228130e+02, 9.61228130e+02, 9.61228130e+02, 9.61228130e+02,
9.37305407e+02, 9.37305407e+02, 9.37305407e+02, 9.37305407e+02,
9.05376194e+02, 9.05376194e+02, 9.05376194e+02, 9.05376194e+02,
8.65887823e+02, 8.65887823e+02, 8.65887823e+02, 8.65887823e+02,
8.20109819e+02, 8.20109819e+02, 8.20109819e+02, 8.20109819e+02,
7.69583036e+02, 7.69583036e+02, 7.69583036e+02, 7.69583036e+02,
7.16430551e+02, 7.16430551e+02, 7.16430551e+02, 7.16430551e+02,
6.66223949e+02, 6.66223949e+02, 6.66223949e+02, 6.66223949e+02,
6.21173301e+02, 6.21173301e+02, 6.21173301e+02, 6.21173301e+02,
5.81155829e+02, 5.81155829e+02, 5.81155829e+02, 5.81155829e+02,
5.46599575e+02, 5.46599575e+02, 5.46599575e+02, 5.46599575e+02,
5.18131035e+02, 5.18131035e+02, 5.18131035e+02, 5.18131035e+02,
4.96195244e+02, 4.96195244e+02, 4.96195244e+02, 4.96195244e+02,
4.81181444e+02, 4.81181444e+02, 4.81181444e+02, 4.81181444e+02,
4.71808248e+02, 4.71808248e+02, 4.71808248e+02, 4.71808248e+02,
4.67742557e+02, 4.67742557e+02, 4.67742557e+02, 4.67742557e+02,
4.65569109e+02, 4.65569109e+02, 4.65569109e+02, 4.65569109e+02,
4.65186953e+02, 4.65186953e+02, 4.65186953e+02, 4.65186953e+02,
4.64818182e+02, 4.64818182e+02, 4.64818182e+02, 4.64818182e+02,
4.63748697e+02, 4.63748697e+02, 4.63748697e+02, 4.63748697e+02,
4.60625400e+02, 4.60625400e+02, 4.60625400e+02, 4.60625400e+02,
4.56453004e+02, 4.56453004e+02, 4.56453004e+02, 4.56453004e+02,
4.54485814e+02, 4.54485814e+02, 4.54485814e+02, 4.54485814e+02,
4.54025030e+02, 4.54025030e+02, 4.54025030e+02, 4.54025030e+02,
4.54666768e+02, 4.54666768e+02, 4.54666768e+02, 4.54666768e+02,
4.57364563e+02, 4.57364563e+02, 4.57364563e+02, 4.57364563e+02,
4.63513392e+02, 4.63513392e+02, 4.63513392e+02, 4.63513392e+02,
3.92058603e+02, 3.92058603e+02, 3.92058603e+02, 3.92058603e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999985, 0.99999985,
0.99999985, 0.99999985, 0.99999944, 0.99999944, 0.99999944,
0.99999944, 0.99999808, 0.99999808, 0.99999808, 0.99999808,
0.99999374, 0.99999374, 0.99999374, 0.99999374, 0.99998068,
0.99998068, 0.99998068, 0.99998068, 0.99994372, 0.99994372,
0.99994372, 0.99994372, 0.99984542, 0.99984542, 0.99984542,
0.99984542, 0.99960058, 0.99960058, 0.99960058, 0.99960058,
0.99903135, 0.99903135, 0.99903135, 0.99903135, 0.99780084,
0.99780084, 0.99780084, 0.99780084, 0.99533744, 0.99533744,
0.99533744, 0.99533744, 0.99078751, 0.99078751, 0.99078751,
0.99078751, 0.98305618, 0.98305618, 0.98305618, 0.98305618,
0.97098376, 0.97098376, 0.97098376, 0.97098376, 0.9536365 ,
0.9536365 , 0.9536365 , 0.9536365 , 0.93059345, 0.93059345,
0.93059345, 0.93059345, 0.90207179, 0.90207179, 0.90207179,
0.90207179, 0.86880396, 0.86880396, 0.86880396, 0.86880396,
0.83171985, 0.83171985, 0.83171985, 0.83171985, 0.79203515,
0.79203515, 0.79203515, 0.79203515, 0.7533453 , 0.7533453 ,
0.7533453 , 0.7533453 , 0.71768018, 0.71768018, 0.71768018,
0.71768018, 0.6850616 , 0.6850616 , 0.6850616 , 0.6850616 ,
0.65597209, 0.65597209, 0.65597209, 0.65597209, 0.63103729,
0.63103729, 0.63103729, 0.63103729, 0.61099977, 0.61099977,
0.61099977, 0.61099977, 0.59617655, 0.59617655, 0.59617655,
0.59617655, 0.58676144, 0.58676144, 0.58676144, 0.58676144,
0.58122289, 0.58122289, 0.58122289, 0.58122289, 0.57914956,
0.57914956, 0.57914956, 0.57914956, 0.57788872, 0.57788872,
0.57788872, 0.57788872, 0.57727667, 0.57727667, 0.57727667,
0.57727667, 0.57646173, 0.57646173, 0.57646173, 0.57646173,
0.57419256, 0.57419256, 0.57419256, 0.57419256, 0.56967625,
0.56967625, 0.56967625, 0.56967625, 0.56515937, 0.56515937,
0.56515937, 0.56515937, 0.56171673, 0.56171673, 0.56171673,
0.56171673, 0.56096013, 0.56096013, 0.56096013, 0.56096013,
0.57428334, 0.57428334, 0.57428334, 0.57428334, 0.7451832 ,
0.7451832 , 0.7451832 , 0.7451832 , 4.92344734, 4.92344734,
4.92344734, 4.92344734, 5.54443902, 5.54443902, 5.54443902,
5.54443902, 1.03668904, 1.03668904, 1.03668904, 1.03668904,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744991, -19.59744991, -19.59744991, -19.59744991,
-19.59744962, -19.59744962, -19.59744962, -19.59744962,
-19.59744849, -19.59744849, -19.59744849, -19.59744849,
-19.59744424, -19.59744424, -19.59744424, -19.59744424,
-19.5974291 , -19.5974291 , -19.5974291 , -19.5974291 ,
-19.59737809, -19.59737809, -19.59737809, -19.59737809,
-19.59721561, -19.59721561, -19.59721561, -19.59721561,
-19.59672713, -19.59672713, -19.59672713, -19.59672713,
-19.59534416, -19.59534416, -19.59534416, -19.59534416,
-19.59166604, -19.59166604, -19.59166604, -19.59166604,
-19.58250357, -19.58250357, -19.58250357, -19.58250357,
-19.56119668, -19.56119668, -19.56119668, -19.56119668,
-19.51511105, -19.51511105, -19.51511105, -19.51511105,
-19.42273472, -19.42273472, -19.42273472, -19.42273472,
-19.251683 , -19.251683 , -19.251683 , -19.251683 ,
-18.95967279, -18.95967279, -18.95967279, -18.95967279,
-18.50011506, -18.50011506, -18.50011506, -18.50011506,
-17.83172671, -17.83172671, -17.83172671, -17.83172671,
-16.92849548, -16.92849548, -16.92849548, -16.92849548,
-15.78491275, -15.78491275, -15.78491275, -15.78491275,
-14.41313248, -14.41313248, -14.41313248, -14.41313248,
-12.83150634, -12.83150634, -12.83150634, -12.83150634,
-11.07369836, -11.07369836, -11.07369836, -11.07369836,
-9.31046166, -9.31046166, -9.31046166, -9.31046166,
-7.60499608, -7.60499608, -7.60499608, -7.60499608,
-5.98738913, -5.98738913, -5.98738913, -5.98738913,
-4.49180344, -4.49180344, -4.49180344, -4.49180344,
-3.16917603, -3.16917603, -3.16917603, -3.16917603,
-2.07337458, -2.07337458, -2.07337458, -2.07337458,
-1.25572681, -1.25572681, -1.25572681, -1.25572681,
-0.7068368 , -0.7068368 , -0.7068368 , -0.7068368 ,
-0.42441014, -0.42441014, -0.42441014, -0.42441014,
-0.27338143, -0.27338143, -0.27338143, -0.27338143,
-0.23810574, -0.23810574, -0.23810574, -0.23810574,
-0.20742784, -0.20742784, -0.20742784, -0.20742784,
-0.16323872, -0.16323872, -0.16323872, -0.16323872,
-0.05173445, -0.05173445, -0.05173445, -0.05173445,
0.15602623, 0.15602623, 0.15602623, 0.15602623,
0.29414628, 0.29414628, 0.29414628, 0.29414628,
0.34985691, 0.34985691, 0.34985691, 0.34985691,
0.34552838, 0.34552838, 0.34552838, 0.34552838,
0.24827772, 0.24827772, 0.24827772, 0.24827772,
0.09253274, 0.09253274, 0.09253274, 0.09253274,
0.04840488, 0.04840488, 0.04840488, 0.04840488,
-1.4699531 , -1.4699531 , -1.4699531 , -1.4699531 ,
-18.88215158, -18.88215158, -18.88215158, -18.88215158,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999986e+02, 9.99999986e+02, 9.99999986e+02, 9.99999986e+02,
9.99999944e+02, 9.99999944e+02, 9.99999944e+02, 9.99999944e+02,
9.99999784e+02, 9.99999784e+02, 9.99999784e+02, 9.99999784e+02,
9.99999218e+02, 9.99999218e+02, 9.99999218e+02, 9.99999218e+02,
9.99997309e+02, 9.99997309e+02, 9.99997309e+02, 9.99997309e+02,
9.99991230e+02, 9.99991230e+02, 9.99991230e+02, 9.99991230e+02,
9.99972953e+02, 9.99972953e+02, 9.99972953e+02, 9.99972953e+02,
9.99921209e+02, 9.99921209e+02, 9.99921209e+02, 9.99921209e+02,
9.99783604e+02, 9.99783604e+02, 9.99783604e+02, 9.99783604e+02,
9.99440890e+02, 9.99440890e+02, 9.99440890e+02, 9.99440890e+02,
9.98644316e+02, 9.98644316e+02, 9.98644316e+02, 9.98644316e+02,
9.96923244e+02, 9.96923244e+02, 9.96923244e+02, 9.96923244e+02,
9.93481167e+02, 9.93481167e+02, 9.93481167e+02, 9.93481167e+02,
9.87134721e+02, 9.87134721e+02, 9.87134721e+02, 9.87134721e+02,
9.76381734e+02, 9.76381734e+02, 9.76381734e+02, 9.76381734e+02,
9.59665158e+02, 9.59665158e+02, 9.59665158e+02, 9.59665158e+02,
9.35796522e+02, 9.35796522e+02, 9.35796522e+02, 9.35796522e+02,
9.04361456e+02, 9.04361456e+02, 9.04361456e+02, 9.04361456e+02,
8.65877146e+02, 8.65877146e+02, 8.65877146e+02, 8.65877146e+02,
8.21587440e+02, 8.21587440e+02, 8.21587440e+02, 8.21587440e+02,
7.72959478e+02, 7.72959478e+02, 7.72959478e+02, 7.72959478e+02,
7.21780593e+02, 7.21780593e+02, 7.21780593e+02, 7.21780593e+02,
6.72972279e+02, 6.72972279e+02, 6.72972279e+02, 6.72972279e+02,
6.28869375e+02, 6.28869375e+02, 6.28869375e+02, 6.28869375e+02,
5.89301495e+02, 5.89301495e+02, 5.89301495e+02, 5.89301495e+02,
5.54659058e+02, 5.54659058e+02, 5.54659058e+02, 5.54659058e+02,
5.25470740e+02, 5.25470740e+02, 5.25470740e+02, 5.25470740e+02,
5.02361432e+02, 5.02361432e+02, 5.02361432e+02, 5.02361432e+02,
4.85480560e+02, 4.85480560e+02, 4.85480560e+02, 4.85480560e+02,
4.74893544e+02, 4.74893544e+02, 4.74893544e+02, 4.74893544e+02,
4.68756735e+02, 4.68756735e+02, 4.68756735e+02, 4.68756735e+02,
4.66559010e+02, 4.66559010e+02, 4.66559010e+02, 4.66559010e+02,
4.65288869e+02, 4.65288869e+02, 4.65288869e+02, 4.65288869e+02,
4.64772037e+02, 4.64772037e+02, 4.64772037e+02, 4.64772037e+02,
4.64098592e+02, 4.64098592e+02, 4.64098592e+02, 4.64098592e+02,
4.62022815e+02, 4.62022815e+02, 4.62022815e+02, 4.62022815e+02,
4.57930558e+02, 4.57930558e+02, 4.57930558e+02, 4.57930558e+02,
4.54992894e+02, 4.54992894e+02, 4.54992894e+02, 4.54992894e+02,
4.54194262e+02, 4.54194262e+02, 4.54194262e+02, 4.54194262e+02,
4.54422763e+02, 4.54422763e+02, 4.54422763e+02, 4.54422763e+02,
4.56256877e+02, 4.56256877e+02, 4.56256877e+02, 4.56256877e+02,
4.59141920e+02, 4.59141920e+02, 4.59141920e+02, 4.59141920e+02,
4.65891529e+02, 4.65891529e+02, 4.65891529e+02, 4.65891529e+02,
4.18365297e+02, 4.18365297e+02, 4.18365297e+02, 4.18365297e+02,
5.12475122e+00, 5.12475122e+00, 5.12475122e+00, 5.12475122e+00,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999994, 0.99999994, 0.99999994, 0.99999994, 0.99999977,
0.99999977, 0.99999977, 0.99999977, 0.9999992 , 0.9999992 ,
0.9999992 , 0.9999992 , 0.99999735, 0.99999735, 0.99999735,
0.99999735, 0.99999164, 0.99999164, 0.99999164, 0.99999164,
0.99997502, 0.99997502, 0.99997502, 0.99997502, 0.99992943,
0.99992943, 0.99992943, 0.99992943, 0.99981174, 0.99981174,
0.99981174, 0.99981174, 0.99952686, 0.99952686, 0.99952686,
0.99952686, 0.99888237, 0.99888237, 0.99888237, 0.99888237,
0.99752477, 0.99752477, 0.99752477, 0.99752477, 0.99487232,
0.99487232, 0.99487232, 0.99487232, 0.99008261, 0.99008261,
0.99008261, 0.99008261, 0.98210912, 0.98210912, 0.98210912,
0.98210912, 0.96988221, 0.96988221, 0.96988221, 0.96988221,
0.95258192, 0.95258192, 0.95258192, 0.95258192, 0.92988797,
0.92988797, 0.92988797, 0.92988797, 0.90206987, 0.90206987,
0.90206987, 0.90206987, 0.8698544 , 0.8698544 , 0.8698544 ,
0.8698544 , 0.83413065, 0.83413065, 0.83413065, 0.83413065,
0.79594485, 0.79594485, 0.79594485, 0.79594485, 0.75844031,
0.75844031, 0.75844031, 0.75844031, 0.72364822, 0.72364822,
0.72364822, 0.72364822, 0.69158842, 0.69158842, 0.69158842,
0.69158842, 0.66264934, 0.66264934, 0.66264934, 0.66264934,
0.63741371, 0.63741371, 0.63741371, 0.63741371, 0.61652579,
0.61652579, 0.61652579, 0.61652579, 0.60060459, 0.60060459,
0.60060459, 0.60060459, 0.58955963, 0.58955963, 0.58955963,
0.58955963, 0.58323093, 0.58323093, 0.58323093, 0.58323093,
0.57971575, 0.57971575, 0.57971575, 0.57971575, 0.57853261,
0.57853261, 0.57853261, 0.57853261, 0.5776235 , 0.5776235 ,
0.5776235 , 0.5776235 , 0.57679716, 0.57679716, 0.57679716,
0.57679716, 0.57528483, 0.57528483, 0.57528483, 0.57528483,
0.57185478, 0.57185478, 0.57185478, 0.57185478, 0.56806429,
0.56806429, 0.56806429, 0.56806429, 0.56470465, 0.56470465,
0.56470465, 0.56470465, 0.56183268, 0.56183268, 0.56183268,
0.56183268, 0.56175025, 0.56175025, 0.56175025, 0.56175025,
0.5759848 , 0.5759848 , 0.5759848 , 0.5759848 , 0.74891143,
0.74891143, 0.74891143, 0.74891143, 4.93884917, 4.93884917,
4.93884917, 4.93884917, 5.66590098, 5.66590098, 5.66590098,
5.66590098, 1.27347817, 1.27347817, 1.27347817, 1.27347817,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974494e+01, -1.95974494e+01, -1.95974494e+01, -1.95974494e+01,
-1.95974477e+01, -1.95974477e+01, -1.95974477e+01, -1.95974477e+01,
-1.95974415e+01, -1.95974415e+01, -1.95974415e+01, -1.95974415e+01,
-1.95974201e+01, -1.95974201e+01, -1.95974201e+01, -1.95974201e+01,
-1.95973508e+01, -1.95973508e+01, -1.95973508e+01, -1.95973508e+01,
-1.95971372e+01, -1.95971372e+01, -1.95971372e+01, -1.95971372e+01,
-1.95965155e+01, -1.95965155e+01, -1.95965155e+01, -1.95965155e+01,
-1.95948095e+01, -1.95948095e+01, -1.95948095e+01, -1.95948095e+01,
-1.95904057e+01, -1.95904057e+01, -1.95904057e+01, -1.95904057e+01,
-1.95797446e+01, -1.95797446e+01, -1.95797446e+01, -1.95797446e+01,
-1.95556189e+01, -1.95556189e+01, -1.95556189e+01, -1.95556189e+01,
-1.95047656e+01, -1.95047656e+01, -1.95047656e+01, -1.95047656e+01,
-1.94052717e+01, -1.94052717e+01, -1.94052717e+01, -1.94052717e+01,
-1.92251204e+01, -1.92251204e+01, -1.92251204e+01, -1.92251204e+01,
-1.89237547e+01, -1.89237547e+01, -1.89237547e+01, -1.89237547e+01,
-1.84578960e+01, -1.84578960e+01, -1.84578960e+01, -1.84578960e+01,
-1.77906570e+01, -1.77906570e+01, -1.77906570e+01, -1.77906570e+01,
-1.69003509e+01, -1.69003509e+01, -1.69003509e+01, -1.69003509e+01,
-1.57845359e+01, -1.57845359e+01, -1.57845359e+01, -1.57845359e+01,
-1.44567240e+01, -1.44567240e+01, -1.44567240e+01, -1.44567240e+01,
-1.29357405e+01, -1.29357405e+01, -1.29357405e+01, -1.29357405e+01,
-1.12493994e+01, -1.12493994e+01, -1.12493994e+01, -1.12493994e+01,
-9.54671305e+00, -9.54671305e+00, -9.54671305e+00, -9.54671305e+00,
-7.89350141e+00, -7.89350141e+00, -7.89350141e+00, -7.89350141e+00,
-6.31429754e+00, -6.31429754e+00, -6.31429754e+00, -6.31429754e+00,
-4.83839512e+00, -4.83839512e+00, -4.83839512e+00, -4.83839512e+00,
-3.50859895e+00, -3.50859895e+00, -3.50859895e+00, -3.50859895e+00,
-2.37834278e+00, -2.37834278e+00, -2.37834278e+00, -2.37834278e+00,
-1.49153448e+00, -1.49153448e+00, -1.49153448e+00, -1.49153448e+00,
-8.81150155e-01, -8.81150155e-01, -8.81150155e-01, -8.81150155e-01,
-5.03007927e-01, -5.03007927e-01, -5.03007927e-01, -5.03007927e-01,
-3.35564422e-01, -3.35564422e-01, -3.35564422e-01, -3.35564422e-01,
-2.44374177e-01, -2.44374177e-01, -2.44374177e-01, -2.44374177e-01,
-2.13624834e-01, -2.13624834e-01, -2.13624834e-01, -2.13624834e-01,
-1.79605715e-01, -1.79605715e-01, -1.79605715e-01, -1.79605715e-01,
-1.01292744e-01, -1.01292744e-01, -1.01292744e-01, -1.01292744e-01,
8.17207680e-02, 8.17207680e-02, 8.17207680e-02, 8.17207680e-02,
2.58649244e-01, 2.58649244e-01, 2.58649244e-01, 2.58649244e-01,
3.25934462e-01, 3.25934462e-01, 3.25934462e-01, 3.25934462e-01,
3.39498005e-01, 3.39498005e-01, 3.39498005e-01, 3.39498005e-01,
2.91982036e-01, 2.91982036e-01, 2.91982036e-01, 2.91982036e-01,
1.45463974e-01, 1.45463974e-01, 1.45463974e-01, 1.45463974e-01,
1.49557604e-03, 1.49557604e-03, 1.49557604e-03, 1.49557604e-03,
-7.12752738e-03, -7.12752738e-03, -7.12752738e-03, -7.12752738e-03,
-1.14206431e+00, -1.14206431e+00, -1.14206431e+00, -1.14206431e+00,
-1.52900050e+01, -1.52900050e+01, -1.52900050e+01, -1.52900050e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999978e+02, 9.99999978e+02, 9.99999978e+02, 9.99999978e+02,
9.99999913e+02, 9.99999913e+02, 9.99999913e+02, 9.99999913e+02,
9.99999681e+02, 9.99999681e+02, 9.99999681e+02, 9.99999681e+02,
9.99998883e+02, 9.99998883e+02, 9.99998883e+02, 9.99998883e+02,
9.99996287e+02, 9.99996287e+02, 9.99996287e+02, 9.99996287e+02,
9.99988295e+02, 9.99988295e+02, 9.99988295e+02, 9.99988295e+02,
9.99965035e+02, 9.99965035e+02, 9.99965035e+02, 9.99965035e+02,
9.99901205e+02, 9.99901205e+02, 9.99901205e+02, 9.99901205e+02,
9.99736456e+02, 9.99736456e+02, 9.99736456e+02, 9.99736456e+02,
9.99337713e+02, 9.99337713e+02, 9.99337713e+02, 9.99337713e+02,
9.98435876e+02, 9.98435876e+02, 9.98435876e+02, 9.98435876e+02,
9.96537247e+02, 9.96537247e+02, 9.96537247e+02, 9.96537247e+02,
9.92831630e+02, 9.92831630e+02, 9.92831630e+02, 9.92831630e+02,
9.86152355e+02, 9.86152355e+02, 9.86152355e+02, 9.86152355e+02,
9.75066144e+02, 9.75066144e+02, 9.75066144e+02, 9.75066144e+02,
9.58141907e+02, 9.58141907e+02, 9.58141907e+02, 9.58141907e+02,
9.34346468e+02, 9.34346468e+02, 9.34346468e+02, 9.34346468e+02,
9.03395524e+02, 9.03395524e+02, 9.03395524e+02, 9.03395524e+02,
8.65861385e+02, 8.65861385e+02, 8.65861385e+02, 8.65861385e+02,
8.22957333e+02, 8.22957333e+02, 8.22957333e+02, 8.22957333e+02,
7.76073993e+02, 7.76073993e+02, 7.76073993e+02, 7.76073993e+02,
7.26756358e+02, 7.26756358e+02, 7.26756358e+02, 7.26756358e+02,
6.79318181e+02, 6.79318181e+02, 6.79318181e+02, 6.79318181e+02,
6.36159247e+02, 6.36159247e+02, 6.36159247e+02, 6.36159247e+02,
5.97127968e+02, 5.97127968e+02, 5.97127968e+02, 5.97127968e+02,
5.62520663e+02, 5.62520663e+02, 5.62520663e+02, 5.62520663e+02,
5.32846267e+02, 5.32846267e+02, 5.32846267e+02, 5.32846267e+02,
5.08656450e+02, 5.08656450e+02, 5.08656450e+02, 5.08656450e+02,
4.90453284e+02, 4.90453284e+02, 4.90453284e+02, 4.90453284e+02,
4.77962657e+02, 4.77962657e+02, 4.77962657e+02, 4.77962657e+02,
4.70901728e+02, 4.70901728e+02, 4.70901728e+02, 4.70901728e+02,
4.67057305e+02, 4.67057305e+02, 4.67057305e+02, 4.67057305e+02,
4.65864101e+02, 4.65864101e+02, 4.65864101e+02, 4.65864101e+02,
4.64990688e+02, 4.64990688e+02, 4.64990688e+02, 4.64990688e+02,
4.64232471e+02, 4.64232471e+02, 4.64232471e+02, 4.64232471e+02,
4.62773942e+02, 4.62773942e+02, 4.62773942e+02, 4.62773942e+02,
4.59392911e+02, 4.59392911e+02, 4.59392911e+02, 4.59392911e+02,
4.56109899e+02, 4.56109899e+02, 4.56109899e+02, 4.56109899e+02,
4.54464219e+02, 4.54464219e+02, 4.54464219e+02, 4.54464219e+02,
4.54313380e+02, 4.54313380e+02, 4.54313380e+02, 4.54313380e+02,
4.55313392e+02, 4.55313392e+02, 4.55313392e+02, 4.55313392e+02,
4.58230030e+02, 4.58230030e+02, 4.58230030e+02, 4.58230030e+02,
4.60740057e+02, 4.60740057e+02, 4.60740057e+02, 4.60740057e+02,
4.67566587e+02, 4.67566587e+02, 4.67566587e+02, 4.67566587e+02,
4.31360769e+02, 4.31360769e+02, 4.31360769e+02, 4.31360769e+02,
3.42890427e+01, 3.42890427e+01, 3.42890427e+01, 3.42890427e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999967, 0.99999967, 0.99999967, 0.99999967, 0.99999888,
0.99999888, 0.99999888, 0.99999888, 0.99999641, 0.99999641,
0.99999641, 0.99999641, 0.99998904, 0.99998904, 0.99998904,
0.99998904, 0.99996821, 0.99996821, 0.99996821, 0.99996821,
0.99991271, 0.99991271, 0.99991271, 0.99991271, 0.99977342,
0.99977342, 0.99977342, 0.99977342, 0.9994452 , 0.9994452 ,
0.9994452 , 0.9994452 , 0.99872149, 0.99872149, 0.99872149,
0.99872149, 0.99723373, 0.99723373, 0.99723373, 0.99723373,
0.99439289, 0.99439289, 0.99439289, 0.99439289, 0.9893709 ,
0.9893709 , 0.9893709 , 0.9893709 , 0.98117054, 0.98117054,
0.98117054, 0.98117054, 0.96880792, 0.96880792, 0.96880792,
0.96880792, 0.95156679, 0.95156679, 0.95156679, 0.95156679,
0.92921472, 0.92921472, 0.92921472, 0.92921472, 0.90206335,
0.90206335, 0.90206335, 0.90206335, 0.87082942, 0.87082942,
0.87082942, 0.87082942, 0.83635999, 0.83635999, 0.83635999,
0.83635999, 0.79958445, 0.79958445, 0.79958445, 0.79958445,
0.76320845, 0.76320845, 0.76320845, 0.76320845, 0.72928639,
0.72928639, 0.72928639, 0.72928639, 0.69781444, 0.69781444,
0.69781444, 0.69781444, 0.66912302, 0.66912302, 0.66912302,
0.66912302, 0.64370616, 0.64370616, 0.64370616, 0.64370616,
0.6222069 , 0.6222069 , 0.6222069 , 0.6222069 , 0.60517495,
0.60517495, 0.60517495, 0.60517495, 0.59300247, 0.59300247,
0.59300247, 0.59300247, 0.58513219, 0.58513219, 0.58513219,
0.58513219, 0.58110197, 0.58110197, 0.58110197, 0.58110197,
0.57888883, 0.57888883, 0.57888883, 0.57888883, 0.57804355,
0.57804355, 0.57804355, 0.57804355, 0.57721529, 0.57721529,
0.57721529, 0.57721529, 0.57599771, 0.57599771, 0.57599771,
0.57599771, 0.57339499, 0.57339499, 0.57339499, 0.57339499,
0.56977182, 0.56977182, 0.56977182, 0.56977182, 0.56723157,
0.56723157, 0.56723157, 0.56723157, 0.56473558, 0.56473558,
0.56473558, 0.56473558, 0.56229282, 0.56229282, 0.56229282,
0.56229282, 0.56318072, 0.56318072, 0.56318072, 0.56318072,
0.57767617, 0.57767617, 0.57767617, 0.57767617, 0.75745676,
0.75745676, 0.75745676, 0.75745676, 4.94626224, 4.94626224,
4.94626224, 4.94626224, 5.70365604, 5.70365604, 5.70365604,
5.70365604, 1.59603937, 1.59603937, 1.59603937, 1.59603937,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974491e+01, -1.95974491e+01, -1.95974491e+01, -1.95974491e+01,
-1.95974465e+01, -1.95974465e+01, -1.95974465e+01, -1.95974465e+01,
-1.95974377e+01, -1.95974377e+01, -1.95974377e+01, -1.95974377e+01,
-1.95974083e+01, -1.95974083e+01, -1.95974083e+01, -1.95974083e+01,
-1.95973158e+01, -1.95973158e+01, -1.95973158e+01, -1.95973158e+01,
-1.95970397e+01, -1.95970397e+01, -1.95970397e+01, -1.95970397e+01,
-1.95962605e+01, -1.95962605e+01, -1.95962605e+01, -1.95962605e+01,
-1.95941839e+01, -1.95941839e+01, -1.95941839e+01, -1.95941839e+01,
-1.95889717e+01, -1.95889717e+01, -1.95889717e+01, -1.95889717e+01,
-1.95766882e+01, -1.95766882e+01, -1.95766882e+01, -1.95766882e+01,
-1.95495946e+01, -1.95495946e+01, -1.95495946e+01, -1.95495946e+01,
-1.94938567e+01, -1.94938567e+01, -1.94938567e+01, -1.94938567e+01,
-1.93872645e+01, -1.93872645e+01, -1.93872645e+01, -1.93872645e+01,
-1.91982859e+01, -1.91982859e+01, -1.91982859e+01, -1.91982859e+01,
-1.88881287e+01, -1.88881287e+01, -1.88881287e+01, -1.88881287e+01,
-1.84166819e+01, -1.84166819e+01, -1.84166819e+01, -1.84166819e+01,
-1.77510879e+01, -1.77510879e+01, -1.77510879e+01, -1.77510879e+01,
-1.68734808e+01, -1.68734808e+01, -1.68734808e+01, -1.68734808e+01,
-1.57840020e+01, -1.57840020e+01, -1.57840020e+01, -1.57840020e+01,
-1.44971612e+01, -1.44971612e+01, -1.44971612e+01, -1.44971612e+01,
-1.30320182e+01, -1.30320182e+01, -1.30320182e+01, -1.30320182e+01,
-1.14121779e+01, -1.14121779e+01, -1.14121779e+01, -1.14121779e+01,
-9.76721197e+00, -9.76721197e+00, -9.76721197e+00, -9.76721197e+00,
-8.16411172e+00, -8.16411172e+00, -8.16411172e+00, -8.16411172e+00,
-6.62422222e+00, -6.62422222e+00, -6.62422222e+00, -6.62422222e+00,
-5.17120266e+00, -5.17120266e+00, -5.17120266e+00, -5.17120266e+00,
-3.84277734e+00, -3.84277734e+00, -3.84277734e+00, -3.84277734e+00,
-2.68552665e+00, -2.68552665e+00, -2.68552665e+00, -2.68552665e+00,
-1.74959038e+00, -1.74959038e+00, -1.74959038e+00, -1.74959038e+00,
-1.06046860e+00, -1.06046860e+00, -1.06046860e+00, -1.06046860e+00,
-6.28540492e-01, -6.28540492e-01, -6.28540492e-01, -6.28540492e-01,
-3.80399014e-01, -3.80399014e-01, -3.80399014e-01, -3.80399014e-01,
-2.84130885e-01, -2.84130885e-01, -2.84130885e-01, -2.84130885e-01,
-2.23268367e-01, -2.23268367e-01, -2.23268367e-01, -2.23268367e-01,
-1.84588285e-01, -1.84588285e-01, -1.84588285e-01, -1.84588285e-01,
-1.29141084e-01, -1.29141084e-01, -1.29141084e-01, -1.29141084e-01,
6.83486785e-03, 6.83486785e-03, 6.83486785e-03, 6.83486785e-03,
1.97766665e-01, 1.97766665e-01, 1.97766665e-01, 1.97766665e-01,
3.09999709e-01, 3.09999709e-01, 3.09999709e-01, 3.09999709e-01,
3.31130840e-01, 3.31130840e-01, 3.31130840e-01, 3.31130840e-01,
3.11345179e-01, 3.11345179e-01, 3.11345179e-01, 3.11345179e-01,
2.02708054e-01, 2.02708054e-01, 2.02708054e-01, 2.02708054e-01,
4.65881958e-02, 4.65881958e-02, 4.65881958e-02, 4.65881958e-02,
-7.39224859e-02, -7.39224859e-02, -7.39224859e-02, -7.39224859e-02,
-4.98197741e-02, -4.98197741e-02, -4.98197741e-02, -4.98197741e-02,
-7.95118272e-01, -7.95118272e-01, -7.95118272e-01, -7.95118272e-01,
-1.23208546e+01, -1.23208546e+01, -1.23208546e+01, -1.23208546e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999965e+02, 9.99999965e+02, 9.99999965e+02, 9.99999965e+02,
9.99999870e+02, 9.99999870e+02, 9.99999870e+02, 9.99999870e+02,
9.99999538e+02, 9.99999538e+02, 9.99999538e+02, 9.99999538e+02,
9.99998439e+02, 9.99998439e+02, 9.99998439e+02, 9.99998439e+02,
9.99994977e+02, 9.99994977e+02, 9.99994977e+02, 9.99994977e+02,
9.99984649e+02, 9.99984649e+02, 9.99984649e+02, 9.99984649e+02,
9.99955495e+02, 9.99955495e+02, 9.99955495e+02, 9.99955495e+02,
9.99877798e+02, 9.99877798e+02, 9.99877798e+02, 9.99877798e+02,
9.99682814e+02, 9.99682814e+02, 9.99682814e+02, 9.99682814e+02,
9.99223425e+02, 9.99223425e+02, 9.99223425e+02, 9.99223425e+02,
9.98210796e+02, 9.98210796e+02, 9.98210796e+02, 9.98210796e+02,
9.96130367e+02, 9.96130367e+02, 9.96130367e+02, 9.96130367e+02,
9.92162242e+02, 9.92162242e+02, 9.92162242e+02, 9.92162242e+02,
9.85160792e+02, 9.85160792e+02, 9.85160792e+02, 9.85160792e+02,
9.73762768e+02, 9.73762768e+02, 9.73762768e+02, 9.73762768e+02,
9.56656908e+02, 9.56656908e+02, 9.56656908e+02, 9.56656908e+02,
9.32951170e+02, 9.32951170e+02, 9.32951170e+02, 9.32951170e+02,
9.02474070e+02, 9.02474070e+02, 9.02474070e+02, 9.02474070e+02,
8.65840584e+02, 8.65840584e+02, 8.65840584e+02, 8.65840584e+02,
8.24230005e+02, 8.24230005e+02, 8.24230005e+02, 8.24230005e+02,
7.78960946e+02, 7.78960946e+02, 7.78960946e+02, 7.78960946e+02,
7.31389568e+02, 7.31389568e+02, 7.31389568e+02, 7.31389568e+02,
6.85282099e+02, 6.85282099e+02, 6.85282099e+02, 6.85282099e+02,
6.43071666e+02, 6.43071666e+02, 6.43071666e+02, 6.43071666e+02,
6.04622306e+02, 6.04622306e+02, 6.04622306e+02, 6.04622306e+02,
5.70179058e+02, 5.70179058e+02, 5.70179058e+02, 5.70179058e+02,
5.40165336e+02, 5.40165336e+02, 5.40165336e+02, 5.40165336e+02,
5.15159492e+02, 5.15159492e+02, 5.15159492e+02, 5.15159492e+02,
4.95611984e+02, 4.95611984e+02, 4.95611984e+02, 4.95611984e+02,
4.81794631e+02, 4.81794631e+02, 4.81794631e+02, 4.81794631e+02,
4.72949862e+02, 4.72949862e+02, 4.72949862e+02, 4.72949862e+02,
4.68498842e+02, 4.68498842e+02, 4.68498842e+02, 4.68498842e+02,
4.66125758e+02, 4.66125758e+02, 4.66125758e+02, 4.66125758e+02,
4.65313538e+02, 4.65313538e+02, 4.65313538e+02, 4.65313538e+02,
4.64531340e+02, 4.64531340e+02, 4.64531340e+02, 4.64531340e+02,
4.63332769e+02, 4.63332769e+02, 4.63332769e+02, 4.63332769e+02,
4.60648627e+02, 4.60648627e+02, 4.60648627e+02, 4.60648627e+02,
4.57050259e+02, 4.57050259e+02, 4.57050259e+02, 4.57050259e+02,
4.55164938e+02, 4.55164938e+02, 4.55164938e+02, 4.55164938e+02,
4.54482635e+02, 4.54482635e+02, 4.54482635e+02, 4.54482635e+02,
4.54824233e+02, 4.54824233e+02, 4.54824233e+02, 4.54824233e+02,
4.56931029e+02, 4.56931029e+02, 4.56931029e+02, 4.56931029e+02,
4.60138981e+02, 4.60138981e+02, 4.60138981e+02, 4.60138981e+02,
4.61981491e+02, 4.61981491e+02, 4.61981491e+02, 4.61981491e+02,
4.68140685e+02, 4.68140685e+02, 4.68140685e+02, 4.68140685e+02,
4.36428727e+02, 4.36428727e+02, 4.36428727e+02, 4.36428727e+02,
6.81746616e+01, 6.81746616e+01, 6.81746616e+01, 6.81746616e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999996, 0.99999996,
0.99999996, 0.99999996, 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999953, 0.99999953, 0.99999953, 0.99999953,
0.99999847, 0.99999847, 0.99999847, 0.99999847, 0.99999523,
0.99999523, 0.99999523, 0.99999523, 0.99998585, 0.99998585,
0.99998585, 0.99998585, 0.9999601 , 0.9999601 , 0.9999601 ,
0.9999601 , 0.99989335, 0.99989335, 0.99989335, 0.99989335,
0.9997302 , 0.9997302 , 0.9997302 , 0.9997302 , 0.99935538,
0.99935538, 0.99935538, 0.99935538, 0.99854873, 0.99854873,
0.99854873, 0.99854873, 0.99692822, 0.99692822, 0.99692822,
0.99692822, 0.99390018, 0.99390018, 0.99390018, 0.99390018,
0.98865363, 0.98865363, 0.98865363, 0.98865363, 0.98024099,
0.98024099, 0.98024099, 0.98024099, 0.96775988, 0.96775988,
0.96775988, 0.96775988, 0.95058848, 0.95058848, 0.95058848,
0.95058848, 0.92857093, 0.92857093, 0.92857093, 0.92857093,
0.90205249, 0.90205249, 0.90205249, 0.90205249, 0.87173692,
0.87173692, 0.87173692, 0.87173692, 0.83843181, 0.83843181,
0.83843181, 0.83843181, 0.80297224, 0.80297224, 0.80297224,
0.80297224, 0.76768315, 0.76768315, 0.76768315, 0.76768315,
0.73460513, 0.73460513, 0.73460513, 0.73460513, 0.70375228,
0.70375228, 0.70375228, 0.70375228, 0.67537121, 0.67537121,
0.67537121, 0.67537121, 0.64990447, 0.64990447, 0.64990447,
0.64990447, 0.6279201 , 0.6279201 , 0.6279201 , 0.6279201 ,
0.61003833, 0.61003833, 0.61003833, 0.61003833, 0.59659904,
0.59659904, 0.59659904, 0.59659904, 0.58769343, 0.58769343,
0.58769343, 0.58769343, 0.58232612, 0.58232612, 0.58232612,
0.58232612, 0.5798438 , 0.5798438 , 0.5798438 , 0.5798438 ,
0.57836002, 0.57836002, 0.57836002, 0.57836002, 0.5775144 ,
0.5775144 , 0.5775144 , 0.5775144 , 0.57654461, 0.57654461,
0.57654461, 0.57654461, 0.57463809, 0.57463809, 0.57463809,
0.57463809, 0.5712413 , 0.5712413 , 0.5712413 , 0.5712413 ,
0.56852502, 0.56852502, 0.56852502, 0.56852502, 0.56695785,
0.56695785, 0.56695785, 0.56695785, 0.56500277, 0.56500277,
0.56500277, 0.56500277, 0.56330734, 0.56330734, 0.56330734,
0.56330734, 0.56495911, 0.56495911, 0.56495911, 0.56495911,
0.57910712, 0.57910712, 0.57910712, 0.57910712, 0.76822579,
0.76822579, 0.76822579, 0.76822579, 4.94398567, 4.94398567,
4.94398567, 4.94398567, 5.69120284, 5.69120284, 5.69120284,
5.69120284, 1.97538859, 1.97538859, 1.97538859, 1.97538859,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744991, -19.59744991, -19.59744991, -19.59744991,
-19.59744963, -19.59744963, -19.59744963, -19.59744963,
-19.59744859, -19.59744859, -19.59744859, -19.59744859,
-19.59744492, -19.59744492, -19.59744492, -19.59744492,
-19.59743255, -19.59743255, -19.59743255, -19.59743255,
-19.59739282, -19.59739282, -19.59739282, -19.59739282,
-19.59727157, -19.59727157, -19.59727157, -19.59727157,
-19.59692039, -19.59692039, -19.59692039, -19.59692039,
-19.59595704, -19.59595704, -19.59595704, -19.59595704,
-19.59345932, -19.59345932, -19.59345932, -19.59345932,
-19.58735413, -19.58735413, -19.58735413, -19.58735413,
-19.57332626, -19.57332626, -19.57332626, -19.57332626,
-19.54312485, -19.54312485, -19.54312485, -19.54312485,
-19.48240267, -19.48240267, -19.48240267, -19.48240267,
-19.3687515 , -19.3687515 , -19.3687515 , -19.3687515 ,
-19.17122488, -19.17122488, -19.17122488, -19.17122488,
-18.85281695, -18.85281695, -18.85281695, -18.85281695,
-18.37643738, -18.37643738, -18.37643738, -18.37643738,
-17.71292094, -17.71292094, -17.71292094, -17.71292094,
-16.84777683, -16.84777683, -16.84777683, -16.84777683,
-15.78331816, -15.78331816, -15.78331816, -15.78331816,
-14.5347797 , -14.5347797 , -14.5347797 , -14.5347797 ,
-13.12131832, -13.12131832, -13.12131832, -13.12131832,
-11.56320641, -11.56320641, -11.56320641, -11.56320641,
-9.973158 , -9.973158 , -9.973158 , -9.973158 ,
-8.41839728, -8.41839728, -8.41839728, -8.41839728,
-6.91752776, -6.91752776, -6.91752776, -6.91752776,
-5.4904841 , -5.4904841 , -5.4904841 , -5.4904841 ,
-4.16868979, -4.16868979, -4.16868979, -4.16868979,
-2.99503252, -2.99503252, -2.99503252, -2.99503252,
-2.01492746, -2.01492746, -2.01492746, -2.01492746,
-1.26852879, -1.26852879, -1.26852879, -1.26852879,
-0.75659699, -0.75659699, -0.75659699, -0.75659699,
-0.46721793, -0.46721793, -0.46721793, -0.46721793,
-0.30912043, -0.30912043, -0.30912043, -0.30912043,
-0.24875555, -0.24875555, -0.24875555, -0.24875555,
-0.19892335, -0.19892335, -0.19892335, -0.19892335,
-0.14564527, -0.14564527, -0.14564527, -0.14564527,
-0.04528153, -0.04528153, -0.04528153, -0.04528153,
0.13535818, 0.13535818, 0.13535818, 0.13535818,
0.26623507, 0.26623507, 0.26623507, 0.26623507,
0.32428685, 0.32428685, 0.32428685, 0.32428685,
0.32067534, 0.32067534, 0.32067534, 0.32067534,
0.25398083, 0.25398083, 0.25398083, 0.25398083,
0.09430057, 0.09430057, 0.09430057, 0.09430057,
-0.03007264, -0.03007264, -0.03007264, -0.03007264,
-0.11990385, -0.11990385, -0.11990385, -0.11990385,
-0.0709073 , -0.0709073 , -0.0709073 , -0.0709073 ,
-0.44599011, -0.44599011, -0.44599011, -0.44599011,
-10.13576154, -10.13576154, -10.13576154, -10.13576154,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999986e+02, 9.99999986e+02, 9.99999986e+02, 9.99999986e+02,
9.99999947e+02, 9.99999947e+02, 9.99999947e+02, 9.99999947e+02,
9.99999810e+02, 9.99999810e+02, 9.99999810e+02, 9.99999810e+02,
9.99999347e+02, 9.99999347e+02, 9.99999347e+02, 9.99999347e+02,
9.99997861e+02, 9.99997861e+02, 9.99997861e+02, 9.99997861e+02,
9.99993324e+02, 9.99993324e+02, 9.99993324e+02, 9.99993324e+02,
9.99980184e+02, 9.99980184e+02, 9.99980184e+02, 9.99980184e+02,
9.99944140e+02, 9.99944140e+02, 9.99944140e+02, 9.99944140e+02,
9.99850692e+02, 9.99850692e+02, 9.99850692e+02, 9.99850692e+02,
9.99622309e+02, 9.99622309e+02, 9.99622309e+02, 9.99622309e+02,
9.99097723e+02, 9.99097723e+02, 9.99097723e+02, 9.99097723e+02,
9.97969118e+02, 9.97969118e+02, 9.97969118e+02, 9.97969118e+02,
9.95703309e+02, 9.95703309e+02, 9.95703309e+02, 9.95703309e+02,
9.91474458e+02, 9.91474458e+02, 9.91474458e+02, 9.91474458e+02,
9.84161735e+02, 9.84161735e+02, 9.84161735e+02, 9.84161735e+02,
9.72472374e+02, 9.72472374e+02, 9.72472374e+02, 9.72472374e+02,
9.55208747e+02, 9.55208747e+02, 9.55208747e+02, 9.55208747e+02,
9.31606965e+02, 9.31606965e+02, 9.31606965e+02, 9.31606965e+02,
9.01593286e+02, 9.01593286e+02, 9.01593286e+02, 9.01593286e+02,
8.65814973e+02, 8.65814973e+02, 8.65814973e+02, 8.65814973e+02,
8.25415615e+02, 8.25415615e+02, 8.25415615e+02, 8.25415615e+02,
7.81647504e+02, 7.81647504e+02, 7.81647504e+02, 7.81647504e+02,
7.35710520e+02, 7.35710520e+02, 7.35710520e+02, 7.35710520e+02,
6.90890172e+02, 6.90890172e+02, 6.90890172e+02, 6.90890172e+02,
6.49620359e+02, 6.49620359e+02, 6.49620359e+02, 6.49620359e+02,
6.11797773e+02, 6.11797773e+02, 6.11797773e+02, 6.11797773e+02,
5.77600780e+02, 5.77600780e+02, 5.77600780e+02, 5.77600780e+02,
5.47410199e+02, 5.47410199e+02, 5.47410199e+02, 5.47410199e+02,
5.21734770e+02, 5.21734770e+02, 5.21734770e+02, 5.21734770e+02,
5.01128594e+02, 5.01128594e+02, 5.01128594e+02, 5.01128594e+02,
4.85819157e+02, 4.85819157e+02, 4.85819157e+02, 4.85819157e+02,
4.75772518e+02, 4.75772518e+02, 4.75772518e+02, 4.75772518e+02,
4.69779973e+02, 4.69779973e+02, 4.69779973e+02, 4.69779973e+02,
4.67080362e+02, 4.67080362e+02, 4.67080362e+02, 4.67080362e+02,
4.65530456e+02, 4.65530456e+02, 4.65530456e+02, 4.65530456e+02,
4.64717921e+02, 4.64717921e+02, 4.64717921e+02, 4.64717921e+02,
4.63776491e+02, 4.63776491e+02, 4.63776491e+02, 4.63776491e+02,
4.61803434e+02, 4.61803434e+02, 4.61803434e+02, 4.61803434e+02,
4.58228685e+02, 4.58228685e+02, 4.58228685e+02, 4.58228685e+02,
4.55647155e+02, 4.55647155e+02, 4.55647155e+02, 4.55647155e+02,
4.54848420e+02, 4.54848420e+02, 4.54848420e+02, 4.54848420e+02,
4.54769138e+02, 4.54769138e+02, 4.54769138e+02, 4.54769138e+02,
4.55961825e+02, 4.55961825e+02, 4.55961825e+02, 4.55961825e+02,
4.58949241e+02, 4.58949241e+02, 4.58949241e+02, 4.58949241e+02,
4.61614848e+02, 4.61614848e+02, 4.61614848e+02, 4.61614848e+02,
4.62795907e+02, 4.62795907e+02, 4.62795907e+02, 4.62795907e+02,
4.67523312e+02, 4.67523312e+02, 4.67523312e+02, 4.67523312e+02,
4.35653571e+02, 4.35653571e+02, 4.35653571e+02, 4.35653571e+02,
1.05168891e+02, 1.05168891e+02, 1.05168891e+02, 1.05168891e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999981, 0.99999981,
0.99999981, 0.99999981, 0.99999935, 0.99999935, 0.99999935,
0.99999935, 0.99999794, 0.99999794, 0.99999794, 0.99999794,
0.99999376, 0.99999376, 0.99999376, 0.99999376, 0.99998199,
0.99998199, 0.99998199, 0.99998199, 0.99995055, 0.99995055,
0.99995055, 0.99995055, 0.99987113, 0.99987113, 0.99987113,
0.99987113, 0.99968182, 0.99968182, 0.99968182, 0.99968182,
0.99925722, 0.99925722, 0.99925722, 0.99925722, 0.99836415,
0.99836415, 0.99836415, 0.99836415, 0.99660874, 0.99660874,
0.99660874, 0.99660874, 0.9933952 , 0.9933952 , 0.9933952 ,
0.9933952 , 0.98793188, 0.98793188, 0.98793188, 0.98793188,
0.97932093, 0.97932093, 0.97932093, 0.97932093, 0.96673715,
0.96673715, 0.96673715, 0.96673715, 0.94964461, 0.94964461,
0.94964461, 0.94964461, 0.92795422, 0.92795422, 0.92795422,
0.92795422, 0.90203767, 0.90203767, 0.90203767, 0.90203767,
0.87258376, 0.87258376, 0.87258376, 0.87258376, 0.84036293,
0.84036293, 0.84036293, 0.84036293, 0.80613056, 0.80613056,
0.80613056, 0.80613056, 0.77188664, 0.77188664, 0.77188664,
0.77188664, 0.73963167, 0.73963167, 0.73963167, 0.73963167,
0.70940128, 0.70940128, 0.70940128, 0.70940128, 0.68139366,
0.68139366, 0.68139366, 0.68139366, 0.65596808, 0.65596808,
0.65596808, 0.65596808, 0.63365536, 0.63365536, 0.63365536,
0.63365536, 0.61502818, 0.61502818, 0.61502818, 0.61502818,
0.60059309, 0.60059309, 0.60059309, 0.60059309, 0.59038095,
0.59038095, 0.59038095, 0.59038095, 0.58416103, 0.58416103,
0.58416103, 0.58416103, 0.58061715, 0.58061715, 0.58061715,
0.58061715, 0.57903944, 0.57903944, 0.57903944, 0.57903944,
0.57787713, 0.57787713, 0.57787713, 0.57787713, 0.57688412,
0.57688412, 0.57688412, 0.57688412, 0.57544855, 0.57544855,
0.57544855, 0.57544855, 0.57263323, 0.57263323, 0.57263323,
0.57263323, 0.56974145, 0.56974145, 0.56974145, 0.56974145,
0.56797788, 0.56797788, 0.56797788, 0.56797788, 0.56697796,
0.56697796, 0.56697796, 0.56697796, 0.56563572, 0.56563572,
0.56563572, 0.56563572, 0.56494658, 0.56494658, 0.56494658,
0.56494658, 0.56645921, 0.56645921, 0.56645921, 0.56645921,
0.58020504, 0.58020504, 0.58020504, 0.58020504, 0.7785362 ,
0.7785362 , 0.7785362 , 0.7785362 , 4.93202993, 4.93202993,
4.93202993, 4.93202993, 5.66253368, 5.66253368, 5.66253368,
5.66253368, 2.38055149, 2.38055149, 2.38055149, 2.38055149,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974494e+01, -1.95974494e+01, -1.95974494e+01, -1.95974494e+01,
-1.95974479e+01, -1.95974479e+01, -1.95974479e+01, -1.95974479e+01,
-1.95974427e+01, -1.95974427e+01, -1.95974427e+01, -1.95974427e+01,
-1.95974258e+01, -1.95974258e+01, -1.95974258e+01, -1.95974258e+01,
-1.95973730e+01, -1.95973730e+01, -1.95973730e+01, -1.95973730e+01,
-1.95972166e+01, -1.95972166e+01, -1.95972166e+01, -1.95972166e+01,
-1.95967760e+01, -1.95967760e+01, -1.95967760e+01, -1.95967760e+01,
-1.95955997e+01, -1.95955997e+01, -1.95955997e+01, -1.95955997e+01,
-1.95926280e+01, -1.95926280e+01, -1.95926280e+01, -1.95926280e+01,
-1.95855437e+01, -1.95855437e+01, -1.95855437e+01, -1.95855437e+01,
-1.95696517e+01, -1.95696517e+01, -1.95696517e+01, -1.95696517e+01,
-1.95362117e+01, -1.95362117e+01, -1.95362117e+01, -1.95362117e+01,
-1.94704222e+01, -1.94704222e+01, -1.94704222e+01, -1.94704222e+01,
-1.93497692e+01, -1.93497692e+01, -1.93497692e+01, -1.93497692e+01,
-1.91439788e+01, -1.91439788e+01, -1.91439788e+01, -1.91439788e+01,
-1.88178378e+01, -1.88178378e+01, -1.88178378e+01, -1.88178378e+01,
-1.83371287e+01, -1.83371287e+01, -1.83371287e+01, -1.83371287e+01,
-1.76760675e+01, -1.76760675e+01, -1.76760675e+01, -1.76760675e+01,
-1.68231445e+01, -1.68231445e+01, -1.68231445e+01, -1.68231445e+01,
-1.57824961e+01, -1.57824961e+01, -1.57824961e+01, -1.57824961e+01,
-1.45698677e+01, -1.45698677e+01, -1.45698677e+01, -1.45698677e+01,
-1.32043830e+01, -1.32043830e+01, -1.32043830e+01, -1.32043830e+01,
-1.17036224e+01, -1.17036224e+01, -1.17036224e+01, -1.17036224e+01,
-1.01657129e+01, -1.01657129e+01, -1.01657129e+01, -1.01657129e+01,
-8.65745604e+00, -8.65745604e+00, -8.65745604e+00, -8.65745604e+00,
-7.19532725e+00, -7.19532725e+00, -7.19532725e+00, -7.19532725e+00,
-5.79578003e+00, -5.79578003e+00, -5.79578003e+00, -5.79578003e+00,
-4.48580583e+00, -4.48580583e+00, -4.48580583e+00, -4.48580583e+00,
-3.30233895e+00, -3.30233895e+00, -3.30233895e+00, -3.30233895e+00,
-2.28999205e+00, -2.28999205e+00, -2.28999205e+00, -2.28999205e+00,
-1.48665190e+00, -1.48665190e+00, -1.48665190e+00, -1.48665190e+00,
-9.16444051e-01, -9.16444051e-01, -9.16444051e-01, -9.16444051e-01,
-5.53286287e-01, -5.53286287e-01, -5.53286287e-01, -5.53286287e-01,
-3.67878530e-01, -3.67878530e-01, -3.67878530e-01, -3.67878530e-01,
-2.65094265e-01, -2.65094265e-01, -2.65094265e-01, -2.65094265e-01,
-2.15784356e-01, -2.15784356e-01, -2.15784356e-01, -2.15784356e-01,
-1.65192236e-01, -1.65192236e-01, -1.65192236e-01, -1.65192236e-01,
-8.52631416e-02, -8.52631416e-02, -8.52631416e-02, -8.52631416e-02,
7.31961690e-02, 7.31961690e-02, 7.31961690e-02, 7.31961690e-02,
2.28177984e-01, 2.28177984e-01, 2.28177984e-01, 2.28177984e-01,
2.97213404e-01, 2.97213404e-01, 2.97213404e-01, 2.97213404e-01,
3.18155586e-01, 3.18155586e-01, 3.18155586e-01, 3.18155586e-01,
2.86936146e-01, 2.86936146e-01, 2.86936146e-01, 2.86936146e-01,
1.60097390e-01, 1.60097390e-01, 1.60097390e-01, 1.60097390e-01,
2.21384777e-03, 2.21384777e-03, 2.21384777e-03, 2.21384777e-03,
-7.99984086e-02, -7.99984086e-02, -7.99984086e-02, -7.99984086e-02,
-1.34246115e-01, -1.34246115e-01, -1.34246115e-01, -1.34246115e-01,
-6.71255258e-02, -6.71255258e-02, -6.71255258e-02, -6.71255258e-02,
-1.58018574e-01, -1.58018574e-01, -1.58018574e-01, -1.58018574e-01,
-8.46790736e+00, -8.46790736e+00, -8.46790736e+00, -8.46790736e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999979e+02, 9.99999979e+02, 9.99999979e+02, 9.99999979e+02,
9.99999922e+02, 9.99999922e+02, 9.99999922e+02, 9.99999922e+02,
9.99999728e+02, 9.99999728e+02, 9.99999728e+02, 9.99999728e+02,
9.99999095e+02, 9.99999095e+02, 9.99999095e+02, 9.99999095e+02,
9.99997120e+02, 9.99997120e+02, 9.99997120e+02, 9.99997120e+02,
9.99991266e+02, 9.99991266e+02, 9.99991266e+02, 9.99991266e+02,
9.99974782e+02, 9.99974782e+02, 9.99974782e+02, 9.99974782e+02,
9.99930769e+02, 9.99930769e+02, 9.99930769e+02, 9.99930769e+02,
9.99819590e+02, 9.99819590e+02, 9.99819590e+02, 9.99819590e+02,
9.99554591e+02, 9.99554591e+02, 9.99554591e+02, 9.99554591e+02,
9.98960349e+02, 9.98960349e+02, 9.98960349e+02, 9.98960349e+02,
9.97710932e+02, 9.97710932e+02, 9.97710932e+02, 9.97710932e+02,
9.95256792e+02, 9.95256792e+02, 9.95256792e+02, 9.95256792e+02,
9.90769668e+02, 9.90769668e+02, 9.90769668e+02, 9.90769668e+02,
9.83156734e+02, 9.83156734e+02, 9.83156734e+02, 9.83156734e+02,
9.71195587e+02, 9.71195587e+02, 9.71195587e+02, 9.71195587e+02,
9.53796069e+02, 9.53796069e+02, 9.53796069e+02, 9.53796069e+02,
9.30310551e+02, 9.30310551e+02, 9.30310551e+02, 9.30310551e+02,
9.00749846e+02, 9.00749846e+02, 9.00749846e+02, 9.00749846e+02,
8.65784928e+02, 8.65784928e+02, 8.65784928e+02, 8.65784928e+02,
8.26522912e+02, 8.26522912e+02, 8.26522912e+02, 8.26522912e+02,
7.84154118e+02, 7.84154118e+02, 7.84154118e+02, 7.84154118e+02,
7.39746922e+02, 7.39746922e+02, 7.39746922e+02, 7.39746922e+02,
6.96170009e+02, 6.96170009e+02, 6.96170009e+02, 6.96170009e+02,
6.55827330e+02, 6.55827330e+02, 6.55827330e+02, 6.55827330e+02,
6.18654000e+02, 6.18654000e+02, 6.18654000e+02, 6.18654000e+02,
5.84783454e+02, 5.84783454e+02, 5.84783454e+02, 5.84783454e+02,
5.54527180e+02, 5.54527180e+02, 5.54527180e+02, 5.54527180e+02,
5.28367773e+02, 5.28367773e+02, 5.28367773e+02, 5.28367773e+02,
5.06818722e+02, 5.06818722e+02, 5.06818722e+02, 5.06818722e+02,
4.90312899e+02, 4.90312899e+02, 4.90312899e+02, 4.90312899e+02,
4.78752254e+02, 4.78752254e+02, 4.78752254e+02, 4.78752254e+02,
4.71776805e+02, 4.71776805e+02, 4.71776805e+02, 4.71776805e+02,
4.67852179e+02, 4.67852179e+02, 4.67852179e+02, 4.67852179e+02,
4.66174199e+02, 4.66174199e+02, 4.66174199e+02, 4.66174199e+02,
4.64987016e+02, 4.64987016e+02, 4.64987016e+02, 4.64987016e+02,
4.64008579e+02, 4.64008579e+02, 4.64008579e+02, 4.64008579e+02,
4.62543362e+02, 4.62543362e+02, 4.62543362e+02, 4.62543362e+02,
4.59550569e+02, 4.59550569e+02, 4.59550569e+02, 4.59550569e+02,
4.56544154e+02, 4.56544154e+02, 4.56544154e+02, 4.56544154e+02,
4.55029340e+02, 4.55029340e+02, 4.55029340e+02, 4.55029340e+02,
4.54863605e+02, 4.54863605e+02, 4.54863605e+02, 4.54863605e+02,
4.55470217e+02, 4.55470217e+02, 4.55470217e+02, 4.55470217e+02,
4.57808682e+02, 4.57808682e+02, 4.57808682e+02, 4.57808682e+02,
4.60652422e+02, 4.60652422e+02, 4.60652422e+02, 4.60652422e+02,
4.62610659e+02, 4.62610659e+02, 4.62610659e+02, 4.62610659e+02,
4.63106902e+02, 4.63106902e+02, 4.63106902e+02, 4.63106902e+02,
4.65810686e+02, 4.65810686e+02, 4.65810686e+02, 4.65810686e+02,
4.33002408e+02, 4.33002408e+02, 4.33002408e+02, 4.33002408e+02,
1.43412267e+02, 1.43412267e+02, 1.43412267e+02, 1.43412267e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999973,
0.99999973, 0.99999973, 0.99999973, 0.99999912, 0.99999912,
0.99999912, 0.99999912, 0.99999728, 0.99999728, 0.99999728,
0.99999728, 0.99999196, 0.99999196, 0.99999196, 0.99999196,
0.99997737, 0.99997737, 0.99997737, 0.99997737, 0.99993941,
0.99993941, 0.99993941, 0.99993941, 0.99984585, 0.99984585,
0.99984585, 0.99984585, 0.99962805, 0.99962805, 0.99962805,
0.99962805, 0.99915055, 0.99915055, 0.99915055, 0.99915055,
0.99816786, 0.99816786, 0.99816786, 0.99816786, 0.99627582,
0.99627582, 0.99627582, 0.99627582, 0.99287886, 0.99287886,
0.99287886, 0.99287886, 0.98720668, 0.98720668, 0.98720668,
0.98720668, 0.97841074, 0.97841074, 0.97841074, 0.97841074,
0.96573881, 0.96573881, 0.96573881, 0.96573881, 0.94873306,
0.94873306, 0.94873306, 0.94873306, 0.92736246, 0.92736246,
0.92736246, 0.92736246, 0.90201925, 0.90201925, 0.90201925,
0.90201925, 0.87337573, 0.87337573, 0.87337573, 0.87337573,
0.84216635, 0.84216635, 0.84216635, 0.84216635, 0.80907948,
0.80907948, 0.80907948, 0.80907948, 0.77584278, 0.77584278,
0.77584278, 0.77584278, 0.74438392, 0.74438392, 0.74438392,
0.74438392, 0.71477986, 0.71477986, 0.71477986, 0.71477986,
0.68717736, 0.68717736, 0.68717736, 0.68717736, 0.66188455,
0.66188455, 0.66188455, 0.66188455, 0.63935361, 0.63935361,
0.63935361, 0.63935361, 0.62015224, 0.62015224, 0.62015224,
0.62015224, 0.60477483, 0.60477483, 0.60477483, 0.60477483,
0.59352547, 0.59352547, 0.59352547, 0.59352547, 0.58607117,
0.58607117, 0.58607117, 0.58607117, 0.58190303, 0.58190303,
0.58190303, 0.58190303, 0.57956123, 0.57956123, 0.57956123,
0.57956123, 0.57839561, 0.57839561, 0.57839561, 0.57839561,
0.57731562, 0.57731562, 0.57731562, 0.57731562, 0.57602663,
0.57602663, 0.57602663, 0.57602663, 0.57376643, 0.57376643,
0.57376643, 0.57376643, 0.57079695, 0.57079695, 0.57079695,
0.57079695, 0.56893066, 0.56893066, 0.56893066, 0.56893066,
0.5678998 , 0.5678998 , 0.5678998 , 0.5678998 , 0.56725258,
0.56725258, 0.56725258, 0.56725258, 0.56680513, 0.56680513,
0.56680513, 0.56680513, 0.56673813, 0.56673813, 0.56673813,
0.56673813, 0.56753107, 0.56753107, 0.56753107, 0.56753107,
0.58083764, 0.58083764, 0.58083764, 0.58083764, 0.78629949,
0.78629949, 0.78629949, 0.78629949, 4.91489404, 4.91489404,
4.91489404, 4.91489404, 5.66513057, 5.66513057, 5.66513057,
5.66513057, 2.7620253 , 2.7620253 , 2.7620253 , 2.7620253 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974491e+01, -1.95974491e+01, -1.95974491e+01, -1.95974491e+01,
-1.95974470e+01, -1.95974470e+01, -1.95974470e+01, -1.95974470e+01,
-1.95974398e+01, -1.95974398e+01, -1.95974398e+01, -1.95974398e+01,
-1.95974170e+01, -1.95974170e+01, -1.95974170e+01, -1.95974170e+01,
-1.95973480e+01, -1.95973480e+01, -1.95973480e+01, -1.95973480e+01,
-1.95971491e+01, -1.95971491e+01, -1.95971491e+01, -1.95971491e+01,
-1.95966033e+01, -1.95966033e+01, -1.95966033e+01, -1.95966033e+01,
-1.95951829e+01, -1.95951829e+01, -1.95951829e+01, -1.95951829e+01,
-1.95916820e+01, -1.95916820e+01, -1.95916820e+01, -1.95916820e+01,
-1.95835315e+01, -1.95835315e+01, -1.95835315e+01, -1.95835315e+01,
-1.95656587e+01, -1.95656587e+01, -1.95656587e+01, -1.95656587e+01,
-1.95288585e+01, -1.95288585e+01, -1.95288585e+01, -1.95288585e+01,
-1.94579343e+01, -1.94579343e+01, -1.94579343e+01, -1.94579343e+01,
-1.93303524e+01, -1.93303524e+01, -1.93303524e+01, -1.93303524e+01,
-1.91165854e+01, -1.91165854e+01, -1.91165854e+01, -1.91165854e+01,
-1.87832063e+01, -1.87832063e+01, -1.87832063e+01, -1.87832063e+01,
-1.82987235e+01, -1.82987235e+01, -1.82987235e+01, -1.82987235e+01,
-1.76404471e+01, -1.76404471e+01, -1.76404471e+01, -1.76404471e+01,
-1.67995009e+01, -1.67995009e+01, -1.67995009e+01, -1.67995009e+01,
-1.57815477e+01, -1.57815477e+01, -1.57815477e+01, -1.57815477e+01,
-1.46026675e+01, -1.46026675e+01, -1.46026675e+01, -1.46026675e+01,
-1.32817990e+01, -1.32817990e+01, -1.32817990e+01, -1.32817990e+01,
-1.18344185e+01, -1.18344185e+01, -1.18344185e+01, -1.18344185e+01,
-1.03460033e+01, -1.03460033e+01, -1.03460033e+01, -1.03460033e+01,
-8.88243558e+00, -8.88243558e+00, -8.88243558e+00, -8.88243558e+00,
-7.45829243e+00, -7.45829243e+00, -7.45829243e+00, -7.45829243e+00,
-6.08759632e+00, -6.08759632e+00, -6.08759632e+00, -6.08759632e+00,
-4.79273953e+00, -4.79273953e+00, -4.79273953e+00, -4.79273953e+00,
-3.60646122e+00, -3.60646122e+00, -3.60646122e+00, -3.60646122e+00,
-2.56866215e+00, -2.56866215e+00, -2.56866215e+00, -2.56866215e+00,
-1.72080838e+00, -1.72080838e+00, -1.72080838e+00, -1.72080838e+00,
-1.08667636e+00, -1.08667636e+00, -1.08667636e+00, -1.08667636e+00,
-6.70713020e-01, -6.70713020e-01, -6.70713020e-01, -6.70713020e-01,
-4.23210123e-01, -4.23210123e-01, -4.23210123e-01, -4.23210123e-01,
-3.05329615e-01, -3.05329615e-01, -3.05329615e-01, -3.05329615e-01,
-2.30979266e-01, -2.30979266e-01, -2.30979266e-01, -2.30979266e-01,
-1.78612761e-01, -1.78612761e-01, -1.78612761e-01, -1.78612761e-01,
-1.14935463e-01, -1.14935463e-01, -1.14935463e-01, -1.14935463e-01,
9.76005905e-03, 9.76005905e-03, 9.76005905e-03, 9.76005905e-03,
1.79021055e-01, 1.79021055e-01, 1.79021055e-01, 1.79021055e-01,
2.79211031e-01, 2.79211031e-01, 2.79211031e-01, 2.79211031e-01,
3.04181047e-01, 3.04181047e-01, 3.04181047e-01, 3.04181047e-01,
2.97229303e-01, 2.97229303e-01, 2.97229303e-01, 2.97229303e-01,
2.16892653e-01, 2.16892653e-01, 2.16892653e-01, 2.16892653e-01,
5.77330288e-02, 5.77330288e-02, 5.77330288e-02, 5.77330288e-02,
-6.18141614e-02, -6.18141614e-02, -6.18141614e-02, -6.18141614e-02,
-1.02834268e-01, -1.02834268e-01, -1.02834268e-01, -1.02834268e-01,
-1.20319256e-01, -1.20319256e-01, -1.20319256e-01, -1.20319256e-01,
-4.57384322e-02, -4.57384322e-02, -4.57384322e-02, -4.57384322e-02,
5.57803118e-03, 5.57803118e-03, 5.57803118e-03, 5.57803118e-03,
-7.12586604e+00, -7.12586604e+00, -7.12586604e+00, -7.12586604e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999968e+02, 9.99999968e+02, 9.99999968e+02, 9.99999968e+02,
9.99999887e+02, 9.99999887e+02, 9.99999887e+02, 9.99999887e+02,
9.99999619e+02, 9.99999619e+02, 9.99999619e+02, 9.99999619e+02,
9.99998767e+02, 9.99998767e+02, 9.99998767e+02, 9.99998767e+02,
9.99996185e+02, 9.99996185e+02, 9.99996185e+02, 9.99996185e+02,
9.99988740e+02, 9.99988740e+02, 9.99988740e+02, 9.99988740e+02,
9.99968321e+02, 9.99968321e+02, 9.99968321e+02, 9.99968321e+02,
9.99915177e+02, 9.99915177e+02, 9.99915177e+02, 9.99915177e+02,
9.99784202e+02, 9.99784202e+02, 9.99784202e+02, 9.99784202e+02,
9.99479333e+02, 9.99479333e+02, 9.99479333e+02, 9.99479333e+02,
9.98811087e+02, 9.98811087e+02, 9.98811087e+02, 9.98811087e+02,
9.97436379e+02, 9.97436379e+02, 9.97436379e+02, 9.97436379e+02,
9.94791552e+02, 9.94791552e+02, 9.94791552e+02, 9.94791552e+02,
9.90049195e+02, 9.90049195e+02, 9.90049195e+02, 9.90049195e+02,
9.82147193e+02, 9.82147193e+02, 9.82147193e+02, 9.82147193e+02,
9.69932912e+02, 9.69932912e+02, 9.69932912e+02, 9.69932912e+02,
9.52417576e+02, 9.52417576e+02, 9.52417576e+02, 9.52417576e+02,
9.29058942e+02, 9.29058942e+02, 9.29058942e+02, 9.29058942e+02,
8.99940834e+02, 8.99940834e+02, 8.99940834e+02, 8.99940834e+02,
8.65750838e+02, 8.65750838e+02, 8.65750838e+02, 8.65750838e+02,
8.27559253e+02, 8.27559253e+02, 8.27559253e+02, 8.27559253e+02,
7.86496911e+02, 7.86496911e+02, 7.86496911e+02, 7.86496911e+02,
7.43523058e+02, 7.43523058e+02, 7.43523058e+02, 7.43523058e+02,
7.01150546e+02, 7.01150546e+02, 7.01150546e+02, 7.01150546e+02,
6.61711091e+02, 6.61711091e+02, 6.61711091e+02, 6.61711091e+02,
6.25204662e+02, 6.25204662e+02, 6.25204662e+02, 6.25204662e+02,
5.91711941e+02, 5.91711941e+02, 5.91711941e+02, 5.91711941e+02,
5.61500060e+02, 5.61500060e+02, 5.61500060e+02, 5.61500060e+02,
5.34985301e+02, 5.34985301e+02, 5.34985301e+02, 5.34985301e+02,
5.12690393e+02, 5.12690393e+02, 5.12690393e+02, 5.12690393e+02,
4.95042975e+02, 4.95042975e+02, 4.95042975e+02, 4.95042975e+02,
4.82262615e+02, 4.82262615e+02, 4.82262615e+02, 4.82262615e+02,
4.73870538e+02, 4.73870538e+02, 4.73870538e+02, 4.73870538e+02,
4.69227241e+02, 4.69227241e+02, 4.69227241e+02, 4.69227241e+02,
4.66662152e+02, 4.66662152e+02, 4.66662152e+02, 4.66662152e+02,
4.65449266e+02, 4.65449266e+02, 4.65449266e+02, 4.65449266e+02,
4.64355113e+02, 4.64355113e+02, 4.64355113e+02, 4.64355113e+02,
4.63043852e+02, 4.63043852e+02, 4.63043852e+02, 4.63043852e+02,
4.60652662e+02, 4.60652662e+02, 4.60652662e+02, 4.60652662e+02,
4.57488839e+02, 4.57488839e+02, 4.57488839e+02, 4.57488839e+02,
4.55633138e+02, 4.55633138e+02, 4.55633138e+02, 4.55633138e+02,
4.54937737e+02, 4.54937737e+02, 4.54937737e+02, 4.54937737e+02,
4.55166468e+02, 4.55166468e+02, 4.55166468e+02, 4.55166468e+02,
4.56778687e+02, 4.56778687e+02, 4.56778687e+02, 4.56778687e+02,
4.59834516e+02, 4.59834516e+02, 4.59834516e+02, 4.59834516e+02,
4.61863307e+02, 4.61863307e+02, 4.61863307e+02, 4.61863307e+02,
4.63045537e+02, 4.63045537e+02, 4.63045537e+02, 4.63045537e+02,
4.62941773e+02, 4.62941773e+02, 4.62941773e+02, 4.62941773e+02,
4.63527536e+02, 4.63527536e+02, 4.63527536e+02, 4.63527536e+02,
4.33471825e+02, 4.33471825e+02, 4.33471825e+02, 4.33471825e+02,
1.78922418e+02, 1.78922418e+02, 1.78922418e+02, 1.78922418e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999989, 0.99999989, 0.99999989, 0.99999989,
0.99999963, 0.99999963, 0.99999963, 0.99999963, 0.99999882,
0.99999882, 0.99999882, 0.99999882, 0.99999644, 0.99999644,
0.99999644, 0.99999644, 0.99998977, 0.99998977, 0.99998977,
0.99998977, 0.99997191, 0.99997191, 0.99997191, 0.99997191,
0.99992654, 0.99992654, 0.99992654, 0.99992654, 0.9998173 ,
0.9998173 , 0.9998173 , 0.9998173 , 0.99956868, 0.99956868,
0.99956868, 0.99956868, 0.99903526, 0.99903526, 0.99903526,
0.99903526, 0.99795997, 0.99795997, 0.99795997, 0.99795997,
0.99592998, 0.99592998, 0.99592998, 0.99592998, 0.99235208,
0.99235208, 0.99235208, 0.99235208, 0.98647893, 0.98647893,
0.98647893, 0.98647893, 0.97751071, 0.97751071, 0.97751071,
0.97751071, 0.96476399, 0.96476399, 0.96476399, 0.96476399,
0.94785186, 0.94785186, 0.94785186, 0.94785186, 0.92679381,
0.92679381, 0.92679381, 0.92679381, 0.90199754, 0.90199754,
0.90199754, 0.90199754, 0.87411778, 0.87411778, 0.87411778,
0.87411778, 0.84385313, 0.84385313, 0.84385313, 0.84385313,
0.81183641, 0.81183641, 0.81183641, 0.81183641, 0.77956921,
0.77956921, 0.77956921, 0.77956921, 0.74888406, 0.74888406,
0.74888406, 0.74888406, 0.7199006 , 0.7199006 , 0.7199006 ,
0.7199006 , 0.69273028, 0.69273028, 0.69273028, 0.69273028,
0.66762803, 0.66762803, 0.66762803, 0.66762803, 0.64499394,
0.64499394, 0.64499394, 0.64499394, 0.6253336 , 0.6253336 ,
0.6253336 , 0.6253336 , 0.60918725, 0.60918725, 0.60918725,
0.60918725, 0.59688024, 0.59688024, 0.59688024, 0.59688024,
0.58844927, 0.58844927, 0.58844927, 0.58844927, 0.58320842,
0.58320842, 0.58320842, 0.58320842, 0.58046856, 0.58046856,
0.58046856, 0.58046856, 0.57881722, 0.57881722, 0.57881722,
0.57881722, 0.5777376 , 0.5777376 , 0.5777376 , 0.5777376 ,
0.57657412, 0.57657412, 0.57657412, 0.57657412, 0.5747604 ,
0.5747604 , 0.5747604 , 0.5747604 , 0.57183611, 0.57183611,
0.57183611, 0.57183611, 0.569634 , 0.569634 , 0.569634 ,
0.569634 , 0.56863337, 0.56863337, 0.56863337, 0.56863337,
0.56807231, 0.56807231, 0.56807231, 0.56807231, 0.567998 ,
0.567998 , 0.567998 , 0.567998 , 0.56850304, 0.56850304,
0.56850304, 0.56850304, 0.5680767 , 0.5680767 , 0.5680767 ,
0.5680767 , 0.56811621, 0.56811621, 0.56811621, 0.56811621,
0.58104156, 0.58104156, 0.58104156, 0.58104156, 0.79189278,
0.79189278, 0.79189278, 0.79189278, 4.89390634, 4.89390634,
4.89390634, 4.89390634, 5.69720114, 5.69720114, 5.69720114,
5.69720114, 3.1202153 , 3.1202153 , 3.1202153 , 3.1202153 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974497e+01, -1.95974497e+01, -1.95974497e+01, -1.95974497e+01,
-1.95974488e+01, -1.95974488e+01, -1.95974488e+01, -1.95974488e+01,
-1.95974457e+01, -1.95974457e+01, -1.95974457e+01, -1.95974457e+01,
-1.95974360e+01, -1.95974360e+01, -1.95974360e+01, -1.95974360e+01,
-1.95974058e+01, -1.95974058e+01, -1.95974058e+01, -1.95974058e+01,
-1.95973169e+01, -1.95973169e+01, -1.95973169e+01, -1.95973169e+01,
-1.95970671e+01, -1.95970671e+01, -1.95970671e+01, -1.95970671e+01,
-1.95963988e+01, -1.95963988e+01, -1.95963988e+01, -1.95963988e+01,
-1.95947013e+01, -1.95947013e+01, -1.95947013e+01, -1.95947013e+01,
-1.95906138e+01, -1.95906138e+01, -1.95906138e+01, -1.95906138e+01,
-1.95813093e+01, -1.95813093e+01, -1.95813093e+01, -1.95813093e+01,
-1.95613423e+01, -1.95613423e+01, -1.95613423e+01, -1.95613423e+01,
-1.95210699e+01, -1.95210699e+01, -1.95210699e+01, -1.95210699e+01,
-1.94449585e+01, -1.94449585e+01, -1.94449585e+01, -1.94449585e+01,
-1.93105344e+01, -1.93105344e+01, -1.93105344e+01, -1.93105344e+01,
-1.90890791e+01, -1.90890791e+01, -1.90890791e+01, -1.90890791e+01,
-1.87489345e+01, -1.87489345e+01, -1.87489345e+01, -1.87489345e+01,
-1.82611905e+01, -1.82611905e+01, -1.82611905e+01, -1.82611905e+01,
-1.76059869e+01, -1.76059869e+01, -1.76059869e+01, -1.76059869e+01,
-1.67767728e+01, -1.67767728e+01, -1.67767728e+01, -1.67767728e+01,
-1.57804835e+01, -1.57804835e+01, -1.57804835e+01, -1.57804835e+01,
-1.46333874e+01, -1.46333874e+01, -1.46333874e+01, -1.46333874e+01,
-1.33540076e+01, -1.33540076e+01, -1.33540076e+01, -1.33540076e+01,
-1.19567666e+01, -1.19567666e+01, -1.19567666e+01, -1.19567666e+01,
-1.05150525e+01, -1.05150525e+01, -1.05150525e+01, -1.05150525e+01,
-9.09417104e+00, -9.09417104e+00, -9.09417104e+00, -9.09417104e+00,
-7.70728617e+00, -7.70728617e+00, -7.70728617e+00, -7.70728617e+00,
-6.36602576e+00, -6.36602576e+00, -6.36602576e+00, -6.36602576e+00,
-5.08930766e+00, -5.08930766e+00, -5.08930766e+00, -5.08930766e+00,
-3.90506198e+00, -3.90506198e+00, -3.90506198e+00, -3.90506198e+00,
-2.85010424e+00, -2.85010424e+00, -2.85010424e+00, -2.85010424e+00,
-1.96328393e+00, -1.96328393e+00, -1.96328393e+00, -1.96328393e+00,
-1.27734670e+00, -1.27734670e+00, -1.27734670e+00, -1.27734670e+00,
-7.96811737e-01, -7.96811737e-01, -7.96811737e-01, -7.96811737e-01,
-5.06534830e-01, -5.06534830e-01, -5.06534830e-01, -5.06534830e-01,
-3.41035658e-01, -3.41035658e-01, -3.41035658e-01, -3.41035658e-01,
-2.60177787e-01, -2.60177787e-01, -2.60177787e-01, -2.60177787e-01,
-1.96085942e-01, -1.96085942e-01, -1.96085942e-01, -1.96085942e-01,
-1.34052428e-01, -1.34052428e-01, -1.34052428e-01, -1.34052428e-01,
-3.82449631e-02, -3.82449631e-02, -3.82449631e-02, -3.82449631e-02,
1.21841959e-01, 1.21841959e-01, 1.21841959e-01, 1.21841959e-01,
2.44077637e-01, 2.44077637e-01, 2.44077637e-01, 2.44077637e-01,
2.97824945e-01, 2.97824945e-01, 2.97824945e-01, 2.97824945e-01,
2.98149986e-01, 2.98149986e-01, 2.98149986e-01, 2.98149986e-01,
2.51414537e-01, 2.51414537e-01, 2.51414537e-01, 2.51414537e-01,
1.13404337e-01, 1.13404337e-01, 1.13404337e-01, 1.13404337e-01,
-1.88380192e-02, -1.88380192e-02, -1.88380192e-02, -1.88380192e-02,
-9.54487222e-02, -9.54487222e-02, -9.54487222e-02, -9.54487222e-02,
-1.06443174e-01, -1.06443174e-01, -1.06443174e-01, -1.06443174e-01,
-9.56457136e-02, -9.56457136e-02, -9.56457136e-02, -9.56457136e-02,
-1.47955638e-02, -1.47955638e-02, -1.47955638e-02, -1.47955638e-02,
7.16811944e-02, 7.16811944e-02, 7.16811944e-02, 7.16811944e-02,
-5.99756818e+00, -5.99756818e+00, -5.99756818e+00, -5.99756818e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999987e+02, 9.99999987e+02, 9.99999987e+02, 9.99999987e+02,
9.99999954e+02, 9.99999954e+02, 9.99999954e+02, 9.99999954e+02,
9.99999841e+02, 9.99999841e+02, 9.99999841e+02, 9.99999841e+02,
9.99999475e+02, 9.99999475e+02, 9.99999475e+02, 9.99999475e+02,
9.99998347e+02, 9.99998347e+02, 9.99998347e+02, 9.99998347e+02,
9.99995020e+02, 9.99995020e+02, 9.99995020e+02, 9.99995020e+02,
9.99985672e+02, 9.99985672e+02, 9.99985672e+02, 9.99985672e+02,
9.99960670e+02, 9.99960670e+02, 9.99960670e+02, 9.99960670e+02,
9.99897156e+02, 9.99897156e+02, 9.99897156e+02, 9.99897156e+02,
9.99744241e+02, 9.99744241e+02, 9.99744241e+02, 9.99744241e+02,
9.99396229e+02, 9.99396229e+02, 9.99396229e+02, 9.99396229e+02,
9.98649758e+02, 9.98649758e+02, 9.98649758e+02, 9.98649758e+02,
9.97145637e+02, 9.97145637e+02, 9.97145637e+02, 9.97145637e+02,
9.94308330e+02, 9.94308330e+02, 9.94308330e+02, 9.94308330e+02,
9.89314303e+02, 9.89314303e+02, 9.89314303e+02, 9.89314303e+02,
9.81134393e+02, 9.81134393e+02, 9.81134393e+02, 9.81134393e+02,
9.68684747e+02, 9.68684747e+02, 9.68684747e+02, 9.68684747e+02,
9.51072032e+02, 9.51072032e+02, 9.51072032e+02, 9.51072032e+02,
9.27849434e+02, 9.27849434e+02, 9.27849434e+02, 9.27849434e+02,
8.99163679e+02, 8.99163679e+02, 8.99163679e+02, 8.99163679e+02,
8.65713041e+02, 8.65713041e+02, 8.65713041e+02, 8.65713041e+02,
8.28530977e+02, 8.28530977e+02, 8.28530977e+02, 8.28530977e+02,
7.88687888e+02, 7.88687888e+02, 7.88687888e+02, 7.88687888e+02,
7.47065213e+02, 7.47065213e+02, 7.47065213e+02, 7.47065213e+02,
7.05848815e+02, 7.05848815e+02, 7.05848815e+02, 7.05848815e+02,
6.67297293e+02, 6.67297293e+02, 6.67297293e+02, 6.67297293e+02,
6.31460182e+02, 6.31460182e+02, 6.31460182e+02, 6.31460182e+02,
5.98389306e+02, 5.98389306e+02, 5.98389306e+02, 5.98389306e+02,
5.68299134e+02, 5.68299134e+02, 5.68299134e+02, 5.68299134e+02,
5.41562282e+02, 5.41562282e+02, 5.41562282e+02, 5.41562282e+02,
5.18651711e+02, 5.18651711e+02, 5.18651711e+02, 5.18651711e+02,
5.00058715e+02, 5.00058715e+02, 5.00058715e+02, 5.00058715e+02,
4.86029006e+02, 4.86029006e+02, 4.86029006e+02, 4.86029006e+02,
4.76503061e+02, 4.76503061e+02, 4.76503061e+02, 4.76503061e+02,
4.70635195e+02, 4.70635195e+02, 4.70635195e+02, 4.70635195e+02,
4.67609427e+02, 4.67609427e+02, 4.67609427e+02, 4.67609427e+02,
4.65824201e+02, 4.65824201e+02, 4.65824201e+02, 4.65824201e+02,
4.64708600e+02, 4.64708600e+02, 4.64708600e+02, 4.64708600e+02,
4.63520829e+02, 4.63520829e+02, 4.63520829e+02, 4.63520829e+02,
4.61620235e+02, 4.61620235e+02, 4.61620235e+02, 4.61620235e+02,
4.58485045e+02, 4.58485045e+02, 4.58485045e+02, 4.58485045e+02,
4.56183830e+02, 4.56183830e+02, 4.56183830e+02, 4.56183830e+02,
4.55297909e+02, 4.55297909e+02, 4.55297909e+02, 4.55297909e+02,
4.55128431e+02, 4.55128431e+02, 4.55128431e+02, 4.55128431e+02,
4.55999279e+02, 4.55999279e+02, 4.55999279e+02, 4.55999279e+02,
4.58687543e+02, 4.58687543e+02, 4.58687543e+02, 4.58687543e+02,
4.61354361e+02, 4.61354361e+02, 4.61354361e+02, 4.61354361e+02,
4.62516612e+02, 4.62516612e+02, 4.62516612e+02, 4.62516612e+02,
4.63019726e+02, 4.63019726e+02, 4.63019726e+02, 4.63019726e+02,
4.62614600e+02, 4.62614600e+02, 4.62614600e+02, 4.62614600e+02,
4.60825538e+02, 4.60825538e+02, 4.60825538e+02, 4.60825538e+02,
4.37294799e+02, 4.37294799e+02, 4.37294799e+02, 4.37294799e+02,
2.11305840e+02, 2.11305840e+02, 2.11305840e+02, 2.11305840e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999984, 0.99999984, 0.99999984,
0.99999984, 0.99999949, 0.99999949, 0.99999949, 0.99999949,
0.99999844, 0.99999844, 0.99999844, 0.99999844, 0.99999542,
0.99999542, 0.99999542, 0.99999542, 0.99998713, 0.99998713,
0.99998713, 0.99998713, 0.9999655 , 0.9999655 , 0.9999655 ,
0.9999655 , 0.99991178, 0.99991178, 0.99991178, 0.99991178,
0.99978529, 0.99978529, 0.99978529, 0.99978529, 0.99950349,
0.99950349, 0.99950349, 0.99950349, 0.99891123, 0.99891123,
0.99891123, 0.99891123, 0.99774064, 0.99774064, 0.99774064,
0.99774064, 0.99557175, 0.99557175, 0.99557175, 0.99557175,
0.99181571, 0.99181571, 0.99181571, 0.99181571, 0.98574947,
0.98574947, 0.98574947, 0.98574947, 0.97662108, 0.97662108,
0.97662108, 0.97662108, 0.96381185, 0.96381185, 0.96381185,
0.96381185, 0.94699927, 0.94699927, 0.94699927, 0.94699927,
0.92624661, 0.92624661, 0.92624661, 0.92624661, 0.9019728 ,
0.9019728 , 0.9019728 , 0.9019728 , 0.87481407, 0.87481407,
0.87481407, 0.87481407, 0.84543522, 0.84543522, 0.84543522,
0.84543522, 0.81442283, 0.81442283, 0.81442283, 0.81442283,
0.78307637, 0.78307637, 0.78307637, 0.78307637, 0.75314632,
0.75314632, 0.75314632, 0.75314632, 0.72477941, 0.72477941,
0.72477941, 0.72477941, 0.69805716, 0.69805716, 0.69805716,
0.69805716, 0.67319587, 0.67319587, 0.67319587, 0.67319587,
0.65053818, 0.65053818, 0.65053818, 0.65053818, 0.63054983,
0.63054983, 0.63054983, 0.63054983, 0.61373695, 0.61373695,
0.61373695, 0.61373695, 0.60053603, 0.60053603, 0.60053603,
0.60053603, 0.59102357, 0.59102357, 0.59102357, 0.59102357,
0.58494867, 0.58494867, 0.58494867, 0.58494867, 0.58135283,
0.58135283, 0.58135283, 0.58135283, 0.5794891 , 0.5794891 ,
0.5794891 , 0.5794891 , 0.57815267, 0.57815267, 0.57815267,
0.57815267, 0.57699224, 0.57699224, 0.57699224, 0.57699224,
0.57552182, 0.57552182, 0.57552182, 0.57552182, 0.57298965,
0.57298965, 0.57298965, 0.57298965, 0.57043829, 0.57043829,
0.57043829, 0.57043829, 0.56906326, 0.56906326, 0.56906326,
0.56906326, 0.5686265 , 0.5686265 , 0.5686265 , 0.5686265 ,
0.56854901, 0.56854901, 0.56854901, 0.56854901, 0.56940057,
0.56940057, 0.56940057, 0.56940057, 0.57005639, 0.57005639,
0.57005639, 0.57005639, 0.5688696 , 0.5688696 , 0.5688696 ,
0.5688696 , 0.56831975, 0.56831975, 0.56831975, 0.56831975,
0.58103903, 0.58103903, 0.58103903, 0.58103903, 0.79374436,
0.79374436, 0.79374436, 0.79374436, 4.87720755, 4.87720755,
4.87720755, 4.87720755, 5.74403588, 5.74403588, 5.74403588,
5.74403588, 3.46330428, 3.46330428, 3.46330428, 3.46330428,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974495e+01, -1.95974495e+01, -1.95974495e+01, -1.95974495e+01,
-1.95974482e+01, -1.95974482e+01, -1.95974482e+01, -1.95974482e+01,
-1.95974441e+01, -1.95974441e+01, -1.95974441e+01, -1.95974441e+01,
-1.95974310e+01, -1.95974310e+01, -1.95974310e+01, -1.95974310e+01,
-1.95973916e+01, -1.95973916e+01, -1.95973916e+01, -1.95973916e+01,
-1.95972786e+01, -1.95972786e+01, -1.95972786e+01, -1.95972786e+01,
-1.95969686e+01, -1.95969686e+01, -1.95969686e+01, -1.95969686e+01,
-1.95961590e+01, -1.95961590e+01, -1.95961590e+01, -1.95961590e+01,
-1.95941491e+01, -1.95941491e+01, -1.95941491e+01, -1.95941491e+01,
-1.95894158e+01, -1.95894158e+01, -1.95894158e+01, -1.95894158e+01,
-1.95788696e+01, -1.95788696e+01, -1.95788696e+01, -1.95788696e+01,
-1.95566985e+01, -1.95566985e+01, -1.95566985e+01, -1.95566985e+01,
-1.95128512e+01, -1.95128512e+01, -1.95128512e+01, -1.95128512e+01,
-1.94315140e+01, -1.94315140e+01, -1.94315140e+01, -1.94315140e+01,
-1.92903467e+01, -1.92903467e+01, -1.92903467e+01, -1.92903467e+01,
-1.90614912e+01, -1.90614912e+01, -1.90614912e+01, -1.90614912e+01,
-1.87150326e+01, -1.87150326e+01, -1.87150326e+01, -1.87150326e+01,
-1.82245001e+01, -1.82245001e+01, -1.82245001e+01, -1.82245001e+01,
-1.75726207e+01, -1.75726207e+01, -1.75726207e+01, -1.75726207e+01,
-1.67548950e+01, -1.67548950e+01, -1.67548950e+01, -1.67548950e+01,
-1.57793118e+01, -1.57793118e+01, -1.57793118e+01, -1.57793118e+01,
-1.46622014e+01, -1.46622014e+01, -1.46622014e+01, -1.46622014e+01,
-1.34216191e+01, -1.34216191e+01, -1.34216191e+01, -1.34216191e+01,
-1.20712287e+01, -1.20712287e+01, -1.20712287e+01, -1.20712287e+01,
-1.06739044e+01, -1.06739044e+01, -1.06739044e+01, -1.06739044e+01,
-9.29379307e+00, -9.29379307e+00, -9.29379307e+00, -9.29379307e+00,
-7.94296336e+00, -7.94296336e+00, -7.94296336e+00, -7.94296336e+00,
-6.63150668e+00, -6.63150668e+00, -6.63150668e+00, -6.63150668e+00,
-5.37490939e+00, -5.37490939e+00, -5.37490939e+00, -5.37490939e+00,
-4.19730994e+00, -4.19730994e+00, -4.19730994e+00, -4.19730994e+00,
-3.13108259e+00, -3.13108259e+00, -3.13108259e+00, -3.13108259e+00,
-2.21417361e+00, -2.21417361e+00, -2.21417361e+00, -2.21417361e+00,
-1.47930262e+00, -1.47930262e+00, -1.47930262e+00, -1.47930262e+00,
-9.45385444e-01, -9.45385444e-01, -9.45385444e-01, -9.45385444e-01,
-5.95656521e-01, -5.95656521e-01, -5.95656521e-01, -5.95656521e-01,
-3.99403090e-01, -3.99403090e-01, -3.99403090e-01, -3.99403090e-01,
-2.85622461e-01, -2.85622461e-01, -2.85622461e-01, -2.85622461e-01,
-2.19284573e-01, -2.19284573e-01, -2.19284573e-01, -2.19284573e-01,
-1.55493166e-01, -1.55493166e-01, -1.55493166e-01, -1.55493166e-01,
-7.35015435e-02, -7.35015435e-02, -7.35015435e-02, -7.35015435e-02,
6.72846414e-02, 6.72846414e-02, 6.72846414e-02, 6.72846414e-02,
2.05392028e-01, 2.05392028e-01, 2.05392028e-01, 2.05392028e-01,
2.75414455e-01, 2.75414455e-01, 2.75414455e-01, 2.75414455e-01,
2.96233980e-01, 2.96233980e-01, 2.96233980e-01, 2.96233980e-01,
2.74443594e-01, 2.74443594e-01, 2.74443594e-01, 2.74443594e-01,
1.70168341e-01, 1.70168341e-01, 1.70168341e-01, 1.70168341e-01,
1.80150915e-02, 1.80150915e-02, 1.80150915e-02, 1.80150915e-02,
-6.51449274e-02, -6.51449274e-02, -6.51449274e-02, -6.51449274e-02,
-1.04137959e-01, -1.04137959e-01, -1.04137959e-01, -1.04137959e-01,
-9.96987947e-02, -9.96987947e-02, -9.96987947e-02, -9.96987947e-02,
-6.02066209e-02, -6.02066209e-02, -6.02066209e-02, -6.02066209e-02,
1.77838561e-02, 1.77838561e-02, 1.77838561e-02, 1.77838561e-02,
6.95679407e-02, 6.95679407e-02, 6.95679407e-02, 6.95679407e-02,
-5.01910078e+00, -5.01910078e+00, -5.01910078e+00, -5.01910078e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999995e+02, 9.99999995e+02, 9.99999995e+02, 9.99999995e+02,
9.99999981e+02, 9.99999981e+02, 9.99999981e+02, 9.99999981e+02,
9.99999934e+02, 9.99999934e+02, 9.99999934e+02, 9.99999934e+02,
9.99999778e+02, 9.99999778e+02, 9.99999778e+02, 9.99999778e+02,
9.99999289e+02, 9.99999289e+02, 9.99999289e+02, 9.99999289e+02,
9.99997817e+02, 9.99997817e+02, 9.99997817e+02, 9.99997817e+02,
9.99993586e+02, 9.99993586e+02, 9.99993586e+02, 9.99993586e+02,
9.99981987e+02, 9.99981987e+02, 9.99981987e+02, 9.99981987e+02,
9.99951696e+02, 9.99951696e+02, 9.99951696e+02, 9.99951696e+02,
9.99876497e+02, 9.99876497e+02, 9.99876497e+02, 9.99876497e+02,
9.99699428e+02, 9.99699428e+02, 9.99699428e+02, 9.99699428e+02,
9.99304995e+02, 9.99304995e+02, 9.99304995e+02, 9.99304995e+02,
9.98476220e+02, 9.98476220e+02, 9.98476220e+02, 9.98476220e+02,
9.96838923e+02, 9.96838923e+02, 9.96838923e+02, 9.96838923e+02,
9.93807871e+02, 9.93807871e+02, 9.93807871e+02, 9.93807871e+02,
9.88566189e+02, 9.88566189e+02, 9.88566189e+02, 9.88566189e+02,
9.80119496e+02, 9.80119496e+02, 9.80119496e+02, 9.80119496e+02,
9.67451408e+02, 9.67451408e+02, 9.67451408e+02, 9.67451408e+02,
9.49758258e+02, 9.49758258e+02, 9.49758258e+02, 9.49758258e+02,
9.26679567e+02, 9.26679567e+02, 9.26679567e+02, 9.26679567e+02,
8.98416091e+02, 8.98416091e+02, 8.98416091e+02, 8.98416091e+02,
8.65671807e+02, 8.65671807e+02, 8.65671807e+02, 8.65671807e+02,
8.29443378e+02, 8.29443378e+02, 8.29443378e+02, 8.29443378e+02,
7.90744448e+02, 7.90744448e+02, 7.90744448e+02, 7.90744448e+02,
7.50392349e+02, 7.50392349e+02, 7.50392349e+02, 7.50392349e+02,
7.10283801e+02, 7.10283801e+02, 7.10283801e+02, 7.10283801e+02,
6.72599183e+02, 6.72599183e+02, 6.72599183e+02, 6.72599183e+02,
6.37437464e+02, 6.37437464e+02, 6.37437464e+02, 6.37437464e+02,
6.04816164e+02, 6.04816164e+02, 6.04816164e+02, 6.04816164e+02,
5.74916672e+02, 5.74916672e+02, 5.74916672e+02, 5.74916672e+02,
5.48055621e+02, 5.48055621e+02, 5.48055621e+02, 5.48055621e+02,
5.24676970e+02, 5.24676970e+02, 5.24676970e+02, 5.24676970e+02,
5.05250741e+02, 5.05250741e+02, 5.05250741e+02, 5.05250741e+02,
4.90155215e+02, 4.90155215e+02, 4.90155215e+02, 4.90155215e+02,
4.79371457e+02, 4.79371457e+02, 4.79371457e+02, 4.79371457e+02,
4.72542024e+02, 4.72542024e+02, 4.72542024e+02, 4.72542024e+02,
4.68541201e+02, 4.68541201e+02, 4.68541201e+02, 4.68541201e+02,
4.66505642e+02, 4.66505642e+02, 4.66505642e+02, 4.66505642e+02,
4.65076084e+02, 4.65076084e+02, 4.65076084e+02, 4.65076084e+02,
4.63869864e+02, 4.63869864e+02, 4.63869864e+02, 4.63869864e+02,
4.62337447e+02, 4.62337447e+02, 4.62337447e+02, 4.62337447e+02,
4.59631278e+02, 4.59631278e+02, 4.59631278e+02, 4.59631278e+02,
4.56916646e+02, 4.56916646e+02, 4.56916646e+02, 4.56916646e+02,
4.55543102e+02, 4.55543102e+02, 4.55543102e+02, 4.55543102e+02,
4.55288433e+02, 4.55288433e+02, 4.55288433e+02, 4.55288433e+02,
4.55661668e+02, 4.55661668e+02, 4.55661668e+02, 4.55661668e+02,
4.57571932e+02, 4.57571932e+02, 4.57571932e+02, 4.57571932e+02,
4.60440601e+02, 4.60440601e+02, 4.60440601e+02, 4.60440601e+02,
4.62258112e+02, 4.62258112e+02, 4.62258112e+02, 4.62258112e+02,
4.62734330e+02, 4.62734330e+02, 4.62734330e+02, 4.62734330e+02,
4.62796077e+02, 4.62796077e+02, 4.62796077e+02, 4.62796077e+02,
4.61928393e+02, 4.61928393e+02, 4.61928393e+02, 4.61928393e+02,
4.58737919e+02, 4.58737919e+02, 4.58737919e+02, 4.58737919e+02,
4.42781939e+02, 4.42781939e+02, 4.42781939e+02, 4.42781939e+02,
2.41372986e+02, 2.41372986e+02, 2.41372986e+02, 2.41372986e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999993,
0.99999993, 0.99999993, 0.99999993, 0.99999978, 0.99999978,
0.99999978, 0.99999978, 0.99999932, 0.99999932, 0.99999932,
0.99999932, 0.99999797, 0.99999797, 0.99999797, 0.99999797,
0.99999417, 0.99999417, 0.99999417, 0.99999417, 0.999984 ,
0.999984 , 0.999984 , 0.999984 , 0.99995804, 0.99995804,
0.99995804, 0.99995804, 0.99989499, 0.99989499, 0.99989499,
0.99989499, 0.99974962, 0.99974962, 0.99974962, 0.99974962,
0.99943231, 0.99943231, 0.99943231, 0.99943231, 0.9987784 ,
0.9987784 , 0.9987784 , 0.9987784 , 0.99751004, 0.99751004,
0.99751004, 0.99751004, 0.99520166, 0.99520166, 0.99520166,
0.99520166, 0.99127057, 0.99127057, 0.99127057, 0.99127057,
0.98501906, 0.98501906, 0.98501906, 0.98501906, 0.97574203,
0.97574203, 0.97574203, 0.97574203, 0.96288161, 0.96288161,
0.96288161, 0.96288161, 0.94617367, 0.94617367, 0.94617367,
0.94617367, 0.92571938, 0.92571938, 0.92571938, 0.92571938,
0.90194529, 0.90194529, 0.90194529, 0.90194529, 0.87546863,
0.87546863, 0.87546863, 0.87546863, 0.84692236, 0.84692236,
0.84692236, 0.84692236, 0.81685217, 0.81685217, 0.81685217,
0.81685217, 0.78638667, 0.78638667, 0.78638667, 0.78638667,
0.75718146, 0.75718146, 0.75718146, 0.75718146, 0.72942531,
0.72942531, 0.72942531, 0.72942531, 0.70316587, 0.70316587,
0.70316587, 0.70316587, 0.67858288, 0.67858288, 0.67858288,
0.67858288, 0.65597405, 0.65597405, 0.65597405, 0.65597405,
0.63575206, 0.63575206, 0.63575206, 0.63575206, 0.61840948,
0.61840948, 0.61840948, 0.61840948, 0.60438506, 0.60438506,
0.60438506, 0.60438506, 0.59393624, 0.59393624, 0.59393624,
0.59393624, 0.58684429, 0.58684429, 0.58684429, 0.58684429,
0.58260576, 0.58260576, 0.58260576, 0.58260576, 0.58011986,
0.58011986, 0.58011986, 0.58011986, 0.57869565, 0.57869565,
0.57869565, 0.57869565, 0.57744153, 0.57744153, 0.57744153,
0.57744153, 0.57608399, 0.57608399, 0.57608399, 0.57608399,
0.57399938, 0.57399938, 0.57399938, 0.57399938, 0.57135742,
0.57135742, 0.57135742, 0.57135742, 0.56964605, 0.56964605,
0.56964605, 0.56964605, 0.56892105, 0.56892105, 0.56892105,
0.56892105, 0.56882419, 0.56882419, 0.56882419, 0.56882419,
0.56950857, 0.56950857, 0.56950857, 0.56950857, 0.57114483,
0.57114483, 0.57114483, 0.57114483, 0.57107418, 0.57107418,
0.57107418, 0.57107418, 0.56920045, 0.56920045, 0.56920045,
0.56920045, 0.56832702, 0.56832702, 0.56832702, 0.56832702,
0.58078103, 0.58078103, 0.58078103, 0.58078103, 0.79262627,
0.79262627, 0.79262627, 0.79262627, 4.86702127, 4.86702127,
4.86702127, 4.86702127, 5.78223717, 5.78223717, 5.78223717,
5.78223717, 3.81184601, 3.81184601, 3.81184601, 3.81184601,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974493e+01, -1.95974493e+01, -1.95974493e+01, -1.95974493e+01,
-1.95974475e+01, -1.95974475e+01, -1.95974475e+01, -1.95974475e+01,
-1.95974419e+01, -1.95974419e+01, -1.95974419e+01, -1.95974419e+01,
-1.95974246e+01, -1.95974246e+01, -1.95974246e+01, -1.95974246e+01,
-1.95973740e+01, -1.95973740e+01, -1.95973740e+01, -1.95973740e+01,
-1.95972319e+01, -1.95972319e+01, -1.95972319e+01, -1.95972319e+01,
-1.95968514e+01, -1.95968514e+01, -1.95968514e+01, -1.95968514e+01,
-1.95958800e+01, -1.95958800e+01, -1.95958800e+01, -1.95958800e+01,
-1.95935206e+01, -1.95935206e+01, -1.95935206e+01, -1.95935206e+01,
-1.95880809e+01, -1.95880809e+01, -1.95880809e+01, -1.95880809e+01,
-1.95762053e+01, -1.95762053e+01, -1.95762053e+01, -1.95762053e+01,
-1.95517244e+01, -1.95517244e+01, -1.95517244e+01, -1.95517244e+01,
-1.95042089e+01, -1.95042089e+01, -1.95042089e+01, -1.95042089e+01,
-1.94176204e+01, -1.94176204e+01, -1.94176204e+01, -1.94176204e+01,
-1.92698195e+01, -1.92698195e+01, -1.92698195e+01, -1.92698195e+01,
-1.90338503e+01, -1.90338503e+01, -1.90338503e+01, -1.90338503e+01,
-1.86815082e+01, -1.86815082e+01, -1.86815082e+01, -1.86815082e+01,
-1.81886240e+01, -1.81886240e+01, -1.81886240e+01, -1.81886240e+01,
-1.75402879e+01, -1.75402879e+01, -1.75402879e+01, -1.75402879e+01,
-1.67338090e+01, -1.67338090e+01, -1.67338090e+01, -1.67338090e+01,
-1.57780412e+01, -1.57780412e+01, -1.57780412e+01, -1.57780412e+01,
-1.46892782e+01, -1.46892782e+01, -1.46892782e+01, -1.46892782e+01,
-1.34850821e+01, -1.34850821e+01, -1.34850821e+01, -1.34850821e+01,
-1.21784352e+01, -1.21784352e+01, -1.21784352e+01, -1.21784352e+01,
-1.08233333e+01, -1.08233333e+01, -1.08233333e+01, -1.08233333e+01,
-9.48224377e+00, -9.48224377e+00, -9.48224377e+00, -9.48224377e+00,
-8.16634118e+00, -8.16634118e+00, -8.16634118e+00, -8.16634118e+00,
-6.88441851e+00, -6.88441851e+00, -6.88441851e+00, -6.88441851e+00,
-5.64948922e+00, -5.64948922e+00, -5.64948922e+00, -5.64948922e+00,
-4.48186684e+00, -4.48186684e+00, -4.48186684e+00, -4.48186684e+00,
-3.41031651e+00, -3.41031651e+00, -3.41031651e+00, -3.41031651e+00,
-2.46946575e+00, -2.46946575e+00, -2.46946575e+00, -2.46946575e+00,
-1.69431946e+00, -1.69431946e+00, -1.69431946e+00, -1.69431946e+00,
-1.10616540e+00, -1.10616540e+00, -1.10616540e+00, -1.10616540e+00,
-7.06921216e-01, -7.06921216e-01, -7.06921216e-01, -7.06921216e-01,
-4.60561327e-01, -4.60561327e-01, -4.60561327e-01, -4.60561327e-01,
-3.27519514e-01, -3.27519514e-01, -3.27519514e-01, -3.27519514e-01,
-2.41286344e-01, -2.41286344e-01, -2.41286344e-01, -2.41286344e-01,
-1.75610234e-01, -1.75610234e-01, -1.75610234e-01, -1.75610234e-01,
-1.03249567e-01, -1.03249567e-01, -1.03249567e-01, -1.03249567e-01,
1.33675271e-02, 1.33675271e-02, 1.33675271e-02, 1.33675271e-02,
1.63319383e-01, 1.63319383e-01, 1.63319383e-01, 1.63319383e-01,
2.54046087e-01, 2.54046087e-01, 2.54046087e-01, 2.54046087e-01,
2.83350944e-01, 2.83350944e-01, 2.83350944e-01, 2.83350944e-01,
2.81705115e-01, 2.81705115e-01, 2.81705115e-01, 2.81705115e-01,
2.18881548e-01, 2.18881548e-01, 2.18881548e-01, 2.18881548e-01,
7.08959660e-02, 7.08959660e-02, 7.08959660e-02, 7.08959660e-02,
-4.37712428e-02, -4.37712428e-02, -4.37712428e-02, -4.37712428e-02,
-8.61595623e-02, -8.61595623e-02, -8.61595623e-02, -8.61595623e-02,
-9.95145426e-02, -9.95145426e-02, -9.95145426e-02, -9.95145426e-02,
-8.00099892e-02, -8.00099892e-02, -8.00099892e-02, -8.00099892e-02,
-1.40168724e-02, -1.40168724e-02, -1.40168724e-02, -1.40168724e-02,
4.44646346e-02, 4.44646346e-02, 4.44646346e-02, 4.44646346e-02,
5.51074031e-02, 5.51074031e-02, 5.51074031e-02, 5.51074031e-02,
-4.18963902e+00, -4.18963902e+00, -4.18963902e+00, -4.18963902e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999975e+02, 9.99999975e+02, 9.99999975e+02, 9.99999975e+02,
9.99999906e+02, 9.99999906e+02, 9.99999906e+02, 9.99999906e+02,
9.99999696e+02, 9.99999696e+02, 9.99999696e+02, 9.99999696e+02,
9.99999050e+02, 9.99999050e+02, 9.99999050e+02, 9.99999050e+02,
9.99997155e+02, 9.99997155e+02, 9.99997155e+02, 9.99997155e+02,
9.99991840e+02, 9.99991840e+02, 9.99991840e+02, 9.99991840e+02,
9.99977604e+02, 9.99977604e+02, 9.99977604e+02, 9.99977604e+02,
9.99941258e+02, 9.99941258e+02, 9.99941258e+02, 9.99941258e+02,
9.99852986e+02, 9.99852986e+02, 9.99852986e+02, 9.99852986e+02,
9.99649493e+02, 9.99649493e+02, 9.99649493e+02, 9.99649493e+02,
9.99205369e+02, 9.99205369e+02, 9.99205369e+02, 9.99205369e+02,
9.98290366e+02, 9.98290366e+02, 9.98290366e+02, 9.98290366e+02,
9.96516485e+02, 9.96516485e+02, 9.96516485e+02, 9.96516485e+02,
9.93290921e+02, 9.93290921e+02, 9.93290921e+02, 9.93290921e+02,
9.87805996e+02, 9.87805996e+02, 9.87805996e+02, 9.87805996e+02,
9.79103562e+02, 9.79103562e+02, 9.79103562e+02, 9.79103562e+02,
9.66233133e+02, 9.66233133e+02, 9.66233133e+02, 9.66233133e+02,
9.48475131e+02, 9.48475131e+02, 9.48475131e+02, 9.48475131e+02,
9.25547100e+02, 9.25547100e+02, 9.25547100e+02, 9.25547100e+02,
8.97696017e+02, 8.97696017e+02, 8.97696017e+02, 8.97696017e+02,
8.65627412e+02, 8.65627412e+02, 8.65627412e+02, 8.65627412e+02,
8.30301627e+02, 8.30301627e+02, 8.30301627e+02, 8.30301627e+02,
7.92679285e+02, 7.92679285e+02, 7.92679285e+02, 7.92679285e+02,
7.53520678e+02, 7.53520678e+02, 7.53520678e+02, 7.53520678e+02,
7.14478917e+02, 7.14478917e+02, 7.14478917e+02, 7.14478917e+02,
6.77632914e+02, 6.77632914e+02, 6.77632914e+02, 6.77632914e+02,
6.43143598e+02, 6.43143598e+02, 6.43143598e+02, 6.43143598e+02,
6.10999150e+02, 6.10999150e+02, 6.10999150e+02, 6.10999150e+02,
5.81341858e+02, 5.81341858e+02, 5.81341858e+02, 5.81341858e+02,
5.54448013e+02, 5.54448013e+02, 5.54448013e+02, 5.54448013e+02,
5.30711825e+02, 5.30711825e+02, 5.30711825e+02, 5.30711825e+02,
5.10603365e+02, 5.10603365e+02, 5.10603365e+02, 5.10603365e+02,
4.94516248e+02, 4.94516248e+02, 4.94516248e+02, 4.94516248e+02,
4.82637190e+02, 4.82637190e+02, 4.82637190e+02, 4.82637190e+02,
4.74635917e+02, 4.74635917e+02, 4.74635917e+02, 4.74635917e+02,
4.69895823e+02, 4.69895823e+02, 4.69895823e+02, 4.69895823e+02,
4.67151190e+02, 4.67151190e+02, 4.67151190e+02, 4.67151190e+02,
4.65611990e+02, 4.65611990e+02, 4.65611990e+02, 4.65611990e+02,
4.64275780e+02, 4.64275780e+02, 4.64275780e+02, 4.64275780e+02,
4.62848342e+02, 4.62848342e+02, 4.62848342e+02, 4.62848342e+02,
4.60626892e+02, 4.60626892e+02, 4.60626892e+02, 4.60626892e+02,
4.57799422e+02, 4.57799422e+02, 4.57799422e+02, 4.57799422e+02,
4.56027912e+02, 4.56027912e+02, 4.56027912e+02, 4.56027912e+02,
4.55382671e+02, 4.55382671e+02, 4.55382671e+02, 4.55382671e+02,
4.55509319e+02, 4.55509319e+02, 4.55509319e+02, 4.55509319e+02,
4.56736182e+02, 4.56736182e+02, 4.56736182e+02, 4.56736182e+02,
4.59533346e+02, 4.59533346e+02, 4.59533346e+02, 4.59533346e+02,
4.61594941e+02, 4.61594941e+02, 4.61594941e+02, 4.61594941e+02,
4.62637384e+02, 4.62637384e+02, 4.62637384e+02, 4.62637384e+02,
4.62728900e+02, 4.62728900e+02, 4.62728900e+02, 4.62728900e+02,
4.62351006e+02, 4.62351006e+02, 4.62351006e+02, 4.62351006e+02,
4.60928952e+02, 4.60928952e+02, 4.60928952e+02, 4.60928952e+02,
4.57695734e+02, 4.57695734e+02, 4.57695734e+02, 4.57695734e+02,
4.47171068e+02, 4.47171068e+02, 4.47171068e+02, 4.47171068e+02,
2.71217336e+02, 2.71217336e+02, 2.71217336e+02, 2.71217336e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999971,
0.99999971, 0.99999971, 0.99999971, 0.99999911, 0.99999911,
0.99999911, 0.99999911, 0.99999739, 0.99999739, 0.99999739,
0.99999739, 0.99999267, 0.99999267, 0.99999267, 0.99999267,
0.99998031, 0.99998031, 0.99998031, 0.99998031, 0.99994944,
0.99994944, 0.99994944, 0.99994944, 0.999876 , 0.999876 ,
0.999876 , 0.999876 , 0.9997101 , 0.9997101 , 0.9997101 ,
0.9997101 , 0.99935495, 0.99935495, 0.99935495, 0.99935495,
0.9986367 , 0.9986367 , 0.9986367 , 0.9986367 , 0.99726837,
0.99726837, 0.99726837, 0.99726837, 0.99482024, 0.99482024,
0.99482024, 0.99482024, 0.99071741, 0.99071741, 0.99071741,
0.99071741, 0.9842884 , 0.9842884 , 0.9842884 , 0.9842884 ,
0.9748737 , 0.9748737 , 0.9748737 , 0.9748737 , 0.96197251,
0.96197251, 0.96197251, 0.96197251, 0.94537359, 0.94537359,
0.94537359, 0.94537359, 0.92521078, 0.92521078, 0.92521078,
0.92521078, 0.90191525, 0.90191525, 0.90191525, 0.90191525,
0.876085 , 0.876085 , 0.876085 , 0.876085 , 0.84832273,
0.84832273, 0.84832273, 0.84832273, 0.81913764, 0.81913764,
0.81913764, 0.81913764, 0.78951498, 0.78951498, 0.78951498,
0.78951498, 0.76100793, 0.76100793, 0.76100793, 0.76100793,
0.73384867, 0.73384867, 0.73384867, 0.73384867, 0.70805934,
0.70805934, 0.70805934, 0.70805934, 0.68378781, 0.68378781,
0.68378781, 0.68378781, 0.66128539, 0.66128539, 0.66128539,
0.66128539, 0.64092085, 0.64092085, 0.64092085, 0.64092085,
0.62314771, 0.62314771, 0.62314771, 0.62314771, 0.60843108,
0.60843108, 0.60843108, 0.60843108, 0.59706805, 0.59706805,
0.59706805, 0.59706805, 0.58908105, 0.58908105, 0.58908105,
0.58908105, 0.58396071, 0.58396071, 0.58396071, 0.58396071,
0.5810339 , 0.5810339 , 0.5810339 , 0.5810339 , 0.57920442,
0.57920442, 0.57920442, 0.57920442, 0.57791599, 0.57791599,
0.57791599, 0.57791599, 0.57661402, 0.57661402, 0.57661402,
0.57661402, 0.5748629 , 0.5748629 , 0.5748629 , 0.5748629 ,
0.57227022, 0.57227022, 0.57227022, 0.57227022, 0.57028763,
0.57028763, 0.57028763, 0.57028763, 0.56933094, 0.56933094,
0.56933094, 0.56933094, 0.56902355, 0.56902355, 0.56902355,
0.56902355, 0.56940079, 0.56940079, 0.56940079, 0.56940079,
0.57104666, 0.57104666, 0.57104666, 0.57104666, 0.57246836,
0.57246836, 0.57246836, 0.57246836, 0.57162258, 0.57162258,
0.57162258, 0.57162258, 0.56923572, 0.56923572, 0.56923572,
0.56923572, 0.56817358, 0.56817358, 0.56817358, 0.56817358,
0.58016529, 0.58016529, 0.58016529, 0.58016529, 0.79143159,
0.79143159, 0.79143159, 0.79143159, 4.85974362, 4.85974362,
4.85974362, 4.85974362, 5.81302905, 5.81302905, 5.81302905,
5.81302905, 4.16554379, 4.16554379, 4.16554379, 4.16554379,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974469e+01, -1.95974469e+01, -1.95974469e+01, -1.95974469e+01,
-1.95974390e+01, -1.95974390e+01, -1.95974390e+01, -1.95974390e+01,
-1.95974166e+01, -1.95974166e+01, -1.95974166e+01, -1.95974166e+01,
-1.95973522e+01, -1.95973522e+01, -1.95973522e+01, -1.95973522e+01,
-1.95971757e+01, -1.95971757e+01, -1.95971757e+01, -1.95971757e+01,
-1.95967133e+01, -1.95967133e+01, -1.95967133e+01, -1.95967133e+01,
-1.95955581e+01, -1.95955581e+01, -1.95955581e+01, -1.95955581e+01,
-1.95928103e+01, -1.95928103e+01, -1.95928103e+01, -1.95928103e+01,
-1.95866019e+01, -1.95866019e+01, -1.95866019e+01, -1.95866019e+01,
-1.95733099e+01, -1.95733099e+01, -1.95733099e+01, -1.95733099e+01,
-1.95464179e+01, -1.95464179e+01, -1.95464179e+01, -1.95464179e+01,
-1.94951499e+01, -1.94951499e+01, -1.94951499e+01, -1.94951499e+01,
-1.94032968e+01, -1.94032968e+01, -1.94032968e+01, -1.94032968e+01,
-1.92489814e+01, -1.92489814e+01, -1.92489814e+01, -1.92489814e+01,
-1.90061827e+01, -1.90061827e+01, -1.90061827e+01, -1.90061827e+01,
-1.86483677e+01, -1.86483677e+01, -1.86483677e+01, -1.86483677e+01,
-1.81535351e+01, -1.81535351e+01, -1.81535351e+01, -1.81535351e+01,
-1.75089329e+01, -1.75089329e+01, -1.75089329e+01, -1.75089329e+01,
-1.67134622e+01, -1.67134622e+01, -1.67134622e+01, -1.67134622e+01,
-1.57766805e+01, -1.57766805e+01, -1.57766805e+01, -1.57766805e+01,
-1.47147662e+01, -1.47147662e+01, -1.47147662e+01, -1.47147662e+01,
-1.35447639e+01, -1.35447639e+01, -1.35447639e+01, -1.35447639e+01,
-1.22790265e+01, -1.22790265e+01, -1.22790265e+01, -1.22790265e+01,
-1.09641145e+01, -1.09641145e+01, -1.09641145e+01, -1.09641145e+01,
-9.66023669e+00, -9.66023669e+00, -9.66023669e+00, -9.66023669e+00,
-8.37815306e+00, -8.37815306e+00, -8.37815306e+00, -8.37815306e+00,
-7.12552266e+00, -7.12552266e+00, -7.12552266e+00, -7.12552266e+00,
-5.91304958e+00, -5.91304958e+00, -5.91304958e+00, -5.91304958e+00,
-4.75817216e+00, -4.75817216e+00, -4.75817216e+00, -4.75817216e+00,
-3.68577556e+00, -3.68577556e+00, -3.68577556e+00, -3.68577556e+00,
-2.72779239e+00, -2.72779239e+00, -2.72779239e+00, -2.72779239e+00,
-1.91777898e+00, -1.91777898e+00, -1.91777898e+00, -1.91777898e+00,
-1.28310499e+00, -1.28310499e+00, -1.28310499e+00, -1.28310499e+00,
-8.29422624e-01, -8.29422624e-01, -8.29422624e-01, -8.29422624e-01,
-5.41561776e-01, -5.41561776e-01, -5.41561776e-01, -5.41561776e-01,
-3.69927246e-01, -3.69927246e-01, -3.69927246e-01, -3.69927246e-01,
-2.73484493e-01, -2.73484493e-01, -2.73484493e-01, -2.73484493e-01,
-1.97816530e-01, -1.97816530e-01, -1.97816530e-01, -1.97816530e-01,
-1.26255045e-01, -1.26255045e-01, -1.26255045e-01, -1.26255045e-01,
-3.10231901e-02, -3.10231901e-02, -3.10231901e-02, -3.10231901e-02,
1.13087024e-01, 1.13087024e-01, 1.13087024e-01, 1.13087024e-01,
2.24997833e-01, 2.24997833e-01, 2.24997833e-01, 2.24997833e-01,
2.74197895e-01, 2.74197895e-01, 2.74197895e-01, 2.74197895e-01,
2.79075899e-01, 2.79075899e-01, 2.79075899e-01, 2.79075899e-01,
2.45111094e-01, 2.45111094e-01, 2.45111094e-01, 2.45111094e-01,
1.27012783e-01, 1.27012783e-01, 1.27012783e-01, 1.27012783e-01,
-3.74802683e-03, -3.74802683e-03, -3.74802683e-03, -3.74802683e-03,
-7.60495587e-02, -7.60495587e-02, -7.60495587e-02, -7.60495587e-02,
-9.11323448e-02, -9.11323448e-02, -9.11323448e-02, -9.11323448e-02,
-8.66414148e-02, -8.66414148e-02, -8.66414148e-02, -8.66414148e-02,
-4.09801118e-02, -4.09801118e-02, -4.09801118e-02, -4.09801118e-02,
3.37800291e-02, 3.37800291e-02, 3.37800291e-02, 3.37800291e-02,
6.27722422e-02, 6.27722422e-02, 6.27722422e-02, 6.27722422e-02,
3.77295256e-02, 3.77295256e-02, 3.77295256e-02, 3.77295256e-02,
-3.48506696e+00, -3.48506696e+00, -3.48506696e+00, -3.48506696e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999885e+02, 9.99999885e+02, 9.99999885e+02, 9.99999885e+02,
9.99999587e+02, 9.99999587e+02, 9.99999587e+02, 9.99999587e+02,
9.99998749e+02, 9.99998749e+02, 9.99998749e+02, 9.99998749e+02,
9.99996339e+02, 9.99996339e+02, 9.99996339e+02, 9.99996339e+02,
9.99989735e+02, 9.99989735e+02, 9.99989735e+02, 9.99989735e+02,
9.99972435e+02, 9.99972435e+02, 9.99972435e+02, 9.99972435e+02,
9.99929213e+02, 9.99929213e+02, 9.99929213e+02, 9.99929213e+02,
9.99826413e+02, 9.99826413e+02, 9.99826413e+02, 9.99826413e+02,
9.99594173e+02, 9.99594173e+02, 9.99594173e+02, 9.99594173e+02,
9.99097110e+02, 9.99097110e+02, 9.99097110e+02, 9.99097110e+02,
9.98092125e+02, 9.98092125e+02, 9.98092125e+02, 9.98092125e+02,
9.96178599e+02, 9.96178599e+02, 9.96178599e+02, 9.96178599e+02,
9.92758220e+02, 9.92758220e+02, 9.92758220e+02, 9.92758220e+02,
9.87034806e+02, 9.87034806e+02, 9.87034806e+02, 9.87034806e+02,
9.78087556e+02, 9.78087556e+02, 9.78087556e+02, 9.78087556e+02,
9.65030100e+02, 9.65030100e+02, 9.65030100e+02, 9.65030100e+02,
9.47221585e+02, 9.47221585e+02, 9.47221585e+02, 9.47221585e+02,
9.24449980e+02, 9.24449980e+02, 9.24449980e+02, 9.24449980e+02,
8.97001618e+02, 8.97001618e+02, 8.97001618e+02, 8.97001618e+02,
8.65580147e+02, 8.65580147e+02, 8.65580147e+02, 8.65580147e+02,
8.31110268e+02, 8.31110268e+02, 8.31110268e+02, 8.31110268e+02,
7.94502788e+02, 7.94502788e+02, 7.94502788e+02, 7.94502788e+02,
7.56466644e+02, 7.56466644e+02, 7.56466644e+02, 7.56466644e+02,
7.18450539e+02, 7.18450539e+02, 7.18450539e+02, 7.18450539e+02,
6.82418620e+02, 6.82418620e+02, 6.82418620e+02, 6.82418620e+02,
6.48592320e+02, 6.48592320e+02, 6.48592320e+02, 6.48592320e+02,
6.16938186e+02, 6.16938186e+02, 6.16938186e+02, 6.16938186e+02,
5.87570375e+02, 5.87570375e+02, 5.87570375e+02, 5.87570375e+02,
5.60716611e+02, 5.60716611e+02, 5.60716611e+02, 5.60716611e+02,
5.36732244e+02, 5.36732244e+02, 5.36732244e+02, 5.36732244e+02,
5.16053779e+02, 5.16053779e+02, 5.16053779e+02, 5.16053779e+02,
4.99117615e+02, 4.99117615e+02, 4.99117615e+02, 4.99117615e+02,
4.86162589e+02, 4.86162589e+02, 4.86162589e+02, 4.86162589e+02,
4.77126861e+02, 4.77126861e+02, 4.77126861e+02, 4.77126861e+02,
4.71375846e+02, 4.71375846e+02, 4.71375846e+02, 4.71375846e+02,
4.68122671e+02, 4.68122671e+02, 4.68122671e+02, 4.68122671e+02,
4.66119857e+02, 4.66119857e+02, 4.66119857e+02, 4.66119857e+02,
4.64734326e+02, 4.64734326e+02, 4.64734326e+02, 4.64734326e+02,
4.63344884e+02, 4.63344884e+02, 4.63344884e+02, 4.63344884e+02,
4.61475963e+02, 4.61475963e+02, 4.61475963e+02, 4.61475963e+02,
4.58685817e+02, 4.58685817e+02, 4.58685817e+02, 4.58685817e+02,
4.56599529e+02, 4.56599529e+02, 4.56599529e+02, 4.56599529e+02,
4.55674010e+02, 4.55674010e+02, 4.55674010e+02, 4.55674010e+02,
4.55497004e+02, 4.55497004e+02, 4.55497004e+02, 4.55497004e+02,
4.56154582e+02, 4.56154582e+02, 4.56154582e+02, 4.56154582e+02,
4.58463143e+02, 4.58463143e+02, 4.58463143e+02, 4.58463143e+02,
4.61025271e+02, 4.61025271e+02, 4.61025271e+02, 4.61025271e+02,
4.62220731e+02, 4.62220731e+02, 4.62220731e+02, 4.62220731e+02,
4.62680443e+02, 4.62680443e+02, 4.62680443e+02, 4.62680443e+02,
4.62542981e+02, 4.62542981e+02, 4.62542981e+02, 4.62542981e+02,
4.61609496e+02, 4.61609496e+02, 4.61609496e+02, 4.61609496e+02,
4.60016813e+02, 4.60016813e+02, 4.60016813e+02, 4.60016813e+02,
4.57384347e+02, 4.57384347e+02, 4.57384347e+02, 4.57384347e+02,
4.50690581e+02, 4.50690581e+02, 4.50690581e+02, 4.50690581e+02,
3.00854088e+02, 3.00854088e+02, 3.00854088e+02, 3.00854088e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999965, 0.99999965, 0.99999965, 0.99999965, 0.99999883,
0.99999883, 0.99999883, 0.99999883, 0.99999668, 0.99999668,
0.99999668, 0.99999668, 0.99999087, 0.99999087, 0.99999087,
0.99999087, 0.99997599, 0.99997599, 0.99997599, 0.99997599,
0.99993958, 0.99993958, 0.99993958, 0.99993958, 0.99985468,
0.99985468, 0.99985468, 0.99985468, 0.99966655, 0.99966655,
0.99966655, 0.99966655, 0.99927127, 0.99927127, 0.99927127,
0.99927127, 0.9984861 , 0.9984861 , 0.9984861 , 0.9984861 ,
0.99701584, 0.99701584, 0.99701584, 0.99701584, 0.99442799,
0.99442799, 0.99442799, 0.99442799, 0.99015699, 0.99015699,
0.99015699, 0.99015699, 0.98355812, 0.98355812, 0.98355812,
0.98355812, 0.97401619, 0.97401619, 0.97401619, 0.97401619,
0.96108383, 0.96108383, 0.96108383, 0.96108383, 0.94459768,
0.94459768, 0.94459768, 0.94459768, 0.92471963, 0.92471963,
0.92471963, 0.92471963, 0.90188293, 0.90188293, 0.90188293,
0.90188293, 0.8766663 , 0.8766663 , 0.8766663 , 0.8766663 ,
0.84964378, 0.84964378, 0.84964378, 0.84964378, 0.82129228,
0.82129228, 0.82129228, 0.82129228, 0.79247278, 0.79247278,
0.79247278, 0.79247278, 0.76464054, 0.76464054, 0.76464054,
0.76464054, 0.73806341, 0.73806341, 0.73806341, 0.73806341,
0.71274558, 0.71274558, 0.71274558, 0.71274558, 0.68880715,
0.68880715, 0.68880715, 0.68880715, 0.66646177, 0.66646177,
0.66646177, 0.66646177, 0.64602927, 0.64602927, 0.64602927,
0.64602927, 0.62792918, 0.62792918, 0.62792918, 0.62792918,
0.61261162, 0.61261162, 0.61261162, 0.61261162, 0.60044938,
0.60044938, 0.60044938, 0.60044938, 0.59153236, 0.59153236,
0.59153236, 0.59153236, 0.58562922, 0.58562922, 0.58562922,
0.58562922, 0.58199914, 0.58199914, 0.58199914, 0.58199914,
0.57990817, 0.57990817, 0.57990817, 0.57990817, 0.57839319,
0.57839319, 0.57839319, 0.57839319, 0.57707272, 0.57707272,
0.57707272, 0.57707272, 0.57556284, 0.57556284, 0.57556284,
0.57556284, 0.57325415, 0.57325415, 0.57325415, 0.57325415,
0.57098055, 0.57098055, 0.57098055, 0.57098055, 0.5697302 ,
0.5697302 , 0.5697302 , 0.5697302 , 0.56931036, 0.56931036,
0.56931036, 0.56931036, 0.56937657, 0.56937657, 0.56937657,
0.56937657, 0.5705669 , 0.5705669 , 0.5705669 , 0.5705669 ,
0.57256309, 0.57256309, 0.57256309, 0.57256309, 0.57325538,
0.57325538, 0.57325538, 0.57325538, 0.57183133, 0.57183133,
0.57183133, 0.57183133, 0.56912943, 0.56912943, 0.56912943,
0.56912943, 0.56776262, 0.56776262, 0.56776262, 0.56776262,
0.57933344, 0.57933344, 0.57933344, 0.57933344, 0.79052151,
0.79052151, 0.79052151, 0.79052151, 4.85360037, 4.85360037,
4.85360037, 4.85360037, 5.84137874, 5.84137874, 5.84137874,
5.84137874, 4.52085551, 4.52085551, 4.52085551, 4.52085551,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974370e+01, -1.95974370e+01, -1.95974370e+01, -1.95974370e+01,
-1.95974062e+01, -1.95974062e+01, -1.95974062e+01, -1.95974062e+01,
-1.95973256e+01, -1.95973256e+01, -1.95973256e+01, -1.95973256e+01,
-1.95971084e+01, -1.95971084e+01, -1.95971084e+01, -1.95971084e+01,
-1.95965517e+01, -1.95965517e+01, -1.95965517e+01, -1.95965517e+01,
-1.95951892e+01, -1.95951892e+01, -1.95951892e+01, -1.95951892e+01,
-1.95920125e+01, -1.95920125e+01, -1.95920125e+01, -1.95920125e+01,
-1.95849721e+01, -1.95849721e+01, -1.95849721e+01, -1.95849721e+01,
-1.95701774e+01, -1.95701774e+01, -1.95701774e+01, -1.95701774e+01,
-1.95407776e+01, -1.95407776e+01, -1.95407776e+01, -1.95407776e+01,
-1.94856819e+01, -1.94856819e+01, -1.94856819e+01, -1.94856819e+01,
-1.93885625e+01, -1.93885625e+01, -1.93885625e+01, -1.93885625e+01,
-1.92278595e+01, -1.92278595e+01, -1.92278595e+01, -1.92278595e+01,
-1.89785124e+01, -1.89785124e+01, -1.89785124e+01, -1.89785124e+01,
-1.86156156e+01, -1.86156156e+01, -1.86156156e+01, -1.86156156e+01,
-1.81192078e+01, -1.81192078e+01, -1.81192078e+01, -1.81192078e+01,
-1.74785049e+01, -1.74785049e+01, -1.74785049e+01, -1.74785049e+01,
-1.66938078e+01, -1.66938078e+01, -1.66938078e+01, -1.66938078e+01,
-1.57752383e+01, -1.57752383e+01, -1.57752383e+01, -1.57752383e+01,
-1.47387955e+01, -1.47387955e+01, -1.47387955e+01, -1.47387955e+01,
-1.36009952e+01, -1.36009952e+01, -1.36009952e+01, -1.36009952e+01,
-1.23736297e+01, -1.23736297e+01, -1.23736297e+01, -1.23736297e+01,
-1.10969073e+01, -1.10969073e+01, -1.10969073e+01, -1.10969073e+01,
-9.82853423e+00, -9.82853423e+00, -9.82853423e+00, -9.82853423e+00,
-8.57904516e+00, -8.57904516e+00, -8.57904516e+00, -8.57904516e+00,
-7.35526177e+00, -7.35526177e+00, -7.35526177e+00, -7.35526177e+00,
-6.16596318e+00, -6.16596318e+00, -6.16596318e+00, -6.16596318e+00,
-5.02576394e+00, -5.02576394e+00, -5.02576394e+00, -5.02576394e+00,
-3.95645826e+00, -3.95645826e+00, -3.95645826e+00, -3.95645826e+00,
-2.98656698e+00, -2.98656698e+00, -2.98656698e+00, -2.98656698e+00,
-2.14870831e+00, -2.14870831e+00, -2.14870831e+00, -2.14870831e+00,
-1.47116257e+00, -1.47116257e+00, -1.47116257e+00, -1.47116257e+00,
-9.69349069e-01, -9.69349069e-01, -9.69349069e-01, -9.69349069e-01,
-6.31501761e-01, -6.31501761e-01, -6.31501761e-01, -6.31501761e-01,
-4.28578097e-01, -4.28578097e-01, -4.28578097e-01, -4.28578097e-01,
-3.05263503e-01, -3.05263503e-01, -3.05263503e-01, -3.05263503e-01,
-2.25158174e-01, -2.25158174e-01, -2.25158174e-01, -2.25158174e-01,
-1.50493126e-01, -1.50493126e-01, -1.50493126e-01, -1.50493126e-01,
-6.50892648e-02, -6.50892648e-02, -6.50892648e-02, -6.50892648e-02,
6.41363546e-02, 6.41363546e-02, 6.41363546e-02, 6.41363546e-02,
1.88613090e-01, 1.88613090e-01, 1.88613090e-01, 1.88613090e-01,
2.56441246e-01, 2.56441246e-01, 2.56441246e-01, 2.56441246e-01,
2.75531189e-01, 2.75531189e-01, 2.75531189e-01, 2.75531189e-01,
2.60699180e-01, 2.60699180e-01, 2.60699180e-01, 2.60699180e-01,
1.76470541e-01, 1.76470541e-01, 1.76470541e-01, 1.76470541e-01,
3.56270391e-02, 3.56270391e-02, 3.56270391e-02, 3.56270391e-02,
-4.88762956e-02, -4.88762956e-02, -4.88762956e-02, -4.88762956e-02,
-8.67370262e-02, -8.67370262e-02, -8.67370262e-02, -8.67370262e-02,
-8.76578509e-02, -8.76578509e-02, -8.76578509e-02, -8.76578509e-02,
-6.10342800e-02, -6.10342800e-02, -6.10342800e-02, -6.10342800e-02,
9.32487586e-03, 9.32487586e-03, 9.32487586e-03, 9.32487586e-03,
6.88182460e-02, 6.88182460e-02, 6.88182460e-02, 6.88182460e-02,
7.39662064e-02, 7.39662064e-02, 7.39662064e-02, 7.39662064e-02,
1.82197835e-02, 1.82197835e-02, 1.82197835e-02, 1.82197835e-02,
-2.88079782e+00, -2.88079782e+00, -2.88079782e+00, -2.88079782e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999514e+02, 9.99999514e+02, 9.99999514e+02, 9.99999514e+02,
9.99998362e+02, 9.99998362e+02, 9.99998362e+02, 9.99998362e+02,
9.99995345e+02, 9.99995345e+02, 9.99995345e+02, 9.99995345e+02,
9.99987220e+02, 9.99987220e+02, 9.99987220e+02, 9.99987220e+02,
9.99966390e+02, 9.99966390e+02, 9.99966390e+02, 9.99966390e+02,
9.99915413e+02, 9.99915413e+02, 9.99915413e+02, 9.99915413e+02,
9.99796564e+02, 9.99796564e+02, 9.99796564e+02, 9.99796564e+02,
9.99533214e+02, 9.99533214e+02, 9.99533214e+02, 9.99533214e+02,
9.98980002e+02, 9.98980002e+02, 9.98980002e+02, 9.98980002e+02,
9.97881452e+02, 9.97881452e+02, 9.97881452e+02, 9.97881452e+02,
9.95825567e+02, 9.95825567e+02, 9.95825567e+02, 9.95825567e+02,
9.92210502e+02, 9.92210502e+02, 9.92210502e+02, 9.92210502e+02,
9.86253649e+02, 9.86253649e+02, 9.86253649e+02, 9.86253649e+02,
9.77072357e+02, 9.77072357e+02, 9.77072357e+02, 9.77072357e+02,
9.63842431e+02, 9.63842431e+02, 9.63842431e+02, 9.63842431e+02,
9.45996603e+02, 9.45996603e+02, 9.45996603e+02, 9.45996603e+02,
9.23386326e+02, 9.23386326e+02, 9.23386326e+02, 9.23386326e+02,
8.96331244e+02, 8.96331244e+02, 8.96331244e+02, 8.96331244e+02,
8.65530285e+02, 8.65530285e+02, 8.65530285e+02, 8.65530285e+02,
8.31873307e+02, 8.31873307e+02, 8.31873307e+02, 8.31873307e+02,
7.96224374e+02, 7.96224374e+02, 7.96224374e+02, 7.96224374e+02,
7.59246685e+02, 7.59246685e+02, 7.59246685e+02, 7.59246685e+02,
7.22211610e+02, 7.22211610e+02, 7.22211610e+02, 7.22211610e+02,
6.86971971e+02, 6.86971971e+02, 6.86971971e+02, 6.86971971e+02,
6.53798816e+02, 6.53798816e+02, 6.53798816e+02, 6.53798816e+02,
6.22643027e+02, 6.22643027e+02, 6.22643027e+02, 6.22643027e+02,
5.93594856e+02, 5.93594856e+02, 5.93594856e+02, 5.93594856e+02,
5.66846654e+02, 5.66846654e+02, 5.66846654e+02, 5.66846654e+02,
5.42704013e+02, 5.42704013e+02, 5.42704013e+02, 5.42704013e+02,
5.21575845e+02, 5.21575845e+02, 5.21575845e+02, 5.21575845e+02,
5.03891081e+02, 5.03891081e+02, 5.03891081e+02, 5.03891081e+02,
4.89983321e+02, 4.89983321e+02, 4.89983321e+02, 4.89983321e+02,
4.79868835e+02, 4.79868835e+02, 4.79868835e+02, 4.79868835e+02,
4.73219637e+02, 4.73219637e+02, 4.73219637e+02, 4.73219637e+02,
4.69161552e+02, 4.69161552e+02, 4.69161552e+02, 4.69161552e+02,
4.66853875e+02, 4.66853875e+02, 4.66853875e+02, 4.66853875e+02,
4.65206448e+02, 4.65206448e+02, 4.65206448e+02, 4.65206448e+02,
4.63785479e+02, 4.63785479e+02, 4.63785479e+02, 4.63785479e+02,
4.62163120e+02, 4.62163120e+02, 4.62163120e+02, 4.62163120e+02,
4.59669599e+02, 4.59669599e+02, 4.59669599e+02, 4.59669599e+02,
4.57239211e+02, 4.57239211e+02, 4.57239211e+02, 4.57239211e+02,
4.55974237e+02, 4.55974237e+02, 4.55974237e+02, 4.55974237e+02,
4.55650208e+02, 4.55650208e+02, 4.55650208e+02, 4.55650208e+02,
4.55892185e+02, 4.55892185e+02, 4.55892185e+02, 4.55892185e+02,
4.57462397e+02, 4.57462397e+02, 4.57462397e+02, 4.57462397e+02,
4.60168133e+02, 4.60168133e+02, 4.60168133e+02, 4.60168133e+02,
4.61914920e+02, 4.61914920e+02, 4.61914920e+02, 4.61914920e+02,
4.62462614e+02, 4.62462614e+02, 4.62462614e+02, 4.62462614e+02,
4.62562577e+02, 4.62562577e+02, 4.62562577e+02, 4.62562577e+02,
4.62068300e+02, 4.62068300e+02, 4.62068300e+02, 4.62068300e+02,
4.60681300e+02, 4.60681300e+02, 4.60681300e+02, 4.60681300e+02,
4.59493495e+02, 4.59493495e+02, 4.59493495e+02, 4.59493495e+02,
4.57392928e+02, 4.57392928e+02, 4.57392928e+02, 4.57392928e+02,
4.53913561e+02, 4.53913561e+02, 4.53913561e+02, 4.53913561e+02,
3.30038409e+02, 3.30038409e+02, 3.30038409e+02, 3.30038409e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999867, 0.99999867, 0.99999867, 0.99999867, 0.99999578,
0.99999578, 0.99999578, 0.99999578, 0.99998875, 0.99998875,
0.99998875, 0.99998875, 0.99997098, 0.99997098, 0.99997098,
0.99997098, 0.99992836, 0.99992836, 0.99992836, 0.99992836,
0.99983087, 0.99983087, 0.99983087, 0.99983087, 0.99961879,
0.99961879, 0.99961879, 0.99961879, 0.99918112, 0.99918112,
0.99918112, 0.99918112, 0.9983266 , 0.9983266 , 0.9983266 ,
0.9983266 , 0.99675268, 0.99675268, 0.99675268, 0.99675268,
0.99402545, 0.99402545, 0.99402545, 0.99402545, 0.98958998,
0.98958998, 0.98958998, 0.98958998, 0.98282879, 0.98282879,
0.98282879, 0.98282879, 0.97316956, 0.97316956, 0.97316956,
0.97316956, 0.96021489, 0.96021489, 0.96021489, 0.96021489,
0.94384469, 0.94384469, 0.94384469, 0.94384469, 0.92424484,
0.92424484, 0.92424484, 0.92424484, 0.90184854, 0.90184854,
0.90184854, 0.90184854, 0.87721523, 0.87721523, 0.87721523,
0.87721523, 0.85089155, 0.85089155, 0.85089155, 0.85089155,
0.82332582, 0.82332582, 0.82332582, 0.82332582, 0.79527381,
0.79527381, 0.79527381, 0.79527381, 0.76809201, 0.76809201,
0.76809201, 0.76809201, 0.74208156, 0.74208156, 0.74208156,
0.74208156, 0.71723328, 0.71723328, 0.71723328, 0.71723328,
0.69364464, 0.69364464, 0.69364464, 0.69364464, 0.67149312,
0.67149312, 0.67149312, 0.67149312, 0.65105899, 0.65105899,
0.65105899, 0.65105899, 0.63271791, 0.63271791, 0.63271791,
0.63271791, 0.61690679, 0.61690679, 0.61690679, 0.61690679,
0.60401515, 0.60401515, 0.60401515, 0.60401515, 0.59425918,
0.59425918, 0.59425918, 0.59425918, 0.58748277, 0.58748277,
0.58748277, 0.58748277, 0.58322875, 0.58322875, 0.58322875,
0.58322875, 0.58062538, 0.58062538, 0.58062538, 0.58062538,
0.57898247, 0.57898247, 0.57898247, 0.57898247, 0.57755952,
0.57755952, 0.57755952, 0.57755952, 0.57611261, 0.57611261,
0.57611261, 0.57611261, 0.57414348, 0.57414348, 0.57414348,
0.57414348, 0.57178794, 0.57178794, 0.57178794, 0.57178794,
0.57021715, 0.57021715, 0.57021715, 0.57021715, 0.56956111,
0.56956111, 0.56956111, 0.56956111, 0.5694658 , 0.5694658 ,
0.5694658 , 0.5694658 , 0.57015934, 0.57015934, 0.57015934,
0.57015934, 0.57215308, 0.57215308, 0.57215308, 0.57215308,
0.57357105, 0.57357105, 0.57357105, 0.57357105, 0.57362037,
0.57362037, 0.57362037, 0.57362037, 0.57184744, 0.57184744,
0.57184744, 0.57184744, 0.56886696, 0.56886696, 0.56886696,
0.56886696, 0.56703172, 0.56703172, 0.56703172, 0.56703172,
0.57864765, 0.57864765, 0.57864765, 0.57864765, 0.78978655,
0.78978655, 0.78978655, 0.78978655, 4.84874627, 4.84874627,
4.84874627, 4.84874627, 5.86893587, 5.86893587, 5.86893587,
5.86893587, 4.87589923, 4.87589923, 4.87589923, 4.87589923,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974004e+01, -1.95974004e+01, -1.95974004e+01, -1.95974004e+01,
-1.95972922e+01, -1.95972922e+01, -1.95972922e+01, -1.95972922e+01,
-1.95970290e+01, -1.95970290e+01, -1.95970290e+01, -1.95970290e+01,
-1.95963642e+01, -1.95963642e+01, -1.95963642e+01, -1.95963642e+01,
-1.95947694e+01, -1.95947694e+01, -1.95947694e+01, -1.95947694e+01,
-1.95911214e+01, -1.95911214e+01, -1.95911214e+01, -1.95911214e+01,
-1.95831849e+01, -1.95831849e+01, -1.95831849e+01, -1.95831849e+01,
-1.95668027e+01, -1.95668027e+01, -1.95668027e+01, -1.95668027e+01,
-1.95348031e+01, -1.95348031e+01, -1.95348031e+01, -1.95348031e+01,
-1.94758134e+01, -1.94758134e+01, -1.94758134e+01, -1.94758134e+01,
-1.93734365e+01, -1.93734365e+01, -1.93734365e+01, -1.93734365e+01,
-1.92064799e+01, -1.92064799e+01, -1.92064799e+01, -1.92064799e+01,
-1.89508611e+01, -1.89508611e+01, -1.89508611e+01, -1.89508611e+01,
-1.85832555e+01, -1.85832555e+01, -1.85832555e+01, -1.85832555e+01,
-1.80856173e+01, -1.80856173e+01, -1.80856173e+01, -1.80856173e+01,
-1.74489569e+01, -1.74489569e+01, -1.74489569e+01, -1.74489569e+01,
-1.66748031e+01, -1.66748031e+01, -1.66748031e+01, -1.66748031e+01,
-1.57737222e+01, -1.57737222e+01, -1.57737222e+01, -1.57737222e+01,
-1.47614795e+01, -1.47614795e+01, -1.47614795e+01, -1.47614795e+01,
-1.36540462e+01, -1.36540462e+01, -1.36540462e+01, -1.36540462e+01,
-1.24627500e+01, -1.24627500e+01, -1.24627500e+01, -1.24627500e+01,
-1.12223935e+01, -1.12223935e+01, -1.12223935e+01, -1.12223935e+01,
-9.98784228e+00, -9.98784228e+00, -9.98784228e+00, -9.98784228e+00,
-8.76973584e+00, -8.76973584e+00, -8.76973584e+00, -8.76973584e+00,
-7.57415342e+00, -7.57415342e+00, -7.57415342e+00, -7.57415342e+00,
-6.40832079e+00, -6.40832079e+00, -6.40832079e+00, -6.40832079e+00,
-5.28453104e+00, -5.28453104e+00, -5.28453104e+00, -5.28453104e+00,
-4.22138557e+00, -4.22138557e+00, -4.22138557e+00, -4.22138557e+00,
-3.24449956e+00, -3.24449956e+00, -3.24449956e+00, -3.24449956e+00,
-2.38417185e+00, -2.38417185e+00, -2.38417185e+00, -2.38417185e+00,
-1.67026111e+00, -1.67026111e+00, -1.67026111e+00, -1.67026111e+00,
-1.12140919e+00, -1.12140919e+00, -1.12140919e+00, -1.12140919e+00,
-7.38356684e-01, -7.38356684e-01, -7.38356684e-01, -7.38356684e-01,
-4.93334980e-01, -4.93334980e-01, -4.93334980e-01, -4.93334980e-01,
-3.49056282e-01, -3.49056282e-01, -3.49056282e-01, -3.49056282e-01,
-2.52375478e-01, -2.52375478e-01, -2.52375478e-01, -2.52375478e-01,
-1.75397469e-01, -1.75397469e-01, -1.75397469e-01, -1.75397469e-01,
-9.51083212e-02, -9.51083212e-02, -9.51083212e-02, -9.51083212e-02,
1.66418888e-02, 1.66418888e-02, 1.66418888e-02, 1.66418888e-02,
1.50553797e-01, 1.50553797e-01, 1.50553797e-01, 1.50553797e-01,
2.34098283e-01, 2.34098283e-01, 2.34098283e-01, 2.34098283e-01,
2.65453663e-01, 2.65453663e-01, 2.65453663e-01, 2.65453663e-01,
2.65583246e-01, 2.65583246e-01, 2.65583246e-01, 2.65583246e-01,
2.15878598e-01, 2.15878598e-01, 2.15878598e-01, 2.15878598e-01,
8.50200679e-02, 8.50200679e-02, 8.50200679e-02, 8.50200679e-02,
-2.53150527e-02, -2.53150527e-02, -2.53150527e-02, -2.53150527e-02,
-7.07834536e-02, -7.07834536e-02, -7.07834536e-02, -7.07834536e-02,
-8.52030740e-02, -8.52030740e-02, -8.52030740e-02, -8.52030740e-02,
-7.38433396e-02, -7.38433396e-02, -7.38433396e-02, -7.38433396e-02,
-1.83894011e-02, -1.83894011e-02, -1.83894011e-02, -1.83894011e-02,
4.92953993e-02, 4.92953993e-02, 4.92953993e-02, 4.92953993e-02,
8.87128688e-02, 8.87128688e-02, 8.87128688e-02, 8.87128688e-02,
7.93095475e-02, 7.93095475e-02, 7.93095475e-02, 7.93095475e-02,
-4.65037464e-03, -4.65037464e-03, -4.65037464e-03, -4.65037464e-03,
-2.35462822e+00, -2.35462822e+00, -2.35462822e+00, -2.35462822e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99998143e+02, 9.99998143e+02, 9.99998143e+02, 9.99998143e+02,
9.99994094e+02, 9.99994094e+02, 9.99994094e+02, 9.99994094e+02,
9.99984249e+02, 9.99984249e+02, 9.99984249e+02, 9.99984249e+02,
9.99959373e+02, 9.99959373e+02, 9.99959373e+02, 9.99959373e+02,
9.99899705e+02, 9.99899705e+02, 9.99899705e+02, 9.99899705e+02,
9.99763230e+02, 9.99763230e+02, 9.99763230e+02, 9.99763230e+02,
9.99466373e+02, 9.99466373e+02, 9.99466373e+02, 9.99466373e+02,
9.98853848e+02, 9.98853848e+02, 9.98853848e+02, 9.98853848e+02,
9.97658336e+02, 9.97658336e+02, 9.97658336e+02, 9.97658336e+02,
9.95457711e+02, 9.95457711e+02, 9.95457711e+02, 9.95457711e+02,
9.91648494e+02, 9.91648494e+02, 9.91648494e+02, 9.91648494e+02,
9.85463501e+02, 9.85463501e+02, 9.85463501e+02, 9.85463501e+02,
9.76058768e+02, 9.76058768e+02, 9.76058768e+02, 9.76058768e+02,
9.62670205e+02, 9.62670205e+02, 9.62670205e+02, 9.62670205e+02,
9.44799218e+02, 9.44799218e+02, 9.44799218e+02, 9.44799218e+02,
9.22354408e+02, 9.22354408e+02, 9.22354408e+02, 9.22354408e+02,
8.95683407e+02, 8.95683407e+02, 8.95683407e+02, 8.95683407e+02,
8.65478073e+02, 8.65478073e+02, 8.65478073e+02, 8.65478073e+02,
8.32594221e+02, 8.32594221e+02, 8.32594221e+02, 8.32594221e+02,
7.97851707e+02, 7.97851707e+02, 7.97851707e+02, 7.97851707e+02,
7.61874003e+02, 7.61874003e+02, 7.61874003e+02, 7.61874003e+02,
7.25777678e+02, 7.25777678e+02, 7.25777678e+02, 7.25777678e+02,
6.91306690e+02, 6.91306690e+02, 6.91306690e+02, 6.91306690e+02,
6.58775118e+02, 6.58775118e+02, 6.58775118e+02, 6.58775118e+02,
6.28122753e+02, 6.28122753e+02, 6.28122753e+02, 6.28122753e+02,
5.99419362e+02, 5.99419362e+02, 5.99419362e+02, 5.99419362e+02,
5.72823606e+02, 5.72823606e+02, 5.72823606e+02, 5.72823606e+02,
5.48603814e+02, 5.48603814e+02, 5.48603814e+02, 5.48603814e+02,
5.27126068e+02, 5.27126068e+02, 5.27126068e+02, 5.27126068e+02,
5.08814510e+02, 5.08814510e+02, 5.08814510e+02, 5.08814510e+02,
4.94028498e+02, 4.94028498e+02, 4.94028498e+02, 4.94028498e+02,
4.82931682e+02, 4.82931682e+02, 4.82931682e+02, 4.82931682e+02,
4.75278864e+02, 4.75278864e+02, 4.75278864e+02, 4.75278864e+02,
4.70507508e+02, 4.70507508e+02, 4.70507508e+02, 4.70507508e+02,
4.67612437e+02, 4.67612437e+02, 4.67612437e+02, 4.67612437e+02,
4.65811203e+02, 4.65811203e+02, 4.65811203e+02, 4.65811203e+02,
4.64268238e+02, 4.64268238e+02, 4.64268238e+02, 4.64268238e+02,
4.62705833e+02, 4.62705833e+02, 4.62705833e+02, 4.62705833e+02,
4.60568868e+02, 4.60568868e+02, 4.60568868e+02, 4.60568868e+02,
4.58024576e+02, 4.58024576e+02, 4.58024576e+02, 4.58024576e+02,
4.56383188e+02, 4.56383188e+02, 4.56383188e+02, 4.56383188e+02,
4.55784075e+02, 4.55784075e+02, 4.55784075e+02, 4.55784075e+02,
4.55824044e+02, 4.55824044e+02, 4.55824044e+02, 4.55824044e+02,
4.56769147e+02, 4.56769147e+02, 4.56769147e+02, 4.56769147e+02,
4.59243942e+02, 4.59243942e+02, 4.59243942e+02, 4.59243942e+02,
4.61303394e+02, 4.61303394e+02, 4.61303394e+02, 4.61303394e+02,
4.62328948e+02, 4.62328948e+02, 4.62328948e+02, 4.62328948e+02,
4.62486115e+02, 4.62486115e+02, 4.62486115e+02, 4.62486115e+02,
4.62267075e+02, 4.62267075e+02, 4.62267075e+02, 4.62267075e+02,
4.61235100e+02, 4.61235100e+02, 4.61235100e+02, 4.61235100e+02,
4.59928707e+02, 4.59928707e+02, 4.59928707e+02, 4.59928707e+02,
4.59250045e+02, 4.59250045e+02, 4.59250045e+02, 4.59250045e+02,
4.57693976e+02, 4.57693976e+02, 4.57693976e+02, 4.57693976e+02,
4.57023386e+02, 4.57023386e+02, 4.57023386e+02, 4.57023386e+02,
3.58689867e+02, 3.58689867e+02, 3.58689867e+02, 3.58689867e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999538, 0.99999538, 0.99999538, 0.99999538, 0.99998612,
0.99998612, 0.99998612, 0.99998612, 0.99996523, 0.99996523,
0.99996523, 0.99996523, 0.99991566, 0.99991566, 0.99991566,
0.99991566, 0.99980442, 0.99980442, 0.99980442, 0.99980442,
0.99956667, 0.99956667, 0.99956667, 0.99956667, 0.99908438,
0.99908438, 0.99908438, 0.99908438, 0.9981582 , 0.9981582 ,
0.9981582 , 0.9981582 , 0.99647912, 0.99647912, 0.99647912,
0.99647912, 0.99361312, 0.99361312, 0.99361312, 0.99361312,
0.98901706, 0.98901706, 0.98901706, 0.98901706, 0.98210095,
0.98210095, 0.98210095, 0.98210095, 0.97233385, 0.97233385,
0.97233385, 0.97233385, 0.95936505, 0.95936505, 0.95936505,
0.95936505, 0.94311347, 0.94311347, 0.94311347, 0.94311347,
0.92378545, 0.92378545, 0.92378545, 0.92378545, 0.90181228,
0.90181228, 0.90181228, 0.90181228, 0.87773428, 0.87773428,
0.87773428, 0.87773428, 0.85207217, 0.85207217, 0.85207217,
0.85207217, 0.82524779, 0.82524779, 0.82524779, 0.82524779,
0.79793012, 0.79793012, 0.79793012, 0.79793012, 0.77137347,
0.77137347, 0.77137347, 0.77137347, 0.74591438, 0.74591438,
0.74591438, 0.74591438, 0.72153077, 0.72153077, 0.72153077,
0.72153077, 0.69830271, 0.69830271, 0.69830271, 0.69830271,
0.67637729, 0.67637729, 0.67637729, 0.67637729, 0.6559935 ,
0.6559935 , 0.6559935 , 0.6559935 , 0.63749026, 0.63749026,
0.63749026, 0.63749026, 0.62127461, 0.62127461, 0.62127461,
0.62127461, 0.60775437, 0.60775437, 0.60775437, 0.60775437,
0.59719597, 0.59719597, 0.59719597, 0.59719597, 0.58961078,
0.58961078, 0.58961078, 0.58961078, 0.58459875, 0.58459875,
0.58459875, 0.58459875, 0.58154644, 0.58154644, 0.58154644,
0.58154644, 0.57956789, 0.57956789, 0.57956789, 0.57956789,
0.57809384, 0.57809384, 0.57809384, 0.57809384, 0.5766483 ,
0.5766483 , 0.5766483 , 0.5766483 , 0.57490927, 0.57490927,
0.57490927, 0.57490927, 0.57258674, 0.57258674, 0.57258674,
0.57258674, 0.57080227, 0.57080227, 0.57080227, 0.57080227,
0.56988942, 0.56988942, 0.56988942, 0.56988942, 0.56961772,
0.56961772, 0.56961772, 0.56961772, 0.56992665, 0.56992665,
0.56992665, 0.56992665, 0.57149984, 0.57149984, 0.57149984,
0.57149984, 0.57344071, 0.57344071, 0.57344071, 0.57344071,
0.5741351 , 0.5741351 , 0.5741351 , 0.5741351 , 0.57370279,
0.57370279, 0.57370279, 0.57370279, 0.57173725, 0.57173725,
0.57173725, 0.57173725, 0.56835509, 0.56835509, 0.56835509,
0.56835509, 0.56625614, 0.56625614, 0.56625614, 0.56625614,
0.57818403, 0.57818403, 0.57818403, 0.57818403, 0.78902347,
0.78902347, 0.78902347, 0.78902347, 4.84563091, 4.84563091,
4.84563091, 4.84563091, 5.89681659, 5.89681659, 5.89681659,
5.89681659, 5.22913532, 5.22913532, 5.22913532, 5.22913532,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95972771e+01, -1.95972771e+01, -1.95972771e+01, -1.95972771e+01,
-1.95969308e+01, -1.95969308e+01, -1.95969308e+01, -1.95969308e+01,
-1.95961489e+01, -1.95961489e+01, -1.95961489e+01, -1.95961489e+01,
-1.95942943e+01, -1.95942943e+01, -1.95942943e+01, -1.95942943e+01,
-1.95901316e+01, -1.95901316e+01, -1.95901316e+01, -1.95901316e+01,
-1.95812342e+01, -1.95812342e+01, -1.95812342e+01, -1.95812342e+01,
-1.95631808e+01, -1.95631808e+01, -1.95631808e+01, -1.95631808e+01,
-1.95284944e+01, -1.95284944e+01, -1.95284944e+01, -1.95284944e+01,
-1.94655530e+01, -1.94655530e+01, -1.94655530e+01, -1.94655530e+01,
-1.93579374e+01, -1.93579374e+01, -1.93579374e+01, -1.93579374e+01,
-1.91848670e+01, -1.91848670e+01, -1.91848670e+01, -1.91848670e+01,
-1.89232491e+01, -1.89232491e+01, -1.89232491e+01, -1.89232491e+01,
-1.85512896e+01, -1.85512896e+01, -1.85512896e+01, -1.85512896e+01,
-1.80527404e+01, -1.80527404e+01, -1.80527404e+01, -1.80527404e+01,
-1.74202459e+01, -1.74202459e+01, -1.74202459e+01, -1.74202459e+01,
-1.66564095e+01, -1.66564095e+01, -1.66564095e+01, -1.66564095e+01,
-1.57721388e+01, -1.57721388e+01, -1.57721388e+01, -1.57721388e+01,
-1.47829225e+01, -1.47829225e+01, -1.47829225e+01, -1.47829225e+01,
-1.37041866e+01, -1.37041866e+01, -1.37041866e+01, -1.37041866e+01,
-1.25468001e+01, -1.25468001e+01, -1.25468001e+01, -1.25468001e+01,
-1.13410969e+01, -1.13410969e+01, -1.13410969e+01, -1.13410969e+01,
-1.01388758e+01, -1.01388758e+01, -1.01388758e+01, -1.01388758e+01,
-8.95090319e+00, -8.95090319e+00, -8.95090319e+00, -8.95090319e+00,
-7.78279664e+00, -7.78279664e+00, -7.78279664e+00, -7.78279664e+00,
-6.64045094e+00, -6.64045094e+00, -6.64045094e+00, -6.64045094e+00,
-5.53417374e+00, -5.53417374e+00, -5.53417374e+00, -5.53417374e+00,
-4.47992916e+00, -4.47992916e+00, -4.47992916e+00, -4.47992916e+00,
-3.50010154e+00, -3.50010154e+00, -3.50010154e+00, -3.50010154e+00,
-2.62282955e+00, -2.62282955e+00, -2.62282955e+00, -2.62282955e+00,
-1.87734906e+00, -1.87734906e+00, -1.87734906e+00, -1.87734906e+00,
-1.28680720e+00, -1.28680720e+00, -1.28680720e+00, -1.28680720e+00,
-8.56753744e-01, -8.56753744e-01, -8.56753744e-01, -8.56753744e-01,
-5.73064847e-01, -5.73064847e-01, -5.73064847e-01, -5.73064847e-01,
-3.96338091e-01, -3.96338091e-01, -3.96338091e-01, -3.96338091e-01,
-2.87478608e-01, -2.87478608e-01, -2.87478608e-01, -2.87478608e-01,
-2.01767988e-01, -2.01767988e-01, -2.01767988e-01, -2.01767988e-01,
-1.21315708e-01, -1.21315708e-01, -1.21315708e-01, -1.21315708e-01,
-2.45951015e-02, -2.45951015e-02, -2.45951015e-02, -2.45951015e-02,
1.06631073e-01, 1.06631073e-01, 1.06631073e-01, 1.06631073e-01,
2.08068982e-01, 2.08068982e-01, 2.08068982e-01, 2.08068982e-01,
2.54184782e-01, 2.54184782e-01, 2.54184782e-01, 2.54184782e-01,
2.62270660e-01, 2.62270660e-01, 2.62270660e-01, 2.62270660e-01,
2.37118542e-01, 2.37118542e-01, 2.37118542e-01, 2.37118542e-01,
1.37104974e-01, 1.37104974e-01, 1.37104974e-01, 1.37104974e-01,
1.14799455e-02, 1.14799455e-02, 1.14799455e-02, 1.14799455e-02,
-5.88503272e-02, -5.88503272e-02, -5.88503272e-02, -5.88503272e-02,
-7.72674055e-02, -7.72674055e-02, -7.72674055e-02, -7.72674055e-02,
-7.69762484e-02, -7.69762484e-02, -7.69762484e-02, -7.69762484e-02,
-4.30209826e-02, -4.30209826e-02, -4.30209826e-02, -4.30209826e-02,
2.68143715e-02, 2.68143715e-02, 2.68143715e-02, 2.68143715e-02,
7.36951015e-02, 7.36951015e-02, 7.36951015e-02, 7.36951015e-02,
1.00445939e-01, 1.00445939e-01, 1.00445939e-01, 1.00445939e-01,
7.72401459e-02, 7.72401459e-02, 7.72401459e-02, 7.72401459e-02,
-3.04146394e-02, -3.04146394e-02, -3.04146394e-02, -3.04146394e-02,
-1.89020525e+00, -1.89020525e+00, -1.89020525e+00, -1.89020525e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99993532e+02, 9.99993532e+02, 9.99993532e+02, 9.99993532e+02,
9.99980573e+02, 9.99980573e+02, 9.99980573e+02, 9.99980573e+02,
9.99951320e+02, 9.99951320e+02, 9.99951320e+02, 9.99951320e+02,
9.99881930e+02, 9.99881930e+02, 9.99881930e+02, 9.99881930e+02,
9.99726202e+02, 9.99726202e+02, 9.99726202e+02, 9.99726202e+02,
9.99393418e+02, 9.99393418e+02, 9.99393418e+02, 9.99393418e+02,
9.98718474e+02, 9.98718474e+02, 9.98718474e+02, 9.98718474e+02,
9.97422790e+02, 9.97422790e+02, 9.97422790e+02, 9.97422790e+02,
9.95075374e+02, 9.95075374e+02, 9.95075374e+02, 9.95075374e+02,
9.91072910e+02, 9.91072910e+02, 9.91072910e+02, 9.91072910e+02,
9.84665288e+02, 9.84665288e+02, 9.84665288e+02, 9.84665288e+02,
9.75047519e+02, 9.75047519e+02, 9.75047519e+02, 9.75047519e+02,
9.61513458e+02, 9.61513458e+02, 9.61513458e+02, 9.61513458e+02,
9.43628510e+02, 9.43628510e+02, 9.43628510e+02, 9.43628510e+02,
9.21352632e+02, 9.21352632e+02, 9.21352632e+02, 9.21352632e+02,
8.95056756e+02, 8.95056756e+02, 8.95056756e+02, 8.95056756e+02,
8.65423729e+02, 8.65423729e+02, 8.65423729e+02, 8.65423729e+02,
8.33276228e+02, 8.33276228e+02, 8.33276228e+02, 8.33276228e+02,
7.99392547e+02, 7.99392547e+02, 7.99392547e+02, 7.99392547e+02,
7.64359306e+02, 7.64359306e+02, 7.64359306e+02, 7.64359306e+02,
7.29165290e+02, 7.29165290e+02, 7.29165290e+02, 7.29165290e+02,
6.95434650e+02, 6.95434650e+02, 6.95434650e+02, 6.95434650e+02,
6.63532667e+02, 6.63532667e+02, 6.63532667e+02, 6.63532667e+02,
6.33384943e+02, 6.33384943e+02, 6.33384943e+02, 6.33384943e+02,
6.05045669e+02, 6.05045669e+02, 6.05045669e+02, 6.05045669e+02,
5.78644436e+02, 5.78644436e+02, 5.78644436e+02, 5.78644436e+02,
5.54410312e+02, 5.54410312e+02, 5.54410312e+02, 5.54410312e+02,
5.32675821e+02, 5.32675821e+02, 5.32675821e+02, 5.32675821e+02,
5.13838499e+02, 5.13838499e+02, 5.13838499e+02, 5.13838499e+02,
4.98286665e+02, 4.98286665e+02, 4.98286665e+02, 4.98286665e+02,
4.86243970e+02, 4.86243970e+02, 4.86243970e+02, 4.86243970e+02,
4.77654925e+02, 4.77654925e+02, 4.77654925e+02, 4.77654925e+02,
4.72017226e+02, 4.72017226e+02, 4.72017226e+02, 4.72017226e+02,
4.68609235e+02, 4.68609235e+02, 4.68609235e+02, 4.68609235e+02,
4.66420881e+02, 4.66420881e+02, 4.66420881e+02, 4.66420881e+02,
4.64810868e+02, 4.64810868e+02, 4.64810868e+02, 4.64810868e+02,
4.63243299e+02, 4.63243299e+02, 4.63243299e+02, 4.63243299e+02,
4.61353730e+02, 4.61353730e+02, 4.61353730e+02, 4.61353730e+02,
4.58821840e+02, 4.58821840e+02, 4.58821840e+02, 4.58821840e+02,
4.56919372e+02, 4.56919372e+02, 4.56919372e+02, 4.56919372e+02,
4.56015430e+02, 4.56015430e+02, 4.56015430e+02, 4.56015430e+02,
4.55847073e+02, 4.55847073e+02, 4.55847073e+02, 4.55847073e+02,
4.56339867e+02, 4.56339867e+02, 4.56339867e+02, 4.56339867e+02,
4.58273518e+02, 4.58273518e+02, 4.58273518e+02, 4.58273518e+02,
4.60691622e+02, 4.60691622e+02, 4.60691622e+02, 4.60691622e+02,
4.61940052e+02, 4.61940052e+02, 4.61940052e+02, 4.61940052e+02,
4.62423882e+02, 4.62423882e+02, 4.62423882e+02, 4.62423882e+02,
4.62366066e+02, 4.62366066e+02, 4.62366066e+02, 4.62366066e+02,
4.61687055e+02, 4.61687055e+02, 4.61687055e+02, 4.61687055e+02,
4.60352457e+02, 4.60352457e+02, 4.60352457e+02, 4.60352457e+02,
4.59436330e+02, 4.59436330e+02, 4.59436330e+02, 4.59436330e+02,
4.59072327e+02, 4.59072327e+02, 4.59072327e+02, 4.59072327e+02,
4.58356748e+02, 4.58356748e+02, 4.58356748e+02, 4.58356748e+02,
4.60139027e+02, 4.60139027e+02, 4.60139027e+02, 4.60139027e+02,
3.86730264e+02, 3.86730264e+02, 3.86730264e+02, 3.86730264e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99998526, 0.99998526, 0.99998526, 0.99998526, 0.99995818,
0.99995818, 0.99995818, 0.99995818, 0.99990147, 0.99990147,
0.99990147, 0.99990147, 0.99977516, 0.99977516, 0.99977516,
0.99977516, 0.99951002, 0.99951002, 0.99951002, 0.99951002,
0.99898094, 0.99898094, 0.99898094, 0.99898094, 0.99798092,
0.99798092, 0.99798092, 0.99798092, 0.99619543, 0.99619543,
0.99619543, 0.99619543, 0.99319149, 0.99319149, 0.99319149,
0.99319149, 0.98843886, 0.98843886, 0.98843886, 0.98843886,
0.98137507, 0.98137507, 0.98137507, 0.98137507, 0.97150907,
0.97150907, 0.97150907, 0.97150907, 0.95853367, 0.95853367,
0.95853367, 0.95853367, 0.94240299, 0.94240299, 0.94240299,
0.94240299, 0.92334056, 0.92334056, 0.92334056, 0.92334056,
0.90177433, 0.90177433, 0.90177433, 0.90177433, 0.87822575,
0.87822575, 0.87822575, 0.87822575, 0.85319098, 0.85319098,
0.85319098, 0.85319098, 0.82706749, 0.82706749, 0.82706749,
0.82706749, 0.8004512 , 0.8004512 , 0.8004512 , 0.8004512 ,
0.77449713, 0.77449713, 0.77449713, 0.77449713, 0.74957228,
0.74957228, 0.74957228, 0.74957228, 0.72564661, 0.72564661,
0.72564661, 0.72564661, 0.70278531, 0.70278531, 0.70278531,
0.70278531, 0.68110979, 0.68110979, 0.68110979, 0.68110979,
0.66082377, 0.66082377, 0.66082377, 0.66082377, 0.64222378,
0.64222378, 0.64222378, 0.64222378, 0.62568987, 0.62568987,
0.62568987, 0.62568987, 0.61162285, 0.61162285, 0.61162285,
0.61162285, 0.60034623, 0.60034623, 0.60034623, 0.60034623,
0.5919485 , 0.5919485 , 0.5919485 , 0.5919485 , 0.58621901,
0.58621901, 0.58621901, 0.58621901, 0.58256005, 0.58256005,
0.58256005, 0.58256005, 0.58029577, 0.58029577, 0.58029577,
0.58029577, 0.57863174, 0.57863174, 0.57863174, 0.57863174,
0.57716122, 0.57716122, 0.57716122, 0.57716122, 0.57557548,
0.57557548, 0.57557548, 0.57557548, 0.57342052, 0.57342052,
0.57342052, 0.57342052, 0.57141033, 0.57141033, 0.57141033,
0.57141033, 0.57026937, 0.57026937, 0.57026937, 0.57026937,
0.56984951, 0.56984951, 0.56984951, 0.56984951, 0.5698766 ,
0.5698766 , 0.5698766 , 0.5698766 , 0.57088644, 0.57088644,
0.57088644, 0.57088644, 0.5729459 , 0.5729459 , 0.5729459 ,
0.5729459 , 0.57423757, 0.57423757, 0.57423757, 0.57423757,
0.574373 , 0.574373 , 0.574373 , 0.574373 , 0.57363822,
0.57363822, 0.57363822, 0.57363822, 0.57142449, 0.57142449,
0.57142449, 0.57142449, 0.56761669, 0.56761669, 0.56761669,
0.56761669, 0.56571332, 0.56571332, 0.56571332, 0.56571332,
0.57789593, 0.57789593, 0.57789593, 0.57789593, 0.78847243,
0.78847243, 0.78847243, 0.78847243, 4.84561161, 4.84561161,
4.84561161, 4.84561161, 5.92487332, 5.92487332, 5.92487332,
5.92487332, 5.56008978, 5.56008978, 5.56008978, 5.56008978,
1.01890847, 1.01890847, 1.01890847, 1.01890847, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95968986e+01, -1.95968986e+01, -1.95968986e+01, -1.95968986e+01,
-1.95958851e+01, -1.95958851e+01, -1.95958851e+01, -1.95958851e+01,
-1.95937634e+01, -1.95937634e+01, -1.95937634e+01, -1.95937634e+01,
-1.95890367e+01, -1.95890367e+01, -1.95890367e+01, -1.95890367e+01,
-1.95791140e+01, -1.95791140e+01, -1.95791140e+01, -1.95791140e+01,
-1.95593077e+01, -1.95593077e+01, -1.95593077e+01, -1.95593077e+01,
-1.95218526e+01, -1.95218526e+01, -1.95218526e+01, -1.95218526e+01,
-1.94549100e+01, -1.94549100e+01, -1.94549100e+01, -1.94549100e+01,
-1.93420837e+01, -1.93420837e+01, -1.93420837e+01, -1.93420837e+01,
-1.91630441e+01, -1.91630441e+01, -1.91630441e+01, -1.91630441e+01,
-1.88956946e+01, -1.88956946e+01, -1.88956946e+01, -1.88956946e+01,
-1.85197193e+01, -1.85197193e+01, -1.85197193e+01, -1.85197193e+01,
-1.80205547e+01, -1.80205547e+01, -1.80205547e+01, -1.80205547e+01,
-1.73923318e+01, -1.73923318e+01, -1.73923318e+01, -1.73923318e+01,
-1.66385920e+01, -1.66385920e+01, -1.66385920e+01, -1.66385920e+01,
-1.57704949e+01, -1.57704949e+01, -1.57704949e+01, -1.57704949e+01,
-1.48032199e+01, -1.48032199e+01, -1.48032199e+01, -1.48032199e+01,
-1.37516531e+01, -1.37516531e+01, -1.37516531e+01, -1.37516531e+01,
-1.26262172e+01, -1.26262172e+01, -1.26262172e+01, -1.26262172e+01,
-1.14535020e+01, -1.14535020e+01, -1.14535020e+01, -1.14535020e+01,
-1.02821453e+01, -1.02821453e+01, -1.02821453e+01, -1.02821453e+01,
-9.12320232e+00, -9.12320232e+00, -9.12320232e+00, -9.12320232e+00,
-7.98177804e+00, -7.98177804e+00, -7.98177804e+00, -7.98177804e+00,
-6.86275610e+00, -6.86275610e+00, -6.86275610e+00, -6.86275610e+00,
-5.77476709e+00, -5.77476709e+00, -5.77476709e+00, -5.77476709e+00,
-4.73138920e+00, -4.73138920e+00, -4.73138920e+00, -4.73138920e+00,
-3.75227727e+00, -3.75227727e+00, -3.75227727e+00, -3.75227727e+00,
-2.86276827e+00, -2.86276827e+00, -2.86276827e+00, -2.86276827e+00,
-2.09133332e+00, -2.09133332e+00, -2.09133332e+00, -2.09133332e+00,
-1.46258067e+00, -1.46258067e+00, -1.46258067e+00, -1.46258067e+00,
-9.89318476e-01, -9.89318476e-01, -9.89318476e-01, -9.89318476e-01,
-6.62514752e-01, -6.62514752e-01, -6.62514752e-01, -6.62514752e-01,
-4.55770547e-01, -4.55770547e-01, -4.55770547e-01, -4.55770547e-01,
-3.24250432e-01, -3.24250432e-01, -3.24250432e-01, -3.24250432e-01,
-2.32672703e-01, -2.32672703e-01, -2.32672703e-01, -2.32672703e-01,
-1.48617001e-01, -1.48617001e-01, -1.48617001e-01, -1.48617001e-01,
-5.86592212e-02, -5.86592212e-02, -5.86592212e-02, -5.86592212e-02,
6.31526138e-02, 6.31526138e-02, 6.31526138e-02, 6.31526138e-02,
1.75222055e-01, 1.75222055e-01, 1.75222055e-01, 1.75222055e-01,
2.38802823e-01, 2.38802823e-01, 2.38802823e-01, 2.38802823e-01,
2.56988016e-01, 2.56988016e-01, 2.56988016e-01, 2.56988016e-01,
2.47598723e-01, 2.47598723e-01, 2.47598723e-01, 2.47598723e-01,
1.80365419e-01, 1.80365419e-01, 1.80365419e-01, 1.80365419e-01,
5.14782436e-02, 5.14782436e-02, 5.14782436e-02, 5.14782436e-02,
-3.39863591e-02, -3.39863591e-02, -3.39863591e-02, -3.39863591e-02,
-7.21591911e-02, -7.21591911e-02, -7.21591911e-02, -7.21591911e-02,
-7.57049020e-02, -7.57049020e-02, -7.57049020e-02, -7.57049020e-02,
-5.76945925e-02, -5.76945925e-02, -5.76945925e-02, -5.76945925e-02,
2.02918872e-03, 2.02918872e-03, 2.02918872e-03, 2.02918872e-03,
5.93265617e-02, 5.93265617e-02, 5.93265617e-02, 5.93265617e-02,
8.69993438e-02, 8.69993438e-02, 8.69993438e-02, 8.69993438e-02,
9.91468953e-02, 9.91468953e-02, 9.91468953e-02, 9.91468953e-02,
6.81715401e-02, 6.81715401e-02, 6.81715401e-02, 6.81715401e-02,
-5.78795911e-02, -5.78795911e-02, -5.78795911e-02, -5.78795911e-02,
-1.48260790e+00, -1.48260790e+00, -1.48260790e+00, -1.48260790e+00,
-1.92261170e+01, -1.92261170e+01, -1.92261170e+01, -1.92261170e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99979369e+02, 9.99979369e+02, 9.99979369e+02, 9.99979369e+02,
9.99941447e+02, 9.99941447e+02, 9.99941447e+02, 9.99941447e+02,
9.99862069e+02, 9.99862069e+02, 9.99862069e+02, 9.99862069e+02,
9.99685247e+02, 9.99685247e+02, 9.99685247e+02, 9.99685247e+02,
9.99314134e+02, 9.99314134e+02, 9.99314134e+02, 9.99314134e+02,
9.98573724e+02, 9.98573724e+02, 9.98573724e+02, 9.98573724e+02,
9.97174855e+02, 9.97174855e+02, 9.97174855e+02, 9.97174855e+02,
9.94678914e+02, 9.94678914e+02, 9.94678914e+02, 9.94678914e+02,
9.90484455e+02, 9.90484455e+02, 9.90484455e+02, 9.90484455e+02,
9.83859889e+02, 9.83859889e+02, 9.83859889e+02, 9.83859889e+02,
9.74039277e+02, 9.74039277e+02, 9.74039277e+02, 9.74039277e+02,
9.60372194e+02, 9.60372194e+02, 9.60372194e+02, 9.60372194e+02,
9.42483603e+02, 9.42483603e+02, 9.42483603e+02, 9.42483603e+02,
9.20379525e+02, 9.20379525e+02, 9.20379525e+02, 9.20379525e+02,
8.94450060e+02, 8.94450060e+02, 8.94450060e+02, 8.94450060e+02,
8.65367467e+02, 8.65367467e+02, 8.65367467e+02, 8.65367467e+02,
8.33922282e+02, 8.33922282e+02, 8.33922282e+02, 8.33922282e+02,
8.00853716e+02, 8.00853716e+02, 8.00853716e+02, 8.00853716e+02,
7.66714287e+02, 7.66714287e+02, 7.66714287e+02, 7.66714287e+02,
7.32385088e+02, 7.32385088e+02, 7.32385088e+02, 7.32385088e+02,
6.99371304e+02, 6.99371304e+02, 6.99371304e+02, 6.99371304e+02,
6.68082034e+02, 6.68082034e+02, 6.68082034e+02, 6.68082034e+02,
6.38437470e+02, 6.38437470e+02, 6.38437470e+02, 6.38437470e+02,
6.10476279e+02, 6.10476279e+02, 6.10476279e+02, 6.10476279e+02,
5.84302961e+02, 5.84302961e+02, 5.84302961e+02, 5.84302961e+02,
5.60112630e+02, 5.60112630e+02, 5.60112630e+02, 5.60112630e+02,
5.38197751e+02, 5.38197751e+02, 5.38197751e+02, 5.38197751e+02,
5.18933488e+02, 5.18933488e+02, 5.18933488e+02, 5.18933488e+02,
5.02706670e+02, 5.02706670e+02, 5.02706670e+02, 5.02706670e+02,
4.89810839e+02, 4.89810839e+02, 4.89810839e+02, 4.89810839e+02,
4.80277054e+02, 4.80277054e+02, 4.80277054e+02, 4.80277054e+02,
4.73814598e+02, 4.73814598e+02, 4.73814598e+02, 4.73814598e+02,
4.69715186e+02, 4.69715186e+02, 4.69715186e+02, 4.69715186e+02,
4.67199322e+02, 4.67199322e+02, 4.67199322e+02, 4.67199322e+02,
4.65366731e+02, 4.65366731e+02, 4.65366731e+02, 4.65366731e+02,
4.63761585e+02, 4.63761585e+02, 4.63761585e+02, 4.63761585e+02,
4.62037437e+02, 4.62037437e+02, 4.62037437e+02, 4.62037437e+02,
4.59682472e+02, 4.59682472e+02, 4.59682472e+02, 4.59682472e+02,
4.57502635e+02, 4.57502635e+02, 4.57502635e+02, 4.57502635e+02,
4.56321878e+02, 4.56321878e+02, 4.56321878e+02, 4.56321878e+02,
4.55970132e+02, 4.55970132e+02, 4.55970132e+02, 4.55970132e+02,
4.56136790e+02, 4.56136790e+02, 4.56136790e+02, 4.56136790e+02,
4.57415845e+02, 4.57415845e+02, 4.57415845e+02, 4.57415845e+02,
4.59897903e+02, 4.59897903e+02, 4.59897903e+02, 4.59897903e+02,
4.61588569e+02, 4.61588569e+02, 4.61588569e+02, 4.61588569e+02,
4.62209244e+02, 4.62209244e+02, 4.62209244e+02, 4.62209244e+02,
4.62353018e+02, 4.62353018e+02, 4.62353018e+02, 4.62353018e+02,
4.62015675e+02, 4.62015675e+02, 4.62015675e+02, 4.62015675e+02,
4.60848083e+02, 4.60848083e+02, 4.60848083e+02, 4.60848083e+02,
4.59735200e+02, 4.59735200e+02, 4.59735200e+02, 4.59735200e+02,
4.59147681e+02, 4.59147681e+02, 4.59147681e+02, 4.59147681e+02,
4.59088113e+02, 4.59088113e+02, 4.59088113e+02, 4.59088113e+02,
4.59331732e+02, 4.59331732e+02, 4.59331732e+02, 4.59331732e+02,
4.63222937e+02, 4.63222937e+02, 4.63222937e+02, 4.63222937e+02,
4.12875360e+02, 4.12875360e+02, 4.12875360e+02, 4.12875360e+02,
2.66044212e+00, 2.66044212e+00, 2.66044212e+00, 2.66044212e+00,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.9999568 , 0.9999568 , 0.9999568 , 0.9999568 , 0.99988411,
0.99988411, 0.99988411, 0.99988411, 0.99974329, 0.99974329,
0.99974329, 0.99974329, 0.99944863, 0.99944863, 0.99944863,
0.99944863, 0.9988707 , 0.9988707 , 0.9988707 , 0.9988707 ,
0.99779482, 0.99779482, 0.99779482, 0.99779482, 0.99590186,
0.99590186, 0.99590186, 0.99590186, 0.99276106, 0.99276106,
0.99276106, 0.99276106, 0.98785596, 0.98785596, 0.98785596,
0.98785596, 0.9806516 , 0.9806516 , 0.9806516 , 0.9806516 ,
0.97069523, 0.97069523, 0.97069523, 0.97069523, 0.95772017,
0.95772017, 0.95772017, 0.95772017, 0.94171224, 0.94171224,
0.94171224, 0.94171224, 0.92290936, 0.92290936, 0.92290936,
0.92290936, 0.90173487, 0.90173487, 0.90173487, 0.90173487,
0.8786917 , 0.8786917 , 0.8786917 , 0.8786917 , 0.85425278,
0.85425278, 0.85425278, 0.85425278, 0.8287934 , 0.8287934 ,
0.8287934 , 0.8287934 , 0.80284574, 0.80284574, 0.80284574,
0.80284574, 0.77747275, 0.77747275, 0.77747275, 0.77747275,
0.75306658, 0.75306658, 0.75306658, 0.75306658, 0.72958985,
0.72958985, 0.72958985, 0.72958985, 0.70709754, 0.70709754,
0.70709754, 0.70709754, 0.68568965, 0.68568965, 0.68568965,
0.68568965, 0.66553819, 0.66553819, 0.66553819, 0.66553819,
0.64690258, 0.64690258, 0.64690258, 0.64690258, 0.63012541,
0.63012541, 0.63012541, 0.63012541, 0.61559842, 0.61559842,
0.61559842, 0.61559842, 0.60366745, 0.60366745, 0.60366745,
0.60366745, 0.59451738, 0.59451738, 0.59451738, 0.59451738,
0.58802631, 0.58802631, 0.58802631, 0.58802631, 0.58378365,
0.58378365, 0.58378365, 0.58378365, 0.58107477, 0.58107477,
0.58107477, 0.58107477, 0.57925414, 0.57925414, 0.57925414,
0.57925414, 0.5776933 , 0.5776933 , 0.5776933 , 0.5776933 ,
0.57614202, 0.57614202, 0.57614202, 0.57614202, 0.57421305,
0.57421305, 0.57421305, 0.57421305, 0.57210238, 0.57210238,
0.57210238, 0.57210238, 0.57069122, 0.57069122, 0.57069122,
0.57069122, 0.57008977, 0.57008977, 0.57008977, 0.57008977,
0.56996923, 0.56996923, 0.56996923, 0.56996923, 0.57050701,
0.57050701, 0.57050701, 0.57050701, 0.57229866, 0.57229866,
0.57229866, 0.57229866, 0.57395096, 0.57395096, 0.57395096,
0.57395096, 0.57464105, 0.57464105, 0.57464105, 0.57464105,
0.57441387, 0.57441387, 0.57441387, 0.57441387, 0.57344931,
0.57344931, 0.57344931, 0.57344931, 0.57081974, 0.57081974,
0.57081974, 0.57081974, 0.56695245, 0.56695245, 0.56695245,
0.56695245, 0.5653931 , 0.5653931 , 0.5653931 , 0.5653931 ,
0.57781064, 0.57781064, 0.57781064, 0.57781064, 0.78815072,
0.78815072, 0.78815072, 0.78815072, 4.84873862, 4.84873862,
4.84873862, 4.84873862, 5.95129464, 5.95129464, 5.95129464,
5.95129464, 5.69033524, 5.69033524, 5.69033524, 5.69033524,
1.23675129, 1.23675129, 1.23675129, 1.23675129, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95958337e+01, -1.95958337e+01, -1.95958337e+01, -1.95958337e+01,
-1.95931138e+01, -1.95931138e+01, -1.95931138e+01, -1.95931138e+01,
-1.95878441e+01, -1.95878441e+01, -1.95878441e+01, -1.95878441e+01,
-1.95768162e+01, -1.95768162e+01, -1.95768162e+01, -1.95768162e+01,
-1.95551801e+01, -1.95551801e+01, -1.95551801e+01, -1.95551801e+01,
-1.95148789e+01, -1.95148789e+01, -1.95148789e+01, -1.95148789e+01,
-1.94438939e+01, -1.94438939e+01, -1.94438939e+01, -1.94438939e+01,
-1.93258934e+01, -1.93258934e+01, -1.93258934e+01, -1.93258934e+01,
-1.91410336e+01, -1.91410336e+01, -1.91410336e+01, -1.91410336e+01,
-1.88682144e+01, -1.88682144e+01, -1.88682144e+01, -1.88682144e+01,
-1.84885452e+01, -1.84885452e+01, -1.84885452e+01, -1.84885452e+01,
-1.79890388e+01, -1.79890388e+01, -1.79890388e+01, -1.79890388e+01,
-1.73651775e+01, -1.73651775e+01, -1.73651775e+01, -1.73651775e+01,
-1.66213186e+01, -1.66213186e+01, -1.66213186e+01, -1.66213186e+01,
-1.57687966e+01, -1.57687966e+01, -1.57687966e+01, -1.57687966e+01,
-1.48224580e+01, -1.48224580e+01, -1.48224580e+01, -1.48224580e+01,
-1.37966567e+01, -1.37966567e+01, -1.37966567e+01, -1.37966567e+01,
-1.27013995e+01, -1.27013995e+01, -1.27013995e+01, -1.27013995e+01,
-1.15600509e+01, -1.15600509e+01, -1.15600509e+01, -1.15600509e+01,
-1.04182048e+01, -1.04182048e+01, -1.04182048e+01, -1.04182048e+01,
-9.28712587e+00, -9.28712587e+00, -9.28712587e+00, -9.28712587e+00,
-8.17164148e+00, -8.17164148e+00, -8.17164148e+00, -8.17164148e+00,
-7.07566309e+00, -7.07566309e+00, -7.07566309e+00, -7.07566309e+00,
-6.00644370e+00, -6.00644370e+00, -6.00644370e+00, -6.00644370e+00,
-4.97553083e+00, -4.97553083e+00, -4.97553083e+00, -4.97553083e+00,
-3.99995165e+00, -3.99995165e+00, -3.99995165e+00, -3.99995165e+00,
-3.10256800e+00, -3.10256800e+00, -3.10256800e+00, -3.10256800e+00,
-2.31003786e+00, -2.31003786e+00, -2.31003786e+00, -2.31003786e+00,
-1.64818046e+00, -1.64818046e+00, -1.64818046e+00, -1.64818046e+00,
-1.13330666e+00, -1.13330666e+00, -1.13330666e+00, -1.13330666e+00,
-7.65570923e-01, -7.65570923e-01, -7.65570923e-01, -7.65570923e-01,
-5.22454306e-01, -5.22454306e-01, -5.22454306e-01, -5.22454306e-01,
-3.69998280e-01, -3.69998280e-01, -3.69998280e-01, -3.69998280e-01,
-2.64295091e-01, -2.64295091e-01, -2.64295091e-01, -2.64295091e-01,
-1.77586047e-01, -1.77586047e-01, -1.77586047e-01, -1.77586047e-01,
-8.97984962e-02, -8.97984962e-02, -8.97984962e-02, -8.97984962e-02,
2.02366682e-02, 2.02366682e-02, 2.02366682e-02, 2.02366682e-02,
1.40871427e-01, 1.40871427e-01, 1.40871427e-01, 1.40871427e-01,
2.17683902e-01, 2.17683902e-01, 2.17683902e-01, 2.17683902e-01,
2.48809269e-01, 2.48809269e-01, 2.48809269e-01, 2.48809269e-01,
2.49974501e-01, 2.49974501e-01, 2.49974501e-01, 2.49974501e-01,
2.11052255e-01, 2.11052255e-01, 2.11052255e-01, 2.11052255e-01,
9.78510344e-02, 9.78510344e-02, 9.78510344e-02, 9.78510344e-02,
-8.37863695e-03, -8.37863695e-03, -8.37863695e-03, -8.37863695e-03,
-5.72066887e-02, -5.72066887e-02, -5.72066887e-02, -5.72066887e-02,
-7.30169147e-02, -7.30169147e-02, -7.30169147e-02, -7.30169147e-02,
-6.62494184e-02, -6.62494184e-02, -6.62494184e-02, -6.62494184e-02,
-2.27194938e-02, -2.27194938e-02, -2.27194938e-02, -2.27194938e-02,
4.23152353e-02, 4.23152353e-02, 4.23152353e-02, 4.23152353e-02,
7.98077113e-02, 7.98077113e-02, 7.98077113e-02, 7.98077113e-02,
8.99657409e-02, 8.99657409e-02, 8.99657409e-02, 8.99657409e-02,
8.76200018e-02, 8.76200018e-02, 8.76200018e-02, 8.76200018e-02,
5.15213448e-02, 5.15213448e-02, 5.15213448e-02, 5.15213448e-02,
-8.33703850e-02, -8.33703850e-02, -8.33703850e-02, -8.33703850e-02,
-1.17071868e+00, -1.17071868e+00, -1.17071868e+00, -1.17071868e+00,
-1.57576738e+01, -1.57576738e+01, -1.57576738e+01, -1.57576738e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99939525e+02, 9.99939525e+02, 9.99939525e+02, 9.99939525e+02,
9.99837766e+02, 9.99837766e+02, 9.99837766e+02, 9.99837766e+02,
9.99640638e+02, 9.99640638e+02, 9.99640638e+02, 9.99640638e+02,
9.99228211e+02, 9.99228211e+02, 9.99228211e+02, 9.99228211e+02,
9.98419485e+02, 9.98419485e+02, 9.98419485e+02, 9.98419485e+02,
9.96914590e+02, 9.96914590e+02, 9.96914590e+02, 9.96914590e+02,
9.94268703e+02, 9.94268703e+02, 9.94268703e+02, 9.94268703e+02,
9.89883820e+02, 9.89883820e+02, 9.89883820e+02, 9.89883820e+02,
9.83048138e+02, 9.83048138e+02, 9.83048138e+02, 9.83048138e+02,
9.73034649e+02, 9.73034649e+02, 9.73034649e+02, 9.73034649e+02,
9.59246390e+02, 9.59246390e+02, 9.59246390e+02, 9.59246390e+02,
9.41363662e+02, 9.41363662e+02, 9.41363662e+02, 9.41363662e+02,
9.19433724e+02, 9.19433724e+02, 9.19433724e+02, 9.19433724e+02,
8.93862202e+02, 8.93862202e+02, 8.93862202e+02, 8.93862202e+02,
8.65309492e+02, 8.65309492e+02, 8.65309492e+02, 8.65309492e+02,
8.34535046e+02, 8.34535046e+02, 8.34535046e+02, 8.34535046e+02,
8.02241316e+02, 8.02241316e+02, 8.02241316e+02, 8.02241316e+02,
7.68949683e+02, 7.68949683e+02, 7.68949683e+02, 7.68949683e+02,
7.35447246e+02, 7.35447246e+02, 7.35447246e+02, 7.35447246e+02,
7.03127884e+02, 7.03127884e+02, 7.03127884e+02, 7.03127884e+02,
6.72436702e+02, 6.72436702e+02, 6.72436702e+02, 6.72436702e+02,
6.43288985e+02, 6.43288985e+02, 6.43288985e+02, 6.43288985e+02,
6.15714808e+02, 6.15714808e+02, 6.15714808e+02, 6.15714808e+02,
5.89796153e+02, 5.89796153e+02, 5.89796153e+02, 5.89796153e+02,
5.65696642e+02, 5.65696642e+02, 5.65696642e+02, 5.65696642e+02,
5.43673421e+02, 5.43673421e+02, 5.43673421e+02, 5.43673421e+02,
5.24067479e+02, 5.24067479e+02, 5.24067479e+02, 5.24067479e+02,
5.07263040e+02, 5.07263040e+02, 5.07263040e+02, 5.07263040e+02,
4.93583436e+02, 4.93583436e+02, 4.93583436e+02, 4.93583436e+02,
4.83170545e+02, 4.83170545e+02, 4.83170545e+02, 4.83170545e+02,
4.75830313e+02, 4.75830313e+02, 4.75830313e+02, 4.75830313e+02,
4.71062300e+02, 4.71062300e+02, 4.71062300e+02, 4.71062300e+02,
4.68039933e+02, 4.68039933e+02, 4.68039933e+02, 4.68039933e+02,
4.66025920e+02, 4.66025920e+02, 4.66025920e+02, 4.66025920e+02,
4.64310633e+02, 4.64310633e+02, 4.64310633e+02, 4.64310633e+02,
4.62615659e+02, 4.62615659e+02, 4.62615659e+02, 4.62615659e+02,
4.60507433e+02, 4.60507433e+02, 4.60507433e+02, 4.60507433e+02,
4.58203933e+02, 4.58203933e+02, 4.58203933e+02, 4.58203933e+02,
4.56696564e+02, 4.56696564e+02, 4.56696564e+02, 4.56696564e+02,
4.56120188e+02, 4.56120188e+02, 4.56120188e+02, 4.56120188e+02,
4.56103981e+02, 4.56103981e+02, 4.56103981e+02, 4.56103981e+02,
4.56842760e+02, 4.56842760e+02, 4.56842760e+02, 4.56842760e+02,
4.59001087e+02, 4.59001087e+02, 4.59001087e+02, 4.59001087e+02,
4.61027897e+02, 4.61027897e+02, 4.61027897e+02, 4.61027897e+02,
4.62043421e+02, 4.62043421e+02, 4.62043421e+02, 4.62043421e+02,
4.62256123e+02, 4.62256123e+02, 4.62256123e+02, 4.62256123e+02,
4.62141741e+02, 4.62141741e+02, 4.62141741e+02, 4.62141741e+02,
4.61332932e+02, 4.61332932e+02, 4.61332932e+02, 4.61332932e+02,
4.60092606e+02, 4.60092606e+02, 4.60092606e+02, 4.60092606e+02,
4.59370752e+02, 4.59370752e+02, 4.59370752e+02, 4.59370752e+02,
4.59088554e+02, 4.59088554e+02, 4.59088554e+02, 4.59088554e+02,
4.59254680e+02, 4.59254680e+02, 4.59254680e+02, 4.59254680e+02,
4.60509205e+02, 4.60509205e+02, 4.60509205e+02, 4.60509205e+02,
4.66097515e+02, 4.66097515e+02, 4.66097515e+02, 4.66097515e+02,
4.26096149e+02, 4.26096149e+02, 4.26096149e+02, 4.26096149e+02,
3.00682752e+01, 3.00682752e+01, 3.00682752e+01, 3.00682752e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99988326, 0.99988326, 0.99988326, 0.99988326, 0.999704 ,
0.999704 , 0.999704 , 0.999704 , 0.99938342, 0.99938342,
0.99938342, 0.99938342, 0.99875337, 0.99875337, 0.99875337,
0.99875337, 0.9976 , 0.9976 , 0.9976 , 0.9976 ,
0.99559867, 0.99559867, 0.99559867, 0.99559867, 0.99232231,
0.99232231, 0.99232231, 0.99232231, 0.98726893, 0.98726893,
0.98726893, 0.98726893, 0.97993094, 0.97993094, 0.97993094,
0.97993094, 0.96989227, 0.96989227, 0.96989227, 0.96989227,
0.95692399, 0.95692399, 0.95692399, 0.95692399, 0.94104033,
0.94104033, 0.94104033, 0.94104033, 0.92249112, 0.92249112,
0.92249112, 0.92249112, 0.90169405, 0.90169405, 0.90169405,
0.90169405, 0.87913399, 0.87913399, 0.87913399, 0.87913399,
0.85526183, 0.85526183, 0.85526183, 0.85526183, 0.83043251,
0.83043251, 0.83043251, 0.83043251, 0.80512253, 0.80512253,
0.80512253, 0.80512253, 0.78031019, 0.78031019, 0.78031019,
0.78031019, 0.75640567, 0.75640567, 0.75640567, 0.75640567,
0.73337002, 0.73337002, 0.73337002, 0.73337002, 0.71124617,
0.71124617, 0.71124617, 0.71124617, 0.69011779, 0.69011779,
0.69011779, 0.69011779, 0.67013055, 0.67013055, 0.67013055,
0.67013055, 0.6515084 , 0.6515084 , 0.6515084 , 0.6515084 ,
0.63455967, 0.63455967, 0.63455967, 0.63455967, 0.61965102,
0.61965102, 0.61965102, 0.61965102, 0.60714502, 0.60714502,
0.60714502, 0.60714502, 0.59727955, 0.59727955, 0.59727955,
0.59727955, 0.59006029, 0.59006029, 0.59006029, 0.59006029,
0.58515653, 0.58515653, 0.58515653, 0.58515653, 0.58201574,
0.58201574, 0.58201574, 0.58201574, 0.57990123, 0.57990123,
0.57990123, 0.57990123, 0.57826932, 0.57826932, 0.57826932,
0.57826932, 0.57670096, 0.57670096, 0.57670096, 0.57670096,
0.57492881, 0.57492881, 0.57492881, 0.57492881, 0.57279932,
0.57279932, 0.57279932, 0.57279932, 0.57119697, 0.57119697,
0.57119697, 0.57119697, 0.57036293, 0.57036293, 0.57036293,
0.57036293, 0.57011927, 0.57011927, 0.57011927, 0.57011927,
0.57033952, 0.57033952, 0.57033952, 0.57033952, 0.57164869,
0.57164869, 0.57164869, 0.57164869, 0.57354091, 0.57354091,
0.57354091, 0.57354091, 0.57453357, 0.57453357, 0.57453357,
0.57453357, 0.57476819, 0.57476819, 0.57476819, 0.57476819,
0.57434562, 0.57434562, 0.57434562, 0.57434562, 0.57305035,
0.57305035, 0.57305035, 0.57305035, 0.57007335, 0.57007335,
0.57007335, 0.57007335, 0.56651932, 0.56651932, 0.56651932,
0.56651932, 0.56528181, 0.56528181, 0.56528181, 0.56528181,
0.57785762, 0.57785762, 0.57785762, 0.57785762, 0.78811457,
0.78811457, 0.78811457, 0.78811457, 4.85478737, 4.85478737,
4.85478737, 4.85478737, 5.97063495, 5.97063495, 5.97063495,
5.97063495, 5.73063938, 5.73063938, 5.73063938, 5.73063938,
1.54830122, 1.54830122, 1.54830122, 1.54830122, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95930819e+01, -1.95930819e+01, -1.95930819e+01, -1.95930819e+01,
-1.95863736e+01, -1.95863736e+01, -1.95863736e+01, -1.95863736e+01,
-1.95743754e+01, -1.95743754e+01, -1.95743754e+01, -1.95743754e+01,
-1.95507862e+01, -1.95507862e+01, -1.95507862e+01, -1.95507862e+01,
-1.95075773e+01, -1.95075773e+01, -1.95075773e+01, -1.95075773e+01,
-1.94325144e+01, -1.94325144e+01, -1.94325144e+01, -1.94325144e+01,
-1.93093843e+01, -1.93093843e+01, -1.93093843e+01, -1.93093843e+01,
-1.91188563e+01, -1.91188563e+01, -1.91188563e+01, -1.91188563e+01,
-1.88408241e+01, -1.88408241e+01, -1.88408241e+01, -1.88408241e+01,
-1.84577672e+01, -1.84577672e+01, -1.84577672e+01, -1.84577672e+01,
-1.79581724e+01, -1.79581724e+01, -1.79581724e+01, -1.79581724e+01,
-1.73387486e+01, -1.73387486e+01, -1.73387486e+01, -1.73387486e+01,
-1.66045599e+01, -1.66045599e+01, -1.66045599e+01, -1.66045599e+01,
-1.57670502e+01, -1.57670502e+01, -1.57670502e+01, -1.57670502e+01,
-1.48407146e+01, -1.48407146e+01, -1.48407146e+01, -1.48407146e+01,
-1.38393853e+01, -1.38393853e+01, -1.38393853e+01, -1.38393853e+01,
-1.27726733e+01, -1.27726733e+01, -1.27726733e+01, -1.27726733e+01,
-1.16611698e+01, -1.16611698e+01, -1.16611698e+01, -1.16611698e+01,
-1.05475404e+01, -1.05475404e+01, -1.05475404e+01, -1.05475404e+01,
-9.44325436e+00, -9.44325436e+00, -9.44325436e+00, -9.44325436e+00,
-8.35283609e+00, -8.35283609e+00, -8.35283609e+00, -8.35283609e+00,
-7.27955851e+00, -7.27955851e+00, -7.27955851e+00, -7.27955851e+00,
-6.22940672e+00, -6.22940672e+00, -6.22940672e+00, -6.22940672e+00,
-5.21215603e+00, -5.21215603e+00, -5.21215603e+00, -5.21215603e+00,
-4.24254847e+00, -4.24254847e+00, -4.24254847e+00, -4.24254847e+00,
-3.34084414e+00, -3.34084414e+00, -3.34084414e+00, -3.34084414e+00,
-2.53194446e+00, -2.53194446e+00, -2.53194446e+00, -2.53194446e+00,
-1.84137728e+00, -1.84137728e+00, -1.84137728e+00, -1.84137728e+00,
-1.28893894e+00, -1.28893894e+00, -1.28893894e+00, -1.28893894e+00,
-8.79748296e-01, -8.79748296e-01, -8.79748296e-01, -8.79748296e-01,
-6.01098798e-01, -6.01098798e-01, -6.01098798e-01, -6.01098798e-01,
-4.20495914e-01, -4.20495914e-01, -4.20495914e-01, -4.20495914e-01,
-3.01953822e-01, -3.01953822e-01, -3.01953822e-01, -3.01953822e-01,
-2.07663266e-01, -2.07663266e-01, -2.07663266e-01, -2.07663266e-01,
-1.19176721e-01, -1.19176721e-01, -1.19176721e-01, -1.19176721e-01,
-1.91871139e-02, -1.91871139e-02, -1.91871139e-02, -1.91871139e-02,
1.02083270e-01, 1.02083270e-01, 1.02083270e-01, 1.02083270e-01,
1.94011664e-01, 1.94011664e-01, 1.94011664e-01, 1.94011664e-01,
2.37494805e-01, 2.37494805e-01, 2.37494805e-01, 2.37494805e-01,
2.46839725e-01, 2.46839725e-01, 2.46839725e-01, 2.46839725e-01,
2.27976078e-01, 2.27976078e-01, 2.27976078e-01, 2.27976078e-01,
1.44238385e-01, 1.44238385e-01, 1.44238385e-01, 1.44238385e-01,
2.56541650e-02, 2.56541650e-02, 2.56541650e-02, 2.56541650e-02,
-4.30667260e-02, -4.30667260e-02, -4.30667260e-02, -4.30667260e-02,
-6.50812561e-02, -6.50812561e-02, -6.50812561e-02, -6.50812561e-02,
-6.75568397e-02, -6.75568397e-02, -6.75568397e-02, -6.75568397e-02,
-4.29914005e-02, -4.29914005e-02, -4.29914005e-02, -4.29914005e-02,
2.01746029e-02, 2.01746029e-02, 2.01746029e-02, 2.01746029e-02,
6.79679763e-02, 6.79679763e-02, 6.79679763e-02, 6.79679763e-02,
8.76333776e-02, 8.76333776e-02, 8.76333776e-02, 8.76333776e-02,
8.70600238e-02, 8.70600238e-02, 8.70600238e-02, 8.70600238e-02,
6.94231077e-02, 6.94231077e-02, 6.94231077e-02, 6.94231077e-02,
2.81120195e-02, 2.81120195e-02, 2.81120195e-02, 2.81120195e-02,
-9.88861807e-02, -9.88861807e-02, -9.88861807e-02, -9.88861807e-02,
-8.40443242e-01, -8.40443242e-01, -8.40443242e-01, -8.40443242e-01,
-1.27034745e+01, -1.27034745e+01, -1.27034745e+01, -1.27034745e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99836573e+02, 9.99836573e+02, 9.99836573e+02, 9.99836573e+02,
9.99585634e+02, 9.99585634e+02, 9.99585634e+02, 9.99585634e+02,
9.99136947e+02, 9.99136947e+02, 9.99136947e+02, 9.99136947e+02,
9.98255317e+02, 9.98255317e+02, 9.98255317e+02, 9.98255317e+02,
9.96642152e+02, 9.96642152e+02, 9.96642152e+02, 9.96642152e+02,
9.93845109e+02, 9.93845109e+02, 9.93845109e+02, 9.93845109e+02,
9.89271683e+02, 9.89271683e+02, 9.89271683e+02, 9.89271683e+02,
9.82230823e+02, 9.82230823e+02, 9.82230823e+02, 9.82230823e+02,
9.72034191e+02, 9.72034191e+02, 9.72034191e+02, 9.72034191e+02,
9.58135996e+02, 9.58135996e+02, 9.58135996e+02, 9.58135996e+02,
9.40267890e+02, 9.40267890e+02, 9.40267890e+02, 9.40267890e+02,
9.18513964e+02, 9.18513964e+02, 9.18513964e+02, 9.18513964e+02,
8.93292158e+02, 8.93292158e+02, 8.93292158e+02, 8.93292158e+02,
8.65250000e+02, 8.65250000e+02, 8.65250000e+02, 8.65250000e+02,
8.35116935e+02, 8.35116935e+02, 8.35116935e+02, 8.35116935e+02,
8.03560799e+02, 8.03560799e+02, 8.03560799e+02, 8.03560799e+02,
7.71074253e+02, 7.71074253e+02, 7.71074253e+02, 7.71074253e+02,
7.38362407e+02, 7.38362407e+02, 7.38362407e+02, 7.38362407e+02,
7.06715729e+02, 7.06715729e+02, 7.06715729e+02, 7.06715729e+02,
6.76606066e+02, 6.76606066e+02, 6.76606066e+02, 6.76606066e+02,
6.47950106e+02, 6.47950106e+02, 6.47950106e+02, 6.47950106e+02,
6.20767030e+02, 6.20767030e+02, 6.20767030e+02, 6.20767030e+02,
5.95122800e+02, 5.95122800e+02, 5.95122800e+02, 5.95122800e+02,
5.71153608e+02, 5.71153608e+02, 5.71153608e+02, 5.71153608e+02,
5.49081527e+02, 5.49081527e+02, 5.49081527e+02, 5.49081527e+02,
5.29216091e+02, 5.29216091e+02, 5.29216091e+02, 5.29216091e+02,
5.11921185e+02, 5.11921185e+02, 5.11921185e+02, 5.11921185e+02,
4.97545244e+02, 4.97545244e+02, 4.97545244e+02, 4.97545244e+02,
4.86291897e+02, 4.86291897e+02, 4.86291897e+02, 4.86291897e+02,
4.78109904e+02, 4.78109904e+02, 4.78109904e+02, 4.78109904e+02,
4.72583831e+02, 4.72583831e+02, 4.72583831e+02, 4.72583831e+02,
4.69066980e+02, 4.69066980e+02, 4.69066980e+02, 4.69066980e+02,
4.66717402e+02, 4.66717402e+02, 4.66717402e+02, 4.66717402e+02,
4.64917242e+02, 4.64917242e+02, 4.64917242e+02, 4.64917242e+02,
4.63194566e+02, 4.63194566e+02, 4.63194566e+02, 4.63194566e+02,
4.61252714e+02, 4.61252714e+02, 4.61252714e+02, 4.61252714e+02,
4.58921153e+02, 4.58921153e+02, 4.58921153e+02, 4.58921153e+02,
4.57188983e+02, 4.57188983e+02, 4.57188983e+02, 4.57188983e+02,
4.56328452e+02, 4.56328452e+02, 4.56328452e+02, 4.56328452e+02,
4.56152886e+02, 4.56152886e+02, 4.56152886e+02, 4.56152886e+02,
4.56518413e+02, 4.56518413e+02, 4.56518413e+02, 4.56518413e+02,
4.58123265e+02, 4.58123265e+02, 4.58123265e+02, 4.58123265e+02,
4.60396684e+02, 4.60396684e+02, 4.60396684e+02, 4.60396684e+02,
4.61683518e+02, 4.61683518e+02, 4.61683518e+02, 4.61683518e+02,
4.62187018e+02, 4.62187018e+02, 4.62187018e+02, 4.62187018e+02,
4.62180069e+02, 4.62180069e+02, 4.62180069e+02, 4.62180069e+02,
4.61692947e+02, 4.61692947e+02, 4.61692947e+02, 4.61692947e+02,
4.60488509e+02, 4.60488509e+02, 4.60488509e+02, 4.60488509e+02,
4.59598259e+02, 4.59598259e+02, 4.59598259e+02, 4.59598259e+02,
4.59243526e+02, 4.59243526e+02, 4.59243526e+02, 4.59243526e+02,
4.59176256e+02, 4.59176256e+02, 4.59176256e+02, 4.59176256e+02,
4.59584943e+02, 4.59584943e+02, 4.59584943e+02, 4.59584943e+02,
4.61767872e+02, 4.61767872e+02, 4.61767872e+02, 4.61767872e+02,
4.68198377e+02, 4.68198377e+02, 4.68198377e+02, 4.68198377e+02,
4.31471330e+02, 4.31471330e+02, 4.31471330e+02, 4.31471330e+02,
6.31355976e+01, 6.31355976e+01, 6.31355976e+01, 6.31355976e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99970841, 0.99970841, 0.99970841, 0.99970841, 0.99930144,
0.99930144, 0.99930144, 0.99930144, 0.99863196, 0.99863196,
0.99863196, 0.99863196, 0.99739581, 0.99739581, 0.99739581,
0.99739581, 0.99528631, 0.99528631, 0.99528631, 0.99528631,
0.99187569, 0.99187569, 0.99187569, 0.99187569, 0.98667832,
0.98667832, 0.98667832, 0.98667832, 0.97921344, 0.97921344,
0.97921344, 0.97921344, 0.96910018, 0.96910018, 0.96910018,
0.96910018, 0.95614459, 0.95614459, 0.95614459, 0.95614459,
0.9403864 , 0.9403864 , 0.9403864 , 0.9403864 , 0.92208515,
0.92208515, 0.92208515, 0.92208515, 0.90165204, 0.90165204,
0.90165204, 0.90165204, 0.8795543 , 0.8795543 , 0.8795543 ,
0.8795543 , 0.8562219 , 0.8562219 , 0.8562219 , 0.8562219 ,
0.83199086, 0.83199086, 0.83199086, 0.83199086, 0.8072897 ,
0.8072897 , 0.8072897 , 0.8072897 , 0.78301889, 0.78301889,
0.78301889, 0.78301889, 0.75959872, 0.75959872, 0.75959872,
0.75959872, 0.73699392, 0.73699392, 0.73699392, 0.73699392,
0.71523797, 0.71523797, 0.71523797, 0.71523797, 0.69439779,
0.69439779, 0.69439779, 0.69439779, 0.67459707, 0.67459707,
0.67459707, 0.67459707, 0.65602985, 0.65602985, 0.65602985,
0.65602985, 0.63896899, 0.63896899, 0.63896899, 0.63896899,
0.62375603, 0.62375603, 0.62375603, 0.62375603, 0.61074842,
0.61074842, 0.61074842, 0.61074842, 0.60023158, 0.60023158,
0.60023158, 0.60023158, 0.59228914, 0.59228914, 0.59228914,
0.59228914, 0.58673321, 0.58673321, 0.58673321, 0.58673321,
0.5830625 , 0.5830625 , 0.5830625 , 0.5830625 , 0.58066207,
0.58066207, 0.58066207, 0.58066207, 0.57886054, 0.57886054,
0.57886054, 0.57886054, 0.57725697, 0.57725697, 0.57725697,
0.57725697, 0.57558483, 0.57558483, 0.57558483, 0.57558483,
0.57353187, 0.57353187, 0.57353187, 0.57353187, 0.57172821,
0.57172821, 0.57172821, 0.57172821, 0.57069065, 0.57069065,
0.57069065, 0.57069065, 0.57030617, 0.57030617, 0.57030617,
0.57030617, 0.5703162 , 0.5703162 , 0.5703162 , 0.5703162 ,
0.57112889, 0.57112889, 0.57112889, 0.57112889, 0.57300196,
0.57300196, 0.57300196, 0.57300196, 0.57433756, 0.57433756,
0.57433756, 0.57433756, 0.57479763, 0.57479763, 0.57479763,
0.57479763, 0.5747401 , 0.5747401 , 0.5747401 , 0.5747401 ,
0.57411922, 0.57411922, 0.57411922, 0.57411922, 0.57239232,
0.57239232, 0.57239232, 0.57239232, 0.56952083, 0.56952083,
0.56952083, 0.56952083, 0.56630556, 0.56630556, 0.56630556,
0.56630556, 0.56528681, 0.56528681, 0.56528681, 0.56528681,
0.57801817, 0.57801817, 0.57801817, 0.57801817, 0.78841406,
0.78841406, 0.78841406, 0.78841406, 4.86286501, 4.86286501,
4.86286501, 4.86286501, 5.97828859, 5.97828859, 5.97828859,
5.97828859, 5.72444693, 5.72444693, 5.72444693, 5.72444693,
1.91551567, 1.91551567, 1.91551567, 1.91551567, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95865388e+01, -1.95865388e+01, -1.95865388e+01, -1.95865388e+01,
-1.95713064e+01, -1.95713064e+01, -1.95713064e+01, -1.95713064e+01,
-1.95462396e+01, -1.95462396e+01, -1.95462396e+01, -1.95462396e+01,
-1.94999235e+01, -1.94999235e+01, -1.94999235e+01, -1.94999235e+01,
-1.94207876e+01, -1.94207876e+01, -1.94207876e+01, -1.94207876e+01,
-1.92925726e+01, -1.92925726e+01, -1.92925726e+01, -1.92925726e+01,
-1.90965325e+01, -1.90965325e+01, -1.90965325e+01, -1.90965325e+01,
-1.88135375e+01, -1.88135375e+01, -1.88135375e+01, -1.88135375e+01,
-1.84273846e+01, -1.84273846e+01, -1.84273846e+01, -1.84273846e+01,
-1.79279360e+01, -1.79279360e+01, -1.79279360e+01, -1.79279360e+01,
-1.73130132e+01, -1.73130132e+01, -1.73130132e+01, -1.73130132e+01,
-1.65882893e+01, -1.65882893e+01, -1.65882893e+01, -1.65882893e+01,
-1.57652611e+01, -1.57652611e+01, -1.57652611e+01, -1.57652611e+01,
-1.48580597e+01, -1.48580597e+01, -1.48580597e+01, -1.48580597e+01,
-1.38800039e+01, -1.38800039e+01, -1.38800039e+01, -1.38800039e+01,
-1.28403183e+01, -1.28403183e+01, -1.28403183e+01, -1.28403183e+01,
-1.17572595e+01, -1.17572595e+01, -1.17572595e+01, -1.17572595e+01,
-1.06706023e+01, -1.06706023e+01, -1.06706023e+01, -1.06706023e+01,
-9.59207782e+00, -9.59207782e+00, -9.59207782e+00, -9.59207782e+00,
-8.52590941e+00, -8.52590941e+00, -8.52590941e+00, -8.52590941e+00,
-7.47481508e+00, -7.47481508e+00, -7.47481508e+00, -7.47481508e+00,
-6.44384352e+00, -6.44384352e+00, -6.44384352e+00, -6.44384352e+00,
-5.44119216e+00, -5.44119216e+00, -5.44119216e+00, -5.44119216e+00,
-4.47950487e+00, -4.47950487e+00, -4.47950487e+00, -4.47950487e+00,
-3.57669281e+00, -3.57669281e+00, -3.57669281e+00, -3.57669281e+00,
-2.75546701e+00, -2.75546701e+00, -2.75546701e+00, -2.75546701e+00,
-2.04082894e+00, -2.04082894e+00, -2.04082894e+00, -2.04082894e+00,
-1.45414272e+00, -1.45414272e+00, -1.45414272e+00, -1.45414272e+00,
-1.00612603e+00, -1.00612603e+00, -1.00612603e+00, -1.00612603e+00,
-6.89455908e-01, -6.89455908e-01, -6.89455908e-01, -6.89455908e-01,
-4.80670053e-01, -4.80670053e-01, -4.80670053e-01, -4.80670053e-01,
-3.42319475e-01, -3.42319475e-01, -3.42319475e-01, -3.42319475e-01,
-2.41375012e-01, -2.41375012e-01, -2.41375012e-01, -2.41375012e-01,
-1.49405839e-01, -1.49405839e-01, -1.49405839e-01, -1.49405839e-01,
-5.40162466e-02, -5.40162466e-02, -5.40162466e-02, -5.40162466e-02,
6.27764545e-02, 6.27764545e-02, 6.27764545e-02, 6.27764545e-02,
1.64311210e-01, 1.64311210e-01, 1.64311210e-01, 1.64311210e-01,
2.23440404e-01, 2.23440404e-01, 2.23440404e-01, 2.23440404e-01,
2.41331685e-01, 2.41331685e-01, 2.41331685e-01, 2.41331685e-01,
2.35342066e-01, 2.35342066e-01, 2.35342066e-01, 2.35342066e-01,
1.81482270e-01, 1.81482270e-01, 1.81482270e-01, 1.81482270e-01,
6.48488095e-02, 6.48488095e-02, 6.48488095e-02, 6.48488095e-02,
-2.03568679e-02, -2.03568679e-02, -2.03568679e-02, -2.03568679e-02,
-5.86975676e-02, -5.86975676e-02, -5.86975676e-02, -5.86975676e-02,
-6.46947945e-02, -6.46947945e-02, -6.46947945e-02, -6.46947945e-02,
-5.30438151e-02, -5.30438151e-02, -5.30438151e-02, -5.30438151e-02,
-3.73867515e-03, -3.73867515e-03, -3.73867515e-03, -3.73867515e-03,
5.22001451e-02, 5.22001451e-02, 5.22001451e-02, 5.22001451e-02,
7.99846270e-02, 7.99846270e-02, 7.99846270e-02, 7.99846270e-02,
8.71690661e-02, 8.71690661e-02, 8.71690661e-02, 8.71690661e-02,
7.83717458e-02, 7.83717458e-02, 7.83717458e-02, 7.83717458e-02,
4.48742665e-02, 4.48742665e-02, 4.48742665e-02, 4.48742665e-02,
1.53078823e-03, 1.53078823e-03, 1.53078823e-03, 1.53078823e-03,
-9.86484392e-02, -9.86484392e-02, -9.86484392e-02, -9.86484392e-02,
-4.95626950e-01, -4.95626950e-01, -4.95626950e-01, -4.95626950e-01,
-1.04680111e+01, -1.04680111e+01, -1.04680111e+01, -1.04680111e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99591815e+02, 9.99591815e+02, 9.99591815e+02, 9.99591815e+02,
9.99022210e+02, 9.99022210e+02, 9.99022210e+02, 9.99022210e+02,
9.98085463e+02, 9.98085463e+02, 9.98085463e+02, 9.98085463e+02,
9.96356640e+02, 9.96356640e+02, 9.96356640e+02, 9.96356640e+02,
9.93408753e+02, 9.93408753e+02, 9.93408753e+02, 9.93408753e+02,
9.88648660e+02, 9.88648660e+02, 9.88648660e+02, 9.88648660e+02,
9.81408703e+02, 9.81408703e+02, 9.81408703e+02, 9.81408703e+02,
9.71038404e+02, 9.71038404e+02, 9.71038404e+02, 9.71038404e+02,
9.57040940e+02, 9.57040940e+02, 9.57040940e+02, 9.57040940e+02,
9.39195528e+02, 9.39195528e+02, 9.39195528e+02, 9.39195528e+02,
9.17619067e+02, 9.17619067e+02, 9.17619067e+02, 9.17619067e+02,
8.92738992e+02, 8.92738992e+02, 8.92738992e+02, 8.92738992e+02,
8.65189172e+02, 8.65189172e+02, 8.65189172e+02, 8.65189172e+02,
8.35670124e+02, 8.35670124e+02, 8.35670124e+02, 8.35670124e+02,
8.04816955e+02, 8.04816955e+02, 8.04816955e+02, 8.04816955e+02,
7.73095509e+02, 7.73095509e+02, 7.73095509e+02, 7.73095509e+02,
7.41140547e+02, 7.41140547e+02, 7.41140547e+02, 7.41140547e+02,
7.10145956e+02, 7.10145956e+02, 7.10145956e+02, 7.10145956e+02,
6.80600426e+02, 6.80600426e+02, 6.80600426e+02, 6.80600426e+02,
6.52428119e+02, 6.52428119e+02, 6.52428119e+02, 6.52428119e+02,
6.25639802e+02, 6.25639802e+02, 6.25639802e+02, 6.25639802e+02,
6.00284835e+02, 6.00284835e+02, 6.00284835e+02, 6.00284835e+02,
5.76477037e+02, 5.76477037e+02, 5.76477037e+02, 5.76477037e+02,
5.54407827e+02, 5.54407827e+02, 5.54407827e+02, 5.54407827e+02,
5.34352397e+02, 5.34352397e+02, 5.34352397e+02, 5.34352397e+02,
5.16653749e+02, 5.16653749e+02, 5.16653749e+02, 5.16653749e+02,
5.01661646e+02, 5.01661646e+02, 5.01661646e+02, 5.01661646e+02,
4.89637328e+02, 4.89637328e+02, 4.89637328e+02, 4.89637328e+02,
4.80616585e+02, 4.80616585e+02, 4.80616585e+02, 4.80616585e+02,
4.74341772e+02, 4.74341772e+02, 4.74341772e+02, 4.74341772e+02,
4.70218666e+02, 4.70218666e+02, 4.70218666e+02, 4.70218666e+02,
4.67540691e+02, 4.67540691e+02, 4.67540691e+02, 4.67540691e+02,
4.65545430e+02, 4.65545430e+02, 4.65545430e+02, 4.65545430e+02,
4.63778314e+02, 4.63778314e+02, 4.63778314e+02, 4.63778314e+02,
4.61940211e+02, 4.61940211e+02, 4.61940211e+02, 4.61940211e+02,
4.59684748e+02, 4.59684748e+02, 4.59684748e+02, 4.59684748e+02,
4.57720215e+02, 4.57720215e+02, 4.57720215e+02, 4.57720215e+02,
4.56621500e+02, 4.56621500e+02, 4.56621500e+02, 4.56621500e+02,
4.56264513e+02, 4.56264513e+02, 4.56264513e+02, 4.56264513e+02,
4.56373259e+02, 4.56373259e+02, 4.56373259e+02, 4.56373259e+02,
4.57402934e+02, 4.57402934e+02, 4.57402934e+02, 4.57402934e+02,
4.59642497e+02, 4.59642497e+02, 4.59642497e+02, 4.59642497e+02,
4.61292364e+02, 4.61292364e+02, 4.61292364e+02, 4.61292364e+02,
4.61981033e+02, 4.61981033e+02, 4.61981033e+02, 4.61981033e+02,
4.62155688e+02, 4.62155688e+02, 4.62155688e+02, 4.62155688e+02,
4.61925772e+02, 4.61925772e+02, 4.61925772e+02, 4.61925772e+02,
4.60951335e+02, 4.60951335e+02, 4.60951335e+02, 4.60951335e+02,
4.59861646e+02, 4.59861646e+02, 4.59861646e+02, 4.59861646e+02,
4.59352273e+02, 4.59352273e+02, 4.59352273e+02, 4.59352273e+02,
4.59248358e+02, 4.59248358e+02, 4.59248358e+02, 4.59248358e+02,
4.59387673e+02, 4.59387673e+02, 4.59387673e+02, 4.59387673e+02,
4.60098101e+02, 4.60098101e+02, 4.60098101e+02, 4.60098101e+02,
4.62949741e+02, 4.62949741e+02, 4.62949741e+02, 4.62949741e+02,
4.69024772e+02, 4.69024772e+02, 4.69024772e+02, 4.69024772e+02,
4.31422201e+02, 4.31422201e+02, 4.31422201e+02, 4.31422201e+02,
9.89530174e+01, 9.89530174e+01, 9.89530174e+01, 9.89530174e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99932538, 0.99932538, 0.99932538, 0.99932538, 0.99847389,
0.99847389, 0.99847389, 0.99847389, 0.99719065, 0.99719065,
0.99719065, 0.99719065, 0.99496302, 0.99496302, 0.99496302,
0.99496302, 0.99142211, 0.99142211, 0.99142211, 0.99142211,
0.98608452, 0.98608452, 0.98608452, 0.98608452, 0.97849947,
0.97849947, 0.97849947, 0.97849947, 0.96831888, 0.96831888,
0.96831888, 0.96831888, 0.95538145, 0.95538145, 0.95538145,
0.95538145, 0.93974967, 0.93974967, 0.93974967, 0.93974967,
0.92169084, 0.92169084, 0.92169084, 0.92169084, 0.90160897,
0.90160897, 0.90160897, 0.90160897, 0.87995416, 0.87995416,
0.87995416, 0.87995416, 0.85713646, 0.85713646, 0.85713646,
0.85713646, 0.83347361, 0.83347361, 0.83347361, 0.83347361,
0.80935571, 0.80935571, 0.80935571, 0.80935571, 0.78560567,
0.78560567, 0.78560567, 0.78560567, 0.76265514, 0.76265514,
0.76265514, 0.76265514, 0.74047006, 0.74047006, 0.74047006,
0.74047006, 0.71907784, 0.71907784, 0.71907784, 0.71907784,
0.69853288, 0.69853288, 0.69853288, 0.69853288, 0.67893724,
0.67893724, 0.67893724, 0.67893724, 0.66045809, 0.66045809,
0.66045809, 0.66045809, 0.64333733, 0.64333733, 0.64333733,
0.64333733, 0.62788631, 0.62788631, 0.62788631, 0.62788631,
0.61445357, 0.61445357, 0.61445357, 0.61445357, 0.60334507,
0.60334507, 0.60334507, 0.60334507, 0.59472239, 0.59472239,
0.59472239, 0.59472239, 0.58848768, 0.58848768, 0.58848768,
0.58848768, 0.58427796, 0.58427796, 0.58427796, 0.58427796,
0.5814882 , 0.5814882 , 0.5814882 , 0.5814882 , 0.5795213 ,
0.5795213 , 0.5795213 , 0.5795213 , 0.57783345, 0.57783345,
0.57783345, 0.57783345, 0.5761768 , 0.5761768 , 0.5761768 ,
0.5761768 , 0.57425319, 0.57425319, 0.57425319, 0.57425319,
0.57233885, 0.57233885, 0.57233885, 0.57233885, 0.57105499,
0.57105499, 0.57105499, 0.57105499, 0.57050443, 0.57050443,
0.57050443, 0.57050443, 0.57039605, 0.57039605, 0.57039605,
0.57039605, 0.5708286 , 0.5708286 , 0.5708286 , 0.5708286 ,
0.57237405, 0.57237405, 0.57237405, 0.57237405, 0.57399928,
0.57399928, 0.57399928, 0.57399928, 0.57476715, 0.57476715,
0.57476715, 0.57476715, 0.57485765, 0.57485765, 0.57485765,
0.57485765, 0.57460734, 0.57460734, 0.57460734, 0.57460734,
0.57363085, 0.57363085, 0.57363085, 0.57363085, 0.57174526,
0.57174526, 0.57174526, 0.57174526, 0.56921496, 0.56921496,
0.56921496, 0.56921496, 0.56625196, 0.56625196, 0.56625196,
0.56625196, 0.56536145, 0.56536145, 0.56536145, 0.56536145,
0.578315 , 0.578315 , 0.578315 , 0.578315 , 0.78931831,
0.78931831, 0.78931831, 0.78931831, 4.87110358, 4.87110358,
4.87110358, 4.87110358, 5.97236196, 5.97236196, 5.97236196,
5.97236196, 5.69785103, 5.69785103, 5.69785103, 5.69785103,
2.31571933, 2.31571933, 2.31571933, 2.31571933, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95722036e+01, -1.95722036e+01, -1.95722036e+01, -1.95722036e+01,
-1.95403180e+01, -1.95403180e+01, -1.95403180e+01, -1.95403180e+01,
-1.94922333e+01, -1.94922333e+01, -1.94922333e+01, -1.94922333e+01,
-1.94086470e+01, -1.94086470e+01, -1.94086470e+01, -1.94086470e+01,
-1.92754934e+01, -1.92754934e+01, -1.92754934e+01, -1.92754934e+01,
-1.90740772e+01, -1.90740772e+01, -1.90740772e+01, -1.90740772e+01,
-1.87863686e+01, -1.87863686e+01, -1.87863686e+01, -1.87863686e+01,
-1.83973957e+01, -1.83973957e+01, -1.83973957e+01, -1.83973957e+01,
-1.78983110e+01, -1.78983110e+01, -1.78983110e+01, -1.78983110e+01,
-1.72879413e+01, -1.72879413e+01, -1.72879413e+01, -1.72879413e+01,
-1.65724820e+01, -1.65724820e+01, -1.65724820e+01, -1.65724820e+01,
-1.57634345e+01, -1.57634345e+01, -1.57634345e+01, -1.57634345e+01,
-1.48745566e+01, -1.48745566e+01, -1.48745566e+01, -1.48745566e+01,
-1.39186657e+01, -1.39186657e+01, -1.39186657e+01, -1.39186657e+01,
-1.29046184e+01, -1.29046184e+01, -1.29046184e+01, -1.29046184e+01,
-1.18486586e+01, -1.18486586e+01, -1.18486586e+01, -1.18486586e+01,
-1.07878435e+01, -1.07878435e+01, -1.07878435e+01, -1.07878435e+01,
-9.73402118e+00, -9.73402118e+00, -9.73402118e+00, -9.73402118e+00,
-8.69129853e+00, -8.69129853e+00, -8.69129853e+00, -8.69129853e+00,
-7.66189814e+00, -7.66189814e+00, -7.66189814e+00, -7.66189814e+00,
-6.65000920e+00, -6.65000920e+00, -6.65000920e+00, -6.65000920e+00,
-5.66259114e+00, -5.66259114e+00, -5.66259114e+00, -5.66259114e+00,
-4.71044094e+00, -4.71044094e+00, -4.71044094e+00, -4.71044094e+00,
-3.80919260e+00, -3.80919260e+00, -3.80919260e+00, -3.80919260e+00,
-2.97944840e+00, -2.97944840e+00, -2.97944840e+00, -2.97944840e+00,
-2.24489039e+00, -2.24489039e+00, -2.24489039e+00, -2.24489039e+00,
-1.62801708e+00, -1.62801708e+00, -1.62801708e+00, -1.62801708e+00,
-1.14294391e+00, -1.14294391e+00, -1.14294391e+00, -1.14294391e+00,
-7.89386694e-01, -7.89386694e-01, -7.89386694e-01, -7.89386694e-01,
-5.48465812e-01, -5.48465812e-01, -5.48465812e-01, -5.48465812e-01,
-3.89880604e-01, -3.89880604e-01, -3.89880604e-01, -3.89880604e-01,
-2.76421292e-01, -2.76421292e-01, -2.76421292e-01, -2.76421292e-01,
-1.81423842e-01, -1.81423842e-01, -1.81423842e-01, -1.81423842e-01,
-8.68886822e-02, -8.68886822e-02, -8.68886822e-02, -8.68886822e-02,
2.34026624e-02, 2.34026624e-02, 2.34026624e-02, 2.34026624e-02,
1.32897657e-01, 1.32897657e-01, 1.32897657e-01, 1.32897657e-01,
2.03757123e-01, 2.03757123e-01, 2.03757123e-01, 2.03757123e-01,
2.33947740e-01, 2.33947740e-01, 2.33947740e-01, 2.33947740e-01,
2.36273663e-01, 2.36273663e-01, 2.36273663e-01, 2.36273663e-01,
2.05566425e-01, 2.05566425e-01, 2.05566425e-01, 2.05566425e-01,
1.08555848e-01, 1.08555848e-01, 1.08555848e-01, 1.08555848e-01,
6.17048246e-03, 6.17048246e-03, 6.17048246e-03, 6.17048246e-03,
-4.50500960e-02, -4.50500960e-02, -4.50500960e-02, -4.50500960e-02,
-6.17988256e-02, -6.17988256e-02, -6.17988256e-02, -6.17988256e-02,
-5.81251979e-02, -5.81251979e-02, -5.81251979e-02, -5.81251979e-02,
-2.45396980e-02, -2.45396980e-02, -2.45396980e-02, -2.45396980e-02,
3.52554497e-02, 3.52554497e-02, 3.52554497e-02, 3.52554497e-02,
7.06347195e-02, 7.06347195e-02, 7.06347195e-02, 7.06347195e-02,
8.26184454e-02, 8.26184454e-02, 8.26184454e-02, 8.26184454e-02,
8.19573239e-02, 8.19573239e-02, 8.19573239e-02, 8.19573239e-02,
6.05906148e-02, 6.05906148e-02, 6.05906148e-02, 6.05906148e-02,
1.53916128e-02, 1.53916128e-02, 1.53916128e-02, 1.53916128e-02,
-2.36280500e-02, -2.36280500e-02, -2.36280500e-02, -2.36280500e-02,
-8.08509569e-02, -8.08509569e-02, -8.08509569e-02, -8.08509569e-02,
-1.88053082e-01, -1.88053082e-01, -1.88053082e-01, -1.88053082e-01,
-8.77545493e+00, -8.77545493e+00, -8.77545493e+00, -8.77545493e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99055758e+02, 9.99055758e+02, 9.99055758e+02, 9.99055758e+02,
9.97864296e+02, 9.97864296e+02, 9.97864296e+02, 9.97864296e+02,
9.96069823e+02, 9.96069823e+02, 9.96069823e+02, 9.96069823e+02,
9.92957177e+02, 9.92957177e+02, 9.92957177e+02, 9.92957177e+02,
9.88016071e+02, 9.88016071e+02, 9.88016071e+02, 9.88016071e+02,
9.80582335e+02, 9.80582335e+02, 9.80582335e+02, 9.80582335e+02,
9.70047780e+02, 9.70047780e+02, 9.70047780e+02, 9.70047780e+02,
9.55961126e+02, 9.55961126e+02, 9.55961126e+02, 9.55961126e+02,
9.38145851e+02, 9.38145851e+02, 9.38145851e+02, 9.38145851e+02,
9.16747939e+02, 9.16747939e+02, 9.16747939e+02, 9.16747939e+02,
8.92201843e+02, 8.92201843e+02, 8.92201843e+02, 8.92201843e+02,
8.65127175e+02, 8.65127175e+02, 8.65127175e+02, 8.65127175e+02,
8.36196578e+02, 8.36196578e+02, 8.36196578e+02, 8.36196578e+02,
8.06014257e+02, 8.06014257e+02, 8.06014257e+02, 8.06014257e+02,
7.75021205e+02, 7.75021205e+02, 7.75021205e+02, 7.75021205e+02,
7.43790671e+02, 7.43790671e+02, 7.43790671e+02, 7.43790671e+02,
7.13426487e+02, 7.13426487e+02, 7.13426487e+02, 7.13426487e+02,
6.84430514e+02, 6.84430514e+02, 6.84430514e+02, 6.84430514e+02,
6.56732353e+02, 6.56732353e+02, 6.56732353e+02, 6.56732353e+02,
6.30337925e+02, 6.30337925e+02, 6.30337925e+02, 6.30337925e+02,
6.05284642e+02, 6.05284642e+02, 6.05284642e+02, 6.05284642e+02,
5.81664184e+02, 5.81664184e+02, 5.81664184e+02, 5.81664184e+02,
5.59640349e+02, 5.59640349e+02, 5.59640349e+02, 5.59640349e+02,
5.39457397e+02, 5.39457397e+02, 5.39457397e+02, 5.39457397e+02,
5.21430448e+02, 5.21430448e+02, 5.21430448e+02, 5.21430448e+02,
5.05906319e+02, 5.05906319e+02, 5.05906319e+02, 5.05906319e+02,
4.93174854e+02, 4.93174854e+02, 4.93174854e+02, 4.93174854e+02,
4.83361102e+02, 4.83361102e+02, 4.83361102e+02, 4.83361102e+02,
4.76305712e+02, 4.76305712e+02, 4.76305712e+02, 4.76305712e+02,
4.71566197e+02, 4.71566197e+02, 4.71566197e+02, 4.71566197e+02,
4.68442609e+02, 4.68442609e+02, 4.68442609e+02, 4.68442609e+02,
4.66255482e+02, 4.66255482e+02, 4.66255482e+02, 4.66255482e+02,
4.64389544e+02, 4.64389544e+02, 4.64389544e+02, 4.64389544e+02,
4.62563951e+02, 4.62563951e+02, 4.62563951e+02, 4.62563951e+02,
4.60445001e+02, 4.60445001e+02, 4.60445001e+02, 4.60445001e+02,
4.58346750e+02, 4.58346750e+02, 4.58346750e+02, 4.58346750e+02,
4.56965719e+02, 4.56965719e+02, 4.56965719e+02, 4.56965719e+02,
4.56412626e+02, 4.56412626e+02, 4.56412626e+02, 4.56412626e+02,
4.56365020e+02, 4.56365020e+02, 4.56365020e+02, 4.56365020e+02,
4.56946993e+02, 4.56946993e+02, 4.56946993e+02, 4.56946993e+02,
4.58799914e+02, 4.58799914e+02, 4.58799914e+02, 4.58799914e+02,
4.60763034e+02, 4.60763034e+02, 4.60763034e+02, 4.60763034e+02,
4.61775701e+02, 4.61775701e+02, 4.61775701e+02, 4.61775701e+02,
4.62048828e+02, 4.62048828e+02, 4.62048828e+02, 4.62048828e+02,
4.62006574e+02, 4.62006574e+02, 4.62006574e+02, 4.62006574e+02,
4.61376208e+02, 4.61376208e+02, 4.61376208e+02, 4.61376208e+02,
4.60221577e+02, 4.60221577e+02, 4.60221577e+02, 4.60221577e+02,
4.59512318e+02, 4.59512318e+02, 4.59512318e+02, 4.59512318e+02,
4.59287827e+02, 4.59287827e+02, 4.59287827e+02, 4.59287827e+02,
4.59332397e+02, 4.59332397e+02, 4.59332397e+02, 4.59332397e+02,
4.59745748e+02, 4.59745748e+02, 4.59745748e+02, 4.59745748e+02,
4.60735106e+02, 4.60735106e+02, 4.60735106e+02, 4.60735106e+02,
4.63863896e+02, 4.63863896e+02, 4.63863896e+02, 4.63863896e+02,
4.68374949e+02, 4.68374949e+02, 4.68374949e+02, 4.68374949e+02,
4.28980647e+02, 4.28980647e+02, 4.28980647e+02, 4.28980647e+02,
1.36568031e+02, 1.36568031e+02, 1.36568031e+02, 1.36568031e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}]}
minmod_hll
{'none_hll': [{'rho': array([0.98643656, 0.98643656, 0.98643656, 0.98643656, 0.98187523,
0.98187523, 0.98187523, 0.98187523, 0.97629826, 0.97629826,
0.97629826, 0.97629826, 0.9696374 , 0.9696374 , 0.9696374 ,
0.9696374 , 0.96185114, 0.96185114, 0.96185114, 0.96185114,
0.95292797, 0.95292797, 0.95292797, 0.95292797, 0.94288584,
0.94288584, 0.94288584, 0.94288584, 0.9317694 , 0.9317694 ,
0.9317694 , 0.9317694 , 0.91964579, 0.91964579, 0.91964579,
0.91964579, 0.90659974, 0.90659974, 0.90659974, 0.90659974,
0.89272851, 0.89272851, 0.89272851, 0.89272851, 0.87813721,
0.87813721, 0.87813721, 0.87813721, 0.86293485, 0.86293485,
0.86293485, 0.86293485, 0.84723115, 0.84723115, 0.84723115,
0.84723115, 0.83113423, 0.83113423, 0.83113423, 0.83113423,
0.81474914, 0.81474914, 0.81474914, 0.81474914, 0.79817706,
0.79817706, 0.79817706, 0.79817706, 0.78151514, 0.78151514,
0.78151514, 0.78151514, 0.7648568 , 0.7648568 , 0.7648568 ,
0.7648568 , 0.74829246, 0.74829246, 0.74829246, 0.74829246,
0.73191055, 0.73191055, 0.73191055, 0.73191055, 0.71579881,
0.71579881, 0.71579881, 0.71579881, 0.70004568, 0.70004568,
0.70004568, 0.70004568, 0.68474183, 0.68474183, 0.68474183,
0.68474183, 0.66998162, 0.66998162, 0.66998162, 0.66998162,
0.65586424, 0.65586424, 0.65586424, 0.65586424, 0.6424944 ,
0.6424944 , 0.6424944 , 0.6424944 , 0.62998191, 0.62998191,
0.62998191, 0.62998191, 0.61843985, 0.61843985, 0.61843985,
0.61843985, 0.60798063, 0.60798063, 0.60798063, 0.60798063,
0.59870956, 0.59870956, 0.59870956, 0.59870956, 0.59071647,
0.59071647, 0.59071647, 0.59071647, 0.58406669, 0.58406669,
0.58406669, 0.58406669, 0.57879508, 0.57879508, 0.57879508,
0.57879508, 0.57490833, 0.57490833, 0.57490833, 0.57490833,
0.57240215, 0.57240215, 0.57240215, 0.57240215, 0.57129898,
0.57129898, 0.57129898, 0.57129898, 0.57170911, 0.57170911,
0.57170911, 0.57170911, 0.57391234, 0.57391234, 0.57391234,
0.57391234, 0.5784582 , 0.5784582 , 0.5784582 , 0.5784582 ,
0.58628442, 0.58628442, 0.58628442, 0.58628442, 0.5988519 ,
0.5988519 , 0.5988519 , 0.5988519 , 0.61830681, 0.61830681,
0.61830681, 0.61830681, 0.647687 , 0.647687 , 0.647687 ,
0.647687 , 0.6912014 , 0.6912014 , 0.6912014 , 0.6912014 ,
0.75462142, 0.75462142, 0.75462142, 0.75462142, 0.84582344,
0.84582344, 0.84582344, 0.84582344, 0.97548882, 0.97548882,
0.97548882, 0.97548882, 1.15786481, 1.15786481, 1.15786481,
1.15786481, 1.41124647, 1.41124647, 1.41124647, 1.41124647,
1.75733819, 1.75733819, 1.75733819, 1.75733819, 2.21753898,
2.21753898, 2.21753898, 2.21753898, 2.80005074, 2.80005074,
2.80005074, 2.80005074, 3.44725292, 3.44725292, 3.44725292,
3.44725292, 3.82905469, 3.82905469, 3.82905469, 3.82905469,
3.12499981, 3.12499981, 3.12499981, 3.12499981, 1.3656139 ,
1.3656139 , 1.3656139 , 1.3656139 , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.08809248, -19.08809248, -19.08809248, -19.08809248,
-18.91571278, -18.91571278, -18.91571278, -18.91571278,
-18.70427812, -18.70427812, -18.70427812, -18.70427812,
-18.45066681, -18.45066681, -18.45066681, -18.45066681,
-18.15264725, -18.15264725, -18.15264725, -18.15264725,
-17.80897874, -17.80897874, -17.80897874, -17.80897874,
-17.41940216, -17.41940216, -17.41940216, -17.41940216,
-16.98456454, -16.98456454, -16.98456454, -16.98456454,
-16.50589809, -16.50589809, -16.50589809, -16.50589809,
-15.98547575, -15.98547575, -15.98547575, -15.98547575,
-15.42586267, -15.42586267, -15.42586267, -15.42586267,
-14.82997877, -14.82997877, -14.82997877, -14.82997877,
-14.20098192, -14.20098192, -14.20098192, -14.20098192,
-13.54217671, -13.54217671, -13.54217671, -13.54217671,
-12.85695051, -12.85695051, -12.85695051, -12.85695051,
-12.14873569, -12.14873569, -12.14873569, -12.14873569,
-11.42099626, -11.42099626, -11.42099626, -11.42099626,
-10.6772362 , -10.6772362 , -10.6772362 , -10.6772362 ,
-9.92102727, -9.92102727, -9.92102727, -9.92102727,
-9.15605434, -9.15605434, -9.15605434, -9.15605434,
-8.38617637, -8.38617637, -8.38617637, -8.38617637,
-7.61550147, -7.61550147, -7.61550147, -7.61550147,
-6.84847361, -6.84847361, -6.84847361, -6.84847361,
-6.08996685, -6.08996685, -6.08996685, -6.08996685,
-5.34537978, -5.34537978, -5.34537978, -5.34537978,
-4.62071699, -4.62071699, -4.62071699, -4.62071699,
-3.92263644, -3.92263644, -3.92263644, -3.92263644,
-3.25843008, -3.25843008, -3.25843008, -3.25843008,
-2.6358936 , -2.6358936 , -2.6358936 , -2.6358936 ,
-2.06303263, -2.06303263, -2.06303263, -2.06303263,
-1.54755819, -1.54755819, -1.54755819, -1.54755819,
-1.09615573, -1.09615573, -1.09615573, -1.09615573,
-0.7135819 , -0.7135819 , -0.7135819 , -0.7135819 ,
-0.40174647, -0.40174647, -0.40174647, -0.40174647,
-0.15903767, -0.15903767, -0.15903767, -0.15903767,
0.01982193, 0.01982193, 0.01982193, 0.01982193,
0.14321155, 0.14321155, 0.14321155, 0.14321155,
0.22140683, 0.22140683, 0.22140683, 0.22140683,
0.2650672 , 0.2650672 , 0.2650672 , 0.2650672 ,
0.28387795, 0.28387795, 0.28387795, 0.28387795,
0.28571464, 0.28571464, 0.28571464, 0.28571464,
0.27644787, 0.27644787, 0.27644787, 0.27644787,
0.2602505 , 0.2602505 , 0.2602505 , 0.2602505 ,
0.24013665, 0.24013665, 0.24013665, 0.24013665,
0.21847094, 0.21847094, 0.21847094, 0.21847094,
0.19728409, 0.19728409, 0.19728409, 0.19728409,
0.17833933, 0.17833933, 0.17833933, 0.17833933,
0.16296261, 0.16296261, 0.16296261, 0.16296261,
0.15165979, 0.15165979, 0.15165979, 0.15165979,
0.14349381, 0.14349381, 0.14349381, 0.14349381,
0.13494011, 0.13494011, 0.13494011, 0.13494011,
0.11621768, 0.11621768, 0.11621768, 0.11621768,
0.05201945, 0.05201945, 0.05201945, 0.05201945,
-0.2248209 , -0.2248209 , -0.2248209 , -0.2248209 ,
-1.41256056, -1.41256056, -1.41256056, -1.41256056,
-5.32034825, -5.32034825, -5.32034825, -5.32034825,
-15.36743081, -15.36743081, -15.36743081, -15.36743081,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([9.81089727e+02, 9.81089727e+02, 9.81089727e+02, 9.81089727e+02,
9.74759239e+02, 9.74759239e+02, 9.74759239e+02, 9.74759239e+02,
9.67040664e+02, 9.67040664e+02, 9.67040664e+02, 9.67040664e+02,
9.57850178e+02, 9.57850178e+02, 9.57850178e+02, 9.57850178e+02,
9.47144747e+02, 9.47144747e+02, 9.47144747e+02, 9.47144747e+02,
9.34925440e+02, 9.34925440e+02, 9.34925440e+02, 9.34925440e+02,
9.21235831e+02, 9.21235831e+02, 9.21235831e+02, 9.21235831e+02,
9.06157333e+02, 9.06157333e+02, 9.06157333e+02, 9.06157333e+02,
8.89802452e+02, 8.89802452e+02, 8.89802452e+02, 8.89802452e+02,
8.72307073e+02, 8.72307073e+02, 8.72307073e+02, 8.72307073e+02,
8.53822684e+02, 8.53822684e+02, 8.53822684e+02, 8.53822684e+02,
8.34509276e+02, 8.34509276e+02, 8.34509276e+02, 8.34509276e+02,
8.14529348e+02, 8.14529348e+02, 8.14529348e+02, 8.14529348e+02,
7.94043216e+02, 7.94043216e+02, 7.94043216e+02, 7.94043216e+02,
7.73205652e+02, 7.73205652e+02, 7.73205652e+02, 7.73205652e+02,
7.52163729e+02, 7.52163729e+02, 7.52163729e+02, 7.52163729e+02,
7.31055735e+02, 7.31055735e+02, 7.31055735e+02, 7.31055735e+02,
7.10010929e+02, 7.10010929e+02, 7.10010929e+02, 7.10010929e+02,
6.89149991e+02, 6.89149991e+02, 6.89149991e+02, 6.89149991e+02,
6.68585986e+02, 6.68585986e+02, 6.68585986e+02, 6.68585986e+02,
6.48425713e+02, 6.48425713e+02, 6.48425713e+02, 6.48425713e+02,
6.28771322e+02, 6.28771322e+02, 6.28771322e+02, 6.28771322e+02,
6.09722091e+02, 6.09722091e+02, 6.09722091e+02, 6.09722091e+02,
5.91376246e+02, 5.91376246e+02, 5.91376246e+02, 5.91376246e+02,
5.73832666e+02, 5.73832666e+02, 5.73832666e+02, 5.73832666e+02,
5.57192250e+02, 5.57192250e+02, 5.57192250e+02, 5.57192250e+02,
5.41558609e+02, 5.41558609e+02, 5.41558609e+02, 5.41558609e+02,
5.27037604e+02, 5.27037604e+02, 5.27037604e+02, 5.27037604e+02,
5.13735105e+02, 5.13735105e+02, 5.13735105e+02, 5.13735105e+02,
5.01752265e+02, 5.01752265e+02, 5.01752265e+02, 5.01752265e+02,
4.91177719e+02, 4.91177719e+02, 4.91177719e+02, 4.91177719e+02,
4.82076611e+02, 4.82076611e+02, 4.82076611e+02, 4.82076611e+02,
4.74477430e+02, 4.74477430e+02, 4.74477430e+02, 4.74477430e+02,
4.68359105e+02, 4.68359105e+02, 4.68359105e+02, 4.68359105e+02,
4.63642342e+02, 4.63642342e+02, 4.63642342e+02, 4.63642342e+02,
4.60189553e+02, 4.60189553e+02, 4.60189553e+02, 4.60189553e+02,
4.57816053e+02, 4.57816053e+02, 4.57816053e+02, 4.57816053e+02,
4.56311386e+02, 4.56311386e+02, 4.56311386e+02, 4.56311386e+02,
4.55465320e+02, 4.55465320e+02, 4.55465320e+02, 4.55465320e+02,
4.55090849e+02, 4.55090849e+02, 4.55090849e+02, 4.55090849e+02,
4.55037987e+02, 4.55037987e+02, 4.55037987e+02, 4.55037987e+02,
4.55196337e+02, 4.55196337e+02, 4.55196337e+02, 4.55196337e+02,
4.55488829e+02, 4.55488829e+02, 4.55488829e+02, 4.55488829e+02,
4.55861344e+02, 4.55861344e+02, 4.55861344e+02, 4.55861344e+02,
4.56272676e+02, 4.56272676e+02, 4.56272676e+02, 4.56272676e+02,
4.56687434e+02, 4.56687434e+02, 4.56687434e+02, 4.56687434e+02,
4.57072673e+02, 4.57072673e+02, 4.57072673e+02, 4.57072673e+02,
4.57398268e+02, 4.57398268e+02, 4.57398268e+02, 4.57398268e+02,
4.57641962e+02, 4.57641962e+02, 4.57641962e+02, 4.57641962e+02,
4.57800997e+02, 4.57800997e+02, 4.57800997e+02, 4.57800997e+02,
4.57901826e+02, 4.57901826e+02, 4.57901826e+02, 4.57901826e+02,
4.57899342e+02, 4.57899342e+02, 4.57899342e+02, 4.57899342e+02,
4.56697527e+02, 4.56697527e+02, 4.56697527e+02, 4.56697527e+02,
4.46045725e+02, 4.46045725e+02, 4.46045725e+02, 4.46045725e+02,
3.88965031e+02, 3.88965031e+02, 3.88965031e+02, 3.88965031e+02,
2.27741725e+02, 2.27741725e+02, 2.27741725e+02, 2.27741725e+02,
3.27405159e+01, 3.27405159e+01, 3.27405159e+01, 3.27405159e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_rusanov': [{'rho': array([0.99936044, 0.99936044, 0.99936044, 0.99936044, 0.9985534 ,
0.9985534 , 0.9985534 , 0.9985534 , 0.9973132 , 0.9973132 ,
0.9973132 , 0.9973132 , 0.99515557, 0.99515557, 0.99515557,
0.99515557, 0.99170689, 0.99170689, 0.99170689, 0.99170689,
0.98648889, 0.98648889, 0.98648889, 0.98648889, 0.97905098,
0.97905098, 0.97905098, 0.97905098, 0.96904495, 0.96904495,
0.96904495, 0.96904495, 0.95630818, 0.95630818, 0.95630818,
0.95630818, 0.94090147, 0.94090147, 0.94090147, 0.94090147,
0.92309062, 0.92309062, 0.92309062, 0.92309062, 0.9032792 ,
0.9032792 , 0.9032792 , 0.9032792 , 0.88191867, 0.88191867,
0.88191867, 0.88191867, 0.85942638, 0.85942638, 0.85942638,
0.85942638, 0.83614726, 0.83614726, 0.83614726, 0.83614726,
0.81247789, 0.81247789, 0.81247789, 0.81247789, 0.78923474,
0.78923474, 0.78923474, 0.78923474, 0.76675375, 0.76675375,
0.76675375, 0.76675375, 0.74498531, 0.74498531, 0.74498531,
0.74498531, 0.72392675, 0.72392675, 0.72392675, 0.72392675,
0.70357996, 0.70357996, 0.70357996, 0.70357996, 0.68397009,
0.68397009, 0.68397009, 0.68397009, 0.66515637, 0.66515637,
0.66515637, 0.66515637, 0.64724516, 0.64724516, 0.64724516,
0.64724516, 0.63040323, 0.63040323, 0.63040323, 0.63040323,
0.61486697, 0.61486697, 0.61486697, 0.61486697, 0.60093753,
0.60093753, 0.60093753, 0.60093753, 0.58894559, 0.58894559,
0.58894559, 0.58894559, 0.5791716 , 0.5791716 , 0.5791716 ,
0.5791716 , 0.57173786, 0.57173786, 0.57173786, 0.57173786,
0.56656387, 0.56656387, 0.56656387, 0.56656387, 0.56343019,
0.56343019, 0.56343019, 0.56343019, 0.56206964, 0.56206964,
0.56206964, 0.56206964, 0.56186718, 0.56186718, 0.56186718,
0.56186718, 0.5622292 , 0.5622292 , 0.5622292 , 0.5622292 ,
0.56352241, 0.56352241, 0.56352241, 0.56352241, 0.56619671,
0.56619671, 0.56619671, 0.56619671, 0.56859552, 0.56859552,
0.56859552, 0.56859552, 0.56940349, 0.56940349, 0.56940349,
0.56940349, 0.56923843, 0.56923843, 0.56923843, 0.56923843,
0.56845654, 0.56845654, 0.56845654, 0.56845654, 0.56753857,
0.56753857, 0.56753857, 0.56753857, 0.5672215 , 0.5672215 ,
0.5672215 , 0.5672215 , 0.56822016, 0.56822016, 0.56822016,
0.56822016, 0.57247 , 0.57247 , 0.57247 , 0.57247 ,
0.5839843 , 0.5839843 , 0.5839843 , 0.5839843 , 0.61018524,
0.61018524, 0.61018524, 0.61018524, 0.66484813, 0.66484813,
0.66484813, 0.66484813, 0.77317594, 0.77317594, 0.77317594,
0.77317594, 0.98031916, 0.98031916, 0.98031916, 0.98031916,
1.36620913, 1.36620913, 1.36620913, 1.36620913, 2.05407781,
2.05407781, 2.05407781, 2.05407781, 3.0909881 , 3.0909881 ,
3.0909881 , 3.0909881 , 4.09901557, 4.09901557, 4.09901557,
4.09901557, 4.67576107, 4.67576107, 4.67576107, 4.67576107,
3.58271781, 3.58271781, 3.58271781, 3.58271781, 1.62778827,
1.62778827, 1.62778827, 1.62778827, 1.05141403, 1.05141403,
1.05141403, 1.05141403, 1.002022 , 1.002022 , 1.002022 ,
1.002022 , 1.00002489, 1.00002489, 1.00002489, 1.00002489,
1.00000006, 1.00000006, 1.00000006, 1.00000006, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.57351664, -19.57351664, -19.57351664, -19.57351664,
-19.54329587, -19.54329587, -19.54329587, -19.54329587,
-19.49682652, -19.49682652, -19.49682652, -19.49682652,
-19.41587326, -19.41587326, -19.41587326, -19.41587326,
-19.28619913, -19.28619913, -19.28619913, -19.28619913,
-19.08931809, -19.08931809, -19.08931809, -19.08931809,
-18.80723575, -18.80723575, -18.80723575, -18.80723575,
-18.42502783, -18.42502783, -18.42502783, -18.42502783,
-17.93388119, -17.93388119, -17.93388119, -17.93388119,
-17.33267704, -17.33267704, -17.33267704, -17.33267704,
-16.62769653, -16.62769653, -16.62769653, -16.62769653,
-15.83056805, -15.83056805, -15.83056805, -15.83056805,
-14.95522479, -14.95522479, -14.95522479, -14.95522479,
-14.01470288, -14.01470288, -14.01470288, -14.01470288,
-13.01895689, -13.01895689, -13.01895689, -13.01895689,
-11.98720526, -11.98720526, -11.98720526, -11.98720526,
-10.9521084 , -10.9521084 , -10.9521084 , -10.9521084 ,
-9.9234869 , -9.9234869 , -9.9234869 , -9.9234869 ,
-8.90475082, -8.90475082, -8.90475082, -8.90475082,
-7.89631245, -7.89631245, -7.89631245, -7.89631245,
-6.8995546 , -6.8995546 , -6.8995546 , -6.8995546 ,
-5.91698346, -5.91698346, -5.91698346, -5.91698346,
-4.95296473, -4.95296473, -4.95296473, -4.95296473,
-4.01464772, -4.01464772, -4.01464772, -4.01464772,
-3.11301518, -3.11301518, -3.11301518, -3.11301518,
-2.2637381 , -2.2637381 , -2.2637381 , -2.2637381 ,
-1.48720372, -1.48720372, -1.48720372, -1.48720372,
-0.80685477, -0.80685477, -0.80685477, -0.80685477,
-0.24516991, -0.24516991, -0.24516991, -0.24516991,
0.18238648, 0.18238648, 0.18238648, 0.18238648,
0.47381192, 0.47381192, 0.47381192, 0.47381192,
0.64435108, 0.64435108, 0.64435108, 0.64435108,
0.72335373, 0.72335373, 0.72335373, 0.72335373,
0.74473342, 0.74473342, 0.74473342, 0.74473342,
0.73856117, 0.73856117, 0.73856117, 0.73856117,
0.6849367 , 0.6849367 , 0.6849367 , 0.6849367 ,
0.56264789, 0.56264789, 0.56264789, 0.56264789,
0.43696319, 0.43696319, 0.43696319, 0.43696319,
0.35096003, 0.35096003, 0.35096003, 0.35096003,
0.29570925, 0.29570925, 0.29570925, 0.29570925,
0.26317089, 0.26317089, 0.26317089, 0.26317089,
0.2477037 , 0.2477037 , 0.2477037 , 0.2477037 ,
0.2405064 , 0.2405064 , 0.2405064 , 0.2405064 ,
0.23764166, 0.23764166, 0.23764166, 0.23764166,
0.23553365, 0.23553365, 0.23553365, 0.23553365,
0.23121368, 0.23121368, 0.23121368, 0.23121368,
0.21923797, 0.21923797, 0.21923797, 0.21923797,
0.19361124, 0.19361124, 0.19361124, 0.19361124,
0.15341409, 0.15341409, 0.15341409, 0.15341409,
0.12239052, 0.12239052, 0.12239052, 0.12239052,
0.11071176, 0.11071176, 0.11071176, 0.11071176,
0.12002847, 0.12002847, 0.12002847, 0.12002847,
0.15646164, 0.15646164, 0.15646164, 0.15646164,
0.17647316, 0.17647316, 0.17647316, 0.17647316,
-0.559644 , -0.559644 , -0.559644 , -0.559644 ,
-5.21017841, -5.21017841, -5.21017841, -5.21017841,
-14.79033422, -14.79033422, -14.79033422, -14.79033422,
-19.25410748, -19.25410748, -19.25410748, -19.25410748,
-19.59196705, -19.59196705, -19.59196705, -19.59196705,
-19.59743635, -19.59743635, -19.59743635, -19.59743635,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([9.99104868e+02, 9.99104868e+02, 9.99104868e+02, 9.99104868e+02,
9.97975676e+02, 9.97975676e+02, 9.97975676e+02, 9.97975676e+02,
9.96241518e+02, 9.96241518e+02, 9.96241518e+02, 9.96241518e+02,
9.93227116e+02, 9.93227116e+02, 9.93227116e+02, 9.93227116e+02,
9.88415564e+02, 9.88415564e+02, 9.88415564e+02, 9.88415564e+02,
9.81150008e+02, 9.81150008e+02, 9.81150008e+02, 9.81150008e+02,
9.70822440e+02, 9.70822440e+02, 9.70822440e+02, 9.70822440e+02,
9.56980992e+02, 9.56980992e+02, 9.56980992e+02, 9.56980992e+02,
9.39446248e+02, 9.39446248e+02, 9.39446248e+02, 9.39446248e+02,
9.18360061e+02, 9.18360061e+02, 9.18360061e+02, 9.18360061e+02,
8.94152425e+02, 8.94152425e+02, 8.94152425e+02, 8.94152425e+02,
8.67439511e+02, 8.67439511e+02, 8.67439511e+02, 8.67439511e+02,
8.38892594e+02, 8.38892594e+02, 8.38892594e+02, 8.38892594e+02,
8.09115807e+02, 8.09115807e+02, 8.09115807e+02, 8.09115807e+02,
7.78532813e+02, 7.78532813e+02, 7.78532813e+02, 7.78532813e+02,
7.47781594e+02, 7.47781594e+02, 7.47781594e+02, 7.47781594e+02,
7.17990672e+02, 7.17990672e+02, 7.17990672e+02, 7.17990672e+02,
6.89530685e+02, 6.89530685e+02, 6.89530685e+02, 6.89530685e+02,
6.62290410e+02, 6.62290410e+02, 6.62290410e+02, 6.62290410e+02,
6.36241730e+02, 6.36241730e+02, 6.36241730e+02, 6.36241730e+02,
6.11362815e+02, 6.11362815e+02, 6.11362815e+02, 6.11362815e+02,
5.87658689e+02, 5.87658689e+02, 5.87658689e+02, 5.87658689e+02,
5.65172198e+02, 5.65172198e+02, 5.65172198e+02, 5.65172198e+02,
5.43997977e+02, 5.43997977e+02, 5.43997977e+02, 5.43997977e+02,
5.24296334e+02, 5.24296334e+02, 5.24296334e+02, 5.24296334e+02,
5.06301281e+02, 5.06301281e+02, 5.06301281e+02, 5.06301281e+02,
4.90312750e+02, 4.90312750e+02, 4.90312750e+02, 4.90312750e+02,
4.76661009e+02, 4.76661009e+02, 4.76661009e+02, 4.76661009e+02,
4.65636316e+02, 4.65636316e+02, 4.65636316e+02, 4.65636316e+02,
4.57390322e+02, 4.57390322e+02, 4.57390322e+02, 4.57390322e+02,
4.51845821e+02, 4.51845821e+02, 4.51845821e+02, 4.51845821e+02,
4.48623358e+02, 4.48623358e+02, 4.48623358e+02, 4.48623358e+02,
4.47149698e+02, 4.47149698e+02, 4.47149698e+02, 4.47149698e+02,
4.46744951e+02, 4.46744951e+02, 4.46744951e+02, 4.46744951e+02,
4.46867378e+02, 4.46867378e+02, 4.46867378e+02, 4.46867378e+02,
4.47880353e+02, 4.47880353e+02, 4.47880353e+02, 4.47880353e+02,
4.50188582e+02, 4.50188582e+02, 4.50188582e+02, 4.50188582e+02,
4.52565860e+02, 4.52565860e+02, 4.52565860e+02, 4.52565860e+02,
4.54208238e+02, 4.54208238e+02, 4.54208238e+02, 4.54208238e+02,
4.55263682e+02, 4.55263682e+02, 4.55263682e+02, 4.55263682e+02,
4.55866441e+02, 4.55866441e+02, 4.55866441e+02, 4.55866441e+02,
4.56177752e+02, 4.56177752e+02, 4.56177752e+02, 4.56177752e+02,
4.56286145e+02, 4.56286145e+02, 4.56286145e+02, 4.56286145e+02,
4.56325796e+02, 4.56325796e+02, 4.56325796e+02, 4.56325796e+02,
4.56354405e+02, 4.56354405e+02, 4.56354405e+02, 4.56354405e+02,
4.56418263e+02, 4.56418263e+02, 4.56418263e+02, 4.56418263e+02,
4.56621863e+02, 4.56621863e+02, 4.56621863e+02, 4.56621863e+02,
4.57112300e+02, 4.57112300e+02, 4.57112300e+02, 4.57112300e+02,
4.57973595e+02, 4.57973595e+02, 4.57973595e+02, 4.57973595e+02,
4.58739636e+02, 4.58739636e+02, 4.58739636e+02, 4.58739636e+02,
4.59226578e+02, 4.59226578e+02, 4.59226578e+02, 4.59226578e+02,
4.59409554e+02, 4.59409554e+02, 4.59409554e+02, 4.59409554e+02,
4.58892267e+02, 4.58892267e+02, 4.58892267e+02, 4.58892267e+02,
4.57009278e+02, 4.57009278e+02, 4.57009278e+02, 4.57009278e+02,
4.27595172e+02, 4.27595172e+02, 4.27595172e+02, 4.27595172e+02,
2.37359835e+02, 2.37359835e+02, 2.37359835e+02, 2.37359835e+02,
3.60951923e+01, 3.60951923e+01, 3.60951923e+01, 3.60951923e+01,
9.83220267e-01, 9.83220267e-01, 9.83220267e-01, 9.83220267e-01,
1.30337788e-02, 1.30337788e-02, 1.30337788e-02, 1.30337788e-02,
1.00016618e-02, 1.00016618e-02, 1.00016618e-02, 1.00016618e-02,
1.00000014e-02, 1.00000014e-02, 1.00000014e-02, 1.00000014e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hll': [{'rho': array([0.99934328, 0.99934328, 0.99934328, 0.99934328, 0.99851611,
0.99851611, 0.99851611, 0.99851611, 0.99724725, 0.99724725,
0.99724725, 0.99724725, 0.99504269, 0.99504269, 0.99504269,
0.99504269, 0.9915246 , 0.9915246 , 0.9915246 , 0.9915246 ,
0.98621019, 0.98621019, 0.98621019, 0.98621019, 0.97864743,
0.97864743, 0.97864743, 0.97864743, 0.96849024, 0.96849024,
0.96849024, 0.96849024, 0.95558156, 0.95558156, 0.95558156,
0.95558156, 0.93998953, 0.93998953, 0.93998953, 0.93998953,
0.92198657, 0.92198657, 0.92198657, 0.92198657, 0.90197947,
0.90197947, 0.90197947, 0.90197947, 0.88041737, 0.88041737,
0.88041737, 0.88041737, 0.8577076 , 0.8577076 , 0.8577076 ,
0.8577076 , 0.83419893, 0.83419893, 0.83419893, 0.83419893,
0.81039602, 0.81039602, 0.81039602, 0.81039602, 0.7871834 ,
0.7871834 , 0.7871834 , 0.7871834 , 0.76477086, 0.76477086,
0.76477086, 0.76477086, 0.74313096, 0.74313096, 0.74313096,
0.74313096, 0.72227041, 0.72227041, 0.72227041, 0.72227041,
0.70221675, 0.70221675, 0.70221675, 0.70221675, 0.68302785,
0.68302785, 0.68302785, 0.68302785, 0.66480295, 0.66480295,
0.66480295, 0.66480295, 0.64769042, 0.64769042, 0.64769042,
0.64769042, 0.63188795, 0.63188795, 0.63188795, 0.63188795,
0.61762934, 0.61762934, 0.61762934, 0.61762934, 0.60514723,
0.60514723, 0.60514723, 0.60514723, 0.59461052, 0.59461052,
0.59461052, 0.59461052, 0.58606043, 0.58606043, 0.58606043,
0.58606043, 0.57936591, 0.57936591, 0.57936591, 0.57936591,
0.5742849 , 0.5742849 , 0.5742849 , 0.5742849 , 0.57056455,
0.57056455, 0.57056455, 0.57056455, 0.56812439, 0.56812439,
0.56812439, 0.56812439, 0.56694752, 0.56694752, 0.56694752,
0.56694752, 0.56675102, 0.56675102, 0.56675102, 0.56675102,
0.56703227, 0.56703227, 0.56703227, 0.56703227, 0.56746887,
0.56746887, 0.56746887, 0.56746887, 0.56814229, 0.56814229,
0.56814229, 0.56814229, 0.56926731, 0.56926731, 0.56926731,
0.56926731, 0.5708412 , 0.5708412 , 0.5708412 , 0.5708412 ,
0.57146233, 0.57146233, 0.57146233, 0.57146233, 0.57138607,
0.57138607, 0.57138607, 0.57138607, 0.57157687, 0.57157687,
0.57157687, 0.57157687, 0.57307564, 0.57307564, 0.57307564,
0.57307564, 0.57778305, 0.57778305, 0.57778305, 0.57778305,
0.58965085, 0.58965085, 0.58965085, 0.58965085, 0.61757489,
0.61757489, 0.61757489, 0.61757489, 0.676769 , 0.676769 ,
0.676769 , 0.676769 , 0.7947168 , 0.7947168 , 0.7947168 ,
0.7947168 , 1.02208294, 1.02208294, 1.02208294, 1.02208294,
1.45188831, 1.45188831, 1.45188831, 1.45188831, 2.23726335,
2.23726335, 2.23726335, 2.23726335, 3.36644262, 3.36644262,
3.36644262, 3.36644262, 4.30863495, 4.30863495, 4.30863495,
4.30863495, 4.7719083 , 4.7719083 , 4.7719083 , 4.7719083 ,
3.26199935, 3.26199935, 3.26199935, 3.26199935, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95728753e+01, -1.95728753e+01, -1.95728753e+01, -1.95728753e+01,
-1.95419011e+01, -1.95419011e+01, -1.95419011e+01, -1.95419011e+01,
-1.94943606e+01, -1.94943606e+01, -1.94943606e+01, -1.94943606e+01,
-1.94116539e+01, -1.94116539e+01, -1.94116539e+01, -1.94116539e+01,
-1.92793874e+01, -1.92793874e+01, -1.92793874e+01, -1.92793874e+01,
-1.90789037e+01, -1.90789037e+01, -1.90789037e+01, -1.90789037e+01,
-1.87921421e+01, -1.87921421e+01, -1.87921421e+01, -1.87921421e+01,
-1.84042251e+01, -1.84042251e+01, -1.84042251e+01, -1.84042251e+01,
-1.79064879e+01, -1.79064879e+01, -1.79064879e+01, -1.79064879e+01,
-1.72980007e+01, -1.72980007e+01, -1.72980007e+01, -1.72980007e+01,
-1.65851908e+01, -1.65851908e+01, -1.65851908e+01, -1.65851908e+01,
-1.57797077e+01, -1.57797077e+01, -1.57797077e+01, -1.57797077e+01,
-1.48953072e+01, -1.48953072e+01, -1.48953072e+01, -1.48953072e+01,
-1.39445524e+01, -1.39445524e+01, -1.39445524e+01, -1.39445524e+01,
-1.29362385e+01, -1.29362385e+01, -1.29362385e+01, -1.29362385e+01,
-1.18953231e+01, -1.18953231e+01, -1.18953231e+01, -1.18953231e+01,
-1.08579328e+01, -1.08579328e+01, -1.08579328e+01, -1.08579328e+01,
-9.83073930e+00, -9.83073930e+00, -9.83073930e+00, -9.83073930e+00,
-8.81601604e+00, -8.81601604e+00, -8.81601604e+00, -8.81601604e+00,
-7.81530982e+00, -7.81530982e+00, -7.81530982e+00, -7.81530982e+00,
-6.83139415e+00, -6.83139415e+00, -6.83139415e+00, -6.83139415e+00,
-5.86884536e+00, -5.86884536e+00, -5.86884536e+00, -5.86884536e+00,
-4.93466417e+00, -4.93466417e+00, -4.93466417e+00, -4.93466417e+00,
-4.03889039e+00, -4.03889039e+00, -4.03889039e+00, -4.03889039e+00,
-3.19481551e+00, -3.19481551e+00, -3.19481551e+00, -3.19481551e+00,
-2.41823045e+00, -2.41823045e+00, -2.41823045e+00, -2.41823045e+00,
-1.72550236e+00, -1.72550236e+00, -1.72550236e+00, -1.72550236e+00,
-1.13060519e+00, -1.13060519e+00, -1.13060519e+00, -1.13060519e+00,
-6.41517880e-01, -6.41517880e-01, -6.41517880e-01, -6.41517880e-01,
-2.58502471e-01, -2.58502471e-01, -2.58502471e-01, -2.58502471e-01,
2.67096654e-02, 2.67096654e-02, 2.67096654e-02, 2.67096654e-02,
2.26622767e-01, 2.26622767e-01, 2.26622767e-01, 2.26622767e-01,
3.57372328e-01, 3.57372328e-01, 3.57372328e-01, 3.57372328e-01,
4.33214769e-01, 4.33214769e-01, 4.33214769e-01, 4.33214769e-01,
4.69047565e-01, 4.69047565e-01, 4.69047565e-01, 4.69047565e-01,
4.79570771e-01, 4.79570771e-01, 4.79570771e-01, 4.79570771e-01,
4.76227154e-01, 4.76227154e-01, 4.76227154e-01, 4.76227154e-01,
4.46162545e-01, 4.46162545e-01, 4.46162545e-01, 4.46162545e-01,
3.63818059e-01, 3.63818059e-01, 3.63818059e-01, 3.63818059e-01,
2.15124074e-01, 2.15124074e-01, 2.15124074e-01, 2.15124074e-01,
8.93027653e-02, 8.93027653e-02, 8.93027653e-02, 8.93027653e-02,
2.06270782e-02, 2.06270782e-02, 2.06270782e-02, 2.06270782e-02,
-2.92513730e-03, -2.92513730e-03, -2.92513730e-03, -2.92513730e-03,
-3.92937495e-03, -3.92937495e-03, -3.92937495e-03, -3.92937495e-03,
2.35331575e-02, 2.35331575e-02, 2.35331575e-02, 2.35331575e-02,
9.46626638e-02, 9.46626638e-02, 9.46626638e-02, 9.46626638e-02,
1.49629928e-01, 1.49629928e-01, 1.49629928e-01, 1.49629928e-01,
1.70157235e-01, 1.70157235e-01, 1.70157235e-01, 1.70157235e-01,
1.69584193e-01, 1.69584193e-01, 1.69584193e-01, 1.69584193e-01,
1.45946700e-01, 1.45946700e-01, 1.45946700e-01, 1.45946700e-01,
7.66535320e-02, 7.66535320e-02, 7.66535320e-02, 7.66535320e-02,
1.60429550e-02, 1.60429550e-02, 1.60429550e-02, 1.60429550e-02,
3.24300562e-02, 3.24300562e-02, 3.24300562e-02, 3.24300562e-02,
1.15367973e-01, 1.15367973e-01, 1.15367973e-01, 1.15367973e-01,
-2.77732333e-01, -2.77732333e-01, -2.77732333e-01, -2.77732333e-01,
-6.88001983e+00, -6.88001983e+00, -6.88001983e+00, -6.88001983e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99080830e+02, 9.99080830e+02, 9.99080830e+02, 9.99080830e+02,
9.97923433e+02, 9.97923433e+02, 9.97923433e+02, 9.97923433e+02,
9.96149113e+02, 9.96149113e+02, 9.96149113e+02, 9.96149113e+02,
9.93068920e+02, 9.93068920e+02, 9.93068920e+02, 9.93068920e+02,
9.88160094e+02, 9.88160094e+02, 9.88160094e+02, 9.88160094e+02,
9.80759608e+02, 9.80759608e+02, 9.80759608e+02, 9.80759608e+02,
9.70257799e+02, 9.70257799e+02, 9.70257799e+02, 9.70257799e+02,
9.56206452e+02, 9.56206452e+02, 9.56206452e+02, 9.56206452e+02,
9.38434995e+02, 9.38434995e+02, 9.38434995e+02, 9.38434995e+02,
9.17096911e+02, 9.17096911e+02, 9.17096911e+02, 9.17096911e+02,
8.92632853e+02, 8.92632853e+02, 8.92632853e+02, 8.92632853e+02,
8.65664895e+02, 8.65664895e+02, 8.65664895e+02, 8.65664895e+02,
8.36862646e+02, 8.36862646e+02, 8.36862646e+02, 8.36862646e+02,
8.06819454e+02, 8.06819454e+02, 8.06819454e+02, 8.06819454e+02,
7.75972344e+02, 7.75972344e+02, 7.75972344e+02, 7.75972344e+02,
7.45104729e+02, 7.45104729e+02, 7.45104729e+02, 7.45104729e+02,
7.15395716e+02, 7.15395716e+02, 7.15395716e+02, 7.15395716e+02,
6.87051653e+02, 6.87051653e+02, 6.87051653e+02, 6.87051653e+02,
6.59998015e+02, 6.59998015e+02, 6.59998015e+02, 6.59998015e+02,
6.34216437e+02, 6.34216437e+02, 6.34216437e+02, 6.34216437e+02,
6.09714105e+02, 6.09714105e+02, 6.09714105e+02, 6.09714105e+02,
5.86533693e+02, 5.86533693e+02, 5.86533693e+02, 5.86533693e+02,
5.64763854e+02, 5.64763854e+02, 5.64763854e+02, 5.64763854e+02,
5.44544477e+02, 5.44544477e+02, 5.44544477e+02, 5.44544477e+02,
5.26062779e+02, 5.26062779e+02, 5.26062779e+02, 5.26062779e+02,
5.09535724e+02, 5.09535724e+02, 5.09535724e+02, 5.09535724e+02,
4.95171163e+02, 4.95171163e+02, 4.95171163e+02, 4.95171163e+02,
4.83112079e+02, 4.83112079e+02, 4.83112079e+02, 4.83112079e+02,
4.73389742e+02, 4.73389742e+02, 4.73389742e+02, 4.73389742e+02,
4.65887995e+02, 4.65887995e+02, 4.65887995e+02, 4.65887995e+02,
4.60378925e+02, 4.60378925e+02, 4.60378925e+02, 4.60378925e+02,
4.56538628e+02, 4.56538628e+02, 4.56538628e+02, 4.56538628e+02,
4.54058031e+02, 4.54058031e+02, 4.54058031e+02, 4.54058031e+02,
4.52614854e+02, 4.52614854e+02, 4.52614854e+02, 4.52614854e+02,
4.51934049e+02, 4.51934049e+02, 4.51934049e+02, 4.51934049e+02,
4.51747252e+02, 4.51747252e+02, 4.51747252e+02, 4.51747252e+02,
4.51807226e+02, 4.51807226e+02, 4.51807226e+02, 4.51807226e+02,
4.52374748e+02, 4.52374748e+02, 4.52374748e+02, 4.52374748e+02,
4.53942543e+02, 4.53942543e+02, 4.53942543e+02, 4.53942543e+02,
4.56782749e+02, 4.56782749e+02, 4.56782749e+02, 4.56782749e+02,
4.59187550e+02, 4.59187550e+02, 4.59187550e+02, 4.59187550e+02,
4.60484560e+02, 4.60484560e+02, 4.60484560e+02, 4.60484560e+02,
4.60945937e+02, 4.60945937e+02, 4.60945937e+02, 4.60945937e+02,
4.60942022e+02, 4.60942022e+02, 4.60942022e+02, 4.60942022e+02,
4.60400779e+02, 4.60400779e+02, 4.60400779e+02, 4.60400779e+02,
4.59005251e+02, 4.59005251e+02, 4.59005251e+02, 4.59005251e+02,
4.57913462e+02, 4.57913462e+02, 4.57913462e+02, 4.57913462e+02,
4.57449218e+02, 4.57449218e+02, 4.57449218e+02, 4.57449218e+02,
4.57370070e+02, 4.57370070e+02, 4.57370070e+02, 4.57370070e+02,
4.57864703e+02, 4.57864703e+02, 4.57864703e+02, 4.57864703e+02,
4.59758501e+02, 4.59758501e+02, 4.59758501e+02, 4.59758501e+02,
4.61753093e+02, 4.61753093e+02, 4.61753093e+02, 4.61753093e+02,
4.62763243e+02, 4.62763243e+02, 4.62763243e+02, 4.62763243e+02,
4.57485339e+02, 4.57485339e+02, 4.57485339e+02, 4.57485339e+02,
4.14686087e+02, 4.14686087e+02, 4.14686087e+02, 4.14686087e+02,
2.01684986e+02, 2.01684986e+02, 2.01684986e+02, 2.01684986e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hllc': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745]), 'P': array([1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99948739, 0.99948739, 0.99948739,
0.99948739, 0.98895197, 0.98895197, 0.98895197, 0.98895197,
0.91124915, 0.91124915, 0.91124915, 0.91124915, 0.8298636 ,
0.8298636 , 0.8298636 , 0.8298636 , 1.27044789, 1.27044789,
1.27044789, 1.27044789, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.57838487, -19.57838487, -19.57838487, -19.57838487,
-19.19065938, -19.19065938, -19.19065938, -19.19065938,
-16.24242196, -16.24242196, -16.24242196, -16.24242196,
-7.5071121 , -7.5071121 , -7.5071121 , -7.5071121 ,
-15.1204002 , -15.1204002 , -15.1204002 , -15.1204002 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99286910e+02, 9.99286910e+02, 9.99286910e+02, 9.99286910e+02,
9.84883800e+02, 9.84883800e+02, 9.84883800e+02, 9.84883800e+02,
8.82839182e+02, 8.82839182e+02, 8.82839182e+02, 8.82839182e+02,
6.88955301e+02, 6.88955301e+02, 6.88955301e+02, 6.88955301e+02,
3.63390464e+01, 3.63390464e+01, 3.63390464e+01, 3.63390464e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999956, 0.99999956, 0.99999956, 0.99999956,
0.99998097, 0.99998097, 0.99998097, 0.99998097, 0.99964679,
0.99964679, 0.99964679, 0.99964679, 0.99634543, 0.99634543,
0.99634543, 0.99634543, 0.97673083, 0.97673083, 0.97673083,
0.97673083, 0.90100139, 0.90100139, 0.90100139, 0.90100139,
0.75547019, 0.75547019, 0.75547019, 0.75547019, 0.70753077,
0.70753077, 0.70753077, 0.70753077, 1.66329407, 1.66329407,
1.66329407, 1.66329407, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59743357, -19.59743357, -19.59743357, -19.59743357,
-19.59673808, -19.59673808, -19.59673808, -19.59673808,
-19.58424969, -19.58424969, -19.58424969, -19.58424969,
-19.46129146, -19.46129146, -19.46129146, -19.46129146,
-18.73730805, -18.73730805, -18.73730805, -18.73730805,
-16.00950488, -16.00950488, -16.00950488, -16.00950488,
-9.43290713, -9.43290713, -9.43290713, -9.43290713,
-1.48421801, -1.48421801, -1.48421801, -1.48421801,
-11.3713146 , -11.3713146 , -11.3713146 , -11.3713146 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999385e+02, 9.99999385e+02, 9.99999385e+02, 9.99999385e+02,
9.99973363e+02, 9.99973363e+02, 9.99973363e+02, 9.99973363e+02,
9.99506198e+02, 9.99506198e+02, 9.99506198e+02, 9.99506198e+02,
9.94916589e+02, 9.94916589e+02, 9.94916589e+02, 9.94916589e+02,
9.68255214e+02, 9.68255214e+02, 9.68255214e+02, 9.68255214e+02,
8.73242615e+02, 8.73242615e+02, 8.73242615e+02, 8.73242615e+02,
6.79344724e+02, 6.79344724e+02, 6.79344724e+02, 6.79344724e+02,
5.50094126e+02, 5.50094126e+02, 5.50094126e+02, 5.50094126e+02,
9.51270435e+01, 9.51270435e+01, 9.51270435e+01, 9.51270435e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999926, 0.99999926,
0.99999926, 0.99999926, 0.99998694, 0.99998694, 0.99998694,
0.99998694, 0.99984664, 0.99984664, 0.99984664, 0.99984664,
0.9987454 , 0.9987454 , 0.9987454 , 0.9987454 , 0.99266643,
0.99266643, 0.99266643, 0.99266643, 0.96887737, 0.96887737,
0.96887737, 0.96887737, 0.90244574, 0.90244574, 0.90244574,
0.90244574, 0.76901116, 0.76901116, 0.76901116, 0.76901116,
0.6478654 , 0.6478654 , 0.6478654 , 0.6478654 , 0.65349069,
0.65349069, 0.65349069, 0.65349069, 2.067065 , 2.067065 ,
2.067065 , 2.067065 , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744907, -19.59744907, -19.59744907, -19.59744907,
-19.59742242, -19.59742242, -19.59742242, -19.59742242,
-19.5969614 , -19.5969614 , -19.5969614 , -19.5969614 ,
-19.59171353, -19.59171353, -19.59171353, -19.59171353,
-19.55055566, -19.55055566, -19.55055566, -19.55055566,
-19.3236798 , -19.3236798 , -19.3236798 , -19.3236798 ,
-18.43434783, -18.43434783, -18.43434783, -18.43434783,
-15.90408442, -15.90408442, -15.90408442, -15.90408442,
-10.48663119, -10.48663119, -10.48663119, -10.48663119,
-4.574182 , -4.574182 , -4.574182 , -4.574182 ,
1.13492526, 1.13492526, 1.13492526, 1.13492526,
-8.69947782, -8.69947782, -8.69947782, -8.69947782,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999965e+02, 9.99999965e+02, 9.99999965e+02, 9.99999965e+02,
9.99998968e+02, 9.99998968e+02, 9.99998968e+02, 9.99998968e+02,
9.99981718e+02, 9.99981718e+02, 9.99981718e+02, 9.99981718e+02,
9.99785381e+02, 9.99785381e+02, 9.99785381e+02, 9.99785381e+02,
9.98246693e+02, 9.98246693e+02, 9.98246693e+02, 9.98246693e+02,
9.89801126e+02, 9.89801126e+02, 9.89801126e+02, 9.89801126e+02,
9.57286658e+02, 9.57286658e+02, 9.57286658e+02, 9.57286658e+02,
8.69906714e+02, 8.69906714e+02, 8.69906714e+02, 8.69906714e+02,
7.07459228e+02, 7.07459228e+02, 7.07459228e+02, 7.07459228e+02,
5.43451614e+02, 5.43451614e+02, 5.43451614e+02, 5.43451614e+02,
4.93414823e+02, 4.93414823e+02, 4.93414823e+02, 4.93414823e+02,
1.61847159e+02, 1.61847159e+02, 1.61847159e+02, 1.61847159e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999949, 0.99999949, 0.99999949, 0.99999949, 0.99999357,
0.99999357, 0.99999357, 0.99999357, 0.99993888, 0.99993888,
0.99993888, 0.99993888, 0.99955523, 0.99955523, 0.99955523,
0.99955523, 0.99750061, 0.99750061, 0.99750061, 0.99750061,
0.98912252, 0.98912252, 0.98912252, 0.98912252, 0.96323089,
0.96323089, 0.96323089, 0.96323089, 0.90234429, 0.90234429,
0.90234429, 0.90234429, 0.79042885, 0.79042885, 0.79042885,
0.79042885, 0.66843501, 0.66843501, 0.66843501, 0.66843501,
0.59183401, 0.59183401, 0.59183401, 0.59183401, 0.63275902,
0.63275902, 0.63275902, 0.63275902, 2.46485766, 2.46485766,
2.46485766, 2.46485766, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744996, -19.59744996, -19.59744996, -19.59744996,
-19.5974489 , -19.5974489 , -19.5974489 , -19.5974489 ,
-19.59743093, -19.59743093, -19.59743093, -19.59743093,
-19.59720925, -19.59720925, -19.59720925, -19.59720925,
-19.5951631 , -19.5951631 , -19.5951631 , -19.5951631 ,
-19.58081283, -19.58081283, -19.58081283, -19.58081283,
-19.50398779, -19.50398779, -19.50398779, -19.50398779,
-19.1904876 , -19.1904876 , -19.1904876 , -19.1904876 ,
-18.21442327, -18.21442327, -18.21442327, -18.21442327,
-15.85574791, -15.85574791, -15.85574791, -15.85574791,
-11.23238647, -11.23238647, -11.23238647, -11.23238647,
-5.46798522, -5.46798522, -5.46798522, -5.46798522,
-2.02281046, -2.02281046, -2.02281046, -2.02281046,
1.33644011, 1.33644011, 1.33644011, 1.33644011,
-6.66695933, -6.66695933, -6.66695933, -6.66695933,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
9.99999286e+02, 9.99999286e+02, 9.99999286e+02, 9.99999286e+02,
9.99990992e+02, 9.99990992e+02, 9.99990992e+02, 9.99990992e+02,
9.99914435e+02, 9.99914435e+02, 9.99914435e+02, 9.99914435e+02,
9.99377660e+02, 9.99377660e+02, 9.99377660e+02, 9.99377660e+02,
9.96508169e+02, 9.96508169e+02, 9.96508169e+02, 9.96508169e+02,
9.84871586e+02, 9.84871586e+02, 9.84871586e+02, 9.84871586e+02,
9.49393535e+02, 9.49393535e+02, 9.49393535e+02, 9.49393535e+02,
8.68303546e+02, 8.68303546e+02, 8.68303546e+02, 8.68303546e+02,
7.27511818e+02, 7.27511818e+02, 7.27511818e+02, 7.27511818e+02,
5.81800666e+02, 5.81800666e+02, 5.81800666e+02, 5.81800666e+02,
4.77773799e+02, 4.77773799e+02, 4.77773799e+02, 4.77773799e+02,
4.72750813e+02, 4.72750813e+02, 4.72750813e+02, 4.72750813e+02,
2.21621630e+02, 2.21621630e+02, 2.21621630e+02, 2.21621630e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999973, 0.99999973, 0.99999973,
0.99999973, 0.99999717, 0.99999717, 0.99999717, 0.99999717,
0.99997627, 0.99997627, 0.99997627, 0.99997627, 0.99983916,
0.99983916, 0.99983916, 0.99983916, 0.99911628, 0.99911628,
0.99911628, 0.99911628, 0.9960667 , 0.9960667 , 0.9960667 ,
0.9960667 , 0.985847 , 0.985847 , 0.985847 , 0.985847 ,
0.95879846, 0.95879846, 0.95879846, 0.95879846, 0.9020718 ,
0.9020718 , 0.9020718 , 0.9020718 , 0.80567311, 0.80567311,
0.80567311, 0.80567311, 0.69028634, 0.69028634, 0.69028634,
0.69028634, 0.61553465, 0.61553465, 0.61553465, 0.61553465,
0.57082122, 0.57082122, 0.57082122, 0.57082122, 0.62660163,
0.62660163, 0.62660163, 0.62660163, 2.8493705 , 2.8493705 ,
2.8493705 , 2.8493705 , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744996, -19.59744996, -19.59744996, -19.59744996,
-19.59744923, -19.59744923, -19.59744923, -19.59744923,
-19.59743987, -19.59743987, -19.59743987, -19.59743987,
-19.59734408, -19.59734408, -19.59734408, -19.59734408,
-19.59656205, -19.59656205, -19.59656205, -19.59656205,
-19.59143234, -19.59143234, -19.59143234, -19.59143234,
-19.56439055, -19.56439055, -19.56439055, -19.56439055,
-19.45029042, -19.45029042, -19.45029042, -19.45029042,
-19.06697844, -19.06697844, -19.06697844, -19.06697844,
-18.04151049, -18.04151049, -18.04151049, -18.04151049,
-15.82304381, -15.82304381, -15.82304381, -15.82304381,
-11.78035985, -11.78035985, -11.78035985, -11.78035985,
-6.62297822, -6.62297822, -6.62297822, -6.62297822,
-2.34925393, -2.34925393, -2.34925393, -2.34925393,
-0.93147575, -0.93147575, -0.93147575, -0.93147575,
0.57907591, 0.57907591, 0.57907591, 0.57907591,
-5.12959986, -5.12959986, -5.12959986, -5.12959986,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999971e+02, 9.99999971e+02, 9.99999971e+02, 9.99999971e+02,
9.99999621e+02, 9.99999621e+02, 9.99999621e+02, 9.99999621e+02,
9.99996037e+02, 9.99996037e+02, 9.99996037e+02, 9.99996037e+02,
9.99966776e+02, 9.99966776e+02, 9.99966776e+02, 9.99966776e+02,
9.99774861e+02, 9.99774861e+02, 9.99774861e+02, 9.99774861e+02,
9.98763679e+02, 9.98763679e+02, 9.98763679e+02, 9.98763679e+02,
9.94506696e+02, 9.94506696e+02, 9.94506696e+02, 9.94506696e+02,
9.80319621e+02, 9.80319621e+02, 9.80319621e+02, 9.80319621e+02,
9.43228677e+02, 9.43228677e+02, 9.43228677e+02, 9.43228677e+02,
8.67220336e+02, 8.67220336e+02, 8.67220336e+02, 8.67220336e+02,
7.42845128e+02, 7.42845128e+02, 7.42845128e+02, 7.42845128e+02,
6.04271160e+02, 6.04271160e+02, 6.04271160e+02, 6.04271160e+02,
5.17946575e+02, 5.17946575e+02, 5.17946575e+02, 5.17946575e+02,
4.54246489e+02, 4.54246489e+02, 4.54246489e+02, 4.54246489e+02,
4.66921417e+02, 4.66921417e+02, 4.66921417e+02, 4.66921417e+02,
2.65782010e+02, 2.65782010e+02, 2.65782010e+02, 2.65782010e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999882, 0.99999882,
0.99999882, 0.99999882, 0.99999087, 0.99999087, 0.99999087,
0.99999087, 0.99994103, 0.99994103, 0.99994103, 0.99994103,
0.99968069, 0.99968069, 0.99968069, 0.99968069, 0.99855338,
0.99855338, 0.99855338, 0.99855338, 0.99453492, 0.99453492,
0.99453492, 0.99453492, 0.9828373 , 0.9828373 , 0.9828373 ,
0.9828373 , 0.95517652, 0.95517652, 0.95517652, 0.95517652,
0.90186652, 0.90186652, 0.90186652, 0.90186652, 0.81635295,
0.81635295, 0.81635295, 0.81635295, 0.71244513, 0.71244513,
0.71244513, 0.71244513, 0.62960431, 0.62960431, 0.62960431,
0.62960431, 0.5905485 , 0.5905485 , 0.5905485 , 0.5905485 ,
0.56964965, 0.56964965, 0.56964965, 0.56964965, 0.62277297,
0.62277297, 0.62277297, 0.62277297, 3.22604657, 3.22604657,
3.22604657, 3.22604657, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744957, -19.59744957, -19.59744957, -19.59744957,
-19.59744521, -19.59744521, -19.59744521, -19.59744521,
-19.59740573, -19.59740573, -19.59740573, -19.59740573,
-19.59710849, -19.59710849, -19.59710849, -19.59710849,
-19.59524365, -19.59524365, -19.59524365, -19.59524365,
-19.58550347, -19.58550347, -19.58550347, -19.58550347,
-19.54332535, -19.54332535, -19.54332535, -19.54332535,
-19.39286212, -19.39286212, -19.39286212, -19.39286212,
-18.95316282, -18.95316282, -18.95316282, -18.95316282,
-17.89996733, -17.89996733, -17.89996733, -17.89996733,
-15.80397365, -15.80397365, -15.80397365, -15.80397365,
-12.20514556, -12.20514556, -12.20514556, -12.20514556,
-7.48327423, -7.48327423, -7.48327423, -7.48327423,
-3.65059602, -3.65059602, -3.65059602, -3.65059602,
-0.6984312 , -0.6984312 , -0.6984312 , -0.6984312 ,
-0.45527074, -0.45527074, -0.45527074, -0.45527074,
0.02647803, 0.02647803, 0.02647803, 0.02647803,
-4.01833224, -4.01833224, -4.01833224, -4.01833224,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999984e+02, 9.99999984e+02, 9.99999984e+02, 9.99999984e+02,
9.99999821e+02, 9.99999821e+02, 9.99999821e+02, 9.99999821e+02,
9.99998344e+02, 9.99998344e+02, 9.99998344e+02, 9.99998344e+02,
9.99987222e+02, 9.99987222e+02, 9.99987222e+02, 9.99987222e+02,
9.99917449e+02, 9.99917449e+02, 9.99917449e+02, 9.99917449e+02,
9.99553087e+02, 9.99553087e+02, 9.99553087e+02, 9.99553087e+02,
9.97976586e+02, 9.97976586e+02, 9.97976586e+02, 9.97976586e+02,
9.92370003e+02, 9.92370003e+02, 9.92370003e+02, 9.92370003e+02,
9.76141335e+02, 9.76141335e+02, 9.76141335e+02, 9.76141335e+02,
9.38208895e+02, 9.38208895e+02, 9.38208895e+02, 9.38208895e+02,
8.66586204e+02, 8.66586204e+02, 8.66586204e+02, 8.66586204e+02,
7.55006792e+02, 7.55006792e+02, 7.55006792e+02, 7.55006792e+02,
6.26897420e+02, 6.26897420e+02, 6.26897420e+02, 6.26897420e+02,
5.32228005e+02, 5.32228005e+02, 5.32228005e+02, 5.32228005e+02,
4.88558147e+02, 4.88558147e+02, 4.88558147e+02, 4.88558147e+02,
4.52862489e+02, 4.52862489e+02, 4.52862489e+02, 4.52862489e+02,
4.62028109e+02, 4.62028109e+02, 4.62028109e+02, 4.62028109e+02,
3.00499029e+02, 3.00499029e+02, 3.00499029e+02, 3.00499029e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999952, 0.99999952, 0.99999952, 0.99999952, 0.9999965 ,
0.9999965 , 0.9999965 , 0.9999965 , 0.99997816, 0.99997816,
0.99997816, 0.99997816, 0.99988296, 0.99988296, 0.99988296,
0.99988296, 0.99946234, 0.99946234, 0.99946234, 0.99946234,
0.99789034, 0.99789034, 0.99789034, 0.99789034, 0.99295856,
0.99295856, 0.99295856, 0.99295856, 0.980071 , 0.980071 ,
0.980071 , 0.980071 , 0.9521403 , 0.9521403 , 0.9521403 ,
0.9521403 , 0.90173314, 0.90173314, 0.90173314, 0.90173314,
0.82445024, 0.82445024, 0.82445024, 0.82445024, 0.72949004,
0.72949004, 0.72949004, 0.72949004, 0.65187205, 0.65187205,
0.65187205, 0.65187205, 0.59559841, 0.59559841, 0.59559841,
0.59559841, 0.57914818, 0.57914818, 0.57914818, 0.57914818,
0.57437002, 0.57437002, 0.57437002, 0.57437002, 0.63368918,
0.63368918, 0.63368918, 0.63368918, 3.58726912, 3.58726912,
3.58726912, 3.58726912, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974479e+01, -1.95974479e+01, -1.95974479e+01, -1.95974479e+01,
-1.95974320e+01, -1.95974320e+01, -1.95974320e+01, -1.95974320e+01,
-1.95973191e+01, -1.95973191e+01, -1.95973191e+01, -1.95973191e+01,
-1.95966329e+01, -1.95966329e+01, -1.95966329e+01, -1.95966329e+01,
-1.95930707e+01, -1.95930707e+01, -1.95930707e+01, -1.95930707e+01,
-1.95773334e+01, -1.95773334e+01, -1.95773334e+01, -1.95773334e+01,
-1.95185033e+01, -1.95185033e+01, -1.95185033e+01, -1.95185033e+01,
-1.93336877e+01, -1.93336877e+01, -1.93336877e+01, -1.93336877e+01,
-1.88482664e+01, -1.88482664e+01, -1.88482664e+01, -1.88482664e+01,
-1.77810596e+01, -1.77810596e+01, -1.77810596e+01, -1.77810596e+01,
-1.57923139e+01, -1.57923139e+01, -1.57923139e+01, -1.57923139e+01,
-1.25447227e+01, -1.25447227e+01, -1.25447227e+01, -1.25447227e+01,
-8.23822829e+00, -8.23822829e+00, -8.23822829e+00, -8.23822829e+00,
-4.43863694e+00, -4.43863694e+00, -4.43863694e+00, -4.43863694e+00,
-1.92160634e+00, -1.92160634e+00, -1.92160634e+00, -1.92160634e+00,
-1.77949723e-02, -1.77949723e-02, -1.77949723e-02, -1.77949723e-02,
-2.01908997e-01, -2.01908997e-01, -2.01908997e-01, -2.01908997e-01,
-2.14835096e-01, -2.14835096e-01, -2.14835096e-01, -2.14835096e-01,
-3.18805273e+00, -3.18805273e+00, -3.18805273e+00, -3.18805273e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999921e+02, 9.99999921e+02, 9.99999921e+02, 9.99999921e+02,
9.99999326e+02, 9.99999326e+02, 9.99999326e+02, 9.99999326e+02,
9.99995102e+02, 9.99995102e+02, 9.99995102e+02, 9.99995102e+02,
9.99969427e+02, 9.99969427e+02, 9.99969427e+02, 9.99969427e+02,
9.99836154e+02, 9.99836154e+02, 9.99836154e+02, 9.99836154e+02,
9.99247547e+02, 9.99247547e+02, 9.99247547e+02, 9.99247547e+02,
9.97049802e+02, 9.97049802e+02, 9.97049802e+02, 9.97049802e+02,
9.90172519e+02, 9.90172519e+02, 9.90172519e+02, 9.90172519e+02,
9.72304421e+02, 9.72304421e+02, 9.72304421e+02, 9.72304421e+02,
9.34010134e+02, 9.34010134e+02, 9.34010134e+02, 9.34010134e+02,
8.66196340e+02, 8.66196340e+02, 8.66196340e+02, 8.66196340e+02,
7.64882551e+02, 7.64882551e+02, 7.64882551e+02, 7.64882551e+02,
6.45657443e+02, 6.45657443e+02, 6.45657443e+02, 6.45657443e+02,
5.54585581e+02, 5.54585581e+02, 5.54585581e+02, 5.54585581e+02,
4.92797177e+02, 4.92797177e+02, 4.92797177e+02, 4.92797177e+02,
4.75345099e+02, 4.75345099e+02, 4.75345099e+02, 4.75345099e+02,
4.57990819e+02, 4.57990819e+02, 4.57990819e+02, 4.57990819e+02,
4.60103261e+02, 4.60103261e+02, 4.60103261e+02, 4.60103261e+02,
3.30008496e+02, 3.30008496e+02, 3.30008496e+02, 3.30008496e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999981, 0.99999981, 0.99999981,
0.99999981, 0.99999866, 0.99999866, 0.99999866, 0.99999866,
0.99999185, 0.99999185, 0.99999185, 0.99999185, 0.99995665,
0.99995665, 0.99995665, 0.99995665, 0.9997987 , 0.9997987 ,
0.9997987 , 0.9997987 , 0.99918622, 0.99918622, 0.99918622,
0.99918622, 0.99714781, 0.99714781, 0.99714781, 0.99714781,
0.99137002, 0.99137002, 0.99137002, 0.99137002, 0.97752123,
0.97752123, 0.97752123, 0.97752123, 0.94954186, 0.94954186,
0.94954186, 0.94954186, 0.90166108, 0.90166108, 0.90166108,
0.90166108, 0.83096957, 0.83096957, 0.83096957, 0.83096957,
0.7436459 , 0.7436459 , 0.7436459 , 0.7436459 , 0.66836636,
0.66836636, 0.66836636, 0.66836636, 0.61591285, 0.61591285,
0.61591285, 0.61591285, 0.57809044, 0.57809044, 0.57809044,
0.57809044, 0.57324242, 0.57324242, 0.57324242, 0.57324242,
0.57874876, 0.57874876, 0.57874876, 0.57874876, 0.65663366,
0.65663366, 0.65663366, 0.65663366, 3.93821618, 3.93821618,
3.93821618, 3.93821618, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.5974499 , -19.5974499 , -19.5974499 , -19.5974499 ,
-19.59744909, -19.59744909, -19.59744909, -19.59744909,
-19.59744279, -19.59744279, -19.59744279, -19.59744279,
-19.59739985, -19.59739985, -19.59739985, -19.59739985,
-19.59714503, -19.59714503, -19.59714503, -19.59714503,
-19.59582803, -19.59582803, -19.59582803, -19.59582803,
-19.58991798, -19.58991798, -19.58991798, -19.58991798,
-19.56700021, -19.56700021, -19.56700021, -19.56700021,
-19.49069137, -19.49069137, -19.49069137, -19.49069137,
-19.27397613, -19.27397613, -19.27397613, -19.27397613,
-18.75133258, -18.75133258, -18.75133258, -18.75133258,
-17.67906739, -17.67906739, -17.67906739, -17.67906739,
-15.78509673, -15.78509673, -15.78509673, -15.78509673,
-12.82087437, -12.82087437, -12.82087437, -12.82087437,
-8.87533311, -8.87533311, -8.87533311, -8.87533311,
-5.28368574, -5.28368574, -5.28368574, -5.28368574,
-2.42980818, -2.42980818, -2.42980818, -2.42980818,
-1.01970799, -1.01970799, -1.01970799, -1.01970799,
0.11540562, 0.11540562, 0.11540562, 0.11540562,
-0.03629139, -0.03629139, -0.03629139, -0.03629139,
-0.24415936, -0.24415936, -0.24415936, -0.24415936,
-2.52596988, -2.52596988, -2.52596988, -2.52596988,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999966e+02, 9.99999966e+02, 9.99999966e+02, 9.99999966e+02,
9.99999730e+02, 9.99999730e+02, 9.99999730e+02, 9.99999730e+02,
9.99998124e+02, 9.99998124e+02, 9.99998124e+02, 9.99998124e+02,
9.99988589e+02, 9.99988589e+02, 9.99988589e+02, 9.99988589e+02,
9.99939313e+02, 9.99939313e+02, 9.99939313e+02, 9.99939313e+02,
9.99718211e+02, 9.99718211e+02, 9.99718211e+02, 9.99718211e+02,
9.98861226e+02, 9.98861226e+02, 9.98861226e+02, 9.98861226e+02,
9.96012267e+02, 9.96012267e+02, 9.96012267e+02, 9.96012267e+02,
9.87959394e+02, 9.87959394e+02, 9.87959394e+02, 9.87959394e+02,
9.68770607e+02, 9.68770607e+02, 9.68770607e+02, 9.68770607e+02,
9.30421725e+02, 9.30421725e+02, 9.30421725e+02, 9.30421725e+02,
8.65952932e+02, 8.65952932e+02, 8.65952932e+02, 8.65952932e+02,
7.73014001e+02, 7.73014001e+02, 7.73014001e+02, 7.73014001e+02,
6.62399864e+02, 6.62399864e+02, 6.62399864e+02, 6.62399864e+02,
5.71846195e+02, 5.71846195e+02, 5.71846195e+02, 5.71846195e+02,
5.12728848e+02, 5.12728848e+02, 5.12728848e+02, 5.12728848e+02,
4.72759582e+02, 4.72759582e+02, 4.72759582e+02, 4.72759582e+02,
4.68567984e+02, 4.68567984e+02, 4.68567984e+02, 4.68567984e+02,
4.62783905e+02, 4.62783905e+02, 4.62783905e+02, 4.62783905e+02,
4.61540554e+02, 4.61540554e+02, 4.61540554e+02, 4.61540554e+02,
3.57220974e+02, 3.57220974e+02, 3.57220974e+02, 3.57220974e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999992,
0.99999992, 0.99999992, 0.99999992, 0.99999949, 0.99999949,
0.99999949, 0.99999949, 0.99999694, 0.99999694, 0.99999694,
0.99999694, 0.99998382, 0.99998382, 0.99998382, 0.99998382,
0.9999242 , 0.9999242 , 0.9999242 , 0.9999242 , 0.99968622,
0.99968622, 0.99968622, 0.99968622, 0.99885605, 0.99885605,
0.99885605, 0.99885605, 0.99634282, 0.99634282, 0.99634282,
0.99634282, 0.98978924, 0.98978924, 0.98978924, 0.98978924,
0.97516207, 0.97516207, 0.97516207, 0.97516207, 0.9472807 ,
0.9472807 , 0.9472807 , 0.9472807 , 0.9016408 , 0.9016408 ,
0.9016408 , 0.9016408 , 0.83637229, 0.83637229, 0.83637229,
0.83637229, 0.75564896, 0.75564896, 0.75564896, 0.75564896,
0.68361276, 0.68361276, 0.68361276, 0.68361276, 0.6288253 ,
0.6288253 , 0.6288253 , 0.6288253 , 0.59528975, 0.59528975,
0.59528975, 0.59528975, 0.57037586, 0.57037586, 0.57037586,
0.57037586, 0.57016667, 0.57016667, 0.57016667, 0.57016667,
0.58091342, 0.58091342, 0.58091342, 0.58091342, 0.68382481,
0.68382481, 0.68382481, 0.68382481, 4.28630792, 4.28630792,
4.28630792, 4.28630792, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974496e+01, -1.95974496e+01, -1.95974496e+01, -1.95974496e+01,
-1.95974471e+01, -1.95974471e+01, -1.95974471e+01, -1.95974471e+01,
-1.95974308e+01, -1.95974308e+01, -1.95974308e+01, -1.95974308e+01,
-1.95973355e+01, -1.95973355e+01, -1.95973355e+01, -1.95973355e+01,
-1.95968445e+01, -1.95968445e+01, -1.95968445e+01, -1.95968445e+01,
-1.95946140e+01, -1.95946140e+01, -1.95946140e+01, -1.95946140e+01,
-1.95857093e+01, -1.95857093e+01, -1.95857093e+01, -1.95857093e+01,
-1.95546421e+01, -1.95546421e+01, -1.95546421e+01, -1.95546421e+01,
-1.94605230e+01, -1.94605230e+01, -1.94605230e+01, -1.94605230e+01,
-1.92144746e+01, -1.92144746e+01, -1.92144746e+01, -1.92144746e+01,
-1.86614309e+01, -1.86614309e+01, -1.86614309e+01, -1.86614309e+01,
-1.75901244e+01, -1.75901244e+01, -1.75901244e+01, -1.75901244e+01,
-1.57811609e+01, -1.57811609e+01, -1.57811609e+01, -1.57811609e+01,
-1.30521736e+01, -1.30521736e+01, -1.30521736e+01, -1.30521736e+01,
-9.42385469e+00, -9.42385469e+00, -9.42385469e+00, -9.42385469e+00,
-5.98755008e+00, -5.98755008e+00, -5.98755008e+00, -5.98755008e+00,
-3.23573271e+00, -3.23573271e+00, -3.23573271e+00, -3.23573271e+00,
-1.20413317e+00, -1.20413317e+00, -1.20413317e+00, -1.20413317e+00,
-5.64305177e-01, -5.64305177e-01, -5.64305177e-01, -5.64305177e-01,
1.39995268e-02, 1.39995268e-02, 1.39995268e-02, 1.39995268e-02,
1.89256301e-02, 1.89256301e-02, 1.89256301e-02, 1.89256301e-02,
-1.95671716e-01, -1.95671716e-01, -1.95671716e-01, -1.95671716e-01,
-1.96806591e+00, -1.96806591e+00, -1.96806591e+00, -1.96806591e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999986e+02, 9.99999986e+02, 9.99999986e+02, 9.99999986e+02,
9.99999893e+02, 9.99999893e+02, 9.99999893e+02, 9.99999893e+02,
9.99999281e+02, 9.99999281e+02, 9.99999281e+02, 9.99999281e+02,
9.99995715e+02, 9.99995715e+02, 9.99995715e+02, 9.99995715e+02,
9.99977346e+02, 9.99977346e+02, 9.99977346e+02, 9.99977346e+02,
9.99893890e+02, 9.99893890e+02, 9.99893890e+02, 9.99893890e+02,
9.99560786e+02, 9.99560786e+02, 9.99560786e+02, 9.99560786e+02,
9.98399370e+02, 9.98399370e+02, 9.98399370e+02, 9.98399370e+02,
9.94887882e+02, 9.94887882e+02, 9.94887882e+02, 9.94887882e+02,
9.85758358e+02, 9.85758358e+02, 9.85758358e+02, 9.85758358e+02,
9.65503274e+02, 9.65503274e+02, 9.65503274e+02, 9.65503274e+02,
9.27302076e+02, 9.27302076e+02, 9.27302076e+02, 9.27302076e+02,
8.65817631e+02, 8.65817631e+02, 8.65817631e+02, 8.65817631e+02,
7.79892533e+02, 7.79892533e+02, 7.79892533e+02, 7.79892533e+02,
6.76933134e+02, 6.76933134e+02, 6.76933134e+02, 6.76933134e+02,
5.89167334e+02, 5.89167334e+02, 5.89167334e+02, 5.89167334e+02,
5.25412022e+02, 5.25412022e+02, 5.25412022e+02, 5.25412022e+02,
4.89078201e+02, 4.89078201e+02, 4.89078201e+02, 4.89078201e+02,
4.63985098e+02, 4.63985098e+02, 4.63985098e+02, 4.63985098e+02,
4.65058638e+02, 4.65058638e+02, 4.65058638e+02, 4.65058638e+02,
4.65156283e+02, 4.65156283e+02, 4.65156283e+02, 4.65156283e+02,
4.64659087e+02, 4.64659087e+02, 4.64659087e+02, 4.64659087e+02,
3.83686908e+02, 3.83686908e+02, 3.83686908e+02, 3.83686908e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.9999998 , 0.9999998 , 0.9999998 , 0.9999998 , 0.99999884,
0.99999884, 0.99999884, 0.99999884, 0.99999392, 0.99999392,
0.99999392, 0.99999392, 0.99997133, 0.99997133, 0.99997133,
0.99997133, 0.99987901, 0.99987901, 0.99987901, 0.99987901,
0.99954452, 0.99954452, 0.99954452, 0.99954452, 0.99847623,
0.99847623, 0.99847623, 0.99847623, 0.9954892 , 0.9954892 ,
0.9954892 , 0.9954892 , 0.98822855, 0.98822855, 0.98822855,
0.98822855, 0.97297074, 0.97297074, 0.97297074, 0.97297074,
0.94528761, 0.94528761, 0.94528761, 0.94528761, 0.90165787,
0.90165787, 0.90165787, 0.90165787, 0.84092906, 0.84092906,
0.84092906, 0.84092906, 0.76608711, 0.76608711, 0.76608711,
0.76608711, 0.69670731, 0.69670731, 0.69670731, 0.69670731,
0.64308367, 0.64308367, 0.64308367, 0.64308367, 0.60371067,
0.60371067, 0.60371067, 0.60371067, 0.58425946, 0.58425946,
0.58425946, 0.58425946, 0.56833535, 0.56833535, 0.56833535,
0.56833535, 0.56833068, 0.56833068, 0.56833068, 0.56833068,
0.58142537, 0.58142537, 0.58142537, 0.58142537, 0.70986026,
0.70986026, 0.70986026, 0.70986026, 4.63577346, 4.63577346,
4.63577346, 4.63577346, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744984, -19.59744984, -19.59744984, -19.59744984,
-19.59744887, -19.59744887, -19.59744887, -19.59744887,
-19.59744263, -19.59744263, -19.59744263, -19.59744263,
-19.59740678, -19.59740678, -19.59740678, -19.59740678,
-19.5972226 , -19.5972226 , -19.5972226 , -19.5972226 ,
-19.59637732, -19.59637732, -19.59637732, -19.59637732,
-19.59292292, -19.59292292, -19.59292292, -19.59292292,
-19.58040675, -19.58040675, -19.58040675, -19.58040675,
-19.54042297, -19.54042297, -19.54042297, -19.54042297,
-19.42851195, -19.42851195, -19.42851195, -19.42851195,
-19.15564745, -19.15564745, -19.15564745, -19.15564745,
-18.57773882, -18.57773882, -18.57773882, -18.57773882,
-17.51157549, -17.51157549, -17.51157549, -17.51157549,
-15.77941976, -15.77941976, -15.77941976, -15.77941976,
-13.24556307, -13.24556307, -13.24556307, -13.24556307,
-9.90130641, -9.90130641, -9.90130641, -9.90130641,
-6.63662472, -6.63662472, -6.63662472, -6.63662472,
-3.86321413, -3.86321413, -3.86321413, -3.86321413,
-1.90761467, -1.90761467, -1.90761467, -1.90761467,
-0.53373993, -0.53373993, -0.53373993, -0.53373993,
-0.32840898, -0.32840898, -0.32840898, -0.32840898,
-0.10921252, -0.10921252, -0.10921252, -0.10921252,
-0.05293691, -0.05293691, -0.05293691, -0.05293691,
-0.18859653, -0.18859653, -0.18859653, -0.18859653,
-1.47682846, -1.47682846, -1.47682846, -1.47682846,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999958e+02, 9.99999958e+02, 9.99999958e+02, 9.99999958e+02,
9.99999724e+02, 9.99999724e+02, 9.99999724e+02, 9.99999724e+02,
9.99998383e+02, 9.99998383e+02, 9.99998383e+02, 9.99998383e+02,
9.99991492e+02, 9.99991492e+02, 9.99991492e+02, 9.99991492e+02,
9.99959865e+02, 9.99959865e+02, 9.99959865e+02, 9.99959865e+02,
9.99830624e+02, 9.99830624e+02, 9.99830624e+02, 9.99830624e+02,
9.99362473e+02, 9.99362473e+02, 9.99362473e+02, 9.99362473e+02,
9.97868188e+02, 9.97868188e+02, 9.97868188e+02, 9.97868188e+02,
9.93696023e+02, 9.93696023e+02, 9.93696023e+02, 9.93696023e+02,
9.83586489e+02, 9.83586489e+02, 9.83586489e+02, 9.83586489e+02,
9.62470316e+02, 9.62470316e+02, 9.62470316e+02, 9.62470316e+02,
9.24554339e+02, 9.24554339e+02, 9.24554339e+02, 9.24554339e+02,
8.65754701e+02, 8.65754701e+02, 8.65754701e+02, 8.65754701e+02,
7.85690318e+02, 7.85690318e+02, 7.85690318e+02, 7.85690318e+02,
6.89822261e+02, 6.89822261e+02, 6.89822261e+02, 6.89822261e+02,
6.04497868e+02, 6.04497868e+02, 6.04497868e+02, 6.04497868e+02,
5.41108543e+02, 5.41108543e+02, 5.41108543e+02, 5.41108543e+02,
4.96459113e+02, 4.96459113e+02, 4.96459113e+02, 4.96459113e+02,
4.76533195e+02, 4.76533195e+02, 4.76533195e+02, 4.76533195e+02,
4.61671833e+02, 4.61671833e+02, 4.61671833e+02, 4.61671833e+02,
4.62965063e+02, 4.62965063e+02, 4.62965063e+02, 4.62965063e+02,
4.65651723e+02, 4.65651723e+02, 4.65651723e+02, 4.65651723e+02,
4.67608555e+02, 4.67608555e+02, 4.67608555e+02, 4.67608555e+02,
4.10156069e+02, 4.10156069e+02, 4.10156069e+02, 4.10156069e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999992, 0.99999992, 0.99999992,
0.99999992, 0.99999956, 0.99999956, 0.99999956, 0.99999956,
0.99999771, 0.99999771, 0.99999771, 0.99999771, 0.99998912,
0.99998912, 0.99998912, 0.99998912, 0.99995333, 0.99995333,
0.99995333, 0.99995333, 0.9998196 , 0.9998196 , 0.9998196 ,
0.9998196 , 0.99937333, 0.99937333, 0.99937333, 0.99937333,
0.99805138, 0.99805138, 0.99805138, 0.99805138, 0.99459812,
0.99459812, 0.99459812, 0.99459812, 0.98669552, 0.98669552,
0.98669552, 0.98669552, 0.97092763, 0.97092763, 0.97092763,
0.97092763, 0.94351056, 0.94351056, 0.94351056, 0.94351056,
0.90169368, 0.90169368, 0.90169368, 0.90169368, 0.84485234,
0.84485234, 0.84485234, 0.84485234, 0.77523312, 0.77523312,
0.77523312, 0.77523312, 0.70864528, 0.70864528, 0.70864528,
0.70864528, 0.65509869, 0.65509869, 0.65509869, 0.65509869,
0.61605444, 0.61605444, 0.61605444, 0.61605444, 0.58867936,
0.58867936, 0.58867936, 0.58867936, 0.57853282, 0.57853282,
0.57853282, 0.57853282, 0.56884845, 0.56884845, 0.56884845,
0.56884845, 0.56787447, 0.56787447, 0.56787447, 0.56787447,
0.58180732, 0.58180732, 0.58180732, 0.58180732, 0.73521701,
0.73521701, 0.73521701, 0.73521701, 4.82794137, 4.82794137,
4.82794137, 4.82794137, 1.15660589, 1.15660589, 1.15660589,
1.15660589, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744994, -19.59744994, -19.59744994, -19.59744994,
-19.59744956, -19.59744956, -19.59744956, -19.59744956,
-19.59744717, -19.59744717, -19.59744717, -19.59744717,
-19.59743362, -19.59743362, -19.59743362, -19.59743362,
-19.59736417, -19.59736417, -19.59736417, -19.59736417,
-19.59704275, -19.59704275, -19.59704275, -19.59704275,
-19.59570378, -19.59570378, -19.59570378, -19.59570378,
-19.5906998 , -19.5906998 , -19.5906998 , -19.5906998 ,
-19.5740004 , -19.5740004 , -19.5740004 , -19.5740004 ,
-19.52451298, -19.52451298, -19.52451298, -19.52451298,
-19.39507264, -19.39507264, -19.39507264, -19.39507264,
-19.09778358, -19.09778358, -19.09778358, -19.09778358,
-18.49954665, -18.49954665, -18.49954665, -18.49954665,
-17.4414217 , -17.4414217 , -17.4414217 , -17.4414217 ,
-15.7788963 , -15.7788963 , -15.7788963 , -15.7788963 ,
-13.41092033, -13.41092033, -13.41092033, -13.41092033,
-10.31819294, -10.31819294, -10.31819294, -10.31819294,
-7.21065328, -7.21065328, -7.21065328, -7.21065328,
-4.51408308, -4.51408308, -4.51408308, -4.51408308,
-2.3752154 , -2.3752154 , -2.3752154 , -2.3752154 ,
-1.10270149, -1.10270149, -1.10270149, -1.10270149,
-0.21896876, -0.21896876, -0.21896876, -0.21896876,
-0.20366948, -0.20366948, -0.20366948, -0.20366948,
-0.18404565, -0.18404565, -0.18404565, -0.18404565,
-0.20213983, -0.20213983, -0.20213983, -0.20213983,
-0.22669592, -0.22669592, -0.22669592, -0.22669592,
-1.09863355, -1.09863355, -1.09863355, -1.09863355,
-16.8535667 , -16.8535667 , -16.8535667 , -16.8535667 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999983e+02, 9.99999983e+02, 9.99999983e+02, 9.99999983e+02,
9.99999894e+02, 9.99999894e+02, 9.99999894e+02, 9.99999894e+02,
9.99999387e+02, 9.99999387e+02, 9.99999387e+02, 9.99999387e+02,
9.99996788e+02, 9.99996788e+02, 9.99996788e+02, 9.99996788e+02,
9.99984762e+02, 9.99984762e+02, 9.99984762e+02, 9.99984762e+02,
9.99934664e+02, 9.99934664e+02, 9.99934664e+02, 9.99934664e+02,
9.99747458e+02, 9.99747458e+02, 9.99747458e+02, 9.99747458e+02,
9.99122925e+02, 9.99122925e+02, 9.99122925e+02, 9.99122925e+02,
9.97274131e+02, 9.97274131e+02, 9.97274131e+02, 9.97274131e+02,
9.92452313e+02, 9.92452313e+02, 9.92452313e+02, 9.92452313e+02,
9.81454273e+02, 9.81454273e+02, 9.81454273e+02, 9.81454273e+02,
9.59644205e+02, 9.59644205e+02, 9.59644205e+02, 9.59644205e+02,
9.22105989e+02, 9.22105989e+02, 9.22105989e+02, 9.22105989e+02,
8.65731962e+02, 8.65731962e+02, 8.65731962e+02, 8.65731962e+02,
7.90681314e+02, 7.90681314e+02, 7.90681314e+02, 7.90681314e+02,
7.01198820e+02, 7.01198820e+02, 7.01198820e+02, 7.01198820e+02,
6.18767047e+02, 6.18767047e+02, 6.18767047e+02, 6.18767047e+02,
5.54775362e+02, 5.54775362e+02, 5.54775362e+02, 5.54775362e+02,
5.09686354e+02, 5.09686354e+02, 5.09686354e+02, 5.09686354e+02,
4.79330707e+02, 4.79330707e+02, 4.79330707e+02, 4.79330707e+02,
4.70045366e+02, 4.70045366e+02, 4.70045366e+02, 4.70045366e+02,
4.62262247e+02, 4.62262247e+02, 4.62262247e+02, 4.62262247e+02,
4.62428940e+02, 4.62428940e+02, 4.62428940e+02, 4.62428940e+02,
4.65813647e+02, 4.65813647e+02, 4.65813647e+02, 4.65813647e+02,
4.69117027e+02, 4.69117027e+02, 4.69117027e+02, 4.69117027e+02,
4.26259896e+02, 4.26259896e+02, 4.26259896e+02, 4.26259896e+02,
2.11117906e+01, 2.11117906e+01, 2.11117906e+01, 2.11117906e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.99999983, 0.99999983,
0.99999983, 0.99999983, 0.99999913, 0.99999913, 0.99999913,
0.99999913, 0.99999585, 0.99999585, 0.99999585, 0.99999585,
0.99998199, 0.99998199, 0.99998199, 0.99998199, 0.99992882,
0.99992882, 0.99992882, 0.99992882, 0.99974481, 0.99974481,
0.99974481, 0.99974481, 0.99917295, 0.99917295, 0.99917295,
0.99917295, 0.99758596, 0.99758596, 0.99758596, 0.99758596,
0.99367857, 0.99367857, 0.99367857, 0.99367857, 0.98519471,
0.98519471, 0.98519471, 0.98519471, 0.96901577, 0.96901577,
0.96901577, 0.96901577, 0.94191031, 0.94191031, 0.94191031,
0.94191031, 0.90174038, 0.90174038, 0.90174038, 0.90174038,
0.8482627 , 0.8482627 , 0.8482627 , 0.8482627 , 0.78331437,
0.78331437, 0.78331437, 0.78331437, 0.71940582, 0.71940582,
0.71940582, 0.71940582, 0.66684154, 0.66684154, 0.66684154,
0.66684154, 0.62576044, 0.62576044, 0.62576044, 0.62576044,
0.598823 , 0.598823 , 0.598823 , 0.598823 , 0.58041014,
0.58041014, 0.58041014, 0.58041014, 0.57556638, 0.57556638,
0.57556638, 0.57556638, 0.56997368, 0.56997368, 0.56997368,
0.56997368, 0.56894812, 0.56894812, 0.56894812, 0.56894812,
0.58243209, 0.58243209, 0.58243209, 0.58243209, 0.75514243,
0.75514243, 0.75514243, 0.75514243, 4.86958295, 4.86958295,
4.86958295, 4.86958295, 1.4675873 , 1.4675873 , 1.4675873 ,
1.4675873 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744983, -19.59744983, -19.59744983, -19.59744983,
-19.59744891, -19.59744891, -19.59744891, -19.59744891,
-19.59744377, -19.59744377, -19.59744377, -19.59744377,
-19.59741747, -19.59741747, -19.59741747, -19.59741747,
-19.5972949 , -19.5972949 , -19.5972949 , -19.5972949 ,
-19.59677605, -19.59677605, -19.59677605, -19.59677605,
-19.59478652, -19.59478652, -19.59478652, -19.59478652,
-19.5879016 , -19.5879016 , -19.5879016 , -19.5879016 ,
-19.56650065, -19.56650065, -19.56650065, -19.56650065,
-19.50707861, -19.50707861, -19.50707861, -19.50707861,
-19.36053978, -19.36053978, -19.36053978, -19.36053978,
-19.0410584 , -19.0410584 , -19.0410584 , -19.0410584 ,
-18.42623744, -18.42623744, -18.42623744, -18.42623744,
-17.37815423, -17.37815423, -17.37815423, -17.37815423,
-15.77916693, -15.77916693, -15.77916693, -15.77916693,
-13.55541778, -13.55541778, -13.55541778, -13.55541778,
-10.68190654, -10.68190654, -10.68190654, -10.68190654,
-7.72976671, -7.72976671, -7.72976671, -7.72976671,
-5.09556067, -5.09556067, -5.09556067, -5.09556067,
-2.96483941, -2.96483941, -2.96483941, -2.96483941,
-1.38469248, -1.38469248, -1.38469248, -1.38469248,
-0.64781783, -0.64781783, -0.64781783, -0.64781783,
-0.11541459, -0.11541459, -0.11541459, -0.11541459,
-0.14563479, -0.14563479, -0.14563479, -0.14563479,
-0.2273905 , -0.2273905 , -0.2273905 , -0.2273905 ,
-0.32875463, -0.32875463, -0.32875463, -0.32875463,
-0.25700739, -0.25700739, -0.25700739, -0.25700739,
-0.75025376, -0.75025376, -0.75025376, -0.75025376,
-13.29087238, -13.29087238, -13.29087238, -13.29087238,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999993e+02, 9.99999993e+02, 9.99999993e+02, 9.99999993e+02,
9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
9.99999767e+02, 9.99999767e+02, 9.99999767e+02, 9.99999767e+02,
9.99998783e+02, 9.99998783e+02, 9.99998783e+02, 9.99998783e+02,
9.99994197e+02, 9.99994197e+02, 9.99994197e+02, 9.99994197e+02,
9.99974783e+02, 9.99974783e+02, 9.99974783e+02, 9.99974783e+02,
9.99900346e+02, 9.99900346e+02, 9.99900346e+02, 9.99900346e+02,
9.99642786e+02, 9.99642786e+02, 9.99642786e+02, 9.99642786e+02,
9.98842554e+02, 9.98842554e+02, 9.98842554e+02, 9.98842554e+02,
9.96623508e+02, 9.96623508e+02, 9.96623508e+02, 9.96623508e+02,
9.91169354e+02, 9.91169354e+02, 9.91169354e+02, 9.91169354e+02,
9.79367942e+02, 9.79367942e+02, 9.79367942e+02, 9.79367942e+02,
9.57001145e+02, 9.57001145e+02, 9.57001145e+02, 9.57001145e+02,
9.19902519e+02, 9.19902519e+02, 9.19902519e+02, 9.19902519e+02,
8.65735512e+02, 8.65735512e+02, 8.65735512e+02, 8.65735512e+02,
7.95067170e+02, 7.95067170e+02, 7.95067170e+02, 7.95067170e+02,
7.11251816e+02, 7.11251816e+02, 7.11251816e+02, 7.11251816e+02,
6.31754233e+02, 6.31754233e+02, 6.31754233e+02, 6.31754233e+02,
5.68454564e+02, 5.68454564e+02, 5.68454564e+02, 5.68454564e+02,
5.20436257e+02, 5.20436257e+02, 5.20436257e+02, 5.20436257e+02,
4.89916889e+02, 4.89916889e+02, 4.89916889e+02, 4.89916889e+02,
4.69972551e+02, 4.69972551e+02, 4.69972551e+02, 4.69972551e+02,
4.66691674e+02, 4.66691674e+02, 4.66691674e+02, 4.66691674e+02,
4.63549400e+02, 4.63549400e+02, 4.63549400e+02, 4.63549400e+02,
4.63619987e+02, 4.63619987e+02, 4.63619987e+02, 4.63619987e+02,
4.65989306e+02, 4.65989306e+02, 4.65989306e+02, 4.65989306e+02,
4.68533238e+02, 4.68533238e+02, 4.68533238e+02, 4.68533238e+02,
4.31027931e+02, 4.31027931e+02, 4.31027931e+02, 4.31027931e+02,
5.66211425e+01, 5.66211425e+01, 5.66211425e+01, 5.66211425e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999994, 0.99999994, 0.99999994, 0.99999994, 0.99999967,
0.99999967, 0.99999967, 0.99999967, 0.99999842, 0.99999842,
0.99999842, 0.99999842, 0.99999304, 0.99999304, 0.99999304,
0.99999304, 0.99997199, 0.99997199, 0.99997199, 0.99997199,
0.99989687, 0.99989687, 0.99989687, 0.99989687, 0.99965381,
0.99965381, 0.99965381, 0.99965381, 0.99894405, 0.99894405,
0.99894405, 0.99894405, 0.99708423, 0.99708423, 0.99708423,
0.99708423, 0.99273783, 0.99273783, 0.99273783, 0.99273783,
0.98372864, 0.98372864, 0.98372864, 0.98372864, 0.96722065,
0.96722065, 0.96722065, 0.96722065, 0.94045739, 0.94045739,
0.94045739, 0.94045739, 0.90179181, 0.90179181, 0.90179181,
0.90179181, 0.85125479, 0.85125479, 0.85125479, 0.85125479,
0.79043349, 0.79043349, 0.79043349, 0.79043349, 0.72930804,
0.72930804, 0.72930804, 0.72930804, 0.67758323, 0.67758323,
0.67758323, 0.67758323, 0.6363278 , 0.6363278 , 0.6363278 ,
0.6363278 , 0.605747 , 0.605747 , 0.605747 , 0.605747 ,
0.58842753, 0.58842753, 0.58842753, 0.58842753, 0.57645186,
0.57645186, 0.57645186, 0.57645186, 0.5740469 , 0.5740469 ,
0.5740469 , 0.5740469 , 0.57095662, 0.57095662, 0.57095662,
0.57095662, 0.57067495, 0.57067495, 0.57067495, 0.57067495,
0.58291142, 0.58291142, 0.58291142, 0.58291142, 0.76449003,
0.76449003, 0.76449003, 0.76449003, 4.85506785, 4.85506785,
4.85506785, 4.85506785, 1.84484019, 1.84484019, 1.84484019,
1.84484019, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744993, -19.59744993, -19.59744993, -19.59744993,
-19.59744958, -19.59744958, -19.59744958, -19.59744958,
-19.59744762, -19.59744762, -19.59744762, -19.59744762,
-19.59743763, -19.59743763, -19.59743763, -19.59743763,
-19.59739077, -19.59739077, -19.59739077, -19.59739077,
-19.59718971, -19.59718971, -19.59718971, -19.59718971,
-19.59640187, -19.59640187, -19.59640187, -19.59640187,
-19.59359107, -19.59359107, -19.59359107, -19.59359107,
-19.58449607, -19.58449607, -19.58449607, -19.58449607,
-19.55793209, -19.55793209, -19.55793209, -19.55793209,
-19.48827738, -19.48827738, -19.48827738, -19.48827738,
-19.32518419, -19.32518419, -19.32518419, -19.32518419,
-18.98557228, -18.98557228, -18.98557228, -18.98557228,
-18.35728175, -18.35728175, -18.35728175, -18.35728175,
-17.32063739, -17.32063739, -17.32063739, -17.32063739,
-15.77991266, -15.77991266, -15.77991266, -15.77991266,
-13.6812212 , -13.6812212 , -13.6812212 , -13.6812212 ,
-11.00333419, -11.00333419, -11.00333419, -11.00333419,
-8.1945414 , -8.1945414 , -8.1945414 , -8.1945414 ,
-5.64796666, -5.64796666, -5.64796666, -5.64796666,
-3.48446947, -3.48446947, -3.48446947, -3.48446947,
-1.8815922 , -1.8815922 , -1.8815922 , -1.8815922 ,
-0.77042698, -0.77042698, -0.77042698, -0.77042698,
-0.40469083, -0.40469083, -0.40469083, -0.40469083,
-0.12184113, -0.12184113, -0.12184113, -0.12184113,
-0.14071004, -0.14071004, -0.14071004, -0.14071004,
-0.26047921, -0.26047921, -0.26047921, -0.26047921,
-0.35229931, -0.35229931, -0.35229931, -0.35229931,
-0.22801595, -0.22801595, -0.22801595, -0.22801595,
-0.38194114, -0.38194114, -0.38194114, -0.38194114,
-10.70298365, -10.70298365, -10.70298365, -10.70298365,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999984e+02, 9.99999984e+02, 9.99999984e+02, 9.99999984e+02,
9.99999911e+02, 9.99999911e+02, 9.99999911e+02, 9.99999911e+02,
9.99999537e+02, 9.99999537e+02, 9.99999537e+02, 9.99999537e+02,
9.99997784e+02, 9.99997784e+02, 9.99997784e+02, 9.99997784e+02,
9.99990261e+02, 9.99990261e+02, 9.99990261e+02, 9.99990261e+02,
9.99960783e+02, 9.99960783e+02, 9.99960783e+02, 9.99960783e+02,
9.99855621e+02, 9.99855621e+02, 9.99855621e+02, 9.99855621e+02,
9.99515409e+02, 9.99515409e+02, 9.99515409e+02, 9.99515409e+02,
9.98522310e+02, 9.98522310e+02, 9.98522310e+02, 9.98522310e+02,
9.95922289e+02, 9.95922289e+02, 9.95922289e+02, 9.95922289e+02,
9.89857327e+02, 9.89857327e+02, 9.89857327e+02, 9.89857327e+02,
9.77330935e+02, 9.77330935e+02, 9.77330935e+02, 9.77330935e+02,
9.54520808e+02, 9.54520808e+02, 9.54520808e+02, 9.54520808e+02,
9.17903025e+02, 9.17903025e+02, 9.17903025e+02, 9.17903025e+02,
8.65754858e+02, 8.65754858e+02, 8.65754858e+02, 8.65754858e+02,
7.98905080e+02, 7.98905080e+02, 7.98905080e+02, 7.98905080e+02,
7.20192047e+02, 7.20192047e+02, 7.20192047e+02, 7.20192047e+02,
6.43756595e+02, 6.43756595e+02, 6.43756595e+02, 6.43756595e+02,
5.81098528e+02, 5.81098528e+02, 5.81098528e+02, 5.81098528e+02,
5.32495831e+02, 5.32495831e+02, 5.32495831e+02, 5.32495831e+02,
4.97357191e+02, 4.97357191e+02, 4.97357191e+02, 4.97357191e+02,
4.78087561e+02, 4.78087561e+02, 4.78087561e+02, 4.78087561e+02,
4.65512575e+02, 4.65512575e+02, 4.65512575e+02, 4.65512575e+02,
4.64978936e+02, 4.64978936e+02, 4.64978936e+02, 4.64978936e+02,
4.64673717e+02, 4.64673717e+02, 4.64673717e+02, 4.64673717e+02,
4.65549665e+02, 4.65549665e+02, 4.65549665e+02, 4.65549665e+02,
4.65877259e+02, 4.65877259e+02, 4.65877259e+02, 4.65877259e+02,
4.66221730e+02, 4.66221730e+02, 4.66221730e+02, 4.66221730e+02,
4.29568087e+02, 4.29568087e+02, 4.29568087e+02, 4.29568087e+02,
9.52105367e+01, 9.52105367e+01, 9.52105367e+01, 9.52105367e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999939, 0.99999939, 0.99999939, 0.99999939, 0.99999731,
0.99999731, 0.99999731, 0.99999731, 0.999989 , 0.999989 ,
0.999989 , 0.999989 , 0.99995856, 0.99995856, 0.99995856,
0.99995856, 0.99985665, 0.99985665, 0.99985665, 0.99985665,
0.99954597, 0.99954597, 0.99954597, 0.99954597, 0.99868755,
0.99868755, 0.99868755, 0.99868755, 0.99655014, 0.99655014,
0.99655014, 0.99655014, 0.99178181, 0.99178181, 0.99178181,
0.99178181, 0.98229854, 0.98229854, 0.98229854, 0.98229854,
0.96552985, 0.96552985, 0.96552985, 0.96552985, 0.93912839,
0.93912839, 0.93912839, 0.93912839, 0.90184264, 0.90184264,
0.90184264, 0.90184264, 0.85390898, 0.85390898, 0.85390898,
0.85390898, 0.7967545 , 0.7967545 , 0.7967545 , 0.7967545 ,
0.73829091, 0.73829091, 0.73829091, 0.73829091, 0.68780613,
0.68780613, 0.68780613, 0.68780613, 0.64606705, 0.64606705,
0.64606705, 0.64606705, 0.61466511, 0.61466511, 0.61466511,
0.61466511, 0.59269096, 0.59269096, 0.59269096, 0.59269096,
0.58250874, 0.58250874, 0.58250874, 0.58250874, 0.57508641,
0.57508641, 0.57508641, 0.57508641, 0.5734657 , 0.5734657 ,
0.5734657 , 0.5734657 , 0.57174434, 0.57174434, 0.57174434,
0.57174434, 0.57164142, 0.57164142, 0.57164142, 0.57164142,
0.58284131, 0.58284131, 0.58284131, 0.58284131, 0.76151887,
0.76151887, 0.76151887, 0.76151887, 4.81691328, 4.81691328,
4.81691328, 4.81691328, 2.25893065, 2.25893065, 2.25893065,
2.25893065, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744984, -19.59744984, -19.59744984, -19.59744984,
-19.59744909, -19.59744909, -19.59744909, -19.59744909,
-19.59744528, -19.59744528, -19.59744528, -19.59744528,
-19.59742733, -19.59742733, -19.59742733, -19.59742733,
-19.59734939, -19.59734939, -19.59734939, -19.59734939,
-19.59703833, -19.59703833, -19.59703833, -19.59703833,
-19.59589939, -19.59589939, -19.59589939, -19.59589939,
-19.5920864 , -19.5920864 , -19.5920864 , -19.5920864 ,
-19.58046039, -19.58046039, -19.58046039, -19.58046039,
-19.54832897, -19.54832897, -19.54832897, -19.54832897,
-19.46825555, -19.46825555, -19.46825555, -19.46825555,
-19.28922569, -19.28922569, -19.28922569, -19.28922569,
-18.93137655, -18.93137655, -18.93137655, -18.93137655,
-18.29222556, -18.29222556, -18.29222556, -18.29222556,
-17.26796639, -17.26796639, -17.26796639, -17.26796639,
-15.78084771, -15.78084771, -15.78084771, -15.78084771,
-13.79230809, -13.79230809, -13.79230809, -13.79230809,
-11.28800263, -11.28800263, -11.28800263, -11.28800263,
-8.61569585, -8.61569585, -8.61569585, -8.61569585,
-6.15272067, -6.15272067, -6.15272067, -6.15272067,
-4.01418509, -4.01418509, -4.01418509, -4.01418509,
-2.29585438, -2.29585438, -2.29585438, -2.29585438,
-1.16557706, -1.16557706, -1.16557706, -1.16557706,
-0.4224157 , -0.4224157 , -0.4224157 , -0.4224157 ,
-0.28119683, -0.28119683, -0.28119683, -0.28119683,
-0.1676693 , -0.1676693 , -0.1676693 , -0.1676693 ,
-0.19033632, -0.19033632, -0.19033632, -0.19033632,
-0.26119683, -0.26119683, -0.26119683, -0.26119683,
-0.27753473, -0.27753473, -0.27753473, -0.27753473,
-0.11037821, -0.11037821, -0.11037821, -0.11037821,
-0.04365842, -0.04365842, -0.04365842, -0.04365842,
-8.8283585 , -8.8283585 , -8.8283585 , -8.8283585 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999966e+02, 9.99999966e+02, 9.99999966e+02, 9.99999966e+02,
9.99999823e+02, 9.99999823e+02, 9.99999823e+02, 9.99999823e+02,
9.99999152e+02, 9.99999152e+02, 9.99999152e+02, 9.99999152e+02,
9.99996236e+02, 9.99996236e+02, 9.99996236e+02, 9.99996236e+02,
9.99984597e+02, 9.99984597e+02, 9.99984597e+02, 9.99984597e+02,
9.99941983e+02, 9.99941983e+02, 9.99941983e+02, 9.99941983e+02,
9.99799330e+02, 9.99799330e+02, 9.99799330e+02, 9.99799330e+02,
9.99364480e+02, 9.99364480e+02, 9.99364480e+02, 9.99364480e+02,
9.98163506e+02, 9.98163506e+02, 9.98163506e+02, 9.98163506e+02,
9.95176015e+02, 9.95176015e+02, 9.95176015e+02, 9.95176015e+02,
9.88524479e+02, 9.88524479e+02, 9.88524479e+02, 9.88524479e+02,
9.75344870e+02, 9.75344870e+02, 9.75344870e+02, 9.75344870e+02,
9.52185825e+02, 9.52185825e+02, 9.52185825e+02, 9.52185825e+02,
9.16075033e+02, 9.16075033e+02, 9.16075033e+02, 9.16075033e+02,
8.65780612e+02, 8.65780612e+02, 8.65780612e+02, 8.65780612e+02,
8.02308999e+02, 8.02308999e+02, 8.02308999e+02, 8.02308999e+02,
7.28177860e+02, 7.28177860e+02, 7.28177860e+02, 7.28177860e+02,
6.54721861e+02, 6.54721861e+02, 6.54721861e+02, 6.54721861e+02,
5.93204423e+02, 5.93204423e+02, 5.93204423e+02, 5.93204423e+02,
5.43726171e+02, 5.43726171e+02, 5.43726171e+02, 5.43726171e+02,
5.07365905e+02, 5.07365905e+02, 5.07365905e+02, 5.07365905e+02,
4.82452325e+02, 4.82452325e+02, 4.82452325e+02, 4.82452325e+02,
4.71384603e+02, 4.71384603e+02, 4.71384603e+02, 4.71384603e+02,
4.63981574e+02, 4.63981574e+02, 4.63981574e+02, 4.63981574e+02,
4.64333018e+02, 4.64333018e+02, 4.64333018e+02, 4.64333018e+02,
4.65577731e+02, 4.65577731e+02, 4.65577731e+02, 4.65577731e+02,
4.66613550e+02, 4.66613550e+02, 4.66613550e+02, 4.66613550e+02,
4.65261608e+02, 4.65261608e+02, 4.65261608e+02, 4.65261608e+02,
4.62630505e+02, 4.62630505e+02, 4.62630505e+02, 4.62630505e+02,
4.25746506e+02, 4.25746506e+02, 4.25746506e+02, 4.25746506e+02,
1.35534849e+02, 1.35534849e+02, 1.35534849e+02, 1.35534849e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999977, 0.99999977, 0.99999977,
0.99999977, 0.99999896, 0.99999896, 0.99999896, 0.99999896,
0.99999568, 0.99999568, 0.99999568, 0.99999568, 0.99998342,
0.99998342, 0.99998342, 0.99998342, 0.99994115, 0.99994115,
0.99994115, 0.99994115, 0.99980744, 0.99980744, 0.99980744,
0.99980744, 0.9994209 , 0.9994209 , 0.9994209 , 0.9994209 ,
0.99840456, 0.99840456, 0.99840456, 0.99840456, 0.99598731,
0.99598731, 0.99598731, 0.99598731, 0.9908153 , 0.9908153 ,
0.9908153 , 0.9908153 , 0.98090476, 0.98090476, 0.98090476,
0.98090476, 0.96393267, 0.96393267, 0.96393267, 0.96393267,
0.93790486, 0.93790486, 0.93790486, 0.93790486, 0.90189069,
0.90189069, 0.90189069, 0.90189069, 0.85628111, 0.85628111,
0.85628111, 0.85628111, 0.80238217, 0.80238217, 0.80238217,
0.80238217, 0.74650695, 0.74650695, 0.74650695, 0.74650695,
0.69727486, 0.69727486, 0.69727486, 0.69727486, 0.65578044,
0.65578044, 0.65578044, 0.65578044, 0.62276211, 0.62276211,
0.62276211, 0.62276211, 0.59984564, 0.59984564, 0.59984564,
0.59984564, 0.58469198, 0.58469198, 0.58469198, 0.58469198,
0.57937376, 0.57937376, 0.57937376, 0.57937376, 0.5751276 ,
0.5751276 , 0.5751276 , 0.5751276 , 0.57353803, 0.57353803,
0.57353803, 0.57353803, 0.57206183, 0.57206183, 0.57206183,
0.57206183, 0.5713875 , 0.5713875 , 0.5713875 , 0.5713875 ,
0.58173584, 0.58173584, 0.58173584, 0.58173584, 0.75615848,
0.75615848, 0.75615848, 0.75615848, 4.80345797, 4.80345797,
4.80345797, 4.80345797, 2.65264632, 2.65264632, 2.65264632,
2.65264632, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744994, -19.59744994, -19.59744994, -19.59744994,
-19.59744965, -19.59744965, -19.59744965, -19.59744965,
-19.5974482 , -19.5974482 , -19.5974482 , -19.5974482 ,
-19.5974413 , -19.5974413 , -19.5974413 , -19.5974413 ,
-19.59741108, -19.59741108, -19.59741108, -19.59741108,
-19.59728853, -19.59728853, -19.59728853, -19.59728853,
-19.5968297 , -19.5968297 , -19.5968297 , -19.5968297 ,
-19.5952481 , -19.5952481 , -19.5952481 , -19.5952481 ,
-19.59024502, -19.59024502, -19.59024502, -19.59024502,
-19.57577973, -19.57577973, -19.57577973, -19.57577973,
-19.53773193, -19.53773193, -19.53773193, -19.53773193,
-19.4471473 , -19.4471473 , -19.4471473 , -19.4471473 ,
-19.25284345, -19.25284345, -19.25284345, -19.25284345,
-18.87848976, -18.87848976, -18.87848976, -18.87848976,
-18.23067614, -18.23067614, -18.23067614, -18.23067614,
-17.21942704, -17.21942704, -17.21942704, -17.21942704,
-15.78184245, -15.78184245, -15.78184245, -15.78184245,
-13.89153438, -13.89153438, -13.89153438, -13.89153438,
-11.5404357 , -11.5404357 , -11.5404357 , -11.5404357 ,
-8.99690317, -8.99690317, -8.99690317, -8.99690317,
-6.62316736, -6.62316736, -6.62316736, -6.62316736,
-4.50690243, -4.50690243, -4.50690243, -4.50690243,
-2.76629623, -2.76629623, -2.76629623, -2.76629623,
-1.45746824, -1.45746824, -1.45746824, -1.45746824,
-0.72191187, -0.72191187, -0.72191187, -0.72191187,
-0.25384882, -0.25384882, -0.25384882, -0.25384882,
-0.22267787, -0.22267787, -0.22267787, -0.22267787,
-0.21716883, -0.21716883, -0.21716883, -0.21716883,
-0.24125632, -0.24125632, -0.24125632, -0.24125632,
-0.23810243, -0.23810243, -0.23810243, -0.23810243,
-0.14361122, -0.14361122, -0.14361122, -0.14361122,
0.10057084, 0.10057084, 0.10057084, 0.10057084,
0.16443868, 0.16443868, 0.16443868, 0.16443868,
-7.3920307 , -7.3920307 , -7.3920307 , -7.3920307 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999987e+02, 9.99999987e+02, 9.99999987e+02, 9.99999987e+02,
9.99999932e+02, 9.99999932e+02, 9.99999932e+02, 9.99999932e+02,
9.99999675e+02, 9.99999675e+02, 9.99999675e+02, 9.99999675e+02,
9.99998544e+02, 9.99998544e+02, 9.99998544e+02, 9.99998544e+02,
9.99993958e+02, 9.99993958e+02, 9.99993958e+02, 9.99993958e+02,
9.99976791e+02, 9.99976791e+02, 9.99976791e+02, 9.99976791e+02,
9.99917615e+02, 9.99917615e+02, 9.99917615e+02, 9.99917615e+02,
9.99730445e+02, 9.99730445e+02, 9.99730445e+02, 9.99730445e+02,
9.99189454e+02, 9.99189454e+02, 9.99189454e+02, 9.99189454e+02,
9.97767695e+02, 9.97767695e+02, 9.97767695e+02, 9.97767695e+02,
9.94389774e+02, 9.94389774e+02, 9.94389774e+02, 9.94389774e+02,
9.87177517e+02, 9.87177517e+02, 9.87177517e+02, 9.87177517e+02,
9.73410164e+02, 9.73410164e+02, 9.73410164e+02, 9.73410164e+02,
9.49981230e+02, 9.49981230e+02, 9.49981230e+02, 9.49981230e+02,
9.14392984e+02, 9.14392984e+02, 9.14392984e+02, 9.14392984e+02,
8.65808514e+02, 8.65808514e+02, 8.65808514e+02, 8.65808514e+02,
8.05361247e+02, 8.05361247e+02, 8.05361247e+02, 8.05361247e+02,
7.35330772e+02, 7.35330772e+02, 7.35330772e+02, 7.35330772e+02,
6.64800382e+02, 6.64800382e+02, 6.64800382e+02, 6.64800382e+02,
6.04494583e+02, 6.04494583e+02, 6.04494583e+02, 6.04494583e+02,
5.55006186e+02, 5.55006186e+02, 5.55006186e+02, 5.55006186e+02,
5.16541818e+02, 5.16541818e+02, 5.16541818e+02, 5.16541818e+02,
4.90365807e+02, 4.90365807e+02, 4.90365807e+02, 4.90365807e+02,
4.73379066e+02, 4.73379066e+02, 4.73379066e+02, 4.73379066e+02,
4.67844270e+02, 4.67844270e+02, 4.67844270e+02, 4.67844270e+02,
4.64036881e+02, 4.64036881e+02, 4.64036881e+02, 4.64036881e+02,
4.64430634e+02, 4.64430634e+02, 4.64430634e+02, 4.64430634e+02,
4.65947772e+02, 4.65947772e+02, 4.65947772e+02, 4.65947772e+02,
4.66292983e+02, 4.66292983e+02, 4.66292983e+02, 4.66292983e+02,
4.63793327e+02, 4.63793327e+02, 4.63793327e+02, 4.63793327e+02,
4.58295049e+02, 4.58295049e+02, 4.58295049e+02, 4.58295049e+02,
4.26680001e+02, 4.26680001e+02, 4.26680001e+02, 4.26680001e+02,
1.72719750e+02, 1.72719750e+02, 1.72719750e+02, 1.72719750e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999991,
0.99999991, 0.99999991, 0.99999991, 0.9999996 , 0.9999996 ,
0.9999996 , 0.9999996 , 0.99999831, 0.99999831, 0.99999831,
0.99999831, 0.99999339, 0.99999339, 0.99999339, 0.99999339,
0.99997601, 0.99997601, 0.99997601, 0.99997601, 0.99991924,
0.99991924, 0.99991924, 0.99991924, 0.9997486 , 0.9997486 ,
0.9997486 , 0.9997486 , 0.9992784 , 0.9992784 , 0.9992784 ,
0.9992784 , 0.99809628, 0.99809628, 0.99809628, 0.99809628,
0.99539903, 0.99539903, 0.99539903, 0.99539903, 0.98984223,
0.98984223, 0.98984223, 0.98984223, 0.97954708, 0.97954708,
0.97954708, 0.97954708, 0.9624199 , 0.9624199 , 0.9624199 ,
0.9624199 , 0.93677211, 0.93677211, 0.93677211, 0.93677211,
0.90193406, 0.90193406, 0.90193406, 0.90193406, 0.85840937,
0.85840937, 0.85840937, 0.85840937, 0.80742851, 0.80742851,
0.80742851, 0.80742851, 0.75400455, 0.75400455, 0.75400455,
0.75400455, 0.70614068, 0.70614068, 0.70614068, 0.70614068,
0.66495362, 0.66495362, 0.66495362, 0.66495362, 0.63140079,
0.63140079, 0.63140079, 0.63140079, 0.60602151, 0.60602151,
0.60602151, 0.60602151, 0.59019289, 0.59019289, 0.59019289,
0.59019289, 0.58021561, 0.58021561, 0.58021561, 0.58021561,
0.57785903, 0.57785903, 0.57785903, 0.57785903, 0.5756833 ,
0.5756833 , 0.5756833 , 0.5756833 , 0.57399443, 0.57399443,
0.57399443, 0.57399443, 0.57175661, 0.57175661, 0.57175661,
0.57175661, 0.57016666, 0.57016666, 0.57016666, 0.57016666,
0.57891026, 0.57891026, 0.57891026, 0.57891026, 0.75167445,
0.75167445, 0.75167445, 0.75167445, 4.81541575, 4.81541575,
4.81541575, 4.81541575, 3.02284787, 3.02284787, 3.02284787,
3.02284787, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744987, -19.59744987, -19.59744987, -19.59744987,
-19.59744931, -19.59744931, -19.59744931, -19.59744931,
-19.59744666, -19.59744666, -19.59744666, -19.59744666,
-19.59743493, -19.59743493, -19.59743493, -19.59743493,
-19.59738673, -19.59738673, -19.59738673, -19.59738673,
-19.59720271, -19.59720271, -19.59720271, -19.59720271,
-19.59655219, -19.59655219, -19.59655219, -19.59655219,
-19.59442804, -19.59442804, -19.59442804, -19.59442804,
-19.58804304, -19.58804304, -19.58804304, -19.58804304,
-19.57044604, -19.57044604, -19.57044604, -19.57044604,
-19.52618557, -19.52618557, -19.52618557, -19.52618557,
-19.42507494, -19.42507494, -19.42507494, -19.42507494,
-19.21618398, -19.21618398, -19.21618398, -19.21618398,
-18.82690858, -18.82690858, -18.82690858, -18.82690858,
-18.17229471, -18.17229471, -18.17229471, -18.17229471,
-17.17444894, -17.17444894, -17.17444894, -17.17444894,
-15.78278408, -15.78278408, -15.78278408, -15.78278408,
-13.98043263, -13.98043263, -13.98043263, -13.98043263,
-11.76527896, -11.76527896, -11.76527896, -11.76527896,
-9.34378632, -9.34378632, -9.34378632, -9.34378632,
-7.05643989, -7.05643989, -7.05643989, -7.05643989,
-4.98262758, -4.98262758, -4.98262758, -4.98262758,
-3.20805664, -3.20805664, -3.20805664, -3.20805664,
-1.84956697, -1.84956697, -1.84956697, -1.84956697,
-0.89863961, -0.89863961, -0.89863961, -0.89863961,
-0.46628545, -0.46628545, -0.46628545, -0.46628545,
-0.19649909, -0.19649909, -0.19649909, -0.19649909,
-0.20536213, -0.20536213, -0.20536213, -0.20536213,
-0.24763714, -0.24763714, -0.24763714, -0.24763714,
-0.25291938, -0.25291938, -0.25291938, -0.25291938,
-0.18625508, -0.18625508, -0.18625508, -0.18625508,
0.04128025, 0.04128025, 0.04128025, 0.04128025,
0.30247955, 0.30247955, 0.30247955, 0.30247955,
0.2509268 , 0.2509268 , 0.2509268 , 0.2509268 ,
-6.20156314, -6.20156314, -6.20156314, -6.20156314,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999995e+02, 9.99999995e+02, 9.99999995e+02, 9.99999995e+02,
9.99999974e+02, 9.99999974e+02, 9.99999974e+02, 9.99999974e+02,
9.99999875e+02, 9.99999875e+02, 9.99999875e+02, 9.99999875e+02,
9.99999436e+02, 9.99999436e+02, 9.99999436e+02, 9.99999436e+02,
9.99997633e+02, 9.99997633e+02, 9.99997633e+02, 9.99997633e+02,
9.99990747e+02, 9.99990747e+02, 9.99990747e+02, 9.99990747e+02,
9.99966408e+02, 9.99966408e+02, 9.99966408e+02, 9.99966408e+02,
9.99886934e+02, 9.99886934e+02, 9.99886934e+02, 9.99886934e+02,
9.99648077e+02, 9.99648077e+02, 9.99648077e+02, 9.99648077e+02,
9.98990041e+02, 9.98990041e+02, 9.98990041e+02, 9.98990041e+02,
9.97336580e+02, 9.97336580e+02, 9.97336580e+02, 9.97336580e+02,
9.93568199e+02, 9.93568199e+02, 9.93568199e+02, 9.93568199e+02,
9.85821909e+02, 9.85821909e+02, 9.85821909e+02, 9.85821909e+02,
9.71526437e+02, 9.71526437e+02, 9.71526437e+02, 9.71526437e+02,
9.47894147e+02, 9.47894147e+02, 9.47894147e+02, 9.47894147e+02,
9.12836507e+02, 9.12836507e+02, 9.12836507e+02, 9.12836507e+02,
8.65834851e+02, 8.65834851e+02, 8.65834851e+02, 8.65834851e+02,
8.08105172e+02, 8.08105172e+02, 8.08105172e+02, 8.08105172e+02,
7.41758147e+02, 7.41758147e+02, 7.41758147e+02, 7.41758147e+02,
6.74072947e+02, 6.74072947e+02, 6.74072947e+02, 6.74072947e+02,
6.15130380e+02, 6.15130380e+02, 6.15130380e+02, 6.15130380e+02,
5.65729150e+02, 5.65729150e+02, 5.65729150e+02, 5.65729150e+02,
5.26412191e+02, 5.26412191e+02, 5.26412191e+02, 5.26412191e+02,
4.97253516e+02, 4.97253516e+02, 4.97253516e+02, 4.97253516e+02,
4.79375696e+02, 4.79375696e+02, 4.79375696e+02, 4.79375696e+02,
4.68320744e+02, 4.68320744e+02, 4.68320744e+02, 4.68320744e+02,
4.66136700e+02, 4.66136700e+02, 4.66136700e+02, 4.66136700e+02,
4.64672864e+02, 4.64672864e+02, 4.64672864e+02, 4.64672864e+02,
4.64966289e+02, 4.64966289e+02, 4.64966289e+02, 4.64966289e+02,
4.65608335e+02, 4.65608335e+02, 4.65608335e+02, 4.65608335e+02,
4.64881882e+02, 4.64881882e+02, 4.64881882e+02, 4.64881882e+02,
4.60646102e+02, 4.60646102e+02, 4.60646102e+02, 4.60646102e+02,
4.55385849e+02, 4.55385849e+02, 4.55385849e+02, 4.55385849e+02,
4.31816803e+02, 4.31816803e+02, 4.31816803e+02, 4.31816803e+02,
2.06635628e+02, 2.06635628e+02, 2.06635628e+02, 2.06635628e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999984, 0.99999984, 0.99999984, 0.99999984, 0.99999934,
0.99999934, 0.99999934, 0.99999934, 0.99999737, 0.99999737,
0.99999737, 0.99999737, 0.99999027, 0.99999027, 0.99999027,
0.99999027, 0.99996643, 0.99996643, 0.99996643, 0.99996643,
0.9998923 , 0.9998923 , 0.9998923 , 0.9998923 , 0.99967957,
0.99967957, 0.99967957, 0.99967957, 0.9991184 , 0.9991184 ,
0.9991184 , 0.9991184 , 0.99776398, 0.99776398, 0.99776398,
0.99776398, 0.99478831, 0.99478831, 0.99478831, 0.99478831,
0.9888658 , 0.9888658 , 0.9888658 , 0.9888658 , 0.9782249 ,
0.9782249 , 0.9782249 , 0.9782249 , 0.96098356, 0.96098356,
0.96098356, 0.96098356, 0.93571801, 0.93571801, 0.93571801,
0.93571801, 0.90197123, 0.90197123, 0.90197123, 0.90197123,
0.86032975, 0.86032975, 0.86032975, 0.86032975, 0.81198217,
0.81198217, 0.81198217, 0.81198217, 0.76085236, 0.76085236,
0.76085236, 0.76085236, 0.71438618, 0.71438618, 0.71438618,
0.71438618, 0.673788 , 0.673788 , 0.673788 , 0.673788 ,
0.63968963, 0.63968963, 0.63968963, 0.63968963, 0.61328797,
0.61328797, 0.61328797, 0.61328797, 0.59447045, 0.59447045,
0.59447045, 0.59447045, 0.58428705, 0.58428705, 0.58428705,
0.58428705, 0.57809617, 0.57809617, 0.57809617, 0.57809617,
0.57719122, 0.57719122, 0.57719122, 0.57719122, 0.57620897,
0.57620897, 0.57620897, 0.57620897, 0.57422688, 0.57422688,
0.57422688, 0.57422688, 0.571107 , 0.571107 , 0.571107 ,
0.571107 , 0.56786369, 0.56786369, 0.56786369, 0.56786369,
0.57567961, 0.57567961, 0.57567961, 0.57567961, 0.74817334,
0.74817334, 0.74817334, 0.74817334, 4.84157196, 4.84157196,
4.84157196, 4.84157196, 3.37984832, 3.37984832, 3.37984832,
3.37984832, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744995, -19.59744995, -19.59744995, -19.59744995,
-19.59744973, -19.59744973, -19.59744973, -19.59744973,
-19.59744871, -19.59744871, -19.59744871, -19.59744871,
-19.59744416, -19.59744416, -19.59744416, -19.59744416,
-19.59742522, -19.59742522, -19.59742522, -19.59742522,
-19.59735169, -19.59735169, -19.59735169, -19.59735169,
-19.59708593, -19.59708593, -19.59708593, -19.59708593,
-19.59619382, -19.59619382, -19.59619382, -19.59619382,
-19.59342017, -19.59342017, -19.59342017, -19.59342017,
-19.58545999, -19.58545999, -19.58545999, -19.58545999,
-19.56445685, -19.56445685, -19.56445685, -19.56445685,
-19.51373667, -19.51373667, -19.51373667, -19.51373667,
-19.40214943, -19.40214943, -19.40214943, -19.40214943,
-19.17936756, -19.17936756, -19.17936756, -19.17936756,
-18.77661552, -18.77661552, -18.77661552, -18.77661552,
-18.1167873 , -18.1167873 , -18.1167873 , -18.1167873 ,
-17.1325607 , -17.1325607 , -17.1325607 , -17.1325607 ,
-15.78358459, -15.78358459, -15.78358459, -15.78358459,
-14.06052277, -14.06052277, -14.06052277, -14.06052277,
-11.96678578, -11.96678578, -11.96678578, -11.96678578,
-9.66020929, -9.66020929, -9.66020929, -9.66020929,
-7.45697342, -7.45697342, -7.45697342, -7.45697342,
-5.42891389, -5.42891389, -5.42891389, -5.42891389,
-3.65587783, -3.65587783, -3.65587783, -3.65587783,
-2.21451375, -2.21451375, -2.21451375, -2.21451375,
-1.20771195, -1.20771195, -1.20771195, -1.20771195,
-0.55292829, -0.55292829, -0.55292829, -0.55292829,
-0.33291113, -0.33291113, -0.33291113, -0.33291113,
-0.1977434 , -0.1977434 , -0.1977434 , -0.1977434 ,
-0.2087287 , -0.2087287 , -0.2087287 , -0.2087287 ,
-0.24528779, -0.24528779, -0.24528779, -0.24528779,
-0.22555601, -0.22555601, -0.22555601, -0.22555601,
-0.07111291, -0.07111291, -0.07111291, -0.07111291,
0.21894468, 0.21894468, 0.21894468, 0.21894468,
0.41981187, 0.41981187, 0.41981187, 0.41981187,
0.26295954, 0.26295954, 0.26295954, 0.26295954,
-5.18426791, -5.18426791, -5.18426791, -5.18426791,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
9.99999952e+02, 9.99999952e+02, 9.99999952e+02, 9.99999952e+02,
9.99999782e+02, 9.99999782e+02, 9.99999782e+02, 9.99999782e+02,
9.99999073e+02, 9.99999073e+02, 9.99999073e+02, 9.99999073e+02,
9.99996322e+02, 9.99996322e+02, 9.99996322e+02, 9.99996322e+02,
9.99986378e+02, 9.99986378e+02, 9.99986378e+02, 9.99986378e+02,
9.99952999e+02, 9.99952999e+02, 9.99952999e+02, 9.99952999e+02,
9.99849227e+02, 9.99849227e+02, 9.99849227e+02, 9.99849227e+02,
9.99551461e+02, 9.99551461e+02, 9.99551461e+02, 9.99551461e+02,
9.98766163e+02, 9.98766163e+02, 9.98766163e+02, 9.98766163e+02,
9.96871948e+02, 9.96871948e+02, 9.96871948e+02, 9.96871948e+02,
9.92715494e+02, 9.92715494e+02, 9.92715494e+02, 9.92715494e+02,
9.84462129e+02, 9.84462129e+02, 9.84462129e+02, 9.84462129e+02,
9.69692798e+02, 9.69692798e+02, 9.69692798e+02, 9.69692798e+02,
9.45913437e+02, 9.45913437e+02, 9.45913437e+02, 9.45913437e+02,
9.11388812e+02, 9.11388812e+02, 9.11388812e+02, 9.11388812e+02,
8.65856722e+02, 8.65856722e+02, 8.65856722e+02, 8.65856722e+02,
8.10584836e+02, 8.10584836e+02, 8.10584836e+02, 8.10584836e+02,
7.47563377e+02, 7.47563377e+02, 7.47563377e+02, 7.47563377e+02,
6.82592921e+02, 6.82592921e+02, 6.82592921e+02, 6.82592921e+02,
6.25100512e+02, 6.25100512e+02, 6.25100512e+02, 6.25100512e+02,
5.76125421e+02, 5.76125421e+02, 5.76125421e+02, 5.76125421e+02,
5.35939873e+02, 5.35939873e+02, 5.35939873e+02, 5.35939873e+02,
5.05443149e+02, 5.05443149e+02, 5.05443149e+02, 5.05443149e+02,
4.84061172e+02, 4.84061172e+02, 4.84061172e+02, 4.84061172e+02,
4.72683354e+02, 4.72683354e+02, 4.72683354e+02, 4.72683354e+02,
4.65930774e+02, 4.65930774e+02, 4.65930774e+02, 4.65930774e+02,
4.65385730e+02, 4.65385730e+02, 4.65385730e+02, 4.65385730e+02,
4.65275096e+02, 4.65275096e+02, 4.65275096e+02, 4.65275096e+02,
4.65244567e+02, 4.65244567e+02, 4.65244567e+02, 4.65244567e+02,
4.64880653e+02, 4.64880653e+02, 4.64880653e+02, 4.64880653e+02,
4.62253833e+02, 4.62253833e+02, 4.62253833e+02, 4.62253833e+02,
4.57097301e+02, 4.57097301e+02, 4.57097301e+02, 4.57097301e+02,
4.53882832e+02, 4.53882832e+02, 4.53882832e+02, 4.53882832e+02,
4.39418517e+02, 4.39418517e+02, 4.39418517e+02, 4.39418517e+02,
2.38228799e+02, 2.38228799e+02, 2.38228799e+02, 2.38228799e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999994, 0.99999994, 0.99999994,
0.99999994, 0.99999974, 0.99999974, 0.99999974, 0.99999974,
0.99999896, 0.99999896, 0.99999896, 0.99999896, 0.99999607,
0.99999607, 0.99999607, 0.99999607, 0.99998615, 0.99998615,
0.99998615, 0.99998615, 0.99995436, 0.99995436, 0.99995436,
0.99995436, 0.99985986, 0.99985986, 0.99985986, 0.99985986,
0.99959991, 0.99959991, 0.99959991, 0.99959991, 0.99894097,
0.99894097, 0.99894097, 0.99894097, 0.99740896, 0.99740896,
0.99740896, 0.99740896, 0.99415786, 0.99415786, 0.99415786,
0.99415786, 0.98788866, 0.98788866, 0.98788866, 0.98788866,
0.9769374 , 0.9769374 , 0.9769374 , 0.9769374 , 0.9596167 ,
0.9596167 , 0.9596167 , 0.9596167 , 0.93473263, 0.93473263,
0.93473263, 0.93473263, 0.90200243, 0.90200243, 0.90200243,
0.90200243, 0.86207191, 0.86207191, 0.86207191, 0.86207191,
0.8160811 , 0.8160811 , 0.8160811 , 0.8160811 , 0.76717167,
0.76717167, 0.76717167, 0.76717167, 0.72204334, 0.72204334,
0.72204334, 0.72204334, 0.68214793, 0.68214793, 0.68214793,
0.68214793, 0.64796307, 0.64796307, 0.64796307, 0.64796307,
0.62031392, 0.62031392, 0.62031392, 0.62031392, 0.60028844,
0.60028844, 0.60028844, 0.60028844, 0.58692937, 0.58692937,
0.58692937, 0.58692937, 0.58094604, 0.58094604, 0.58094604,
0.58094604, 0.57737342, 0.57737342, 0.57737342, 0.57737342,
0.57696531, 0.57696531, 0.57696531, 0.57696531, 0.57635167,
0.57635167, 0.57635167, 0.57635167, 0.57411717, 0.57411717,
0.57411717, 0.57411717, 0.56976281, 0.56976281, 0.56976281,
0.56976281, 0.5647334 , 0.5647334 , 0.5647334 , 0.5647334 ,
0.57337992, 0.57337992, 0.57337992, 0.57337992, 0.74560079,
0.74560079, 0.74560079, 0.74560079, 4.86173883, 4.86173883,
4.86173883, 4.86173883, 3.74293932, 3.74293932, 3.74293932,
3.74293932, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.5974499 , -19.5974499 , -19.5974499 , -19.5974499 ,
-19.5974495 , -19.5974495 , -19.5974495 , -19.5974495 ,
-19.59744774, -19.59744774, -19.59744774, -19.59744774,
-19.5974403 , -19.5974403 , -19.5974403 , -19.5974403 ,
-19.597411 , -19.597411 , -19.597411 , -19.597411 ,
-19.59730302, -19.59730302, -19.59730302, -19.59730302,
-19.59693164, -19.59693164, -19.59693164, -19.59693164,
-19.59574238, -19.59574238, -19.59574238, -19.59574238,
-19.59220644, -19.59220644, -19.59220644, -19.59220644,
-19.5824787 , -19.5824787 , -19.5824787 , -19.5824787 ,
-19.55781439, -19.55781439, -19.55781439, -19.55781439,
-19.50043296, -19.50043296, -19.50043296, -19.50043296,
-19.37847127, -19.37847127, -19.37847127, -19.37847127,
-19.14249326, -19.14249326, -19.14249326, -19.14249326,
-18.72758373, -18.72758373, -18.72758373, -18.72758373,
-18.06389686, -18.06389686, -18.06389686, -18.06389686,
-17.09337525, -17.09337525, -17.09337525, -17.09337525,
-15.7842355 , -15.7842355 , -15.7842355 , -15.7842355 ,
-14.13315083, -14.13315083, -14.13315083, -14.13315083,
-12.14786666, -12.14786666, -12.14786666, -12.14786666,
-9.94885509, -9.94885509, -9.94885509, -9.94885509,
-7.8279918 , -7.8279918 , -7.8279918 , -7.8279918 ,
-5.85096961, -5.85096961, -5.85096961, -5.85096961,
-4.083866 , -4.083866 , -4.083866 , -4.083866 ,
-2.61044982, -2.61044982, -2.61044982, -2.61044982,
-1.48449895, -1.48449895, -1.48449895, -1.48449895,
-0.78457656, -0.78457656, -0.78457656, -0.78457656,
-0.36023962, -0.36023962, -0.36023962, -0.36023962,
-0.26982385, -0.26982385, -0.26982385, -0.26982385,
-0.21660221, -0.21660221, -0.21660221, -0.21660221,
-0.21563676, -0.21563676, -0.21563676, -0.21563676,
-0.21823924, -0.21823924, -0.21823924, -0.21823924,
-0.14247469, -0.14247469, -0.14247469, -0.14247469,
0.10258168, 0.10258168, 0.10258168, 0.10258168,
0.32671238, 0.32671238, 0.32671238, 0.32671238,
0.4520803 , 0.4520803 , 0.4520803 , 0.4520803 ,
0.25674662, 0.25674662, 0.25674662, 0.25674662,
-4.32220372, -4.32220372, -4.32220372, -4.32220372,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999981e+02, 9.99999981e+02, 9.99999981e+02, 9.99999981e+02,
9.99999915e+02, 9.99999915e+02, 9.99999915e+02, 9.99999915e+02,
9.99999637e+02, 9.99999637e+02, 9.99999637e+02, 9.99999637e+02,
9.99998541e+02, 9.99998541e+02, 9.99998541e+02, 9.99998541e+02,
9.99994500e+02, 9.99994500e+02, 9.99994500e+02, 9.99994500e+02,
9.99980605e+02, 9.99980605e+02, 9.99980605e+02, 9.99980605e+02,
9.99936108e+02, 9.99936108e+02, 9.99936108e+02, 9.99936108e+02,
9.99803820e+02, 9.99803820e+02, 9.99803820e+02, 9.99803820e+02,
9.99439960e+02, 9.99439960e+02, 9.99439960e+02, 9.99439960e+02,
9.98517915e+02, 9.98517915e+02, 9.98517915e+02, 9.98517915e+02,
9.96375619e+02, 9.96375619e+02, 9.96375619e+02, 9.96375619e+02,
9.91835461e+02, 9.91835461e+02, 9.91835461e+02, 9.91835461e+02,
9.83101847e+02, 9.83101847e+02, 9.83101847e+02, 9.83101847e+02,
9.67908032e+02, 9.67908032e+02, 9.67908032e+02, 9.67908032e+02,
9.44029385e+02, 9.44029385e+02, 9.44029385e+02, 9.44029385e+02,
9.10036140e+02, 9.10036140e+02, 9.10036140e+02, 9.10036140e+02,
8.65873851e+02, 8.65873851e+02, 8.65873851e+02, 8.65873851e+02,
8.12839676e+02, 8.12839676e+02, 8.12839676e+02, 8.12839676e+02,
7.52816562e+02, 7.52816562e+02, 7.52816562e+02, 7.52816562e+02,
6.90463584e+02, 6.90463584e+02, 6.90463584e+02, 6.90463584e+02,
6.34422698e+02, 6.34422698e+02, 6.34422698e+02, 6.34422698e+02,
5.86040349e+02, 5.86040349e+02, 5.86040349e+02, 5.86040349e+02,
5.45517331e+02, 5.45517331e+02, 5.45517331e+02, 5.45517331e+02,
5.13402817e+02, 5.13402817e+02, 5.13402817e+02, 5.13402817e+02,
4.90538861e+02, 4.90538861e+02, 4.90538861e+02, 4.90538861e+02,
4.75499560e+02, 4.75499560e+02, 4.75499560e+02, 4.75499560e+02,
4.68907799e+02, 4.68907799e+02, 4.68907799e+02, 4.68907799e+02,
4.65117682e+02, 4.65117682e+02, 4.65117682e+02, 4.65117682e+02,
4.65134695e+02, 4.65134695e+02, 4.65134695e+02, 4.65134695e+02,
4.65442962e+02, 4.65442962e+02, 4.65442962e+02, 4.65442962e+02,
4.65131540e+02, 4.65131540e+02, 4.65131540e+02, 4.65131540e+02,
4.63362159e+02, 4.63362159e+02, 4.63362159e+02, 4.63362159e+02,
4.58697323e+02, 4.58697323e+02, 4.58697323e+02, 4.58697323e+02,
4.54631528e+02, 4.54631528e+02, 4.54631528e+02, 4.54631528e+02,
4.53420612e+02, 4.53420612e+02, 4.53420612e+02, 4.53420612e+02,
4.46380765e+02, 4.46380765e+02, 4.46380765e+02, 4.46380765e+02,
2.69672349e+02, 2.69672349e+02, 2.69672349e+02, 2.69672349e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.9999999 , 0.9999999 ,
0.9999999 , 0.9999999 , 0.99999959, 0.99999959, 0.99999959,
0.99999959, 0.99999842, 0.99999842, 0.99999842, 0.99999842,
0.99999432, 0.99999432, 0.99999432, 0.99999432, 0.99998084,
0.99998084, 0.99998084, 0.99998084, 0.99993948, 0.99993948,
0.99993948, 0.99993948, 0.99982148, 0.99982148, 0.99982148,
0.99982148, 0.99950923, 0.99950923, 0.99950923, 0.99950923,
0.99874628, 0.99874628, 0.99874628, 0.99874628, 0.9970325 ,
0.9970325 , 0.9970325 , 0.9970325 , 0.99351011, 0.99351011,
0.99351011, 0.99351011, 0.98691297, 0.98691297, 0.98691297,
0.98691297, 0.97568359, 0.97568359, 0.97568359, 0.97568359,
0.95831325, 0.95831325, 0.95831325, 0.95831325, 0.93380786,
0.93380786, 0.93380786, 0.93380786, 0.90202785, 0.90202785,
0.90202785, 0.90202785, 0.86366009, 0.86366009, 0.86366009,
0.86366009, 0.81979651, 0.81979651, 0.81979651, 0.81979651,
0.77297936, 0.77297936, 0.77297936, 0.77297936, 0.72920034,
0.72920034, 0.72920034, 0.72920034, 0.69006306, 0.69006306,
0.69006306, 0.69006306, 0.65593137, 0.65593137, 0.65593137,
0.65593137, 0.62766415, 0.62766415, 0.62766415, 0.62766415,
0.60587119, 0.60587119, 0.60587119, 0.60587119, 0.59137799,
0.59137799, 0.59137799, 0.59137799, 0.58235921, 0.58235921,
0.58235921, 0.58235921, 0.57922962, 0.57922962, 0.57922962,
0.57922962, 0.57732033, 0.57732033, 0.57732033, 0.57732033,
0.57686979, 0.57686979, 0.57686979, 0.57686979, 0.57610032,
0.57610032, 0.57610032, 0.57610032, 0.57333709, 0.57333709,
0.57333709, 0.57333709, 0.56738045, 0.56738045, 0.56738045,
0.56738045, 0.56220514, 0.56220514, 0.56220514, 0.56220514,
0.57216743, 0.57216743, 0.57216743, 0.57216743, 0.74383759,
0.74383759, 0.74383759, 0.74383759, 4.87563631, 4.87563631,
4.87563631, 4.87563631, 4.11173504, 4.11173504, 4.11173504,
4.11173504, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974491e+01, -1.95974491e+01, -1.95974491e+01, -1.95974491e+01,
-1.95974462e+01, -1.95974462e+01, -1.95974462e+01, -1.95974462e+01,
-1.95974346e+01, -1.95974346e+01, -1.95974346e+01, -1.95974346e+01,
-1.95973909e+01, -1.95973909e+01, -1.95973909e+01, -1.95973909e+01,
-1.95972374e+01, -1.95972374e+01, -1.95972374e+01, -1.95972374e+01,
-1.95967329e+01, -1.95967329e+01, -1.95967329e+01, -1.95967329e+01,
-1.95951856e+01, -1.95951856e+01, -1.95951856e+01, -1.95951856e+01,
-1.95907700e+01, -1.95907700e+01, -1.95907700e+01, -1.95907700e+01,
-1.95790850e+01, -1.95790850e+01, -1.95790850e+01, -1.95790850e+01,
-1.95505247e+01, -1.95505247e+01, -1.95505247e+01, -1.95505247e+01,
-1.94863222e+01, -1.94863222e+01, -1.94863222e+01, -1.94863222e+01,
-1.93541313e+01, -1.93541313e+01, -1.93541313e+01, -1.93541313e+01,
-1.91056428e+01, -1.91056428e+01, -1.91056428e+01, -1.91056428e+01,
-1.86797805e+01, -1.86797805e+01, -1.86797805e+01, -1.86797805e+01,
-1.80133989e+01, -1.80133989e+01, -1.80133989e+01, -1.80133989e+01,
-1.70565763e+01, -1.70565763e+01, -1.70565763e+01, -1.70565763e+01,
-1.57847291e+01, -1.57847291e+01, -1.57847291e+01, -1.57847291e+01,
-1.41993110e+01, -1.41993110e+01, -1.41993110e+01, -1.41993110e+01,
-1.23114182e+01, -1.23114182e+01, -1.23114182e+01, -1.23114182e+01,
-1.02128458e+01, -1.02128458e+01, -1.02128458e+01, -1.02128458e+01,
-8.17097157e+00, -8.17097157e+00, -8.17097157e+00, -8.17097157e+00,
-6.24791835e+00, -6.24791835e+00, -6.24791835e+00, -6.24791835e+00,
-4.50048637e+00, -4.50048637e+00, -4.50048637e+00, -4.50048637e+00,
-2.99529183e+00, -2.99529183e+00, -2.99529183e+00, -2.99529183e+00,
-1.81501387e+00, -1.81501387e+00, -1.81501387e+00, -1.81501387e+00,
-9.74971294e-01, -9.74971294e-01, -9.74971294e-01, -9.74971294e-01,
-5.25188680e-01, -5.25188680e-01, -5.25188680e-01, -5.25188680e-01,
-2.68903625e-01, -2.68903625e-01, -2.68903625e-01, -2.68903625e-01,
-2.41934051e-01, -2.41934051e-01, -2.41934051e-01, -2.41934051e-01,
-2.27678422e-01, -2.27678422e-01, -2.27678422e-01, -2.27678422e-01,
-2.13501022e-01, -2.13501022e-01, -2.13501022e-01, -2.13501022e-01,
-1.62982931e-01, -1.62982931e-01, -1.62982931e-01, -1.62982931e-01,
1.15379653e-02, 1.15379653e-02, 1.15379653e-02, 1.15379653e-02,
2.50688575e-01, 2.50688575e-01, 2.50688575e-01, 2.50688575e-01,
3.71810186e-01, 3.71810186e-01, 3.71810186e-01, 3.71810186e-01,
4.26658879e-01, 4.26658879e-01, 4.26658879e-01, 4.26658879e-01,
2.36045219e-01, 2.36045219e-01, 2.36045219e-01, 2.36045219e-01,
-3.58270901e+00, -3.58270901e+00, -3.58270901e+00, -3.58270901e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999993e+02, 9.99999993e+02, 9.99999993e+02, 9.99999993e+02,
9.99999967e+02, 9.99999967e+02, 9.99999967e+02, 9.99999967e+02,
9.99999858e+02, 9.99999858e+02, 9.99999858e+02, 9.99999858e+02,
9.99999422e+02, 9.99999422e+02, 9.99999422e+02, 9.99999422e+02,
9.99997788e+02, 9.99997788e+02, 9.99997788e+02, 9.99997788e+02,
9.99992045e+02, 9.99992045e+02, 9.99992045e+02, 9.99992045e+02,
9.99973169e+02, 9.99973169e+02, 9.99973169e+02, 9.99973169e+02,
9.99915278e+02, 9.99915278e+02, 9.99915278e+02, 9.99915278e+02,
9.99750084e+02, 9.99750084e+02, 9.99750084e+02, 9.99750084e+02,
9.99313048e+02, 9.99313048e+02, 9.99313048e+02, 9.99313048e+02,
9.98245539e+02, 9.98245539e+02, 9.98245539e+02, 9.98245539e+02,
9.95849414e+02, 9.95849414e+02, 9.95849414e+02, 9.95849414e+02,
9.90931538e+02, 9.90931538e+02, 9.90931538e+02, 9.90931538e+02,
9.81744079e+02, 9.81744079e+02, 9.81744079e+02, 9.81744079e+02,
9.66170722e+02, 9.66170722e+02, 9.66170722e+02, 9.66170722e+02,
9.42233527e+02, 9.42233527e+02, 9.42233527e+02, 9.42233527e+02,
9.08767261e+02, 9.08767261e+02, 9.08767261e+02, 9.08767261e+02,
8.65885982e+02, 8.65885982e+02, 8.65885982e+02, 8.65885982e+02,
8.14898864e+02, 8.14898864e+02, 8.14898864e+02, 8.14898864e+02,
7.57590795e+02, 7.57590795e+02, 7.57590795e+02, 7.57590795e+02,
6.97731013e+02, 6.97731013e+02, 6.97731013e+02, 6.97731013e+02,
6.43163759e+02, 6.43163759e+02, 6.43163759e+02, 6.43163759e+02,
5.95496479e+02, 5.95496479e+02, 5.95496479e+02, 5.95496479e+02,
5.54812201e+02, 5.54812201e+02, 5.54812201e+02, 5.54812201e+02,
5.21793149e+02, 5.21793149e+02, 5.21793149e+02, 5.21793149e+02,
4.96779727e+02, 4.96779727e+02, 4.96779727e+02, 4.96779727e+02,
4.80392572e+02, 4.80392572e+02, 4.80392572e+02, 4.80392572e+02,
4.70330245e+02, 4.70330245e+02, 4.70330245e+02, 4.70330245e+02,
4.66971151e+02, 4.66971151e+02, 4.66971151e+02, 4.66971151e+02,
4.65060012e+02, 4.65060012e+02, 4.65060012e+02, 4.65060012e+02,
4.65030737e+02, 4.65030737e+02, 4.65030737e+02, 4.65030737e+02,
4.65164746e+02, 4.65164746e+02, 4.65164746e+02, 4.65164746e+02,
4.64255999e+02, 4.64255999e+02, 4.64255999e+02, 4.64255999e+02,
4.60656577e+02, 4.60656577e+02, 4.60656577e+02, 4.60656577e+02,
4.55837406e+02, 4.55837406e+02, 4.55837406e+02, 4.55837406e+02,
4.53402412e+02, 4.53402412e+02, 4.53402412e+02, 4.53402412e+02,
4.53640419e+02, 4.53640419e+02, 4.53640419e+02, 4.53640419e+02,
4.52229350e+02, 4.52229350e+02, 4.52229350e+02, 4.52229350e+02,
3.01077885e+02, 3.01077885e+02, 3.01077885e+02, 3.01077885e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999984,
0.99999984, 0.99999984, 0.99999984, 0.99999937, 0.99999937,
0.99999937, 0.99999937, 0.99999768, 0.99999768, 0.99999768,
0.99999768, 0.99999201, 0.99999201, 0.99999201, 0.99999201,
0.99997414, 0.99997414, 0.99997414, 0.99997414, 0.99992146,
0.99992146, 0.99992146, 0.99992146, 0.99977672, 0.99977672,
0.99977672, 0.99977672, 0.99940724, 0.99940724, 0.99940724,
0.99940724, 0.99853457, 0.99853457, 0.99853457, 0.99853457,
0.99663589, 0.99663589, 0.99663589, 0.99663589, 0.9928473 ,
0.9928473 , 0.9928473 , 0.9928473 , 0.98594052, 0.98594052,
0.98594052, 0.98594052, 0.97446242, 0.97446242, 0.97446242,
0.97446242, 0.95706792, 0.95706792, 0.95706792, 0.95706792,
0.93293693, 0.93293693, 0.93293693, 0.93293693, 0.90204737,
0.90204737, 0.90204737, 0.90204737, 0.86511108, 0.86511108,
0.86511108, 0.86511108, 0.82318738, 0.82318738, 0.82318738,
0.82318738, 0.77830857, 0.77830857, 0.77830857, 0.77830857,
0.73588408, 0.73588408, 0.73588408, 0.73588408, 0.6975687 ,
0.6975687 , 0.6975687 , 0.6975687 , 0.66365245, 0.66365245,
0.66365245, 0.66365245, 0.63486674, 0.63486674, 0.63486674,
0.63486674, 0.61208758, 0.61208758, 0.61208758, 0.61208758,
0.59551372, 0.59551372, 0.59551372, 0.59551372, 0.58561868,
0.58561868, 0.58561868, 0.58561868, 0.57985691, 0.57985691,
0.57985691, 0.57985691, 0.57840454, 0.57840454, 0.57840454,
0.57840454, 0.57741333, 0.57741333, 0.57741333, 0.57741333,
0.5767517 , 0.5767517 , 0.5767517 , 0.5767517 , 0.57543994,
0.57543994, 0.57543994, 0.57543994, 0.57152955, 0.57152955,
0.57152955, 0.57152955, 0.56468211, 0.56468211, 0.56468211,
0.56468211, 0.56091344, 0.56091344, 0.56091344, 0.56091344,
0.57188894, 0.57188894, 0.57188894, 0.57188894, 0.74278857,
0.74278857, 0.74278857, 0.74278857, 4.88603985, 4.88603985,
4.88603985, 4.88603985, 4.4829508 , 4.4829508 , 4.4829508 ,
4.4829508 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744993, -19.59744993, -19.59744993, -19.59744993,
-19.59744966, -19.59744966, -19.59744966, -19.59744966,
-19.59744852, -19.59744852, -19.59744852, -19.59744852,
-19.59744389, -19.59744389, -19.59744389, -19.59744389,
-19.59742629, -19.59742629, -19.59742629, -19.59742629,
-19.59736324, -19.59736324, -19.59736324, -19.59736324,
-19.59715114, -19.59715114, -19.59715114, -19.59715114,
-19.59648246, -19.59648246, -19.59648246, -19.59648246,
-19.59451143, -19.59451143, -19.59451143, -19.59451143,
-19.5890952 , -19.5890952 , -19.5890952 , -19.5890952 ,
-19.5752676 , -19.5752676 , -19.5752676 , -19.5752676 ,
-19.54259686, -19.54259686, -19.54259686, -19.54259686,
-19.47145154, -19.47145154, -19.47145154, -19.47145154,
-19.32921166, -19.32921166, -19.32921166, -19.32921166,
-19.06888403, -19.06888403, -19.06888403, -19.06888403,
-18.63316989, -18.63316989, -18.63316989, -18.63316989,
-17.9650968 , -17.9650968 , -17.9650968 , -17.9650968 ,
-17.0218994 , -17.0218994 , -17.0218994 , -17.0218994 ,
-15.78504755, -15.78504755, -15.78504755, -15.78504755,
-14.25968055, -14.25968055, -14.25968055, -14.25968055,
-12.4597091 , -12.4597091 , -12.4597091 , -12.4597091 ,
-10.45568507, -10.45568507, -10.45568507, -10.45568507,
-8.48812092, -8.48812092, -8.48812092, -8.48812092,
-6.62035699, -6.62035699, -6.62035699, -6.62035699,
-4.89903379, -4.89903379, -4.89903379, -4.89903379,
-3.38404759, -3.38404759, -3.38404759, -3.38404759,
-2.13969306, -2.13969306, -2.13969306, -2.13969306,
-1.23614386, -1.23614386, -1.23614386, -1.23614386,
-0.64167605, -0.64167605, -0.64167605, -0.64167605,
-0.37914747, -0.37914747, -0.37914747, -0.37914747,
-0.23502088, -0.23502088, -0.23502088, -0.23502088,
-0.22631738, -0.22631738, -0.22631738, -0.22631738,
-0.22300658, -0.22300658, -0.22300658, -0.22300658,
-0.18972395, -0.18972395, -0.18972395, -0.18972395,
-0.06053401, -0.06053401, -0.06053401, -0.06053401,
0.18328595, 0.18328595, 0.18328595, 0.18328595,
0.33774148, 0.33774148, 0.33774148, 0.33774148,
0.37790834, 0.37790834, 0.37790834, 0.37790834,
0.36595791, 0.36595791, 0.36595791, 0.36595791,
0.20139712, 0.20139712, 0.20139712, 0.20139712,
-2.94185063, -2.94185063, -2.94185063, -2.94185063,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999987e+02, 9.99999987e+02, 9.99999987e+02, 9.99999987e+02,
9.99999944e+02, 9.99999944e+02, 9.99999944e+02, 9.99999944e+02,
9.99999771e+02, 9.99999771e+02, 9.99999771e+02, 9.99999771e+02,
9.99999113e+02, 9.99999113e+02, 9.99999113e+02, 9.99999113e+02,
9.99996754e+02, 9.99996754e+02, 9.99996754e+02, 9.99996754e+02,
9.99988818e+02, 9.99988818e+02, 9.99988818e+02, 9.99988818e+02,
9.99963798e+02, 9.99963798e+02, 9.99963798e+02, 9.99963798e+02,
9.99890054e+02, 9.99890054e+02, 9.99890054e+02, 9.99890054e+02,
9.99687434e+02, 9.99687434e+02, 9.99687434e+02, 9.99687434e+02,
9.99170306e+02, 9.99170306e+02, 9.99170306e+02, 9.99170306e+02,
9.97949393e+02, 9.97949393e+02, 9.97949393e+02, 9.97949393e+02,
9.95295134e+02, 9.95295134e+02, 9.95295134e+02, 9.95295134e+02,
9.90006831e+02, 9.90006831e+02, 9.90006831e+02, 9.90006831e+02,
9.80391310e+02, 9.80391310e+02, 9.80391310e+02, 9.80391310e+02,
9.64479348e+02, 9.64479348e+02, 9.64479348e+02, 9.64479348e+02,
9.40518463e+02, 9.40518463e+02, 9.40518463e+02, 9.40518463e+02,
9.07572798e+02, 9.07572798e+02, 9.07572798e+02, 9.07572798e+02,
8.65892510e+02, 8.65892510e+02, 8.65892510e+02, 8.65892510e+02,
8.16782085e+02, 8.16782085e+02, 8.16782085e+02, 8.16782085e+02,
7.61943905e+02, 7.61943905e+02, 7.61943905e+02, 7.61943905e+02,
7.04440896e+02, 7.04440896e+02, 7.04440896e+02, 7.04440896e+02,
6.51364154e+02, 6.51364154e+02, 6.51364154e+02, 6.51364154e+02,
6.04502355e+02, 6.04502355e+02, 6.04502355e+02, 6.04502355e+02,
5.63886999e+02, 5.63886999e+02, 5.63886999e+02, 5.63886999e+02,
5.30076096e+02, 5.30076096e+02, 5.30076096e+02, 5.30076096e+02,
5.03790017e+02, 5.03790017e+02, 5.03790017e+02, 5.03790017e+02,
4.84951336e+02, 4.84951336e+02, 4.84951336e+02, 4.84951336e+02,
4.73864273e+02, 4.73864273e+02, 4.73864273e+02, 4.73864273e+02,
4.67506026e+02, 4.67506026e+02, 4.67506026e+02, 4.67506026e+02,
4.66041067e+02, 4.66041067e+02, 4.66041067e+02, 4.66041067e+02,
4.65166922e+02, 4.65166922e+02, 4.65166922e+02, 4.65166922e+02,
4.64900848e+02, 4.64900848e+02, 4.64900848e+02, 4.64900848e+02,
4.64424099e+02, 4.64424099e+02, 4.64424099e+02, 4.64424099e+02,
4.62213743e+02, 4.62213743e+02, 4.62213743e+02, 4.62213743e+02,
4.57590437e+02, 4.57590437e+02, 4.57590437e+02, 4.57590437e+02,
4.54377588e+02, 4.54377588e+02, 4.54377588e+02, 4.54377588e+02,
4.53225414e+02, 4.53225414e+02, 4.53225414e+02, 4.53225414e+02,
4.54269492e+02, 4.54269492e+02, 4.54269492e+02, 4.54269492e+02,
4.56975917e+02, 4.56975917e+02, 4.56975917e+02, 4.56975917e+02,
3.32154512e+02, 3.32154512e+02, 3.32154512e+02, 3.32154512e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999975, 0.99999975, 0.99999975, 0.99999975, 0.99999906,
0.99999906, 0.99999906, 0.99999906, 0.99999669, 0.99999669,
0.99999669, 0.99999669, 0.99998905, 0.99998905, 0.99998905,
0.99998905, 0.99996586, 0.99996586, 0.99996586, 0.99996586,
0.99989999, 0.99989999, 0.99989999, 0.99989999, 0.99972521,
0.99972521, 0.99972521, 0.99972521, 0.99929369, 0.99929369,
0.99929369, 0.99929369, 0.99830617, 0.99830617, 0.99830617,
0.99830617, 0.99622037, 0.99622037, 0.99622037, 0.99622037,
0.99217142, 0.99217142, 0.99217142, 0.99217142, 0.9849728 ,
0.9849728 , 0.9849728 , 0.9849728 , 0.97327279, 0.97327279,
0.97327279, 0.97327279, 0.95587603, 0.95587603, 0.95587603,
0.95587603, 0.93211405, 0.93211405, 0.93211405, 0.93211405,
0.90206095, 0.90206095, 0.90206095, 0.90206095, 0.86644292,
0.86644292, 0.86644292, 0.86644292, 0.82627812, 0.82627812,
0.82627812, 0.82627812, 0.78324576, 0.78324576, 0.78324576,
0.78324576, 0.74209651, 0.74209651, 0.74209651, 0.74209651,
0.70467067, 0.70467067, 0.70467067, 0.70467067, 0.6710924 ,
0.6710924 , 0.6710924 , 0.6710924 , 0.64204803, 0.64204803,
0.64204803, 0.64204803, 0.61827118, 0.61827118, 0.61827118,
0.61827118, 0.60052582, 0.60052582, 0.60052582, 0.60052582,
0.58845153, 0.58845153, 0.58845153, 0.58845153, 0.58214806,
0.58214806, 0.58214806, 0.58214806, 0.57865038, 0.57865038,
0.57865038, 0.57865038, 0.57797488, 0.57797488, 0.57797488,
0.57797488, 0.57738553, 0.57738553, 0.57738553, 0.57738553,
0.57646935, 0.57646935, 0.57646935, 0.57646935, 0.57417533,
0.57417533, 0.57417533, 0.57417533, 0.56878133, 0.56878133,
0.56878133, 0.56878133, 0.56286248, 0.56286248, 0.56286248,
0.56286248, 0.56053437, 0.56053437, 0.56053437, 0.56053437,
0.57217087, 0.57217087, 0.57217087, 0.57217087, 0.74285488,
0.74285488, 0.74285488, 0.74285488, 4.89602032, 4.89602032,
4.89602032, 4.89602032, 4.85298549, 4.85298549, 4.85298549,
4.85298549, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744987, -19.59744987, -19.59744987, -19.59744987,
-19.59744942, -19.59744942, -19.59744942, -19.59744942,
-19.59744759, -19.59744759, -19.59744759, -19.59744759,
-19.59744051, -19.59744051, -19.59744051, -19.59744051,
-19.59741474, -19.59741474, -19.59741474, -19.59741474,
-19.59732623, -19.59732623, -19.59732623, -19.59732623,
-19.59704025, -19.59704025, -19.59704025, -19.59704025,
-19.59617271, -19.59617271, -19.59617271, -19.59617271,
-19.59370781, -19.59370781, -19.59370781, -19.59370781,
-19.5871677 , -19.5871677 , -19.5871677 , -19.5871677 ,
-19.57101768, -19.57101768, -19.57101768, -19.57101768,
-19.53404259, -19.53404259, -19.53404259, -19.53404259,
-19.45586713, -19.45586713, -19.45586713, -19.45586713,
-19.30378665, -19.30378665, -19.30378665, -19.30378665,
-19.03227296, -19.03227296, -19.03227296, -19.03227296,
-18.58771423, -18.58771423, -18.58771423, -18.58771423,
-17.91881719, -17.91881719, -17.91881719, -17.91881719,
-16.98911722, -16.98911722, -16.98911722, -16.98911722,
-15.78517919, -15.78517919, -15.78517919, -15.78517919,
-14.31505356, -14.31505356, -14.31505356, -14.31505356,
-12.59466668, -12.59466668, -12.59466668, -12.59466668,
-10.67884325, -10.67884325, -10.67884325, -10.67884325,
-8.78284546, -8.78284546, -8.78284546, -8.78284546,
-6.96953529, -6.96953529, -6.96953529, -6.96953529,
-5.27984005, -5.27984005, -5.27984005, -5.27984005,
-3.76278511, -3.76278511, -3.76278511, -3.76278511,
-2.48379605, -2.48379605, -2.48379605, -2.48379605,
-1.49232242, -1.49232242, -1.49232242, -1.49232242,
-0.83744489, -0.83744489, -0.83744489, -0.83744489,
-0.44040496, -0.44040496, -0.44040496, -0.44040496,
-0.30291626, -0.30291626, -0.30291626, -0.30291626,
-0.22614522, -0.22614522, -0.22614522, -0.22614522,
-0.21208699, -0.21208699, -0.21208699, -0.21208699,
-0.19822265, -0.19822265, -0.19822265, -0.19822265,
-0.12194001, -0.12194001, -0.12194001, -0.12194001,
0.08999319, 0.08999319, 0.08999319, 0.08999319,
0.29386176, 0.29386176, 0.29386176, 0.29386176,
0.37116051, 0.37116051, 0.37116051, 0.37116051,
0.36272859, 0.36272859, 0.36272859, 0.36272859,
0.28212421, 0.28212421, 0.28212421, 0.28212421,
0.15734376, 0.15734376, 0.15734376, 0.15734376,
-2.38397278, -2.38397278, -2.38397278, -2.38397278,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999995e+02, 9.99999995e+02, 9.99999995e+02, 9.99999995e+02,
9.99999978e+02, 9.99999978e+02, 9.99999978e+02, 9.99999978e+02,
9.99999910e+02, 9.99999910e+02, 9.99999910e+02, 9.99999910e+02,
9.99999645e+02, 9.99999645e+02, 9.99999645e+02, 9.99999645e+02,
9.99998681e+02, 9.99998681e+02, 9.99998681e+02, 9.99998681e+02,
9.99995369e+02, 9.99995369e+02, 9.99995369e+02, 9.99995369e+02,
9.99984669e+02, 9.99984669e+02, 9.99984669e+02, 9.99984669e+02,
9.99952209e+02, 9.99952209e+02, 9.99952209e+02, 9.99952209e+02,
9.99859989e+02, 9.99859989e+02, 9.99859989e+02, 9.99859989e+02,
9.99615335e+02, 9.99615335e+02, 9.99615335e+02, 9.99615335e+02,
9.99011413e+02, 9.99011413e+02, 9.99011413e+02, 9.99011413e+02,
9.97629932e+02, 9.97629932e+02, 9.97629932e+02, 9.97629932e+02,
9.94714537e+02, 9.94714537e+02, 9.94714537e+02, 9.94714537e+02,
9.89064142e+02, 9.89064142e+02, 9.89064142e+02, 9.89064142e+02,
9.79045586e+02, 9.79045586e+02, 9.79045586e+02, 9.79045586e+02,
9.62832342e+02, 9.62832342e+02, 9.62832342e+02, 9.62832342e+02,
9.38877680e+02, 9.38877680e+02, 9.38877680e+02, 9.38877680e+02,
9.06444711e+02, 9.06444711e+02, 9.06444711e+02, 9.06444711e+02,
8.65893051e+02, 8.65893051e+02, 8.65893051e+02, 8.65893051e+02,
8.18513038e+02, 8.18513038e+02, 8.18513038e+02, 8.18513038e+02,
7.65925567e+02, 7.65925567e+02, 7.65925567e+02, 7.65925567e+02,
7.10661539e+02, 7.10661539e+02, 7.10661539e+02, 7.10661539e+02,
6.59031108e+02, 6.59031108e+02, 6.59031108e+02, 6.59031108e+02,
6.13064332e+02, 6.13064332e+02, 6.13064332e+02, 6.13064332e+02,
5.72674499e+02, 5.72674499e+02, 5.72674499e+02, 5.72674499e+02,
5.38398891e+02, 5.38398891e+02, 5.38398891e+02, 5.38398891e+02,
5.10813983e+02, 5.10813983e+02, 5.10813983e+02, 5.10813983e+02,
4.90540957e+02, 4.90540957e+02, 4.90540957e+02, 4.90540957e+02,
4.76930301e+02, 4.76930301e+02, 4.76930301e+02, 4.76930301e+02,
4.69941361e+02, 4.69941361e+02, 4.69941361e+02, 4.69941361e+02,
4.66145998e+02, 4.66145998e+02, 4.66145998e+02, 4.66145998e+02,
4.65557284e+02, 4.65557284e+02, 4.65557284e+02, 4.65557284e+02,
4.65137442e+02, 4.65137442e+02, 4.65137442e+02, 4.65137442e+02,
4.64585189e+02, 4.64585189e+02, 4.64585189e+02, 4.64585189e+02,
4.63000203e+02, 4.63000203e+02, 4.63000203e+02, 4.63000203e+02,
4.59105657e+02, 4.59105657e+02, 4.59105657e+02, 4.59105657e+02,
4.55518041e+02, 4.55518041e+02, 4.55518041e+02, 4.55518041e+02,
4.53947203e+02, 4.53947203e+02, 4.53947203e+02, 4.53947203e+02,
4.53673503e+02, 4.53673503e+02, 4.53673503e+02, 4.53673503e+02,
4.55580551e+02, 4.55580551e+02, 4.55580551e+02, 4.55580551e+02,
4.60645373e+02, 4.60645373e+02, 4.60645373e+02, 4.60645373e+02,
3.62537064e+02, 3.62537064e+02, 3.62537064e+02, 3.62537064e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999997, 0.99999997,
0.99999997, 0.99999997, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999962, 0.99999962, 0.99999962, 0.99999962,
0.99999864, 0.99999864, 0.99999864, 0.99999864, 0.9999954 ,
0.9999954 , 0.9999954 , 0.9999954 , 0.99998531, 0.99998531,
0.99998531, 0.99998531, 0.99995579, 0.99995579, 0.99995579,
0.99995579, 0.99987474, 0.99987474, 0.99987474, 0.99987474,
0.9996666 , 0.9996666 , 0.9996666 , 0.9996666 , 0.99916844,
0.99916844, 0.99916844, 0.99916844, 0.99806145, 0.99806145,
0.99806145, 0.99806145, 0.99578716, 0.99578716, 0.99578716,
0.99578716, 0.99148428, 0.99148428, 0.99148428, 0.99148428,
0.98401101, 0.98401101, 0.98401101, 0.98401101, 0.9721136 ,
0.9721136 , 0.9721136 , 0.9721136 , 0.95473344, 0.95473344,
0.95473344, 0.95473344, 0.93133428, 0.93133428, 0.93133428,
0.93133428, 0.90206896, 0.90206896, 0.90206896, 0.90206896,
0.86766988, 0.86766988, 0.86766988, 0.86766988, 0.82910964,
0.82910964, 0.82910964, 0.82910964, 0.78781314, 0.78781314,
0.78781314, 0.78781314, 0.74790844, 0.74790844, 0.74790844,
0.74790844, 0.71135798, 0.71135798, 0.71135798, 0.71135798,
0.67823814, 0.67823814, 0.67823814, 0.67823814, 0.64908766,
0.64908766, 0.64908766, 0.64908766, 0.62466081, 0.62466081,
0.62466081, 0.62466081, 0.6055593 , 0.6055593 , 0.6055593 ,
0.6055593 , 0.59230699, 0.59230699, 0.59230699, 0.59230699,
0.58392543, 0.58392543, 0.58392543, 0.58392543, 0.58019951,
0.58019951, 0.58019951, 0.58019951, 0.57813804, 0.57813804,
0.57813804, 0.57813804, 0.5776455 , 0.5776455 , 0.5776455 ,
0.5776455 , 0.57710118, 0.57710118, 0.57710118, 0.57710118,
0.57572559, 0.57572559, 0.57572559, 0.57572559, 0.57206785,
0.57206785, 0.57206785, 0.57206785, 0.56644016, 0.56644016,
0.56644016, 0.56644016, 0.56196219, 0.56196219, 0.56196219,
0.56196219, 0.5606061 , 0.5606061 , 0.5606061 , 0.5606061 ,
0.57295 , 0.57295 , 0.57295 , 0.57295 , 0.74382089,
0.74382089, 0.74382089, 0.74382089, 4.90781149, 4.90781149,
4.90781149, 4.90781149, 5.21965552, 5.21965552, 5.21965552,
5.21965552, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974490e+01, -1.95974490e+01, -1.95974490e+01, -1.95974490e+01,
-1.95974462e+01, -1.95974462e+01, -1.95974462e+01, -1.95974462e+01,
-1.95974357e+01, -1.95974357e+01, -1.95974357e+01, -1.95974357e+01,
-1.95973990e+01, -1.95973990e+01, -1.95973990e+01, -1.95973990e+01,
-1.95972778e+01, -1.95972778e+01, -1.95972778e+01, -1.95972778e+01,
-1.95969004e+01, -1.95969004e+01, -1.95969004e+01, -1.95969004e+01,
-1.95957959e+01, -1.95957959e+01, -1.95957959e+01, -1.95957959e+01,
-1.95927631e+01, -1.95927631e+01, -1.95927631e+01, -1.95927631e+01,
-1.95849744e+01, -1.95849744e+01, -1.95849744e+01, -1.95849744e+01,
-1.95663288e+01, -1.95663288e+01, -1.95663288e+01, -1.95663288e+01,
-1.95248756e+01, -1.95248756e+01, -1.95248756e+01, -1.95248756e+01,
-1.94396138e+01, -1.94396138e+01, -1.94396138e+01, -1.94396138e+01,
-1.92779235e+01, -1.92779235e+01, -1.92779235e+01, -1.92779235e+01,
-1.89958563e+01, -1.89958563e+01, -1.89958563e+01, -1.89958563e+01,
-1.85433753e+01, -1.85433753e+01, -1.85433753e+01, -1.85433753e+01,
-1.78744061e+01, -1.78744061e+01, -1.78744061e+01, -1.78744061e+01,
-1.69580372e+01, -1.69580372e+01, -1.69580372e+01, -1.69580372e+01,
-1.57851310e+01, -1.57851310e+01, -1.57851310e+01, -1.57851310e+01,
-1.43660369e+01, -1.43660369e+01, -1.43660369e+01, -1.43660369e+01,
-1.27180677e+01, -1.27180677e+01, -1.27180677e+01, -1.27180677e+01,
-1.08842763e+01, -1.08842763e+01, -1.08842763e+01, -1.08842763e+01,
-9.05630951e+00, -9.05630951e+00, -9.05630951e+00, -9.05630951e+00,
-7.29760506e+00, -7.29760506e+00, -7.29760506e+00, -7.29760506e+00,
-5.64239272e+00, -5.64239272e+00, -5.64239272e+00, -5.64239272e+00,
-4.13310877e+00, -4.13310877e+00, -4.13310877e+00, -4.13310877e+00,
-2.82532524e+00, -2.82532524e+00, -2.82532524e+00, -2.82532524e+00,
-1.78143548e+00, -1.78143548e+00, -1.78143548e+00, -1.78143548e+00,
-1.02528008e+00, -1.02528008e+00, -1.02528008e+00, -1.02528008e+00,
-5.79884468e-01, -5.79884468e-01, -5.79884468e-01, -5.79884468e-01,
-3.29472357e-01, -3.29472357e-01, -3.29472357e-01, -3.29472357e-01,
-2.63387045e-01, -2.63387045e-01, -2.63387045e-01, -2.63387045e-01,
-2.20777631e-01, -2.20777631e-01, -2.20777631e-01, -2.20777631e-01,
-1.94945989e-01, -1.94945989e-01, -1.94945989e-01, -1.94945989e-01,
-1.44701458e-01, -1.44701458e-01, -1.44701458e-01, -1.44701458e-01,
6.34160686e-03, 6.34160686e-03, 6.34160686e-03, 6.34160686e-03,
2.19027902e-01, 2.19027902e-01, 2.19027902e-01, 2.19027902e-01,
3.42281353e-01, 3.42281353e-01, 3.42281353e-01, 3.42281353e-01,
3.69210178e-01, 3.69210178e-01, 3.69210178e-01, 3.69210178e-01,
3.25110505e-01, 3.25110505e-01, 3.25110505e-01, 3.25110505e-01,
1.89137060e-01, 1.89137060e-01, 1.89137060e-01, 1.89137060e-01,
1.05454908e-01, 1.05454908e-01, 1.05454908e-01, 1.05454908e-01,
-1.89313025e+00, -1.89313025e+00, -1.89313025e+00, -1.89313025e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999964e+02, 9.99999964e+02, 9.99999964e+02, 9.99999964e+02,
9.99999858e+02, 9.99999858e+02, 9.99999858e+02, 9.99999858e+02,
9.99999466e+02, 9.99999466e+02, 9.99999466e+02, 9.99999466e+02,
9.99998093e+02, 9.99998093e+02, 9.99998093e+02, 9.99998093e+02,
9.99993556e+02, 9.99993556e+02, 9.99993556e+02, 9.99993556e+02,
9.99979438e+02, 9.99979438e+02, 9.99979438e+02, 9.99979438e+02,
9.99938111e+02, 9.99938111e+02, 9.99938111e+02, 9.99938111e+02,
9.99824646e+02, 9.99824646e+02, 9.99824646e+02, 9.99824646e+02,
9.99533300e+02, 9.99533300e+02, 9.99533300e+02, 9.99533300e+02,
9.98836134e+02, 9.98836134e+02, 9.98836134e+02, 9.98836134e+02,
9.97287686e+02, 9.97287686e+02, 9.97287686e+02, 9.97287686e+02,
9.94109332e+02, 9.94109332e+02, 9.94109332e+02, 9.94109332e+02,
9.88106008e+02, 9.88106008e+02, 9.88106008e+02, 9.88106008e+02,
9.77708597e+02, 9.77708597e+02, 9.77708597e+02, 9.77708597e+02,
9.61228130e+02, 9.61228130e+02, 9.61228130e+02, 9.61228130e+02,
9.37305407e+02, 9.37305407e+02, 9.37305407e+02, 9.37305407e+02,
9.05376194e+02, 9.05376194e+02, 9.05376194e+02, 9.05376194e+02,
8.65887823e+02, 8.65887823e+02, 8.65887823e+02, 8.65887823e+02,
8.20109819e+02, 8.20109819e+02, 8.20109819e+02, 8.20109819e+02,
7.69583036e+02, 7.69583036e+02, 7.69583036e+02, 7.69583036e+02,
7.16430551e+02, 7.16430551e+02, 7.16430551e+02, 7.16430551e+02,
6.66223949e+02, 6.66223949e+02, 6.66223949e+02, 6.66223949e+02,
6.21173301e+02, 6.21173301e+02, 6.21173301e+02, 6.21173301e+02,
5.81155829e+02, 5.81155829e+02, 5.81155829e+02, 5.81155829e+02,
5.46599575e+02, 5.46599575e+02, 5.46599575e+02, 5.46599575e+02,
5.18131035e+02, 5.18131035e+02, 5.18131035e+02, 5.18131035e+02,
4.96195244e+02, 4.96195244e+02, 4.96195244e+02, 4.96195244e+02,
4.81181444e+02, 4.81181444e+02, 4.81181444e+02, 4.81181444e+02,
4.71808248e+02, 4.71808248e+02, 4.71808248e+02, 4.71808248e+02,
4.67742557e+02, 4.67742557e+02, 4.67742557e+02, 4.67742557e+02,
4.65569109e+02, 4.65569109e+02, 4.65569109e+02, 4.65569109e+02,
4.65186953e+02, 4.65186953e+02, 4.65186953e+02, 4.65186953e+02,
4.64818182e+02, 4.64818182e+02, 4.64818182e+02, 4.64818182e+02,
4.63748697e+02, 4.63748697e+02, 4.63748697e+02, 4.63748697e+02,
4.60625400e+02, 4.60625400e+02, 4.60625400e+02, 4.60625400e+02,
4.56453004e+02, 4.56453004e+02, 4.56453004e+02, 4.56453004e+02,
4.54485814e+02, 4.54485814e+02, 4.54485814e+02, 4.54485814e+02,
4.54025030e+02, 4.54025030e+02, 4.54025030e+02, 4.54025030e+02,
4.54666768e+02, 4.54666768e+02, 4.54666768e+02, 4.54666768e+02,
4.57364563e+02, 4.57364563e+02, 4.57364563e+02, 4.57364563e+02,
4.63513392e+02, 4.63513392e+02, 4.63513392e+02, 4.63513392e+02,
3.92058603e+02, 3.92058603e+02, 3.92058603e+02, 3.92058603e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999985, 0.99999985,
0.99999985, 0.99999985, 0.99999944, 0.99999944, 0.99999944,
0.99999944, 0.99999808, 0.99999808, 0.99999808, 0.99999808,
0.99999374, 0.99999374, 0.99999374, 0.99999374, 0.99998068,
0.99998068, 0.99998068, 0.99998068, 0.99994372, 0.99994372,
0.99994372, 0.99994372, 0.99984542, 0.99984542, 0.99984542,
0.99984542, 0.99960058, 0.99960058, 0.99960058, 0.99960058,
0.99903135, 0.99903135, 0.99903135, 0.99903135, 0.99780084,
0.99780084, 0.99780084, 0.99780084, 0.99533744, 0.99533744,
0.99533744, 0.99533744, 0.99078751, 0.99078751, 0.99078751,
0.99078751, 0.98305618, 0.98305618, 0.98305618, 0.98305618,
0.97098376, 0.97098376, 0.97098376, 0.97098376, 0.9536365 ,
0.9536365 , 0.9536365 , 0.9536365 , 0.93059345, 0.93059345,
0.93059345, 0.93059345, 0.90207179, 0.90207179, 0.90207179,
0.90207179, 0.86880396, 0.86880396, 0.86880396, 0.86880396,
0.83171985, 0.83171985, 0.83171985, 0.83171985, 0.79203515,
0.79203515, 0.79203515, 0.79203515, 0.7533453 , 0.7533453 ,
0.7533453 , 0.7533453 , 0.71768018, 0.71768018, 0.71768018,
0.71768018, 0.6850616 , 0.6850616 , 0.6850616 , 0.6850616 ,
0.65597209, 0.65597209, 0.65597209, 0.65597209, 0.63103729,
0.63103729, 0.63103729, 0.63103729, 0.61099977, 0.61099977,
0.61099977, 0.61099977, 0.59617655, 0.59617655, 0.59617655,
0.59617655, 0.58676144, 0.58676144, 0.58676144, 0.58676144,
0.58122289, 0.58122289, 0.58122289, 0.58122289, 0.57914956,
0.57914956, 0.57914956, 0.57914956, 0.57788872, 0.57788872,
0.57788872, 0.57788872, 0.57727667, 0.57727667, 0.57727667,
0.57727667, 0.57646173, 0.57646173, 0.57646173, 0.57646173,
0.57419256, 0.57419256, 0.57419256, 0.57419256, 0.56967625,
0.56967625, 0.56967625, 0.56967625, 0.56515937, 0.56515937,
0.56515937, 0.56515937, 0.56171673, 0.56171673, 0.56171673,
0.56171673, 0.56096013, 0.56096013, 0.56096013, 0.56096013,
0.57428334, 0.57428334, 0.57428334, 0.57428334, 0.7451832 ,
0.7451832 , 0.7451832 , 0.7451832 , 4.92344734, 4.92344734,
4.92344734, 4.92344734, 5.54443902, 5.54443902, 5.54443902,
5.54443902, 1.03668904, 1.03668904, 1.03668904, 1.03668904,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744991, -19.59744991, -19.59744991, -19.59744991,
-19.59744962, -19.59744962, -19.59744962, -19.59744962,
-19.59744849, -19.59744849, -19.59744849, -19.59744849,
-19.59744424, -19.59744424, -19.59744424, -19.59744424,
-19.5974291 , -19.5974291 , -19.5974291 , -19.5974291 ,
-19.59737809, -19.59737809, -19.59737809, -19.59737809,
-19.59721561, -19.59721561, -19.59721561, -19.59721561,
-19.59672713, -19.59672713, -19.59672713, -19.59672713,
-19.59534416, -19.59534416, -19.59534416, -19.59534416,
-19.59166604, -19.59166604, -19.59166604, -19.59166604,
-19.58250357, -19.58250357, -19.58250357, -19.58250357,
-19.56119668, -19.56119668, -19.56119668, -19.56119668,
-19.51511105, -19.51511105, -19.51511105, -19.51511105,
-19.42273472, -19.42273472, -19.42273472, -19.42273472,
-19.251683 , -19.251683 , -19.251683 , -19.251683 ,
-18.95967279, -18.95967279, -18.95967279, -18.95967279,
-18.50011506, -18.50011506, -18.50011506, -18.50011506,
-17.83172671, -17.83172671, -17.83172671, -17.83172671,
-16.92849548, -16.92849548, -16.92849548, -16.92849548,
-15.78491275, -15.78491275, -15.78491275, -15.78491275,
-14.41313248, -14.41313248, -14.41313248, -14.41313248,
-12.83150634, -12.83150634, -12.83150634, -12.83150634,
-11.07369836, -11.07369836, -11.07369836, -11.07369836,
-9.31046166, -9.31046166, -9.31046166, -9.31046166,
-7.60499608, -7.60499608, -7.60499608, -7.60499608,
-5.98738913, -5.98738913, -5.98738913, -5.98738913,
-4.49180344, -4.49180344, -4.49180344, -4.49180344,
-3.16917603, -3.16917603, -3.16917603, -3.16917603,
-2.07337458, -2.07337458, -2.07337458, -2.07337458,
-1.25572681, -1.25572681, -1.25572681, -1.25572681,
-0.7068368 , -0.7068368 , -0.7068368 , -0.7068368 ,
-0.42441014, -0.42441014, -0.42441014, -0.42441014,
-0.27338143, -0.27338143, -0.27338143, -0.27338143,
-0.23810574, -0.23810574, -0.23810574, -0.23810574,
-0.20742784, -0.20742784, -0.20742784, -0.20742784,
-0.16323872, -0.16323872, -0.16323872, -0.16323872,
-0.05173445, -0.05173445, -0.05173445, -0.05173445,
0.15602623, 0.15602623, 0.15602623, 0.15602623,
0.29414628, 0.29414628, 0.29414628, 0.29414628,
0.34985691, 0.34985691, 0.34985691, 0.34985691,
0.34552838, 0.34552838, 0.34552838, 0.34552838,
0.24827772, 0.24827772, 0.24827772, 0.24827772,
0.09253274, 0.09253274, 0.09253274, 0.09253274,
0.04840488, 0.04840488, 0.04840488, 0.04840488,
-1.4699531 , -1.4699531 , -1.4699531 , -1.4699531 ,
-18.88215158, -18.88215158, -18.88215158, -18.88215158,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999986e+02, 9.99999986e+02, 9.99999986e+02, 9.99999986e+02,
9.99999944e+02, 9.99999944e+02, 9.99999944e+02, 9.99999944e+02,
9.99999784e+02, 9.99999784e+02, 9.99999784e+02, 9.99999784e+02,
9.99999218e+02, 9.99999218e+02, 9.99999218e+02, 9.99999218e+02,
9.99997309e+02, 9.99997309e+02, 9.99997309e+02, 9.99997309e+02,
9.99991230e+02, 9.99991230e+02, 9.99991230e+02, 9.99991230e+02,
9.99972953e+02, 9.99972953e+02, 9.99972953e+02, 9.99972953e+02,
9.99921209e+02, 9.99921209e+02, 9.99921209e+02, 9.99921209e+02,
9.99783604e+02, 9.99783604e+02, 9.99783604e+02, 9.99783604e+02,
9.99440890e+02, 9.99440890e+02, 9.99440890e+02, 9.99440890e+02,
9.98644316e+02, 9.98644316e+02, 9.98644316e+02, 9.98644316e+02,
9.96923244e+02, 9.96923244e+02, 9.96923244e+02, 9.96923244e+02,
9.93481167e+02, 9.93481167e+02, 9.93481167e+02, 9.93481167e+02,
9.87134721e+02, 9.87134721e+02, 9.87134721e+02, 9.87134721e+02,
9.76381734e+02, 9.76381734e+02, 9.76381734e+02, 9.76381734e+02,
9.59665158e+02, 9.59665158e+02, 9.59665158e+02, 9.59665158e+02,
9.35796522e+02, 9.35796522e+02, 9.35796522e+02, 9.35796522e+02,
9.04361456e+02, 9.04361456e+02, 9.04361456e+02, 9.04361456e+02,
8.65877146e+02, 8.65877146e+02, 8.65877146e+02, 8.65877146e+02,
8.21587440e+02, 8.21587440e+02, 8.21587440e+02, 8.21587440e+02,
7.72959478e+02, 7.72959478e+02, 7.72959478e+02, 7.72959478e+02,
7.21780593e+02, 7.21780593e+02, 7.21780593e+02, 7.21780593e+02,
6.72972279e+02, 6.72972279e+02, 6.72972279e+02, 6.72972279e+02,
6.28869375e+02, 6.28869375e+02, 6.28869375e+02, 6.28869375e+02,
5.89301495e+02, 5.89301495e+02, 5.89301495e+02, 5.89301495e+02,
5.54659058e+02, 5.54659058e+02, 5.54659058e+02, 5.54659058e+02,
5.25470740e+02, 5.25470740e+02, 5.25470740e+02, 5.25470740e+02,
5.02361432e+02, 5.02361432e+02, 5.02361432e+02, 5.02361432e+02,
4.85480560e+02, 4.85480560e+02, 4.85480560e+02, 4.85480560e+02,
4.74893544e+02, 4.74893544e+02, 4.74893544e+02, 4.74893544e+02,
4.68756735e+02, 4.68756735e+02, 4.68756735e+02, 4.68756735e+02,
4.66559010e+02, 4.66559010e+02, 4.66559010e+02, 4.66559010e+02,
4.65288869e+02, 4.65288869e+02, 4.65288869e+02, 4.65288869e+02,
4.64772037e+02, 4.64772037e+02, 4.64772037e+02, 4.64772037e+02,
4.64098592e+02, 4.64098592e+02, 4.64098592e+02, 4.64098592e+02,
4.62022815e+02, 4.62022815e+02, 4.62022815e+02, 4.62022815e+02,
4.57930558e+02, 4.57930558e+02, 4.57930558e+02, 4.57930558e+02,
4.54992894e+02, 4.54992894e+02, 4.54992894e+02, 4.54992894e+02,
4.54194262e+02, 4.54194262e+02, 4.54194262e+02, 4.54194262e+02,
4.54422763e+02, 4.54422763e+02, 4.54422763e+02, 4.54422763e+02,
4.56256877e+02, 4.56256877e+02, 4.56256877e+02, 4.56256877e+02,
4.59141920e+02, 4.59141920e+02, 4.59141920e+02, 4.59141920e+02,
4.65891529e+02, 4.65891529e+02, 4.65891529e+02, 4.65891529e+02,
4.18365297e+02, 4.18365297e+02, 4.18365297e+02, 4.18365297e+02,
5.12475122e+00, 5.12475122e+00, 5.12475122e+00, 5.12475122e+00,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999994, 0.99999994, 0.99999994, 0.99999994, 0.99999977,
0.99999977, 0.99999977, 0.99999977, 0.9999992 , 0.9999992 ,
0.9999992 , 0.9999992 , 0.99999735, 0.99999735, 0.99999735,
0.99999735, 0.99999164, 0.99999164, 0.99999164, 0.99999164,
0.99997502, 0.99997502, 0.99997502, 0.99997502, 0.99992943,
0.99992943, 0.99992943, 0.99992943, 0.99981174, 0.99981174,
0.99981174, 0.99981174, 0.99952686, 0.99952686, 0.99952686,
0.99952686, 0.99888237, 0.99888237, 0.99888237, 0.99888237,
0.99752477, 0.99752477, 0.99752477, 0.99752477, 0.99487232,
0.99487232, 0.99487232, 0.99487232, 0.99008261, 0.99008261,
0.99008261, 0.99008261, 0.98210912, 0.98210912, 0.98210912,
0.98210912, 0.96988221, 0.96988221, 0.96988221, 0.96988221,
0.95258192, 0.95258192, 0.95258192, 0.95258192, 0.92988797,
0.92988797, 0.92988797, 0.92988797, 0.90206987, 0.90206987,
0.90206987, 0.90206987, 0.8698544 , 0.8698544 , 0.8698544 ,
0.8698544 , 0.83413065, 0.83413065, 0.83413065, 0.83413065,
0.79594485, 0.79594485, 0.79594485, 0.79594485, 0.75844031,
0.75844031, 0.75844031, 0.75844031, 0.72364822, 0.72364822,
0.72364822, 0.72364822, 0.69158842, 0.69158842, 0.69158842,
0.69158842, 0.66264934, 0.66264934, 0.66264934, 0.66264934,
0.63741371, 0.63741371, 0.63741371, 0.63741371, 0.61652579,
0.61652579, 0.61652579, 0.61652579, 0.60060459, 0.60060459,
0.60060459, 0.60060459, 0.58955963, 0.58955963, 0.58955963,
0.58955963, 0.58323093, 0.58323093, 0.58323093, 0.58323093,
0.57971575, 0.57971575, 0.57971575, 0.57971575, 0.57853261,
0.57853261, 0.57853261, 0.57853261, 0.5776235 , 0.5776235 ,
0.5776235 , 0.5776235 , 0.57679716, 0.57679716, 0.57679716,
0.57679716, 0.57528483, 0.57528483, 0.57528483, 0.57528483,
0.57185478, 0.57185478, 0.57185478, 0.57185478, 0.56806429,
0.56806429, 0.56806429, 0.56806429, 0.56470465, 0.56470465,
0.56470465, 0.56470465, 0.56183268, 0.56183268, 0.56183268,
0.56183268, 0.56175025, 0.56175025, 0.56175025, 0.56175025,
0.5759848 , 0.5759848 , 0.5759848 , 0.5759848 , 0.74891143,
0.74891143, 0.74891143, 0.74891143, 4.93884917, 4.93884917,
4.93884917, 4.93884917, 5.66590098, 5.66590098, 5.66590098,
5.66590098, 1.27347817, 1.27347817, 1.27347817, 1.27347817,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974494e+01, -1.95974494e+01, -1.95974494e+01, -1.95974494e+01,
-1.95974477e+01, -1.95974477e+01, -1.95974477e+01, -1.95974477e+01,
-1.95974415e+01, -1.95974415e+01, -1.95974415e+01, -1.95974415e+01,
-1.95974201e+01, -1.95974201e+01, -1.95974201e+01, -1.95974201e+01,
-1.95973508e+01, -1.95973508e+01, -1.95973508e+01, -1.95973508e+01,
-1.95971372e+01, -1.95971372e+01, -1.95971372e+01, -1.95971372e+01,
-1.95965155e+01, -1.95965155e+01, -1.95965155e+01, -1.95965155e+01,
-1.95948095e+01, -1.95948095e+01, -1.95948095e+01, -1.95948095e+01,
-1.95904057e+01, -1.95904057e+01, -1.95904057e+01, -1.95904057e+01,
-1.95797446e+01, -1.95797446e+01, -1.95797446e+01, -1.95797446e+01,
-1.95556189e+01, -1.95556189e+01, -1.95556189e+01, -1.95556189e+01,
-1.95047656e+01, -1.95047656e+01, -1.95047656e+01, -1.95047656e+01,
-1.94052717e+01, -1.94052717e+01, -1.94052717e+01, -1.94052717e+01,
-1.92251204e+01, -1.92251204e+01, -1.92251204e+01, -1.92251204e+01,
-1.89237547e+01, -1.89237547e+01, -1.89237547e+01, -1.89237547e+01,
-1.84578960e+01, -1.84578960e+01, -1.84578960e+01, -1.84578960e+01,
-1.77906570e+01, -1.77906570e+01, -1.77906570e+01, -1.77906570e+01,
-1.69003509e+01, -1.69003509e+01, -1.69003509e+01, -1.69003509e+01,
-1.57845359e+01, -1.57845359e+01, -1.57845359e+01, -1.57845359e+01,
-1.44567240e+01, -1.44567240e+01, -1.44567240e+01, -1.44567240e+01,
-1.29357405e+01, -1.29357405e+01, -1.29357405e+01, -1.29357405e+01,
-1.12493994e+01, -1.12493994e+01, -1.12493994e+01, -1.12493994e+01,
-9.54671305e+00, -9.54671305e+00, -9.54671305e+00, -9.54671305e+00,
-7.89350141e+00, -7.89350141e+00, -7.89350141e+00, -7.89350141e+00,
-6.31429754e+00, -6.31429754e+00, -6.31429754e+00, -6.31429754e+00,
-4.83839512e+00, -4.83839512e+00, -4.83839512e+00, -4.83839512e+00,
-3.50859895e+00, -3.50859895e+00, -3.50859895e+00, -3.50859895e+00,
-2.37834278e+00, -2.37834278e+00, -2.37834278e+00, -2.37834278e+00,
-1.49153448e+00, -1.49153448e+00, -1.49153448e+00, -1.49153448e+00,
-8.81150155e-01, -8.81150155e-01, -8.81150155e-01, -8.81150155e-01,
-5.03007927e-01, -5.03007927e-01, -5.03007927e-01, -5.03007927e-01,
-3.35564422e-01, -3.35564422e-01, -3.35564422e-01, -3.35564422e-01,
-2.44374177e-01, -2.44374177e-01, -2.44374177e-01, -2.44374177e-01,
-2.13624834e-01, -2.13624834e-01, -2.13624834e-01, -2.13624834e-01,
-1.79605715e-01, -1.79605715e-01, -1.79605715e-01, -1.79605715e-01,
-1.01292744e-01, -1.01292744e-01, -1.01292744e-01, -1.01292744e-01,
8.17207680e-02, 8.17207680e-02, 8.17207680e-02, 8.17207680e-02,
2.58649244e-01, 2.58649244e-01, 2.58649244e-01, 2.58649244e-01,
3.25934462e-01, 3.25934462e-01, 3.25934462e-01, 3.25934462e-01,
3.39498005e-01, 3.39498005e-01, 3.39498005e-01, 3.39498005e-01,
2.91982036e-01, 2.91982036e-01, 2.91982036e-01, 2.91982036e-01,
1.45463974e-01, 1.45463974e-01, 1.45463974e-01, 1.45463974e-01,
1.49557604e-03, 1.49557604e-03, 1.49557604e-03, 1.49557604e-03,
-7.12752738e-03, -7.12752738e-03, -7.12752738e-03, -7.12752738e-03,
-1.14206431e+00, -1.14206431e+00, -1.14206431e+00, -1.14206431e+00,
-1.52900050e+01, -1.52900050e+01, -1.52900050e+01, -1.52900050e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999978e+02, 9.99999978e+02, 9.99999978e+02, 9.99999978e+02,
9.99999913e+02, 9.99999913e+02, 9.99999913e+02, 9.99999913e+02,
9.99999681e+02, 9.99999681e+02, 9.99999681e+02, 9.99999681e+02,
9.99998883e+02, 9.99998883e+02, 9.99998883e+02, 9.99998883e+02,
9.99996287e+02, 9.99996287e+02, 9.99996287e+02, 9.99996287e+02,
9.99988295e+02, 9.99988295e+02, 9.99988295e+02, 9.99988295e+02,
9.99965035e+02, 9.99965035e+02, 9.99965035e+02, 9.99965035e+02,
9.99901205e+02, 9.99901205e+02, 9.99901205e+02, 9.99901205e+02,
9.99736456e+02, 9.99736456e+02, 9.99736456e+02, 9.99736456e+02,
9.99337713e+02, 9.99337713e+02, 9.99337713e+02, 9.99337713e+02,
9.98435876e+02, 9.98435876e+02, 9.98435876e+02, 9.98435876e+02,
9.96537247e+02, 9.96537247e+02, 9.96537247e+02, 9.96537247e+02,
9.92831630e+02, 9.92831630e+02, 9.92831630e+02, 9.92831630e+02,
9.86152355e+02, 9.86152355e+02, 9.86152355e+02, 9.86152355e+02,
9.75066144e+02, 9.75066144e+02, 9.75066144e+02, 9.75066144e+02,
9.58141907e+02, 9.58141907e+02, 9.58141907e+02, 9.58141907e+02,
9.34346468e+02, 9.34346468e+02, 9.34346468e+02, 9.34346468e+02,
9.03395524e+02, 9.03395524e+02, 9.03395524e+02, 9.03395524e+02,
8.65861385e+02, 8.65861385e+02, 8.65861385e+02, 8.65861385e+02,
8.22957333e+02, 8.22957333e+02, 8.22957333e+02, 8.22957333e+02,
7.76073993e+02, 7.76073993e+02, 7.76073993e+02, 7.76073993e+02,
7.26756358e+02, 7.26756358e+02, 7.26756358e+02, 7.26756358e+02,
6.79318181e+02, 6.79318181e+02, 6.79318181e+02, 6.79318181e+02,
6.36159247e+02, 6.36159247e+02, 6.36159247e+02, 6.36159247e+02,
5.97127968e+02, 5.97127968e+02, 5.97127968e+02, 5.97127968e+02,
5.62520663e+02, 5.62520663e+02, 5.62520663e+02, 5.62520663e+02,
5.32846267e+02, 5.32846267e+02, 5.32846267e+02, 5.32846267e+02,
5.08656450e+02, 5.08656450e+02, 5.08656450e+02, 5.08656450e+02,
4.90453284e+02, 4.90453284e+02, 4.90453284e+02, 4.90453284e+02,
4.77962657e+02, 4.77962657e+02, 4.77962657e+02, 4.77962657e+02,
4.70901728e+02, 4.70901728e+02, 4.70901728e+02, 4.70901728e+02,
4.67057305e+02, 4.67057305e+02, 4.67057305e+02, 4.67057305e+02,
4.65864101e+02, 4.65864101e+02, 4.65864101e+02, 4.65864101e+02,
4.64990688e+02, 4.64990688e+02, 4.64990688e+02, 4.64990688e+02,
4.64232471e+02, 4.64232471e+02, 4.64232471e+02, 4.64232471e+02,
4.62773942e+02, 4.62773942e+02, 4.62773942e+02, 4.62773942e+02,
4.59392911e+02, 4.59392911e+02, 4.59392911e+02, 4.59392911e+02,
4.56109899e+02, 4.56109899e+02, 4.56109899e+02, 4.56109899e+02,
4.54464219e+02, 4.54464219e+02, 4.54464219e+02, 4.54464219e+02,
4.54313380e+02, 4.54313380e+02, 4.54313380e+02, 4.54313380e+02,
4.55313392e+02, 4.55313392e+02, 4.55313392e+02, 4.55313392e+02,
4.58230030e+02, 4.58230030e+02, 4.58230030e+02, 4.58230030e+02,
4.60740057e+02, 4.60740057e+02, 4.60740057e+02, 4.60740057e+02,
4.67566587e+02, 4.67566587e+02, 4.67566587e+02, 4.67566587e+02,
4.31360769e+02, 4.31360769e+02, 4.31360769e+02, 4.31360769e+02,
3.42890427e+01, 3.42890427e+01, 3.42890427e+01, 3.42890427e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999967, 0.99999967, 0.99999967, 0.99999967, 0.99999888,
0.99999888, 0.99999888, 0.99999888, 0.99999641, 0.99999641,
0.99999641, 0.99999641, 0.99998904, 0.99998904, 0.99998904,
0.99998904, 0.99996821, 0.99996821, 0.99996821, 0.99996821,
0.99991271, 0.99991271, 0.99991271, 0.99991271, 0.99977342,
0.99977342, 0.99977342, 0.99977342, 0.9994452 , 0.9994452 ,
0.9994452 , 0.9994452 , 0.99872149, 0.99872149, 0.99872149,
0.99872149, 0.99723373, 0.99723373, 0.99723373, 0.99723373,
0.99439289, 0.99439289, 0.99439289, 0.99439289, 0.9893709 ,
0.9893709 , 0.9893709 , 0.9893709 , 0.98117054, 0.98117054,
0.98117054, 0.98117054, 0.96880792, 0.96880792, 0.96880792,
0.96880792, 0.95156679, 0.95156679, 0.95156679, 0.95156679,
0.92921472, 0.92921472, 0.92921472, 0.92921472, 0.90206335,
0.90206335, 0.90206335, 0.90206335, 0.87082942, 0.87082942,
0.87082942, 0.87082942, 0.83635999, 0.83635999, 0.83635999,
0.83635999, 0.79958445, 0.79958445, 0.79958445, 0.79958445,
0.76320845, 0.76320845, 0.76320845, 0.76320845, 0.72928639,
0.72928639, 0.72928639, 0.72928639, 0.69781444, 0.69781444,
0.69781444, 0.69781444, 0.66912302, 0.66912302, 0.66912302,
0.66912302, 0.64370616, 0.64370616, 0.64370616, 0.64370616,
0.6222069 , 0.6222069 , 0.6222069 , 0.6222069 , 0.60517495,
0.60517495, 0.60517495, 0.60517495, 0.59300247, 0.59300247,
0.59300247, 0.59300247, 0.58513219, 0.58513219, 0.58513219,
0.58513219, 0.58110197, 0.58110197, 0.58110197, 0.58110197,
0.57888883, 0.57888883, 0.57888883, 0.57888883, 0.57804355,
0.57804355, 0.57804355, 0.57804355, 0.57721529, 0.57721529,
0.57721529, 0.57721529, 0.57599771, 0.57599771, 0.57599771,
0.57599771, 0.57339499, 0.57339499, 0.57339499, 0.57339499,
0.56977182, 0.56977182, 0.56977182, 0.56977182, 0.56723157,
0.56723157, 0.56723157, 0.56723157, 0.56473558, 0.56473558,
0.56473558, 0.56473558, 0.56229282, 0.56229282, 0.56229282,
0.56229282, 0.56318072, 0.56318072, 0.56318072, 0.56318072,
0.57767617, 0.57767617, 0.57767617, 0.57767617, 0.75745676,
0.75745676, 0.75745676, 0.75745676, 4.94626224, 4.94626224,
4.94626224, 4.94626224, 5.70365604, 5.70365604, 5.70365604,
5.70365604, 1.59603937, 1.59603937, 1.59603937, 1.59603937,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974491e+01, -1.95974491e+01, -1.95974491e+01, -1.95974491e+01,
-1.95974465e+01, -1.95974465e+01, -1.95974465e+01, -1.95974465e+01,
-1.95974377e+01, -1.95974377e+01, -1.95974377e+01, -1.95974377e+01,
-1.95974083e+01, -1.95974083e+01, -1.95974083e+01, -1.95974083e+01,
-1.95973158e+01, -1.95973158e+01, -1.95973158e+01, -1.95973158e+01,
-1.95970397e+01, -1.95970397e+01, -1.95970397e+01, -1.95970397e+01,
-1.95962605e+01, -1.95962605e+01, -1.95962605e+01, -1.95962605e+01,
-1.95941839e+01, -1.95941839e+01, -1.95941839e+01, -1.95941839e+01,
-1.95889717e+01, -1.95889717e+01, -1.95889717e+01, -1.95889717e+01,
-1.95766882e+01, -1.95766882e+01, -1.95766882e+01, -1.95766882e+01,
-1.95495946e+01, -1.95495946e+01, -1.95495946e+01, -1.95495946e+01,
-1.94938567e+01, -1.94938567e+01, -1.94938567e+01, -1.94938567e+01,
-1.93872645e+01, -1.93872645e+01, -1.93872645e+01, -1.93872645e+01,
-1.91982859e+01, -1.91982859e+01, -1.91982859e+01, -1.91982859e+01,
-1.88881287e+01, -1.88881287e+01, -1.88881287e+01, -1.88881287e+01,
-1.84166819e+01, -1.84166819e+01, -1.84166819e+01, -1.84166819e+01,
-1.77510879e+01, -1.77510879e+01, -1.77510879e+01, -1.77510879e+01,
-1.68734808e+01, -1.68734808e+01, -1.68734808e+01, -1.68734808e+01,
-1.57840020e+01, -1.57840020e+01, -1.57840020e+01, -1.57840020e+01,
-1.44971612e+01, -1.44971612e+01, -1.44971612e+01, -1.44971612e+01,
-1.30320182e+01, -1.30320182e+01, -1.30320182e+01, -1.30320182e+01,
-1.14121779e+01, -1.14121779e+01, -1.14121779e+01, -1.14121779e+01,
-9.76721197e+00, -9.76721197e+00, -9.76721197e+00, -9.76721197e+00,
-8.16411172e+00, -8.16411172e+00, -8.16411172e+00, -8.16411172e+00,
-6.62422222e+00, -6.62422222e+00, -6.62422222e+00, -6.62422222e+00,
-5.17120266e+00, -5.17120266e+00, -5.17120266e+00, -5.17120266e+00,
-3.84277734e+00, -3.84277734e+00, -3.84277734e+00, -3.84277734e+00,
-2.68552665e+00, -2.68552665e+00, -2.68552665e+00, -2.68552665e+00,
-1.74959038e+00, -1.74959038e+00, -1.74959038e+00, -1.74959038e+00,
-1.06046860e+00, -1.06046860e+00, -1.06046860e+00, -1.06046860e+00,
-6.28540492e-01, -6.28540492e-01, -6.28540492e-01, -6.28540492e-01,
-3.80399014e-01, -3.80399014e-01, -3.80399014e-01, -3.80399014e-01,
-2.84130885e-01, -2.84130885e-01, -2.84130885e-01, -2.84130885e-01,
-2.23268367e-01, -2.23268367e-01, -2.23268367e-01, -2.23268367e-01,
-1.84588285e-01, -1.84588285e-01, -1.84588285e-01, -1.84588285e-01,
-1.29141084e-01, -1.29141084e-01, -1.29141084e-01, -1.29141084e-01,
6.83486785e-03, 6.83486785e-03, 6.83486785e-03, 6.83486785e-03,
1.97766665e-01, 1.97766665e-01, 1.97766665e-01, 1.97766665e-01,
3.09999709e-01, 3.09999709e-01, 3.09999709e-01, 3.09999709e-01,
3.31130840e-01, 3.31130840e-01, 3.31130840e-01, 3.31130840e-01,
3.11345179e-01, 3.11345179e-01, 3.11345179e-01, 3.11345179e-01,
2.02708054e-01, 2.02708054e-01, 2.02708054e-01, 2.02708054e-01,
4.65881958e-02, 4.65881958e-02, 4.65881958e-02, 4.65881958e-02,
-7.39224859e-02, -7.39224859e-02, -7.39224859e-02, -7.39224859e-02,
-4.98197741e-02, -4.98197741e-02, -4.98197741e-02, -4.98197741e-02,
-7.95118272e-01, -7.95118272e-01, -7.95118272e-01, -7.95118272e-01,
-1.23208546e+01, -1.23208546e+01, -1.23208546e+01, -1.23208546e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999965e+02, 9.99999965e+02, 9.99999965e+02, 9.99999965e+02,
9.99999870e+02, 9.99999870e+02, 9.99999870e+02, 9.99999870e+02,
9.99999538e+02, 9.99999538e+02, 9.99999538e+02, 9.99999538e+02,
9.99998439e+02, 9.99998439e+02, 9.99998439e+02, 9.99998439e+02,
9.99994977e+02, 9.99994977e+02, 9.99994977e+02, 9.99994977e+02,
9.99984649e+02, 9.99984649e+02, 9.99984649e+02, 9.99984649e+02,
9.99955495e+02, 9.99955495e+02, 9.99955495e+02, 9.99955495e+02,
9.99877798e+02, 9.99877798e+02, 9.99877798e+02, 9.99877798e+02,
9.99682814e+02, 9.99682814e+02, 9.99682814e+02, 9.99682814e+02,
9.99223425e+02, 9.99223425e+02, 9.99223425e+02, 9.99223425e+02,
9.98210796e+02, 9.98210796e+02, 9.98210796e+02, 9.98210796e+02,
9.96130367e+02, 9.96130367e+02, 9.96130367e+02, 9.96130367e+02,
9.92162242e+02, 9.92162242e+02, 9.92162242e+02, 9.92162242e+02,
9.85160792e+02, 9.85160792e+02, 9.85160792e+02, 9.85160792e+02,
9.73762768e+02, 9.73762768e+02, 9.73762768e+02, 9.73762768e+02,
9.56656908e+02, 9.56656908e+02, 9.56656908e+02, 9.56656908e+02,
9.32951170e+02, 9.32951170e+02, 9.32951170e+02, 9.32951170e+02,
9.02474070e+02, 9.02474070e+02, 9.02474070e+02, 9.02474070e+02,
8.65840584e+02, 8.65840584e+02, 8.65840584e+02, 8.65840584e+02,
8.24230005e+02, 8.24230005e+02, 8.24230005e+02, 8.24230005e+02,
7.78960946e+02, 7.78960946e+02, 7.78960946e+02, 7.78960946e+02,
7.31389568e+02, 7.31389568e+02, 7.31389568e+02, 7.31389568e+02,
6.85282099e+02, 6.85282099e+02, 6.85282099e+02, 6.85282099e+02,
6.43071666e+02, 6.43071666e+02, 6.43071666e+02, 6.43071666e+02,
6.04622306e+02, 6.04622306e+02, 6.04622306e+02, 6.04622306e+02,
5.70179058e+02, 5.70179058e+02, 5.70179058e+02, 5.70179058e+02,
5.40165336e+02, 5.40165336e+02, 5.40165336e+02, 5.40165336e+02,
5.15159492e+02, 5.15159492e+02, 5.15159492e+02, 5.15159492e+02,
4.95611984e+02, 4.95611984e+02, 4.95611984e+02, 4.95611984e+02,
4.81794631e+02, 4.81794631e+02, 4.81794631e+02, 4.81794631e+02,
4.72949862e+02, 4.72949862e+02, 4.72949862e+02, 4.72949862e+02,
4.68498842e+02, 4.68498842e+02, 4.68498842e+02, 4.68498842e+02,
4.66125758e+02, 4.66125758e+02, 4.66125758e+02, 4.66125758e+02,
4.65313538e+02, 4.65313538e+02, 4.65313538e+02, 4.65313538e+02,
4.64531340e+02, 4.64531340e+02, 4.64531340e+02, 4.64531340e+02,
4.63332769e+02, 4.63332769e+02, 4.63332769e+02, 4.63332769e+02,
4.60648627e+02, 4.60648627e+02, 4.60648627e+02, 4.60648627e+02,
4.57050259e+02, 4.57050259e+02, 4.57050259e+02, 4.57050259e+02,
4.55164938e+02, 4.55164938e+02, 4.55164938e+02, 4.55164938e+02,
4.54482635e+02, 4.54482635e+02, 4.54482635e+02, 4.54482635e+02,
4.54824233e+02, 4.54824233e+02, 4.54824233e+02, 4.54824233e+02,
4.56931029e+02, 4.56931029e+02, 4.56931029e+02, 4.56931029e+02,
4.60138981e+02, 4.60138981e+02, 4.60138981e+02, 4.60138981e+02,
4.61981491e+02, 4.61981491e+02, 4.61981491e+02, 4.61981491e+02,
4.68140685e+02, 4.68140685e+02, 4.68140685e+02, 4.68140685e+02,
4.36428727e+02, 4.36428727e+02, 4.36428727e+02, 4.36428727e+02,
6.81746616e+01, 6.81746616e+01, 6.81746616e+01, 6.81746616e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999996, 0.99999996,
0.99999996, 0.99999996, 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999953, 0.99999953, 0.99999953, 0.99999953,
0.99999847, 0.99999847, 0.99999847, 0.99999847, 0.99999523,
0.99999523, 0.99999523, 0.99999523, 0.99998585, 0.99998585,
0.99998585, 0.99998585, 0.9999601 , 0.9999601 , 0.9999601 ,
0.9999601 , 0.99989335, 0.99989335, 0.99989335, 0.99989335,
0.9997302 , 0.9997302 , 0.9997302 , 0.9997302 , 0.99935538,
0.99935538, 0.99935538, 0.99935538, 0.99854873, 0.99854873,
0.99854873, 0.99854873, 0.99692822, 0.99692822, 0.99692822,
0.99692822, 0.99390018, 0.99390018, 0.99390018, 0.99390018,
0.98865363, 0.98865363, 0.98865363, 0.98865363, 0.98024099,
0.98024099, 0.98024099, 0.98024099, 0.96775988, 0.96775988,
0.96775988, 0.96775988, 0.95058848, 0.95058848, 0.95058848,
0.95058848, 0.92857093, 0.92857093, 0.92857093, 0.92857093,
0.90205249, 0.90205249, 0.90205249, 0.90205249, 0.87173692,
0.87173692, 0.87173692, 0.87173692, 0.83843181, 0.83843181,
0.83843181, 0.83843181, 0.80297224, 0.80297224, 0.80297224,
0.80297224, 0.76768315, 0.76768315, 0.76768315, 0.76768315,
0.73460513, 0.73460513, 0.73460513, 0.73460513, 0.70375228,
0.70375228, 0.70375228, 0.70375228, 0.67537121, 0.67537121,
0.67537121, 0.67537121, 0.64990447, 0.64990447, 0.64990447,
0.64990447, 0.6279201 , 0.6279201 , 0.6279201 , 0.6279201 ,
0.61003833, 0.61003833, 0.61003833, 0.61003833, 0.59659904,
0.59659904, 0.59659904, 0.59659904, 0.58769343, 0.58769343,
0.58769343, 0.58769343, 0.58232612, 0.58232612, 0.58232612,
0.58232612, 0.5798438 , 0.5798438 , 0.5798438 , 0.5798438 ,
0.57836002, 0.57836002, 0.57836002, 0.57836002, 0.5775144 ,
0.5775144 , 0.5775144 , 0.5775144 , 0.57654461, 0.57654461,
0.57654461, 0.57654461, 0.57463809, 0.57463809, 0.57463809,
0.57463809, 0.5712413 , 0.5712413 , 0.5712413 , 0.5712413 ,
0.56852502, 0.56852502, 0.56852502, 0.56852502, 0.56695785,
0.56695785, 0.56695785, 0.56695785, 0.56500277, 0.56500277,
0.56500277, 0.56500277, 0.56330734, 0.56330734, 0.56330734,
0.56330734, 0.56495911, 0.56495911, 0.56495911, 0.56495911,
0.57910712, 0.57910712, 0.57910712, 0.57910712, 0.76822579,
0.76822579, 0.76822579, 0.76822579, 4.94398567, 4.94398567,
4.94398567, 4.94398567, 5.69120284, 5.69120284, 5.69120284,
5.69120284, 1.97538859, 1.97538859, 1.97538859, 1.97538859,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744991, -19.59744991, -19.59744991, -19.59744991,
-19.59744963, -19.59744963, -19.59744963, -19.59744963,
-19.59744859, -19.59744859, -19.59744859, -19.59744859,
-19.59744492, -19.59744492, -19.59744492, -19.59744492,
-19.59743255, -19.59743255, -19.59743255, -19.59743255,
-19.59739282, -19.59739282, -19.59739282, -19.59739282,
-19.59727157, -19.59727157, -19.59727157, -19.59727157,
-19.59692039, -19.59692039, -19.59692039, -19.59692039,
-19.59595704, -19.59595704, -19.59595704, -19.59595704,
-19.59345932, -19.59345932, -19.59345932, -19.59345932,
-19.58735413, -19.58735413, -19.58735413, -19.58735413,
-19.57332626, -19.57332626, -19.57332626, -19.57332626,
-19.54312485, -19.54312485, -19.54312485, -19.54312485,
-19.48240267, -19.48240267, -19.48240267, -19.48240267,
-19.3687515 , -19.3687515 , -19.3687515 , -19.3687515 ,
-19.17122488, -19.17122488, -19.17122488, -19.17122488,
-18.85281695, -18.85281695, -18.85281695, -18.85281695,
-18.37643738, -18.37643738, -18.37643738, -18.37643738,
-17.71292094, -17.71292094, -17.71292094, -17.71292094,
-16.84777683, -16.84777683, -16.84777683, -16.84777683,
-15.78331816, -15.78331816, -15.78331816, -15.78331816,
-14.5347797 , -14.5347797 , -14.5347797 , -14.5347797 ,
-13.12131832, -13.12131832, -13.12131832, -13.12131832,
-11.56320641, -11.56320641, -11.56320641, -11.56320641,
-9.973158 , -9.973158 , -9.973158 , -9.973158 ,
-8.41839728, -8.41839728, -8.41839728, -8.41839728,
-6.91752776, -6.91752776, -6.91752776, -6.91752776,
-5.4904841 , -5.4904841 , -5.4904841 , -5.4904841 ,
-4.16868979, -4.16868979, -4.16868979, -4.16868979,
-2.99503252, -2.99503252, -2.99503252, -2.99503252,
-2.01492746, -2.01492746, -2.01492746, -2.01492746,
-1.26852879, -1.26852879, -1.26852879, -1.26852879,
-0.75659699, -0.75659699, -0.75659699, -0.75659699,
-0.46721793, -0.46721793, -0.46721793, -0.46721793,
-0.30912043, -0.30912043, -0.30912043, -0.30912043,
-0.24875555, -0.24875555, -0.24875555, -0.24875555,
-0.19892335, -0.19892335, -0.19892335, -0.19892335,
-0.14564527, -0.14564527, -0.14564527, -0.14564527,
-0.04528153, -0.04528153, -0.04528153, -0.04528153,
0.13535818, 0.13535818, 0.13535818, 0.13535818,
0.26623507, 0.26623507, 0.26623507, 0.26623507,
0.32428685, 0.32428685, 0.32428685, 0.32428685,
0.32067534, 0.32067534, 0.32067534, 0.32067534,
0.25398083, 0.25398083, 0.25398083, 0.25398083,
0.09430057, 0.09430057, 0.09430057, 0.09430057,
-0.03007264, -0.03007264, -0.03007264, -0.03007264,
-0.11990385, -0.11990385, -0.11990385, -0.11990385,
-0.0709073 , -0.0709073 , -0.0709073 , -0.0709073 ,
-0.44599011, -0.44599011, -0.44599011, -0.44599011,
-10.13576154, -10.13576154, -10.13576154, -10.13576154,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999986e+02, 9.99999986e+02, 9.99999986e+02, 9.99999986e+02,
9.99999947e+02, 9.99999947e+02, 9.99999947e+02, 9.99999947e+02,
9.99999810e+02, 9.99999810e+02, 9.99999810e+02, 9.99999810e+02,
9.99999347e+02, 9.99999347e+02, 9.99999347e+02, 9.99999347e+02,
9.99997861e+02, 9.99997861e+02, 9.99997861e+02, 9.99997861e+02,
9.99993324e+02, 9.99993324e+02, 9.99993324e+02, 9.99993324e+02,
9.99980184e+02, 9.99980184e+02, 9.99980184e+02, 9.99980184e+02,
9.99944140e+02, 9.99944140e+02, 9.99944140e+02, 9.99944140e+02,
9.99850692e+02, 9.99850692e+02, 9.99850692e+02, 9.99850692e+02,
9.99622309e+02, 9.99622309e+02, 9.99622309e+02, 9.99622309e+02,
9.99097723e+02, 9.99097723e+02, 9.99097723e+02, 9.99097723e+02,
9.97969118e+02, 9.97969118e+02, 9.97969118e+02, 9.97969118e+02,
9.95703309e+02, 9.95703309e+02, 9.95703309e+02, 9.95703309e+02,
9.91474458e+02, 9.91474458e+02, 9.91474458e+02, 9.91474458e+02,
9.84161735e+02, 9.84161735e+02, 9.84161735e+02, 9.84161735e+02,
9.72472374e+02, 9.72472374e+02, 9.72472374e+02, 9.72472374e+02,
9.55208747e+02, 9.55208747e+02, 9.55208747e+02, 9.55208747e+02,
9.31606965e+02, 9.31606965e+02, 9.31606965e+02, 9.31606965e+02,
9.01593286e+02, 9.01593286e+02, 9.01593286e+02, 9.01593286e+02,
8.65814973e+02, 8.65814973e+02, 8.65814973e+02, 8.65814973e+02,
8.25415615e+02, 8.25415615e+02, 8.25415615e+02, 8.25415615e+02,
7.81647504e+02, 7.81647504e+02, 7.81647504e+02, 7.81647504e+02,
7.35710520e+02, 7.35710520e+02, 7.35710520e+02, 7.35710520e+02,
6.90890172e+02, 6.90890172e+02, 6.90890172e+02, 6.90890172e+02,
6.49620359e+02, 6.49620359e+02, 6.49620359e+02, 6.49620359e+02,
6.11797773e+02, 6.11797773e+02, 6.11797773e+02, 6.11797773e+02,
5.77600780e+02, 5.77600780e+02, 5.77600780e+02, 5.77600780e+02,
5.47410199e+02, 5.47410199e+02, 5.47410199e+02, 5.47410199e+02,
5.21734770e+02, 5.21734770e+02, 5.21734770e+02, 5.21734770e+02,
5.01128594e+02, 5.01128594e+02, 5.01128594e+02, 5.01128594e+02,
4.85819157e+02, 4.85819157e+02, 4.85819157e+02, 4.85819157e+02,
4.75772518e+02, 4.75772518e+02, 4.75772518e+02, 4.75772518e+02,
4.69779973e+02, 4.69779973e+02, 4.69779973e+02, 4.69779973e+02,
4.67080362e+02, 4.67080362e+02, 4.67080362e+02, 4.67080362e+02,
4.65530456e+02, 4.65530456e+02, 4.65530456e+02, 4.65530456e+02,
4.64717921e+02, 4.64717921e+02, 4.64717921e+02, 4.64717921e+02,
4.63776491e+02, 4.63776491e+02, 4.63776491e+02, 4.63776491e+02,
4.61803434e+02, 4.61803434e+02, 4.61803434e+02, 4.61803434e+02,
4.58228685e+02, 4.58228685e+02, 4.58228685e+02, 4.58228685e+02,
4.55647155e+02, 4.55647155e+02, 4.55647155e+02, 4.55647155e+02,
4.54848420e+02, 4.54848420e+02, 4.54848420e+02, 4.54848420e+02,
4.54769138e+02, 4.54769138e+02, 4.54769138e+02, 4.54769138e+02,
4.55961825e+02, 4.55961825e+02, 4.55961825e+02, 4.55961825e+02,
4.58949241e+02, 4.58949241e+02, 4.58949241e+02, 4.58949241e+02,
4.61614848e+02, 4.61614848e+02, 4.61614848e+02, 4.61614848e+02,
4.62795907e+02, 4.62795907e+02, 4.62795907e+02, 4.62795907e+02,
4.67523312e+02, 4.67523312e+02, 4.67523312e+02, 4.67523312e+02,
4.35653571e+02, 4.35653571e+02, 4.35653571e+02, 4.35653571e+02,
1.05168891e+02, 1.05168891e+02, 1.05168891e+02, 1.05168891e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999981, 0.99999981,
0.99999981, 0.99999981, 0.99999935, 0.99999935, 0.99999935,
0.99999935, 0.99999794, 0.99999794, 0.99999794, 0.99999794,
0.99999376, 0.99999376, 0.99999376, 0.99999376, 0.99998199,
0.99998199, 0.99998199, 0.99998199, 0.99995055, 0.99995055,
0.99995055, 0.99995055, 0.99987113, 0.99987113, 0.99987113,
0.99987113, 0.99968182, 0.99968182, 0.99968182, 0.99968182,
0.99925722, 0.99925722, 0.99925722, 0.99925722, 0.99836415,
0.99836415, 0.99836415, 0.99836415, 0.99660874, 0.99660874,
0.99660874, 0.99660874, 0.9933952 , 0.9933952 , 0.9933952 ,
0.9933952 , 0.98793188, 0.98793188, 0.98793188, 0.98793188,
0.97932093, 0.97932093, 0.97932093, 0.97932093, 0.96673715,
0.96673715, 0.96673715, 0.96673715, 0.94964461, 0.94964461,
0.94964461, 0.94964461, 0.92795422, 0.92795422, 0.92795422,
0.92795422, 0.90203767, 0.90203767, 0.90203767, 0.90203767,
0.87258376, 0.87258376, 0.87258376, 0.87258376, 0.84036293,
0.84036293, 0.84036293, 0.84036293, 0.80613056, 0.80613056,
0.80613056, 0.80613056, 0.77188664, 0.77188664, 0.77188664,
0.77188664, 0.73963167, 0.73963167, 0.73963167, 0.73963167,
0.70940128, 0.70940128, 0.70940128, 0.70940128, 0.68139366,
0.68139366, 0.68139366, 0.68139366, 0.65596808, 0.65596808,
0.65596808, 0.65596808, 0.63365536, 0.63365536, 0.63365536,
0.63365536, 0.61502818, 0.61502818, 0.61502818, 0.61502818,
0.60059309, 0.60059309, 0.60059309, 0.60059309, 0.59038095,
0.59038095, 0.59038095, 0.59038095, 0.58416103, 0.58416103,
0.58416103, 0.58416103, 0.58061715, 0.58061715, 0.58061715,
0.58061715, 0.57903944, 0.57903944, 0.57903944, 0.57903944,
0.57787713, 0.57787713, 0.57787713, 0.57787713, 0.57688412,
0.57688412, 0.57688412, 0.57688412, 0.57544855, 0.57544855,
0.57544855, 0.57544855, 0.57263323, 0.57263323, 0.57263323,
0.57263323, 0.56974145, 0.56974145, 0.56974145, 0.56974145,
0.56797788, 0.56797788, 0.56797788, 0.56797788, 0.56697796,
0.56697796, 0.56697796, 0.56697796, 0.56563572, 0.56563572,
0.56563572, 0.56563572, 0.56494658, 0.56494658, 0.56494658,
0.56494658, 0.56645921, 0.56645921, 0.56645921, 0.56645921,
0.58020504, 0.58020504, 0.58020504, 0.58020504, 0.7785362 ,
0.7785362 , 0.7785362 , 0.7785362 , 4.93202993, 4.93202993,
4.93202993, 4.93202993, 5.66253368, 5.66253368, 5.66253368,
5.66253368, 2.38055149, 2.38055149, 2.38055149, 2.38055149,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974494e+01, -1.95974494e+01, -1.95974494e+01, -1.95974494e+01,
-1.95974479e+01, -1.95974479e+01, -1.95974479e+01, -1.95974479e+01,
-1.95974427e+01, -1.95974427e+01, -1.95974427e+01, -1.95974427e+01,
-1.95974258e+01, -1.95974258e+01, -1.95974258e+01, -1.95974258e+01,
-1.95973730e+01, -1.95973730e+01, -1.95973730e+01, -1.95973730e+01,
-1.95972166e+01, -1.95972166e+01, -1.95972166e+01, -1.95972166e+01,
-1.95967760e+01, -1.95967760e+01, -1.95967760e+01, -1.95967760e+01,
-1.95955997e+01, -1.95955997e+01, -1.95955997e+01, -1.95955997e+01,
-1.95926280e+01, -1.95926280e+01, -1.95926280e+01, -1.95926280e+01,
-1.95855437e+01, -1.95855437e+01, -1.95855437e+01, -1.95855437e+01,
-1.95696517e+01, -1.95696517e+01, -1.95696517e+01, -1.95696517e+01,
-1.95362117e+01, -1.95362117e+01, -1.95362117e+01, -1.95362117e+01,
-1.94704222e+01, -1.94704222e+01, -1.94704222e+01, -1.94704222e+01,
-1.93497692e+01, -1.93497692e+01, -1.93497692e+01, -1.93497692e+01,
-1.91439788e+01, -1.91439788e+01, -1.91439788e+01, -1.91439788e+01,
-1.88178378e+01, -1.88178378e+01, -1.88178378e+01, -1.88178378e+01,
-1.83371287e+01, -1.83371287e+01, -1.83371287e+01, -1.83371287e+01,
-1.76760675e+01, -1.76760675e+01, -1.76760675e+01, -1.76760675e+01,
-1.68231445e+01, -1.68231445e+01, -1.68231445e+01, -1.68231445e+01,
-1.57824961e+01, -1.57824961e+01, -1.57824961e+01, -1.57824961e+01,
-1.45698677e+01, -1.45698677e+01, -1.45698677e+01, -1.45698677e+01,
-1.32043830e+01, -1.32043830e+01, -1.32043830e+01, -1.32043830e+01,
-1.17036224e+01, -1.17036224e+01, -1.17036224e+01, -1.17036224e+01,
-1.01657129e+01, -1.01657129e+01, -1.01657129e+01, -1.01657129e+01,
-8.65745604e+00, -8.65745604e+00, -8.65745604e+00, -8.65745604e+00,
-7.19532725e+00, -7.19532725e+00, -7.19532725e+00, -7.19532725e+00,
-5.79578003e+00, -5.79578003e+00, -5.79578003e+00, -5.79578003e+00,
-4.48580583e+00, -4.48580583e+00, -4.48580583e+00, -4.48580583e+00,
-3.30233895e+00, -3.30233895e+00, -3.30233895e+00, -3.30233895e+00,
-2.28999205e+00, -2.28999205e+00, -2.28999205e+00, -2.28999205e+00,
-1.48665190e+00, -1.48665190e+00, -1.48665190e+00, -1.48665190e+00,
-9.16444051e-01, -9.16444051e-01, -9.16444051e-01, -9.16444051e-01,
-5.53286287e-01, -5.53286287e-01, -5.53286287e-01, -5.53286287e-01,
-3.67878530e-01, -3.67878530e-01, -3.67878530e-01, -3.67878530e-01,
-2.65094265e-01, -2.65094265e-01, -2.65094265e-01, -2.65094265e-01,
-2.15784356e-01, -2.15784356e-01, -2.15784356e-01, -2.15784356e-01,
-1.65192236e-01, -1.65192236e-01, -1.65192236e-01, -1.65192236e-01,
-8.52631416e-02, -8.52631416e-02, -8.52631416e-02, -8.52631416e-02,
7.31961690e-02, 7.31961690e-02, 7.31961690e-02, 7.31961690e-02,
2.28177984e-01, 2.28177984e-01, 2.28177984e-01, 2.28177984e-01,
2.97213404e-01, 2.97213404e-01, 2.97213404e-01, 2.97213404e-01,
3.18155586e-01, 3.18155586e-01, 3.18155586e-01, 3.18155586e-01,
2.86936146e-01, 2.86936146e-01, 2.86936146e-01, 2.86936146e-01,
1.60097390e-01, 1.60097390e-01, 1.60097390e-01, 1.60097390e-01,
2.21384777e-03, 2.21384777e-03, 2.21384777e-03, 2.21384777e-03,
-7.99984086e-02, -7.99984086e-02, -7.99984086e-02, -7.99984086e-02,
-1.34246115e-01, -1.34246115e-01, -1.34246115e-01, -1.34246115e-01,
-6.71255258e-02, -6.71255258e-02, -6.71255258e-02, -6.71255258e-02,
-1.58018574e-01, -1.58018574e-01, -1.58018574e-01, -1.58018574e-01,
-8.46790736e+00, -8.46790736e+00, -8.46790736e+00, -8.46790736e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999979e+02, 9.99999979e+02, 9.99999979e+02, 9.99999979e+02,
9.99999922e+02, 9.99999922e+02, 9.99999922e+02, 9.99999922e+02,
9.99999728e+02, 9.99999728e+02, 9.99999728e+02, 9.99999728e+02,
9.99999095e+02, 9.99999095e+02, 9.99999095e+02, 9.99999095e+02,
9.99997120e+02, 9.99997120e+02, 9.99997120e+02, 9.99997120e+02,
9.99991266e+02, 9.99991266e+02, 9.99991266e+02, 9.99991266e+02,
9.99974782e+02, 9.99974782e+02, 9.99974782e+02, 9.99974782e+02,
9.99930769e+02, 9.99930769e+02, 9.99930769e+02, 9.99930769e+02,
9.99819590e+02, 9.99819590e+02, 9.99819590e+02, 9.99819590e+02,
9.99554591e+02, 9.99554591e+02, 9.99554591e+02, 9.99554591e+02,
9.98960349e+02, 9.98960349e+02, 9.98960349e+02, 9.98960349e+02,
9.97710932e+02, 9.97710932e+02, 9.97710932e+02, 9.97710932e+02,
9.95256792e+02, 9.95256792e+02, 9.95256792e+02, 9.95256792e+02,
9.90769668e+02, 9.90769668e+02, 9.90769668e+02, 9.90769668e+02,
9.83156734e+02, 9.83156734e+02, 9.83156734e+02, 9.83156734e+02,
9.71195587e+02, 9.71195587e+02, 9.71195587e+02, 9.71195587e+02,
9.53796069e+02, 9.53796069e+02, 9.53796069e+02, 9.53796069e+02,
9.30310551e+02, 9.30310551e+02, 9.30310551e+02, 9.30310551e+02,
9.00749846e+02, 9.00749846e+02, 9.00749846e+02, 9.00749846e+02,
8.65784928e+02, 8.65784928e+02, 8.65784928e+02, 8.65784928e+02,
8.26522912e+02, 8.26522912e+02, 8.26522912e+02, 8.26522912e+02,
7.84154118e+02, 7.84154118e+02, 7.84154118e+02, 7.84154118e+02,
7.39746922e+02, 7.39746922e+02, 7.39746922e+02, 7.39746922e+02,
6.96170009e+02, 6.96170009e+02, 6.96170009e+02, 6.96170009e+02,
6.55827330e+02, 6.55827330e+02, 6.55827330e+02, 6.55827330e+02,
6.18654000e+02, 6.18654000e+02, 6.18654000e+02, 6.18654000e+02,
5.84783454e+02, 5.84783454e+02, 5.84783454e+02, 5.84783454e+02,
5.54527180e+02, 5.54527180e+02, 5.54527180e+02, 5.54527180e+02,
5.28367773e+02, 5.28367773e+02, 5.28367773e+02, 5.28367773e+02,
5.06818722e+02, 5.06818722e+02, 5.06818722e+02, 5.06818722e+02,
4.90312899e+02, 4.90312899e+02, 4.90312899e+02, 4.90312899e+02,
4.78752254e+02, 4.78752254e+02, 4.78752254e+02, 4.78752254e+02,
4.71776805e+02, 4.71776805e+02, 4.71776805e+02, 4.71776805e+02,
4.67852179e+02, 4.67852179e+02, 4.67852179e+02, 4.67852179e+02,
4.66174199e+02, 4.66174199e+02, 4.66174199e+02, 4.66174199e+02,
4.64987016e+02, 4.64987016e+02, 4.64987016e+02, 4.64987016e+02,
4.64008579e+02, 4.64008579e+02, 4.64008579e+02, 4.64008579e+02,
4.62543362e+02, 4.62543362e+02, 4.62543362e+02, 4.62543362e+02,
4.59550569e+02, 4.59550569e+02, 4.59550569e+02, 4.59550569e+02,
4.56544154e+02, 4.56544154e+02, 4.56544154e+02, 4.56544154e+02,
4.55029340e+02, 4.55029340e+02, 4.55029340e+02, 4.55029340e+02,
4.54863605e+02, 4.54863605e+02, 4.54863605e+02, 4.54863605e+02,
4.55470217e+02, 4.55470217e+02, 4.55470217e+02, 4.55470217e+02,
4.57808682e+02, 4.57808682e+02, 4.57808682e+02, 4.57808682e+02,
4.60652422e+02, 4.60652422e+02, 4.60652422e+02, 4.60652422e+02,
4.62610659e+02, 4.62610659e+02, 4.62610659e+02, 4.62610659e+02,
4.63106902e+02, 4.63106902e+02, 4.63106902e+02, 4.63106902e+02,
4.65810686e+02, 4.65810686e+02, 4.65810686e+02, 4.65810686e+02,
4.33002408e+02, 4.33002408e+02, 4.33002408e+02, 4.33002408e+02,
1.43412267e+02, 1.43412267e+02, 1.43412267e+02, 1.43412267e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999973,
0.99999973, 0.99999973, 0.99999973, 0.99999912, 0.99999912,
0.99999912, 0.99999912, 0.99999728, 0.99999728, 0.99999728,
0.99999728, 0.99999196, 0.99999196, 0.99999196, 0.99999196,
0.99997737, 0.99997737, 0.99997737, 0.99997737, 0.99993941,
0.99993941, 0.99993941, 0.99993941, 0.99984585, 0.99984585,
0.99984585, 0.99984585, 0.99962805, 0.99962805, 0.99962805,
0.99962805, 0.99915055, 0.99915055, 0.99915055, 0.99915055,
0.99816786, 0.99816786, 0.99816786, 0.99816786, 0.99627582,
0.99627582, 0.99627582, 0.99627582, 0.99287886, 0.99287886,
0.99287886, 0.99287886, 0.98720668, 0.98720668, 0.98720668,
0.98720668, 0.97841074, 0.97841074, 0.97841074, 0.97841074,
0.96573881, 0.96573881, 0.96573881, 0.96573881, 0.94873306,
0.94873306, 0.94873306, 0.94873306, 0.92736246, 0.92736246,
0.92736246, 0.92736246, 0.90201925, 0.90201925, 0.90201925,
0.90201925, 0.87337573, 0.87337573, 0.87337573, 0.87337573,
0.84216635, 0.84216635, 0.84216635, 0.84216635, 0.80907948,
0.80907948, 0.80907948, 0.80907948, 0.77584278, 0.77584278,
0.77584278, 0.77584278, 0.74438392, 0.74438392, 0.74438392,
0.74438392, 0.71477986, 0.71477986, 0.71477986, 0.71477986,
0.68717736, 0.68717736, 0.68717736, 0.68717736, 0.66188455,
0.66188455, 0.66188455, 0.66188455, 0.63935361, 0.63935361,
0.63935361, 0.63935361, 0.62015224, 0.62015224, 0.62015224,
0.62015224, 0.60477483, 0.60477483, 0.60477483, 0.60477483,
0.59352547, 0.59352547, 0.59352547, 0.59352547, 0.58607117,
0.58607117, 0.58607117, 0.58607117, 0.58190303, 0.58190303,
0.58190303, 0.58190303, 0.57956123, 0.57956123, 0.57956123,
0.57956123, 0.57839561, 0.57839561, 0.57839561, 0.57839561,
0.57731562, 0.57731562, 0.57731562, 0.57731562, 0.57602663,
0.57602663, 0.57602663, 0.57602663, 0.57376643, 0.57376643,
0.57376643, 0.57376643, 0.57079695, 0.57079695, 0.57079695,
0.57079695, 0.56893066, 0.56893066, 0.56893066, 0.56893066,
0.5678998 , 0.5678998 , 0.5678998 , 0.5678998 , 0.56725258,
0.56725258, 0.56725258, 0.56725258, 0.56680513, 0.56680513,
0.56680513, 0.56680513, 0.56673813, 0.56673813, 0.56673813,
0.56673813, 0.56753107, 0.56753107, 0.56753107, 0.56753107,
0.58083764, 0.58083764, 0.58083764, 0.58083764, 0.78629949,
0.78629949, 0.78629949, 0.78629949, 4.91489404, 4.91489404,
4.91489404, 4.91489404, 5.66513057, 5.66513057, 5.66513057,
5.66513057, 2.7620253 , 2.7620253 , 2.7620253 , 2.7620253 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974491e+01, -1.95974491e+01, -1.95974491e+01, -1.95974491e+01,
-1.95974470e+01, -1.95974470e+01, -1.95974470e+01, -1.95974470e+01,
-1.95974398e+01, -1.95974398e+01, -1.95974398e+01, -1.95974398e+01,
-1.95974170e+01, -1.95974170e+01, -1.95974170e+01, -1.95974170e+01,
-1.95973480e+01, -1.95973480e+01, -1.95973480e+01, -1.95973480e+01,
-1.95971491e+01, -1.95971491e+01, -1.95971491e+01, -1.95971491e+01,
-1.95966033e+01, -1.95966033e+01, -1.95966033e+01, -1.95966033e+01,
-1.95951829e+01, -1.95951829e+01, -1.95951829e+01, -1.95951829e+01,
-1.95916820e+01, -1.95916820e+01, -1.95916820e+01, -1.95916820e+01,
-1.95835315e+01, -1.95835315e+01, -1.95835315e+01, -1.95835315e+01,
-1.95656587e+01, -1.95656587e+01, -1.95656587e+01, -1.95656587e+01,
-1.95288585e+01, -1.95288585e+01, -1.95288585e+01, -1.95288585e+01,
-1.94579343e+01, -1.94579343e+01, -1.94579343e+01, -1.94579343e+01,
-1.93303524e+01, -1.93303524e+01, -1.93303524e+01, -1.93303524e+01,
-1.91165854e+01, -1.91165854e+01, -1.91165854e+01, -1.91165854e+01,
-1.87832063e+01, -1.87832063e+01, -1.87832063e+01, -1.87832063e+01,
-1.82987235e+01, -1.82987235e+01, -1.82987235e+01, -1.82987235e+01,
-1.76404471e+01, -1.76404471e+01, -1.76404471e+01, -1.76404471e+01,
-1.67995009e+01, -1.67995009e+01, -1.67995009e+01, -1.67995009e+01,
-1.57815477e+01, -1.57815477e+01, -1.57815477e+01, -1.57815477e+01,
-1.46026675e+01, -1.46026675e+01, -1.46026675e+01, -1.46026675e+01,
-1.32817990e+01, -1.32817990e+01, -1.32817990e+01, -1.32817990e+01,
-1.18344185e+01, -1.18344185e+01, -1.18344185e+01, -1.18344185e+01,
-1.03460033e+01, -1.03460033e+01, -1.03460033e+01, -1.03460033e+01,
-8.88243558e+00, -8.88243558e+00, -8.88243558e+00, -8.88243558e+00,
-7.45829243e+00, -7.45829243e+00, -7.45829243e+00, -7.45829243e+00,
-6.08759632e+00, -6.08759632e+00, -6.08759632e+00, -6.08759632e+00,
-4.79273953e+00, -4.79273953e+00, -4.79273953e+00, -4.79273953e+00,
-3.60646122e+00, -3.60646122e+00, -3.60646122e+00, -3.60646122e+00,
-2.56866215e+00, -2.56866215e+00, -2.56866215e+00, -2.56866215e+00,
-1.72080838e+00, -1.72080838e+00, -1.72080838e+00, -1.72080838e+00,
-1.08667636e+00, -1.08667636e+00, -1.08667636e+00, -1.08667636e+00,
-6.70713020e-01, -6.70713020e-01, -6.70713020e-01, -6.70713020e-01,
-4.23210123e-01, -4.23210123e-01, -4.23210123e-01, -4.23210123e-01,
-3.05329615e-01, -3.05329615e-01, -3.05329615e-01, -3.05329615e-01,
-2.30979266e-01, -2.30979266e-01, -2.30979266e-01, -2.30979266e-01,
-1.78612761e-01, -1.78612761e-01, -1.78612761e-01, -1.78612761e-01,
-1.14935463e-01, -1.14935463e-01, -1.14935463e-01, -1.14935463e-01,
9.76005905e-03, 9.76005905e-03, 9.76005905e-03, 9.76005905e-03,
1.79021055e-01, 1.79021055e-01, 1.79021055e-01, 1.79021055e-01,
2.79211031e-01, 2.79211031e-01, 2.79211031e-01, 2.79211031e-01,
3.04181047e-01, 3.04181047e-01, 3.04181047e-01, 3.04181047e-01,
2.97229303e-01, 2.97229303e-01, 2.97229303e-01, 2.97229303e-01,
2.16892653e-01, 2.16892653e-01, 2.16892653e-01, 2.16892653e-01,
5.77330288e-02, 5.77330288e-02, 5.77330288e-02, 5.77330288e-02,
-6.18141614e-02, -6.18141614e-02, -6.18141614e-02, -6.18141614e-02,
-1.02834268e-01, -1.02834268e-01, -1.02834268e-01, -1.02834268e-01,
-1.20319256e-01, -1.20319256e-01, -1.20319256e-01, -1.20319256e-01,
-4.57384322e-02, -4.57384322e-02, -4.57384322e-02, -4.57384322e-02,
5.57803118e-03, 5.57803118e-03, 5.57803118e-03, 5.57803118e-03,
-7.12586604e+00, -7.12586604e+00, -7.12586604e+00, -7.12586604e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999968e+02, 9.99999968e+02, 9.99999968e+02, 9.99999968e+02,
9.99999887e+02, 9.99999887e+02, 9.99999887e+02, 9.99999887e+02,
9.99999619e+02, 9.99999619e+02, 9.99999619e+02, 9.99999619e+02,
9.99998767e+02, 9.99998767e+02, 9.99998767e+02, 9.99998767e+02,
9.99996185e+02, 9.99996185e+02, 9.99996185e+02, 9.99996185e+02,
9.99988740e+02, 9.99988740e+02, 9.99988740e+02, 9.99988740e+02,
9.99968321e+02, 9.99968321e+02, 9.99968321e+02, 9.99968321e+02,
9.99915177e+02, 9.99915177e+02, 9.99915177e+02, 9.99915177e+02,
9.99784202e+02, 9.99784202e+02, 9.99784202e+02, 9.99784202e+02,
9.99479333e+02, 9.99479333e+02, 9.99479333e+02, 9.99479333e+02,
9.98811087e+02, 9.98811087e+02, 9.98811087e+02, 9.98811087e+02,
9.97436379e+02, 9.97436379e+02, 9.97436379e+02, 9.97436379e+02,
9.94791552e+02, 9.94791552e+02, 9.94791552e+02, 9.94791552e+02,
9.90049195e+02, 9.90049195e+02, 9.90049195e+02, 9.90049195e+02,
9.82147193e+02, 9.82147193e+02, 9.82147193e+02, 9.82147193e+02,
9.69932912e+02, 9.69932912e+02, 9.69932912e+02, 9.69932912e+02,
9.52417576e+02, 9.52417576e+02, 9.52417576e+02, 9.52417576e+02,
9.29058942e+02, 9.29058942e+02, 9.29058942e+02, 9.29058942e+02,
8.99940834e+02, 8.99940834e+02, 8.99940834e+02, 8.99940834e+02,
8.65750838e+02, 8.65750838e+02, 8.65750838e+02, 8.65750838e+02,
8.27559253e+02, 8.27559253e+02, 8.27559253e+02, 8.27559253e+02,
7.86496911e+02, 7.86496911e+02, 7.86496911e+02, 7.86496911e+02,
7.43523058e+02, 7.43523058e+02, 7.43523058e+02, 7.43523058e+02,
7.01150546e+02, 7.01150546e+02, 7.01150546e+02, 7.01150546e+02,
6.61711091e+02, 6.61711091e+02, 6.61711091e+02, 6.61711091e+02,
6.25204662e+02, 6.25204662e+02, 6.25204662e+02, 6.25204662e+02,
5.91711941e+02, 5.91711941e+02, 5.91711941e+02, 5.91711941e+02,
5.61500060e+02, 5.61500060e+02, 5.61500060e+02, 5.61500060e+02,
5.34985301e+02, 5.34985301e+02, 5.34985301e+02, 5.34985301e+02,
5.12690393e+02, 5.12690393e+02, 5.12690393e+02, 5.12690393e+02,
4.95042975e+02, 4.95042975e+02, 4.95042975e+02, 4.95042975e+02,
4.82262615e+02, 4.82262615e+02, 4.82262615e+02, 4.82262615e+02,
4.73870538e+02, 4.73870538e+02, 4.73870538e+02, 4.73870538e+02,
4.69227241e+02, 4.69227241e+02, 4.69227241e+02, 4.69227241e+02,
4.66662152e+02, 4.66662152e+02, 4.66662152e+02, 4.66662152e+02,
4.65449266e+02, 4.65449266e+02, 4.65449266e+02, 4.65449266e+02,
4.64355113e+02, 4.64355113e+02, 4.64355113e+02, 4.64355113e+02,
4.63043852e+02, 4.63043852e+02, 4.63043852e+02, 4.63043852e+02,
4.60652662e+02, 4.60652662e+02, 4.60652662e+02, 4.60652662e+02,
4.57488839e+02, 4.57488839e+02, 4.57488839e+02, 4.57488839e+02,
4.55633138e+02, 4.55633138e+02, 4.55633138e+02, 4.55633138e+02,
4.54937737e+02, 4.54937737e+02, 4.54937737e+02, 4.54937737e+02,
4.55166468e+02, 4.55166468e+02, 4.55166468e+02, 4.55166468e+02,
4.56778687e+02, 4.56778687e+02, 4.56778687e+02, 4.56778687e+02,
4.59834516e+02, 4.59834516e+02, 4.59834516e+02, 4.59834516e+02,
4.61863307e+02, 4.61863307e+02, 4.61863307e+02, 4.61863307e+02,
4.63045537e+02, 4.63045537e+02, 4.63045537e+02, 4.63045537e+02,
4.62941773e+02, 4.62941773e+02, 4.62941773e+02, 4.62941773e+02,
4.63527536e+02, 4.63527536e+02, 4.63527536e+02, 4.63527536e+02,
4.33471825e+02, 4.33471825e+02, 4.33471825e+02, 4.33471825e+02,
1.78922418e+02, 1.78922418e+02, 1.78922418e+02, 1.78922418e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999989, 0.99999989, 0.99999989, 0.99999989,
0.99999963, 0.99999963, 0.99999963, 0.99999963, 0.99999882,
0.99999882, 0.99999882, 0.99999882, 0.99999644, 0.99999644,
0.99999644, 0.99999644, 0.99998977, 0.99998977, 0.99998977,
0.99998977, 0.99997191, 0.99997191, 0.99997191, 0.99997191,
0.99992654, 0.99992654, 0.99992654, 0.99992654, 0.9998173 ,
0.9998173 , 0.9998173 , 0.9998173 , 0.99956868, 0.99956868,
0.99956868, 0.99956868, 0.99903526, 0.99903526, 0.99903526,
0.99903526, 0.99795997, 0.99795997, 0.99795997, 0.99795997,
0.99592998, 0.99592998, 0.99592998, 0.99592998, 0.99235208,
0.99235208, 0.99235208, 0.99235208, 0.98647893, 0.98647893,
0.98647893, 0.98647893, 0.97751071, 0.97751071, 0.97751071,
0.97751071, 0.96476399, 0.96476399, 0.96476399, 0.96476399,
0.94785186, 0.94785186, 0.94785186, 0.94785186, 0.92679381,
0.92679381, 0.92679381, 0.92679381, 0.90199754, 0.90199754,
0.90199754, 0.90199754, 0.87411778, 0.87411778, 0.87411778,
0.87411778, 0.84385313, 0.84385313, 0.84385313, 0.84385313,
0.81183641, 0.81183641, 0.81183641, 0.81183641, 0.77956921,
0.77956921, 0.77956921, 0.77956921, 0.74888406, 0.74888406,
0.74888406, 0.74888406, 0.7199006 , 0.7199006 , 0.7199006 ,
0.7199006 , 0.69273028, 0.69273028, 0.69273028, 0.69273028,
0.66762803, 0.66762803, 0.66762803, 0.66762803, 0.64499394,
0.64499394, 0.64499394, 0.64499394, 0.6253336 , 0.6253336 ,
0.6253336 , 0.6253336 , 0.60918725, 0.60918725, 0.60918725,
0.60918725, 0.59688024, 0.59688024, 0.59688024, 0.59688024,
0.58844927, 0.58844927, 0.58844927, 0.58844927, 0.58320842,
0.58320842, 0.58320842, 0.58320842, 0.58046856, 0.58046856,
0.58046856, 0.58046856, 0.57881722, 0.57881722, 0.57881722,
0.57881722, 0.5777376 , 0.5777376 , 0.5777376 , 0.5777376 ,
0.57657412, 0.57657412, 0.57657412, 0.57657412, 0.5747604 ,
0.5747604 , 0.5747604 , 0.5747604 , 0.57183611, 0.57183611,
0.57183611, 0.57183611, 0.569634 , 0.569634 , 0.569634 ,
0.569634 , 0.56863337, 0.56863337, 0.56863337, 0.56863337,
0.56807231, 0.56807231, 0.56807231, 0.56807231, 0.567998 ,
0.567998 , 0.567998 , 0.567998 , 0.56850304, 0.56850304,
0.56850304, 0.56850304, 0.5680767 , 0.5680767 , 0.5680767 ,
0.5680767 , 0.56811621, 0.56811621, 0.56811621, 0.56811621,
0.58104156, 0.58104156, 0.58104156, 0.58104156, 0.79189278,
0.79189278, 0.79189278, 0.79189278, 4.89390634, 4.89390634,
4.89390634, 4.89390634, 5.69720114, 5.69720114, 5.69720114,
5.69720114, 3.1202153 , 3.1202153 , 3.1202153 , 3.1202153 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974497e+01, -1.95974497e+01, -1.95974497e+01, -1.95974497e+01,
-1.95974488e+01, -1.95974488e+01, -1.95974488e+01, -1.95974488e+01,
-1.95974457e+01, -1.95974457e+01, -1.95974457e+01, -1.95974457e+01,
-1.95974360e+01, -1.95974360e+01, -1.95974360e+01, -1.95974360e+01,
-1.95974058e+01, -1.95974058e+01, -1.95974058e+01, -1.95974058e+01,
-1.95973169e+01, -1.95973169e+01, -1.95973169e+01, -1.95973169e+01,
-1.95970671e+01, -1.95970671e+01, -1.95970671e+01, -1.95970671e+01,
-1.95963988e+01, -1.95963988e+01, -1.95963988e+01, -1.95963988e+01,
-1.95947013e+01, -1.95947013e+01, -1.95947013e+01, -1.95947013e+01,
-1.95906138e+01, -1.95906138e+01, -1.95906138e+01, -1.95906138e+01,
-1.95813093e+01, -1.95813093e+01, -1.95813093e+01, -1.95813093e+01,
-1.95613423e+01, -1.95613423e+01, -1.95613423e+01, -1.95613423e+01,
-1.95210699e+01, -1.95210699e+01, -1.95210699e+01, -1.95210699e+01,
-1.94449585e+01, -1.94449585e+01, -1.94449585e+01, -1.94449585e+01,
-1.93105344e+01, -1.93105344e+01, -1.93105344e+01, -1.93105344e+01,
-1.90890791e+01, -1.90890791e+01, -1.90890791e+01, -1.90890791e+01,
-1.87489345e+01, -1.87489345e+01, -1.87489345e+01, -1.87489345e+01,
-1.82611905e+01, -1.82611905e+01, -1.82611905e+01, -1.82611905e+01,
-1.76059869e+01, -1.76059869e+01, -1.76059869e+01, -1.76059869e+01,
-1.67767728e+01, -1.67767728e+01, -1.67767728e+01, -1.67767728e+01,
-1.57804835e+01, -1.57804835e+01, -1.57804835e+01, -1.57804835e+01,
-1.46333874e+01, -1.46333874e+01, -1.46333874e+01, -1.46333874e+01,
-1.33540076e+01, -1.33540076e+01, -1.33540076e+01, -1.33540076e+01,
-1.19567666e+01, -1.19567666e+01, -1.19567666e+01, -1.19567666e+01,
-1.05150525e+01, -1.05150525e+01, -1.05150525e+01, -1.05150525e+01,
-9.09417104e+00, -9.09417104e+00, -9.09417104e+00, -9.09417104e+00,
-7.70728617e+00, -7.70728617e+00, -7.70728617e+00, -7.70728617e+00,
-6.36602576e+00, -6.36602576e+00, -6.36602576e+00, -6.36602576e+00,
-5.08930766e+00, -5.08930766e+00, -5.08930766e+00, -5.08930766e+00,
-3.90506198e+00, -3.90506198e+00, -3.90506198e+00, -3.90506198e+00,
-2.85010424e+00, -2.85010424e+00, -2.85010424e+00, -2.85010424e+00,
-1.96328393e+00, -1.96328393e+00, -1.96328393e+00, -1.96328393e+00,
-1.27734670e+00, -1.27734670e+00, -1.27734670e+00, -1.27734670e+00,
-7.96811737e-01, -7.96811737e-01, -7.96811737e-01, -7.96811737e-01,
-5.06534830e-01, -5.06534830e-01, -5.06534830e-01, -5.06534830e-01,
-3.41035658e-01, -3.41035658e-01, -3.41035658e-01, -3.41035658e-01,
-2.60177787e-01, -2.60177787e-01, -2.60177787e-01, -2.60177787e-01,
-1.96085942e-01, -1.96085942e-01, -1.96085942e-01, -1.96085942e-01,
-1.34052428e-01, -1.34052428e-01, -1.34052428e-01, -1.34052428e-01,
-3.82449631e-02, -3.82449631e-02, -3.82449631e-02, -3.82449631e-02,
1.21841959e-01, 1.21841959e-01, 1.21841959e-01, 1.21841959e-01,
2.44077637e-01, 2.44077637e-01, 2.44077637e-01, 2.44077637e-01,
2.97824945e-01, 2.97824945e-01, 2.97824945e-01, 2.97824945e-01,
2.98149986e-01, 2.98149986e-01, 2.98149986e-01, 2.98149986e-01,
2.51414537e-01, 2.51414537e-01, 2.51414537e-01, 2.51414537e-01,
1.13404337e-01, 1.13404337e-01, 1.13404337e-01, 1.13404337e-01,
-1.88380192e-02, -1.88380192e-02, -1.88380192e-02, -1.88380192e-02,
-9.54487222e-02, -9.54487222e-02, -9.54487222e-02, -9.54487222e-02,
-1.06443174e-01, -1.06443174e-01, -1.06443174e-01, -1.06443174e-01,
-9.56457136e-02, -9.56457136e-02, -9.56457136e-02, -9.56457136e-02,
-1.47955638e-02, -1.47955638e-02, -1.47955638e-02, -1.47955638e-02,
7.16811944e-02, 7.16811944e-02, 7.16811944e-02, 7.16811944e-02,
-5.99756818e+00, -5.99756818e+00, -5.99756818e+00, -5.99756818e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999987e+02, 9.99999987e+02, 9.99999987e+02, 9.99999987e+02,
9.99999954e+02, 9.99999954e+02, 9.99999954e+02, 9.99999954e+02,
9.99999841e+02, 9.99999841e+02, 9.99999841e+02, 9.99999841e+02,
9.99999475e+02, 9.99999475e+02, 9.99999475e+02, 9.99999475e+02,
9.99998347e+02, 9.99998347e+02, 9.99998347e+02, 9.99998347e+02,
9.99995020e+02, 9.99995020e+02, 9.99995020e+02, 9.99995020e+02,
9.99985672e+02, 9.99985672e+02, 9.99985672e+02, 9.99985672e+02,
9.99960670e+02, 9.99960670e+02, 9.99960670e+02, 9.99960670e+02,
9.99897156e+02, 9.99897156e+02, 9.99897156e+02, 9.99897156e+02,
9.99744241e+02, 9.99744241e+02, 9.99744241e+02, 9.99744241e+02,
9.99396229e+02, 9.99396229e+02, 9.99396229e+02, 9.99396229e+02,
9.98649758e+02, 9.98649758e+02, 9.98649758e+02, 9.98649758e+02,
9.97145637e+02, 9.97145637e+02, 9.97145637e+02, 9.97145637e+02,
9.94308330e+02, 9.94308330e+02, 9.94308330e+02, 9.94308330e+02,
9.89314303e+02, 9.89314303e+02, 9.89314303e+02, 9.89314303e+02,
9.81134393e+02, 9.81134393e+02, 9.81134393e+02, 9.81134393e+02,
9.68684747e+02, 9.68684747e+02, 9.68684747e+02, 9.68684747e+02,
9.51072032e+02, 9.51072032e+02, 9.51072032e+02, 9.51072032e+02,
9.27849434e+02, 9.27849434e+02, 9.27849434e+02, 9.27849434e+02,
8.99163679e+02, 8.99163679e+02, 8.99163679e+02, 8.99163679e+02,
8.65713041e+02, 8.65713041e+02, 8.65713041e+02, 8.65713041e+02,
8.28530977e+02, 8.28530977e+02, 8.28530977e+02, 8.28530977e+02,
7.88687888e+02, 7.88687888e+02, 7.88687888e+02, 7.88687888e+02,
7.47065213e+02, 7.47065213e+02, 7.47065213e+02, 7.47065213e+02,
7.05848815e+02, 7.05848815e+02, 7.05848815e+02, 7.05848815e+02,
6.67297293e+02, 6.67297293e+02, 6.67297293e+02, 6.67297293e+02,
6.31460182e+02, 6.31460182e+02, 6.31460182e+02, 6.31460182e+02,
5.98389306e+02, 5.98389306e+02, 5.98389306e+02, 5.98389306e+02,
5.68299134e+02, 5.68299134e+02, 5.68299134e+02, 5.68299134e+02,
5.41562282e+02, 5.41562282e+02, 5.41562282e+02, 5.41562282e+02,
5.18651711e+02, 5.18651711e+02, 5.18651711e+02, 5.18651711e+02,
5.00058715e+02, 5.00058715e+02, 5.00058715e+02, 5.00058715e+02,
4.86029006e+02, 4.86029006e+02, 4.86029006e+02, 4.86029006e+02,
4.76503061e+02, 4.76503061e+02, 4.76503061e+02, 4.76503061e+02,
4.70635195e+02, 4.70635195e+02, 4.70635195e+02, 4.70635195e+02,
4.67609427e+02, 4.67609427e+02, 4.67609427e+02, 4.67609427e+02,
4.65824201e+02, 4.65824201e+02, 4.65824201e+02, 4.65824201e+02,
4.64708600e+02, 4.64708600e+02, 4.64708600e+02, 4.64708600e+02,
4.63520829e+02, 4.63520829e+02, 4.63520829e+02, 4.63520829e+02,
4.61620235e+02, 4.61620235e+02, 4.61620235e+02, 4.61620235e+02,
4.58485045e+02, 4.58485045e+02, 4.58485045e+02, 4.58485045e+02,
4.56183830e+02, 4.56183830e+02, 4.56183830e+02, 4.56183830e+02,
4.55297909e+02, 4.55297909e+02, 4.55297909e+02, 4.55297909e+02,
4.55128431e+02, 4.55128431e+02, 4.55128431e+02, 4.55128431e+02,
4.55999279e+02, 4.55999279e+02, 4.55999279e+02, 4.55999279e+02,
4.58687543e+02, 4.58687543e+02, 4.58687543e+02, 4.58687543e+02,
4.61354361e+02, 4.61354361e+02, 4.61354361e+02, 4.61354361e+02,
4.62516612e+02, 4.62516612e+02, 4.62516612e+02, 4.62516612e+02,
4.63019726e+02, 4.63019726e+02, 4.63019726e+02, 4.63019726e+02,
4.62614600e+02, 4.62614600e+02, 4.62614600e+02, 4.62614600e+02,
4.60825538e+02, 4.60825538e+02, 4.60825538e+02, 4.60825538e+02,
4.37294799e+02, 4.37294799e+02, 4.37294799e+02, 4.37294799e+02,
2.11305840e+02, 2.11305840e+02, 2.11305840e+02, 2.11305840e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999984, 0.99999984, 0.99999984,
0.99999984, 0.99999949, 0.99999949, 0.99999949, 0.99999949,
0.99999844, 0.99999844, 0.99999844, 0.99999844, 0.99999542,
0.99999542, 0.99999542, 0.99999542, 0.99998713, 0.99998713,
0.99998713, 0.99998713, 0.9999655 , 0.9999655 , 0.9999655 ,
0.9999655 , 0.99991178, 0.99991178, 0.99991178, 0.99991178,
0.99978529, 0.99978529, 0.99978529, 0.99978529, 0.99950349,
0.99950349, 0.99950349, 0.99950349, 0.99891123, 0.99891123,
0.99891123, 0.99891123, 0.99774064, 0.99774064, 0.99774064,
0.99774064, 0.99557175, 0.99557175, 0.99557175, 0.99557175,
0.99181571, 0.99181571, 0.99181571, 0.99181571, 0.98574947,
0.98574947, 0.98574947, 0.98574947, 0.97662108, 0.97662108,
0.97662108, 0.97662108, 0.96381185, 0.96381185, 0.96381185,
0.96381185, 0.94699927, 0.94699927, 0.94699927, 0.94699927,
0.92624661, 0.92624661, 0.92624661, 0.92624661, 0.9019728 ,
0.9019728 , 0.9019728 , 0.9019728 , 0.87481407, 0.87481407,
0.87481407, 0.87481407, 0.84543522, 0.84543522, 0.84543522,
0.84543522, 0.81442283, 0.81442283, 0.81442283, 0.81442283,
0.78307637, 0.78307637, 0.78307637, 0.78307637, 0.75314632,
0.75314632, 0.75314632, 0.75314632, 0.72477941, 0.72477941,
0.72477941, 0.72477941, 0.69805716, 0.69805716, 0.69805716,
0.69805716, 0.67319587, 0.67319587, 0.67319587, 0.67319587,
0.65053818, 0.65053818, 0.65053818, 0.65053818, 0.63054983,
0.63054983, 0.63054983, 0.63054983, 0.61373695, 0.61373695,
0.61373695, 0.61373695, 0.60053603, 0.60053603, 0.60053603,
0.60053603, 0.59102357, 0.59102357, 0.59102357, 0.59102357,
0.58494867, 0.58494867, 0.58494867, 0.58494867, 0.58135283,
0.58135283, 0.58135283, 0.58135283, 0.5794891 , 0.5794891 ,
0.5794891 , 0.5794891 , 0.57815267, 0.57815267, 0.57815267,
0.57815267, 0.57699224, 0.57699224, 0.57699224, 0.57699224,
0.57552182, 0.57552182, 0.57552182, 0.57552182, 0.57298965,
0.57298965, 0.57298965, 0.57298965, 0.57043829, 0.57043829,
0.57043829, 0.57043829, 0.56906326, 0.56906326, 0.56906326,
0.56906326, 0.5686265 , 0.5686265 , 0.5686265 , 0.5686265 ,
0.56854901, 0.56854901, 0.56854901, 0.56854901, 0.56940057,
0.56940057, 0.56940057, 0.56940057, 0.57005639, 0.57005639,
0.57005639, 0.57005639, 0.5688696 , 0.5688696 , 0.5688696 ,
0.5688696 , 0.56831975, 0.56831975, 0.56831975, 0.56831975,
0.58103903, 0.58103903, 0.58103903, 0.58103903, 0.79374436,
0.79374436, 0.79374436, 0.79374436, 4.87720755, 4.87720755,
4.87720755, 4.87720755, 5.74403588, 5.74403588, 5.74403588,
5.74403588, 3.46330428, 3.46330428, 3.46330428, 3.46330428,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974495e+01, -1.95974495e+01, -1.95974495e+01, -1.95974495e+01,
-1.95974482e+01, -1.95974482e+01, -1.95974482e+01, -1.95974482e+01,
-1.95974441e+01, -1.95974441e+01, -1.95974441e+01, -1.95974441e+01,
-1.95974310e+01, -1.95974310e+01, -1.95974310e+01, -1.95974310e+01,
-1.95973916e+01, -1.95973916e+01, -1.95973916e+01, -1.95973916e+01,
-1.95972786e+01, -1.95972786e+01, -1.95972786e+01, -1.95972786e+01,
-1.95969686e+01, -1.95969686e+01, -1.95969686e+01, -1.95969686e+01,
-1.95961590e+01, -1.95961590e+01, -1.95961590e+01, -1.95961590e+01,
-1.95941491e+01, -1.95941491e+01, -1.95941491e+01, -1.95941491e+01,
-1.95894158e+01, -1.95894158e+01, -1.95894158e+01, -1.95894158e+01,
-1.95788696e+01, -1.95788696e+01, -1.95788696e+01, -1.95788696e+01,
-1.95566985e+01, -1.95566985e+01, -1.95566985e+01, -1.95566985e+01,
-1.95128512e+01, -1.95128512e+01, -1.95128512e+01, -1.95128512e+01,
-1.94315140e+01, -1.94315140e+01, -1.94315140e+01, -1.94315140e+01,
-1.92903467e+01, -1.92903467e+01, -1.92903467e+01, -1.92903467e+01,
-1.90614912e+01, -1.90614912e+01, -1.90614912e+01, -1.90614912e+01,
-1.87150326e+01, -1.87150326e+01, -1.87150326e+01, -1.87150326e+01,
-1.82245001e+01, -1.82245001e+01, -1.82245001e+01, -1.82245001e+01,
-1.75726207e+01, -1.75726207e+01, -1.75726207e+01, -1.75726207e+01,
-1.67548950e+01, -1.67548950e+01, -1.67548950e+01, -1.67548950e+01,
-1.57793118e+01, -1.57793118e+01, -1.57793118e+01, -1.57793118e+01,
-1.46622014e+01, -1.46622014e+01, -1.46622014e+01, -1.46622014e+01,
-1.34216191e+01, -1.34216191e+01, -1.34216191e+01, -1.34216191e+01,
-1.20712287e+01, -1.20712287e+01, -1.20712287e+01, -1.20712287e+01,
-1.06739044e+01, -1.06739044e+01, -1.06739044e+01, -1.06739044e+01,
-9.29379307e+00, -9.29379307e+00, -9.29379307e+00, -9.29379307e+00,
-7.94296336e+00, -7.94296336e+00, -7.94296336e+00, -7.94296336e+00,
-6.63150668e+00, -6.63150668e+00, -6.63150668e+00, -6.63150668e+00,
-5.37490939e+00, -5.37490939e+00, -5.37490939e+00, -5.37490939e+00,
-4.19730994e+00, -4.19730994e+00, -4.19730994e+00, -4.19730994e+00,
-3.13108259e+00, -3.13108259e+00, -3.13108259e+00, -3.13108259e+00,
-2.21417361e+00, -2.21417361e+00, -2.21417361e+00, -2.21417361e+00,
-1.47930262e+00, -1.47930262e+00, -1.47930262e+00, -1.47930262e+00,
-9.45385444e-01, -9.45385444e-01, -9.45385444e-01, -9.45385444e-01,
-5.95656521e-01, -5.95656521e-01, -5.95656521e-01, -5.95656521e-01,
-3.99403090e-01, -3.99403090e-01, -3.99403090e-01, -3.99403090e-01,
-2.85622461e-01, -2.85622461e-01, -2.85622461e-01, -2.85622461e-01,
-2.19284573e-01, -2.19284573e-01, -2.19284573e-01, -2.19284573e-01,
-1.55493166e-01, -1.55493166e-01, -1.55493166e-01, -1.55493166e-01,
-7.35015435e-02, -7.35015435e-02, -7.35015435e-02, -7.35015435e-02,
6.72846414e-02, 6.72846414e-02, 6.72846414e-02, 6.72846414e-02,
2.05392028e-01, 2.05392028e-01, 2.05392028e-01, 2.05392028e-01,
2.75414455e-01, 2.75414455e-01, 2.75414455e-01, 2.75414455e-01,
2.96233980e-01, 2.96233980e-01, 2.96233980e-01, 2.96233980e-01,
2.74443594e-01, 2.74443594e-01, 2.74443594e-01, 2.74443594e-01,
1.70168341e-01, 1.70168341e-01, 1.70168341e-01, 1.70168341e-01,
1.80150915e-02, 1.80150915e-02, 1.80150915e-02, 1.80150915e-02,
-6.51449274e-02, -6.51449274e-02, -6.51449274e-02, -6.51449274e-02,
-1.04137959e-01, -1.04137959e-01, -1.04137959e-01, -1.04137959e-01,
-9.96987947e-02, -9.96987947e-02, -9.96987947e-02, -9.96987947e-02,
-6.02066209e-02, -6.02066209e-02, -6.02066209e-02, -6.02066209e-02,
1.77838561e-02, 1.77838561e-02, 1.77838561e-02, 1.77838561e-02,
6.95679407e-02, 6.95679407e-02, 6.95679407e-02, 6.95679407e-02,
-5.01910078e+00, -5.01910078e+00, -5.01910078e+00, -5.01910078e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999995e+02, 9.99999995e+02, 9.99999995e+02, 9.99999995e+02,
9.99999981e+02, 9.99999981e+02, 9.99999981e+02, 9.99999981e+02,
9.99999934e+02, 9.99999934e+02, 9.99999934e+02, 9.99999934e+02,
9.99999778e+02, 9.99999778e+02, 9.99999778e+02, 9.99999778e+02,
9.99999289e+02, 9.99999289e+02, 9.99999289e+02, 9.99999289e+02,
9.99997817e+02, 9.99997817e+02, 9.99997817e+02, 9.99997817e+02,
9.99993586e+02, 9.99993586e+02, 9.99993586e+02, 9.99993586e+02,
9.99981987e+02, 9.99981987e+02, 9.99981987e+02, 9.99981987e+02,
9.99951696e+02, 9.99951696e+02, 9.99951696e+02, 9.99951696e+02,
9.99876497e+02, 9.99876497e+02, 9.99876497e+02, 9.99876497e+02,
9.99699428e+02, 9.99699428e+02, 9.99699428e+02, 9.99699428e+02,
9.99304995e+02, 9.99304995e+02, 9.99304995e+02, 9.99304995e+02,
9.98476220e+02, 9.98476220e+02, 9.98476220e+02, 9.98476220e+02,
9.96838923e+02, 9.96838923e+02, 9.96838923e+02, 9.96838923e+02,
9.93807871e+02, 9.93807871e+02, 9.93807871e+02, 9.93807871e+02,
9.88566189e+02, 9.88566189e+02, 9.88566189e+02, 9.88566189e+02,
9.80119496e+02, 9.80119496e+02, 9.80119496e+02, 9.80119496e+02,
9.67451408e+02, 9.67451408e+02, 9.67451408e+02, 9.67451408e+02,
9.49758258e+02, 9.49758258e+02, 9.49758258e+02, 9.49758258e+02,
9.26679567e+02, 9.26679567e+02, 9.26679567e+02, 9.26679567e+02,
8.98416091e+02, 8.98416091e+02, 8.98416091e+02, 8.98416091e+02,
8.65671807e+02, 8.65671807e+02, 8.65671807e+02, 8.65671807e+02,
8.29443378e+02, 8.29443378e+02, 8.29443378e+02, 8.29443378e+02,
7.90744448e+02, 7.90744448e+02, 7.90744448e+02, 7.90744448e+02,
7.50392349e+02, 7.50392349e+02, 7.50392349e+02, 7.50392349e+02,
7.10283801e+02, 7.10283801e+02, 7.10283801e+02, 7.10283801e+02,
6.72599183e+02, 6.72599183e+02, 6.72599183e+02, 6.72599183e+02,
6.37437464e+02, 6.37437464e+02, 6.37437464e+02, 6.37437464e+02,
6.04816164e+02, 6.04816164e+02, 6.04816164e+02, 6.04816164e+02,
5.74916672e+02, 5.74916672e+02, 5.74916672e+02, 5.74916672e+02,
5.48055621e+02, 5.48055621e+02, 5.48055621e+02, 5.48055621e+02,
5.24676970e+02, 5.24676970e+02, 5.24676970e+02, 5.24676970e+02,
5.05250741e+02, 5.05250741e+02, 5.05250741e+02, 5.05250741e+02,
4.90155215e+02, 4.90155215e+02, 4.90155215e+02, 4.90155215e+02,
4.79371457e+02, 4.79371457e+02, 4.79371457e+02, 4.79371457e+02,
4.72542024e+02, 4.72542024e+02, 4.72542024e+02, 4.72542024e+02,
4.68541201e+02, 4.68541201e+02, 4.68541201e+02, 4.68541201e+02,
4.66505642e+02, 4.66505642e+02, 4.66505642e+02, 4.66505642e+02,
4.65076084e+02, 4.65076084e+02, 4.65076084e+02, 4.65076084e+02,
4.63869864e+02, 4.63869864e+02, 4.63869864e+02, 4.63869864e+02,
4.62337447e+02, 4.62337447e+02, 4.62337447e+02, 4.62337447e+02,
4.59631278e+02, 4.59631278e+02, 4.59631278e+02, 4.59631278e+02,
4.56916646e+02, 4.56916646e+02, 4.56916646e+02, 4.56916646e+02,
4.55543102e+02, 4.55543102e+02, 4.55543102e+02, 4.55543102e+02,
4.55288433e+02, 4.55288433e+02, 4.55288433e+02, 4.55288433e+02,
4.55661668e+02, 4.55661668e+02, 4.55661668e+02, 4.55661668e+02,
4.57571932e+02, 4.57571932e+02, 4.57571932e+02, 4.57571932e+02,
4.60440601e+02, 4.60440601e+02, 4.60440601e+02, 4.60440601e+02,
4.62258112e+02, 4.62258112e+02, 4.62258112e+02, 4.62258112e+02,
4.62734330e+02, 4.62734330e+02, 4.62734330e+02, 4.62734330e+02,
4.62796077e+02, 4.62796077e+02, 4.62796077e+02, 4.62796077e+02,
4.61928393e+02, 4.61928393e+02, 4.61928393e+02, 4.61928393e+02,
4.58737919e+02, 4.58737919e+02, 4.58737919e+02, 4.58737919e+02,
4.42781939e+02, 4.42781939e+02, 4.42781939e+02, 4.42781939e+02,
2.41372986e+02, 2.41372986e+02, 2.41372986e+02, 2.41372986e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999993,
0.99999993, 0.99999993, 0.99999993, 0.99999978, 0.99999978,
0.99999978, 0.99999978, 0.99999932, 0.99999932, 0.99999932,
0.99999932, 0.99999797, 0.99999797, 0.99999797, 0.99999797,
0.99999417, 0.99999417, 0.99999417, 0.99999417, 0.999984 ,
0.999984 , 0.999984 , 0.999984 , 0.99995804, 0.99995804,
0.99995804, 0.99995804, 0.99989499, 0.99989499, 0.99989499,
0.99989499, 0.99974962, 0.99974962, 0.99974962, 0.99974962,
0.99943231, 0.99943231, 0.99943231, 0.99943231, 0.9987784 ,
0.9987784 , 0.9987784 , 0.9987784 , 0.99751004, 0.99751004,
0.99751004, 0.99751004, 0.99520166, 0.99520166, 0.99520166,
0.99520166, 0.99127057, 0.99127057, 0.99127057, 0.99127057,
0.98501906, 0.98501906, 0.98501906, 0.98501906, 0.97574203,
0.97574203, 0.97574203, 0.97574203, 0.96288161, 0.96288161,
0.96288161, 0.96288161, 0.94617367, 0.94617367, 0.94617367,
0.94617367, 0.92571938, 0.92571938, 0.92571938, 0.92571938,
0.90194529, 0.90194529, 0.90194529, 0.90194529, 0.87546863,
0.87546863, 0.87546863, 0.87546863, 0.84692236, 0.84692236,
0.84692236, 0.84692236, 0.81685217, 0.81685217, 0.81685217,
0.81685217, 0.78638667, 0.78638667, 0.78638667, 0.78638667,
0.75718146, 0.75718146, 0.75718146, 0.75718146, 0.72942531,
0.72942531, 0.72942531, 0.72942531, 0.70316587, 0.70316587,
0.70316587, 0.70316587, 0.67858288, 0.67858288, 0.67858288,
0.67858288, 0.65597405, 0.65597405, 0.65597405, 0.65597405,
0.63575206, 0.63575206, 0.63575206, 0.63575206, 0.61840948,
0.61840948, 0.61840948, 0.61840948, 0.60438506, 0.60438506,
0.60438506, 0.60438506, 0.59393624, 0.59393624, 0.59393624,
0.59393624, 0.58684429, 0.58684429, 0.58684429, 0.58684429,
0.58260576, 0.58260576, 0.58260576, 0.58260576, 0.58011986,
0.58011986, 0.58011986, 0.58011986, 0.57869565, 0.57869565,
0.57869565, 0.57869565, 0.57744153, 0.57744153, 0.57744153,
0.57744153, 0.57608399, 0.57608399, 0.57608399, 0.57608399,
0.57399938, 0.57399938, 0.57399938, 0.57399938, 0.57135742,
0.57135742, 0.57135742, 0.57135742, 0.56964605, 0.56964605,
0.56964605, 0.56964605, 0.56892105, 0.56892105, 0.56892105,
0.56892105, 0.56882419, 0.56882419, 0.56882419, 0.56882419,
0.56950857, 0.56950857, 0.56950857, 0.56950857, 0.57114483,
0.57114483, 0.57114483, 0.57114483, 0.57107418, 0.57107418,
0.57107418, 0.57107418, 0.56920045, 0.56920045, 0.56920045,
0.56920045, 0.56832702, 0.56832702, 0.56832702, 0.56832702,
0.58078103, 0.58078103, 0.58078103, 0.58078103, 0.79262627,
0.79262627, 0.79262627, 0.79262627, 4.86702127, 4.86702127,
4.86702127, 4.86702127, 5.78223717, 5.78223717, 5.78223717,
5.78223717, 3.81184601, 3.81184601, 3.81184601, 3.81184601,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974493e+01, -1.95974493e+01, -1.95974493e+01, -1.95974493e+01,
-1.95974475e+01, -1.95974475e+01, -1.95974475e+01, -1.95974475e+01,
-1.95974419e+01, -1.95974419e+01, -1.95974419e+01, -1.95974419e+01,
-1.95974246e+01, -1.95974246e+01, -1.95974246e+01, -1.95974246e+01,
-1.95973740e+01, -1.95973740e+01, -1.95973740e+01, -1.95973740e+01,
-1.95972319e+01, -1.95972319e+01, -1.95972319e+01, -1.95972319e+01,
-1.95968514e+01, -1.95968514e+01, -1.95968514e+01, -1.95968514e+01,
-1.95958800e+01, -1.95958800e+01, -1.95958800e+01, -1.95958800e+01,
-1.95935206e+01, -1.95935206e+01, -1.95935206e+01, -1.95935206e+01,
-1.95880809e+01, -1.95880809e+01, -1.95880809e+01, -1.95880809e+01,
-1.95762053e+01, -1.95762053e+01, -1.95762053e+01, -1.95762053e+01,
-1.95517244e+01, -1.95517244e+01, -1.95517244e+01, -1.95517244e+01,
-1.95042089e+01, -1.95042089e+01, -1.95042089e+01, -1.95042089e+01,
-1.94176204e+01, -1.94176204e+01, -1.94176204e+01, -1.94176204e+01,
-1.92698195e+01, -1.92698195e+01, -1.92698195e+01, -1.92698195e+01,
-1.90338503e+01, -1.90338503e+01, -1.90338503e+01, -1.90338503e+01,
-1.86815082e+01, -1.86815082e+01, -1.86815082e+01, -1.86815082e+01,
-1.81886240e+01, -1.81886240e+01, -1.81886240e+01, -1.81886240e+01,
-1.75402879e+01, -1.75402879e+01, -1.75402879e+01, -1.75402879e+01,
-1.67338090e+01, -1.67338090e+01, -1.67338090e+01, -1.67338090e+01,
-1.57780412e+01, -1.57780412e+01, -1.57780412e+01, -1.57780412e+01,
-1.46892782e+01, -1.46892782e+01, -1.46892782e+01, -1.46892782e+01,
-1.34850821e+01, -1.34850821e+01, -1.34850821e+01, -1.34850821e+01,
-1.21784352e+01, -1.21784352e+01, -1.21784352e+01, -1.21784352e+01,
-1.08233333e+01, -1.08233333e+01, -1.08233333e+01, -1.08233333e+01,
-9.48224377e+00, -9.48224377e+00, -9.48224377e+00, -9.48224377e+00,
-8.16634118e+00, -8.16634118e+00, -8.16634118e+00, -8.16634118e+00,
-6.88441851e+00, -6.88441851e+00, -6.88441851e+00, -6.88441851e+00,
-5.64948922e+00, -5.64948922e+00, -5.64948922e+00, -5.64948922e+00,
-4.48186684e+00, -4.48186684e+00, -4.48186684e+00, -4.48186684e+00,
-3.41031651e+00, -3.41031651e+00, -3.41031651e+00, -3.41031651e+00,
-2.46946575e+00, -2.46946575e+00, -2.46946575e+00, -2.46946575e+00,
-1.69431946e+00, -1.69431946e+00, -1.69431946e+00, -1.69431946e+00,
-1.10616540e+00, -1.10616540e+00, -1.10616540e+00, -1.10616540e+00,
-7.06921216e-01, -7.06921216e-01, -7.06921216e-01, -7.06921216e-01,
-4.60561327e-01, -4.60561327e-01, -4.60561327e-01, -4.60561327e-01,
-3.27519514e-01, -3.27519514e-01, -3.27519514e-01, -3.27519514e-01,
-2.41286344e-01, -2.41286344e-01, -2.41286344e-01, -2.41286344e-01,
-1.75610234e-01, -1.75610234e-01, -1.75610234e-01, -1.75610234e-01,
-1.03249567e-01, -1.03249567e-01, -1.03249567e-01, -1.03249567e-01,
1.33675271e-02, 1.33675271e-02, 1.33675271e-02, 1.33675271e-02,
1.63319383e-01, 1.63319383e-01, 1.63319383e-01, 1.63319383e-01,
2.54046087e-01, 2.54046087e-01, 2.54046087e-01, 2.54046087e-01,
2.83350944e-01, 2.83350944e-01, 2.83350944e-01, 2.83350944e-01,
2.81705115e-01, 2.81705115e-01, 2.81705115e-01, 2.81705115e-01,
2.18881548e-01, 2.18881548e-01, 2.18881548e-01, 2.18881548e-01,
7.08959660e-02, 7.08959660e-02, 7.08959660e-02, 7.08959660e-02,
-4.37712428e-02, -4.37712428e-02, -4.37712428e-02, -4.37712428e-02,
-8.61595623e-02, -8.61595623e-02, -8.61595623e-02, -8.61595623e-02,
-9.95145426e-02, -9.95145426e-02, -9.95145426e-02, -9.95145426e-02,
-8.00099892e-02, -8.00099892e-02, -8.00099892e-02, -8.00099892e-02,
-1.40168724e-02, -1.40168724e-02, -1.40168724e-02, -1.40168724e-02,
4.44646346e-02, 4.44646346e-02, 4.44646346e-02, 4.44646346e-02,
5.51074031e-02, 5.51074031e-02, 5.51074031e-02, 5.51074031e-02,
-4.18963902e+00, -4.18963902e+00, -4.18963902e+00, -4.18963902e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999975e+02, 9.99999975e+02, 9.99999975e+02, 9.99999975e+02,
9.99999906e+02, 9.99999906e+02, 9.99999906e+02, 9.99999906e+02,
9.99999696e+02, 9.99999696e+02, 9.99999696e+02, 9.99999696e+02,
9.99999050e+02, 9.99999050e+02, 9.99999050e+02, 9.99999050e+02,
9.99997155e+02, 9.99997155e+02, 9.99997155e+02, 9.99997155e+02,
9.99991840e+02, 9.99991840e+02, 9.99991840e+02, 9.99991840e+02,
9.99977604e+02, 9.99977604e+02, 9.99977604e+02, 9.99977604e+02,
9.99941258e+02, 9.99941258e+02, 9.99941258e+02, 9.99941258e+02,
9.99852986e+02, 9.99852986e+02, 9.99852986e+02, 9.99852986e+02,
9.99649493e+02, 9.99649493e+02, 9.99649493e+02, 9.99649493e+02,
9.99205369e+02, 9.99205369e+02, 9.99205369e+02, 9.99205369e+02,
9.98290366e+02, 9.98290366e+02, 9.98290366e+02, 9.98290366e+02,
9.96516485e+02, 9.96516485e+02, 9.96516485e+02, 9.96516485e+02,
9.93290921e+02, 9.93290921e+02, 9.93290921e+02, 9.93290921e+02,
9.87805996e+02, 9.87805996e+02, 9.87805996e+02, 9.87805996e+02,
9.79103562e+02, 9.79103562e+02, 9.79103562e+02, 9.79103562e+02,
9.66233133e+02, 9.66233133e+02, 9.66233133e+02, 9.66233133e+02,
9.48475131e+02, 9.48475131e+02, 9.48475131e+02, 9.48475131e+02,
9.25547100e+02, 9.25547100e+02, 9.25547100e+02, 9.25547100e+02,
8.97696017e+02, 8.97696017e+02, 8.97696017e+02, 8.97696017e+02,
8.65627412e+02, 8.65627412e+02, 8.65627412e+02, 8.65627412e+02,
8.30301627e+02, 8.30301627e+02, 8.30301627e+02, 8.30301627e+02,
7.92679285e+02, 7.92679285e+02, 7.92679285e+02, 7.92679285e+02,
7.53520678e+02, 7.53520678e+02, 7.53520678e+02, 7.53520678e+02,
7.14478917e+02, 7.14478917e+02, 7.14478917e+02, 7.14478917e+02,
6.77632914e+02, 6.77632914e+02, 6.77632914e+02, 6.77632914e+02,
6.43143598e+02, 6.43143598e+02, 6.43143598e+02, 6.43143598e+02,
6.10999150e+02, 6.10999150e+02, 6.10999150e+02, 6.10999150e+02,
5.81341858e+02, 5.81341858e+02, 5.81341858e+02, 5.81341858e+02,
5.54448013e+02, 5.54448013e+02, 5.54448013e+02, 5.54448013e+02,
5.30711825e+02, 5.30711825e+02, 5.30711825e+02, 5.30711825e+02,
5.10603365e+02, 5.10603365e+02, 5.10603365e+02, 5.10603365e+02,
4.94516248e+02, 4.94516248e+02, 4.94516248e+02, 4.94516248e+02,
4.82637190e+02, 4.82637190e+02, 4.82637190e+02, 4.82637190e+02,
4.74635917e+02, 4.74635917e+02, 4.74635917e+02, 4.74635917e+02,
4.69895823e+02, 4.69895823e+02, 4.69895823e+02, 4.69895823e+02,
4.67151190e+02, 4.67151190e+02, 4.67151190e+02, 4.67151190e+02,
4.65611990e+02, 4.65611990e+02, 4.65611990e+02, 4.65611990e+02,
4.64275780e+02, 4.64275780e+02, 4.64275780e+02, 4.64275780e+02,
4.62848342e+02, 4.62848342e+02, 4.62848342e+02, 4.62848342e+02,
4.60626892e+02, 4.60626892e+02, 4.60626892e+02, 4.60626892e+02,
4.57799422e+02, 4.57799422e+02, 4.57799422e+02, 4.57799422e+02,
4.56027912e+02, 4.56027912e+02, 4.56027912e+02, 4.56027912e+02,
4.55382671e+02, 4.55382671e+02, 4.55382671e+02, 4.55382671e+02,
4.55509319e+02, 4.55509319e+02, 4.55509319e+02, 4.55509319e+02,
4.56736182e+02, 4.56736182e+02, 4.56736182e+02, 4.56736182e+02,
4.59533346e+02, 4.59533346e+02, 4.59533346e+02, 4.59533346e+02,
4.61594941e+02, 4.61594941e+02, 4.61594941e+02, 4.61594941e+02,
4.62637384e+02, 4.62637384e+02, 4.62637384e+02, 4.62637384e+02,
4.62728900e+02, 4.62728900e+02, 4.62728900e+02, 4.62728900e+02,
4.62351006e+02, 4.62351006e+02, 4.62351006e+02, 4.62351006e+02,
4.60928952e+02, 4.60928952e+02, 4.60928952e+02, 4.60928952e+02,
4.57695734e+02, 4.57695734e+02, 4.57695734e+02, 4.57695734e+02,
4.47171068e+02, 4.47171068e+02, 4.47171068e+02, 4.47171068e+02,
2.71217336e+02, 2.71217336e+02, 2.71217336e+02, 2.71217336e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999971,
0.99999971, 0.99999971, 0.99999971, 0.99999911, 0.99999911,
0.99999911, 0.99999911, 0.99999739, 0.99999739, 0.99999739,
0.99999739, 0.99999267, 0.99999267, 0.99999267, 0.99999267,
0.99998031, 0.99998031, 0.99998031, 0.99998031, 0.99994944,
0.99994944, 0.99994944, 0.99994944, 0.999876 , 0.999876 ,
0.999876 , 0.999876 , 0.9997101 , 0.9997101 , 0.9997101 ,
0.9997101 , 0.99935495, 0.99935495, 0.99935495, 0.99935495,
0.9986367 , 0.9986367 , 0.9986367 , 0.9986367 , 0.99726837,
0.99726837, 0.99726837, 0.99726837, 0.99482024, 0.99482024,
0.99482024, 0.99482024, 0.99071741, 0.99071741, 0.99071741,
0.99071741, 0.9842884 , 0.9842884 , 0.9842884 , 0.9842884 ,
0.9748737 , 0.9748737 , 0.9748737 , 0.9748737 , 0.96197251,
0.96197251, 0.96197251, 0.96197251, 0.94537359, 0.94537359,
0.94537359, 0.94537359, 0.92521078, 0.92521078, 0.92521078,
0.92521078, 0.90191525, 0.90191525, 0.90191525, 0.90191525,
0.876085 , 0.876085 , 0.876085 , 0.876085 , 0.84832273,
0.84832273, 0.84832273, 0.84832273, 0.81913764, 0.81913764,
0.81913764, 0.81913764, 0.78951498, 0.78951498, 0.78951498,
0.78951498, 0.76100793, 0.76100793, 0.76100793, 0.76100793,
0.73384867, 0.73384867, 0.73384867, 0.73384867, 0.70805934,
0.70805934, 0.70805934, 0.70805934, 0.68378781, 0.68378781,
0.68378781, 0.68378781, 0.66128539, 0.66128539, 0.66128539,
0.66128539, 0.64092085, 0.64092085, 0.64092085, 0.64092085,
0.62314771, 0.62314771, 0.62314771, 0.62314771, 0.60843108,
0.60843108, 0.60843108, 0.60843108, 0.59706805, 0.59706805,
0.59706805, 0.59706805, 0.58908105, 0.58908105, 0.58908105,
0.58908105, 0.58396071, 0.58396071, 0.58396071, 0.58396071,
0.5810339 , 0.5810339 , 0.5810339 , 0.5810339 , 0.57920442,
0.57920442, 0.57920442, 0.57920442, 0.57791599, 0.57791599,
0.57791599, 0.57791599, 0.57661402, 0.57661402, 0.57661402,
0.57661402, 0.5748629 , 0.5748629 , 0.5748629 , 0.5748629 ,
0.57227022, 0.57227022, 0.57227022, 0.57227022, 0.57028763,
0.57028763, 0.57028763, 0.57028763, 0.56933094, 0.56933094,
0.56933094, 0.56933094, 0.56902355, 0.56902355, 0.56902355,
0.56902355, 0.56940079, 0.56940079, 0.56940079, 0.56940079,
0.57104666, 0.57104666, 0.57104666, 0.57104666, 0.57246836,
0.57246836, 0.57246836, 0.57246836, 0.57162258, 0.57162258,
0.57162258, 0.57162258, 0.56923572, 0.56923572, 0.56923572,
0.56923572, 0.56817358, 0.56817358, 0.56817358, 0.56817358,
0.58016529, 0.58016529, 0.58016529, 0.58016529, 0.79143159,
0.79143159, 0.79143159, 0.79143159, 4.85974362, 4.85974362,
4.85974362, 4.85974362, 5.81302905, 5.81302905, 5.81302905,
5.81302905, 4.16554379, 4.16554379, 4.16554379, 4.16554379,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974469e+01, -1.95974469e+01, -1.95974469e+01, -1.95974469e+01,
-1.95974390e+01, -1.95974390e+01, -1.95974390e+01, -1.95974390e+01,
-1.95974166e+01, -1.95974166e+01, -1.95974166e+01, -1.95974166e+01,
-1.95973522e+01, -1.95973522e+01, -1.95973522e+01, -1.95973522e+01,
-1.95971757e+01, -1.95971757e+01, -1.95971757e+01, -1.95971757e+01,
-1.95967133e+01, -1.95967133e+01, -1.95967133e+01, -1.95967133e+01,
-1.95955581e+01, -1.95955581e+01, -1.95955581e+01, -1.95955581e+01,
-1.95928103e+01, -1.95928103e+01, -1.95928103e+01, -1.95928103e+01,
-1.95866019e+01, -1.95866019e+01, -1.95866019e+01, -1.95866019e+01,
-1.95733099e+01, -1.95733099e+01, -1.95733099e+01, -1.95733099e+01,
-1.95464179e+01, -1.95464179e+01, -1.95464179e+01, -1.95464179e+01,
-1.94951499e+01, -1.94951499e+01, -1.94951499e+01, -1.94951499e+01,
-1.94032968e+01, -1.94032968e+01, -1.94032968e+01, -1.94032968e+01,
-1.92489814e+01, -1.92489814e+01, -1.92489814e+01, -1.92489814e+01,
-1.90061827e+01, -1.90061827e+01, -1.90061827e+01, -1.90061827e+01,
-1.86483677e+01, -1.86483677e+01, -1.86483677e+01, -1.86483677e+01,
-1.81535351e+01, -1.81535351e+01, -1.81535351e+01, -1.81535351e+01,
-1.75089329e+01, -1.75089329e+01, -1.75089329e+01, -1.75089329e+01,
-1.67134622e+01, -1.67134622e+01, -1.67134622e+01, -1.67134622e+01,
-1.57766805e+01, -1.57766805e+01, -1.57766805e+01, -1.57766805e+01,
-1.47147662e+01, -1.47147662e+01, -1.47147662e+01, -1.47147662e+01,
-1.35447639e+01, -1.35447639e+01, -1.35447639e+01, -1.35447639e+01,
-1.22790265e+01, -1.22790265e+01, -1.22790265e+01, -1.22790265e+01,
-1.09641145e+01, -1.09641145e+01, -1.09641145e+01, -1.09641145e+01,
-9.66023669e+00, -9.66023669e+00, -9.66023669e+00, -9.66023669e+00,
-8.37815306e+00, -8.37815306e+00, -8.37815306e+00, -8.37815306e+00,
-7.12552266e+00, -7.12552266e+00, -7.12552266e+00, -7.12552266e+00,
-5.91304958e+00, -5.91304958e+00, -5.91304958e+00, -5.91304958e+00,
-4.75817216e+00, -4.75817216e+00, -4.75817216e+00, -4.75817216e+00,
-3.68577556e+00, -3.68577556e+00, -3.68577556e+00, -3.68577556e+00,
-2.72779239e+00, -2.72779239e+00, -2.72779239e+00, -2.72779239e+00,
-1.91777898e+00, -1.91777898e+00, -1.91777898e+00, -1.91777898e+00,
-1.28310499e+00, -1.28310499e+00, -1.28310499e+00, -1.28310499e+00,
-8.29422624e-01, -8.29422624e-01, -8.29422624e-01, -8.29422624e-01,
-5.41561776e-01, -5.41561776e-01, -5.41561776e-01, -5.41561776e-01,
-3.69927246e-01, -3.69927246e-01, -3.69927246e-01, -3.69927246e-01,
-2.73484493e-01, -2.73484493e-01, -2.73484493e-01, -2.73484493e-01,
-1.97816530e-01, -1.97816530e-01, -1.97816530e-01, -1.97816530e-01,
-1.26255045e-01, -1.26255045e-01, -1.26255045e-01, -1.26255045e-01,
-3.10231901e-02, -3.10231901e-02, -3.10231901e-02, -3.10231901e-02,
1.13087024e-01, 1.13087024e-01, 1.13087024e-01, 1.13087024e-01,
2.24997833e-01, 2.24997833e-01, 2.24997833e-01, 2.24997833e-01,
2.74197895e-01, 2.74197895e-01, 2.74197895e-01, 2.74197895e-01,
2.79075899e-01, 2.79075899e-01, 2.79075899e-01, 2.79075899e-01,
2.45111094e-01, 2.45111094e-01, 2.45111094e-01, 2.45111094e-01,
1.27012783e-01, 1.27012783e-01, 1.27012783e-01, 1.27012783e-01,
-3.74802683e-03, -3.74802683e-03, -3.74802683e-03, -3.74802683e-03,
-7.60495587e-02, -7.60495587e-02, -7.60495587e-02, -7.60495587e-02,
-9.11323448e-02, -9.11323448e-02, -9.11323448e-02, -9.11323448e-02,
-8.66414148e-02, -8.66414148e-02, -8.66414148e-02, -8.66414148e-02,
-4.09801118e-02, -4.09801118e-02, -4.09801118e-02, -4.09801118e-02,
3.37800291e-02, 3.37800291e-02, 3.37800291e-02, 3.37800291e-02,
6.27722422e-02, 6.27722422e-02, 6.27722422e-02, 6.27722422e-02,
3.77295256e-02, 3.77295256e-02, 3.77295256e-02, 3.77295256e-02,
-3.48506696e+00, -3.48506696e+00, -3.48506696e+00, -3.48506696e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999885e+02, 9.99999885e+02, 9.99999885e+02, 9.99999885e+02,
9.99999587e+02, 9.99999587e+02, 9.99999587e+02, 9.99999587e+02,
9.99998749e+02, 9.99998749e+02, 9.99998749e+02, 9.99998749e+02,
9.99996339e+02, 9.99996339e+02, 9.99996339e+02, 9.99996339e+02,
9.99989735e+02, 9.99989735e+02, 9.99989735e+02, 9.99989735e+02,
9.99972435e+02, 9.99972435e+02, 9.99972435e+02, 9.99972435e+02,
9.99929213e+02, 9.99929213e+02, 9.99929213e+02, 9.99929213e+02,
9.99826413e+02, 9.99826413e+02, 9.99826413e+02, 9.99826413e+02,
9.99594173e+02, 9.99594173e+02, 9.99594173e+02, 9.99594173e+02,
9.99097110e+02, 9.99097110e+02, 9.99097110e+02, 9.99097110e+02,
9.98092125e+02, 9.98092125e+02, 9.98092125e+02, 9.98092125e+02,
9.96178599e+02, 9.96178599e+02, 9.96178599e+02, 9.96178599e+02,
9.92758220e+02, 9.92758220e+02, 9.92758220e+02, 9.92758220e+02,
9.87034806e+02, 9.87034806e+02, 9.87034806e+02, 9.87034806e+02,
9.78087556e+02, 9.78087556e+02, 9.78087556e+02, 9.78087556e+02,
9.65030100e+02, 9.65030100e+02, 9.65030100e+02, 9.65030100e+02,
9.47221585e+02, 9.47221585e+02, 9.47221585e+02, 9.47221585e+02,
9.24449980e+02, 9.24449980e+02, 9.24449980e+02, 9.24449980e+02,
8.97001618e+02, 8.97001618e+02, 8.97001618e+02, 8.97001618e+02,
8.65580147e+02, 8.65580147e+02, 8.65580147e+02, 8.65580147e+02,
8.31110268e+02, 8.31110268e+02, 8.31110268e+02, 8.31110268e+02,
7.94502788e+02, 7.94502788e+02, 7.94502788e+02, 7.94502788e+02,
7.56466644e+02, 7.56466644e+02, 7.56466644e+02, 7.56466644e+02,
7.18450539e+02, 7.18450539e+02, 7.18450539e+02, 7.18450539e+02,
6.82418620e+02, 6.82418620e+02, 6.82418620e+02, 6.82418620e+02,
6.48592320e+02, 6.48592320e+02, 6.48592320e+02, 6.48592320e+02,
6.16938186e+02, 6.16938186e+02, 6.16938186e+02, 6.16938186e+02,
5.87570375e+02, 5.87570375e+02, 5.87570375e+02, 5.87570375e+02,
5.60716611e+02, 5.60716611e+02, 5.60716611e+02, 5.60716611e+02,
5.36732244e+02, 5.36732244e+02, 5.36732244e+02, 5.36732244e+02,
5.16053779e+02, 5.16053779e+02, 5.16053779e+02, 5.16053779e+02,
4.99117615e+02, 4.99117615e+02, 4.99117615e+02, 4.99117615e+02,
4.86162589e+02, 4.86162589e+02, 4.86162589e+02, 4.86162589e+02,
4.77126861e+02, 4.77126861e+02, 4.77126861e+02, 4.77126861e+02,
4.71375846e+02, 4.71375846e+02, 4.71375846e+02, 4.71375846e+02,
4.68122671e+02, 4.68122671e+02, 4.68122671e+02, 4.68122671e+02,
4.66119857e+02, 4.66119857e+02, 4.66119857e+02, 4.66119857e+02,
4.64734326e+02, 4.64734326e+02, 4.64734326e+02, 4.64734326e+02,
4.63344884e+02, 4.63344884e+02, 4.63344884e+02, 4.63344884e+02,
4.61475963e+02, 4.61475963e+02, 4.61475963e+02, 4.61475963e+02,
4.58685817e+02, 4.58685817e+02, 4.58685817e+02, 4.58685817e+02,
4.56599529e+02, 4.56599529e+02, 4.56599529e+02, 4.56599529e+02,
4.55674010e+02, 4.55674010e+02, 4.55674010e+02, 4.55674010e+02,
4.55497004e+02, 4.55497004e+02, 4.55497004e+02, 4.55497004e+02,
4.56154582e+02, 4.56154582e+02, 4.56154582e+02, 4.56154582e+02,
4.58463143e+02, 4.58463143e+02, 4.58463143e+02, 4.58463143e+02,
4.61025271e+02, 4.61025271e+02, 4.61025271e+02, 4.61025271e+02,
4.62220731e+02, 4.62220731e+02, 4.62220731e+02, 4.62220731e+02,
4.62680443e+02, 4.62680443e+02, 4.62680443e+02, 4.62680443e+02,
4.62542981e+02, 4.62542981e+02, 4.62542981e+02, 4.62542981e+02,
4.61609496e+02, 4.61609496e+02, 4.61609496e+02, 4.61609496e+02,
4.60016813e+02, 4.60016813e+02, 4.60016813e+02, 4.60016813e+02,
4.57384347e+02, 4.57384347e+02, 4.57384347e+02, 4.57384347e+02,
4.50690581e+02, 4.50690581e+02, 4.50690581e+02, 4.50690581e+02,
3.00854088e+02, 3.00854088e+02, 3.00854088e+02, 3.00854088e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999965, 0.99999965, 0.99999965, 0.99999965, 0.99999883,
0.99999883, 0.99999883, 0.99999883, 0.99999668, 0.99999668,
0.99999668, 0.99999668, 0.99999087, 0.99999087, 0.99999087,
0.99999087, 0.99997599, 0.99997599, 0.99997599, 0.99997599,
0.99993958, 0.99993958, 0.99993958, 0.99993958, 0.99985468,
0.99985468, 0.99985468, 0.99985468, 0.99966655, 0.99966655,
0.99966655, 0.99966655, 0.99927127, 0.99927127, 0.99927127,
0.99927127, 0.9984861 , 0.9984861 , 0.9984861 , 0.9984861 ,
0.99701584, 0.99701584, 0.99701584, 0.99701584, 0.99442799,
0.99442799, 0.99442799, 0.99442799, 0.99015699, 0.99015699,
0.99015699, 0.99015699, 0.98355812, 0.98355812, 0.98355812,
0.98355812, 0.97401619, 0.97401619, 0.97401619, 0.97401619,
0.96108383, 0.96108383, 0.96108383, 0.96108383, 0.94459768,
0.94459768, 0.94459768, 0.94459768, 0.92471963, 0.92471963,
0.92471963, 0.92471963, 0.90188293, 0.90188293, 0.90188293,
0.90188293, 0.8766663 , 0.8766663 , 0.8766663 , 0.8766663 ,
0.84964378, 0.84964378, 0.84964378, 0.84964378, 0.82129228,
0.82129228, 0.82129228, 0.82129228, 0.79247278, 0.79247278,
0.79247278, 0.79247278, 0.76464054, 0.76464054, 0.76464054,
0.76464054, 0.73806341, 0.73806341, 0.73806341, 0.73806341,
0.71274558, 0.71274558, 0.71274558, 0.71274558, 0.68880715,
0.68880715, 0.68880715, 0.68880715, 0.66646177, 0.66646177,
0.66646177, 0.66646177, 0.64602927, 0.64602927, 0.64602927,
0.64602927, 0.62792918, 0.62792918, 0.62792918, 0.62792918,
0.61261162, 0.61261162, 0.61261162, 0.61261162, 0.60044938,
0.60044938, 0.60044938, 0.60044938, 0.59153236, 0.59153236,
0.59153236, 0.59153236, 0.58562922, 0.58562922, 0.58562922,
0.58562922, 0.58199914, 0.58199914, 0.58199914, 0.58199914,
0.57990817, 0.57990817, 0.57990817, 0.57990817, 0.57839319,
0.57839319, 0.57839319, 0.57839319, 0.57707272, 0.57707272,
0.57707272, 0.57707272, 0.57556284, 0.57556284, 0.57556284,
0.57556284, 0.57325415, 0.57325415, 0.57325415, 0.57325415,
0.57098055, 0.57098055, 0.57098055, 0.57098055, 0.5697302 ,
0.5697302 , 0.5697302 , 0.5697302 , 0.56931036, 0.56931036,
0.56931036, 0.56931036, 0.56937657, 0.56937657, 0.56937657,
0.56937657, 0.5705669 , 0.5705669 , 0.5705669 , 0.5705669 ,
0.57256309, 0.57256309, 0.57256309, 0.57256309, 0.57325538,
0.57325538, 0.57325538, 0.57325538, 0.57183133, 0.57183133,
0.57183133, 0.57183133, 0.56912943, 0.56912943, 0.56912943,
0.56912943, 0.56776262, 0.56776262, 0.56776262, 0.56776262,
0.57933344, 0.57933344, 0.57933344, 0.57933344, 0.79052151,
0.79052151, 0.79052151, 0.79052151, 4.85360037, 4.85360037,
4.85360037, 4.85360037, 5.84137874, 5.84137874, 5.84137874,
5.84137874, 4.52085551, 4.52085551, 4.52085551, 4.52085551,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974370e+01, -1.95974370e+01, -1.95974370e+01, -1.95974370e+01,
-1.95974062e+01, -1.95974062e+01, -1.95974062e+01, -1.95974062e+01,
-1.95973256e+01, -1.95973256e+01, -1.95973256e+01, -1.95973256e+01,
-1.95971084e+01, -1.95971084e+01, -1.95971084e+01, -1.95971084e+01,
-1.95965517e+01, -1.95965517e+01, -1.95965517e+01, -1.95965517e+01,
-1.95951892e+01, -1.95951892e+01, -1.95951892e+01, -1.95951892e+01,
-1.95920125e+01, -1.95920125e+01, -1.95920125e+01, -1.95920125e+01,
-1.95849721e+01, -1.95849721e+01, -1.95849721e+01, -1.95849721e+01,
-1.95701774e+01, -1.95701774e+01, -1.95701774e+01, -1.95701774e+01,
-1.95407776e+01, -1.95407776e+01, -1.95407776e+01, -1.95407776e+01,
-1.94856819e+01, -1.94856819e+01, -1.94856819e+01, -1.94856819e+01,
-1.93885625e+01, -1.93885625e+01, -1.93885625e+01, -1.93885625e+01,
-1.92278595e+01, -1.92278595e+01, -1.92278595e+01, -1.92278595e+01,
-1.89785124e+01, -1.89785124e+01, -1.89785124e+01, -1.89785124e+01,
-1.86156156e+01, -1.86156156e+01, -1.86156156e+01, -1.86156156e+01,
-1.81192078e+01, -1.81192078e+01, -1.81192078e+01, -1.81192078e+01,
-1.74785049e+01, -1.74785049e+01, -1.74785049e+01, -1.74785049e+01,
-1.66938078e+01, -1.66938078e+01, -1.66938078e+01, -1.66938078e+01,
-1.57752383e+01, -1.57752383e+01, -1.57752383e+01, -1.57752383e+01,
-1.47387955e+01, -1.47387955e+01, -1.47387955e+01, -1.47387955e+01,
-1.36009952e+01, -1.36009952e+01, -1.36009952e+01, -1.36009952e+01,
-1.23736297e+01, -1.23736297e+01, -1.23736297e+01, -1.23736297e+01,
-1.10969073e+01, -1.10969073e+01, -1.10969073e+01, -1.10969073e+01,
-9.82853423e+00, -9.82853423e+00, -9.82853423e+00, -9.82853423e+00,
-8.57904516e+00, -8.57904516e+00, -8.57904516e+00, -8.57904516e+00,
-7.35526177e+00, -7.35526177e+00, -7.35526177e+00, -7.35526177e+00,
-6.16596318e+00, -6.16596318e+00, -6.16596318e+00, -6.16596318e+00,
-5.02576394e+00, -5.02576394e+00, -5.02576394e+00, -5.02576394e+00,
-3.95645826e+00, -3.95645826e+00, -3.95645826e+00, -3.95645826e+00,
-2.98656698e+00, -2.98656698e+00, -2.98656698e+00, -2.98656698e+00,
-2.14870831e+00, -2.14870831e+00, -2.14870831e+00, -2.14870831e+00,
-1.47116257e+00, -1.47116257e+00, -1.47116257e+00, -1.47116257e+00,
-9.69349069e-01, -9.69349069e-01, -9.69349069e-01, -9.69349069e-01,
-6.31501761e-01, -6.31501761e-01, -6.31501761e-01, -6.31501761e-01,
-4.28578097e-01, -4.28578097e-01, -4.28578097e-01, -4.28578097e-01,
-3.05263503e-01, -3.05263503e-01, -3.05263503e-01, -3.05263503e-01,
-2.25158174e-01, -2.25158174e-01, -2.25158174e-01, -2.25158174e-01,
-1.50493126e-01, -1.50493126e-01, -1.50493126e-01, -1.50493126e-01,
-6.50892648e-02, -6.50892648e-02, -6.50892648e-02, -6.50892648e-02,
6.41363546e-02, 6.41363546e-02, 6.41363546e-02, 6.41363546e-02,
1.88613090e-01, 1.88613090e-01, 1.88613090e-01, 1.88613090e-01,
2.56441246e-01, 2.56441246e-01, 2.56441246e-01, 2.56441246e-01,
2.75531189e-01, 2.75531189e-01, 2.75531189e-01, 2.75531189e-01,
2.60699180e-01, 2.60699180e-01, 2.60699180e-01, 2.60699180e-01,
1.76470541e-01, 1.76470541e-01, 1.76470541e-01, 1.76470541e-01,
3.56270391e-02, 3.56270391e-02, 3.56270391e-02, 3.56270391e-02,
-4.88762956e-02, -4.88762956e-02, -4.88762956e-02, -4.88762956e-02,
-8.67370262e-02, -8.67370262e-02, -8.67370262e-02, -8.67370262e-02,
-8.76578509e-02, -8.76578509e-02, -8.76578509e-02, -8.76578509e-02,
-6.10342800e-02, -6.10342800e-02, -6.10342800e-02, -6.10342800e-02,
9.32487586e-03, 9.32487586e-03, 9.32487586e-03, 9.32487586e-03,
6.88182460e-02, 6.88182460e-02, 6.88182460e-02, 6.88182460e-02,
7.39662064e-02, 7.39662064e-02, 7.39662064e-02, 7.39662064e-02,
1.82197835e-02, 1.82197835e-02, 1.82197835e-02, 1.82197835e-02,
-2.88079782e+00, -2.88079782e+00, -2.88079782e+00, -2.88079782e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999514e+02, 9.99999514e+02, 9.99999514e+02, 9.99999514e+02,
9.99998362e+02, 9.99998362e+02, 9.99998362e+02, 9.99998362e+02,
9.99995345e+02, 9.99995345e+02, 9.99995345e+02, 9.99995345e+02,
9.99987220e+02, 9.99987220e+02, 9.99987220e+02, 9.99987220e+02,
9.99966390e+02, 9.99966390e+02, 9.99966390e+02, 9.99966390e+02,
9.99915413e+02, 9.99915413e+02, 9.99915413e+02, 9.99915413e+02,
9.99796564e+02, 9.99796564e+02, 9.99796564e+02, 9.99796564e+02,
9.99533214e+02, 9.99533214e+02, 9.99533214e+02, 9.99533214e+02,
9.98980002e+02, 9.98980002e+02, 9.98980002e+02, 9.98980002e+02,
9.97881452e+02, 9.97881452e+02, 9.97881452e+02, 9.97881452e+02,
9.95825567e+02, 9.95825567e+02, 9.95825567e+02, 9.95825567e+02,
9.92210502e+02, 9.92210502e+02, 9.92210502e+02, 9.92210502e+02,
9.86253649e+02, 9.86253649e+02, 9.86253649e+02, 9.86253649e+02,
9.77072357e+02, 9.77072357e+02, 9.77072357e+02, 9.77072357e+02,
9.63842431e+02, 9.63842431e+02, 9.63842431e+02, 9.63842431e+02,
9.45996603e+02, 9.45996603e+02, 9.45996603e+02, 9.45996603e+02,
9.23386326e+02, 9.23386326e+02, 9.23386326e+02, 9.23386326e+02,
8.96331244e+02, 8.96331244e+02, 8.96331244e+02, 8.96331244e+02,
8.65530285e+02, 8.65530285e+02, 8.65530285e+02, 8.65530285e+02,
8.31873307e+02, 8.31873307e+02, 8.31873307e+02, 8.31873307e+02,
7.96224374e+02, 7.96224374e+02, 7.96224374e+02, 7.96224374e+02,
7.59246685e+02, 7.59246685e+02, 7.59246685e+02, 7.59246685e+02,
7.22211610e+02, 7.22211610e+02, 7.22211610e+02, 7.22211610e+02,
6.86971971e+02, 6.86971971e+02, 6.86971971e+02, 6.86971971e+02,
6.53798816e+02, 6.53798816e+02, 6.53798816e+02, 6.53798816e+02,
6.22643027e+02, 6.22643027e+02, 6.22643027e+02, 6.22643027e+02,
5.93594856e+02, 5.93594856e+02, 5.93594856e+02, 5.93594856e+02,
5.66846654e+02, 5.66846654e+02, 5.66846654e+02, 5.66846654e+02,
5.42704013e+02, 5.42704013e+02, 5.42704013e+02, 5.42704013e+02,
5.21575845e+02, 5.21575845e+02, 5.21575845e+02, 5.21575845e+02,
5.03891081e+02, 5.03891081e+02, 5.03891081e+02, 5.03891081e+02,
4.89983321e+02, 4.89983321e+02, 4.89983321e+02, 4.89983321e+02,
4.79868835e+02, 4.79868835e+02, 4.79868835e+02, 4.79868835e+02,
4.73219637e+02, 4.73219637e+02, 4.73219637e+02, 4.73219637e+02,
4.69161552e+02, 4.69161552e+02, 4.69161552e+02, 4.69161552e+02,
4.66853875e+02, 4.66853875e+02, 4.66853875e+02, 4.66853875e+02,
4.65206448e+02, 4.65206448e+02, 4.65206448e+02, 4.65206448e+02,
4.63785479e+02, 4.63785479e+02, 4.63785479e+02, 4.63785479e+02,
4.62163120e+02, 4.62163120e+02, 4.62163120e+02, 4.62163120e+02,
4.59669599e+02, 4.59669599e+02, 4.59669599e+02, 4.59669599e+02,
4.57239211e+02, 4.57239211e+02, 4.57239211e+02, 4.57239211e+02,
4.55974237e+02, 4.55974237e+02, 4.55974237e+02, 4.55974237e+02,
4.55650208e+02, 4.55650208e+02, 4.55650208e+02, 4.55650208e+02,
4.55892185e+02, 4.55892185e+02, 4.55892185e+02, 4.55892185e+02,
4.57462397e+02, 4.57462397e+02, 4.57462397e+02, 4.57462397e+02,
4.60168133e+02, 4.60168133e+02, 4.60168133e+02, 4.60168133e+02,
4.61914920e+02, 4.61914920e+02, 4.61914920e+02, 4.61914920e+02,
4.62462614e+02, 4.62462614e+02, 4.62462614e+02, 4.62462614e+02,
4.62562577e+02, 4.62562577e+02, 4.62562577e+02, 4.62562577e+02,
4.62068300e+02, 4.62068300e+02, 4.62068300e+02, 4.62068300e+02,
4.60681300e+02, 4.60681300e+02, 4.60681300e+02, 4.60681300e+02,
4.59493495e+02, 4.59493495e+02, 4.59493495e+02, 4.59493495e+02,
4.57392928e+02, 4.57392928e+02, 4.57392928e+02, 4.57392928e+02,
4.53913561e+02, 4.53913561e+02, 4.53913561e+02, 4.53913561e+02,
3.30038409e+02, 3.30038409e+02, 3.30038409e+02, 3.30038409e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999867, 0.99999867, 0.99999867, 0.99999867, 0.99999578,
0.99999578, 0.99999578, 0.99999578, 0.99998875, 0.99998875,
0.99998875, 0.99998875, 0.99997098, 0.99997098, 0.99997098,
0.99997098, 0.99992836, 0.99992836, 0.99992836, 0.99992836,
0.99983087, 0.99983087, 0.99983087, 0.99983087, 0.99961879,
0.99961879, 0.99961879, 0.99961879, 0.99918112, 0.99918112,
0.99918112, 0.99918112, 0.9983266 , 0.9983266 , 0.9983266 ,
0.9983266 , 0.99675268, 0.99675268, 0.99675268, 0.99675268,
0.99402545, 0.99402545, 0.99402545, 0.99402545, 0.98958998,
0.98958998, 0.98958998, 0.98958998, 0.98282879, 0.98282879,
0.98282879, 0.98282879, 0.97316956, 0.97316956, 0.97316956,
0.97316956, 0.96021489, 0.96021489, 0.96021489, 0.96021489,
0.94384469, 0.94384469, 0.94384469, 0.94384469, 0.92424484,
0.92424484, 0.92424484, 0.92424484, 0.90184854, 0.90184854,
0.90184854, 0.90184854, 0.87721523, 0.87721523, 0.87721523,
0.87721523, 0.85089155, 0.85089155, 0.85089155, 0.85089155,
0.82332582, 0.82332582, 0.82332582, 0.82332582, 0.79527381,
0.79527381, 0.79527381, 0.79527381, 0.76809201, 0.76809201,
0.76809201, 0.76809201, 0.74208156, 0.74208156, 0.74208156,
0.74208156, 0.71723328, 0.71723328, 0.71723328, 0.71723328,
0.69364464, 0.69364464, 0.69364464, 0.69364464, 0.67149312,
0.67149312, 0.67149312, 0.67149312, 0.65105899, 0.65105899,
0.65105899, 0.65105899, 0.63271791, 0.63271791, 0.63271791,
0.63271791, 0.61690679, 0.61690679, 0.61690679, 0.61690679,
0.60401515, 0.60401515, 0.60401515, 0.60401515, 0.59425918,
0.59425918, 0.59425918, 0.59425918, 0.58748277, 0.58748277,
0.58748277, 0.58748277, 0.58322875, 0.58322875, 0.58322875,
0.58322875, 0.58062538, 0.58062538, 0.58062538, 0.58062538,
0.57898247, 0.57898247, 0.57898247, 0.57898247, 0.57755952,
0.57755952, 0.57755952, 0.57755952, 0.57611261, 0.57611261,
0.57611261, 0.57611261, 0.57414348, 0.57414348, 0.57414348,
0.57414348, 0.57178794, 0.57178794, 0.57178794, 0.57178794,
0.57021715, 0.57021715, 0.57021715, 0.57021715, 0.56956111,
0.56956111, 0.56956111, 0.56956111, 0.5694658 , 0.5694658 ,
0.5694658 , 0.5694658 , 0.57015934, 0.57015934, 0.57015934,
0.57015934, 0.57215308, 0.57215308, 0.57215308, 0.57215308,
0.57357105, 0.57357105, 0.57357105, 0.57357105, 0.57362037,
0.57362037, 0.57362037, 0.57362037, 0.57184744, 0.57184744,
0.57184744, 0.57184744, 0.56886696, 0.56886696, 0.56886696,
0.56886696, 0.56703172, 0.56703172, 0.56703172, 0.56703172,
0.57864765, 0.57864765, 0.57864765, 0.57864765, 0.78978655,
0.78978655, 0.78978655, 0.78978655, 4.84874627, 4.84874627,
4.84874627, 4.84874627, 5.86893587, 5.86893587, 5.86893587,
5.86893587, 4.87589923, 4.87589923, 4.87589923, 4.87589923,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974004e+01, -1.95974004e+01, -1.95974004e+01, -1.95974004e+01,
-1.95972922e+01, -1.95972922e+01, -1.95972922e+01, -1.95972922e+01,
-1.95970290e+01, -1.95970290e+01, -1.95970290e+01, -1.95970290e+01,
-1.95963642e+01, -1.95963642e+01, -1.95963642e+01, -1.95963642e+01,
-1.95947694e+01, -1.95947694e+01, -1.95947694e+01, -1.95947694e+01,
-1.95911214e+01, -1.95911214e+01, -1.95911214e+01, -1.95911214e+01,
-1.95831849e+01, -1.95831849e+01, -1.95831849e+01, -1.95831849e+01,
-1.95668027e+01, -1.95668027e+01, -1.95668027e+01, -1.95668027e+01,
-1.95348031e+01, -1.95348031e+01, -1.95348031e+01, -1.95348031e+01,
-1.94758134e+01, -1.94758134e+01, -1.94758134e+01, -1.94758134e+01,
-1.93734365e+01, -1.93734365e+01, -1.93734365e+01, -1.93734365e+01,
-1.92064799e+01, -1.92064799e+01, -1.92064799e+01, -1.92064799e+01,
-1.89508611e+01, -1.89508611e+01, -1.89508611e+01, -1.89508611e+01,
-1.85832555e+01, -1.85832555e+01, -1.85832555e+01, -1.85832555e+01,
-1.80856173e+01, -1.80856173e+01, -1.80856173e+01, -1.80856173e+01,
-1.74489569e+01, -1.74489569e+01, -1.74489569e+01, -1.74489569e+01,
-1.66748031e+01, -1.66748031e+01, -1.66748031e+01, -1.66748031e+01,
-1.57737222e+01, -1.57737222e+01, -1.57737222e+01, -1.57737222e+01,
-1.47614795e+01, -1.47614795e+01, -1.47614795e+01, -1.47614795e+01,
-1.36540462e+01, -1.36540462e+01, -1.36540462e+01, -1.36540462e+01,
-1.24627500e+01, -1.24627500e+01, -1.24627500e+01, -1.24627500e+01,
-1.12223935e+01, -1.12223935e+01, -1.12223935e+01, -1.12223935e+01,
-9.98784228e+00, -9.98784228e+00, -9.98784228e+00, -9.98784228e+00,
-8.76973584e+00, -8.76973584e+00, -8.76973584e+00, -8.76973584e+00,
-7.57415342e+00, -7.57415342e+00, -7.57415342e+00, -7.57415342e+00,
-6.40832079e+00, -6.40832079e+00, -6.40832079e+00, -6.40832079e+00,
-5.28453104e+00, -5.28453104e+00, -5.28453104e+00, -5.28453104e+00,
-4.22138557e+00, -4.22138557e+00, -4.22138557e+00, -4.22138557e+00,
-3.24449956e+00, -3.24449956e+00, -3.24449956e+00, -3.24449956e+00,
-2.38417185e+00, -2.38417185e+00, -2.38417185e+00, -2.38417185e+00,
-1.67026111e+00, -1.67026111e+00, -1.67026111e+00, -1.67026111e+00,
-1.12140919e+00, -1.12140919e+00, -1.12140919e+00, -1.12140919e+00,
-7.38356684e-01, -7.38356684e-01, -7.38356684e-01, -7.38356684e-01,
-4.93334980e-01, -4.93334980e-01, -4.93334980e-01, -4.93334980e-01,
-3.49056282e-01, -3.49056282e-01, -3.49056282e-01, -3.49056282e-01,
-2.52375478e-01, -2.52375478e-01, -2.52375478e-01, -2.52375478e-01,
-1.75397469e-01, -1.75397469e-01, -1.75397469e-01, -1.75397469e-01,
-9.51083212e-02, -9.51083212e-02, -9.51083212e-02, -9.51083212e-02,
1.66418888e-02, 1.66418888e-02, 1.66418888e-02, 1.66418888e-02,
1.50553797e-01, 1.50553797e-01, 1.50553797e-01, 1.50553797e-01,
2.34098283e-01, 2.34098283e-01, 2.34098283e-01, 2.34098283e-01,
2.65453663e-01, 2.65453663e-01, 2.65453663e-01, 2.65453663e-01,
2.65583246e-01, 2.65583246e-01, 2.65583246e-01, 2.65583246e-01,
2.15878598e-01, 2.15878598e-01, 2.15878598e-01, 2.15878598e-01,
8.50200679e-02, 8.50200679e-02, 8.50200679e-02, 8.50200679e-02,
-2.53150527e-02, -2.53150527e-02, -2.53150527e-02, -2.53150527e-02,
-7.07834536e-02, -7.07834536e-02, -7.07834536e-02, -7.07834536e-02,
-8.52030740e-02, -8.52030740e-02, -8.52030740e-02, -8.52030740e-02,
-7.38433396e-02, -7.38433396e-02, -7.38433396e-02, -7.38433396e-02,
-1.83894011e-02, -1.83894011e-02, -1.83894011e-02, -1.83894011e-02,
4.92953993e-02, 4.92953993e-02, 4.92953993e-02, 4.92953993e-02,
8.87128688e-02, 8.87128688e-02, 8.87128688e-02, 8.87128688e-02,
7.93095475e-02, 7.93095475e-02, 7.93095475e-02, 7.93095475e-02,
-4.65037464e-03, -4.65037464e-03, -4.65037464e-03, -4.65037464e-03,
-2.35462822e+00, -2.35462822e+00, -2.35462822e+00, -2.35462822e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99998143e+02, 9.99998143e+02, 9.99998143e+02, 9.99998143e+02,
9.99994094e+02, 9.99994094e+02, 9.99994094e+02, 9.99994094e+02,
9.99984249e+02, 9.99984249e+02, 9.99984249e+02, 9.99984249e+02,
9.99959373e+02, 9.99959373e+02, 9.99959373e+02, 9.99959373e+02,
9.99899705e+02, 9.99899705e+02, 9.99899705e+02, 9.99899705e+02,
9.99763230e+02, 9.99763230e+02, 9.99763230e+02, 9.99763230e+02,
9.99466373e+02, 9.99466373e+02, 9.99466373e+02, 9.99466373e+02,
9.98853848e+02, 9.98853848e+02, 9.98853848e+02, 9.98853848e+02,
9.97658336e+02, 9.97658336e+02, 9.97658336e+02, 9.97658336e+02,
9.95457711e+02, 9.95457711e+02, 9.95457711e+02, 9.95457711e+02,
9.91648494e+02, 9.91648494e+02, 9.91648494e+02, 9.91648494e+02,
9.85463501e+02, 9.85463501e+02, 9.85463501e+02, 9.85463501e+02,
9.76058768e+02, 9.76058768e+02, 9.76058768e+02, 9.76058768e+02,
9.62670205e+02, 9.62670205e+02, 9.62670205e+02, 9.62670205e+02,
9.44799218e+02, 9.44799218e+02, 9.44799218e+02, 9.44799218e+02,
9.22354408e+02, 9.22354408e+02, 9.22354408e+02, 9.22354408e+02,
8.95683407e+02, 8.95683407e+02, 8.95683407e+02, 8.95683407e+02,
8.65478073e+02, 8.65478073e+02, 8.65478073e+02, 8.65478073e+02,
8.32594221e+02, 8.32594221e+02, 8.32594221e+02, 8.32594221e+02,
7.97851707e+02, 7.97851707e+02, 7.97851707e+02, 7.97851707e+02,
7.61874003e+02, 7.61874003e+02, 7.61874003e+02, 7.61874003e+02,
7.25777678e+02, 7.25777678e+02, 7.25777678e+02, 7.25777678e+02,
6.91306690e+02, 6.91306690e+02, 6.91306690e+02, 6.91306690e+02,
6.58775118e+02, 6.58775118e+02, 6.58775118e+02, 6.58775118e+02,
6.28122753e+02, 6.28122753e+02, 6.28122753e+02, 6.28122753e+02,
5.99419362e+02, 5.99419362e+02, 5.99419362e+02, 5.99419362e+02,
5.72823606e+02, 5.72823606e+02, 5.72823606e+02, 5.72823606e+02,
5.48603814e+02, 5.48603814e+02, 5.48603814e+02, 5.48603814e+02,
5.27126068e+02, 5.27126068e+02, 5.27126068e+02, 5.27126068e+02,
5.08814510e+02, 5.08814510e+02, 5.08814510e+02, 5.08814510e+02,
4.94028498e+02, 4.94028498e+02, 4.94028498e+02, 4.94028498e+02,
4.82931682e+02, 4.82931682e+02, 4.82931682e+02, 4.82931682e+02,
4.75278864e+02, 4.75278864e+02, 4.75278864e+02, 4.75278864e+02,
4.70507508e+02, 4.70507508e+02, 4.70507508e+02, 4.70507508e+02,
4.67612437e+02, 4.67612437e+02, 4.67612437e+02, 4.67612437e+02,
4.65811203e+02, 4.65811203e+02, 4.65811203e+02, 4.65811203e+02,
4.64268238e+02, 4.64268238e+02, 4.64268238e+02, 4.64268238e+02,
4.62705833e+02, 4.62705833e+02, 4.62705833e+02, 4.62705833e+02,
4.60568868e+02, 4.60568868e+02, 4.60568868e+02, 4.60568868e+02,
4.58024576e+02, 4.58024576e+02, 4.58024576e+02, 4.58024576e+02,
4.56383188e+02, 4.56383188e+02, 4.56383188e+02, 4.56383188e+02,
4.55784075e+02, 4.55784075e+02, 4.55784075e+02, 4.55784075e+02,
4.55824044e+02, 4.55824044e+02, 4.55824044e+02, 4.55824044e+02,
4.56769147e+02, 4.56769147e+02, 4.56769147e+02, 4.56769147e+02,
4.59243942e+02, 4.59243942e+02, 4.59243942e+02, 4.59243942e+02,
4.61303394e+02, 4.61303394e+02, 4.61303394e+02, 4.61303394e+02,
4.62328948e+02, 4.62328948e+02, 4.62328948e+02, 4.62328948e+02,
4.62486115e+02, 4.62486115e+02, 4.62486115e+02, 4.62486115e+02,
4.62267075e+02, 4.62267075e+02, 4.62267075e+02, 4.62267075e+02,
4.61235100e+02, 4.61235100e+02, 4.61235100e+02, 4.61235100e+02,
4.59928707e+02, 4.59928707e+02, 4.59928707e+02, 4.59928707e+02,
4.59250045e+02, 4.59250045e+02, 4.59250045e+02, 4.59250045e+02,
4.57693976e+02, 4.57693976e+02, 4.57693976e+02, 4.57693976e+02,
4.57023386e+02, 4.57023386e+02, 4.57023386e+02, 4.57023386e+02,
3.58689867e+02, 3.58689867e+02, 3.58689867e+02, 3.58689867e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999538, 0.99999538, 0.99999538, 0.99999538, 0.99998612,
0.99998612, 0.99998612, 0.99998612, 0.99996523, 0.99996523,
0.99996523, 0.99996523, 0.99991566, 0.99991566, 0.99991566,
0.99991566, 0.99980442, 0.99980442, 0.99980442, 0.99980442,
0.99956667, 0.99956667, 0.99956667, 0.99956667, 0.99908438,
0.99908438, 0.99908438, 0.99908438, 0.9981582 , 0.9981582 ,
0.9981582 , 0.9981582 , 0.99647912, 0.99647912, 0.99647912,
0.99647912, 0.99361312, 0.99361312, 0.99361312, 0.99361312,
0.98901706, 0.98901706, 0.98901706, 0.98901706, 0.98210095,
0.98210095, 0.98210095, 0.98210095, 0.97233385, 0.97233385,
0.97233385, 0.97233385, 0.95936505, 0.95936505, 0.95936505,
0.95936505, 0.94311347, 0.94311347, 0.94311347, 0.94311347,
0.92378545, 0.92378545, 0.92378545, 0.92378545, 0.90181228,
0.90181228, 0.90181228, 0.90181228, 0.87773428, 0.87773428,
0.87773428, 0.87773428, 0.85207217, 0.85207217, 0.85207217,
0.85207217, 0.82524779, 0.82524779, 0.82524779, 0.82524779,
0.79793012, 0.79793012, 0.79793012, 0.79793012, 0.77137347,
0.77137347, 0.77137347, 0.77137347, 0.74591438, 0.74591438,
0.74591438, 0.74591438, 0.72153077, 0.72153077, 0.72153077,
0.72153077, 0.69830271, 0.69830271, 0.69830271, 0.69830271,
0.67637729, 0.67637729, 0.67637729, 0.67637729, 0.6559935 ,
0.6559935 , 0.6559935 , 0.6559935 , 0.63749026, 0.63749026,
0.63749026, 0.63749026, 0.62127461, 0.62127461, 0.62127461,
0.62127461, 0.60775437, 0.60775437, 0.60775437, 0.60775437,
0.59719597, 0.59719597, 0.59719597, 0.59719597, 0.58961078,
0.58961078, 0.58961078, 0.58961078, 0.58459875, 0.58459875,
0.58459875, 0.58459875, 0.58154644, 0.58154644, 0.58154644,
0.58154644, 0.57956789, 0.57956789, 0.57956789, 0.57956789,
0.57809384, 0.57809384, 0.57809384, 0.57809384, 0.5766483 ,
0.5766483 , 0.5766483 , 0.5766483 , 0.57490927, 0.57490927,
0.57490927, 0.57490927, 0.57258674, 0.57258674, 0.57258674,
0.57258674, 0.57080227, 0.57080227, 0.57080227, 0.57080227,
0.56988942, 0.56988942, 0.56988942, 0.56988942, 0.56961772,
0.56961772, 0.56961772, 0.56961772, 0.56992665, 0.56992665,
0.56992665, 0.56992665, 0.57149984, 0.57149984, 0.57149984,
0.57149984, 0.57344071, 0.57344071, 0.57344071, 0.57344071,
0.5741351 , 0.5741351 , 0.5741351 , 0.5741351 , 0.57370279,
0.57370279, 0.57370279, 0.57370279, 0.57173725, 0.57173725,
0.57173725, 0.57173725, 0.56835509, 0.56835509, 0.56835509,
0.56835509, 0.56625614, 0.56625614, 0.56625614, 0.56625614,
0.57818403, 0.57818403, 0.57818403, 0.57818403, 0.78902347,
0.78902347, 0.78902347, 0.78902347, 4.84563091, 4.84563091,
4.84563091, 4.84563091, 5.89681659, 5.89681659, 5.89681659,
5.89681659, 5.22913532, 5.22913532, 5.22913532, 5.22913532,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95972771e+01, -1.95972771e+01, -1.95972771e+01, -1.95972771e+01,
-1.95969308e+01, -1.95969308e+01, -1.95969308e+01, -1.95969308e+01,
-1.95961489e+01, -1.95961489e+01, -1.95961489e+01, -1.95961489e+01,
-1.95942943e+01, -1.95942943e+01, -1.95942943e+01, -1.95942943e+01,
-1.95901316e+01, -1.95901316e+01, -1.95901316e+01, -1.95901316e+01,
-1.95812342e+01, -1.95812342e+01, -1.95812342e+01, -1.95812342e+01,
-1.95631808e+01, -1.95631808e+01, -1.95631808e+01, -1.95631808e+01,
-1.95284944e+01, -1.95284944e+01, -1.95284944e+01, -1.95284944e+01,
-1.94655530e+01, -1.94655530e+01, -1.94655530e+01, -1.94655530e+01,
-1.93579374e+01, -1.93579374e+01, -1.93579374e+01, -1.93579374e+01,
-1.91848670e+01, -1.91848670e+01, -1.91848670e+01, -1.91848670e+01,
-1.89232491e+01, -1.89232491e+01, -1.89232491e+01, -1.89232491e+01,
-1.85512896e+01, -1.85512896e+01, -1.85512896e+01, -1.85512896e+01,
-1.80527404e+01, -1.80527404e+01, -1.80527404e+01, -1.80527404e+01,
-1.74202459e+01, -1.74202459e+01, -1.74202459e+01, -1.74202459e+01,
-1.66564095e+01, -1.66564095e+01, -1.66564095e+01, -1.66564095e+01,
-1.57721388e+01, -1.57721388e+01, -1.57721388e+01, -1.57721388e+01,
-1.47829225e+01, -1.47829225e+01, -1.47829225e+01, -1.47829225e+01,
-1.37041866e+01, -1.37041866e+01, -1.37041866e+01, -1.37041866e+01,
-1.25468001e+01, -1.25468001e+01, -1.25468001e+01, -1.25468001e+01,
-1.13410969e+01, -1.13410969e+01, -1.13410969e+01, -1.13410969e+01,
-1.01388758e+01, -1.01388758e+01, -1.01388758e+01, -1.01388758e+01,
-8.95090319e+00, -8.95090319e+00, -8.95090319e+00, -8.95090319e+00,
-7.78279664e+00, -7.78279664e+00, -7.78279664e+00, -7.78279664e+00,
-6.64045094e+00, -6.64045094e+00, -6.64045094e+00, -6.64045094e+00,
-5.53417374e+00, -5.53417374e+00, -5.53417374e+00, -5.53417374e+00,
-4.47992916e+00, -4.47992916e+00, -4.47992916e+00, -4.47992916e+00,
-3.50010154e+00, -3.50010154e+00, -3.50010154e+00, -3.50010154e+00,
-2.62282955e+00, -2.62282955e+00, -2.62282955e+00, -2.62282955e+00,
-1.87734906e+00, -1.87734906e+00, -1.87734906e+00, -1.87734906e+00,
-1.28680720e+00, -1.28680720e+00, -1.28680720e+00, -1.28680720e+00,
-8.56753744e-01, -8.56753744e-01, -8.56753744e-01, -8.56753744e-01,
-5.73064847e-01, -5.73064847e-01, -5.73064847e-01, -5.73064847e-01,
-3.96338091e-01, -3.96338091e-01, -3.96338091e-01, -3.96338091e-01,
-2.87478608e-01, -2.87478608e-01, -2.87478608e-01, -2.87478608e-01,
-2.01767988e-01, -2.01767988e-01, -2.01767988e-01, -2.01767988e-01,
-1.21315708e-01, -1.21315708e-01, -1.21315708e-01, -1.21315708e-01,
-2.45951015e-02, -2.45951015e-02, -2.45951015e-02, -2.45951015e-02,
1.06631073e-01, 1.06631073e-01, 1.06631073e-01, 1.06631073e-01,
2.08068982e-01, 2.08068982e-01, 2.08068982e-01, 2.08068982e-01,
2.54184782e-01, 2.54184782e-01, 2.54184782e-01, 2.54184782e-01,
2.62270660e-01, 2.62270660e-01, 2.62270660e-01, 2.62270660e-01,
2.37118542e-01, 2.37118542e-01, 2.37118542e-01, 2.37118542e-01,
1.37104974e-01, 1.37104974e-01, 1.37104974e-01, 1.37104974e-01,
1.14799455e-02, 1.14799455e-02, 1.14799455e-02, 1.14799455e-02,
-5.88503272e-02, -5.88503272e-02, -5.88503272e-02, -5.88503272e-02,
-7.72674055e-02, -7.72674055e-02, -7.72674055e-02, -7.72674055e-02,
-7.69762484e-02, -7.69762484e-02, -7.69762484e-02, -7.69762484e-02,
-4.30209826e-02, -4.30209826e-02, -4.30209826e-02, -4.30209826e-02,
2.68143715e-02, 2.68143715e-02, 2.68143715e-02, 2.68143715e-02,
7.36951015e-02, 7.36951015e-02, 7.36951015e-02, 7.36951015e-02,
1.00445939e-01, 1.00445939e-01, 1.00445939e-01, 1.00445939e-01,
7.72401459e-02, 7.72401459e-02, 7.72401459e-02, 7.72401459e-02,
-3.04146394e-02, -3.04146394e-02, -3.04146394e-02, -3.04146394e-02,
-1.89020525e+00, -1.89020525e+00, -1.89020525e+00, -1.89020525e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99993532e+02, 9.99993532e+02, 9.99993532e+02, 9.99993532e+02,
9.99980573e+02, 9.99980573e+02, 9.99980573e+02, 9.99980573e+02,
9.99951320e+02, 9.99951320e+02, 9.99951320e+02, 9.99951320e+02,
9.99881930e+02, 9.99881930e+02, 9.99881930e+02, 9.99881930e+02,
9.99726202e+02, 9.99726202e+02, 9.99726202e+02, 9.99726202e+02,
9.99393418e+02, 9.99393418e+02, 9.99393418e+02, 9.99393418e+02,
9.98718474e+02, 9.98718474e+02, 9.98718474e+02, 9.98718474e+02,
9.97422790e+02, 9.97422790e+02, 9.97422790e+02, 9.97422790e+02,
9.95075374e+02, 9.95075374e+02, 9.95075374e+02, 9.95075374e+02,
9.91072910e+02, 9.91072910e+02, 9.91072910e+02, 9.91072910e+02,
9.84665288e+02, 9.84665288e+02, 9.84665288e+02, 9.84665288e+02,
9.75047519e+02, 9.75047519e+02, 9.75047519e+02, 9.75047519e+02,
9.61513458e+02, 9.61513458e+02, 9.61513458e+02, 9.61513458e+02,
9.43628510e+02, 9.43628510e+02, 9.43628510e+02, 9.43628510e+02,
9.21352632e+02, 9.21352632e+02, 9.21352632e+02, 9.21352632e+02,
8.95056756e+02, 8.95056756e+02, 8.95056756e+02, 8.95056756e+02,
8.65423729e+02, 8.65423729e+02, 8.65423729e+02, 8.65423729e+02,
8.33276228e+02, 8.33276228e+02, 8.33276228e+02, 8.33276228e+02,
7.99392547e+02, 7.99392547e+02, 7.99392547e+02, 7.99392547e+02,
7.64359306e+02, 7.64359306e+02, 7.64359306e+02, 7.64359306e+02,
7.29165290e+02, 7.29165290e+02, 7.29165290e+02, 7.29165290e+02,
6.95434650e+02, 6.95434650e+02, 6.95434650e+02, 6.95434650e+02,
6.63532667e+02, 6.63532667e+02, 6.63532667e+02, 6.63532667e+02,
6.33384943e+02, 6.33384943e+02, 6.33384943e+02, 6.33384943e+02,
6.05045669e+02, 6.05045669e+02, 6.05045669e+02, 6.05045669e+02,
5.78644436e+02, 5.78644436e+02, 5.78644436e+02, 5.78644436e+02,
5.54410312e+02, 5.54410312e+02, 5.54410312e+02, 5.54410312e+02,
5.32675821e+02, 5.32675821e+02, 5.32675821e+02, 5.32675821e+02,
5.13838499e+02, 5.13838499e+02, 5.13838499e+02, 5.13838499e+02,
4.98286665e+02, 4.98286665e+02, 4.98286665e+02, 4.98286665e+02,
4.86243970e+02, 4.86243970e+02, 4.86243970e+02, 4.86243970e+02,
4.77654925e+02, 4.77654925e+02, 4.77654925e+02, 4.77654925e+02,
4.72017226e+02, 4.72017226e+02, 4.72017226e+02, 4.72017226e+02,
4.68609235e+02, 4.68609235e+02, 4.68609235e+02, 4.68609235e+02,
4.66420881e+02, 4.66420881e+02, 4.66420881e+02, 4.66420881e+02,
4.64810868e+02, 4.64810868e+02, 4.64810868e+02, 4.64810868e+02,
4.63243299e+02, 4.63243299e+02, 4.63243299e+02, 4.63243299e+02,
4.61353730e+02, 4.61353730e+02, 4.61353730e+02, 4.61353730e+02,
4.58821840e+02, 4.58821840e+02, 4.58821840e+02, 4.58821840e+02,
4.56919372e+02, 4.56919372e+02, 4.56919372e+02, 4.56919372e+02,
4.56015430e+02, 4.56015430e+02, 4.56015430e+02, 4.56015430e+02,
4.55847073e+02, 4.55847073e+02, 4.55847073e+02, 4.55847073e+02,
4.56339867e+02, 4.56339867e+02, 4.56339867e+02, 4.56339867e+02,
4.58273518e+02, 4.58273518e+02, 4.58273518e+02, 4.58273518e+02,
4.60691622e+02, 4.60691622e+02, 4.60691622e+02, 4.60691622e+02,
4.61940052e+02, 4.61940052e+02, 4.61940052e+02, 4.61940052e+02,
4.62423882e+02, 4.62423882e+02, 4.62423882e+02, 4.62423882e+02,
4.62366066e+02, 4.62366066e+02, 4.62366066e+02, 4.62366066e+02,
4.61687055e+02, 4.61687055e+02, 4.61687055e+02, 4.61687055e+02,
4.60352457e+02, 4.60352457e+02, 4.60352457e+02, 4.60352457e+02,
4.59436330e+02, 4.59436330e+02, 4.59436330e+02, 4.59436330e+02,
4.59072327e+02, 4.59072327e+02, 4.59072327e+02, 4.59072327e+02,
4.58356748e+02, 4.58356748e+02, 4.58356748e+02, 4.58356748e+02,
4.60139027e+02, 4.60139027e+02, 4.60139027e+02, 4.60139027e+02,
3.86730264e+02, 3.86730264e+02, 3.86730264e+02, 3.86730264e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99998526, 0.99998526, 0.99998526, 0.99998526, 0.99995818,
0.99995818, 0.99995818, 0.99995818, 0.99990147, 0.99990147,
0.99990147, 0.99990147, 0.99977516, 0.99977516, 0.99977516,
0.99977516, 0.99951002, 0.99951002, 0.99951002, 0.99951002,
0.99898094, 0.99898094, 0.99898094, 0.99898094, 0.99798092,
0.99798092, 0.99798092, 0.99798092, 0.99619543, 0.99619543,
0.99619543, 0.99619543, 0.99319149, 0.99319149, 0.99319149,
0.99319149, 0.98843886, 0.98843886, 0.98843886, 0.98843886,
0.98137507, 0.98137507, 0.98137507, 0.98137507, 0.97150907,
0.97150907, 0.97150907, 0.97150907, 0.95853367, 0.95853367,
0.95853367, 0.95853367, 0.94240299, 0.94240299, 0.94240299,
0.94240299, 0.92334056, 0.92334056, 0.92334056, 0.92334056,
0.90177433, 0.90177433, 0.90177433, 0.90177433, 0.87822575,
0.87822575, 0.87822575, 0.87822575, 0.85319098, 0.85319098,
0.85319098, 0.85319098, 0.82706749, 0.82706749, 0.82706749,
0.82706749, 0.8004512 , 0.8004512 , 0.8004512 , 0.8004512 ,
0.77449713, 0.77449713, 0.77449713, 0.77449713, 0.74957228,
0.74957228, 0.74957228, 0.74957228, 0.72564661, 0.72564661,
0.72564661, 0.72564661, 0.70278531, 0.70278531, 0.70278531,
0.70278531, 0.68110979, 0.68110979, 0.68110979, 0.68110979,
0.66082377, 0.66082377, 0.66082377, 0.66082377, 0.64222378,
0.64222378, 0.64222378, 0.64222378, 0.62568987, 0.62568987,
0.62568987, 0.62568987, 0.61162285, 0.61162285, 0.61162285,
0.61162285, 0.60034623, 0.60034623, 0.60034623, 0.60034623,
0.5919485 , 0.5919485 , 0.5919485 , 0.5919485 , 0.58621901,
0.58621901, 0.58621901, 0.58621901, 0.58256005, 0.58256005,
0.58256005, 0.58256005, 0.58029577, 0.58029577, 0.58029577,
0.58029577, 0.57863174, 0.57863174, 0.57863174, 0.57863174,
0.57716122, 0.57716122, 0.57716122, 0.57716122, 0.57557548,
0.57557548, 0.57557548, 0.57557548, 0.57342052, 0.57342052,
0.57342052, 0.57342052, 0.57141033, 0.57141033, 0.57141033,
0.57141033, 0.57026937, 0.57026937, 0.57026937, 0.57026937,
0.56984951, 0.56984951, 0.56984951, 0.56984951, 0.5698766 ,
0.5698766 , 0.5698766 , 0.5698766 , 0.57088644, 0.57088644,
0.57088644, 0.57088644, 0.5729459 , 0.5729459 , 0.5729459 ,
0.5729459 , 0.57423757, 0.57423757, 0.57423757, 0.57423757,
0.574373 , 0.574373 , 0.574373 , 0.574373 , 0.57363822,
0.57363822, 0.57363822, 0.57363822, 0.57142449, 0.57142449,
0.57142449, 0.57142449, 0.56761669, 0.56761669, 0.56761669,
0.56761669, 0.56571332, 0.56571332, 0.56571332, 0.56571332,
0.57789593, 0.57789593, 0.57789593, 0.57789593, 0.78847243,
0.78847243, 0.78847243, 0.78847243, 4.84561161, 4.84561161,
4.84561161, 4.84561161, 5.92487332, 5.92487332, 5.92487332,
5.92487332, 5.56008978, 5.56008978, 5.56008978, 5.56008978,
1.01890847, 1.01890847, 1.01890847, 1.01890847, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95968986e+01, -1.95968986e+01, -1.95968986e+01, -1.95968986e+01,
-1.95958851e+01, -1.95958851e+01, -1.95958851e+01, -1.95958851e+01,
-1.95937634e+01, -1.95937634e+01, -1.95937634e+01, -1.95937634e+01,
-1.95890367e+01, -1.95890367e+01, -1.95890367e+01, -1.95890367e+01,
-1.95791140e+01, -1.95791140e+01, -1.95791140e+01, -1.95791140e+01,
-1.95593077e+01, -1.95593077e+01, -1.95593077e+01, -1.95593077e+01,
-1.95218526e+01, -1.95218526e+01, -1.95218526e+01, -1.95218526e+01,
-1.94549100e+01, -1.94549100e+01, -1.94549100e+01, -1.94549100e+01,
-1.93420837e+01, -1.93420837e+01, -1.93420837e+01, -1.93420837e+01,
-1.91630441e+01, -1.91630441e+01, -1.91630441e+01, -1.91630441e+01,
-1.88956946e+01, -1.88956946e+01, -1.88956946e+01, -1.88956946e+01,
-1.85197193e+01, -1.85197193e+01, -1.85197193e+01, -1.85197193e+01,
-1.80205547e+01, -1.80205547e+01, -1.80205547e+01, -1.80205547e+01,
-1.73923318e+01, -1.73923318e+01, -1.73923318e+01, -1.73923318e+01,
-1.66385920e+01, -1.66385920e+01, -1.66385920e+01, -1.66385920e+01,
-1.57704949e+01, -1.57704949e+01, -1.57704949e+01, -1.57704949e+01,
-1.48032199e+01, -1.48032199e+01, -1.48032199e+01, -1.48032199e+01,
-1.37516531e+01, -1.37516531e+01, -1.37516531e+01, -1.37516531e+01,
-1.26262172e+01, -1.26262172e+01, -1.26262172e+01, -1.26262172e+01,
-1.14535020e+01, -1.14535020e+01, -1.14535020e+01, -1.14535020e+01,
-1.02821453e+01, -1.02821453e+01, -1.02821453e+01, -1.02821453e+01,
-9.12320232e+00, -9.12320232e+00, -9.12320232e+00, -9.12320232e+00,
-7.98177804e+00, -7.98177804e+00, -7.98177804e+00, -7.98177804e+00,
-6.86275610e+00, -6.86275610e+00, -6.86275610e+00, -6.86275610e+00,
-5.77476709e+00, -5.77476709e+00, -5.77476709e+00, -5.77476709e+00,
-4.73138920e+00, -4.73138920e+00, -4.73138920e+00, -4.73138920e+00,
-3.75227727e+00, -3.75227727e+00, -3.75227727e+00, -3.75227727e+00,
-2.86276827e+00, -2.86276827e+00, -2.86276827e+00, -2.86276827e+00,
-2.09133332e+00, -2.09133332e+00, -2.09133332e+00, -2.09133332e+00,
-1.46258067e+00, -1.46258067e+00, -1.46258067e+00, -1.46258067e+00,
-9.89318476e-01, -9.89318476e-01, -9.89318476e-01, -9.89318476e-01,
-6.62514752e-01, -6.62514752e-01, -6.62514752e-01, -6.62514752e-01,
-4.55770547e-01, -4.55770547e-01, -4.55770547e-01, -4.55770547e-01,
-3.24250432e-01, -3.24250432e-01, -3.24250432e-01, -3.24250432e-01,
-2.32672703e-01, -2.32672703e-01, -2.32672703e-01, -2.32672703e-01,
-1.48617001e-01, -1.48617001e-01, -1.48617001e-01, -1.48617001e-01,
-5.86592212e-02, -5.86592212e-02, -5.86592212e-02, -5.86592212e-02,
6.31526138e-02, 6.31526138e-02, 6.31526138e-02, 6.31526138e-02,
1.75222055e-01, 1.75222055e-01, 1.75222055e-01, 1.75222055e-01,
2.38802823e-01, 2.38802823e-01, 2.38802823e-01, 2.38802823e-01,
2.56988016e-01, 2.56988016e-01, 2.56988016e-01, 2.56988016e-01,
2.47598723e-01, 2.47598723e-01, 2.47598723e-01, 2.47598723e-01,
1.80365419e-01, 1.80365419e-01, 1.80365419e-01, 1.80365419e-01,
5.14782436e-02, 5.14782436e-02, 5.14782436e-02, 5.14782436e-02,
-3.39863591e-02, -3.39863591e-02, -3.39863591e-02, -3.39863591e-02,
-7.21591911e-02, -7.21591911e-02, -7.21591911e-02, -7.21591911e-02,
-7.57049020e-02, -7.57049020e-02, -7.57049020e-02, -7.57049020e-02,
-5.76945925e-02, -5.76945925e-02, -5.76945925e-02, -5.76945925e-02,
2.02918872e-03, 2.02918872e-03, 2.02918872e-03, 2.02918872e-03,
5.93265617e-02, 5.93265617e-02, 5.93265617e-02, 5.93265617e-02,
8.69993438e-02, 8.69993438e-02, 8.69993438e-02, 8.69993438e-02,
9.91468953e-02, 9.91468953e-02, 9.91468953e-02, 9.91468953e-02,
6.81715401e-02, 6.81715401e-02, 6.81715401e-02, 6.81715401e-02,
-5.78795911e-02, -5.78795911e-02, -5.78795911e-02, -5.78795911e-02,
-1.48260790e+00, -1.48260790e+00, -1.48260790e+00, -1.48260790e+00,
-1.92261170e+01, -1.92261170e+01, -1.92261170e+01, -1.92261170e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99979369e+02, 9.99979369e+02, 9.99979369e+02, 9.99979369e+02,
9.99941447e+02, 9.99941447e+02, 9.99941447e+02, 9.99941447e+02,
9.99862069e+02, 9.99862069e+02, 9.99862069e+02, 9.99862069e+02,
9.99685247e+02, 9.99685247e+02, 9.99685247e+02, 9.99685247e+02,
9.99314134e+02, 9.99314134e+02, 9.99314134e+02, 9.99314134e+02,
9.98573724e+02, 9.98573724e+02, 9.98573724e+02, 9.98573724e+02,
9.97174855e+02, 9.97174855e+02, 9.97174855e+02, 9.97174855e+02,
9.94678914e+02, 9.94678914e+02, 9.94678914e+02, 9.94678914e+02,
9.90484455e+02, 9.90484455e+02, 9.90484455e+02, 9.90484455e+02,
9.83859889e+02, 9.83859889e+02, 9.83859889e+02, 9.83859889e+02,
9.74039277e+02, 9.74039277e+02, 9.74039277e+02, 9.74039277e+02,
9.60372194e+02, 9.60372194e+02, 9.60372194e+02, 9.60372194e+02,
9.42483603e+02, 9.42483603e+02, 9.42483603e+02, 9.42483603e+02,
9.20379525e+02, 9.20379525e+02, 9.20379525e+02, 9.20379525e+02,
8.94450060e+02, 8.94450060e+02, 8.94450060e+02, 8.94450060e+02,
8.65367467e+02, 8.65367467e+02, 8.65367467e+02, 8.65367467e+02,
8.33922282e+02, 8.33922282e+02, 8.33922282e+02, 8.33922282e+02,
8.00853716e+02, 8.00853716e+02, 8.00853716e+02, 8.00853716e+02,
7.66714287e+02, 7.66714287e+02, 7.66714287e+02, 7.66714287e+02,
7.32385088e+02, 7.32385088e+02, 7.32385088e+02, 7.32385088e+02,
6.99371304e+02, 6.99371304e+02, 6.99371304e+02, 6.99371304e+02,
6.68082034e+02, 6.68082034e+02, 6.68082034e+02, 6.68082034e+02,
6.38437470e+02, 6.38437470e+02, 6.38437470e+02, 6.38437470e+02,
6.10476279e+02, 6.10476279e+02, 6.10476279e+02, 6.10476279e+02,
5.84302961e+02, 5.84302961e+02, 5.84302961e+02, 5.84302961e+02,
5.60112630e+02, 5.60112630e+02, 5.60112630e+02, 5.60112630e+02,
5.38197751e+02, 5.38197751e+02, 5.38197751e+02, 5.38197751e+02,
5.18933488e+02, 5.18933488e+02, 5.18933488e+02, 5.18933488e+02,
5.02706670e+02, 5.02706670e+02, 5.02706670e+02, 5.02706670e+02,
4.89810839e+02, 4.89810839e+02, 4.89810839e+02, 4.89810839e+02,
4.80277054e+02, 4.80277054e+02, 4.80277054e+02, 4.80277054e+02,
4.73814598e+02, 4.73814598e+02, 4.73814598e+02, 4.73814598e+02,
4.69715186e+02, 4.69715186e+02, 4.69715186e+02, 4.69715186e+02,
4.67199322e+02, 4.67199322e+02, 4.67199322e+02, 4.67199322e+02,
4.65366731e+02, 4.65366731e+02, 4.65366731e+02, 4.65366731e+02,
4.63761585e+02, 4.63761585e+02, 4.63761585e+02, 4.63761585e+02,
4.62037437e+02, 4.62037437e+02, 4.62037437e+02, 4.62037437e+02,
4.59682472e+02, 4.59682472e+02, 4.59682472e+02, 4.59682472e+02,
4.57502635e+02, 4.57502635e+02, 4.57502635e+02, 4.57502635e+02,
4.56321878e+02, 4.56321878e+02, 4.56321878e+02, 4.56321878e+02,
4.55970132e+02, 4.55970132e+02, 4.55970132e+02, 4.55970132e+02,
4.56136790e+02, 4.56136790e+02, 4.56136790e+02, 4.56136790e+02,
4.57415845e+02, 4.57415845e+02, 4.57415845e+02, 4.57415845e+02,
4.59897903e+02, 4.59897903e+02, 4.59897903e+02, 4.59897903e+02,
4.61588569e+02, 4.61588569e+02, 4.61588569e+02, 4.61588569e+02,
4.62209244e+02, 4.62209244e+02, 4.62209244e+02, 4.62209244e+02,
4.62353018e+02, 4.62353018e+02, 4.62353018e+02, 4.62353018e+02,
4.62015675e+02, 4.62015675e+02, 4.62015675e+02, 4.62015675e+02,
4.60848083e+02, 4.60848083e+02, 4.60848083e+02, 4.60848083e+02,
4.59735200e+02, 4.59735200e+02, 4.59735200e+02, 4.59735200e+02,
4.59147681e+02, 4.59147681e+02, 4.59147681e+02, 4.59147681e+02,
4.59088113e+02, 4.59088113e+02, 4.59088113e+02, 4.59088113e+02,
4.59331732e+02, 4.59331732e+02, 4.59331732e+02, 4.59331732e+02,
4.63222937e+02, 4.63222937e+02, 4.63222937e+02, 4.63222937e+02,
4.12875360e+02, 4.12875360e+02, 4.12875360e+02, 4.12875360e+02,
2.66044212e+00, 2.66044212e+00, 2.66044212e+00, 2.66044212e+00,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.9999568 , 0.9999568 , 0.9999568 , 0.9999568 , 0.99988411,
0.99988411, 0.99988411, 0.99988411, 0.99974329, 0.99974329,
0.99974329, 0.99974329, 0.99944863, 0.99944863, 0.99944863,
0.99944863, 0.9988707 , 0.9988707 , 0.9988707 , 0.9988707 ,
0.99779482, 0.99779482, 0.99779482, 0.99779482, 0.99590186,
0.99590186, 0.99590186, 0.99590186, 0.99276106, 0.99276106,
0.99276106, 0.99276106, 0.98785596, 0.98785596, 0.98785596,
0.98785596, 0.9806516 , 0.9806516 , 0.9806516 , 0.9806516 ,
0.97069523, 0.97069523, 0.97069523, 0.97069523, 0.95772017,
0.95772017, 0.95772017, 0.95772017, 0.94171224, 0.94171224,
0.94171224, 0.94171224, 0.92290936, 0.92290936, 0.92290936,
0.92290936, 0.90173487, 0.90173487, 0.90173487, 0.90173487,
0.8786917 , 0.8786917 , 0.8786917 , 0.8786917 , 0.85425278,
0.85425278, 0.85425278, 0.85425278, 0.8287934 , 0.8287934 ,
0.8287934 , 0.8287934 , 0.80284574, 0.80284574, 0.80284574,
0.80284574, 0.77747275, 0.77747275, 0.77747275, 0.77747275,
0.75306658, 0.75306658, 0.75306658, 0.75306658, 0.72958985,
0.72958985, 0.72958985, 0.72958985, 0.70709754, 0.70709754,
0.70709754, 0.70709754, 0.68568965, 0.68568965, 0.68568965,
0.68568965, 0.66553819, 0.66553819, 0.66553819, 0.66553819,
0.64690258, 0.64690258, 0.64690258, 0.64690258, 0.63012541,
0.63012541, 0.63012541, 0.63012541, 0.61559842, 0.61559842,
0.61559842, 0.61559842, 0.60366745, 0.60366745, 0.60366745,
0.60366745, 0.59451738, 0.59451738, 0.59451738, 0.59451738,
0.58802631, 0.58802631, 0.58802631, 0.58802631, 0.58378365,
0.58378365, 0.58378365, 0.58378365, 0.58107477, 0.58107477,
0.58107477, 0.58107477, 0.57925414, 0.57925414, 0.57925414,
0.57925414, 0.5776933 , 0.5776933 , 0.5776933 , 0.5776933 ,
0.57614202, 0.57614202, 0.57614202, 0.57614202, 0.57421305,
0.57421305, 0.57421305, 0.57421305, 0.57210238, 0.57210238,
0.57210238, 0.57210238, 0.57069122, 0.57069122, 0.57069122,
0.57069122, 0.57008977, 0.57008977, 0.57008977, 0.57008977,
0.56996923, 0.56996923, 0.56996923, 0.56996923, 0.57050701,
0.57050701, 0.57050701, 0.57050701, 0.57229866, 0.57229866,
0.57229866, 0.57229866, 0.57395096, 0.57395096, 0.57395096,
0.57395096, 0.57464105, 0.57464105, 0.57464105, 0.57464105,
0.57441387, 0.57441387, 0.57441387, 0.57441387, 0.57344931,
0.57344931, 0.57344931, 0.57344931, 0.57081974, 0.57081974,
0.57081974, 0.57081974, 0.56695245, 0.56695245, 0.56695245,
0.56695245, 0.5653931 , 0.5653931 , 0.5653931 , 0.5653931 ,
0.57781064, 0.57781064, 0.57781064, 0.57781064, 0.78815072,
0.78815072, 0.78815072, 0.78815072, 4.84873862, 4.84873862,
4.84873862, 4.84873862, 5.95129464, 5.95129464, 5.95129464,
5.95129464, 5.69033524, 5.69033524, 5.69033524, 5.69033524,
1.23675129, 1.23675129, 1.23675129, 1.23675129, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95958337e+01, -1.95958337e+01, -1.95958337e+01, -1.95958337e+01,
-1.95931138e+01, -1.95931138e+01, -1.95931138e+01, -1.95931138e+01,
-1.95878441e+01, -1.95878441e+01, -1.95878441e+01, -1.95878441e+01,
-1.95768162e+01, -1.95768162e+01, -1.95768162e+01, -1.95768162e+01,
-1.95551801e+01, -1.95551801e+01, -1.95551801e+01, -1.95551801e+01,
-1.95148789e+01, -1.95148789e+01, -1.95148789e+01, -1.95148789e+01,
-1.94438939e+01, -1.94438939e+01, -1.94438939e+01, -1.94438939e+01,
-1.93258934e+01, -1.93258934e+01, -1.93258934e+01, -1.93258934e+01,
-1.91410336e+01, -1.91410336e+01, -1.91410336e+01, -1.91410336e+01,
-1.88682144e+01, -1.88682144e+01, -1.88682144e+01, -1.88682144e+01,
-1.84885452e+01, -1.84885452e+01, -1.84885452e+01, -1.84885452e+01,
-1.79890388e+01, -1.79890388e+01, -1.79890388e+01, -1.79890388e+01,
-1.73651775e+01, -1.73651775e+01, -1.73651775e+01, -1.73651775e+01,
-1.66213186e+01, -1.66213186e+01, -1.66213186e+01, -1.66213186e+01,
-1.57687966e+01, -1.57687966e+01, -1.57687966e+01, -1.57687966e+01,
-1.48224580e+01, -1.48224580e+01, -1.48224580e+01, -1.48224580e+01,
-1.37966567e+01, -1.37966567e+01, -1.37966567e+01, -1.37966567e+01,
-1.27013995e+01, -1.27013995e+01, -1.27013995e+01, -1.27013995e+01,
-1.15600509e+01, -1.15600509e+01, -1.15600509e+01, -1.15600509e+01,
-1.04182048e+01, -1.04182048e+01, -1.04182048e+01, -1.04182048e+01,
-9.28712587e+00, -9.28712587e+00, -9.28712587e+00, -9.28712587e+00,
-8.17164148e+00, -8.17164148e+00, -8.17164148e+00, -8.17164148e+00,
-7.07566309e+00, -7.07566309e+00, -7.07566309e+00, -7.07566309e+00,
-6.00644370e+00, -6.00644370e+00, -6.00644370e+00, -6.00644370e+00,
-4.97553083e+00, -4.97553083e+00, -4.97553083e+00, -4.97553083e+00,
-3.99995165e+00, -3.99995165e+00, -3.99995165e+00, -3.99995165e+00,
-3.10256800e+00, -3.10256800e+00, -3.10256800e+00, -3.10256800e+00,
-2.31003786e+00, -2.31003786e+00, -2.31003786e+00, -2.31003786e+00,
-1.64818046e+00, -1.64818046e+00, -1.64818046e+00, -1.64818046e+00,
-1.13330666e+00, -1.13330666e+00, -1.13330666e+00, -1.13330666e+00,
-7.65570923e-01, -7.65570923e-01, -7.65570923e-01, -7.65570923e-01,
-5.22454306e-01, -5.22454306e-01, -5.22454306e-01, -5.22454306e-01,
-3.69998280e-01, -3.69998280e-01, -3.69998280e-01, -3.69998280e-01,
-2.64295091e-01, -2.64295091e-01, -2.64295091e-01, -2.64295091e-01,
-1.77586047e-01, -1.77586047e-01, -1.77586047e-01, -1.77586047e-01,
-8.97984962e-02, -8.97984962e-02, -8.97984962e-02, -8.97984962e-02,
2.02366682e-02, 2.02366682e-02, 2.02366682e-02, 2.02366682e-02,
1.40871427e-01, 1.40871427e-01, 1.40871427e-01, 1.40871427e-01,
2.17683902e-01, 2.17683902e-01, 2.17683902e-01, 2.17683902e-01,
2.48809269e-01, 2.48809269e-01, 2.48809269e-01, 2.48809269e-01,
2.49974501e-01, 2.49974501e-01, 2.49974501e-01, 2.49974501e-01,
2.11052255e-01, 2.11052255e-01, 2.11052255e-01, 2.11052255e-01,
9.78510344e-02, 9.78510344e-02, 9.78510344e-02, 9.78510344e-02,
-8.37863695e-03, -8.37863695e-03, -8.37863695e-03, -8.37863695e-03,
-5.72066887e-02, -5.72066887e-02, -5.72066887e-02, -5.72066887e-02,
-7.30169147e-02, -7.30169147e-02, -7.30169147e-02, -7.30169147e-02,
-6.62494184e-02, -6.62494184e-02, -6.62494184e-02, -6.62494184e-02,
-2.27194938e-02, -2.27194938e-02, -2.27194938e-02, -2.27194938e-02,
4.23152353e-02, 4.23152353e-02, 4.23152353e-02, 4.23152353e-02,
7.98077113e-02, 7.98077113e-02, 7.98077113e-02, 7.98077113e-02,
8.99657409e-02, 8.99657409e-02, 8.99657409e-02, 8.99657409e-02,
8.76200018e-02, 8.76200018e-02, 8.76200018e-02, 8.76200018e-02,
5.15213448e-02, 5.15213448e-02, 5.15213448e-02, 5.15213448e-02,
-8.33703850e-02, -8.33703850e-02, -8.33703850e-02, -8.33703850e-02,
-1.17071868e+00, -1.17071868e+00, -1.17071868e+00, -1.17071868e+00,
-1.57576738e+01, -1.57576738e+01, -1.57576738e+01, -1.57576738e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99939525e+02, 9.99939525e+02, 9.99939525e+02, 9.99939525e+02,
9.99837766e+02, 9.99837766e+02, 9.99837766e+02, 9.99837766e+02,
9.99640638e+02, 9.99640638e+02, 9.99640638e+02, 9.99640638e+02,
9.99228211e+02, 9.99228211e+02, 9.99228211e+02, 9.99228211e+02,
9.98419485e+02, 9.98419485e+02, 9.98419485e+02, 9.98419485e+02,
9.96914590e+02, 9.96914590e+02, 9.96914590e+02, 9.96914590e+02,
9.94268703e+02, 9.94268703e+02, 9.94268703e+02, 9.94268703e+02,
9.89883820e+02, 9.89883820e+02, 9.89883820e+02, 9.89883820e+02,
9.83048138e+02, 9.83048138e+02, 9.83048138e+02, 9.83048138e+02,
9.73034649e+02, 9.73034649e+02, 9.73034649e+02, 9.73034649e+02,
9.59246390e+02, 9.59246390e+02, 9.59246390e+02, 9.59246390e+02,
9.41363662e+02, 9.41363662e+02, 9.41363662e+02, 9.41363662e+02,
9.19433724e+02, 9.19433724e+02, 9.19433724e+02, 9.19433724e+02,
8.93862202e+02, 8.93862202e+02, 8.93862202e+02, 8.93862202e+02,
8.65309492e+02, 8.65309492e+02, 8.65309492e+02, 8.65309492e+02,
8.34535046e+02, 8.34535046e+02, 8.34535046e+02, 8.34535046e+02,
8.02241316e+02, 8.02241316e+02, 8.02241316e+02, 8.02241316e+02,
7.68949683e+02, 7.68949683e+02, 7.68949683e+02, 7.68949683e+02,
7.35447246e+02, 7.35447246e+02, 7.35447246e+02, 7.35447246e+02,
7.03127884e+02, 7.03127884e+02, 7.03127884e+02, 7.03127884e+02,
6.72436702e+02, 6.72436702e+02, 6.72436702e+02, 6.72436702e+02,
6.43288985e+02, 6.43288985e+02, 6.43288985e+02, 6.43288985e+02,
6.15714808e+02, 6.15714808e+02, 6.15714808e+02, 6.15714808e+02,
5.89796153e+02, 5.89796153e+02, 5.89796153e+02, 5.89796153e+02,
5.65696642e+02, 5.65696642e+02, 5.65696642e+02, 5.65696642e+02,
5.43673421e+02, 5.43673421e+02, 5.43673421e+02, 5.43673421e+02,
5.24067479e+02, 5.24067479e+02, 5.24067479e+02, 5.24067479e+02,
5.07263040e+02, 5.07263040e+02, 5.07263040e+02, 5.07263040e+02,
4.93583436e+02, 4.93583436e+02, 4.93583436e+02, 4.93583436e+02,
4.83170545e+02, 4.83170545e+02, 4.83170545e+02, 4.83170545e+02,
4.75830313e+02, 4.75830313e+02, 4.75830313e+02, 4.75830313e+02,
4.71062300e+02, 4.71062300e+02, 4.71062300e+02, 4.71062300e+02,
4.68039933e+02, 4.68039933e+02, 4.68039933e+02, 4.68039933e+02,
4.66025920e+02, 4.66025920e+02, 4.66025920e+02, 4.66025920e+02,
4.64310633e+02, 4.64310633e+02, 4.64310633e+02, 4.64310633e+02,
4.62615659e+02, 4.62615659e+02, 4.62615659e+02, 4.62615659e+02,
4.60507433e+02, 4.60507433e+02, 4.60507433e+02, 4.60507433e+02,
4.58203933e+02, 4.58203933e+02, 4.58203933e+02, 4.58203933e+02,
4.56696564e+02, 4.56696564e+02, 4.56696564e+02, 4.56696564e+02,
4.56120188e+02, 4.56120188e+02, 4.56120188e+02, 4.56120188e+02,
4.56103981e+02, 4.56103981e+02, 4.56103981e+02, 4.56103981e+02,
4.56842760e+02, 4.56842760e+02, 4.56842760e+02, 4.56842760e+02,
4.59001087e+02, 4.59001087e+02, 4.59001087e+02, 4.59001087e+02,
4.61027897e+02, 4.61027897e+02, 4.61027897e+02, 4.61027897e+02,
4.62043421e+02, 4.62043421e+02, 4.62043421e+02, 4.62043421e+02,
4.62256123e+02, 4.62256123e+02, 4.62256123e+02, 4.62256123e+02,
4.62141741e+02, 4.62141741e+02, 4.62141741e+02, 4.62141741e+02,
4.61332932e+02, 4.61332932e+02, 4.61332932e+02, 4.61332932e+02,
4.60092606e+02, 4.60092606e+02, 4.60092606e+02, 4.60092606e+02,
4.59370752e+02, 4.59370752e+02, 4.59370752e+02, 4.59370752e+02,
4.59088554e+02, 4.59088554e+02, 4.59088554e+02, 4.59088554e+02,
4.59254680e+02, 4.59254680e+02, 4.59254680e+02, 4.59254680e+02,
4.60509205e+02, 4.60509205e+02, 4.60509205e+02, 4.60509205e+02,
4.66097515e+02, 4.66097515e+02, 4.66097515e+02, 4.66097515e+02,
4.26096149e+02, 4.26096149e+02, 4.26096149e+02, 4.26096149e+02,
3.00682752e+01, 3.00682752e+01, 3.00682752e+01, 3.00682752e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99988326, 0.99988326, 0.99988326, 0.99988326, 0.999704 ,
0.999704 , 0.999704 , 0.999704 , 0.99938342, 0.99938342,
0.99938342, 0.99938342, 0.99875337, 0.99875337, 0.99875337,
0.99875337, 0.9976 , 0.9976 , 0.9976 , 0.9976 ,
0.99559867, 0.99559867, 0.99559867, 0.99559867, 0.99232231,
0.99232231, 0.99232231, 0.99232231, 0.98726893, 0.98726893,
0.98726893, 0.98726893, 0.97993094, 0.97993094, 0.97993094,
0.97993094, 0.96989227, 0.96989227, 0.96989227, 0.96989227,
0.95692399, 0.95692399, 0.95692399, 0.95692399, 0.94104033,
0.94104033, 0.94104033, 0.94104033, 0.92249112, 0.92249112,
0.92249112, 0.92249112, 0.90169405, 0.90169405, 0.90169405,
0.90169405, 0.87913399, 0.87913399, 0.87913399, 0.87913399,
0.85526183, 0.85526183, 0.85526183, 0.85526183, 0.83043251,
0.83043251, 0.83043251, 0.83043251, 0.80512253, 0.80512253,
0.80512253, 0.80512253, 0.78031019, 0.78031019, 0.78031019,
0.78031019, 0.75640567, 0.75640567, 0.75640567, 0.75640567,
0.73337002, 0.73337002, 0.73337002, 0.73337002, 0.71124617,
0.71124617, 0.71124617, 0.71124617, 0.69011779, 0.69011779,
0.69011779, 0.69011779, 0.67013055, 0.67013055, 0.67013055,
0.67013055, 0.6515084 , 0.6515084 , 0.6515084 , 0.6515084 ,
0.63455967, 0.63455967, 0.63455967, 0.63455967, 0.61965102,
0.61965102, 0.61965102, 0.61965102, 0.60714502, 0.60714502,
0.60714502, 0.60714502, 0.59727955, 0.59727955, 0.59727955,
0.59727955, 0.59006029, 0.59006029, 0.59006029, 0.59006029,
0.58515653, 0.58515653, 0.58515653, 0.58515653, 0.58201574,
0.58201574, 0.58201574, 0.58201574, 0.57990123, 0.57990123,
0.57990123, 0.57990123, 0.57826932, 0.57826932, 0.57826932,
0.57826932, 0.57670096, 0.57670096, 0.57670096, 0.57670096,
0.57492881, 0.57492881, 0.57492881, 0.57492881, 0.57279932,
0.57279932, 0.57279932, 0.57279932, 0.57119697, 0.57119697,
0.57119697, 0.57119697, 0.57036293, 0.57036293, 0.57036293,
0.57036293, 0.57011927, 0.57011927, 0.57011927, 0.57011927,
0.57033952, 0.57033952, 0.57033952, 0.57033952, 0.57164869,
0.57164869, 0.57164869, 0.57164869, 0.57354091, 0.57354091,
0.57354091, 0.57354091, 0.57453357, 0.57453357, 0.57453357,
0.57453357, 0.57476819, 0.57476819, 0.57476819, 0.57476819,
0.57434562, 0.57434562, 0.57434562, 0.57434562, 0.57305035,
0.57305035, 0.57305035, 0.57305035, 0.57007335, 0.57007335,
0.57007335, 0.57007335, 0.56651932, 0.56651932, 0.56651932,
0.56651932, 0.56528181, 0.56528181, 0.56528181, 0.56528181,
0.57785762, 0.57785762, 0.57785762, 0.57785762, 0.78811457,
0.78811457, 0.78811457, 0.78811457, 4.85478737, 4.85478737,
4.85478737, 4.85478737, 5.97063495, 5.97063495, 5.97063495,
5.97063495, 5.73063938, 5.73063938, 5.73063938, 5.73063938,
1.54830122, 1.54830122, 1.54830122, 1.54830122, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95930819e+01, -1.95930819e+01, -1.95930819e+01, -1.95930819e+01,
-1.95863736e+01, -1.95863736e+01, -1.95863736e+01, -1.95863736e+01,
-1.95743754e+01, -1.95743754e+01, -1.95743754e+01, -1.95743754e+01,
-1.95507862e+01, -1.95507862e+01, -1.95507862e+01, -1.95507862e+01,
-1.95075773e+01, -1.95075773e+01, -1.95075773e+01, -1.95075773e+01,
-1.94325144e+01, -1.94325144e+01, -1.94325144e+01, -1.94325144e+01,
-1.93093843e+01, -1.93093843e+01, -1.93093843e+01, -1.93093843e+01,
-1.91188563e+01, -1.91188563e+01, -1.91188563e+01, -1.91188563e+01,
-1.88408241e+01, -1.88408241e+01, -1.88408241e+01, -1.88408241e+01,
-1.84577672e+01, -1.84577672e+01, -1.84577672e+01, -1.84577672e+01,
-1.79581724e+01, -1.79581724e+01, -1.79581724e+01, -1.79581724e+01,
-1.73387486e+01, -1.73387486e+01, -1.73387486e+01, -1.73387486e+01,
-1.66045599e+01, -1.66045599e+01, -1.66045599e+01, -1.66045599e+01,
-1.57670502e+01, -1.57670502e+01, -1.57670502e+01, -1.57670502e+01,
-1.48407146e+01, -1.48407146e+01, -1.48407146e+01, -1.48407146e+01,
-1.38393853e+01, -1.38393853e+01, -1.38393853e+01, -1.38393853e+01,
-1.27726733e+01, -1.27726733e+01, -1.27726733e+01, -1.27726733e+01,
-1.16611698e+01, -1.16611698e+01, -1.16611698e+01, -1.16611698e+01,
-1.05475404e+01, -1.05475404e+01, -1.05475404e+01, -1.05475404e+01,
-9.44325436e+00, -9.44325436e+00, -9.44325436e+00, -9.44325436e+00,
-8.35283609e+00, -8.35283609e+00, -8.35283609e+00, -8.35283609e+00,
-7.27955851e+00, -7.27955851e+00, -7.27955851e+00, -7.27955851e+00,
-6.22940672e+00, -6.22940672e+00, -6.22940672e+00, -6.22940672e+00,
-5.21215603e+00, -5.21215603e+00, -5.21215603e+00, -5.21215603e+00,
-4.24254847e+00, -4.24254847e+00, -4.24254847e+00, -4.24254847e+00,
-3.34084414e+00, -3.34084414e+00, -3.34084414e+00, -3.34084414e+00,
-2.53194446e+00, -2.53194446e+00, -2.53194446e+00, -2.53194446e+00,
-1.84137728e+00, -1.84137728e+00, -1.84137728e+00, -1.84137728e+00,
-1.28893894e+00, -1.28893894e+00, -1.28893894e+00, -1.28893894e+00,
-8.79748296e-01, -8.79748296e-01, -8.79748296e-01, -8.79748296e-01,
-6.01098798e-01, -6.01098798e-01, -6.01098798e-01, -6.01098798e-01,
-4.20495914e-01, -4.20495914e-01, -4.20495914e-01, -4.20495914e-01,
-3.01953822e-01, -3.01953822e-01, -3.01953822e-01, -3.01953822e-01,
-2.07663266e-01, -2.07663266e-01, -2.07663266e-01, -2.07663266e-01,
-1.19176721e-01, -1.19176721e-01, -1.19176721e-01, -1.19176721e-01,
-1.91871139e-02, -1.91871139e-02, -1.91871139e-02, -1.91871139e-02,
1.02083270e-01, 1.02083270e-01, 1.02083270e-01, 1.02083270e-01,
1.94011664e-01, 1.94011664e-01, 1.94011664e-01, 1.94011664e-01,
2.37494805e-01, 2.37494805e-01, 2.37494805e-01, 2.37494805e-01,
2.46839725e-01, 2.46839725e-01, 2.46839725e-01, 2.46839725e-01,
2.27976078e-01, 2.27976078e-01, 2.27976078e-01, 2.27976078e-01,
1.44238385e-01, 1.44238385e-01, 1.44238385e-01, 1.44238385e-01,
2.56541650e-02, 2.56541650e-02, 2.56541650e-02, 2.56541650e-02,
-4.30667260e-02, -4.30667260e-02, -4.30667260e-02, -4.30667260e-02,
-6.50812561e-02, -6.50812561e-02, -6.50812561e-02, -6.50812561e-02,
-6.75568397e-02, -6.75568397e-02, -6.75568397e-02, -6.75568397e-02,
-4.29914005e-02, -4.29914005e-02, -4.29914005e-02, -4.29914005e-02,
2.01746029e-02, 2.01746029e-02, 2.01746029e-02, 2.01746029e-02,
6.79679763e-02, 6.79679763e-02, 6.79679763e-02, 6.79679763e-02,
8.76333776e-02, 8.76333776e-02, 8.76333776e-02, 8.76333776e-02,
8.70600238e-02, 8.70600238e-02, 8.70600238e-02, 8.70600238e-02,
6.94231077e-02, 6.94231077e-02, 6.94231077e-02, 6.94231077e-02,
2.81120195e-02, 2.81120195e-02, 2.81120195e-02, 2.81120195e-02,
-9.88861807e-02, -9.88861807e-02, -9.88861807e-02, -9.88861807e-02,
-8.40443242e-01, -8.40443242e-01, -8.40443242e-01, -8.40443242e-01,
-1.27034745e+01, -1.27034745e+01, -1.27034745e+01, -1.27034745e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99836573e+02, 9.99836573e+02, 9.99836573e+02, 9.99836573e+02,
9.99585634e+02, 9.99585634e+02, 9.99585634e+02, 9.99585634e+02,
9.99136947e+02, 9.99136947e+02, 9.99136947e+02, 9.99136947e+02,
9.98255317e+02, 9.98255317e+02, 9.98255317e+02, 9.98255317e+02,
9.96642152e+02, 9.96642152e+02, 9.96642152e+02, 9.96642152e+02,
9.93845109e+02, 9.93845109e+02, 9.93845109e+02, 9.93845109e+02,
9.89271683e+02, 9.89271683e+02, 9.89271683e+02, 9.89271683e+02,
9.82230823e+02, 9.82230823e+02, 9.82230823e+02, 9.82230823e+02,
9.72034191e+02, 9.72034191e+02, 9.72034191e+02, 9.72034191e+02,
9.58135996e+02, 9.58135996e+02, 9.58135996e+02, 9.58135996e+02,
9.40267890e+02, 9.40267890e+02, 9.40267890e+02, 9.40267890e+02,
9.18513964e+02, 9.18513964e+02, 9.18513964e+02, 9.18513964e+02,
8.93292158e+02, 8.93292158e+02, 8.93292158e+02, 8.93292158e+02,
8.65250000e+02, 8.65250000e+02, 8.65250000e+02, 8.65250000e+02,
8.35116935e+02, 8.35116935e+02, 8.35116935e+02, 8.35116935e+02,
8.03560799e+02, 8.03560799e+02, 8.03560799e+02, 8.03560799e+02,
7.71074253e+02, 7.71074253e+02, 7.71074253e+02, 7.71074253e+02,
7.38362407e+02, 7.38362407e+02, 7.38362407e+02, 7.38362407e+02,
7.06715729e+02, 7.06715729e+02, 7.06715729e+02, 7.06715729e+02,
6.76606066e+02, 6.76606066e+02, 6.76606066e+02, 6.76606066e+02,
6.47950106e+02, 6.47950106e+02, 6.47950106e+02, 6.47950106e+02,
6.20767030e+02, 6.20767030e+02, 6.20767030e+02, 6.20767030e+02,
5.95122800e+02, 5.95122800e+02, 5.95122800e+02, 5.95122800e+02,
5.71153608e+02, 5.71153608e+02, 5.71153608e+02, 5.71153608e+02,
5.49081527e+02, 5.49081527e+02, 5.49081527e+02, 5.49081527e+02,
5.29216091e+02, 5.29216091e+02, 5.29216091e+02, 5.29216091e+02,
5.11921185e+02, 5.11921185e+02, 5.11921185e+02, 5.11921185e+02,
4.97545244e+02, 4.97545244e+02, 4.97545244e+02, 4.97545244e+02,
4.86291897e+02, 4.86291897e+02, 4.86291897e+02, 4.86291897e+02,
4.78109904e+02, 4.78109904e+02, 4.78109904e+02, 4.78109904e+02,
4.72583831e+02, 4.72583831e+02, 4.72583831e+02, 4.72583831e+02,
4.69066980e+02, 4.69066980e+02, 4.69066980e+02, 4.69066980e+02,
4.66717402e+02, 4.66717402e+02, 4.66717402e+02, 4.66717402e+02,
4.64917242e+02, 4.64917242e+02, 4.64917242e+02, 4.64917242e+02,
4.63194566e+02, 4.63194566e+02, 4.63194566e+02, 4.63194566e+02,
4.61252714e+02, 4.61252714e+02, 4.61252714e+02, 4.61252714e+02,
4.58921153e+02, 4.58921153e+02, 4.58921153e+02, 4.58921153e+02,
4.57188983e+02, 4.57188983e+02, 4.57188983e+02, 4.57188983e+02,
4.56328452e+02, 4.56328452e+02, 4.56328452e+02, 4.56328452e+02,
4.56152886e+02, 4.56152886e+02, 4.56152886e+02, 4.56152886e+02,
4.56518413e+02, 4.56518413e+02, 4.56518413e+02, 4.56518413e+02,
4.58123265e+02, 4.58123265e+02, 4.58123265e+02, 4.58123265e+02,
4.60396684e+02, 4.60396684e+02, 4.60396684e+02, 4.60396684e+02,
4.61683518e+02, 4.61683518e+02, 4.61683518e+02, 4.61683518e+02,
4.62187018e+02, 4.62187018e+02, 4.62187018e+02, 4.62187018e+02,
4.62180069e+02, 4.62180069e+02, 4.62180069e+02, 4.62180069e+02,
4.61692947e+02, 4.61692947e+02, 4.61692947e+02, 4.61692947e+02,
4.60488509e+02, 4.60488509e+02, 4.60488509e+02, 4.60488509e+02,
4.59598259e+02, 4.59598259e+02, 4.59598259e+02, 4.59598259e+02,
4.59243526e+02, 4.59243526e+02, 4.59243526e+02, 4.59243526e+02,
4.59176256e+02, 4.59176256e+02, 4.59176256e+02, 4.59176256e+02,
4.59584943e+02, 4.59584943e+02, 4.59584943e+02, 4.59584943e+02,
4.61767872e+02, 4.61767872e+02, 4.61767872e+02, 4.61767872e+02,
4.68198377e+02, 4.68198377e+02, 4.68198377e+02, 4.68198377e+02,
4.31471330e+02, 4.31471330e+02, 4.31471330e+02, 4.31471330e+02,
6.31355976e+01, 6.31355976e+01, 6.31355976e+01, 6.31355976e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99970841, 0.99970841, 0.99970841, 0.99970841, 0.99930144,
0.99930144, 0.99930144, 0.99930144, 0.99863196, 0.99863196,
0.99863196, 0.99863196, 0.99739581, 0.99739581, 0.99739581,
0.99739581, 0.99528631, 0.99528631, 0.99528631, 0.99528631,
0.99187569, 0.99187569, 0.99187569, 0.99187569, 0.98667832,
0.98667832, 0.98667832, 0.98667832, 0.97921344, 0.97921344,
0.97921344, 0.97921344, 0.96910018, 0.96910018, 0.96910018,
0.96910018, 0.95614459, 0.95614459, 0.95614459, 0.95614459,
0.9403864 , 0.9403864 , 0.9403864 , 0.9403864 , 0.92208515,
0.92208515, 0.92208515, 0.92208515, 0.90165204, 0.90165204,
0.90165204, 0.90165204, 0.8795543 , 0.8795543 , 0.8795543 ,
0.8795543 , 0.8562219 , 0.8562219 , 0.8562219 , 0.8562219 ,
0.83199086, 0.83199086, 0.83199086, 0.83199086, 0.8072897 ,
0.8072897 , 0.8072897 , 0.8072897 , 0.78301889, 0.78301889,
0.78301889, 0.78301889, 0.75959872, 0.75959872, 0.75959872,
0.75959872, 0.73699392, 0.73699392, 0.73699392, 0.73699392,
0.71523797, 0.71523797, 0.71523797, 0.71523797, 0.69439779,
0.69439779, 0.69439779, 0.69439779, 0.67459707, 0.67459707,
0.67459707, 0.67459707, 0.65602985, 0.65602985, 0.65602985,
0.65602985, 0.63896899, 0.63896899, 0.63896899, 0.63896899,
0.62375603, 0.62375603, 0.62375603, 0.62375603, 0.61074842,
0.61074842, 0.61074842, 0.61074842, 0.60023158, 0.60023158,
0.60023158, 0.60023158, 0.59228914, 0.59228914, 0.59228914,
0.59228914, 0.58673321, 0.58673321, 0.58673321, 0.58673321,
0.5830625 , 0.5830625 , 0.5830625 , 0.5830625 , 0.58066207,
0.58066207, 0.58066207, 0.58066207, 0.57886054, 0.57886054,
0.57886054, 0.57886054, 0.57725697, 0.57725697, 0.57725697,
0.57725697, 0.57558483, 0.57558483, 0.57558483, 0.57558483,
0.57353187, 0.57353187, 0.57353187, 0.57353187, 0.57172821,
0.57172821, 0.57172821, 0.57172821, 0.57069065, 0.57069065,
0.57069065, 0.57069065, 0.57030617, 0.57030617, 0.57030617,
0.57030617, 0.5703162 , 0.5703162 , 0.5703162 , 0.5703162 ,
0.57112889, 0.57112889, 0.57112889, 0.57112889, 0.57300196,
0.57300196, 0.57300196, 0.57300196, 0.57433756, 0.57433756,
0.57433756, 0.57433756, 0.57479763, 0.57479763, 0.57479763,
0.57479763, 0.5747401 , 0.5747401 , 0.5747401 , 0.5747401 ,
0.57411922, 0.57411922, 0.57411922, 0.57411922, 0.57239232,
0.57239232, 0.57239232, 0.57239232, 0.56952083, 0.56952083,
0.56952083, 0.56952083, 0.56630556, 0.56630556, 0.56630556,
0.56630556, 0.56528681, 0.56528681, 0.56528681, 0.56528681,
0.57801817, 0.57801817, 0.57801817, 0.57801817, 0.78841406,
0.78841406, 0.78841406, 0.78841406, 4.86286501, 4.86286501,
4.86286501, 4.86286501, 5.97828859, 5.97828859, 5.97828859,
5.97828859, 5.72444693, 5.72444693, 5.72444693, 5.72444693,
1.91551567, 1.91551567, 1.91551567, 1.91551567, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95865388e+01, -1.95865388e+01, -1.95865388e+01, -1.95865388e+01,
-1.95713064e+01, -1.95713064e+01, -1.95713064e+01, -1.95713064e+01,
-1.95462396e+01, -1.95462396e+01, -1.95462396e+01, -1.95462396e+01,
-1.94999235e+01, -1.94999235e+01, -1.94999235e+01, -1.94999235e+01,
-1.94207876e+01, -1.94207876e+01, -1.94207876e+01, -1.94207876e+01,
-1.92925726e+01, -1.92925726e+01, -1.92925726e+01, -1.92925726e+01,
-1.90965325e+01, -1.90965325e+01, -1.90965325e+01, -1.90965325e+01,
-1.88135375e+01, -1.88135375e+01, -1.88135375e+01, -1.88135375e+01,
-1.84273846e+01, -1.84273846e+01, -1.84273846e+01, -1.84273846e+01,
-1.79279360e+01, -1.79279360e+01, -1.79279360e+01, -1.79279360e+01,
-1.73130132e+01, -1.73130132e+01, -1.73130132e+01, -1.73130132e+01,
-1.65882893e+01, -1.65882893e+01, -1.65882893e+01, -1.65882893e+01,
-1.57652611e+01, -1.57652611e+01, -1.57652611e+01, -1.57652611e+01,
-1.48580597e+01, -1.48580597e+01, -1.48580597e+01, -1.48580597e+01,
-1.38800039e+01, -1.38800039e+01, -1.38800039e+01, -1.38800039e+01,
-1.28403183e+01, -1.28403183e+01, -1.28403183e+01, -1.28403183e+01,
-1.17572595e+01, -1.17572595e+01, -1.17572595e+01, -1.17572595e+01,
-1.06706023e+01, -1.06706023e+01, -1.06706023e+01, -1.06706023e+01,
-9.59207782e+00, -9.59207782e+00, -9.59207782e+00, -9.59207782e+00,
-8.52590941e+00, -8.52590941e+00, -8.52590941e+00, -8.52590941e+00,
-7.47481508e+00, -7.47481508e+00, -7.47481508e+00, -7.47481508e+00,
-6.44384352e+00, -6.44384352e+00, -6.44384352e+00, -6.44384352e+00,
-5.44119216e+00, -5.44119216e+00, -5.44119216e+00, -5.44119216e+00,
-4.47950487e+00, -4.47950487e+00, -4.47950487e+00, -4.47950487e+00,
-3.57669281e+00, -3.57669281e+00, -3.57669281e+00, -3.57669281e+00,
-2.75546701e+00, -2.75546701e+00, -2.75546701e+00, -2.75546701e+00,
-2.04082894e+00, -2.04082894e+00, -2.04082894e+00, -2.04082894e+00,
-1.45414272e+00, -1.45414272e+00, -1.45414272e+00, -1.45414272e+00,
-1.00612603e+00, -1.00612603e+00, -1.00612603e+00, -1.00612603e+00,
-6.89455908e-01, -6.89455908e-01, -6.89455908e-01, -6.89455908e-01,
-4.80670053e-01, -4.80670053e-01, -4.80670053e-01, -4.80670053e-01,
-3.42319475e-01, -3.42319475e-01, -3.42319475e-01, -3.42319475e-01,
-2.41375012e-01, -2.41375012e-01, -2.41375012e-01, -2.41375012e-01,
-1.49405839e-01, -1.49405839e-01, -1.49405839e-01, -1.49405839e-01,
-5.40162466e-02, -5.40162466e-02, -5.40162466e-02, -5.40162466e-02,
6.27764545e-02, 6.27764545e-02, 6.27764545e-02, 6.27764545e-02,
1.64311210e-01, 1.64311210e-01, 1.64311210e-01, 1.64311210e-01,
2.23440404e-01, 2.23440404e-01, 2.23440404e-01, 2.23440404e-01,
2.41331685e-01, 2.41331685e-01, 2.41331685e-01, 2.41331685e-01,
2.35342066e-01, 2.35342066e-01, 2.35342066e-01, 2.35342066e-01,
1.81482270e-01, 1.81482270e-01, 1.81482270e-01, 1.81482270e-01,
6.48488095e-02, 6.48488095e-02, 6.48488095e-02, 6.48488095e-02,
-2.03568679e-02, -2.03568679e-02, -2.03568679e-02, -2.03568679e-02,
-5.86975676e-02, -5.86975676e-02, -5.86975676e-02, -5.86975676e-02,
-6.46947945e-02, -6.46947945e-02, -6.46947945e-02, -6.46947945e-02,
-5.30438151e-02, -5.30438151e-02, -5.30438151e-02, -5.30438151e-02,
-3.73867515e-03, -3.73867515e-03, -3.73867515e-03, -3.73867515e-03,
5.22001451e-02, 5.22001451e-02, 5.22001451e-02, 5.22001451e-02,
7.99846270e-02, 7.99846270e-02, 7.99846270e-02, 7.99846270e-02,
8.71690661e-02, 8.71690661e-02, 8.71690661e-02, 8.71690661e-02,
7.83717458e-02, 7.83717458e-02, 7.83717458e-02, 7.83717458e-02,
4.48742665e-02, 4.48742665e-02, 4.48742665e-02, 4.48742665e-02,
1.53078823e-03, 1.53078823e-03, 1.53078823e-03, 1.53078823e-03,
-9.86484392e-02, -9.86484392e-02, -9.86484392e-02, -9.86484392e-02,
-4.95626950e-01, -4.95626950e-01, -4.95626950e-01, -4.95626950e-01,
-1.04680111e+01, -1.04680111e+01, -1.04680111e+01, -1.04680111e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99591815e+02, 9.99591815e+02, 9.99591815e+02, 9.99591815e+02,
9.99022210e+02, 9.99022210e+02, 9.99022210e+02, 9.99022210e+02,
9.98085463e+02, 9.98085463e+02, 9.98085463e+02, 9.98085463e+02,
9.96356640e+02, 9.96356640e+02, 9.96356640e+02, 9.96356640e+02,
9.93408753e+02, 9.93408753e+02, 9.93408753e+02, 9.93408753e+02,
9.88648660e+02, 9.88648660e+02, 9.88648660e+02, 9.88648660e+02,
9.81408703e+02, 9.81408703e+02, 9.81408703e+02, 9.81408703e+02,
9.71038404e+02, 9.71038404e+02, 9.71038404e+02, 9.71038404e+02,
9.57040940e+02, 9.57040940e+02, 9.57040940e+02, 9.57040940e+02,
9.39195528e+02, 9.39195528e+02, 9.39195528e+02, 9.39195528e+02,
9.17619067e+02, 9.17619067e+02, 9.17619067e+02, 9.17619067e+02,
8.92738992e+02, 8.92738992e+02, 8.92738992e+02, 8.92738992e+02,
8.65189172e+02, 8.65189172e+02, 8.65189172e+02, 8.65189172e+02,
8.35670124e+02, 8.35670124e+02, 8.35670124e+02, 8.35670124e+02,
8.04816955e+02, 8.04816955e+02, 8.04816955e+02, 8.04816955e+02,
7.73095509e+02, 7.73095509e+02, 7.73095509e+02, 7.73095509e+02,
7.41140547e+02, 7.41140547e+02, 7.41140547e+02, 7.41140547e+02,
7.10145956e+02, 7.10145956e+02, 7.10145956e+02, 7.10145956e+02,
6.80600426e+02, 6.80600426e+02, 6.80600426e+02, 6.80600426e+02,
6.52428119e+02, 6.52428119e+02, 6.52428119e+02, 6.52428119e+02,
6.25639802e+02, 6.25639802e+02, 6.25639802e+02, 6.25639802e+02,
6.00284835e+02, 6.00284835e+02, 6.00284835e+02, 6.00284835e+02,
5.76477037e+02, 5.76477037e+02, 5.76477037e+02, 5.76477037e+02,
5.54407827e+02, 5.54407827e+02, 5.54407827e+02, 5.54407827e+02,
5.34352397e+02, 5.34352397e+02, 5.34352397e+02, 5.34352397e+02,
5.16653749e+02, 5.16653749e+02, 5.16653749e+02, 5.16653749e+02,
5.01661646e+02, 5.01661646e+02, 5.01661646e+02, 5.01661646e+02,
4.89637328e+02, 4.89637328e+02, 4.89637328e+02, 4.89637328e+02,
4.80616585e+02, 4.80616585e+02, 4.80616585e+02, 4.80616585e+02,
4.74341772e+02, 4.74341772e+02, 4.74341772e+02, 4.74341772e+02,
4.70218666e+02, 4.70218666e+02, 4.70218666e+02, 4.70218666e+02,
4.67540691e+02, 4.67540691e+02, 4.67540691e+02, 4.67540691e+02,
4.65545430e+02, 4.65545430e+02, 4.65545430e+02, 4.65545430e+02,
4.63778314e+02, 4.63778314e+02, 4.63778314e+02, 4.63778314e+02,
4.61940211e+02, 4.61940211e+02, 4.61940211e+02, 4.61940211e+02,
4.59684748e+02, 4.59684748e+02, 4.59684748e+02, 4.59684748e+02,
4.57720215e+02, 4.57720215e+02, 4.57720215e+02, 4.57720215e+02,
4.56621500e+02, 4.56621500e+02, 4.56621500e+02, 4.56621500e+02,
4.56264513e+02, 4.56264513e+02, 4.56264513e+02, 4.56264513e+02,
4.56373259e+02, 4.56373259e+02, 4.56373259e+02, 4.56373259e+02,
4.57402934e+02, 4.57402934e+02, 4.57402934e+02, 4.57402934e+02,
4.59642497e+02, 4.59642497e+02, 4.59642497e+02, 4.59642497e+02,
4.61292364e+02, 4.61292364e+02, 4.61292364e+02, 4.61292364e+02,
4.61981033e+02, 4.61981033e+02, 4.61981033e+02, 4.61981033e+02,
4.62155688e+02, 4.62155688e+02, 4.62155688e+02, 4.62155688e+02,
4.61925772e+02, 4.61925772e+02, 4.61925772e+02, 4.61925772e+02,
4.60951335e+02, 4.60951335e+02, 4.60951335e+02, 4.60951335e+02,
4.59861646e+02, 4.59861646e+02, 4.59861646e+02, 4.59861646e+02,
4.59352273e+02, 4.59352273e+02, 4.59352273e+02, 4.59352273e+02,
4.59248358e+02, 4.59248358e+02, 4.59248358e+02, 4.59248358e+02,
4.59387673e+02, 4.59387673e+02, 4.59387673e+02, 4.59387673e+02,
4.60098101e+02, 4.60098101e+02, 4.60098101e+02, 4.60098101e+02,
4.62949741e+02, 4.62949741e+02, 4.62949741e+02, 4.62949741e+02,
4.69024772e+02, 4.69024772e+02, 4.69024772e+02, 4.69024772e+02,
4.31422201e+02, 4.31422201e+02, 4.31422201e+02, 4.31422201e+02,
9.89530174e+01, 9.89530174e+01, 9.89530174e+01, 9.89530174e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99932538, 0.99932538, 0.99932538, 0.99932538, 0.99847389,
0.99847389, 0.99847389, 0.99847389, 0.99719065, 0.99719065,
0.99719065, 0.99719065, 0.99496302, 0.99496302, 0.99496302,
0.99496302, 0.99142211, 0.99142211, 0.99142211, 0.99142211,
0.98608452, 0.98608452, 0.98608452, 0.98608452, 0.97849947,
0.97849947, 0.97849947, 0.97849947, 0.96831888, 0.96831888,
0.96831888, 0.96831888, 0.95538145, 0.95538145, 0.95538145,
0.95538145, 0.93974967, 0.93974967, 0.93974967, 0.93974967,
0.92169084, 0.92169084, 0.92169084, 0.92169084, 0.90160897,
0.90160897, 0.90160897, 0.90160897, 0.87995416, 0.87995416,
0.87995416, 0.87995416, 0.85713646, 0.85713646, 0.85713646,
0.85713646, 0.83347361, 0.83347361, 0.83347361, 0.83347361,
0.80935571, 0.80935571, 0.80935571, 0.80935571, 0.78560567,
0.78560567, 0.78560567, 0.78560567, 0.76265514, 0.76265514,
0.76265514, 0.76265514, 0.74047006, 0.74047006, 0.74047006,
0.74047006, 0.71907784, 0.71907784, 0.71907784, 0.71907784,
0.69853288, 0.69853288, 0.69853288, 0.69853288, 0.67893724,
0.67893724, 0.67893724, 0.67893724, 0.66045809, 0.66045809,
0.66045809, 0.66045809, 0.64333733, 0.64333733, 0.64333733,
0.64333733, 0.62788631, 0.62788631, 0.62788631, 0.62788631,
0.61445357, 0.61445357, 0.61445357, 0.61445357, 0.60334507,
0.60334507, 0.60334507, 0.60334507, 0.59472239, 0.59472239,
0.59472239, 0.59472239, 0.58848768, 0.58848768, 0.58848768,
0.58848768, 0.58427796, 0.58427796, 0.58427796, 0.58427796,
0.5814882 , 0.5814882 , 0.5814882 , 0.5814882 , 0.5795213 ,
0.5795213 , 0.5795213 , 0.5795213 , 0.57783345, 0.57783345,
0.57783345, 0.57783345, 0.5761768 , 0.5761768 , 0.5761768 ,
0.5761768 , 0.57425319, 0.57425319, 0.57425319, 0.57425319,
0.57233885, 0.57233885, 0.57233885, 0.57233885, 0.57105499,
0.57105499, 0.57105499, 0.57105499, 0.57050443, 0.57050443,
0.57050443, 0.57050443, 0.57039605, 0.57039605, 0.57039605,
0.57039605, 0.5708286 , 0.5708286 , 0.5708286 , 0.5708286 ,
0.57237405, 0.57237405, 0.57237405, 0.57237405, 0.57399928,
0.57399928, 0.57399928, 0.57399928, 0.57476715, 0.57476715,
0.57476715, 0.57476715, 0.57485765, 0.57485765, 0.57485765,
0.57485765, 0.57460734, 0.57460734, 0.57460734, 0.57460734,
0.57363085, 0.57363085, 0.57363085, 0.57363085, 0.57174526,
0.57174526, 0.57174526, 0.57174526, 0.56921496, 0.56921496,
0.56921496, 0.56921496, 0.56625196, 0.56625196, 0.56625196,
0.56625196, 0.56536145, 0.56536145, 0.56536145, 0.56536145,
0.578315 , 0.578315 , 0.578315 , 0.578315 , 0.78931831,
0.78931831, 0.78931831, 0.78931831, 4.87110358, 4.87110358,
4.87110358, 4.87110358, 5.97236196, 5.97236196, 5.97236196,
5.97236196, 5.69785103, 5.69785103, 5.69785103, 5.69785103,
2.31571933, 2.31571933, 2.31571933, 2.31571933, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95722036e+01, -1.95722036e+01, -1.95722036e+01, -1.95722036e+01,
-1.95403180e+01, -1.95403180e+01, -1.95403180e+01, -1.95403180e+01,
-1.94922333e+01, -1.94922333e+01, -1.94922333e+01, -1.94922333e+01,
-1.94086470e+01, -1.94086470e+01, -1.94086470e+01, -1.94086470e+01,
-1.92754934e+01, -1.92754934e+01, -1.92754934e+01, -1.92754934e+01,
-1.90740772e+01, -1.90740772e+01, -1.90740772e+01, -1.90740772e+01,
-1.87863686e+01, -1.87863686e+01, -1.87863686e+01, -1.87863686e+01,
-1.83973957e+01, -1.83973957e+01, -1.83973957e+01, -1.83973957e+01,
-1.78983110e+01, -1.78983110e+01, -1.78983110e+01, -1.78983110e+01,
-1.72879413e+01, -1.72879413e+01, -1.72879413e+01, -1.72879413e+01,
-1.65724820e+01, -1.65724820e+01, -1.65724820e+01, -1.65724820e+01,
-1.57634345e+01, -1.57634345e+01, -1.57634345e+01, -1.57634345e+01,
-1.48745566e+01, -1.48745566e+01, -1.48745566e+01, -1.48745566e+01,
-1.39186657e+01, -1.39186657e+01, -1.39186657e+01, -1.39186657e+01,
-1.29046184e+01, -1.29046184e+01, -1.29046184e+01, -1.29046184e+01,
-1.18486586e+01, -1.18486586e+01, -1.18486586e+01, -1.18486586e+01,
-1.07878435e+01, -1.07878435e+01, -1.07878435e+01, -1.07878435e+01,
-9.73402118e+00, -9.73402118e+00, -9.73402118e+00, -9.73402118e+00,
-8.69129853e+00, -8.69129853e+00, -8.69129853e+00, -8.69129853e+00,
-7.66189814e+00, -7.66189814e+00, -7.66189814e+00, -7.66189814e+00,
-6.65000920e+00, -6.65000920e+00, -6.65000920e+00, -6.65000920e+00,
-5.66259114e+00, -5.66259114e+00, -5.66259114e+00, -5.66259114e+00,
-4.71044094e+00, -4.71044094e+00, -4.71044094e+00, -4.71044094e+00,
-3.80919260e+00, -3.80919260e+00, -3.80919260e+00, -3.80919260e+00,
-2.97944840e+00, -2.97944840e+00, -2.97944840e+00, -2.97944840e+00,
-2.24489039e+00, -2.24489039e+00, -2.24489039e+00, -2.24489039e+00,
-1.62801708e+00, -1.62801708e+00, -1.62801708e+00, -1.62801708e+00,
-1.14294391e+00, -1.14294391e+00, -1.14294391e+00, -1.14294391e+00,
-7.89386694e-01, -7.89386694e-01, -7.89386694e-01, -7.89386694e-01,
-5.48465812e-01, -5.48465812e-01, -5.48465812e-01, -5.48465812e-01,
-3.89880604e-01, -3.89880604e-01, -3.89880604e-01, -3.89880604e-01,
-2.76421292e-01, -2.76421292e-01, -2.76421292e-01, -2.76421292e-01,
-1.81423842e-01, -1.81423842e-01, -1.81423842e-01, -1.81423842e-01,
-8.68886822e-02, -8.68886822e-02, -8.68886822e-02, -8.68886822e-02,
2.34026624e-02, 2.34026624e-02, 2.34026624e-02, 2.34026624e-02,
1.32897657e-01, 1.32897657e-01, 1.32897657e-01, 1.32897657e-01,
2.03757123e-01, 2.03757123e-01, 2.03757123e-01, 2.03757123e-01,
2.33947740e-01, 2.33947740e-01, 2.33947740e-01, 2.33947740e-01,
2.36273663e-01, 2.36273663e-01, 2.36273663e-01, 2.36273663e-01,
2.05566425e-01, 2.05566425e-01, 2.05566425e-01, 2.05566425e-01,
1.08555848e-01, 1.08555848e-01, 1.08555848e-01, 1.08555848e-01,
6.17048246e-03, 6.17048246e-03, 6.17048246e-03, 6.17048246e-03,
-4.50500960e-02, -4.50500960e-02, -4.50500960e-02, -4.50500960e-02,
-6.17988256e-02, -6.17988256e-02, -6.17988256e-02, -6.17988256e-02,
-5.81251979e-02, -5.81251979e-02, -5.81251979e-02, -5.81251979e-02,
-2.45396980e-02, -2.45396980e-02, -2.45396980e-02, -2.45396980e-02,
3.52554497e-02, 3.52554497e-02, 3.52554497e-02, 3.52554497e-02,
7.06347195e-02, 7.06347195e-02, 7.06347195e-02, 7.06347195e-02,
8.26184454e-02, 8.26184454e-02, 8.26184454e-02, 8.26184454e-02,
8.19573239e-02, 8.19573239e-02, 8.19573239e-02, 8.19573239e-02,
6.05906148e-02, 6.05906148e-02, 6.05906148e-02, 6.05906148e-02,
1.53916128e-02, 1.53916128e-02, 1.53916128e-02, 1.53916128e-02,
-2.36280500e-02, -2.36280500e-02, -2.36280500e-02, -2.36280500e-02,
-8.08509569e-02, -8.08509569e-02, -8.08509569e-02, -8.08509569e-02,
-1.88053082e-01, -1.88053082e-01, -1.88053082e-01, -1.88053082e-01,
-8.77545493e+00, -8.77545493e+00, -8.77545493e+00, -8.77545493e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99055758e+02, 9.99055758e+02, 9.99055758e+02, 9.99055758e+02,
9.97864296e+02, 9.97864296e+02, 9.97864296e+02, 9.97864296e+02,
9.96069823e+02, 9.96069823e+02, 9.96069823e+02, 9.96069823e+02,
9.92957177e+02, 9.92957177e+02, 9.92957177e+02, 9.92957177e+02,
9.88016071e+02, 9.88016071e+02, 9.88016071e+02, 9.88016071e+02,
9.80582335e+02, 9.80582335e+02, 9.80582335e+02, 9.80582335e+02,
9.70047780e+02, 9.70047780e+02, 9.70047780e+02, 9.70047780e+02,
9.55961126e+02, 9.55961126e+02, 9.55961126e+02, 9.55961126e+02,
9.38145851e+02, 9.38145851e+02, 9.38145851e+02, 9.38145851e+02,
9.16747939e+02, 9.16747939e+02, 9.16747939e+02, 9.16747939e+02,
8.92201843e+02, 8.92201843e+02, 8.92201843e+02, 8.92201843e+02,
8.65127175e+02, 8.65127175e+02, 8.65127175e+02, 8.65127175e+02,
8.36196578e+02, 8.36196578e+02, 8.36196578e+02, 8.36196578e+02,
8.06014257e+02, 8.06014257e+02, 8.06014257e+02, 8.06014257e+02,
7.75021205e+02, 7.75021205e+02, 7.75021205e+02, 7.75021205e+02,
7.43790671e+02, 7.43790671e+02, 7.43790671e+02, 7.43790671e+02,
7.13426487e+02, 7.13426487e+02, 7.13426487e+02, 7.13426487e+02,
6.84430514e+02, 6.84430514e+02, 6.84430514e+02, 6.84430514e+02,
6.56732353e+02, 6.56732353e+02, 6.56732353e+02, 6.56732353e+02,
6.30337925e+02, 6.30337925e+02, 6.30337925e+02, 6.30337925e+02,
6.05284642e+02, 6.05284642e+02, 6.05284642e+02, 6.05284642e+02,
5.81664184e+02, 5.81664184e+02, 5.81664184e+02, 5.81664184e+02,
5.59640349e+02, 5.59640349e+02, 5.59640349e+02, 5.59640349e+02,
5.39457397e+02, 5.39457397e+02, 5.39457397e+02, 5.39457397e+02,
5.21430448e+02, 5.21430448e+02, 5.21430448e+02, 5.21430448e+02,
5.05906319e+02, 5.05906319e+02, 5.05906319e+02, 5.05906319e+02,
4.93174854e+02, 4.93174854e+02, 4.93174854e+02, 4.93174854e+02,
4.83361102e+02, 4.83361102e+02, 4.83361102e+02, 4.83361102e+02,
4.76305712e+02, 4.76305712e+02, 4.76305712e+02, 4.76305712e+02,
4.71566197e+02, 4.71566197e+02, 4.71566197e+02, 4.71566197e+02,
4.68442609e+02, 4.68442609e+02, 4.68442609e+02, 4.68442609e+02,
4.66255482e+02, 4.66255482e+02, 4.66255482e+02, 4.66255482e+02,
4.64389544e+02, 4.64389544e+02, 4.64389544e+02, 4.64389544e+02,
4.62563951e+02, 4.62563951e+02, 4.62563951e+02, 4.62563951e+02,
4.60445001e+02, 4.60445001e+02, 4.60445001e+02, 4.60445001e+02,
4.58346750e+02, 4.58346750e+02, 4.58346750e+02, 4.58346750e+02,
4.56965719e+02, 4.56965719e+02, 4.56965719e+02, 4.56965719e+02,
4.56412626e+02, 4.56412626e+02, 4.56412626e+02, 4.56412626e+02,
4.56365020e+02, 4.56365020e+02, 4.56365020e+02, 4.56365020e+02,
4.56946993e+02, 4.56946993e+02, 4.56946993e+02, 4.56946993e+02,
4.58799914e+02, 4.58799914e+02, 4.58799914e+02, 4.58799914e+02,
4.60763034e+02, 4.60763034e+02, 4.60763034e+02, 4.60763034e+02,
4.61775701e+02, 4.61775701e+02, 4.61775701e+02, 4.61775701e+02,
4.62048828e+02, 4.62048828e+02, 4.62048828e+02, 4.62048828e+02,
4.62006574e+02, 4.62006574e+02, 4.62006574e+02, 4.62006574e+02,
4.61376208e+02, 4.61376208e+02, 4.61376208e+02, 4.61376208e+02,
4.60221577e+02, 4.60221577e+02, 4.60221577e+02, 4.60221577e+02,
4.59512318e+02, 4.59512318e+02, 4.59512318e+02, 4.59512318e+02,
4.59287827e+02, 4.59287827e+02, 4.59287827e+02, 4.59287827e+02,
4.59332397e+02, 4.59332397e+02, 4.59332397e+02, 4.59332397e+02,
4.59745748e+02, 4.59745748e+02, 4.59745748e+02, 4.59745748e+02,
4.60735106e+02, 4.60735106e+02, 4.60735106e+02, 4.60735106e+02,
4.63863896e+02, 4.63863896e+02, 4.63863896e+02, 4.63863896e+02,
4.68374949e+02, 4.68374949e+02, 4.68374949e+02, 4.68374949e+02,
4.28980647e+02, 4.28980647e+02, 4.28980647e+02, 4.28980647e+02,
1.36568031e+02, 1.36568031e+02, 1.36568031e+02, 1.36568031e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}]}
minmod_hllc
{'none_hll': [{'rho': array([0.98643656, 0.98643656, 0.98643656, 0.98643656, 0.98187523,
0.98187523, 0.98187523, 0.98187523, 0.97629826, 0.97629826,
0.97629826, 0.97629826, 0.9696374 , 0.9696374 , 0.9696374 ,
0.9696374 , 0.96185114, 0.96185114, 0.96185114, 0.96185114,
0.95292797, 0.95292797, 0.95292797, 0.95292797, 0.94288584,
0.94288584, 0.94288584, 0.94288584, 0.9317694 , 0.9317694 ,
0.9317694 , 0.9317694 , 0.91964579, 0.91964579, 0.91964579,
0.91964579, 0.90659974, 0.90659974, 0.90659974, 0.90659974,
0.89272851, 0.89272851, 0.89272851, 0.89272851, 0.87813721,
0.87813721, 0.87813721, 0.87813721, 0.86293485, 0.86293485,
0.86293485, 0.86293485, 0.84723115, 0.84723115, 0.84723115,
0.84723115, 0.83113423, 0.83113423, 0.83113423, 0.83113423,
0.81474914, 0.81474914, 0.81474914, 0.81474914, 0.79817706,
0.79817706, 0.79817706, 0.79817706, 0.78151514, 0.78151514,
0.78151514, 0.78151514, 0.7648568 , 0.7648568 , 0.7648568 ,
0.7648568 , 0.74829246, 0.74829246, 0.74829246, 0.74829246,
0.73191055, 0.73191055, 0.73191055, 0.73191055, 0.71579881,
0.71579881, 0.71579881, 0.71579881, 0.70004568, 0.70004568,
0.70004568, 0.70004568, 0.68474183, 0.68474183, 0.68474183,
0.68474183, 0.66998162, 0.66998162, 0.66998162, 0.66998162,
0.65586424, 0.65586424, 0.65586424, 0.65586424, 0.6424944 ,
0.6424944 , 0.6424944 , 0.6424944 , 0.62998191, 0.62998191,
0.62998191, 0.62998191, 0.61843985, 0.61843985, 0.61843985,
0.61843985, 0.60798063, 0.60798063, 0.60798063, 0.60798063,
0.59870956, 0.59870956, 0.59870956, 0.59870956, 0.59071647,
0.59071647, 0.59071647, 0.59071647, 0.58406669, 0.58406669,
0.58406669, 0.58406669, 0.57879508, 0.57879508, 0.57879508,
0.57879508, 0.57490833, 0.57490833, 0.57490833, 0.57490833,
0.57240215, 0.57240215, 0.57240215, 0.57240215, 0.57129898,
0.57129898, 0.57129898, 0.57129898, 0.57170911, 0.57170911,
0.57170911, 0.57170911, 0.57391234, 0.57391234, 0.57391234,
0.57391234, 0.5784582 , 0.5784582 , 0.5784582 , 0.5784582 ,
0.58628442, 0.58628442, 0.58628442, 0.58628442, 0.5988519 ,
0.5988519 , 0.5988519 , 0.5988519 , 0.61830681, 0.61830681,
0.61830681, 0.61830681, 0.647687 , 0.647687 , 0.647687 ,
0.647687 , 0.6912014 , 0.6912014 , 0.6912014 , 0.6912014 ,
0.75462142, 0.75462142, 0.75462142, 0.75462142, 0.84582344,
0.84582344, 0.84582344, 0.84582344, 0.97548882, 0.97548882,
0.97548882, 0.97548882, 1.15786481, 1.15786481, 1.15786481,
1.15786481, 1.41124647, 1.41124647, 1.41124647, 1.41124647,
1.75733819, 1.75733819, 1.75733819, 1.75733819, 2.21753898,
2.21753898, 2.21753898, 2.21753898, 2.80005074, 2.80005074,
2.80005074, 2.80005074, 3.44725292, 3.44725292, 3.44725292,
3.44725292, 3.82905469, 3.82905469, 3.82905469, 3.82905469,
3.12499981, 3.12499981, 3.12499981, 3.12499981, 1.3656139 ,
1.3656139 , 1.3656139 , 1.3656139 , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.08809248, -19.08809248, -19.08809248, -19.08809248,
-18.91571278, -18.91571278, -18.91571278, -18.91571278,
-18.70427812, -18.70427812, -18.70427812, -18.70427812,
-18.45066681, -18.45066681, -18.45066681, -18.45066681,
-18.15264725, -18.15264725, -18.15264725, -18.15264725,
-17.80897874, -17.80897874, -17.80897874, -17.80897874,
-17.41940216, -17.41940216, -17.41940216, -17.41940216,
-16.98456454, -16.98456454, -16.98456454, -16.98456454,
-16.50589809, -16.50589809, -16.50589809, -16.50589809,
-15.98547575, -15.98547575, -15.98547575, -15.98547575,
-15.42586267, -15.42586267, -15.42586267, -15.42586267,
-14.82997877, -14.82997877, -14.82997877, -14.82997877,
-14.20098192, -14.20098192, -14.20098192, -14.20098192,
-13.54217671, -13.54217671, -13.54217671, -13.54217671,
-12.85695051, -12.85695051, -12.85695051, -12.85695051,
-12.14873569, -12.14873569, -12.14873569, -12.14873569,
-11.42099626, -11.42099626, -11.42099626, -11.42099626,
-10.6772362 , -10.6772362 , -10.6772362 , -10.6772362 ,
-9.92102727, -9.92102727, -9.92102727, -9.92102727,
-9.15605434, -9.15605434, -9.15605434, -9.15605434,
-8.38617637, -8.38617637, -8.38617637, -8.38617637,
-7.61550147, -7.61550147, -7.61550147, -7.61550147,
-6.84847361, -6.84847361, -6.84847361, -6.84847361,
-6.08996685, -6.08996685, -6.08996685, -6.08996685,
-5.34537978, -5.34537978, -5.34537978, -5.34537978,
-4.62071699, -4.62071699, -4.62071699, -4.62071699,
-3.92263644, -3.92263644, -3.92263644, -3.92263644,
-3.25843008, -3.25843008, -3.25843008, -3.25843008,
-2.6358936 , -2.6358936 , -2.6358936 , -2.6358936 ,
-2.06303263, -2.06303263, -2.06303263, -2.06303263,
-1.54755819, -1.54755819, -1.54755819, -1.54755819,
-1.09615573, -1.09615573, -1.09615573, -1.09615573,
-0.7135819 , -0.7135819 , -0.7135819 , -0.7135819 ,
-0.40174647, -0.40174647, -0.40174647, -0.40174647,
-0.15903767, -0.15903767, -0.15903767, -0.15903767,
0.01982193, 0.01982193, 0.01982193, 0.01982193,
0.14321155, 0.14321155, 0.14321155, 0.14321155,
0.22140683, 0.22140683, 0.22140683, 0.22140683,
0.2650672 , 0.2650672 , 0.2650672 , 0.2650672 ,
0.28387795, 0.28387795, 0.28387795, 0.28387795,
0.28571464, 0.28571464, 0.28571464, 0.28571464,
0.27644787, 0.27644787, 0.27644787, 0.27644787,
0.2602505 , 0.2602505 , 0.2602505 , 0.2602505 ,
0.24013665, 0.24013665, 0.24013665, 0.24013665,
0.21847094, 0.21847094, 0.21847094, 0.21847094,
0.19728409, 0.19728409, 0.19728409, 0.19728409,
0.17833933, 0.17833933, 0.17833933, 0.17833933,
0.16296261, 0.16296261, 0.16296261, 0.16296261,
0.15165979, 0.15165979, 0.15165979, 0.15165979,
0.14349381, 0.14349381, 0.14349381, 0.14349381,
0.13494011, 0.13494011, 0.13494011, 0.13494011,
0.11621768, 0.11621768, 0.11621768, 0.11621768,
0.05201945, 0.05201945, 0.05201945, 0.05201945,
-0.2248209 , -0.2248209 , -0.2248209 , -0.2248209 ,
-1.41256056, -1.41256056, -1.41256056, -1.41256056,
-5.32034825, -5.32034825, -5.32034825, -5.32034825,
-15.36743081, -15.36743081, -15.36743081, -15.36743081,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([9.81089727e+02, 9.81089727e+02, 9.81089727e+02, 9.81089727e+02,
9.74759239e+02, 9.74759239e+02, 9.74759239e+02, 9.74759239e+02,
9.67040664e+02, 9.67040664e+02, 9.67040664e+02, 9.67040664e+02,
9.57850178e+02, 9.57850178e+02, 9.57850178e+02, 9.57850178e+02,
9.47144747e+02, 9.47144747e+02, 9.47144747e+02, 9.47144747e+02,
9.34925440e+02, 9.34925440e+02, 9.34925440e+02, 9.34925440e+02,
9.21235831e+02, 9.21235831e+02, 9.21235831e+02, 9.21235831e+02,
9.06157333e+02, 9.06157333e+02, 9.06157333e+02, 9.06157333e+02,
8.89802452e+02, 8.89802452e+02, 8.89802452e+02, 8.89802452e+02,
8.72307073e+02, 8.72307073e+02, 8.72307073e+02, 8.72307073e+02,
8.53822684e+02, 8.53822684e+02, 8.53822684e+02, 8.53822684e+02,
8.34509276e+02, 8.34509276e+02, 8.34509276e+02, 8.34509276e+02,
8.14529348e+02, 8.14529348e+02, 8.14529348e+02, 8.14529348e+02,
7.94043216e+02, 7.94043216e+02, 7.94043216e+02, 7.94043216e+02,
7.73205652e+02, 7.73205652e+02, 7.73205652e+02, 7.73205652e+02,
7.52163729e+02, 7.52163729e+02, 7.52163729e+02, 7.52163729e+02,
7.31055735e+02, 7.31055735e+02, 7.31055735e+02, 7.31055735e+02,
7.10010929e+02, 7.10010929e+02, 7.10010929e+02, 7.10010929e+02,
6.89149991e+02, 6.89149991e+02, 6.89149991e+02, 6.89149991e+02,
6.68585986e+02, 6.68585986e+02, 6.68585986e+02, 6.68585986e+02,
6.48425713e+02, 6.48425713e+02, 6.48425713e+02, 6.48425713e+02,
6.28771322e+02, 6.28771322e+02, 6.28771322e+02, 6.28771322e+02,
6.09722091e+02, 6.09722091e+02, 6.09722091e+02, 6.09722091e+02,
5.91376246e+02, 5.91376246e+02, 5.91376246e+02, 5.91376246e+02,
5.73832666e+02, 5.73832666e+02, 5.73832666e+02, 5.73832666e+02,
5.57192250e+02, 5.57192250e+02, 5.57192250e+02, 5.57192250e+02,
5.41558609e+02, 5.41558609e+02, 5.41558609e+02, 5.41558609e+02,
5.27037604e+02, 5.27037604e+02, 5.27037604e+02, 5.27037604e+02,
5.13735105e+02, 5.13735105e+02, 5.13735105e+02, 5.13735105e+02,
5.01752265e+02, 5.01752265e+02, 5.01752265e+02, 5.01752265e+02,
4.91177719e+02, 4.91177719e+02, 4.91177719e+02, 4.91177719e+02,
4.82076611e+02, 4.82076611e+02, 4.82076611e+02, 4.82076611e+02,
4.74477430e+02, 4.74477430e+02, 4.74477430e+02, 4.74477430e+02,
4.68359105e+02, 4.68359105e+02, 4.68359105e+02, 4.68359105e+02,
4.63642342e+02, 4.63642342e+02, 4.63642342e+02, 4.63642342e+02,
4.60189553e+02, 4.60189553e+02, 4.60189553e+02, 4.60189553e+02,
4.57816053e+02, 4.57816053e+02, 4.57816053e+02, 4.57816053e+02,
4.56311386e+02, 4.56311386e+02, 4.56311386e+02, 4.56311386e+02,
4.55465320e+02, 4.55465320e+02, 4.55465320e+02, 4.55465320e+02,
4.55090849e+02, 4.55090849e+02, 4.55090849e+02, 4.55090849e+02,
4.55037987e+02, 4.55037987e+02, 4.55037987e+02, 4.55037987e+02,
4.55196337e+02, 4.55196337e+02, 4.55196337e+02, 4.55196337e+02,
4.55488829e+02, 4.55488829e+02, 4.55488829e+02, 4.55488829e+02,
4.55861344e+02, 4.55861344e+02, 4.55861344e+02, 4.55861344e+02,
4.56272676e+02, 4.56272676e+02, 4.56272676e+02, 4.56272676e+02,
4.56687434e+02, 4.56687434e+02, 4.56687434e+02, 4.56687434e+02,
4.57072673e+02, 4.57072673e+02, 4.57072673e+02, 4.57072673e+02,
4.57398268e+02, 4.57398268e+02, 4.57398268e+02, 4.57398268e+02,
4.57641962e+02, 4.57641962e+02, 4.57641962e+02, 4.57641962e+02,
4.57800997e+02, 4.57800997e+02, 4.57800997e+02, 4.57800997e+02,
4.57901826e+02, 4.57901826e+02, 4.57901826e+02, 4.57901826e+02,
4.57899342e+02, 4.57899342e+02, 4.57899342e+02, 4.57899342e+02,
4.56697527e+02, 4.56697527e+02, 4.56697527e+02, 4.56697527e+02,
4.46045725e+02, 4.46045725e+02, 4.46045725e+02, 4.46045725e+02,
3.88965031e+02, 3.88965031e+02, 3.88965031e+02, 3.88965031e+02,
2.27741725e+02, 2.27741725e+02, 2.27741725e+02, 2.27741725e+02,
3.27405159e+01, 3.27405159e+01, 3.27405159e+01, 3.27405159e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_rusanov': [{'rho': array([0.99936044, 0.99936044, 0.99936044, 0.99936044, 0.9985534 ,
0.9985534 , 0.9985534 , 0.9985534 , 0.9973132 , 0.9973132 ,
0.9973132 , 0.9973132 , 0.99515557, 0.99515557, 0.99515557,
0.99515557, 0.99170689, 0.99170689, 0.99170689, 0.99170689,
0.98648889, 0.98648889, 0.98648889, 0.98648889, 0.97905098,
0.97905098, 0.97905098, 0.97905098, 0.96904495, 0.96904495,
0.96904495, 0.96904495, 0.95630818, 0.95630818, 0.95630818,
0.95630818, 0.94090147, 0.94090147, 0.94090147, 0.94090147,
0.92309062, 0.92309062, 0.92309062, 0.92309062, 0.9032792 ,
0.9032792 , 0.9032792 , 0.9032792 , 0.88191867, 0.88191867,
0.88191867, 0.88191867, 0.85942638, 0.85942638, 0.85942638,
0.85942638, 0.83614726, 0.83614726, 0.83614726, 0.83614726,
0.81247789, 0.81247789, 0.81247789, 0.81247789, 0.78923474,
0.78923474, 0.78923474, 0.78923474, 0.76675375, 0.76675375,
0.76675375, 0.76675375, 0.74498531, 0.74498531, 0.74498531,
0.74498531, 0.72392675, 0.72392675, 0.72392675, 0.72392675,
0.70357996, 0.70357996, 0.70357996, 0.70357996, 0.68397009,
0.68397009, 0.68397009, 0.68397009, 0.66515637, 0.66515637,
0.66515637, 0.66515637, 0.64724516, 0.64724516, 0.64724516,
0.64724516, 0.63040323, 0.63040323, 0.63040323, 0.63040323,
0.61486697, 0.61486697, 0.61486697, 0.61486697, 0.60093753,
0.60093753, 0.60093753, 0.60093753, 0.58894559, 0.58894559,
0.58894559, 0.58894559, 0.5791716 , 0.5791716 , 0.5791716 ,
0.5791716 , 0.57173786, 0.57173786, 0.57173786, 0.57173786,
0.56656387, 0.56656387, 0.56656387, 0.56656387, 0.56343019,
0.56343019, 0.56343019, 0.56343019, 0.56206964, 0.56206964,
0.56206964, 0.56206964, 0.56186718, 0.56186718, 0.56186718,
0.56186718, 0.5622292 , 0.5622292 , 0.5622292 , 0.5622292 ,
0.56352241, 0.56352241, 0.56352241, 0.56352241, 0.56619671,
0.56619671, 0.56619671, 0.56619671, 0.56859552, 0.56859552,
0.56859552, 0.56859552, 0.56940349, 0.56940349, 0.56940349,
0.56940349, 0.56923843, 0.56923843, 0.56923843, 0.56923843,
0.56845654, 0.56845654, 0.56845654, 0.56845654, 0.56753857,
0.56753857, 0.56753857, 0.56753857, 0.5672215 , 0.5672215 ,
0.5672215 , 0.5672215 , 0.56822016, 0.56822016, 0.56822016,
0.56822016, 0.57247 , 0.57247 , 0.57247 , 0.57247 ,
0.5839843 , 0.5839843 , 0.5839843 , 0.5839843 , 0.61018524,
0.61018524, 0.61018524, 0.61018524, 0.66484813, 0.66484813,
0.66484813, 0.66484813, 0.77317594, 0.77317594, 0.77317594,
0.77317594, 0.98031916, 0.98031916, 0.98031916, 0.98031916,
1.36620913, 1.36620913, 1.36620913, 1.36620913, 2.05407781,
2.05407781, 2.05407781, 2.05407781, 3.0909881 , 3.0909881 ,
3.0909881 , 3.0909881 , 4.09901557, 4.09901557, 4.09901557,
4.09901557, 4.67576107, 4.67576107, 4.67576107, 4.67576107,
3.58271781, 3.58271781, 3.58271781, 3.58271781, 1.62778827,
1.62778827, 1.62778827, 1.62778827, 1.05141403, 1.05141403,
1.05141403, 1.05141403, 1.002022 , 1.002022 , 1.002022 ,
1.002022 , 1.00002489, 1.00002489, 1.00002489, 1.00002489,
1.00000006, 1.00000006, 1.00000006, 1.00000006, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.57351664, -19.57351664, -19.57351664, -19.57351664,
-19.54329587, -19.54329587, -19.54329587, -19.54329587,
-19.49682652, -19.49682652, -19.49682652, -19.49682652,
-19.41587326, -19.41587326, -19.41587326, -19.41587326,
-19.28619913, -19.28619913, -19.28619913, -19.28619913,
-19.08931809, -19.08931809, -19.08931809, -19.08931809,
-18.80723575, -18.80723575, -18.80723575, -18.80723575,
-18.42502783, -18.42502783, -18.42502783, -18.42502783,
-17.93388119, -17.93388119, -17.93388119, -17.93388119,
-17.33267704, -17.33267704, -17.33267704, -17.33267704,
-16.62769653, -16.62769653, -16.62769653, -16.62769653,
-15.83056805, -15.83056805, -15.83056805, -15.83056805,
-14.95522479, -14.95522479, -14.95522479, -14.95522479,
-14.01470288, -14.01470288, -14.01470288, -14.01470288,
-13.01895689, -13.01895689, -13.01895689, -13.01895689,
-11.98720526, -11.98720526, -11.98720526, -11.98720526,
-10.9521084 , -10.9521084 , -10.9521084 , -10.9521084 ,
-9.9234869 , -9.9234869 , -9.9234869 , -9.9234869 ,
-8.90475082, -8.90475082, -8.90475082, -8.90475082,
-7.89631245, -7.89631245, -7.89631245, -7.89631245,
-6.8995546 , -6.8995546 , -6.8995546 , -6.8995546 ,
-5.91698346, -5.91698346, -5.91698346, -5.91698346,
-4.95296473, -4.95296473, -4.95296473, -4.95296473,
-4.01464772, -4.01464772, -4.01464772, -4.01464772,
-3.11301518, -3.11301518, -3.11301518, -3.11301518,
-2.2637381 , -2.2637381 , -2.2637381 , -2.2637381 ,
-1.48720372, -1.48720372, -1.48720372, -1.48720372,
-0.80685477, -0.80685477, -0.80685477, -0.80685477,
-0.24516991, -0.24516991, -0.24516991, -0.24516991,
0.18238648, 0.18238648, 0.18238648, 0.18238648,
0.47381192, 0.47381192, 0.47381192, 0.47381192,
0.64435108, 0.64435108, 0.64435108, 0.64435108,
0.72335373, 0.72335373, 0.72335373, 0.72335373,
0.74473342, 0.74473342, 0.74473342, 0.74473342,
0.73856117, 0.73856117, 0.73856117, 0.73856117,
0.6849367 , 0.6849367 , 0.6849367 , 0.6849367 ,
0.56264789, 0.56264789, 0.56264789, 0.56264789,
0.43696319, 0.43696319, 0.43696319, 0.43696319,
0.35096003, 0.35096003, 0.35096003, 0.35096003,
0.29570925, 0.29570925, 0.29570925, 0.29570925,
0.26317089, 0.26317089, 0.26317089, 0.26317089,
0.2477037 , 0.2477037 , 0.2477037 , 0.2477037 ,
0.2405064 , 0.2405064 , 0.2405064 , 0.2405064 ,
0.23764166, 0.23764166, 0.23764166, 0.23764166,
0.23553365, 0.23553365, 0.23553365, 0.23553365,
0.23121368, 0.23121368, 0.23121368, 0.23121368,
0.21923797, 0.21923797, 0.21923797, 0.21923797,
0.19361124, 0.19361124, 0.19361124, 0.19361124,
0.15341409, 0.15341409, 0.15341409, 0.15341409,
0.12239052, 0.12239052, 0.12239052, 0.12239052,
0.11071176, 0.11071176, 0.11071176, 0.11071176,
0.12002847, 0.12002847, 0.12002847, 0.12002847,
0.15646164, 0.15646164, 0.15646164, 0.15646164,
0.17647316, 0.17647316, 0.17647316, 0.17647316,
-0.559644 , -0.559644 , -0.559644 , -0.559644 ,
-5.21017841, -5.21017841, -5.21017841, -5.21017841,
-14.79033422, -14.79033422, -14.79033422, -14.79033422,
-19.25410748, -19.25410748, -19.25410748, -19.25410748,
-19.59196705, -19.59196705, -19.59196705, -19.59196705,
-19.59743635, -19.59743635, -19.59743635, -19.59743635,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([9.99104868e+02, 9.99104868e+02, 9.99104868e+02, 9.99104868e+02,
9.97975676e+02, 9.97975676e+02, 9.97975676e+02, 9.97975676e+02,
9.96241518e+02, 9.96241518e+02, 9.96241518e+02, 9.96241518e+02,
9.93227116e+02, 9.93227116e+02, 9.93227116e+02, 9.93227116e+02,
9.88415564e+02, 9.88415564e+02, 9.88415564e+02, 9.88415564e+02,
9.81150008e+02, 9.81150008e+02, 9.81150008e+02, 9.81150008e+02,
9.70822440e+02, 9.70822440e+02, 9.70822440e+02, 9.70822440e+02,
9.56980992e+02, 9.56980992e+02, 9.56980992e+02, 9.56980992e+02,
9.39446248e+02, 9.39446248e+02, 9.39446248e+02, 9.39446248e+02,
9.18360061e+02, 9.18360061e+02, 9.18360061e+02, 9.18360061e+02,
8.94152425e+02, 8.94152425e+02, 8.94152425e+02, 8.94152425e+02,
8.67439511e+02, 8.67439511e+02, 8.67439511e+02, 8.67439511e+02,
8.38892594e+02, 8.38892594e+02, 8.38892594e+02, 8.38892594e+02,
8.09115807e+02, 8.09115807e+02, 8.09115807e+02, 8.09115807e+02,
7.78532813e+02, 7.78532813e+02, 7.78532813e+02, 7.78532813e+02,
7.47781594e+02, 7.47781594e+02, 7.47781594e+02, 7.47781594e+02,
7.17990672e+02, 7.17990672e+02, 7.17990672e+02, 7.17990672e+02,
6.89530685e+02, 6.89530685e+02, 6.89530685e+02, 6.89530685e+02,
6.62290410e+02, 6.62290410e+02, 6.62290410e+02, 6.62290410e+02,
6.36241730e+02, 6.36241730e+02, 6.36241730e+02, 6.36241730e+02,
6.11362815e+02, 6.11362815e+02, 6.11362815e+02, 6.11362815e+02,
5.87658689e+02, 5.87658689e+02, 5.87658689e+02, 5.87658689e+02,
5.65172198e+02, 5.65172198e+02, 5.65172198e+02, 5.65172198e+02,
5.43997977e+02, 5.43997977e+02, 5.43997977e+02, 5.43997977e+02,
5.24296334e+02, 5.24296334e+02, 5.24296334e+02, 5.24296334e+02,
5.06301281e+02, 5.06301281e+02, 5.06301281e+02, 5.06301281e+02,
4.90312750e+02, 4.90312750e+02, 4.90312750e+02, 4.90312750e+02,
4.76661009e+02, 4.76661009e+02, 4.76661009e+02, 4.76661009e+02,
4.65636316e+02, 4.65636316e+02, 4.65636316e+02, 4.65636316e+02,
4.57390322e+02, 4.57390322e+02, 4.57390322e+02, 4.57390322e+02,
4.51845821e+02, 4.51845821e+02, 4.51845821e+02, 4.51845821e+02,
4.48623358e+02, 4.48623358e+02, 4.48623358e+02, 4.48623358e+02,
4.47149698e+02, 4.47149698e+02, 4.47149698e+02, 4.47149698e+02,
4.46744951e+02, 4.46744951e+02, 4.46744951e+02, 4.46744951e+02,
4.46867378e+02, 4.46867378e+02, 4.46867378e+02, 4.46867378e+02,
4.47880353e+02, 4.47880353e+02, 4.47880353e+02, 4.47880353e+02,
4.50188582e+02, 4.50188582e+02, 4.50188582e+02, 4.50188582e+02,
4.52565860e+02, 4.52565860e+02, 4.52565860e+02, 4.52565860e+02,
4.54208238e+02, 4.54208238e+02, 4.54208238e+02, 4.54208238e+02,
4.55263682e+02, 4.55263682e+02, 4.55263682e+02, 4.55263682e+02,
4.55866441e+02, 4.55866441e+02, 4.55866441e+02, 4.55866441e+02,
4.56177752e+02, 4.56177752e+02, 4.56177752e+02, 4.56177752e+02,
4.56286145e+02, 4.56286145e+02, 4.56286145e+02, 4.56286145e+02,
4.56325796e+02, 4.56325796e+02, 4.56325796e+02, 4.56325796e+02,
4.56354405e+02, 4.56354405e+02, 4.56354405e+02, 4.56354405e+02,
4.56418263e+02, 4.56418263e+02, 4.56418263e+02, 4.56418263e+02,
4.56621863e+02, 4.56621863e+02, 4.56621863e+02, 4.56621863e+02,
4.57112300e+02, 4.57112300e+02, 4.57112300e+02, 4.57112300e+02,
4.57973595e+02, 4.57973595e+02, 4.57973595e+02, 4.57973595e+02,
4.58739636e+02, 4.58739636e+02, 4.58739636e+02, 4.58739636e+02,
4.59226578e+02, 4.59226578e+02, 4.59226578e+02, 4.59226578e+02,
4.59409554e+02, 4.59409554e+02, 4.59409554e+02, 4.59409554e+02,
4.58892267e+02, 4.58892267e+02, 4.58892267e+02, 4.58892267e+02,
4.57009278e+02, 4.57009278e+02, 4.57009278e+02, 4.57009278e+02,
4.27595172e+02, 4.27595172e+02, 4.27595172e+02, 4.27595172e+02,
2.37359835e+02, 2.37359835e+02, 2.37359835e+02, 2.37359835e+02,
3.60951923e+01, 3.60951923e+01, 3.60951923e+01, 3.60951923e+01,
9.83220267e-01, 9.83220267e-01, 9.83220267e-01, 9.83220267e-01,
1.30337788e-02, 1.30337788e-02, 1.30337788e-02, 1.30337788e-02,
1.00016618e-02, 1.00016618e-02, 1.00016618e-02, 1.00016618e-02,
1.00000014e-02, 1.00000014e-02, 1.00000014e-02, 1.00000014e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hll': [{'rho': array([0.99934328, 0.99934328, 0.99934328, 0.99934328, 0.99851611,
0.99851611, 0.99851611, 0.99851611, 0.99724725, 0.99724725,
0.99724725, 0.99724725, 0.99504269, 0.99504269, 0.99504269,
0.99504269, 0.9915246 , 0.9915246 , 0.9915246 , 0.9915246 ,
0.98621019, 0.98621019, 0.98621019, 0.98621019, 0.97864743,
0.97864743, 0.97864743, 0.97864743, 0.96849024, 0.96849024,
0.96849024, 0.96849024, 0.95558156, 0.95558156, 0.95558156,
0.95558156, 0.93998953, 0.93998953, 0.93998953, 0.93998953,
0.92198657, 0.92198657, 0.92198657, 0.92198657, 0.90197947,
0.90197947, 0.90197947, 0.90197947, 0.88041737, 0.88041737,
0.88041737, 0.88041737, 0.8577076 , 0.8577076 , 0.8577076 ,
0.8577076 , 0.83419893, 0.83419893, 0.83419893, 0.83419893,
0.81039602, 0.81039602, 0.81039602, 0.81039602, 0.7871834 ,
0.7871834 , 0.7871834 , 0.7871834 , 0.76477086, 0.76477086,
0.76477086, 0.76477086, 0.74313096, 0.74313096, 0.74313096,
0.74313096, 0.72227041, 0.72227041, 0.72227041, 0.72227041,
0.70221675, 0.70221675, 0.70221675, 0.70221675, 0.68302785,
0.68302785, 0.68302785, 0.68302785, 0.66480295, 0.66480295,
0.66480295, 0.66480295, 0.64769042, 0.64769042, 0.64769042,
0.64769042, 0.63188795, 0.63188795, 0.63188795, 0.63188795,
0.61762934, 0.61762934, 0.61762934, 0.61762934, 0.60514723,
0.60514723, 0.60514723, 0.60514723, 0.59461052, 0.59461052,
0.59461052, 0.59461052, 0.58606043, 0.58606043, 0.58606043,
0.58606043, 0.57936591, 0.57936591, 0.57936591, 0.57936591,
0.5742849 , 0.5742849 , 0.5742849 , 0.5742849 , 0.57056455,
0.57056455, 0.57056455, 0.57056455, 0.56812439, 0.56812439,
0.56812439, 0.56812439, 0.56694752, 0.56694752, 0.56694752,
0.56694752, 0.56675102, 0.56675102, 0.56675102, 0.56675102,
0.56703227, 0.56703227, 0.56703227, 0.56703227, 0.56746887,
0.56746887, 0.56746887, 0.56746887, 0.56814229, 0.56814229,
0.56814229, 0.56814229, 0.56926731, 0.56926731, 0.56926731,
0.56926731, 0.5708412 , 0.5708412 , 0.5708412 , 0.5708412 ,
0.57146233, 0.57146233, 0.57146233, 0.57146233, 0.57138607,
0.57138607, 0.57138607, 0.57138607, 0.57157687, 0.57157687,
0.57157687, 0.57157687, 0.57307564, 0.57307564, 0.57307564,
0.57307564, 0.57778305, 0.57778305, 0.57778305, 0.57778305,
0.58965085, 0.58965085, 0.58965085, 0.58965085, 0.61757489,
0.61757489, 0.61757489, 0.61757489, 0.676769 , 0.676769 ,
0.676769 , 0.676769 , 0.7947168 , 0.7947168 , 0.7947168 ,
0.7947168 , 1.02208294, 1.02208294, 1.02208294, 1.02208294,
1.45188831, 1.45188831, 1.45188831, 1.45188831, 2.23726335,
2.23726335, 2.23726335, 2.23726335, 3.36644262, 3.36644262,
3.36644262, 3.36644262, 4.30863495, 4.30863495, 4.30863495,
4.30863495, 4.7719083 , 4.7719083 , 4.7719083 , 4.7719083 ,
3.26199935, 3.26199935, 3.26199935, 3.26199935, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95728753e+01, -1.95728753e+01, -1.95728753e+01, -1.95728753e+01,
-1.95419011e+01, -1.95419011e+01, -1.95419011e+01, -1.95419011e+01,
-1.94943606e+01, -1.94943606e+01, -1.94943606e+01, -1.94943606e+01,
-1.94116539e+01, -1.94116539e+01, -1.94116539e+01, -1.94116539e+01,
-1.92793874e+01, -1.92793874e+01, -1.92793874e+01, -1.92793874e+01,
-1.90789037e+01, -1.90789037e+01, -1.90789037e+01, -1.90789037e+01,
-1.87921421e+01, -1.87921421e+01, -1.87921421e+01, -1.87921421e+01,
-1.84042251e+01, -1.84042251e+01, -1.84042251e+01, -1.84042251e+01,
-1.79064879e+01, -1.79064879e+01, -1.79064879e+01, -1.79064879e+01,
-1.72980007e+01, -1.72980007e+01, -1.72980007e+01, -1.72980007e+01,
-1.65851908e+01, -1.65851908e+01, -1.65851908e+01, -1.65851908e+01,
-1.57797077e+01, -1.57797077e+01, -1.57797077e+01, -1.57797077e+01,
-1.48953072e+01, -1.48953072e+01, -1.48953072e+01, -1.48953072e+01,
-1.39445524e+01, -1.39445524e+01, -1.39445524e+01, -1.39445524e+01,
-1.29362385e+01, -1.29362385e+01, -1.29362385e+01, -1.29362385e+01,
-1.18953231e+01, -1.18953231e+01, -1.18953231e+01, -1.18953231e+01,
-1.08579328e+01, -1.08579328e+01, -1.08579328e+01, -1.08579328e+01,
-9.83073930e+00, -9.83073930e+00, -9.83073930e+00, -9.83073930e+00,
-8.81601604e+00, -8.81601604e+00, -8.81601604e+00, -8.81601604e+00,
-7.81530982e+00, -7.81530982e+00, -7.81530982e+00, -7.81530982e+00,
-6.83139415e+00, -6.83139415e+00, -6.83139415e+00, -6.83139415e+00,
-5.86884536e+00, -5.86884536e+00, -5.86884536e+00, -5.86884536e+00,
-4.93466417e+00, -4.93466417e+00, -4.93466417e+00, -4.93466417e+00,
-4.03889039e+00, -4.03889039e+00, -4.03889039e+00, -4.03889039e+00,
-3.19481551e+00, -3.19481551e+00, -3.19481551e+00, -3.19481551e+00,
-2.41823045e+00, -2.41823045e+00, -2.41823045e+00, -2.41823045e+00,
-1.72550236e+00, -1.72550236e+00, -1.72550236e+00, -1.72550236e+00,
-1.13060519e+00, -1.13060519e+00, -1.13060519e+00, -1.13060519e+00,
-6.41517880e-01, -6.41517880e-01, -6.41517880e-01, -6.41517880e-01,
-2.58502471e-01, -2.58502471e-01, -2.58502471e-01, -2.58502471e-01,
2.67096654e-02, 2.67096654e-02, 2.67096654e-02, 2.67096654e-02,
2.26622767e-01, 2.26622767e-01, 2.26622767e-01, 2.26622767e-01,
3.57372328e-01, 3.57372328e-01, 3.57372328e-01, 3.57372328e-01,
4.33214769e-01, 4.33214769e-01, 4.33214769e-01, 4.33214769e-01,
4.69047565e-01, 4.69047565e-01, 4.69047565e-01, 4.69047565e-01,
4.79570771e-01, 4.79570771e-01, 4.79570771e-01, 4.79570771e-01,
4.76227154e-01, 4.76227154e-01, 4.76227154e-01, 4.76227154e-01,
4.46162545e-01, 4.46162545e-01, 4.46162545e-01, 4.46162545e-01,
3.63818059e-01, 3.63818059e-01, 3.63818059e-01, 3.63818059e-01,
2.15124074e-01, 2.15124074e-01, 2.15124074e-01, 2.15124074e-01,
8.93027653e-02, 8.93027653e-02, 8.93027653e-02, 8.93027653e-02,
2.06270782e-02, 2.06270782e-02, 2.06270782e-02, 2.06270782e-02,
-2.92513730e-03, -2.92513730e-03, -2.92513730e-03, -2.92513730e-03,
-3.92937495e-03, -3.92937495e-03, -3.92937495e-03, -3.92937495e-03,
2.35331575e-02, 2.35331575e-02, 2.35331575e-02, 2.35331575e-02,
9.46626638e-02, 9.46626638e-02, 9.46626638e-02, 9.46626638e-02,
1.49629928e-01, 1.49629928e-01, 1.49629928e-01, 1.49629928e-01,
1.70157235e-01, 1.70157235e-01, 1.70157235e-01, 1.70157235e-01,
1.69584193e-01, 1.69584193e-01, 1.69584193e-01, 1.69584193e-01,
1.45946700e-01, 1.45946700e-01, 1.45946700e-01, 1.45946700e-01,
7.66535320e-02, 7.66535320e-02, 7.66535320e-02, 7.66535320e-02,
1.60429550e-02, 1.60429550e-02, 1.60429550e-02, 1.60429550e-02,
3.24300562e-02, 3.24300562e-02, 3.24300562e-02, 3.24300562e-02,
1.15367973e-01, 1.15367973e-01, 1.15367973e-01, 1.15367973e-01,
-2.77732333e-01, -2.77732333e-01, -2.77732333e-01, -2.77732333e-01,
-6.88001983e+00, -6.88001983e+00, -6.88001983e+00, -6.88001983e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99080830e+02, 9.99080830e+02, 9.99080830e+02, 9.99080830e+02,
9.97923433e+02, 9.97923433e+02, 9.97923433e+02, 9.97923433e+02,
9.96149113e+02, 9.96149113e+02, 9.96149113e+02, 9.96149113e+02,
9.93068920e+02, 9.93068920e+02, 9.93068920e+02, 9.93068920e+02,
9.88160094e+02, 9.88160094e+02, 9.88160094e+02, 9.88160094e+02,
9.80759608e+02, 9.80759608e+02, 9.80759608e+02, 9.80759608e+02,
9.70257799e+02, 9.70257799e+02, 9.70257799e+02, 9.70257799e+02,
9.56206452e+02, 9.56206452e+02, 9.56206452e+02, 9.56206452e+02,
9.38434995e+02, 9.38434995e+02, 9.38434995e+02, 9.38434995e+02,
9.17096911e+02, 9.17096911e+02, 9.17096911e+02, 9.17096911e+02,
8.92632853e+02, 8.92632853e+02, 8.92632853e+02, 8.92632853e+02,
8.65664895e+02, 8.65664895e+02, 8.65664895e+02, 8.65664895e+02,
8.36862646e+02, 8.36862646e+02, 8.36862646e+02, 8.36862646e+02,
8.06819454e+02, 8.06819454e+02, 8.06819454e+02, 8.06819454e+02,
7.75972344e+02, 7.75972344e+02, 7.75972344e+02, 7.75972344e+02,
7.45104729e+02, 7.45104729e+02, 7.45104729e+02, 7.45104729e+02,
7.15395716e+02, 7.15395716e+02, 7.15395716e+02, 7.15395716e+02,
6.87051653e+02, 6.87051653e+02, 6.87051653e+02, 6.87051653e+02,
6.59998015e+02, 6.59998015e+02, 6.59998015e+02, 6.59998015e+02,
6.34216437e+02, 6.34216437e+02, 6.34216437e+02, 6.34216437e+02,
6.09714105e+02, 6.09714105e+02, 6.09714105e+02, 6.09714105e+02,
5.86533693e+02, 5.86533693e+02, 5.86533693e+02, 5.86533693e+02,
5.64763854e+02, 5.64763854e+02, 5.64763854e+02, 5.64763854e+02,
5.44544477e+02, 5.44544477e+02, 5.44544477e+02, 5.44544477e+02,
5.26062779e+02, 5.26062779e+02, 5.26062779e+02, 5.26062779e+02,
5.09535724e+02, 5.09535724e+02, 5.09535724e+02, 5.09535724e+02,
4.95171163e+02, 4.95171163e+02, 4.95171163e+02, 4.95171163e+02,
4.83112079e+02, 4.83112079e+02, 4.83112079e+02, 4.83112079e+02,
4.73389742e+02, 4.73389742e+02, 4.73389742e+02, 4.73389742e+02,
4.65887995e+02, 4.65887995e+02, 4.65887995e+02, 4.65887995e+02,
4.60378925e+02, 4.60378925e+02, 4.60378925e+02, 4.60378925e+02,
4.56538628e+02, 4.56538628e+02, 4.56538628e+02, 4.56538628e+02,
4.54058031e+02, 4.54058031e+02, 4.54058031e+02, 4.54058031e+02,
4.52614854e+02, 4.52614854e+02, 4.52614854e+02, 4.52614854e+02,
4.51934049e+02, 4.51934049e+02, 4.51934049e+02, 4.51934049e+02,
4.51747252e+02, 4.51747252e+02, 4.51747252e+02, 4.51747252e+02,
4.51807226e+02, 4.51807226e+02, 4.51807226e+02, 4.51807226e+02,
4.52374748e+02, 4.52374748e+02, 4.52374748e+02, 4.52374748e+02,
4.53942543e+02, 4.53942543e+02, 4.53942543e+02, 4.53942543e+02,
4.56782749e+02, 4.56782749e+02, 4.56782749e+02, 4.56782749e+02,
4.59187550e+02, 4.59187550e+02, 4.59187550e+02, 4.59187550e+02,
4.60484560e+02, 4.60484560e+02, 4.60484560e+02, 4.60484560e+02,
4.60945937e+02, 4.60945937e+02, 4.60945937e+02, 4.60945937e+02,
4.60942022e+02, 4.60942022e+02, 4.60942022e+02, 4.60942022e+02,
4.60400779e+02, 4.60400779e+02, 4.60400779e+02, 4.60400779e+02,
4.59005251e+02, 4.59005251e+02, 4.59005251e+02, 4.59005251e+02,
4.57913462e+02, 4.57913462e+02, 4.57913462e+02, 4.57913462e+02,
4.57449218e+02, 4.57449218e+02, 4.57449218e+02, 4.57449218e+02,
4.57370070e+02, 4.57370070e+02, 4.57370070e+02, 4.57370070e+02,
4.57864703e+02, 4.57864703e+02, 4.57864703e+02, 4.57864703e+02,
4.59758501e+02, 4.59758501e+02, 4.59758501e+02, 4.59758501e+02,
4.61753093e+02, 4.61753093e+02, 4.61753093e+02, 4.61753093e+02,
4.62763243e+02, 4.62763243e+02, 4.62763243e+02, 4.62763243e+02,
4.57485339e+02, 4.57485339e+02, 4.57485339e+02, 4.57485339e+02,
4.14686087e+02, 4.14686087e+02, 4.14686087e+02, 4.14686087e+02,
2.01684986e+02, 2.01684986e+02, 2.01684986e+02, 2.01684986e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hllc': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745, -19.59745, -19.59745, -19.59745,
-19.59745, -19.59745, -19.59745]), 'P': array([1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99948739, 0.99948739, 0.99948739,
0.99948739, 0.98895197, 0.98895197, 0.98895197, 0.98895197,
0.91124915, 0.91124915, 0.91124915, 0.91124915, 0.8298636 ,
0.8298636 , 0.8298636 , 0.8298636 , 1.27044789, 1.27044789,
1.27044789, 1.27044789, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.57838487, -19.57838487, -19.57838487, -19.57838487,
-19.19065938, -19.19065938, -19.19065938, -19.19065938,
-16.24242196, -16.24242196, -16.24242196, -16.24242196,
-7.5071121 , -7.5071121 , -7.5071121 , -7.5071121 ,
-15.1204002 , -15.1204002 , -15.1204002 , -15.1204002 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99286910e+02, 9.99286910e+02, 9.99286910e+02, 9.99286910e+02,
9.84883800e+02, 9.84883800e+02, 9.84883800e+02, 9.84883800e+02,
8.82839182e+02, 8.82839182e+02, 8.82839182e+02, 8.82839182e+02,
6.88955301e+02, 6.88955301e+02, 6.88955301e+02, 6.88955301e+02,
3.63390464e+01, 3.63390464e+01, 3.63390464e+01, 3.63390464e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999956, 0.99999956, 0.99999956, 0.99999956,
0.99998097, 0.99998097, 0.99998097, 0.99998097, 0.99964679,
0.99964679, 0.99964679, 0.99964679, 0.99634543, 0.99634543,
0.99634543, 0.99634543, 0.97673083, 0.97673083, 0.97673083,
0.97673083, 0.90100139, 0.90100139, 0.90100139, 0.90100139,
0.75547019, 0.75547019, 0.75547019, 0.75547019, 0.70753077,
0.70753077, 0.70753077, 0.70753077, 1.66329407, 1.66329407,
1.66329407, 1.66329407, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59743357, -19.59743357, -19.59743357, -19.59743357,
-19.59673808, -19.59673808, -19.59673808, -19.59673808,
-19.58424969, -19.58424969, -19.58424969, -19.58424969,
-19.46129146, -19.46129146, -19.46129146, -19.46129146,
-18.73730805, -18.73730805, -18.73730805, -18.73730805,
-16.00950488, -16.00950488, -16.00950488, -16.00950488,
-9.43290713, -9.43290713, -9.43290713, -9.43290713,
-1.48421801, -1.48421801, -1.48421801, -1.48421801,
-11.3713146 , -11.3713146 , -11.3713146 , -11.3713146 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999385e+02, 9.99999385e+02, 9.99999385e+02, 9.99999385e+02,
9.99973363e+02, 9.99973363e+02, 9.99973363e+02, 9.99973363e+02,
9.99506198e+02, 9.99506198e+02, 9.99506198e+02, 9.99506198e+02,
9.94916589e+02, 9.94916589e+02, 9.94916589e+02, 9.94916589e+02,
9.68255214e+02, 9.68255214e+02, 9.68255214e+02, 9.68255214e+02,
8.73242615e+02, 8.73242615e+02, 8.73242615e+02, 8.73242615e+02,
6.79344724e+02, 6.79344724e+02, 6.79344724e+02, 6.79344724e+02,
5.50094126e+02, 5.50094126e+02, 5.50094126e+02, 5.50094126e+02,
9.51270435e+01, 9.51270435e+01, 9.51270435e+01, 9.51270435e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.99999926, 0.99999926,
0.99999926, 0.99999926, 0.99998694, 0.99998694, 0.99998694,
0.99998694, 0.99984664, 0.99984664, 0.99984664, 0.99984664,
0.9987454 , 0.9987454 , 0.9987454 , 0.9987454 , 0.99266643,
0.99266643, 0.99266643, 0.99266643, 0.96887737, 0.96887737,
0.96887737, 0.96887737, 0.90244574, 0.90244574, 0.90244574,
0.90244574, 0.76901116, 0.76901116, 0.76901116, 0.76901116,
0.6478654 , 0.6478654 , 0.6478654 , 0.6478654 , 0.65349069,
0.65349069, 0.65349069, 0.65349069, 2.067065 , 2.067065 ,
2.067065 , 2.067065 , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744907, -19.59744907, -19.59744907, -19.59744907,
-19.59742242, -19.59742242, -19.59742242, -19.59742242,
-19.5969614 , -19.5969614 , -19.5969614 , -19.5969614 ,
-19.59171353, -19.59171353, -19.59171353, -19.59171353,
-19.55055566, -19.55055566, -19.55055566, -19.55055566,
-19.3236798 , -19.3236798 , -19.3236798 , -19.3236798 ,
-18.43434783, -18.43434783, -18.43434783, -18.43434783,
-15.90408442, -15.90408442, -15.90408442, -15.90408442,
-10.48663119, -10.48663119, -10.48663119, -10.48663119,
-4.574182 , -4.574182 , -4.574182 , -4.574182 ,
1.13492526, 1.13492526, 1.13492526, 1.13492526,
-8.69947782, -8.69947782, -8.69947782, -8.69947782,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999965e+02, 9.99999965e+02, 9.99999965e+02, 9.99999965e+02,
9.99998968e+02, 9.99998968e+02, 9.99998968e+02, 9.99998968e+02,
9.99981718e+02, 9.99981718e+02, 9.99981718e+02, 9.99981718e+02,
9.99785381e+02, 9.99785381e+02, 9.99785381e+02, 9.99785381e+02,
9.98246693e+02, 9.98246693e+02, 9.98246693e+02, 9.98246693e+02,
9.89801126e+02, 9.89801126e+02, 9.89801126e+02, 9.89801126e+02,
9.57286658e+02, 9.57286658e+02, 9.57286658e+02, 9.57286658e+02,
8.69906714e+02, 8.69906714e+02, 8.69906714e+02, 8.69906714e+02,
7.07459228e+02, 7.07459228e+02, 7.07459228e+02, 7.07459228e+02,
5.43451614e+02, 5.43451614e+02, 5.43451614e+02, 5.43451614e+02,
4.93414823e+02, 4.93414823e+02, 4.93414823e+02, 4.93414823e+02,
1.61847159e+02, 1.61847159e+02, 1.61847159e+02, 1.61847159e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999949, 0.99999949, 0.99999949, 0.99999949, 0.99999357,
0.99999357, 0.99999357, 0.99999357, 0.99993888, 0.99993888,
0.99993888, 0.99993888, 0.99955523, 0.99955523, 0.99955523,
0.99955523, 0.99750061, 0.99750061, 0.99750061, 0.99750061,
0.98912252, 0.98912252, 0.98912252, 0.98912252, 0.96323089,
0.96323089, 0.96323089, 0.96323089, 0.90234429, 0.90234429,
0.90234429, 0.90234429, 0.79042885, 0.79042885, 0.79042885,
0.79042885, 0.66843501, 0.66843501, 0.66843501, 0.66843501,
0.59183401, 0.59183401, 0.59183401, 0.59183401, 0.63275902,
0.63275902, 0.63275902, 0.63275902, 2.46485766, 2.46485766,
2.46485766, 2.46485766, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744996, -19.59744996, -19.59744996, -19.59744996,
-19.5974489 , -19.5974489 , -19.5974489 , -19.5974489 ,
-19.59743093, -19.59743093, -19.59743093, -19.59743093,
-19.59720925, -19.59720925, -19.59720925, -19.59720925,
-19.5951631 , -19.5951631 , -19.5951631 , -19.5951631 ,
-19.58081283, -19.58081283, -19.58081283, -19.58081283,
-19.50398779, -19.50398779, -19.50398779, -19.50398779,
-19.1904876 , -19.1904876 , -19.1904876 , -19.1904876 ,
-18.21442327, -18.21442327, -18.21442327, -18.21442327,
-15.85574791, -15.85574791, -15.85574791, -15.85574791,
-11.23238647, -11.23238647, -11.23238647, -11.23238647,
-5.46798522, -5.46798522, -5.46798522, -5.46798522,
-2.02281046, -2.02281046, -2.02281046, -2.02281046,
1.33644011, 1.33644011, 1.33644011, 1.33644011,
-6.66695933, -6.66695933, -6.66695933, -6.66695933,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
9.99999286e+02, 9.99999286e+02, 9.99999286e+02, 9.99999286e+02,
9.99990992e+02, 9.99990992e+02, 9.99990992e+02, 9.99990992e+02,
9.99914435e+02, 9.99914435e+02, 9.99914435e+02, 9.99914435e+02,
9.99377660e+02, 9.99377660e+02, 9.99377660e+02, 9.99377660e+02,
9.96508169e+02, 9.96508169e+02, 9.96508169e+02, 9.96508169e+02,
9.84871586e+02, 9.84871586e+02, 9.84871586e+02, 9.84871586e+02,
9.49393535e+02, 9.49393535e+02, 9.49393535e+02, 9.49393535e+02,
8.68303546e+02, 8.68303546e+02, 8.68303546e+02, 8.68303546e+02,
7.27511818e+02, 7.27511818e+02, 7.27511818e+02, 7.27511818e+02,
5.81800666e+02, 5.81800666e+02, 5.81800666e+02, 5.81800666e+02,
4.77773799e+02, 4.77773799e+02, 4.77773799e+02, 4.77773799e+02,
4.72750813e+02, 4.72750813e+02, 4.72750813e+02, 4.72750813e+02,
2.21621630e+02, 2.21621630e+02, 2.21621630e+02, 2.21621630e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999973, 0.99999973, 0.99999973,
0.99999973, 0.99999717, 0.99999717, 0.99999717, 0.99999717,
0.99997627, 0.99997627, 0.99997627, 0.99997627, 0.99983916,
0.99983916, 0.99983916, 0.99983916, 0.99911628, 0.99911628,
0.99911628, 0.99911628, 0.9960667 , 0.9960667 , 0.9960667 ,
0.9960667 , 0.985847 , 0.985847 , 0.985847 , 0.985847 ,
0.95879846, 0.95879846, 0.95879846, 0.95879846, 0.9020718 ,
0.9020718 , 0.9020718 , 0.9020718 , 0.80567311, 0.80567311,
0.80567311, 0.80567311, 0.69028634, 0.69028634, 0.69028634,
0.69028634, 0.61553465, 0.61553465, 0.61553465, 0.61553465,
0.57082122, 0.57082122, 0.57082122, 0.57082122, 0.62660163,
0.62660163, 0.62660163, 0.62660163, 2.8493705 , 2.8493705 ,
2.8493705 , 2.8493705 , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744996, -19.59744996, -19.59744996, -19.59744996,
-19.59744923, -19.59744923, -19.59744923, -19.59744923,
-19.59743987, -19.59743987, -19.59743987, -19.59743987,
-19.59734408, -19.59734408, -19.59734408, -19.59734408,
-19.59656205, -19.59656205, -19.59656205, -19.59656205,
-19.59143234, -19.59143234, -19.59143234, -19.59143234,
-19.56439055, -19.56439055, -19.56439055, -19.56439055,
-19.45029042, -19.45029042, -19.45029042, -19.45029042,
-19.06697844, -19.06697844, -19.06697844, -19.06697844,
-18.04151049, -18.04151049, -18.04151049, -18.04151049,
-15.82304381, -15.82304381, -15.82304381, -15.82304381,
-11.78035985, -11.78035985, -11.78035985, -11.78035985,
-6.62297822, -6.62297822, -6.62297822, -6.62297822,
-2.34925393, -2.34925393, -2.34925393, -2.34925393,
-0.93147575, -0.93147575, -0.93147575, -0.93147575,
0.57907591, 0.57907591, 0.57907591, 0.57907591,
-5.12959986, -5.12959986, -5.12959986, -5.12959986,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999971e+02, 9.99999971e+02, 9.99999971e+02, 9.99999971e+02,
9.99999621e+02, 9.99999621e+02, 9.99999621e+02, 9.99999621e+02,
9.99996037e+02, 9.99996037e+02, 9.99996037e+02, 9.99996037e+02,
9.99966776e+02, 9.99966776e+02, 9.99966776e+02, 9.99966776e+02,
9.99774861e+02, 9.99774861e+02, 9.99774861e+02, 9.99774861e+02,
9.98763679e+02, 9.98763679e+02, 9.98763679e+02, 9.98763679e+02,
9.94506696e+02, 9.94506696e+02, 9.94506696e+02, 9.94506696e+02,
9.80319621e+02, 9.80319621e+02, 9.80319621e+02, 9.80319621e+02,
9.43228677e+02, 9.43228677e+02, 9.43228677e+02, 9.43228677e+02,
8.67220336e+02, 8.67220336e+02, 8.67220336e+02, 8.67220336e+02,
7.42845128e+02, 7.42845128e+02, 7.42845128e+02, 7.42845128e+02,
6.04271160e+02, 6.04271160e+02, 6.04271160e+02, 6.04271160e+02,
5.17946575e+02, 5.17946575e+02, 5.17946575e+02, 5.17946575e+02,
4.54246489e+02, 4.54246489e+02, 4.54246489e+02, 4.54246489e+02,
4.66921417e+02, 4.66921417e+02, 4.66921417e+02, 4.66921417e+02,
2.65782010e+02, 2.65782010e+02, 2.65782010e+02, 2.65782010e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999987,
0.99999987, 0.99999987, 0.99999987, 0.99999882, 0.99999882,
0.99999882, 0.99999882, 0.99999087, 0.99999087, 0.99999087,
0.99999087, 0.99994103, 0.99994103, 0.99994103, 0.99994103,
0.99968069, 0.99968069, 0.99968069, 0.99968069, 0.99855338,
0.99855338, 0.99855338, 0.99855338, 0.99453492, 0.99453492,
0.99453492, 0.99453492, 0.9828373 , 0.9828373 , 0.9828373 ,
0.9828373 , 0.95517652, 0.95517652, 0.95517652, 0.95517652,
0.90186652, 0.90186652, 0.90186652, 0.90186652, 0.81635295,
0.81635295, 0.81635295, 0.81635295, 0.71244513, 0.71244513,
0.71244513, 0.71244513, 0.62960431, 0.62960431, 0.62960431,
0.62960431, 0.5905485 , 0.5905485 , 0.5905485 , 0.5905485 ,
0.56964965, 0.56964965, 0.56964965, 0.56964965, 0.62277297,
0.62277297, 0.62277297, 0.62277297, 3.22604657, 3.22604657,
3.22604657, 3.22604657, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744957, -19.59744957, -19.59744957, -19.59744957,
-19.59744521, -19.59744521, -19.59744521, -19.59744521,
-19.59740573, -19.59740573, -19.59740573, -19.59740573,
-19.59710849, -19.59710849, -19.59710849, -19.59710849,
-19.59524365, -19.59524365, -19.59524365, -19.59524365,
-19.58550347, -19.58550347, -19.58550347, -19.58550347,
-19.54332535, -19.54332535, -19.54332535, -19.54332535,
-19.39286212, -19.39286212, -19.39286212, -19.39286212,
-18.95316282, -18.95316282, -18.95316282, -18.95316282,
-17.89996733, -17.89996733, -17.89996733, -17.89996733,
-15.80397365, -15.80397365, -15.80397365, -15.80397365,
-12.20514556, -12.20514556, -12.20514556, -12.20514556,
-7.48327423, -7.48327423, -7.48327423, -7.48327423,
-3.65059602, -3.65059602, -3.65059602, -3.65059602,
-0.6984312 , -0.6984312 , -0.6984312 , -0.6984312 ,
-0.45527074, -0.45527074, -0.45527074, -0.45527074,
0.02647803, 0.02647803, 0.02647803, 0.02647803,
-4.01833224, -4.01833224, -4.01833224, -4.01833224,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999984e+02, 9.99999984e+02, 9.99999984e+02, 9.99999984e+02,
9.99999821e+02, 9.99999821e+02, 9.99999821e+02, 9.99999821e+02,
9.99998344e+02, 9.99998344e+02, 9.99998344e+02, 9.99998344e+02,
9.99987222e+02, 9.99987222e+02, 9.99987222e+02, 9.99987222e+02,
9.99917449e+02, 9.99917449e+02, 9.99917449e+02, 9.99917449e+02,
9.99553087e+02, 9.99553087e+02, 9.99553087e+02, 9.99553087e+02,
9.97976586e+02, 9.97976586e+02, 9.97976586e+02, 9.97976586e+02,
9.92370003e+02, 9.92370003e+02, 9.92370003e+02, 9.92370003e+02,
9.76141335e+02, 9.76141335e+02, 9.76141335e+02, 9.76141335e+02,
9.38208895e+02, 9.38208895e+02, 9.38208895e+02, 9.38208895e+02,
8.66586204e+02, 8.66586204e+02, 8.66586204e+02, 8.66586204e+02,
7.55006792e+02, 7.55006792e+02, 7.55006792e+02, 7.55006792e+02,
6.26897420e+02, 6.26897420e+02, 6.26897420e+02, 6.26897420e+02,
5.32228005e+02, 5.32228005e+02, 5.32228005e+02, 5.32228005e+02,
4.88558147e+02, 4.88558147e+02, 4.88558147e+02, 4.88558147e+02,
4.52862489e+02, 4.52862489e+02, 4.52862489e+02, 4.52862489e+02,
4.62028109e+02, 4.62028109e+02, 4.62028109e+02, 4.62028109e+02,
3.00499029e+02, 3.00499029e+02, 3.00499029e+02, 3.00499029e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999952, 0.99999952, 0.99999952, 0.99999952, 0.9999965 ,
0.9999965 , 0.9999965 , 0.9999965 , 0.99997816, 0.99997816,
0.99997816, 0.99997816, 0.99988296, 0.99988296, 0.99988296,
0.99988296, 0.99946234, 0.99946234, 0.99946234, 0.99946234,
0.99789034, 0.99789034, 0.99789034, 0.99789034, 0.99295856,
0.99295856, 0.99295856, 0.99295856, 0.980071 , 0.980071 ,
0.980071 , 0.980071 , 0.9521403 , 0.9521403 , 0.9521403 ,
0.9521403 , 0.90173314, 0.90173314, 0.90173314, 0.90173314,
0.82445024, 0.82445024, 0.82445024, 0.82445024, 0.72949004,
0.72949004, 0.72949004, 0.72949004, 0.65187205, 0.65187205,
0.65187205, 0.65187205, 0.59559841, 0.59559841, 0.59559841,
0.59559841, 0.57914818, 0.57914818, 0.57914818, 0.57914818,
0.57437002, 0.57437002, 0.57437002, 0.57437002, 0.63368918,
0.63368918, 0.63368918, 0.63368918, 3.58726912, 3.58726912,
3.58726912, 3.58726912, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974479e+01, -1.95974479e+01, -1.95974479e+01, -1.95974479e+01,
-1.95974320e+01, -1.95974320e+01, -1.95974320e+01, -1.95974320e+01,
-1.95973191e+01, -1.95973191e+01, -1.95973191e+01, -1.95973191e+01,
-1.95966329e+01, -1.95966329e+01, -1.95966329e+01, -1.95966329e+01,
-1.95930707e+01, -1.95930707e+01, -1.95930707e+01, -1.95930707e+01,
-1.95773334e+01, -1.95773334e+01, -1.95773334e+01, -1.95773334e+01,
-1.95185033e+01, -1.95185033e+01, -1.95185033e+01, -1.95185033e+01,
-1.93336877e+01, -1.93336877e+01, -1.93336877e+01, -1.93336877e+01,
-1.88482664e+01, -1.88482664e+01, -1.88482664e+01, -1.88482664e+01,
-1.77810596e+01, -1.77810596e+01, -1.77810596e+01, -1.77810596e+01,
-1.57923139e+01, -1.57923139e+01, -1.57923139e+01, -1.57923139e+01,
-1.25447227e+01, -1.25447227e+01, -1.25447227e+01, -1.25447227e+01,
-8.23822829e+00, -8.23822829e+00, -8.23822829e+00, -8.23822829e+00,
-4.43863694e+00, -4.43863694e+00, -4.43863694e+00, -4.43863694e+00,
-1.92160634e+00, -1.92160634e+00, -1.92160634e+00, -1.92160634e+00,
-1.77949723e-02, -1.77949723e-02, -1.77949723e-02, -1.77949723e-02,
-2.01908997e-01, -2.01908997e-01, -2.01908997e-01, -2.01908997e-01,
-2.14835096e-01, -2.14835096e-01, -2.14835096e-01, -2.14835096e-01,
-3.18805273e+00, -3.18805273e+00, -3.18805273e+00, -3.18805273e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
9.99999921e+02, 9.99999921e+02, 9.99999921e+02, 9.99999921e+02,
9.99999326e+02, 9.99999326e+02, 9.99999326e+02, 9.99999326e+02,
9.99995102e+02, 9.99995102e+02, 9.99995102e+02, 9.99995102e+02,
9.99969427e+02, 9.99969427e+02, 9.99969427e+02, 9.99969427e+02,
9.99836154e+02, 9.99836154e+02, 9.99836154e+02, 9.99836154e+02,
9.99247547e+02, 9.99247547e+02, 9.99247547e+02, 9.99247547e+02,
9.97049802e+02, 9.97049802e+02, 9.97049802e+02, 9.97049802e+02,
9.90172519e+02, 9.90172519e+02, 9.90172519e+02, 9.90172519e+02,
9.72304421e+02, 9.72304421e+02, 9.72304421e+02, 9.72304421e+02,
9.34010134e+02, 9.34010134e+02, 9.34010134e+02, 9.34010134e+02,
8.66196340e+02, 8.66196340e+02, 8.66196340e+02, 8.66196340e+02,
7.64882551e+02, 7.64882551e+02, 7.64882551e+02, 7.64882551e+02,
6.45657443e+02, 6.45657443e+02, 6.45657443e+02, 6.45657443e+02,
5.54585581e+02, 5.54585581e+02, 5.54585581e+02, 5.54585581e+02,
4.92797177e+02, 4.92797177e+02, 4.92797177e+02, 4.92797177e+02,
4.75345099e+02, 4.75345099e+02, 4.75345099e+02, 4.75345099e+02,
4.57990819e+02, 4.57990819e+02, 4.57990819e+02, 4.57990819e+02,
4.60103261e+02, 4.60103261e+02, 4.60103261e+02, 4.60103261e+02,
3.30008496e+02, 3.30008496e+02, 3.30008496e+02, 3.30008496e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999998, 0.99999998,
0.99999998, 0.99999998, 0.99999981, 0.99999981, 0.99999981,
0.99999981, 0.99999866, 0.99999866, 0.99999866, 0.99999866,
0.99999185, 0.99999185, 0.99999185, 0.99999185, 0.99995665,
0.99995665, 0.99995665, 0.99995665, 0.9997987 , 0.9997987 ,
0.9997987 , 0.9997987 , 0.99918622, 0.99918622, 0.99918622,
0.99918622, 0.99714781, 0.99714781, 0.99714781, 0.99714781,
0.99137002, 0.99137002, 0.99137002, 0.99137002, 0.97752123,
0.97752123, 0.97752123, 0.97752123, 0.94954186, 0.94954186,
0.94954186, 0.94954186, 0.90166108, 0.90166108, 0.90166108,
0.90166108, 0.83096957, 0.83096957, 0.83096957, 0.83096957,
0.7436459 , 0.7436459 , 0.7436459 , 0.7436459 , 0.66836636,
0.66836636, 0.66836636, 0.66836636, 0.61591285, 0.61591285,
0.61591285, 0.61591285, 0.57809044, 0.57809044, 0.57809044,
0.57809044, 0.57324242, 0.57324242, 0.57324242, 0.57324242,
0.57874876, 0.57874876, 0.57874876, 0.57874876, 0.65663366,
0.65663366, 0.65663366, 0.65663366, 3.93821618, 3.93821618,
3.93821618, 3.93821618, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.5974499 , -19.5974499 , -19.5974499 , -19.5974499 ,
-19.59744909, -19.59744909, -19.59744909, -19.59744909,
-19.59744279, -19.59744279, -19.59744279, -19.59744279,
-19.59739985, -19.59739985, -19.59739985, -19.59739985,
-19.59714503, -19.59714503, -19.59714503, -19.59714503,
-19.59582803, -19.59582803, -19.59582803, -19.59582803,
-19.58991798, -19.58991798, -19.58991798, -19.58991798,
-19.56700021, -19.56700021, -19.56700021, -19.56700021,
-19.49069137, -19.49069137, -19.49069137, -19.49069137,
-19.27397613, -19.27397613, -19.27397613, -19.27397613,
-18.75133258, -18.75133258, -18.75133258, -18.75133258,
-17.67906739, -17.67906739, -17.67906739, -17.67906739,
-15.78509673, -15.78509673, -15.78509673, -15.78509673,
-12.82087437, -12.82087437, -12.82087437, -12.82087437,
-8.87533311, -8.87533311, -8.87533311, -8.87533311,
-5.28368574, -5.28368574, -5.28368574, -5.28368574,
-2.42980818, -2.42980818, -2.42980818, -2.42980818,
-1.01970799, -1.01970799, -1.01970799, -1.01970799,
0.11540562, 0.11540562, 0.11540562, 0.11540562,
-0.03629139, -0.03629139, -0.03629139, -0.03629139,
-0.24415936, -0.24415936, -0.24415936, -0.24415936,
-2.52596988, -2.52596988, -2.52596988, -2.52596988,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999966e+02, 9.99999966e+02, 9.99999966e+02, 9.99999966e+02,
9.99999730e+02, 9.99999730e+02, 9.99999730e+02, 9.99999730e+02,
9.99998124e+02, 9.99998124e+02, 9.99998124e+02, 9.99998124e+02,
9.99988589e+02, 9.99988589e+02, 9.99988589e+02, 9.99988589e+02,
9.99939313e+02, 9.99939313e+02, 9.99939313e+02, 9.99939313e+02,
9.99718211e+02, 9.99718211e+02, 9.99718211e+02, 9.99718211e+02,
9.98861226e+02, 9.98861226e+02, 9.98861226e+02, 9.98861226e+02,
9.96012267e+02, 9.96012267e+02, 9.96012267e+02, 9.96012267e+02,
9.87959394e+02, 9.87959394e+02, 9.87959394e+02, 9.87959394e+02,
9.68770607e+02, 9.68770607e+02, 9.68770607e+02, 9.68770607e+02,
9.30421725e+02, 9.30421725e+02, 9.30421725e+02, 9.30421725e+02,
8.65952932e+02, 8.65952932e+02, 8.65952932e+02, 8.65952932e+02,
7.73014001e+02, 7.73014001e+02, 7.73014001e+02, 7.73014001e+02,
6.62399864e+02, 6.62399864e+02, 6.62399864e+02, 6.62399864e+02,
5.71846195e+02, 5.71846195e+02, 5.71846195e+02, 5.71846195e+02,
5.12728848e+02, 5.12728848e+02, 5.12728848e+02, 5.12728848e+02,
4.72759582e+02, 4.72759582e+02, 4.72759582e+02, 4.72759582e+02,
4.68567984e+02, 4.68567984e+02, 4.68567984e+02, 4.68567984e+02,
4.62783905e+02, 4.62783905e+02, 4.62783905e+02, 4.62783905e+02,
4.61540554e+02, 4.61540554e+02, 4.61540554e+02, 4.61540554e+02,
3.57220974e+02, 3.57220974e+02, 3.57220974e+02, 3.57220974e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999992,
0.99999992, 0.99999992, 0.99999992, 0.99999949, 0.99999949,
0.99999949, 0.99999949, 0.99999694, 0.99999694, 0.99999694,
0.99999694, 0.99998382, 0.99998382, 0.99998382, 0.99998382,
0.9999242 , 0.9999242 , 0.9999242 , 0.9999242 , 0.99968622,
0.99968622, 0.99968622, 0.99968622, 0.99885605, 0.99885605,
0.99885605, 0.99885605, 0.99634282, 0.99634282, 0.99634282,
0.99634282, 0.98978924, 0.98978924, 0.98978924, 0.98978924,
0.97516207, 0.97516207, 0.97516207, 0.97516207, 0.9472807 ,
0.9472807 , 0.9472807 , 0.9472807 , 0.9016408 , 0.9016408 ,
0.9016408 , 0.9016408 , 0.83637229, 0.83637229, 0.83637229,
0.83637229, 0.75564896, 0.75564896, 0.75564896, 0.75564896,
0.68361276, 0.68361276, 0.68361276, 0.68361276, 0.6288253 ,
0.6288253 , 0.6288253 , 0.6288253 , 0.59528975, 0.59528975,
0.59528975, 0.59528975, 0.57037586, 0.57037586, 0.57037586,
0.57037586, 0.57016667, 0.57016667, 0.57016667, 0.57016667,
0.58091342, 0.58091342, 0.58091342, 0.58091342, 0.68382481,
0.68382481, 0.68382481, 0.68382481, 4.28630792, 4.28630792,
4.28630792, 4.28630792, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974496e+01, -1.95974496e+01, -1.95974496e+01, -1.95974496e+01,
-1.95974471e+01, -1.95974471e+01, -1.95974471e+01, -1.95974471e+01,
-1.95974308e+01, -1.95974308e+01, -1.95974308e+01, -1.95974308e+01,
-1.95973355e+01, -1.95973355e+01, -1.95973355e+01, -1.95973355e+01,
-1.95968445e+01, -1.95968445e+01, -1.95968445e+01, -1.95968445e+01,
-1.95946140e+01, -1.95946140e+01, -1.95946140e+01, -1.95946140e+01,
-1.95857093e+01, -1.95857093e+01, -1.95857093e+01, -1.95857093e+01,
-1.95546421e+01, -1.95546421e+01, -1.95546421e+01, -1.95546421e+01,
-1.94605230e+01, -1.94605230e+01, -1.94605230e+01, -1.94605230e+01,
-1.92144746e+01, -1.92144746e+01, -1.92144746e+01, -1.92144746e+01,
-1.86614309e+01, -1.86614309e+01, -1.86614309e+01, -1.86614309e+01,
-1.75901244e+01, -1.75901244e+01, -1.75901244e+01, -1.75901244e+01,
-1.57811609e+01, -1.57811609e+01, -1.57811609e+01, -1.57811609e+01,
-1.30521736e+01, -1.30521736e+01, -1.30521736e+01, -1.30521736e+01,
-9.42385469e+00, -9.42385469e+00, -9.42385469e+00, -9.42385469e+00,
-5.98755008e+00, -5.98755008e+00, -5.98755008e+00, -5.98755008e+00,
-3.23573271e+00, -3.23573271e+00, -3.23573271e+00, -3.23573271e+00,
-1.20413317e+00, -1.20413317e+00, -1.20413317e+00, -1.20413317e+00,
-5.64305177e-01, -5.64305177e-01, -5.64305177e-01, -5.64305177e-01,
1.39995268e-02, 1.39995268e-02, 1.39995268e-02, 1.39995268e-02,
1.89256301e-02, 1.89256301e-02, 1.89256301e-02, 1.89256301e-02,
-1.95671716e-01, -1.95671716e-01, -1.95671716e-01, -1.95671716e-01,
-1.96806591e+00, -1.96806591e+00, -1.96806591e+00, -1.96806591e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999986e+02, 9.99999986e+02, 9.99999986e+02, 9.99999986e+02,
9.99999893e+02, 9.99999893e+02, 9.99999893e+02, 9.99999893e+02,
9.99999281e+02, 9.99999281e+02, 9.99999281e+02, 9.99999281e+02,
9.99995715e+02, 9.99995715e+02, 9.99995715e+02, 9.99995715e+02,
9.99977346e+02, 9.99977346e+02, 9.99977346e+02, 9.99977346e+02,
9.99893890e+02, 9.99893890e+02, 9.99893890e+02, 9.99893890e+02,
9.99560786e+02, 9.99560786e+02, 9.99560786e+02, 9.99560786e+02,
9.98399370e+02, 9.98399370e+02, 9.98399370e+02, 9.98399370e+02,
9.94887882e+02, 9.94887882e+02, 9.94887882e+02, 9.94887882e+02,
9.85758358e+02, 9.85758358e+02, 9.85758358e+02, 9.85758358e+02,
9.65503274e+02, 9.65503274e+02, 9.65503274e+02, 9.65503274e+02,
9.27302076e+02, 9.27302076e+02, 9.27302076e+02, 9.27302076e+02,
8.65817631e+02, 8.65817631e+02, 8.65817631e+02, 8.65817631e+02,
7.79892533e+02, 7.79892533e+02, 7.79892533e+02, 7.79892533e+02,
6.76933134e+02, 6.76933134e+02, 6.76933134e+02, 6.76933134e+02,
5.89167334e+02, 5.89167334e+02, 5.89167334e+02, 5.89167334e+02,
5.25412022e+02, 5.25412022e+02, 5.25412022e+02, 5.25412022e+02,
4.89078201e+02, 4.89078201e+02, 4.89078201e+02, 4.89078201e+02,
4.63985098e+02, 4.63985098e+02, 4.63985098e+02, 4.63985098e+02,
4.65058638e+02, 4.65058638e+02, 4.65058638e+02, 4.65058638e+02,
4.65156283e+02, 4.65156283e+02, 4.65156283e+02, 4.65156283e+02,
4.64659087e+02, 4.64659087e+02, 4.64659087e+02, 4.64659087e+02,
3.83686908e+02, 3.83686908e+02, 3.83686908e+02, 3.83686908e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.9999998 , 0.9999998 , 0.9999998 , 0.9999998 , 0.99999884,
0.99999884, 0.99999884, 0.99999884, 0.99999392, 0.99999392,
0.99999392, 0.99999392, 0.99997133, 0.99997133, 0.99997133,
0.99997133, 0.99987901, 0.99987901, 0.99987901, 0.99987901,
0.99954452, 0.99954452, 0.99954452, 0.99954452, 0.99847623,
0.99847623, 0.99847623, 0.99847623, 0.9954892 , 0.9954892 ,
0.9954892 , 0.9954892 , 0.98822855, 0.98822855, 0.98822855,
0.98822855, 0.97297074, 0.97297074, 0.97297074, 0.97297074,
0.94528761, 0.94528761, 0.94528761, 0.94528761, 0.90165787,
0.90165787, 0.90165787, 0.90165787, 0.84092906, 0.84092906,
0.84092906, 0.84092906, 0.76608711, 0.76608711, 0.76608711,
0.76608711, 0.69670731, 0.69670731, 0.69670731, 0.69670731,
0.64308367, 0.64308367, 0.64308367, 0.64308367, 0.60371067,
0.60371067, 0.60371067, 0.60371067, 0.58425946, 0.58425946,
0.58425946, 0.58425946, 0.56833535, 0.56833535, 0.56833535,
0.56833535, 0.56833068, 0.56833068, 0.56833068, 0.56833068,
0.58142537, 0.58142537, 0.58142537, 0.58142537, 0.70986026,
0.70986026, 0.70986026, 0.70986026, 4.63577346, 4.63577346,
4.63577346, 4.63577346, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744984, -19.59744984, -19.59744984, -19.59744984,
-19.59744887, -19.59744887, -19.59744887, -19.59744887,
-19.59744263, -19.59744263, -19.59744263, -19.59744263,
-19.59740678, -19.59740678, -19.59740678, -19.59740678,
-19.5972226 , -19.5972226 , -19.5972226 , -19.5972226 ,
-19.59637732, -19.59637732, -19.59637732, -19.59637732,
-19.59292292, -19.59292292, -19.59292292, -19.59292292,
-19.58040675, -19.58040675, -19.58040675, -19.58040675,
-19.54042297, -19.54042297, -19.54042297, -19.54042297,
-19.42851195, -19.42851195, -19.42851195, -19.42851195,
-19.15564745, -19.15564745, -19.15564745, -19.15564745,
-18.57773882, -18.57773882, -18.57773882, -18.57773882,
-17.51157549, -17.51157549, -17.51157549, -17.51157549,
-15.77941976, -15.77941976, -15.77941976, -15.77941976,
-13.24556307, -13.24556307, -13.24556307, -13.24556307,
-9.90130641, -9.90130641, -9.90130641, -9.90130641,
-6.63662472, -6.63662472, -6.63662472, -6.63662472,
-3.86321413, -3.86321413, -3.86321413, -3.86321413,
-1.90761467, -1.90761467, -1.90761467, -1.90761467,
-0.53373993, -0.53373993, -0.53373993, -0.53373993,
-0.32840898, -0.32840898, -0.32840898, -0.32840898,
-0.10921252, -0.10921252, -0.10921252, -0.10921252,
-0.05293691, -0.05293691, -0.05293691, -0.05293691,
-0.18859653, -0.18859653, -0.18859653, -0.18859653,
-1.47682846, -1.47682846, -1.47682846, -1.47682846,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999958e+02, 9.99999958e+02, 9.99999958e+02, 9.99999958e+02,
9.99999724e+02, 9.99999724e+02, 9.99999724e+02, 9.99999724e+02,
9.99998383e+02, 9.99998383e+02, 9.99998383e+02, 9.99998383e+02,
9.99991492e+02, 9.99991492e+02, 9.99991492e+02, 9.99991492e+02,
9.99959865e+02, 9.99959865e+02, 9.99959865e+02, 9.99959865e+02,
9.99830624e+02, 9.99830624e+02, 9.99830624e+02, 9.99830624e+02,
9.99362473e+02, 9.99362473e+02, 9.99362473e+02, 9.99362473e+02,
9.97868188e+02, 9.97868188e+02, 9.97868188e+02, 9.97868188e+02,
9.93696023e+02, 9.93696023e+02, 9.93696023e+02, 9.93696023e+02,
9.83586489e+02, 9.83586489e+02, 9.83586489e+02, 9.83586489e+02,
9.62470316e+02, 9.62470316e+02, 9.62470316e+02, 9.62470316e+02,
9.24554339e+02, 9.24554339e+02, 9.24554339e+02, 9.24554339e+02,
8.65754701e+02, 8.65754701e+02, 8.65754701e+02, 8.65754701e+02,
7.85690318e+02, 7.85690318e+02, 7.85690318e+02, 7.85690318e+02,
6.89822261e+02, 6.89822261e+02, 6.89822261e+02, 6.89822261e+02,
6.04497868e+02, 6.04497868e+02, 6.04497868e+02, 6.04497868e+02,
5.41108543e+02, 5.41108543e+02, 5.41108543e+02, 5.41108543e+02,
4.96459113e+02, 4.96459113e+02, 4.96459113e+02, 4.96459113e+02,
4.76533195e+02, 4.76533195e+02, 4.76533195e+02, 4.76533195e+02,
4.61671833e+02, 4.61671833e+02, 4.61671833e+02, 4.61671833e+02,
4.62965063e+02, 4.62965063e+02, 4.62965063e+02, 4.62965063e+02,
4.65651723e+02, 4.65651723e+02, 4.65651723e+02, 4.65651723e+02,
4.67608555e+02, 4.67608555e+02, 4.67608555e+02, 4.67608555e+02,
4.10156069e+02, 4.10156069e+02, 4.10156069e+02, 4.10156069e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999992, 0.99999992, 0.99999992,
0.99999992, 0.99999956, 0.99999956, 0.99999956, 0.99999956,
0.99999771, 0.99999771, 0.99999771, 0.99999771, 0.99998912,
0.99998912, 0.99998912, 0.99998912, 0.99995333, 0.99995333,
0.99995333, 0.99995333, 0.9998196 , 0.9998196 , 0.9998196 ,
0.9998196 , 0.99937333, 0.99937333, 0.99937333, 0.99937333,
0.99805138, 0.99805138, 0.99805138, 0.99805138, 0.99459812,
0.99459812, 0.99459812, 0.99459812, 0.98669552, 0.98669552,
0.98669552, 0.98669552, 0.97092763, 0.97092763, 0.97092763,
0.97092763, 0.94351056, 0.94351056, 0.94351056, 0.94351056,
0.90169368, 0.90169368, 0.90169368, 0.90169368, 0.84485234,
0.84485234, 0.84485234, 0.84485234, 0.77523312, 0.77523312,
0.77523312, 0.77523312, 0.70864528, 0.70864528, 0.70864528,
0.70864528, 0.65509869, 0.65509869, 0.65509869, 0.65509869,
0.61605444, 0.61605444, 0.61605444, 0.61605444, 0.58867936,
0.58867936, 0.58867936, 0.58867936, 0.57853282, 0.57853282,
0.57853282, 0.57853282, 0.56884845, 0.56884845, 0.56884845,
0.56884845, 0.56787447, 0.56787447, 0.56787447, 0.56787447,
0.58180732, 0.58180732, 0.58180732, 0.58180732, 0.73521701,
0.73521701, 0.73521701, 0.73521701, 4.82794137, 4.82794137,
4.82794137, 4.82794137, 1.15660589, 1.15660589, 1.15660589,
1.15660589, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744994, -19.59744994, -19.59744994, -19.59744994,
-19.59744956, -19.59744956, -19.59744956, -19.59744956,
-19.59744717, -19.59744717, -19.59744717, -19.59744717,
-19.59743362, -19.59743362, -19.59743362, -19.59743362,
-19.59736417, -19.59736417, -19.59736417, -19.59736417,
-19.59704275, -19.59704275, -19.59704275, -19.59704275,
-19.59570378, -19.59570378, -19.59570378, -19.59570378,
-19.5906998 , -19.5906998 , -19.5906998 , -19.5906998 ,
-19.5740004 , -19.5740004 , -19.5740004 , -19.5740004 ,
-19.52451298, -19.52451298, -19.52451298, -19.52451298,
-19.39507264, -19.39507264, -19.39507264, -19.39507264,
-19.09778358, -19.09778358, -19.09778358, -19.09778358,
-18.49954665, -18.49954665, -18.49954665, -18.49954665,
-17.4414217 , -17.4414217 , -17.4414217 , -17.4414217 ,
-15.7788963 , -15.7788963 , -15.7788963 , -15.7788963 ,
-13.41092033, -13.41092033, -13.41092033, -13.41092033,
-10.31819294, -10.31819294, -10.31819294, -10.31819294,
-7.21065328, -7.21065328, -7.21065328, -7.21065328,
-4.51408308, -4.51408308, -4.51408308, -4.51408308,
-2.3752154 , -2.3752154 , -2.3752154 , -2.3752154 ,
-1.10270149, -1.10270149, -1.10270149, -1.10270149,
-0.21896876, -0.21896876, -0.21896876, -0.21896876,
-0.20366948, -0.20366948, -0.20366948, -0.20366948,
-0.18404565, -0.18404565, -0.18404565, -0.18404565,
-0.20213983, -0.20213983, -0.20213983, -0.20213983,
-0.22669592, -0.22669592, -0.22669592, -0.22669592,
-1.09863355, -1.09863355, -1.09863355, -1.09863355,
-16.8535667 , -16.8535667 , -16.8535667 , -16.8535667 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999983e+02, 9.99999983e+02, 9.99999983e+02, 9.99999983e+02,
9.99999894e+02, 9.99999894e+02, 9.99999894e+02, 9.99999894e+02,
9.99999387e+02, 9.99999387e+02, 9.99999387e+02, 9.99999387e+02,
9.99996788e+02, 9.99996788e+02, 9.99996788e+02, 9.99996788e+02,
9.99984762e+02, 9.99984762e+02, 9.99984762e+02, 9.99984762e+02,
9.99934664e+02, 9.99934664e+02, 9.99934664e+02, 9.99934664e+02,
9.99747458e+02, 9.99747458e+02, 9.99747458e+02, 9.99747458e+02,
9.99122925e+02, 9.99122925e+02, 9.99122925e+02, 9.99122925e+02,
9.97274131e+02, 9.97274131e+02, 9.97274131e+02, 9.97274131e+02,
9.92452313e+02, 9.92452313e+02, 9.92452313e+02, 9.92452313e+02,
9.81454273e+02, 9.81454273e+02, 9.81454273e+02, 9.81454273e+02,
9.59644205e+02, 9.59644205e+02, 9.59644205e+02, 9.59644205e+02,
9.22105989e+02, 9.22105989e+02, 9.22105989e+02, 9.22105989e+02,
8.65731962e+02, 8.65731962e+02, 8.65731962e+02, 8.65731962e+02,
7.90681314e+02, 7.90681314e+02, 7.90681314e+02, 7.90681314e+02,
7.01198820e+02, 7.01198820e+02, 7.01198820e+02, 7.01198820e+02,
6.18767047e+02, 6.18767047e+02, 6.18767047e+02, 6.18767047e+02,
5.54775362e+02, 5.54775362e+02, 5.54775362e+02, 5.54775362e+02,
5.09686354e+02, 5.09686354e+02, 5.09686354e+02, 5.09686354e+02,
4.79330707e+02, 4.79330707e+02, 4.79330707e+02, 4.79330707e+02,
4.70045366e+02, 4.70045366e+02, 4.70045366e+02, 4.70045366e+02,
4.62262247e+02, 4.62262247e+02, 4.62262247e+02, 4.62262247e+02,
4.62428940e+02, 4.62428940e+02, 4.62428940e+02, 4.62428940e+02,
4.65813647e+02, 4.65813647e+02, 4.65813647e+02, 4.65813647e+02,
4.69117027e+02, 4.69117027e+02, 4.69117027e+02, 4.69117027e+02,
4.26259896e+02, 4.26259896e+02, 4.26259896e+02, 4.26259896e+02,
2.11117906e+01, 2.11117906e+01, 2.11117906e+01, 2.11117906e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999997,
0.99999997, 0.99999997, 0.99999997, 0.99999983, 0.99999983,
0.99999983, 0.99999983, 0.99999913, 0.99999913, 0.99999913,
0.99999913, 0.99999585, 0.99999585, 0.99999585, 0.99999585,
0.99998199, 0.99998199, 0.99998199, 0.99998199, 0.99992882,
0.99992882, 0.99992882, 0.99992882, 0.99974481, 0.99974481,
0.99974481, 0.99974481, 0.99917295, 0.99917295, 0.99917295,
0.99917295, 0.99758596, 0.99758596, 0.99758596, 0.99758596,
0.99367857, 0.99367857, 0.99367857, 0.99367857, 0.98519471,
0.98519471, 0.98519471, 0.98519471, 0.96901577, 0.96901577,
0.96901577, 0.96901577, 0.94191031, 0.94191031, 0.94191031,
0.94191031, 0.90174038, 0.90174038, 0.90174038, 0.90174038,
0.8482627 , 0.8482627 , 0.8482627 , 0.8482627 , 0.78331437,
0.78331437, 0.78331437, 0.78331437, 0.71940582, 0.71940582,
0.71940582, 0.71940582, 0.66684154, 0.66684154, 0.66684154,
0.66684154, 0.62576044, 0.62576044, 0.62576044, 0.62576044,
0.598823 , 0.598823 , 0.598823 , 0.598823 , 0.58041014,
0.58041014, 0.58041014, 0.58041014, 0.57556638, 0.57556638,
0.57556638, 0.57556638, 0.56997368, 0.56997368, 0.56997368,
0.56997368, 0.56894812, 0.56894812, 0.56894812, 0.56894812,
0.58243209, 0.58243209, 0.58243209, 0.58243209, 0.75514243,
0.75514243, 0.75514243, 0.75514243, 4.86958295, 4.86958295,
4.86958295, 4.86958295, 1.4675873 , 1.4675873 , 1.4675873 ,
1.4675873 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744983, -19.59744983, -19.59744983, -19.59744983,
-19.59744891, -19.59744891, -19.59744891, -19.59744891,
-19.59744377, -19.59744377, -19.59744377, -19.59744377,
-19.59741747, -19.59741747, -19.59741747, -19.59741747,
-19.5972949 , -19.5972949 , -19.5972949 , -19.5972949 ,
-19.59677605, -19.59677605, -19.59677605, -19.59677605,
-19.59478652, -19.59478652, -19.59478652, -19.59478652,
-19.5879016 , -19.5879016 , -19.5879016 , -19.5879016 ,
-19.56650065, -19.56650065, -19.56650065, -19.56650065,
-19.50707861, -19.50707861, -19.50707861, -19.50707861,
-19.36053978, -19.36053978, -19.36053978, -19.36053978,
-19.0410584 , -19.0410584 , -19.0410584 , -19.0410584 ,
-18.42623744, -18.42623744, -18.42623744, -18.42623744,
-17.37815423, -17.37815423, -17.37815423, -17.37815423,
-15.77916693, -15.77916693, -15.77916693, -15.77916693,
-13.55541778, -13.55541778, -13.55541778, -13.55541778,
-10.68190654, -10.68190654, -10.68190654, -10.68190654,
-7.72976671, -7.72976671, -7.72976671, -7.72976671,
-5.09556067, -5.09556067, -5.09556067, -5.09556067,
-2.96483941, -2.96483941, -2.96483941, -2.96483941,
-1.38469248, -1.38469248, -1.38469248, -1.38469248,
-0.64781783, -0.64781783, -0.64781783, -0.64781783,
-0.11541459, -0.11541459, -0.11541459, -0.11541459,
-0.14563479, -0.14563479, -0.14563479, -0.14563479,
-0.2273905 , -0.2273905 , -0.2273905 , -0.2273905 ,
-0.32875463, -0.32875463, -0.32875463, -0.32875463,
-0.25700739, -0.25700739, -0.25700739, -0.25700739,
-0.75025376, -0.75025376, -0.75025376, -0.75025376,
-13.29087238, -13.29087238, -13.29087238, -13.29087238,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999993e+02, 9.99999993e+02, 9.99999993e+02, 9.99999993e+02,
9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
9.99999767e+02, 9.99999767e+02, 9.99999767e+02, 9.99999767e+02,
9.99998783e+02, 9.99998783e+02, 9.99998783e+02, 9.99998783e+02,
9.99994197e+02, 9.99994197e+02, 9.99994197e+02, 9.99994197e+02,
9.99974783e+02, 9.99974783e+02, 9.99974783e+02, 9.99974783e+02,
9.99900346e+02, 9.99900346e+02, 9.99900346e+02, 9.99900346e+02,
9.99642786e+02, 9.99642786e+02, 9.99642786e+02, 9.99642786e+02,
9.98842554e+02, 9.98842554e+02, 9.98842554e+02, 9.98842554e+02,
9.96623508e+02, 9.96623508e+02, 9.96623508e+02, 9.96623508e+02,
9.91169354e+02, 9.91169354e+02, 9.91169354e+02, 9.91169354e+02,
9.79367942e+02, 9.79367942e+02, 9.79367942e+02, 9.79367942e+02,
9.57001145e+02, 9.57001145e+02, 9.57001145e+02, 9.57001145e+02,
9.19902519e+02, 9.19902519e+02, 9.19902519e+02, 9.19902519e+02,
8.65735512e+02, 8.65735512e+02, 8.65735512e+02, 8.65735512e+02,
7.95067170e+02, 7.95067170e+02, 7.95067170e+02, 7.95067170e+02,
7.11251816e+02, 7.11251816e+02, 7.11251816e+02, 7.11251816e+02,
6.31754233e+02, 6.31754233e+02, 6.31754233e+02, 6.31754233e+02,
5.68454564e+02, 5.68454564e+02, 5.68454564e+02, 5.68454564e+02,
5.20436257e+02, 5.20436257e+02, 5.20436257e+02, 5.20436257e+02,
4.89916889e+02, 4.89916889e+02, 4.89916889e+02, 4.89916889e+02,
4.69972551e+02, 4.69972551e+02, 4.69972551e+02, 4.69972551e+02,
4.66691674e+02, 4.66691674e+02, 4.66691674e+02, 4.66691674e+02,
4.63549400e+02, 4.63549400e+02, 4.63549400e+02, 4.63549400e+02,
4.63619987e+02, 4.63619987e+02, 4.63619987e+02, 4.63619987e+02,
4.65989306e+02, 4.65989306e+02, 4.65989306e+02, 4.65989306e+02,
4.68533238e+02, 4.68533238e+02, 4.68533238e+02, 4.68533238e+02,
4.31027931e+02, 4.31027931e+02, 4.31027931e+02, 4.31027931e+02,
5.66211425e+01, 5.66211425e+01, 5.66211425e+01, 5.66211425e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999994, 0.99999994, 0.99999994, 0.99999994, 0.99999967,
0.99999967, 0.99999967, 0.99999967, 0.99999842, 0.99999842,
0.99999842, 0.99999842, 0.99999304, 0.99999304, 0.99999304,
0.99999304, 0.99997199, 0.99997199, 0.99997199, 0.99997199,
0.99989687, 0.99989687, 0.99989687, 0.99989687, 0.99965381,
0.99965381, 0.99965381, 0.99965381, 0.99894405, 0.99894405,
0.99894405, 0.99894405, 0.99708423, 0.99708423, 0.99708423,
0.99708423, 0.99273783, 0.99273783, 0.99273783, 0.99273783,
0.98372864, 0.98372864, 0.98372864, 0.98372864, 0.96722065,
0.96722065, 0.96722065, 0.96722065, 0.94045739, 0.94045739,
0.94045739, 0.94045739, 0.90179181, 0.90179181, 0.90179181,
0.90179181, 0.85125479, 0.85125479, 0.85125479, 0.85125479,
0.79043349, 0.79043349, 0.79043349, 0.79043349, 0.72930804,
0.72930804, 0.72930804, 0.72930804, 0.67758323, 0.67758323,
0.67758323, 0.67758323, 0.6363278 , 0.6363278 , 0.6363278 ,
0.6363278 , 0.605747 , 0.605747 , 0.605747 , 0.605747 ,
0.58842753, 0.58842753, 0.58842753, 0.58842753, 0.57645186,
0.57645186, 0.57645186, 0.57645186, 0.5740469 , 0.5740469 ,
0.5740469 , 0.5740469 , 0.57095662, 0.57095662, 0.57095662,
0.57095662, 0.57067495, 0.57067495, 0.57067495, 0.57067495,
0.58291142, 0.58291142, 0.58291142, 0.58291142, 0.76449003,
0.76449003, 0.76449003, 0.76449003, 4.85506785, 4.85506785,
4.85506785, 4.85506785, 1.84484019, 1.84484019, 1.84484019,
1.84484019, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744993, -19.59744993, -19.59744993, -19.59744993,
-19.59744958, -19.59744958, -19.59744958, -19.59744958,
-19.59744762, -19.59744762, -19.59744762, -19.59744762,
-19.59743763, -19.59743763, -19.59743763, -19.59743763,
-19.59739077, -19.59739077, -19.59739077, -19.59739077,
-19.59718971, -19.59718971, -19.59718971, -19.59718971,
-19.59640187, -19.59640187, -19.59640187, -19.59640187,
-19.59359107, -19.59359107, -19.59359107, -19.59359107,
-19.58449607, -19.58449607, -19.58449607, -19.58449607,
-19.55793209, -19.55793209, -19.55793209, -19.55793209,
-19.48827738, -19.48827738, -19.48827738, -19.48827738,
-19.32518419, -19.32518419, -19.32518419, -19.32518419,
-18.98557228, -18.98557228, -18.98557228, -18.98557228,
-18.35728175, -18.35728175, -18.35728175, -18.35728175,
-17.32063739, -17.32063739, -17.32063739, -17.32063739,
-15.77991266, -15.77991266, -15.77991266, -15.77991266,
-13.6812212 , -13.6812212 , -13.6812212 , -13.6812212 ,
-11.00333419, -11.00333419, -11.00333419, -11.00333419,
-8.1945414 , -8.1945414 , -8.1945414 , -8.1945414 ,
-5.64796666, -5.64796666, -5.64796666, -5.64796666,
-3.48446947, -3.48446947, -3.48446947, -3.48446947,
-1.8815922 , -1.8815922 , -1.8815922 , -1.8815922 ,
-0.77042698, -0.77042698, -0.77042698, -0.77042698,
-0.40469083, -0.40469083, -0.40469083, -0.40469083,
-0.12184113, -0.12184113, -0.12184113, -0.12184113,
-0.14071004, -0.14071004, -0.14071004, -0.14071004,
-0.26047921, -0.26047921, -0.26047921, -0.26047921,
-0.35229931, -0.35229931, -0.35229931, -0.35229931,
-0.22801595, -0.22801595, -0.22801595, -0.22801595,
-0.38194114, -0.38194114, -0.38194114, -0.38194114,
-10.70298365, -10.70298365, -10.70298365, -10.70298365,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999984e+02, 9.99999984e+02, 9.99999984e+02, 9.99999984e+02,
9.99999911e+02, 9.99999911e+02, 9.99999911e+02, 9.99999911e+02,
9.99999537e+02, 9.99999537e+02, 9.99999537e+02, 9.99999537e+02,
9.99997784e+02, 9.99997784e+02, 9.99997784e+02, 9.99997784e+02,
9.99990261e+02, 9.99990261e+02, 9.99990261e+02, 9.99990261e+02,
9.99960783e+02, 9.99960783e+02, 9.99960783e+02, 9.99960783e+02,
9.99855621e+02, 9.99855621e+02, 9.99855621e+02, 9.99855621e+02,
9.99515409e+02, 9.99515409e+02, 9.99515409e+02, 9.99515409e+02,
9.98522310e+02, 9.98522310e+02, 9.98522310e+02, 9.98522310e+02,
9.95922289e+02, 9.95922289e+02, 9.95922289e+02, 9.95922289e+02,
9.89857327e+02, 9.89857327e+02, 9.89857327e+02, 9.89857327e+02,
9.77330935e+02, 9.77330935e+02, 9.77330935e+02, 9.77330935e+02,
9.54520808e+02, 9.54520808e+02, 9.54520808e+02, 9.54520808e+02,
9.17903025e+02, 9.17903025e+02, 9.17903025e+02, 9.17903025e+02,
8.65754858e+02, 8.65754858e+02, 8.65754858e+02, 8.65754858e+02,
7.98905080e+02, 7.98905080e+02, 7.98905080e+02, 7.98905080e+02,
7.20192047e+02, 7.20192047e+02, 7.20192047e+02, 7.20192047e+02,
6.43756595e+02, 6.43756595e+02, 6.43756595e+02, 6.43756595e+02,
5.81098528e+02, 5.81098528e+02, 5.81098528e+02, 5.81098528e+02,
5.32495831e+02, 5.32495831e+02, 5.32495831e+02, 5.32495831e+02,
4.97357191e+02, 4.97357191e+02, 4.97357191e+02, 4.97357191e+02,
4.78087561e+02, 4.78087561e+02, 4.78087561e+02, 4.78087561e+02,
4.65512575e+02, 4.65512575e+02, 4.65512575e+02, 4.65512575e+02,
4.64978936e+02, 4.64978936e+02, 4.64978936e+02, 4.64978936e+02,
4.64673717e+02, 4.64673717e+02, 4.64673717e+02, 4.64673717e+02,
4.65549665e+02, 4.65549665e+02, 4.65549665e+02, 4.65549665e+02,
4.65877259e+02, 4.65877259e+02, 4.65877259e+02, 4.65877259e+02,
4.66221730e+02, 4.66221730e+02, 4.66221730e+02, 4.66221730e+02,
4.29568087e+02, 4.29568087e+02, 4.29568087e+02, 4.29568087e+02,
9.52105367e+01, 9.52105367e+01, 9.52105367e+01, 9.52105367e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
0.99999939, 0.99999939, 0.99999939, 0.99999939, 0.99999731,
0.99999731, 0.99999731, 0.99999731, 0.999989 , 0.999989 ,
0.999989 , 0.999989 , 0.99995856, 0.99995856, 0.99995856,
0.99995856, 0.99985665, 0.99985665, 0.99985665, 0.99985665,
0.99954597, 0.99954597, 0.99954597, 0.99954597, 0.99868755,
0.99868755, 0.99868755, 0.99868755, 0.99655014, 0.99655014,
0.99655014, 0.99655014, 0.99178181, 0.99178181, 0.99178181,
0.99178181, 0.98229854, 0.98229854, 0.98229854, 0.98229854,
0.96552985, 0.96552985, 0.96552985, 0.96552985, 0.93912839,
0.93912839, 0.93912839, 0.93912839, 0.90184264, 0.90184264,
0.90184264, 0.90184264, 0.85390898, 0.85390898, 0.85390898,
0.85390898, 0.7967545 , 0.7967545 , 0.7967545 , 0.7967545 ,
0.73829091, 0.73829091, 0.73829091, 0.73829091, 0.68780613,
0.68780613, 0.68780613, 0.68780613, 0.64606705, 0.64606705,
0.64606705, 0.64606705, 0.61466511, 0.61466511, 0.61466511,
0.61466511, 0.59269096, 0.59269096, 0.59269096, 0.59269096,
0.58250874, 0.58250874, 0.58250874, 0.58250874, 0.57508641,
0.57508641, 0.57508641, 0.57508641, 0.5734657 , 0.5734657 ,
0.5734657 , 0.5734657 , 0.57174434, 0.57174434, 0.57174434,
0.57174434, 0.57164142, 0.57164142, 0.57164142, 0.57164142,
0.58284131, 0.58284131, 0.58284131, 0.58284131, 0.76151887,
0.76151887, 0.76151887, 0.76151887, 4.81691328, 4.81691328,
4.81691328, 4.81691328, 2.25893065, 2.25893065, 2.25893065,
2.25893065, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744984, -19.59744984, -19.59744984, -19.59744984,
-19.59744909, -19.59744909, -19.59744909, -19.59744909,
-19.59744528, -19.59744528, -19.59744528, -19.59744528,
-19.59742733, -19.59742733, -19.59742733, -19.59742733,
-19.59734939, -19.59734939, -19.59734939, -19.59734939,
-19.59703833, -19.59703833, -19.59703833, -19.59703833,
-19.59589939, -19.59589939, -19.59589939, -19.59589939,
-19.5920864 , -19.5920864 , -19.5920864 , -19.5920864 ,
-19.58046039, -19.58046039, -19.58046039, -19.58046039,
-19.54832897, -19.54832897, -19.54832897, -19.54832897,
-19.46825555, -19.46825555, -19.46825555, -19.46825555,
-19.28922569, -19.28922569, -19.28922569, -19.28922569,
-18.93137655, -18.93137655, -18.93137655, -18.93137655,
-18.29222556, -18.29222556, -18.29222556, -18.29222556,
-17.26796639, -17.26796639, -17.26796639, -17.26796639,
-15.78084771, -15.78084771, -15.78084771, -15.78084771,
-13.79230809, -13.79230809, -13.79230809, -13.79230809,
-11.28800263, -11.28800263, -11.28800263, -11.28800263,
-8.61569585, -8.61569585, -8.61569585, -8.61569585,
-6.15272067, -6.15272067, -6.15272067, -6.15272067,
-4.01418509, -4.01418509, -4.01418509, -4.01418509,
-2.29585438, -2.29585438, -2.29585438, -2.29585438,
-1.16557706, -1.16557706, -1.16557706, -1.16557706,
-0.4224157 , -0.4224157 , -0.4224157 , -0.4224157 ,
-0.28119683, -0.28119683, -0.28119683, -0.28119683,
-0.1676693 , -0.1676693 , -0.1676693 , -0.1676693 ,
-0.19033632, -0.19033632, -0.19033632, -0.19033632,
-0.26119683, -0.26119683, -0.26119683, -0.26119683,
-0.27753473, -0.27753473, -0.27753473, -0.27753473,
-0.11037821, -0.11037821, -0.11037821, -0.11037821,
-0.04365842, -0.04365842, -0.04365842, -0.04365842,
-8.8283585 , -8.8283585 , -8.8283585 , -8.8283585 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999966e+02, 9.99999966e+02, 9.99999966e+02, 9.99999966e+02,
9.99999823e+02, 9.99999823e+02, 9.99999823e+02, 9.99999823e+02,
9.99999152e+02, 9.99999152e+02, 9.99999152e+02, 9.99999152e+02,
9.99996236e+02, 9.99996236e+02, 9.99996236e+02, 9.99996236e+02,
9.99984597e+02, 9.99984597e+02, 9.99984597e+02, 9.99984597e+02,
9.99941983e+02, 9.99941983e+02, 9.99941983e+02, 9.99941983e+02,
9.99799330e+02, 9.99799330e+02, 9.99799330e+02, 9.99799330e+02,
9.99364480e+02, 9.99364480e+02, 9.99364480e+02, 9.99364480e+02,
9.98163506e+02, 9.98163506e+02, 9.98163506e+02, 9.98163506e+02,
9.95176015e+02, 9.95176015e+02, 9.95176015e+02, 9.95176015e+02,
9.88524479e+02, 9.88524479e+02, 9.88524479e+02, 9.88524479e+02,
9.75344870e+02, 9.75344870e+02, 9.75344870e+02, 9.75344870e+02,
9.52185825e+02, 9.52185825e+02, 9.52185825e+02, 9.52185825e+02,
9.16075033e+02, 9.16075033e+02, 9.16075033e+02, 9.16075033e+02,
8.65780612e+02, 8.65780612e+02, 8.65780612e+02, 8.65780612e+02,
8.02308999e+02, 8.02308999e+02, 8.02308999e+02, 8.02308999e+02,
7.28177860e+02, 7.28177860e+02, 7.28177860e+02, 7.28177860e+02,
6.54721861e+02, 6.54721861e+02, 6.54721861e+02, 6.54721861e+02,
5.93204423e+02, 5.93204423e+02, 5.93204423e+02, 5.93204423e+02,
5.43726171e+02, 5.43726171e+02, 5.43726171e+02, 5.43726171e+02,
5.07365905e+02, 5.07365905e+02, 5.07365905e+02, 5.07365905e+02,
4.82452325e+02, 4.82452325e+02, 4.82452325e+02, 4.82452325e+02,
4.71384603e+02, 4.71384603e+02, 4.71384603e+02, 4.71384603e+02,
4.63981574e+02, 4.63981574e+02, 4.63981574e+02, 4.63981574e+02,
4.64333018e+02, 4.64333018e+02, 4.64333018e+02, 4.64333018e+02,
4.65577731e+02, 4.65577731e+02, 4.65577731e+02, 4.65577731e+02,
4.66613550e+02, 4.66613550e+02, 4.66613550e+02, 4.66613550e+02,
4.65261608e+02, 4.65261608e+02, 4.65261608e+02, 4.65261608e+02,
4.62630505e+02, 4.62630505e+02, 4.62630505e+02, 4.62630505e+02,
4.25746506e+02, 4.25746506e+02, 4.25746506e+02, 4.25746506e+02,
1.35534849e+02, 1.35534849e+02, 1.35534849e+02, 1.35534849e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999977, 0.99999977, 0.99999977,
0.99999977, 0.99999896, 0.99999896, 0.99999896, 0.99999896,
0.99999568, 0.99999568, 0.99999568, 0.99999568, 0.99998342,
0.99998342, 0.99998342, 0.99998342, 0.99994115, 0.99994115,
0.99994115, 0.99994115, 0.99980744, 0.99980744, 0.99980744,
0.99980744, 0.9994209 , 0.9994209 , 0.9994209 , 0.9994209 ,
0.99840456, 0.99840456, 0.99840456, 0.99840456, 0.99598731,
0.99598731, 0.99598731, 0.99598731, 0.9908153 , 0.9908153 ,
0.9908153 , 0.9908153 , 0.98090476, 0.98090476, 0.98090476,
0.98090476, 0.96393267, 0.96393267, 0.96393267, 0.96393267,
0.93790486, 0.93790486, 0.93790486, 0.93790486, 0.90189069,
0.90189069, 0.90189069, 0.90189069, 0.85628111, 0.85628111,
0.85628111, 0.85628111, 0.80238217, 0.80238217, 0.80238217,
0.80238217, 0.74650695, 0.74650695, 0.74650695, 0.74650695,
0.69727486, 0.69727486, 0.69727486, 0.69727486, 0.65578044,
0.65578044, 0.65578044, 0.65578044, 0.62276211, 0.62276211,
0.62276211, 0.62276211, 0.59984564, 0.59984564, 0.59984564,
0.59984564, 0.58469198, 0.58469198, 0.58469198, 0.58469198,
0.57937376, 0.57937376, 0.57937376, 0.57937376, 0.5751276 ,
0.5751276 , 0.5751276 , 0.5751276 , 0.57353803, 0.57353803,
0.57353803, 0.57353803, 0.57206183, 0.57206183, 0.57206183,
0.57206183, 0.5713875 , 0.5713875 , 0.5713875 , 0.5713875 ,
0.58173584, 0.58173584, 0.58173584, 0.58173584, 0.75615848,
0.75615848, 0.75615848, 0.75615848, 4.80345797, 4.80345797,
4.80345797, 4.80345797, 2.65264632, 2.65264632, 2.65264632,
2.65264632, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744994, -19.59744994, -19.59744994, -19.59744994,
-19.59744965, -19.59744965, -19.59744965, -19.59744965,
-19.5974482 , -19.5974482 , -19.5974482 , -19.5974482 ,
-19.5974413 , -19.5974413 , -19.5974413 , -19.5974413 ,
-19.59741108, -19.59741108, -19.59741108, -19.59741108,
-19.59728853, -19.59728853, -19.59728853, -19.59728853,
-19.5968297 , -19.5968297 , -19.5968297 , -19.5968297 ,
-19.5952481 , -19.5952481 , -19.5952481 , -19.5952481 ,
-19.59024502, -19.59024502, -19.59024502, -19.59024502,
-19.57577973, -19.57577973, -19.57577973, -19.57577973,
-19.53773193, -19.53773193, -19.53773193, -19.53773193,
-19.4471473 , -19.4471473 , -19.4471473 , -19.4471473 ,
-19.25284345, -19.25284345, -19.25284345, -19.25284345,
-18.87848976, -18.87848976, -18.87848976, -18.87848976,
-18.23067614, -18.23067614, -18.23067614, -18.23067614,
-17.21942704, -17.21942704, -17.21942704, -17.21942704,
-15.78184245, -15.78184245, -15.78184245, -15.78184245,
-13.89153438, -13.89153438, -13.89153438, -13.89153438,
-11.5404357 , -11.5404357 , -11.5404357 , -11.5404357 ,
-8.99690317, -8.99690317, -8.99690317, -8.99690317,
-6.62316736, -6.62316736, -6.62316736, -6.62316736,
-4.50690243, -4.50690243, -4.50690243, -4.50690243,
-2.76629623, -2.76629623, -2.76629623, -2.76629623,
-1.45746824, -1.45746824, -1.45746824, -1.45746824,
-0.72191187, -0.72191187, -0.72191187, -0.72191187,
-0.25384882, -0.25384882, -0.25384882, -0.25384882,
-0.22267787, -0.22267787, -0.22267787, -0.22267787,
-0.21716883, -0.21716883, -0.21716883, -0.21716883,
-0.24125632, -0.24125632, -0.24125632, -0.24125632,
-0.23810243, -0.23810243, -0.23810243, -0.23810243,
-0.14361122, -0.14361122, -0.14361122, -0.14361122,
0.10057084, 0.10057084, 0.10057084, 0.10057084,
0.16443868, 0.16443868, 0.16443868, 0.16443868,
-7.3920307 , -7.3920307 , -7.3920307 , -7.3920307 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999987e+02, 9.99999987e+02, 9.99999987e+02, 9.99999987e+02,
9.99999932e+02, 9.99999932e+02, 9.99999932e+02, 9.99999932e+02,
9.99999675e+02, 9.99999675e+02, 9.99999675e+02, 9.99999675e+02,
9.99998544e+02, 9.99998544e+02, 9.99998544e+02, 9.99998544e+02,
9.99993958e+02, 9.99993958e+02, 9.99993958e+02, 9.99993958e+02,
9.99976791e+02, 9.99976791e+02, 9.99976791e+02, 9.99976791e+02,
9.99917615e+02, 9.99917615e+02, 9.99917615e+02, 9.99917615e+02,
9.99730445e+02, 9.99730445e+02, 9.99730445e+02, 9.99730445e+02,
9.99189454e+02, 9.99189454e+02, 9.99189454e+02, 9.99189454e+02,
9.97767695e+02, 9.97767695e+02, 9.97767695e+02, 9.97767695e+02,
9.94389774e+02, 9.94389774e+02, 9.94389774e+02, 9.94389774e+02,
9.87177517e+02, 9.87177517e+02, 9.87177517e+02, 9.87177517e+02,
9.73410164e+02, 9.73410164e+02, 9.73410164e+02, 9.73410164e+02,
9.49981230e+02, 9.49981230e+02, 9.49981230e+02, 9.49981230e+02,
9.14392984e+02, 9.14392984e+02, 9.14392984e+02, 9.14392984e+02,
8.65808514e+02, 8.65808514e+02, 8.65808514e+02, 8.65808514e+02,
8.05361247e+02, 8.05361247e+02, 8.05361247e+02, 8.05361247e+02,
7.35330772e+02, 7.35330772e+02, 7.35330772e+02, 7.35330772e+02,
6.64800382e+02, 6.64800382e+02, 6.64800382e+02, 6.64800382e+02,
6.04494583e+02, 6.04494583e+02, 6.04494583e+02, 6.04494583e+02,
5.55006186e+02, 5.55006186e+02, 5.55006186e+02, 5.55006186e+02,
5.16541818e+02, 5.16541818e+02, 5.16541818e+02, 5.16541818e+02,
4.90365807e+02, 4.90365807e+02, 4.90365807e+02, 4.90365807e+02,
4.73379066e+02, 4.73379066e+02, 4.73379066e+02, 4.73379066e+02,
4.67844270e+02, 4.67844270e+02, 4.67844270e+02, 4.67844270e+02,
4.64036881e+02, 4.64036881e+02, 4.64036881e+02, 4.64036881e+02,
4.64430634e+02, 4.64430634e+02, 4.64430634e+02, 4.64430634e+02,
4.65947772e+02, 4.65947772e+02, 4.65947772e+02, 4.65947772e+02,
4.66292983e+02, 4.66292983e+02, 4.66292983e+02, 4.66292983e+02,
4.63793327e+02, 4.63793327e+02, 4.63793327e+02, 4.63793327e+02,
4.58295049e+02, 4.58295049e+02, 4.58295049e+02, 4.58295049e+02,
4.26680001e+02, 4.26680001e+02, 4.26680001e+02, 4.26680001e+02,
1.72719750e+02, 1.72719750e+02, 1.72719750e+02, 1.72719750e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999991,
0.99999991, 0.99999991, 0.99999991, 0.9999996 , 0.9999996 ,
0.9999996 , 0.9999996 , 0.99999831, 0.99999831, 0.99999831,
0.99999831, 0.99999339, 0.99999339, 0.99999339, 0.99999339,
0.99997601, 0.99997601, 0.99997601, 0.99997601, 0.99991924,
0.99991924, 0.99991924, 0.99991924, 0.9997486 , 0.9997486 ,
0.9997486 , 0.9997486 , 0.9992784 , 0.9992784 , 0.9992784 ,
0.9992784 , 0.99809628, 0.99809628, 0.99809628, 0.99809628,
0.99539903, 0.99539903, 0.99539903, 0.99539903, 0.98984223,
0.98984223, 0.98984223, 0.98984223, 0.97954708, 0.97954708,
0.97954708, 0.97954708, 0.9624199 , 0.9624199 , 0.9624199 ,
0.9624199 , 0.93677211, 0.93677211, 0.93677211, 0.93677211,
0.90193406, 0.90193406, 0.90193406, 0.90193406, 0.85840937,
0.85840937, 0.85840937, 0.85840937, 0.80742851, 0.80742851,
0.80742851, 0.80742851, 0.75400455, 0.75400455, 0.75400455,
0.75400455, 0.70614068, 0.70614068, 0.70614068, 0.70614068,
0.66495362, 0.66495362, 0.66495362, 0.66495362, 0.63140079,
0.63140079, 0.63140079, 0.63140079, 0.60602151, 0.60602151,
0.60602151, 0.60602151, 0.59019289, 0.59019289, 0.59019289,
0.59019289, 0.58021561, 0.58021561, 0.58021561, 0.58021561,
0.57785903, 0.57785903, 0.57785903, 0.57785903, 0.5756833 ,
0.5756833 , 0.5756833 , 0.5756833 , 0.57399443, 0.57399443,
0.57399443, 0.57399443, 0.57175661, 0.57175661, 0.57175661,
0.57175661, 0.57016666, 0.57016666, 0.57016666, 0.57016666,
0.57891026, 0.57891026, 0.57891026, 0.57891026, 0.75167445,
0.75167445, 0.75167445, 0.75167445, 4.81541575, 4.81541575,
4.81541575, 4.81541575, 3.02284787, 3.02284787, 3.02284787,
3.02284787, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744987, -19.59744987, -19.59744987, -19.59744987,
-19.59744931, -19.59744931, -19.59744931, -19.59744931,
-19.59744666, -19.59744666, -19.59744666, -19.59744666,
-19.59743493, -19.59743493, -19.59743493, -19.59743493,
-19.59738673, -19.59738673, -19.59738673, -19.59738673,
-19.59720271, -19.59720271, -19.59720271, -19.59720271,
-19.59655219, -19.59655219, -19.59655219, -19.59655219,
-19.59442804, -19.59442804, -19.59442804, -19.59442804,
-19.58804304, -19.58804304, -19.58804304, -19.58804304,
-19.57044604, -19.57044604, -19.57044604, -19.57044604,
-19.52618557, -19.52618557, -19.52618557, -19.52618557,
-19.42507494, -19.42507494, -19.42507494, -19.42507494,
-19.21618398, -19.21618398, -19.21618398, -19.21618398,
-18.82690858, -18.82690858, -18.82690858, -18.82690858,
-18.17229471, -18.17229471, -18.17229471, -18.17229471,
-17.17444894, -17.17444894, -17.17444894, -17.17444894,
-15.78278408, -15.78278408, -15.78278408, -15.78278408,
-13.98043263, -13.98043263, -13.98043263, -13.98043263,
-11.76527896, -11.76527896, -11.76527896, -11.76527896,
-9.34378632, -9.34378632, -9.34378632, -9.34378632,
-7.05643989, -7.05643989, -7.05643989, -7.05643989,
-4.98262758, -4.98262758, -4.98262758, -4.98262758,
-3.20805664, -3.20805664, -3.20805664, -3.20805664,
-1.84956697, -1.84956697, -1.84956697, -1.84956697,
-0.89863961, -0.89863961, -0.89863961, -0.89863961,
-0.46628545, -0.46628545, -0.46628545, -0.46628545,
-0.19649909, -0.19649909, -0.19649909, -0.19649909,
-0.20536213, -0.20536213, -0.20536213, -0.20536213,
-0.24763714, -0.24763714, -0.24763714, -0.24763714,
-0.25291938, -0.25291938, -0.25291938, -0.25291938,
-0.18625508, -0.18625508, -0.18625508, -0.18625508,
0.04128025, 0.04128025, 0.04128025, 0.04128025,
0.30247955, 0.30247955, 0.30247955, 0.30247955,
0.2509268 , 0.2509268 , 0.2509268 , 0.2509268 ,
-6.20156314, -6.20156314, -6.20156314, -6.20156314,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999995e+02, 9.99999995e+02, 9.99999995e+02, 9.99999995e+02,
9.99999974e+02, 9.99999974e+02, 9.99999974e+02, 9.99999974e+02,
9.99999875e+02, 9.99999875e+02, 9.99999875e+02, 9.99999875e+02,
9.99999436e+02, 9.99999436e+02, 9.99999436e+02, 9.99999436e+02,
9.99997633e+02, 9.99997633e+02, 9.99997633e+02, 9.99997633e+02,
9.99990747e+02, 9.99990747e+02, 9.99990747e+02, 9.99990747e+02,
9.99966408e+02, 9.99966408e+02, 9.99966408e+02, 9.99966408e+02,
9.99886934e+02, 9.99886934e+02, 9.99886934e+02, 9.99886934e+02,
9.99648077e+02, 9.99648077e+02, 9.99648077e+02, 9.99648077e+02,
9.98990041e+02, 9.98990041e+02, 9.98990041e+02, 9.98990041e+02,
9.97336580e+02, 9.97336580e+02, 9.97336580e+02, 9.97336580e+02,
9.93568199e+02, 9.93568199e+02, 9.93568199e+02, 9.93568199e+02,
9.85821909e+02, 9.85821909e+02, 9.85821909e+02, 9.85821909e+02,
9.71526437e+02, 9.71526437e+02, 9.71526437e+02, 9.71526437e+02,
9.47894147e+02, 9.47894147e+02, 9.47894147e+02, 9.47894147e+02,
9.12836507e+02, 9.12836507e+02, 9.12836507e+02, 9.12836507e+02,
8.65834851e+02, 8.65834851e+02, 8.65834851e+02, 8.65834851e+02,
8.08105172e+02, 8.08105172e+02, 8.08105172e+02, 8.08105172e+02,
7.41758147e+02, 7.41758147e+02, 7.41758147e+02, 7.41758147e+02,
6.74072947e+02, 6.74072947e+02, 6.74072947e+02, 6.74072947e+02,
6.15130380e+02, 6.15130380e+02, 6.15130380e+02, 6.15130380e+02,
5.65729150e+02, 5.65729150e+02, 5.65729150e+02, 5.65729150e+02,
5.26412191e+02, 5.26412191e+02, 5.26412191e+02, 5.26412191e+02,
4.97253516e+02, 4.97253516e+02, 4.97253516e+02, 4.97253516e+02,
4.79375696e+02, 4.79375696e+02, 4.79375696e+02, 4.79375696e+02,
4.68320744e+02, 4.68320744e+02, 4.68320744e+02, 4.68320744e+02,
4.66136700e+02, 4.66136700e+02, 4.66136700e+02, 4.66136700e+02,
4.64672864e+02, 4.64672864e+02, 4.64672864e+02, 4.64672864e+02,
4.64966289e+02, 4.64966289e+02, 4.64966289e+02, 4.64966289e+02,
4.65608335e+02, 4.65608335e+02, 4.65608335e+02, 4.65608335e+02,
4.64881882e+02, 4.64881882e+02, 4.64881882e+02, 4.64881882e+02,
4.60646102e+02, 4.60646102e+02, 4.60646102e+02, 4.60646102e+02,
4.55385849e+02, 4.55385849e+02, 4.55385849e+02, 4.55385849e+02,
4.31816803e+02, 4.31816803e+02, 4.31816803e+02, 4.31816803e+02,
2.06635628e+02, 2.06635628e+02, 2.06635628e+02, 2.06635628e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999997, 0.99999997, 0.99999997, 0.99999997,
0.99999984, 0.99999984, 0.99999984, 0.99999984, 0.99999934,
0.99999934, 0.99999934, 0.99999934, 0.99999737, 0.99999737,
0.99999737, 0.99999737, 0.99999027, 0.99999027, 0.99999027,
0.99999027, 0.99996643, 0.99996643, 0.99996643, 0.99996643,
0.9998923 , 0.9998923 , 0.9998923 , 0.9998923 , 0.99967957,
0.99967957, 0.99967957, 0.99967957, 0.9991184 , 0.9991184 ,
0.9991184 , 0.9991184 , 0.99776398, 0.99776398, 0.99776398,
0.99776398, 0.99478831, 0.99478831, 0.99478831, 0.99478831,
0.9888658 , 0.9888658 , 0.9888658 , 0.9888658 , 0.9782249 ,
0.9782249 , 0.9782249 , 0.9782249 , 0.96098356, 0.96098356,
0.96098356, 0.96098356, 0.93571801, 0.93571801, 0.93571801,
0.93571801, 0.90197123, 0.90197123, 0.90197123, 0.90197123,
0.86032975, 0.86032975, 0.86032975, 0.86032975, 0.81198217,
0.81198217, 0.81198217, 0.81198217, 0.76085236, 0.76085236,
0.76085236, 0.76085236, 0.71438618, 0.71438618, 0.71438618,
0.71438618, 0.673788 , 0.673788 , 0.673788 , 0.673788 ,
0.63968963, 0.63968963, 0.63968963, 0.63968963, 0.61328797,
0.61328797, 0.61328797, 0.61328797, 0.59447045, 0.59447045,
0.59447045, 0.59447045, 0.58428705, 0.58428705, 0.58428705,
0.58428705, 0.57809617, 0.57809617, 0.57809617, 0.57809617,
0.57719122, 0.57719122, 0.57719122, 0.57719122, 0.57620897,
0.57620897, 0.57620897, 0.57620897, 0.57422688, 0.57422688,
0.57422688, 0.57422688, 0.571107 , 0.571107 , 0.571107 ,
0.571107 , 0.56786369, 0.56786369, 0.56786369, 0.56786369,
0.57567961, 0.57567961, 0.57567961, 0.57567961, 0.74817334,
0.74817334, 0.74817334, 0.74817334, 4.84157196, 4.84157196,
4.84157196, 4.84157196, 3.37984832, 3.37984832, 3.37984832,
3.37984832, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744995, -19.59744995, -19.59744995, -19.59744995,
-19.59744973, -19.59744973, -19.59744973, -19.59744973,
-19.59744871, -19.59744871, -19.59744871, -19.59744871,
-19.59744416, -19.59744416, -19.59744416, -19.59744416,
-19.59742522, -19.59742522, -19.59742522, -19.59742522,
-19.59735169, -19.59735169, -19.59735169, -19.59735169,
-19.59708593, -19.59708593, -19.59708593, -19.59708593,
-19.59619382, -19.59619382, -19.59619382, -19.59619382,
-19.59342017, -19.59342017, -19.59342017, -19.59342017,
-19.58545999, -19.58545999, -19.58545999, -19.58545999,
-19.56445685, -19.56445685, -19.56445685, -19.56445685,
-19.51373667, -19.51373667, -19.51373667, -19.51373667,
-19.40214943, -19.40214943, -19.40214943, -19.40214943,
-19.17936756, -19.17936756, -19.17936756, -19.17936756,
-18.77661552, -18.77661552, -18.77661552, -18.77661552,
-18.1167873 , -18.1167873 , -18.1167873 , -18.1167873 ,
-17.1325607 , -17.1325607 , -17.1325607 , -17.1325607 ,
-15.78358459, -15.78358459, -15.78358459, -15.78358459,
-14.06052277, -14.06052277, -14.06052277, -14.06052277,
-11.96678578, -11.96678578, -11.96678578, -11.96678578,
-9.66020929, -9.66020929, -9.66020929, -9.66020929,
-7.45697342, -7.45697342, -7.45697342, -7.45697342,
-5.42891389, -5.42891389, -5.42891389, -5.42891389,
-3.65587783, -3.65587783, -3.65587783, -3.65587783,
-2.21451375, -2.21451375, -2.21451375, -2.21451375,
-1.20771195, -1.20771195, -1.20771195, -1.20771195,
-0.55292829, -0.55292829, -0.55292829, -0.55292829,
-0.33291113, -0.33291113, -0.33291113, -0.33291113,
-0.1977434 , -0.1977434 , -0.1977434 , -0.1977434 ,
-0.2087287 , -0.2087287 , -0.2087287 , -0.2087287 ,
-0.24528779, -0.24528779, -0.24528779, -0.24528779,
-0.22555601, -0.22555601, -0.22555601, -0.22555601,
-0.07111291, -0.07111291, -0.07111291, -0.07111291,
0.21894468, 0.21894468, 0.21894468, 0.21894468,
0.41981187, 0.41981187, 0.41981187, 0.41981187,
0.26295954, 0.26295954, 0.26295954, 0.26295954,
-5.18426791, -5.18426791, -5.18426791, -5.18426791,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
9.99999952e+02, 9.99999952e+02, 9.99999952e+02, 9.99999952e+02,
9.99999782e+02, 9.99999782e+02, 9.99999782e+02, 9.99999782e+02,
9.99999073e+02, 9.99999073e+02, 9.99999073e+02, 9.99999073e+02,
9.99996322e+02, 9.99996322e+02, 9.99996322e+02, 9.99996322e+02,
9.99986378e+02, 9.99986378e+02, 9.99986378e+02, 9.99986378e+02,
9.99952999e+02, 9.99952999e+02, 9.99952999e+02, 9.99952999e+02,
9.99849227e+02, 9.99849227e+02, 9.99849227e+02, 9.99849227e+02,
9.99551461e+02, 9.99551461e+02, 9.99551461e+02, 9.99551461e+02,
9.98766163e+02, 9.98766163e+02, 9.98766163e+02, 9.98766163e+02,
9.96871948e+02, 9.96871948e+02, 9.96871948e+02, 9.96871948e+02,
9.92715494e+02, 9.92715494e+02, 9.92715494e+02, 9.92715494e+02,
9.84462129e+02, 9.84462129e+02, 9.84462129e+02, 9.84462129e+02,
9.69692798e+02, 9.69692798e+02, 9.69692798e+02, 9.69692798e+02,
9.45913437e+02, 9.45913437e+02, 9.45913437e+02, 9.45913437e+02,
9.11388812e+02, 9.11388812e+02, 9.11388812e+02, 9.11388812e+02,
8.65856722e+02, 8.65856722e+02, 8.65856722e+02, 8.65856722e+02,
8.10584836e+02, 8.10584836e+02, 8.10584836e+02, 8.10584836e+02,
7.47563377e+02, 7.47563377e+02, 7.47563377e+02, 7.47563377e+02,
6.82592921e+02, 6.82592921e+02, 6.82592921e+02, 6.82592921e+02,
6.25100512e+02, 6.25100512e+02, 6.25100512e+02, 6.25100512e+02,
5.76125421e+02, 5.76125421e+02, 5.76125421e+02, 5.76125421e+02,
5.35939873e+02, 5.35939873e+02, 5.35939873e+02, 5.35939873e+02,
5.05443149e+02, 5.05443149e+02, 5.05443149e+02, 5.05443149e+02,
4.84061172e+02, 4.84061172e+02, 4.84061172e+02, 4.84061172e+02,
4.72683354e+02, 4.72683354e+02, 4.72683354e+02, 4.72683354e+02,
4.65930774e+02, 4.65930774e+02, 4.65930774e+02, 4.65930774e+02,
4.65385730e+02, 4.65385730e+02, 4.65385730e+02, 4.65385730e+02,
4.65275096e+02, 4.65275096e+02, 4.65275096e+02, 4.65275096e+02,
4.65244567e+02, 4.65244567e+02, 4.65244567e+02, 4.65244567e+02,
4.64880653e+02, 4.64880653e+02, 4.64880653e+02, 4.64880653e+02,
4.62253833e+02, 4.62253833e+02, 4.62253833e+02, 4.62253833e+02,
4.57097301e+02, 4.57097301e+02, 4.57097301e+02, 4.57097301e+02,
4.53882832e+02, 4.53882832e+02, 4.53882832e+02, 4.53882832e+02,
4.39418517e+02, 4.39418517e+02, 4.39418517e+02, 4.39418517e+02,
2.38228799e+02, 2.38228799e+02, 2.38228799e+02, 2.38228799e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999994, 0.99999994, 0.99999994,
0.99999994, 0.99999974, 0.99999974, 0.99999974, 0.99999974,
0.99999896, 0.99999896, 0.99999896, 0.99999896, 0.99999607,
0.99999607, 0.99999607, 0.99999607, 0.99998615, 0.99998615,
0.99998615, 0.99998615, 0.99995436, 0.99995436, 0.99995436,
0.99995436, 0.99985986, 0.99985986, 0.99985986, 0.99985986,
0.99959991, 0.99959991, 0.99959991, 0.99959991, 0.99894097,
0.99894097, 0.99894097, 0.99894097, 0.99740896, 0.99740896,
0.99740896, 0.99740896, 0.99415786, 0.99415786, 0.99415786,
0.99415786, 0.98788866, 0.98788866, 0.98788866, 0.98788866,
0.9769374 , 0.9769374 , 0.9769374 , 0.9769374 , 0.9596167 ,
0.9596167 , 0.9596167 , 0.9596167 , 0.93473263, 0.93473263,
0.93473263, 0.93473263, 0.90200243, 0.90200243, 0.90200243,
0.90200243, 0.86207191, 0.86207191, 0.86207191, 0.86207191,
0.8160811 , 0.8160811 , 0.8160811 , 0.8160811 , 0.76717167,
0.76717167, 0.76717167, 0.76717167, 0.72204334, 0.72204334,
0.72204334, 0.72204334, 0.68214793, 0.68214793, 0.68214793,
0.68214793, 0.64796307, 0.64796307, 0.64796307, 0.64796307,
0.62031392, 0.62031392, 0.62031392, 0.62031392, 0.60028844,
0.60028844, 0.60028844, 0.60028844, 0.58692937, 0.58692937,
0.58692937, 0.58692937, 0.58094604, 0.58094604, 0.58094604,
0.58094604, 0.57737342, 0.57737342, 0.57737342, 0.57737342,
0.57696531, 0.57696531, 0.57696531, 0.57696531, 0.57635167,
0.57635167, 0.57635167, 0.57635167, 0.57411717, 0.57411717,
0.57411717, 0.57411717, 0.56976281, 0.56976281, 0.56976281,
0.56976281, 0.5647334 , 0.5647334 , 0.5647334 , 0.5647334 ,
0.57337992, 0.57337992, 0.57337992, 0.57337992, 0.74560079,
0.74560079, 0.74560079, 0.74560079, 4.86173883, 4.86173883,
4.86173883, 4.86173883, 3.74293932, 3.74293932, 3.74293932,
3.74293932, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.5974499 , -19.5974499 , -19.5974499 , -19.5974499 ,
-19.5974495 , -19.5974495 , -19.5974495 , -19.5974495 ,
-19.59744774, -19.59744774, -19.59744774, -19.59744774,
-19.5974403 , -19.5974403 , -19.5974403 , -19.5974403 ,
-19.597411 , -19.597411 , -19.597411 , -19.597411 ,
-19.59730302, -19.59730302, -19.59730302, -19.59730302,
-19.59693164, -19.59693164, -19.59693164, -19.59693164,
-19.59574238, -19.59574238, -19.59574238, -19.59574238,
-19.59220644, -19.59220644, -19.59220644, -19.59220644,
-19.5824787 , -19.5824787 , -19.5824787 , -19.5824787 ,
-19.55781439, -19.55781439, -19.55781439, -19.55781439,
-19.50043296, -19.50043296, -19.50043296, -19.50043296,
-19.37847127, -19.37847127, -19.37847127, -19.37847127,
-19.14249326, -19.14249326, -19.14249326, -19.14249326,
-18.72758373, -18.72758373, -18.72758373, -18.72758373,
-18.06389686, -18.06389686, -18.06389686, -18.06389686,
-17.09337525, -17.09337525, -17.09337525, -17.09337525,
-15.7842355 , -15.7842355 , -15.7842355 , -15.7842355 ,
-14.13315083, -14.13315083, -14.13315083, -14.13315083,
-12.14786666, -12.14786666, -12.14786666, -12.14786666,
-9.94885509, -9.94885509, -9.94885509, -9.94885509,
-7.8279918 , -7.8279918 , -7.8279918 , -7.8279918 ,
-5.85096961, -5.85096961, -5.85096961, -5.85096961,
-4.083866 , -4.083866 , -4.083866 , -4.083866 ,
-2.61044982, -2.61044982, -2.61044982, -2.61044982,
-1.48449895, -1.48449895, -1.48449895, -1.48449895,
-0.78457656, -0.78457656, -0.78457656, -0.78457656,
-0.36023962, -0.36023962, -0.36023962, -0.36023962,
-0.26982385, -0.26982385, -0.26982385, -0.26982385,
-0.21660221, -0.21660221, -0.21660221, -0.21660221,
-0.21563676, -0.21563676, -0.21563676, -0.21563676,
-0.21823924, -0.21823924, -0.21823924, -0.21823924,
-0.14247469, -0.14247469, -0.14247469, -0.14247469,
0.10258168, 0.10258168, 0.10258168, 0.10258168,
0.32671238, 0.32671238, 0.32671238, 0.32671238,
0.4520803 , 0.4520803 , 0.4520803 , 0.4520803 ,
0.25674662, 0.25674662, 0.25674662, 0.25674662,
-4.32220372, -4.32220372, -4.32220372, -4.32220372,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999981e+02, 9.99999981e+02, 9.99999981e+02, 9.99999981e+02,
9.99999915e+02, 9.99999915e+02, 9.99999915e+02, 9.99999915e+02,
9.99999637e+02, 9.99999637e+02, 9.99999637e+02, 9.99999637e+02,
9.99998541e+02, 9.99998541e+02, 9.99998541e+02, 9.99998541e+02,
9.99994500e+02, 9.99994500e+02, 9.99994500e+02, 9.99994500e+02,
9.99980605e+02, 9.99980605e+02, 9.99980605e+02, 9.99980605e+02,
9.99936108e+02, 9.99936108e+02, 9.99936108e+02, 9.99936108e+02,
9.99803820e+02, 9.99803820e+02, 9.99803820e+02, 9.99803820e+02,
9.99439960e+02, 9.99439960e+02, 9.99439960e+02, 9.99439960e+02,
9.98517915e+02, 9.98517915e+02, 9.98517915e+02, 9.98517915e+02,
9.96375619e+02, 9.96375619e+02, 9.96375619e+02, 9.96375619e+02,
9.91835461e+02, 9.91835461e+02, 9.91835461e+02, 9.91835461e+02,
9.83101847e+02, 9.83101847e+02, 9.83101847e+02, 9.83101847e+02,
9.67908032e+02, 9.67908032e+02, 9.67908032e+02, 9.67908032e+02,
9.44029385e+02, 9.44029385e+02, 9.44029385e+02, 9.44029385e+02,
9.10036140e+02, 9.10036140e+02, 9.10036140e+02, 9.10036140e+02,
8.65873851e+02, 8.65873851e+02, 8.65873851e+02, 8.65873851e+02,
8.12839676e+02, 8.12839676e+02, 8.12839676e+02, 8.12839676e+02,
7.52816562e+02, 7.52816562e+02, 7.52816562e+02, 7.52816562e+02,
6.90463584e+02, 6.90463584e+02, 6.90463584e+02, 6.90463584e+02,
6.34422698e+02, 6.34422698e+02, 6.34422698e+02, 6.34422698e+02,
5.86040349e+02, 5.86040349e+02, 5.86040349e+02, 5.86040349e+02,
5.45517331e+02, 5.45517331e+02, 5.45517331e+02, 5.45517331e+02,
5.13402817e+02, 5.13402817e+02, 5.13402817e+02, 5.13402817e+02,
4.90538861e+02, 4.90538861e+02, 4.90538861e+02, 4.90538861e+02,
4.75499560e+02, 4.75499560e+02, 4.75499560e+02, 4.75499560e+02,
4.68907799e+02, 4.68907799e+02, 4.68907799e+02, 4.68907799e+02,
4.65117682e+02, 4.65117682e+02, 4.65117682e+02, 4.65117682e+02,
4.65134695e+02, 4.65134695e+02, 4.65134695e+02, 4.65134695e+02,
4.65442962e+02, 4.65442962e+02, 4.65442962e+02, 4.65442962e+02,
4.65131540e+02, 4.65131540e+02, 4.65131540e+02, 4.65131540e+02,
4.63362159e+02, 4.63362159e+02, 4.63362159e+02, 4.63362159e+02,
4.58697323e+02, 4.58697323e+02, 4.58697323e+02, 4.58697323e+02,
4.54631528e+02, 4.54631528e+02, 4.54631528e+02, 4.54631528e+02,
4.53420612e+02, 4.53420612e+02, 4.53420612e+02, 4.53420612e+02,
4.46380765e+02, 4.46380765e+02, 4.46380765e+02, 4.46380765e+02,
2.69672349e+02, 2.69672349e+02, 2.69672349e+02, 2.69672349e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999998,
0.99999998, 0.99999998, 0.99999998, 0.9999999 , 0.9999999 ,
0.9999999 , 0.9999999 , 0.99999959, 0.99999959, 0.99999959,
0.99999959, 0.99999842, 0.99999842, 0.99999842, 0.99999842,
0.99999432, 0.99999432, 0.99999432, 0.99999432, 0.99998084,
0.99998084, 0.99998084, 0.99998084, 0.99993948, 0.99993948,
0.99993948, 0.99993948, 0.99982148, 0.99982148, 0.99982148,
0.99982148, 0.99950923, 0.99950923, 0.99950923, 0.99950923,
0.99874628, 0.99874628, 0.99874628, 0.99874628, 0.9970325 ,
0.9970325 , 0.9970325 , 0.9970325 , 0.99351011, 0.99351011,
0.99351011, 0.99351011, 0.98691297, 0.98691297, 0.98691297,
0.98691297, 0.97568359, 0.97568359, 0.97568359, 0.97568359,
0.95831325, 0.95831325, 0.95831325, 0.95831325, 0.93380786,
0.93380786, 0.93380786, 0.93380786, 0.90202785, 0.90202785,
0.90202785, 0.90202785, 0.86366009, 0.86366009, 0.86366009,
0.86366009, 0.81979651, 0.81979651, 0.81979651, 0.81979651,
0.77297936, 0.77297936, 0.77297936, 0.77297936, 0.72920034,
0.72920034, 0.72920034, 0.72920034, 0.69006306, 0.69006306,
0.69006306, 0.69006306, 0.65593137, 0.65593137, 0.65593137,
0.65593137, 0.62766415, 0.62766415, 0.62766415, 0.62766415,
0.60587119, 0.60587119, 0.60587119, 0.60587119, 0.59137799,
0.59137799, 0.59137799, 0.59137799, 0.58235921, 0.58235921,
0.58235921, 0.58235921, 0.57922962, 0.57922962, 0.57922962,
0.57922962, 0.57732033, 0.57732033, 0.57732033, 0.57732033,
0.57686979, 0.57686979, 0.57686979, 0.57686979, 0.57610032,
0.57610032, 0.57610032, 0.57610032, 0.57333709, 0.57333709,
0.57333709, 0.57333709, 0.56738045, 0.56738045, 0.56738045,
0.56738045, 0.56220514, 0.56220514, 0.56220514, 0.56220514,
0.57216743, 0.57216743, 0.57216743, 0.57216743, 0.74383759,
0.74383759, 0.74383759, 0.74383759, 4.87563631, 4.87563631,
4.87563631, 4.87563631, 4.11173504, 4.11173504, 4.11173504,
4.11173504, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974491e+01, -1.95974491e+01, -1.95974491e+01, -1.95974491e+01,
-1.95974462e+01, -1.95974462e+01, -1.95974462e+01, -1.95974462e+01,
-1.95974346e+01, -1.95974346e+01, -1.95974346e+01, -1.95974346e+01,
-1.95973909e+01, -1.95973909e+01, -1.95973909e+01, -1.95973909e+01,
-1.95972374e+01, -1.95972374e+01, -1.95972374e+01, -1.95972374e+01,
-1.95967329e+01, -1.95967329e+01, -1.95967329e+01, -1.95967329e+01,
-1.95951856e+01, -1.95951856e+01, -1.95951856e+01, -1.95951856e+01,
-1.95907700e+01, -1.95907700e+01, -1.95907700e+01, -1.95907700e+01,
-1.95790850e+01, -1.95790850e+01, -1.95790850e+01, -1.95790850e+01,
-1.95505247e+01, -1.95505247e+01, -1.95505247e+01, -1.95505247e+01,
-1.94863222e+01, -1.94863222e+01, -1.94863222e+01, -1.94863222e+01,
-1.93541313e+01, -1.93541313e+01, -1.93541313e+01, -1.93541313e+01,
-1.91056428e+01, -1.91056428e+01, -1.91056428e+01, -1.91056428e+01,
-1.86797805e+01, -1.86797805e+01, -1.86797805e+01, -1.86797805e+01,
-1.80133989e+01, -1.80133989e+01, -1.80133989e+01, -1.80133989e+01,
-1.70565763e+01, -1.70565763e+01, -1.70565763e+01, -1.70565763e+01,
-1.57847291e+01, -1.57847291e+01, -1.57847291e+01, -1.57847291e+01,
-1.41993110e+01, -1.41993110e+01, -1.41993110e+01, -1.41993110e+01,
-1.23114182e+01, -1.23114182e+01, -1.23114182e+01, -1.23114182e+01,
-1.02128458e+01, -1.02128458e+01, -1.02128458e+01, -1.02128458e+01,
-8.17097157e+00, -8.17097157e+00, -8.17097157e+00, -8.17097157e+00,
-6.24791835e+00, -6.24791835e+00, -6.24791835e+00, -6.24791835e+00,
-4.50048637e+00, -4.50048637e+00, -4.50048637e+00, -4.50048637e+00,
-2.99529183e+00, -2.99529183e+00, -2.99529183e+00, -2.99529183e+00,
-1.81501387e+00, -1.81501387e+00, -1.81501387e+00, -1.81501387e+00,
-9.74971294e-01, -9.74971294e-01, -9.74971294e-01, -9.74971294e-01,
-5.25188680e-01, -5.25188680e-01, -5.25188680e-01, -5.25188680e-01,
-2.68903625e-01, -2.68903625e-01, -2.68903625e-01, -2.68903625e-01,
-2.41934051e-01, -2.41934051e-01, -2.41934051e-01, -2.41934051e-01,
-2.27678422e-01, -2.27678422e-01, -2.27678422e-01, -2.27678422e-01,
-2.13501022e-01, -2.13501022e-01, -2.13501022e-01, -2.13501022e-01,
-1.62982931e-01, -1.62982931e-01, -1.62982931e-01, -1.62982931e-01,
1.15379653e-02, 1.15379653e-02, 1.15379653e-02, 1.15379653e-02,
2.50688575e-01, 2.50688575e-01, 2.50688575e-01, 2.50688575e-01,
3.71810186e-01, 3.71810186e-01, 3.71810186e-01, 3.71810186e-01,
4.26658879e-01, 4.26658879e-01, 4.26658879e-01, 4.26658879e-01,
2.36045219e-01, 2.36045219e-01, 2.36045219e-01, 2.36045219e-01,
-3.58270901e+00, -3.58270901e+00, -3.58270901e+00, -3.58270901e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999993e+02, 9.99999993e+02, 9.99999993e+02, 9.99999993e+02,
9.99999967e+02, 9.99999967e+02, 9.99999967e+02, 9.99999967e+02,
9.99999858e+02, 9.99999858e+02, 9.99999858e+02, 9.99999858e+02,
9.99999422e+02, 9.99999422e+02, 9.99999422e+02, 9.99999422e+02,
9.99997788e+02, 9.99997788e+02, 9.99997788e+02, 9.99997788e+02,
9.99992045e+02, 9.99992045e+02, 9.99992045e+02, 9.99992045e+02,
9.99973169e+02, 9.99973169e+02, 9.99973169e+02, 9.99973169e+02,
9.99915278e+02, 9.99915278e+02, 9.99915278e+02, 9.99915278e+02,
9.99750084e+02, 9.99750084e+02, 9.99750084e+02, 9.99750084e+02,
9.99313048e+02, 9.99313048e+02, 9.99313048e+02, 9.99313048e+02,
9.98245539e+02, 9.98245539e+02, 9.98245539e+02, 9.98245539e+02,
9.95849414e+02, 9.95849414e+02, 9.95849414e+02, 9.95849414e+02,
9.90931538e+02, 9.90931538e+02, 9.90931538e+02, 9.90931538e+02,
9.81744079e+02, 9.81744079e+02, 9.81744079e+02, 9.81744079e+02,
9.66170722e+02, 9.66170722e+02, 9.66170722e+02, 9.66170722e+02,
9.42233527e+02, 9.42233527e+02, 9.42233527e+02, 9.42233527e+02,
9.08767261e+02, 9.08767261e+02, 9.08767261e+02, 9.08767261e+02,
8.65885982e+02, 8.65885982e+02, 8.65885982e+02, 8.65885982e+02,
8.14898864e+02, 8.14898864e+02, 8.14898864e+02, 8.14898864e+02,
7.57590795e+02, 7.57590795e+02, 7.57590795e+02, 7.57590795e+02,
6.97731013e+02, 6.97731013e+02, 6.97731013e+02, 6.97731013e+02,
6.43163759e+02, 6.43163759e+02, 6.43163759e+02, 6.43163759e+02,
5.95496479e+02, 5.95496479e+02, 5.95496479e+02, 5.95496479e+02,
5.54812201e+02, 5.54812201e+02, 5.54812201e+02, 5.54812201e+02,
5.21793149e+02, 5.21793149e+02, 5.21793149e+02, 5.21793149e+02,
4.96779727e+02, 4.96779727e+02, 4.96779727e+02, 4.96779727e+02,
4.80392572e+02, 4.80392572e+02, 4.80392572e+02, 4.80392572e+02,
4.70330245e+02, 4.70330245e+02, 4.70330245e+02, 4.70330245e+02,
4.66971151e+02, 4.66971151e+02, 4.66971151e+02, 4.66971151e+02,
4.65060012e+02, 4.65060012e+02, 4.65060012e+02, 4.65060012e+02,
4.65030737e+02, 4.65030737e+02, 4.65030737e+02, 4.65030737e+02,
4.65164746e+02, 4.65164746e+02, 4.65164746e+02, 4.65164746e+02,
4.64255999e+02, 4.64255999e+02, 4.64255999e+02, 4.64255999e+02,
4.60656577e+02, 4.60656577e+02, 4.60656577e+02, 4.60656577e+02,
4.55837406e+02, 4.55837406e+02, 4.55837406e+02, 4.55837406e+02,
4.53402412e+02, 4.53402412e+02, 4.53402412e+02, 4.53402412e+02,
4.53640419e+02, 4.53640419e+02, 4.53640419e+02, 4.53640419e+02,
4.52229350e+02, 4.52229350e+02, 4.52229350e+02, 4.52229350e+02,
3.01077885e+02, 3.01077885e+02, 3.01077885e+02, 3.01077885e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999984,
0.99999984, 0.99999984, 0.99999984, 0.99999937, 0.99999937,
0.99999937, 0.99999937, 0.99999768, 0.99999768, 0.99999768,
0.99999768, 0.99999201, 0.99999201, 0.99999201, 0.99999201,
0.99997414, 0.99997414, 0.99997414, 0.99997414, 0.99992146,
0.99992146, 0.99992146, 0.99992146, 0.99977672, 0.99977672,
0.99977672, 0.99977672, 0.99940724, 0.99940724, 0.99940724,
0.99940724, 0.99853457, 0.99853457, 0.99853457, 0.99853457,
0.99663589, 0.99663589, 0.99663589, 0.99663589, 0.9928473 ,
0.9928473 , 0.9928473 , 0.9928473 , 0.98594052, 0.98594052,
0.98594052, 0.98594052, 0.97446242, 0.97446242, 0.97446242,
0.97446242, 0.95706792, 0.95706792, 0.95706792, 0.95706792,
0.93293693, 0.93293693, 0.93293693, 0.93293693, 0.90204737,
0.90204737, 0.90204737, 0.90204737, 0.86511108, 0.86511108,
0.86511108, 0.86511108, 0.82318738, 0.82318738, 0.82318738,
0.82318738, 0.77830857, 0.77830857, 0.77830857, 0.77830857,
0.73588408, 0.73588408, 0.73588408, 0.73588408, 0.6975687 ,
0.6975687 , 0.6975687 , 0.6975687 , 0.66365245, 0.66365245,
0.66365245, 0.66365245, 0.63486674, 0.63486674, 0.63486674,
0.63486674, 0.61208758, 0.61208758, 0.61208758, 0.61208758,
0.59551372, 0.59551372, 0.59551372, 0.59551372, 0.58561868,
0.58561868, 0.58561868, 0.58561868, 0.57985691, 0.57985691,
0.57985691, 0.57985691, 0.57840454, 0.57840454, 0.57840454,
0.57840454, 0.57741333, 0.57741333, 0.57741333, 0.57741333,
0.5767517 , 0.5767517 , 0.5767517 , 0.5767517 , 0.57543994,
0.57543994, 0.57543994, 0.57543994, 0.57152955, 0.57152955,
0.57152955, 0.57152955, 0.56468211, 0.56468211, 0.56468211,
0.56468211, 0.56091344, 0.56091344, 0.56091344, 0.56091344,
0.57188894, 0.57188894, 0.57188894, 0.57188894, 0.74278857,
0.74278857, 0.74278857, 0.74278857, 4.88603985, 4.88603985,
4.88603985, 4.88603985, 4.4829508 , 4.4829508 , 4.4829508 ,
4.4829508 , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744993, -19.59744993, -19.59744993, -19.59744993,
-19.59744966, -19.59744966, -19.59744966, -19.59744966,
-19.59744852, -19.59744852, -19.59744852, -19.59744852,
-19.59744389, -19.59744389, -19.59744389, -19.59744389,
-19.59742629, -19.59742629, -19.59742629, -19.59742629,
-19.59736324, -19.59736324, -19.59736324, -19.59736324,
-19.59715114, -19.59715114, -19.59715114, -19.59715114,
-19.59648246, -19.59648246, -19.59648246, -19.59648246,
-19.59451143, -19.59451143, -19.59451143, -19.59451143,
-19.5890952 , -19.5890952 , -19.5890952 , -19.5890952 ,
-19.5752676 , -19.5752676 , -19.5752676 , -19.5752676 ,
-19.54259686, -19.54259686, -19.54259686, -19.54259686,
-19.47145154, -19.47145154, -19.47145154, -19.47145154,
-19.32921166, -19.32921166, -19.32921166, -19.32921166,
-19.06888403, -19.06888403, -19.06888403, -19.06888403,
-18.63316989, -18.63316989, -18.63316989, -18.63316989,
-17.9650968 , -17.9650968 , -17.9650968 , -17.9650968 ,
-17.0218994 , -17.0218994 , -17.0218994 , -17.0218994 ,
-15.78504755, -15.78504755, -15.78504755, -15.78504755,
-14.25968055, -14.25968055, -14.25968055, -14.25968055,
-12.4597091 , -12.4597091 , -12.4597091 , -12.4597091 ,
-10.45568507, -10.45568507, -10.45568507, -10.45568507,
-8.48812092, -8.48812092, -8.48812092, -8.48812092,
-6.62035699, -6.62035699, -6.62035699, -6.62035699,
-4.89903379, -4.89903379, -4.89903379, -4.89903379,
-3.38404759, -3.38404759, -3.38404759, -3.38404759,
-2.13969306, -2.13969306, -2.13969306, -2.13969306,
-1.23614386, -1.23614386, -1.23614386, -1.23614386,
-0.64167605, -0.64167605, -0.64167605, -0.64167605,
-0.37914747, -0.37914747, -0.37914747, -0.37914747,
-0.23502088, -0.23502088, -0.23502088, -0.23502088,
-0.22631738, -0.22631738, -0.22631738, -0.22631738,
-0.22300658, -0.22300658, -0.22300658, -0.22300658,
-0.18972395, -0.18972395, -0.18972395, -0.18972395,
-0.06053401, -0.06053401, -0.06053401, -0.06053401,
0.18328595, 0.18328595, 0.18328595, 0.18328595,
0.33774148, 0.33774148, 0.33774148, 0.33774148,
0.37790834, 0.37790834, 0.37790834, 0.37790834,
0.36595791, 0.36595791, 0.36595791, 0.36595791,
0.20139712, 0.20139712, 0.20139712, 0.20139712,
-2.94185063, -2.94185063, -2.94185063, -2.94185063,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999987e+02, 9.99999987e+02, 9.99999987e+02, 9.99999987e+02,
9.99999944e+02, 9.99999944e+02, 9.99999944e+02, 9.99999944e+02,
9.99999771e+02, 9.99999771e+02, 9.99999771e+02, 9.99999771e+02,
9.99999113e+02, 9.99999113e+02, 9.99999113e+02, 9.99999113e+02,
9.99996754e+02, 9.99996754e+02, 9.99996754e+02, 9.99996754e+02,
9.99988818e+02, 9.99988818e+02, 9.99988818e+02, 9.99988818e+02,
9.99963798e+02, 9.99963798e+02, 9.99963798e+02, 9.99963798e+02,
9.99890054e+02, 9.99890054e+02, 9.99890054e+02, 9.99890054e+02,
9.99687434e+02, 9.99687434e+02, 9.99687434e+02, 9.99687434e+02,
9.99170306e+02, 9.99170306e+02, 9.99170306e+02, 9.99170306e+02,
9.97949393e+02, 9.97949393e+02, 9.97949393e+02, 9.97949393e+02,
9.95295134e+02, 9.95295134e+02, 9.95295134e+02, 9.95295134e+02,
9.90006831e+02, 9.90006831e+02, 9.90006831e+02, 9.90006831e+02,
9.80391310e+02, 9.80391310e+02, 9.80391310e+02, 9.80391310e+02,
9.64479348e+02, 9.64479348e+02, 9.64479348e+02, 9.64479348e+02,
9.40518463e+02, 9.40518463e+02, 9.40518463e+02, 9.40518463e+02,
9.07572798e+02, 9.07572798e+02, 9.07572798e+02, 9.07572798e+02,
8.65892510e+02, 8.65892510e+02, 8.65892510e+02, 8.65892510e+02,
8.16782085e+02, 8.16782085e+02, 8.16782085e+02, 8.16782085e+02,
7.61943905e+02, 7.61943905e+02, 7.61943905e+02, 7.61943905e+02,
7.04440896e+02, 7.04440896e+02, 7.04440896e+02, 7.04440896e+02,
6.51364154e+02, 6.51364154e+02, 6.51364154e+02, 6.51364154e+02,
6.04502355e+02, 6.04502355e+02, 6.04502355e+02, 6.04502355e+02,
5.63886999e+02, 5.63886999e+02, 5.63886999e+02, 5.63886999e+02,
5.30076096e+02, 5.30076096e+02, 5.30076096e+02, 5.30076096e+02,
5.03790017e+02, 5.03790017e+02, 5.03790017e+02, 5.03790017e+02,
4.84951336e+02, 4.84951336e+02, 4.84951336e+02, 4.84951336e+02,
4.73864273e+02, 4.73864273e+02, 4.73864273e+02, 4.73864273e+02,
4.67506026e+02, 4.67506026e+02, 4.67506026e+02, 4.67506026e+02,
4.66041067e+02, 4.66041067e+02, 4.66041067e+02, 4.66041067e+02,
4.65166922e+02, 4.65166922e+02, 4.65166922e+02, 4.65166922e+02,
4.64900848e+02, 4.64900848e+02, 4.64900848e+02, 4.64900848e+02,
4.64424099e+02, 4.64424099e+02, 4.64424099e+02, 4.64424099e+02,
4.62213743e+02, 4.62213743e+02, 4.62213743e+02, 4.62213743e+02,
4.57590437e+02, 4.57590437e+02, 4.57590437e+02, 4.57590437e+02,
4.54377588e+02, 4.54377588e+02, 4.54377588e+02, 4.54377588e+02,
4.53225414e+02, 4.53225414e+02, 4.53225414e+02, 4.53225414e+02,
4.54269492e+02, 4.54269492e+02, 4.54269492e+02, 4.54269492e+02,
4.56975917e+02, 4.56975917e+02, 4.56975917e+02, 4.56975917e+02,
3.32154512e+02, 3.32154512e+02, 3.32154512e+02, 3.32154512e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
0.99999975, 0.99999975, 0.99999975, 0.99999975, 0.99999906,
0.99999906, 0.99999906, 0.99999906, 0.99999669, 0.99999669,
0.99999669, 0.99999669, 0.99998905, 0.99998905, 0.99998905,
0.99998905, 0.99996586, 0.99996586, 0.99996586, 0.99996586,
0.99989999, 0.99989999, 0.99989999, 0.99989999, 0.99972521,
0.99972521, 0.99972521, 0.99972521, 0.99929369, 0.99929369,
0.99929369, 0.99929369, 0.99830617, 0.99830617, 0.99830617,
0.99830617, 0.99622037, 0.99622037, 0.99622037, 0.99622037,
0.99217142, 0.99217142, 0.99217142, 0.99217142, 0.9849728 ,
0.9849728 , 0.9849728 , 0.9849728 , 0.97327279, 0.97327279,
0.97327279, 0.97327279, 0.95587603, 0.95587603, 0.95587603,
0.95587603, 0.93211405, 0.93211405, 0.93211405, 0.93211405,
0.90206095, 0.90206095, 0.90206095, 0.90206095, 0.86644292,
0.86644292, 0.86644292, 0.86644292, 0.82627812, 0.82627812,
0.82627812, 0.82627812, 0.78324576, 0.78324576, 0.78324576,
0.78324576, 0.74209651, 0.74209651, 0.74209651, 0.74209651,
0.70467067, 0.70467067, 0.70467067, 0.70467067, 0.6710924 ,
0.6710924 , 0.6710924 , 0.6710924 , 0.64204803, 0.64204803,
0.64204803, 0.64204803, 0.61827118, 0.61827118, 0.61827118,
0.61827118, 0.60052582, 0.60052582, 0.60052582, 0.60052582,
0.58845153, 0.58845153, 0.58845153, 0.58845153, 0.58214806,
0.58214806, 0.58214806, 0.58214806, 0.57865038, 0.57865038,
0.57865038, 0.57865038, 0.57797488, 0.57797488, 0.57797488,
0.57797488, 0.57738553, 0.57738553, 0.57738553, 0.57738553,
0.57646935, 0.57646935, 0.57646935, 0.57646935, 0.57417533,
0.57417533, 0.57417533, 0.57417533, 0.56878133, 0.56878133,
0.56878133, 0.56878133, 0.56286248, 0.56286248, 0.56286248,
0.56286248, 0.56053437, 0.56053437, 0.56053437, 0.56053437,
0.57217087, 0.57217087, 0.57217087, 0.57217087, 0.74285488,
0.74285488, 0.74285488, 0.74285488, 4.89602032, 4.89602032,
4.89602032, 4.89602032, 4.85298549, 4.85298549, 4.85298549,
4.85298549, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744997, -19.59744997, -19.59744997, -19.59744997,
-19.59744987, -19.59744987, -19.59744987, -19.59744987,
-19.59744942, -19.59744942, -19.59744942, -19.59744942,
-19.59744759, -19.59744759, -19.59744759, -19.59744759,
-19.59744051, -19.59744051, -19.59744051, -19.59744051,
-19.59741474, -19.59741474, -19.59741474, -19.59741474,
-19.59732623, -19.59732623, -19.59732623, -19.59732623,
-19.59704025, -19.59704025, -19.59704025, -19.59704025,
-19.59617271, -19.59617271, -19.59617271, -19.59617271,
-19.59370781, -19.59370781, -19.59370781, -19.59370781,
-19.5871677 , -19.5871677 , -19.5871677 , -19.5871677 ,
-19.57101768, -19.57101768, -19.57101768, -19.57101768,
-19.53404259, -19.53404259, -19.53404259, -19.53404259,
-19.45586713, -19.45586713, -19.45586713, -19.45586713,
-19.30378665, -19.30378665, -19.30378665, -19.30378665,
-19.03227296, -19.03227296, -19.03227296, -19.03227296,
-18.58771423, -18.58771423, -18.58771423, -18.58771423,
-17.91881719, -17.91881719, -17.91881719, -17.91881719,
-16.98911722, -16.98911722, -16.98911722, -16.98911722,
-15.78517919, -15.78517919, -15.78517919, -15.78517919,
-14.31505356, -14.31505356, -14.31505356, -14.31505356,
-12.59466668, -12.59466668, -12.59466668, -12.59466668,
-10.67884325, -10.67884325, -10.67884325, -10.67884325,
-8.78284546, -8.78284546, -8.78284546, -8.78284546,
-6.96953529, -6.96953529, -6.96953529, -6.96953529,
-5.27984005, -5.27984005, -5.27984005, -5.27984005,
-3.76278511, -3.76278511, -3.76278511, -3.76278511,
-2.48379605, -2.48379605, -2.48379605, -2.48379605,
-1.49232242, -1.49232242, -1.49232242, -1.49232242,
-0.83744489, -0.83744489, -0.83744489, -0.83744489,
-0.44040496, -0.44040496, -0.44040496, -0.44040496,
-0.30291626, -0.30291626, -0.30291626, -0.30291626,
-0.22614522, -0.22614522, -0.22614522, -0.22614522,
-0.21208699, -0.21208699, -0.21208699, -0.21208699,
-0.19822265, -0.19822265, -0.19822265, -0.19822265,
-0.12194001, -0.12194001, -0.12194001, -0.12194001,
0.08999319, 0.08999319, 0.08999319, 0.08999319,
0.29386176, 0.29386176, 0.29386176, 0.29386176,
0.37116051, 0.37116051, 0.37116051, 0.37116051,
0.36272859, 0.36272859, 0.36272859, 0.36272859,
0.28212421, 0.28212421, 0.28212421, 0.28212421,
0.15734376, 0.15734376, 0.15734376, 0.15734376,
-2.38397278, -2.38397278, -2.38397278, -2.38397278,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999995e+02, 9.99999995e+02, 9.99999995e+02, 9.99999995e+02,
9.99999978e+02, 9.99999978e+02, 9.99999978e+02, 9.99999978e+02,
9.99999910e+02, 9.99999910e+02, 9.99999910e+02, 9.99999910e+02,
9.99999645e+02, 9.99999645e+02, 9.99999645e+02, 9.99999645e+02,
9.99998681e+02, 9.99998681e+02, 9.99998681e+02, 9.99998681e+02,
9.99995369e+02, 9.99995369e+02, 9.99995369e+02, 9.99995369e+02,
9.99984669e+02, 9.99984669e+02, 9.99984669e+02, 9.99984669e+02,
9.99952209e+02, 9.99952209e+02, 9.99952209e+02, 9.99952209e+02,
9.99859989e+02, 9.99859989e+02, 9.99859989e+02, 9.99859989e+02,
9.99615335e+02, 9.99615335e+02, 9.99615335e+02, 9.99615335e+02,
9.99011413e+02, 9.99011413e+02, 9.99011413e+02, 9.99011413e+02,
9.97629932e+02, 9.97629932e+02, 9.97629932e+02, 9.97629932e+02,
9.94714537e+02, 9.94714537e+02, 9.94714537e+02, 9.94714537e+02,
9.89064142e+02, 9.89064142e+02, 9.89064142e+02, 9.89064142e+02,
9.79045586e+02, 9.79045586e+02, 9.79045586e+02, 9.79045586e+02,
9.62832342e+02, 9.62832342e+02, 9.62832342e+02, 9.62832342e+02,
9.38877680e+02, 9.38877680e+02, 9.38877680e+02, 9.38877680e+02,
9.06444711e+02, 9.06444711e+02, 9.06444711e+02, 9.06444711e+02,
8.65893051e+02, 8.65893051e+02, 8.65893051e+02, 8.65893051e+02,
8.18513038e+02, 8.18513038e+02, 8.18513038e+02, 8.18513038e+02,
7.65925567e+02, 7.65925567e+02, 7.65925567e+02, 7.65925567e+02,
7.10661539e+02, 7.10661539e+02, 7.10661539e+02, 7.10661539e+02,
6.59031108e+02, 6.59031108e+02, 6.59031108e+02, 6.59031108e+02,
6.13064332e+02, 6.13064332e+02, 6.13064332e+02, 6.13064332e+02,
5.72674499e+02, 5.72674499e+02, 5.72674499e+02, 5.72674499e+02,
5.38398891e+02, 5.38398891e+02, 5.38398891e+02, 5.38398891e+02,
5.10813983e+02, 5.10813983e+02, 5.10813983e+02, 5.10813983e+02,
4.90540957e+02, 4.90540957e+02, 4.90540957e+02, 4.90540957e+02,
4.76930301e+02, 4.76930301e+02, 4.76930301e+02, 4.76930301e+02,
4.69941361e+02, 4.69941361e+02, 4.69941361e+02, 4.69941361e+02,
4.66145998e+02, 4.66145998e+02, 4.66145998e+02, 4.66145998e+02,
4.65557284e+02, 4.65557284e+02, 4.65557284e+02, 4.65557284e+02,
4.65137442e+02, 4.65137442e+02, 4.65137442e+02, 4.65137442e+02,
4.64585189e+02, 4.64585189e+02, 4.64585189e+02, 4.64585189e+02,
4.63000203e+02, 4.63000203e+02, 4.63000203e+02, 4.63000203e+02,
4.59105657e+02, 4.59105657e+02, 4.59105657e+02, 4.59105657e+02,
4.55518041e+02, 4.55518041e+02, 4.55518041e+02, 4.55518041e+02,
4.53947203e+02, 4.53947203e+02, 4.53947203e+02, 4.53947203e+02,
4.53673503e+02, 4.53673503e+02, 4.53673503e+02, 4.53673503e+02,
4.55580551e+02, 4.55580551e+02, 4.55580551e+02, 4.55580551e+02,
4.60645373e+02, 4.60645373e+02, 4.60645373e+02, 4.60645373e+02,
3.62537064e+02, 3.62537064e+02, 3.62537064e+02, 3.62537064e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999997, 0.99999997,
0.99999997, 0.99999997, 0.9999999 , 0.9999999 , 0.9999999 ,
0.9999999 , 0.99999962, 0.99999962, 0.99999962, 0.99999962,
0.99999864, 0.99999864, 0.99999864, 0.99999864, 0.9999954 ,
0.9999954 , 0.9999954 , 0.9999954 , 0.99998531, 0.99998531,
0.99998531, 0.99998531, 0.99995579, 0.99995579, 0.99995579,
0.99995579, 0.99987474, 0.99987474, 0.99987474, 0.99987474,
0.9996666 , 0.9996666 , 0.9996666 , 0.9996666 , 0.99916844,
0.99916844, 0.99916844, 0.99916844, 0.99806145, 0.99806145,
0.99806145, 0.99806145, 0.99578716, 0.99578716, 0.99578716,
0.99578716, 0.99148428, 0.99148428, 0.99148428, 0.99148428,
0.98401101, 0.98401101, 0.98401101, 0.98401101, 0.9721136 ,
0.9721136 , 0.9721136 , 0.9721136 , 0.95473344, 0.95473344,
0.95473344, 0.95473344, 0.93133428, 0.93133428, 0.93133428,
0.93133428, 0.90206896, 0.90206896, 0.90206896, 0.90206896,
0.86766988, 0.86766988, 0.86766988, 0.86766988, 0.82910964,
0.82910964, 0.82910964, 0.82910964, 0.78781314, 0.78781314,
0.78781314, 0.78781314, 0.74790844, 0.74790844, 0.74790844,
0.74790844, 0.71135798, 0.71135798, 0.71135798, 0.71135798,
0.67823814, 0.67823814, 0.67823814, 0.67823814, 0.64908766,
0.64908766, 0.64908766, 0.64908766, 0.62466081, 0.62466081,
0.62466081, 0.62466081, 0.6055593 , 0.6055593 , 0.6055593 ,
0.6055593 , 0.59230699, 0.59230699, 0.59230699, 0.59230699,
0.58392543, 0.58392543, 0.58392543, 0.58392543, 0.58019951,
0.58019951, 0.58019951, 0.58019951, 0.57813804, 0.57813804,
0.57813804, 0.57813804, 0.5776455 , 0.5776455 , 0.5776455 ,
0.5776455 , 0.57710118, 0.57710118, 0.57710118, 0.57710118,
0.57572559, 0.57572559, 0.57572559, 0.57572559, 0.57206785,
0.57206785, 0.57206785, 0.57206785, 0.56644016, 0.56644016,
0.56644016, 0.56644016, 0.56196219, 0.56196219, 0.56196219,
0.56196219, 0.5606061 , 0.5606061 , 0.5606061 , 0.5606061 ,
0.57295 , 0.57295 , 0.57295 , 0.57295 , 0.74382089,
0.74382089, 0.74382089, 0.74382089, 4.90781149, 4.90781149,
4.90781149, 4.90781149, 5.21965552, 5.21965552, 5.21965552,
5.21965552, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974490e+01, -1.95974490e+01, -1.95974490e+01, -1.95974490e+01,
-1.95974462e+01, -1.95974462e+01, -1.95974462e+01, -1.95974462e+01,
-1.95974357e+01, -1.95974357e+01, -1.95974357e+01, -1.95974357e+01,
-1.95973990e+01, -1.95973990e+01, -1.95973990e+01, -1.95973990e+01,
-1.95972778e+01, -1.95972778e+01, -1.95972778e+01, -1.95972778e+01,
-1.95969004e+01, -1.95969004e+01, -1.95969004e+01, -1.95969004e+01,
-1.95957959e+01, -1.95957959e+01, -1.95957959e+01, -1.95957959e+01,
-1.95927631e+01, -1.95927631e+01, -1.95927631e+01, -1.95927631e+01,
-1.95849744e+01, -1.95849744e+01, -1.95849744e+01, -1.95849744e+01,
-1.95663288e+01, -1.95663288e+01, -1.95663288e+01, -1.95663288e+01,
-1.95248756e+01, -1.95248756e+01, -1.95248756e+01, -1.95248756e+01,
-1.94396138e+01, -1.94396138e+01, -1.94396138e+01, -1.94396138e+01,
-1.92779235e+01, -1.92779235e+01, -1.92779235e+01, -1.92779235e+01,
-1.89958563e+01, -1.89958563e+01, -1.89958563e+01, -1.89958563e+01,
-1.85433753e+01, -1.85433753e+01, -1.85433753e+01, -1.85433753e+01,
-1.78744061e+01, -1.78744061e+01, -1.78744061e+01, -1.78744061e+01,
-1.69580372e+01, -1.69580372e+01, -1.69580372e+01, -1.69580372e+01,
-1.57851310e+01, -1.57851310e+01, -1.57851310e+01, -1.57851310e+01,
-1.43660369e+01, -1.43660369e+01, -1.43660369e+01, -1.43660369e+01,
-1.27180677e+01, -1.27180677e+01, -1.27180677e+01, -1.27180677e+01,
-1.08842763e+01, -1.08842763e+01, -1.08842763e+01, -1.08842763e+01,
-9.05630951e+00, -9.05630951e+00, -9.05630951e+00, -9.05630951e+00,
-7.29760506e+00, -7.29760506e+00, -7.29760506e+00, -7.29760506e+00,
-5.64239272e+00, -5.64239272e+00, -5.64239272e+00, -5.64239272e+00,
-4.13310877e+00, -4.13310877e+00, -4.13310877e+00, -4.13310877e+00,
-2.82532524e+00, -2.82532524e+00, -2.82532524e+00, -2.82532524e+00,
-1.78143548e+00, -1.78143548e+00, -1.78143548e+00, -1.78143548e+00,
-1.02528008e+00, -1.02528008e+00, -1.02528008e+00, -1.02528008e+00,
-5.79884468e-01, -5.79884468e-01, -5.79884468e-01, -5.79884468e-01,
-3.29472357e-01, -3.29472357e-01, -3.29472357e-01, -3.29472357e-01,
-2.63387045e-01, -2.63387045e-01, -2.63387045e-01, -2.63387045e-01,
-2.20777631e-01, -2.20777631e-01, -2.20777631e-01, -2.20777631e-01,
-1.94945989e-01, -1.94945989e-01, -1.94945989e-01, -1.94945989e-01,
-1.44701458e-01, -1.44701458e-01, -1.44701458e-01, -1.44701458e-01,
6.34160686e-03, 6.34160686e-03, 6.34160686e-03, 6.34160686e-03,
2.19027902e-01, 2.19027902e-01, 2.19027902e-01, 2.19027902e-01,
3.42281353e-01, 3.42281353e-01, 3.42281353e-01, 3.42281353e-01,
3.69210178e-01, 3.69210178e-01, 3.69210178e-01, 3.69210178e-01,
3.25110505e-01, 3.25110505e-01, 3.25110505e-01, 3.25110505e-01,
1.89137060e-01, 1.89137060e-01, 1.89137060e-01, 1.89137060e-01,
1.05454908e-01, 1.05454908e-01, 1.05454908e-01, 1.05454908e-01,
-1.89313025e+00, -1.89313025e+00, -1.89313025e+00, -1.89313025e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999964e+02, 9.99999964e+02, 9.99999964e+02, 9.99999964e+02,
9.99999858e+02, 9.99999858e+02, 9.99999858e+02, 9.99999858e+02,
9.99999466e+02, 9.99999466e+02, 9.99999466e+02, 9.99999466e+02,
9.99998093e+02, 9.99998093e+02, 9.99998093e+02, 9.99998093e+02,
9.99993556e+02, 9.99993556e+02, 9.99993556e+02, 9.99993556e+02,
9.99979438e+02, 9.99979438e+02, 9.99979438e+02, 9.99979438e+02,
9.99938111e+02, 9.99938111e+02, 9.99938111e+02, 9.99938111e+02,
9.99824646e+02, 9.99824646e+02, 9.99824646e+02, 9.99824646e+02,
9.99533300e+02, 9.99533300e+02, 9.99533300e+02, 9.99533300e+02,
9.98836134e+02, 9.98836134e+02, 9.98836134e+02, 9.98836134e+02,
9.97287686e+02, 9.97287686e+02, 9.97287686e+02, 9.97287686e+02,
9.94109332e+02, 9.94109332e+02, 9.94109332e+02, 9.94109332e+02,
9.88106008e+02, 9.88106008e+02, 9.88106008e+02, 9.88106008e+02,
9.77708597e+02, 9.77708597e+02, 9.77708597e+02, 9.77708597e+02,
9.61228130e+02, 9.61228130e+02, 9.61228130e+02, 9.61228130e+02,
9.37305407e+02, 9.37305407e+02, 9.37305407e+02, 9.37305407e+02,
9.05376194e+02, 9.05376194e+02, 9.05376194e+02, 9.05376194e+02,
8.65887823e+02, 8.65887823e+02, 8.65887823e+02, 8.65887823e+02,
8.20109819e+02, 8.20109819e+02, 8.20109819e+02, 8.20109819e+02,
7.69583036e+02, 7.69583036e+02, 7.69583036e+02, 7.69583036e+02,
7.16430551e+02, 7.16430551e+02, 7.16430551e+02, 7.16430551e+02,
6.66223949e+02, 6.66223949e+02, 6.66223949e+02, 6.66223949e+02,
6.21173301e+02, 6.21173301e+02, 6.21173301e+02, 6.21173301e+02,
5.81155829e+02, 5.81155829e+02, 5.81155829e+02, 5.81155829e+02,
5.46599575e+02, 5.46599575e+02, 5.46599575e+02, 5.46599575e+02,
5.18131035e+02, 5.18131035e+02, 5.18131035e+02, 5.18131035e+02,
4.96195244e+02, 4.96195244e+02, 4.96195244e+02, 4.96195244e+02,
4.81181444e+02, 4.81181444e+02, 4.81181444e+02, 4.81181444e+02,
4.71808248e+02, 4.71808248e+02, 4.71808248e+02, 4.71808248e+02,
4.67742557e+02, 4.67742557e+02, 4.67742557e+02, 4.67742557e+02,
4.65569109e+02, 4.65569109e+02, 4.65569109e+02, 4.65569109e+02,
4.65186953e+02, 4.65186953e+02, 4.65186953e+02, 4.65186953e+02,
4.64818182e+02, 4.64818182e+02, 4.64818182e+02, 4.64818182e+02,
4.63748697e+02, 4.63748697e+02, 4.63748697e+02, 4.63748697e+02,
4.60625400e+02, 4.60625400e+02, 4.60625400e+02, 4.60625400e+02,
4.56453004e+02, 4.56453004e+02, 4.56453004e+02, 4.56453004e+02,
4.54485814e+02, 4.54485814e+02, 4.54485814e+02, 4.54485814e+02,
4.54025030e+02, 4.54025030e+02, 4.54025030e+02, 4.54025030e+02,
4.54666768e+02, 4.54666768e+02, 4.54666768e+02, 4.54666768e+02,
4.57364563e+02, 4.57364563e+02, 4.57364563e+02, 4.57364563e+02,
4.63513392e+02, 4.63513392e+02, 4.63513392e+02, 4.63513392e+02,
3.92058603e+02, 3.92058603e+02, 3.92058603e+02, 3.92058603e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
0.99999996, 0.99999996, 0.99999996, 0.99999985, 0.99999985,
0.99999985, 0.99999985, 0.99999944, 0.99999944, 0.99999944,
0.99999944, 0.99999808, 0.99999808, 0.99999808, 0.99999808,
0.99999374, 0.99999374, 0.99999374, 0.99999374, 0.99998068,
0.99998068, 0.99998068, 0.99998068, 0.99994372, 0.99994372,
0.99994372, 0.99994372, 0.99984542, 0.99984542, 0.99984542,
0.99984542, 0.99960058, 0.99960058, 0.99960058, 0.99960058,
0.99903135, 0.99903135, 0.99903135, 0.99903135, 0.99780084,
0.99780084, 0.99780084, 0.99780084, 0.99533744, 0.99533744,
0.99533744, 0.99533744, 0.99078751, 0.99078751, 0.99078751,
0.99078751, 0.98305618, 0.98305618, 0.98305618, 0.98305618,
0.97098376, 0.97098376, 0.97098376, 0.97098376, 0.9536365 ,
0.9536365 , 0.9536365 , 0.9536365 , 0.93059345, 0.93059345,
0.93059345, 0.93059345, 0.90207179, 0.90207179, 0.90207179,
0.90207179, 0.86880396, 0.86880396, 0.86880396, 0.86880396,
0.83171985, 0.83171985, 0.83171985, 0.83171985, 0.79203515,
0.79203515, 0.79203515, 0.79203515, 0.7533453 , 0.7533453 ,
0.7533453 , 0.7533453 , 0.71768018, 0.71768018, 0.71768018,
0.71768018, 0.6850616 , 0.6850616 , 0.6850616 , 0.6850616 ,
0.65597209, 0.65597209, 0.65597209, 0.65597209, 0.63103729,
0.63103729, 0.63103729, 0.63103729, 0.61099977, 0.61099977,
0.61099977, 0.61099977, 0.59617655, 0.59617655, 0.59617655,
0.59617655, 0.58676144, 0.58676144, 0.58676144, 0.58676144,
0.58122289, 0.58122289, 0.58122289, 0.58122289, 0.57914956,
0.57914956, 0.57914956, 0.57914956, 0.57788872, 0.57788872,
0.57788872, 0.57788872, 0.57727667, 0.57727667, 0.57727667,
0.57727667, 0.57646173, 0.57646173, 0.57646173, 0.57646173,
0.57419256, 0.57419256, 0.57419256, 0.57419256, 0.56967625,
0.56967625, 0.56967625, 0.56967625, 0.56515937, 0.56515937,
0.56515937, 0.56515937, 0.56171673, 0.56171673, 0.56171673,
0.56171673, 0.56096013, 0.56096013, 0.56096013, 0.56096013,
0.57428334, 0.57428334, 0.57428334, 0.57428334, 0.7451832 ,
0.7451832 , 0.7451832 , 0.7451832 , 4.92344734, 4.92344734,
4.92344734, 4.92344734, 5.54443902, 5.54443902, 5.54443902,
5.54443902, 1.03668904, 1.03668904, 1.03668904, 1.03668904,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744991, -19.59744991, -19.59744991, -19.59744991,
-19.59744962, -19.59744962, -19.59744962, -19.59744962,
-19.59744849, -19.59744849, -19.59744849, -19.59744849,
-19.59744424, -19.59744424, -19.59744424, -19.59744424,
-19.5974291 , -19.5974291 , -19.5974291 , -19.5974291 ,
-19.59737809, -19.59737809, -19.59737809, -19.59737809,
-19.59721561, -19.59721561, -19.59721561, -19.59721561,
-19.59672713, -19.59672713, -19.59672713, -19.59672713,
-19.59534416, -19.59534416, -19.59534416, -19.59534416,
-19.59166604, -19.59166604, -19.59166604, -19.59166604,
-19.58250357, -19.58250357, -19.58250357, -19.58250357,
-19.56119668, -19.56119668, -19.56119668, -19.56119668,
-19.51511105, -19.51511105, -19.51511105, -19.51511105,
-19.42273472, -19.42273472, -19.42273472, -19.42273472,
-19.251683 , -19.251683 , -19.251683 , -19.251683 ,
-18.95967279, -18.95967279, -18.95967279, -18.95967279,
-18.50011506, -18.50011506, -18.50011506, -18.50011506,
-17.83172671, -17.83172671, -17.83172671, -17.83172671,
-16.92849548, -16.92849548, -16.92849548, -16.92849548,
-15.78491275, -15.78491275, -15.78491275, -15.78491275,
-14.41313248, -14.41313248, -14.41313248, -14.41313248,
-12.83150634, -12.83150634, -12.83150634, -12.83150634,
-11.07369836, -11.07369836, -11.07369836, -11.07369836,
-9.31046166, -9.31046166, -9.31046166, -9.31046166,
-7.60499608, -7.60499608, -7.60499608, -7.60499608,
-5.98738913, -5.98738913, -5.98738913, -5.98738913,
-4.49180344, -4.49180344, -4.49180344, -4.49180344,
-3.16917603, -3.16917603, -3.16917603, -3.16917603,
-2.07337458, -2.07337458, -2.07337458, -2.07337458,
-1.25572681, -1.25572681, -1.25572681, -1.25572681,
-0.7068368 , -0.7068368 , -0.7068368 , -0.7068368 ,
-0.42441014, -0.42441014, -0.42441014, -0.42441014,
-0.27338143, -0.27338143, -0.27338143, -0.27338143,
-0.23810574, -0.23810574, -0.23810574, -0.23810574,
-0.20742784, -0.20742784, -0.20742784, -0.20742784,
-0.16323872, -0.16323872, -0.16323872, -0.16323872,
-0.05173445, -0.05173445, -0.05173445, -0.05173445,
0.15602623, 0.15602623, 0.15602623, 0.15602623,
0.29414628, 0.29414628, 0.29414628, 0.29414628,
0.34985691, 0.34985691, 0.34985691, 0.34985691,
0.34552838, 0.34552838, 0.34552838, 0.34552838,
0.24827772, 0.24827772, 0.24827772, 0.24827772,
0.09253274, 0.09253274, 0.09253274, 0.09253274,
0.04840488, 0.04840488, 0.04840488, 0.04840488,
-1.4699531 , -1.4699531 , -1.4699531 , -1.4699531 ,
-18.88215158, -18.88215158, -18.88215158, -18.88215158,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999986e+02, 9.99999986e+02, 9.99999986e+02, 9.99999986e+02,
9.99999944e+02, 9.99999944e+02, 9.99999944e+02, 9.99999944e+02,
9.99999784e+02, 9.99999784e+02, 9.99999784e+02, 9.99999784e+02,
9.99999218e+02, 9.99999218e+02, 9.99999218e+02, 9.99999218e+02,
9.99997309e+02, 9.99997309e+02, 9.99997309e+02, 9.99997309e+02,
9.99991230e+02, 9.99991230e+02, 9.99991230e+02, 9.99991230e+02,
9.99972953e+02, 9.99972953e+02, 9.99972953e+02, 9.99972953e+02,
9.99921209e+02, 9.99921209e+02, 9.99921209e+02, 9.99921209e+02,
9.99783604e+02, 9.99783604e+02, 9.99783604e+02, 9.99783604e+02,
9.99440890e+02, 9.99440890e+02, 9.99440890e+02, 9.99440890e+02,
9.98644316e+02, 9.98644316e+02, 9.98644316e+02, 9.98644316e+02,
9.96923244e+02, 9.96923244e+02, 9.96923244e+02, 9.96923244e+02,
9.93481167e+02, 9.93481167e+02, 9.93481167e+02, 9.93481167e+02,
9.87134721e+02, 9.87134721e+02, 9.87134721e+02, 9.87134721e+02,
9.76381734e+02, 9.76381734e+02, 9.76381734e+02, 9.76381734e+02,
9.59665158e+02, 9.59665158e+02, 9.59665158e+02, 9.59665158e+02,
9.35796522e+02, 9.35796522e+02, 9.35796522e+02, 9.35796522e+02,
9.04361456e+02, 9.04361456e+02, 9.04361456e+02, 9.04361456e+02,
8.65877146e+02, 8.65877146e+02, 8.65877146e+02, 8.65877146e+02,
8.21587440e+02, 8.21587440e+02, 8.21587440e+02, 8.21587440e+02,
7.72959478e+02, 7.72959478e+02, 7.72959478e+02, 7.72959478e+02,
7.21780593e+02, 7.21780593e+02, 7.21780593e+02, 7.21780593e+02,
6.72972279e+02, 6.72972279e+02, 6.72972279e+02, 6.72972279e+02,
6.28869375e+02, 6.28869375e+02, 6.28869375e+02, 6.28869375e+02,
5.89301495e+02, 5.89301495e+02, 5.89301495e+02, 5.89301495e+02,
5.54659058e+02, 5.54659058e+02, 5.54659058e+02, 5.54659058e+02,
5.25470740e+02, 5.25470740e+02, 5.25470740e+02, 5.25470740e+02,
5.02361432e+02, 5.02361432e+02, 5.02361432e+02, 5.02361432e+02,
4.85480560e+02, 4.85480560e+02, 4.85480560e+02, 4.85480560e+02,
4.74893544e+02, 4.74893544e+02, 4.74893544e+02, 4.74893544e+02,
4.68756735e+02, 4.68756735e+02, 4.68756735e+02, 4.68756735e+02,
4.66559010e+02, 4.66559010e+02, 4.66559010e+02, 4.66559010e+02,
4.65288869e+02, 4.65288869e+02, 4.65288869e+02, 4.65288869e+02,
4.64772037e+02, 4.64772037e+02, 4.64772037e+02, 4.64772037e+02,
4.64098592e+02, 4.64098592e+02, 4.64098592e+02, 4.64098592e+02,
4.62022815e+02, 4.62022815e+02, 4.62022815e+02, 4.62022815e+02,
4.57930558e+02, 4.57930558e+02, 4.57930558e+02, 4.57930558e+02,
4.54992894e+02, 4.54992894e+02, 4.54992894e+02, 4.54992894e+02,
4.54194262e+02, 4.54194262e+02, 4.54194262e+02, 4.54194262e+02,
4.54422763e+02, 4.54422763e+02, 4.54422763e+02, 4.54422763e+02,
4.56256877e+02, 4.56256877e+02, 4.56256877e+02, 4.56256877e+02,
4.59141920e+02, 4.59141920e+02, 4.59141920e+02, 4.59141920e+02,
4.65891529e+02, 4.65891529e+02, 4.65891529e+02, 4.65891529e+02,
4.18365297e+02, 4.18365297e+02, 4.18365297e+02, 4.18365297e+02,
5.12475122e+00, 5.12475122e+00, 5.12475122e+00, 5.12475122e+00,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999994, 0.99999994, 0.99999994, 0.99999994, 0.99999977,
0.99999977, 0.99999977, 0.99999977, 0.9999992 , 0.9999992 ,
0.9999992 , 0.9999992 , 0.99999735, 0.99999735, 0.99999735,
0.99999735, 0.99999164, 0.99999164, 0.99999164, 0.99999164,
0.99997502, 0.99997502, 0.99997502, 0.99997502, 0.99992943,
0.99992943, 0.99992943, 0.99992943, 0.99981174, 0.99981174,
0.99981174, 0.99981174, 0.99952686, 0.99952686, 0.99952686,
0.99952686, 0.99888237, 0.99888237, 0.99888237, 0.99888237,
0.99752477, 0.99752477, 0.99752477, 0.99752477, 0.99487232,
0.99487232, 0.99487232, 0.99487232, 0.99008261, 0.99008261,
0.99008261, 0.99008261, 0.98210912, 0.98210912, 0.98210912,
0.98210912, 0.96988221, 0.96988221, 0.96988221, 0.96988221,
0.95258192, 0.95258192, 0.95258192, 0.95258192, 0.92988797,
0.92988797, 0.92988797, 0.92988797, 0.90206987, 0.90206987,
0.90206987, 0.90206987, 0.8698544 , 0.8698544 , 0.8698544 ,
0.8698544 , 0.83413065, 0.83413065, 0.83413065, 0.83413065,
0.79594485, 0.79594485, 0.79594485, 0.79594485, 0.75844031,
0.75844031, 0.75844031, 0.75844031, 0.72364822, 0.72364822,
0.72364822, 0.72364822, 0.69158842, 0.69158842, 0.69158842,
0.69158842, 0.66264934, 0.66264934, 0.66264934, 0.66264934,
0.63741371, 0.63741371, 0.63741371, 0.63741371, 0.61652579,
0.61652579, 0.61652579, 0.61652579, 0.60060459, 0.60060459,
0.60060459, 0.60060459, 0.58955963, 0.58955963, 0.58955963,
0.58955963, 0.58323093, 0.58323093, 0.58323093, 0.58323093,
0.57971575, 0.57971575, 0.57971575, 0.57971575, 0.57853261,
0.57853261, 0.57853261, 0.57853261, 0.5776235 , 0.5776235 ,
0.5776235 , 0.5776235 , 0.57679716, 0.57679716, 0.57679716,
0.57679716, 0.57528483, 0.57528483, 0.57528483, 0.57528483,
0.57185478, 0.57185478, 0.57185478, 0.57185478, 0.56806429,
0.56806429, 0.56806429, 0.56806429, 0.56470465, 0.56470465,
0.56470465, 0.56470465, 0.56183268, 0.56183268, 0.56183268,
0.56183268, 0.56175025, 0.56175025, 0.56175025, 0.56175025,
0.5759848 , 0.5759848 , 0.5759848 , 0.5759848 , 0.74891143,
0.74891143, 0.74891143, 0.74891143, 4.93884917, 4.93884917,
4.93884917, 4.93884917, 5.66590098, 5.66590098, 5.66590098,
5.66590098, 1.27347817, 1.27347817, 1.27347817, 1.27347817,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974494e+01, -1.95974494e+01, -1.95974494e+01, -1.95974494e+01,
-1.95974477e+01, -1.95974477e+01, -1.95974477e+01, -1.95974477e+01,
-1.95974415e+01, -1.95974415e+01, -1.95974415e+01, -1.95974415e+01,
-1.95974201e+01, -1.95974201e+01, -1.95974201e+01, -1.95974201e+01,
-1.95973508e+01, -1.95973508e+01, -1.95973508e+01, -1.95973508e+01,
-1.95971372e+01, -1.95971372e+01, -1.95971372e+01, -1.95971372e+01,
-1.95965155e+01, -1.95965155e+01, -1.95965155e+01, -1.95965155e+01,
-1.95948095e+01, -1.95948095e+01, -1.95948095e+01, -1.95948095e+01,
-1.95904057e+01, -1.95904057e+01, -1.95904057e+01, -1.95904057e+01,
-1.95797446e+01, -1.95797446e+01, -1.95797446e+01, -1.95797446e+01,
-1.95556189e+01, -1.95556189e+01, -1.95556189e+01, -1.95556189e+01,
-1.95047656e+01, -1.95047656e+01, -1.95047656e+01, -1.95047656e+01,
-1.94052717e+01, -1.94052717e+01, -1.94052717e+01, -1.94052717e+01,
-1.92251204e+01, -1.92251204e+01, -1.92251204e+01, -1.92251204e+01,
-1.89237547e+01, -1.89237547e+01, -1.89237547e+01, -1.89237547e+01,
-1.84578960e+01, -1.84578960e+01, -1.84578960e+01, -1.84578960e+01,
-1.77906570e+01, -1.77906570e+01, -1.77906570e+01, -1.77906570e+01,
-1.69003509e+01, -1.69003509e+01, -1.69003509e+01, -1.69003509e+01,
-1.57845359e+01, -1.57845359e+01, -1.57845359e+01, -1.57845359e+01,
-1.44567240e+01, -1.44567240e+01, -1.44567240e+01, -1.44567240e+01,
-1.29357405e+01, -1.29357405e+01, -1.29357405e+01, -1.29357405e+01,
-1.12493994e+01, -1.12493994e+01, -1.12493994e+01, -1.12493994e+01,
-9.54671305e+00, -9.54671305e+00, -9.54671305e+00, -9.54671305e+00,
-7.89350141e+00, -7.89350141e+00, -7.89350141e+00, -7.89350141e+00,
-6.31429754e+00, -6.31429754e+00, -6.31429754e+00, -6.31429754e+00,
-4.83839512e+00, -4.83839512e+00, -4.83839512e+00, -4.83839512e+00,
-3.50859895e+00, -3.50859895e+00, -3.50859895e+00, -3.50859895e+00,
-2.37834278e+00, -2.37834278e+00, -2.37834278e+00, -2.37834278e+00,
-1.49153448e+00, -1.49153448e+00, -1.49153448e+00, -1.49153448e+00,
-8.81150155e-01, -8.81150155e-01, -8.81150155e-01, -8.81150155e-01,
-5.03007927e-01, -5.03007927e-01, -5.03007927e-01, -5.03007927e-01,
-3.35564422e-01, -3.35564422e-01, -3.35564422e-01, -3.35564422e-01,
-2.44374177e-01, -2.44374177e-01, -2.44374177e-01, -2.44374177e-01,
-2.13624834e-01, -2.13624834e-01, -2.13624834e-01, -2.13624834e-01,
-1.79605715e-01, -1.79605715e-01, -1.79605715e-01, -1.79605715e-01,
-1.01292744e-01, -1.01292744e-01, -1.01292744e-01, -1.01292744e-01,
8.17207680e-02, 8.17207680e-02, 8.17207680e-02, 8.17207680e-02,
2.58649244e-01, 2.58649244e-01, 2.58649244e-01, 2.58649244e-01,
3.25934462e-01, 3.25934462e-01, 3.25934462e-01, 3.25934462e-01,
3.39498005e-01, 3.39498005e-01, 3.39498005e-01, 3.39498005e-01,
2.91982036e-01, 2.91982036e-01, 2.91982036e-01, 2.91982036e-01,
1.45463974e-01, 1.45463974e-01, 1.45463974e-01, 1.45463974e-01,
1.49557604e-03, 1.49557604e-03, 1.49557604e-03, 1.49557604e-03,
-7.12752738e-03, -7.12752738e-03, -7.12752738e-03, -7.12752738e-03,
-1.14206431e+00, -1.14206431e+00, -1.14206431e+00, -1.14206431e+00,
-1.52900050e+01, -1.52900050e+01, -1.52900050e+01, -1.52900050e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999978e+02, 9.99999978e+02, 9.99999978e+02, 9.99999978e+02,
9.99999913e+02, 9.99999913e+02, 9.99999913e+02, 9.99999913e+02,
9.99999681e+02, 9.99999681e+02, 9.99999681e+02, 9.99999681e+02,
9.99998883e+02, 9.99998883e+02, 9.99998883e+02, 9.99998883e+02,
9.99996287e+02, 9.99996287e+02, 9.99996287e+02, 9.99996287e+02,
9.99988295e+02, 9.99988295e+02, 9.99988295e+02, 9.99988295e+02,
9.99965035e+02, 9.99965035e+02, 9.99965035e+02, 9.99965035e+02,
9.99901205e+02, 9.99901205e+02, 9.99901205e+02, 9.99901205e+02,
9.99736456e+02, 9.99736456e+02, 9.99736456e+02, 9.99736456e+02,
9.99337713e+02, 9.99337713e+02, 9.99337713e+02, 9.99337713e+02,
9.98435876e+02, 9.98435876e+02, 9.98435876e+02, 9.98435876e+02,
9.96537247e+02, 9.96537247e+02, 9.96537247e+02, 9.96537247e+02,
9.92831630e+02, 9.92831630e+02, 9.92831630e+02, 9.92831630e+02,
9.86152355e+02, 9.86152355e+02, 9.86152355e+02, 9.86152355e+02,
9.75066144e+02, 9.75066144e+02, 9.75066144e+02, 9.75066144e+02,
9.58141907e+02, 9.58141907e+02, 9.58141907e+02, 9.58141907e+02,
9.34346468e+02, 9.34346468e+02, 9.34346468e+02, 9.34346468e+02,
9.03395524e+02, 9.03395524e+02, 9.03395524e+02, 9.03395524e+02,
8.65861385e+02, 8.65861385e+02, 8.65861385e+02, 8.65861385e+02,
8.22957333e+02, 8.22957333e+02, 8.22957333e+02, 8.22957333e+02,
7.76073993e+02, 7.76073993e+02, 7.76073993e+02, 7.76073993e+02,
7.26756358e+02, 7.26756358e+02, 7.26756358e+02, 7.26756358e+02,
6.79318181e+02, 6.79318181e+02, 6.79318181e+02, 6.79318181e+02,
6.36159247e+02, 6.36159247e+02, 6.36159247e+02, 6.36159247e+02,
5.97127968e+02, 5.97127968e+02, 5.97127968e+02, 5.97127968e+02,
5.62520663e+02, 5.62520663e+02, 5.62520663e+02, 5.62520663e+02,
5.32846267e+02, 5.32846267e+02, 5.32846267e+02, 5.32846267e+02,
5.08656450e+02, 5.08656450e+02, 5.08656450e+02, 5.08656450e+02,
4.90453284e+02, 4.90453284e+02, 4.90453284e+02, 4.90453284e+02,
4.77962657e+02, 4.77962657e+02, 4.77962657e+02, 4.77962657e+02,
4.70901728e+02, 4.70901728e+02, 4.70901728e+02, 4.70901728e+02,
4.67057305e+02, 4.67057305e+02, 4.67057305e+02, 4.67057305e+02,
4.65864101e+02, 4.65864101e+02, 4.65864101e+02, 4.65864101e+02,
4.64990688e+02, 4.64990688e+02, 4.64990688e+02, 4.64990688e+02,
4.64232471e+02, 4.64232471e+02, 4.64232471e+02, 4.64232471e+02,
4.62773942e+02, 4.62773942e+02, 4.62773942e+02, 4.62773942e+02,
4.59392911e+02, 4.59392911e+02, 4.59392911e+02, 4.59392911e+02,
4.56109899e+02, 4.56109899e+02, 4.56109899e+02, 4.56109899e+02,
4.54464219e+02, 4.54464219e+02, 4.54464219e+02, 4.54464219e+02,
4.54313380e+02, 4.54313380e+02, 4.54313380e+02, 4.54313380e+02,
4.55313392e+02, 4.55313392e+02, 4.55313392e+02, 4.55313392e+02,
4.58230030e+02, 4.58230030e+02, 4.58230030e+02, 4.58230030e+02,
4.60740057e+02, 4.60740057e+02, 4.60740057e+02, 4.60740057e+02,
4.67566587e+02, 4.67566587e+02, 4.67566587e+02, 4.67566587e+02,
4.31360769e+02, 4.31360769e+02, 4.31360769e+02, 4.31360769e+02,
3.42890427e+01, 3.42890427e+01, 3.42890427e+01, 3.42890427e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999998, 0.99999998, 0.99999998,
0.99999998, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
0.99999967, 0.99999967, 0.99999967, 0.99999967, 0.99999888,
0.99999888, 0.99999888, 0.99999888, 0.99999641, 0.99999641,
0.99999641, 0.99999641, 0.99998904, 0.99998904, 0.99998904,
0.99998904, 0.99996821, 0.99996821, 0.99996821, 0.99996821,
0.99991271, 0.99991271, 0.99991271, 0.99991271, 0.99977342,
0.99977342, 0.99977342, 0.99977342, 0.9994452 , 0.9994452 ,
0.9994452 , 0.9994452 , 0.99872149, 0.99872149, 0.99872149,
0.99872149, 0.99723373, 0.99723373, 0.99723373, 0.99723373,
0.99439289, 0.99439289, 0.99439289, 0.99439289, 0.9893709 ,
0.9893709 , 0.9893709 , 0.9893709 , 0.98117054, 0.98117054,
0.98117054, 0.98117054, 0.96880792, 0.96880792, 0.96880792,
0.96880792, 0.95156679, 0.95156679, 0.95156679, 0.95156679,
0.92921472, 0.92921472, 0.92921472, 0.92921472, 0.90206335,
0.90206335, 0.90206335, 0.90206335, 0.87082942, 0.87082942,
0.87082942, 0.87082942, 0.83635999, 0.83635999, 0.83635999,
0.83635999, 0.79958445, 0.79958445, 0.79958445, 0.79958445,
0.76320845, 0.76320845, 0.76320845, 0.76320845, 0.72928639,
0.72928639, 0.72928639, 0.72928639, 0.69781444, 0.69781444,
0.69781444, 0.69781444, 0.66912302, 0.66912302, 0.66912302,
0.66912302, 0.64370616, 0.64370616, 0.64370616, 0.64370616,
0.6222069 , 0.6222069 , 0.6222069 , 0.6222069 , 0.60517495,
0.60517495, 0.60517495, 0.60517495, 0.59300247, 0.59300247,
0.59300247, 0.59300247, 0.58513219, 0.58513219, 0.58513219,
0.58513219, 0.58110197, 0.58110197, 0.58110197, 0.58110197,
0.57888883, 0.57888883, 0.57888883, 0.57888883, 0.57804355,
0.57804355, 0.57804355, 0.57804355, 0.57721529, 0.57721529,
0.57721529, 0.57721529, 0.57599771, 0.57599771, 0.57599771,
0.57599771, 0.57339499, 0.57339499, 0.57339499, 0.57339499,
0.56977182, 0.56977182, 0.56977182, 0.56977182, 0.56723157,
0.56723157, 0.56723157, 0.56723157, 0.56473558, 0.56473558,
0.56473558, 0.56473558, 0.56229282, 0.56229282, 0.56229282,
0.56229282, 0.56318072, 0.56318072, 0.56318072, 0.56318072,
0.57767617, 0.57767617, 0.57767617, 0.57767617, 0.75745676,
0.75745676, 0.75745676, 0.75745676, 4.94626224, 4.94626224,
4.94626224, 4.94626224, 5.70365604, 5.70365604, 5.70365604,
5.70365604, 1.59603937, 1.59603937, 1.59603937, 1.59603937,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974491e+01, -1.95974491e+01, -1.95974491e+01, -1.95974491e+01,
-1.95974465e+01, -1.95974465e+01, -1.95974465e+01, -1.95974465e+01,
-1.95974377e+01, -1.95974377e+01, -1.95974377e+01, -1.95974377e+01,
-1.95974083e+01, -1.95974083e+01, -1.95974083e+01, -1.95974083e+01,
-1.95973158e+01, -1.95973158e+01, -1.95973158e+01, -1.95973158e+01,
-1.95970397e+01, -1.95970397e+01, -1.95970397e+01, -1.95970397e+01,
-1.95962605e+01, -1.95962605e+01, -1.95962605e+01, -1.95962605e+01,
-1.95941839e+01, -1.95941839e+01, -1.95941839e+01, -1.95941839e+01,
-1.95889717e+01, -1.95889717e+01, -1.95889717e+01, -1.95889717e+01,
-1.95766882e+01, -1.95766882e+01, -1.95766882e+01, -1.95766882e+01,
-1.95495946e+01, -1.95495946e+01, -1.95495946e+01, -1.95495946e+01,
-1.94938567e+01, -1.94938567e+01, -1.94938567e+01, -1.94938567e+01,
-1.93872645e+01, -1.93872645e+01, -1.93872645e+01, -1.93872645e+01,
-1.91982859e+01, -1.91982859e+01, -1.91982859e+01, -1.91982859e+01,
-1.88881287e+01, -1.88881287e+01, -1.88881287e+01, -1.88881287e+01,
-1.84166819e+01, -1.84166819e+01, -1.84166819e+01, -1.84166819e+01,
-1.77510879e+01, -1.77510879e+01, -1.77510879e+01, -1.77510879e+01,
-1.68734808e+01, -1.68734808e+01, -1.68734808e+01, -1.68734808e+01,
-1.57840020e+01, -1.57840020e+01, -1.57840020e+01, -1.57840020e+01,
-1.44971612e+01, -1.44971612e+01, -1.44971612e+01, -1.44971612e+01,
-1.30320182e+01, -1.30320182e+01, -1.30320182e+01, -1.30320182e+01,
-1.14121779e+01, -1.14121779e+01, -1.14121779e+01, -1.14121779e+01,
-9.76721197e+00, -9.76721197e+00, -9.76721197e+00, -9.76721197e+00,
-8.16411172e+00, -8.16411172e+00, -8.16411172e+00, -8.16411172e+00,
-6.62422222e+00, -6.62422222e+00, -6.62422222e+00, -6.62422222e+00,
-5.17120266e+00, -5.17120266e+00, -5.17120266e+00, -5.17120266e+00,
-3.84277734e+00, -3.84277734e+00, -3.84277734e+00, -3.84277734e+00,
-2.68552665e+00, -2.68552665e+00, -2.68552665e+00, -2.68552665e+00,
-1.74959038e+00, -1.74959038e+00, -1.74959038e+00, -1.74959038e+00,
-1.06046860e+00, -1.06046860e+00, -1.06046860e+00, -1.06046860e+00,
-6.28540492e-01, -6.28540492e-01, -6.28540492e-01, -6.28540492e-01,
-3.80399014e-01, -3.80399014e-01, -3.80399014e-01, -3.80399014e-01,
-2.84130885e-01, -2.84130885e-01, -2.84130885e-01, -2.84130885e-01,
-2.23268367e-01, -2.23268367e-01, -2.23268367e-01, -2.23268367e-01,
-1.84588285e-01, -1.84588285e-01, -1.84588285e-01, -1.84588285e-01,
-1.29141084e-01, -1.29141084e-01, -1.29141084e-01, -1.29141084e-01,
6.83486785e-03, 6.83486785e-03, 6.83486785e-03, 6.83486785e-03,
1.97766665e-01, 1.97766665e-01, 1.97766665e-01, 1.97766665e-01,
3.09999709e-01, 3.09999709e-01, 3.09999709e-01, 3.09999709e-01,
3.31130840e-01, 3.31130840e-01, 3.31130840e-01, 3.31130840e-01,
3.11345179e-01, 3.11345179e-01, 3.11345179e-01, 3.11345179e-01,
2.02708054e-01, 2.02708054e-01, 2.02708054e-01, 2.02708054e-01,
4.65881958e-02, 4.65881958e-02, 4.65881958e-02, 4.65881958e-02,
-7.39224859e-02, -7.39224859e-02, -7.39224859e-02, -7.39224859e-02,
-4.98197741e-02, -4.98197741e-02, -4.98197741e-02, -4.98197741e-02,
-7.95118272e-01, -7.95118272e-01, -7.95118272e-01, -7.95118272e-01,
-1.23208546e+01, -1.23208546e+01, -1.23208546e+01, -1.23208546e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999965e+02, 9.99999965e+02, 9.99999965e+02, 9.99999965e+02,
9.99999870e+02, 9.99999870e+02, 9.99999870e+02, 9.99999870e+02,
9.99999538e+02, 9.99999538e+02, 9.99999538e+02, 9.99999538e+02,
9.99998439e+02, 9.99998439e+02, 9.99998439e+02, 9.99998439e+02,
9.99994977e+02, 9.99994977e+02, 9.99994977e+02, 9.99994977e+02,
9.99984649e+02, 9.99984649e+02, 9.99984649e+02, 9.99984649e+02,
9.99955495e+02, 9.99955495e+02, 9.99955495e+02, 9.99955495e+02,
9.99877798e+02, 9.99877798e+02, 9.99877798e+02, 9.99877798e+02,
9.99682814e+02, 9.99682814e+02, 9.99682814e+02, 9.99682814e+02,
9.99223425e+02, 9.99223425e+02, 9.99223425e+02, 9.99223425e+02,
9.98210796e+02, 9.98210796e+02, 9.98210796e+02, 9.98210796e+02,
9.96130367e+02, 9.96130367e+02, 9.96130367e+02, 9.96130367e+02,
9.92162242e+02, 9.92162242e+02, 9.92162242e+02, 9.92162242e+02,
9.85160792e+02, 9.85160792e+02, 9.85160792e+02, 9.85160792e+02,
9.73762768e+02, 9.73762768e+02, 9.73762768e+02, 9.73762768e+02,
9.56656908e+02, 9.56656908e+02, 9.56656908e+02, 9.56656908e+02,
9.32951170e+02, 9.32951170e+02, 9.32951170e+02, 9.32951170e+02,
9.02474070e+02, 9.02474070e+02, 9.02474070e+02, 9.02474070e+02,
8.65840584e+02, 8.65840584e+02, 8.65840584e+02, 8.65840584e+02,
8.24230005e+02, 8.24230005e+02, 8.24230005e+02, 8.24230005e+02,
7.78960946e+02, 7.78960946e+02, 7.78960946e+02, 7.78960946e+02,
7.31389568e+02, 7.31389568e+02, 7.31389568e+02, 7.31389568e+02,
6.85282099e+02, 6.85282099e+02, 6.85282099e+02, 6.85282099e+02,
6.43071666e+02, 6.43071666e+02, 6.43071666e+02, 6.43071666e+02,
6.04622306e+02, 6.04622306e+02, 6.04622306e+02, 6.04622306e+02,
5.70179058e+02, 5.70179058e+02, 5.70179058e+02, 5.70179058e+02,
5.40165336e+02, 5.40165336e+02, 5.40165336e+02, 5.40165336e+02,
5.15159492e+02, 5.15159492e+02, 5.15159492e+02, 5.15159492e+02,
4.95611984e+02, 4.95611984e+02, 4.95611984e+02, 4.95611984e+02,
4.81794631e+02, 4.81794631e+02, 4.81794631e+02, 4.81794631e+02,
4.72949862e+02, 4.72949862e+02, 4.72949862e+02, 4.72949862e+02,
4.68498842e+02, 4.68498842e+02, 4.68498842e+02, 4.68498842e+02,
4.66125758e+02, 4.66125758e+02, 4.66125758e+02, 4.66125758e+02,
4.65313538e+02, 4.65313538e+02, 4.65313538e+02, 4.65313538e+02,
4.64531340e+02, 4.64531340e+02, 4.64531340e+02, 4.64531340e+02,
4.63332769e+02, 4.63332769e+02, 4.63332769e+02, 4.63332769e+02,
4.60648627e+02, 4.60648627e+02, 4.60648627e+02, 4.60648627e+02,
4.57050259e+02, 4.57050259e+02, 4.57050259e+02, 4.57050259e+02,
4.55164938e+02, 4.55164938e+02, 4.55164938e+02, 4.55164938e+02,
4.54482635e+02, 4.54482635e+02, 4.54482635e+02, 4.54482635e+02,
4.54824233e+02, 4.54824233e+02, 4.54824233e+02, 4.54824233e+02,
4.56931029e+02, 4.56931029e+02, 4.56931029e+02, 4.56931029e+02,
4.60138981e+02, 4.60138981e+02, 4.60138981e+02, 4.60138981e+02,
4.61981491e+02, 4.61981491e+02, 4.61981491e+02, 4.61981491e+02,
4.68140685e+02, 4.68140685e+02, 4.68140685e+02, 4.68140685e+02,
4.36428727e+02, 4.36428727e+02, 4.36428727e+02, 4.36428727e+02,
6.81746616e+01, 6.81746616e+01, 6.81746616e+01, 6.81746616e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999996, 0.99999996,
0.99999996, 0.99999996, 0.99999986, 0.99999986, 0.99999986,
0.99999986, 0.99999953, 0.99999953, 0.99999953, 0.99999953,
0.99999847, 0.99999847, 0.99999847, 0.99999847, 0.99999523,
0.99999523, 0.99999523, 0.99999523, 0.99998585, 0.99998585,
0.99998585, 0.99998585, 0.9999601 , 0.9999601 , 0.9999601 ,
0.9999601 , 0.99989335, 0.99989335, 0.99989335, 0.99989335,
0.9997302 , 0.9997302 , 0.9997302 , 0.9997302 , 0.99935538,
0.99935538, 0.99935538, 0.99935538, 0.99854873, 0.99854873,
0.99854873, 0.99854873, 0.99692822, 0.99692822, 0.99692822,
0.99692822, 0.99390018, 0.99390018, 0.99390018, 0.99390018,
0.98865363, 0.98865363, 0.98865363, 0.98865363, 0.98024099,
0.98024099, 0.98024099, 0.98024099, 0.96775988, 0.96775988,
0.96775988, 0.96775988, 0.95058848, 0.95058848, 0.95058848,
0.95058848, 0.92857093, 0.92857093, 0.92857093, 0.92857093,
0.90205249, 0.90205249, 0.90205249, 0.90205249, 0.87173692,
0.87173692, 0.87173692, 0.87173692, 0.83843181, 0.83843181,
0.83843181, 0.83843181, 0.80297224, 0.80297224, 0.80297224,
0.80297224, 0.76768315, 0.76768315, 0.76768315, 0.76768315,
0.73460513, 0.73460513, 0.73460513, 0.73460513, 0.70375228,
0.70375228, 0.70375228, 0.70375228, 0.67537121, 0.67537121,
0.67537121, 0.67537121, 0.64990447, 0.64990447, 0.64990447,
0.64990447, 0.6279201 , 0.6279201 , 0.6279201 , 0.6279201 ,
0.61003833, 0.61003833, 0.61003833, 0.61003833, 0.59659904,
0.59659904, 0.59659904, 0.59659904, 0.58769343, 0.58769343,
0.58769343, 0.58769343, 0.58232612, 0.58232612, 0.58232612,
0.58232612, 0.5798438 , 0.5798438 , 0.5798438 , 0.5798438 ,
0.57836002, 0.57836002, 0.57836002, 0.57836002, 0.5775144 ,
0.5775144 , 0.5775144 , 0.5775144 , 0.57654461, 0.57654461,
0.57654461, 0.57654461, 0.57463809, 0.57463809, 0.57463809,
0.57463809, 0.5712413 , 0.5712413 , 0.5712413 , 0.5712413 ,
0.56852502, 0.56852502, 0.56852502, 0.56852502, 0.56695785,
0.56695785, 0.56695785, 0.56695785, 0.56500277, 0.56500277,
0.56500277, 0.56500277, 0.56330734, 0.56330734, 0.56330734,
0.56330734, 0.56495911, 0.56495911, 0.56495911, 0.56495911,
0.57910712, 0.57910712, 0.57910712, 0.57910712, 0.76822579,
0.76822579, 0.76822579, 0.76822579, 4.94398567, 4.94398567,
4.94398567, 4.94398567, 5.69120284, 5.69120284, 5.69120284,
5.69120284, 1.97538859, 1.97538859, 1.97538859, 1.97538859,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59744999, -19.59744999, -19.59744999, -19.59744999,
-19.59744998, -19.59744998, -19.59744998, -19.59744998,
-19.59744991, -19.59744991, -19.59744991, -19.59744991,
-19.59744963, -19.59744963, -19.59744963, -19.59744963,
-19.59744859, -19.59744859, -19.59744859, -19.59744859,
-19.59744492, -19.59744492, -19.59744492, -19.59744492,
-19.59743255, -19.59743255, -19.59743255, -19.59743255,
-19.59739282, -19.59739282, -19.59739282, -19.59739282,
-19.59727157, -19.59727157, -19.59727157, -19.59727157,
-19.59692039, -19.59692039, -19.59692039, -19.59692039,
-19.59595704, -19.59595704, -19.59595704, -19.59595704,
-19.59345932, -19.59345932, -19.59345932, -19.59345932,
-19.58735413, -19.58735413, -19.58735413, -19.58735413,
-19.57332626, -19.57332626, -19.57332626, -19.57332626,
-19.54312485, -19.54312485, -19.54312485, -19.54312485,
-19.48240267, -19.48240267, -19.48240267, -19.48240267,
-19.3687515 , -19.3687515 , -19.3687515 , -19.3687515 ,
-19.17122488, -19.17122488, -19.17122488, -19.17122488,
-18.85281695, -18.85281695, -18.85281695, -18.85281695,
-18.37643738, -18.37643738, -18.37643738, -18.37643738,
-17.71292094, -17.71292094, -17.71292094, -17.71292094,
-16.84777683, -16.84777683, -16.84777683, -16.84777683,
-15.78331816, -15.78331816, -15.78331816, -15.78331816,
-14.5347797 , -14.5347797 , -14.5347797 , -14.5347797 ,
-13.12131832, -13.12131832, -13.12131832, -13.12131832,
-11.56320641, -11.56320641, -11.56320641, -11.56320641,
-9.973158 , -9.973158 , -9.973158 , -9.973158 ,
-8.41839728, -8.41839728, -8.41839728, -8.41839728,
-6.91752776, -6.91752776, -6.91752776, -6.91752776,
-5.4904841 , -5.4904841 , -5.4904841 , -5.4904841 ,
-4.16868979, -4.16868979, -4.16868979, -4.16868979,
-2.99503252, -2.99503252, -2.99503252, -2.99503252,
-2.01492746, -2.01492746, -2.01492746, -2.01492746,
-1.26852879, -1.26852879, -1.26852879, -1.26852879,
-0.75659699, -0.75659699, -0.75659699, -0.75659699,
-0.46721793, -0.46721793, -0.46721793, -0.46721793,
-0.30912043, -0.30912043, -0.30912043, -0.30912043,
-0.24875555, -0.24875555, -0.24875555, -0.24875555,
-0.19892335, -0.19892335, -0.19892335, -0.19892335,
-0.14564527, -0.14564527, -0.14564527, -0.14564527,
-0.04528153, -0.04528153, -0.04528153, -0.04528153,
0.13535818, 0.13535818, 0.13535818, 0.13535818,
0.26623507, 0.26623507, 0.26623507, 0.26623507,
0.32428685, 0.32428685, 0.32428685, 0.32428685,
0.32067534, 0.32067534, 0.32067534, 0.32067534,
0.25398083, 0.25398083, 0.25398083, 0.25398083,
0.09430057, 0.09430057, 0.09430057, 0.09430057,
-0.03007264, -0.03007264, -0.03007264, -0.03007264,
-0.11990385, -0.11990385, -0.11990385, -0.11990385,
-0.0709073 , -0.0709073 , -0.0709073 , -0.0709073 ,
-0.44599011, -0.44599011, -0.44599011, -0.44599011,
-10.13576154, -10.13576154, -10.13576154, -10.13576154,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 , -19.59745 ,
-19.59745 , -19.59745 , -19.59745 ]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
9.99999986e+02, 9.99999986e+02, 9.99999986e+02, 9.99999986e+02,
9.99999947e+02, 9.99999947e+02, 9.99999947e+02, 9.99999947e+02,
9.99999810e+02, 9.99999810e+02, 9.99999810e+02, 9.99999810e+02,
9.99999347e+02, 9.99999347e+02, 9.99999347e+02, 9.99999347e+02,
9.99997861e+02, 9.99997861e+02, 9.99997861e+02, 9.99997861e+02,
9.99993324e+02, 9.99993324e+02, 9.99993324e+02, 9.99993324e+02,
9.99980184e+02, 9.99980184e+02, 9.99980184e+02, 9.99980184e+02,
9.99944140e+02, 9.99944140e+02, 9.99944140e+02, 9.99944140e+02,
9.99850692e+02, 9.99850692e+02, 9.99850692e+02, 9.99850692e+02,
9.99622309e+02, 9.99622309e+02, 9.99622309e+02, 9.99622309e+02,
9.99097723e+02, 9.99097723e+02, 9.99097723e+02, 9.99097723e+02,
9.97969118e+02, 9.97969118e+02, 9.97969118e+02, 9.97969118e+02,
9.95703309e+02, 9.95703309e+02, 9.95703309e+02, 9.95703309e+02,
9.91474458e+02, 9.91474458e+02, 9.91474458e+02, 9.91474458e+02,
9.84161735e+02, 9.84161735e+02, 9.84161735e+02, 9.84161735e+02,
9.72472374e+02, 9.72472374e+02, 9.72472374e+02, 9.72472374e+02,
9.55208747e+02, 9.55208747e+02, 9.55208747e+02, 9.55208747e+02,
9.31606965e+02, 9.31606965e+02, 9.31606965e+02, 9.31606965e+02,
9.01593286e+02, 9.01593286e+02, 9.01593286e+02, 9.01593286e+02,
8.65814973e+02, 8.65814973e+02, 8.65814973e+02, 8.65814973e+02,
8.25415615e+02, 8.25415615e+02, 8.25415615e+02, 8.25415615e+02,
7.81647504e+02, 7.81647504e+02, 7.81647504e+02, 7.81647504e+02,
7.35710520e+02, 7.35710520e+02, 7.35710520e+02, 7.35710520e+02,
6.90890172e+02, 6.90890172e+02, 6.90890172e+02, 6.90890172e+02,
6.49620359e+02, 6.49620359e+02, 6.49620359e+02, 6.49620359e+02,
6.11797773e+02, 6.11797773e+02, 6.11797773e+02, 6.11797773e+02,
5.77600780e+02, 5.77600780e+02, 5.77600780e+02, 5.77600780e+02,
5.47410199e+02, 5.47410199e+02, 5.47410199e+02, 5.47410199e+02,
5.21734770e+02, 5.21734770e+02, 5.21734770e+02, 5.21734770e+02,
5.01128594e+02, 5.01128594e+02, 5.01128594e+02, 5.01128594e+02,
4.85819157e+02, 4.85819157e+02, 4.85819157e+02, 4.85819157e+02,
4.75772518e+02, 4.75772518e+02, 4.75772518e+02, 4.75772518e+02,
4.69779973e+02, 4.69779973e+02, 4.69779973e+02, 4.69779973e+02,
4.67080362e+02, 4.67080362e+02, 4.67080362e+02, 4.67080362e+02,
4.65530456e+02, 4.65530456e+02, 4.65530456e+02, 4.65530456e+02,
4.64717921e+02, 4.64717921e+02, 4.64717921e+02, 4.64717921e+02,
4.63776491e+02, 4.63776491e+02, 4.63776491e+02, 4.63776491e+02,
4.61803434e+02, 4.61803434e+02, 4.61803434e+02, 4.61803434e+02,
4.58228685e+02, 4.58228685e+02, 4.58228685e+02, 4.58228685e+02,
4.55647155e+02, 4.55647155e+02, 4.55647155e+02, 4.55647155e+02,
4.54848420e+02, 4.54848420e+02, 4.54848420e+02, 4.54848420e+02,
4.54769138e+02, 4.54769138e+02, 4.54769138e+02, 4.54769138e+02,
4.55961825e+02, 4.55961825e+02, 4.55961825e+02, 4.55961825e+02,
4.58949241e+02, 4.58949241e+02, 4.58949241e+02, 4.58949241e+02,
4.61614848e+02, 4.61614848e+02, 4.61614848e+02, 4.61614848e+02,
4.62795907e+02, 4.62795907e+02, 4.62795907e+02, 4.62795907e+02,
4.67523312e+02, 4.67523312e+02, 4.67523312e+02, 4.67523312e+02,
4.35653571e+02, 4.35653571e+02, 4.35653571e+02, 4.35653571e+02,
1.05168891e+02, 1.05168891e+02, 1.05168891e+02, 1.05168891e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999994,
0.99999994, 0.99999994, 0.99999994, 0.99999981, 0.99999981,
0.99999981, 0.99999981, 0.99999935, 0.99999935, 0.99999935,
0.99999935, 0.99999794, 0.99999794, 0.99999794, 0.99999794,
0.99999376, 0.99999376, 0.99999376, 0.99999376, 0.99998199,
0.99998199, 0.99998199, 0.99998199, 0.99995055, 0.99995055,
0.99995055, 0.99995055, 0.99987113, 0.99987113, 0.99987113,
0.99987113, 0.99968182, 0.99968182, 0.99968182, 0.99968182,
0.99925722, 0.99925722, 0.99925722, 0.99925722, 0.99836415,
0.99836415, 0.99836415, 0.99836415, 0.99660874, 0.99660874,
0.99660874, 0.99660874, 0.9933952 , 0.9933952 , 0.9933952 ,
0.9933952 , 0.98793188, 0.98793188, 0.98793188, 0.98793188,
0.97932093, 0.97932093, 0.97932093, 0.97932093, 0.96673715,
0.96673715, 0.96673715, 0.96673715, 0.94964461, 0.94964461,
0.94964461, 0.94964461, 0.92795422, 0.92795422, 0.92795422,
0.92795422, 0.90203767, 0.90203767, 0.90203767, 0.90203767,
0.87258376, 0.87258376, 0.87258376, 0.87258376, 0.84036293,
0.84036293, 0.84036293, 0.84036293, 0.80613056, 0.80613056,
0.80613056, 0.80613056, 0.77188664, 0.77188664, 0.77188664,
0.77188664, 0.73963167, 0.73963167, 0.73963167, 0.73963167,
0.70940128, 0.70940128, 0.70940128, 0.70940128, 0.68139366,
0.68139366, 0.68139366, 0.68139366, 0.65596808, 0.65596808,
0.65596808, 0.65596808, 0.63365536, 0.63365536, 0.63365536,
0.63365536, 0.61502818, 0.61502818, 0.61502818, 0.61502818,
0.60059309, 0.60059309, 0.60059309, 0.60059309, 0.59038095,
0.59038095, 0.59038095, 0.59038095, 0.58416103, 0.58416103,
0.58416103, 0.58416103, 0.58061715, 0.58061715, 0.58061715,
0.58061715, 0.57903944, 0.57903944, 0.57903944, 0.57903944,
0.57787713, 0.57787713, 0.57787713, 0.57787713, 0.57688412,
0.57688412, 0.57688412, 0.57688412, 0.57544855, 0.57544855,
0.57544855, 0.57544855, 0.57263323, 0.57263323, 0.57263323,
0.57263323, 0.56974145, 0.56974145, 0.56974145, 0.56974145,
0.56797788, 0.56797788, 0.56797788, 0.56797788, 0.56697796,
0.56697796, 0.56697796, 0.56697796, 0.56563572, 0.56563572,
0.56563572, 0.56563572, 0.56494658, 0.56494658, 0.56494658,
0.56494658, 0.56645921, 0.56645921, 0.56645921, 0.56645921,
0.58020504, 0.58020504, 0.58020504, 0.58020504, 0.7785362 ,
0.7785362 , 0.7785362 , 0.7785362 , 4.93202993, 4.93202993,
4.93202993, 4.93202993, 5.66253368, 5.66253368, 5.66253368,
5.66253368, 2.38055149, 2.38055149, 2.38055149, 2.38055149,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974494e+01, -1.95974494e+01, -1.95974494e+01, -1.95974494e+01,
-1.95974479e+01, -1.95974479e+01, -1.95974479e+01, -1.95974479e+01,
-1.95974427e+01, -1.95974427e+01, -1.95974427e+01, -1.95974427e+01,
-1.95974258e+01, -1.95974258e+01, -1.95974258e+01, -1.95974258e+01,
-1.95973730e+01, -1.95973730e+01, -1.95973730e+01, -1.95973730e+01,
-1.95972166e+01, -1.95972166e+01, -1.95972166e+01, -1.95972166e+01,
-1.95967760e+01, -1.95967760e+01, -1.95967760e+01, -1.95967760e+01,
-1.95955997e+01, -1.95955997e+01, -1.95955997e+01, -1.95955997e+01,
-1.95926280e+01, -1.95926280e+01, -1.95926280e+01, -1.95926280e+01,
-1.95855437e+01, -1.95855437e+01, -1.95855437e+01, -1.95855437e+01,
-1.95696517e+01, -1.95696517e+01, -1.95696517e+01, -1.95696517e+01,
-1.95362117e+01, -1.95362117e+01, -1.95362117e+01, -1.95362117e+01,
-1.94704222e+01, -1.94704222e+01, -1.94704222e+01, -1.94704222e+01,
-1.93497692e+01, -1.93497692e+01, -1.93497692e+01, -1.93497692e+01,
-1.91439788e+01, -1.91439788e+01, -1.91439788e+01, -1.91439788e+01,
-1.88178378e+01, -1.88178378e+01, -1.88178378e+01, -1.88178378e+01,
-1.83371287e+01, -1.83371287e+01, -1.83371287e+01, -1.83371287e+01,
-1.76760675e+01, -1.76760675e+01, -1.76760675e+01, -1.76760675e+01,
-1.68231445e+01, -1.68231445e+01, -1.68231445e+01, -1.68231445e+01,
-1.57824961e+01, -1.57824961e+01, -1.57824961e+01, -1.57824961e+01,
-1.45698677e+01, -1.45698677e+01, -1.45698677e+01, -1.45698677e+01,
-1.32043830e+01, -1.32043830e+01, -1.32043830e+01, -1.32043830e+01,
-1.17036224e+01, -1.17036224e+01, -1.17036224e+01, -1.17036224e+01,
-1.01657129e+01, -1.01657129e+01, -1.01657129e+01, -1.01657129e+01,
-8.65745604e+00, -8.65745604e+00, -8.65745604e+00, -8.65745604e+00,
-7.19532725e+00, -7.19532725e+00, -7.19532725e+00, -7.19532725e+00,
-5.79578003e+00, -5.79578003e+00, -5.79578003e+00, -5.79578003e+00,
-4.48580583e+00, -4.48580583e+00, -4.48580583e+00, -4.48580583e+00,
-3.30233895e+00, -3.30233895e+00, -3.30233895e+00, -3.30233895e+00,
-2.28999205e+00, -2.28999205e+00, -2.28999205e+00, -2.28999205e+00,
-1.48665190e+00, -1.48665190e+00, -1.48665190e+00, -1.48665190e+00,
-9.16444051e-01, -9.16444051e-01, -9.16444051e-01, -9.16444051e-01,
-5.53286287e-01, -5.53286287e-01, -5.53286287e-01, -5.53286287e-01,
-3.67878530e-01, -3.67878530e-01, -3.67878530e-01, -3.67878530e-01,
-2.65094265e-01, -2.65094265e-01, -2.65094265e-01, -2.65094265e-01,
-2.15784356e-01, -2.15784356e-01, -2.15784356e-01, -2.15784356e-01,
-1.65192236e-01, -1.65192236e-01, -1.65192236e-01, -1.65192236e-01,
-8.52631416e-02, -8.52631416e-02, -8.52631416e-02, -8.52631416e-02,
7.31961690e-02, 7.31961690e-02, 7.31961690e-02, 7.31961690e-02,
2.28177984e-01, 2.28177984e-01, 2.28177984e-01, 2.28177984e-01,
2.97213404e-01, 2.97213404e-01, 2.97213404e-01, 2.97213404e-01,
3.18155586e-01, 3.18155586e-01, 3.18155586e-01, 3.18155586e-01,
2.86936146e-01, 2.86936146e-01, 2.86936146e-01, 2.86936146e-01,
1.60097390e-01, 1.60097390e-01, 1.60097390e-01, 1.60097390e-01,
2.21384777e-03, 2.21384777e-03, 2.21384777e-03, 2.21384777e-03,
-7.99984086e-02, -7.99984086e-02, -7.99984086e-02, -7.99984086e-02,
-1.34246115e-01, -1.34246115e-01, -1.34246115e-01, -1.34246115e-01,
-6.71255258e-02, -6.71255258e-02, -6.71255258e-02, -6.71255258e-02,
-1.58018574e-01, -1.58018574e-01, -1.58018574e-01, -1.58018574e-01,
-8.46790736e+00, -8.46790736e+00, -8.46790736e+00, -8.46790736e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
9.99999979e+02, 9.99999979e+02, 9.99999979e+02, 9.99999979e+02,
9.99999922e+02, 9.99999922e+02, 9.99999922e+02, 9.99999922e+02,
9.99999728e+02, 9.99999728e+02, 9.99999728e+02, 9.99999728e+02,
9.99999095e+02, 9.99999095e+02, 9.99999095e+02, 9.99999095e+02,
9.99997120e+02, 9.99997120e+02, 9.99997120e+02, 9.99997120e+02,
9.99991266e+02, 9.99991266e+02, 9.99991266e+02, 9.99991266e+02,
9.99974782e+02, 9.99974782e+02, 9.99974782e+02, 9.99974782e+02,
9.99930769e+02, 9.99930769e+02, 9.99930769e+02, 9.99930769e+02,
9.99819590e+02, 9.99819590e+02, 9.99819590e+02, 9.99819590e+02,
9.99554591e+02, 9.99554591e+02, 9.99554591e+02, 9.99554591e+02,
9.98960349e+02, 9.98960349e+02, 9.98960349e+02, 9.98960349e+02,
9.97710932e+02, 9.97710932e+02, 9.97710932e+02, 9.97710932e+02,
9.95256792e+02, 9.95256792e+02, 9.95256792e+02, 9.95256792e+02,
9.90769668e+02, 9.90769668e+02, 9.90769668e+02, 9.90769668e+02,
9.83156734e+02, 9.83156734e+02, 9.83156734e+02, 9.83156734e+02,
9.71195587e+02, 9.71195587e+02, 9.71195587e+02, 9.71195587e+02,
9.53796069e+02, 9.53796069e+02, 9.53796069e+02, 9.53796069e+02,
9.30310551e+02, 9.30310551e+02, 9.30310551e+02, 9.30310551e+02,
9.00749846e+02, 9.00749846e+02, 9.00749846e+02, 9.00749846e+02,
8.65784928e+02, 8.65784928e+02, 8.65784928e+02, 8.65784928e+02,
8.26522912e+02, 8.26522912e+02, 8.26522912e+02, 8.26522912e+02,
7.84154118e+02, 7.84154118e+02, 7.84154118e+02, 7.84154118e+02,
7.39746922e+02, 7.39746922e+02, 7.39746922e+02, 7.39746922e+02,
6.96170009e+02, 6.96170009e+02, 6.96170009e+02, 6.96170009e+02,
6.55827330e+02, 6.55827330e+02, 6.55827330e+02, 6.55827330e+02,
6.18654000e+02, 6.18654000e+02, 6.18654000e+02, 6.18654000e+02,
5.84783454e+02, 5.84783454e+02, 5.84783454e+02, 5.84783454e+02,
5.54527180e+02, 5.54527180e+02, 5.54527180e+02, 5.54527180e+02,
5.28367773e+02, 5.28367773e+02, 5.28367773e+02, 5.28367773e+02,
5.06818722e+02, 5.06818722e+02, 5.06818722e+02, 5.06818722e+02,
4.90312899e+02, 4.90312899e+02, 4.90312899e+02, 4.90312899e+02,
4.78752254e+02, 4.78752254e+02, 4.78752254e+02, 4.78752254e+02,
4.71776805e+02, 4.71776805e+02, 4.71776805e+02, 4.71776805e+02,
4.67852179e+02, 4.67852179e+02, 4.67852179e+02, 4.67852179e+02,
4.66174199e+02, 4.66174199e+02, 4.66174199e+02, 4.66174199e+02,
4.64987016e+02, 4.64987016e+02, 4.64987016e+02, 4.64987016e+02,
4.64008579e+02, 4.64008579e+02, 4.64008579e+02, 4.64008579e+02,
4.62543362e+02, 4.62543362e+02, 4.62543362e+02, 4.62543362e+02,
4.59550569e+02, 4.59550569e+02, 4.59550569e+02, 4.59550569e+02,
4.56544154e+02, 4.56544154e+02, 4.56544154e+02, 4.56544154e+02,
4.55029340e+02, 4.55029340e+02, 4.55029340e+02, 4.55029340e+02,
4.54863605e+02, 4.54863605e+02, 4.54863605e+02, 4.54863605e+02,
4.55470217e+02, 4.55470217e+02, 4.55470217e+02, 4.55470217e+02,
4.57808682e+02, 4.57808682e+02, 4.57808682e+02, 4.57808682e+02,
4.60652422e+02, 4.60652422e+02, 4.60652422e+02, 4.60652422e+02,
4.62610659e+02, 4.62610659e+02, 4.62610659e+02, 4.62610659e+02,
4.63106902e+02, 4.63106902e+02, 4.63106902e+02, 4.63106902e+02,
4.65810686e+02, 4.65810686e+02, 4.65810686e+02, 4.65810686e+02,
4.33002408e+02, 4.33002408e+02, 4.33002408e+02, 4.33002408e+02,
1.43412267e+02, 1.43412267e+02, 1.43412267e+02, 1.43412267e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 0.99999999, 0.99999999, 0.99999999,
0.99999999, 0.99999998, 0.99999998, 0.99999998, 0.99999998,
0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999973,
0.99999973, 0.99999973, 0.99999973, 0.99999912, 0.99999912,
0.99999912, 0.99999912, 0.99999728, 0.99999728, 0.99999728,
0.99999728, 0.99999196, 0.99999196, 0.99999196, 0.99999196,
0.99997737, 0.99997737, 0.99997737, 0.99997737, 0.99993941,
0.99993941, 0.99993941, 0.99993941, 0.99984585, 0.99984585,
0.99984585, 0.99984585, 0.99962805, 0.99962805, 0.99962805,
0.99962805, 0.99915055, 0.99915055, 0.99915055, 0.99915055,
0.99816786, 0.99816786, 0.99816786, 0.99816786, 0.99627582,
0.99627582, 0.99627582, 0.99627582, 0.99287886, 0.99287886,
0.99287886, 0.99287886, 0.98720668, 0.98720668, 0.98720668,
0.98720668, 0.97841074, 0.97841074, 0.97841074, 0.97841074,
0.96573881, 0.96573881, 0.96573881, 0.96573881, 0.94873306,
0.94873306, 0.94873306, 0.94873306, 0.92736246, 0.92736246,
0.92736246, 0.92736246, 0.90201925, 0.90201925, 0.90201925,
0.90201925, 0.87337573, 0.87337573, 0.87337573, 0.87337573,
0.84216635, 0.84216635, 0.84216635, 0.84216635, 0.80907948,
0.80907948, 0.80907948, 0.80907948, 0.77584278, 0.77584278,
0.77584278, 0.77584278, 0.74438392, 0.74438392, 0.74438392,
0.74438392, 0.71477986, 0.71477986, 0.71477986, 0.71477986,
0.68717736, 0.68717736, 0.68717736, 0.68717736, 0.66188455,
0.66188455, 0.66188455, 0.66188455, 0.63935361, 0.63935361,
0.63935361, 0.63935361, 0.62015224, 0.62015224, 0.62015224,
0.62015224, 0.60477483, 0.60477483, 0.60477483, 0.60477483,
0.59352547, 0.59352547, 0.59352547, 0.59352547, 0.58607117,
0.58607117, 0.58607117, 0.58607117, 0.58190303, 0.58190303,
0.58190303, 0.58190303, 0.57956123, 0.57956123, 0.57956123,
0.57956123, 0.57839561, 0.57839561, 0.57839561, 0.57839561,
0.57731562, 0.57731562, 0.57731562, 0.57731562, 0.57602663,
0.57602663, 0.57602663, 0.57602663, 0.57376643, 0.57376643,
0.57376643, 0.57376643, 0.57079695, 0.57079695, 0.57079695,
0.57079695, 0.56893066, 0.56893066, 0.56893066, 0.56893066,
0.5678998 , 0.5678998 , 0.5678998 , 0.5678998 , 0.56725258,
0.56725258, 0.56725258, 0.56725258, 0.56680513, 0.56680513,
0.56680513, 0.56680513, 0.56673813, 0.56673813, 0.56673813,
0.56673813, 0.56753107, 0.56753107, 0.56753107, 0.56753107,
0.58083764, 0.58083764, 0.58083764, 0.58083764, 0.78629949,
0.78629949, 0.78629949, 0.78629949, 4.91489404, 4.91489404,
4.91489404, 4.91489404, 5.66513057, 5.66513057, 5.66513057,
5.66513057, 2.7620253 , 2.7620253 , 2.7620253 , 2.7620253 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974498e+01, -1.95974498e+01, -1.95974498e+01, -1.95974498e+01,
-1.95974491e+01, -1.95974491e+01, -1.95974491e+01, -1.95974491e+01,
-1.95974470e+01, -1.95974470e+01, -1.95974470e+01, -1.95974470e+01,
-1.95974398e+01, -1.95974398e+01, -1.95974398e+01, -1.95974398e+01,
-1.95974170e+01, -1.95974170e+01, -1.95974170e+01, -1.95974170e+01,
-1.95973480e+01, -1.95973480e+01, -1.95973480e+01, -1.95973480e+01,
-1.95971491e+01, -1.95971491e+01, -1.95971491e+01, -1.95971491e+01,
-1.95966033e+01, -1.95966033e+01, -1.95966033e+01, -1.95966033e+01,
-1.95951829e+01, -1.95951829e+01, -1.95951829e+01, -1.95951829e+01,
-1.95916820e+01, -1.95916820e+01, -1.95916820e+01, -1.95916820e+01,
-1.95835315e+01, -1.95835315e+01, -1.95835315e+01, -1.95835315e+01,
-1.95656587e+01, -1.95656587e+01, -1.95656587e+01, -1.95656587e+01,
-1.95288585e+01, -1.95288585e+01, -1.95288585e+01, -1.95288585e+01,
-1.94579343e+01, -1.94579343e+01, -1.94579343e+01, -1.94579343e+01,
-1.93303524e+01, -1.93303524e+01, -1.93303524e+01, -1.93303524e+01,
-1.91165854e+01, -1.91165854e+01, -1.91165854e+01, -1.91165854e+01,
-1.87832063e+01, -1.87832063e+01, -1.87832063e+01, -1.87832063e+01,
-1.82987235e+01, -1.82987235e+01, -1.82987235e+01, -1.82987235e+01,
-1.76404471e+01, -1.76404471e+01, -1.76404471e+01, -1.76404471e+01,
-1.67995009e+01, -1.67995009e+01, -1.67995009e+01, -1.67995009e+01,
-1.57815477e+01, -1.57815477e+01, -1.57815477e+01, -1.57815477e+01,
-1.46026675e+01, -1.46026675e+01, -1.46026675e+01, -1.46026675e+01,
-1.32817990e+01, -1.32817990e+01, -1.32817990e+01, -1.32817990e+01,
-1.18344185e+01, -1.18344185e+01, -1.18344185e+01, -1.18344185e+01,
-1.03460033e+01, -1.03460033e+01, -1.03460033e+01, -1.03460033e+01,
-8.88243558e+00, -8.88243558e+00, -8.88243558e+00, -8.88243558e+00,
-7.45829243e+00, -7.45829243e+00, -7.45829243e+00, -7.45829243e+00,
-6.08759632e+00, -6.08759632e+00, -6.08759632e+00, -6.08759632e+00,
-4.79273953e+00, -4.79273953e+00, -4.79273953e+00, -4.79273953e+00,
-3.60646122e+00, -3.60646122e+00, -3.60646122e+00, -3.60646122e+00,
-2.56866215e+00, -2.56866215e+00, -2.56866215e+00, -2.56866215e+00,
-1.72080838e+00, -1.72080838e+00, -1.72080838e+00, -1.72080838e+00,
-1.08667636e+00, -1.08667636e+00, -1.08667636e+00, -1.08667636e+00,
-6.70713020e-01, -6.70713020e-01, -6.70713020e-01, -6.70713020e-01,
-4.23210123e-01, -4.23210123e-01, -4.23210123e-01, -4.23210123e-01,
-3.05329615e-01, -3.05329615e-01, -3.05329615e-01, -3.05329615e-01,
-2.30979266e-01, -2.30979266e-01, -2.30979266e-01, -2.30979266e-01,
-1.78612761e-01, -1.78612761e-01, -1.78612761e-01, -1.78612761e-01,
-1.14935463e-01, -1.14935463e-01, -1.14935463e-01, -1.14935463e-01,
9.76005905e-03, 9.76005905e-03, 9.76005905e-03, 9.76005905e-03,
1.79021055e-01, 1.79021055e-01, 1.79021055e-01, 1.79021055e-01,
2.79211031e-01, 2.79211031e-01, 2.79211031e-01, 2.79211031e-01,
3.04181047e-01, 3.04181047e-01, 3.04181047e-01, 3.04181047e-01,
2.97229303e-01, 2.97229303e-01, 2.97229303e-01, 2.97229303e-01,
2.16892653e-01, 2.16892653e-01, 2.16892653e-01, 2.16892653e-01,
5.77330288e-02, 5.77330288e-02, 5.77330288e-02, 5.77330288e-02,
-6.18141614e-02, -6.18141614e-02, -6.18141614e-02, -6.18141614e-02,
-1.02834268e-01, -1.02834268e-01, -1.02834268e-01, -1.02834268e-01,
-1.20319256e-01, -1.20319256e-01, -1.20319256e-01, -1.20319256e-01,
-4.57384322e-02, -4.57384322e-02, -4.57384322e-02, -4.57384322e-02,
5.57803118e-03, 5.57803118e-03, 5.57803118e-03, 5.57803118e-03,
-7.12586604e+00, -7.12586604e+00, -7.12586604e+00, -7.12586604e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
9.99999968e+02, 9.99999968e+02, 9.99999968e+02, 9.99999968e+02,
9.99999887e+02, 9.99999887e+02, 9.99999887e+02, 9.99999887e+02,
9.99999619e+02, 9.99999619e+02, 9.99999619e+02, 9.99999619e+02,
9.99998767e+02, 9.99998767e+02, 9.99998767e+02, 9.99998767e+02,
9.99996185e+02, 9.99996185e+02, 9.99996185e+02, 9.99996185e+02,
9.99988740e+02, 9.99988740e+02, 9.99988740e+02, 9.99988740e+02,
9.99968321e+02, 9.99968321e+02, 9.99968321e+02, 9.99968321e+02,
9.99915177e+02, 9.99915177e+02, 9.99915177e+02, 9.99915177e+02,
9.99784202e+02, 9.99784202e+02, 9.99784202e+02, 9.99784202e+02,
9.99479333e+02, 9.99479333e+02, 9.99479333e+02, 9.99479333e+02,
9.98811087e+02, 9.98811087e+02, 9.98811087e+02, 9.98811087e+02,
9.97436379e+02, 9.97436379e+02, 9.97436379e+02, 9.97436379e+02,
9.94791552e+02, 9.94791552e+02, 9.94791552e+02, 9.94791552e+02,
9.90049195e+02, 9.90049195e+02, 9.90049195e+02, 9.90049195e+02,
9.82147193e+02, 9.82147193e+02, 9.82147193e+02, 9.82147193e+02,
9.69932912e+02, 9.69932912e+02, 9.69932912e+02, 9.69932912e+02,
9.52417576e+02, 9.52417576e+02, 9.52417576e+02, 9.52417576e+02,
9.29058942e+02, 9.29058942e+02, 9.29058942e+02, 9.29058942e+02,
8.99940834e+02, 8.99940834e+02, 8.99940834e+02, 8.99940834e+02,
8.65750838e+02, 8.65750838e+02, 8.65750838e+02, 8.65750838e+02,
8.27559253e+02, 8.27559253e+02, 8.27559253e+02, 8.27559253e+02,
7.86496911e+02, 7.86496911e+02, 7.86496911e+02, 7.86496911e+02,
7.43523058e+02, 7.43523058e+02, 7.43523058e+02, 7.43523058e+02,
7.01150546e+02, 7.01150546e+02, 7.01150546e+02, 7.01150546e+02,
6.61711091e+02, 6.61711091e+02, 6.61711091e+02, 6.61711091e+02,
6.25204662e+02, 6.25204662e+02, 6.25204662e+02, 6.25204662e+02,
5.91711941e+02, 5.91711941e+02, 5.91711941e+02, 5.91711941e+02,
5.61500060e+02, 5.61500060e+02, 5.61500060e+02, 5.61500060e+02,
5.34985301e+02, 5.34985301e+02, 5.34985301e+02, 5.34985301e+02,
5.12690393e+02, 5.12690393e+02, 5.12690393e+02, 5.12690393e+02,
4.95042975e+02, 4.95042975e+02, 4.95042975e+02, 4.95042975e+02,
4.82262615e+02, 4.82262615e+02, 4.82262615e+02, 4.82262615e+02,
4.73870538e+02, 4.73870538e+02, 4.73870538e+02, 4.73870538e+02,
4.69227241e+02, 4.69227241e+02, 4.69227241e+02, 4.69227241e+02,
4.66662152e+02, 4.66662152e+02, 4.66662152e+02, 4.66662152e+02,
4.65449266e+02, 4.65449266e+02, 4.65449266e+02, 4.65449266e+02,
4.64355113e+02, 4.64355113e+02, 4.64355113e+02, 4.64355113e+02,
4.63043852e+02, 4.63043852e+02, 4.63043852e+02, 4.63043852e+02,
4.60652662e+02, 4.60652662e+02, 4.60652662e+02, 4.60652662e+02,
4.57488839e+02, 4.57488839e+02, 4.57488839e+02, 4.57488839e+02,
4.55633138e+02, 4.55633138e+02, 4.55633138e+02, 4.55633138e+02,
4.54937737e+02, 4.54937737e+02, 4.54937737e+02, 4.54937737e+02,
4.55166468e+02, 4.55166468e+02, 4.55166468e+02, 4.55166468e+02,
4.56778687e+02, 4.56778687e+02, 4.56778687e+02, 4.56778687e+02,
4.59834516e+02, 4.59834516e+02, 4.59834516e+02, 4.59834516e+02,
4.61863307e+02, 4.61863307e+02, 4.61863307e+02, 4.61863307e+02,
4.63045537e+02, 4.63045537e+02, 4.63045537e+02, 4.63045537e+02,
4.62941773e+02, 4.62941773e+02, 4.62941773e+02, 4.62941773e+02,
4.63527536e+02, 4.63527536e+02, 4.63527536e+02, 4.63527536e+02,
4.33471825e+02, 4.33471825e+02, 4.33471825e+02, 4.33471825e+02,
1.78922418e+02, 1.78922418e+02, 1.78922418e+02, 1.78922418e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 0.99999999, 0.99999999,
0.99999999, 0.99999999, 0.99999997, 0.99999997, 0.99999997,
0.99999997, 0.99999989, 0.99999989, 0.99999989, 0.99999989,
0.99999963, 0.99999963, 0.99999963, 0.99999963, 0.99999882,
0.99999882, 0.99999882, 0.99999882, 0.99999644, 0.99999644,
0.99999644, 0.99999644, 0.99998977, 0.99998977, 0.99998977,
0.99998977, 0.99997191, 0.99997191, 0.99997191, 0.99997191,
0.99992654, 0.99992654, 0.99992654, 0.99992654, 0.9998173 ,
0.9998173 , 0.9998173 , 0.9998173 , 0.99956868, 0.99956868,
0.99956868, 0.99956868, 0.99903526, 0.99903526, 0.99903526,
0.99903526, 0.99795997, 0.99795997, 0.99795997, 0.99795997,
0.99592998, 0.99592998, 0.99592998, 0.99592998, 0.99235208,
0.99235208, 0.99235208, 0.99235208, 0.98647893, 0.98647893,
0.98647893, 0.98647893, 0.97751071, 0.97751071, 0.97751071,
0.97751071, 0.96476399, 0.96476399, 0.96476399, 0.96476399,
0.94785186, 0.94785186, 0.94785186, 0.94785186, 0.92679381,
0.92679381, 0.92679381, 0.92679381, 0.90199754, 0.90199754,
0.90199754, 0.90199754, 0.87411778, 0.87411778, 0.87411778,
0.87411778, 0.84385313, 0.84385313, 0.84385313, 0.84385313,
0.81183641, 0.81183641, 0.81183641, 0.81183641, 0.77956921,
0.77956921, 0.77956921, 0.77956921, 0.74888406, 0.74888406,
0.74888406, 0.74888406, 0.7199006 , 0.7199006 , 0.7199006 ,
0.7199006 , 0.69273028, 0.69273028, 0.69273028, 0.69273028,
0.66762803, 0.66762803, 0.66762803, 0.66762803, 0.64499394,
0.64499394, 0.64499394, 0.64499394, 0.6253336 , 0.6253336 ,
0.6253336 , 0.6253336 , 0.60918725, 0.60918725, 0.60918725,
0.60918725, 0.59688024, 0.59688024, 0.59688024, 0.59688024,
0.58844927, 0.58844927, 0.58844927, 0.58844927, 0.58320842,
0.58320842, 0.58320842, 0.58320842, 0.58046856, 0.58046856,
0.58046856, 0.58046856, 0.57881722, 0.57881722, 0.57881722,
0.57881722, 0.5777376 , 0.5777376 , 0.5777376 , 0.5777376 ,
0.57657412, 0.57657412, 0.57657412, 0.57657412, 0.5747604 ,
0.5747604 , 0.5747604 , 0.5747604 , 0.57183611, 0.57183611,
0.57183611, 0.57183611, 0.569634 , 0.569634 , 0.569634 ,
0.569634 , 0.56863337, 0.56863337, 0.56863337, 0.56863337,
0.56807231, 0.56807231, 0.56807231, 0.56807231, 0.567998 ,
0.567998 , 0.567998 , 0.567998 , 0.56850304, 0.56850304,
0.56850304, 0.56850304, 0.5680767 , 0.5680767 , 0.5680767 ,
0.5680767 , 0.56811621, 0.56811621, 0.56811621, 0.56811621,
0.58104156, 0.58104156, 0.58104156, 0.58104156, 0.79189278,
0.79189278, 0.79189278, 0.79189278, 4.89390634, 4.89390634,
4.89390634, 4.89390634, 5.69720114, 5.69720114, 5.69720114,
5.69720114, 3.1202153 , 3.1202153 , 3.1202153 , 3.1202153 ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974497e+01, -1.95974497e+01, -1.95974497e+01, -1.95974497e+01,
-1.95974488e+01, -1.95974488e+01, -1.95974488e+01, -1.95974488e+01,
-1.95974457e+01, -1.95974457e+01, -1.95974457e+01, -1.95974457e+01,
-1.95974360e+01, -1.95974360e+01, -1.95974360e+01, -1.95974360e+01,
-1.95974058e+01, -1.95974058e+01, -1.95974058e+01, -1.95974058e+01,
-1.95973169e+01, -1.95973169e+01, -1.95973169e+01, -1.95973169e+01,
-1.95970671e+01, -1.95970671e+01, -1.95970671e+01, -1.95970671e+01,
-1.95963988e+01, -1.95963988e+01, -1.95963988e+01, -1.95963988e+01,
-1.95947013e+01, -1.95947013e+01, -1.95947013e+01, -1.95947013e+01,
-1.95906138e+01, -1.95906138e+01, -1.95906138e+01, -1.95906138e+01,
-1.95813093e+01, -1.95813093e+01, -1.95813093e+01, -1.95813093e+01,
-1.95613423e+01, -1.95613423e+01, -1.95613423e+01, -1.95613423e+01,
-1.95210699e+01, -1.95210699e+01, -1.95210699e+01, -1.95210699e+01,
-1.94449585e+01, -1.94449585e+01, -1.94449585e+01, -1.94449585e+01,
-1.93105344e+01, -1.93105344e+01, -1.93105344e+01, -1.93105344e+01,
-1.90890791e+01, -1.90890791e+01, -1.90890791e+01, -1.90890791e+01,
-1.87489345e+01, -1.87489345e+01, -1.87489345e+01, -1.87489345e+01,
-1.82611905e+01, -1.82611905e+01, -1.82611905e+01, -1.82611905e+01,
-1.76059869e+01, -1.76059869e+01, -1.76059869e+01, -1.76059869e+01,
-1.67767728e+01, -1.67767728e+01, -1.67767728e+01, -1.67767728e+01,
-1.57804835e+01, -1.57804835e+01, -1.57804835e+01, -1.57804835e+01,
-1.46333874e+01, -1.46333874e+01, -1.46333874e+01, -1.46333874e+01,
-1.33540076e+01, -1.33540076e+01, -1.33540076e+01, -1.33540076e+01,
-1.19567666e+01, -1.19567666e+01, -1.19567666e+01, -1.19567666e+01,
-1.05150525e+01, -1.05150525e+01, -1.05150525e+01, -1.05150525e+01,
-9.09417104e+00, -9.09417104e+00, -9.09417104e+00, -9.09417104e+00,
-7.70728617e+00, -7.70728617e+00, -7.70728617e+00, -7.70728617e+00,
-6.36602576e+00, -6.36602576e+00, -6.36602576e+00, -6.36602576e+00,
-5.08930766e+00, -5.08930766e+00, -5.08930766e+00, -5.08930766e+00,
-3.90506198e+00, -3.90506198e+00, -3.90506198e+00, -3.90506198e+00,
-2.85010424e+00, -2.85010424e+00, -2.85010424e+00, -2.85010424e+00,
-1.96328393e+00, -1.96328393e+00, -1.96328393e+00, -1.96328393e+00,
-1.27734670e+00, -1.27734670e+00, -1.27734670e+00, -1.27734670e+00,
-7.96811737e-01, -7.96811737e-01, -7.96811737e-01, -7.96811737e-01,
-5.06534830e-01, -5.06534830e-01, -5.06534830e-01, -5.06534830e-01,
-3.41035658e-01, -3.41035658e-01, -3.41035658e-01, -3.41035658e-01,
-2.60177787e-01, -2.60177787e-01, -2.60177787e-01, -2.60177787e-01,
-1.96085942e-01, -1.96085942e-01, -1.96085942e-01, -1.96085942e-01,
-1.34052428e-01, -1.34052428e-01, -1.34052428e-01, -1.34052428e-01,
-3.82449631e-02, -3.82449631e-02, -3.82449631e-02, -3.82449631e-02,
1.21841959e-01, 1.21841959e-01, 1.21841959e-01, 1.21841959e-01,
2.44077637e-01, 2.44077637e-01, 2.44077637e-01, 2.44077637e-01,
2.97824945e-01, 2.97824945e-01, 2.97824945e-01, 2.97824945e-01,
2.98149986e-01, 2.98149986e-01, 2.98149986e-01, 2.98149986e-01,
2.51414537e-01, 2.51414537e-01, 2.51414537e-01, 2.51414537e-01,
1.13404337e-01, 1.13404337e-01, 1.13404337e-01, 1.13404337e-01,
-1.88380192e-02, -1.88380192e-02, -1.88380192e-02, -1.88380192e-02,
-9.54487222e-02, -9.54487222e-02, -9.54487222e-02, -9.54487222e-02,
-1.06443174e-01, -1.06443174e-01, -1.06443174e-01, -1.06443174e-01,
-9.56457136e-02, -9.56457136e-02, -9.56457136e-02, -9.56457136e-02,
-1.47955638e-02, -1.47955638e-02, -1.47955638e-02, -1.47955638e-02,
7.16811944e-02, 7.16811944e-02, 7.16811944e-02, 7.16811944e-02,
-5.99756818e+00, -5.99756818e+00, -5.99756818e+00, -5.99756818e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
9.99999987e+02, 9.99999987e+02, 9.99999987e+02, 9.99999987e+02,
9.99999954e+02, 9.99999954e+02, 9.99999954e+02, 9.99999954e+02,
9.99999841e+02, 9.99999841e+02, 9.99999841e+02, 9.99999841e+02,
9.99999475e+02, 9.99999475e+02, 9.99999475e+02, 9.99999475e+02,
9.99998347e+02, 9.99998347e+02, 9.99998347e+02, 9.99998347e+02,
9.99995020e+02, 9.99995020e+02, 9.99995020e+02, 9.99995020e+02,
9.99985672e+02, 9.99985672e+02, 9.99985672e+02, 9.99985672e+02,
9.99960670e+02, 9.99960670e+02, 9.99960670e+02, 9.99960670e+02,
9.99897156e+02, 9.99897156e+02, 9.99897156e+02, 9.99897156e+02,
9.99744241e+02, 9.99744241e+02, 9.99744241e+02, 9.99744241e+02,
9.99396229e+02, 9.99396229e+02, 9.99396229e+02, 9.99396229e+02,
9.98649758e+02, 9.98649758e+02, 9.98649758e+02, 9.98649758e+02,
9.97145637e+02, 9.97145637e+02, 9.97145637e+02, 9.97145637e+02,
9.94308330e+02, 9.94308330e+02, 9.94308330e+02, 9.94308330e+02,
9.89314303e+02, 9.89314303e+02, 9.89314303e+02, 9.89314303e+02,
9.81134393e+02, 9.81134393e+02, 9.81134393e+02, 9.81134393e+02,
9.68684747e+02, 9.68684747e+02, 9.68684747e+02, 9.68684747e+02,
9.51072032e+02, 9.51072032e+02, 9.51072032e+02, 9.51072032e+02,
9.27849434e+02, 9.27849434e+02, 9.27849434e+02, 9.27849434e+02,
8.99163679e+02, 8.99163679e+02, 8.99163679e+02, 8.99163679e+02,
8.65713041e+02, 8.65713041e+02, 8.65713041e+02, 8.65713041e+02,
8.28530977e+02, 8.28530977e+02, 8.28530977e+02, 8.28530977e+02,
7.88687888e+02, 7.88687888e+02, 7.88687888e+02, 7.88687888e+02,
7.47065213e+02, 7.47065213e+02, 7.47065213e+02, 7.47065213e+02,
7.05848815e+02, 7.05848815e+02, 7.05848815e+02, 7.05848815e+02,
6.67297293e+02, 6.67297293e+02, 6.67297293e+02, 6.67297293e+02,
6.31460182e+02, 6.31460182e+02, 6.31460182e+02, 6.31460182e+02,
5.98389306e+02, 5.98389306e+02, 5.98389306e+02, 5.98389306e+02,
5.68299134e+02, 5.68299134e+02, 5.68299134e+02, 5.68299134e+02,
5.41562282e+02, 5.41562282e+02, 5.41562282e+02, 5.41562282e+02,
5.18651711e+02, 5.18651711e+02, 5.18651711e+02, 5.18651711e+02,
5.00058715e+02, 5.00058715e+02, 5.00058715e+02, 5.00058715e+02,
4.86029006e+02, 4.86029006e+02, 4.86029006e+02, 4.86029006e+02,
4.76503061e+02, 4.76503061e+02, 4.76503061e+02, 4.76503061e+02,
4.70635195e+02, 4.70635195e+02, 4.70635195e+02, 4.70635195e+02,
4.67609427e+02, 4.67609427e+02, 4.67609427e+02, 4.67609427e+02,
4.65824201e+02, 4.65824201e+02, 4.65824201e+02, 4.65824201e+02,
4.64708600e+02, 4.64708600e+02, 4.64708600e+02, 4.64708600e+02,
4.63520829e+02, 4.63520829e+02, 4.63520829e+02, 4.63520829e+02,
4.61620235e+02, 4.61620235e+02, 4.61620235e+02, 4.61620235e+02,
4.58485045e+02, 4.58485045e+02, 4.58485045e+02, 4.58485045e+02,
4.56183830e+02, 4.56183830e+02, 4.56183830e+02, 4.56183830e+02,
4.55297909e+02, 4.55297909e+02, 4.55297909e+02, 4.55297909e+02,
4.55128431e+02, 4.55128431e+02, 4.55128431e+02, 4.55128431e+02,
4.55999279e+02, 4.55999279e+02, 4.55999279e+02, 4.55999279e+02,
4.58687543e+02, 4.58687543e+02, 4.58687543e+02, 4.58687543e+02,
4.61354361e+02, 4.61354361e+02, 4.61354361e+02, 4.61354361e+02,
4.62516612e+02, 4.62516612e+02, 4.62516612e+02, 4.62516612e+02,
4.63019726e+02, 4.63019726e+02, 4.63019726e+02, 4.63019726e+02,
4.62614600e+02, 4.62614600e+02, 4.62614600e+02, 4.62614600e+02,
4.60825538e+02, 4.60825538e+02, 4.60825538e+02, 4.60825538e+02,
4.37294799e+02, 4.37294799e+02, 4.37294799e+02, 4.37294799e+02,
2.11305840e+02, 2.11305840e+02, 2.11305840e+02, 2.11305840e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1. , 1. , 1. , 1. , 0.99999999,
0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
0.99999995, 0.99999995, 0.99999984, 0.99999984, 0.99999984,
0.99999984, 0.99999949, 0.99999949, 0.99999949, 0.99999949,
0.99999844, 0.99999844, 0.99999844, 0.99999844, 0.99999542,
0.99999542, 0.99999542, 0.99999542, 0.99998713, 0.99998713,
0.99998713, 0.99998713, 0.9999655 , 0.9999655 , 0.9999655 ,
0.9999655 , 0.99991178, 0.99991178, 0.99991178, 0.99991178,
0.99978529, 0.99978529, 0.99978529, 0.99978529, 0.99950349,
0.99950349, 0.99950349, 0.99950349, 0.99891123, 0.99891123,
0.99891123, 0.99891123, 0.99774064, 0.99774064, 0.99774064,
0.99774064, 0.99557175, 0.99557175, 0.99557175, 0.99557175,
0.99181571, 0.99181571, 0.99181571, 0.99181571, 0.98574947,
0.98574947, 0.98574947, 0.98574947, 0.97662108, 0.97662108,
0.97662108, 0.97662108, 0.96381185, 0.96381185, 0.96381185,
0.96381185, 0.94699927, 0.94699927, 0.94699927, 0.94699927,
0.92624661, 0.92624661, 0.92624661, 0.92624661, 0.9019728 ,
0.9019728 , 0.9019728 , 0.9019728 , 0.87481407, 0.87481407,
0.87481407, 0.87481407, 0.84543522, 0.84543522, 0.84543522,
0.84543522, 0.81442283, 0.81442283, 0.81442283, 0.81442283,
0.78307637, 0.78307637, 0.78307637, 0.78307637, 0.75314632,
0.75314632, 0.75314632, 0.75314632, 0.72477941, 0.72477941,
0.72477941, 0.72477941, 0.69805716, 0.69805716, 0.69805716,
0.69805716, 0.67319587, 0.67319587, 0.67319587, 0.67319587,
0.65053818, 0.65053818, 0.65053818, 0.65053818, 0.63054983,
0.63054983, 0.63054983, 0.63054983, 0.61373695, 0.61373695,
0.61373695, 0.61373695, 0.60053603, 0.60053603, 0.60053603,
0.60053603, 0.59102357, 0.59102357, 0.59102357, 0.59102357,
0.58494867, 0.58494867, 0.58494867, 0.58494867, 0.58135283,
0.58135283, 0.58135283, 0.58135283, 0.5794891 , 0.5794891 ,
0.5794891 , 0.5794891 , 0.57815267, 0.57815267, 0.57815267,
0.57815267, 0.57699224, 0.57699224, 0.57699224, 0.57699224,
0.57552182, 0.57552182, 0.57552182, 0.57552182, 0.57298965,
0.57298965, 0.57298965, 0.57298965, 0.57043829, 0.57043829,
0.57043829, 0.57043829, 0.56906326, 0.56906326, 0.56906326,
0.56906326, 0.5686265 , 0.5686265 , 0.5686265 , 0.5686265 ,
0.56854901, 0.56854901, 0.56854901, 0.56854901, 0.56940057,
0.56940057, 0.56940057, 0.56940057, 0.57005639, 0.57005639,
0.57005639, 0.57005639, 0.5688696 , 0.5688696 , 0.5688696 ,
0.5688696 , 0.56831975, 0.56831975, 0.56831975, 0.56831975,
0.58103903, 0.58103903, 0.58103903, 0.58103903, 0.79374436,
0.79374436, 0.79374436, 0.79374436, 4.87720755, 4.87720755,
4.87720755, 4.87720755, 5.74403588, 5.74403588, 5.74403588,
5.74403588, 3.46330428, 3.46330428, 3.46330428, 3.46330428,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974499e+01, -1.95974499e+01, -1.95974499e+01, -1.95974499e+01,
-1.95974495e+01, -1.95974495e+01, -1.95974495e+01, -1.95974495e+01,
-1.95974482e+01, -1.95974482e+01, -1.95974482e+01, -1.95974482e+01,
-1.95974441e+01, -1.95974441e+01, -1.95974441e+01, -1.95974441e+01,
-1.95974310e+01, -1.95974310e+01, -1.95974310e+01, -1.95974310e+01,
-1.95973916e+01, -1.95973916e+01, -1.95973916e+01, -1.95973916e+01,
-1.95972786e+01, -1.95972786e+01, -1.95972786e+01, -1.95972786e+01,
-1.95969686e+01, -1.95969686e+01, -1.95969686e+01, -1.95969686e+01,
-1.95961590e+01, -1.95961590e+01, -1.95961590e+01, -1.95961590e+01,
-1.95941491e+01, -1.95941491e+01, -1.95941491e+01, -1.95941491e+01,
-1.95894158e+01, -1.95894158e+01, -1.95894158e+01, -1.95894158e+01,
-1.95788696e+01, -1.95788696e+01, -1.95788696e+01, -1.95788696e+01,
-1.95566985e+01, -1.95566985e+01, -1.95566985e+01, -1.95566985e+01,
-1.95128512e+01, -1.95128512e+01, -1.95128512e+01, -1.95128512e+01,
-1.94315140e+01, -1.94315140e+01, -1.94315140e+01, -1.94315140e+01,
-1.92903467e+01, -1.92903467e+01, -1.92903467e+01, -1.92903467e+01,
-1.90614912e+01, -1.90614912e+01, -1.90614912e+01, -1.90614912e+01,
-1.87150326e+01, -1.87150326e+01, -1.87150326e+01, -1.87150326e+01,
-1.82245001e+01, -1.82245001e+01, -1.82245001e+01, -1.82245001e+01,
-1.75726207e+01, -1.75726207e+01, -1.75726207e+01, -1.75726207e+01,
-1.67548950e+01, -1.67548950e+01, -1.67548950e+01, -1.67548950e+01,
-1.57793118e+01, -1.57793118e+01, -1.57793118e+01, -1.57793118e+01,
-1.46622014e+01, -1.46622014e+01, -1.46622014e+01, -1.46622014e+01,
-1.34216191e+01, -1.34216191e+01, -1.34216191e+01, -1.34216191e+01,
-1.20712287e+01, -1.20712287e+01, -1.20712287e+01, -1.20712287e+01,
-1.06739044e+01, -1.06739044e+01, -1.06739044e+01, -1.06739044e+01,
-9.29379307e+00, -9.29379307e+00, -9.29379307e+00, -9.29379307e+00,
-7.94296336e+00, -7.94296336e+00, -7.94296336e+00, -7.94296336e+00,
-6.63150668e+00, -6.63150668e+00, -6.63150668e+00, -6.63150668e+00,
-5.37490939e+00, -5.37490939e+00, -5.37490939e+00, -5.37490939e+00,
-4.19730994e+00, -4.19730994e+00, -4.19730994e+00, -4.19730994e+00,
-3.13108259e+00, -3.13108259e+00, -3.13108259e+00, -3.13108259e+00,
-2.21417361e+00, -2.21417361e+00, -2.21417361e+00, -2.21417361e+00,
-1.47930262e+00, -1.47930262e+00, -1.47930262e+00, -1.47930262e+00,
-9.45385444e-01, -9.45385444e-01, -9.45385444e-01, -9.45385444e-01,
-5.95656521e-01, -5.95656521e-01, -5.95656521e-01, -5.95656521e-01,
-3.99403090e-01, -3.99403090e-01, -3.99403090e-01, -3.99403090e-01,
-2.85622461e-01, -2.85622461e-01, -2.85622461e-01, -2.85622461e-01,
-2.19284573e-01, -2.19284573e-01, -2.19284573e-01, -2.19284573e-01,
-1.55493166e-01, -1.55493166e-01, -1.55493166e-01, -1.55493166e-01,
-7.35015435e-02, -7.35015435e-02, -7.35015435e-02, -7.35015435e-02,
6.72846414e-02, 6.72846414e-02, 6.72846414e-02, 6.72846414e-02,
2.05392028e-01, 2.05392028e-01, 2.05392028e-01, 2.05392028e-01,
2.75414455e-01, 2.75414455e-01, 2.75414455e-01, 2.75414455e-01,
2.96233980e-01, 2.96233980e-01, 2.96233980e-01, 2.96233980e-01,
2.74443594e-01, 2.74443594e-01, 2.74443594e-01, 2.74443594e-01,
1.70168341e-01, 1.70168341e-01, 1.70168341e-01, 1.70168341e-01,
1.80150915e-02, 1.80150915e-02, 1.80150915e-02, 1.80150915e-02,
-6.51449274e-02, -6.51449274e-02, -6.51449274e-02, -6.51449274e-02,
-1.04137959e-01, -1.04137959e-01, -1.04137959e-01, -1.04137959e-01,
-9.96987947e-02, -9.96987947e-02, -9.96987947e-02, -9.96987947e-02,
-6.02066209e-02, -6.02066209e-02, -6.02066209e-02, -6.02066209e-02,
1.77838561e-02, 1.77838561e-02, 1.77838561e-02, 1.77838561e-02,
6.95679407e-02, 6.95679407e-02, 6.95679407e-02, 6.95679407e-02,
-5.01910078e+00, -5.01910078e+00, -5.01910078e+00, -5.01910078e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999995e+02, 9.99999995e+02, 9.99999995e+02, 9.99999995e+02,
9.99999981e+02, 9.99999981e+02, 9.99999981e+02, 9.99999981e+02,
9.99999934e+02, 9.99999934e+02, 9.99999934e+02, 9.99999934e+02,
9.99999778e+02, 9.99999778e+02, 9.99999778e+02, 9.99999778e+02,
9.99999289e+02, 9.99999289e+02, 9.99999289e+02, 9.99999289e+02,
9.99997817e+02, 9.99997817e+02, 9.99997817e+02, 9.99997817e+02,
9.99993586e+02, 9.99993586e+02, 9.99993586e+02, 9.99993586e+02,
9.99981987e+02, 9.99981987e+02, 9.99981987e+02, 9.99981987e+02,
9.99951696e+02, 9.99951696e+02, 9.99951696e+02, 9.99951696e+02,
9.99876497e+02, 9.99876497e+02, 9.99876497e+02, 9.99876497e+02,
9.99699428e+02, 9.99699428e+02, 9.99699428e+02, 9.99699428e+02,
9.99304995e+02, 9.99304995e+02, 9.99304995e+02, 9.99304995e+02,
9.98476220e+02, 9.98476220e+02, 9.98476220e+02, 9.98476220e+02,
9.96838923e+02, 9.96838923e+02, 9.96838923e+02, 9.96838923e+02,
9.93807871e+02, 9.93807871e+02, 9.93807871e+02, 9.93807871e+02,
9.88566189e+02, 9.88566189e+02, 9.88566189e+02, 9.88566189e+02,
9.80119496e+02, 9.80119496e+02, 9.80119496e+02, 9.80119496e+02,
9.67451408e+02, 9.67451408e+02, 9.67451408e+02, 9.67451408e+02,
9.49758258e+02, 9.49758258e+02, 9.49758258e+02, 9.49758258e+02,
9.26679567e+02, 9.26679567e+02, 9.26679567e+02, 9.26679567e+02,
8.98416091e+02, 8.98416091e+02, 8.98416091e+02, 8.98416091e+02,
8.65671807e+02, 8.65671807e+02, 8.65671807e+02, 8.65671807e+02,
8.29443378e+02, 8.29443378e+02, 8.29443378e+02, 8.29443378e+02,
7.90744448e+02, 7.90744448e+02, 7.90744448e+02, 7.90744448e+02,
7.50392349e+02, 7.50392349e+02, 7.50392349e+02, 7.50392349e+02,
7.10283801e+02, 7.10283801e+02, 7.10283801e+02, 7.10283801e+02,
6.72599183e+02, 6.72599183e+02, 6.72599183e+02, 6.72599183e+02,
6.37437464e+02, 6.37437464e+02, 6.37437464e+02, 6.37437464e+02,
6.04816164e+02, 6.04816164e+02, 6.04816164e+02, 6.04816164e+02,
5.74916672e+02, 5.74916672e+02, 5.74916672e+02, 5.74916672e+02,
5.48055621e+02, 5.48055621e+02, 5.48055621e+02, 5.48055621e+02,
5.24676970e+02, 5.24676970e+02, 5.24676970e+02, 5.24676970e+02,
5.05250741e+02, 5.05250741e+02, 5.05250741e+02, 5.05250741e+02,
4.90155215e+02, 4.90155215e+02, 4.90155215e+02, 4.90155215e+02,
4.79371457e+02, 4.79371457e+02, 4.79371457e+02, 4.79371457e+02,
4.72542024e+02, 4.72542024e+02, 4.72542024e+02, 4.72542024e+02,
4.68541201e+02, 4.68541201e+02, 4.68541201e+02, 4.68541201e+02,
4.66505642e+02, 4.66505642e+02, 4.66505642e+02, 4.66505642e+02,
4.65076084e+02, 4.65076084e+02, 4.65076084e+02, 4.65076084e+02,
4.63869864e+02, 4.63869864e+02, 4.63869864e+02, 4.63869864e+02,
4.62337447e+02, 4.62337447e+02, 4.62337447e+02, 4.62337447e+02,
4.59631278e+02, 4.59631278e+02, 4.59631278e+02, 4.59631278e+02,
4.56916646e+02, 4.56916646e+02, 4.56916646e+02, 4.56916646e+02,
4.55543102e+02, 4.55543102e+02, 4.55543102e+02, 4.55543102e+02,
4.55288433e+02, 4.55288433e+02, 4.55288433e+02, 4.55288433e+02,
4.55661668e+02, 4.55661668e+02, 4.55661668e+02, 4.55661668e+02,
4.57571932e+02, 4.57571932e+02, 4.57571932e+02, 4.57571932e+02,
4.60440601e+02, 4.60440601e+02, 4.60440601e+02, 4.60440601e+02,
4.62258112e+02, 4.62258112e+02, 4.62258112e+02, 4.62258112e+02,
4.62734330e+02, 4.62734330e+02, 4.62734330e+02, 4.62734330e+02,
4.62796077e+02, 4.62796077e+02, 4.62796077e+02, 4.62796077e+02,
4.61928393e+02, 4.61928393e+02, 4.61928393e+02, 4.61928393e+02,
4.58737919e+02, 4.58737919e+02, 4.58737919e+02, 4.58737919e+02,
4.42781939e+02, 4.42781939e+02, 4.42781939e+02, 4.42781939e+02,
2.41372986e+02, 2.41372986e+02, 2.41372986e+02, 2.41372986e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999993,
0.99999993, 0.99999993, 0.99999993, 0.99999978, 0.99999978,
0.99999978, 0.99999978, 0.99999932, 0.99999932, 0.99999932,
0.99999932, 0.99999797, 0.99999797, 0.99999797, 0.99999797,
0.99999417, 0.99999417, 0.99999417, 0.99999417, 0.999984 ,
0.999984 , 0.999984 , 0.999984 , 0.99995804, 0.99995804,
0.99995804, 0.99995804, 0.99989499, 0.99989499, 0.99989499,
0.99989499, 0.99974962, 0.99974962, 0.99974962, 0.99974962,
0.99943231, 0.99943231, 0.99943231, 0.99943231, 0.9987784 ,
0.9987784 , 0.9987784 , 0.9987784 , 0.99751004, 0.99751004,
0.99751004, 0.99751004, 0.99520166, 0.99520166, 0.99520166,
0.99520166, 0.99127057, 0.99127057, 0.99127057, 0.99127057,
0.98501906, 0.98501906, 0.98501906, 0.98501906, 0.97574203,
0.97574203, 0.97574203, 0.97574203, 0.96288161, 0.96288161,
0.96288161, 0.96288161, 0.94617367, 0.94617367, 0.94617367,
0.94617367, 0.92571938, 0.92571938, 0.92571938, 0.92571938,
0.90194529, 0.90194529, 0.90194529, 0.90194529, 0.87546863,
0.87546863, 0.87546863, 0.87546863, 0.84692236, 0.84692236,
0.84692236, 0.84692236, 0.81685217, 0.81685217, 0.81685217,
0.81685217, 0.78638667, 0.78638667, 0.78638667, 0.78638667,
0.75718146, 0.75718146, 0.75718146, 0.75718146, 0.72942531,
0.72942531, 0.72942531, 0.72942531, 0.70316587, 0.70316587,
0.70316587, 0.70316587, 0.67858288, 0.67858288, 0.67858288,
0.67858288, 0.65597405, 0.65597405, 0.65597405, 0.65597405,
0.63575206, 0.63575206, 0.63575206, 0.63575206, 0.61840948,
0.61840948, 0.61840948, 0.61840948, 0.60438506, 0.60438506,
0.60438506, 0.60438506, 0.59393624, 0.59393624, 0.59393624,
0.59393624, 0.58684429, 0.58684429, 0.58684429, 0.58684429,
0.58260576, 0.58260576, 0.58260576, 0.58260576, 0.58011986,
0.58011986, 0.58011986, 0.58011986, 0.57869565, 0.57869565,
0.57869565, 0.57869565, 0.57744153, 0.57744153, 0.57744153,
0.57744153, 0.57608399, 0.57608399, 0.57608399, 0.57608399,
0.57399938, 0.57399938, 0.57399938, 0.57399938, 0.57135742,
0.57135742, 0.57135742, 0.57135742, 0.56964605, 0.56964605,
0.56964605, 0.56964605, 0.56892105, 0.56892105, 0.56892105,
0.56892105, 0.56882419, 0.56882419, 0.56882419, 0.56882419,
0.56950857, 0.56950857, 0.56950857, 0.56950857, 0.57114483,
0.57114483, 0.57114483, 0.57114483, 0.57107418, 0.57107418,
0.57107418, 0.57107418, 0.56920045, 0.56920045, 0.56920045,
0.56920045, 0.56832702, 0.56832702, 0.56832702, 0.56832702,
0.58078103, 0.58078103, 0.58078103, 0.58078103, 0.79262627,
0.79262627, 0.79262627, 0.79262627, 4.86702127, 4.86702127,
4.86702127, 4.86702127, 5.78223717, 5.78223717, 5.78223717,
5.78223717, 3.81184601, 3.81184601, 3.81184601, 3.81184601,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974493e+01, -1.95974493e+01, -1.95974493e+01, -1.95974493e+01,
-1.95974475e+01, -1.95974475e+01, -1.95974475e+01, -1.95974475e+01,
-1.95974419e+01, -1.95974419e+01, -1.95974419e+01, -1.95974419e+01,
-1.95974246e+01, -1.95974246e+01, -1.95974246e+01, -1.95974246e+01,
-1.95973740e+01, -1.95973740e+01, -1.95973740e+01, -1.95973740e+01,
-1.95972319e+01, -1.95972319e+01, -1.95972319e+01, -1.95972319e+01,
-1.95968514e+01, -1.95968514e+01, -1.95968514e+01, -1.95968514e+01,
-1.95958800e+01, -1.95958800e+01, -1.95958800e+01, -1.95958800e+01,
-1.95935206e+01, -1.95935206e+01, -1.95935206e+01, -1.95935206e+01,
-1.95880809e+01, -1.95880809e+01, -1.95880809e+01, -1.95880809e+01,
-1.95762053e+01, -1.95762053e+01, -1.95762053e+01, -1.95762053e+01,
-1.95517244e+01, -1.95517244e+01, -1.95517244e+01, -1.95517244e+01,
-1.95042089e+01, -1.95042089e+01, -1.95042089e+01, -1.95042089e+01,
-1.94176204e+01, -1.94176204e+01, -1.94176204e+01, -1.94176204e+01,
-1.92698195e+01, -1.92698195e+01, -1.92698195e+01, -1.92698195e+01,
-1.90338503e+01, -1.90338503e+01, -1.90338503e+01, -1.90338503e+01,
-1.86815082e+01, -1.86815082e+01, -1.86815082e+01, -1.86815082e+01,
-1.81886240e+01, -1.81886240e+01, -1.81886240e+01, -1.81886240e+01,
-1.75402879e+01, -1.75402879e+01, -1.75402879e+01, -1.75402879e+01,
-1.67338090e+01, -1.67338090e+01, -1.67338090e+01, -1.67338090e+01,
-1.57780412e+01, -1.57780412e+01, -1.57780412e+01, -1.57780412e+01,
-1.46892782e+01, -1.46892782e+01, -1.46892782e+01, -1.46892782e+01,
-1.34850821e+01, -1.34850821e+01, -1.34850821e+01, -1.34850821e+01,
-1.21784352e+01, -1.21784352e+01, -1.21784352e+01, -1.21784352e+01,
-1.08233333e+01, -1.08233333e+01, -1.08233333e+01, -1.08233333e+01,
-9.48224377e+00, -9.48224377e+00, -9.48224377e+00, -9.48224377e+00,
-8.16634118e+00, -8.16634118e+00, -8.16634118e+00, -8.16634118e+00,
-6.88441851e+00, -6.88441851e+00, -6.88441851e+00, -6.88441851e+00,
-5.64948922e+00, -5.64948922e+00, -5.64948922e+00, -5.64948922e+00,
-4.48186684e+00, -4.48186684e+00, -4.48186684e+00, -4.48186684e+00,
-3.41031651e+00, -3.41031651e+00, -3.41031651e+00, -3.41031651e+00,
-2.46946575e+00, -2.46946575e+00, -2.46946575e+00, -2.46946575e+00,
-1.69431946e+00, -1.69431946e+00, -1.69431946e+00, -1.69431946e+00,
-1.10616540e+00, -1.10616540e+00, -1.10616540e+00, -1.10616540e+00,
-7.06921216e-01, -7.06921216e-01, -7.06921216e-01, -7.06921216e-01,
-4.60561327e-01, -4.60561327e-01, -4.60561327e-01, -4.60561327e-01,
-3.27519514e-01, -3.27519514e-01, -3.27519514e-01, -3.27519514e-01,
-2.41286344e-01, -2.41286344e-01, -2.41286344e-01, -2.41286344e-01,
-1.75610234e-01, -1.75610234e-01, -1.75610234e-01, -1.75610234e-01,
-1.03249567e-01, -1.03249567e-01, -1.03249567e-01, -1.03249567e-01,
1.33675271e-02, 1.33675271e-02, 1.33675271e-02, 1.33675271e-02,
1.63319383e-01, 1.63319383e-01, 1.63319383e-01, 1.63319383e-01,
2.54046087e-01, 2.54046087e-01, 2.54046087e-01, 2.54046087e-01,
2.83350944e-01, 2.83350944e-01, 2.83350944e-01, 2.83350944e-01,
2.81705115e-01, 2.81705115e-01, 2.81705115e-01, 2.81705115e-01,
2.18881548e-01, 2.18881548e-01, 2.18881548e-01, 2.18881548e-01,
7.08959660e-02, 7.08959660e-02, 7.08959660e-02, 7.08959660e-02,
-4.37712428e-02, -4.37712428e-02, -4.37712428e-02, -4.37712428e-02,
-8.61595623e-02, -8.61595623e-02, -8.61595623e-02, -8.61595623e-02,
-9.95145426e-02, -9.95145426e-02, -9.95145426e-02, -9.95145426e-02,
-8.00099892e-02, -8.00099892e-02, -8.00099892e-02, -8.00099892e-02,
-1.40168724e-02, -1.40168724e-02, -1.40168724e-02, -1.40168724e-02,
4.44646346e-02, 4.44646346e-02, 4.44646346e-02, 4.44646346e-02,
5.51074031e-02, 5.51074031e-02, 5.51074031e-02, 5.51074031e-02,
-4.18963902e+00, -4.18963902e+00, -4.18963902e+00, -4.18963902e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999975e+02, 9.99999975e+02, 9.99999975e+02, 9.99999975e+02,
9.99999906e+02, 9.99999906e+02, 9.99999906e+02, 9.99999906e+02,
9.99999696e+02, 9.99999696e+02, 9.99999696e+02, 9.99999696e+02,
9.99999050e+02, 9.99999050e+02, 9.99999050e+02, 9.99999050e+02,
9.99997155e+02, 9.99997155e+02, 9.99997155e+02, 9.99997155e+02,
9.99991840e+02, 9.99991840e+02, 9.99991840e+02, 9.99991840e+02,
9.99977604e+02, 9.99977604e+02, 9.99977604e+02, 9.99977604e+02,
9.99941258e+02, 9.99941258e+02, 9.99941258e+02, 9.99941258e+02,
9.99852986e+02, 9.99852986e+02, 9.99852986e+02, 9.99852986e+02,
9.99649493e+02, 9.99649493e+02, 9.99649493e+02, 9.99649493e+02,
9.99205369e+02, 9.99205369e+02, 9.99205369e+02, 9.99205369e+02,
9.98290366e+02, 9.98290366e+02, 9.98290366e+02, 9.98290366e+02,
9.96516485e+02, 9.96516485e+02, 9.96516485e+02, 9.96516485e+02,
9.93290921e+02, 9.93290921e+02, 9.93290921e+02, 9.93290921e+02,
9.87805996e+02, 9.87805996e+02, 9.87805996e+02, 9.87805996e+02,
9.79103562e+02, 9.79103562e+02, 9.79103562e+02, 9.79103562e+02,
9.66233133e+02, 9.66233133e+02, 9.66233133e+02, 9.66233133e+02,
9.48475131e+02, 9.48475131e+02, 9.48475131e+02, 9.48475131e+02,
9.25547100e+02, 9.25547100e+02, 9.25547100e+02, 9.25547100e+02,
8.97696017e+02, 8.97696017e+02, 8.97696017e+02, 8.97696017e+02,
8.65627412e+02, 8.65627412e+02, 8.65627412e+02, 8.65627412e+02,
8.30301627e+02, 8.30301627e+02, 8.30301627e+02, 8.30301627e+02,
7.92679285e+02, 7.92679285e+02, 7.92679285e+02, 7.92679285e+02,
7.53520678e+02, 7.53520678e+02, 7.53520678e+02, 7.53520678e+02,
7.14478917e+02, 7.14478917e+02, 7.14478917e+02, 7.14478917e+02,
6.77632914e+02, 6.77632914e+02, 6.77632914e+02, 6.77632914e+02,
6.43143598e+02, 6.43143598e+02, 6.43143598e+02, 6.43143598e+02,
6.10999150e+02, 6.10999150e+02, 6.10999150e+02, 6.10999150e+02,
5.81341858e+02, 5.81341858e+02, 5.81341858e+02, 5.81341858e+02,
5.54448013e+02, 5.54448013e+02, 5.54448013e+02, 5.54448013e+02,
5.30711825e+02, 5.30711825e+02, 5.30711825e+02, 5.30711825e+02,
5.10603365e+02, 5.10603365e+02, 5.10603365e+02, 5.10603365e+02,
4.94516248e+02, 4.94516248e+02, 4.94516248e+02, 4.94516248e+02,
4.82637190e+02, 4.82637190e+02, 4.82637190e+02, 4.82637190e+02,
4.74635917e+02, 4.74635917e+02, 4.74635917e+02, 4.74635917e+02,
4.69895823e+02, 4.69895823e+02, 4.69895823e+02, 4.69895823e+02,
4.67151190e+02, 4.67151190e+02, 4.67151190e+02, 4.67151190e+02,
4.65611990e+02, 4.65611990e+02, 4.65611990e+02, 4.65611990e+02,
4.64275780e+02, 4.64275780e+02, 4.64275780e+02, 4.64275780e+02,
4.62848342e+02, 4.62848342e+02, 4.62848342e+02, 4.62848342e+02,
4.60626892e+02, 4.60626892e+02, 4.60626892e+02, 4.60626892e+02,
4.57799422e+02, 4.57799422e+02, 4.57799422e+02, 4.57799422e+02,
4.56027912e+02, 4.56027912e+02, 4.56027912e+02, 4.56027912e+02,
4.55382671e+02, 4.55382671e+02, 4.55382671e+02, 4.55382671e+02,
4.55509319e+02, 4.55509319e+02, 4.55509319e+02, 4.55509319e+02,
4.56736182e+02, 4.56736182e+02, 4.56736182e+02, 4.56736182e+02,
4.59533346e+02, 4.59533346e+02, 4.59533346e+02, 4.59533346e+02,
4.61594941e+02, 4.61594941e+02, 4.61594941e+02, 4.61594941e+02,
4.62637384e+02, 4.62637384e+02, 4.62637384e+02, 4.62637384e+02,
4.62728900e+02, 4.62728900e+02, 4.62728900e+02, 4.62728900e+02,
4.62351006e+02, 4.62351006e+02, 4.62351006e+02, 4.62351006e+02,
4.60928952e+02, 4.60928952e+02, 4.60928952e+02, 4.60928952e+02,
4.57695734e+02, 4.57695734e+02, 4.57695734e+02, 4.57695734e+02,
4.47171068e+02, 4.47171068e+02, 4.47171068e+02, 4.47171068e+02,
2.71217336e+02, 2.71217336e+02, 2.71217336e+02, 2.71217336e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999971,
0.99999971, 0.99999971, 0.99999971, 0.99999911, 0.99999911,
0.99999911, 0.99999911, 0.99999739, 0.99999739, 0.99999739,
0.99999739, 0.99999267, 0.99999267, 0.99999267, 0.99999267,
0.99998031, 0.99998031, 0.99998031, 0.99998031, 0.99994944,
0.99994944, 0.99994944, 0.99994944, 0.999876 , 0.999876 ,
0.999876 , 0.999876 , 0.9997101 , 0.9997101 , 0.9997101 ,
0.9997101 , 0.99935495, 0.99935495, 0.99935495, 0.99935495,
0.9986367 , 0.9986367 , 0.9986367 , 0.9986367 , 0.99726837,
0.99726837, 0.99726837, 0.99726837, 0.99482024, 0.99482024,
0.99482024, 0.99482024, 0.99071741, 0.99071741, 0.99071741,
0.99071741, 0.9842884 , 0.9842884 , 0.9842884 , 0.9842884 ,
0.9748737 , 0.9748737 , 0.9748737 , 0.9748737 , 0.96197251,
0.96197251, 0.96197251, 0.96197251, 0.94537359, 0.94537359,
0.94537359, 0.94537359, 0.92521078, 0.92521078, 0.92521078,
0.92521078, 0.90191525, 0.90191525, 0.90191525, 0.90191525,
0.876085 , 0.876085 , 0.876085 , 0.876085 , 0.84832273,
0.84832273, 0.84832273, 0.84832273, 0.81913764, 0.81913764,
0.81913764, 0.81913764, 0.78951498, 0.78951498, 0.78951498,
0.78951498, 0.76100793, 0.76100793, 0.76100793, 0.76100793,
0.73384867, 0.73384867, 0.73384867, 0.73384867, 0.70805934,
0.70805934, 0.70805934, 0.70805934, 0.68378781, 0.68378781,
0.68378781, 0.68378781, 0.66128539, 0.66128539, 0.66128539,
0.66128539, 0.64092085, 0.64092085, 0.64092085, 0.64092085,
0.62314771, 0.62314771, 0.62314771, 0.62314771, 0.60843108,
0.60843108, 0.60843108, 0.60843108, 0.59706805, 0.59706805,
0.59706805, 0.59706805, 0.58908105, 0.58908105, 0.58908105,
0.58908105, 0.58396071, 0.58396071, 0.58396071, 0.58396071,
0.5810339 , 0.5810339 , 0.5810339 , 0.5810339 , 0.57920442,
0.57920442, 0.57920442, 0.57920442, 0.57791599, 0.57791599,
0.57791599, 0.57791599, 0.57661402, 0.57661402, 0.57661402,
0.57661402, 0.5748629 , 0.5748629 , 0.5748629 , 0.5748629 ,
0.57227022, 0.57227022, 0.57227022, 0.57227022, 0.57028763,
0.57028763, 0.57028763, 0.57028763, 0.56933094, 0.56933094,
0.56933094, 0.56933094, 0.56902355, 0.56902355, 0.56902355,
0.56902355, 0.56940079, 0.56940079, 0.56940079, 0.56940079,
0.57104666, 0.57104666, 0.57104666, 0.57104666, 0.57246836,
0.57246836, 0.57246836, 0.57246836, 0.57162258, 0.57162258,
0.57162258, 0.57162258, 0.56923572, 0.56923572, 0.56923572,
0.56923572, 0.56817358, 0.56817358, 0.56817358, 0.56817358,
0.58016529, 0.58016529, 0.58016529, 0.58016529, 0.79143159,
0.79143159, 0.79143159, 0.79143159, 4.85974362, 4.85974362,
4.85974362, 4.85974362, 5.81302905, 5.81302905, 5.81302905,
5.81302905, 4.16554379, 4.16554379, 4.16554379, 4.16554379,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974469e+01, -1.95974469e+01, -1.95974469e+01, -1.95974469e+01,
-1.95974390e+01, -1.95974390e+01, -1.95974390e+01, -1.95974390e+01,
-1.95974166e+01, -1.95974166e+01, -1.95974166e+01, -1.95974166e+01,
-1.95973522e+01, -1.95973522e+01, -1.95973522e+01, -1.95973522e+01,
-1.95971757e+01, -1.95971757e+01, -1.95971757e+01, -1.95971757e+01,
-1.95967133e+01, -1.95967133e+01, -1.95967133e+01, -1.95967133e+01,
-1.95955581e+01, -1.95955581e+01, -1.95955581e+01, -1.95955581e+01,
-1.95928103e+01, -1.95928103e+01, -1.95928103e+01, -1.95928103e+01,
-1.95866019e+01, -1.95866019e+01, -1.95866019e+01, -1.95866019e+01,
-1.95733099e+01, -1.95733099e+01, -1.95733099e+01, -1.95733099e+01,
-1.95464179e+01, -1.95464179e+01, -1.95464179e+01, -1.95464179e+01,
-1.94951499e+01, -1.94951499e+01, -1.94951499e+01, -1.94951499e+01,
-1.94032968e+01, -1.94032968e+01, -1.94032968e+01, -1.94032968e+01,
-1.92489814e+01, -1.92489814e+01, -1.92489814e+01, -1.92489814e+01,
-1.90061827e+01, -1.90061827e+01, -1.90061827e+01, -1.90061827e+01,
-1.86483677e+01, -1.86483677e+01, -1.86483677e+01, -1.86483677e+01,
-1.81535351e+01, -1.81535351e+01, -1.81535351e+01, -1.81535351e+01,
-1.75089329e+01, -1.75089329e+01, -1.75089329e+01, -1.75089329e+01,
-1.67134622e+01, -1.67134622e+01, -1.67134622e+01, -1.67134622e+01,
-1.57766805e+01, -1.57766805e+01, -1.57766805e+01, -1.57766805e+01,
-1.47147662e+01, -1.47147662e+01, -1.47147662e+01, -1.47147662e+01,
-1.35447639e+01, -1.35447639e+01, -1.35447639e+01, -1.35447639e+01,
-1.22790265e+01, -1.22790265e+01, -1.22790265e+01, -1.22790265e+01,
-1.09641145e+01, -1.09641145e+01, -1.09641145e+01, -1.09641145e+01,
-9.66023669e+00, -9.66023669e+00, -9.66023669e+00, -9.66023669e+00,
-8.37815306e+00, -8.37815306e+00, -8.37815306e+00, -8.37815306e+00,
-7.12552266e+00, -7.12552266e+00, -7.12552266e+00, -7.12552266e+00,
-5.91304958e+00, -5.91304958e+00, -5.91304958e+00, -5.91304958e+00,
-4.75817216e+00, -4.75817216e+00, -4.75817216e+00, -4.75817216e+00,
-3.68577556e+00, -3.68577556e+00, -3.68577556e+00, -3.68577556e+00,
-2.72779239e+00, -2.72779239e+00, -2.72779239e+00, -2.72779239e+00,
-1.91777898e+00, -1.91777898e+00, -1.91777898e+00, -1.91777898e+00,
-1.28310499e+00, -1.28310499e+00, -1.28310499e+00, -1.28310499e+00,
-8.29422624e-01, -8.29422624e-01, -8.29422624e-01, -8.29422624e-01,
-5.41561776e-01, -5.41561776e-01, -5.41561776e-01, -5.41561776e-01,
-3.69927246e-01, -3.69927246e-01, -3.69927246e-01, -3.69927246e-01,
-2.73484493e-01, -2.73484493e-01, -2.73484493e-01, -2.73484493e-01,
-1.97816530e-01, -1.97816530e-01, -1.97816530e-01, -1.97816530e-01,
-1.26255045e-01, -1.26255045e-01, -1.26255045e-01, -1.26255045e-01,
-3.10231901e-02, -3.10231901e-02, -3.10231901e-02, -3.10231901e-02,
1.13087024e-01, 1.13087024e-01, 1.13087024e-01, 1.13087024e-01,
2.24997833e-01, 2.24997833e-01, 2.24997833e-01, 2.24997833e-01,
2.74197895e-01, 2.74197895e-01, 2.74197895e-01, 2.74197895e-01,
2.79075899e-01, 2.79075899e-01, 2.79075899e-01, 2.79075899e-01,
2.45111094e-01, 2.45111094e-01, 2.45111094e-01, 2.45111094e-01,
1.27012783e-01, 1.27012783e-01, 1.27012783e-01, 1.27012783e-01,
-3.74802683e-03, -3.74802683e-03, -3.74802683e-03, -3.74802683e-03,
-7.60495587e-02, -7.60495587e-02, -7.60495587e-02, -7.60495587e-02,
-9.11323448e-02, -9.11323448e-02, -9.11323448e-02, -9.11323448e-02,
-8.66414148e-02, -8.66414148e-02, -8.66414148e-02, -8.66414148e-02,
-4.09801118e-02, -4.09801118e-02, -4.09801118e-02, -4.09801118e-02,
3.37800291e-02, 3.37800291e-02, 3.37800291e-02, 3.37800291e-02,
6.27722422e-02, 6.27722422e-02, 6.27722422e-02, 6.27722422e-02,
3.77295256e-02, 3.77295256e-02, 3.77295256e-02, 3.77295256e-02,
-3.48506696e+00, -3.48506696e+00, -3.48506696e+00, -3.48506696e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999885e+02, 9.99999885e+02, 9.99999885e+02, 9.99999885e+02,
9.99999587e+02, 9.99999587e+02, 9.99999587e+02, 9.99999587e+02,
9.99998749e+02, 9.99998749e+02, 9.99998749e+02, 9.99998749e+02,
9.99996339e+02, 9.99996339e+02, 9.99996339e+02, 9.99996339e+02,
9.99989735e+02, 9.99989735e+02, 9.99989735e+02, 9.99989735e+02,
9.99972435e+02, 9.99972435e+02, 9.99972435e+02, 9.99972435e+02,
9.99929213e+02, 9.99929213e+02, 9.99929213e+02, 9.99929213e+02,
9.99826413e+02, 9.99826413e+02, 9.99826413e+02, 9.99826413e+02,
9.99594173e+02, 9.99594173e+02, 9.99594173e+02, 9.99594173e+02,
9.99097110e+02, 9.99097110e+02, 9.99097110e+02, 9.99097110e+02,
9.98092125e+02, 9.98092125e+02, 9.98092125e+02, 9.98092125e+02,
9.96178599e+02, 9.96178599e+02, 9.96178599e+02, 9.96178599e+02,
9.92758220e+02, 9.92758220e+02, 9.92758220e+02, 9.92758220e+02,
9.87034806e+02, 9.87034806e+02, 9.87034806e+02, 9.87034806e+02,
9.78087556e+02, 9.78087556e+02, 9.78087556e+02, 9.78087556e+02,
9.65030100e+02, 9.65030100e+02, 9.65030100e+02, 9.65030100e+02,
9.47221585e+02, 9.47221585e+02, 9.47221585e+02, 9.47221585e+02,
9.24449980e+02, 9.24449980e+02, 9.24449980e+02, 9.24449980e+02,
8.97001618e+02, 8.97001618e+02, 8.97001618e+02, 8.97001618e+02,
8.65580147e+02, 8.65580147e+02, 8.65580147e+02, 8.65580147e+02,
8.31110268e+02, 8.31110268e+02, 8.31110268e+02, 8.31110268e+02,
7.94502788e+02, 7.94502788e+02, 7.94502788e+02, 7.94502788e+02,
7.56466644e+02, 7.56466644e+02, 7.56466644e+02, 7.56466644e+02,
7.18450539e+02, 7.18450539e+02, 7.18450539e+02, 7.18450539e+02,
6.82418620e+02, 6.82418620e+02, 6.82418620e+02, 6.82418620e+02,
6.48592320e+02, 6.48592320e+02, 6.48592320e+02, 6.48592320e+02,
6.16938186e+02, 6.16938186e+02, 6.16938186e+02, 6.16938186e+02,
5.87570375e+02, 5.87570375e+02, 5.87570375e+02, 5.87570375e+02,
5.60716611e+02, 5.60716611e+02, 5.60716611e+02, 5.60716611e+02,
5.36732244e+02, 5.36732244e+02, 5.36732244e+02, 5.36732244e+02,
5.16053779e+02, 5.16053779e+02, 5.16053779e+02, 5.16053779e+02,
4.99117615e+02, 4.99117615e+02, 4.99117615e+02, 4.99117615e+02,
4.86162589e+02, 4.86162589e+02, 4.86162589e+02, 4.86162589e+02,
4.77126861e+02, 4.77126861e+02, 4.77126861e+02, 4.77126861e+02,
4.71375846e+02, 4.71375846e+02, 4.71375846e+02, 4.71375846e+02,
4.68122671e+02, 4.68122671e+02, 4.68122671e+02, 4.68122671e+02,
4.66119857e+02, 4.66119857e+02, 4.66119857e+02, 4.66119857e+02,
4.64734326e+02, 4.64734326e+02, 4.64734326e+02, 4.64734326e+02,
4.63344884e+02, 4.63344884e+02, 4.63344884e+02, 4.63344884e+02,
4.61475963e+02, 4.61475963e+02, 4.61475963e+02, 4.61475963e+02,
4.58685817e+02, 4.58685817e+02, 4.58685817e+02, 4.58685817e+02,
4.56599529e+02, 4.56599529e+02, 4.56599529e+02, 4.56599529e+02,
4.55674010e+02, 4.55674010e+02, 4.55674010e+02, 4.55674010e+02,
4.55497004e+02, 4.55497004e+02, 4.55497004e+02, 4.55497004e+02,
4.56154582e+02, 4.56154582e+02, 4.56154582e+02, 4.56154582e+02,
4.58463143e+02, 4.58463143e+02, 4.58463143e+02, 4.58463143e+02,
4.61025271e+02, 4.61025271e+02, 4.61025271e+02, 4.61025271e+02,
4.62220731e+02, 4.62220731e+02, 4.62220731e+02, 4.62220731e+02,
4.62680443e+02, 4.62680443e+02, 4.62680443e+02, 4.62680443e+02,
4.62542981e+02, 4.62542981e+02, 4.62542981e+02, 4.62542981e+02,
4.61609496e+02, 4.61609496e+02, 4.61609496e+02, 4.61609496e+02,
4.60016813e+02, 4.60016813e+02, 4.60016813e+02, 4.60016813e+02,
4.57384347e+02, 4.57384347e+02, 4.57384347e+02, 4.57384347e+02,
4.50690581e+02, 4.50690581e+02, 4.50690581e+02, 4.50690581e+02,
3.00854088e+02, 3.00854088e+02, 3.00854088e+02, 3.00854088e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999965, 0.99999965, 0.99999965, 0.99999965, 0.99999883,
0.99999883, 0.99999883, 0.99999883, 0.99999668, 0.99999668,
0.99999668, 0.99999668, 0.99999087, 0.99999087, 0.99999087,
0.99999087, 0.99997599, 0.99997599, 0.99997599, 0.99997599,
0.99993958, 0.99993958, 0.99993958, 0.99993958, 0.99985468,
0.99985468, 0.99985468, 0.99985468, 0.99966655, 0.99966655,
0.99966655, 0.99966655, 0.99927127, 0.99927127, 0.99927127,
0.99927127, 0.9984861 , 0.9984861 , 0.9984861 , 0.9984861 ,
0.99701584, 0.99701584, 0.99701584, 0.99701584, 0.99442799,
0.99442799, 0.99442799, 0.99442799, 0.99015699, 0.99015699,
0.99015699, 0.99015699, 0.98355812, 0.98355812, 0.98355812,
0.98355812, 0.97401619, 0.97401619, 0.97401619, 0.97401619,
0.96108383, 0.96108383, 0.96108383, 0.96108383, 0.94459768,
0.94459768, 0.94459768, 0.94459768, 0.92471963, 0.92471963,
0.92471963, 0.92471963, 0.90188293, 0.90188293, 0.90188293,
0.90188293, 0.8766663 , 0.8766663 , 0.8766663 , 0.8766663 ,
0.84964378, 0.84964378, 0.84964378, 0.84964378, 0.82129228,
0.82129228, 0.82129228, 0.82129228, 0.79247278, 0.79247278,
0.79247278, 0.79247278, 0.76464054, 0.76464054, 0.76464054,
0.76464054, 0.73806341, 0.73806341, 0.73806341, 0.73806341,
0.71274558, 0.71274558, 0.71274558, 0.71274558, 0.68880715,
0.68880715, 0.68880715, 0.68880715, 0.66646177, 0.66646177,
0.66646177, 0.66646177, 0.64602927, 0.64602927, 0.64602927,
0.64602927, 0.62792918, 0.62792918, 0.62792918, 0.62792918,
0.61261162, 0.61261162, 0.61261162, 0.61261162, 0.60044938,
0.60044938, 0.60044938, 0.60044938, 0.59153236, 0.59153236,
0.59153236, 0.59153236, 0.58562922, 0.58562922, 0.58562922,
0.58562922, 0.58199914, 0.58199914, 0.58199914, 0.58199914,
0.57990817, 0.57990817, 0.57990817, 0.57990817, 0.57839319,
0.57839319, 0.57839319, 0.57839319, 0.57707272, 0.57707272,
0.57707272, 0.57707272, 0.57556284, 0.57556284, 0.57556284,
0.57556284, 0.57325415, 0.57325415, 0.57325415, 0.57325415,
0.57098055, 0.57098055, 0.57098055, 0.57098055, 0.5697302 ,
0.5697302 , 0.5697302 , 0.5697302 , 0.56931036, 0.56931036,
0.56931036, 0.56931036, 0.56937657, 0.56937657, 0.56937657,
0.56937657, 0.5705669 , 0.5705669 , 0.5705669 , 0.5705669 ,
0.57256309, 0.57256309, 0.57256309, 0.57256309, 0.57325538,
0.57325538, 0.57325538, 0.57325538, 0.57183133, 0.57183133,
0.57183133, 0.57183133, 0.56912943, 0.56912943, 0.56912943,
0.56912943, 0.56776262, 0.56776262, 0.56776262, 0.56776262,
0.57933344, 0.57933344, 0.57933344, 0.57933344, 0.79052151,
0.79052151, 0.79052151, 0.79052151, 4.85360037, 4.85360037,
4.85360037, 4.85360037, 5.84137874, 5.84137874, 5.84137874,
5.84137874, 4.52085551, 4.52085551, 4.52085551, 4.52085551,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974370e+01, -1.95974370e+01, -1.95974370e+01, -1.95974370e+01,
-1.95974062e+01, -1.95974062e+01, -1.95974062e+01, -1.95974062e+01,
-1.95973256e+01, -1.95973256e+01, -1.95973256e+01, -1.95973256e+01,
-1.95971084e+01, -1.95971084e+01, -1.95971084e+01, -1.95971084e+01,
-1.95965517e+01, -1.95965517e+01, -1.95965517e+01, -1.95965517e+01,
-1.95951892e+01, -1.95951892e+01, -1.95951892e+01, -1.95951892e+01,
-1.95920125e+01, -1.95920125e+01, -1.95920125e+01, -1.95920125e+01,
-1.95849721e+01, -1.95849721e+01, -1.95849721e+01, -1.95849721e+01,
-1.95701774e+01, -1.95701774e+01, -1.95701774e+01, -1.95701774e+01,
-1.95407776e+01, -1.95407776e+01, -1.95407776e+01, -1.95407776e+01,
-1.94856819e+01, -1.94856819e+01, -1.94856819e+01, -1.94856819e+01,
-1.93885625e+01, -1.93885625e+01, -1.93885625e+01, -1.93885625e+01,
-1.92278595e+01, -1.92278595e+01, -1.92278595e+01, -1.92278595e+01,
-1.89785124e+01, -1.89785124e+01, -1.89785124e+01, -1.89785124e+01,
-1.86156156e+01, -1.86156156e+01, -1.86156156e+01, -1.86156156e+01,
-1.81192078e+01, -1.81192078e+01, -1.81192078e+01, -1.81192078e+01,
-1.74785049e+01, -1.74785049e+01, -1.74785049e+01, -1.74785049e+01,
-1.66938078e+01, -1.66938078e+01, -1.66938078e+01, -1.66938078e+01,
-1.57752383e+01, -1.57752383e+01, -1.57752383e+01, -1.57752383e+01,
-1.47387955e+01, -1.47387955e+01, -1.47387955e+01, -1.47387955e+01,
-1.36009952e+01, -1.36009952e+01, -1.36009952e+01, -1.36009952e+01,
-1.23736297e+01, -1.23736297e+01, -1.23736297e+01, -1.23736297e+01,
-1.10969073e+01, -1.10969073e+01, -1.10969073e+01, -1.10969073e+01,
-9.82853423e+00, -9.82853423e+00, -9.82853423e+00, -9.82853423e+00,
-8.57904516e+00, -8.57904516e+00, -8.57904516e+00, -8.57904516e+00,
-7.35526177e+00, -7.35526177e+00, -7.35526177e+00, -7.35526177e+00,
-6.16596318e+00, -6.16596318e+00, -6.16596318e+00, -6.16596318e+00,
-5.02576394e+00, -5.02576394e+00, -5.02576394e+00, -5.02576394e+00,
-3.95645826e+00, -3.95645826e+00, -3.95645826e+00, -3.95645826e+00,
-2.98656698e+00, -2.98656698e+00, -2.98656698e+00, -2.98656698e+00,
-2.14870831e+00, -2.14870831e+00, -2.14870831e+00, -2.14870831e+00,
-1.47116257e+00, -1.47116257e+00, -1.47116257e+00, -1.47116257e+00,
-9.69349069e-01, -9.69349069e-01, -9.69349069e-01, -9.69349069e-01,
-6.31501761e-01, -6.31501761e-01, -6.31501761e-01, -6.31501761e-01,
-4.28578097e-01, -4.28578097e-01, -4.28578097e-01, -4.28578097e-01,
-3.05263503e-01, -3.05263503e-01, -3.05263503e-01, -3.05263503e-01,
-2.25158174e-01, -2.25158174e-01, -2.25158174e-01, -2.25158174e-01,
-1.50493126e-01, -1.50493126e-01, -1.50493126e-01, -1.50493126e-01,
-6.50892648e-02, -6.50892648e-02, -6.50892648e-02, -6.50892648e-02,
6.41363546e-02, 6.41363546e-02, 6.41363546e-02, 6.41363546e-02,
1.88613090e-01, 1.88613090e-01, 1.88613090e-01, 1.88613090e-01,
2.56441246e-01, 2.56441246e-01, 2.56441246e-01, 2.56441246e-01,
2.75531189e-01, 2.75531189e-01, 2.75531189e-01, 2.75531189e-01,
2.60699180e-01, 2.60699180e-01, 2.60699180e-01, 2.60699180e-01,
1.76470541e-01, 1.76470541e-01, 1.76470541e-01, 1.76470541e-01,
3.56270391e-02, 3.56270391e-02, 3.56270391e-02, 3.56270391e-02,
-4.88762956e-02, -4.88762956e-02, -4.88762956e-02, -4.88762956e-02,
-8.67370262e-02, -8.67370262e-02, -8.67370262e-02, -8.67370262e-02,
-8.76578509e-02, -8.76578509e-02, -8.76578509e-02, -8.76578509e-02,
-6.10342800e-02, -6.10342800e-02, -6.10342800e-02, -6.10342800e-02,
9.32487586e-03, 9.32487586e-03, 9.32487586e-03, 9.32487586e-03,
6.88182460e-02, 6.88182460e-02, 6.88182460e-02, 6.88182460e-02,
7.39662064e-02, 7.39662064e-02, 7.39662064e-02, 7.39662064e-02,
1.82197835e-02, 1.82197835e-02, 1.82197835e-02, 1.82197835e-02,
-2.88079782e+00, -2.88079782e+00, -2.88079782e+00, -2.88079782e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99999514e+02, 9.99999514e+02, 9.99999514e+02, 9.99999514e+02,
9.99998362e+02, 9.99998362e+02, 9.99998362e+02, 9.99998362e+02,
9.99995345e+02, 9.99995345e+02, 9.99995345e+02, 9.99995345e+02,
9.99987220e+02, 9.99987220e+02, 9.99987220e+02, 9.99987220e+02,
9.99966390e+02, 9.99966390e+02, 9.99966390e+02, 9.99966390e+02,
9.99915413e+02, 9.99915413e+02, 9.99915413e+02, 9.99915413e+02,
9.99796564e+02, 9.99796564e+02, 9.99796564e+02, 9.99796564e+02,
9.99533214e+02, 9.99533214e+02, 9.99533214e+02, 9.99533214e+02,
9.98980002e+02, 9.98980002e+02, 9.98980002e+02, 9.98980002e+02,
9.97881452e+02, 9.97881452e+02, 9.97881452e+02, 9.97881452e+02,
9.95825567e+02, 9.95825567e+02, 9.95825567e+02, 9.95825567e+02,
9.92210502e+02, 9.92210502e+02, 9.92210502e+02, 9.92210502e+02,
9.86253649e+02, 9.86253649e+02, 9.86253649e+02, 9.86253649e+02,
9.77072357e+02, 9.77072357e+02, 9.77072357e+02, 9.77072357e+02,
9.63842431e+02, 9.63842431e+02, 9.63842431e+02, 9.63842431e+02,
9.45996603e+02, 9.45996603e+02, 9.45996603e+02, 9.45996603e+02,
9.23386326e+02, 9.23386326e+02, 9.23386326e+02, 9.23386326e+02,
8.96331244e+02, 8.96331244e+02, 8.96331244e+02, 8.96331244e+02,
8.65530285e+02, 8.65530285e+02, 8.65530285e+02, 8.65530285e+02,
8.31873307e+02, 8.31873307e+02, 8.31873307e+02, 8.31873307e+02,
7.96224374e+02, 7.96224374e+02, 7.96224374e+02, 7.96224374e+02,
7.59246685e+02, 7.59246685e+02, 7.59246685e+02, 7.59246685e+02,
7.22211610e+02, 7.22211610e+02, 7.22211610e+02, 7.22211610e+02,
6.86971971e+02, 6.86971971e+02, 6.86971971e+02, 6.86971971e+02,
6.53798816e+02, 6.53798816e+02, 6.53798816e+02, 6.53798816e+02,
6.22643027e+02, 6.22643027e+02, 6.22643027e+02, 6.22643027e+02,
5.93594856e+02, 5.93594856e+02, 5.93594856e+02, 5.93594856e+02,
5.66846654e+02, 5.66846654e+02, 5.66846654e+02, 5.66846654e+02,
5.42704013e+02, 5.42704013e+02, 5.42704013e+02, 5.42704013e+02,
5.21575845e+02, 5.21575845e+02, 5.21575845e+02, 5.21575845e+02,
5.03891081e+02, 5.03891081e+02, 5.03891081e+02, 5.03891081e+02,
4.89983321e+02, 4.89983321e+02, 4.89983321e+02, 4.89983321e+02,
4.79868835e+02, 4.79868835e+02, 4.79868835e+02, 4.79868835e+02,
4.73219637e+02, 4.73219637e+02, 4.73219637e+02, 4.73219637e+02,
4.69161552e+02, 4.69161552e+02, 4.69161552e+02, 4.69161552e+02,
4.66853875e+02, 4.66853875e+02, 4.66853875e+02, 4.66853875e+02,
4.65206448e+02, 4.65206448e+02, 4.65206448e+02, 4.65206448e+02,
4.63785479e+02, 4.63785479e+02, 4.63785479e+02, 4.63785479e+02,
4.62163120e+02, 4.62163120e+02, 4.62163120e+02, 4.62163120e+02,
4.59669599e+02, 4.59669599e+02, 4.59669599e+02, 4.59669599e+02,
4.57239211e+02, 4.57239211e+02, 4.57239211e+02, 4.57239211e+02,
4.55974237e+02, 4.55974237e+02, 4.55974237e+02, 4.55974237e+02,
4.55650208e+02, 4.55650208e+02, 4.55650208e+02, 4.55650208e+02,
4.55892185e+02, 4.55892185e+02, 4.55892185e+02, 4.55892185e+02,
4.57462397e+02, 4.57462397e+02, 4.57462397e+02, 4.57462397e+02,
4.60168133e+02, 4.60168133e+02, 4.60168133e+02, 4.60168133e+02,
4.61914920e+02, 4.61914920e+02, 4.61914920e+02, 4.61914920e+02,
4.62462614e+02, 4.62462614e+02, 4.62462614e+02, 4.62462614e+02,
4.62562577e+02, 4.62562577e+02, 4.62562577e+02, 4.62562577e+02,
4.62068300e+02, 4.62068300e+02, 4.62068300e+02, 4.62068300e+02,
4.60681300e+02, 4.60681300e+02, 4.60681300e+02, 4.60681300e+02,
4.59493495e+02, 4.59493495e+02, 4.59493495e+02, 4.59493495e+02,
4.57392928e+02, 4.57392928e+02, 4.57392928e+02, 4.57392928e+02,
4.53913561e+02, 4.53913561e+02, 4.53913561e+02, 4.53913561e+02,
3.30038409e+02, 3.30038409e+02, 3.30038409e+02, 3.30038409e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999867, 0.99999867, 0.99999867, 0.99999867, 0.99999578,
0.99999578, 0.99999578, 0.99999578, 0.99998875, 0.99998875,
0.99998875, 0.99998875, 0.99997098, 0.99997098, 0.99997098,
0.99997098, 0.99992836, 0.99992836, 0.99992836, 0.99992836,
0.99983087, 0.99983087, 0.99983087, 0.99983087, 0.99961879,
0.99961879, 0.99961879, 0.99961879, 0.99918112, 0.99918112,
0.99918112, 0.99918112, 0.9983266 , 0.9983266 , 0.9983266 ,
0.9983266 , 0.99675268, 0.99675268, 0.99675268, 0.99675268,
0.99402545, 0.99402545, 0.99402545, 0.99402545, 0.98958998,
0.98958998, 0.98958998, 0.98958998, 0.98282879, 0.98282879,
0.98282879, 0.98282879, 0.97316956, 0.97316956, 0.97316956,
0.97316956, 0.96021489, 0.96021489, 0.96021489, 0.96021489,
0.94384469, 0.94384469, 0.94384469, 0.94384469, 0.92424484,
0.92424484, 0.92424484, 0.92424484, 0.90184854, 0.90184854,
0.90184854, 0.90184854, 0.87721523, 0.87721523, 0.87721523,
0.87721523, 0.85089155, 0.85089155, 0.85089155, 0.85089155,
0.82332582, 0.82332582, 0.82332582, 0.82332582, 0.79527381,
0.79527381, 0.79527381, 0.79527381, 0.76809201, 0.76809201,
0.76809201, 0.76809201, 0.74208156, 0.74208156, 0.74208156,
0.74208156, 0.71723328, 0.71723328, 0.71723328, 0.71723328,
0.69364464, 0.69364464, 0.69364464, 0.69364464, 0.67149312,
0.67149312, 0.67149312, 0.67149312, 0.65105899, 0.65105899,
0.65105899, 0.65105899, 0.63271791, 0.63271791, 0.63271791,
0.63271791, 0.61690679, 0.61690679, 0.61690679, 0.61690679,
0.60401515, 0.60401515, 0.60401515, 0.60401515, 0.59425918,
0.59425918, 0.59425918, 0.59425918, 0.58748277, 0.58748277,
0.58748277, 0.58748277, 0.58322875, 0.58322875, 0.58322875,
0.58322875, 0.58062538, 0.58062538, 0.58062538, 0.58062538,
0.57898247, 0.57898247, 0.57898247, 0.57898247, 0.57755952,
0.57755952, 0.57755952, 0.57755952, 0.57611261, 0.57611261,
0.57611261, 0.57611261, 0.57414348, 0.57414348, 0.57414348,
0.57414348, 0.57178794, 0.57178794, 0.57178794, 0.57178794,
0.57021715, 0.57021715, 0.57021715, 0.57021715, 0.56956111,
0.56956111, 0.56956111, 0.56956111, 0.5694658 , 0.5694658 ,
0.5694658 , 0.5694658 , 0.57015934, 0.57015934, 0.57015934,
0.57015934, 0.57215308, 0.57215308, 0.57215308, 0.57215308,
0.57357105, 0.57357105, 0.57357105, 0.57357105, 0.57362037,
0.57362037, 0.57362037, 0.57362037, 0.57184744, 0.57184744,
0.57184744, 0.57184744, 0.56886696, 0.56886696, 0.56886696,
0.56886696, 0.56703172, 0.56703172, 0.56703172, 0.56703172,
0.57864765, 0.57864765, 0.57864765, 0.57864765, 0.78978655,
0.78978655, 0.78978655, 0.78978655, 4.84874627, 4.84874627,
4.84874627, 4.84874627, 5.86893587, 5.86893587, 5.86893587,
5.86893587, 4.87589923, 4.87589923, 4.87589923, 4.87589923,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95974004e+01, -1.95974004e+01, -1.95974004e+01, -1.95974004e+01,
-1.95972922e+01, -1.95972922e+01, -1.95972922e+01, -1.95972922e+01,
-1.95970290e+01, -1.95970290e+01, -1.95970290e+01, -1.95970290e+01,
-1.95963642e+01, -1.95963642e+01, -1.95963642e+01, -1.95963642e+01,
-1.95947694e+01, -1.95947694e+01, -1.95947694e+01, -1.95947694e+01,
-1.95911214e+01, -1.95911214e+01, -1.95911214e+01, -1.95911214e+01,
-1.95831849e+01, -1.95831849e+01, -1.95831849e+01, -1.95831849e+01,
-1.95668027e+01, -1.95668027e+01, -1.95668027e+01, -1.95668027e+01,
-1.95348031e+01, -1.95348031e+01, -1.95348031e+01, -1.95348031e+01,
-1.94758134e+01, -1.94758134e+01, -1.94758134e+01, -1.94758134e+01,
-1.93734365e+01, -1.93734365e+01, -1.93734365e+01, -1.93734365e+01,
-1.92064799e+01, -1.92064799e+01, -1.92064799e+01, -1.92064799e+01,
-1.89508611e+01, -1.89508611e+01, -1.89508611e+01, -1.89508611e+01,
-1.85832555e+01, -1.85832555e+01, -1.85832555e+01, -1.85832555e+01,
-1.80856173e+01, -1.80856173e+01, -1.80856173e+01, -1.80856173e+01,
-1.74489569e+01, -1.74489569e+01, -1.74489569e+01, -1.74489569e+01,
-1.66748031e+01, -1.66748031e+01, -1.66748031e+01, -1.66748031e+01,
-1.57737222e+01, -1.57737222e+01, -1.57737222e+01, -1.57737222e+01,
-1.47614795e+01, -1.47614795e+01, -1.47614795e+01, -1.47614795e+01,
-1.36540462e+01, -1.36540462e+01, -1.36540462e+01, -1.36540462e+01,
-1.24627500e+01, -1.24627500e+01, -1.24627500e+01, -1.24627500e+01,
-1.12223935e+01, -1.12223935e+01, -1.12223935e+01, -1.12223935e+01,
-9.98784228e+00, -9.98784228e+00, -9.98784228e+00, -9.98784228e+00,
-8.76973584e+00, -8.76973584e+00, -8.76973584e+00, -8.76973584e+00,
-7.57415342e+00, -7.57415342e+00, -7.57415342e+00, -7.57415342e+00,
-6.40832079e+00, -6.40832079e+00, -6.40832079e+00, -6.40832079e+00,
-5.28453104e+00, -5.28453104e+00, -5.28453104e+00, -5.28453104e+00,
-4.22138557e+00, -4.22138557e+00, -4.22138557e+00, -4.22138557e+00,
-3.24449956e+00, -3.24449956e+00, -3.24449956e+00, -3.24449956e+00,
-2.38417185e+00, -2.38417185e+00, -2.38417185e+00, -2.38417185e+00,
-1.67026111e+00, -1.67026111e+00, -1.67026111e+00, -1.67026111e+00,
-1.12140919e+00, -1.12140919e+00, -1.12140919e+00, -1.12140919e+00,
-7.38356684e-01, -7.38356684e-01, -7.38356684e-01, -7.38356684e-01,
-4.93334980e-01, -4.93334980e-01, -4.93334980e-01, -4.93334980e-01,
-3.49056282e-01, -3.49056282e-01, -3.49056282e-01, -3.49056282e-01,
-2.52375478e-01, -2.52375478e-01, -2.52375478e-01, -2.52375478e-01,
-1.75397469e-01, -1.75397469e-01, -1.75397469e-01, -1.75397469e-01,
-9.51083212e-02, -9.51083212e-02, -9.51083212e-02, -9.51083212e-02,
1.66418888e-02, 1.66418888e-02, 1.66418888e-02, 1.66418888e-02,
1.50553797e-01, 1.50553797e-01, 1.50553797e-01, 1.50553797e-01,
2.34098283e-01, 2.34098283e-01, 2.34098283e-01, 2.34098283e-01,
2.65453663e-01, 2.65453663e-01, 2.65453663e-01, 2.65453663e-01,
2.65583246e-01, 2.65583246e-01, 2.65583246e-01, 2.65583246e-01,
2.15878598e-01, 2.15878598e-01, 2.15878598e-01, 2.15878598e-01,
8.50200679e-02, 8.50200679e-02, 8.50200679e-02, 8.50200679e-02,
-2.53150527e-02, -2.53150527e-02, -2.53150527e-02, -2.53150527e-02,
-7.07834536e-02, -7.07834536e-02, -7.07834536e-02, -7.07834536e-02,
-8.52030740e-02, -8.52030740e-02, -8.52030740e-02, -8.52030740e-02,
-7.38433396e-02, -7.38433396e-02, -7.38433396e-02, -7.38433396e-02,
-1.83894011e-02, -1.83894011e-02, -1.83894011e-02, -1.83894011e-02,
4.92953993e-02, 4.92953993e-02, 4.92953993e-02, 4.92953993e-02,
8.87128688e-02, 8.87128688e-02, 8.87128688e-02, 8.87128688e-02,
7.93095475e-02, 7.93095475e-02, 7.93095475e-02, 7.93095475e-02,
-4.65037464e-03, -4.65037464e-03, -4.65037464e-03, -4.65037464e-03,
-2.35462822e+00, -2.35462822e+00, -2.35462822e+00, -2.35462822e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99998143e+02, 9.99998143e+02, 9.99998143e+02, 9.99998143e+02,
9.99994094e+02, 9.99994094e+02, 9.99994094e+02, 9.99994094e+02,
9.99984249e+02, 9.99984249e+02, 9.99984249e+02, 9.99984249e+02,
9.99959373e+02, 9.99959373e+02, 9.99959373e+02, 9.99959373e+02,
9.99899705e+02, 9.99899705e+02, 9.99899705e+02, 9.99899705e+02,
9.99763230e+02, 9.99763230e+02, 9.99763230e+02, 9.99763230e+02,
9.99466373e+02, 9.99466373e+02, 9.99466373e+02, 9.99466373e+02,
9.98853848e+02, 9.98853848e+02, 9.98853848e+02, 9.98853848e+02,
9.97658336e+02, 9.97658336e+02, 9.97658336e+02, 9.97658336e+02,
9.95457711e+02, 9.95457711e+02, 9.95457711e+02, 9.95457711e+02,
9.91648494e+02, 9.91648494e+02, 9.91648494e+02, 9.91648494e+02,
9.85463501e+02, 9.85463501e+02, 9.85463501e+02, 9.85463501e+02,
9.76058768e+02, 9.76058768e+02, 9.76058768e+02, 9.76058768e+02,
9.62670205e+02, 9.62670205e+02, 9.62670205e+02, 9.62670205e+02,
9.44799218e+02, 9.44799218e+02, 9.44799218e+02, 9.44799218e+02,
9.22354408e+02, 9.22354408e+02, 9.22354408e+02, 9.22354408e+02,
8.95683407e+02, 8.95683407e+02, 8.95683407e+02, 8.95683407e+02,
8.65478073e+02, 8.65478073e+02, 8.65478073e+02, 8.65478073e+02,
8.32594221e+02, 8.32594221e+02, 8.32594221e+02, 8.32594221e+02,
7.97851707e+02, 7.97851707e+02, 7.97851707e+02, 7.97851707e+02,
7.61874003e+02, 7.61874003e+02, 7.61874003e+02, 7.61874003e+02,
7.25777678e+02, 7.25777678e+02, 7.25777678e+02, 7.25777678e+02,
6.91306690e+02, 6.91306690e+02, 6.91306690e+02, 6.91306690e+02,
6.58775118e+02, 6.58775118e+02, 6.58775118e+02, 6.58775118e+02,
6.28122753e+02, 6.28122753e+02, 6.28122753e+02, 6.28122753e+02,
5.99419362e+02, 5.99419362e+02, 5.99419362e+02, 5.99419362e+02,
5.72823606e+02, 5.72823606e+02, 5.72823606e+02, 5.72823606e+02,
5.48603814e+02, 5.48603814e+02, 5.48603814e+02, 5.48603814e+02,
5.27126068e+02, 5.27126068e+02, 5.27126068e+02, 5.27126068e+02,
5.08814510e+02, 5.08814510e+02, 5.08814510e+02, 5.08814510e+02,
4.94028498e+02, 4.94028498e+02, 4.94028498e+02, 4.94028498e+02,
4.82931682e+02, 4.82931682e+02, 4.82931682e+02, 4.82931682e+02,
4.75278864e+02, 4.75278864e+02, 4.75278864e+02, 4.75278864e+02,
4.70507508e+02, 4.70507508e+02, 4.70507508e+02, 4.70507508e+02,
4.67612437e+02, 4.67612437e+02, 4.67612437e+02, 4.67612437e+02,
4.65811203e+02, 4.65811203e+02, 4.65811203e+02, 4.65811203e+02,
4.64268238e+02, 4.64268238e+02, 4.64268238e+02, 4.64268238e+02,
4.62705833e+02, 4.62705833e+02, 4.62705833e+02, 4.62705833e+02,
4.60568868e+02, 4.60568868e+02, 4.60568868e+02, 4.60568868e+02,
4.58024576e+02, 4.58024576e+02, 4.58024576e+02, 4.58024576e+02,
4.56383188e+02, 4.56383188e+02, 4.56383188e+02, 4.56383188e+02,
4.55784075e+02, 4.55784075e+02, 4.55784075e+02, 4.55784075e+02,
4.55824044e+02, 4.55824044e+02, 4.55824044e+02, 4.55824044e+02,
4.56769147e+02, 4.56769147e+02, 4.56769147e+02, 4.56769147e+02,
4.59243942e+02, 4.59243942e+02, 4.59243942e+02, 4.59243942e+02,
4.61303394e+02, 4.61303394e+02, 4.61303394e+02, 4.61303394e+02,
4.62328948e+02, 4.62328948e+02, 4.62328948e+02, 4.62328948e+02,
4.62486115e+02, 4.62486115e+02, 4.62486115e+02, 4.62486115e+02,
4.62267075e+02, 4.62267075e+02, 4.62267075e+02, 4.62267075e+02,
4.61235100e+02, 4.61235100e+02, 4.61235100e+02, 4.61235100e+02,
4.59928707e+02, 4.59928707e+02, 4.59928707e+02, 4.59928707e+02,
4.59250045e+02, 4.59250045e+02, 4.59250045e+02, 4.59250045e+02,
4.57693976e+02, 4.57693976e+02, 4.57693976e+02, 4.57693976e+02,
4.57023386e+02, 4.57023386e+02, 4.57023386e+02, 4.57023386e+02,
3.58689867e+02, 3.58689867e+02, 3.58689867e+02, 3.58689867e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999538, 0.99999538, 0.99999538, 0.99999538, 0.99998612,
0.99998612, 0.99998612, 0.99998612, 0.99996523, 0.99996523,
0.99996523, 0.99996523, 0.99991566, 0.99991566, 0.99991566,
0.99991566, 0.99980442, 0.99980442, 0.99980442, 0.99980442,
0.99956667, 0.99956667, 0.99956667, 0.99956667, 0.99908438,
0.99908438, 0.99908438, 0.99908438, 0.9981582 , 0.9981582 ,
0.9981582 , 0.9981582 , 0.99647912, 0.99647912, 0.99647912,
0.99647912, 0.99361312, 0.99361312, 0.99361312, 0.99361312,
0.98901706, 0.98901706, 0.98901706, 0.98901706, 0.98210095,
0.98210095, 0.98210095, 0.98210095, 0.97233385, 0.97233385,
0.97233385, 0.97233385, 0.95936505, 0.95936505, 0.95936505,
0.95936505, 0.94311347, 0.94311347, 0.94311347, 0.94311347,
0.92378545, 0.92378545, 0.92378545, 0.92378545, 0.90181228,
0.90181228, 0.90181228, 0.90181228, 0.87773428, 0.87773428,
0.87773428, 0.87773428, 0.85207217, 0.85207217, 0.85207217,
0.85207217, 0.82524779, 0.82524779, 0.82524779, 0.82524779,
0.79793012, 0.79793012, 0.79793012, 0.79793012, 0.77137347,
0.77137347, 0.77137347, 0.77137347, 0.74591438, 0.74591438,
0.74591438, 0.74591438, 0.72153077, 0.72153077, 0.72153077,
0.72153077, 0.69830271, 0.69830271, 0.69830271, 0.69830271,
0.67637729, 0.67637729, 0.67637729, 0.67637729, 0.6559935 ,
0.6559935 , 0.6559935 , 0.6559935 , 0.63749026, 0.63749026,
0.63749026, 0.63749026, 0.62127461, 0.62127461, 0.62127461,
0.62127461, 0.60775437, 0.60775437, 0.60775437, 0.60775437,
0.59719597, 0.59719597, 0.59719597, 0.59719597, 0.58961078,
0.58961078, 0.58961078, 0.58961078, 0.58459875, 0.58459875,
0.58459875, 0.58459875, 0.58154644, 0.58154644, 0.58154644,
0.58154644, 0.57956789, 0.57956789, 0.57956789, 0.57956789,
0.57809384, 0.57809384, 0.57809384, 0.57809384, 0.5766483 ,
0.5766483 , 0.5766483 , 0.5766483 , 0.57490927, 0.57490927,
0.57490927, 0.57490927, 0.57258674, 0.57258674, 0.57258674,
0.57258674, 0.57080227, 0.57080227, 0.57080227, 0.57080227,
0.56988942, 0.56988942, 0.56988942, 0.56988942, 0.56961772,
0.56961772, 0.56961772, 0.56961772, 0.56992665, 0.56992665,
0.56992665, 0.56992665, 0.57149984, 0.57149984, 0.57149984,
0.57149984, 0.57344071, 0.57344071, 0.57344071, 0.57344071,
0.5741351 , 0.5741351 , 0.5741351 , 0.5741351 , 0.57370279,
0.57370279, 0.57370279, 0.57370279, 0.57173725, 0.57173725,
0.57173725, 0.57173725, 0.56835509, 0.56835509, 0.56835509,
0.56835509, 0.56625614, 0.56625614, 0.56625614, 0.56625614,
0.57818403, 0.57818403, 0.57818403, 0.57818403, 0.78902347,
0.78902347, 0.78902347, 0.78902347, 4.84563091, 4.84563091,
4.84563091, 4.84563091, 5.89681659, 5.89681659, 5.89681659,
5.89681659, 5.22913532, 5.22913532, 5.22913532, 5.22913532,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95972771e+01, -1.95972771e+01, -1.95972771e+01, -1.95972771e+01,
-1.95969308e+01, -1.95969308e+01, -1.95969308e+01, -1.95969308e+01,
-1.95961489e+01, -1.95961489e+01, -1.95961489e+01, -1.95961489e+01,
-1.95942943e+01, -1.95942943e+01, -1.95942943e+01, -1.95942943e+01,
-1.95901316e+01, -1.95901316e+01, -1.95901316e+01, -1.95901316e+01,
-1.95812342e+01, -1.95812342e+01, -1.95812342e+01, -1.95812342e+01,
-1.95631808e+01, -1.95631808e+01, -1.95631808e+01, -1.95631808e+01,
-1.95284944e+01, -1.95284944e+01, -1.95284944e+01, -1.95284944e+01,
-1.94655530e+01, -1.94655530e+01, -1.94655530e+01, -1.94655530e+01,
-1.93579374e+01, -1.93579374e+01, -1.93579374e+01, -1.93579374e+01,
-1.91848670e+01, -1.91848670e+01, -1.91848670e+01, -1.91848670e+01,
-1.89232491e+01, -1.89232491e+01, -1.89232491e+01, -1.89232491e+01,
-1.85512896e+01, -1.85512896e+01, -1.85512896e+01, -1.85512896e+01,
-1.80527404e+01, -1.80527404e+01, -1.80527404e+01, -1.80527404e+01,
-1.74202459e+01, -1.74202459e+01, -1.74202459e+01, -1.74202459e+01,
-1.66564095e+01, -1.66564095e+01, -1.66564095e+01, -1.66564095e+01,
-1.57721388e+01, -1.57721388e+01, -1.57721388e+01, -1.57721388e+01,
-1.47829225e+01, -1.47829225e+01, -1.47829225e+01, -1.47829225e+01,
-1.37041866e+01, -1.37041866e+01, -1.37041866e+01, -1.37041866e+01,
-1.25468001e+01, -1.25468001e+01, -1.25468001e+01, -1.25468001e+01,
-1.13410969e+01, -1.13410969e+01, -1.13410969e+01, -1.13410969e+01,
-1.01388758e+01, -1.01388758e+01, -1.01388758e+01, -1.01388758e+01,
-8.95090319e+00, -8.95090319e+00, -8.95090319e+00, -8.95090319e+00,
-7.78279664e+00, -7.78279664e+00, -7.78279664e+00, -7.78279664e+00,
-6.64045094e+00, -6.64045094e+00, -6.64045094e+00, -6.64045094e+00,
-5.53417374e+00, -5.53417374e+00, -5.53417374e+00, -5.53417374e+00,
-4.47992916e+00, -4.47992916e+00, -4.47992916e+00, -4.47992916e+00,
-3.50010154e+00, -3.50010154e+00, -3.50010154e+00, -3.50010154e+00,
-2.62282955e+00, -2.62282955e+00, -2.62282955e+00, -2.62282955e+00,
-1.87734906e+00, -1.87734906e+00, -1.87734906e+00, -1.87734906e+00,
-1.28680720e+00, -1.28680720e+00, -1.28680720e+00, -1.28680720e+00,
-8.56753744e-01, -8.56753744e-01, -8.56753744e-01, -8.56753744e-01,
-5.73064847e-01, -5.73064847e-01, -5.73064847e-01, -5.73064847e-01,
-3.96338091e-01, -3.96338091e-01, -3.96338091e-01, -3.96338091e-01,
-2.87478608e-01, -2.87478608e-01, -2.87478608e-01, -2.87478608e-01,
-2.01767988e-01, -2.01767988e-01, -2.01767988e-01, -2.01767988e-01,
-1.21315708e-01, -1.21315708e-01, -1.21315708e-01, -1.21315708e-01,
-2.45951015e-02, -2.45951015e-02, -2.45951015e-02, -2.45951015e-02,
1.06631073e-01, 1.06631073e-01, 1.06631073e-01, 1.06631073e-01,
2.08068982e-01, 2.08068982e-01, 2.08068982e-01, 2.08068982e-01,
2.54184782e-01, 2.54184782e-01, 2.54184782e-01, 2.54184782e-01,
2.62270660e-01, 2.62270660e-01, 2.62270660e-01, 2.62270660e-01,
2.37118542e-01, 2.37118542e-01, 2.37118542e-01, 2.37118542e-01,
1.37104974e-01, 1.37104974e-01, 1.37104974e-01, 1.37104974e-01,
1.14799455e-02, 1.14799455e-02, 1.14799455e-02, 1.14799455e-02,
-5.88503272e-02, -5.88503272e-02, -5.88503272e-02, -5.88503272e-02,
-7.72674055e-02, -7.72674055e-02, -7.72674055e-02, -7.72674055e-02,
-7.69762484e-02, -7.69762484e-02, -7.69762484e-02, -7.69762484e-02,
-4.30209826e-02, -4.30209826e-02, -4.30209826e-02, -4.30209826e-02,
2.68143715e-02, 2.68143715e-02, 2.68143715e-02, 2.68143715e-02,
7.36951015e-02, 7.36951015e-02, 7.36951015e-02, 7.36951015e-02,
1.00445939e-01, 1.00445939e-01, 1.00445939e-01, 1.00445939e-01,
7.72401459e-02, 7.72401459e-02, 7.72401459e-02, 7.72401459e-02,
-3.04146394e-02, -3.04146394e-02, -3.04146394e-02, -3.04146394e-02,
-1.89020525e+00, -1.89020525e+00, -1.89020525e+00, -1.89020525e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99993532e+02, 9.99993532e+02, 9.99993532e+02, 9.99993532e+02,
9.99980573e+02, 9.99980573e+02, 9.99980573e+02, 9.99980573e+02,
9.99951320e+02, 9.99951320e+02, 9.99951320e+02, 9.99951320e+02,
9.99881930e+02, 9.99881930e+02, 9.99881930e+02, 9.99881930e+02,
9.99726202e+02, 9.99726202e+02, 9.99726202e+02, 9.99726202e+02,
9.99393418e+02, 9.99393418e+02, 9.99393418e+02, 9.99393418e+02,
9.98718474e+02, 9.98718474e+02, 9.98718474e+02, 9.98718474e+02,
9.97422790e+02, 9.97422790e+02, 9.97422790e+02, 9.97422790e+02,
9.95075374e+02, 9.95075374e+02, 9.95075374e+02, 9.95075374e+02,
9.91072910e+02, 9.91072910e+02, 9.91072910e+02, 9.91072910e+02,
9.84665288e+02, 9.84665288e+02, 9.84665288e+02, 9.84665288e+02,
9.75047519e+02, 9.75047519e+02, 9.75047519e+02, 9.75047519e+02,
9.61513458e+02, 9.61513458e+02, 9.61513458e+02, 9.61513458e+02,
9.43628510e+02, 9.43628510e+02, 9.43628510e+02, 9.43628510e+02,
9.21352632e+02, 9.21352632e+02, 9.21352632e+02, 9.21352632e+02,
8.95056756e+02, 8.95056756e+02, 8.95056756e+02, 8.95056756e+02,
8.65423729e+02, 8.65423729e+02, 8.65423729e+02, 8.65423729e+02,
8.33276228e+02, 8.33276228e+02, 8.33276228e+02, 8.33276228e+02,
7.99392547e+02, 7.99392547e+02, 7.99392547e+02, 7.99392547e+02,
7.64359306e+02, 7.64359306e+02, 7.64359306e+02, 7.64359306e+02,
7.29165290e+02, 7.29165290e+02, 7.29165290e+02, 7.29165290e+02,
6.95434650e+02, 6.95434650e+02, 6.95434650e+02, 6.95434650e+02,
6.63532667e+02, 6.63532667e+02, 6.63532667e+02, 6.63532667e+02,
6.33384943e+02, 6.33384943e+02, 6.33384943e+02, 6.33384943e+02,
6.05045669e+02, 6.05045669e+02, 6.05045669e+02, 6.05045669e+02,
5.78644436e+02, 5.78644436e+02, 5.78644436e+02, 5.78644436e+02,
5.54410312e+02, 5.54410312e+02, 5.54410312e+02, 5.54410312e+02,
5.32675821e+02, 5.32675821e+02, 5.32675821e+02, 5.32675821e+02,
5.13838499e+02, 5.13838499e+02, 5.13838499e+02, 5.13838499e+02,
4.98286665e+02, 4.98286665e+02, 4.98286665e+02, 4.98286665e+02,
4.86243970e+02, 4.86243970e+02, 4.86243970e+02, 4.86243970e+02,
4.77654925e+02, 4.77654925e+02, 4.77654925e+02, 4.77654925e+02,
4.72017226e+02, 4.72017226e+02, 4.72017226e+02, 4.72017226e+02,
4.68609235e+02, 4.68609235e+02, 4.68609235e+02, 4.68609235e+02,
4.66420881e+02, 4.66420881e+02, 4.66420881e+02, 4.66420881e+02,
4.64810868e+02, 4.64810868e+02, 4.64810868e+02, 4.64810868e+02,
4.63243299e+02, 4.63243299e+02, 4.63243299e+02, 4.63243299e+02,
4.61353730e+02, 4.61353730e+02, 4.61353730e+02, 4.61353730e+02,
4.58821840e+02, 4.58821840e+02, 4.58821840e+02, 4.58821840e+02,
4.56919372e+02, 4.56919372e+02, 4.56919372e+02, 4.56919372e+02,
4.56015430e+02, 4.56015430e+02, 4.56015430e+02, 4.56015430e+02,
4.55847073e+02, 4.55847073e+02, 4.55847073e+02, 4.55847073e+02,
4.56339867e+02, 4.56339867e+02, 4.56339867e+02, 4.56339867e+02,
4.58273518e+02, 4.58273518e+02, 4.58273518e+02, 4.58273518e+02,
4.60691622e+02, 4.60691622e+02, 4.60691622e+02, 4.60691622e+02,
4.61940052e+02, 4.61940052e+02, 4.61940052e+02, 4.61940052e+02,
4.62423882e+02, 4.62423882e+02, 4.62423882e+02, 4.62423882e+02,
4.62366066e+02, 4.62366066e+02, 4.62366066e+02, 4.62366066e+02,
4.61687055e+02, 4.61687055e+02, 4.61687055e+02, 4.61687055e+02,
4.60352457e+02, 4.60352457e+02, 4.60352457e+02, 4.60352457e+02,
4.59436330e+02, 4.59436330e+02, 4.59436330e+02, 4.59436330e+02,
4.59072327e+02, 4.59072327e+02, 4.59072327e+02, 4.59072327e+02,
4.58356748e+02, 4.58356748e+02, 4.58356748e+02, 4.58356748e+02,
4.60139027e+02, 4.60139027e+02, 4.60139027e+02, 4.60139027e+02,
3.86730264e+02, 3.86730264e+02, 3.86730264e+02, 3.86730264e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99998526, 0.99998526, 0.99998526, 0.99998526, 0.99995818,
0.99995818, 0.99995818, 0.99995818, 0.99990147, 0.99990147,
0.99990147, 0.99990147, 0.99977516, 0.99977516, 0.99977516,
0.99977516, 0.99951002, 0.99951002, 0.99951002, 0.99951002,
0.99898094, 0.99898094, 0.99898094, 0.99898094, 0.99798092,
0.99798092, 0.99798092, 0.99798092, 0.99619543, 0.99619543,
0.99619543, 0.99619543, 0.99319149, 0.99319149, 0.99319149,
0.99319149, 0.98843886, 0.98843886, 0.98843886, 0.98843886,
0.98137507, 0.98137507, 0.98137507, 0.98137507, 0.97150907,
0.97150907, 0.97150907, 0.97150907, 0.95853367, 0.95853367,
0.95853367, 0.95853367, 0.94240299, 0.94240299, 0.94240299,
0.94240299, 0.92334056, 0.92334056, 0.92334056, 0.92334056,
0.90177433, 0.90177433, 0.90177433, 0.90177433, 0.87822575,
0.87822575, 0.87822575, 0.87822575, 0.85319098, 0.85319098,
0.85319098, 0.85319098, 0.82706749, 0.82706749, 0.82706749,
0.82706749, 0.8004512 , 0.8004512 , 0.8004512 , 0.8004512 ,
0.77449713, 0.77449713, 0.77449713, 0.77449713, 0.74957228,
0.74957228, 0.74957228, 0.74957228, 0.72564661, 0.72564661,
0.72564661, 0.72564661, 0.70278531, 0.70278531, 0.70278531,
0.70278531, 0.68110979, 0.68110979, 0.68110979, 0.68110979,
0.66082377, 0.66082377, 0.66082377, 0.66082377, 0.64222378,
0.64222378, 0.64222378, 0.64222378, 0.62568987, 0.62568987,
0.62568987, 0.62568987, 0.61162285, 0.61162285, 0.61162285,
0.61162285, 0.60034623, 0.60034623, 0.60034623, 0.60034623,
0.5919485 , 0.5919485 , 0.5919485 , 0.5919485 , 0.58621901,
0.58621901, 0.58621901, 0.58621901, 0.58256005, 0.58256005,
0.58256005, 0.58256005, 0.58029577, 0.58029577, 0.58029577,
0.58029577, 0.57863174, 0.57863174, 0.57863174, 0.57863174,
0.57716122, 0.57716122, 0.57716122, 0.57716122, 0.57557548,
0.57557548, 0.57557548, 0.57557548, 0.57342052, 0.57342052,
0.57342052, 0.57342052, 0.57141033, 0.57141033, 0.57141033,
0.57141033, 0.57026937, 0.57026937, 0.57026937, 0.57026937,
0.56984951, 0.56984951, 0.56984951, 0.56984951, 0.5698766 ,
0.5698766 , 0.5698766 , 0.5698766 , 0.57088644, 0.57088644,
0.57088644, 0.57088644, 0.5729459 , 0.5729459 , 0.5729459 ,
0.5729459 , 0.57423757, 0.57423757, 0.57423757, 0.57423757,
0.574373 , 0.574373 , 0.574373 , 0.574373 , 0.57363822,
0.57363822, 0.57363822, 0.57363822, 0.57142449, 0.57142449,
0.57142449, 0.57142449, 0.56761669, 0.56761669, 0.56761669,
0.56761669, 0.56571332, 0.56571332, 0.56571332, 0.56571332,
0.57789593, 0.57789593, 0.57789593, 0.57789593, 0.78847243,
0.78847243, 0.78847243, 0.78847243, 4.84561161, 4.84561161,
4.84561161, 4.84561161, 5.92487332, 5.92487332, 5.92487332,
5.92487332, 5.56008978, 5.56008978, 5.56008978, 5.56008978,
1.01890847, 1.01890847, 1.01890847, 1.01890847, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95968986e+01, -1.95968986e+01, -1.95968986e+01, -1.95968986e+01,
-1.95958851e+01, -1.95958851e+01, -1.95958851e+01, -1.95958851e+01,
-1.95937634e+01, -1.95937634e+01, -1.95937634e+01, -1.95937634e+01,
-1.95890367e+01, -1.95890367e+01, -1.95890367e+01, -1.95890367e+01,
-1.95791140e+01, -1.95791140e+01, -1.95791140e+01, -1.95791140e+01,
-1.95593077e+01, -1.95593077e+01, -1.95593077e+01, -1.95593077e+01,
-1.95218526e+01, -1.95218526e+01, -1.95218526e+01, -1.95218526e+01,
-1.94549100e+01, -1.94549100e+01, -1.94549100e+01, -1.94549100e+01,
-1.93420837e+01, -1.93420837e+01, -1.93420837e+01, -1.93420837e+01,
-1.91630441e+01, -1.91630441e+01, -1.91630441e+01, -1.91630441e+01,
-1.88956946e+01, -1.88956946e+01, -1.88956946e+01, -1.88956946e+01,
-1.85197193e+01, -1.85197193e+01, -1.85197193e+01, -1.85197193e+01,
-1.80205547e+01, -1.80205547e+01, -1.80205547e+01, -1.80205547e+01,
-1.73923318e+01, -1.73923318e+01, -1.73923318e+01, -1.73923318e+01,
-1.66385920e+01, -1.66385920e+01, -1.66385920e+01, -1.66385920e+01,
-1.57704949e+01, -1.57704949e+01, -1.57704949e+01, -1.57704949e+01,
-1.48032199e+01, -1.48032199e+01, -1.48032199e+01, -1.48032199e+01,
-1.37516531e+01, -1.37516531e+01, -1.37516531e+01, -1.37516531e+01,
-1.26262172e+01, -1.26262172e+01, -1.26262172e+01, -1.26262172e+01,
-1.14535020e+01, -1.14535020e+01, -1.14535020e+01, -1.14535020e+01,
-1.02821453e+01, -1.02821453e+01, -1.02821453e+01, -1.02821453e+01,
-9.12320232e+00, -9.12320232e+00, -9.12320232e+00, -9.12320232e+00,
-7.98177804e+00, -7.98177804e+00, -7.98177804e+00, -7.98177804e+00,
-6.86275610e+00, -6.86275610e+00, -6.86275610e+00, -6.86275610e+00,
-5.77476709e+00, -5.77476709e+00, -5.77476709e+00, -5.77476709e+00,
-4.73138920e+00, -4.73138920e+00, -4.73138920e+00, -4.73138920e+00,
-3.75227727e+00, -3.75227727e+00, -3.75227727e+00, -3.75227727e+00,
-2.86276827e+00, -2.86276827e+00, -2.86276827e+00, -2.86276827e+00,
-2.09133332e+00, -2.09133332e+00, -2.09133332e+00, -2.09133332e+00,
-1.46258067e+00, -1.46258067e+00, -1.46258067e+00, -1.46258067e+00,
-9.89318476e-01, -9.89318476e-01, -9.89318476e-01, -9.89318476e-01,
-6.62514752e-01, -6.62514752e-01, -6.62514752e-01, -6.62514752e-01,
-4.55770547e-01, -4.55770547e-01, -4.55770547e-01, -4.55770547e-01,
-3.24250432e-01, -3.24250432e-01, -3.24250432e-01, -3.24250432e-01,
-2.32672703e-01, -2.32672703e-01, -2.32672703e-01, -2.32672703e-01,
-1.48617001e-01, -1.48617001e-01, -1.48617001e-01, -1.48617001e-01,
-5.86592212e-02, -5.86592212e-02, -5.86592212e-02, -5.86592212e-02,
6.31526138e-02, 6.31526138e-02, 6.31526138e-02, 6.31526138e-02,
1.75222055e-01, 1.75222055e-01, 1.75222055e-01, 1.75222055e-01,
2.38802823e-01, 2.38802823e-01, 2.38802823e-01, 2.38802823e-01,
2.56988016e-01, 2.56988016e-01, 2.56988016e-01, 2.56988016e-01,
2.47598723e-01, 2.47598723e-01, 2.47598723e-01, 2.47598723e-01,
1.80365419e-01, 1.80365419e-01, 1.80365419e-01, 1.80365419e-01,
5.14782436e-02, 5.14782436e-02, 5.14782436e-02, 5.14782436e-02,
-3.39863591e-02, -3.39863591e-02, -3.39863591e-02, -3.39863591e-02,
-7.21591911e-02, -7.21591911e-02, -7.21591911e-02, -7.21591911e-02,
-7.57049020e-02, -7.57049020e-02, -7.57049020e-02, -7.57049020e-02,
-5.76945925e-02, -5.76945925e-02, -5.76945925e-02, -5.76945925e-02,
2.02918872e-03, 2.02918872e-03, 2.02918872e-03, 2.02918872e-03,
5.93265617e-02, 5.93265617e-02, 5.93265617e-02, 5.93265617e-02,
8.69993438e-02, 8.69993438e-02, 8.69993438e-02, 8.69993438e-02,
9.91468953e-02, 9.91468953e-02, 9.91468953e-02, 9.91468953e-02,
6.81715401e-02, 6.81715401e-02, 6.81715401e-02, 6.81715401e-02,
-5.78795911e-02, -5.78795911e-02, -5.78795911e-02, -5.78795911e-02,
-1.48260790e+00, -1.48260790e+00, -1.48260790e+00, -1.48260790e+00,
-1.92261170e+01, -1.92261170e+01, -1.92261170e+01, -1.92261170e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99979369e+02, 9.99979369e+02, 9.99979369e+02, 9.99979369e+02,
9.99941447e+02, 9.99941447e+02, 9.99941447e+02, 9.99941447e+02,
9.99862069e+02, 9.99862069e+02, 9.99862069e+02, 9.99862069e+02,
9.99685247e+02, 9.99685247e+02, 9.99685247e+02, 9.99685247e+02,
9.99314134e+02, 9.99314134e+02, 9.99314134e+02, 9.99314134e+02,
9.98573724e+02, 9.98573724e+02, 9.98573724e+02, 9.98573724e+02,
9.97174855e+02, 9.97174855e+02, 9.97174855e+02, 9.97174855e+02,
9.94678914e+02, 9.94678914e+02, 9.94678914e+02, 9.94678914e+02,
9.90484455e+02, 9.90484455e+02, 9.90484455e+02, 9.90484455e+02,
9.83859889e+02, 9.83859889e+02, 9.83859889e+02, 9.83859889e+02,
9.74039277e+02, 9.74039277e+02, 9.74039277e+02, 9.74039277e+02,
9.60372194e+02, 9.60372194e+02, 9.60372194e+02, 9.60372194e+02,
9.42483603e+02, 9.42483603e+02, 9.42483603e+02, 9.42483603e+02,
9.20379525e+02, 9.20379525e+02, 9.20379525e+02, 9.20379525e+02,
8.94450060e+02, 8.94450060e+02, 8.94450060e+02, 8.94450060e+02,
8.65367467e+02, 8.65367467e+02, 8.65367467e+02, 8.65367467e+02,
8.33922282e+02, 8.33922282e+02, 8.33922282e+02, 8.33922282e+02,
8.00853716e+02, 8.00853716e+02, 8.00853716e+02, 8.00853716e+02,
7.66714287e+02, 7.66714287e+02, 7.66714287e+02, 7.66714287e+02,
7.32385088e+02, 7.32385088e+02, 7.32385088e+02, 7.32385088e+02,
6.99371304e+02, 6.99371304e+02, 6.99371304e+02, 6.99371304e+02,
6.68082034e+02, 6.68082034e+02, 6.68082034e+02, 6.68082034e+02,
6.38437470e+02, 6.38437470e+02, 6.38437470e+02, 6.38437470e+02,
6.10476279e+02, 6.10476279e+02, 6.10476279e+02, 6.10476279e+02,
5.84302961e+02, 5.84302961e+02, 5.84302961e+02, 5.84302961e+02,
5.60112630e+02, 5.60112630e+02, 5.60112630e+02, 5.60112630e+02,
5.38197751e+02, 5.38197751e+02, 5.38197751e+02, 5.38197751e+02,
5.18933488e+02, 5.18933488e+02, 5.18933488e+02, 5.18933488e+02,
5.02706670e+02, 5.02706670e+02, 5.02706670e+02, 5.02706670e+02,
4.89810839e+02, 4.89810839e+02, 4.89810839e+02, 4.89810839e+02,
4.80277054e+02, 4.80277054e+02, 4.80277054e+02, 4.80277054e+02,
4.73814598e+02, 4.73814598e+02, 4.73814598e+02, 4.73814598e+02,
4.69715186e+02, 4.69715186e+02, 4.69715186e+02, 4.69715186e+02,
4.67199322e+02, 4.67199322e+02, 4.67199322e+02, 4.67199322e+02,
4.65366731e+02, 4.65366731e+02, 4.65366731e+02, 4.65366731e+02,
4.63761585e+02, 4.63761585e+02, 4.63761585e+02, 4.63761585e+02,
4.62037437e+02, 4.62037437e+02, 4.62037437e+02, 4.62037437e+02,
4.59682472e+02, 4.59682472e+02, 4.59682472e+02, 4.59682472e+02,
4.57502635e+02, 4.57502635e+02, 4.57502635e+02, 4.57502635e+02,
4.56321878e+02, 4.56321878e+02, 4.56321878e+02, 4.56321878e+02,
4.55970132e+02, 4.55970132e+02, 4.55970132e+02, 4.55970132e+02,
4.56136790e+02, 4.56136790e+02, 4.56136790e+02, 4.56136790e+02,
4.57415845e+02, 4.57415845e+02, 4.57415845e+02, 4.57415845e+02,
4.59897903e+02, 4.59897903e+02, 4.59897903e+02, 4.59897903e+02,
4.61588569e+02, 4.61588569e+02, 4.61588569e+02, 4.61588569e+02,
4.62209244e+02, 4.62209244e+02, 4.62209244e+02, 4.62209244e+02,
4.62353018e+02, 4.62353018e+02, 4.62353018e+02, 4.62353018e+02,
4.62015675e+02, 4.62015675e+02, 4.62015675e+02, 4.62015675e+02,
4.60848083e+02, 4.60848083e+02, 4.60848083e+02, 4.60848083e+02,
4.59735200e+02, 4.59735200e+02, 4.59735200e+02, 4.59735200e+02,
4.59147681e+02, 4.59147681e+02, 4.59147681e+02, 4.59147681e+02,
4.59088113e+02, 4.59088113e+02, 4.59088113e+02, 4.59088113e+02,
4.59331732e+02, 4.59331732e+02, 4.59331732e+02, 4.59331732e+02,
4.63222937e+02, 4.63222937e+02, 4.63222937e+02, 4.63222937e+02,
4.12875360e+02, 4.12875360e+02, 4.12875360e+02, 4.12875360e+02,
2.66044212e+00, 2.66044212e+00, 2.66044212e+00, 2.66044212e+00,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.9999568 , 0.9999568 , 0.9999568 , 0.9999568 , 0.99988411,
0.99988411, 0.99988411, 0.99988411, 0.99974329, 0.99974329,
0.99974329, 0.99974329, 0.99944863, 0.99944863, 0.99944863,
0.99944863, 0.9988707 , 0.9988707 , 0.9988707 , 0.9988707 ,
0.99779482, 0.99779482, 0.99779482, 0.99779482, 0.99590186,
0.99590186, 0.99590186, 0.99590186, 0.99276106, 0.99276106,
0.99276106, 0.99276106, 0.98785596, 0.98785596, 0.98785596,
0.98785596, 0.9806516 , 0.9806516 , 0.9806516 , 0.9806516 ,
0.97069523, 0.97069523, 0.97069523, 0.97069523, 0.95772017,
0.95772017, 0.95772017, 0.95772017, 0.94171224, 0.94171224,
0.94171224, 0.94171224, 0.92290936, 0.92290936, 0.92290936,
0.92290936, 0.90173487, 0.90173487, 0.90173487, 0.90173487,
0.8786917 , 0.8786917 , 0.8786917 , 0.8786917 , 0.85425278,
0.85425278, 0.85425278, 0.85425278, 0.8287934 , 0.8287934 ,
0.8287934 , 0.8287934 , 0.80284574, 0.80284574, 0.80284574,
0.80284574, 0.77747275, 0.77747275, 0.77747275, 0.77747275,
0.75306658, 0.75306658, 0.75306658, 0.75306658, 0.72958985,
0.72958985, 0.72958985, 0.72958985, 0.70709754, 0.70709754,
0.70709754, 0.70709754, 0.68568965, 0.68568965, 0.68568965,
0.68568965, 0.66553819, 0.66553819, 0.66553819, 0.66553819,
0.64690258, 0.64690258, 0.64690258, 0.64690258, 0.63012541,
0.63012541, 0.63012541, 0.63012541, 0.61559842, 0.61559842,
0.61559842, 0.61559842, 0.60366745, 0.60366745, 0.60366745,
0.60366745, 0.59451738, 0.59451738, 0.59451738, 0.59451738,
0.58802631, 0.58802631, 0.58802631, 0.58802631, 0.58378365,
0.58378365, 0.58378365, 0.58378365, 0.58107477, 0.58107477,
0.58107477, 0.58107477, 0.57925414, 0.57925414, 0.57925414,
0.57925414, 0.5776933 , 0.5776933 , 0.5776933 , 0.5776933 ,
0.57614202, 0.57614202, 0.57614202, 0.57614202, 0.57421305,
0.57421305, 0.57421305, 0.57421305, 0.57210238, 0.57210238,
0.57210238, 0.57210238, 0.57069122, 0.57069122, 0.57069122,
0.57069122, 0.57008977, 0.57008977, 0.57008977, 0.57008977,
0.56996923, 0.56996923, 0.56996923, 0.56996923, 0.57050701,
0.57050701, 0.57050701, 0.57050701, 0.57229866, 0.57229866,
0.57229866, 0.57229866, 0.57395096, 0.57395096, 0.57395096,
0.57395096, 0.57464105, 0.57464105, 0.57464105, 0.57464105,
0.57441387, 0.57441387, 0.57441387, 0.57441387, 0.57344931,
0.57344931, 0.57344931, 0.57344931, 0.57081974, 0.57081974,
0.57081974, 0.57081974, 0.56695245, 0.56695245, 0.56695245,
0.56695245, 0.5653931 , 0.5653931 , 0.5653931 , 0.5653931 ,
0.57781064, 0.57781064, 0.57781064, 0.57781064, 0.78815072,
0.78815072, 0.78815072, 0.78815072, 4.84873862, 4.84873862,
4.84873862, 4.84873862, 5.95129464, 5.95129464, 5.95129464,
5.95129464, 5.69033524, 5.69033524, 5.69033524, 5.69033524,
1.23675129, 1.23675129, 1.23675129, 1.23675129, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95958337e+01, -1.95958337e+01, -1.95958337e+01, -1.95958337e+01,
-1.95931138e+01, -1.95931138e+01, -1.95931138e+01, -1.95931138e+01,
-1.95878441e+01, -1.95878441e+01, -1.95878441e+01, -1.95878441e+01,
-1.95768162e+01, -1.95768162e+01, -1.95768162e+01, -1.95768162e+01,
-1.95551801e+01, -1.95551801e+01, -1.95551801e+01, -1.95551801e+01,
-1.95148789e+01, -1.95148789e+01, -1.95148789e+01, -1.95148789e+01,
-1.94438939e+01, -1.94438939e+01, -1.94438939e+01, -1.94438939e+01,
-1.93258934e+01, -1.93258934e+01, -1.93258934e+01, -1.93258934e+01,
-1.91410336e+01, -1.91410336e+01, -1.91410336e+01, -1.91410336e+01,
-1.88682144e+01, -1.88682144e+01, -1.88682144e+01, -1.88682144e+01,
-1.84885452e+01, -1.84885452e+01, -1.84885452e+01, -1.84885452e+01,
-1.79890388e+01, -1.79890388e+01, -1.79890388e+01, -1.79890388e+01,
-1.73651775e+01, -1.73651775e+01, -1.73651775e+01, -1.73651775e+01,
-1.66213186e+01, -1.66213186e+01, -1.66213186e+01, -1.66213186e+01,
-1.57687966e+01, -1.57687966e+01, -1.57687966e+01, -1.57687966e+01,
-1.48224580e+01, -1.48224580e+01, -1.48224580e+01, -1.48224580e+01,
-1.37966567e+01, -1.37966567e+01, -1.37966567e+01, -1.37966567e+01,
-1.27013995e+01, -1.27013995e+01, -1.27013995e+01, -1.27013995e+01,
-1.15600509e+01, -1.15600509e+01, -1.15600509e+01, -1.15600509e+01,
-1.04182048e+01, -1.04182048e+01, -1.04182048e+01, -1.04182048e+01,
-9.28712587e+00, -9.28712587e+00, -9.28712587e+00, -9.28712587e+00,
-8.17164148e+00, -8.17164148e+00, -8.17164148e+00, -8.17164148e+00,
-7.07566309e+00, -7.07566309e+00, -7.07566309e+00, -7.07566309e+00,
-6.00644370e+00, -6.00644370e+00, -6.00644370e+00, -6.00644370e+00,
-4.97553083e+00, -4.97553083e+00, -4.97553083e+00, -4.97553083e+00,
-3.99995165e+00, -3.99995165e+00, -3.99995165e+00, -3.99995165e+00,
-3.10256800e+00, -3.10256800e+00, -3.10256800e+00, -3.10256800e+00,
-2.31003786e+00, -2.31003786e+00, -2.31003786e+00, -2.31003786e+00,
-1.64818046e+00, -1.64818046e+00, -1.64818046e+00, -1.64818046e+00,
-1.13330666e+00, -1.13330666e+00, -1.13330666e+00, -1.13330666e+00,
-7.65570923e-01, -7.65570923e-01, -7.65570923e-01, -7.65570923e-01,
-5.22454306e-01, -5.22454306e-01, -5.22454306e-01, -5.22454306e-01,
-3.69998280e-01, -3.69998280e-01, -3.69998280e-01, -3.69998280e-01,
-2.64295091e-01, -2.64295091e-01, -2.64295091e-01, -2.64295091e-01,
-1.77586047e-01, -1.77586047e-01, -1.77586047e-01, -1.77586047e-01,
-8.97984962e-02, -8.97984962e-02, -8.97984962e-02, -8.97984962e-02,
2.02366682e-02, 2.02366682e-02, 2.02366682e-02, 2.02366682e-02,
1.40871427e-01, 1.40871427e-01, 1.40871427e-01, 1.40871427e-01,
2.17683902e-01, 2.17683902e-01, 2.17683902e-01, 2.17683902e-01,
2.48809269e-01, 2.48809269e-01, 2.48809269e-01, 2.48809269e-01,
2.49974501e-01, 2.49974501e-01, 2.49974501e-01, 2.49974501e-01,
2.11052255e-01, 2.11052255e-01, 2.11052255e-01, 2.11052255e-01,
9.78510344e-02, 9.78510344e-02, 9.78510344e-02, 9.78510344e-02,
-8.37863695e-03, -8.37863695e-03, -8.37863695e-03, -8.37863695e-03,
-5.72066887e-02, -5.72066887e-02, -5.72066887e-02, -5.72066887e-02,
-7.30169147e-02, -7.30169147e-02, -7.30169147e-02, -7.30169147e-02,
-6.62494184e-02, -6.62494184e-02, -6.62494184e-02, -6.62494184e-02,
-2.27194938e-02, -2.27194938e-02, -2.27194938e-02, -2.27194938e-02,
4.23152353e-02, 4.23152353e-02, 4.23152353e-02, 4.23152353e-02,
7.98077113e-02, 7.98077113e-02, 7.98077113e-02, 7.98077113e-02,
8.99657409e-02, 8.99657409e-02, 8.99657409e-02, 8.99657409e-02,
8.76200018e-02, 8.76200018e-02, 8.76200018e-02, 8.76200018e-02,
5.15213448e-02, 5.15213448e-02, 5.15213448e-02, 5.15213448e-02,
-8.33703850e-02, -8.33703850e-02, -8.33703850e-02, -8.33703850e-02,
-1.17071868e+00, -1.17071868e+00, -1.17071868e+00, -1.17071868e+00,
-1.57576738e+01, -1.57576738e+01, -1.57576738e+01, -1.57576738e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99939525e+02, 9.99939525e+02, 9.99939525e+02, 9.99939525e+02,
9.99837766e+02, 9.99837766e+02, 9.99837766e+02, 9.99837766e+02,
9.99640638e+02, 9.99640638e+02, 9.99640638e+02, 9.99640638e+02,
9.99228211e+02, 9.99228211e+02, 9.99228211e+02, 9.99228211e+02,
9.98419485e+02, 9.98419485e+02, 9.98419485e+02, 9.98419485e+02,
9.96914590e+02, 9.96914590e+02, 9.96914590e+02, 9.96914590e+02,
9.94268703e+02, 9.94268703e+02, 9.94268703e+02, 9.94268703e+02,
9.89883820e+02, 9.89883820e+02, 9.89883820e+02, 9.89883820e+02,
9.83048138e+02, 9.83048138e+02, 9.83048138e+02, 9.83048138e+02,
9.73034649e+02, 9.73034649e+02, 9.73034649e+02, 9.73034649e+02,
9.59246390e+02, 9.59246390e+02, 9.59246390e+02, 9.59246390e+02,
9.41363662e+02, 9.41363662e+02, 9.41363662e+02, 9.41363662e+02,
9.19433724e+02, 9.19433724e+02, 9.19433724e+02, 9.19433724e+02,
8.93862202e+02, 8.93862202e+02, 8.93862202e+02, 8.93862202e+02,
8.65309492e+02, 8.65309492e+02, 8.65309492e+02, 8.65309492e+02,
8.34535046e+02, 8.34535046e+02, 8.34535046e+02, 8.34535046e+02,
8.02241316e+02, 8.02241316e+02, 8.02241316e+02, 8.02241316e+02,
7.68949683e+02, 7.68949683e+02, 7.68949683e+02, 7.68949683e+02,
7.35447246e+02, 7.35447246e+02, 7.35447246e+02, 7.35447246e+02,
7.03127884e+02, 7.03127884e+02, 7.03127884e+02, 7.03127884e+02,
6.72436702e+02, 6.72436702e+02, 6.72436702e+02, 6.72436702e+02,
6.43288985e+02, 6.43288985e+02, 6.43288985e+02, 6.43288985e+02,
6.15714808e+02, 6.15714808e+02, 6.15714808e+02, 6.15714808e+02,
5.89796153e+02, 5.89796153e+02, 5.89796153e+02, 5.89796153e+02,
5.65696642e+02, 5.65696642e+02, 5.65696642e+02, 5.65696642e+02,
5.43673421e+02, 5.43673421e+02, 5.43673421e+02, 5.43673421e+02,
5.24067479e+02, 5.24067479e+02, 5.24067479e+02, 5.24067479e+02,
5.07263040e+02, 5.07263040e+02, 5.07263040e+02, 5.07263040e+02,
4.93583436e+02, 4.93583436e+02, 4.93583436e+02, 4.93583436e+02,
4.83170545e+02, 4.83170545e+02, 4.83170545e+02, 4.83170545e+02,
4.75830313e+02, 4.75830313e+02, 4.75830313e+02, 4.75830313e+02,
4.71062300e+02, 4.71062300e+02, 4.71062300e+02, 4.71062300e+02,
4.68039933e+02, 4.68039933e+02, 4.68039933e+02, 4.68039933e+02,
4.66025920e+02, 4.66025920e+02, 4.66025920e+02, 4.66025920e+02,
4.64310633e+02, 4.64310633e+02, 4.64310633e+02, 4.64310633e+02,
4.62615659e+02, 4.62615659e+02, 4.62615659e+02, 4.62615659e+02,
4.60507433e+02, 4.60507433e+02, 4.60507433e+02, 4.60507433e+02,
4.58203933e+02, 4.58203933e+02, 4.58203933e+02, 4.58203933e+02,
4.56696564e+02, 4.56696564e+02, 4.56696564e+02, 4.56696564e+02,
4.56120188e+02, 4.56120188e+02, 4.56120188e+02, 4.56120188e+02,
4.56103981e+02, 4.56103981e+02, 4.56103981e+02, 4.56103981e+02,
4.56842760e+02, 4.56842760e+02, 4.56842760e+02, 4.56842760e+02,
4.59001087e+02, 4.59001087e+02, 4.59001087e+02, 4.59001087e+02,
4.61027897e+02, 4.61027897e+02, 4.61027897e+02, 4.61027897e+02,
4.62043421e+02, 4.62043421e+02, 4.62043421e+02, 4.62043421e+02,
4.62256123e+02, 4.62256123e+02, 4.62256123e+02, 4.62256123e+02,
4.62141741e+02, 4.62141741e+02, 4.62141741e+02, 4.62141741e+02,
4.61332932e+02, 4.61332932e+02, 4.61332932e+02, 4.61332932e+02,
4.60092606e+02, 4.60092606e+02, 4.60092606e+02, 4.60092606e+02,
4.59370752e+02, 4.59370752e+02, 4.59370752e+02, 4.59370752e+02,
4.59088554e+02, 4.59088554e+02, 4.59088554e+02, 4.59088554e+02,
4.59254680e+02, 4.59254680e+02, 4.59254680e+02, 4.59254680e+02,
4.60509205e+02, 4.60509205e+02, 4.60509205e+02, 4.60509205e+02,
4.66097515e+02, 4.66097515e+02, 4.66097515e+02, 4.66097515e+02,
4.26096149e+02, 4.26096149e+02, 4.26096149e+02, 4.26096149e+02,
3.00682752e+01, 3.00682752e+01, 3.00682752e+01, 3.00682752e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99988326, 0.99988326, 0.99988326, 0.99988326, 0.999704 ,
0.999704 , 0.999704 , 0.999704 , 0.99938342, 0.99938342,
0.99938342, 0.99938342, 0.99875337, 0.99875337, 0.99875337,
0.99875337, 0.9976 , 0.9976 , 0.9976 , 0.9976 ,
0.99559867, 0.99559867, 0.99559867, 0.99559867, 0.99232231,
0.99232231, 0.99232231, 0.99232231, 0.98726893, 0.98726893,
0.98726893, 0.98726893, 0.97993094, 0.97993094, 0.97993094,
0.97993094, 0.96989227, 0.96989227, 0.96989227, 0.96989227,
0.95692399, 0.95692399, 0.95692399, 0.95692399, 0.94104033,
0.94104033, 0.94104033, 0.94104033, 0.92249112, 0.92249112,
0.92249112, 0.92249112, 0.90169405, 0.90169405, 0.90169405,
0.90169405, 0.87913399, 0.87913399, 0.87913399, 0.87913399,
0.85526183, 0.85526183, 0.85526183, 0.85526183, 0.83043251,
0.83043251, 0.83043251, 0.83043251, 0.80512253, 0.80512253,
0.80512253, 0.80512253, 0.78031019, 0.78031019, 0.78031019,
0.78031019, 0.75640567, 0.75640567, 0.75640567, 0.75640567,
0.73337002, 0.73337002, 0.73337002, 0.73337002, 0.71124617,
0.71124617, 0.71124617, 0.71124617, 0.69011779, 0.69011779,
0.69011779, 0.69011779, 0.67013055, 0.67013055, 0.67013055,
0.67013055, 0.6515084 , 0.6515084 , 0.6515084 , 0.6515084 ,
0.63455967, 0.63455967, 0.63455967, 0.63455967, 0.61965102,
0.61965102, 0.61965102, 0.61965102, 0.60714502, 0.60714502,
0.60714502, 0.60714502, 0.59727955, 0.59727955, 0.59727955,
0.59727955, 0.59006029, 0.59006029, 0.59006029, 0.59006029,
0.58515653, 0.58515653, 0.58515653, 0.58515653, 0.58201574,
0.58201574, 0.58201574, 0.58201574, 0.57990123, 0.57990123,
0.57990123, 0.57990123, 0.57826932, 0.57826932, 0.57826932,
0.57826932, 0.57670096, 0.57670096, 0.57670096, 0.57670096,
0.57492881, 0.57492881, 0.57492881, 0.57492881, 0.57279932,
0.57279932, 0.57279932, 0.57279932, 0.57119697, 0.57119697,
0.57119697, 0.57119697, 0.57036293, 0.57036293, 0.57036293,
0.57036293, 0.57011927, 0.57011927, 0.57011927, 0.57011927,
0.57033952, 0.57033952, 0.57033952, 0.57033952, 0.57164869,
0.57164869, 0.57164869, 0.57164869, 0.57354091, 0.57354091,
0.57354091, 0.57354091, 0.57453357, 0.57453357, 0.57453357,
0.57453357, 0.57476819, 0.57476819, 0.57476819, 0.57476819,
0.57434562, 0.57434562, 0.57434562, 0.57434562, 0.57305035,
0.57305035, 0.57305035, 0.57305035, 0.57007335, 0.57007335,
0.57007335, 0.57007335, 0.56651932, 0.56651932, 0.56651932,
0.56651932, 0.56528181, 0.56528181, 0.56528181, 0.56528181,
0.57785762, 0.57785762, 0.57785762, 0.57785762, 0.78811457,
0.78811457, 0.78811457, 0.78811457, 4.85478737, 4.85478737,
4.85478737, 4.85478737, 5.97063495, 5.97063495, 5.97063495,
5.97063495, 5.73063938, 5.73063938, 5.73063938, 5.73063938,
1.54830122, 1.54830122, 1.54830122, 1.54830122, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95930819e+01, -1.95930819e+01, -1.95930819e+01, -1.95930819e+01,
-1.95863736e+01, -1.95863736e+01, -1.95863736e+01, -1.95863736e+01,
-1.95743754e+01, -1.95743754e+01, -1.95743754e+01, -1.95743754e+01,
-1.95507862e+01, -1.95507862e+01, -1.95507862e+01, -1.95507862e+01,
-1.95075773e+01, -1.95075773e+01, -1.95075773e+01, -1.95075773e+01,
-1.94325144e+01, -1.94325144e+01, -1.94325144e+01, -1.94325144e+01,
-1.93093843e+01, -1.93093843e+01, -1.93093843e+01, -1.93093843e+01,
-1.91188563e+01, -1.91188563e+01, -1.91188563e+01, -1.91188563e+01,
-1.88408241e+01, -1.88408241e+01, -1.88408241e+01, -1.88408241e+01,
-1.84577672e+01, -1.84577672e+01, -1.84577672e+01, -1.84577672e+01,
-1.79581724e+01, -1.79581724e+01, -1.79581724e+01, -1.79581724e+01,
-1.73387486e+01, -1.73387486e+01, -1.73387486e+01, -1.73387486e+01,
-1.66045599e+01, -1.66045599e+01, -1.66045599e+01, -1.66045599e+01,
-1.57670502e+01, -1.57670502e+01, -1.57670502e+01, -1.57670502e+01,
-1.48407146e+01, -1.48407146e+01, -1.48407146e+01, -1.48407146e+01,
-1.38393853e+01, -1.38393853e+01, -1.38393853e+01, -1.38393853e+01,
-1.27726733e+01, -1.27726733e+01, -1.27726733e+01, -1.27726733e+01,
-1.16611698e+01, -1.16611698e+01, -1.16611698e+01, -1.16611698e+01,
-1.05475404e+01, -1.05475404e+01, -1.05475404e+01, -1.05475404e+01,
-9.44325436e+00, -9.44325436e+00, -9.44325436e+00, -9.44325436e+00,
-8.35283609e+00, -8.35283609e+00, -8.35283609e+00, -8.35283609e+00,
-7.27955851e+00, -7.27955851e+00, -7.27955851e+00, -7.27955851e+00,
-6.22940672e+00, -6.22940672e+00, -6.22940672e+00, -6.22940672e+00,
-5.21215603e+00, -5.21215603e+00, -5.21215603e+00, -5.21215603e+00,
-4.24254847e+00, -4.24254847e+00, -4.24254847e+00, -4.24254847e+00,
-3.34084414e+00, -3.34084414e+00, -3.34084414e+00, -3.34084414e+00,
-2.53194446e+00, -2.53194446e+00, -2.53194446e+00, -2.53194446e+00,
-1.84137728e+00, -1.84137728e+00, -1.84137728e+00, -1.84137728e+00,
-1.28893894e+00, -1.28893894e+00, -1.28893894e+00, -1.28893894e+00,
-8.79748296e-01, -8.79748296e-01, -8.79748296e-01, -8.79748296e-01,
-6.01098798e-01, -6.01098798e-01, -6.01098798e-01, -6.01098798e-01,
-4.20495914e-01, -4.20495914e-01, -4.20495914e-01, -4.20495914e-01,
-3.01953822e-01, -3.01953822e-01, -3.01953822e-01, -3.01953822e-01,
-2.07663266e-01, -2.07663266e-01, -2.07663266e-01, -2.07663266e-01,
-1.19176721e-01, -1.19176721e-01, -1.19176721e-01, -1.19176721e-01,
-1.91871139e-02, -1.91871139e-02, -1.91871139e-02, -1.91871139e-02,
1.02083270e-01, 1.02083270e-01, 1.02083270e-01, 1.02083270e-01,
1.94011664e-01, 1.94011664e-01, 1.94011664e-01, 1.94011664e-01,
2.37494805e-01, 2.37494805e-01, 2.37494805e-01, 2.37494805e-01,
2.46839725e-01, 2.46839725e-01, 2.46839725e-01, 2.46839725e-01,
2.27976078e-01, 2.27976078e-01, 2.27976078e-01, 2.27976078e-01,
1.44238385e-01, 1.44238385e-01, 1.44238385e-01, 1.44238385e-01,
2.56541650e-02, 2.56541650e-02, 2.56541650e-02, 2.56541650e-02,
-4.30667260e-02, -4.30667260e-02, -4.30667260e-02, -4.30667260e-02,
-6.50812561e-02, -6.50812561e-02, -6.50812561e-02, -6.50812561e-02,
-6.75568397e-02, -6.75568397e-02, -6.75568397e-02, -6.75568397e-02,
-4.29914005e-02, -4.29914005e-02, -4.29914005e-02, -4.29914005e-02,
2.01746029e-02, 2.01746029e-02, 2.01746029e-02, 2.01746029e-02,
6.79679763e-02, 6.79679763e-02, 6.79679763e-02, 6.79679763e-02,
8.76333776e-02, 8.76333776e-02, 8.76333776e-02, 8.76333776e-02,
8.70600238e-02, 8.70600238e-02, 8.70600238e-02, 8.70600238e-02,
6.94231077e-02, 6.94231077e-02, 6.94231077e-02, 6.94231077e-02,
2.81120195e-02, 2.81120195e-02, 2.81120195e-02, 2.81120195e-02,
-9.88861807e-02, -9.88861807e-02, -9.88861807e-02, -9.88861807e-02,
-8.40443242e-01, -8.40443242e-01, -8.40443242e-01, -8.40443242e-01,
-1.27034745e+01, -1.27034745e+01, -1.27034745e+01, -1.27034745e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99836573e+02, 9.99836573e+02, 9.99836573e+02, 9.99836573e+02,
9.99585634e+02, 9.99585634e+02, 9.99585634e+02, 9.99585634e+02,
9.99136947e+02, 9.99136947e+02, 9.99136947e+02, 9.99136947e+02,
9.98255317e+02, 9.98255317e+02, 9.98255317e+02, 9.98255317e+02,
9.96642152e+02, 9.96642152e+02, 9.96642152e+02, 9.96642152e+02,
9.93845109e+02, 9.93845109e+02, 9.93845109e+02, 9.93845109e+02,
9.89271683e+02, 9.89271683e+02, 9.89271683e+02, 9.89271683e+02,
9.82230823e+02, 9.82230823e+02, 9.82230823e+02, 9.82230823e+02,
9.72034191e+02, 9.72034191e+02, 9.72034191e+02, 9.72034191e+02,
9.58135996e+02, 9.58135996e+02, 9.58135996e+02, 9.58135996e+02,
9.40267890e+02, 9.40267890e+02, 9.40267890e+02, 9.40267890e+02,
9.18513964e+02, 9.18513964e+02, 9.18513964e+02, 9.18513964e+02,
8.93292158e+02, 8.93292158e+02, 8.93292158e+02, 8.93292158e+02,
8.65250000e+02, 8.65250000e+02, 8.65250000e+02, 8.65250000e+02,
8.35116935e+02, 8.35116935e+02, 8.35116935e+02, 8.35116935e+02,
8.03560799e+02, 8.03560799e+02, 8.03560799e+02, 8.03560799e+02,
7.71074253e+02, 7.71074253e+02, 7.71074253e+02, 7.71074253e+02,
7.38362407e+02, 7.38362407e+02, 7.38362407e+02, 7.38362407e+02,
7.06715729e+02, 7.06715729e+02, 7.06715729e+02, 7.06715729e+02,
6.76606066e+02, 6.76606066e+02, 6.76606066e+02, 6.76606066e+02,
6.47950106e+02, 6.47950106e+02, 6.47950106e+02, 6.47950106e+02,
6.20767030e+02, 6.20767030e+02, 6.20767030e+02, 6.20767030e+02,
5.95122800e+02, 5.95122800e+02, 5.95122800e+02, 5.95122800e+02,
5.71153608e+02, 5.71153608e+02, 5.71153608e+02, 5.71153608e+02,
5.49081527e+02, 5.49081527e+02, 5.49081527e+02, 5.49081527e+02,
5.29216091e+02, 5.29216091e+02, 5.29216091e+02, 5.29216091e+02,
5.11921185e+02, 5.11921185e+02, 5.11921185e+02, 5.11921185e+02,
4.97545244e+02, 4.97545244e+02, 4.97545244e+02, 4.97545244e+02,
4.86291897e+02, 4.86291897e+02, 4.86291897e+02, 4.86291897e+02,
4.78109904e+02, 4.78109904e+02, 4.78109904e+02, 4.78109904e+02,
4.72583831e+02, 4.72583831e+02, 4.72583831e+02, 4.72583831e+02,
4.69066980e+02, 4.69066980e+02, 4.69066980e+02, 4.69066980e+02,
4.66717402e+02, 4.66717402e+02, 4.66717402e+02, 4.66717402e+02,
4.64917242e+02, 4.64917242e+02, 4.64917242e+02, 4.64917242e+02,
4.63194566e+02, 4.63194566e+02, 4.63194566e+02, 4.63194566e+02,
4.61252714e+02, 4.61252714e+02, 4.61252714e+02, 4.61252714e+02,
4.58921153e+02, 4.58921153e+02, 4.58921153e+02, 4.58921153e+02,
4.57188983e+02, 4.57188983e+02, 4.57188983e+02, 4.57188983e+02,
4.56328452e+02, 4.56328452e+02, 4.56328452e+02, 4.56328452e+02,
4.56152886e+02, 4.56152886e+02, 4.56152886e+02, 4.56152886e+02,
4.56518413e+02, 4.56518413e+02, 4.56518413e+02, 4.56518413e+02,
4.58123265e+02, 4.58123265e+02, 4.58123265e+02, 4.58123265e+02,
4.60396684e+02, 4.60396684e+02, 4.60396684e+02, 4.60396684e+02,
4.61683518e+02, 4.61683518e+02, 4.61683518e+02, 4.61683518e+02,
4.62187018e+02, 4.62187018e+02, 4.62187018e+02, 4.62187018e+02,
4.62180069e+02, 4.62180069e+02, 4.62180069e+02, 4.62180069e+02,
4.61692947e+02, 4.61692947e+02, 4.61692947e+02, 4.61692947e+02,
4.60488509e+02, 4.60488509e+02, 4.60488509e+02, 4.60488509e+02,
4.59598259e+02, 4.59598259e+02, 4.59598259e+02, 4.59598259e+02,
4.59243526e+02, 4.59243526e+02, 4.59243526e+02, 4.59243526e+02,
4.59176256e+02, 4.59176256e+02, 4.59176256e+02, 4.59176256e+02,
4.59584943e+02, 4.59584943e+02, 4.59584943e+02, 4.59584943e+02,
4.61767872e+02, 4.61767872e+02, 4.61767872e+02, 4.61767872e+02,
4.68198377e+02, 4.68198377e+02, 4.68198377e+02, 4.68198377e+02,
4.31471330e+02, 4.31471330e+02, 4.31471330e+02, 4.31471330e+02,
6.31355976e+01, 6.31355976e+01, 6.31355976e+01, 6.31355976e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99970841, 0.99970841, 0.99970841, 0.99970841, 0.99930144,
0.99930144, 0.99930144, 0.99930144, 0.99863196, 0.99863196,
0.99863196, 0.99863196, 0.99739581, 0.99739581, 0.99739581,
0.99739581, 0.99528631, 0.99528631, 0.99528631, 0.99528631,
0.99187569, 0.99187569, 0.99187569, 0.99187569, 0.98667832,
0.98667832, 0.98667832, 0.98667832, 0.97921344, 0.97921344,
0.97921344, 0.97921344, 0.96910018, 0.96910018, 0.96910018,
0.96910018, 0.95614459, 0.95614459, 0.95614459, 0.95614459,
0.9403864 , 0.9403864 , 0.9403864 , 0.9403864 , 0.92208515,
0.92208515, 0.92208515, 0.92208515, 0.90165204, 0.90165204,
0.90165204, 0.90165204, 0.8795543 , 0.8795543 , 0.8795543 ,
0.8795543 , 0.8562219 , 0.8562219 , 0.8562219 , 0.8562219 ,
0.83199086, 0.83199086, 0.83199086, 0.83199086, 0.8072897 ,
0.8072897 , 0.8072897 , 0.8072897 , 0.78301889, 0.78301889,
0.78301889, 0.78301889, 0.75959872, 0.75959872, 0.75959872,
0.75959872, 0.73699392, 0.73699392, 0.73699392, 0.73699392,
0.71523797, 0.71523797, 0.71523797, 0.71523797, 0.69439779,
0.69439779, 0.69439779, 0.69439779, 0.67459707, 0.67459707,
0.67459707, 0.67459707, 0.65602985, 0.65602985, 0.65602985,
0.65602985, 0.63896899, 0.63896899, 0.63896899, 0.63896899,
0.62375603, 0.62375603, 0.62375603, 0.62375603, 0.61074842,
0.61074842, 0.61074842, 0.61074842, 0.60023158, 0.60023158,
0.60023158, 0.60023158, 0.59228914, 0.59228914, 0.59228914,
0.59228914, 0.58673321, 0.58673321, 0.58673321, 0.58673321,
0.5830625 , 0.5830625 , 0.5830625 , 0.5830625 , 0.58066207,
0.58066207, 0.58066207, 0.58066207, 0.57886054, 0.57886054,
0.57886054, 0.57886054, 0.57725697, 0.57725697, 0.57725697,
0.57725697, 0.57558483, 0.57558483, 0.57558483, 0.57558483,
0.57353187, 0.57353187, 0.57353187, 0.57353187, 0.57172821,
0.57172821, 0.57172821, 0.57172821, 0.57069065, 0.57069065,
0.57069065, 0.57069065, 0.57030617, 0.57030617, 0.57030617,
0.57030617, 0.5703162 , 0.5703162 , 0.5703162 , 0.5703162 ,
0.57112889, 0.57112889, 0.57112889, 0.57112889, 0.57300196,
0.57300196, 0.57300196, 0.57300196, 0.57433756, 0.57433756,
0.57433756, 0.57433756, 0.57479763, 0.57479763, 0.57479763,
0.57479763, 0.5747401 , 0.5747401 , 0.5747401 , 0.5747401 ,
0.57411922, 0.57411922, 0.57411922, 0.57411922, 0.57239232,
0.57239232, 0.57239232, 0.57239232, 0.56952083, 0.56952083,
0.56952083, 0.56952083, 0.56630556, 0.56630556, 0.56630556,
0.56630556, 0.56528681, 0.56528681, 0.56528681, 0.56528681,
0.57801817, 0.57801817, 0.57801817, 0.57801817, 0.78841406,
0.78841406, 0.78841406, 0.78841406, 4.86286501, 4.86286501,
4.86286501, 4.86286501, 5.97828859, 5.97828859, 5.97828859,
5.97828859, 5.72444693, 5.72444693, 5.72444693, 5.72444693,
1.91551567, 1.91551567, 1.91551567, 1.91551567, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95865388e+01, -1.95865388e+01, -1.95865388e+01, -1.95865388e+01,
-1.95713064e+01, -1.95713064e+01, -1.95713064e+01, -1.95713064e+01,
-1.95462396e+01, -1.95462396e+01, -1.95462396e+01, -1.95462396e+01,
-1.94999235e+01, -1.94999235e+01, -1.94999235e+01, -1.94999235e+01,
-1.94207876e+01, -1.94207876e+01, -1.94207876e+01, -1.94207876e+01,
-1.92925726e+01, -1.92925726e+01, -1.92925726e+01, -1.92925726e+01,
-1.90965325e+01, -1.90965325e+01, -1.90965325e+01, -1.90965325e+01,
-1.88135375e+01, -1.88135375e+01, -1.88135375e+01, -1.88135375e+01,
-1.84273846e+01, -1.84273846e+01, -1.84273846e+01, -1.84273846e+01,
-1.79279360e+01, -1.79279360e+01, -1.79279360e+01, -1.79279360e+01,
-1.73130132e+01, -1.73130132e+01, -1.73130132e+01, -1.73130132e+01,
-1.65882893e+01, -1.65882893e+01, -1.65882893e+01, -1.65882893e+01,
-1.57652611e+01, -1.57652611e+01, -1.57652611e+01, -1.57652611e+01,
-1.48580597e+01, -1.48580597e+01, -1.48580597e+01, -1.48580597e+01,
-1.38800039e+01, -1.38800039e+01, -1.38800039e+01, -1.38800039e+01,
-1.28403183e+01, -1.28403183e+01, -1.28403183e+01, -1.28403183e+01,
-1.17572595e+01, -1.17572595e+01, -1.17572595e+01, -1.17572595e+01,
-1.06706023e+01, -1.06706023e+01, -1.06706023e+01, -1.06706023e+01,
-9.59207782e+00, -9.59207782e+00, -9.59207782e+00, -9.59207782e+00,
-8.52590941e+00, -8.52590941e+00, -8.52590941e+00, -8.52590941e+00,
-7.47481508e+00, -7.47481508e+00, -7.47481508e+00, -7.47481508e+00,
-6.44384352e+00, -6.44384352e+00, -6.44384352e+00, -6.44384352e+00,
-5.44119216e+00, -5.44119216e+00, -5.44119216e+00, -5.44119216e+00,
-4.47950487e+00, -4.47950487e+00, -4.47950487e+00, -4.47950487e+00,
-3.57669281e+00, -3.57669281e+00, -3.57669281e+00, -3.57669281e+00,
-2.75546701e+00, -2.75546701e+00, -2.75546701e+00, -2.75546701e+00,
-2.04082894e+00, -2.04082894e+00, -2.04082894e+00, -2.04082894e+00,
-1.45414272e+00, -1.45414272e+00, -1.45414272e+00, -1.45414272e+00,
-1.00612603e+00, -1.00612603e+00, -1.00612603e+00, -1.00612603e+00,
-6.89455908e-01, -6.89455908e-01, -6.89455908e-01, -6.89455908e-01,
-4.80670053e-01, -4.80670053e-01, -4.80670053e-01, -4.80670053e-01,
-3.42319475e-01, -3.42319475e-01, -3.42319475e-01, -3.42319475e-01,
-2.41375012e-01, -2.41375012e-01, -2.41375012e-01, -2.41375012e-01,
-1.49405839e-01, -1.49405839e-01, -1.49405839e-01, -1.49405839e-01,
-5.40162466e-02, -5.40162466e-02, -5.40162466e-02, -5.40162466e-02,
6.27764545e-02, 6.27764545e-02, 6.27764545e-02, 6.27764545e-02,
1.64311210e-01, 1.64311210e-01, 1.64311210e-01, 1.64311210e-01,
2.23440404e-01, 2.23440404e-01, 2.23440404e-01, 2.23440404e-01,
2.41331685e-01, 2.41331685e-01, 2.41331685e-01, 2.41331685e-01,
2.35342066e-01, 2.35342066e-01, 2.35342066e-01, 2.35342066e-01,
1.81482270e-01, 1.81482270e-01, 1.81482270e-01, 1.81482270e-01,
6.48488095e-02, 6.48488095e-02, 6.48488095e-02, 6.48488095e-02,
-2.03568679e-02, -2.03568679e-02, -2.03568679e-02, -2.03568679e-02,
-5.86975676e-02, -5.86975676e-02, -5.86975676e-02, -5.86975676e-02,
-6.46947945e-02, -6.46947945e-02, -6.46947945e-02, -6.46947945e-02,
-5.30438151e-02, -5.30438151e-02, -5.30438151e-02, -5.30438151e-02,
-3.73867515e-03, -3.73867515e-03, -3.73867515e-03, -3.73867515e-03,
5.22001451e-02, 5.22001451e-02, 5.22001451e-02, 5.22001451e-02,
7.99846270e-02, 7.99846270e-02, 7.99846270e-02, 7.99846270e-02,
8.71690661e-02, 8.71690661e-02, 8.71690661e-02, 8.71690661e-02,
7.83717458e-02, 7.83717458e-02, 7.83717458e-02, 7.83717458e-02,
4.48742665e-02, 4.48742665e-02, 4.48742665e-02, 4.48742665e-02,
1.53078823e-03, 1.53078823e-03, 1.53078823e-03, 1.53078823e-03,
-9.86484392e-02, -9.86484392e-02, -9.86484392e-02, -9.86484392e-02,
-4.95626950e-01, -4.95626950e-01, -4.95626950e-01, -4.95626950e-01,
-1.04680111e+01, -1.04680111e+01, -1.04680111e+01, -1.04680111e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99591815e+02, 9.99591815e+02, 9.99591815e+02, 9.99591815e+02,
9.99022210e+02, 9.99022210e+02, 9.99022210e+02, 9.99022210e+02,
9.98085463e+02, 9.98085463e+02, 9.98085463e+02, 9.98085463e+02,
9.96356640e+02, 9.96356640e+02, 9.96356640e+02, 9.96356640e+02,
9.93408753e+02, 9.93408753e+02, 9.93408753e+02, 9.93408753e+02,
9.88648660e+02, 9.88648660e+02, 9.88648660e+02, 9.88648660e+02,
9.81408703e+02, 9.81408703e+02, 9.81408703e+02, 9.81408703e+02,
9.71038404e+02, 9.71038404e+02, 9.71038404e+02, 9.71038404e+02,
9.57040940e+02, 9.57040940e+02, 9.57040940e+02, 9.57040940e+02,
9.39195528e+02, 9.39195528e+02, 9.39195528e+02, 9.39195528e+02,
9.17619067e+02, 9.17619067e+02, 9.17619067e+02, 9.17619067e+02,
8.92738992e+02, 8.92738992e+02, 8.92738992e+02, 8.92738992e+02,
8.65189172e+02, 8.65189172e+02, 8.65189172e+02, 8.65189172e+02,
8.35670124e+02, 8.35670124e+02, 8.35670124e+02, 8.35670124e+02,
8.04816955e+02, 8.04816955e+02, 8.04816955e+02, 8.04816955e+02,
7.73095509e+02, 7.73095509e+02, 7.73095509e+02, 7.73095509e+02,
7.41140547e+02, 7.41140547e+02, 7.41140547e+02, 7.41140547e+02,
7.10145956e+02, 7.10145956e+02, 7.10145956e+02, 7.10145956e+02,
6.80600426e+02, 6.80600426e+02, 6.80600426e+02, 6.80600426e+02,
6.52428119e+02, 6.52428119e+02, 6.52428119e+02, 6.52428119e+02,
6.25639802e+02, 6.25639802e+02, 6.25639802e+02, 6.25639802e+02,
6.00284835e+02, 6.00284835e+02, 6.00284835e+02, 6.00284835e+02,
5.76477037e+02, 5.76477037e+02, 5.76477037e+02, 5.76477037e+02,
5.54407827e+02, 5.54407827e+02, 5.54407827e+02, 5.54407827e+02,
5.34352397e+02, 5.34352397e+02, 5.34352397e+02, 5.34352397e+02,
5.16653749e+02, 5.16653749e+02, 5.16653749e+02, 5.16653749e+02,
5.01661646e+02, 5.01661646e+02, 5.01661646e+02, 5.01661646e+02,
4.89637328e+02, 4.89637328e+02, 4.89637328e+02, 4.89637328e+02,
4.80616585e+02, 4.80616585e+02, 4.80616585e+02, 4.80616585e+02,
4.74341772e+02, 4.74341772e+02, 4.74341772e+02, 4.74341772e+02,
4.70218666e+02, 4.70218666e+02, 4.70218666e+02, 4.70218666e+02,
4.67540691e+02, 4.67540691e+02, 4.67540691e+02, 4.67540691e+02,
4.65545430e+02, 4.65545430e+02, 4.65545430e+02, 4.65545430e+02,
4.63778314e+02, 4.63778314e+02, 4.63778314e+02, 4.63778314e+02,
4.61940211e+02, 4.61940211e+02, 4.61940211e+02, 4.61940211e+02,
4.59684748e+02, 4.59684748e+02, 4.59684748e+02, 4.59684748e+02,
4.57720215e+02, 4.57720215e+02, 4.57720215e+02, 4.57720215e+02,
4.56621500e+02, 4.56621500e+02, 4.56621500e+02, 4.56621500e+02,
4.56264513e+02, 4.56264513e+02, 4.56264513e+02, 4.56264513e+02,
4.56373259e+02, 4.56373259e+02, 4.56373259e+02, 4.56373259e+02,
4.57402934e+02, 4.57402934e+02, 4.57402934e+02, 4.57402934e+02,
4.59642497e+02, 4.59642497e+02, 4.59642497e+02, 4.59642497e+02,
4.61292364e+02, 4.61292364e+02, 4.61292364e+02, 4.61292364e+02,
4.61981033e+02, 4.61981033e+02, 4.61981033e+02, 4.61981033e+02,
4.62155688e+02, 4.62155688e+02, 4.62155688e+02, 4.62155688e+02,
4.61925772e+02, 4.61925772e+02, 4.61925772e+02, 4.61925772e+02,
4.60951335e+02, 4.60951335e+02, 4.60951335e+02, 4.60951335e+02,
4.59861646e+02, 4.59861646e+02, 4.59861646e+02, 4.59861646e+02,
4.59352273e+02, 4.59352273e+02, 4.59352273e+02, 4.59352273e+02,
4.59248358e+02, 4.59248358e+02, 4.59248358e+02, 4.59248358e+02,
4.59387673e+02, 4.59387673e+02, 4.59387673e+02, 4.59387673e+02,
4.60098101e+02, 4.60098101e+02, 4.60098101e+02, 4.60098101e+02,
4.62949741e+02, 4.62949741e+02, 4.62949741e+02, 4.62949741e+02,
4.69024772e+02, 4.69024772e+02, 4.69024772e+02, 4.69024772e+02,
4.31422201e+02, 4.31422201e+02, 4.31422201e+02, 4.31422201e+02,
9.89530174e+01, 9.89530174e+01, 9.89530174e+01, 9.89530174e+01,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99932538, 0.99932538, 0.99932538, 0.99932538, 0.99847389,
0.99847389, 0.99847389, 0.99847389, 0.99719065, 0.99719065,
0.99719065, 0.99719065, 0.99496302, 0.99496302, 0.99496302,
0.99496302, 0.99142211, 0.99142211, 0.99142211, 0.99142211,
0.98608452, 0.98608452, 0.98608452, 0.98608452, 0.97849947,
0.97849947, 0.97849947, 0.97849947, 0.96831888, 0.96831888,
0.96831888, 0.96831888, 0.95538145, 0.95538145, 0.95538145,
0.95538145, 0.93974967, 0.93974967, 0.93974967, 0.93974967,
0.92169084, 0.92169084, 0.92169084, 0.92169084, 0.90160897,
0.90160897, 0.90160897, 0.90160897, 0.87995416, 0.87995416,
0.87995416, 0.87995416, 0.85713646, 0.85713646, 0.85713646,
0.85713646, 0.83347361, 0.83347361, 0.83347361, 0.83347361,
0.80935571, 0.80935571, 0.80935571, 0.80935571, 0.78560567,
0.78560567, 0.78560567, 0.78560567, 0.76265514, 0.76265514,
0.76265514, 0.76265514, 0.74047006, 0.74047006, 0.74047006,
0.74047006, 0.71907784, 0.71907784, 0.71907784, 0.71907784,
0.69853288, 0.69853288, 0.69853288, 0.69853288, 0.67893724,
0.67893724, 0.67893724, 0.67893724, 0.66045809, 0.66045809,
0.66045809, 0.66045809, 0.64333733, 0.64333733, 0.64333733,
0.64333733, 0.62788631, 0.62788631, 0.62788631, 0.62788631,
0.61445357, 0.61445357, 0.61445357, 0.61445357, 0.60334507,
0.60334507, 0.60334507, 0.60334507, 0.59472239, 0.59472239,
0.59472239, 0.59472239, 0.58848768, 0.58848768, 0.58848768,
0.58848768, 0.58427796, 0.58427796, 0.58427796, 0.58427796,
0.5814882 , 0.5814882 , 0.5814882 , 0.5814882 , 0.5795213 ,
0.5795213 , 0.5795213 , 0.5795213 , 0.57783345, 0.57783345,
0.57783345, 0.57783345, 0.5761768 , 0.5761768 , 0.5761768 ,
0.5761768 , 0.57425319, 0.57425319, 0.57425319, 0.57425319,
0.57233885, 0.57233885, 0.57233885, 0.57233885, 0.57105499,
0.57105499, 0.57105499, 0.57105499, 0.57050443, 0.57050443,
0.57050443, 0.57050443, 0.57039605, 0.57039605, 0.57039605,
0.57039605, 0.5708286 , 0.5708286 , 0.5708286 , 0.5708286 ,
0.57237405, 0.57237405, 0.57237405, 0.57237405, 0.57399928,
0.57399928, 0.57399928, 0.57399928, 0.57476715, 0.57476715,
0.57476715, 0.57476715, 0.57485765, 0.57485765, 0.57485765,
0.57485765, 0.57460734, 0.57460734, 0.57460734, 0.57460734,
0.57363085, 0.57363085, 0.57363085, 0.57363085, 0.57174526,
0.57174526, 0.57174526, 0.57174526, 0.56921496, 0.56921496,
0.56921496, 0.56921496, 0.56625196, 0.56625196, 0.56625196,
0.56625196, 0.56536145, 0.56536145, 0.56536145, 0.56536145,
0.578315 , 0.578315 , 0.578315 , 0.578315 , 0.78931831,
0.78931831, 0.78931831, 0.78931831, 4.87110358, 4.87110358,
4.87110358, 4.87110358, 5.97236196, 5.97236196, 5.97236196,
5.97236196, 5.69785103, 5.69785103, 5.69785103, 5.69785103,
2.31571933, 2.31571933, 2.31571933, 2.31571933, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([-1.95722036e+01, -1.95722036e+01, -1.95722036e+01, -1.95722036e+01,
-1.95403180e+01, -1.95403180e+01, -1.95403180e+01, -1.95403180e+01,
-1.94922333e+01, -1.94922333e+01, -1.94922333e+01, -1.94922333e+01,
-1.94086470e+01, -1.94086470e+01, -1.94086470e+01, -1.94086470e+01,
-1.92754934e+01, -1.92754934e+01, -1.92754934e+01, -1.92754934e+01,
-1.90740772e+01, -1.90740772e+01, -1.90740772e+01, -1.90740772e+01,
-1.87863686e+01, -1.87863686e+01, -1.87863686e+01, -1.87863686e+01,
-1.83973957e+01, -1.83973957e+01, -1.83973957e+01, -1.83973957e+01,
-1.78983110e+01, -1.78983110e+01, -1.78983110e+01, -1.78983110e+01,
-1.72879413e+01, -1.72879413e+01, -1.72879413e+01, -1.72879413e+01,
-1.65724820e+01, -1.65724820e+01, -1.65724820e+01, -1.65724820e+01,
-1.57634345e+01, -1.57634345e+01, -1.57634345e+01, -1.57634345e+01,
-1.48745566e+01, -1.48745566e+01, -1.48745566e+01, -1.48745566e+01,
-1.39186657e+01, -1.39186657e+01, -1.39186657e+01, -1.39186657e+01,
-1.29046184e+01, -1.29046184e+01, -1.29046184e+01, -1.29046184e+01,
-1.18486586e+01, -1.18486586e+01, -1.18486586e+01, -1.18486586e+01,
-1.07878435e+01, -1.07878435e+01, -1.07878435e+01, -1.07878435e+01,
-9.73402118e+00, -9.73402118e+00, -9.73402118e+00, -9.73402118e+00,
-8.69129853e+00, -8.69129853e+00, -8.69129853e+00, -8.69129853e+00,
-7.66189814e+00, -7.66189814e+00, -7.66189814e+00, -7.66189814e+00,
-6.65000920e+00, -6.65000920e+00, -6.65000920e+00, -6.65000920e+00,
-5.66259114e+00, -5.66259114e+00, -5.66259114e+00, -5.66259114e+00,
-4.71044094e+00, -4.71044094e+00, -4.71044094e+00, -4.71044094e+00,
-3.80919260e+00, -3.80919260e+00, -3.80919260e+00, -3.80919260e+00,
-2.97944840e+00, -2.97944840e+00, -2.97944840e+00, -2.97944840e+00,
-2.24489039e+00, -2.24489039e+00, -2.24489039e+00, -2.24489039e+00,
-1.62801708e+00, -1.62801708e+00, -1.62801708e+00, -1.62801708e+00,
-1.14294391e+00, -1.14294391e+00, -1.14294391e+00, -1.14294391e+00,
-7.89386694e-01, -7.89386694e-01, -7.89386694e-01, -7.89386694e-01,
-5.48465812e-01, -5.48465812e-01, -5.48465812e-01, -5.48465812e-01,
-3.89880604e-01, -3.89880604e-01, -3.89880604e-01, -3.89880604e-01,
-2.76421292e-01, -2.76421292e-01, -2.76421292e-01, -2.76421292e-01,
-1.81423842e-01, -1.81423842e-01, -1.81423842e-01, -1.81423842e-01,
-8.68886822e-02, -8.68886822e-02, -8.68886822e-02, -8.68886822e-02,
2.34026624e-02, 2.34026624e-02, 2.34026624e-02, 2.34026624e-02,
1.32897657e-01, 1.32897657e-01, 1.32897657e-01, 1.32897657e-01,
2.03757123e-01, 2.03757123e-01, 2.03757123e-01, 2.03757123e-01,
2.33947740e-01, 2.33947740e-01, 2.33947740e-01, 2.33947740e-01,
2.36273663e-01, 2.36273663e-01, 2.36273663e-01, 2.36273663e-01,
2.05566425e-01, 2.05566425e-01, 2.05566425e-01, 2.05566425e-01,
1.08555848e-01, 1.08555848e-01, 1.08555848e-01, 1.08555848e-01,
6.17048246e-03, 6.17048246e-03, 6.17048246e-03, 6.17048246e-03,
-4.50500960e-02, -4.50500960e-02, -4.50500960e-02, -4.50500960e-02,
-6.17988256e-02, -6.17988256e-02, -6.17988256e-02, -6.17988256e-02,
-5.81251979e-02, -5.81251979e-02, -5.81251979e-02, -5.81251979e-02,
-2.45396980e-02, -2.45396980e-02, -2.45396980e-02, -2.45396980e-02,
3.52554497e-02, 3.52554497e-02, 3.52554497e-02, 3.52554497e-02,
7.06347195e-02, 7.06347195e-02, 7.06347195e-02, 7.06347195e-02,
8.26184454e-02, 8.26184454e-02, 8.26184454e-02, 8.26184454e-02,
8.19573239e-02, 8.19573239e-02, 8.19573239e-02, 8.19573239e-02,
6.05906148e-02, 6.05906148e-02, 6.05906148e-02, 6.05906148e-02,
1.53916128e-02, 1.53916128e-02, 1.53916128e-02, 1.53916128e-02,
-2.36280500e-02, -2.36280500e-02, -2.36280500e-02, -2.36280500e-02,
-8.08509569e-02, -8.08509569e-02, -8.08509569e-02, -8.08509569e-02,
-1.88053082e-01, -1.88053082e-01, -1.88053082e-01, -1.88053082e-01,
-8.77545493e+00, -8.77545493e+00, -8.77545493e+00, -8.77545493e+00,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01, -1.95974500e+01,
-1.95974500e+01, -1.95974500e+01, -1.95974500e+01]), 'P': array([9.99055758e+02, 9.99055758e+02, 9.99055758e+02, 9.99055758e+02,
9.97864296e+02, 9.97864296e+02, 9.97864296e+02, 9.97864296e+02,
9.96069823e+02, 9.96069823e+02, 9.96069823e+02, 9.96069823e+02,
9.92957177e+02, 9.92957177e+02, 9.92957177e+02, 9.92957177e+02,
9.88016071e+02, 9.88016071e+02, 9.88016071e+02, 9.88016071e+02,
9.80582335e+02, 9.80582335e+02, 9.80582335e+02, 9.80582335e+02,
9.70047780e+02, 9.70047780e+02, 9.70047780e+02, 9.70047780e+02,
9.55961126e+02, 9.55961126e+02, 9.55961126e+02, 9.55961126e+02,
9.38145851e+02, 9.38145851e+02, 9.38145851e+02, 9.38145851e+02,
9.16747939e+02, 9.16747939e+02, 9.16747939e+02, 9.16747939e+02,
8.92201843e+02, 8.92201843e+02, 8.92201843e+02, 8.92201843e+02,
8.65127175e+02, 8.65127175e+02, 8.65127175e+02, 8.65127175e+02,
8.36196578e+02, 8.36196578e+02, 8.36196578e+02, 8.36196578e+02,
8.06014257e+02, 8.06014257e+02, 8.06014257e+02, 8.06014257e+02,
7.75021205e+02, 7.75021205e+02, 7.75021205e+02, 7.75021205e+02,
7.43790671e+02, 7.43790671e+02, 7.43790671e+02, 7.43790671e+02,
7.13426487e+02, 7.13426487e+02, 7.13426487e+02, 7.13426487e+02,
6.84430514e+02, 6.84430514e+02, 6.84430514e+02, 6.84430514e+02,
6.56732353e+02, 6.56732353e+02, 6.56732353e+02, 6.56732353e+02,
6.30337925e+02, 6.30337925e+02, 6.30337925e+02, 6.30337925e+02,
6.05284642e+02, 6.05284642e+02, 6.05284642e+02, 6.05284642e+02,
5.81664184e+02, 5.81664184e+02, 5.81664184e+02, 5.81664184e+02,
5.59640349e+02, 5.59640349e+02, 5.59640349e+02, 5.59640349e+02,
5.39457397e+02, 5.39457397e+02, 5.39457397e+02, 5.39457397e+02,
5.21430448e+02, 5.21430448e+02, 5.21430448e+02, 5.21430448e+02,
5.05906319e+02, 5.05906319e+02, 5.05906319e+02, 5.05906319e+02,
4.93174854e+02, 4.93174854e+02, 4.93174854e+02, 4.93174854e+02,
4.83361102e+02, 4.83361102e+02, 4.83361102e+02, 4.83361102e+02,
4.76305712e+02, 4.76305712e+02, 4.76305712e+02, 4.76305712e+02,
4.71566197e+02, 4.71566197e+02, 4.71566197e+02, 4.71566197e+02,
4.68442609e+02, 4.68442609e+02, 4.68442609e+02, 4.68442609e+02,
4.66255482e+02, 4.66255482e+02, 4.66255482e+02, 4.66255482e+02,
4.64389544e+02, 4.64389544e+02, 4.64389544e+02, 4.64389544e+02,
4.62563951e+02, 4.62563951e+02, 4.62563951e+02, 4.62563951e+02,
4.60445001e+02, 4.60445001e+02, 4.60445001e+02, 4.60445001e+02,
4.58346750e+02, 4.58346750e+02, 4.58346750e+02, 4.58346750e+02,
4.56965719e+02, 4.56965719e+02, 4.56965719e+02, 4.56965719e+02,
4.56412626e+02, 4.56412626e+02, 4.56412626e+02, 4.56412626e+02,
4.56365020e+02, 4.56365020e+02, 4.56365020e+02, 4.56365020e+02,
4.56946993e+02, 4.56946993e+02, 4.56946993e+02, 4.56946993e+02,
4.58799914e+02, 4.58799914e+02, 4.58799914e+02, 4.58799914e+02,
4.60763034e+02, 4.60763034e+02, 4.60763034e+02, 4.60763034e+02,
4.61775701e+02, 4.61775701e+02, 4.61775701e+02, 4.61775701e+02,
4.62048828e+02, 4.62048828e+02, 4.62048828e+02, 4.62048828e+02,
4.62006574e+02, 4.62006574e+02, 4.62006574e+02, 4.62006574e+02,
4.61376208e+02, 4.61376208e+02, 4.61376208e+02, 4.61376208e+02,
4.60221577e+02, 4.60221577e+02, 4.60221577e+02, 4.60221577e+02,
4.59512318e+02, 4.59512318e+02, 4.59512318e+02, 4.59512318e+02,
4.59287827e+02, 4.59287827e+02, 4.59287827e+02, 4.59287827e+02,
4.59332397e+02, 4.59332397e+02, 4.59332397e+02, 4.59332397e+02,
4.59745748e+02, 4.59745748e+02, 4.59745748e+02, 4.59745748e+02,
4.60735106e+02, 4.60735106e+02, 4.60735106e+02, 4.60735106e+02,
4.63863896e+02, 4.63863896e+02, 4.63863896e+02, 4.63863896e+02,
4.68374949e+02, 4.68374949e+02, 4.68374949e+02, 4.68374949e+02,
4.28980647e+02, 4.28980647e+02, 4.28980647e+02, 4.28980647e+02,
1.36568031e+02, 1.36568031e+02, 1.36568031e+02, 1.36568031e+02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}]}
running none hll
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 16.06 ms [DataInserterUtility][rank=0]
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 : 4.40 us (49.3%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (0.3%)
patch tree reduce : 1.45 us (0.2%)
gen split merge : 741.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.19 us (0.2%)
LB compute : 598.05 us (97.9%)
LB move op cnt : 0
LB apply : 3.20 us (0.5%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running none hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.25 us (2.1%)
patch tree reduce : 2.49 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 521.08 us (95.3%)
LB move op cnt : 0
LB apply : 3.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.6973e+05 | 65536 | 2 | 2.430e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (1.2%)
patch tree reduce : 2.12 us (0.4%)
gen split merge : 862.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.14 us (0.2%)
LB compute : 575.25 us (96.2%)
LB move op cnt : 0
LB apply : 4.76 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (72.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3291e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.20944505731795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003961660569039922, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.4%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 374.88 us (95.1%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (64.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4515e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.87359089900161 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007923321138079843, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.3%)
patch tree reduce : 1.92 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 412.42 us (95.4%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3926e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.59141365624386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011884981707119765, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.5%)
patch tree reduce : 2.22 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 387.07 us (94.9%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5554e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.13554015518771 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015846642276159686, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.3%)
patch tree reduce : 1.82 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 414.47 us (95.4%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5884e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.85223532716834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019808302845199608, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.5%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 374.90 us (95.0%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5819e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.7107966358448 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02376996341423953, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.6%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 374.98 us (94.7%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6898e+05 | 65536 | 2 | 1.776e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.29704597649005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02773162398327945, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.4%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 382.00 us (95.0%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5996e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.09687871556343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03169328455231937, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 297.10 us (93.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (59.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5380e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.75562218619247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03565494512135929, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 324.76 us (94.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2704e+05 | 65536 | 2 | 2.004e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.16957586542111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03961660569039921, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.3%)
patch tree reduce : 1.82 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 397.52 us (95.2%)
LB move op cnt : 0
LB apply : 4.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (66.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2021e+05 | 65536 | 2 | 2.047e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.68339275165404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04357826625943913, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.4%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 367.49 us (94.9%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1745e+05 | 65536 | 2 | 2.064e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.08285652531218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047539926828479045, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.4%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 397.62 us (95.3%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1297e+05 | 65536 | 2 | 2.094e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.10832981553754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051501587397518964, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.3%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 378.44 us (95.1%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2013e+05 | 65536 | 2 | 2.047e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.66618828627779 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05546324796655888, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 318.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5550e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.12672672684064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0594249085355988, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.7%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 293.85 us (94.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (59.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5660e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.36509250954317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06338656910463872, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 302.12 us (94.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4088e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.944387424273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06734822967367864, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.1%)
patch tree reduce : 1.98 us (0.4%)
gen split merge : 822.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 532.74 us (96.1%)
LB move op cnt : 0
LB apply : 4.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (70.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4479e+05 | 65536 | 2 | 1.901e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.03399077918968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07130989024271855, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 973.00 ns (0.3%)
LB compute : 334.63 us (94.7%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6073e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.26491257127105 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07527155081175847, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 283.86 us (93.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5303e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.58783151060466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07923321138079839, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.43 us (0.5%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 279.20 us (93.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5334e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6551395930435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08319487194983831, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 297.92 us (94.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (59.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5535e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.0939562615871 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08715653251887823, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 305.58 us (94.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (56.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5995e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.09441713120282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09111819308791815, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 274.93 us (93.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6557e+05 | 65536 | 2 | 1.408e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.31659597837934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09507985365695806, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 288.44 us (93.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2287e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.02534295216913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09904151422599798, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 311.55 us (94.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3329e+05 | 65536 | 2 | 1.966e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.53150354175058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1030031747950379, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 302.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4045e+05 | 65536 | 2 | 1.925e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.08954088852686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10696483536407782, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 276.67 us (93.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (60.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1559e+05 | 65536 | 2 | 2.077e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.67928542952568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11092649593311774, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.4%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 348.46 us (94.8%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5768e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.59948019734638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11488815650215765, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 324.33 us (94.2%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6438e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.05907299892927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11884981707119757, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.7%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 293.82 us (94.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6271e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.69504859714691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12281147764023749, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 276.53 us (93.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6292e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.74084721546782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1267731382092774, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.9%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 273.74 us (93.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (60.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8673e+05 | 65536 | 2 | 1.695e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.1606654510838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13073479877831734, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 299.53 us (94.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4753e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.39247564968376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13469645934735727, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.3%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 373.24 us (95.1%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5211e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.38756216316567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1386581199163972, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 314.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5515e+05 | 65536 | 2 | 1.845e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.2879970154698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14261978048543714, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 346.78 us (94.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3821e+05 | 65536 | 2 | 1.938e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.60078914154623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14658144105447707, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.9%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 312.95 us (93.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2865e+05 | 65536 | 2 | 1.994e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.51990630197714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.150543101623517, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.8%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 323.63 us (93.8%)
LB move op cnt : 0
LB apply : 4.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6697e+05 | 65536 | 2 | 1.786e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.86050723541238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15450476219255693, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 326.46 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0597e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.34659561701172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15846642276159686, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 308.34 us (94.0%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6025e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.16003049993301 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1624280833306368, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 351.61 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5160e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.2768811890815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16638974389967673, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 335.73 us (94.4%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3890e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.51445397398514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17035140446871666, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (2.0%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 265.06 us (93.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0205e+05 | 65536 | 2 | 1.630e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.49535765950378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1743130650377566, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 295.38 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6040e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.19300881967997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17827472560679652, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.8%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 307.27 us (93.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6544e+05 | 65536 | 2 | 1.408e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.29003266934367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18223638617583646, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.6%)
patch tree reduce : 2.41 us (0.8%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 292.20 us (93.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6113e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.35209092996828 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1861980467448764, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 321.51 us (94.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8310e+05 | 65536 | 2 | 1.711e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.37015032653662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19015970731391632, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.8%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 275.71 us (93.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (60.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6593e+05 | 65536 | 2 | 1.791e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.63384527468311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19412136788295625, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.9%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 275.46 us (93.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1054e+05 | 65536 | 2 | 2.110e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.58046818800563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19808302845199618, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 333.31 us (94.5%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7839e+05 | 65536 | 2 | 1.732e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.34588348930863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20204468902103612, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 277.51 us (93.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2184e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.802061066576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20600634959007605, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 315.93 us (94.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.4%)
Info: cfl dt = 0.0039616605690399225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3265e+05 | 65536 | 2 | 1.970e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.39253030644304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20996801015911598, dt = 0.0039616605690399225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.7%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 271.02 us (93.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.2%)
Info: cfl dt = 0.003961660569039923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5073e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.08861062065468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2139296707281559, dt = 0.003961660569039923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 279.65 us (93.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (64.7%)
Info: cfl dt = 0.003961660569039926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6728e+05 | 65536 | 2 | 1.403e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.6886375296143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21789133129719584, dt = 0.003961660569039926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 289.22 us (93.7%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (60.3%)
Info: cfl dt = 0.003961660569039928 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3001e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.57844613127483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22185299186623578, dt = 0.003961660569039928
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 310.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.0%)
Info: cfl dt = 0.003961660569039934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4427e+05 | 65536 | 2 | 1.904e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.92086936448756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2258146524352757, dt = 0.003961660569039934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 312.25 us (93.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.9%)
Info: cfl dt = 0.003961660569039942 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1726e+05 | 65536 | 2 | 2.066e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.04179880073389 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22977631300431564, dt = 0.003961660569039942
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.3%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 401.94 us (95.4%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.5%)
Info: cfl dt = 0.003961660569039956 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2101e+05 | 65536 | 2 | 2.042e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.85918326555708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23373797357335557, dt = 0.003961660569039956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 320.53 us (93.9%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.2%)
Info: cfl dt = 0.003961660569039979 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4247e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.28991619512762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23769963414239553, dt = 0.003961660569039979
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 314.51 us (94.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.9%)
Info: cfl dt = 0.0039616605690400136 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2134e+05 | 65536 | 2 | 2.039e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.93087746525745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24166129471143552, dt = 0.0039616605690400136
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 327.13 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.4%)
Info: cfl dt = 0.0039616605690400665 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1363e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.01506141081607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24562295528047554, dt = 0.0039616605690400665
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 327.74 us (94.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.5%)
Info: cfl dt = 0.003961660569040146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8191e+05 | 65536 | 2 | 1.716e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.11188950710219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2495846158495156, dt = 0.003961660569040146
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 290.24 us (94.0%)
LB move op cnt : 0
LB apply : 3.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (60.5%)
Info: cfl dt = 0.003961660569040265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3108e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.81275911757412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25354627641855576, dt = 0.003961660569040265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.89 us (6.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 335.90 us (89.7%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.7%)
Info: cfl dt = 0.003961660569040438 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9832e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.6822142327112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.257507936987596, dt = 0.003961660569040438
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 336.78 us (94.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.9%)
Info: cfl dt = 0.003961660569040688 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4663e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.19612629800474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26146959755663646, dt = 0.003961660569040688
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 309.41 us (94.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.4%)
Info: cfl dt = 0.0039616605690410474 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3241e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.10041513209897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26543125812567714, dt = 0.0039616605690410474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 336.56 us (94.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.0%)
Info: cfl dt = 0.003961660569041555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3768e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.24837915417939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2693929186947182, dt = 0.003961660569041555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 310.86 us (94.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.4%)
Info: cfl dt = 0.003961660569042265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4030e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.81731932053334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2733545792637598, dt = 0.003961660569042265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 336.42 us (94.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.8%)
Info: cfl dt = 0.00396166056904325 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3461e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.5797650409556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27731623983280207, dt = 0.00396166056904325
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 343.67 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.1%)
Info: cfl dt = 0.003961660569044601 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3697e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.09413869855328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2812779004018453, dt = 0.003961660569044601
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 314.69 us (94.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.6%)
Info: cfl dt = 0.003961660569046438 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5333e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.65320357030355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2852395609708899, dt = 0.003961660569046438
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 305.40 us (94.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.4%)
Info: cfl dt = 0.003961660569048913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4369e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.55639141987005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2892012215399364, dt = 0.003961660569048913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 2.18 us (0.8%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 270.87 us (93.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.3%)
Info: cfl dt = 0.00396166056905222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5409e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.81990783789887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2931628821089853, dt = 0.00396166056905222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 336.24 us (94.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (63.1%)
Info: cfl dt = 0.0039616605690566045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2822e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.18911790005163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2971245426780375, dt = 0.0039616605690566045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 282.03 us (93.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.0%)
Info: cfl dt = 0.003961660569062371 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9988e+05 | 65536 | 2 | 1.639e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.02149975936508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3010862032470941, dt = 0.003961660569062371
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 284.62 us (93.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.5%)
Info: cfl dt = 0.0039616605690698985 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4234e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.2613858008361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3050478638161565, dt = 0.0039616605690698985
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 310.33 us (94.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.0%)
Info: cfl dt = 0.003961660569079656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6296e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.7492845649035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3090095243852264, dt = 0.003961660569079656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 334.03 us (94.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.7%)
Info: cfl dt = 0.003961660569092218 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6670e+05 | 65536 | 2 | 1.404e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.56369410873026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31297118495430604, dt = 0.003961660569092218
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 272.86 us (93.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (60.3%)
Info: cfl dt = 0.0039616605691082845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4331e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4743002690846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31693284552339823, dt = 0.0039616605691082845
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 280.11 us (93.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (63.2%)
Info: cfl dt = 0.003961660569128702 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4369e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.55506180223897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3208945060925065, dt = 0.003961660569128702
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.7%)
patch tree reduce : 2.34 us (0.8%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 279.93 us (93.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (63.3%)
Info: cfl dt = 0.003961660569154493 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5222e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.41286243092597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32485616666163525, dt = 0.003961660569154493
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.4%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 349.77 us (95.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.8%)
Info: cfl dt = 0.003961660569186882 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5893e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.87189843484398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3288178272307897, dt = 0.003961660569186882
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.5%)
patch tree reduce : 27.18 us (7.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 308.45 us (87.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.1%)
Info: cfl dt = 0.003961660569227325 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4702e+05 | 65536 | 2 | 1.889e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.51896346241507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3327794877999766, dt = 0.003961660569227325
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.1%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 269.72 us (93.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.9%)
Info: cfl dt = 0.0039616605692775544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3144e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.89062251789446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33674114836920394, dt = 0.0039616605692775544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 293.58 us (94.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.3%)
Info: cfl dt = 0.003961660569339608 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6486e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.16252783400726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3407028089384815, dt = 0.003961660569339608
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.1%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 272.67 us (92.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (61.4%)
Info: cfl dt = 0.003961660569415887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6219e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.58260883551232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3446644695078211, dt = 0.003961660569415887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 334.32 us (94.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.6%)
Info: cfl dt = 0.003961660569509195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6524e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.24673132281517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.348626130077237, dt = 0.003961660569509195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.4%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 366.34 us (95.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.7%)
Info: cfl dt = 0.0039616605696227965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6180e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.49628449425136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35258779064674617, dt = 0.0039616605696227965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 297.39 us (93.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (60.3%)
Info: cfl dt = 0.003961660569760479 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5336e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6610750796238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35654945121636894, dt = 0.003961660569760479
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 330.84 us (94.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.2%)
Info: cfl dt = 0.003961660569926615 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6278e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.71105881534693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36051111178612943, dt = 0.003961660569926615
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.4%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 332.82 us (94.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.8%)
Info: cfl dt = 0.0039616605701262375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6372e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.91567888909749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3644727723560561, dt = 0.0039616605701262375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 317.30 us (94.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.3%)
Info: cfl dt = 0.0039616605703651124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3424e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.5004900784567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36843443292618233, dt = 0.0039616605703651124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 356.56 us (94.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.7%)
Info: cfl dt = 0.003961660570649823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4356e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.5272495505686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37239609349654745, dt = 0.003961660570649823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.4%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 352.14 us (94.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.4%)
Info: cfl dt = 0.003961660570987867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2194e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.82336972055768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3763577540671973, dt = 0.003961660570987867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 321.72 us (94.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.4%)
Info: cfl dt = 0.003961660571387742 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6446e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.0754356119592 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38031941463818514, dt = 0.003961660571387742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.4%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 364.41 us (95.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.1%)
Info: cfl dt = 0.003961660571859057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4800e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.49488788163525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3842810752095729, dt = 0.003961660571859057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 289.38 us (93.9%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.8%)
Info: cfl dt = 0.0039616605724126395 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1040e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.31220602335299 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3882427357814319, dt = 0.0039616605724126395
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 290.01 us (93.9%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.9%)
Info: cfl dt = 0.003961660573060655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2965e+05 | 65536 | 2 | 1.988e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.73865105789851 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3922043963538446, dt = 0.003961660573060655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 330.63 us (94.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (63.8%)
Info: cfl dt = 0.003961660573816728 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1082e+05 | 65536 | 2 | 2.108e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.64079968706648 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3961660569269052, dt = 0.003961660573816728
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.3%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 373.98 us (90.3%)
LB move op cnt : 0
LB apply : 24.02 us (5.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.5%)
Info: cfl dt = 0.0039616605746960794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2308e+05 | 65536 | 2 | 2.028e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.30934961355788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40012771750072196, dt = 0.0039616605746960794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.3%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 388.81 us (95.2%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.0%)
Info: cfl dt = 0.003961660575715658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3942e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.6275029392889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40408937807541806, dt = 0.003961660575715658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.9%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 295.34 us (93.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (60.0%)
Info: cfl dt = 0.003961660576894292 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3823e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.3675535665057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40805103865113374, dt = 0.003961660576894292
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 292.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.3%)
Info: cfl dt = 0.003961660578252845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2799e+05 | 65536 | 2 | 1.998e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.37807071724637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.412012699228028, dt = 0.003961660578252845
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 348.73 us (94.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.2%)
Info: cfl dt = 0.0039616605798143655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2990e+05 | 65536 | 2 | 1.987e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.79356075561938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4159743598062809, dt = 0.0039616605798143655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 329.14 us (94.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.6%)
Info: cfl dt = 0.003961660581604271 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6097e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.31738654653233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41993602038609523, dt = 0.003961660581604271
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 294.09 us (93.8%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.9%)
Info: cfl dt = 0.0039616605836505095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6859e+05 | 65536 | 2 | 1.399e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.97513304300602 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42389768096769953, dt = 0.0039616605836505095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 329.36 us (94.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.8%)
Info: cfl dt = 0.003961660585983746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8610e+05 | 65536 | 2 | 1.697e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.02283834710336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42785934155135, dt = 0.003961660585983746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 302.84 us (93.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.8%)
Info: cfl dt = 0.003961660588637555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9952e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.94462888209469 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43182100213733376, dt = 0.003961660588637555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 274.79 us (93.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (60.2%)
Info: cfl dt = 0.003961660591648609 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5180e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.32093560017921 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4357826627259713, dt = 0.003961660591648609
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 294.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.6%)
Info: cfl dt = 0.003961660595056887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1850e+05 | 65536 | 2 | 2.058e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.31255106686083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4397443233176199, dt = 0.003961660595056887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 358.50 us (94.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (58.7%)
Info: cfl dt = 0.003961660598905876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2839e+05 | 65536 | 2 | 1.996e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.46532314361532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4437059839126768, dt = 0.003961660598905876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 320.82 us (94.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (60.1%)
Info: cfl dt = 0.00396166060324279 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3377e+05 | 65536 | 2 | 1.964e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.6350878139091 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4476676445115827, dt = 0.00396166060324279
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 308.56 us (94.2%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.3%)
Info: cfl dt = 0.003961660608118787 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3642e+05 | 65536 | 2 | 1.948e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.21202229319266 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45162930511482546, dt = 0.003961660608118787
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 321.53 us (94.6%)
LB move op cnt : 0
LB apply : 3.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.6%)
Info: cfl dt = 0.0039616606135891965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4056e+05 | 65536 | 2 | 1.924e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.11341658247896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4555909657229443, dt = 0.0039616606135891965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.4%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 336.68 us (89.9%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.8%)
Info: cfl dt = 0.003961660619713745 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3700e+05 | 65536 | 2 | 1.945e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.33810096297827 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4595526263365335, dt = 0.003961660619713745
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 327.68 us (94.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (60.9%)
Info: cfl dt = 0.0039616606265567966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3471e+05 | 65536 | 2 | 1.958e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.83978857394008 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46351428695624725, dt = 0.0039616606265567966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.3%)
patch tree reduce : 1.78 us (0.4%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 386.33 us (95.3%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (61.5%)
Info: cfl dt = 0.003961660634187588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3722e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.38694510637056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46747594758280403, dt = 0.003961660634187588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 322.72 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (60.8%)
Info: cfl dt = 0.003961660642680472 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3752e+05 | 65536 | 2 | 1.942e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.45185965706251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4714376082169916, dt = 0.003961660642680472
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.6%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 349.44 us (94.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.8%)
Info: cfl dt = 0.003961660652115165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3363e+05 | 65536 | 2 | 1.964e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.60487021834106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4753992688596721, dt = 0.003961660652115165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 343.44 us (94.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (61.6%)
Info: cfl dt = 0.003961660662577002 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3667e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.26661855755951 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47936092951178727, dt = 0.003961660662577002
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.5%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 357.64 us (94.7%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.8%)
Info: cfl dt = 0.003961660674157178 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3592e+05 | 65536 | 2 | 1.951e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.10200587593607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4833225901743643, dt = 0.003961660674157178
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 298.41 us (93.8%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.1%)
Info: cfl dt = 0.003961660686953015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3752e+05 | 65536 | 2 | 1.942e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.4508938777482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48728425084852145, dt = 0.003961660686953015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.4%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 358.16 us (95.0%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (66.1%)
Info: cfl dt = 0.003961660701068213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3712e+05 | 65536 | 2 | 1.944e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.36392829311198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4912459115354745, dt = 0.003961660701068213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 304.03 us (93.9%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (64.6%)
Info: cfl dt = 0.00396166071661311 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3580e+05 | 65536 | 2 | 1.952e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.07718579982179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4952075722365427, dt = 0.00396166071661311
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.4%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 350.38 us (94.8%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.0%)
Info: cfl dt = 0.0039616607337049446 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3871e+05 | 65536 | 2 | 1.935e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.7107854934165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49916923295315585, dt = 0.0039616607337049446
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 319.89 us (94.3%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (61.0%)
Info: cfl dt = 0.003961660752468113 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3486e+05 | 65536 | 2 | 1.957e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.87245052492666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5031308936868608, dt = 0.003961660752468113
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 318.31 us (94.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.0%)
Info: cfl dt = 0.00396166077303443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4112e+05 | 65536 | 2 | 1.921e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.23489656781666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5070925544393289, dt = 0.00396166077303443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 321.56 us (94.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (59.7%)
Info: cfl dt = 0.003961660795543396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3857e+05 | 65536 | 2 | 1.936e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.67924301333005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5110542152123633, dt = 0.003961660795543396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 352.90 us (94.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.0%)
Info: cfl dt = 0.003961660820142447 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4247e+05 | 65536 | 2 | 1.914e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.52911302602989 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150158760079067, dt = 0.003961660820142447
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.8%)
patch tree reduce : 2.56 us (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 326.49 us (94.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.7%)
Info: cfl dt = 0.003961660846987223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3549e+05 | 65536 | 2 | 1.953e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.0087361389114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5189775368280491, dt = 0.003961660846987223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.5%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 345.11 us (94.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.1%)
Info: cfl dt = 0.00396166087624182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3335e+05 | 65536 | 2 | 1.966e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.54359409547176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5229391976750364, dt = 0.00396166087624182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 314.70 us (94.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (65.2%)
Info: cfl dt = 0.003961660908079047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4252e+05 | 65536 | 2 | 1.913e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.53996632165543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5269008585512782, dt = 0.003961660908079047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 346.69 us (94.8%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.4%)
Info: cfl dt = 0.003961660942680681 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3749e+05 | 65536 | 2 | 1.942e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.44554366062005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5308625194593573, dt = 0.003961660942680681
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 344.19 us (94.3%)
LB move op cnt : 0
LB apply : 4.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.9%)
Info: cfl dt = 0.003961660980237712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3446e+05 | 65536 | 2 | 1.959e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.78591340801418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5348241804020379, dt = 0.003961660980237712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 342.78 us (94.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (60.4%)
Info: cfl dt = 0.003961661020950596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3625e+05 | 65536 | 2 | 1.949e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.17416198907833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5387858413822757, dt = 0.003961661020950596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 314.94 us (94.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.3%)
Info: cfl dt = 0.003961661065029497 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3657e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.24522434587699 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5427475024032263, dt = 0.003961661065029497
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 312.54 us (93.9%)
LB move op cnt : 0
LB apply : 4.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.2%)
Info: cfl dt = 0.003961661112694525 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3370e+05 | 65536 | 2 | 1.964e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.62013673138578 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5467091634682558, dt = 0.003961661112694525
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.4%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 368.90 us (94.9%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.7%)
Info: cfl dt = 0.00396166116417597 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4285e+05 | 65536 | 2 | 1.912e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.61097650843948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5506708245809503, dt = 0.00396166116417597
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.5%)
patch tree reduce : 2.35 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 361.20 us (94.8%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.3%)
Info: cfl dt = 0.0039616612197145365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3625e+05 | 65536 | 2 | 1.949e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.17555002009348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5546324857451262, dt = 0.0039616612197145365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.0%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 309.51 us (93.6%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (64.3%)
Info: cfl dt = 0.003961661279561565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3606e+05 | 65536 | 2 | 1.950e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.13379180506035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5585941469648408, dt = 0.003961661279561565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 350.51 us (94.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.4%)
Info: cfl dt = 0.003961661343979254 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3864e+05 | 65536 | 2 | 1.935e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.69497493900654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5625558082444023, dt = 0.003961661343979254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 348.97 us (94.8%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.5%)
Info: cfl dt = 0.003961661413240873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3663e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.25785020828441 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5665174695883816, dt = 0.003961661413240873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 350.60 us (94.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.9%)
Info: cfl dt = 0.00396166148763097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3891e+05 | 65536 | 2 | 1.934e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.75322323741337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5704791310016224, dt = 0.00396166148763097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.4%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 358.05 us (95.0%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.9%)
Info: cfl dt = 0.003961661567445573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3569e+05 | 65536 | 2 | 1.952e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.05264370559702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5744407924892534, dt = 0.003961661567445573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 348.48 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.4%)
Info: cfl dt = 0.003961661652992386 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3618e+05 | 65536 | 2 | 1.949e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.15987527679003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.578402454056699, dt = 0.003961661652992386
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 321.27 us (94.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.1%)
Info: cfl dt = 0.003961661744590975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3574e+05 | 65536 | 2 | 1.952e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.06407180979154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5823641157096914, dt = 0.003961661744590975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.3%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 371.19 us (95.2%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.8%)
Info: cfl dt = 0.00396166184257295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3786e+05 | 65536 | 2 | 1.940e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.52580263204095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5863257774542824, dt = 0.00396166184257295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 322.16 us (94.1%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.0%)
Info: cfl dt = 0.003961661947282137 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3887e+05 | 65536 | 2 | 1.934e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.74468806733339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5902874392968553, dt = 0.003961661947282137
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.2%)
patch tree reduce : 2.15 us (0.5%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 416.12 us (95.6%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.6%)
Info: cfl dt = 0.003961662059074746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3660e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.25058378769273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5942491012441374, dt = 0.003961662059074746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 351.06 us (94.7%)
LB move op cnt : 0
LB apply : 4.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.1%)
Info: cfl dt = 0.003961662178319524 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3853e+05 | 65536 | 2 | 1.936e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.6718635299877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5982107633032122, dt = 0.003961662178319524
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 315.29 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.0%)
Info: cfl dt = 0.00396166230539791 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2735e+05 | 65536 | 2 | 2.002e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.23826099920365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6021724254815317, dt = 0.00396166230539791
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.6%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 369.65 us (94.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.2%)
Info: cfl dt = 0.00396166244070417 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3041e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.66601802734918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6061340877869297, dt = 0.00396166244070417
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 295.58 us (94.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.6%)
Info: cfl dt = 0.003961662584645534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5304e+05 | 65536 | 2 | 1.856e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.8281872293123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6100957502276338, dt = 0.003961662584645534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 293.94 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (62.4%)
Info: cfl dt = 0.003961662737642322 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4627e+05 | 65536 | 2 | 1.893e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.35559072735514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6140574128122794, dt = 0.003961662737642322
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 296.53 us (93.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (60.0%)
Info: cfl dt = 0.003961662900128054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3581e+05 | 65536 | 2 | 1.952e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.07915591078991 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6180190755499217, dt = 0.003961662900128054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 351.90 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.5%)
Info: cfl dt = 0.0039616630725495625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4018e+05 | 65536 | 2 | 1.927e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.02932429034671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6219807384500498, dt = 0.0039616630725495625
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 333.95 us (94.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.3%)
Info: cfl dt = 0.003961663255367088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9218e+05 | 65536 | 2 | 1.671e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.34632318782788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6259424015225993, dt = 0.003961663255367088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 337.25 us (94.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (63.3%)
Info: cfl dt = 0.0039616634490543656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5128e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.20834563369372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6299040647779663, dt = 0.0039616634490543656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 327.98 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (60.0%)
Info: cfl dt = 0.00396166365409871 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3173e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.95421411900647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6338657282270207, dt = 0.00396166365409871
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.2%)
patch tree reduce : 1.95 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 433.60 us (95.6%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (66.5%)
Info: cfl dt = 0.0039616638710010844 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4628e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.1203101655117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6378273918811194, dt = 0.0039616638710010844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.4%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 364.67 us (94.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.5%)
Info: cfl dt = 0.003961664100276162 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3887e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.5081040116794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6417890557521204, dt = 0.003961664100276162
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.7%)
patch tree reduce : 2.34 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 342.94 us (94.5%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (63.0%)
Info: cfl dt = 0.003961664342452378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3805e+05 | 65536 | 2 | 1.939e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.56578231031256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6457507198523966, dt = 0.003961664342452378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 354.01 us (94.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.9%)
Info: cfl dt = 0.003961664598071978 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4100e+05 | 65536 | 2 | 1.922e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.20954435114562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.649712384194849, dt = 0.003961664598071978
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (0.9%)
patch tree reduce : 2.08 us (0.3%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 619.98 us (96.8%)
LB move op cnt : 0
LB apply : 4.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (67.3%)
Info: cfl dt = 0.003961664867691047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2790e+05 | 65536 | 2 | 1.999e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.35873360536553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.653674048792921, dt = 0.003961664867691047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 290.27 us (93.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.2%)
Info: cfl dt = 0.003961665151879538 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2308e+05 | 65536 | 2 | 2.028e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.3096622108129 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.657635713660612, dt = 0.003961665151879538
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 341.50 us (94.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (63.3%)
Info: cfl dt = 0.003961665451221288 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5924e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.94060985130521 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6615973788124916, dt = 0.003961665451221288
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (2.0%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 269.35 us (93.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.1%)
Info: cfl dt = 0.003961665766314029 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6440e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.06219878827675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6655590442637129, dt = 0.003961665766314029
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 306.07 us (88.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.4%)
Info: cfl dt = 0.003961666097769379 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6524e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.24666072989847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.669520710030027, dt = 0.003961666097769379
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 302.79 us (94.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (60.5%)
Info: cfl dt = 0.00396166644621284 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3321e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.27613646930652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734823761277964, dt = 0.00396166644621284
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 315.36 us (93.9%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (63.9%)
Info: cfl dt = 0.0039616668122837775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5674e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.39518982845397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6774440425740093, dt = 0.0039616668122837775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.7%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 299.19 us (93.8%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (60.6%)
Info: cfl dt = 0.003961667196635386 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6049e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.21166445477706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6814057093862931, dt = 0.003961667196635386
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.0%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 286.90 us (93.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.1%)
Info: cfl dt = 0.003961667599934664 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8598e+05 | 65536 | 2 | 1.698e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.99698861758732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6853673765829285, dt = 0.003961667599934664
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 304.56 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.0%)
Info: cfl dt = 0.003961668022862359 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4870e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.64699324708957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6893290441828631, dt = 0.003961668022862359
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 314.74 us (93.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.2%)
Info: cfl dt = 0.003961668466112924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3105e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.80555957318586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6932907122057255, dt = 0.003961668466112924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 288.64 us (93.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.6%)
Info: cfl dt = 0.003961668930394449 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3847e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.4198102301854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6972523806718384, dt = 0.003961668930394449
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 353.85 us (94.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.5%)
Info: cfl dt = 0.003961669416428595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2229e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.89842546307395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7012140496022328, dt = 0.003961669416428595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 296.97 us (93.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.0%)
Info: cfl dt = 0.003961669924950518 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1607e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.54493288631606 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7051757190186614, dt = 0.003961669924950518
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 277.81 us (93.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.3%)
Info: cfl dt = 0.003961670456708782 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5690e+05 | 65536 | 2 | 1.836e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.67002135761469 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7091373889436119, dt = 0.003961670456708782
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 296.94 us (93.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.1%)
Info: cfl dt = 0.003961671012465266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3521e+05 | 65536 | 2 | 1.955e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.94797083358381 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7130990594003207, dt = 0.003961671012465266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 28.75 us (7.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 329.14 us (88.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.2%)
Info: cfl dt = 0.003961671592995069 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1014e+05 | 65536 | 2 | 2.113e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.49306241160188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.717060730412786, dt = 0.003961671592995069
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.4%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 390.88 us (95.1%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (60.2%)
Info: cfl dt = 0.0039616721990863935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4620e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.10313517175521 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.721022402005781, dt = 0.0039616721990863935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.7%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 1.31 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 353.36 us (94.2%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.2%)
Info: cfl dt = 0.003961672831540442 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6294e+05 | 65536 | 2 | 1.806e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.98440133748625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7249840742048674, dt = 0.003961672831540442
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.7%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 321.49 us (88.2%)
LB move op cnt : 0
LB apply : 25.07 us (6.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (68.6%)
Info: cfl dt = 0.003961673491171285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8842e+05 | 65536 | 2 | 1.687e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.5275650115242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7289457470364079, dt = 0.003961673491171285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 2.33 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.4%)
LB compute : 338.38 us (94.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.6%)
Info: cfl dt = 0.003961674178805742 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9211e+05 | 65536 | 2 | 1.671e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.33085683344666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7329074205275792, dt = 0.003961674178805742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 311.01 us (94.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.6%)
Info: cfl dt = 0.00396167489528324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8229e+05 | 65536 | 2 | 1.714e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.19536130623791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.736869094706385, dt = 0.00396167489528324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 346.73 us (94.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.3%)
Info: cfl dt = 0.003961675641455678 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5535e+05 | 65536 | 2 | 1.844e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.33252481748129 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7408307696016682, dt = 0.003961675641455678
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 313.79 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (60.8%)
Info: cfl dt = 0.003961676418187273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6659e+05 | 65536 | 2 | 1.788e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.77763619679378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7447924452431238, dt = 0.003961676418187273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.3%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 377.21 us (95.0%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.8%)
Info: cfl dt = 0.003961677226354413 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2629e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.77068615809533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7487541216613111, dt = 0.003961677226354413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.4%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 374.39 us (94.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.8%)
Info: cfl dt = 0.003961678066845494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4789e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.4694099638217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7527157988876655, dt = 0.003961678066845494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 317.80 us (94.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (59.6%)
Info: cfl dt = 0.003961678940560756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3933e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.60777099659651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7566774769545109, dt = 0.003961678940560756
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 305.14 us (93.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.9%)
Info: cfl dt = 0.003961679848412113 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3307e+05 | 65536 | 2 | 1.968e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.48412046938725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7606391558950717, dt = 0.003961679848412113
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.2%)
patch tree reduce : 2.20 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 421.64 us (95.5%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (64.2%)
Info: cfl dt = 0.00396168079132298 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4123e+05 | 65536 | 2 | 1.921e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.25886367490288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7646008357434838, dt = 0.00396168079132298
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.8%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 332.48 us (94.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.2%)
Info: cfl dt = 0.003961681770228084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4410e+05 | 65536 | 2 | 1.905e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.88460305834793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7685625165348068, dt = 0.003961681770228084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.6%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 352.53 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 0.003961682786073291 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1732e+05 | 65536 | 2 | 2.065e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.05643855273645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7725241983050348, dt = 0.003961682786073291
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (0.8%)
patch tree reduce : 2.06 us (0.3%)
gen split merge : 872.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.1%)
LB compute : 697.20 us (97.2%)
LB move op cnt : 0
LB apply : 3.92 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (66.8%)
Info: cfl dt = 0.003961683839815404 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4264e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.32900470918617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7764858810911082, dt = 0.003961683839815404
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 295.25 us (93.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.0%)
Info: cfl dt = 0.00396168493242198 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4676e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.2255036274626 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7804475649309236, dt = 0.00396168493242198
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 326.87 us (94.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.0%)
Info: cfl dt = 0.0039616860648711205 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0664e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.49475598216628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7844092498633456, dt = 0.0039616860648711205
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 316.84 us (94.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.9%)
Info: cfl dt = 0.003961687238151275 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5861e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.80436308736304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7883709359282167, dt = 0.003961687238151275
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 343.48 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.2%)
Info: cfl dt = 0.003961688453261034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9341e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.61457116503843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.792332623166368, dt = 0.003961688453261034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.5%)
patch tree reduce : 2.48 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 329.34 us (94.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (60.7%)
Info: cfl dt = 0.003961689711208916 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5937e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.96966462191244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.796294311619629, dt = 0.003961689711208916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.8%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 290.99 us (93.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.0%)
Info: cfl dt = 0.003961691013013162 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6294e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.7456843938489 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.800256001330838, dt = 0.003961691013013162
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 275.65 us (93.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (63.2%)
Info: cfl dt = 0.003961692359701507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6160e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.45460003204627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8042176923438511, dt = 0.003961692359701507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 325.56 us (94.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.5%)
Info: cfl dt = 0.003961693752310966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4225e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.24415326583895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8081793847035526, dt = 0.003961693752310966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 293.04 us (94.1%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.1%)
Info: cfl dt = 0.0039616951918876155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3806e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.33203809773923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8121410784558635, dt = 0.0039616951918876155
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 277.61 us (93.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (60.5%)
Info: cfl dt = 0.003961696679486361 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4113e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.00053032672015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8161027736477511, dt = 0.003961696679486361
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 297.19 us (93.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (60.7%)
Info: cfl dt = 0.003961698216170712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4041e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.84302055069199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8200644703272374, dt = 0.003961698216170712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (2.0%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 272.09 us (93.2%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.2%)
Info: cfl dt = 0.003961699803012554 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4075e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.91785275153498 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8240261685434082, dt = 0.003961699803012554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 301.39 us (93.7%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.9%)
Info: cfl dt = 0.003961701441091913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7158e+05 | 65536 | 2 | 1.764e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.86478999050594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8279878683464207, dt = 0.003961701441091913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 317.77 us (94.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.6%)
Info: cfl dt = 0.003961703131496722 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5827e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.7300898104223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8319495697875126, dt = 0.003961703131496722
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 277.89 us (93.8%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (60.8%)
Info: cfl dt = 0.003961704875322589 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5491e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.99863595537387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8359112729190092, dt = 0.003961704875322589
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 269.68 us (93.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.2%)
Info: cfl dt = 0.003961706673672552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4516e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.87685897007292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8398729777943318, dt = 0.003961706673672552
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (2.0%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 274.61 us (93.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: cfl dt = 0.003961708527656848 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4737e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.35716351151514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8438346844680044, dt = 0.003961708527656848
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 321.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.6%)
Info: cfl dt = 0.00396171043839267 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3799e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.3159119997666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8477963929956612, dt = 0.00396171043839267
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 327.07 us (94.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.0%)
Info: cfl dt = 0.003961712407003921 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3058e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.70506227309065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8517581034340539, dt = 0.003961712407003921
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 286.76 us (93.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.5%)
Info: cfl dt = 0.0039617144346209806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3406e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.46098532952206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8557198158410578, dt = 0.0039617144346209806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 295.46 us (93.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.9%)
Info: cfl dt = 0.003961716522380456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3828e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.37910567013138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8596815302756788, dt = 0.003961716522380456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.7%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 297.40 us (93.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (62.6%)
Info: cfl dt = 0.003961718671424941 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1255e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.78084489894277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8636432467980593, dt = 0.003961718671424941
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 283.25 us (93.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.4%)
Info: cfl dt = 0.003961720882902772 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4369e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.55689364674531 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8676049654694842, dt = 0.003961720882902772
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.5%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 315.38 us (94.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.7%)
Info: cfl dt = 0.003961723157967783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3816e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.35461931349208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.871566686352387, dt = 0.003961723157967783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 317.97 us (94.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (63.9%)
Info: cfl dt = 0.003961725497779062 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3763e+05 | 65536 | 2 | 1.941e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.47528878531685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8755284095103548, dt = 0.003961725497779062
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 332.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.0%)
Info: cfl dt = 0.0039617279035007065 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3550e+05 | 65536 | 2 | 1.953e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.01206297304229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8794901350081339, dt = 0.0039617279035007065
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 306.04 us (93.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.7%)
Info: cfl dt = 0.0039617303763015786 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3691e+05 | 65536 | 2 | 1.945e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.32040733315166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8834518629116346, dt = 0.0039617303763015786
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 2.46 us (0.8%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 294.68 us (93.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.9%)
Info: cfl dt = 0.003961732917355063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3859e+05 | 65536 | 2 | 1.936e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.6856099204804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8874135932879361, dt = 0.003961732917355063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.5%)
patch tree reduce : 8.95 us (2.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 352.81 us (92.9%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.2%)
Info: cfl dt = 0.003961735527838824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4079e+05 | 65536 | 2 | 1.923e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.16424773673856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913753262052911, dt = 0.003961735527838824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 340.49 us (94.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.4%)
Info: cfl dt = 0.003961738208934556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2472e+05 | 65536 | 2 | 2.018e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.6662908774732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.89533706173313, dt = 0.003961738208934556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 349.91 us (94.8%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (62.3%)
Info: cfl dt = 0.00396174096182775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2448e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.37663537300719 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8992987999420645, dt = 0.00396174096182775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.5%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 322.54 us (94.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (61.0%)
Info: cfl dt = 0.003961743787707447 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3134e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.87111727149633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9032605409038923, dt = 0.003961743787707447
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 328.51 us (94.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.1%)
Info: cfl dt = 0.003961746687765999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3557e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.79123866160678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9072222846915997, dt = 0.003961746687765999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 327.81 us (94.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.6%)
Info: cfl dt = 0.003961749663198826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4414e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.65616592454138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9111840313793658, dt = 0.003961749663198826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 288.17 us (93.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (61.0%)
Info: cfl dt = 0.003961752715204182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2840e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.23008321748524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9151457810425646, dt = 0.003961752715204182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 2.35 us (0.7%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 318.32 us (94.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.7%)
Info: cfl dt = 0.003961755844982917 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2888e+05 | 65536 | 2 | 1.993e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.5733419708687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9191075337577688, dt = 0.003961755844982917
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 296.06 us (93.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (59.4%)
Info: cfl dt = 0.003961759053738236 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6745e+05 | 65536 | 2 | 1.784e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.96661551339793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9230692896027517, dt = 0.003961759053738236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 278.14 us (93.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.7%)
Info: cfl dt = 0.003961762342675468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5964e+05 | 65536 | 2 | 1.822e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.26747290851861 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9270310486564899, dt = 0.003961762342675468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 295.21 us (93.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.8%)
Info: cfl dt = 0.003961765713001833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4665e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.2029993334489 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9309928109991653, dt = 0.003961765713001833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 325.35 us (94.6%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.4%)
Info: cfl dt = 0.0039617691659262115 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4675e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.22419435375369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9349545767121672, dt = 0.0039617691659262115
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 324.42 us (94.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.0%)
Info: cfl dt = 0.00396177270265891 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4745e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.37656552545401 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9389163458780934, dt = 0.00396177270265891
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 288.59 us (93.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (59.8%)
Info: cfl dt = 0.003961776324411435 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5444e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.89763588950929 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9428781185807523, dt = 0.003961776324411435
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 326.24 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.9%)
Info: cfl dt = 0.00396178003239627 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5447e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.90397888376786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9468398949051637, dt = 0.00396178003239627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 294.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.2%)
Info: cfl dt = 0.003961783827826645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4874e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.6588432199828 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.95080167493756, dt = 0.003961783827826645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 361.43 us (94.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.9%)
Info: cfl dt = 0.003961787711916316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4202e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.19525483809595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9547634587653866, dt = 0.003961787711916316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 295.85 us (93.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.6%)
Info: cfl dt = 0.00396179168587935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3612e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.91102501612838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.958725246477303, dt = 0.00396179168587935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 314.87 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (62.9%)
Info: cfl dt = 0.003961795750929895 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4652e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.17436379689383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9626870381631824, dt = 0.003961795750929895
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 295.51 us (93.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.9%)
Info: cfl dt = 0.003961799908281978 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4555e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.96385352873342 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9666488339141123, dt = 0.003961799908281978
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 13.51 us (4.0%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 311.15 us (91.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (59.7%)
Info: cfl dt = 0.003961804159149277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4225e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.24710895417111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9706106338223942, dt = 0.003961804159149277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 315.33 us (94.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.4%)
Info: cfl dt = 0.003961808504744921 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5446e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.90411684700068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9745724379815435, dt = 0.003961808504744921
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 302.51 us (94.1%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.4%)
Info: cfl dt = 0.003961812946281273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4494e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.83133954669086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9785342464862884, dt = 0.003961812946281273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 329.93 us (94.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.4%)
Info: cfl dt = 0.003961817484969728 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4485e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.81224633236411 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9824960594325697, dt = 0.003961817484969728
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 354.30 us (94.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.0%)
Info: cfl dt = 0.003961822122020504 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5115e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.18331263813874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9864578769175394, dt = 0.003961822122020504
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 307.54 us (94.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.2%)
Info: cfl dt = 0.0039618268586424435 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4012e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.7822755337996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9904196990395598, dt = 0.0039618268586424435
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 290.67 us (93.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (59.8%)
Info: cfl dt = 0.003961831696042813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2146e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.72324966251843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9943815258982023, dt = 0.003961831696042813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 288.69 us (93.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (64.5%)
Info: cfl dt = 0.003961836635427104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3317e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.27076661733548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9983433575942451, dt = 0.003961836635427104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 324.65 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.6%)
Info: cfl dt = 0.003961841677998846 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3347e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.33647713389088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0023051942296721, dt = 0.003961841677998846
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 320.99 us (94.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.2%)
Info: cfl dt = 0.003961846824959406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3778e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.27351573446116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.006267035907671, dt = 0.003961846824959406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 290.40 us (93.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.4%)
Info: cfl dt = 0.003961852077507803 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3046e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.68194197587736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0102288827326305, dt = 0.003961852077507803
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 323.26 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.8%)
Info: cfl dt = 0.003961857436840524 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3222e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.06526401244413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0141907348101382, dt = 0.003961857436840524
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.4%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 360.02 us (94.9%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.8%)
Info: cfl dt = 0.003961862904151339 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2195e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.82944563913121 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0181525922469787, dt = 0.003961862904151339
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 297.51 us (94.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.0%)
Info: cfl dt = 0.003961868480631118 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1687e+05 | 65536 | 2 | 2.068e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.96183074827108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.02211445515113, dt = 0.003961868480631118
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 324.41 us (94.4%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (62.0%)
Info: cfl dt = 0.003961874167467658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5042e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.02551083467625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0260763236317612, dt = 0.003961874167467658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 344.98 us (94.6%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.4%)
Info: cfl dt = 0.003961879965845504 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3774e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.26540889305086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0300381977992288, dt = 0.003961879965845504
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 285.78 us (93.8%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (62.6%)
Info: cfl dt = 0.003961885876945777 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4752e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.39599566023075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0340000777650742, dt = 0.003961885876945777
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 285.75 us (93.7%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.1%)
Info: cfl dt = 0.00396189190194601 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4346e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.51064673384447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0379619636420199, dt = 0.00396189190194601
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 283.35 us (93.6%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (61.8%)
Info: cfl dt = 0.003961898042019972 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4254e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.31153495669999 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0419238555439658, dt = 0.003961898042019972
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 279.56 us (93.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (57.7%)
Info: cfl dt = 0.003961904298337512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3563e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.80767298306824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0458857535859858, dt = 0.003961904298337512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 285.65 us (93.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.0%)
Info: cfl dt = 0.003961910672064397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3975e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.70373491126084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0498476578843232, dt = 0.003961910672064397
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 323.62 us (94.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.0%)
Info: cfl dt = 0.003961917164362151 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4305e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.42365788662046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0538095685563875, dt = 0.003961917164362151
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.5%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 352.70 us (94.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.8%)
Info: cfl dt = 0.003961923776387904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3298e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.23147818226474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0577714857207496, dt = 0.003961923776387904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 285.09 us (93.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.1%)
Info: cfl dt = 0.003961930509294236 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2738e+05 | 65536 | 2 | 2.002e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.24879658064962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0617334094971376, dt = 0.003961930509294236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 342.99 us (94.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (63.9%)
Info: cfl dt = 0.003961937364229031 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4231e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.26236699362634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0656953400064317, dt = 0.003961937364229031
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 301.83 us (93.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (62.8%)
Info: cfl dt = 0.003961944342335331 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4544e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.94327718088277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0696572773706607, dt = 0.003961944342335331
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 299.50 us (93.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.9%)
Info: cfl dt = 0.00396195144475119 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5137e+05 | 65536 | 2 | 1.865e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.47024262758424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.073619221712996, dt = 0.00396195144475119
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 318.01 us (94.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.6%)
Info: cfl dt = 0.003961958672609534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4177e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.14536177679902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0775811731577472, dt = 0.003961958672609534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 314.45 us (94.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (61.0%)
Info: cfl dt = 0.003961966027038027 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4005e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.77009922932656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0815431318303568, dt = 0.003961966027038027
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 324.68 us (94.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.1%)
Info: cfl dt = 0.003961973509158932 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3106e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.81506117544598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0855050978573948, dt = 0.003961973509158932
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 289.77 us (93.1%)
LB move op cnt : 0
LB apply : 4.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.3%)
Info: cfl dt = 0.003961981120088983 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4279e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.36758640432683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0894670713665537, dt = 0.003961981120088983
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 288.02 us (93.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (60.2%)
Info: cfl dt = 0.0039619888609392535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4155e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.09763488830464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0934290524866428, dt = 0.0039619888609392535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 283.36 us (93.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.2%)
Info: cfl dt = 0.003961996732815032 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3124e+05 | 65536 | 2 | 1.979e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.08978170607328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.097391041347582, dt = 0.003961996732815032
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 307.58 us (93.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.7%)
Info: cfl dt = 0.003962004736815698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2688e+05 | 65536 | 2 | 2.005e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.1418134210141 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.101353038080397, dt = 0.003962004736815698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 335.06 us (94.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.2%)
Info: cfl dt = 0.0039620128740346025 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3696e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.10075637812965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1053150428172127, dt = 0.0039620128740346025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 283.29 us (93.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (58.4%)
Info: cfl dt = 0.003962021145558951 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2006e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.42162293905466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1092770556912472, dt = 0.003962021145558951
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.5%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 313.85 us (94.1%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.3%)
Info: cfl dt = 0.003962029552469688 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3091e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.78243207317483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1132390768368061, dt = 0.003962029552469688
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (2.1%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 271.82 us (93.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.3%)
Info: cfl dt = 0.003962038095841385 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4859e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.63139595126427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1172011063892757, dt = 0.003962038095841385
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.5%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 322.22 us (94.2%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (59.8%)
Info: cfl dt = 0.003962046776742136 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3531e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.7417722357678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1211631444851171, dt = 0.003962046776742136
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 303.00 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (59.7%)
Info: cfl dt = 0.003962055596233445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4633e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.14019247380585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1251251912618592, dt = 0.003962055596233445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 288.38 us (93.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (60.5%)
Info: cfl dt = 0.003962064555370124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0153e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.389023152616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1290872468580926, dt = 0.003962064555370124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 292.35 us (93.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (59.0%)
Info: cfl dt = 0.0039620736552002 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4997e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.93370001844738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1330493114134628, dt = 0.0039620736552002
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 308.25 us (94.1%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.1%)
Info: cfl dt = 0.003962082896764802 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4572e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.00821842032147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.137011385068663, dt = 0.003962082896764802
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 302.94 us (94.0%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (60.4%)
Info: cfl dt = 0.003962092281098084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1724e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.80868858311408 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1409734679654278, dt = 0.003962092281098084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.4%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 343.25 us (94.8%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.8%)
Info: cfl dt = 0.0039621018092271185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2369e+05 | 65536 | 2 | 2.025e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.44876570916308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1449355602465259, dt = 0.0039621018092271185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.4%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 352.90 us (94.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (66.2%)
Info: cfl dt = 0.0039621114821718146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2655e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.83642515046708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.148897662055753, dt = 0.0039621114821718146
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.4%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 351.46 us (94.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.5%)
Info: cfl dt = 0.003962121300944826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3774e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.27246050797065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1528597735379247, dt = 0.003962121300944826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 327.04 us (94.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.0%)
Info: cfl dt = 0.00396213126655147 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4884e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.68712969487338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1568218948388695, dt = 0.00396213126655147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 326.06 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (61.2%)
Info: cfl dt = 0.0039621413799896445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3426e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.51517241612679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.160784026105421, dt = 0.0039621413799896445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.60 us (6.9%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 332.86 us (89.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.9%)
Info: cfl dt = 0.003962151642249748 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4292e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.39968204732124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1647461674854107, dt = 0.003962151642249748
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 295.80 us (93.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (60.0%)
Info: cfl dt = 0.003962162054314604 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4900e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.72470989189266 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1687083191276604, dt = 0.003962162054314604
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 298.57 us (94.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (63.8%)
Info: cfl dt = 0.003962172617159386 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3652e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.00831808679497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.172670481181975, dt = 0.003962172617159386
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.90 us (7.1%)
patch tree reduce : 2.32 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 335.12 us (89.0%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.4%)
Info: cfl dt = 0.003962183331751545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4491e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.83474604107182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1766326537991345, dt = 0.003962183331751545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 330.72 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.1%)
Info: cfl dt = 0.003962194199050744 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4265e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.34260974824114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.180594837130886, dt = 0.003962194199050744
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 331.62 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (62.9%)
Info: cfl dt = 0.003962205220008788 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4596e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0639942634847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1845570313299367, dt = 0.003962205220008788
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (2.0%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 266.34 us (93.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.2%)
Info: cfl dt = 0.003962216395569559 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0310e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.73397547058255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1885192365499455, dt = 0.003962216395569559
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 342.22 us (94.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.0%)
Info: cfl dt = 0.0039622277266689555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0126e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.33503754086809 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.192481452945515, dt = 0.0039622277266689555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 300.38 us (93.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.1%)
Info: cfl dt = 0.003962239214234835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5949e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.00935108575543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1964436806721839, dt = 0.003962239214234835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.4%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 360.78 us (95.0%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.3%)
Info: cfl dt = 0.003962250859186951 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5895e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.89250866504905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2004059198864188, dt = 0.003962250859186951
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.5%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 342.58 us (94.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.5%)
Info: cfl dt = 0.003962262662436908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4652e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.18587266841114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2043681707456058, dt = 0.003962262662436908
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 323.51 us (94.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.8%)
Info: cfl dt = 0.003962274624888095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8660e+05 | 65536 | 2 | 2.287e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.379072727286534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2083304334080427, dt = 0.003962274624888095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.4%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 347.97 us (94.8%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.0%)
Info: cfl dt = 0.0039622867474356505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3731e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.4159601757094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2122927080329309, dt = 0.0039622867474356505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 307.64 us (93.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.5%)
Info: cfl dt = 0.0039622990309663994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2431e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.35209430937812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2162549947803665, dt = 0.0039622990309663994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 291.47 us (93.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.0%)
Info: cfl dt = 0.0039623114763588235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4588e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.04826928053355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.220217293811333, dt = 0.0039623114763588235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 291.23 us (93.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (63.9%)
Info: cfl dt = 0.003962324084482998 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5481e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.99189130665745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2241796052876917, dt = 0.003962324084482998
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 318.79 us (93.9%)
LB move op cnt : 0
LB apply : 4.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.4%)
Info: cfl dt = 0.003962336856200572 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5704e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.47784195803341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2281419293721747, dt = 0.003962336856200572
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 324.66 us (88.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (62.9%)
Info: cfl dt = 0.00396234979236471 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5646e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.35258785889984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2321042662283752, dt = 0.00396234979236471
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 284.64 us (93.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.9%)
Info: cfl dt = 0.0039623628938200645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4541e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.94693293786743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2360666160207399, dt = 0.0039623628938200645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.86 us (7.9%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 299.92 us (87.9%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.6%)
Info: cfl dt = 0.003962376161402739 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5179e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.33684828955545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.24002897891456, dt = 0.003962376161402739
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.9%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 287.40 us (93.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (60.5%)
Info: cfl dt = 0.003962389595940256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5371e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.75422125909732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2439913550759627, dt = 0.003962389595940256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 286.95 us (93.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.5%)
Info: cfl dt = 0.00396240319825152 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9424e+05 | 65536 | 2 | 1.662e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.81103976031265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.247953744671903, dt = 0.00396240319825152
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 280.47 us (93.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.2%)
Info: cfl dt = 0.003962416969146797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0856e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.92847986035845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2519161478701544, dt = 0.003962416969146797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.7%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 270.83 us (93.6%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.2%)
Info: cfl dt = 0.003962430909427678 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5193e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.36784560152128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2558785648393012, dt = 0.003962430909427678
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.9%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 276.65 us (93.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.5%)
Info: cfl dt = 0.003962445019887062 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7887e+05 | 65536 | 2 | 1.730e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.46566803870758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2598409957487289, dt = 0.003962445019887062
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 326.25 us (94.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.0%)
Info: cfl dt = 0.003962459301309124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6985e+05 | 65536 | 2 | 1.395e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.26962401969493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2638034407686158, dt = 0.003962459301309124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 323.94 us (94.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.0%)
Info: cfl dt = 0.0039624737544693015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6593e+05 | 65536 | 2 | 1.407e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.41615435315342 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.267765900069925, dt = 0.0039624737544693015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 331.84 us (94.6%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.7%)
Info: cfl dt = 0.003962488380134269 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7091e+05 | 65536 | 2 | 1.392e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.50023414678762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2717283738243943, dt = 0.003962488380134269
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (2.0%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 276.29 us (93.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.2%)
Info: cfl dt = 0.003962503179061921 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1999e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.41663919395836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2756908622045287, dt = 0.003962503179061921
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 301.56 us (93.9%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (61.8%)
Info: cfl dt = 0.003962518152001356 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6138e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.42801056426434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2796533653835906, dt = 0.003962518152001356
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 321.08 us (94.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.8%)
Info: cfl dt = 0.003962533299692865 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6660e+05 | 65536 | 2 | 1.405e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.56321299740084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.283615883535592, dt = 0.003962533299692865
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.7%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 334.53 us (94.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.7%)
Info: cfl dt = 0.003962548622867913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6591e+05 | 65536 | 2 | 1.407e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.41283260228539 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2875784168352848, dt = 0.003962548622867913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 305.69 us (86.6%)
LB move op cnt : 0
LB apply : 31.34 us (8.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.3%)
Info: cfl dt = 0.003962564122249132 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2055e+05 | 65536 | 2 | 2.044e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.77341907918033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2915409654581527, dt = 0.003962564122249132
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (1.7%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 357.42 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (63.4%)
Info: cfl dt = 0.0039625797985503065 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4183e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.17413702618654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2955035295804018, dt = 0.0039625797985503065
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 292.61 us (93.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (60.7%)
Info: cfl dt = 0.003962595652476375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9432e+05 | 65536 | 2 | 1.662e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.83127823124235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2994661093789521, dt = 0.003962595652476375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.5%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 314.50 us (94.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (60.3%)
Info: cfl dt = 0.003962611684723411 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5160e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.30120291937361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3034287050314286, dt = 0.003962611684723411
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 328.55 us (94.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.3%)
Info: cfl dt = 0.003962627895978629 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4114e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.02491976695701 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.307391316716152, dt = 0.003962627895978629
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.6%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 304.49 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.1%)
Info: cfl dt = 0.003962644286920375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4100e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.99301563178184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3113539446121305, dt = 0.003962644286920375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 333.33 us (94.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.5%)
Info: cfl dt = 0.003962660858218128 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5187e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.35959973088131 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3153165888990508, dt = 0.003962660858218128
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.9%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 321.73 us (94.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.1%)
Info: cfl dt = 0.0039626776105324965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5045e+05 | 65536 | 2 | 1.870e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.28416213741407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.319279249757269, dt = 0.0039626776105324965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 2.43 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 335.73 us (94.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.7%)
Info: cfl dt = 0.00396269454451522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1669e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.70375832833788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3232419273678016, dt = 0.00396269454451522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.4%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 353.68 us (94.8%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.0%)
Info: cfl dt = 0.003962711660809177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0131e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.35509890747737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3272046219123168, dt = 0.003962711660809177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 314.88 us (94.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.9%)
Info: cfl dt = 0.003962728960048383 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5747e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.5822326425174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.331167333573126, dt = 0.003962728960048383
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.7%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 329.53 us (94.3%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (63.9%)
Info: cfl dt = 0.0039627464428579956 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0323e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.77431507179837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3351300625331743, dt = 0.0039627464428579956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.4%)
patch tree reduce : 2.45 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 344.62 us (94.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.1%)
Info: cfl dt = 0.003962764109854326 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5638e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.34566576341749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3390928089760323, dt = 0.003962764109854326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 347.82 us (94.8%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.1%)
Info: cfl dt = 0.0039627819616448404 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6061e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.26656826749085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3430555730858866, dt = 0.0039627819616448404
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 312.77 us (94.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.7%)
Info: cfl dt = 0.003962799998828178 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5360e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.73990039809195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3470183550475314, dt = 0.003962799998828178
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.9%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 274.16 us (93.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.1%)
Info: cfl dt = 0.0039628182219941495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1368e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.05075407635144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3509811550463595, dt = 0.0039628182219941495
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 303.96 us (94.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.6%)
Info: cfl dt = 0.003962836631723762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4367e+05 | 65536 | 2 | 1.907e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.81056734562203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3549439732683537, dt = 0.003962836631723762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 337.45 us (94.4%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.5%)
Info: cfl dt = 0.003962855228589221 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4701e+05 | 65536 | 2 | 1.889e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.53802023817845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3589068099000774, dt = 0.003962855228589221
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.9%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 273.13 us (93.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.2%)
Info: cfl dt = 0.003962874013153952 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5515e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.08013072877549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3628696651286667, dt = 0.003962874013153952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 310.45 us (94.0%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.8%)
Info: cfl dt = 0.00396289298597261 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3091e+05 | 65536 | 2 | 1.981e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.0338566827673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3668325391418206, dt = 0.00396289298597261
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.3%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 359.51 us (95.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.5%)
Info: cfl dt = 0.003962912147591101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1166e+05 | 65536 | 2 | 2.103e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.84528442305808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.370795432127793, dt = 0.003962912147591101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.4%)
patch tree reduce : 2.16 us (0.5%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 380.27 us (95.1%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.9%)
Info: cfl dt = 0.003962931498546593 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5187e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.36682498684691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3747583442753841, dt = 0.003962931498546593
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.4%)
patch tree reduce : 2.41 us (0.6%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 347.25 us (89.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.5%)
Info: cfl dt = 0.003962951039367544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6524e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.27721109684377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3787212757739307, dt = 0.003962951039367544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.4%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 374.58 us (95.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (64.5%)
Info: cfl dt = 0.003962970770573712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6757e+05 | 65536 | 2 | 1.402e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.78664452745663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3826842268132982, dt = 0.003962970770573712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (0.8%)
patch tree reduce : 2.06 us (0.3%)
gen split merge : 901.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.07 us (0.1%)
LB compute : 728.41 us (97.2%)
LB move op cnt : 0
LB apply : 4.03 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (68.8%)
Info: cfl dt = 0.00396299069267618 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0708e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.61773913319577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.386647197583872, dt = 0.00396299069267618
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 349.20 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (65.0%)
Info: cfl dt = 0.003963010806177378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5847e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.80536267134985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.390610188276548, dt = 0.003963010806177378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 345.25 us (94.4%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.1%)
Info: cfl dt = 0.003963031111571105 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4970e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.89787887916361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3945731990827255, dt = 0.003963031111571105
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 350.94 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.9%)
Info: cfl dt = 0.003963051609342553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1749e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.88485878443683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3985362301942965, dt = 0.003963051609342553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.6%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 343.51 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.8%)
Info: cfl dt = 0.0039630722999683295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5534e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.12687867236073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.402499281803639, dt = 0.0039630722999683295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 313.85 us (94.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (60.7%)
Info: cfl dt = 0.003963093183916485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9547e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.09222454293628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4064623541036074, dt = 0.003963093183916485
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 347.16 us (94.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (62.8%)
Info: cfl dt = 0.003963114261646537 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6148e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.46302658854655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.410425447287524, dt = 0.003963114261646537
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.4%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 372.39 us (94.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.0%)
Info: cfl dt = 0.003963135533609502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8715e+05 | 65536 | 2 | 1.693e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.28217413365245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4143885615491705, dt = 0.003963135533609502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 318.18 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.2%)
Info: cfl dt = 0.0039631570002479155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6990e+05 | 65536 | 2 | 1.395e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.2971122775102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.41835169708278, dt = 0.0039631570002479155
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 326.93 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (59.8%)
Info: cfl dt = 0.003963178661995871 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6011e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.16733351366662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.422314854083028, dt = 0.003963178661995871
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 333.37 us (94.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.0%)
Info: cfl dt = 0.003963200519279039 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0345e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.83229099942336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4262780327450237, dt = 0.003963200519279039
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (2.1%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 269.71 us (93.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (63.6%)
Info: cfl dt = 0.0039632225725147055 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5668e+05 | 65536 | 2 | 1.837e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.65193676534797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4302412332643029, dt = 0.0039632225725147055
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 330.39 us (94.2%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.1%)
Info: cfl dt = 0.003963244822111799 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4853e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.64786066093734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4342044558368177, dt = 0.003963244822111799
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 282.57 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (57.9%)
Info: cfl dt = 0.003963267268470924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5857e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.8334390041953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4381677006589295, dt = 0.003963267268470924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.9%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 274.01 us (93.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.5%)
Info: cfl dt = 0.003963289911984391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4788e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.50722110137995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4421309679274004, dt = 0.003963289911984391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 340.25 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.6%)
Info: cfl dt = 0.003963312753036255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2879e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.35143802598388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4460942578393847, dt = 0.003963312753036255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 294.64 us (94.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.9%)
Info: cfl dt = 0.003963335792002346 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9256e+05 | 65536 | 2 | 1.669e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.46409304600148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.450057570592421, dt = 0.003963335792002346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (0.8%)
patch tree reduce : 2.05 us (0.3%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 638.23 us (97.0%)
LB move op cnt : 0
LB apply : 3.81 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (64.1%)
Info: cfl dt = 0.003963359029250299 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5358e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.75113699882112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4540209063844234, dt = 0.003963359029250299
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 312.08 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.8%)
Info: cfl dt = 0.003963382465139601 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5838e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.79534746098217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4579842654136737, dt = 0.003963382465139601
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.8%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 274.23 us (93.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (58.2%)
Info: cfl dt = 0.003963406100021618 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1170e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.63370232231563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4619476478788132, dt = 0.003963406100021618
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 298.76 us (93.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.5%)
Info: cfl dt = 0.003963429934239629 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4147e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.1151561305246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4659110539788347, dt = 0.003963429934239629
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 298.59 us (94.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.2%)
Info: cfl dt = 0.003963453968128874 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8328e+05 | 65536 | 2 | 1.710e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.44765638958691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4698744839130744, dt = 0.003963453968128874
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 315.72 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.5%)
Info: cfl dt = 0.003963478202016583 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4551e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.99508202224257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4738379378812032, dt = 0.003963478202016583
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (2.0%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 276.61 us (93.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.1%)
Info: cfl dt = 0.003963502636222012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4214e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.26187491511074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4778014160832198, dt = 0.003963502636222012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.41 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 315.60 us (93.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.3%)
Info: cfl dt = 0.003963527271056495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5902e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.93758573503061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4817649187194417, dt = 0.003963527271056495
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 3.06 us (0.9%)
gen split merge : 1.84 us (0.5%)
split / merge op : 0/0
apply split merge : 2.59 us (0.7%)
LB compute : 321.93 us (93.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.2%)
Info: cfl dt = 0.003963552106823466 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4346e+05 | 65536 | 2 | 1.908e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.77857913933165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4857284459904982, dt = 0.003963552106823466
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 308.71 us (94.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.5%)
Info: cfl dt = 0.00396357714381851 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2266e+05 | 65536 | 2 | 2.031e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.25100579267271 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4896919980973218, dt = 0.00396357714381851
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.4%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 364.98 us (94.9%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.2%)
Info: cfl dt = 0.003963602382329404 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2320e+05 | 65536 | 2 | 2.028e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.36823480604494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4936555752411402, dt = 0.003963602382329404
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.4%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 356.18 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (65.2%)
Info: cfl dt = 0.0039636278226361475 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2385e+05 | 65536 | 2 | 2.024e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.51057759273202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4976191776234697, dt = 0.0039636278226361475
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 323.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.9%)
Info: cfl dt = 0.003963653465011013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3762e+05 | 65536 | 2 | 1.941e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.5093934603711 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5015828054461058, dt = 0.003963653465011013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 294.67 us (93.9%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.2%)
Info: cfl dt = 0.003963679309718585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4010e+05 | 65536 | 2 | 1.927e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.05026925301294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5055464589111167, dt = 0.003963679309718585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 314.59 us (88.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (65.1%)
Info: cfl dt = 0.003963705357015802 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2515e+05 | 65536 | 2 | 2.016e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.79485529548813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5095101382208354, dt = 0.003963705357015802
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.4%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 353.53 us (94.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (63.2%)
Info: cfl dt = 0.0039637316071519935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8522e+05 | 65536 | 2 | 1.701e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.8746109099229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5134738435778512, dt = 0.0039637316071519935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 362.62 us (94.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.4%)
Info: cfl dt = 0.003963758060368932 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6547e+05 | 65536 | 2 | 1.408e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.34868480763042 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.517437575185003, dt = 0.003963758060368932
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 278.35 us (93.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.1%)
Info: cfl dt = 0.00396378471690087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6802e+05 | 65536 | 2 | 1.781e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.13030064667149 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.521401333245372, dt = 0.00396378471690087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 287.67 us (93.8%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.4%)
Info: cfl dt = 0.003963811576974585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4858e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.67290669322882 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.525365117962273, dt = 0.003963811576974585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 337.22 us (94.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.3%)
Info: cfl dt = 0.003963838640809422 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5271e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.57163173790829 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5293289295392476, dt = 0.003963838640809422
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.6%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 358.57 us (94.1%)
LB move op cnt : 0
LB apply : 4.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.0%)
Info: cfl dt = 0.00396386590861734 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5673e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.44944040940068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.533292768180057, dt = 0.00396386590861734
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 321.27 us (94.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (60.6%)
Info: cfl dt = 0.003963893380602954 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4961e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.89990835789895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5372566340886744, dt = 0.003963893380602954
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.4%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 359.47 us (95.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.8%)
Info: cfl dt = 0.003963921056963584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6932e+05 | 65536 | 2 | 1.396e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.1917584436105 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5412205274692774, dt = 0.003963921056963584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 329.36 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.4%)
Info: cfl dt = 0.003963948937889289 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6286e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.78469112507099 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.545184448526241, dt = 0.003963948937889289
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.6%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 298.40 us (94.0%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.9%)
Info: cfl dt = 0.003963977023562928 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0696e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.61331592308692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5491483974641302, dt = 0.003963977023562928
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 317.97 us (94.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.8%)
Info: cfl dt = 0.003964005314160192 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5852e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.8418873037718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5531123744876931, dt = 0.003964005314160192
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.7%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 290.64 us (93.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.2%)
Info: cfl dt = 0.003964033809849659 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6163e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.51963342233245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5570763798018534, dt = 0.003964033809849659
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 289.71 us (93.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (59.3%)
Info: cfl dt = 0.0039640625107928325 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5091e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.18604383033168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.561040413611703, dt = 0.0039640625107928325
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 312.58 us (94.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.9%)
Info: cfl dt = 0.003964091417144193 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5483e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.03930143786273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.565004476122496, dt = 0.003964091417144193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 306.71 us (94.1%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.3%)
Info: cfl dt = 0.003964120529051242 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5412e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.88744558588574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.56896856753964, dt = 0.003964120529051242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.9%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 268.20 us (93.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (60.1%)
Info: cfl dt = 0.003964149846654549 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5929e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.0122565993858 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5729326880686914, dt = 0.003964149846654549
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 272.26 us (93.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (60.7%)
Info: cfl dt = 0.003964179370087799 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5426e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.91896896701974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5768968379153459, dt = 0.003964179370087799
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 309.36 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.0%)
Info: cfl dt = 0.003964209099477838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5854e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.85148988997686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5808610172854336, dt = 0.003964209099477838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 317.54 us (94.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.2%)
Info: cfl dt = 0.003964239034944721 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5704e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.52571950494938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5848252263849114, dt = 0.003964239034944721
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.7%)
patch tree reduce : 2.52 us (0.9%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 275.58 us (93.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (63.8%)
Info: cfl dt = 0.00396426917660176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5685e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.485455544208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5887894654198562, dt = 0.00396426917660176
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.9%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 277.28 us (93.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (60.5%)
Info: cfl dt = 0.003964299524555568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5776e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.68442140467187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.592753734596458, dt = 0.003964299524555568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.5%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 309.53 us (94.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.6%)
Info: cfl dt = 0.003964330078906113 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4204e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.26090865363814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5967180341210134, dt = 0.003964330078906113
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 302.13 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (59.8%)
Info: cfl dt = 0.003964360839746756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6123e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.4404119894461 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6006823641999195, dt = 0.003964360839746756
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.4%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 336.67 us (94.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (66.3%)
Info: cfl dt = 0.003964391807164308 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5730e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.58623268814198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6046467250396663, dt = 0.003964391807164308
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 318.70 us (94.3%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.2%)
Info: cfl dt = 0.003964422981239073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5704e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.53003101429238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6086111168468307, dt = 0.003964422981239073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.4%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 373.18 us (95.2%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.8%)
Info: cfl dt = 0.003964454362044897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6885e+05 | 65536 | 2 | 1.398e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.10318776620812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6125755398280697, dt = 0.003964454362044897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 309.32 us (93.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (60.5%)
Info: cfl dt = 0.0039644859496492145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6743e+05 | 65536 | 2 | 1.402e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.79399922710094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6165399941901146, dt = 0.0039644859496492145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 292.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.4%)
Info: cfl dt = 0.003964517744113101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6522e+05 | 65536 | 2 | 1.794e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.53543709794529 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.620504480139764, dt = 0.003964517744113101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.8%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 267.59 us (93.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (61.1%)
Info: cfl dt = 0.003964549745491315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5527e+05 | 65536 | 2 | 1.845e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.37077813954215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6244689978838769, dt = 0.003964549745491315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.9%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 280.13 us (93.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 0.003964581953832349 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5194e+05 | 65536 | 2 | 1.862e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.64462463920862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.628433547629368, dt = 0.003964581953832349
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 290.96 us (93.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.5%)
Info: cfl dt = 0.00396461436917848 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6437e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.13186119632132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6323981295832004, dt = 0.00396461436917848
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 2.46 us (0.8%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 301.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.5%)
Info: cfl dt = 0.003964646991565815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6811e+05 | 65536 | 2 | 1.400e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.9467321943669 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.636362743952379, dt = 0.003964646991565815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 283.49 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.9%)
Info: cfl dt = 0.0039646798210243375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4452e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.80909243282036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6403273909439446, dt = 0.0039646798210243375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.9%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 271.11 us (93.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.9%)
Info: cfl dt = 0.0039647128575779605 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8158e+05 | 65536 | 2 | 1.717e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.10325459934892 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.644292070764969, dt = 0.0039647128575779605
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 287.93 us (93.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.2%)
Info: cfl dt = 0.00396474610124457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5592e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.29292658408266 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.648256783622547, dt = 0.00396474610124457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 299.52 us (93.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.7%)
Info: cfl dt = 0.0039647795520360764 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4733e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.42374990430682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6522215297237917, dt = 0.0039647795520360764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 291.37 us (93.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.3%)
Info: cfl dt = 0.003964813209958465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5541e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.1847978575912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6561863092758278, dt = 0.003964813209958465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 325.84 us (94.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.8%)
Info: cfl dt = 0.003964847075011834 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3889e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.5877437871048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6601511224857863, dt = 0.003964847075011834
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 354.66 us (94.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.2%)
Info: cfl dt = 0.003964881147190456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0603e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.43179237031698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.664115969560798, dt = 0.003964881147190456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 274.36 us (93.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (60.4%)
Info: cfl dt = 0.003964915426482819 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5923e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.01944060818829 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6680808507079885, dt = 0.003964915426482819
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.51 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 282.75 us (93.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (61.6%)
Info: cfl dt = 0.003964949912871672 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5699e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.53199395215636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6720457661344714, dt = 0.003964949912871672
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 2.51 us (0.8%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 283.43 us (93.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.3%)
Info: cfl dt = 0.0039649846063340806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5747e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.63704257702939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6760107160473432, dt = 0.0039649846063340806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 316.66 us (94.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.7%)
Info: cfl dt = 0.003965019506841468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4891e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.77342177647016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6799757006536773, dt = 0.003965019506841468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 292.21 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.3%)
Info: cfl dt = 0.00396505461435967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4998e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.00857581550719 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6839407201605188, dt = 0.00396505461435967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.9%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 283.55 us (93.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.1%)
Info: cfl dt = 0.003965089928848974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6228e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.68713623583773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6879057747748785, dt = 0.003965089928848974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.8%)
patch tree reduce : 2.29 us (0.8%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 270.71 us (93.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (60.3%)
Info: cfl dt = 0.003965125450264176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6032e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.26256511084668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6918708647037275, dt = 0.003965125450264176
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 21.86 us (5.9%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 329.31 us (89.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.0%)
Info: cfl dt = 0.003965161178554622 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5532e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.17255109683205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6958359901539917, dt = 0.003965161178554622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 326.92 us (94.1%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.6%)
Info: cfl dt = 0.003965197113664259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4998e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0118805207571 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6998011513325464, dt = 0.003965197113664259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (2.0%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 276.10 us (93.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.1%)
Info: cfl dt = 0.0039652332555316794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5805e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.77108803176358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7037663484462107, dt = 0.0039652332555316794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 345.46 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.9%)
Info: cfl dt = 0.003965269604090176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4920e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.84319456383307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7077315817017424, dt = 0.003965269604090176
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 323.64 us (94.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.6%)
Info: cfl dt = 0.003965306159267778 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4911e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.82423362366963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7116968513058326, dt = 0.003965306159267778
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.9%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 289.44 us (93.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.9%)
Info: cfl dt = 0.003965342920987307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5879e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.9347762997151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7156621574651003, dt = 0.003965342920987307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.1%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 288.89 us (93.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (60.9%)
Info: cfl dt = 0.003965379889166425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5366e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.81804905276655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7196275003860877, dt = 0.003965379889166425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 286.93 us (93.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.9%)
Info: cfl dt = 0.0039654170637176715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4571e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.08567464001969 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.723592880275254, dt = 0.0039654170637176715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 332.07 us (94.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.3%)
Info: cfl dt = 0.003965454444548522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5342e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.76805743154657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7275582973389718, dt = 0.003965454444548522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 278.57 us (93.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.8%)
Info: cfl dt = 0.00396549203156143 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3223e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.15158147675575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7315237517835202, dt = 0.00396549203156143
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 304.33 us (94.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (60.9%)
Info: cfl dt = 0.003965529824653871 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6217e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.67469354724852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7354892438150817, dt = 0.003965529824653871
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 295.20 us (94.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (60.5%)
Info: cfl dt = 0.003965567823718394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8801e+05 | 65536 | 2 | 1.689e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.52201347824584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7394547736397357, dt = 0.003965567823718394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 275.89 us (93.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.7%)
Info: cfl dt = 0.0039656060286426655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6721e+05 | 65536 | 2 | 1.403e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.77499044605005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7434203414634541, dt = 0.0039656060286426655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 298.03 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (60.3%)
Info: cfl dt = 0.003965644439309516 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5972e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.14439804420672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7473859474920967, dt = 0.003965644439309516
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.6%)
patch tree reduce : 2.36 us (0.6%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 360.68 us (94.3%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (59.8%)
Info: cfl dt = 0.0039656830555969864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4845e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.69071992980452 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7513515919314062, dt = 0.0039656830555969864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 294.35 us (93.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.2%)
Info: cfl dt = 0.003965721877378375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5553e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.23339040447823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7553172749870032, dt = 0.003965721877378375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 292.38 us (93.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (61.7%)
Info: cfl dt = 0.0039657609045222805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3684e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.16191770819125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7592829968643815, dt = 0.0039657609045222805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 315.27 us (94.1%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.8%)
Info: cfl dt = 0.00396580013689265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8942e+05 | 65536 | 2 | 1.683e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.83447705857071 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7632487577689038, dt = 0.00396580013689265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 312.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.9%)
Info: cfl dt = 0.003965839574348828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3837e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.49827959057083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7672145579057965, dt = 0.003965839574348828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 310.39 us (94.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.4%)
Info: cfl dt = 0.003965879216745591 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3606e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.99622253146349 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7711803974801454, dt = 0.003965879216745591
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 344.09 us (94.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.2%)
Info: cfl dt = 0.003965919063933207 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4124e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.12422661463638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.775146276696891, dt = 0.003965919063933207
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 286.48 us (94.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (61.4%)
Info: cfl dt = 0.003965959115757468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4978e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.98678690200316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7791121957608242, dt = 0.003965959115757468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 300.53 us (88.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.3%)
Info: cfl dt = 0.003965999372059742 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9466e+05 | 65536 | 2 | 1.661e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.97983419640882 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7830781548765817, dt = 0.003965999372059742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 299.63 us (94.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.3%)
Info: cfl dt = 0.003966039832677017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5496e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.11727697672008 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7870441542486415, dt = 0.003966039832677017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 321.99 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.6%)
Info: cfl dt = 0.003966080497441943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4959e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.94886262393749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7910101940813186, dt = 0.003966080497441943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 292.27 us (93.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.0%)
Info: cfl dt = 0.003966121366182878 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5511e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.15189744738973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7949762745787605, dt = 0.003966121366182878
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 338.61 us (94.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.2%)
Info: cfl dt = 0.0039661624387239336 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7133e+05 | 65536 | 2 | 1.765e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.89915133371187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7989423959449433, dt = 0.0039661624387239336
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 312.49 us (94.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (61.4%)
Info: cfl dt = 0.003966203714885015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5135e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.33437024135893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8029085583836673, dt = 0.003966203714885015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 315.03 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.1%)
Info: cfl dt = 0.003966245194481867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5006e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.05370732827461 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8068747620985524, dt = 0.003966245194481867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 335.05 us (94.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.3%)
Info: cfl dt = 0.003966286877326122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5432e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.9833454964861 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8108410072930343, dt = 0.003966286877326122
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.46 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 318.77 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (61.0%)
Info: cfl dt = 0.0039663287632253335 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5169e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.41102840015205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8148072941703604, dt = 0.0039663287632253335
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 2.58 us (0.8%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 309.90 us (94.0%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.3%)
Info: cfl dt = 0.003966370851983028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4456e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.85960675767818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8187736229335856, dt = 0.003966370851983028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.7%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 303.84 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.2%)
Info: cfl dt = 0.0039664131433987445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6166e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.58568032482032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8227399937855686, dt = 0.0039664131433987445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 282.66 us (93.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.2%)
Info: cfl dt = 0.003966455637268077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5631e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.42130883022219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8267064069289674, dt = 0.003966455637268077
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 290.56 us (93.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.5%)
Info: cfl dt = 0.0039664983333827205 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5630e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.42046062992739 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8306728625662354, dt = 0.0039664983333827205
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 323.95 us (94.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.3%)
Info: cfl dt = 0.003966541231530505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2770e+05 | 65536 | 2 | 2.000e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.40121051878168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.834639360899618, dt = 0.003966541231530505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.5%)
patch tree reduce : 2.27 us (0.6%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 369.86 us (94.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (66.6%)
Info: cfl dt = 0.0039665843314954504 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1331e+05 | 65536 | 2 | 2.092e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.26661502164117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8386059021311485, dt = 0.0039665843314954504
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.4%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 381.47 us (95.1%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.3%)
Info: cfl dt = 0.003966627633057796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1254e+05 | 65536 | 2 | 2.097e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.10008035968472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.842572486462644, dt = 0.003966627633057796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.3%)
patch tree reduce : 1.90 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 417.62 us (95.5%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.9%)
Info: cfl dt = 0.00396667113599405 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2439e+05 | 65536 | 2 | 2.020e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.68213664563544 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.846539114095702, dt = 0.00396667113599405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 364.09 us (94.9%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.8%)
Info: cfl dt = 0.0039667148400770276 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3457e+05 | 65536 | 2 | 1.959e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.90064732474748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.850505785231696, dt = 0.0039667148400770276
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 309.62 us (94.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.6%)
Info: cfl dt = 0.003966758745075896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3778e+05 | 65536 | 2 | 1.940e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.60058775992609 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.854472500071773, dt = 0.003966758745075896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 300.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.2%)
Info: cfl dt = 0.003966802850756208 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5264e+05 | 65536 | 2 | 1.858e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.83971260028135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8584392588168488, dt = 0.003966802850756208
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 333.85 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.5%)
Info: cfl dt = 0.003966847156879954 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3081e+05 | 65536 | 2 | 1.981e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.08534971154356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.862406061667605, dt = 0.003966847156879954
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 311.08 us (93.9%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (61.1%)
Info: cfl dt = 0.003966891663205592 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3852e+05 | 65536 | 2 | 1.936e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.7651948729811 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.866372908824485, dt = 0.003966891663205592
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 310.70 us (94.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (60.9%)
Info: cfl dt = 0.003966936369488094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3157e+05 | 65536 | 2 | 1.977e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.25106177887017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8703398004876906, dt = 0.003966936369488094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 311.86 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (64.4%)
Info: cfl dt = 0.003966981275478984 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4332e+05 | 65536 | 2 | 1.909e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.81304717973666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8743067368571786, dt = 0.003966981275478984
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 290.45 us (93.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.4%)
Info: cfl dt = 0.00396702638092638 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4280e+05 | 65536 | 2 | 1.912e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.69982085194226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8782737181326576, dt = 0.00396702638092638
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 334.05 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.2%)
Info: cfl dt = 0.003967071685575031 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4580e+05 | 65536 | 2 | 1.895e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.35599045211657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.882240744513584, dt = 0.003967071685575031
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 336.88 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (61.6%)
Info: cfl dt = 0.00396711718916636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4240e+05 | 65536 | 2 | 1.914e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.61397593003545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8862078161991591, dt = 0.00396711718916636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 339.85 us (94.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.7%)
Info: cfl dt = 0.003967162891438498 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4467e+05 | 65536 | 2 | 1.901e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.1098013249447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8901749333883255, dt = 0.003967162891438498
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.4%)
patch tree reduce : 2.50 us (0.6%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 371.16 us (94.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.3%)
Info: cfl dt = 0.0039672087921263305 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3938e+05 | 65536 | 2 | 1.931e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.95812935363907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.894142096279764, dt = 0.0039672087921263305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 307.56 us (94.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (60.3%)
Info: cfl dt = 0.003967254890961529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3231e+05 | 65536 | 2 | 1.972e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.4178101931835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8981093050718902, dt = 0.003967254890961529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 301.14 us (94.2%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.0%)
Info: cfl dt = 0.003967301187672596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4143e+05 | 65536 | 2 | 1.919e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.40711858566571 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9020765599628517, dt = 0.003967301187672596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.3%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 359.84 us (95.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.7%)
Info: cfl dt = 0.003967347681984896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3553e+05 | 65536 | 2 | 1.953e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.1211788039128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9060438611505244, dt = 0.003967347681984896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.6%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 306.95 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.4%)
Info: cfl dt = 0.003967394373620703 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4820e+05 | 65536 | 2 | 1.882e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.88409348693547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9100112088325092, dt = 0.003967394373620703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 362.96 us (94.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.2%)
Info: cfl dt = 0.003967441262299228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4851e+05 | 65536 | 2 | 1.880e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.95282004611877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.91397860320613, dt = 0.003967441262299228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.7%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 292.49 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.6%)
Info: cfl dt = 0.003967488347736667 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4864e+05 | 65536 | 2 | 1.880e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.98135441281491 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.917946044468429, dt = 0.003967488347736667
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.6%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 301.15 us (94.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (63.3%)
Info: cfl dt = 0.0039675356296462305 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4790e+05 | 65536 | 2 | 1.884e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.8216829514262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9219135328161658, dt = 0.0039675356296462305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 313.08 us (94.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.4%)
Info: cfl dt = 0.003967583107738185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3555e+05 | 65536 | 2 | 1.953e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.1305213443379 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.925881068445812, dt = 0.003967583107738185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 2.41 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 328.25 us (94.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.3%)
Info: cfl dt = 0.0039676307817198865 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4117e+05 | 65536 | 2 | 1.921e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.35635822179061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9298486515535502, dt = 0.0039676307817198865
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.0%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 298.23 us (93.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.8%)
Info: cfl dt = 0.003967678651295823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4647e+05 | 65536 | 2 | 1.892e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.51354916627574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.93381628233527, dt = 0.003967678651295823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 325.17 us (94.1%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.4%)
Info: cfl dt = 0.003967726716167648 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3826e+05 | 65536 | 2 | 1.937e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.7237981243997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.937783960986566, dt = 0.003967726716167648
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 341.00 us (94.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (61.7%)
Info: cfl dt = 0.0039677749760342095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2641e+05 | 65536 | 2 | 2.008e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.14207889125313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9417516877027337, dt = 0.0039677749760342095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.3%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 373.12 us (95.2%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.2%)
Info: cfl dt = 0.003967823430591601 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4172e+05 | 65536 | 2 | 1.918e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.48082432478672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.945719462678768, dt = 0.003967823430591601
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.3%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 393.91 us (95.4%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.9%)
Info: cfl dt = 0.003967872079533182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3917e+05 | 65536 | 2 | 1.932e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.92451993891868 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9496872861093595, dt = 0.003967872079533182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 292.11 us (94.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.3%)
Info: cfl dt = 0.003967920922549628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3981e+05 | 65536 | 2 | 1.929e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.06540234567734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9536551581888926, dt = 0.003967920922549628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 297.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.0%)
Info: cfl dt = 0.003967969959328953 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0124e+05 | 65536 | 2 | 2.176e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.66059570544843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9576230791114422, dt = 0.003967969959328953
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 355.49 us (94.9%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.4%)
Info: cfl dt = 0.003968019189556551 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2319e+05 | 65536 | 2 | 2.028e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.4457223065406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.961591049070771, dt = 0.003968019189556551
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 335.84 us (94.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.4%)
Info: cfl dt = 0.003968068612915233 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3017e+05 | 65536 | 2 | 1.985e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.96652320622279 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9655590682603277, dt = 0.003968068612915233
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 302.06 us (93.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (59.1%)
Info: cfl dt = 0.003968118229085255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3022e+05 | 65536 | 2 | 1.985e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.97805093620154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.969527136873243, dt = 0.003968118229085255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.45 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 333.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.8%)
Info: cfl dt = 0.003968168037744358 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2689e+05 | 65536 | 2 | 2.005e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.25461719113626 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9734952551023281, dt = 0.003968168037744358
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.4%)
patch tree reduce : 1.88 us (0.4%)
gen split merge : 1.56 us (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 421.04 us (95.2%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (68.5%)
Info: cfl dt = 0.0039682180385678 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4746e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.53667733169233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9774634231400725, dt = 0.0039682180385678
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 307.17 us (94.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.8%)
Info: cfl dt = 0.003968268231228389 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4089e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.10622994171759 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9814316411786403, dt = 0.003968268231228389
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 298.95 us (93.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (62.4%)
Info: cfl dt = 0.0039683186153965195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1593e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.6657411181035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9853999094098687, dt = 0.0039683186153965195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 280.81 us (93.6%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.5%)
Info: cfl dt = 0.003968369190740202 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4722e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.48721449980958 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9893682280252651, dt = 0.003968369190740202
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 291.83 us (93.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.4%)
Info: cfl dt = 0.003968419956925101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5689e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.59616571378336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9933365972160053, dt = 0.003968419956925101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 305.36 us (88.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.1%)
Info: cfl dt = 0.003968470913614561 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4938e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.96134953652259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9973050171729305, dt = 0.002694982827069481
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 288.49 us (93.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (60.3%)
Info: cfl dt = 0.003968505647441307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4839e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.37935877958775 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 779.0836737440001 (s) [Godunov][rank=0]
running minmod rusanov
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.32 ms [DataInserterUtility][rank=0]
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 : 4.44 us (59.4%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (0.6%)
patch tree reduce : 1.15 us (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 363.55 us (96.6%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.52 us (2.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 299.57 us (93.6%)
LB move op cnt : 0
LB apply : 2.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2259e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.6%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 350.56 us (94.3%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3654e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.9999631213047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003961660569039922, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 340.02 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4170e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.12275543496409 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007923321138079843, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 27.11 us (6.6%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 369.99 us (89.9%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4306e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.41906627802676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011884981707119765, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.6%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 346.38 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2810e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.16399205866686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015846642276159686, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 300.79 us (93.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4309e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.42634861768619 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019808302845199608, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 1.30 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 353.12 us (94.3%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3935e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.61158858311484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02376996341423953, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 301.84 us (93.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3691e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.08110619206369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02773162398327945, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 295.82 us (93.8%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5155e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.26574506556285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03169328455231937, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 336.05 us (94.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5958e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.0142409260076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03565494512135929, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 328.54 us (94.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4991e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.91063550693345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03961660569039921, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 323.56 us (94.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4846e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.5940193848333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04357826625943913, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.2%)
patch tree reduce : 1.87 us (0.4%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.2%)
LB compute : 462.42 us (95.9%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (61.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4594e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.04513209514059 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047539926828479045, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 308.92 us (94.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4575e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.00479283819027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051501587397518964, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 333.31 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (60.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4513e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.86851529287866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05546324796655888, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 339.18 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4896e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.70340904546511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0594249085355988, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 347.97 us (94.5%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4336e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.48361303979672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06338656910463872, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.4%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 359.58 us (94.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4651e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.16867373708764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06734822967367864, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 325.31 us (94.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3858e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.44332666014486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07130989024271855, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 337.53 us (94.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5255e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.48338494657196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07527155081175847, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 326.73 us (94.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4485e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.80752791309206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07923321138079839, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 289.76 us (93.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3574e+05 | 65536 | 2 | 1.952e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.06457622631035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08319487194983831, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.26 us (6.6%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 328.22 us (89.6%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (57.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2515e+05 | 65536 | 2 | 2.016e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.75866502902947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08715653251887823, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.4%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 355.00 us (94.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5348e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.68662205596199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09111819308791815, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.4%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 356.05 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4794e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.47992109119964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09507985365695806, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 311.26 us (93.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7903e+05 | 65536 | 2 | 1.729e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.48477209474281 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09904151422599798, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 313.61 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3260e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.1426653066834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1030031747950379, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 317.29 us (94.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4051e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.86332028829992 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10696483536407782, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 294.93 us (93.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4778e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.44719687905923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11092649593311774, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 296.36 us (93.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (61.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5270e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.51657005076821 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11488815650215765, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.1%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 276.98 us (93.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2319e+05 | 65536 | 2 | 2.028e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.3337808009862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11884981707119757, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.3%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 384.46 us (95.2%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1016e+05 | 65536 | 2 | 2.113e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.49817290865232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12281147764023749, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.4%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 369.34 us (95.0%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3075e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.73942056331823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1267731382092774, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 326.93 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3506e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.67695901377363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13073479877831734, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 314.39 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3479e+05 | 65536 | 2 | 1.958e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.85654396469175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13469645934735727, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 291.31 us (93.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (60.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3208e+05 | 65536 | 2 | 1.973e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.26767505924286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1386581199163972, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 300.61 us (94.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3904e+05 | 65536 | 2 | 1.933e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.78149392537235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14261978048543714, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 296.26 us (93.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3650e+05 | 65536 | 2 | 1.948e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.22903091684287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14658144105447707, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 344.23 us (94.2%)
LB move op cnt : 0
LB apply : 4.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (69.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3419e+05 | 65536 | 2 | 1.961e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.72649509560063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.150543101623517, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.9%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 301.56 us (93.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (58.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3910e+05 | 65536 | 2 | 1.933e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.7950083614743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15450476219255693, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 371.27 us (94.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3572e+05 | 65536 | 2 | 1.952e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.05949416884609 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15846642276159686, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 283.53 us (93.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3520e+05 | 65536 | 2 | 1.955e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.94587808786392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1624280833306368, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 2.39 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 315.86 us (93.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0855e+05 | 65536 | 2 | 2.124e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.14608654799116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16638974389967673, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 383.03 us (95.0%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3061e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.70895228350622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17035140446871666, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.0%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 274.57 us (93.2%)
LB move op cnt : 0
LB apply : 3.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (58.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4155e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.08982886480052 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1743130650377566, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.7%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 329.59 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8691e+05 | 65536 | 2 | 1.694e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.19906948575635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17827472560679652, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.4%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 341.27 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1961e+05 | 65536 | 2 | 2.051e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.55365048274983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18223638617583646, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.5%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 386.97 us (94.9%)
LB move op cnt : 0
LB apply : 4.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (67.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2954e+05 | 65536 | 2 | 1.989e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.7148684075079 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1861980467448764, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.4%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 339.35 us (94.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3897e+05 | 65536 | 2 | 1.933e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.76580506592963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19015970731391632, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 298.33 us (93.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0882e+05 | 65536 | 2 | 1.603e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.96835517958577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19412136788295625, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.5%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 340.26 us (94.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9839e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.69702207029657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19808302845199618, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 313.54 us (94.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (63.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5321e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.62773321484697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20204468902103612, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 312.43 us (94.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3633e+05 | 65536 | 2 | 1.949e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.19308876425553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20600634959007605, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.3%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 388.51 us (95.1%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2014e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.43166617443195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20996801015911598, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.3%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 378.49 us (95.2%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3253e+05 | 65536 | 2 | 1.971e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.36595411010998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2139296707281559, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 340.39 us (94.7%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6226e+05 | 65536 | 2 | 1.809e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.83499262054644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21789133129719584, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.4%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 366.99 us (94.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (64.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0916e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.04070966955636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22185299186623578, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 347.99 us (94.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1595e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.51886626629776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2258146524352757, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.4%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 369.73 us (95.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (66.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0897e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.0008116393753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22977631300431564, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 345.30 us (94.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6581e+05 | 65536 | 2 | 1.792e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.6066781506745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23373797357335557, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.6%)
patch tree reduce : 22.05 us (6.2%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 316.75 us (88.9%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (64.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2718e+05 | 65536 | 2 | 2.003e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.20160541716804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2376996341423955, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.1%)
patch tree reduce : 1.64 us (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 462.13 us (96.1%)
LB move op cnt : 0
LB apply : 3.56 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2888e+05 | 65536 | 2 | 1.993e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.57043705102004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24166129471143544, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.5%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 1.26 us (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 377.17 us (94.9%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3214e+05 | 65536 | 2 | 1.973e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.27962513516894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24562295528047537, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 331.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3578e+05 | 65536 | 2 | 1.952e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.07191123573983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2495846158495153, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 311.66 us (93.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (60.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9108e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.10758462956635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2535462764185552, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 310.74 us (94.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3010e+05 | 65536 | 2 | 1.985e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.83683316914338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2575079369875951, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 307.62 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (65.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3527e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.72393352866726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.261469597556635, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 20.93 us (5.9%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 314.17 us (88.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1948e+05 | 65536 | 2 | 2.051e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.52491555609664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2654312581256749, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.4%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 631.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 352.28 us (95.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (65.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2516e+05 | 65536 | 2 | 2.015e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.7617067306554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2693929186947148, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 831.00 ns (0.2%)
LB compute : 346.04 us (94.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (65.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2143e+05 | 65536 | 2 | 2.039e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.95001371067363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2733545792637547, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.4%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 682.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 360.87 us (95.3%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4626e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.11477529320128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27731623983279463, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 321.91 us (94.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4205e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.1989527487697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28127790040183454, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.6%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 311.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9758e+05 | 65536 | 2 | 1.648e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.52141433806983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28523956097087444, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 307.41 us (94.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0765e+05 | 65536 | 2 | 1.608e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.71398032247063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28920122153991434, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 313.45 us (94.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3347e+05 | 65536 | 2 | 1.965e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.57012562753623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29316288210895425, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 317.91 us (94.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3839e+05 | 65536 | 2 | 1.937e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.64106137175425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29712454267799415, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 333.18 us (94.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3309e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.24961944092652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30108620324703406, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 275.82 us (93.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2381e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.23069380742378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30504786381607396, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.8%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 282.38 us (93.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5330e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.64846312584854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30900952438511387, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 320.81 us (94.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4555e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.96027604082205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31297118495415377, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 346.92 us (94.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2568e+05 | 65536 | 2 | 2.012e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.87560916141122 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3169328455231937, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.0%)
patch tree reduce : 1.94 us (0.4%)
gen split merge : 682.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 458.76 us (96.0%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (70.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2285e+05 | 65536 | 2 | 2.030e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.25963862559736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3208945060922336, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.3%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 379.79 us (95.1%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5050e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.03767650035421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3248561666612735, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 312.45 us (94.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1864e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.1051666434286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3288178272303134, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 307.35 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (61.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5845e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.76865101826837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3327794877993533, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 312.39 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5657e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.35835767880683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3367411483683932, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.9%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 275.23 us (93.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (59.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5021e+05 | 65536 | 2 | 1.871e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.21211895187729 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3407028089374331, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.4%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 359.88 us (94.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3145e+05 | 65536 | 2 | 1.977e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.13116413659155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.344664469506473, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.7%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 345.11 us (94.2%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3087e+05 | 65536 | 2 | 1.981e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.0041492091023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3486261300755129, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 302.16 us (94.1%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4300e+05 | 65536 | 2 | 1.911e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.64320106915123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3525877906445528, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 326.37 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7958e+05 | 65536 | 2 | 1.727e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.60454613298239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3565494512135927, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 334.23 us (94.4%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (63.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8564e+05 | 65536 | 2 | 1.699e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.92342046440226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3605111117826326, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.3%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 358.80 us (95.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5437e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.88053808333918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3644727723516725, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.4%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 353.99 us (95.0%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3959e+05 | 65536 | 2 | 1.930e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.90160320890207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36843443292071243, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 333.52 us (94.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (62.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3912e+05 | 65536 | 2 | 1.933e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.79926719804074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37239609348975233, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.9%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 307.31 us (93.9%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4989e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.90579208004021 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37635775405879224, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 342.48 us (94.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6461e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.10865827585721 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38031941462783214, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 317.45 us (94.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3658e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.00923139507752 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38428107519687205, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.3%)
patch tree reduce : 1.77 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 376.33 us (95.1%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2016e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.43533272968558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38824273576591195, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 345.31 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3076e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.74159859541004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39220439633495185, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.3%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 385.30 us (95.3%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (66.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6362e+05 | 65536 | 2 | 1.414e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.89318085019944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39616605690399176, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.5%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 358.12 us (94.9%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2639e+05 | 65536 | 2 | 2.008e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.02949350386778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40012771747303166, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 341.08 us (94.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2361e+05 | 65536 | 2 | 2.025e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.425069319661 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40408937804207157, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.4%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 369.53 us (95.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2242e+05 | 65536 | 2 | 2.033e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.16514830392032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40805103861111147, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.4%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 367.65 us (95.0%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2179e+05 | 65536 | 2 | 2.037e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.02880396154328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4120126991801514, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.2%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 424.12 us (95.6%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4110e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.99201005312715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4159743597491913, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 321.49 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (62.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5094e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.13425081047386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4199360203182312, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.9%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 277.11 us (93.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6617e+05 | 65536 | 2 | 1.406e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.44735804798108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4238976808872711, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.9%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 294.46 us (93.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (59.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8322e+05 | 65536 | 2 | 1.710e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.39642240810072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.427859341456311, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.6%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 300.42 us (94.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3119e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.83593633413197 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4318210020253509, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 294.80 us (93.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (61.5%)
Info: cfl dt = 0.0039616605690399225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0526e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.19345580635772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4357826625943908, dt = 0.0039616605690399225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 273.52 us (93.5%)
LB move op cnt : 0
LB apply : 3.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.9%)
Info: cfl dt = 0.0039616605690399225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2592e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.68987248398777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4397443231634307, dt = 0.0039616605690399225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 321.84 us (94.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.4%)
Info: cfl dt = 0.003961660569039923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5002e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.93311807705945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4437059837324706, dt = 0.003961660569039923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.9%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 310.39 us (93.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.8%)
Info: cfl dt = 0.003961660569039923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5758e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.57968919864406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4476676443015105, dt = 0.003961660569039923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 312.49 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (59.8%)
Info: cfl dt = 0.003961660569039923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3435e+05 | 65536 | 2 | 1.960e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.7610753286375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4516293048705504, dt = 0.003961660569039923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 330.40 us (94.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.1%)
Info: cfl dt = 0.003961660569039924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3671e+05 | 65536 | 2 | 1.946e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.27542511677113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4555909654395903, dt = 0.003961660569039924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 328.35 us (94.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.7%)
Info: cfl dt = 0.003961660569039926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2021e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.44710990039616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4595526260086302, dt = 0.003961660569039926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.3%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 386.76 us (95.3%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.0%)
Info: cfl dt = 0.003961660569039926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4514e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.87187616106156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46351428657767013, dt = 0.003961660569039926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 346.45 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.8%)
Info: cfl dt = 0.003961660569039928 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2888e+05 | 65536 | 2 | 1.993e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.57040795909793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46747594714671004, dt = 0.003961660569039928
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.4%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 368.60 us (94.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.3%)
Info: cfl dt = 0.003961660569039928 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3017e+05 | 65536 | 2 | 1.985e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.85082130644892 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47143760771574994, dt = 0.003961660569039928
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 301.63 us (93.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (59.8%)
Info: cfl dt = 0.003961660569039929 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3259e+05 | 65536 | 2 | 1.970e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.3785706958282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47539926828478984, dt = 0.003961660569039929
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 22.80 us (6.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 316.43 us (88.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.4%)
Info: cfl dt = 0.003961660569039931 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3013e+05 | 65536 | 2 | 1.985e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.84206754224466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47936092885382975, dt = 0.003961660569039931
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 348.92 us (94.6%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (65.1%)
Info: cfl dt = 0.003961660569039933 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3132e+05 | 65536 | 2 | 1.978e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.10248400842983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48332258942286965, dt = 0.003961660569039933
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 347.10 us (94.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.8%)
Info: cfl dt = 0.003961660569039935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2772e+05 | 65536 | 2 | 2.000e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.31891957453152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4872842499919096, dt = 0.003961660569039935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.4%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 691.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 340.04 us (95.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.6%)
Info: cfl dt = 0.003961660569039937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2787e+05 | 65536 | 2 | 1.999e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.35019775318455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4912459105609496, dt = 0.003961660569039937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (1.8%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 335.43 us (93.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (66.1%)
Info: cfl dt = 0.00396166056903994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2869e+05 | 65536 | 2 | 1.994e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.5300500803093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49520757112998953, dt = 0.00396166056903994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 309.39 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.7%)
Info: cfl dt = 0.003961660569039943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3085e+05 | 65536 | 2 | 1.981e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.00006268358622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4991692316990295, dt = 0.003961660569039943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 295.63 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.5%)
Info: cfl dt = 0.003961660569039947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3269e+05 | 65536 | 2 | 1.970e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.40102583072662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5031308922680694, dt = 0.003961660569039947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.7%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 336.05 us (94.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.0%)
Info: cfl dt = 0.00396166056903995 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2944e+05 | 65536 | 2 | 1.989e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.69290564803384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5070925528371093, dt = 0.00396166056903995
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 342.21 us (94.0%)
LB move op cnt : 0
LB apply : 4.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (71.9%)
Info: cfl dt = 0.003961660569039955 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2974e+05 | 65536 | 2 | 1.988e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.75724716630044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5110542134061492, dt = 0.003961660569039955
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.9%)
patch tree reduce : 2.43 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 304.95 us (93.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (68.0%)
Info: cfl dt = 0.00396166056903996 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3286e+05 | 65536 | 2 | 1.969e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.43763115713111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150158739751891, dt = 0.00396166056903996
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 302.65 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.35 us (94.2%)
Info: cfl dt = 0.003961660569039966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3277e+05 | 65536 | 2 | 1.969e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.41710468517836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5189775345442291, dt = 0.003961660569039966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 326.30 us (94.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.2%)
Info: cfl dt = 0.003961660569039973 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2866e+05 | 65536 | 2 | 1.994e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.52246573926635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5229391951132691, dt = 0.003961660569039973
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 300.45 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.6%)
Info: cfl dt = 0.00396166056903998 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2919e+05 | 65536 | 2 | 1.991e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.6384172184336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5269008556823092, dt = 0.00396166056903998
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 334.73 us (94.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.5%)
Info: cfl dt = 0.003961660569039988 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2894e+05 | 65536 | 2 | 1.992e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.5840280787298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5308625162513492, dt = 0.003961660569039988
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 315.70 us (93.9%)
LB move op cnt : 0
LB apply : 4.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.9%)
Info: cfl dt = 0.003961660569039999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2728e+05 | 65536 | 2 | 2.002e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.22292455903084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5348241768203892, dt = 0.003961660569039999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.5%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 379.47 us (95.1%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (69.0%)
Info: cfl dt = 0.003961660569040009 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2653e+05 | 65536 | 2 | 2.007e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.05987814165785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5387858373894292, dt = 0.003961660569040009
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.3%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 581.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 377.30 us (95.5%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (67.3%)
Info: cfl dt = 0.003961660569040021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9514e+05 | 65536 | 2 | 1.659e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.98985672980152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5427474979584692, dt = 0.003961660569040021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 310.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (59.4%)
Info: cfl dt = 0.003961660569040035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6099e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.3201813237951 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5467091585275092, dt = 0.003961660569040035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 302.19 us (93.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (62.2%)
Info: cfl dt = 0.003961660569040051 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8288e+05 | 65536 | 2 | 1.712e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.32149194111108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5506708190965492, dt = 0.003961660569040051
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 4.38 us (1.4%)
gen split merge : 1.50 us (0.5%)
split / merge op : 0/0
apply split merge : 2.60 us (0.8%)
LB compute : 297.97 us (92.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.7%)
Info: cfl dt = 0.003961660569040068 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5720e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.49668946995085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5546324796655893, dt = 0.003961660569040068
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 275.52 us (93.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.2%)
Info: cfl dt = 0.003961660569040087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6110e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.34484675223923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5585941402346293, dt = 0.003961660569040087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 324.69 us (94.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.9%)
Info: cfl dt = 0.003961660569040109 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6721e+05 | 65536 | 2 | 1.785e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.91229675552894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5625558008036694, dt = 0.003961660569040109
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.7%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 334.88 us (94.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.0%)
Info: cfl dt = 0.003961660569040132 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6403e+05 | 65536 | 2 | 1.412e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.98267758909124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5665174613727095, dt = 0.003961660569040132
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 274.37 us (93.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.3%)
Info: cfl dt = 0.00396166056904016 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4068e+05 | 65536 | 2 | 1.924e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.13950141947824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5704791219417497, dt = 0.00396166056904016
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 316.33 us (94.0%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.1%)
Info: cfl dt = 0.00396166056904019 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3132e+05 | 65536 | 2 | 1.978e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.10306687972464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5744407825107898, dt = 0.00396166056904019
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.9%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 277.71 us (93.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (60.2%)
Info: cfl dt = 0.003961660569040223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5562e+05 | 65536 | 2 | 1.843e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.39087684283135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.57840244307983, dt = 0.003961660569040223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 306.86 us (94.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.3%)
Info: cfl dt = 0.003961660569040259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5923e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.93738836984456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5823641036488703, dt = 0.003961660569040259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 276.72 us (87.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.7%)
Info: cfl dt = 0.0039616605690403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1197e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.65286284243707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5863257642179105, dt = 0.0039616605690403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 291.50 us (93.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.4%)
Info: cfl dt = 0.003961660569040344 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9014e+05 | 65536 | 2 | 1.680e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.90177862621329 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5902874247869508, dt = 0.003961660569040344
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 327.05 us (94.6%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.0%)
Info: cfl dt = 0.003961660569040394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2886e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.32837070123355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5942490853559912, dt = 0.003961660569040394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.7%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 291.20 us (94.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (59.6%)
Info: cfl dt = 0.003961660569040448 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4524e+05 | 65536 | 2 | 1.898e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.1318611684414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5982107459250315, dt = 0.003961660569040448
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 301.38 us (94.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (61.2%)
Info: cfl dt = 0.003961660569040509 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6704e+05 | 65536 | 2 | 1.786e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.8757478718396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.602172406494072, dt = 0.003961660569040509
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 275.77 us (93.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.6%)
Info: cfl dt = 0.003961660569040575 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6068e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.25242004348152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6061340670631125, dt = 0.003961660569040575
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 323.37 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.9%)
Info: cfl dt = 0.003961660569040648 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5775e+05 | 65536 | 2 | 1.832e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.85462525801977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.610095727632153, dt = 0.003961660569040648
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 327.51 us (94.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (65.1%)
Info: cfl dt = 0.003961660569040728 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2901e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.36077433334846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6140573882011937, dt = 0.003961660569040728
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.9%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 264.94 us (93.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.1%)
Info: cfl dt = 0.003961660569040817 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6580e+05 | 65536 | 2 | 1.407e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.36818149059519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6180190487702344, dt = 0.003961660569040817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 271.01 us (93.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.4%)
Info: cfl dt = 0.003961660569040913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1059e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.35350782192076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6219807093392752, dt = 0.003961660569040913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 317.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.2%)
Info: cfl dt = 0.003961660569041019 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6637e+05 | 65536 | 2 | 1.789e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.73031215928424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6259423699083161, dt = 0.003961660569041019
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 299.44 us (94.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (58.8%)
Info: cfl dt = 0.003961660569041134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8269e+05 | 65536 | 2 | 2.318e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.519064395939665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6299040304773571, dt = 0.003961660569041134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.4%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 369.65 us (94.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.1%)
Info: cfl dt = 0.00396166056904126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6151e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.43392245490743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6338656910463982, dt = 0.00396166056904126
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 312.16 us (94.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.5%)
Info: cfl dt = 0.003961660569041399 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6004e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.11442663145937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6378273516154395, dt = 0.003961660569041399
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 343.77 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.7%)
Info: cfl dt = 0.00396166056904155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5865e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.81135085758696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6417890121844808, dt = 0.00396166056904155
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 326.08 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.6%)
Info: cfl dt = 0.003961660569041714 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4217e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.22485307014851 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6457506727535224, dt = 0.003961660569041714
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 317.10 us (94.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (62.3%)
Info: cfl dt = 0.003961660569041893 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5205e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.37611322586703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6497123333225641, dt = 0.003961660569041893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 343.97 us (94.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.2%)
Info: cfl dt = 0.003961660569042087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5602e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.24017651940976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.653673993891606, dt = 0.003961660569042087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 382.11 us (94.9%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.7%)
Info: cfl dt = 0.0039616605690423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6015e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.13815357115598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6576356544606481, dt = 0.0039616605690423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.5%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 312.78 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (62.7%)
Info: cfl dt = 0.00396166056904253 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5650e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.34478972277807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6615973150296904, dt = 0.00396166056904253
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.50 us (0.5%)
split / merge op : 0/0
apply split merge : 1.46 us (0.4%)
LB compute : 308.02 us (93.8%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.9%)
Info: cfl dt = 0.00396166056904278 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5541e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.10712658508223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.665558975598733, dt = 0.00396166056904278
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.6%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 366.95 us (94.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.4%)
Info: cfl dt = 0.00396166056904305 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0971e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.16144475243114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6695206361677758, dt = 0.00396166056904305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 347.27 us (94.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (63.3%)
Info: cfl dt = 0.003961660569043342 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4792e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.47649924619273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734822967368188, dt = 0.003961660569043342
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 345.27 us (94.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.2%)
Info: cfl dt = 0.003961660569043659 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5277e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.5318200688474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6774439573058622, dt = 0.003961660569043659
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 305.72 us (94.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (59.9%)
Info: cfl dt = 0.0039616605690440026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6099e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.31988424098154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6814056178749058, dt = 0.0039616605690440026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 290.65 us (93.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.4%)
Info: cfl dt = 0.003961660569044373 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5832e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.73881878396895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6853672784439498, dt = 0.003961660569044373
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 311.90 us (94.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.5%)
Info: cfl dt = 0.003961660569044774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5766e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.5967418544062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6893289390129942, dt = 0.003961660569044774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.4%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 356.37 us (94.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.9%)
Info: cfl dt = 0.0039616605690452064 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7194e+05 | 65536 | 2 | 1.762e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.94202386416072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.693290599582039, dt = 0.0039616605690452064
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 318.61 us (94.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.5%)
Info: cfl dt = 0.003961660569045673 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4339e+05 | 65536 | 2 | 1.908e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.72965253525683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6972522601510842, dt = 0.003961660569045673
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 301.47 us (94.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (21.8%)
Info: cfl dt = 0.003961660569046174 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1660e+05 | 65536 | 2 | 2.070e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.89869531054102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7012139207201299, dt = 0.003961660569046174
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.3%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 369.06 us (95.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.2%)
Info: cfl dt = 0.003961660569046716 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2670e+05 | 65536 | 2 | 2.006e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.09731141462076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.705175581289176, dt = 0.003961660569046716
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 359.81 us (94.9%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.7%)
Info: cfl dt = 0.003961660569047297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1510e+05 | 65536 | 2 | 2.080e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.57171569196016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7091372418582227, dt = 0.003961660569047297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 316.55 us (94.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.8%)
Info: cfl dt = 0.003961660569047923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5257e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.4894106323016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.71309890242727, dt = 0.003961660569047923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 302.38 us (94.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (61.3%)
Info: cfl dt = 0.003961660569048595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6362e+05 | 65536 | 2 | 1.414e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.89232721706098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7170605629963179, dt = 0.003961660569048595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.4%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 365.97 us (95.1%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.1%)
Info: cfl dt = 0.003961660569049316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5144e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.24209307212696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7210222235653665, dt = 0.003961660569049316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.0%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 275.91 us (93.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.3%)
Info: cfl dt = 0.0039616605690500906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6455e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.09552250472261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7249838841344158, dt = 0.0039616605690500906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 324.23 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.6%)
Info: cfl dt = 0.00396166056905092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3530e+05 | 65536 | 2 | 1.955e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.96913802640385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.728945544703466, dt = 0.00396166056905092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 314.81 us (94.0%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (61.2%)
Info: cfl dt = 0.00396166056905181 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1122e+05 | 65536 | 2 | 2.106e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.72888688240462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7329072052725168, dt = 0.00396166056905181
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.4%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 350.45 us (94.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.6%)
Info: cfl dt = 0.003961660569052762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6333e+05 | 65536 | 2 | 1.414e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.83037603663173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7368688658415686, dt = 0.003961660569052762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 297.89 us (93.8%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.9%)
Info: cfl dt = 0.003961660569053781 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0448e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.02253375759129 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7408305264106214, dt = 0.003961660569053781
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 280.99 us (93.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.7%)
Info: cfl dt = 0.003961660569054871 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5475e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.96314847039362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7447921869796752, dt = 0.003961660569054871
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 325.22 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.5%)
Info: cfl dt = 0.0039616605690560355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5709e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.47313923006203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7487538475487301, dt = 0.0039616605690560355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 294.00 us (94.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.8%)
Info: cfl dt = 0.003961660569057279 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6385e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.94256484921614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7527155081177861, dt = 0.003961660569057279
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.9%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 301.83 us (93.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.5%)
Info: cfl dt = 0.003961660569058607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5376e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.74726999144019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7566771686868434, dt = 0.003961660569058607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 319.67 us (94.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.5%)
Info: cfl dt = 0.003961660569060024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5866e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.8149050646322 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.760638829255902, dt = 0.003961660569060024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 298.84 us (93.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.0%)
Info: cfl dt = 0.0039616605690615345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5078e+05 | 65536 | 2 | 1.868e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.33702943833836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.764600489824962, dt = 0.0039616605690615345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 296.56 us (93.9%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (59.8%)
Info: cfl dt = 0.0039616605690631435 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0446e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.01942750502182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7685621503940235, dt = 0.0039616605690631435
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 312.90 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (61.7%)
Info: cfl dt = 0.003961660569064857 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5820e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.71378386493916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7725238109630866, dt = 0.003961660569064857
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 307.65 us (94.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.5%)
Info: cfl dt = 0.003961660569066682 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4016e+05 | 65536 | 2 | 1.927e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.02553552010642 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7764854715321515, dt = 0.003961660569066682
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 324.55 us (94.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.4%)
Info: cfl dt = 0.0039616605690686235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4128e+05 | 65536 | 2 | 1.920e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.26876373177531 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7804471321012182, dt = 0.0039616605690686235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 329.32 us (94.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.5%)
Info: cfl dt = 0.003961660569070687 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3278e+05 | 65536 | 2 | 1.969e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.41990929982465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7844087926702868, dt = 0.003961660569070687
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 294.72 us (94.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (59.4%)
Info: cfl dt = 0.0039616605690728805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4158e+05 | 65536 | 2 | 1.919e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.33569071092113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7883704532393575, dt = 0.0039616605690728805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 299.40 us (94.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (60.7%)
Info: cfl dt = 0.0039616605690752085 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3953e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.65078554460202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7923321138084304, dt = 0.0039616605690752085
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.9%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 276.87 us (93.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.1%)
Info: cfl dt = 0.003961660569077681 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5295e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.57082484783943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7962937743775056, dt = 0.003961660569077681
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 287.00 us (93.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.9%)
Info: cfl dt = 0.003961660569080304 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5815e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.70315474759234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8002554349465832, dt = 0.003961660569080304
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 276.99 us (93.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (58.7%)
Info: cfl dt = 0.003961660569083086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6047e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.20804442280382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8042170955156636, dt = 0.003961660569083086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.5%)
patch tree reduce : 20.89 us (6.3%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 295.96 us (88.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.1%)
Info: cfl dt = 0.003961660569086034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5857e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.79445228126683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8081787560847467, dt = 0.003961660569086034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 279.22 us (93.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (60.4%)
Info: cfl dt = 0.003961660569089157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5626e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.29090678322322 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8121404166538326, dt = 0.003961660569089157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.8%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 280.87 us (93.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.7%)
Info: cfl dt = 0.003961660569092464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5320e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6251305692103 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8161020772229218, dt = 0.003961660569092464
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 303.99 us (94.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.6%)
Info: cfl dt = 0.003961660569095964 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5571e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.1724831992388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8200637377920142, dt = 0.003961660569095964
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 312.11 us (93.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.0%)
Info: cfl dt = 0.003961660569099666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5373e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.7408927794276 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8240253983611102, dt = 0.003961660569099666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.9%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 309.76 us (93.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.1%)
Info: cfl dt = 0.003961660569103581 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5716e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.48712604653072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8279870589302099, dt = 0.003961660569103581
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.8%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 272.77 us (93.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (60.8%)
Info: cfl dt = 0.003961660569107718 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5031e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.99663598491546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8319487194993135, dt = 0.003961660569107718
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.9%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 277.10 us (93.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.7%)
Info: cfl dt = 0.003961660569112089 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9542e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.0520826282503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8359103800684212, dt = 0.003961660569112089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.9%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 302.22 us (93.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (60.6%)
Info: cfl dt = 0.003961660569116703 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6048e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.20894002838793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8398720406375333, dt = 0.003961660569116703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 326.08 us (94.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.2%)
Info: cfl dt = 0.003961660569121574 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4469e+05 | 65536 | 2 | 1.901e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.01066281116314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.84383370120665, dt = 0.003961660569121574
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.9%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 278.10 us (93.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (61.2%)
Info: cfl dt = 0.003961660569126712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4366e+05 | 65536 | 2 | 1.907e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.78767218522088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8477953617757716, dt = 0.003961660569126712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 314.67 us (94.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (61.0%)
Info: cfl dt = 0.00396166056913213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5704e+05 | 65536 | 2 | 1.836e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.6982509245622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8517570223448984, dt = 0.00396166056913213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 281.98 us (93.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.6%)
Info: cfl dt = 0.003961660569137841 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6615e+05 | 65536 | 2 | 1.406e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.4443988196701 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8557186829140305, dt = 0.003961660569137841
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.33 us (0.5%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 274.58 us (93.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.9%)
Info: cfl dt = 0.0039616605691438584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1088e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.41648026070621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8596803434831684, dt = 0.0039616605691438584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 286.23 us (93.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.6%)
Info: cfl dt = 0.003961660569150194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4757e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.39978671256358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8636420040523122, dt = 0.003961660569150194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.8%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 305.98 us (93.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.8%)
Info: cfl dt = 0.003961660569156865 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5708e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.47058127183885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8676036646214623, dt = 0.003961660569156865
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.2%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 417.36 us (95.7%)
LB move op cnt : 0
LB apply : 3.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.4%)
Info: cfl dt = 0.003961660569163886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2649e+05 | 65536 | 2 | 2.007e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.05056881301132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8715653251906191, dt = 0.003961660569163886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.5%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 330.52 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (63.3%)
Info: cfl dt = 0.003961660569171269 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4625e+05 | 65536 | 2 | 1.893e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.35058654667989 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.875526985759783, dt = 0.003961660569171269
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 331.36 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.2%)
Info: cfl dt = 0.003961660569179033 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4542e+05 | 65536 | 2 | 1.897e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.16953266639885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8794886463289543, dt = 0.003961660569179033
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.9%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 298.21 us (93.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.9%)
Info: cfl dt = 0.003961660569187193 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3721e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.38489021228688 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8834503068981333, dt = 0.003961660569187193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 321.79 us (94.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.9%)
Info: cfl dt = 0.003961660569195766 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4312e+05 | 65536 | 2 | 1.910e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.67000461127462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8874119674673205, dt = 0.003961660569195766
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 306.15 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.3%)
Info: cfl dt = 0.003961660569204769 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1860e+05 | 65536 | 2 | 2.057e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.33400323461346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913736280365163, dt = 0.003961660569204769
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 328.67 us (94.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.0%)
Info: cfl dt = 0.0039616605692142206 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8953e+05 | 65536 | 2 | 1.682e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.76976743071913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8953352886057211, dt = 0.0039616605692142206
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 275.41 us (93.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.1%)
Info: cfl dt = 0.003961660569224141 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7741e+05 | 65536 | 2 | 1.736e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.13239030997775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8992969491749353, dt = 0.003961660569224141
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 278.32 us (93.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (62.6%)
Info: cfl dt = 0.003961660569234546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4155e+05 | 65536 | 2 | 1.919e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.32765820589479 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9032586097441594, dt = 0.003961660569234546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 350.50 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.7%)
Info: cfl dt = 0.003961660569245459 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5587e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.2062406820584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9072202703133939, dt = 0.003961660569245459
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 334.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.5%)
Info: cfl dt = 0.003961660569256898 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5398e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.7961704079567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9111819308826393, dt = 0.003961660569256898
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 291.24 us (93.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (59.1%)
Info: cfl dt = 0.003961660569268885 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5121e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.1933926686962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9151435914518963, dt = 0.003961660569268885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.2%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 401.55 us (95.3%)
LB move op cnt : 0
LB apply : 4.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.8%)
Info: cfl dt = 0.003961660569281443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5784e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.63530675630895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9191052520211651, dt = 0.003961660569281443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 301.35 us (94.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.2%)
Info: cfl dt = 0.003961660569294591 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9530e+05 | 65536 | 2 | 1.658e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.0250776540873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9230669125904466, dt = 0.003961660569294591
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.8%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 278.61 us (93.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.0%)
Info: cfl dt = 0.003961660569308357 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7663e+05 | 65536 | 2 | 1.740e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.9615921219544 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9270285731597412, dt = 0.003961660569308357
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 349.95 us (94.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.5%)
Info: cfl dt = 0.003961660569322761 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5498e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.01298611608422 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9309902337290495, dt = 0.003961660569322761
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 269.69 us (93.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 0.00396166056933783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5582e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.19522895087627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9349518942983723, dt = 0.00396166056933783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.9%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 282.29 us (93.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.8%)
Info: cfl dt = 0.003961660569353588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5341e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.67048375044129 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9389135548677101, dt = 0.003961660569353588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 323.27 us (94.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.9%)
Info: cfl dt = 0.003961660569370061 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5077e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.09741449822808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9428752154370637, dt = 0.003961660569370061
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.6%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 305.97 us (94.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.9%)
Info: cfl dt = 0.0039616605693872774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5466e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.94425546669218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9468368760064337, dt = 0.0039616605693872774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 280.28 us (93.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (59.9%)
Info: cfl dt = 0.003961660569405264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4813e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.52226431725353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.950798536575821, dt = 0.003961660569405264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 298.46 us (93.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.9%)
Info: cfl dt = 0.003961660569424049 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5777e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.62081759115897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9547601971452263, dt = 0.003961660569424049
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 283.02 us (93.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (60.5%)
Info: cfl dt = 0.003961660569443662 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3670e+05 | 65536 | 2 | 1.946e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.27233363600256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9587218577146503, dt = 0.003961660569443662
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 298.58 us (94.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.6%)
Info: cfl dt = 0.003961660569464134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3978e+05 | 65536 | 2 | 1.929e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.94295449373512 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.962683518284094, dt = 0.003961660569464134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.6%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 296.62 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.2%)
Info: cfl dt = 0.003961660569485495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3428e+05 | 65536 | 2 | 1.961e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.74521035566175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9666451788535582, dt = 0.003961660569485495
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.4%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 367.82 us (94.9%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.0%)
Info: cfl dt = 0.003961660569507777 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4329e+05 | 65536 | 2 | 1.909e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.70787992842102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9706068394230437, dt = 0.003961660569507777
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 313.54 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.3%)
Info: cfl dt = 0.003961660569531013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4386e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.59370891173492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9745684999925515, dt = 0.003961660569531013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 302.71 us (93.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.6%)
Info: cfl dt = 0.003961660569555236 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8590e+05 | 65536 | 2 | 1.698e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.9803593668411 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9785301605620825, dt = 0.003961660569555236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.28 us (7.0%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 323.84 us (89.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.2%)
Info: cfl dt = 0.003961660569580482 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3557e+05 | 65536 | 2 | 1.953e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.02709425804079 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9824918211316378, dt = 0.003961660569580482
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 292.47 us (93.9%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (61.5%)
Info: cfl dt = 0.003961660569606785 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3898e+05 | 65536 | 2 | 1.933e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.768367530616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9864534817012183, dt = 0.003961660569606785
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 335.30 us (94.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.1%)
Info: cfl dt = 0.0039616605696341815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4152e+05 | 65536 | 2 | 1.919e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.32221263802458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.990415142270825, dt = 0.0039616605696341815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 305.91 us (94.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.9%)
Info: cfl dt = 0.003961660569662711 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4070e+05 | 65536 | 2 | 1.924e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.14410694449242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9943768028404593, dt = 0.003961660569662711
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 307.94 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (61.7%)
Info: cfl dt = 0.003961660569692409 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3509e+05 | 65536 | 2 | 1.956e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.92284887125747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.998338463410122, dt = 0.003961660569692409
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 323.22 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.0%)
Info: cfl dt = 0.003961660569723316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3908e+05 | 65536 | 2 | 1.933e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.79104324414625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0023001239798144, dt = 0.003961660569723316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 317.01 us (94.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (61.2%)
Info: cfl dt = 0.003961660569755473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3647e+05 | 65536 | 2 | 1.948e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.22265078060224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0062617845495376, dt = 0.003961660569755473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.4%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 352.33 us (94.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.2%)
Info: cfl dt = 0.0039616605697889214 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2487e+05 | 65536 | 2 | 2.017e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.69738122369198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.010223445119293, dt = 0.0039616605697889214
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.77 us (1.1%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 701.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 398.11 us (95.6%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (65.8%)
Info: cfl dt = 0.003961660569823703 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1808e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.98354577228737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.014185105689082, dt = 0.003961660569823703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.4%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 346.62 us (94.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.5%)
Info: cfl dt = 0.003961660569859861 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8658e+05 | 65536 | 2 | 1.695e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.1275483859515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0181467662589057, dt = 0.003961660569859861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 283.07 us (93.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (61.6%)
Info: cfl dt = 0.003961660569897442 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8130e+05 | 65536 | 2 | 1.719e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.97958861595731 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0221084268287655, dt = 0.003961660569897442
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 299.04 us (93.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.1%)
Info: cfl dt = 0.003961660569936491 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9459e+05 | 65536 | 2 | 1.661e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.87065732283534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.026070087398663, dt = 0.003961660569936491
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 298.84 us (94.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.6%)
Info: cfl dt = 0.003961660569977053 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6430e+05 | 65536 | 2 | 1.412e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.0404007055876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0300317479685994, dt = 0.003961660569977053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 334.08 us (94.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (63.6%)
Info: cfl dt = 0.003961660570019178 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5262e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.49885124496738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0339934085385765, dt = 0.003961660570019178
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (2.0%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 270.82 us (93.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (62.6%)
Info: cfl dt = 0.003961660570062915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5505e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.02915279894083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0379550691085957, dt = 0.003961660570062915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 334.59 us (94.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.1%)
Info: cfl dt = 0.003961660570108313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5473e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.95781930148448 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0419167296786587, dt = 0.003961660570108313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 289.09 us (94.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.2%)
Info: cfl dt = 0.003961660570155425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9673e+05 | 65536 | 2 | 1.652e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.3368866894354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.045878390248767, dt = 0.003961660570155425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.2%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 434.09 us (95.7%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (66.2%)
Info: cfl dt = 0.003961660570204303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1801e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.96778823594697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0498400508189223, dt = 0.003961660570204303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 329.93 us (94.6%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.3%)
Info: cfl dt = 0.003961660570255001 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8545e+05 | 65536 | 2 | 1.700e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.88153756480341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0538017113891265, dt = 0.003961660570255001
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (2.0%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 278.97 us (93.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.6%)
Info: cfl dt = 0.003961660570307574 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4574e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.00223228528185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0577633719593815, dt = 0.003961660570307574
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (2.0%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 277.91 us (93.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.4%)
Info: cfl dt = 0.003961660570362078 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5333e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.65487825367666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0617250325296892, dt = 0.003961660570362078
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 293.75 us (94.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.7%)
Info: cfl dt = 0.003961660570418574 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5717e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.49028522680545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0656866931000513, dt = 0.003961660570418574
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 305.88 us (94.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.2%)
Info: cfl dt = 0.003961660570477117 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4397e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.61653648224467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0696483536704697, dt = 0.003961660570477117
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.4%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 337.93 us (94.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.5%)
Info: cfl dt = 0.003961660570537769 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6099e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.32121516596044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0736100142409468, dt = 0.003961660570537769
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.9%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 276.91 us (93.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (59.8%)
Info: cfl dt = 0.003961660570600591 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6749e+05 | 65536 | 2 | 1.402e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.73525250790564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0775716748114845, dt = 0.003961660570600591
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 326.08 us (94.2%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.8%)
Info: cfl dt = 0.003961660570665648 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6491e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.17329459999178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.081533335382085, dt = 0.003961660570665648
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.8%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 273.22 us (93.6%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.3%)
Info: cfl dt = 0.003961660570733002 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4936e+05 | 65536 | 2 | 1.876e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.02714623424193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0854949959527507, dt = 0.003961660570733002
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 316.55 us (94.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (59.9%)
Info: cfl dt = 0.003961660570802721 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0155e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.38491891592123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0894566565234838, dt = 0.003961660570802721
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 314.60 us (94.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.2%)
Info: cfl dt = 0.0039616605708748705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6431e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.04285966617812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0934183170942866, dt = 0.0039616605708748705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 282.74 us (93.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (60.1%)
Info: cfl dt = 0.003961660570949519 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0017e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.08605251065948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0973799776651614, dt = 0.003961660570949519
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 293.82 us (93.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (59.2%)
Info: cfl dt = 0.003961660571026739 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5390e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.77744991026572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.101341638236111, dt = 0.003961660571026739
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 327.74 us (94.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.7%)
Info: cfl dt = 0.003961660571106598 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7920e+05 | 65536 | 2 | 1.728e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.52076870300925 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1053032988071376, dt = 0.003961660571106598
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 305.53 us (89.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.0%)
Info: cfl dt = 0.003961660571189174 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5833e+05 | 65536 | 2 | 1.829e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.97971394689425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1092649593782442, dt = 0.003961660571189174
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 299.65 us (94.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.8%)
Info: cfl dt = 0.003961660571274537 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3271e+05 | 65536 | 2 | 1.970e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.40512679387837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1132266199494334, dt = 0.003961660571274537
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 280.91 us (93.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.5%)
Info: cfl dt = 0.003961660571362766 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4128e+05 | 65536 | 2 | 1.920e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.2702206967236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1171882805207078, dt = 0.003961660571362766
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 362.59 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.4%)
Info: cfl dt = 0.003961660571453937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4918e+05 | 65536 | 2 | 1.877e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.98953521418906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1211499410920707, dt = 0.003961660571453937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.50 us (0.4%)
LB compute : 359.57 us (94.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.2%)
Info: cfl dt = 0.00396166057154813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2904e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.36790952211537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1251116016635245, dt = 0.00396166057154813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 312.73 us (94.2%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.4%)
Info: cfl dt = 0.003961660571645425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4869e+05 | 65536 | 2 | 1.879e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.88182890861889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1290732622350728, dt = 0.003961660571645425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 299.11 us (93.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.6%)
Info: cfl dt = 0.0039616605717459055 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0644e+05 | 65536 | 2 | 1.612e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.44860637770957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1330349228067182, dt = 0.0039616605717459055
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.8%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 276.57 us (93.5%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (64.9%)
Info: cfl dt = 0.003961660571849654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5512e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.04338855221572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.136996583378464, dt = 0.003961660571849654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 347.78 us (94.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.3%)
Info: cfl dt = 0.003961660571956757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5738e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.53502345807071 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1409582439503136, dt = 0.003961660571956757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.6%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 311.46 us (94.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (61.1%)
Info: cfl dt = 0.003961660572067302 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1892e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.16455022750215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1449199045222704, dt = 0.003961660572067302
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 312.63 us (94.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.0%)
Info: cfl dt = 0.003961660572181376 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1605e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.54078407031734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1488815650943378, dt = 0.003961660572181376
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 278.80 us (93.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.1%)
Info: cfl dt = 0.0039616605722990715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5477e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.967507227359 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.152843225666519, dt = 0.0039616605722990715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.0%)
patch tree reduce : 1.63 us (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 520.86 us (96.4%)
LB move op cnt : 0
LB apply : 3.94 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.0%)
Info: cfl dt = 0.00396166057242048 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4365e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.54742610391784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.156804886238818, dt = 0.00396166057242048
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.8%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 271.99 us (93.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.3%)
Info: cfl dt = 0.0039616605725456945 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5091e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.1262552929139 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1607665468112385, dt = 0.0039616605725456945
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 295.23 us (92.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.0%)
Info: cfl dt = 0.003961660572674813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7005e+05 | 65536 | 2 | 1.394e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.29207002325775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1647282073837841, dt = 0.003961660572674813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.5%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 304.99 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.9%)
Info: cfl dt = 0.00396166057280793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7076e+05 | 65536 | 2 | 1.768e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.68464620941327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.168689867956459, dt = 0.00396166057280793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 336.27 us (94.6%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.3%)
Info: cfl dt = 0.003961660572945148 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3133e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.86676782496133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.172651528529267, dt = 0.003961660572945148
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 304.75 us (93.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.4%)
Info: cfl dt = 0.003961660573086566 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0310e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.72191065062823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.176613189102212, dt = 0.003961660573086566
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 281.65 us (93.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (62.9%)
Info: cfl dt = 0.003961660573232286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6394e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.96247903796495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1805748496752986, dt = 0.003961660573232286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 311.49 us (94.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (61.9%)
Info: cfl dt = 0.003961660573382414 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4975e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.87498251575717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1845365102485308, dt = 0.003961660573382414
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 292.77 us (93.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.9%)
Info: cfl dt = 0.003961660573537058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3781e+05 | 65536 | 2 | 1.940e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.51480403254881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1884981708219131, dt = 0.003961660573537058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.64 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 357.06 us (94.6%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.3%)
Info: cfl dt = 0.003961660573696323 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4342e+05 | 65536 | 2 | 1.908e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.7355191467874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1924598313954502, dt = 0.003961660573696323
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 329.13 us (94.3%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.4%)
Info: cfl dt = 0.003961660573860322 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3827e+05 | 65536 | 2 | 1.937e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.6148865267608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1964214919691465, dt = 0.003961660573860322
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 302.19 us (93.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (60.8%)
Info: cfl dt = 0.003961660574029166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3889e+05 | 65536 | 2 | 1.934e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.74938693153764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2003831525430069, dt = 0.003961660574029166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 329.82 us (94.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.6%)
Info: cfl dt = 0.003961660574202968 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3723e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.38737575837017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.204344813117036, dt = 0.003961660574202968
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 299.16 us (94.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (60.2%)
Info: cfl dt = 0.0039616605743818456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3261e+05 | 65536 | 2 | 1.970e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.38374040214555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.208306473691239, dt = 0.0039616605743818456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 328.05 us (94.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.4%)
Info: cfl dt = 0.003961660574565917 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3384e+05 | 65536 | 2 | 1.963e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.6509576351536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2122681342656207, dt = 0.003961660574565917
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 301.84 us (92.9%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.1%)
Info: cfl dt = 0.0039616605747553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4490e+05 | 65536 | 2 | 1.900e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.05805268512545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2162297948401866, dt = 0.0039616605747553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 352.37 us (94.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.4%)
Info: cfl dt = 0.00396166057495012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3552e+05 | 65536 | 2 | 1.953e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.0169854813835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2201914554149418, dt = 0.00396166057495012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 310.02 us (94.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.4%)
Info: cfl dt = 0.003961660575150498 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3198e+05 | 65536 | 2 | 1.974e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.24529607312391 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.224153115989892, dt = 0.003961660575150498
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 298.94 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.0%)
Info: cfl dt = 0.003961660575356561 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4147e+05 | 65536 | 2 | 1.919e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.31078230289276 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2281147765650424, dt = 0.003961660575356561
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.8%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 281.71 us (93.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (58.8%)
Info: cfl dt = 0.003961660575568436 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6374e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.91996216892163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.232076437140399, dt = 0.003961660575568436
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 317.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (59.4%)
Info: cfl dt = 0.003961660575786255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5732e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.5231733739497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2360380977159673, dt = 0.003961660575786255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 315.56 us (94.1%)
LB move op cnt : 0
LB apply : 4.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (63.1%)
Info: cfl dt = 0.003961660576010149 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6441e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.06566883969657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2399997582917535, dt = 0.003961660576010149
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 335.84 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (64.3%)
Info: cfl dt = 0.003961660576240252 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6079e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.27634375911641 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2439614188677637, dt = 0.003961660576240252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 287.26 us (93.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.2%)
Info: cfl dt = 0.003961660576476703 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6521e+05 | 65536 | 2 | 1.794e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.47636283386502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.247923079444004, dt = 0.003961660576476703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 313.93 us (94.0%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.0%)
Info: cfl dt = 0.003961660576719635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3016e+05 | 65536 | 2 | 1.985e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.85022526640043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2518847400204807, dt = 0.003961660576719635
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 303.34 us (93.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.1%)
Info: cfl dt = 0.0039616605769691934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4370e+05 | 65536 | 2 | 1.907e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.79539388148135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2558464005972003, dt = 0.0039616605769691934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 317.91 us (94.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.1%)
Info: cfl dt = 0.003961660577225519 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5534e+05 | 65536 | 2 | 1.844e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.32910099858198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2598080611741695, dt = 0.003961660577225519
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.4%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 361.49 us (94.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.7%)
Info: cfl dt = 0.003961660577488757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4350e+05 | 65536 | 2 | 1.908e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.75158962425306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.263769721751395, dt = 0.003961660577488757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 30.83 us (8.1%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 333.99 us (88.2%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.9%)
Info: cfl dt = 0.003961660577759055 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4571e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.9959473692429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2677313823288838, dt = 0.003961660577759055
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 318.54 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.1%)
Info: cfl dt = 0.003961660578036562 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4722e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.32474912485793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2716930429066429, dt = 0.003961660578036562
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.5%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 338.08 us (94.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.2%)
Info: cfl dt = 0.0039616605783214295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5512e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.04425673877249 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2756547034846795, dt = 0.0039616605783214295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 317.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (61.0%)
Info: cfl dt = 0.003961660578613811 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4650e+05 | 65536 | 2 | 1.891e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.40607110405384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.279616364063001, dt = 0.003961660578613811
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.5%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 371.11 us (95.0%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.0%)
Info: cfl dt = 0.003961660578913863 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2107e+05 | 65536 | 2 | 2.041e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.87086706846603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2835780246416149, dt = 0.003961660578913863
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.3%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 365.22 us (95.0%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (63.2%)
Info: cfl dt = 0.003961660579221745 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6131e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.39055084341818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2875396852205288, dt = 0.003961660579221745
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.4%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 348.91 us (94.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.9%)
Info: cfl dt = 0.003961660579537616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2244e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.93255394879147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2915013457997504, dt = 0.003961660579537616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.7%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 268.27 us (93.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.5%)
Info: cfl dt = 0.003961660579861641 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3465e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.58808603549357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.295463006379288, dt = 0.003961660579861641
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.4%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 343.36 us (94.7%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.7%)
Info: cfl dt = 0.003961660580193983 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2057e+05 | 65536 | 2 | 2.044e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.76152058230399 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2994246669591496, dt = 0.003961660580193983
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.4%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 361.65 us (95.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.0%)
Info: cfl dt = 0.003961660580534812 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4390e+05 | 65536 | 2 | 1.906e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.83899078315817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3033863275393436, dt = 0.003961660580534812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 317.29 us (88.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.7%)
Info: cfl dt = 0.003961660580884294 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4194e+05 | 65536 | 2 | 1.917e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.41421291488314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3073479881198784, dt = 0.003961660580884294
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 338.86 us (94.4%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.5%)
Info: cfl dt = 0.003961660581242607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4101e+05 | 65536 | 2 | 1.922e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.21143512025117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3113096487007627, dt = 0.003961660581242607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 317.19 us (94.1%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.5%)
Info: cfl dt = 0.003961660581609921 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3607e+05 | 65536 | 2 | 1.950e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.13468645705355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3152713092820054, dt = 0.003961660581609921
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 322.13 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.1%)
Info: cfl dt = 0.003961660581986416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3549e+05 | 65536 | 2 | 1.953e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.01028653548707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3192329698636154, dt = 0.003961660581986416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 340.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.1%)
Info: cfl dt = 0.003961660582372272 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2975e+05 | 65536 | 2 | 1.987e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.76090092075685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3231946304456017, dt = 0.003961660582372272
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 304.67 us (94.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.2%)
Info: cfl dt = 0.003961660582767668 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2872e+05 | 65536 | 2 | 1.994e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.53629749906311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.327156291027974, dt = 0.003961660582767668
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 311.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.2%)
Info: cfl dt = 0.003961660583172792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4156e+05 | 65536 | 2 | 1.919e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.33057969937755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3311179516107416, dt = 0.003961660583172792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (0.8%)
patch tree reduce : 1.54 us (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.06 us (0.2%)
LB compute : 622.26 us (97.0%)
LB move op cnt : 0
LB apply : 3.74 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (64.5%)
Info: cfl dt = 0.003961660583587828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4319e+05 | 65536 | 2 | 1.910e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.68613042348724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3350796121939144, dt = 0.003961660583587828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 309.48 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (62.5%)
Info: cfl dt = 0.003961660584012968 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4829e+05 | 65536 | 2 | 1.882e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.79454456218097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3390412727775023, dt = 0.003961660584012968
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 331.49 us (94.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.5%)
Info: cfl dt = 0.0039616605844484025 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3355e+05 | 65536 | 2 | 1.965e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.58656220371127 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3430029333615152, dt = 0.0039616605844484025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 338.85 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.7%)
Info: cfl dt = 0.003961660584894326 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2888e+05 | 65536 | 2 | 1.993e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.57066647399589 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3469645939459636, dt = 0.003961660584894326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 327.83 us (94.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.8%)
Info: cfl dt = 0.003961660585350937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3820e+05 | 65536 | 2 | 1.938e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.59861271521028 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3509262545308578, dt = 0.003961660585350937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 335.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.5%)
Info: cfl dt = 0.0039616605858184325 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3993e+05 | 65536 | 2 | 1.928e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.97618034534196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3548879151162088, dt = 0.0039616605858184325
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 295.73 us (93.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.5%)
Info: cfl dt = 0.003961660586297016 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3273e+05 | 65536 | 2 | 1.970e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.40869245270153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3588495757020271, dt = 0.003961660586297016
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 336.24 us (94.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.7%)
Info: cfl dt = 0.003961660586786892 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3942e+05 | 65536 | 2 | 1.931e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.86432308031696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3628112362883242, dt = 0.003961660586786892
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.8%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 288.49 us (93.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.5%)
Info: cfl dt = 0.003961660587288269 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3352e+05 | 65536 | 2 | 1.965e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.58169201025143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3667728968751112, dt = 0.003961660587288269
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 297.48 us (93.9%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (59.3%)
Info: cfl dt = 0.003961660587801355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2884e+05 | 65536 | 2 | 1.993e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.56310014152659 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3707345574623995, dt = 0.003961660587801355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 319.60 us (94.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.6%)
Info: cfl dt = 0.003961660588326364 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3822e+05 | 65536 | 2 | 1.938e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.60390571805621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.374696218050201, dt = 0.003961660588326364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 328.88 us (94.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (61.1%)
Info: cfl dt = 0.003961660588863509 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0908e+05 | 65536 | 2 | 2.120e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.26182001187996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3786578786385273, dt = 0.003961660588863509
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 344.93 us (94.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (60.8%)
Info: cfl dt = 0.00396166058941301 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3301e+05 | 65536 | 2 | 1.968e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.4705484661466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3826195392273908, dt = 0.00396166058941301
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.9%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 293.75 us (93.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.2%)
Info: cfl dt = 0.003961660589975087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2456e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.39326915159272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3865811998168038, dt = 0.003961660589975087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 318.78 us (94.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (60.6%)
Info: cfl dt = 0.003961660590549962 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5076e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.09415815522331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3905428604067789, dt = 0.003961660590549962
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.9%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 292.10 us (93.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (64.5%)
Info: cfl dt = 0.0039616605911378605 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4753e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.39154840678334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3945045209973288, dt = 0.0039616605911378605
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 285.62 us (93.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.6%)
Info: cfl dt = 0.003961660591739012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5379e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.75370054714976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3984661815884667, dt = 0.003961660591739012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 341.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.0%)
Info: cfl dt = 0.0039616605923536476 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5176e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.31226648869358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4024278421802057, dt = 0.0039616605923536476
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 327.13 us (94.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (61.8%)
Info: cfl dt = 0.003961660592982001 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4924e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.76457838346131 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4063895027725593, dt = 0.003961660592982001
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 283.48 us (93.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.2%)
Info: cfl dt = 0.003961660593624308 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6407e+05 | 65536 | 2 | 1.412e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.99182476039952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4103511633655412, dt = 0.003961660593624308
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.9%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 313.89 us (93.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.7%)
Info: cfl dt = 0.003961660594280809 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0236e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.56119024147586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4143128239591656, dt = 0.003961660594280809
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 288.59 us (93.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (59.6%)
Info: cfl dt = 0.0039616605949517455 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5023e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.97836858958804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4182744845534463, dt = 0.0039616605949517455
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 301.79 us (93.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (57.4%)
Info: cfl dt = 0.003961660595637362 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5012e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.95633554159856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.422236145148398, dt = 0.003961660595637362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 293.06 us (93.7%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.9%)
Info: cfl dt = 0.0039616605963379075 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3871e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.47316299160589 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4261978057440354, dt = 0.0039616605963379075
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 322.43 us (94.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (64.8%)
Info: cfl dt = 0.003961660597053631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5260e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.49509830275093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4301594663403734, dt = 0.003961660597053631
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 298.34 us (93.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (59.8%)
Info: cfl dt = 0.0039616605977847875 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5342e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.67276316153823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.434121126937427, dt = 0.0039616605977847875
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 326.32 us (94.4%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.7%)
Info: cfl dt = 0.00396166059853163 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3308e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.24614789608489 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4380827875352118, dt = 0.00396166059853163
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.7%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 285.51 us (93.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.0%)
Info: cfl dt = 0.003961660599294421 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4634e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.13274389868009 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4420444481337433, dt = 0.003961660599294421
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 347.51 us (94.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.1%)
Info: cfl dt = 0.003961660600073419 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4724e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.32841059186353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4460061087330378, dt = 0.003961660600073419
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 284.44 us (93.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (61.7%)
Info: cfl dt = 0.00396166060086889 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4931e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.77805548742646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4499677693331112, dt = 0.00396166060086889
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 351.28 us (94.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.2%)
Info: cfl dt = 0.003961660601681101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5023e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.97876049923686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4539294299339802, dt = 0.003961660601681101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 297.63 us (93.8%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (61.0%)
Info: cfl dt = 0.003961660602510323 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5185e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.33202218749416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4578910905356612, dt = 0.003961660602510323
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.5%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 349.62 us (94.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.0%)
Info: cfl dt = 0.0039616606033568294 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5151e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.25760023416763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4618527511381716, dt = 0.0039616606033568294
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 291.35 us (93.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (59.4%)
Info: cfl dt = 0.003961660604220896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5434e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.87343230885884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4658144117415284, dt = 0.003961660604220896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.4%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 359.28 us (94.9%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.8%)
Info: cfl dt = 0.003961660605102801 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5504e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.02503981452325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4697760723457494, dt = 0.003961660605102801
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 294.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.8%)
Info: cfl dt = 0.003961660606002827 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5116e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.18120639739644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.473737732950852, dt = 0.003961660606002827
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 315.84 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.2%)
Info: cfl dt = 0.003961660606921258 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4567e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.98741597308187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.477699393556855, dt = 0.003961660606921258
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 294.58 us (93.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.3%)
Info: cfl dt = 0.003961660607858382 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4544e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.93659490730786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4816610541637762, dt = 0.003961660607858382
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.5%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 320.30 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.9%)
Info: cfl dt = 0.003961660608814491 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4944e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.80780423180613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4856227147716345, dt = 0.003961660608814491
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 318.32 us (94.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.5%)
Info: cfl dt = 0.003961660609789877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5475e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.96190586497754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.489584375380449, dt = 0.003961660609789877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 294.80 us (93.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (60.9%)
Info: cfl dt = 0.003961660610784838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5190e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.34267512194926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4935460359902388, dt = 0.003961660610784838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (2.0%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 282.07 us (93.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (61.8%)
Info: cfl dt = 0.003961660611799673 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3258e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.13930012495302 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4975076966010237, dt = 0.003961660611799673
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 296.77 us (94.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (58.9%)
Info: cfl dt = 0.003961660612834685 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5134e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.22053283252785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5014693572128233, dt = 0.003961660612834685
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 21.28 us (6.5%)
LB compute : 288.49 us (87.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.9%)
Info: cfl dt = 0.003961660613890177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5482e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.97820638560772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.505431017825658, dt = 0.003961660613890177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 313.26 us (94.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.8%)
Info: cfl dt = 0.003961660614966461 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5219e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.40679357881261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5093926784395482, dt = 0.003961660614966461
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 335.66 us (94.5%)
LB move op cnt : 0
LB apply : 3.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (62.6%)
Info: cfl dt = 0.003961660616063848 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3700e+05 | 65536 | 2 | 1.945e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.33732526086358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5133543390545146, dt = 0.003961660616063848
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 294.77 us (93.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.8%)
Info: cfl dt = 0.003961660617182651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5252e+05 | 65536 | 2 | 1.859e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.71491111290152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5173159996705785, dt = 0.003961660617182651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 296.14 us (93.8%)
LB move op cnt : 0
LB apply : 4.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (61.4%)
Info: cfl dt = 0.003961660618323189 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5364e+05 | 65536 | 2 | 1.853e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.95975366677493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5212776602877611, dt = 0.003961660618323189
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.6%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 303.47 us (94.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.3%)
Info: cfl dt = 0.003961660619485783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0910e+05 | 65536 | 2 | 2.120e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.26747032643021 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5252393209060844, dt = 0.003961660619485783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 341.94 us (94.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (65.8%)
Info: cfl dt = 0.003961660620670753 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8684e+05 | 65536 | 2 | 1.694e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.18391105559454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5292009815255703, dt = 0.003961660620670753
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 332.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.9%)
Info: cfl dt = 0.003961660621878431 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4780e+05 | 65536 | 2 | 1.884e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.68737776261386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.533162642146241, dt = 0.003961660621878431
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 298.42 us (93.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.0%)
Info: cfl dt = 0.003961660623109145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0384e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.88422394163375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5371243027681194, dt = 0.003961660623109145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 316.61 us (94.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (59.7%)
Info: cfl dt = 0.003961660624363226 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3017e+05 | 65536 | 2 | 1.985e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.85160236090216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5410859633912286, dt = 0.003961660624363226
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 294.72 us (93.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.5%)
Info: cfl dt = 0.003961660625641012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2659e+05 | 65536 | 2 | 2.007e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.0722583000216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.545047624015592, dt = 0.003961660625641012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.4%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 692.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 352.17 us (95.2%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (62.7%)
Info: cfl dt = 0.00396166062694284 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2410e+05 | 65536 | 2 | 2.022e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.53154149336135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5490092846412329, dt = 0.00396166062694284
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.2%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 651.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 384.79 us (95.5%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (64.1%)
Info: cfl dt = 0.003961660628269055 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2188e+05 | 65536 | 2 | 2.036e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.04757479692975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5529709452681757, dt = 0.003961660628269055
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 295.23 us (94.7%)
LB move op cnt : 0
LB apply : 2.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (65.9%)
Info: cfl dt = 0.003961660629620002 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4548e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.94608136346258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5569326058964448, dt = 0.003961660629620002
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 359.09 us (94.7%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.2%)
Info: cfl dt = 0.003961660630996026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2272e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.99184050502375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5608942665260648, dt = 0.003961660630996026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 288.18 us (93.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (58.7%)
Info: cfl dt = 0.003961660632397482 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4486e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.8102854275644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5648559271570608, dt = 0.003961660632397482
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 314.58 us (94.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (60.7%)
Info: cfl dt = 0.003961660633824723 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6390e+05 | 65536 | 2 | 1.801e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.19166562048923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5688175877894583, dt = 0.003961660633824723
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 337.52 us (94.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (65.3%)
Info: cfl dt = 0.0039616606352781076 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7524e+05 | 65536 | 2 | 1.747e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.65980921583368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.572779248423283, dt = 0.0039616606352781076
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 317.91 us (94.1%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (63.9%)
Info: cfl dt = 0.003961660636757997 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4199e+05 | 65536 | 2 | 1.916e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.42381356405126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5767409090585611, dt = 0.003961660636757997
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 318.84 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.1%)
Info: cfl dt = 0.003961660638264752 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0157e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.38921196078385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5807025696953192, dt = 0.003961660638264752
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 344.71 us (94.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.7%)
Info: cfl dt = 0.003961660639798743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0146e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.36698061542387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5846642303335838, dt = 0.003961660639798743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 298.92 us (94.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.4%)
Info: cfl dt = 0.00396166064136034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5190e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.34202623562302 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5886258909733826, dt = 0.00396166064136034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 356.28 us (94.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.3%)
Info: cfl dt = 0.003961660642949916 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4171e+05 | 65536 | 2 | 1.918e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.36264351777251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.592587551614743, dt = 0.003961660642949916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 331.12 us (94.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.5%)
Info: cfl dt = 0.003961660644567847 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9580e+05 | 65536 | 2 | 1.656e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.13325717266216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.596549212257693, dt = 0.003961660644567847
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.7%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 346.10 us (94.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.5%)
Info: cfl dt = 0.003961660646214513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2126e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.6753478042075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6005108729022608, dt = 0.003961660646214513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 337.63 us (94.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.0%)
Info: cfl dt = 0.003961660647890298 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3644e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.97834771662066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6044725335484753, dt = 0.003961660647890298
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 295.55 us (93.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.8%)
Info: cfl dt = 0.003961660649595588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3631e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.94979521887225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6084341941963656, dt = 0.003961660649595588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 355.03 us (94.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.4%)
Info: cfl dt = 0.00396166065133077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3024e+05 | 65536 | 2 | 1.984e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.86774964779542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6123958548459612, dt = 0.00396166065133077
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 295.80 us (93.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (60.7%)
Info: cfl dt = 0.00396166065309624 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1230e+05 | 65536 | 2 | 2.098e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.96317044750033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.616357515497292, dt = 0.00396166065309624
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.2%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 415.96 us (95.7%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.3%)
Info: cfl dt = 0.003961660654892392 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2415e+05 | 65536 | 2 | 2.022e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.54067810965842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6203191761503883, dt = 0.003961660654892392
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 343.00 us (94.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.1%)
Info: cfl dt = 0.0039616606567196245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1648e+05 | 65536 | 2 | 2.071e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.87354821799956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6242808368052808, dt = 0.0039616606567196245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 338.35 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.8%)
Info: cfl dt = 0.003961660658578341 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3595e+05 | 65536 | 2 | 1.951e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.11021552511392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6282424974620004, dt = 0.003961660658578341
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.9%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 280.85 us (93.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (59.8%)
Info: cfl dt = 0.003961660660468945 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3813e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.34686707938664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6322041581205788, dt = 0.003961660660468945
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 332.97 us (94.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.4%)
Info: cfl dt = 0.003961660662391847 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3135e+05 | 65536 | 2 | 1.978e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.10791195271955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6361658187810477, dt = 0.003961660662391847
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 298.44 us (93.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.9%)
Info: cfl dt = 0.003961660664347456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1839e+05 | 65536 | 2 | 2.058e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.28876228536822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401274794434395, dt = 0.003961660664347456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 374.70 us (95.0%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.7%)
Info: cfl dt = 0.003961660666336191 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1226e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.71697981371085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.644089140107787, dt = 0.003961660666336191
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 305.23 us (94.4%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (61.3%)
Info: cfl dt = 0.003961660668358467 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4713e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.30565008282787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6480508007741232, dt = 0.003961660668358467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.7%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 292.44 us (93.5%)
LB move op cnt : 0
LB apply : 4.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.9%)
Info: cfl dt = 0.003961660670414708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5406e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.81329984473207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6520124614424818, dt = 0.003961660670414708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 335.06 us (94.6%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.5%)
Info: cfl dt = 0.003961660672505336 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4765e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.41740423982023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6559741221128965, dt = 0.003961660672505336
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 332.69 us (94.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.5%)
Info: cfl dt = 0.003961660674630781 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5310e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6036951788549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6599357827854018, dt = 0.003961660674630781
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 325.35 us (88.7%)
LB move op cnt : 0
LB apply : 24.88 us (6.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.2%)
Info: cfl dt = 0.003961660676791472 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5602e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.23880775052787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6638974434600327, dt = 0.003961660676791472
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 292.24 us (93.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (61.8%)
Info: cfl dt = 0.0039616606789878465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4986e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.89785917231842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.667859104136824, dt = 0.0039616606789878465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.9%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 280.78 us (93.4%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (61.9%)
Info: cfl dt = 0.00396166068122034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5148e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.25025919456618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6718207648158119, dt = 0.00396166068122034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 291.11 us (93.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.8%)
Info: cfl dt = 0.003961660683489393 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5722e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.50024980372338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6757824254970322, dt = 0.003961660683489393
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 330.50 us (94.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.4%)
Info: cfl dt = 0.003961660685795451 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5597e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.22879835143448 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6797440861805215, dt = 0.003961660685795451
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 329.19 us (94.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (63.2%)
Info: cfl dt = 0.003961660688138962 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5340e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.66979923248607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.683705746866317, dt = 0.003961660688138962
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 323.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.2%)
Info: cfl dt = 0.003961660690520374 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5175e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.309703864147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.687667407554456, dt = 0.003961660690520374
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 298.33 us (93.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (60.6%)
Info: cfl dt = 0.003961660692940144 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5571e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.17212005817319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6916290682449764, dt = 0.003961660692940144
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (2.0%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 266.85 us (93.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.1%)
Info: cfl dt = 0.003961660695398729 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4846e+05 | 65536 | 2 | 1.881e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.83192051505657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6955907289379166, dt = 0.003961660695398729
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 323.11 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (63.9%)
Info: cfl dt = 0.003961660697896586 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4764e+05 | 65536 | 2 | 1.885e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.65292133323682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6995523896333153, dt = 0.003961660697896586
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 308.79 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.9%)
Info: cfl dt = 0.003961660700434182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3917e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.57273041749336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7035140503312118, dt = 0.003961660700434182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 312.06 us (93.9%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (60.1%)
Info: cfl dt = 0.003961660703011983 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4391e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.60457061258155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.707475711031646, dt = 0.003961660703011983
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (0.9%)
patch tree reduce : 1.62 us (0.3%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.21 us (0.2%)
LB compute : 627.59 us (96.9%)
LB move op cnt : 0
LB apply : 3.99 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (66.2%)
Info: cfl dt = 0.00396166070563046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3861e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.45122833000964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.711437371734658, dt = 0.00396166070563046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 291.65 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (59.7%)
Info: cfl dt = 0.003961660708290085 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3224e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.06449840132754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7153990324402886, dt = 0.003961660708290085
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (0.8%)
patch tree reduce : 1.68 us (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.1%)
LB compute : 683.83 us (97.2%)
LB move op cnt : 0
LB apply : 3.88 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (64.1%)
Info: cfl dt = 0.003961660710991336 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3399e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.44580578567788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7193606931485788, dt = 0.003961660710991336
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 336.93 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (61.8%)
Info: cfl dt = 0.0039616607137346925 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4639e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.14357318976394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.72332235385957, dt = 0.0039616607137346925
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 300.93 us (94.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.5%)
Info: cfl dt = 0.0039616607165206385 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1746e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.84830075103726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7272840145733048, dt = 0.0039616607165206385
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 296.16 us (93.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (59.1%)
Info: cfl dt = 0.003961660719349659 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6486e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.1622603561033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7312456752898255, dt = 0.003961660719349659
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 331.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.3%)
Info: cfl dt = 0.003961660722222248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7238e+05 | 65536 | 2 | 1.760e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.03662505063673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.735207336009175, dt = 0.003961660722222248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.21 us (7.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 295.02 us (88.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.6%)
Info: cfl dt = 0.003961660725138894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8831e+05 | 65536 | 2 | 1.688e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.50346455244447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7391689967313972, dt = 0.003961660725138894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 292.97 us (94.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (60.0%)
Info: cfl dt = 0.003961660728100096 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5658e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.36107853721279 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7431306574565362, dt = 0.003961660728100096
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 369.44 us (95.1%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.7%)
Info: cfl dt = 0.003961660731106353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5615e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.26736870021355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7470923181846363, dt = 0.003961660731106353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.4%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 373.61 us (95.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.6%)
Info: cfl dt = 0.003961660734158168 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5703e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.45849872424422 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7510539789157427, dt = 0.003961660734158168
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 300.24 us (87.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.4%)
Info: cfl dt = 0.003961660737256048 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5504e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.0253779050319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7550156396499008, dt = 0.003961660737256048
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.3%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 351.81 us (95.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.7%)
Info: cfl dt = 0.003961660740400501 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5536e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.0946765319433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.758977300387157, dt = 0.003961660740400501
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 315.81 us (94.5%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.8%)
Info: cfl dt = 0.003961660743592042 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9343e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.6180644795627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7629389611275574, dt = 0.003961660743592042
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 325.99 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.5%)
Info: cfl dt = 0.003961660746831186 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1952e+05 | 65536 | 2 | 2.051e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.53434297622347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7669006218711494, dt = 0.003961660746831186
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.5%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 367.21 us (95.0%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (63.3%)
Info: cfl dt = 0.003961660750118451 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3620e+05 | 65536 | 2 | 1.949e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.16357492264844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7708622826179805, dt = 0.003961660750118451
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 326.50 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.9%)
Info: cfl dt = 0.003961660753454363 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4605e+05 | 65536 | 2 | 1.894e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.30751022046162 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.774823943368099, dt = 0.003961660753454363
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.9%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 280.42 us (93.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.4%)
Info: cfl dt = 0.003961660756839445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4131e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.0382694316776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7787856041215533, dt = 0.003961660756839445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 313.32 us (93.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (59.9%)
Info: cfl dt = 0.003961660760274228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8829e+05 | 65536 | 2 | 1.688e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.49936183170102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7827472648783926, dt = 0.003961660760274228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.8%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 277.70 us (93.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.0%)
Info: cfl dt = 0.003961660763759244 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6224e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.59290753481653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7867089256386668, dt = 0.003961660763759244
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.8%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 275.90 us (93.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.9%)
Info: cfl dt = 0.003961660767295028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6276e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.70513790042295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.790670586402426, dt = 0.003961660767295028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.7%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 284.27 us (94.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.0%)
Info: cfl dt = 0.003961660770882121 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5095e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.13697771019186 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.794632247169721, dt = 0.003961660770882121
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 310.90 us (94.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.8%)
Info: cfl dt = 0.003961660774521062 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4626e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.1149184505548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.798593907940603, dt = 0.003961660774521062
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 326.23 us (94.7%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.1%)
Info: cfl dt = 0.003961660778212401 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5518e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.05626980464753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.802555568715124, dt = 0.003961660778212401
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 310.28 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (64.8%)
Info: cfl dt = 0.003961660781956683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5868e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.81915154396206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8065172294933365, dt = 0.003961660781956683
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 348.23 us (94.4%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (60.7%)
Info: cfl dt = 0.003961660785754463 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3702e+05 | 65536 | 2 | 1.945e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.34146663591376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.810478890275293, dt = 0.003961660785754463
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 319.63 us (94.3%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.4%)
Info: cfl dt = 0.003961660789606294 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0483e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.09946131822579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8144405510610475, dt = 0.003961660789606294
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 317.62 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (64.3%)
Info: cfl dt = 0.003961660793512737 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4834e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.56862780024434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8184022118506538, dt = 0.003961660793512737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 343.36 us (94.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.9%)
Info: cfl dt = 0.003961660797474352 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4145e+05 | 65536 | 2 | 1.919e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.305591836194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8223638726441664, dt = 0.003961660797474352
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 345.37 us (94.5%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.4%)
Info: cfl dt = 0.003961660801491705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0950e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.11632535084944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8263255334416408, dt = 0.003961660801491705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.4%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 328.83 us (94.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.4%)
Info: cfl dt = 0.003961660805565364 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6456e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.0971078739221 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8302871942431325, dt = 0.003961660805565364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 302.89 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (59.5%)
Info: cfl dt = 0.003961660809695901 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5811e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.69508790373503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8342488550486977, dt = 0.003961660809695901
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 297.04 us (93.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.1%)
Info: cfl dt = 0.003961660813883892 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6229e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.60365112016704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8382105158583937, dt = 0.003961660813883892
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.6%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 303.79 us (93.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (63.7%)
Info: cfl dt = 0.003961660818129914 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6951e+05 | 65536 | 2 | 1.774e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.41358042013825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8421721766722776, dt = 0.003961660818129914
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 285.23 us (93.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.2%)
Info: cfl dt = 0.003961660822434549 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8101e+05 | 65536 | 2 | 1.720e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.91492894957211 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8461338374904075, dt = 0.003961660822434549
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 282.41 us (93.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (60.2%)
Info: cfl dt = 0.00396166082679838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5390e+05 | 65536 | 2 | 1.852e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.01610796685169 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8500954983128421, dt = 0.00396166082679838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 297.87 us (94.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.0%)
Info: cfl dt = 0.003961660831221997 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5447e+05 | 65536 | 2 | 1.849e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.13920635405898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8540571591396404, dt = 0.003961660831221997
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 307.94 us (94.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.0%)
Info: cfl dt = 0.003961660835705991 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4625e+05 | 65536 | 2 | 1.893e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.35003976672195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8580188199708625, dt = 0.003961660835705991
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.4%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 345.58 us (94.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.4%)
Info: cfl dt = 0.003961660840250955 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4679e+05 | 65536 | 2 | 1.890e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.46967085015902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8619804808065685, dt = 0.003961660840250955
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 320.31 us (94.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.7%)
Info: cfl dt = 0.003961660844857489 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3496e+05 | 65536 | 2 | 1.957e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.89371369915543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8659421416468194, dt = 0.003961660844857489
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 297.35 us (94.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.6%)
Info: cfl dt = 0.003961660849526191 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3721e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.38308061157123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8699038024916768, dt = 0.003961660849526191
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.4%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 361.18 us (95.0%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.1%)
Info: cfl dt = 0.003961660854257668 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4144e+05 | 65536 | 2 | 1.919e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.30334176094317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8738654633412029, dt = 0.003961660854257668
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 314.52 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.9%)
Info: cfl dt = 0.003961660859052525 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4698e+05 | 65536 | 2 | 1.889e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.50985147868965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8778271241954605, dt = 0.003961660859052525
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 309.41 us (94.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.6%)
Info: cfl dt = 0.0039616608639113735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5221e+05 | 65536 | 2 | 1.861e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.6484797034404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.881788785054513, dt = 0.0039616608639113735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 302.62 us (94.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (59.8%)
Info: cfl dt = 0.0039616608688348275 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4847e+05 | 65536 | 2 | 1.881e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.83513705296741 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8857504459184244, dt = 0.0039616608688348275
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.0%)
patch tree reduce : 1.59 us (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 544.66 us (96.5%)
LB move op cnt : 0
LB apply : 3.91 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (66.4%)
Info: cfl dt = 0.003961660873823503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5225e+05 | 65536 | 2 | 1.860e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.65739599833283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8897121067872593, dt = 0.003961660873823503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 308.12 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.6%)
Info: cfl dt = 0.0039616608788780195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4545e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.93890026908102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8936737676610829, dt = 0.0039616608788780195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 346.54 us (94.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.0%)
Info: cfl dt = 0.003961660883999003 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5539e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.10320614739344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8976354285399608, dt = 0.003961660883999003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 312.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (60.3%)
Info: cfl dt = 0.0039616608891870795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5305e+05 | 65536 | 2 | 1.856e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.83173384731197 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9015970894239598, dt = 0.0039616608891870795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 341.45 us (94.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.1%)
Info: cfl dt = 0.003961660894442876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5052e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.04253012429179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9055587503131468, dt = 0.003961660894442876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 344.77 us (94.5%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.5%)
Info: cfl dt = 0.003961660899767028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0575e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.30056990661643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9095204112075896, dt = 0.003961660899767028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 310.07 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.77 us (86.7%)
Info: cfl dt = 0.003961660905160171 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4074e+05 | 65536 | 2 | 1.923e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.15096290360172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9134820721073567, dt = 0.003961660905160171
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 298.85 us (93.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.3%)
Info: cfl dt = 0.003961660910622945 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7544e+05 | 65536 | 2 | 1.746e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.70397864511207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.917443733012517, dt = 0.003961660910622945
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (2.0%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 278.54 us (93.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.7%)
Info: cfl dt = 0.003961660916155992 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6413e+05 | 65536 | 2 | 1.412e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.0036791556644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.92140539392314, dt = 0.003961660916155992
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 342.72 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.7%)
Info: cfl dt = 0.003961660921759955 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6074e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.26569462111078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9253670548392958, dt = 0.003961660921759955
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 333.60 us (94.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.3%)
Info: cfl dt = 0.0039616609274354874 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4511e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.8641007961867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9293287157610557, dt = 0.0039616609274354874
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 307.97 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.4%)
Info: cfl dt = 0.0039616609331832395 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7192e+05 | 65536 | 2 | 1.389e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.70048914198011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9332903766884912, dt = 0.0039616609331832395
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 300.43 us (93.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.5%)
Info: cfl dt = 0.003961660939003865 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6100e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.32267665466806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9372520376216744, dt = 0.003961660939003865
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 299.85 us (94.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.9%)
Info: cfl dt = 0.003961660944898022 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4657e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.1818608344059 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9412136985606783, dt = 0.003961660944898022
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (2.0%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 267.84 us (93.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.1%)
Info: cfl dt = 0.003961660950866375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4074e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.91416758832509 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9451753595055763, dt = 0.003961660950866375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 308.87 us (94.2%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.8%)
Info: cfl dt = 0.003961660956909586 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4294e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.39374230224497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9491370204564427, dt = 0.003961660956909586
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 312.82 us (94.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (60.4%)
Info: cfl dt = 0.0039616609630283225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4323e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.45512398176706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9530986814133522, dt = 0.0039616609630283225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 318.59 us (94.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.7%)
Info: cfl dt = 0.003961660969223257 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4441e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.71316405378198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9570603423763806, dt = 0.003961660969223257
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.7%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 281.05 us (93.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.2%)
Info: cfl dt = 0.003961660975495063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4755e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.39650869688988 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9610220033456038, dt = 0.003961660975495063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (2.0%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 270.64 us (93.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (59.9%)
Info: cfl dt = 0.003961660981844416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5655e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.35487102154019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.964983664321099, dt = 0.003961660981844416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 312.77 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.9%)
Info: cfl dt = 0.003961660988271998 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5758e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.57807055265069 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9689453253029434, dt = 0.003961660988271998
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 309.17 us (94.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.1%)
Info: cfl dt = 0.003961660994778491 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6325e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.81377486120725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9729069862912154, dt = 0.003961660994778491
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.8%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 270.78 us (93.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (60.5%)
Info: cfl dt = 0.003961661001364583 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6288e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.73279207263128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.976868647285994, dt = 0.003961661001364583
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 305.26 us (94.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.1%)
Info: cfl dt = 0.003961661008030961 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3992e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.73634281500503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9808303082873586, dt = 0.003961661008030961
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 281.91 us (93.5%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.4%)
Info: cfl dt = 0.003961661014778321 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6013e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.13382951707045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9847919692953895, dt = 0.003961661014778321
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.8%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 285.15 us (93.6%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (61.8%)
Info: cfl dt = 0.0039616610216073565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5754e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.57095311622133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9887536303101678, dt = 0.0039616610216073565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 332.78 us (94.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 0.0039616610285187655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2179e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.79010471775605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9927152913317752, dt = 0.0039616610285187655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 328.14 us (94.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.0%)
Info: cfl dt = 0.003961661035513251 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6832e+05 | 65536 | 2 | 1.779e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.1549742749913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9966769523602939, dt = 0.003323047639706145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 308.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.2%)
Info: cfl dt = 0.003961661041450512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4192e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.66758463900851 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 863.8864806170001 (s) [Godunov][rank=0]
running minmod hll
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.69 ms [DataInserterUtility][rank=0]
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 : 4.24 us (56.7%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (0.5%)
patch tree reduce : 1.04 us (0.2%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 436.70 us (97.1%)
LB move op cnt : 0
LB apply : 3.29 us (0.7%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.13 us (2.3%)
patch tree reduce : 2.38 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 772.00 ns (0.2%)
LB compute : 412.81 us (94.5%)
LB move op cnt : 0
LB apply : 3.16 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (61.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3997e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.5%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 368.08 us (94.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5232e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.43365224503349 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003961660569039922, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 297.50 us (94.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2910e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.38001919304595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007923321138079843, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 315.91 us (94.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2501e+05 | 65536 | 2 | 2.016e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.72809753351085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011884981707119765, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.4%)
patch tree reduce : 2.47 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 353.03 us (94.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1825e+05 | 65536 | 2 | 2.059e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.25870504176429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015846642276159686, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 331.51 us (94.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (61.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4485e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.80807988917323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019808302845199608, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 324.90 us (94.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1781e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.92492639827998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02376996341423953, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 358.48 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2045e+05 | 65536 | 2 | 2.045e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.73549771298663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02773162398327945, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.87 us (2.7%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 417.18 us (94.1%)
LB move op cnt : 0
LB apply : 3.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (69.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3489e+05 | 65536 | 2 | 1.957e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.87964454211294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03169328455231937, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 2.43 us (0.7%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 339.69 us (94.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3850e+05 | 65536 | 2 | 1.936e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.66502899140032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03565494512135929, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.7%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 346.29 us (94.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (59.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4549e+05 | 65536 | 2 | 1.897e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.18590681680814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03961660569039921, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 2.36 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 349.57 us (94.6%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4445e+05 | 65536 | 2 | 1.903e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.95938339659568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04357826625943913, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.4%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 373.96 us (95.1%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4007e+05 | 65536 | 2 | 1.927e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.00700908241917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047539926828479045, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 357.15 us (94.9%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4243e+05 | 65536 | 2 | 1.914e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.5198978102069 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051501587397518964, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 311.60 us (93.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8566e+05 | 65536 | 2 | 2.294e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.16445812964151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05546324796655888, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 343.51 us (94.5%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5546e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.11681616214356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0594249085355988, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 295.19 us (94.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3887e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.50723132583961 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06338656910463872, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 303.17 us (94.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4892e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.69494410516977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06734822967367864, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 294.55 us (93.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6684e+05 | 65536 | 2 | 1.786e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.83260656578533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07130989024271855, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 296.53 us (93.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4709e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.29595652366073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07527155081175847, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.4%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 355.41 us (94.8%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4954e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.82960314041135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07923321138079839, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 274.12 us (93.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5895e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.87779656540667 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08319487194983831, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (0.9%)
patch tree reduce : 1.83 us (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 552.83 us (96.8%)
LB move op cnt : 0
LB apply : 3.32 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5327e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.64095932045083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08715653251887823, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 308.58 us (94.2%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2783e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.10523500457303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09111819308791815, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.5%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 322.98 us (94.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1443e+05 | 65536 | 2 | 2.084e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.4257752900976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09507985365695806, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 359.63 us (94.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0618e+05 | 65536 | 2 | 2.140e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.63045846434206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09904151422599798, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.4%)
patch tree reduce : 1.87 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 398.76 us (95.3%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3293e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.21357179799465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1030031747950379, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 315.53 us (94.0%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4134e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.04357926231629 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10696483536407782, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 311.31 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4516e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.87694356470351 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11092649593311774, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 325.30 us (94.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5327e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.64031734028913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11488815650215765, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.5%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 316.67 us (94.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (61.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5595e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.22471681720873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11884981707119757, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 313.30 us (94.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5093e+05 | 65536 | 2 | 1.868e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.36863041787643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12281147764023749, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 324.44 us (94.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5211e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.38836647144011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1267731382092774, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 2.35 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 342.32 us (94.5%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5372e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.73913248963272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13073479877831734, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 311.81 us (88.4%)
LB move op cnt : 0
LB apply : 23.88 us (6.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (61.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5337e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6615992390781 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13469645934735727, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 315.98 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (59.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4183e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.15215012735035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1386581199163972, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 326.55 us (94.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4582e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.01935397965585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14261978048543714, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.5%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 311.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3296e+05 | 65536 | 2 | 1.968e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.45910542194059 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14658144105447707, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 358.02 us (94.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3295e+05 | 65536 | 2 | 1.968e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.45768555613316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.150543101623517, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.3%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 368.23 us (95.0%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6305e+05 | 65536 | 2 | 1.805e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.00811856780074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15450476219255693, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 339.05 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3560e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.7952996543304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15846642276159686, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 313.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3661e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.25216404721407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1624280833306368, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 315.63 us (94.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0795e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.77806189588188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16638974389967673, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 314.29 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3540e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.75143570565872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17035140446871666, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 347.86 us (94.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3061e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.71057349910392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1743130650377566, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 330.21 us (94.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5614e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.26461282199064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17827472560679652, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 291.39 us (93.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (64.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5248e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.46833959452906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18223638617583646, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 2.39 us (0.7%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 320.41 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5529e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.07938388022987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1861980467448764, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 327.89 us (94.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6767e+05 | 65536 | 2 | 1.782e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.01248228366926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19015970731391632, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 292.16 us (93.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4564e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.97968965651687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19412136788295625, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 304.01 us (93.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4880e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.66761707414267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19808302845199618, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.8%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 274.91 us (93.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4918e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.75155081986836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20204468902103612, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 315.98 us (94.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5547e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.11989465936513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20600634959007605, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.7%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 272.37 us (93.2%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3915e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.56789148263101 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20996801015911598, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 350.13 us (94.7%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1397e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.08749477808956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2139296707281559, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 321.98 us (94.0%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (62.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1207e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.67542939153327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21789133129719584, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.4%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 357.27 us (94.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3965e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.67711806648818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22185299186623578, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 308.82 us (93.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (61.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3556e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.78595841856634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2258146524352757, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 311.25 us (94.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4958e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.83799612646632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22977631300431564, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 290.90 us (94.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5396e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.78998326589671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23373797357335557, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 351.21 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5227e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.4235632511198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2376996341423955, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 313.74 us (94.1%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4303e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.41264339953558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24166129471143544, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 313.12 us (94.2%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4620e+05 | 65536 | 2 | 1.893e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.34109461842687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24562295528047537, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 342.39 us (94.6%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4367e+05 | 65536 | 2 | 1.907e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.78957310580702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2495846158495153, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 330.83 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4339e+05 | 65536 | 2 | 1.908e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.72933458404847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2535462764185552, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 308.46 us (94.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4293e+05 | 65536 | 2 | 1.911e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.62828936932833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2575079369875951, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 308.37 us (94.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3860e+05 | 65536 | 2 | 1.936e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.68542470215917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.261469597556635, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 321.70 us (94.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6503e+05 | 65536 | 2 | 1.795e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.43867642809784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2654312581256749, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 2.31 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 313.83 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (60.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2265e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.97643387910735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2693929186947148, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 295.03 us (93.9%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1293e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.86133627543478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2733545792637547, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.4%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 338.85 us (94.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5196e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.35667446057306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27731623983279463, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 322.04 us (94.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (64.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5207e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.38004438327627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28127790040183454, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 321.19 us (94.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7094e+05 | 65536 | 2 | 1.767e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.72338388272986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28523956097087444, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 354.15 us (94.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5054e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.04750993207759 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28920122153991434, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 291.30 us (93.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3896e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.52626508844413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29316288210895425, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 298.26 us (93.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3947e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.63668165889219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29712454267799415, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 294.38 us (93.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (58.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4797e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.48756181369083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30108620324703406, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 311.08 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5431e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.86781925894788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30504786381607396, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 315.24 us (94.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (61.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5125e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.20233977070139 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30900952438511387, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 334.60 us (94.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4694e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.26428035648618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31297118495415377, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 321.68 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4915e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.74316863872173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3169328455231937, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 326.23 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5084e+05 | 65536 | 2 | 1.868e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.35077738505615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3208945060922336, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 319.32 us (94.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (59.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2850e+05 | 65536 | 2 | 1.995e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.48766397830825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3248561666612735, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 334.40 us (94.3%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3307e+05 | 65536 | 2 | 1.968e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.48341669190003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3288178272303134, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 319.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2954e+05 | 65536 | 2 | 1.989e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.71572486822575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3327794877993533, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.6%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 347.88 us (94.7%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3006e+05 | 65536 | 2 | 1.986e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.82777207073721 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3367411483683932, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 2.36 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 327.92 us (94.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (59.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2836e+05 | 65536 | 2 | 1.996e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.45693253205975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3407028089374331, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.4%)
patch tree reduce : 1.87 us (0.4%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 406.35 us (95.1%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2848e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.2471115191254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.344664469506473, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 289.43 us (93.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4875e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.6570044254859 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3486261300755129, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 321.88 us (94.0%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4868e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.64220046083956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3525877906445528, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 293.87 us (93.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4763e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.41451858427429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3565494512135927, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 294.97 us (93.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4283e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.3684631937901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3605111117826326, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 301.71 us (93.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4747e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.37820721217021 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3644727723516725, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 291.63 us (93.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2863e+05 | 65536 | 2 | 1.994e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.51744459454866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36843443292071243, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 328.26 us (94.3%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1861e+05 | 65536 | 2 | 2.057e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.33682491217962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37239609348975233, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.4%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 374.72 us (95.1%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6014e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.13576026324468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37635775405879224, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 274.13 us (93.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1350e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.98582281680753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38031941462783214, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 277.41 us (93.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5094e+05 | 65536 | 2 | 1.867e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.37246270439513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38428107519687205, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.7%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 272.42 us (93.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (60.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1613e+05 | 65536 | 2 | 2.073e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.79635786322679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38824273576591195, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 310.90 us (93.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (69.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5607e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.25081282374889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39220439633495185, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 310.86 us (94.1%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (60.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5043e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0235485239252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39616605690399176, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.4%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 358.91 us (94.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5584e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.20091080058859 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40012771747303166, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 283.66 us (93.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (59.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6090e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.30037024230218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40408937804207157, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 294.92 us (93.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (61.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5513e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.04485492641732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40805103861111147, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 337.58 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9935e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.907433219339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4120126991801514, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 295.34 us (93.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (59.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1223e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.70902684881528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4159743597491913, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 286.56 us (93.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (64.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5575e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.18109508715068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4199360203182312, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 294.01 us (94.0%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5946e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.98787446080091 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4238976808872711, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.6%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 294.67 us (93.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (58.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8253e+05 | 65536 | 2 | 1.713e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.24556336445089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.427859341456311, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 2.58 us (0.9%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 276.88 us (93.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5496e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.00782750024543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4318210020253509, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.8%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 276.67 us (93.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (62.2%)
Info: cfl dt = 0.0039616605690399225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4830e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.55961484143361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4357826625943908, dt = 0.0039616605690399225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 295.17 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.4%)
Info: cfl dt = 0.0039616605690399225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3730e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.16644433577333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4397443231634307, dt = 0.0039616605690399225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 282.10 us (93.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.1%)
Info: cfl dt = 0.003961660569039923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6002e+05 | 65536 | 2 | 1.820e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.3471779225274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4437059837324706, dt = 0.003961660569039923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 313.80 us (94.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (63.9%)
Info: cfl dt = 0.003961660569039923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5789e+05 | 65536 | 2 | 1.831e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.8840667971511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4476676443015105, dt = 0.003961660569039923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.1%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 275.69 us (92.9%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (58.2%)
Info: cfl dt = 0.003961660569039923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5658e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.36055683396874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4516293048705504, dt = 0.003961660569039923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 352.84 us (94.6%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.4%)
Info: cfl dt = 0.003961660569039924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5677e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.40337287652143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4555909654395903, dt = 0.003961660569039924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 299.84 us (93.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (59.0%)
Info: cfl dt = 0.003961660569039926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2801e+05 | 65536 | 2 | 1.998e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.38219826809826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4595526260086302, dt = 0.003961660569039926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.5%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 353.71 us (94.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.6%)
Info: cfl dt = 0.003961660569039926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5079e+05 | 65536 | 2 | 1.868e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.33879541704316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46351428657767013, dt = 0.003961660569039926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 323.30 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.1%)
Info: cfl dt = 0.003961660569039928 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3221e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.05829032803702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46747594714671004, dt = 0.003961660569039928
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 316.66 us (94.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.0%)
Info: cfl dt = 0.003961660569039928 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4745e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.37397476502477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47143760771574994, dt = 0.003961660569039928
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (2.2%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 261.13 us (93.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (59.6%)
Info: cfl dt = 0.003961660569039929 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4983e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.89298209432698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47539926828478984, dt = 0.003961660569039929
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.87 us (1.9%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 721.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.3%)
LB compute : 245.69 us (93.8%)
LB move op cnt : 0
LB apply : 2.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (65.8%)
Info: cfl dt = 0.003961660569039931 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9334e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.59918521684398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47936092885382975, dt = 0.003961660569039931
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.9%)
patch tree reduce : 2.26 us (0.8%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 274.59 us (93.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.2%)
Info: cfl dt = 0.003961660569039933 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6156e+05 | 65536 | 2 | 1.813e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.68328125138186 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48332258942286965, dt = 0.003961660569039933
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 20.21 us (5.9%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 303.62 us (88.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.3%)
Info: cfl dt = 0.003961660569039935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6297e+05 | 65536 | 2 | 1.806e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.99031090873358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4872842499919096, dt = 0.003961660569039935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 333.59 us (94.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.0%)
Info: cfl dt = 0.003961660569039937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4079e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.92487184047985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4912459105609496, dt = 0.003961660569039937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.5%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 365.57 us (94.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.8%)
Info: cfl dt = 0.00396166056903994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1229e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.72207596483165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49520757112998953, dt = 0.00396166056903994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.4%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 365.50 us (94.9%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.8%)
Info: cfl dt = 0.003961660569039943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1706e+05 | 65536 | 2 | 2.067e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.99772774266418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4991692316990295, dt = 0.003961660569039943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 365.83 us (94.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.7%)
Info: cfl dt = 0.003961660569039947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2177e+05 | 65536 | 2 | 2.037e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.0244868011215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5031308922680694, dt = 0.003961660569039947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.8%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 332.59 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.0%)
Info: cfl dt = 0.00396166056903995 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3989e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.73011899807615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5070925528371093, dt = 0.00396166056903995
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 324.06 us (94.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.6%)
Info: cfl dt = 0.003961660569039955 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3231e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.07908922688954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5110542134061492, dt = 0.003961660569039955
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 324.76 us (94.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.1%)
Info: cfl dt = 0.00396166056903996 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4235e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.26415237622159 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150158739751891, dt = 0.00396166056903996
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 322.07 us (94.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (62.3%)
Info: cfl dt = 0.003961660569039966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3815e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.34971432543716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5189775345442291, dt = 0.003961660569039966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 314.38 us (94.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.8%)
Info: cfl dt = 0.003961660569039973 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3129e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.85686553626252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5229391951132691, dt = 0.003961660569039973
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (0.8%)
patch tree reduce : 1.87 us (0.2%)
gen split merge : 951.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.05 us (0.1%)
LB compute : 730.06 us (97.2%)
LB move op cnt : 0
LB apply : 3.93 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (66.6%)
Info: cfl dt = 0.00396166056903998 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4683e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.23905000359073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5269008556823092, dt = 0.00396166056903998
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.6%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 340.19 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.8%)
Info: cfl dt = 0.003961660569039988 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4476e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.78978260822511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5308625162513492, dt = 0.003961660569039988
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 293.31 us (93.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.6%)
Info: cfl dt = 0.003961660569039999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5046e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.02860844137287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5348241768203892, dt = 0.003961660569039999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 283.10 us (93.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (58.5%)
Info: cfl dt = 0.003961660569040009 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4041e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.84116926288193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5387858373894292, dt = 0.003961660569040009
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 287.98 us (93.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (59.8%)
Info: cfl dt = 0.003961660569040021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4499e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.83884870792205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5427474979584692, dt = 0.003961660569040021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 305.01 us (93.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.1%)
Info: cfl dt = 0.003961660569040035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5574e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.17775346621517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5467091585275092, dt = 0.003961660569040035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 303.95 us (94.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.9%)
Info: cfl dt = 0.003961660569040051 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1768e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.89611572323471 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5506708190965492, dt = 0.003961660569040051
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.8%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 334.47 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.5%)
Info: cfl dt = 0.003961660569040068 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3530e+05 | 65536 | 2 | 1.955e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.96809718317786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5546324796655893, dt = 0.003961660569040068
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.49 us (0.5%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 306.64 us (93.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.6%)
Info: cfl dt = 0.003961660569040087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6790e+05 | 65536 | 2 | 1.781e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.06253469855778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5585941402346293, dt = 0.003961660569040087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.5%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 314.94 us (94.2%)
LB move op cnt : 0
LB apply : 4.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.0%)
Info: cfl dt = 0.003961660569040109 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0685e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.53845493890923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5625558008036694, dt = 0.003961660569040109
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 53.51 us (13.6%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 326.02 us (82.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.8%)
Info: cfl dt = 0.003961660569040132 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4342e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.49715367157071 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5665174613727095, dt = 0.003961660569040132
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 312.59 us (94.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (59.7%)
Info: cfl dt = 0.00396166056904016 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4938e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.79346653573992 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5704791219417497, dt = 0.00396166056904016
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 274.17 us (93.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.2%)
Info: cfl dt = 0.00396166056904019 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5021e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.97525631536116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5744407825107898, dt = 0.00396166056904019
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 274.12 us (93.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (60.0%)
Info: cfl dt = 0.003961660569040223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5226e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.42148008939905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.57840244307983, dt = 0.003961660569040223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 307.19 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (63.7%)
Info: cfl dt = 0.003961660569040259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4856e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.6149015881884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5823641036488703, dt = 0.003961660569040259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.5%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 326.53 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.9%)
Info: cfl dt = 0.003961660569040299 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4897e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.70447195155913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5863257642179105, dt = 0.003961660569040299
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 309.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.0%)
Info: cfl dt = 0.003961660569040344 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4285e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.37304890593835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5902874247869508, dt = 0.003961660569040344
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.0%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 267.30 us (93.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.8%)
Info: cfl dt = 0.003961660569040394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3814e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.34809518183536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5942490853559912, dt = 0.003961660569040394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 273.38 us (93.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.3%)
Info: cfl dt = 0.003961660569040448 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2205e+05 | 65536 | 2 | 2.035e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.08479437059421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5982107459250315, dt = 0.003961660569040448
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.4%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 369.06 us (94.9%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.3%)
Info: cfl dt = 0.003961660569040509 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4186e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.15720215515721 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.602172406494072, dt = 0.003961660569040509
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 313.94 us (93.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (62.8%)
Info: cfl dt = 0.003961660569040575 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4069e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.90424914002654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6061340670631125, dt = 0.003961660569040575
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 293.80 us (93.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.4%)
Info: cfl dt = 0.003961660569040648 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4113e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.99895921234791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.610095727632153, dt = 0.003961660569040648
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 309.53 us (94.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.7%)
Info: cfl dt = 0.003961660569040728 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4242e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.28064207571886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6140573882011937, dt = 0.003961660569040728
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 315.41 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.1%)
Info: cfl dt = 0.003961660569040817 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8736e+05 | 65536 | 2 | 1.692e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.29741313021543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6180190487702344, dt = 0.003961660569040817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 2.23 us (0.8%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 276.06 us (93.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.4%)
Info: cfl dt = 0.003961660569040913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3146e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.89502921535585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6219807093392752, dt = 0.003961660569040913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 292.25 us (93.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (61.5%)
Info: cfl dt = 0.003961660569041019 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3937e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.61553074385816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6259423699083161, dt = 0.003961660569041019
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 291.25 us (93.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.3%)
Info: cfl dt = 0.003961660569041134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3803e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.32452502184853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6299040304773571, dt = 0.003961660569041134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 310.53 us (94.3%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.5%)
Info: cfl dt = 0.00396166056904126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3387e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.41836801252825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6338656910463982, dt = 0.00396166056904126
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 276.62 us (93.1%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (60.5%)
Info: cfl dt = 0.003961660569041399 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2851e+05 | 65536 | 2 | 1.995e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.490445797745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6378273516154395, dt = 0.003961660569041399
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 308.52 us (93.9%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.9%)
Info: cfl dt = 0.00396166056904155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3950e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.64460572277412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6417890121844808, dt = 0.00396166056904155
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.7%)
patch tree reduce : 2.58 us (0.8%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 300.31 us (93.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (66.1%)
Info: cfl dt = 0.003961660569041714 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3795e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.3067447057134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6457506727535224, dt = 0.003961660569041714
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.7%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 346.98 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (65.1%)
Info: cfl dt = 0.003961660569041893 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2131e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.68559309921406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6497123333225641, dt = 0.003961660569041893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 317.68 us (93.9%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (65.4%)
Info: cfl dt = 0.003961660569042087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0749e+05 | 65536 | 2 | 1.608e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.67883117110615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.653673993891606, dt = 0.003961660569042087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 348.93 us (94.7%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.17 us (87.2%)
Info: cfl dt = 0.0039616605690423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0955e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.12734711781461 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6576356544606481, dt = 0.0039616605690423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.6%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.48 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 346.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.9%)
Info: cfl dt = 0.00396166056904253 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5116e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.18217136210747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6615973150296904, dt = 0.00396166056904253
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 327.15 us (94.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.1%)
Info: cfl dt = 0.00396166056904278 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3569e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.81453981911727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.665558975598733, dt = 0.00396166056904278
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 318.75 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.2%)
Info: cfl dt = 0.00396166056904305 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3518e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.70495399477663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6695206361677758, dt = 0.00396166056904305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 326.43 us (94.1%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.1%)
Info: cfl dt = 0.003961660569043342 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1969e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.33338967481407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734822967368188, dt = 0.003961660569043342
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 315.58 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (60.2%)
Info: cfl dt = 0.003961660569043659 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3928e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.59640116301244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6774439573058622, dt = 0.003961660569043659
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 286.16 us (93.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.9%)
Info: cfl dt = 0.0039616605690440026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5303e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.58886399639867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6814056178749058, dt = 0.0039616605690440026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.9%)
patch tree reduce : 2.33 us (0.7%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 293.70 us (93.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.9%)
Info: cfl dt = 0.003961660569044373 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4802e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.49928075922571 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6853672784439498, dt = 0.003961660569044373
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 295.32 us (93.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.1%)
Info: cfl dt = 0.003961660569044774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4499e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.83882109152866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6893289390129942, dt = 0.003961660569044774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 289.59 us (93.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.1%)
Info: cfl dt = 0.0039616605690452064 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2451e+05 | 65536 | 2 | 2.020e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.62083498754063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.693290599582039, dt = 0.0039616605690452064
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 328.76 us (94.4%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (60.9%)
Info: cfl dt = 0.003961660569045673 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2243e+05 | 65536 | 2 | 2.033e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.16641415293654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6972522601510842, dt = 0.003961660569045673
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.8%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 326.24 us (93.5%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.0%)
Info: cfl dt = 0.003961660569046174 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1655e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.65057875045608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7012139207201299, dt = 0.003961660569046174
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 344.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.0%)
Info: cfl dt = 0.003961660569046716 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1336e+05 | 65536 | 2 | 1.585e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.95474786435183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.705175581289176, dt = 0.003961660569046716
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.4%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 390.45 us (95.0%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (64.8%)
Info: cfl dt = 0.003961660569047297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4280e+05 | 65536 | 2 | 1.912e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.60137840548298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7091372418582227, dt = 0.003961660569047297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 337.27 us (94.4%)
LB move op cnt : 0
LB apply : 4.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.9%)
Info: cfl dt = 0.003961660569047923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3537e+05 | 65536 | 2 | 1.954e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.98407821671111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.71309890242727, dt = 0.003961660569047923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 336.79 us (94.5%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.5%)
Info: cfl dt = 0.003961660569048595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3914e+05 | 65536 | 2 | 1.932e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.80361933347167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7170605629963179, dt = 0.003961660569048595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 299.69 us (94.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.2%)
Info: cfl dt = 0.003961660569049316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3724e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.39044288017692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7210222235653665, dt = 0.003961660569049316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 352.12 us (94.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.1%)
Info: cfl dt = 0.0039616605690500906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4458e+05 | 65536 | 2 | 1.902e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.98743962962907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7249838841344158, dt = 0.0039616605690500906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.9%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 299.90 us (93.7%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (64.3%)
Info: cfl dt = 0.00396166056905092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4123e+05 | 65536 | 2 | 1.921e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.258623703797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.728945544703466, dt = 0.00396166056905092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 332.10 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.7%)
Info: cfl dt = 0.00396166056905181 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1300e+05 | 65536 | 2 | 1.587e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.87700788697676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7329072052725168, dt = 0.00396166056905181
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 337.11 us (94.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.7%)
Info: cfl dt = 0.003961660569052762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2745e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.02208665236934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7368688658415686, dt = 0.003961660569052762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 300.00 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (61.7%)
Info: cfl dt = 0.003961660569053781 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4391e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.60320112824165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7408305264106214, dt = 0.003961660569053781
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 298.87 us (93.4%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.6%)
Info: cfl dt = 0.003961660569054871 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4613e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.08630459959099 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7447921869796752, dt = 0.003961660569054871
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 2.30 us (0.7%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 295.00 us (87.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.1%)
Info: cfl dt = 0.0039616605690560355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4373e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.56556639798531 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7487538475487301, dt = 0.0039616605690560355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 293.78 us (93.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (61.2%)
Info: cfl dt = 0.003961660569057279 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4870e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.64628310447716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7527155081177861, dt = 0.003961660569057279
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 322.28 us (94.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.0%)
Info: cfl dt = 0.003961660569058607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5097e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.13931135883426 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7566771686868434, dt = 0.003961660569058607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 298.44 us (93.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (61.7%)
Info: cfl dt = 0.003961660569060024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3291e+05 | 65536 | 2 | 1.969e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.4481433080478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.760638829255902, dt = 0.003961660569060024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.4%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 359.00 us (94.8%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.7%)
Info: cfl dt = 0.0039616605690615345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7384e+05 | 65536 | 2 | 1.753e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.35426253933731 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.764600489824962, dt = 0.0039616605690615345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 289.58 us (93.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (60.6%)
Info: cfl dt = 0.0039616605690631435 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6077e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.27295101851816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7685621503940235, dt = 0.0039616605690631435
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 309.35 us (94.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.8%)
Info: cfl dt = 0.003961660569064857 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4055e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.8721436088898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7725238109630866, dt = 0.003961660569064857
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.4%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 337.84 us (94.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.2%)
Info: cfl dt = 0.003961660569066682 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3330e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.29429604934182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7764854715321515, dt = 0.003961660569066682
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 288.03 us (93.8%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.5%)
Info: cfl dt = 0.0039616605690686235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4307e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4203171904754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7804471321012182, dt = 0.0039616605690686235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 287.11 us (93.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.9%)
Info: cfl dt = 0.003961660569070687 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5180e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.32045386704442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7844087926702868, dt = 0.003961660569070687
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (2.0%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 272.79 us (93.2%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.7%)
Info: cfl dt = 0.0039616605690728805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3667e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.02779426440529 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7883704532393575, dt = 0.0039616605690728805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 323.16 us (94.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.4%)
Info: cfl dt = 0.0039616605690752085 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3125e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.84781269057433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7923321138084304, dt = 0.0039616605690752085
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 300.05 us (94.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (58.3%)
Info: cfl dt = 0.003961660569077681 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5032e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.99993080948754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7962937743775056, dt = 0.003961660569077681
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.8%)
patch tree reduce : 2.22 us (0.8%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 271.87 us (93.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.5%)
Info: cfl dt = 0.003961660569080304 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5137e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.22660042887564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8002554349465832, dt = 0.003961660569080304
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 298.36 us (93.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.7%)
Info: cfl dt = 0.003961660569083086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0080e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.22333609756528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8042170955156636, dt = 0.003961660569083086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.3%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 391.55 us (95.3%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.7%)
Info: cfl dt = 0.003961660569086034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3376e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.3956719398605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8081787560847467, dt = 0.003961660569086034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (2.0%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 270.15 us (93.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.4%)
Info: cfl dt = 0.003961660569089157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4948e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.81571888477482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8121404166538326, dt = 0.003961660569089157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 319.63 us (94.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.6%)
Info: cfl dt = 0.003961660569092464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5020e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.97263549543581 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8161020772229218, dt = 0.003961660569092464
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 277.49 us (93.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.9%)
Info: cfl dt = 0.003961660569095964 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4581e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.01666459848614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8200637377920142, dt = 0.003961660569095964
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 282.32 us (93.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.5%)
Info: cfl dt = 0.003961660569099666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4982e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.8908420487888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8240253983611102, dt = 0.003961660569099666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.5%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 313.93 us (94.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.6%)
Info: cfl dt = 0.003961660569103581 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4666e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.20190406677185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8279870589302099, dt = 0.003961660569103581
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 320.16 us (94.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (60.0%)
Info: cfl dt = 0.003961660569107718 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8998e+05 | 65536 | 2 | 1.680e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.86776929463487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8319487194993135, dt = 0.003961660569107718
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.4%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 377.86 us (94.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.7%)
Info: cfl dt = 0.003961660569112089 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3132e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.86354110808736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8359103800684212, dt = 0.003961660569112089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (2.0%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 278.84 us (93.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.1%)
Info: cfl dt = 0.003961660569116703 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2247e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.93825247277998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8398720406375333, dt = 0.003961660569116703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.9%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 271.76 us (93.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.7%)
Info: cfl dt = 0.003961660569121574 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3473e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.60549414272968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.84383370120665, dt = 0.003961660569121574
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (2.0%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 266.16 us (92.7%)
LB move op cnt : 0
LB apply : 3.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.1%)
Info: cfl dt = 0.003961660569126712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5446e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.89877102199463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8477953617757716, dt = 0.003961660569126712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 320.04 us (94.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.5%)
Info: cfl dt = 0.00396166056913213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4238e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.27000117557424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8517570223448984, dt = 0.00396166056913213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 296.48 us (94.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.9%)
Info: cfl dt = 0.003961660569137841 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1000e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.22496275859729 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8557186829140305, dt = 0.003961660569137841
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.9%)
patch tree reduce : 2.28 us (0.8%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 274.53 us (93.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (61.6%)
Info: cfl dt = 0.0039616605691438584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5169e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.29607366678474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8596803434831684, dt = 0.0039616605691438584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.9%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 274.30 us (93.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.7%)
Info: cfl dt = 0.0039616605691501945 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5042e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.02154424292502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8636420040523122, dt = 0.0039616605691501945
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.4%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 382.60 us (95.1%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.6%)
Info: cfl dt = 0.003961660569156865 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3295e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.21877570592478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8676036646214623, dt = 0.003961660569156865
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 290.10 us (93.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (61.6%)
Info: cfl dt = 0.003961660569163886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4183e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.15112332329372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8715653251906191, dt = 0.003961660569163886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.0%)
patch tree reduce : 2.45 us (0.8%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 283.07 us (93.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.0%)
Info: cfl dt = 0.00396166056917127 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4668e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.20677615691176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.875526985759783, dt = 0.00396166056917127
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 309.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.6%)
Info: cfl dt = 0.003961660569179033 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8566e+05 | 65536 | 2 | 1.699e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.92708837990641 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8794886463289543, dt = 0.003961660569179033
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 321.15 us (94.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.1%)
Info: cfl dt = 0.0039616605691871936 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2606e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.71879730262467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8834503068981333, dt = 0.0039616605691871936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 339.72 us (94.2%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (65.9%)
Info: cfl dt = 0.003961660569195767 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9314e+05 | 65536 | 2 | 1.667e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.55635093907357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8874119674673205, dt = 0.003961660569195767
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 2.33 us (0.6%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 345.65 us (94.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.1%)
Info: cfl dt = 0.00396166056920477 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2761e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.05586077214599 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913736280365163, dt = 0.00396166056920477
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 322.86 us (94.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.0%)
Info: cfl dt = 0.003961660569214222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4568e+05 | 65536 | 2 | 1.896e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.22701389420173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8953352886057211, dt = 0.003961660569214222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 355.39 us (94.5%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.5%)
Info: cfl dt = 0.0039616605692241414 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2848e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.24589952566386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8992969491749353, dt = 0.0039616605692241414
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 314.25 us (94.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.5%)
Info: cfl dt = 0.003961660569234548 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4455e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.74352956583279 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9032586097441594, dt = 0.003961660569234548
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 319.92 us (94.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.8%)
Info: cfl dt = 0.00396166056924546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6187e+05 | 65536 | 2 | 1.811e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.75005225160905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9072202703133939, dt = 0.00396166056924546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.5%)
patch tree reduce : 2.11 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 383.47 us (94.9%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.5%)
Info: cfl dt = 0.0039616605692569 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4658e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.18559268787378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9111819308826393, dt = 0.0039616605692569
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.7%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 302.08 us (93.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.2%)
Info: cfl dt = 0.003961660569268886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3960e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.66643175066861 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9151435914518963, dt = 0.003961660569268886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 326.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.2%)
Info: cfl dt = 0.003961660569281443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4488e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.81543163353714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9191052520211651, dt = 0.003961660569281443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 329.42 us (94.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.1%)
Info: cfl dt = 0.003961660569294593 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4407e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.63806842695345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9230669125904466, dt = 0.003961660569294593
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.1%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 294.26 us (93.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (62.2%)
Info: cfl dt = 0.003961660569308358 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4899e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.70924126383208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9270285731597412, dt = 0.003961660569308358
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 330.49 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.8%)
Info: cfl dt = 0.003961660569322762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5086e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.11554131659638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9309902337290495, dt = 0.003961660569322762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 289.41 us (93.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (59.5%)
Info: cfl dt = 0.00396166056933783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1334e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.95126944326103 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9349518942983723, dt = 0.00396166056933783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 2.49 us (0.7%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 313.94 us (93.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (59.5%)
Info: cfl dt = 0.003961660569353588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1579e+05 | 65536 | 2 | 2.075e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.72230708712911 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9389135548677101, dt = 0.003961660569353588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.6%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 344.22 us (94.3%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.5%)
Info: cfl dt = 0.003961660569370062 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1605e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.5400770228764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9428752154370637, dt = 0.003961660569370062
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 316.40 us (94.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.7%)
Info: cfl dt = 0.003961660569387279 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3189e+05 | 65536 | 2 | 1.975e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.22513876308918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9468368760064337, dt = 0.003961660569387279
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.5%)
patch tree reduce : 2.32 us (0.6%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 372.02 us (94.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.4%)
Info: cfl dt = 0.003961660569405266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2398e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.26747341285697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.950798536575821, dt = 0.003961660569405266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 364.49 us (95.0%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (65.6%)
Info: cfl dt = 0.003961660569424051 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1661e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.66252002195048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9547601971452263, dt = 0.003961660569424051
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.4%)
patch tree reduce : 2.56 us (0.7%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 367.76 us (94.9%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.8%)
Info: cfl dt = 0.003961660569443664 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1039e+05 | 65536 | 2 | 2.111e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.54639556934454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9587218577146503, dt = 0.003961660569443664
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.3%)
patch tree reduce : 2.12 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 432.02 us (95.3%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.5%)
Info: cfl dt = 0.003961660569464135 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1438e+05 | 65536 | 2 | 2.085e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.41467099662766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.962683518284094, dt = 0.003961660569464135
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.4%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 348.87 us (94.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (60.0%)
Info: cfl dt = 0.003961660569485497 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0475e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.08182544948657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9666451788535582, dt = 0.003961660569485497
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 337.94 us (94.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.2%)
Info: cfl dt = 0.003961660569507778 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0849e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.89632986024266 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9706068394230437, dt = 0.003961660569507778
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 354.98 us (94.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.0%)
Info: cfl dt = 0.003961660569531014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3601e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.88535008675083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9745684999925515, dt = 0.003961660569531014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 314.39 us (94.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.6%)
Info: cfl dt = 0.003961660569555238 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2434e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.34504410613582 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9785301605620825, dt = 0.003961660569555238
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 355.71 us (94.3%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (66.5%)
Info: cfl dt = 0.003961660569580483 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9798e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.60966094299238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9824918211316378, dt = 0.003961660569580483
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 337.56 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (66.3%)
Info: cfl dt = 0.003961660569606787 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4288e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.38004033255949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9864534817012183, dt = 0.003961660569606787
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 327.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.8%)
Info: cfl dt = 0.003961660569634182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2778e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.09440934237733 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.990415142270825, dt = 0.003961660569634182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 347.57 us (94.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.2%)
Info: cfl dt = 0.003961660569662711 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3156e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.91621919325341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9943768028404593, dt = 0.003961660569662711
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.5%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 351.64 us (94.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.9%)
Info: cfl dt = 0.00396166056969241 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1728e+05 | 65536 | 2 | 2.066e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.04734378563077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.998338463410122, dt = 0.00396166056969241
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.58 us (1.2%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 361.36 us (95.3%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.8%)
Info: cfl dt = 0.003961660569723318 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1707e+05 | 65536 | 2 | 2.067e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.00056218898199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0023001239798144, dt = 0.003961660569723318
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (1.3%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 344.45 us (95.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (62.9%)
Info: cfl dt = 0.003961660569755474 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1873e+05 | 65536 | 2 | 2.056e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.36306564661047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0062617845495376, dt = 0.003961660569755474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.6%)
patch tree reduce : 2.82 us (0.8%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 343.09 us (94.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (62.7%)
Info: cfl dt = 0.003961660569788922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3551e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.77540474595786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.010223445119293, dt = 0.003961660569788922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 2.52 us (0.8%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 312.53 us (93.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.8%)
Info: cfl dt = 0.0039616605698237035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3731e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.16860410838144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.014185105689082, dt = 0.0039616605698237035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.8%)
patch tree reduce : 2.47 us (0.8%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 308.36 us (93.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (60.8%)
Info: cfl dt = 0.003961660569859862 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6066e+05 | 65536 | 2 | 1.817e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.48658465005164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0181467662589057, dt = 0.003961660569859862
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 320.74 us (94.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (62.3%)
Info: cfl dt = 0.003961660569897443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4242e+05 | 65536 | 2 | 1.914e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.51850545731071 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0221084268287655, dt = 0.003961660569897443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.6%)
patch tree reduce : 2.27 us (0.6%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 359.83 us (94.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.8%)
Info: cfl dt = 0.003961660569936492 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8562e+05 | 65536 | 2 | 1.700e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.91828535079858 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.026070087398663, dt = 0.003961660569936492
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 325.67 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.71 us (94.6%)
Info: cfl dt = 0.003961660569977054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1876e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.12977350044835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0300317479685994, dt = 0.003961660569977054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 291.35 us (93.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.3%)
Info: cfl dt = 0.003961660570019179 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2420e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.31497404918905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0339934085385765, dt = 0.003961660570019179
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.1%)
patch tree reduce : 2.42 us (0.8%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 295.23 us (93.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.6%)
Info: cfl dt = 0.003961660570062916 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5509e+05 | 65536 | 2 | 1.846e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.27589204794327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0379550691085957, dt = 0.003961660570062916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 307.09 us (93.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.8%)
Info: cfl dt = 0.0039616605701083135 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4046e+05 | 65536 | 2 | 1.925e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.09164745798786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0419167296786587, dt = 0.0039616605701083135
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.5%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 336.31 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.6%)
Info: cfl dt = 0.003961660570155426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2635e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.78253944932631 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.045878390248767, dt = 0.003961660570155426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.8%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 317.57 us (93.5%)
LB move op cnt : 0
LB apply : 4.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.4%)
Info: cfl dt = 0.003961660570204304 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1813e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.99404165198077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0498400508189223, dt = 0.003961660570204304
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.8%)
patch tree reduce : 2.29 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 328.01 us (94.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.7%)
Info: cfl dt = 0.003961660570255002 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2973e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.51786714475094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0538017113891265, dt = 0.003961660570255002
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 289.00 us (93.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (62.4%)
Info: cfl dt = 0.003961660570307575 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2801e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.14390360077047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0577633719593815, dt = 0.003961660570307575
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 289.17 us (93.5%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.0%)
Info: cfl dt = 0.003961660570362079 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3427e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.50504564823554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0617250325296892, dt = 0.003961660570362079
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 274.05 us (93.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.0%)
Info: cfl dt = 0.003961660570418575 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4832e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.56439340803736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0656866931000513, dt = 0.003961660570418575
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 304.36 us (94.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.8%)
Info: cfl dt = 0.0039616605704771175 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5100e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.14695047250251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0696483536704697, dt = 0.0039616605704771175
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.8%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 272.85 us (93.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.3%)
Info: cfl dt = 0.0039616605705377695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4877e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.66071116908846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0736100142409468, dt = 0.0039616605705377695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 327.55 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.9%)
Info: cfl dt = 0.003961660570600592 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5070e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.08159311721691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0775716748114845, dt = 0.003961660570600592
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.8%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 275.44 us (93.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (60.9%)
Info: cfl dt = 0.003961660570665648 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5038e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0129540733498 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.081533335382085, dt = 0.003961660570665648
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 302.97 us (93.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.9%)
Info: cfl dt = 0.003961660570733003 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5034e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.00327775082373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0854949959527507, dt = 0.003961660570733003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 275.23 us (93.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.0%)
Info: cfl dt = 0.003961660570802721 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3608e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.8994473175894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0894566565234838, dt = 0.003961660570802721
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 291.00 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.3%)
Info: cfl dt = 0.003961660570874871 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3839e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.40288021945796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0934183170942866, dt = 0.003961660570874871
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.8%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 266.66 us (93.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.6%)
Info: cfl dt = 0.00396166057094952 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5416e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.83422047600341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0973799776651614, dt = 0.00396166057094952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (2.1%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 266.78 us (93.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.9%)
Info: cfl dt = 0.0039616605710267394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5310e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6035951651937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.101341638236111, dt = 0.0039616605710267394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (2.0%)
patch tree reduce : 2.63 us (0.9%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 275.50 us (93.1%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (59.9%)
Info: cfl dt = 0.003961660571106599 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5690e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.43032343618691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1053032988071376, dt = 0.003961660571106599
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 321.65 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.7%)
Info: cfl dt = 0.003961660571189175 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1860e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.09545393884814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1092649593782442, dt = 0.003961660571189175
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.5%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 330.52 us (94.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.0%)
Info: cfl dt = 0.003961660571274538 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5633e+05 | 65536 | 2 | 1.839e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.54469676119807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1132266199494334, dt = 0.003961660571274538
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.3%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 389.07 us (95.2%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.0%)
Info: cfl dt = 0.003961660571362767 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1526e+05 | 65536 | 2 | 2.079e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.60683616648527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1171882805207078, dt = 0.003961660571362767
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.3%)
patch tree reduce : 1.89 us (0.4%)
gen split merge : 1.06 us (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 406.38 us (95.5%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.3%)
Info: cfl dt = 0.003961660571453938 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.7184e+05 | 65536 | 2 | 2.411e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.15733354211935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1211499410920707, dt = 0.003961660571453938
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.3%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 400.85 us (95.3%)
LB move op cnt : 0
LB apply : 3.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (64.6%)
Info: cfl dt = 0.0039616605715481305 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0276e+05 | 65536 | 2 | 2.165e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.88612716736067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1251116016635245, dt = 0.0039616605715481305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.3%)
patch tree reduce : 1.94 us (0.4%)
gen split merge : 1.43 us (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.3%)
LB compute : 423.79 us (95.3%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.1%)
Info: cfl dt = 0.003961660571645427 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1572e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.46928273913441 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1290732622350728, dt = 0.003961660571645427
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 327.10 us (94.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.8%)
Info: cfl dt = 0.003961660571745906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0485e+05 | 65536 | 2 | 2.150e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.34148184586203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1330349228067182, dt = 0.003961660571745906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.4%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 354.04 us (94.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (62.4%)
Info: cfl dt = 0.003961660571849656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2337e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.13382967943794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.136996583378464, dt = 0.003961660571849656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 311.47 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (63.7%)
Info: cfl dt = 0.0039616605719567585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3163e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.9314614532783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1409582439503136, dt = 0.0039616605719567585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 2.29 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 339.54 us (94.2%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (59.7%)
Info: cfl dt = 0.003961660572067303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3168e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.94341274748288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1449199045222704, dt = 0.003961660572067303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.3%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 393.74 us (95.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (67.2%)
Info: cfl dt = 0.003961660572181378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7881e+05 | 65536 | 2 | 1.730e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.43740022075066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1488815650943378, dt = 0.003961660572181378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 2.54 us (0.8%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 315.16 us (93.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.1%)
Info: cfl dt = 0.003961660572299072 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8180e+05 | 65536 | 2 | 1.717e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.08741699811168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.152843225666519, dt = 0.003961660572299072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 334.27 us (94.5%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (64.4%)
Info: cfl dt = 0.003961660572420481 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2649e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.81265225347252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.156804886238818, dt = 0.003961660572420481
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 323.22 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.1%)
Info: cfl dt = 0.003961660572545696 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6935e+05 | 65536 | 2 | 1.774e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.37764714321911 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1607665468112385, dt = 0.003961660572545696
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 337.95 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.0%)
Info: cfl dt = 0.0039616605726748135 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8329e+05 | 65536 | 2 | 1.710e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.41141479869972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1647282073837841, dt = 0.0039616605726748135
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 317.01 us (94.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (60.4%)
Info: cfl dt = 0.003961660572807932 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2960e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.48903620180252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.168689867956459, dt = 0.003961660572807932
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 307.66 us (93.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (57.0%)
Info: cfl dt = 0.003961660572945149 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3859e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.44548759387148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.172651528529267, dt = 0.003961660572945149
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 333.86 us (94.4%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.4%)
Info: cfl dt = 0.003961660573086567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2240e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.92235279847172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.176613189102212, dt = 0.003961660573086567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (2.0%)
patch tree reduce : 2.35 us (0.8%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 274.23 us (93.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.2%)
Info: cfl dt = 0.003961660573232288 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6383e+05 | 65536 | 2 | 1.801e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.17756546871992 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1805748496752986, dt = 0.003961660573232288
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 345.97 us (93.7%)
LB move op cnt : 0
LB apply : 6.12 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.2%)
Info: cfl dt = 0.003961660573382417 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5447e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.90292180384863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1845365102485308, dt = 0.003961660573382417
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 279.15 us (93.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.2%)
Info: cfl dt = 0.0039616605735370595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5276e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.52915656236384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1884981708219131, dt = 0.0039616605735370595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 275.91 us (93.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.3%)
Info: cfl dt = 0.0039616605736963245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2262e+05 | 65536 | 2 | 2.031e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.20784687823944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1924598313954502, dt = 0.0039616605736963245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 372.64 us (95.0%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (61.3%)
Info: cfl dt = 0.0039616605738603235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4520e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.88472578432979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1964214919691465, dt = 0.0039616605738603235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 312.62 us (94.2%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (59.8%)
Info: cfl dt = 0.003961660574029167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8503e+05 | 65536 | 2 | 1.702e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.79129942813533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2003831525430069, dt = 0.003961660574029167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.9%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 339.83 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.7%)
Info: cfl dt = 0.0039616605742029696 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9990e+05 | 65536 | 2 | 1.639e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.02645042204963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.204344813117036, dt = 0.0039616605742029696
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.37 us (7.2%)
patch tree reduce : 2.36 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 322.91 us (88.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.6%)
Info: cfl dt = 0.003961660574381847 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0546e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.23627259622273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.208306473691239, dt = 0.003961660574381847
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.3%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 379.52 us (95.0%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (67.8%)
Info: cfl dt = 0.003961660574565919 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4679e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.2304924549625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2122681342656207, dt = 0.003961660574565919
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 338.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.4%)
Info: cfl dt = 0.003961660574755303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4536e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.91840300187721 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2162297948401866, dt = 0.003961660574755303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.5%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 321.44 us (80.6%)
LB move op cnt : 0
LB apply : 4.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.6%)
Info: cfl dt = 0.003961660574950122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4264e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.32848740894896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2201914554149418, dt = 0.003961660574950122
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 334.55 us (94.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.4%)
Info: cfl dt = 0.0039616605751505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2356e+05 | 65536 | 2 | 2.025e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.4125364377929 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.224153115989892, dt = 0.0039616605751505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 337.52 us (94.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (63.4%)
Info: cfl dt = 0.003961660575356562 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5673e+05 | 65536 | 2 | 1.837e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.63138153399922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2281147765650424, dt = 0.003961660575356562
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.8%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 312.12 us (94.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (61.0%)
Info: cfl dt = 0.003961660575568439 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3185e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.97954876992314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.232076437140399, dt = 0.003961660575568439
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.4%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 375.08 us (94.9%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.1%)
Info: cfl dt = 0.003961660575786258 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3564e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.80373918730935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2360380977159673, dt = 0.003961660575786258
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 317.04 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.5%)
Info: cfl dt = 0.0039616605760101516 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4689e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.2529820770329 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2399997582917535, dt = 0.0039616605760101516
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 308.74 us (94.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.3%)
Info: cfl dt = 0.003961660576240255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4429e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.68661257855136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2439614188677637, dt = 0.003961660576240255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 318.40 us (93.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (59.7%)
Info: cfl dt = 0.003961660576476705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4595e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.04697333497222 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.247923079444004, dt = 0.003961660576476705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 311.14 us (94.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.3%)
Info: cfl dt = 0.003961660576719638 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8539e+05 | 65536 | 2 | 1.701e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.86926599211024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2518847400204807, dt = 0.003961660576719638
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 339.52 us (94.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.3%)
Info: cfl dt = 0.003961660576969195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4317e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.44388412692909 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2558464005972003, dt = 0.003961660576969195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.9%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 310.56 us (94.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.7%)
Info: cfl dt = 0.0039616605772255205 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2400e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.27099019022457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2598080611741695, dt = 0.0039616605772255205
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 347.60 us (94.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.0%)
Info: cfl dt = 0.003961660577488759 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5079e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.10117785297554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.263769721751395, dt = 0.003961660577488759
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (0.9%)
patch tree reduce : 2.44 us (0.3%)
gen split merge : 951.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.05 us (0.1%)
LB compute : 688.70 us (97.0%)
LB move op cnt : 0
LB apply : 3.89 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (68.2%)
Info: cfl dt = 0.003961660577759057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4520e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.8844922311726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2677313823288838, dt = 0.003961660577759057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 309.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.5%)
Info: cfl dt = 0.0039616605780365645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0288e+05 | 65536 | 2 | 1.627e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.67559331396902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2716930429066429, dt = 0.0039616605780365645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 337.99 us (94.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.0%)
Info: cfl dt = 0.003961660578321431 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4484e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.80708918501963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2756547034846795, dt = 0.003961660578321431
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 344.05 us (94.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.0%)
Info: cfl dt = 0.003961660578613814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4557e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.96516240025404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.279616364063001, dt = 0.003961660578613814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.8%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 311.46 us (93.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.9%)
Info: cfl dt = 0.003961660578913866 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4208e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.20507615383285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2835780246416149, dt = 0.003961660578913866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.4%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 365.71 us (94.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.7%)
Info: cfl dt = 0.0039616605792217475 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4052e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.86665260250513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2875396852205288, dt = 0.0039616605792217475
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.6%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 348.31 us (94.3%)
LB move op cnt : 0
LB apply : 4.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.3%)
Info: cfl dt = 0.00396166057953762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2097e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.61149286249723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2915013457997504, dt = 0.00396166057953762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.3%)
patch tree reduce : 2.44 us (0.6%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 364.20 us (94.8%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.3%)
Info: cfl dt = 0.003961660579861644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0496e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.12824233867474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.295463006379288, dt = 0.003961660579861644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 21.67 us (6.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 303.44 us (88.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.4%)
Info: cfl dt = 0.003961660580193986 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4433e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.69427048143606 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2994246669591496, dt = 0.003961660580193986
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 1.57 us (0.5%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 310.91 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.1%)
Info: cfl dt = 0.003961660580534814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6264e+05 | 65536 | 2 | 1.807e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.91741916678278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3033863275393436, dt = 0.003961660580534814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 302.31 us (94.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.9%)
Info: cfl dt = 0.003961660580884298 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3787e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.28879621733586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3073479881198784, dt = 0.003961660580884298
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.5%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 329.11 us (94.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.1%)
Info: cfl dt = 0.00396166058124261 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5500e+05 | 65536 | 2 | 1.846e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.2548706079329 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3113096487007627, dt = 0.00396166058124261
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 307.49 us (93.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (61.2%)
Info: cfl dt = 0.003961660581609925 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4022e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.80095604875112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3152713092820054, dt = 0.003961660581609925
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 336.98 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.0%)
Info: cfl dt = 0.00396166058198642 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9934e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.90449652669534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3192329698636154, dt = 0.00396166058198642
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.69 us (0.5%)
LB compute : 313.43 us (93.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.2%)
Info: cfl dt = 0.003961660582372274 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3584e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.84768391004536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3231946304456017, dt = 0.003961660582372274
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 339.36 us (94.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (62.5%)
Info: cfl dt = 0.0039616605827676715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3095e+05 | 65536 | 2 | 1.980e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.0224936386986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.327156291027974, dt = 0.0039616605827676715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 341.94 us (94.6%)
LB move op cnt : 0
LB apply : 3.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.5%)
Info: cfl dt = 0.003961660583172795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3006e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.59016866489912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3311179516107416, dt = 0.003961660583172795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 2.50 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 359.83 us (94.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.2%)
Info: cfl dt = 0.003961660583587831 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5038e+05 | 65536 | 2 | 1.870e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.25040429255075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3350796121939144, dt = 0.003961660583587831
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 345.05 us (94.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.2%)
Info: cfl dt = 0.003961660584012971 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6433e+05 | 65536 | 2 | 1.799e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.28569836359722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3390412727775023, dt = 0.003961660584012971
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 300.45 us (93.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.3%)
Info: cfl dt = 0.003961660584448405 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4604e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0669642577933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3430029333615152, dt = 0.003961660584448405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 2.50 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 328.19 us (94.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.3%)
Info: cfl dt = 0.003961660584894329 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4139e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.05519204308776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3469645939459636, dt = 0.003961660584894329
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.8%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 279.65 us (93.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.7%)
Info: cfl dt = 0.003961660585350938 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4325e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.46092105630419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3509262545308578, dt = 0.003961660585350938
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 318.41 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (59.4%)
Info: cfl dt = 0.003961660585818434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3375e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.39197629683837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3548879151162088, dt = 0.003961660585818434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 318.69 us (94.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.0%)
Info: cfl dt = 0.003961660586297019 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6976e+05 | 65536 | 2 | 1.772e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.46795130101881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3588495757020271, dt = 0.003961660586297019
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 324.29 us (94.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.0%)
Info: cfl dt = 0.003961660586786895 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3452e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.56102671625125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3628112362883242, dt = 0.003961660586786895
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 347.80 us (94.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.5%)
Info: cfl dt = 0.0039616605872882715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3402e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.45193134649853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3667728968751112, dt = 0.0039616605872882715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 320.14 us (94.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.7%)
Info: cfl dt = 0.003961660587801358 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4713e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.30450228007393 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3707345574623995, dt = 0.003961660587801358
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 355.89 us (94.8%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.3%)
Info: cfl dt = 0.003961660588326366 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8156e+05 | 65536 | 2 | 1.718e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.03453942934449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.374696218050201, dt = 0.003961660588326366
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 332.55 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (57.0%)
Info: cfl dt = 0.003961660588863512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9067e+05 | 65536 | 2 | 1.678e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.01704306392806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3786578786385273, dt = 0.003961660588863512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 312.52 us (94.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.7%)
Info: cfl dt = 0.003961660589413012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8841e+05 | 65536 | 2 | 1.687e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.52602833985489 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3826195392273908, dt = 0.003961660589413012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 323.38 us (94.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.2%)
Info: cfl dt = 0.003961660589975088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4441e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.7119351044075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3865811998168038, dt = 0.003961660589975088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.4%)
patch tree reduce : 2.38 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 350.01 us (94.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.6%)
Info: cfl dt = 0.003961660590549964 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2302e+05 | 65536 | 2 | 2.029e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.29553483876998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3905428604067789, dt = 0.003961660590549964
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.3%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 382.70 us (95.4%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.1%)
Info: cfl dt = 0.003961660591137862 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1388e+05 | 65536 | 2 | 2.088e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.30605665196678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3945045209973288, dt = 0.003961660591137862
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.4%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 419.54 us (95.3%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.3%)
Info: cfl dt = 0.003961660591739015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3937e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.61581589453002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3984661815884667, dt = 0.003961660591739015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.4%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 349.52 us (94.6%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.0%)
Info: cfl dt = 0.00396166059235365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3670e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.03412948067802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4024278421802057, dt = 0.00396166059235365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.9%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 304.37 us (93.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.7%)
Info: cfl dt = 0.0039616605929820034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2822e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.18856434650596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4063895027725593, dt = 0.0039616605929820034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.4%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 326.65 us (94.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.0%)
Info: cfl dt = 0.003961660593624311 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5047e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0324309315904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4103511633655412, dt = 0.003961660593624311
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 276.90 us (93.5%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.5%)
Info: cfl dt = 0.003961660594280812 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5442e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.89025601339426 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4143128239591656, dt = 0.003961660594280812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 322.21 us (94.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.4%)
Info: cfl dt = 0.003961660594951749 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0375e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.86340008303185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4182744845534463, dt = 0.003961660594951749
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 316.82 us (94.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (60.4%)
Info: cfl dt = 0.0039616605956373655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6014e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.13519354382927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.422236145148398, dt = 0.0039616605956373655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 294.20 us (93.9%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.8%)
Info: cfl dt = 0.003961660596337911 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3585e+05 | 65536 | 2 | 1.951e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.08722662952154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4261978057440354, dt = 0.003961660596337911
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 352.21 us (94.5%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.5%)
Info: cfl dt = 0.0039616605970536345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9708e+05 | 65536 | 2 | 1.650e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.4138133547626 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4301594663403734, dt = 0.0039616605970536345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 323.39 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.6%)
Info: cfl dt = 0.00396166059778479 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4258e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.31544081439229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.434121126937427, dt = 0.00396166059778479
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.5%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 305.19 us (94.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.3%)
Info: cfl dt = 0.003961660598531633 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3499e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.66215820483718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4380827875352118, dt = 0.003961660598531633
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.2%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 277.35 us (92.9%)
LB move op cnt : 0
LB apply : 4.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.0%)
Info: cfl dt = 0.003961660599294423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3174e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.95515974051126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4420444481337433, dt = 0.003961660599294423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.5%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 330.62 us (94.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.5%)
Info: cfl dt = 0.003961660600073421 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4834e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.56816922648109 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4460061087330378, dt = 0.003961660600073421
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 307.08 us (94.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.6%)
Info: cfl dt = 0.0039616606008688925 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5076e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.09395194949143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4499677693331112, dt = 0.0039616606008688925
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.9%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 269.39 us (93.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.0%)
Info: cfl dt = 0.003961660601681104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5247e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.46734441462957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4539294299339802, dt = 0.003961660601681104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 306.58 us (93.9%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.2%)
Info: cfl dt = 0.003961660602510327 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4779e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.4474799918192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4578910905356612, dt = 0.003961660602510327
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.4%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 369.06 us (95.1%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (62.9%)
Info: cfl dt = 0.003961660603356833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8963e+05 | 65536 | 2 | 1.682e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.79158849648782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4618527511381716, dt = 0.003961660603356833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.4%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 344.98 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.4%)
Info: cfl dt = 0.003961660604220899 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4848e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.59813223963994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4658144117415284, dt = 0.003961660604220899
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 322.87 us (94.4%)
LB move op cnt : 0
LB apply : 3.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.2%)
Info: cfl dt = 0.0039616606051028035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3252e+05 | 65536 | 2 | 1.971e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.36301626416957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4697760723457494, dt = 0.0039616606051028035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 343.08 us (94.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.0%)
Info: cfl dt = 0.003961660606002829 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2260e+05 | 65536 | 2 | 2.031e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.20499519972286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.473737732950852, dt = 0.003961660606002829
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.5%)
patch tree reduce : 2.16 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 376.01 us (94.9%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.8%)
Info: cfl dt = 0.00396166060692126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4374e+05 | 65536 | 2 | 1.907e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.8059546806464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.477699393556855, dt = 0.00396166060692126
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 311.05 us (94.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (60.6%)
Info: cfl dt = 0.003961660607858385 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9075e+05 | 65536 | 2 | 1.677e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.03557997923664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4816610541637762, dt = 0.003961660607858385
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 308.50 us (94.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.4%)
Info: cfl dt = 0.003961660608814494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4821e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.53931558393326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4856227147716345, dt = 0.003961660608814494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 329.45 us (94.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (58.9%)
Info: cfl dt = 0.003961660609789881 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1943e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.27584960545872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.489584375380449, dt = 0.003961660609789881
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 310.25 us (94.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (61.7%)
Info: cfl dt = 0.003961660610784842 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3869e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.46814458196378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4935460359902388, dt = 0.003961660610784842
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 350.07 us (94.5%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (61.5%)
Info: cfl dt = 0.003961660611799676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3677e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.04937802626584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4975076966010237, dt = 0.003961660611799676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 304.97 us (93.9%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.4%)
Info: cfl dt = 0.003961660612834687 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0957e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.13169721784207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5014693572128233, dt = 0.003961660612834687
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.4%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 367.67 us (94.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (61.5%)
Info: cfl dt = 0.0039616606138901805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4394e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.60985990685143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.505431017825658, dt = 0.0039616606138901805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.5%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 336.85 us (94.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.2%)
Info: cfl dt = 0.003961660614966465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3509e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.68352213418025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5093926784395482, dt = 0.003961660614966465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 2.33 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 321.80 us (94.0%)
LB move op cnt : 0
LB apply : 4.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (64.0%)
Info: cfl dt = 0.0039616606160638515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8065e+05 | 65536 | 2 | 1.722e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.83719591562442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5133543390545146, dt = 0.0039616606160638515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 308.40 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (58.0%)
Info: cfl dt = 0.0039616606171826545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8056e+05 | 65536 | 2 | 1.722e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.81838621287355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5173159996705785, dt = 0.0039616606171826545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 307.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.0%)
Info: cfl dt = 0.003961660618323192 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4645e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.15658656588822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5212776602877611, dt = 0.003961660618323192
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.4%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.32 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 369.80 us (94.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (65.8%)
Info: cfl dt = 0.003961660619485785 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4156e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.09209278887836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5252393209060844, dt = 0.003961660619485785
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 300.01 us (94.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (60.5%)
Info: cfl dt = 0.0039616606206707575 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9472e+05 | 65536 | 2 | 2.224e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.13819948530895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5292009815255703, dt = 0.0039616606206707575
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (0.9%)
patch tree reduce : 2.05 us (0.3%)
gen split merge : 1.33 us (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 611.67 us (96.8%)
LB move op cnt : 0
LB apply : 3.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.5%)
Info: cfl dt = 0.003961660621878434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8546e+05 | 65536 | 2 | 1.700e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.88382190812051 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.533162642146241, dt = 0.003961660621878434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.5%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 312.42 us (94.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (62.8%)
Info: cfl dt = 0.003961660623109147 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3498e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.66021420521687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5371243027681194, dt = 0.003961660623109147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 307.27 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.4%)
Info: cfl dt = 0.003961660624363228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2852e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.25540618795831 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5410859633912286, dt = 0.003961660624363228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.4%)
patch tree reduce : 2.29 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 349.18 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (64.5%)
Info: cfl dt = 0.003961660625641014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3639e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.96716125314481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.545047624015592, dt = 0.003961660625641014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.8%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 326.99 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.5%)
Info: cfl dt = 0.003961660626942844 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4299e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.40301206342473 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5490092846412329, dt = 0.003961660626942844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 290.78 us (93.6%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.1%)
Info: cfl dt = 0.003961660628269058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4105e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.98218872185245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5529709452681757, dt = 0.003961660628269058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 2.36 us (0.8%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 291.78 us (93.6%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.4%)
Info: cfl dt = 0.003961660629620004 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4170e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.12381546623365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5569326058964448, dt = 0.003961660629620004
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 297.42 us (93.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (63.0%)
Info: cfl dt = 0.0039616606309960285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4368e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.55486913218668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5608942665260648, dt = 0.0039616606309960285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 335.44 us (94.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.3%)
Info: cfl dt = 0.003961660632397485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2102e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.62321011782416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5648559271570608, dt = 0.003961660632397485
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 320.74 us (93.9%)
LB move op cnt : 0
LB apply : 4.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.4%)
Info: cfl dt = 0.003961660633824726 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3411e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.4716961528012 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5688175877894583, dt = 0.003961660633824726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 2.63 us (0.8%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 328.75 us (94.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.6%)
Info: cfl dt = 0.003961660635278111 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1616e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.56581010471507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.572779248423283, dt = 0.003961660635278111
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 2.70 us (0.8%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 313.13 us (93.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.7%)
Info: cfl dt = 0.003961660636757998 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3313e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.25831859347764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5767409090585611, dt = 0.003961660636757998
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 329.62 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.4%)
Info: cfl dt = 0.003961660638264755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2217e+05 | 65536 | 2 | 2.034e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.11174760019931 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5807025696953192, dt = 0.003961660638264755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.6%)
patch tree reduce : 2.27 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 360.13 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (63.1%)
Info: cfl dt = 0.003961660639798747 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1415e+05 | 65536 | 2 | 2.086e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.36637220596005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.584664230333584, dt = 0.003961660639798747
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.5%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 369.47 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.9%)
Info: cfl dt = 0.003961660641360343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3494e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.65120151776829 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5886258909733828, dt = 0.003961660641360343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 303.02 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (60.9%)
Info: cfl dt = 0.0039616606429499195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4450e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.73265008835658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5925875516147432, dt = 0.0039616606429499195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 7.76 us (2.2%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 322.09 us (92.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.6%)
Info: cfl dt = 0.00396166064456785 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2436e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.34956875120317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5965492122576932, dt = 0.00396166064456785
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 342.44 us (94.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.5%)
Info: cfl dt = 0.003961660646214517 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4222e+05 | 65536 | 2 | 1.915e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.47462604299365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.600510872902261, dt = 0.003961660646214517
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.4%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 370.55 us (94.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.6%)
Info: cfl dt = 0.003961660647890302 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3404e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.45502293840778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6044725335484755, dt = 0.003961660647890302
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 321.50 us (94.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.3%)
Info: cfl dt = 0.0039616606495955905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0411e+05 | 65536 | 2 | 2.155e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.17981351976334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6084341941963658, dt = 0.0039616606495955905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.3%)
patch tree reduce : 1.90 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.3%)
LB compute : 432.92 us (95.3%)
LB move op cnt : 0
LB apply : 4.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (67.1%)
Info: cfl dt = 0.0039616606513307746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5473e+05 | 65536 | 2 | 1.847e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.1969491783442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6123958548459614, dt = 0.0039616606513307746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 363.54 us (94.9%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.9%)
Info: cfl dt = 0.003961660653096244 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2423e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.32161923789448 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6163575154972922, dt = 0.003961660653096244
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 345.17 us (94.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.5%)
Info: cfl dt = 0.003961660654892396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7230e+05 | 65536 | 2 | 1.760e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.01960763912601 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6203191761503886, dt = 0.003961660654892396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 339.89 us (94.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.8%)
Info: cfl dt = 0.003961660656719628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2020e+05 | 65536 | 2 | 2.047e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.68124255794271 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.624280836805281, dt = 0.003961660656719628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.5%)
patch tree reduce : 2.36 us (0.6%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 356.86 us (94.7%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (64.2%)
Info: cfl dt = 0.003961660658578344 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2248e+05 | 65536 | 2 | 2.032e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.17804280212985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6282424974620007, dt = 0.003961660658578344
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.3%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 732.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 361.74 us (95.2%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (65.0%)
Info: cfl dt = 0.003961660660468948 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5310e+05 | 65536 | 2 | 1.856e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.84262419135253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.632204158120579, dt = 0.003961660660468948
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 302.51 us (94.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.0%)
Info: cfl dt = 0.003961660662391849 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1636e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.60808298442495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.636165818781048, dt = 0.003961660662391849
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 295.84 us (94.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.2%)
Info: cfl dt = 0.00396166066434746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0522e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.18387019355849 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401274794434397, dt = 0.00396166066434746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 292.78 us (93.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (58.8%)
Info: cfl dt = 0.003961660666336194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4903e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.71707699051814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6440891401077873, dt = 0.003961660666336194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 323.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.1%)
Info: cfl dt = 0.003961660668358471 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8569e+05 | 65536 | 2 | 1.699e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.93307870971614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6480508007741235, dt = 0.003961660668358471
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.4%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 353.59 us (94.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.2%)
Info: cfl dt = 0.00396166067041471 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5141e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.23603782099032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.652012461442482, dt = 0.00396166067041471
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.4%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 359.01 us (94.8%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.7%)
Info: cfl dt = 0.003961660672505339 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4611e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0832795920519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6559741221128967, dt = 0.003961660672505339
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 2.33 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 323.41 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.5%)
Info: cfl dt = 0.003961660674630784 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5155e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.26554857789561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.659935782785402, dt = 0.003961660674630784
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 322.61 us (92.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (60.9%)
Info: cfl dt = 0.003961660676791476 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5709e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.47132278068187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6638974434600329, dt = 0.003961660676791476
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 313.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (60.7%)
Info: cfl dt = 0.003961660678987849 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5255e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.48513540617796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6678591041368243, dt = 0.003961660678987849
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.8%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 289.24 us (93.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.2%)
Info: cfl dt = 0.003961660681220343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4846e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.59420641509857 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.671820764815812, dt = 0.003961660681220343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 2.56 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 327.02 us (94.4%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.2%)
Info: cfl dt = 0.003961660683489396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1118e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.48023457178695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6757824254970324, dt = 0.003961660683489396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 345.17 us (94.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.2%)
Info: cfl dt = 0.003961660685795454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1754e+05 | 65536 | 2 | 2.064e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.10419991784052 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6797440861805217, dt = 0.003961660685795454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.4%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 372.37 us (95.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (63.5%)
Info: cfl dt = 0.003961660688138965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1617e+05 | 65536 | 2 | 2.073e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.80501581344772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6837057468663172, dt = 0.003961660688138965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.3%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 391.37 us (95.2%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.3%)
Info: cfl dt = 0.0039616606905203775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9427e+05 | 65536 | 2 | 1.662e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.80147234333646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6876674075544562, dt = 0.0039616606905203775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 346.00 us (94.8%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (66.8%)
Info: cfl dt = 0.003961660692940148 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1991e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.3810507584274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6916290682449766, dt = 0.003961660692940148
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.5%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 358.59 us (94.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (64.5%)
Info: cfl dt = 0.0039616606953987304 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5659e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.36263597239902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6955907289379168, dt = 0.0039616606953987304
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.4%)
LB compute : 331.73 us (94.2%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.9%)
Info: cfl dt = 0.003961660697896588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5618e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.27398189102178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6995523896333156, dt = 0.003961660697896588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 327.83 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (63.4%)
Info: cfl dt = 0.003961660700434184 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2353e+05 | 65536 | 2 | 2.026e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.40580076165901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.703514050331212, dt = 0.003961660700434184
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.4%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 388.79 us (95.1%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.9%)
Info: cfl dt = 0.003961660703011986 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7957e+05 | 65536 | 2 | 1.727e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.60306094879716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7074757110316463, dt = 0.003961660703011986
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 317.89 us (94.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.5%)
Info: cfl dt = 0.003961660705630462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3481e+05 | 65536 | 2 | 1.957e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.86168888184255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7114373717346583, dt = 0.003961660705630462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.5%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 355.63 us (94.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.8%)
Info: cfl dt = 0.003961660708290088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5808e+05 | 65536 | 2 | 1.830e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.92483108950421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7153990324402888, dt = 0.003961660708290088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 337.38 us (94.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.7%)
Info: cfl dt = 0.003961660710991338 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7447e+05 | 65536 | 2 | 1.750e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.49277427844825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.719360693148579, dt = 0.003961660710991338
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 303.20 us (94.1%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.9%)
Info: cfl dt = 0.003961660713734695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7051e+05 | 65536 | 2 | 1.769e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.62964075991758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7233223538595703, dt = 0.003961660713734695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 306.93 us (93.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (59.9%)
Info: cfl dt = 0.00396166071652064 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8755e+05 | 65536 | 2 | 1.691e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.33965871342787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.727284014573305, dt = 0.00396166071652064
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 310.21 us (94.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.3%)
Info: cfl dt = 0.003961660719349663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5054e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.04579073550103 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7312456752898258, dt = 0.003961660719349663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.9%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 271.95 us (93.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (63.0%)
Info: cfl dt = 0.00396166072222225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4755e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.39707922547085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7352073360091753, dt = 0.00396166072222225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.8%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 264.30 us (93.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.2%)
Info: cfl dt = 0.0039616607251388965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0685e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.53839185507219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7391689967313975, dt = 0.0039616607251388965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 328.62 us (94.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.4%)
Info: cfl dt = 0.003961660728100099 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1016e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.25961237562679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7431306574565364, dt = 0.003961660728100099
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 334.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (63.0%)
Info: cfl dt = 0.003961660731106356 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5257e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.48775302858826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7470923181846365, dt = 0.003961660731106356
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 335.98 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.7%)
Info: cfl dt = 0.003961660734158171 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5457e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.9239204063608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7510539789157429, dt = 0.003961660734158171
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 292.79 us (93.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.6%)
Info: cfl dt = 0.00396166073725605 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8947e+05 | 65536 | 2 | 1.683e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.75755735348366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.755015639649901, dt = 0.00396166073725605
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 330.30 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.0%)
Info: cfl dt = 0.0039616607404005045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4946e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.81159468500093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7589773003871572, dt = 0.0039616607404005045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 2.39 us (0.7%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 317.74 us (94.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.7%)
Info: cfl dt = 0.003961660743592044 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2693e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.90778705574888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7629389611275577, dt = 0.003961660743592044
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 312.07 us (94.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (61.1%)
Info: cfl dt = 0.003961660746831188 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2846e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.24187463501612 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7669006218711496, dt = 0.003961660746831188
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 284.98 us (93.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.8%)
Info: cfl dt = 0.003961660750118454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3270e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.16447315292895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7708622826179807, dt = 0.003961660750118454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 330.74 us (94.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.5%)
Info: cfl dt = 0.003961660753454365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4523e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.89069602017398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7748239433680992, dt = 0.003961660753454365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 280.70 us (93.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.3%)
Info: cfl dt = 0.003961660756839448 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5362e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.71726962461837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7787856041215535, dt = 0.003961660756839448
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 286.16 us (93.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.9%)
Info: cfl dt = 0.00396166076027423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4720e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.32042610867055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7827472648783929, dt = 0.00396166076027423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 2.30 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 312.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.2%)
Info: cfl dt = 0.0039616607637592465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3416e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.48174533699549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.786708925638667, dt = 0.0039616607637592465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 315.35 us (94.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (63.3%)
Info: cfl dt = 0.003961660767295031 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2811e+05 | 65536 | 2 | 1.997e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.40438388290252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7906705864024262, dt = 0.003961660767295031
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 315.74 us (94.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.0%)
Info: cfl dt = 0.003961660770882123 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4027e+05 | 65536 | 2 | 1.926e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.04916571960112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7946322471697211, dt = 0.003961660770882123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 298.44 us (93.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.5%)
Info: cfl dt = 0.003961660774521066 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4023e+05 | 65536 | 2 | 1.926e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.04168171396917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7985939079406033, dt = 0.003961660774521066
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 311.84 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.9%)
Info: cfl dt = 0.003961660778212403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3884e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.50154118687765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8025555687151242, dt = 0.003961660778212403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 306.34 us (94.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.8%)
Info: cfl dt = 0.0039616607819566866 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3884e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.50011265283322 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8065172294933367, dt = 0.0039616607819566866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 320.49 us (94.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.2%)
Info: cfl dt = 0.0039616607857544655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4114e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.00143478028687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8104788902752933, dt = 0.0039616607857544655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.6%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 342.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.9%)
Info: cfl dt = 0.0039616607896062975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2468e+05 | 65536 | 2 | 2.019e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.65608967601813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8144405510610477, dt = 0.0039616607896062975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.4%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 372.59 us (95.0%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.3%)
Info: cfl dt = 0.003961660793512739 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3245e+05 | 65536 | 2 | 1.971e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.34870844038863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.818402211850654, dt = 0.003961660793512739
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 369.62 us (95.1%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.3%)
Info: cfl dt = 0.0039616607974743544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3815e+05 | 65536 | 2 | 1.938e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.5874888774779 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8223638726441667, dt = 0.0039616607974743544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.4%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 361.77 us (94.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.1%)
Info: cfl dt = 0.003961660801491708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3439e+05 | 65536 | 2 | 1.960e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.76990943004303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.826325533441641, dt = 0.003961660801491708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 344.24 us (94.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.3%)
Info: cfl dt = 0.003961660805565367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4103e+05 | 65536 | 2 | 1.922e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.21440774673712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8302871942431327, dt = 0.003961660805565367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.3%)
patch tree reduce : 2.10 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 397.47 us (95.1%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.6%)
Info: cfl dt = 0.003961660809695905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3073e+05 | 65536 | 2 | 1.982e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.97327432886395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.834248855048698, dt = 0.003961660809695905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 342.26 us (94.8%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.3%)
Info: cfl dt = 0.003961660813883895 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3806e+05 | 65536 | 2 | 1.939e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.56774798213515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.838210515858394, dt = 0.003961660813883895
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.3%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 375.91 us (95.1%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.0%)
Info: cfl dt = 0.003961660818129917 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7639e+05 | 65536 | 2 | 1.741e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.90913398911442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8421721766722778, dt = 0.003961660818129917
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 346.50 us (94.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.0%)
Info: cfl dt = 0.003961660822434551 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4550e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.94960186445671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8461338374904077, dt = 0.003961660822434551
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 304.43 us (93.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (58.6%)
Info: cfl dt = 0.003961660826798383 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1166e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.58671531177028 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8500954983128424, dt = 0.003961660826798383
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 344.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.3%)
Info: cfl dt = 0.003961660831222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2317e+05 | 65536 | 2 | 2.028e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.32847715916449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8540571591396406, dt = 0.003961660831222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.3%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 379.36 us (95.1%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.5%)
Info: cfl dt = 0.003961660835705994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4998e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.92443621391601 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8580188199708627, dt = 0.003961660835705994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 347.52 us (94.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.3%)
Info: cfl dt = 0.003961660840250959 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4988e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.90242750834616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8619804808065687, dt = 0.003961660840250959
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.3%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 400.43 us (95.3%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (64.5%)
Info: cfl dt = 0.003961660844857492 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0708e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.58799653555607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8659421416468198, dt = 0.003961660844857492
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 27.23 us (7.3%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 332.23 us (88.6%)
LB move op cnt : 0
LB apply : 4.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.0%)
Info: cfl dt = 0.003961660849526195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5196e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.35498556366387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8699038024916772, dt = 0.003961660849526195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 329.68 us (94.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.5%)
Info: cfl dt = 0.00396166085425767 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4611e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.08340624046203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8738654633412033, dt = 0.00396166085425767
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 317.42 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (63.3%)
Info: cfl dt = 0.0039616608590525276 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5529e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.0804090408735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.877827124195461, dt = 0.0039616608590525276
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.6%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 342.56 us (94.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.3%)
Info: cfl dt = 0.003961660863911375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5235e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.43974020338926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8817887850545134, dt = 0.003961660863911375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.4%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 350.45 us (94.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.3%)
Info: cfl dt = 0.003961660868834829 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5267e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.50993598751818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.885750445918425, dt = 0.003961660868834829
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 2.30 us (0.7%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 320.11 us (94.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.6%)
Info: cfl dt = 0.0039616608738235045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9379e+05 | 65536 | 2 | 1.664e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.69660325919156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8897121067872598, dt = 0.0039616608738235045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.4%)
patch tree reduce : 2.58 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 343.39 us (94.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.9%)
Info: cfl dt = 0.003961660878878023 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5299e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.58085760553269 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8936737676610833, dt = 0.003961660878878023
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 365.94 us (94.8%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (65.6%)
Info: cfl dt = 0.003961660883999006 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4900e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.71252442738493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8976354285399613, dt = 0.003961660883999006
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 315.60 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.5%)
Info: cfl dt = 0.003961660889187081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5005e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.93977848791873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9015970894239602, dt = 0.003961660889187081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 352.28 us (94.7%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.5%)
Info: cfl dt = 0.003961660894442879 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5025e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.98439984037142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9055587503131473, dt = 0.003961660894442879
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.4%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 342.90 us (94.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.0%)
Info: cfl dt = 0.0039616608997670305 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4938e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.79323115432732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.90952041120759, dt = 0.0039616608997670305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 325.87 us (94.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.2%)
Info: cfl dt = 0.003961660905160175 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0093e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.24996642878797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.913482072107357, dt = 0.003961660905160175
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.4%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 346.85 us (94.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.8%)
Info: cfl dt = 0.003961660910622948 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9345e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.62354388028473 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9174437330125174, dt = 0.003961660910622948
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 281.92 us (93.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (62.0%)
Info: cfl dt = 0.003961660916155994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6457e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.09999662817067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9214053939231404, dt = 0.003961660916155994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.4%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 372.34 us (95.0%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.4%)
Info: cfl dt = 0.003961660921759959 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3751e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.21164696728853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9253670548392963, dt = 0.003961660921759959
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 281.24 us (93.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (61.2%)
Info: cfl dt = 0.00396166092743549 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5413e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.82810375394233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9293287157610561, dt = 0.00396166092743549
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 339.55 us (94.8%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.9%)
Info: cfl dt = 0.003961660933183242 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4276e+05 | 65536 | 2 | 1.912e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.59122081381003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9332903766884917, dt = 0.003961660933183242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 309.05 us (94.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.0%)
Info: cfl dt = 0.003961660939003867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2038e+05 | 65536 | 2 | 2.046e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.7204490434571 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9372520376216749, dt = 0.003961660939003867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.4%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 346.61 us (95.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.0%)
Info: cfl dt = 0.003961660944898026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1723e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.79714289979528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9412136985606787, dt = 0.003961660944898026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 302.94 us (94.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.4%)
Info: cfl dt = 0.0039616609508663775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4899e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.70841511229295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9451753595055767, dt = 0.0039616609508663775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 323.31 us (94.4%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.4%)
Info: cfl dt = 0.003961660956909588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6252e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.65328411115014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.949137020456443, dt = 0.003961660956909588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.9%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 282.00 us (93.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.7%)
Info: cfl dt = 0.003961660963028325 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0187e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.45593605154433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9530986814133526, dt = 0.003961660963028325
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 2.31 us (0.8%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 282.51 us (93.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (59.6%)
Info: cfl dt = 0.0039616609692232595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2417e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.30907574082522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.957060342376381, dt = 0.0039616609692232595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.3%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 378.37 us (95.0%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (61.2%)
Info: cfl dt = 0.003961660975495065 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4758e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.40300679187003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9610220033456043, dt = 0.003961660975495065
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.6%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 354.54 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (65.4%)
Info: cfl dt = 0.003961660981844419 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1880e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.13892573190124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9649836643210994, dt = 0.003961660981844419
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.4%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 350.03 us (94.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.1%)
Info: cfl dt = 0.003961660988272 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3816e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.35369777075883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9689453253029439, dt = 0.003961660988272
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 322.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.5%)
Info: cfl dt = 0.003961660994778494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4407e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.63840343546968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9729069862912159, dt = 0.003961660994778494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 298.77 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.7%)
Info: cfl dt = 0.0039616610013645855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2681e+05 | 65536 | 2 | 2.005e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.12005855611024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9768686472859944, dt = 0.0039616610013645855
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (0.7%)
patch tree reduce : 1.96 us (0.3%)
gen split merge : 752.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.15 us (0.2%)
LB compute : 671.22 us (97.2%)
LB move op cnt : 0
LB apply : 3.62 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (69.2%)
Info: cfl dt = 0.003961661008030965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2261e+05 | 65536 | 2 | 2.031e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.20718915907152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.980830308287359, dt = 0.003961661008030965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 345.69 us (94.8%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.1%)
Info: cfl dt = 0.003961661014778324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2608e+05 | 65536 | 2 | 2.010e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.96233880157502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.98479196929539, dt = 0.003961661014778324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.67 us (1.3%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 340.75 us (95.0%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (63.7%)
Info: cfl dt = 0.003961661021607358 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2995e+05 | 65536 | 2 | 1.986e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.80431549688147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9887536303101683, dt = 0.003961661021607358
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.6%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 297.54 us (94.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (61.3%)
Info: cfl dt = 0.003961661028518768 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2871e+05 | 65536 | 2 | 1.994e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.53481816420434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9927152913317756, dt = 0.003961661028518768
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 303.25 us (93.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (65.0%)
Info: cfl dt = 0.003961661035513254 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2439e+05 | 65536 | 2 | 2.020e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.59374264266367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9966769523602943, dt = 0.0033230476397057007
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.4%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 347.59 us (89.8%)
LB move op cnt : 0
LB apply : 23.71 us (6.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (67.1%)
Info: cfl dt = 0.003961661041450515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2674e+05 | 65536 | 2 | 2.006e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.64384965117524 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 946.4774846130001 (s) [Godunov][rank=0]
running minmod hllc
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 1.96 ms [DataInserterUtility][rank=0]
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 : 3.82 us (56.8%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (0.5%)
patch tree reduce : 992.00 ns (0.2%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 421.68 us (96.8%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=False
Info: time since start : 946.658517336 (s) [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (1.8%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 379.71 us (94.5%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (64.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3720e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 310.05 us (94.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8154e+05 | 65536 | 2 | 1.718e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.03090860046744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003961660569039922, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.4%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 355.80 us (95.0%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1503e+05 | 65536 | 2 | 1.579e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.3199352637974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007923321138079843, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 336.95 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2382e+05 | 65536 | 2 | 2.024e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.47072554760496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011884981707119765, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.1%)
patch tree reduce : 1.83 us (0.3%)
gen split merge : 902.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 589.21 us (96.6%)
LB move op cnt : 0
LB apply : 3.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3338e+05 | 65536 | 2 | 1.966e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.55014291638999 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015846642276159686, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.3%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 374.04 us (95.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3656e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.00410118683577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019808302845199608, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 340.60 us (94.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3980e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.7085953224967 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02376996341423953, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 308.08 us (94.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (59.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8584e+05 | 65536 | 2 | 1.699e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.9666438699432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02773162398327945, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 264.28 us (93.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8374e+05 | 65536 | 2 | 1.708e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.51042905012073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03169328455231937, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 294.38 us (93.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (60.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3220e+05 | 65536 | 2 | 1.973e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.29288332566448 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03565494512135929, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 295.71 us (94.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4442e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.71594638488614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03961660569039921, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.86 us (1.4%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 323.46 us (94.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4073e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.91170933970064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04357826625943913, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 309.93 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8920e+05 | 65536 | 2 | 1.684e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.69851077758268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047539926828479045, dt = 0.0024600731715209573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.0%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 276.78 us (93.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6613e+05 | 65536 | 2 | 1.790e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.47735797445948 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 949.0948044900001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.05, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (1.6%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 388.17 us (95.0%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4628e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.1206293703199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05396166056903992, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 308.74 us (94.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0524e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.18864097851053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05792332113807984, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.5%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 329.55 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2257e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.960201305483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06188498170711976, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.4%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 348.54 us (94.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3350e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.33790615050437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06584664227615968, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 328.47 us (94.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (60.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3263e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.14857114004073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0698083028451996, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.1%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 292.94 us (93.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3537e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.74565415287621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07376996341423951, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 327.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3387e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.41851865619134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07773162398327943, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 289.63 us (93.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3037e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.65762085060436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08169328455231935, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 301.67 us (93.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2645e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.80487637045749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08565494512135927, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 315.98 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3142e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.88485035361614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08961660569039918, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 309.27 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3630e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.94853413733412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0935782662594391, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.4%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 348.92 us (94.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3527e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.72404236810442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09753992682847902, dt = 0.002460073171520985
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 319.83 us (94.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3610e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.932687819617534 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 951.1512332880001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.1, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.52 us (1.9%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 374.80 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7784e+05 | 65536 | 2 | 1.734e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.2256963730353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10396166056903992, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (1.9%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 328.42 us (93.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (70.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5671e+05 | 65536 | 2 | 1.837e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.62674149099067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10792332113807984, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 307.96 us (94.0%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3473e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.60549727867962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11188498170711976, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 311.20 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2367e+05 | 65536 | 2 | 2.025e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.43669672671848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11584664227615968, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.2%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 452.40 us (95.6%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (67.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3288e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.203560829693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1198083028451996, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 299.24 us (94.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3001e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.57879058933774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12376996341423951, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.2%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 464.55 us (95.8%)
LB move op cnt : 0
LB apply : 4.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7134e+05 | 65536 | 2 | 1.765e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.81092390255962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12773162398327945, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 327.32 us (89.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2798e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.13690664105054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13169328455231938, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 313.86 us (93.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9668e+05 | 65536 | 2 | 1.652e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.3262901428155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1356549451213593, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.4%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 376.10 us (95.1%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (64.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3495e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.65347508897963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13961660569039924, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.6%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 1.45 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 347.17 us (94.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1673e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.68846774840915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14357826625943917, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 316.00 us (93.9%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (58.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5900e+05 | 65536 | 2 | 1.826e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.12549515871369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1475399268284791, dt = 0.0024600731715209156
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 319.95 us (94.3%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1594e+05 | 65536 | 2 | 1.576e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.20775617863627 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 953.3882557200001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.15000000000000002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (1.7%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 404.06 us (94.9%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2001e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.40304608550161 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15396166056903995, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 307.08 us (94.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2267e+05 | 65536 | 2 | 2.031e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.21891822052874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1579233211380799, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.43 us (6.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 344.88 us (89.8%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2418e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.31090856710638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16188498170711982, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 345.69 us (94.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1505e+05 | 65536 | 2 | 2.080e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.56055837465921 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16584664227615975, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 352.03 us (94.3%)
LB move op cnt : 0
LB apply : 4.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (70.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3131e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.86098738951618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16980830284519968, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 317.44 us (94.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3197e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.00506120379391 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17376996341423961, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.6%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 297.52 us (94.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (59.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0890e+05 | 65536 | 2 | 2.122e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.22350544113988 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17773162398327955, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 372.74 us (95.1%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3602e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.8879478431359 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18169328455231948, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 298.32 us (94.2%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3398e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.44303059783894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1856549451213594, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 324.21 us (94.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1089e+05 | 65536 | 2 | 2.108e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.65551610400495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18961660569039934, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.4%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 366.10 us (94.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0019e+05 | 65536 | 2 | 2.183e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.32648105897273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19357826625943927, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 342.68 us (94.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8639e+05 | 65536 | 2 | 1.696e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.08669345863781 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1975399268284792, dt = 0.0024600731715208046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 309.35 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0245e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.38476644899978 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 955.7705817430001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.2, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (1.7%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 399.02 us (94.9%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (64.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4433e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.69588295622479 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20396166056903994, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 298.31 us (93.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4760e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.4070948764166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20792332113807988, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 277.80 us (93.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (59.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4402e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.6274315140759 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2118849817071198, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.9%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 293.58 us (93.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4483e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.80381406626007 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21584664227615974, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 309.66 us (94.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4128e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.03204273110431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21980830284519967, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 325.46 us (94.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8028e+05 | 65536 | 2 | 1.723e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.7565057047661 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2237699634142396, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.0%)
patch tree reduce : 1.92 us (0.3%)
gen split merge : 1.01 us (0.2%)
split / merge op : 0/0
apply split merge : 1.45 us (0.2%)
LB compute : 634.50 us (96.6%)
LB move op cnt : 0
LB apply : 4.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (68.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2157e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.7422126346777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22773162398327954, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.9%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 276.75 us (93.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3614e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.91362067619089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23169328455231947, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.8%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 270.01 us (93.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3281e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.18746821023568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2356549451213594, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 276.68 us (93.4%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3184e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.97790817640305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23961660569039933, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.0%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 281.72 us (93.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (67.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1113e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.47069594660059 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24357826625943926, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.9%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 293.27 us (93.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1568e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.4609128148325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2475399268284792, dt = 0.0024600731715208046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 295.84 us (93.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4295e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.858284572574725 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 957.84249493 (s) [Godunov][rank=0]
amr::Godunov: t = 0.25, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.71 us (2.0%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 364.80 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (64.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1674e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.69158819563363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2539616605690399, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.8%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 285.21 us (93.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1371e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.03255992293293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2579233211380798, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 330.97 us (94.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2492e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.47147740408911 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2618849817071197, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 324.14 us (94.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1898e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.17931210047433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2658466422761596, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 305.18 us (93.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (65.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2505e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.50004167790118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2698083028451995, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 337.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1777e+05 | 65536 | 2 | 2.062e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.15300557837392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2737699634142394, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 324.71 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (64.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3344e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.32455668642572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27773162398327933, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 296.26 us (93.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3199e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.01072111820827 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28169328455231923, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 297.31 us (93.8%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3378e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.3988902701938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28565494512135914, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.0%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.37 us (0.5%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 283.90 us (93.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (61.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2629e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.7701744155058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28961660569039904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 295.86 us (94.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3081e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.75225423536233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29357826625943895, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 306.38 us (93.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4159e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.09928188649067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29753992682847885, dt = 0.002460073171521193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 316.11 us (94.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3555e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.85839143057078 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 959.9676183460001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.30000000000000004, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.80 us (2.1%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 353.90 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (66.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8531e+05 | 65536 | 2 | 1.701e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.85115833565175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30396166056903995, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 300.81 us (93.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0719e+05 | 65536 | 2 | 2.133e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.8499011522416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30792332113807985, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (1.8%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 363.64 us (94.1%)
LB move op cnt : 0
LB apply : 4.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (69.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1856e+05 | 65536 | 2 | 2.057e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.32417043780242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31188498170711976, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.2%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 372.64 us (95.3%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (65.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1164e+05 | 65536 | 2 | 2.103e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.81870600922173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31584664227615966, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (1.1%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 561.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 395.92 us (95.6%)
LB move op cnt : 0
LB apply : 4.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3314e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.2600438920152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31980830284519957, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.5%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 311.45 us (94.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3581e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.84088876000287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32376996341423947, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 280.14 us (93.4%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2641e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.79576085866906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3277316239832794, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 269.43 us (93.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (59.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2990e+05 | 65536 | 2 | 1.987e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.79258156248451 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3316932845523193, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (0.9%)
patch tree reduce : 2.10 us (0.3%)
gen split merge : 851.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 316.50 us (46.8%)
LB compute : 339.79 us (50.2%)
LB move op cnt : 0
LB apply : 3.78 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (66.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0878e+05 | 65536 | 2 | 2.122e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.19641246435023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3356549451213592, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 355.30 us (94.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1244e+05 | 65536 | 2 | 2.098e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.99442658688443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3396166056903991, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.3%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 397.87 us (95.4%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2016e+05 | 65536 | 2 | 2.047e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.67406614437539 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.343578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.2%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 396.29 us (95.3%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2415e+05 | 65536 | 2 | 2.022e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.54235939203056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3475399268284789, dt = 0.0024600731715211377
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.4%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 335.45 us (94.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1955e+05 | 65536 | 2 | 2.051e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.183218579193415 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 962.536706737 (s) [Godunov][rank=0]
amr::Godunov: t = 0.35000000000000003, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.7%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 370.96 us (94.9%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (64.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3552e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.77862696103553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35396166056903994, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 348.53 us (94.4%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0874e+05 | 65536 | 2 | 1.603e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.9498470748432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35792332113807984, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (2.0%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 276.81 us (93.1%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4825e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.5478466942721 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36188498170711975, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.83 us (7.8%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 289.55 us (87.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1575e+05 | 65536 | 2 | 2.076e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.71421059396066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36584664227615965, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.73 us (1.3%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 612.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 348.33 us (95.1%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2511e+05 | 65536 | 2 | 2.016e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.74956395488269 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36980830284519955, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.3%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 386.33 us (95.1%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8851e+05 | 65536 | 2 | 1.687e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.54836100505331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37376996341423946, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 298.97 us (94.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4665e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.19921117725666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37773162398327936, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.6%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 337.75 us (94.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (61.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4631e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.125777732142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38169328455231927, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.5%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 335.00 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4683e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.23949354048216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38565494512135917, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.4%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 343.52 us (94.7%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (66.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2814e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.17219032885103 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3896166056903991, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 314.22 us (93.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1392e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.07676835374119 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.393578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 303.11 us (93.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3520e+05 | 65536 | 2 | 1.955e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.94643736454498 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3975399268284789, dt = 0.0024600731715211377
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 323.08 us (94.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (61.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0735e+05 | 65536 | 2 | 2.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.53371170599269 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 964.807203378 (s) [Godunov][rank=0]
amr::Godunov: t = 0.4, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (1.6%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 1.30 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 432.84 us (94.9%)
LB move op cnt : 0
LB apply : 4.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (65.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1926e+05 | 65536 | 2 | 2.053e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.47728105266435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4039616605690399, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.3%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 402.12 us (95.3%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2610e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.72786031669817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40792332113807983, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 338.30 us (94.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1103e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.447819974111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41188498170711974, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 319.16 us (94.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2321e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.0993040514852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41584664227615964, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 329.25 us (94.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3369e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.38069593319173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41980830284519954, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 296.96 us (93.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0474e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.07904899025581 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42376996341423945, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 312.72 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3550e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.77311793348326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42773162398327935, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 305.81 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4410e+05 | 65536 | 2 | 1.905e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.88260248298069 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43169328455231926, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 315.81 us (94.0%)
LB move op cnt : 0
LB apply : 4.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3310e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.25085704866657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43565494512135916, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 295.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0714e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.60299757127711 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43961660569039906, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (0.7%)
patch tree reduce : 1.89 us (0.3%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.00 us (0.1%)
LB compute : 694.64 us (97.2%)
LB move op cnt : 0
LB apply : 4.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (66.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3006e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.59079847178705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44357826625943897, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 299.45 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9365e+05 | 65536 | 2 | 1.665e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.66568386562817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4475399268284789, dt = 0.0024600731715211377
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 309.34 us (94.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3484e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.76314905770357 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 966.998311068 (s) [Godunov][rank=0]
amr::Godunov: t = 0.45, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (1.9%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 331.99 us (94.0%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2825e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.19641621617339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4539616605690399, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.5%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 335.87 us (94.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3785e+05 | 65536 | 2 | 1.940e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.52258023342398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4579233211380798, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 348.04 us (94.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1178e+05 | 65536 | 2 | 2.102e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.84981755423208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4618849817071197, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.4%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 367.07 us (95.0%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.89 us (93.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3466e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.59005249194712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46584664227615963, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 288.61 us (93.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3651e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.99246122591335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46980830284519953, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 328.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0403e+05 | 65536 | 2 | 2.156e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.16331953243345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47376996341423944, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.4%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 368.68 us (94.9%)
LB move op cnt : 0
LB apply : 4.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4571e+05 | 65536 | 2 | 1.896e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.2329167028205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47773162398327934, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.8%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 277.04 us (93.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9780e+05 | 65536 | 2 | 1.647e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.57033434115341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48169328455231925, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.0%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 274.06 us (86.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3526e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.72067538179503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48565494512135915, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 274.22 us (93.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2348e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.15872556592127 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48961660569039905, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 283.46 us (93.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (64.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2300e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.05251641285416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49357826625943896, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 308.09 us (94.1%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3933e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.60674497804531 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49753992682847886, dt = 0.0024600731715211377
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.9%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 275.19 us (93.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (60.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3677e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.022675659404634 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 969.2656750000001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (1.7%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 379.46 us (94.5%)
LB move op cnt : 0
LB apply : 4.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (66.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4101e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.97389527930261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5039616605690399, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.37 us (0.5%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 270.97 us (93.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3205e+05 | 65536 | 2 | 1.974e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.26092238439804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5079233211380798, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 285.43 us (93.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3628e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.94451973852283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5118849817071197, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 321.77 us (94.1%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2738e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.00709323675282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5158466422761596, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 282.00 us (93.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2896e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.34969607626063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5198083028451995, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 298.61 us (93.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (65.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2707e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.9387281401087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5237699634142394, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 303.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9501e+05 | 65536 | 2 | 1.659e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.96331617753393 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5277316239832793, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 293.71 us (94.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8490e+05 | 65536 | 2 | 1.703e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.76131896773241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5316932845523192, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 277.92 us (93.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2177e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.78686347338022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5356549451213591, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 311.64 us (94.0%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3913e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.56333404745996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.539616605690399, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 294.21 us (93.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3698e+05 | 65536 | 2 | 1.945e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.3344716693296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.543578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 295.14 us (93.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4101e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.97238919871502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5475399268284789, dt = 0.002460073171521193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 285.79 us (93.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2378e+05 | 65536 | 2 | 2.024e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.754353869541724 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 971.48983149 (s) [Godunov][rank=0]
amr::Godunov: t = 0.55, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (1.7%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 398.06 us (94.8%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2102e+05 | 65536 | 2 | 1.557e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.62220569617529 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.55396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 285.70 us (93.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (61.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3062e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.71247186424387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5579233211380799, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 300.79 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8628e+05 | 65536 | 2 | 1.697e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.06291938569184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5618849817071198, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 300.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4729e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.34028322464869 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5658466422761597, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 295.74 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4384e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.58976613086435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5698083028451996, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 299.95 us (94.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1476e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.25952620956141 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5737699634142395, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 289.87 us (93.9%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2473e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.43034221089867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5777316239832794, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 305.71 us (94.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2698e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.91913380068813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5816932845523193, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 314.81 us (94.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3913e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.56324440155598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5856549451213592, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.9%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 282.88 us (93.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3876e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.48354919114033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5896166056903991, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 324.51 us (94.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1952e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.29674654781785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.593578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 284.41 us (93.4%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2860e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.27311791908072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5975399268284789, dt = 0.002460073171521193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 289.21 us (93.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3145e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.30419099782347 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 973.5608283680001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.6000000000000001, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (1.8%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 336.87 us (94.2%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3958e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.66121620393574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.60396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 302.53 us (87.9%)
LB move op cnt : 0
LB apply : 25.15 us (7.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3804e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.32586747821698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6079233211380799, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 300.67 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (60.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3818e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.35601994768982 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6118849817071198, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 293.27 us (93.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (8.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3792e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.30000238045712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6158466422761597, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 296.40 us (93.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (60.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0902e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.01186441942913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6198083028451996, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 344.68 us (94.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1875e+05 | 65536 | 2 | 2.056e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.36722874592752 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6237699634142395, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.3%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 372.10 us (95.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1881e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.14120006358625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6277316239832794, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 324.82 us (94.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4177e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.13803021436297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6316932845523193, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 296.84 us (94.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3939e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.619738637931 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6356549451213592, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 333.39 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5753e+05 | 65536 | 2 | 1.833e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.80634502578893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6396166056903991, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 291.16 us (93.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2281e+05 | 65536 | 2 | 2.030e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.24988066094116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.643578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 361.86 us (94.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8835e+05 | 65536 | 2 | 1.688e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.51336610122848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6475399268284789, dt = 0.002460073171521082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 304.80 us (94.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6441e+05 | 65536 | 2 | 1.798e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.244626345413394 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 975.7908825950001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.65, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (1.8%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 368.38 us (94.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3066e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.72088766489289 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6539616605690399, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 294.48 us (93.9%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2667e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.85201018852652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6579233211380798, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.0%)
patch tree reduce : 1.68 us (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 566.44 us (96.7%)
LB move op cnt : 0
LB apply : 3.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (58.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7899e+05 | 65536 | 2 | 1.729e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.47534276384053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6618849817071197, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 280.49 us (93.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (60.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4513e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.8698344782123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6658466422761596, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.9%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 277.76 us (93.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3900e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.53639789996792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6698083028451995, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 275.88 us (93.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (59.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3866e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.46211195544723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6737699634142394, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 291.54 us (93.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6658e+05 | 65536 | 2 | 1.788e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.77449328390371 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6777316239832794, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 300.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3588e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.85626542422625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6816932845523193, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 315.73 us (94.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3363e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.36692100545402 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6856549451213592, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 320.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3067e+05 | 65536 | 2 | 1.982e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.9599872012932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6896166056903991, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 319.41 us (94.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4336e+05 | 65536 | 2 | 1.909e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.72252395357116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.693578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 300.06 us (93.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7315e+05 | 65536 | 2 | 1.756e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.20431021973029 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6975399268284789, dt = 0.002460073171521193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 316.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9648e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.57898853728875 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 978.003914631 (s) [Godunov][rank=0]
amr::Godunov: t = 0.7000000000000001, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (1.7%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.3%)
LB compute : 402.45 us (94.8%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2026e+05 | 65536 | 2 | 2.046e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.69522881691194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.70396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 345.08 us (94.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9969e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.98111456415207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7079233211380799, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 310.44 us (93.8%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2521e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.5338783779449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7118849817071198, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 340.19 us (94.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7547e+05 | 65536 | 2 | 1.745e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.71078263291142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7158466422761597, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 338.75 us (94.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1136e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.51979191395334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7198083028451996, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 313.13 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (60.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9482e+05 | 65536 | 2 | 1.660e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.92120172982574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7237699634142395, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 308.63 us (88.3%)
LB move op cnt : 0
LB apply : 24.95 us (7.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7605e+05 | 65536 | 2 | 1.743e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.83674466162874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7277316239832794, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 325.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (59.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3206e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.02424099598312 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7316932845523193, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 336.89 us (94.6%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (60.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6456e+05 | 65536 | 2 | 1.798e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.33536491892411 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7356549451213592, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 308.71 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8573e+05 | 65536 | 2 | 1.699e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.94339760467551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7396166056903991, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 307.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2995e+05 | 65536 | 2 | 1.986e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.80471665047769 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.743578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 342.63 us (94.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3246e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.11113511799509 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7475399268284789, dt = 0.002460073171521082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 319.73 us (94.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (60.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3234e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.424138963749776 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 980.2843106400001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.75, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (1.5%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 1.09 us (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.2%)
LB compute : 440.85 us (95.3%)
LB move op cnt : 0
LB apply : 4.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (66.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1748e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.85204409415205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7539616605690399, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 298.96 us (94.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3641e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.97273454281883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7579233211380798, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.7%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 273.61 us (93.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3513e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.69294899921488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7618849817071197, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 297.66 us (94.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6348e+05 | 65536 | 2 | 1.803e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.10162494878918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7658466422761596, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 337.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1112e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.46828305617551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7698083028451995, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 2.44 us (0.8%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 295.84 us (93.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (59.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0251e+05 | 65536 | 2 | 1.628e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.59521240845224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7737699634142394, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 273.37 us (86.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4113e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.99936436869075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7777316239832793, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 329.78 us (94.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (64.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3947e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.63684326974003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7816932845523192, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 343.58 us (94.6%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0352e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.81442801735348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7856549451213591, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.6%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 342.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1478e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.26393741574074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.789616605690399, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 313.28 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3176e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.95986583696184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.793578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 314.16 us (94.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (61.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2122e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.66669322367753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7975399268284789, dt = 0.002460073171521193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 315.64 us (94.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3113e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.261098950160395 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 982.401373969 (s) [Godunov][rank=0]
amr::Godunov: t = 0.8, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.6%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 393.07 us (95.1%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (64.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2207e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.85054051211254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.80396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 341.73 us (94.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2841e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 1.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.231501840372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8079233211380799, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.4%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 354.82 us (95.0%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3111e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.81872299327969 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8118849817071198, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.5%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 315.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3850e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.42613154990694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8158466422761597, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 314.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0956e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.12870729181135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8198083028451996, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.8%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 270.99 us (93.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1386e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.06363065634882 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8237699634142395, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 295.19 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4906e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.72361558216562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8277316239832794, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 271.05 us (93.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0491e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.1171479715059 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8316932845523193, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 304.92 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1994e+05 | 65536 | 2 | 2.048e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.62538652190415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8356549451213592, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 343.77 us (94.6%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2080e+05 | 65536 | 2 | 2.043e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.81227419513228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8396166056903991, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 592.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 282.80 us (94.4%)
LB move op cnt : 0
LB apply : 3.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (67.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2499e+05 | 65536 | 2 | 2.017e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.72405916806964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.843578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 338.86 us (94.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7105e+05 | 65536 | 2 | 1.766e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.74712029827607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8475399268284789, dt = 0.002460073171521193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 317.95 us (94.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3048e+05 | 65536 | 2 | 1.983e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.659591193624024 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 984.705766301 (s) [Godunov][rank=0]
amr::Godunov: t = 0.8500000000000001, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (1.9%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 351.83 us (94.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (65.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3507e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.67914626220413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.85396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.8%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 312.94 us (94.3%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2048e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.50597142533792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8579233211380799, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 300.33 us (94.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2815e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.17386546104115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8618849817071198, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 291.78 us (93.8%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (61.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3286e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.20006150651108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8658466422761597, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 326.81 us (94.3%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2541e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.57897160744052 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8698083028451996, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 274.49 us (93.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (61.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1327e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.93695233710483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8737699634142395, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 300.43 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3123e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.84550312867002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8777316239832794, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 323.23 us (94.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3498e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.66100144420784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8816932845523193, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 751.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 342.96 us (94.8%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2667e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.85221269952329 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8856549451213592, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 346.02 us (94.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2609e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.72494722607429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8896166056903991, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 358.72 us (94.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0803e+05 | 65536 | 2 | 2.128e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.03450745259336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.893578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.4%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 345.24 us (94.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3602e+05 | 65536 | 2 | 1.950e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.12530866184774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8975399268284789, dt = 0.002460073171521082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (0.3%)
patch tree reduce : 1.72 us (0.1%)
gen split merge : 1.34 us (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.0%)
LB compute : 2.00 ms (98.9%)
LB move op cnt : 0
LB apply : 4.07 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (63.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8891e+05 | 65536 | 2 | 2.268e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.04267706949028 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 986.9537449200001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.9, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.97 us (2.1%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 358.55 us (94.0%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.70 us (92.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3229e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.07470432545178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9039616605690399, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 344.34 us (94.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3244e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.1067633737795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9079233211380798, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 286.20 us (93.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4899e+05 | 65536 | 2 | 1.878e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.94826010449817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9118849817071197, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 303.95 us (93.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4338e+05 | 65536 | 2 | 1.909e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.72554248167627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9158466422761596, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 307.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2944e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.4542604091295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9198083028451995, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 297.37 us (93.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3564e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.80332436819717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9237699634142394, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 332.80 us (94.5%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3302e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.23407207693738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9277316239832794, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 332.53 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3341e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.31832935213555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9316932845523193, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 331.72 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3282e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.18974611375539 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9356549451213592, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 311.48 us (94.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3920e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.57898495781835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9396166056903991, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 274.63 us (93.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (65.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3929e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.59800440060985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.943578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.9%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 269.65 us (93.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (59.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4054e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.87107057184235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9475399268284789, dt = 0.002460073171521193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.2%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 271.84 us (93.0%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (60.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4128e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.632456546219096 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 989.0741801910001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.9500000000000001, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (1.6%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 412.26 us (95.0%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3590e+05 | 65536 | 2 | 1.951e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.09844171607952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.95396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 303.04 us (93.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (59.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2265e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.97814459032836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9579233211380799, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 269.98 us (93.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (60.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3569e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.81580176273442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9618849817071198, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 293.81 us (93.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3806e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.33162192829415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9658466422761597, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (2.0%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 276.59 us (93.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (58.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3859e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.44545428809352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9698083028451996, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 307.35 us (94.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4381e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.58249506113538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9737699634142395, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 321.31 us (94.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3815e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.35066416361796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9777316239832794, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 275.60 us (93.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4329e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4684729495696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9816932845523193, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 324.30 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4039e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.83725613107704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9856549451213592, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 330.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1312e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.90426925813917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9896166056903991, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 325.08 us (94.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3761e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.23294188080406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.993578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 308.23 us (94.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5464e+05 | 65536 | 2 | 1.848e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.17649508865831 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9975399268284789, dt = 0.002460073171521082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 302.87 us (93.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3247e+05 | 65536 | 2 | 1.971e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.92910401041962 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 991.237329444 (s) [Godunov][rank=0]
amr::Godunov: t = 1, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (1.9%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 348.23 us (94.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (64.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3479e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.61848697577518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.00396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.7%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 288.82 us (93.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1405e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.10645547941799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.00792332113808, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.0%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 315.71 us (93.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3269e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.16288108266666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.01188498170712, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 294.42 us (93.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (60.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3847e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.42083555985894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.01584664227616, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 308.16 us (94.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (64.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3305e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.24077152362041 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0198083028452, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.5%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 315.67 us (94.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2079e+05 | 65536 | 2 | 2.043e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.81121279617572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.02376996341424, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 314.76 us (94.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4169e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.12144680121436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.02773162398328, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (2.0%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 299.05 us (93.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3884e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.49978467345902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0316932845523201, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 324.10 us (94.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3634e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.95558781133843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0356549451213601, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 322.60 us (94.2%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9266e+05 | 65536 | 2 | 1.669e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.45015241056747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0396166056904002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 314.80 us (94.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4562e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.97688180007889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0435782662594402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 292.56 us (93.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5097e+05 | 65536 | 2 | 1.867e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.3789511911601 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0475399268284802, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 269.14 us (93.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3475e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.74972026532815 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 993.3801894420001 (s) [Godunov][rank=0]
amr::Godunov: t = 1.05, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (1.7%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 385.93 us (95.0%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (62.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3235e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.08832082385368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.05396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 326.36 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3224e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.06459628344889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.05792332113808, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 345.00 us (94.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3733e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.17269716097722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.06188498170712, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.4%)
LB compute : 324.86 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2999e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.57525709807811 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.06584664227616, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 301.36 us (94.0%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3630e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.94735209517991 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0698083028452001, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 312.50 us (94.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3343e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.32393909375571 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0737699634142401, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.51 us (0.5%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 294.75 us (93.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2895e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.34935880171832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0777316239832802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 346.54 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2963e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.49700300109791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0816932845523202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 299.83 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3533e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.73570662393396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0856549451213602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.5%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 312.67 us (94.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3152e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.9075141287254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0896166056904002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 289.07 us (93.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3623e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.93248489758574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0935782662594402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 328.31 us (94.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2881e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.3188717990388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0975399268284802, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 347.44 us (94.9%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3289e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.49951784561706 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 995.4359382810001 (s) [Godunov][rank=0]
amr::Godunov: t = 1.1, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.76 us (2.1%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 343.60 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2801e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.14286214717444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.10396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 321.42 us (94.4%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0669e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.50510281568798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1079233211380801, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 278.44 us (93.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2223e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.88618867501508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1118849817071201, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.7%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 272.53 us (93.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (59.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4052e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.86651703981376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1158466422761601, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.6%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 293.74 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (60.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3554e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.78296434585116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1198083028452002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.0%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 294.75 us (93.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (60.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7736e+05 | 65536 | 2 | 1.737e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.12079004803502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1237699634142402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 295.88 us (93.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4351e+05 | 65536 | 2 | 1.908e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.75387880974826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1277316239832802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 316.76 us (94.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4301e+05 | 65536 | 2 | 1.911e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.6467269568254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1316932845523202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.0%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 327.73 us (94.0%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (65.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0144e+05 | 65536 | 2 | 2.174e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.59990162181548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1356549451213602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.4%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 360.83 us (95.0%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (65.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2750e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.0326958540623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1396166056904002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 339.34 us (94.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5687e+05 | 65536 | 2 | 1.836e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.66300055686732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1435782662594403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 305.65 us (93.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9621e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.2235395954297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1475399268284803, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 320.21 us (94.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8332e+05 | 65536 | 2 | 1.710e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.79997765386126 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 997.7291843730001 (s) [Godunov][rank=0]
amr::Godunov: t = 1.1500000000000001, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (1.8%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 361.36 us (94.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4263e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.32619257571055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1539616605690401, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 295.60 us (93.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (58.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5965e+05 | 65536 | 2 | 1.822e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.26748797868208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1579233211380802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 308.14 us (94.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2907e+05 | 65536 | 2 | 1.992e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.61131659653674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1618849817071202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.1%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 271.21 us (93.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (60.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8778e+05 | 65536 | 2 | 1.690e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.38872336844395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1658466422761602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 315.61 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (59.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3831e+05 | 65536 | 2 | 1.937e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.62236086720975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1698083028452002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 315.10 us (94.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2749e+05 | 65536 | 2 | 2.001e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.26850070459189 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1737699634142402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 344.65 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3292e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.21271480521283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1777316239832802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 328.82 us (94.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3691e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.0797218130772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1816932845523203, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 293.05 us (93.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3558e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.79118227791987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1856549451213603, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.4%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 365.29 us (95.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2722e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.97107384313361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1896166056904003, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.6%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 291.01 us (94.0%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (59.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3522e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.71241683584347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1935782662594403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 299.89 us (93.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2778e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.09344496755243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1975399268284803, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 333.83 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3917e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.34714624421068 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 999.961397925 (s) [Godunov][rank=0]
amr::Godunov: t = 1.2000000000000002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.80 us (2.2%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 336.99 us (93.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (64.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4047e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.85474211414564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2039616605690402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.7%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 287.58 us (93.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3745e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.19880329235454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2079233211380802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 284.90 us (93.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (61.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4024e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.80593297151961 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2118849817071202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 307.84 us (93.9%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3502e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.66933208979943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2158466422761602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 307.97 us (94.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (59.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4243e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.28268434770874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2198083028452003, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.8%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 276.92 us (93.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2891e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.34061861982049 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2237699634142403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 291.62 us (93.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3176e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.95995745208108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2277316239832803, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 280.87 us (93.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (60.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7356e+05 | 65536 | 2 | 1.754e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.2949303016239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2316932845523203, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 299.77 us (93.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3839e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.40271616502187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2356549451213603, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 328.42 us (94.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4601e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.05999466722984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2396166056904003, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.6%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 312.96 us (94.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2301e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.05672730255317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2435782662594403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 291.55 us (93.8%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (60.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4142e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.06196945865702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2475399268284804, dt = 0.002460073171519639
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 321.60 us (94.3%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4154e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.66767881853735 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1002.014990587 (s) [Godunov][rank=0]
amr::Godunov: t = 1.25, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (1.8%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 356.73 us (94.6%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4062e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.8874935592087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.25396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 288.19 us (93.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3839e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.40374172782474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.25792332113808, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 309.29 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4136e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.04820784653862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.26188498170712, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 309.97 us (93.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4377e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.57390017968798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.26584664227616, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 313.90 us (94.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4371e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.56073352840218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2698083028452, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 301.55 us (93.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (60.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3891e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.51513267250304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.27376996341424, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 283.22 us (93.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2525e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.54416332461841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.27773162398328, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.1%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 287.16 us (92.9%)
LB move op cnt : 0
LB apply : 5.12 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3789e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.29398941586778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2816932845523201, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 299.86 us (94.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3864e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.45652063273725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2856549451213601, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 305.33 us (94.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2698e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.91906054934884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2896166056904002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 315.54 us (94.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5076e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.09405778231537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2935782662594402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 300.93 us (94.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (60.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4516e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.87558141345656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2975399268284802, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.4%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 343.29 us (94.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7149e+05 | 65536 | 2 | 1.764e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.201019840974624 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1004.059502346 (s) [Godunov][rank=0]
amr::Godunov: t = 1.3, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (1.8%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 388.62 us (94.4%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2525e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.54210002748182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.30396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 351.28 us (94.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8349e+05 | 65536 | 2 | 1.709e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.45511329829503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.30792332113808, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 317.11 us (94.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (60.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3078e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.74702594000185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.31188498170712, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 322.05 us (94.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3306e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.24184387222502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.31584664227616, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 326.22 us (94.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3157e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.91752164346325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3198083028452001, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 322.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3240e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.09802855382559 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3237699634142401, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 312.91 us (94.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9389e+05 | 65536 | 2 | 1.664e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.71839205333939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3277316239832802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 306.95 us (94.2%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (60.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2770e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.07522186645171 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3316932845523202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 309.56 us (93.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3682e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.06198390522361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3356549451213602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 347.00 us (94.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (61.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8447e+05 | 65536 | 2 | 1.705e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.66817500682228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3396166056904002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.4%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 358.80 us (95.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9434e+05 | 65536 | 2 | 1.662e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.8163721796908 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3435782662594402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 333.68 us (94.5%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3425e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.50272112889694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3475399268284802, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 323.17 us (94.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4243e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.788085607480745 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1006.170895412 (s) [Godunov][rank=0]
amr::Godunov: t = 1.35, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.3%)
patch tree reduce : 1.58 us (0.3%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 437.51 us (95.9%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (67.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2625e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.76168171856843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.35396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 290.76 us (93.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2566e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.63158481417801 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3579233211380801, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 304.35 us (93.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2587e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.67841324502318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3618849817071201, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.4%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 362.20 us (95.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8465e+05 | 65536 | 2 | 1.704e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.70842073933558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3658466422761601, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 306.37 us (94.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3473e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.60654531000608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3698083028452002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (0.8%)
patch tree reduce : 2.19 us (0.3%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.1%)
LB compute : 633.36 us (96.9%)
LB move op cnt : 0
LB apply : 4.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (65.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2920e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.4017951374822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3737699634142402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 297.84 us (94.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3996e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.7449002875528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3777316239832802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (0.9%)
patch tree reduce : 1.91 us (0.3%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 630.17 us (96.8%)
LB move op cnt : 0
LB apply : 4.09 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0177e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.43331857253918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3816932845523202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.6%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 302.76 us (93.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6332e+05 | 65536 | 2 | 1.804e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.06545951310713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3856549451213602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 290.05 us (94.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1971e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.33829488435029 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3896166056904002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 328.01 us (94.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5183e+05 | 65536 | 2 | 1.863e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.56547540122136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3935782662594403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.9%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 286.04 us (93.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (60.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3713e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.12760137100626 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3975399268284803, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 307.23 us (94.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3176e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.34676100661678 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1008.3224298790001 (s) [Godunov][rank=0]
amr::Godunov: t = 1.4000000000000001, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (2.0%)
patch tree reduce : 2.31 us (0.6%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 351.90 us (93.9%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3476e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.6133392498298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4039616605690401, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 302.09 us (94.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3933e+05 | 65536 | 2 | 1.931e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.84595300691333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4079233211380802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 337.93 us (94.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3800e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.31850641420763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4118849817071202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 295.79 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3836e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.3963979847511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4158466422761602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.7%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 285.68 us (93.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4212e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.21486773861552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4198083028452002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 313.13 us (94.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3949e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.64248524157273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4237699634142402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 272.11 us (93.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3562e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.79948796328621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4277316239832802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 300.42 us (94.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1268e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.80712356303401 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4316932845523203, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 293.83 us (93.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9844e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.70813574986144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4356549451213603, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 299.61 us (93.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (58.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3420e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.49184726998386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4396166056904003, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.9%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 291.28 us (93.7%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (59.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3935e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.61135078186443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4435782662594403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 369.69 us (95.0%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3727e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.15989772212674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4475399268284803, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 339.53 us (94.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2093e+05 | 65536 | 2 | 2.042e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.3693434964599 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1010.4724651160001 (s) [Godunov][rank=0]
amr::Godunov: t = 1.4500000000000002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (1.6%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 414.79 us (95.0%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2068e+05 | 65536 | 2 | 2.044e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.78569802081797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4539616605690402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 355.07 us (95.0%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3156e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.91561558023159 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4579233211380802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 311.61 us (93.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3799e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.31469636016338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4618849817071202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 314.69 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (60.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3860e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.4483102236261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4658466422761602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 317.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (67.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3208e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.0293750312589 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4698083028452003, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 2.40 us (0.7%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 310.61 us (94.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (60.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3682e+05 | 65536 | 2 | 1.946e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.29964653061177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4737699634142403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 305.52 us (94.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2085e+05 | 65536 | 2 | 2.043e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.82388915658261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4777316239832803, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.3%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 392.77 us (95.3%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1659e+05 | 65536 | 2 | 2.070e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.89741887294082 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4816932845523203, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.92 us (5.4%)
patch tree reduce : 2.22 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 388.84 us (91.2%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0434e+05 | 65536 | 2 | 2.153e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.22978615493732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4856549451213603, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.4%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 344.57 us (89.5%)
LB move op cnt : 0
LB apply : 24.71 us (6.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2726e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.97985891307405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4896166056904003, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 333.43 us (94.5%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2278e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.0054919824736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4935782662594403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 351.86 us (94.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2757e+05 | 65536 | 2 | 2.001e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.2863739372523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4975399268284804, dt = 0.002460073171519639
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 324.36 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3762e+05 | 65536 | 2 | 1.941e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.62507477398499 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1012.8824694870001 (s) [Godunov][rank=0]
amr::Godunov: t = 1.5, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.0%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 344.68 us (94.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (68.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3080e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.75059213623607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.50396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.9%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 316.28 us (94.0%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (65.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1771e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.9025465171088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.50792332113808, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 316.50 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8957e+05 | 65536 | 2 | 2.263e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.01644272845585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.51188498170712, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 375.53 us (95.0%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9560e+05 | 65536 | 2 | 2.217e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.3282256854481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.51584664227616, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 361.80 us (94.9%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2885e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.32679321828785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5198083028452, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 309.54 us (94.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2507e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.50490320551269 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.52376996341424, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (0.2%)
patch tree reduce : 1.69 us (0.1%)
gen split merge : 882.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1.68 us (0.1%)
LB compute : 2.82 ms (99.2%)
LB move op cnt : 0
LB apply : 5.00 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (66.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2509e+05 | 65536 | 2 | 2.016e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.74577580694478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.52773162398328, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 345.77 us (94.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6455e+05 | 65536 | 2 | 1.798e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.3328913958842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5316932845523201, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 297.21 us (93.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (60.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0997e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.21700459297325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5356549451213601, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 291.48 us (94.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (60.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4847e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.59583992639719 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5396166056904002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 272.21 us (93.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1413e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.12257148960111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5435782662594402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.4%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 326.27 us (94.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5794e+05 | 65536 | 2 | 1.831e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.89456004486561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5475399268284802, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.8%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 265.74 us (93.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3746e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.11614472013142 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1015.201244253 (s) [Godunov][rank=0]
amr::Godunov: t = 1.55, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (2.0%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 351.46 us (94.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2152e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.73087086191299 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.55396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.5%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 393.34 us (94.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2535e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.5655421191468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.55792332113808, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 278.61 us (93.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3620e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.9254119102883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.56188498170712, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 279.83 us (93.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8032e+05 | 65536 | 2 | 1.723e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.76587599895302 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.56584664227616, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.5%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 331.77 us (94.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3735e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.4132590332754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5698083028452001, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 317.10 us (94.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4779e+05 | 65536 | 2 | 1.884e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.68628746849785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5737699634142401, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 300.30 us (94.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9198e+05 | 65536 | 2 | 1.672e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.30395909456364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5777316239832802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 303.60 us (94.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4394e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.61130645948657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5816932845523202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 277.09 us (93.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3101e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.79680404782773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5856549451213602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.6%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 338.59 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4789e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.47103052252213 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5896166056904002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 298.37 us (93.7%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8186e+05 | 65536 | 2 | 1.716e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.10027143184305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5935782662594402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 292.30 us (93.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7948e+05 | 65536 | 2 | 1.727e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.58201532994694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5975399268284802, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 295.79 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4472e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.097379814339085 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1017.414127374 (s) [Godunov][rank=0]
amr::Godunov: t = 1.6, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (1.7%)
patch tree reduce : 2.50 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 377.36 us (94.5%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (62.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2495e+05 | 65536 | 2 | 2.017e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.7157394286685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.60396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 342.47 us (94.8%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9993e+05 | 65536 | 2 | 1.639e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.03292357400768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6079233211380801, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 275.42 us (93.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3836e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.3969901390164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6118849817071201, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.0%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 289.56 us (93.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3721e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.14508004943575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6158466422761601, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 283.52 us (93.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3886e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.50428040935411 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6198083028452002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 308.12 us (94.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2777e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.0911322828117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6237699634142402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 278.36 us (93.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3824e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.37006795274057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6277316239832802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 288.78 us (93.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3264e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.15097644287528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6316932845523202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 280.82 us (93.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (60.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2940e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.4465555121632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6356549451213602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 305.44 us (93.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4796e+05 | 65536 | 2 | 1.883e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.72222706401678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6396166056904002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.4%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 374.25 us (94.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3225e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.0673962373994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6435782662594403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.8%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 274.23 us (93.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3820e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.36172384028524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6475399268284803, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 301.23 us (93.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3754e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.12680174303177 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1019.562530625 (s) [Godunov][rank=0]
amr::Godunov: t = 1.6500000000000001, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (1.6%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 397.73 us (94.9%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3501e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 1.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.66733380762025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6539616605690401, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 317.23 us (94.1%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6584e+05 | 65536 | 2 | 1.791e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.61392117114278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6579233211380802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 349.79 us (94.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2477e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.43877853654668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6618849817071202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.5%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 315.92 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2709e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.94442512780134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6658466422761602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 298.09 us (93.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (60.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2914e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.38864078297203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6698083028452002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 310.87 us (94.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4847e+05 | 65536 | 2 | 1.881e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.83512858579805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6737699634142402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 277.15 us (93.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6536e+05 | 65536 | 2 | 1.794e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.51005612003519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6777316239832802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.43 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 319.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1932e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.25311474702522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6816932845523203, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 306.46 us (94.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8993e+05 | 65536 | 2 | 1.681e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.8556819233339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6856549451213603, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.8%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 282.68 us (93.8%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2304e+05 | 65536 | 2 | 2.029e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.3001938662869 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6896166056904003, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 324.38 us (94.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6085e+05 | 65536 | 2 | 1.816e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.52895671661216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6935782662594403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 281.53 us (93.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5362e+05 | 65536 | 2 | 1.853e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.95397362665162 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6975399268284803, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.5%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 356.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8468e+05 | 65536 | 2 | 1.704e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.98357284297569 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1021.880590436 (s) [Godunov][rank=0]
amr::Godunov: t = 1.7000000000000002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.0%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 345.58 us (94.2%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4157e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.09511261569276 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7039616605690402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 330.45 us (94.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4130e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 1.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.03699936845048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7079233211380802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 297.41 us (93.8%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4474e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.78375423310796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7118849817071202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 300.36 us (93.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4389e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.59897427840562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7158466422761602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 297.55 us (93.8%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (60.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4331e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4735295596832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7198083028452003, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 301.72 us (93.7%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4169e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.1208132279731 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7237699634142403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 299.17 us (93.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3615e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.9155579899295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7277316239832803, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 2.42 us (0.7%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 311.81 us (93.6%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0103e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.2734297992624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7316932845523203, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.5%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 321.04 us (94.2%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1168e+05 | 65536 | 2 | 2.103e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.82725474282388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7356549451213603, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.5%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 350.14 us (94.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1746e+05 | 65536 | 2 | 2.064e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.0859743845637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7396166056904003, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.4%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 376.89 us (94.8%)
LB move op cnt : 0
LB apply : 4.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1885e+05 | 65536 | 2 | 2.055e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.38761361147567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7435782662594403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.5%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 364.50 us (94.9%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0507e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.15215884946878 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7475399268284804, dt = 0.002460073171519639
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.3%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 375.50 us (94.8%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4400e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.00099238168392 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1024.0956433630001 (s) [Godunov][rank=0]
amr::Godunov: t = 1.75, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (1.8%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 396.32 us (94.8%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3497e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.65747308057796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.75396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 338.01 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3481e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 1.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.62279150976103 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.75792332113808, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 300.13 us (88.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0945e+05 | 65536 | 2 | 2.118e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.34340223671533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.76188498170712, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 359.23 us (94.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4420e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.6674188093676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.76584664227616, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 306.46 us (94.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (60.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5775e+05 | 65536 | 2 | 1.832e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.85368219411883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7698083028452, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.3%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 379.69 us (95.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (64.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2391e+05 | 65536 | 2 | 2.023e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.48956336721105 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.77376996341424, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 337.56 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2981e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.53440893703775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.77773162398328, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 310.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3497e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.65774385557643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7816932845523201, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 298.96 us (94.2%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3301e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.23259582356235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7856549451213601, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.8%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 273.56 us (93.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7886e+05 | 65536 | 2 | 1.730e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.44750714614791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7896166056904002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 316.06 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3650e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.99071626862596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7935782662594402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (2.0%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 272.18 us (93.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2983e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.5391178414908 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7975399268284802, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 320.34 us (93.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3241e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.43439948640685 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1026.310807217 (s) [Godunov][rank=0]
amr::Godunov: t = 1.8, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.1%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 342.87 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (65.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2166e+05 | 65536 | 2 | 2.037e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.9997565982883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.80396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 14.31 us (3.6%)
patch tree reduce : 2.36 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 366.64 us (92.5%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (63.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3956e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.65824421567025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.80792332113808, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.89 us (1.4%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 331.58 us (94.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7566e+05 | 65536 | 2 | 1.745e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.75083507725955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.81188498170712, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.4%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 353.25 us (94.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4942e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.80227719288405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.81584664227616, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.5%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 328.80 us (94.4%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8580e+05 | 65536 | 2 | 1.699e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.95762889741805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8198083028452001, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 309.39 us (93.7%)
LB move op cnt : 0
LB apply : 4.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4201e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.18942561446009 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8237699634142401, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 295.57 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4236e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.26721736664703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8277316239832802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 296.39 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2877e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.30885226306418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8316932845523202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 298.48 us (94.1%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3154e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.91230210871382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8356549451213602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 282.15 us (93.8%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.9%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3379e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.4024962366112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8396166056904002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 310.82 us (94.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4342e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.49709556315669 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8435782662594402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 305.75 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3472e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.60326071941742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8475399268284802, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 311.69 us (94.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3758e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.13311401808928 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1028.443033658 (s) [Godunov][rank=0]
amr::Godunov: t = 1.85, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.0%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 349.24 us (94.1%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.41 us (93.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6433e+05 | 65536 | 2 | 1.799e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.2847072386205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.85396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 294.16 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (59.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3331e+05 | 65536 | 2 | 1.966e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.53520977024088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8579233211380801, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 304.06 us (93.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4500e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.84127639133375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8618849817071201, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 274.89 us (93.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3442e+05 | 65536 | 2 | 1.960e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.7764254584744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8658466422761601, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 301.55 us (93.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7749e+05 | 65536 | 2 | 1.736e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.15033746026833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8698083028452002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 277.53 us (93.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (60.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1719e+05 | 65536 | 2 | 2.066e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.0279668217826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8737699634142402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.9%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 303.50 us (93.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (67.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7781e+05 | 65536 | 2 | 1.735e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.21918896175953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8777316239832802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 304.62 us (93.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (60.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4763e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.41321313260897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8816932845523202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.6%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 315.77 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5222e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.41198981258185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8856549451213602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 294.16 us (93.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (62.4%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5129e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.20990210156994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8896166056904002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 294.81 us (94.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4783e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.4561410374414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8935782662594403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 324.50 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (62.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4619e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.10085386343744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8975399268284803, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 305.73 us (94.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (59.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4813e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.55857895528548 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1030.6749715580002 (s) [Godunov][rank=0]
amr::Godunov: t = 1.9000000000000001, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (2.1%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 338.90 us (94.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4817e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.53039054617442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9039616605690401, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 317.58 us (94.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3405e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 1.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.45869141305204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9079233211380802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 279.71 us (93.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1026e+05 | 65536 | 2 | 1.597e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.28157542611511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9118849817071202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 291.09 us (93.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (60.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0852e+05 | 65536 | 2 | 2.124e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.1392383541333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9158466422761602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (1.7%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 360.93 us (94.3%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (64.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3865e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.4581734901342 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9198083028452002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 333.32 us (94.5%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4074e+05 | 65536 | 2 | 1.923e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.15137308383224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9237699634142402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 272.99 us (93.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2576e+05 | 65536 | 2 | 2.012e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.8927576113969 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9277316239832802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 333.93 us (94.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5038e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.01089562691999 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9316932845523203, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 295.34 us (88.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5395e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.78969791393627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9356549451213603, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 288.06 us (93.8%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8673e+05 | 65536 | 2 | 1.695e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.1607563356454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9396166056904003, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 279.75 us (93.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3896e+05 | 65536 | 2 | 1.933e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.7649550235246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9435782662594403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 345.54 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1100e+05 | 65536 | 2 | 2.107e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.67971126953499 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9475399268284803, dt = 0.002460073171519861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.4%)
patch tree reduce : 1.93 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 410.29 us (95.3%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3281e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.487686663992214 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1032.98450397 (s) [Godunov][rank=0]
amr::Godunov: t = 1.9500000000000002, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (1.6%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 404.70 us (95.0%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2243e+05 | 65536 | 2 | 2.033e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.1683601351202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9539616605690402, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.4%)
patch tree reduce : 2.11 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 365.24 us (94.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0533e+05 | 65536 | 2 | 2.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.44715179028046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9579233211380802, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.4%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 388.85 us (95.2%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.3%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2730e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.98820851070911 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9618849817071202, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 345.89 us (94.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.8%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4328e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.46632230538034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9658466422761602, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (1.9%)
patch tree reduce : 2.69 us (0.8%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 315.12 us (93.3%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.1%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0798e+05 | 65536 | 2 | 1.606e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.78509296457685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9698083028452003, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.97 us (6.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 331.97 us (89.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4538e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.92312142639166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9737699634142403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 302.93 us (94.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (61.0%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4811e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.51729386634024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9777316239832803, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 310.99 us (94.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1325e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.93220725835194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9816932845523203, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 333.38 us (94.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3237e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.09320299425667 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9856549451213603, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 333.64 us (94.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.5%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1802e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.9697679768786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9896166056904003, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 317.28 us (94.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.7%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4396e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.614523185924 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9935782662594403, dt = 0.003961660569039922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.7%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 343.91 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (61.2%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4589e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.03511444758068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9975399268284804, dt = 0.002460073171519639
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 302.90 us (94.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.6%)
Info: cfl dt = 0.003961660569039922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7827e+05 | 65536 | 2 | 1.733e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.11741809693654 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1035.1756000320001 (s) [Godunov][rank=0]
none_hll
{'none_hll': [{'rho': array([1.39793658, 1.39793658, 1.39793658, 1.39793658, 1.39779504,
1.39779504, 1.39779504, 1.39779504, 1.39750655, 1.39750655,
1.39750655, 1.39750655, 1.39706031, 1.39706031, 1.39706031,
1.39706031, 1.39644015, 1.39644015, 1.39644015, 1.39644015,
1.39562467, 1.39562467, 1.39562467, 1.39562467, 1.39458733,
1.39458733, 1.39458733, 1.39458733, 1.3932967 , 1.3932967 ,
1.3932967 , 1.3932967 , 1.39171682, 1.39171682, 1.39171682,
1.39171682, 1.38980764, 1.38980764, 1.38980764, 1.38980764,
1.38752567, 1.38752567, 1.38752567, 1.38752567, 1.38482477,
1.38482477, 1.38482477, 1.38482477, 1.38165717, 1.38165717,
1.38165717, 1.38165717, 1.37797465, 1.37797465, 1.37797465,
1.37797465, 1.37372994, 1.37372994, 1.37372994, 1.37372994,
1.36887821, 1.36887821, 1.36887821, 1.36887821, 1.36337874,
1.36337874, 1.36337874, 1.36337874, 1.3571966 , 1.3571966 ,
1.3571966 , 1.3571966 , 1.35030438, 1.35030438, 1.35030438,
1.35030438, 1.34268375, 1.34268375, 1.34268375, 1.34268375,
1.33432692, 1.33432692, 1.33432692, 1.33432692, 1.32523779,
1.32523779, 1.32523779, 1.32523779, 1.31543282, 1.31543282,
1.31543282, 1.31543282, 1.30494145, 1.30494145, 1.30494145,
1.30494145, 1.29380614, 1.29380614, 1.29380614, 1.29380614,
1.2820819 , 1.2820819 , 1.2820819 , 1.2820819 , 1.2698354 ,
1.2698354 , 1.2698354 , 1.2698354 , 1.25714365, 1.25714365,
1.25714365, 1.25714365, 1.24409234, 1.24409234, 1.24409234,
1.24409234, 1.23077381, 1.23077381, 1.23077381, 1.23077381,
1.21728493, 1.21728493, 1.21728493, 1.21728493, 1.20372481,
1.20372481, 1.20372481, 1.20372481, 1.1901925 , 1.1901925 ,
1.1901925 , 1.1901925 , 1.17678482, 1.17678482, 1.17678482,
1.17678482, 1.16359431, 1.16359431, 1.16359431, 1.16359431,
1.15070743, 1.15070743, 1.15070743, 1.15070743, 1.13820309,
1.13820309, 1.13820309, 1.13820309, 1.12615138, 1.12615138,
1.12615138, 1.12615138, 1.11461275, 1.11461275, 1.11461275,
1.11461275, 1.10363742, 1.10363742, 1.10363742, 1.10363742,
1.09326517, 1.09326517, 1.09326517, 1.09326517, 1.08352534,
1.08352534, 1.08352534, 1.08352534, 1.07443715, 1.07443715,
1.07443715, 1.07443715, 1.0660102 , 1.0660102 , 1.0660102 ,
1.0660102 , 1.05824518, 1.05824518, 1.05824518, 1.05824518,
1.05113465, 1.05113465, 1.05113465, 1.05113465, 1.04466401,
1.04466401, 1.04466401, 1.04466401, 1.03881248, 1.03881248,
1.03881248, 1.03881248, 1.03355414, 1.03355414, 1.03355414,
1.03355414, 1.02885897, 1.02885897, 1.02885897, 1.02885897,
1.02469389, 1.02469389, 1.02469389, 1.02469389, 1.02102374,
1.02102374, 1.02102374, 1.02102374, 1.0178122 , 1.0178122 ,
1.0178122 , 1.0178122 , 1.01502272, 1.01502272, 1.01502272,
1.01502272, 1.01261926, 1.01261926, 1.01261926, 1.01261926,
1.01056704, 1.01056704, 1.01056704, 1.01056704, 1.00883315,
1.00883315, 1.00883315, 1.00883315, 1.00738714, 1.00738714,
1.00738714, 1.00738714, 1.00620142, 1.00620142, 1.00620142,
1.00620142, 1.00525173, 1.00525173, 1.00525173, 1.00525173,
1.00451738, 1.00451738, 1.00451738, 1.00451738, 1.00398157,
1.00398157, 1.00398157, 1.00398157, 1.00363152, 1.00363152,
1.00363152, 1.00363152, 1.00345865, 1.00345865, 1.00345865]), 'vx': array([ 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.37066414e-17, 1.37066414e-17, 1.37066414e-17, 1.37066414e-17,
-1.37127285e-17, -1.37127285e-17, -1.37127285e-17, -1.37127285e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
2.02175764e-17, 2.02175764e-17, 2.02175764e-17, 2.02175764e-17,
-2.02363042e-17, -2.02363042e-17, -2.02363042e-17, -2.02363042e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
2.04055156e-17, 2.04055156e-17, 2.04055156e-17, 2.04055156e-17,
-2.04600475e-17, -2.04600475e-17, -2.04600475e-17, -2.04600475e-17,
2.05125505e-17, 2.05125505e-17, 2.05125505e-17, 2.05125505e-17,
2.05732972e-17, 2.05732972e-17, 2.05732972e-17, 2.05732972e-17,
-2.06426304e-17, -2.06426304e-17, -2.06426304e-17, -2.06426304e-17,
-2.82126032e-20, -2.82126032e-20, -2.82126032e-20, -2.82126032e-20,
4.17268317e-17, 4.17268317e-17, 4.17268317e-17, 4.17268317e-17,
-2.09704119e-17, -2.09704119e-17, -2.09704119e-17, -2.09704119e-17,
6.33130499e-17, 6.33130499e-17, 6.33130499e-17, 6.33130499e-17,
-6.37666061e-17, -6.37666061e-17, -6.37666061e-17, -6.37666061e-17,
2.13982407e-17, 2.13982407e-17, 2.13982407e-17, 2.13982407e-17,
1.07870652e-16, 1.07870652e-16, 1.07870652e-16, 1.07870652e-16,
6.53551645e-17, 6.53551645e-17, 6.53551645e-17, 6.53551645e-17,
-4.39870830e-17, -4.39870830e-17, -4.39870830e-17, -4.39870830e-17,
2.22476212e-17, 2.22476212e-17, 2.22476212e-17, 2.22476212e-17,
-4.48771936e-17, -4.48771936e-17, -4.48771936e-17, -4.48771936e-17,
6.79373117e-17, 6.79373117e-17, 6.79373117e-17, 6.79373117e-17,
2.28402531e-17, 2.28402531e-17, 2.28402531e-17, 2.28402531e-17,
1.62053493e-16, 1.62053493e-16, 1.62053493e-16, 1.62053493e-16,
2.33014003e-17, 2.33014003e-17, 2.33014003e-17, 2.33014003e-17,
7.10244704e-17, 7.10244704e-17, 7.10244704e-17, 7.10244704e-17,
-2.40136663e-17, -2.40136663e-17, -2.40136663e-17, -2.40136663e-17,
3.13463171e-21, 3.13463171e-21, 3.13463171e-21, 3.13463171e-21,
4.88886029e-17, 4.88886029e-17, 4.88886029e-17, 4.88886029e-17,
7.42131612e-17, 7.42131612e-17, 7.42131612e-17, 7.42131612e-17,
2.50149725e-17, 2.50149725e-17, 2.50149725e-17, 2.50149725e-17,
5.05769358e-17, 5.05769358e-17, 5.05769358e-17, 5.05769358e-17,
1.28019094e-21, 1.28019094e-21, 1.28019094e-21, 1.28019094e-21,
-6.58784750e-20, -6.58784750e-20, -6.58784750e-20, -6.58784750e-20,
-1.00252470e-20, -1.00252470e-20, -1.00252470e-20, -1.00252470e-20,
7.87311389e-17, 7.87311389e-17, 7.87311389e-17, 7.87311389e-17,
-2.64016162e-17, -2.64016162e-17, -2.64016162e-17, -2.64016162e-17,
2.66144431e-17, 2.66144431e-17, 2.66144431e-17, 2.66144431e-17,
-8.04167127e-17, -8.04167127e-17, -8.04167127e-17, -8.04167127e-17,
5.39229502e-17, 5.39229502e-17, 5.39229502e-17, 5.39229502e-17,
2.75726749e-21, 2.75726749e-21, 2.75726749e-21, 2.75726749e-21,
2.72678453e-17, 2.72678453e-17, 2.72678453e-17, 2.72678453e-17,
2.73522780e-17, 2.73522780e-17, 2.73522780e-17, 2.73522780e-17,
-2.75223551e-17, -2.75223551e-17, -2.75223551e-17, -2.75223551e-17,
-1.16211686e-20, -1.16211686e-20, -1.16211686e-20, -1.16211686e-20,
1.07567321e-21, 1.07567321e-21, 1.07567321e-21, 1.07567321e-21,
-2.77172040e-17, -2.77172040e-17, -2.77172040e-17, -2.77172040e-17,
5.56956290e-17, 5.56956290e-17, 5.56956290e-17, 5.56956290e-17,
2.78583082e-17, 2.78583082e-17, 2.78583082e-17, 2.78583082e-17,
5.58838612e-17, 5.58838612e-17, 5.58838612e-17, 5.58838612e-17,
-5.21085347e-20, -5.21085347e-20, -5.21085347e-20, -5.21085347e-20,
-3.89863889e-20, -3.89863889e-20, -3.89863889e-20, -3.89863889e-20,
-2.80053345e-17, -2.80053345e-17, -2.80053345e-17, -2.80053345e-17,
-5.60721280e-17, -5.60721280e-17, -5.60721280e-17, -5.60721280e-17,
-2.81065718e-17, -2.81065718e-17, -2.81065718e-17, -2.81065718e-17,
1.12343263e-16, 1.12343263e-16, 1.12343263e-16, 1.12343263e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_rusanov': [{'rho': array([1.39999993, 1.39999993, 1.39999993, 1.39999993, 1.39999991,
1.39999991, 1.39999991, 1.39999991, 1.39999985, 1.39999985,
1.39999985, 1.39999985, 1.39999972, 1.39999972, 1.39999972,
1.39999972, 1.39999945, 1.39999945, 1.39999945, 1.39999945,
1.39999894, 1.39999894, 1.39999894, 1.39999894, 1.39999796,
1.39999796, 1.39999796, 1.39999796, 1.39999616, 1.39999616,
1.39999616, 1.39999616, 1.39999286, 1.39999286, 1.39999286,
1.39999286, 1.39998691, 1.39998691, 1.39998691, 1.39998691,
1.39997632, 1.39997632, 1.39997632, 1.39997632, 1.39995776,
1.39995776, 1.39995776, 1.39995776, 1.39992567, 1.39992567,
1.39992567, 1.39992567, 1.39987104, 1.39987104, 1.39987104,
1.39987104, 1.39977938, 1.39977938, 1.39977938, 1.39977938,
1.39962798, 1.39962798, 1.39962798, 1.39962798, 1.39938173,
1.39938173, 1.39938173, 1.39938173, 1.39898755, 1.39898755,
1.39898755, 1.39898755, 1.39836674, 1.39836674, 1.39836674,
1.39836674, 1.39740512, 1.39740512, 1.39740512, 1.39740512,
1.39594074, 1.39594074, 1.39594074, 1.39594074, 1.39374939,
1.39374939, 1.39374939, 1.39374939, 1.39052866, 1.39052866,
1.39052866, 1.39052866, 1.38588215, 1.38588215, 1.38588215,
1.38588215, 1.37930638, 1.37930638, 1.37930638, 1.37930638,
1.37018426, 1.37018426, 1.37018426, 1.37018426, 1.35779013,
1.35779013, 1.35779013, 1.35779013, 1.34131205, 1.34131205,
1.34131205, 1.34131205, 1.31989677, 1.31989677, 1.31989677,
1.31989677, 1.29272107, 1.29272107, 1.29272107, 1.29272107,
1.25908953, 1.25908953, 1.25908953, 1.25908953, 1.21855289,
1.21855289, 1.21855289, 1.21855289, 1.17556589, 1.17556589,
1.17556589, 1.17556589, 1.13711047, 1.13711047, 1.13711047,
1.13711047, 1.10532695, 1.10532695, 1.10532695, 1.10532695,
1.0796248 , 1.0796248 , 1.0796248 , 1.0796248 , 1.05925989,
1.05925989, 1.05925989, 1.05925989, 1.04343222, 1.04343222,
1.04343222, 1.04343222, 1.03135572, 1.03135572, 1.03135572,
1.03135572, 1.02230367, 1.02230367, 1.02230367, 1.02230367,
1.01563447, 1.01563447, 1.01563447, 1.01563447, 1.01080252,
1.01080252, 1.01080252, 1.01080252, 1.00735845, 1.00735845,
1.00735845, 1.00735845, 1.00494254, 1.00494254, 1.00494254,
1.00494254, 1.00327414, 1.00327414, 1.00327414, 1.00327414,
1.00213948, 1.00213948, 1.00213948, 1.00213948, 1.00137931,
1.00137931, 1.00137931, 1.00137931, 1.00087748, 1.00087748,
1.00087748, 1.00087748, 1.00055094, 1.00055094, 1.00055094,
1.00055094, 1.00034146, 1.00034146, 1.00034146, 1.00034146,
1.00020894, 1.00020894, 1.00020894, 1.00020894, 1.00012624,
1.00012624, 1.00012624, 1.00012624, 1.00007533, 1.00007533,
1.00007533, 1.00007533, 1.0000444 , 1.0000444 , 1.0000444 ,
1.0000444 , 1.00002585, 1.00002585, 1.00002585, 1.00002585,
1.00001487, 1.00001487, 1.00001487, 1.00001487, 1.00000844,
1.00000844, 1.00000844, 1.00000844, 1.00000473, 1.00000473,
1.00000473, 1.00000473, 1.00000261, 1.00000261, 1.00000261,
1.00000261, 1.00000142, 1.00000142, 1.00000142, 1.00000142,
1.00000077, 1.00000077, 1.00000077, 1.00000077, 1.00000044,
1.00000044, 1.00000044, 1.00000044, 1.00000029, 1.00000029,
1.00000029, 1.00000029, 1.00000024, 1.00000024, 1.00000024]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hll': [{'rho': array([1.39999993, 1.39999993, 1.39999993, 1.39999993, 1.39999991,
1.39999991, 1.39999991, 1.39999991, 1.39999985, 1.39999985,
1.39999985, 1.39999985, 1.39999972, 1.39999972, 1.39999972,
1.39999972, 1.39999945, 1.39999945, 1.39999945, 1.39999945,
1.39999894, 1.39999894, 1.39999894, 1.39999894, 1.39999796,
1.39999796, 1.39999796, 1.39999796, 1.39999616, 1.39999616,
1.39999616, 1.39999616, 1.39999286, 1.39999286, 1.39999286,
1.39999286, 1.39998691, 1.39998691, 1.39998691, 1.39998691,
1.39997632, 1.39997632, 1.39997632, 1.39997632, 1.39995776,
1.39995776, 1.39995776, 1.39995776, 1.39992567, 1.39992567,
1.39992567, 1.39992567, 1.39987104, 1.39987104, 1.39987104,
1.39987104, 1.39977938, 1.39977938, 1.39977938, 1.39977938,
1.39962798, 1.39962798, 1.39962798, 1.39962798, 1.39938173,
1.39938173, 1.39938173, 1.39938173, 1.39898755, 1.39898755,
1.39898755, 1.39898755, 1.39836674, 1.39836674, 1.39836674,
1.39836674, 1.39740512, 1.39740512, 1.39740512, 1.39740512,
1.39594074, 1.39594074, 1.39594074, 1.39594074, 1.39374939,
1.39374939, 1.39374939, 1.39374939, 1.39052866, 1.39052866,
1.39052866, 1.39052866, 1.38588215, 1.38588215, 1.38588215,
1.38588215, 1.37930638, 1.37930638, 1.37930638, 1.37930638,
1.37018426, 1.37018426, 1.37018426, 1.37018426, 1.35779013,
1.35779013, 1.35779013, 1.35779013, 1.34131205, 1.34131205,
1.34131205, 1.34131205, 1.31989677, 1.31989677, 1.31989677,
1.31989677, 1.29272107, 1.29272107, 1.29272107, 1.29272107,
1.25908953, 1.25908953, 1.25908953, 1.25908953, 1.21855289,
1.21855289, 1.21855289, 1.21855289, 1.17556589, 1.17556589,
1.17556589, 1.17556589, 1.13711047, 1.13711047, 1.13711047,
1.13711047, 1.10532695, 1.10532695, 1.10532695, 1.10532695,
1.0796248 , 1.0796248 , 1.0796248 , 1.0796248 , 1.05925989,
1.05925989, 1.05925989, 1.05925989, 1.04343222, 1.04343222,
1.04343222, 1.04343222, 1.03135572, 1.03135572, 1.03135572,
1.03135572, 1.02230367, 1.02230367, 1.02230367, 1.02230367,
1.01563447, 1.01563447, 1.01563447, 1.01563447, 1.01080252,
1.01080252, 1.01080252, 1.01080252, 1.00735845, 1.00735845,
1.00735845, 1.00735845, 1.00494254, 1.00494254, 1.00494254,
1.00494254, 1.00327414, 1.00327414, 1.00327414, 1.00327414,
1.00213948, 1.00213948, 1.00213948, 1.00213948, 1.00137931,
1.00137931, 1.00137931, 1.00137931, 1.00087748, 1.00087748,
1.00087748, 1.00087748, 1.00055094, 1.00055094, 1.00055094,
1.00055094, 1.00034146, 1.00034146, 1.00034146, 1.00034146,
1.00020894, 1.00020894, 1.00020894, 1.00020894, 1.00012624,
1.00012624, 1.00012624, 1.00012624, 1.00007533, 1.00007533,
1.00007533, 1.00007533, 1.0000444 , 1.0000444 , 1.0000444 ,
1.0000444 , 1.00002585, 1.00002585, 1.00002585, 1.00002585,
1.00001487, 1.00001487, 1.00001487, 1.00001487, 1.00000844,
1.00000844, 1.00000844, 1.00000844, 1.00000473, 1.00000473,
1.00000473, 1.00000473, 1.00000261, 1.00000261, 1.00000261,
1.00000261, 1.00000142, 1.00000142, 1.00000142, 1.00000142,
1.00000077, 1.00000077, 1.00000077, 1.00000077, 1.00000044,
1.00000044, 1.00000044, 1.00000044, 1.00000029, 1.00000029,
1.00000029, 1.00000029, 1.00000024, 1.00000024, 1.00000024]), 'vx': array([ 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
4.08165898e-17, 4.08165898e-17, 4.08165898e-17, 4.08165898e-17,
2.05441670e-17, 2.05441670e-17, 2.05441670e-17, 2.05441670e-17,
8.29267837e-17, 8.29267837e-17, 8.29267837e-17, 8.29267837e-17,
-4.19727742e-17, -4.19727742e-17, -4.19727742e-17, -4.19727742e-17,
4.26537769e-17, 4.26537769e-17, 4.26537769e-17, 4.26537769e-17,
1.08876128e-16, 1.08876128e-16, 1.08876128e-16, 1.08876128e-16,
4.47137207e-17, 4.47137207e-17, 4.47137207e-17, 4.47137207e-17,
6.93017781e-17, 6.93017781e-17, 6.93017781e-17, 6.93017781e-17,
4.78906210e-17, 4.78906210e-17, 4.78906210e-17, 4.78906210e-17,
4.95102129e-17, 4.95102129e-17, 4.95102129e-17, 4.95102129e-17,
1.52801624e-16, 1.52801624e-16, 1.52801624e-16, 1.52801624e-16,
1.56439306e-16, 1.56439306e-16, 1.56439306e-16, 1.56439306e-16,
2.65744882e-17, 2.65744882e-17, 2.65744882e-17, 2.65744882e-17,
-2.69775953e-17, -2.69775953e-17, -2.69775953e-17, -2.69775953e-17,
2.72934830e-17, 2.72934830e-17, 2.72934830e-17, 2.72934830e-17,
5.50703187e-17, 5.50703187e-17, 5.50703187e-17, 5.50703187e-17,
-2.77159736e-17, -2.77159736e-17, -2.77159736e-17, -2.77159736e-17,
-2.57629383e-24, -2.57629383e-24, -2.57629383e-24, -2.57629383e-24,
1.16823881e-24, 1.16823881e-24, 1.16823881e-24, 1.16823881e-24,
-5.60216970e-17, -5.60216970e-17, -5.60216970e-17, -5.60216970e-17,
2.80574330e-17, 2.80574330e-17, 2.80574330e-17, 2.80574330e-17,
2.35612635e-17, 2.35612635e-17, 2.35612635e-17, 2.35612635e-17,
3.26418943e-17, 3.26418943e-17, 3.26418943e-17, 3.26418943e-17,
-5.62492278e-17, -5.62492278e-17, -5.62492278e-17, -5.62492278e-17,
2.35986698e-17, 2.35986698e-17, 2.35986698e-17, 2.35986698e-17,
4.53606565e-18, 4.53606565e-18, 4.53606565e-18, 4.53606565e-18,
2.46313404e-24, 2.46313404e-24, 2.46313404e-24, 2.46313404e-24,
-2.81457414e-17, -2.81457414e-17, -2.81457414e-17, -2.81457414e-17,
2.81471744e-17, 2.81471744e-17, 2.81471744e-17, 2.81471744e-17,
2.81480379e-17, 2.81480379e-17, 2.81480379e-17, 2.81480379e-17,
2.36110604e-17, 2.36110604e-17, 2.36110604e-17, 2.36110604e-17,
4.53755405e-18, 4.53755405e-18, 4.53755405e-18, 4.53755405e-18,
3.12433719e-24, 3.12433719e-24, 3.12433719e-24, 3.12433719e-24,
2.81491629e-17, 2.81491629e-17, 2.81491629e-17, 2.81491629e-17,
-2.81492237e-17, -2.81492237e-17, -2.81492237e-17, -2.81492237e-17,
2.81492517e-17, 2.81492517e-17, 2.81492517e-17, 2.81492517e-17,
8.44478118e-17, 8.44478118e-17, 8.44478118e-17, 8.44478118e-17,
-5.62985654e-17, -5.62985654e-17, -5.62985654e-17, -5.62985654e-17,
-5.62985652e-17, -5.62985652e-17, -5.62985652e-17, -5.62985652e-17,
-2.81492847e-17, -2.81492847e-17, -2.81492847e-17]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hllc': [{'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}]}
minmod_rusanov
{'none_hll': [{'rho': array([1.39793658, 1.39793658, 1.39793658, 1.39793658, 1.39779504,
1.39779504, 1.39779504, 1.39779504, 1.39750655, 1.39750655,
1.39750655, 1.39750655, 1.39706031, 1.39706031, 1.39706031,
1.39706031, 1.39644015, 1.39644015, 1.39644015, 1.39644015,
1.39562467, 1.39562467, 1.39562467, 1.39562467, 1.39458733,
1.39458733, 1.39458733, 1.39458733, 1.3932967 , 1.3932967 ,
1.3932967 , 1.3932967 , 1.39171682, 1.39171682, 1.39171682,
1.39171682, 1.38980764, 1.38980764, 1.38980764, 1.38980764,
1.38752567, 1.38752567, 1.38752567, 1.38752567, 1.38482477,
1.38482477, 1.38482477, 1.38482477, 1.38165717, 1.38165717,
1.38165717, 1.38165717, 1.37797465, 1.37797465, 1.37797465,
1.37797465, 1.37372994, 1.37372994, 1.37372994, 1.37372994,
1.36887821, 1.36887821, 1.36887821, 1.36887821, 1.36337874,
1.36337874, 1.36337874, 1.36337874, 1.3571966 , 1.3571966 ,
1.3571966 , 1.3571966 , 1.35030438, 1.35030438, 1.35030438,
1.35030438, 1.34268375, 1.34268375, 1.34268375, 1.34268375,
1.33432692, 1.33432692, 1.33432692, 1.33432692, 1.32523779,
1.32523779, 1.32523779, 1.32523779, 1.31543282, 1.31543282,
1.31543282, 1.31543282, 1.30494145, 1.30494145, 1.30494145,
1.30494145, 1.29380614, 1.29380614, 1.29380614, 1.29380614,
1.2820819 , 1.2820819 , 1.2820819 , 1.2820819 , 1.2698354 ,
1.2698354 , 1.2698354 , 1.2698354 , 1.25714365, 1.25714365,
1.25714365, 1.25714365, 1.24409234, 1.24409234, 1.24409234,
1.24409234, 1.23077381, 1.23077381, 1.23077381, 1.23077381,
1.21728493, 1.21728493, 1.21728493, 1.21728493, 1.20372481,
1.20372481, 1.20372481, 1.20372481, 1.1901925 , 1.1901925 ,
1.1901925 , 1.1901925 , 1.17678482, 1.17678482, 1.17678482,
1.17678482, 1.16359431, 1.16359431, 1.16359431, 1.16359431,
1.15070743, 1.15070743, 1.15070743, 1.15070743, 1.13820309,
1.13820309, 1.13820309, 1.13820309, 1.12615138, 1.12615138,
1.12615138, 1.12615138, 1.11461275, 1.11461275, 1.11461275,
1.11461275, 1.10363742, 1.10363742, 1.10363742, 1.10363742,
1.09326517, 1.09326517, 1.09326517, 1.09326517, 1.08352534,
1.08352534, 1.08352534, 1.08352534, 1.07443715, 1.07443715,
1.07443715, 1.07443715, 1.0660102 , 1.0660102 , 1.0660102 ,
1.0660102 , 1.05824518, 1.05824518, 1.05824518, 1.05824518,
1.05113465, 1.05113465, 1.05113465, 1.05113465, 1.04466401,
1.04466401, 1.04466401, 1.04466401, 1.03881248, 1.03881248,
1.03881248, 1.03881248, 1.03355414, 1.03355414, 1.03355414,
1.03355414, 1.02885897, 1.02885897, 1.02885897, 1.02885897,
1.02469389, 1.02469389, 1.02469389, 1.02469389, 1.02102374,
1.02102374, 1.02102374, 1.02102374, 1.0178122 , 1.0178122 ,
1.0178122 , 1.0178122 , 1.01502272, 1.01502272, 1.01502272,
1.01502272, 1.01261926, 1.01261926, 1.01261926, 1.01261926,
1.01056704, 1.01056704, 1.01056704, 1.01056704, 1.00883315,
1.00883315, 1.00883315, 1.00883315, 1.00738714, 1.00738714,
1.00738714, 1.00738714, 1.00620142, 1.00620142, 1.00620142,
1.00620142, 1.00525173, 1.00525173, 1.00525173, 1.00525173,
1.00451738, 1.00451738, 1.00451738, 1.00451738, 1.00398157,
1.00398157, 1.00398157, 1.00398157, 1.00363152, 1.00363152,
1.00363152, 1.00363152, 1.00345865, 1.00345865, 1.00345865]), 'vx': array([ 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.37066414e-17, 1.37066414e-17, 1.37066414e-17, 1.37066414e-17,
-1.37127285e-17, -1.37127285e-17, -1.37127285e-17, -1.37127285e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
2.02175764e-17, 2.02175764e-17, 2.02175764e-17, 2.02175764e-17,
-2.02363042e-17, -2.02363042e-17, -2.02363042e-17, -2.02363042e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
2.04055156e-17, 2.04055156e-17, 2.04055156e-17, 2.04055156e-17,
-2.04600475e-17, -2.04600475e-17, -2.04600475e-17, -2.04600475e-17,
2.05125505e-17, 2.05125505e-17, 2.05125505e-17, 2.05125505e-17,
2.05732972e-17, 2.05732972e-17, 2.05732972e-17, 2.05732972e-17,
-2.06426304e-17, -2.06426304e-17, -2.06426304e-17, -2.06426304e-17,
-2.82126032e-20, -2.82126032e-20, -2.82126032e-20, -2.82126032e-20,
4.17268317e-17, 4.17268317e-17, 4.17268317e-17, 4.17268317e-17,
-2.09704119e-17, -2.09704119e-17, -2.09704119e-17, -2.09704119e-17,
6.33130499e-17, 6.33130499e-17, 6.33130499e-17, 6.33130499e-17,
-6.37666061e-17, -6.37666061e-17, -6.37666061e-17, -6.37666061e-17,
2.13982407e-17, 2.13982407e-17, 2.13982407e-17, 2.13982407e-17,
1.07870652e-16, 1.07870652e-16, 1.07870652e-16, 1.07870652e-16,
6.53551645e-17, 6.53551645e-17, 6.53551645e-17, 6.53551645e-17,
-4.39870830e-17, -4.39870830e-17, -4.39870830e-17, -4.39870830e-17,
2.22476212e-17, 2.22476212e-17, 2.22476212e-17, 2.22476212e-17,
-4.48771936e-17, -4.48771936e-17, -4.48771936e-17, -4.48771936e-17,
6.79373117e-17, 6.79373117e-17, 6.79373117e-17, 6.79373117e-17,
2.28402531e-17, 2.28402531e-17, 2.28402531e-17, 2.28402531e-17,
1.62053493e-16, 1.62053493e-16, 1.62053493e-16, 1.62053493e-16,
2.33014003e-17, 2.33014003e-17, 2.33014003e-17, 2.33014003e-17,
7.10244704e-17, 7.10244704e-17, 7.10244704e-17, 7.10244704e-17,
-2.40136663e-17, -2.40136663e-17, -2.40136663e-17, -2.40136663e-17,
3.13463171e-21, 3.13463171e-21, 3.13463171e-21, 3.13463171e-21,
4.88886029e-17, 4.88886029e-17, 4.88886029e-17, 4.88886029e-17,
7.42131612e-17, 7.42131612e-17, 7.42131612e-17, 7.42131612e-17,
2.50149725e-17, 2.50149725e-17, 2.50149725e-17, 2.50149725e-17,
5.05769358e-17, 5.05769358e-17, 5.05769358e-17, 5.05769358e-17,
1.28019094e-21, 1.28019094e-21, 1.28019094e-21, 1.28019094e-21,
-6.58784750e-20, -6.58784750e-20, -6.58784750e-20, -6.58784750e-20,
-1.00252470e-20, -1.00252470e-20, -1.00252470e-20, -1.00252470e-20,
7.87311389e-17, 7.87311389e-17, 7.87311389e-17, 7.87311389e-17,
-2.64016162e-17, -2.64016162e-17, -2.64016162e-17, -2.64016162e-17,
2.66144431e-17, 2.66144431e-17, 2.66144431e-17, 2.66144431e-17,
-8.04167127e-17, -8.04167127e-17, -8.04167127e-17, -8.04167127e-17,
5.39229502e-17, 5.39229502e-17, 5.39229502e-17, 5.39229502e-17,
2.75726749e-21, 2.75726749e-21, 2.75726749e-21, 2.75726749e-21,
2.72678453e-17, 2.72678453e-17, 2.72678453e-17, 2.72678453e-17,
2.73522780e-17, 2.73522780e-17, 2.73522780e-17, 2.73522780e-17,
-2.75223551e-17, -2.75223551e-17, -2.75223551e-17, -2.75223551e-17,
-1.16211686e-20, -1.16211686e-20, -1.16211686e-20, -1.16211686e-20,
1.07567321e-21, 1.07567321e-21, 1.07567321e-21, 1.07567321e-21,
-2.77172040e-17, -2.77172040e-17, -2.77172040e-17, -2.77172040e-17,
5.56956290e-17, 5.56956290e-17, 5.56956290e-17, 5.56956290e-17,
2.78583082e-17, 2.78583082e-17, 2.78583082e-17, 2.78583082e-17,
5.58838612e-17, 5.58838612e-17, 5.58838612e-17, 5.58838612e-17,
-5.21085347e-20, -5.21085347e-20, -5.21085347e-20, -5.21085347e-20,
-3.89863889e-20, -3.89863889e-20, -3.89863889e-20, -3.89863889e-20,
-2.80053345e-17, -2.80053345e-17, -2.80053345e-17, -2.80053345e-17,
-5.60721280e-17, -5.60721280e-17, -5.60721280e-17, -5.60721280e-17,
-2.81065718e-17, -2.81065718e-17, -2.81065718e-17, -2.81065718e-17,
1.12343263e-16, 1.12343263e-16, 1.12343263e-16, 1.12343263e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_rusanov': [{'rho': array([1.39999993, 1.39999993, 1.39999993, 1.39999993, 1.39999991,
1.39999991, 1.39999991, 1.39999991, 1.39999985, 1.39999985,
1.39999985, 1.39999985, 1.39999972, 1.39999972, 1.39999972,
1.39999972, 1.39999945, 1.39999945, 1.39999945, 1.39999945,
1.39999894, 1.39999894, 1.39999894, 1.39999894, 1.39999796,
1.39999796, 1.39999796, 1.39999796, 1.39999616, 1.39999616,
1.39999616, 1.39999616, 1.39999286, 1.39999286, 1.39999286,
1.39999286, 1.39998691, 1.39998691, 1.39998691, 1.39998691,
1.39997632, 1.39997632, 1.39997632, 1.39997632, 1.39995776,
1.39995776, 1.39995776, 1.39995776, 1.39992567, 1.39992567,
1.39992567, 1.39992567, 1.39987104, 1.39987104, 1.39987104,
1.39987104, 1.39977938, 1.39977938, 1.39977938, 1.39977938,
1.39962798, 1.39962798, 1.39962798, 1.39962798, 1.39938173,
1.39938173, 1.39938173, 1.39938173, 1.39898755, 1.39898755,
1.39898755, 1.39898755, 1.39836674, 1.39836674, 1.39836674,
1.39836674, 1.39740512, 1.39740512, 1.39740512, 1.39740512,
1.39594074, 1.39594074, 1.39594074, 1.39594074, 1.39374939,
1.39374939, 1.39374939, 1.39374939, 1.39052866, 1.39052866,
1.39052866, 1.39052866, 1.38588215, 1.38588215, 1.38588215,
1.38588215, 1.37930638, 1.37930638, 1.37930638, 1.37930638,
1.37018426, 1.37018426, 1.37018426, 1.37018426, 1.35779013,
1.35779013, 1.35779013, 1.35779013, 1.34131205, 1.34131205,
1.34131205, 1.34131205, 1.31989677, 1.31989677, 1.31989677,
1.31989677, 1.29272107, 1.29272107, 1.29272107, 1.29272107,
1.25908953, 1.25908953, 1.25908953, 1.25908953, 1.21855289,
1.21855289, 1.21855289, 1.21855289, 1.17556589, 1.17556589,
1.17556589, 1.17556589, 1.13711047, 1.13711047, 1.13711047,
1.13711047, 1.10532695, 1.10532695, 1.10532695, 1.10532695,
1.0796248 , 1.0796248 , 1.0796248 , 1.0796248 , 1.05925989,
1.05925989, 1.05925989, 1.05925989, 1.04343222, 1.04343222,
1.04343222, 1.04343222, 1.03135572, 1.03135572, 1.03135572,
1.03135572, 1.02230367, 1.02230367, 1.02230367, 1.02230367,
1.01563447, 1.01563447, 1.01563447, 1.01563447, 1.01080252,
1.01080252, 1.01080252, 1.01080252, 1.00735845, 1.00735845,
1.00735845, 1.00735845, 1.00494254, 1.00494254, 1.00494254,
1.00494254, 1.00327414, 1.00327414, 1.00327414, 1.00327414,
1.00213948, 1.00213948, 1.00213948, 1.00213948, 1.00137931,
1.00137931, 1.00137931, 1.00137931, 1.00087748, 1.00087748,
1.00087748, 1.00087748, 1.00055094, 1.00055094, 1.00055094,
1.00055094, 1.00034146, 1.00034146, 1.00034146, 1.00034146,
1.00020894, 1.00020894, 1.00020894, 1.00020894, 1.00012624,
1.00012624, 1.00012624, 1.00012624, 1.00007533, 1.00007533,
1.00007533, 1.00007533, 1.0000444 , 1.0000444 , 1.0000444 ,
1.0000444 , 1.00002585, 1.00002585, 1.00002585, 1.00002585,
1.00001487, 1.00001487, 1.00001487, 1.00001487, 1.00000844,
1.00000844, 1.00000844, 1.00000844, 1.00000473, 1.00000473,
1.00000473, 1.00000473, 1.00000261, 1.00000261, 1.00000261,
1.00000261, 1.00000142, 1.00000142, 1.00000142, 1.00000142,
1.00000077, 1.00000077, 1.00000077, 1.00000077, 1.00000044,
1.00000044, 1.00000044, 1.00000044, 1.00000029, 1.00000029,
1.00000029, 1.00000029, 1.00000024, 1.00000024, 1.00000024]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hll': [{'rho': array([1.39999993, 1.39999993, 1.39999993, 1.39999993, 1.39999991,
1.39999991, 1.39999991, 1.39999991, 1.39999985, 1.39999985,
1.39999985, 1.39999985, 1.39999972, 1.39999972, 1.39999972,
1.39999972, 1.39999945, 1.39999945, 1.39999945, 1.39999945,
1.39999894, 1.39999894, 1.39999894, 1.39999894, 1.39999796,
1.39999796, 1.39999796, 1.39999796, 1.39999616, 1.39999616,
1.39999616, 1.39999616, 1.39999286, 1.39999286, 1.39999286,
1.39999286, 1.39998691, 1.39998691, 1.39998691, 1.39998691,
1.39997632, 1.39997632, 1.39997632, 1.39997632, 1.39995776,
1.39995776, 1.39995776, 1.39995776, 1.39992567, 1.39992567,
1.39992567, 1.39992567, 1.39987104, 1.39987104, 1.39987104,
1.39987104, 1.39977938, 1.39977938, 1.39977938, 1.39977938,
1.39962798, 1.39962798, 1.39962798, 1.39962798, 1.39938173,
1.39938173, 1.39938173, 1.39938173, 1.39898755, 1.39898755,
1.39898755, 1.39898755, 1.39836674, 1.39836674, 1.39836674,
1.39836674, 1.39740512, 1.39740512, 1.39740512, 1.39740512,
1.39594074, 1.39594074, 1.39594074, 1.39594074, 1.39374939,
1.39374939, 1.39374939, 1.39374939, 1.39052866, 1.39052866,
1.39052866, 1.39052866, 1.38588215, 1.38588215, 1.38588215,
1.38588215, 1.37930638, 1.37930638, 1.37930638, 1.37930638,
1.37018426, 1.37018426, 1.37018426, 1.37018426, 1.35779013,
1.35779013, 1.35779013, 1.35779013, 1.34131205, 1.34131205,
1.34131205, 1.34131205, 1.31989677, 1.31989677, 1.31989677,
1.31989677, 1.29272107, 1.29272107, 1.29272107, 1.29272107,
1.25908953, 1.25908953, 1.25908953, 1.25908953, 1.21855289,
1.21855289, 1.21855289, 1.21855289, 1.17556589, 1.17556589,
1.17556589, 1.17556589, 1.13711047, 1.13711047, 1.13711047,
1.13711047, 1.10532695, 1.10532695, 1.10532695, 1.10532695,
1.0796248 , 1.0796248 , 1.0796248 , 1.0796248 , 1.05925989,
1.05925989, 1.05925989, 1.05925989, 1.04343222, 1.04343222,
1.04343222, 1.04343222, 1.03135572, 1.03135572, 1.03135572,
1.03135572, 1.02230367, 1.02230367, 1.02230367, 1.02230367,
1.01563447, 1.01563447, 1.01563447, 1.01563447, 1.01080252,
1.01080252, 1.01080252, 1.01080252, 1.00735845, 1.00735845,
1.00735845, 1.00735845, 1.00494254, 1.00494254, 1.00494254,
1.00494254, 1.00327414, 1.00327414, 1.00327414, 1.00327414,
1.00213948, 1.00213948, 1.00213948, 1.00213948, 1.00137931,
1.00137931, 1.00137931, 1.00137931, 1.00087748, 1.00087748,
1.00087748, 1.00087748, 1.00055094, 1.00055094, 1.00055094,
1.00055094, 1.00034146, 1.00034146, 1.00034146, 1.00034146,
1.00020894, 1.00020894, 1.00020894, 1.00020894, 1.00012624,
1.00012624, 1.00012624, 1.00012624, 1.00007533, 1.00007533,
1.00007533, 1.00007533, 1.0000444 , 1.0000444 , 1.0000444 ,
1.0000444 , 1.00002585, 1.00002585, 1.00002585, 1.00002585,
1.00001487, 1.00001487, 1.00001487, 1.00001487, 1.00000844,
1.00000844, 1.00000844, 1.00000844, 1.00000473, 1.00000473,
1.00000473, 1.00000473, 1.00000261, 1.00000261, 1.00000261,
1.00000261, 1.00000142, 1.00000142, 1.00000142, 1.00000142,
1.00000077, 1.00000077, 1.00000077, 1.00000077, 1.00000044,
1.00000044, 1.00000044, 1.00000044, 1.00000029, 1.00000029,
1.00000029, 1.00000029, 1.00000024, 1.00000024, 1.00000024]), 'vx': array([ 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
4.08165898e-17, 4.08165898e-17, 4.08165898e-17, 4.08165898e-17,
2.05441670e-17, 2.05441670e-17, 2.05441670e-17, 2.05441670e-17,
8.29267837e-17, 8.29267837e-17, 8.29267837e-17, 8.29267837e-17,
-4.19727742e-17, -4.19727742e-17, -4.19727742e-17, -4.19727742e-17,
4.26537769e-17, 4.26537769e-17, 4.26537769e-17, 4.26537769e-17,
1.08876128e-16, 1.08876128e-16, 1.08876128e-16, 1.08876128e-16,
4.47137207e-17, 4.47137207e-17, 4.47137207e-17, 4.47137207e-17,
6.93017781e-17, 6.93017781e-17, 6.93017781e-17, 6.93017781e-17,
4.78906210e-17, 4.78906210e-17, 4.78906210e-17, 4.78906210e-17,
4.95102129e-17, 4.95102129e-17, 4.95102129e-17, 4.95102129e-17,
1.52801624e-16, 1.52801624e-16, 1.52801624e-16, 1.52801624e-16,
1.56439306e-16, 1.56439306e-16, 1.56439306e-16, 1.56439306e-16,
2.65744882e-17, 2.65744882e-17, 2.65744882e-17, 2.65744882e-17,
-2.69775953e-17, -2.69775953e-17, -2.69775953e-17, -2.69775953e-17,
2.72934830e-17, 2.72934830e-17, 2.72934830e-17, 2.72934830e-17,
5.50703187e-17, 5.50703187e-17, 5.50703187e-17, 5.50703187e-17,
-2.77159736e-17, -2.77159736e-17, -2.77159736e-17, -2.77159736e-17,
-2.57629383e-24, -2.57629383e-24, -2.57629383e-24, -2.57629383e-24,
1.16823881e-24, 1.16823881e-24, 1.16823881e-24, 1.16823881e-24,
-5.60216970e-17, -5.60216970e-17, -5.60216970e-17, -5.60216970e-17,
2.80574330e-17, 2.80574330e-17, 2.80574330e-17, 2.80574330e-17,
2.35612635e-17, 2.35612635e-17, 2.35612635e-17, 2.35612635e-17,
3.26418943e-17, 3.26418943e-17, 3.26418943e-17, 3.26418943e-17,
-5.62492278e-17, -5.62492278e-17, -5.62492278e-17, -5.62492278e-17,
2.35986698e-17, 2.35986698e-17, 2.35986698e-17, 2.35986698e-17,
4.53606565e-18, 4.53606565e-18, 4.53606565e-18, 4.53606565e-18,
2.46313404e-24, 2.46313404e-24, 2.46313404e-24, 2.46313404e-24,
-2.81457414e-17, -2.81457414e-17, -2.81457414e-17, -2.81457414e-17,
2.81471744e-17, 2.81471744e-17, 2.81471744e-17, 2.81471744e-17,
2.81480379e-17, 2.81480379e-17, 2.81480379e-17, 2.81480379e-17,
2.36110604e-17, 2.36110604e-17, 2.36110604e-17, 2.36110604e-17,
4.53755405e-18, 4.53755405e-18, 4.53755405e-18, 4.53755405e-18,
3.12433719e-24, 3.12433719e-24, 3.12433719e-24, 3.12433719e-24,
2.81491629e-17, 2.81491629e-17, 2.81491629e-17, 2.81491629e-17,
-2.81492237e-17, -2.81492237e-17, -2.81492237e-17, -2.81492237e-17,
2.81492517e-17, 2.81492517e-17, 2.81492517e-17, 2.81492517e-17,
8.44478118e-17, 8.44478118e-17, 8.44478118e-17, 8.44478118e-17,
-5.62985654e-17, -5.62985654e-17, -5.62985654e-17, -5.62985654e-17,
-5.62985652e-17, -5.62985652e-17, -5.62985652e-17, -5.62985652e-17,
-2.81492847e-17, -2.81492847e-17, -2.81492847e-17]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hllc': [{'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}]}
minmod_hll
{'none_hll': [{'rho': array([1.39793658, 1.39793658, 1.39793658, 1.39793658, 1.39779504,
1.39779504, 1.39779504, 1.39779504, 1.39750655, 1.39750655,
1.39750655, 1.39750655, 1.39706031, 1.39706031, 1.39706031,
1.39706031, 1.39644015, 1.39644015, 1.39644015, 1.39644015,
1.39562467, 1.39562467, 1.39562467, 1.39562467, 1.39458733,
1.39458733, 1.39458733, 1.39458733, 1.3932967 , 1.3932967 ,
1.3932967 , 1.3932967 , 1.39171682, 1.39171682, 1.39171682,
1.39171682, 1.38980764, 1.38980764, 1.38980764, 1.38980764,
1.38752567, 1.38752567, 1.38752567, 1.38752567, 1.38482477,
1.38482477, 1.38482477, 1.38482477, 1.38165717, 1.38165717,
1.38165717, 1.38165717, 1.37797465, 1.37797465, 1.37797465,
1.37797465, 1.37372994, 1.37372994, 1.37372994, 1.37372994,
1.36887821, 1.36887821, 1.36887821, 1.36887821, 1.36337874,
1.36337874, 1.36337874, 1.36337874, 1.3571966 , 1.3571966 ,
1.3571966 , 1.3571966 , 1.35030438, 1.35030438, 1.35030438,
1.35030438, 1.34268375, 1.34268375, 1.34268375, 1.34268375,
1.33432692, 1.33432692, 1.33432692, 1.33432692, 1.32523779,
1.32523779, 1.32523779, 1.32523779, 1.31543282, 1.31543282,
1.31543282, 1.31543282, 1.30494145, 1.30494145, 1.30494145,
1.30494145, 1.29380614, 1.29380614, 1.29380614, 1.29380614,
1.2820819 , 1.2820819 , 1.2820819 , 1.2820819 , 1.2698354 ,
1.2698354 , 1.2698354 , 1.2698354 , 1.25714365, 1.25714365,
1.25714365, 1.25714365, 1.24409234, 1.24409234, 1.24409234,
1.24409234, 1.23077381, 1.23077381, 1.23077381, 1.23077381,
1.21728493, 1.21728493, 1.21728493, 1.21728493, 1.20372481,
1.20372481, 1.20372481, 1.20372481, 1.1901925 , 1.1901925 ,
1.1901925 , 1.1901925 , 1.17678482, 1.17678482, 1.17678482,
1.17678482, 1.16359431, 1.16359431, 1.16359431, 1.16359431,
1.15070743, 1.15070743, 1.15070743, 1.15070743, 1.13820309,
1.13820309, 1.13820309, 1.13820309, 1.12615138, 1.12615138,
1.12615138, 1.12615138, 1.11461275, 1.11461275, 1.11461275,
1.11461275, 1.10363742, 1.10363742, 1.10363742, 1.10363742,
1.09326517, 1.09326517, 1.09326517, 1.09326517, 1.08352534,
1.08352534, 1.08352534, 1.08352534, 1.07443715, 1.07443715,
1.07443715, 1.07443715, 1.0660102 , 1.0660102 , 1.0660102 ,
1.0660102 , 1.05824518, 1.05824518, 1.05824518, 1.05824518,
1.05113465, 1.05113465, 1.05113465, 1.05113465, 1.04466401,
1.04466401, 1.04466401, 1.04466401, 1.03881248, 1.03881248,
1.03881248, 1.03881248, 1.03355414, 1.03355414, 1.03355414,
1.03355414, 1.02885897, 1.02885897, 1.02885897, 1.02885897,
1.02469389, 1.02469389, 1.02469389, 1.02469389, 1.02102374,
1.02102374, 1.02102374, 1.02102374, 1.0178122 , 1.0178122 ,
1.0178122 , 1.0178122 , 1.01502272, 1.01502272, 1.01502272,
1.01502272, 1.01261926, 1.01261926, 1.01261926, 1.01261926,
1.01056704, 1.01056704, 1.01056704, 1.01056704, 1.00883315,
1.00883315, 1.00883315, 1.00883315, 1.00738714, 1.00738714,
1.00738714, 1.00738714, 1.00620142, 1.00620142, 1.00620142,
1.00620142, 1.00525173, 1.00525173, 1.00525173, 1.00525173,
1.00451738, 1.00451738, 1.00451738, 1.00451738, 1.00398157,
1.00398157, 1.00398157, 1.00398157, 1.00363152, 1.00363152,
1.00363152, 1.00363152, 1.00345865, 1.00345865, 1.00345865]), 'vx': array([ 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.37066414e-17, 1.37066414e-17, 1.37066414e-17, 1.37066414e-17,
-1.37127285e-17, -1.37127285e-17, -1.37127285e-17, -1.37127285e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
2.02175764e-17, 2.02175764e-17, 2.02175764e-17, 2.02175764e-17,
-2.02363042e-17, -2.02363042e-17, -2.02363042e-17, -2.02363042e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
2.04055156e-17, 2.04055156e-17, 2.04055156e-17, 2.04055156e-17,
-2.04600475e-17, -2.04600475e-17, -2.04600475e-17, -2.04600475e-17,
2.05125505e-17, 2.05125505e-17, 2.05125505e-17, 2.05125505e-17,
2.05732972e-17, 2.05732972e-17, 2.05732972e-17, 2.05732972e-17,
-2.06426304e-17, -2.06426304e-17, -2.06426304e-17, -2.06426304e-17,
-2.82126032e-20, -2.82126032e-20, -2.82126032e-20, -2.82126032e-20,
4.17268317e-17, 4.17268317e-17, 4.17268317e-17, 4.17268317e-17,
-2.09704119e-17, -2.09704119e-17, -2.09704119e-17, -2.09704119e-17,
6.33130499e-17, 6.33130499e-17, 6.33130499e-17, 6.33130499e-17,
-6.37666061e-17, -6.37666061e-17, -6.37666061e-17, -6.37666061e-17,
2.13982407e-17, 2.13982407e-17, 2.13982407e-17, 2.13982407e-17,
1.07870652e-16, 1.07870652e-16, 1.07870652e-16, 1.07870652e-16,
6.53551645e-17, 6.53551645e-17, 6.53551645e-17, 6.53551645e-17,
-4.39870830e-17, -4.39870830e-17, -4.39870830e-17, -4.39870830e-17,
2.22476212e-17, 2.22476212e-17, 2.22476212e-17, 2.22476212e-17,
-4.48771936e-17, -4.48771936e-17, -4.48771936e-17, -4.48771936e-17,
6.79373117e-17, 6.79373117e-17, 6.79373117e-17, 6.79373117e-17,
2.28402531e-17, 2.28402531e-17, 2.28402531e-17, 2.28402531e-17,
1.62053493e-16, 1.62053493e-16, 1.62053493e-16, 1.62053493e-16,
2.33014003e-17, 2.33014003e-17, 2.33014003e-17, 2.33014003e-17,
7.10244704e-17, 7.10244704e-17, 7.10244704e-17, 7.10244704e-17,
-2.40136663e-17, -2.40136663e-17, -2.40136663e-17, -2.40136663e-17,
3.13463171e-21, 3.13463171e-21, 3.13463171e-21, 3.13463171e-21,
4.88886029e-17, 4.88886029e-17, 4.88886029e-17, 4.88886029e-17,
7.42131612e-17, 7.42131612e-17, 7.42131612e-17, 7.42131612e-17,
2.50149725e-17, 2.50149725e-17, 2.50149725e-17, 2.50149725e-17,
5.05769358e-17, 5.05769358e-17, 5.05769358e-17, 5.05769358e-17,
1.28019094e-21, 1.28019094e-21, 1.28019094e-21, 1.28019094e-21,
-6.58784750e-20, -6.58784750e-20, -6.58784750e-20, -6.58784750e-20,
-1.00252470e-20, -1.00252470e-20, -1.00252470e-20, -1.00252470e-20,
7.87311389e-17, 7.87311389e-17, 7.87311389e-17, 7.87311389e-17,
-2.64016162e-17, -2.64016162e-17, -2.64016162e-17, -2.64016162e-17,
2.66144431e-17, 2.66144431e-17, 2.66144431e-17, 2.66144431e-17,
-8.04167127e-17, -8.04167127e-17, -8.04167127e-17, -8.04167127e-17,
5.39229502e-17, 5.39229502e-17, 5.39229502e-17, 5.39229502e-17,
2.75726749e-21, 2.75726749e-21, 2.75726749e-21, 2.75726749e-21,
2.72678453e-17, 2.72678453e-17, 2.72678453e-17, 2.72678453e-17,
2.73522780e-17, 2.73522780e-17, 2.73522780e-17, 2.73522780e-17,
-2.75223551e-17, -2.75223551e-17, -2.75223551e-17, -2.75223551e-17,
-1.16211686e-20, -1.16211686e-20, -1.16211686e-20, -1.16211686e-20,
1.07567321e-21, 1.07567321e-21, 1.07567321e-21, 1.07567321e-21,
-2.77172040e-17, -2.77172040e-17, -2.77172040e-17, -2.77172040e-17,
5.56956290e-17, 5.56956290e-17, 5.56956290e-17, 5.56956290e-17,
2.78583082e-17, 2.78583082e-17, 2.78583082e-17, 2.78583082e-17,
5.58838612e-17, 5.58838612e-17, 5.58838612e-17, 5.58838612e-17,
-5.21085347e-20, -5.21085347e-20, -5.21085347e-20, -5.21085347e-20,
-3.89863889e-20, -3.89863889e-20, -3.89863889e-20, -3.89863889e-20,
-2.80053345e-17, -2.80053345e-17, -2.80053345e-17, -2.80053345e-17,
-5.60721280e-17, -5.60721280e-17, -5.60721280e-17, -5.60721280e-17,
-2.81065718e-17, -2.81065718e-17, -2.81065718e-17, -2.81065718e-17,
1.12343263e-16, 1.12343263e-16, 1.12343263e-16, 1.12343263e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_rusanov': [{'rho': array([1.39999993, 1.39999993, 1.39999993, 1.39999993, 1.39999991,
1.39999991, 1.39999991, 1.39999991, 1.39999985, 1.39999985,
1.39999985, 1.39999985, 1.39999972, 1.39999972, 1.39999972,
1.39999972, 1.39999945, 1.39999945, 1.39999945, 1.39999945,
1.39999894, 1.39999894, 1.39999894, 1.39999894, 1.39999796,
1.39999796, 1.39999796, 1.39999796, 1.39999616, 1.39999616,
1.39999616, 1.39999616, 1.39999286, 1.39999286, 1.39999286,
1.39999286, 1.39998691, 1.39998691, 1.39998691, 1.39998691,
1.39997632, 1.39997632, 1.39997632, 1.39997632, 1.39995776,
1.39995776, 1.39995776, 1.39995776, 1.39992567, 1.39992567,
1.39992567, 1.39992567, 1.39987104, 1.39987104, 1.39987104,
1.39987104, 1.39977938, 1.39977938, 1.39977938, 1.39977938,
1.39962798, 1.39962798, 1.39962798, 1.39962798, 1.39938173,
1.39938173, 1.39938173, 1.39938173, 1.39898755, 1.39898755,
1.39898755, 1.39898755, 1.39836674, 1.39836674, 1.39836674,
1.39836674, 1.39740512, 1.39740512, 1.39740512, 1.39740512,
1.39594074, 1.39594074, 1.39594074, 1.39594074, 1.39374939,
1.39374939, 1.39374939, 1.39374939, 1.39052866, 1.39052866,
1.39052866, 1.39052866, 1.38588215, 1.38588215, 1.38588215,
1.38588215, 1.37930638, 1.37930638, 1.37930638, 1.37930638,
1.37018426, 1.37018426, 1.37018426, 1.37018426, 1.35779013,
1.35779013, 1.35779013, 1.35779013, 1.34131205, 1.34131205,
1.34131205, 1.34131205, 1.31989677, 1.31989677, 1.31989677,
1.31989677, 1.29272107, 1.29272107, 1.29272107, 1.29272107,
1.25908953, 1.25908953, 1.25908953, 1.25908953, 1.21855289,
1.21855289, 1.21855289, 1.21855289, 1.17556589, 1.17556589,
1.17556589, 1.17556589, 1.13711047, 1.13711047, 1.13711047,
1.13711047, 1.10532695, 1.10532695, 1.10532695, 1.10532695,
1.0796248 , 1.0796248 , 1.0796248 , 1.0796248 , 1.05925989,
1.05925989, 1.05925989, 1.05925989, 1.04343222, 1.04343222,
1.04343222, 1.04343222, 1.03135572, 1.03135572, 1.03135572,
1.03135572, 1.02230367, 1.02230367, 1.02230367, 1.02230367,
1.01563447, 1.01563447, 1.01563447, 1.01563447, 1.01080252,
1.01080252, 1.01080252, 1.01080252, 1.00735845, 1.00735845,
1.00735845, 1.00735845, 1.00494254, 1.00494254, 1.00494254,
1.00494254, 1.00327414, 1.00327414, 1.00327414, 1.00327414,
1.00213948, 1.00213948, 1.00213948, 1.00213948, 1.00137931,
1.00137931, 1.00137931, 1.00137931, 1.00087748, 1.00087748,
1.00087748, 1.00087748, 1.00055094, 1.00055094, 1.00055094,
1.00055094, 1.00034146, 1.00034146, 1.00034146, 1.00034146,
1.00020894, 1.00020894, 1.00020894, 1.00020894, 1.00012624,
1.00012624, 1.00012624, 1.00012624, 1.00007533, 1.00007533,
1.00007533, 1.00007533, 1.0000444 , 1.0000444 , 1.0000444 ,
1.0000444 , 1.00002585, 1.00002585, 1.00002585, 1.00002585,
1.00001487, 1.00001487, 1.00001487, 1.00001487, 1.00000844,
1.00000844, 1.00000844, 1.00000844, 1.00000473, 1.00000473,
1.00000473, 1.00000473, 1.00000261, 1.00000261, 1.00000261,
1.00000261, 1.00000142, 1.00000142, 1.00000142, 1.00000142,
1.00000077, 1.00000077, 1.00000077, 1.00000077, 1.00000044,
1.00000044, 1.00000044, 1.00000044, 1.00000029, 1.00000029,
1.00000029, 1.00000029, 1.00000024, 1.00000024, 1.00000024]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hll': [{'rho': array([1.39999993, 1.39999993, 1.39999993, 1.39999993, 1.39999991,
1.39999991, 1.39999991, 1.39999991, 1.39999985, 1.39999985,
1.39999985, 1.39999985, 1.39999972, 1.39999972, 1.39999972,
1.39999972, 1.39999945, 1.39999945, 1.39999945, 1.39999945,
1.39999894, 1.39999894, 1.39999894, 1.39999894, 1.39999796,
1.39999796, 1.39999796, 1.39999796, 1.39999616, 1.39999616,
1.39999616, 1.39999616, 1.39999286, 1.39999286, 1.39999286,
1.39999286, 1.39998691, 1.39998691, 1.39998691, 1.39998691,
1.39997632, 1.39997632, 1.39997632, 1.39997632, 1.39995776,
1.39995776, 1.39995776, 1.39995776, 1.39992567, 1.39992567,
1.39992567, 1.39992567, 1.39987104, 1.39987104, 1.39987104,
1.39987104, 1.39977938, 1.39977938, 1.39977938, 1.39977938,
1.39962798, 1.39962798, 1.39962798, 1.39962798, 1.39938173,
1.39938173, 1.39938173, 1.39938173, 1.39898755, 1.39898755,
1.39898755, 1.39898755, 1.39836674, 1.39836674, 1.39836674,
1.39836674, 1.39740512, 1.39740512, 1.39740512, 1.39740512,
1.39594074, 1.39594074, 1.39594074, 1.39594074, 1.39374939,
1.39374939, 1.39374939, 1.39374939, 1.39052866, 1.39052866,
1.39052866, 1.39052866, 1.38588215, 1.38588215, 1.38588215,
1.38588215, 1.37930638, 1.37930638, 1.37930638, 1.37930638,
1.37018426, 1.37018426, 1.37018426, 1.37018426, 1.35779013,
1.35779013, 1.35779013, 1.35779013, 1.34131205, 1.34131205,
1.34131205, 1.34131205, 1.31989677, 1.31989677, 1.31989677,
1.31989677, 1.29272107, 1.29272107, 1.29272107, 1.29272107,
1.25908953, 1.25908953, 1.25908953, 1.25908953, 1.21855289,
1.21855289, 1.21855289, 1.21855289, 1.17556589, 1.17556589,
1.17556589, 1.17556589, 1.13711047, 1.13711047, 1.13711047,
1.13711047, 1.10532695, 1.10532695, 1.10532695, 1.10532695,
1.0796248 , 1.0796248 , 1.0796248 , 1.0796248 , 1.05925989,
1.05925989, 1.05925989, 1.05925989, 1.04343222, 1.04343222,
1.04343222, 1.04343222, 1.03135572, 1.03135572, 1.03135572,
1.03135572, 1.02230367, 1.02230367, 1.02230367, 1.02230367,
1.01563447, 1.01563447, 1.01563447, 1.01563447, 1.01080252,
1.01080252, 1.01080252, 1.01080252, 1.00735845, 1.00735845,
1.00735845, 1.00735845, 1.00494254, 1.00494254, 1.00494254,
1.00494254, 1.00327414, 1.00327414, 1.00327414, 1.00327414,
1.00213948, 1.00213948, 1.00213948, 1.00213948, 1.00137931,
1.00137931, 1.00137931, 1.00137931, 1.00087748, 1.00087748,
1.00087748, 1.00087748, 1.00055094, 1.00055094, 1.00055094,
1.00055094, 1.00034146, 1.00034146, 1.00034146, 1.00034146,
1.00020894, 1.00020894, 1.00020894, 1.00020894, 1.00012624,
1.00012624, 1.00012624, 1.00012624, 1.00007533, 1.00007533,
1.00007533, 1.00007533, 1.0000444 , 1.0000444 , 1.0000444 ,
1.0000444 , 1.00002585, 1.00002585, 1.00002585, 1.00002585,
1.00001487, 1.00001487, 1.00001487, 1.00001487, 1.00000844,
1.00000844, 1.00000844, 1.00000844, 1.00000473, 1.00000473,
1.00000473, 1.00000473, 1.00000261, 1.00000261, 1.00000261,
1.00000261, 1.00000142, 1.00000142, 1.00000142, 1.00000142,
1.00000077, 1.00000077, 1.00000077, 1.00000077, 1.00000044,
1.00000044, 1.00000044, 1.00000044, 1.00000029, 1.00000029,
1.00000029, 1.00000029, 1.00000024, 1.00000024, 1.00000024]), 'vx': array([ 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
4.08165898e-17, 4.08165898e-17, 4.08165898e-17, 4.08165898e-17,
2.05441670e-17, 2.05441670e-17, 2.05441670e-17, 2.05441670e-17,
8.29267837e-17, 8.29267837e-17, 8.29267837e-17, 8.29267837e-17,
-4.19727742e-17, -4.19727742e-17, -4.19727742e-17, -4.19727742e-17,
4.26537769e-17, 4.26537769e-17, 4.26537769e-17, 4.26537769e-17,
1.08876128e-16, 1.08876128e-16, 1.08876128e-16, 1.08876128e-16,
4.47137207e-17, 4.47137207e-17, 4.47137207e-17, 4.47137207e-17,
6.93017781e-17, 6.93017781e-17, 6.93017781e-17, 6.93017781e-17,
4.78906210e-17, 4.78906210e-17, 4.78906210e-17, 4.78906210e-17,
4.95102129e-17, 4.95102129e-17, 4.95102129e-17, 4.95102129e-17,
1.52801624e-16, 1.52801624e-16, 1.52801624e-16, 1.52801624e-16,
1.56439306e-16, 1.56439306e-16, 1.56439306e-16, 1.56439306e-16,
2.65744882e-17, 2.65744882e-17, 2.65744882e-17, 2.65744882e-17,
-2.69775953e-17, -2.69775953e-17, -2.69775953e-17, -2.69775953e-17,
2.72934830e-17, 2.72934830e-17, 2.72934830e-17, 2.72934830e-17,
5.50703187e-17, 5.50703187e-17, 5.50703187e-17, 5.50703187e-17,
-2.77159736e-17, -2.77159736e-17, -2.77159736e-17, -2.77159736e-17,
-2.57629383e-24, -2.57629383e-24, -2.57629383e-24, -2.57629383e-24,
1.16823881e-24, 1.16823881e-24, 1.16823881e-24, 1.16823881e-24,
-5.60216970e-17, -5.60216970e-17, -5.60216970e-17, -5.60216970e-17,
2.80574330e-17, 2.80574330e-17, 2.80574330e-17, 2.80574330e-17,
2.35612635e-17, 2.35612635e-17, 2.35612635e-17, 2.35612635e-17,
3.26418943e-17, 3.26418943e-17, 3.26418943e-17, 3.26418943e-17,
-5.62492278e-17, -5.62492278e-17, -5.62492278e-17, -5.62492278e-17,
2.35986698e-17, 2.35986698e-17, 2.35986698e-17, 2.35986698e-17,
4.53606565e-18, 4.53606565e-18, 4.53606565e-18, 4.53606565e-18,
2.46313404e-24, 2.46313404e-24, 2.46313404e-24, 2.46313404e-24,
-2.81457414e-17, -2.81457414e-17, -2.81457414e-17, -2.81457414e-17,
2.81471744e-17, 2.81471744e-17, 2.81471744e-17, 2.81471744e-17,
2.81480379e-17, 2.81480379e-17, 2.81480379e-17, 2.81480379e-17,
2.36110604e-17, 2.36110604e-17, 2.36110604e-17, 2.36110604e-17,
4.53755405e-18, 4.53755405e-18, 4.53755405e-18, 4.53755405e-18,
3.12433719e-24, 3.12433719e-24, 3.12433719e-24, 3.12433719e-24,
2.81491629e-17, 2.81491629e-17, 2.81491629e-17, 2.81491629e-17,
-2.81492237e-17, -2.81492237e-17, -2.81492237e-17, -2.81492237e-17,
2.81492517e-17, 2.81492517e-17, 2.81492517e-17, 2.81492517e-17,
8.44478118e-17, 8.44478118e-17, 8.44478118e-17, 8.44478118e-17,
-5.62985654e-17, -5.62985654e-17, -5.62985654e-17, -5.62985654e-17,
-5.62985652e-17, -5.62985652e-17, -5.62985652e-17, -5.62985652e-17,
-2.81492847e-17, -2.81492847e-17, -2.81492847e-17]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hllc': [{'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}]}
minmod_hllc
{'none_hll': [{'rho': array([1.39793658, 1.39793658, 1.39793658, 1.39793658, 1.39779504,
1.39779504, 1.39779504, 1.39779504, 1.39750655, 1.39750655,
1.39750655, 1.39750655, 1.39706031, 1.39706031, 1.39706031,
1.39706031, 1.39644015, 1.39644015, 1.39644015, 1.39644015,
1.39562467, 1.39562467, 1.39562467, 1.39562467, 1.39458733,
1.39458733, 1.39458733, 1.39458733, 1.3932967 , 1.3932967 ,
1.3932967 , 1.3932967 , 1.39171682, 1.39171682, 1.39171682,
1.39171682, 1.38980764, 1.38980764, 1.38980764, 1.38980764,
1.38752567, 1.38752567, 1.38752567, 1.38752567, 1.38482477,
1.38482477, 1.38482477, 1.38482477, 1.38165717, 1.38165717,
1.38165717, 1.38165717, 1.37797465, 1.37797465, 1.37797465,
1.37797465, 1.37372994, 1.37372994, 1.37372994, 1.37372994,
1.36887821, 1.36887821, 1.36887821, 1.36887821, 1.36337874,
1.36337874, 1.36337874, 1.36337874, 1.3571966 , 1.3571966 ,
1.3571966 , 1.3571966 , 1.35030438, 1.35030438, 1.35030438,
1.35030438, 1.34268375, 1.34268375, 1.34268375, 1.34268375,
1.33432692, 1.33432692, 1.33432692, 1.33432692, 1.32523779,
1.32523779, 1.32523779, 1.32523779, 1.31543282, 1.31543282,
1.31543282, 1.31543282, 1.30494145, 1.30494145, 1.30494145,
1.30494145, 1.29380614, 1.29380614, 1.29380614, 1.29380614,
1.2820819 , 1.2820819 , 1.2820819 , 1.2820819 , 1.2698354 ,
1.2698354 , 1.2698354 , 1.2698354 , 1.25714365, 1.25714365,
1.25714365, 1.25714365, 1.24409234, 1.24409234, 1.24409234,
1.24409234, 1.23077381, 1.23077381, 1.23077381, 1.23077381,
1.21728493, 1.21728493, 1.21728493, 1.21728493, 1.20372481,
1.20372481, 1.20372481, 1.20372481, 1.1901925 , 1.1901925 ,
1.1901925 , 1.1901925 , 1.17678482, 1.17678482, 1.17678482,
1.17678482, 1.16359431, 1.16359431, 1.16359431, 1.16359431,
1.15070743, 1.15070743, 1.15070743, 1.15070743, 1.13820309,
1.13820309, 1.13820309, 1.13820309, 1.12615138, 1.12615138,
1.12615138, 1.12615138, 1.11461275, 1.11461275, 1.11461275,
1.11461275, 1.10363742, 1.10363742, 1.10363742, 1.10363742,
1.09326517, 1.09326517, 1.09326517, 1.09326517, 1.08352534,
1.08352534, 1.08352534, 1.08352534, 1.07443715, 1.07443715,
1.07443715, 1.07443715, 1.0660102 , 1.0660102 , 1.0660102 ,
1.0660102 , 1.05824518, 1.05824518, 1.05824518, 1.05824518,
1.05113465, 1.05113465, 1.05113465, 1.05113465, 1.04466401,
1.04466401, 1.04466401, 1.04466401, 1.03881248, 1.03881248,
1.03881248, 1.03881248, 1.03355414, 1.03355414, 1.03355414,
1.03355414, 1.02885897, 1.02885897, 1.02885897, 1.02885897,
1.02469389, 1.02469389, 1.02469389, 1.02469389, 1.02102374,
1.02102374, 1.02102374, 1.02102374, 1.0178122 , 1.0178122 ,
1.0178122 , 1.0178122 , 1.01502272, 1.01502272, 1.01502272,
1.01502272, 1.01261926, 1.01261926, 1.01261926, 1.01261926,
1.01056704, 1.01056704, 1.01056704, 1.01056704, 1.00883315,
1.00883315, 1.00883315, 1.00883315, 1.00738714, 1.00738714,
1.00738714, 1.00738714, 1.00620142, 1.00620142, 1.00620142,
1.00620142, 1.00525173, 1.00525173, 1.00525173, 1.00525173,
1.00451738, 1.00451738, 1.00451738, 1.00451738, 1.00398157,
1.00398157, 1.00398157, 1.00398157, 1.00363152, 1.00363152,
1.00363152, 1.00363152, 1.00345865, 1.00345865, 1.00345865]), 'vx': array([ 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
1.37066414e-17, 1.37066414e-17, 1.37066414e-17, 1.37066414e-17,
-1.37127285e-17, -1.37127285e-17, -1.37127285e-17, -1.37127285e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
2.02175764e-17, 2.02175764e-17, 2.02175764e-17, 2.02175764e-17,
-2.02363042e-17, -2.02363042e-17, -2.02363042e-17, -2.02363042e-17,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
2.04055156e-17, 2.04055156e-17, 2.04055156e-17, 2.04055156e-17,
-2.04600475e-17, -2.04600475e-17, -2.04600475e-17, -2.04600475e-17,
2.05125505e-17, 2.05125505e-17, 2.05125505e-17, 2.05125505e-17,
2.05732972e-17, 2.05732972e-17, 2.05732972e-17, 2.05732972e-17,
-2.06426304e-17, -2.06426304e-17, -2.06426304e-17, -2.06426304e-17,
-2.82126032e-20, -2.82126032e-20, -2.82126032e-20, -2.82126032e-20,
4.17268317e-17, 4.17268317e-17, 4.17268317e-17, 4.17268317e-17,
-2.09704119e-17, -2.09704119e-17, -2.09704119e-17, -2.09704119e-17,
6.33130499e-17, 6.33130499e-17, 6.33130499e-17, 6.33130499e-17,
-6.37666061e-17, -6.37666061e-17, -6.37666061e-17, -6.37666061e-17,
2.13982407e-17, 2.13982407e-17, 2.13982407e-17, 2.13982407e-17,
1.07870652e-16, 1.07870652e-16, 1.07870652e-16, 1.07870652e-16,
6.53551645e-17, 6.53551645e-17, 6.53551645e-17, 6.53551645e-17,
-4.39870830e-17, -4.39870830e-17, -4.39870830e-17, -4.39870830e-17,
2.22476212e-17, 2.22476212e-17, 2.22476212e-17, 2.22476212e-17,
-4.48771936e-17, -4.48771936e-17, -4.48771936e-17, -4.48771936e-17,
6.79373117e-17, 6.79373117e-17, 6.79373117e-17, 6.79373117e-17,
2.28402531e-17, 2.28402531e-17, 2.28402531e-17, 2.28402531e-17,
1.62053493e-16, 1.62053493e-16, 1.62053493e-16, 1.62053493e-16,
2.33014003e-17, 2.33014003e-17, 2.33014003e-17, 2.33014003e-17,
7.10244704e-17, 7.10244704e-17, 7.10244704e-17, 7.10244704e-17,
-2.40136663e-17, -2.40136663e-17, -2.40136663e-17, -2.40136663e-17,
3.13463171e-21, 3.13463171e-21, 3.13463171e-21, 3.13463171e-21,
4.88886029e-17, 4.88886029e-17, 4.88886029e-17, 4.88886029e-17,
7.42131612e-17, 7.42131612e-17, 7.42131612e-17, 7.42131612e-17,
2.50149725e-17, 2.50149725e-17, 2.50149725e-17, 2.50149725e-17,
5.05769358e-17, 5.05769358e-17, 5.05769358e-17, 5.05769358e-17,
1.28019094e-21, 1.28019094e-21, 1.28019094e-21, 1.28019094e-21,
-6.58784750e-20, -6.58784750e-20, -6.58784750e-20, -6.58784750e-20,
-1.00252470e-20, -1.00252470e-20, -1.00252470e-20, -1.00252470e-20,
7.87311389e-17, 7.87311389e-17, 7.87311389e-17, 7.87311389e-17,
-2.64016162e-17, -2.64016162e-17, -2.64016162e-17, -2.64016162e-17,
2.66144431e-17, 2.66144431e-17, 2.66144431e-17, 2.66144431e-17,
-8.04167127e-17, -8.04167127e-17, -8.04167127e-17, -8.04167127e-17,
5.39229502e-17, 5.39229502e-17, 5.39229502e-17, 5.39229502e-17,
2.75726749e-21, 2.75726749e-21, 2.75726749e-21, 2.75726749e-21,
2.72678453e-17, 2.72678453e-17, 2.72678453e-17, 2.72678453e-17,
2.73522780e-17, 2.73522780e-17, 2.73522780e-17, 2.73522780e-17,
-2.75223551e-17, -2.75223551e-17, -2.75223551e-17, -2.75223551e-17,
-1.16211686e-20, -1.16211686e-20, -1.16211686e-20, -1.16211686e-20,
1.07567321e-21, 1.07567321e-21, 1.07567321e-21, 1.07567321e-21,
-2.77172040e-17, -2.77172040e-17, -2.77172040e-17, -2.77172040e-17,
5.56956290e-17, 5.56956290e-17, 5.56956290e-17, 5.56956290e-17,
2.78583082e-17, 2.78583082e-17, 2.78583082e-17, 2.78583082e-17,
5.58838612e-17, 5.58838612e-17, 5.58838612e-17, 5.58838612e-17,
-5.21085347e-20, -5.21085347e-20, -5.21085347e-20, -5.21085347e-20,
-3.89863889e-20, -3.89863889e-20, -3.89863889e-20, -3.89863889e-20,
-2.80053345e-17, -2.80053345e-17, -2.80053345e-17, -2.80053345e-17,
-5.60721280e-17, -5.60721280e-17, -5.60721280e-17, -5.60721280e-17,
-2.81065718e-17, -2.81065718e-17, -2.81065718e-17, -2.81065718e-17,
1.12343263e-16, 1.12343263e-16, 1.12343263e-16, 1.12343263e-16,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_rusanov': [{'rho': array([1.39999993, 1.39999993, 1.39999993, 1.39999993, 1.39999991,
1.39999991, 1.39999991, 1.39999991, 1.39999985, 1.39999985,
1.39999985, 1.39999985, 1.39999972, 1.39999972, 1.39999972,
1.39999972, 1.39999945, 1.39999945, 1.39999945, 1.39999945,
1.39999894, 1.39999894, 1.39999894, 1.39999894, 1.39999796,
1.39999796, 1.39999796, 1.39999796, 1.39999616, 1.39999616,
1.39999616, 1.39999616, 1.39999286, 1.39999286, 1.39999286,
1.39999286, 1.39998691, 1.39998691, 1.39998691, 1.39998691,
1.39997632, 1.39997632, 1.39997632, 1.39997632, 1.39995776,
1.39995776, 1.39995776, 1.39995776, 1.39992567, 1.39992567,
1.39992567, 1.39992567, 1.39987104, 1.39987104, 1.39987104,
1.39987104, 1.39977938, 1.39977938, 1.39977938, 1.39977938,
1.39962798, 1.39962798, 1.39962798, 1.39962798, 1.39938173,
1.39938173, 1.39938173, 1.39938173, 1.39898755, 1.39898755,
1.39898755, 1.39898755, 1.39836674, 1.39836674, 1.39836674,
1.39836674, 1.39740512, 1.39740512, 1.39740512, 1.39740512,
1.39594074, 1.39594074, 1.39594074, 1.39594074, 1.39374939,
1.39374939, 1.39374939, 1.39374939, 1.39052866, 1.39052866,
1.39052866, 1.39052866, 1.38588215, 1.38588215, 1.38588215,
1.38588215, 1.37930638, 1.37930638, 1.37930638, 1.37930638,
1.37018426, 1.37018426, 1.37018426, 1.37018426, 1.35779013,
1.35779013, 1.35779013, 1.35779013, 1.34131205, 1.34131205,
1.34131205, 1.34131205, 1.31989677, 1.31989677, 1.31989677,
1.31989677, 1.29272107, 1.29272107, 1.29272107, 1.29272107,
1.25908953, 1.25908953, 1.25908953, 1.25908953, 1.21855289,
1.21855289, 1.21855289, 1.21855289, 1.17556589, 1.17556589,
1.17556589, 1.17556589, 1.13711047, 1.13711047, 1.13711047,
1.13711047, 1.10532695, 1.10532695, 1.10532695, 1.10532695,
1.0796248 , 1.0796248 , 1.0796248 , 1.0796248 , 1.05925989,
1.05925989, 1.05925989, 1.05925989, 1.04343222, 1.04343222,
1.04343222, 1.04343222, 1.03135572, 1.03135572, 1.03135572,
1.03135572, 1.02230367, 1.02230367, 1.02230367, 1.02230367,
1.01563447, 1.01563447, 1.01563447, 1.01563447, 1.01080252,
1.01080252, 1.01080252, 1.01080252, 1.00735845, 1.00735845,
1.00735845, 1.00735845, 1.00494254, 1.00494254, 1.00494254,
1.00494254, 1.00327414, 1.00327414, 1.00327414, 1.00327414,
1.00213948, 1.00213948, 1.00213948, 1.00213948, 1.00137931,
1.00137931, 1.00137931, 1.00137931, 1.00087748, 1.00087748,
1.00087748, 1.00087748, 1.00055094, 1.00055094, 1.00055094,
1.00055094, 1.00034146, 1.00034146, 1.00034146, 1.00034146,
1.00020894, 1.00020894, 1.00020894, 1.00020894, 1.00012624,
1.00012624, 1.00012624, 1.00012624, 1.00007533, 1.00007533,
1.00007533, 1.00007533, 1.0000444 , 1.0000444 , 1.0000444 ,
1.0000444 , 1.00002585, 1.00002585, 1.00002585, 1.00002585,
1.00001487, 1.00001487, 1.00001487, 1.00001487, 1.00000844,
1.00000844, 1.00000844, 1.00000844, 1.00000473, 1.00000473,
1.00000473, 1.00000473, 1.00000261, 1.00000261, 1.00000261,
1.00000261, 1.00000142, 1.00000142, 1.00000142, 1.00000142,
1.00000077, 1.00000077, 1.00000077, 1.00000077, 1.00000044,
1.00000044, 1.00000044, 1.00000044, 1.00000029, 1.00000029,
1.00000029, 1.00000029, 1.00000024, 1.00000024, 1.00000024]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hll': [{'rho': array([1.39999993, 1.39999993, 1.39999993, 1.39999993, 1.39999991,
1.39999991, 1.39999991, 1.39999991, 1.39999985, 1.39999985,
1.39999985, 1.39999985, 1.39999972, 1.39999972, 1.39999972,
1.39999972, 1.39999945, 1.39999945, 1.39999945, 1.39999945,
1.39999894, 1.39999894, 1.39999894, 1.39999894, 1.39999796,
1.39999796, 1.39999796, 1.39999796, 1.39999616, 1.39999616,
1.39999616, 1.39999616, 1.39999286, 1.39999286, 1.39999286,
1.39999286, 1.39998691, 1.39998691, 1.39998691, 1.39998691,
1.39997632, 1.39997632, 1.39997632, 1.39997632, 1.39995776,
1.39995776, 1.39995776, 1.39995776, 1.39992567, 1.39992567,
1.39992567, 1.39992567, 1.39987104, 1.39987104, 1.39987104,
1.39987104, 1.39977938, 1.39977938, 1.39977938, 1.39977938,
1.39962798, 1.39962798, 1.39962798, 1.39962798, 1.39938173,
1.39938173, 1.39938173, 1.39938173, 1.39898755, 1.39898755,
1.39898755, 1.39898755, 1.39836674, 1.39836674, 1.39836674,
1.39836674, 1.39740512, 1.39740512, 1.39740512, 1.39740512,
1.39594074, 1.39594074, 1.39594074, 1.39594074, 1.39374939,
1.39374939, 1.39374939, 1.39374939, 1.39052866, 1.39052866,
1.39052866, 1.39052866, 1.38588215, 1.38588215, 1.38588215,
1.38588215, 1.37930638, 1.37930638, 1.37930638, 1.37930638,
1.37018426, 1.37018426, 1.37018426, 1.37018426, 1.35779013,
1.35779013, 1.35779013, 1.35779013, 1.34131205, 1.34131205,
1.34131205, 1.34131205, 1.31989677, 1.31989677, 1.31989677,
1.31989677, 1.29272107, 1.29272107, 1.29272107, 1.29272107,
1.25908953, 1.25908953, 1.25908953, 1.25908953, 1.21855289,
1.21855289, 1.21855289, 1.21855289, 1.17556589, 1.17556589,
1.17556589, 1.17556589, 1.13711047, 1.13711047, 1.13711047,
1.13711047, 1.10532695, 1.10532695, 1.10532695, 1.10532695,
1.0796248 , 1.0796248 , 1.0796248 , 1.0796248 , 1.05925989,
1.05925989, 1.05925989, 1.05925989, 1.04343222, 1.04343222,
1.04343222, 1.04343222, 1.03135572, 1.03135572, 1.03135572,
1.03135572, 1.02230367, 1.02230367, 1.02230367, 1.02230367,
1.01563447, 1.01563447, 1.01563447, 1.01563447, 1.01080252,
1.01080252, 1.01080252, 1.01080252, 1.00735845, 1.00735845,
1.00735845, 1.00735845, 1.00494254, 1.00494254, 1.00494254,
1.00494254, 1.00327414, 1.00327414, 1.00327414, 1.00327414,
1.00213948, 1.00213948, 1.00213948, 1.00213948, 1.00137931,
1.00137931, 1.00137931, 1.00137931, 1.00087748, 1.00087748,
1.00087748, 1.00087748, 1.00055094, 1.00055094, 1.00055094,
1.00055094, 1.00034146, 1.00034146, 1.00034146, 1.00034146,
1.00020894, 1.00020894, 1.00020894, 1.00020894, 1.00012624,
1.00012624, 1.00012624, 1.00012624, 1.00007533, 1.00007533,
1.00007533, 1.00007533, 1.0000444 , 1.0000444 , 1.0000444 ,
1.0000444 , 1.00002585, 1.00002585, 1.00002585, 1.00002585,
1.00001487, 1.00001487, 1.00001487, 1.00001487, 1.00000844,
1.00000844, 1.00000844, 1.00000844, 1.00000473, 1.00000473,
1.00000473, 1.00000473, 1.00000261, 1.00000261, 1.00000261,
1.00000261, 1.00000142, 1.00000142, 1.00000142, 1.00000142,
1.00000077, 1.00000077, 1.00000077, 1.00000077, 1.00000044,
1.00000044, 1.00000044, 1.00000044, 1.00000029, 1.00000029,
1.00000029, 1.00000029, 1.00000024, 1.00000024, 1.00000024]), 'vx': array([ 0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
4.08165898e-17, 4.08165898e-17, 4.08165898e-17, 4.08165898e-17,
2.05441670e-17, 2.05441670e-17, 2.05441670e-17, 2.05441670e-17,
8.29267837e-17, 8.29267837e-17, 8.29267837e-17, 8.29267837e-17,
-4.19727742e-17, -4.19727742e-17, -4.19727742e-17, -4.19727742e-17,
4.26537769e-17, 4.26537769e-17, 4.26537769e-17, 4.26537769e-17,
1.08876128e-16, 1.08876128e-16, 1.08876128e-16, 1.08876128e-16,
4.47137207e-17, 4.47137207e-17, 4.47137207e-17, 4.47137207e-17,
6.93017781e-17, 6.93017781e-17, 6.93017781e-17, 6.93017781e-17,
4.78906210e-17, 4.78906210e-17, 4.78906210e-17, 4.78906210e-17,
4.95102129e-17, 4.95102129e-17, 4.95102129e-17, 4.95102129e-17,
1.52801624e-16, 1.52801624e-16, 1.52801624e-16, 1.52801624e-16,
1.56439306e-16, 1.56439306e-16, 1.56439306e-16, 1.56439306e-16,
2.65744882e-17, 2.65744882e-17, 2.65744882e-17, 2.65744882e-17,
-2.69775953e-17, -2.69775953e-17, -2.69775953e-17, -2.69775953e-17,
2.72934830e-17, 2.72934830e-17, 2.72934830e-17, 2.72934830e-17,
5.50703187e-17, 5.50703187e-17, 5.50703187e-17, 5.50703187e-17,
-2.77159736e-17, -2.77159736e-17, -2.77159736e-17, -2.77159736e-17,
-2.57629383e-24, -2.57629383e-24, -2.57629383e-24, -2.57629383e-24,
1.16823881e-24, 1.16823881e-24, 1.16823881e-24, 1.16823881e-24,
-5.60216970e-17, -5.60216970e-17, -5.60216970e-17, -5.60216970e-17,
2.80574330e-17, 2.80574330e-17, 2.80574330e-17, 2.80574330e-17,
2.35612635e-17, 2.35612635e-17, 2.35612635e-17, 2.35612635e-17,
3.26418943e-17, 3.26418943e-17, 3.26418943e-17, 3.26418943e-17,
-5.62492278e-17, -5.62492278e-17, -5.62492278e-17, -5.62492278e-17,
2.35986698e-17, 2.35986698e-17, 2.35986698e-17, 2.35986698e-17,
4.53606565e-18, 4.53606565e-18, 4.53606565e-18, 4.53606565e-18,
2.46313404e-24, 2.46313404e-24, 2.46313404e-24, 2.46313404e-24,
-2.81457414e-17, -2.81457414e-17, -2.81457414e-17, -2.81457414e-17,
2.81471744e-17, 2.81471744e-17, 2.81471744e-17, 2.81471744e-17,
2.81480379e-17, 2.81480379e-17, 2.81480379e-17, 2.81480379e-17,
2.36110604e-17, 2.36110604e-17, 2.36110604e-17, 2.36110604e-17,
4.53755405e-18, 4.53755405e-18, 4.53755405e-18, 4.53755405e-18,
3.12433719e-24, 3.12433719e-24, 3.12433719e-24, 3.12433719e-24,
2.81491629e-17, 2.81491629e-17, 2.81491629e-17, 2.81491629e-17,
-2.81492237e-17, -2.81492237e-17, -2.81492237e-17, -2.81492237e-17,
2.81492517e-17, 2.81492517e-17, 2.81492517e-17, 2.81492517e-17,
8.44478118e-17, 8.44478118e-17, 8.44478118e-17, 8.44478118e-17,
-5.62985654e-17, -5.62985654e-17, -5.62985654e-17, -5.62985654e-17,
-5.62985652e-17, -5.62985652e-17, -5.62985652e-17, -5.62985652e-17,
-2.81492847e-17, -2.81492847e-17, -2.81492847e-17]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hllc': [{'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}]}
/work/doc/sphinx/examples/ramses/run_toro_shocks.py:284: UserWarning: Attempting to set identical low and high ylims makes transformation singular; automatically expanding.
ax_vx.set_ylim(vx_min - vx_margin, vx_max + vx_margin)
/work/doc/sphinx/examples/ramses/run_toro_shocks.py:289: UserWarning: Attempting to set identical low and high ylims makes transformation singular; automatically expanding.
ax_P.set_ylim(P_min - P_margin, P_max + P_margin)
running none hll
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 18.00 ms [DataInserterUtility][rank=0]
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 : 4.26 us (51.8%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.62 us (1.7%)
patch tree reduce : 1.49 us (0.2%)
gen split merge : 761.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.1%)
LB compute : 574.45 us (93.9%)
LB move op cnt : 0
LB apply : 11.80 us (1.9%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running none hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.96 us (1.5%)
patch tree reduce : 1.86 us (0.3%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 741.00 ns (0.1%)
LB compute : 524.80 us (96.2%)
LB move op cnt : 0
LB apply : 2.97 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (64.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.4829e+05 | 65536 | 2 | 2.639e-01 | 0.0% | 2.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.3%)
patch tree reduce : 2.03 us (0.4%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 431.31 us (95.1%)
LB move op cnt : 0
LB apply : 4.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (69.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5906e+05 | 65536 | 2 | 1.825e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.04989086729698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003652931508385532, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 328.47 us (94.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (63.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5607e+05 | 65536 | 2 | 1.841e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.4488432717403 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007305863016771064, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.4%)
patch tree reduce : 2.41 us (0.6%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 373.20 us (94.8%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1322e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.9180151901171 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010958794525156596, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 330.77 us (94.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3346e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.97881432208095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014611726033542128, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.5%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 359.17 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3238e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.76285777666155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01826465754192766, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.6%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 353.81 us (94.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1231e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.73441597983108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021917589050313192, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 329.44 us (94.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (60.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4219e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.73055201897748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025570520558698726, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 319.88 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5435e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.17032479782698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02922345206708426, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 287.82 us (93.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (60.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4885e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.0662135523737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03287638357546979, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.4%)
patch tree reduce : 2.52 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 368.37 us (93.9%)
LB move op cnt : 0
LB apply : 6.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5281e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.86130592359494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036529315083855325, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 320.39 us (94.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5252e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.80356781403168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04018224659224086, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 308.34 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6456e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.21965581524658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04383517810062639, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 299.54 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6456e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.21917937986602 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047488109609011925, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 2.45 us (0.8%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 306.66 us (93.9%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4740e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.77558958755337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05114104111739746, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 304.61 us (94.0%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3990e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.27061640078448 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05479397262578299, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 287.82 us (93.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (61.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2887e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.05715290882671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.058446904134168524, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 2.49 us (0.8%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 285.48 us (93.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4152e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.59543428791345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06209983564255406, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (2.0%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 274.06 us (93.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5499e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.2993286101324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06575276715093958, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (2.1%)
patch tree reduce : 2.21 us (0.8%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 272.62 us (93.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (65.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4847e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.99014557122565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06940569865932511, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 323.64 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5632e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.56626897840238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07305863016771064, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 307.44 us (93.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4833e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.96215776372432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07671156167609616, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 2.50 us (0.8%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 285.52 us (93.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (63.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4586e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.46776113668173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08036449318448169, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 336.96 us (94.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5181e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.65993963424407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08401742469286722, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 314.22 us (94.1%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5494e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.28981984735091 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08767035620125274, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 312.33 us (94.0%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5411e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.12196638074869 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09132328770963827, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.41 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 298.69 us (93.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5433e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.16681253797415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0949762192180238, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.9%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 741.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 277.36 us (93.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5391e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.08147398632742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09862915072640932, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 318.10 us (94.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7880e+05 | 65536 | 2 | 1.730e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.01026148630531 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10228208223479485, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.1%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 272.49 us (93.2%)
LB move op cnt : 0
LB apply : 3.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5784e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.87106960012257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10593501374318037, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 324.19 us (94.1%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4611e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.51643940854487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1095879452515659, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 303.89 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6430e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.16807644122443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11324087675995143, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 303.26 us (93.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (62.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2224e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.7280400118315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11689380826833695, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 301.17 us (93.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4539e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.37332741841311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12054673977672248, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 316.41 us (94.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3269e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.82521575843377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.124199671285108, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 338.20 us (94.4%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (63.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2703e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.6891298327379 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12785260279349353, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 329.47 us (94.1%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (59.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5393e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.08642946815469 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13150553430187906, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 328.91 us (94.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6839e+05 | 65536 | 2 | 1.399e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.98709878158618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13515846581026458, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.4%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 328.23 us (94.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2453e+05 | 65536 | 2 | 2.019e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.1213379594241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1388113973186501, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.4%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 374.82 us (95.0%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3114e+05 | 65536 | 2 | 1.979e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.44688828997315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14246432882703564, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 298.14 us (93.8%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2057e+05 | 65536 | 2 | 2.044e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.32701105576744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14611726033542116, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.3%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 415.81 us (95.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5001e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.30025356197132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1497701918438067, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.4%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 367.06 us (94.8%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4944e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.18621119084031 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15342312335219221, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 292.70 us (93.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5728e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.75818454622976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15707605486057774, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 323.37 us (94.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (59.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5997e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.29810828135166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16072898636896327, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 308.27 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (60.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5213e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.72480765520622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1643819178773488, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 315.88 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (63.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5379e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.05793729220736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16803484938573432, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 321.73 us (94.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5165e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.62882857649923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17168778089411985, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.9%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 290.09 us (93.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5741e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.78478607578778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17534071240250537, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 323.97 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4494e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.28166648187324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1789936439108909, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 298.72 us (93.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9334e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.92832065312443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18264657541927642, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 294.41 us (94.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8005e+05 | 65536 | 2 | 1.724e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.26146113064958 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18629950692766195, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.9%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 282.56 us (93.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.1%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3912e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.11388389753583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18995243843604748, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 310.16 us (94.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.1%)
Info: cfl dt = 0.003652931508385534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4340e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.97398042232565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.193605369944433, dt = 0.003652931508385534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.0%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 280.41 us (93.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.7%)
Info: cfl dt = 0.003652931508385536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5531e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.3622778306231 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19725830145281853, dt = 0.003652931508385536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 294.29 us (93.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (62.3%)
Info: cfl dt = 0.0036529315083855384 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0013e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.28974396811243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20091123296120406, dt = 0.0036529315083855384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.9%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 296.54 us (93.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (62.1%)
Info: cfl dt = 0.0036529315083855436 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3306e+05 | 65536 | 2 | 1.968e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.83310762746068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20456416446958958, dt = 0.0036529315083855436
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.96 us (1.3%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 371.02 us (95.1%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (65.3%)
Info: cfl dt = 0.0036529315083855536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1271e+05 | 65536 | 2 | 2.096e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.74853544014081 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20821709597797514, dt = 0.0036529315083855536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 338.65 us (94.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (62.8%)
Info: cfl dt = 0.003652931508385568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6487e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.28072013904436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2118700274863607, dt = 0.003652931508385568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 27.04 us (7.5%)
patch tree reduce : 2.38 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 318.53 us (88.5%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.7%)
Info: cfl dt = 0.0036529315083855935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7191e+05 | 65536 | 2 | 1.762e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.62716167949061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21552295899474627, dt = 0.0036529315083855935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 299.68 us (93.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.6%)
Info: cfl dt = 0.0036529315083856325 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6498e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.30405504486308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21917589050313185, dt = 0.0036529315083856325
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.4%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 340.08 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.2%)
Info: cfl dt = 0.003652931508385694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2762e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.80742158974256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2228288220115175, dt = 0.003652931508385694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.6%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 302.16 us (94.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (62.3%)
Info: cfl dt = 0.0036529315083857917 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5985e+05 | 65536 | 2 | 1.821e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.20715655801696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22648175351990318, dt = 0.0036529315083857917
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.4%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 346.53 us (94.8%)
LB move op cnt : 0
LB apply : 3.31 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.4%)
Info: cfl dt = 0.0036529315083859404 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3076e+05 | 65536 | 2 | 1.981e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.37110927639569 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.230134685028289, dt = 0.0036529315083859404
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.7%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 297.38 us (93.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (64.4%)
Info: cfl dt = 0.0036529315083861655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2414e+05 | 65536 | 2 | 2.022e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.04209478381625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23378761653667493, dt = 0.0036529315083861655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 2.27 us (0.6%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 351.95 us (94.7%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.8%)
Info: cfl dt = 0.0036529315083865025 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7885e+05 | 65536 | 2 | 1.730e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.02021119612886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2374405480450611, dt = 0.0036529315083865025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.8%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 277.63 us (93.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.9%)
Info: cfl dt = 0.0036529315083869978 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7603e+05 | 65536 | 2 | 1.743e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.45377268817481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2410934795534476, dt = 0.0036529315083869978
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 309.28 us (93.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.0%)
Info: cfl dt = 0.003652931508387719 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1993e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.26461472954854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2447464110618346, dt = 0.003652931508387719
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 285.58 us (93.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.9%)
Info: cfl dt = 0.0036529315083887576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9112e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.48317019057357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2483993425702223, dt = 0.0036529315083887576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 271.19 us (93.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.2%)
Info: cfl dt = 0.003652931508390237 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9538e+05 | 65536 | 2 | 1.658e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.33726639091597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2520522740786111, dt = 0.003652931508390237
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 315.30 us (94.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.2%)
Info: cfl dt = 0.0036529315083923203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4990e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 1.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.27783774830029 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2557052055870013, dt = 0.0036529315083923203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.4%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 358.31 us (94.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.0%)
Info: cfl dt = 0.0036529315083952264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5822e+05 | 65536 | 2 | 1.829e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.88163979844423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2593581370953936, dt = 0.0036529315083952264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 357.36 us (94.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.1%)
Info: cfl dt = 0.003652931508399244 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3331e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.94857291146128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26301106860378887, dt = 0.003652931508399244
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 328.00 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.5%)
Info: cfl dt = 0.003652931508404744 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3625e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.53928771125854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2666640001121881, dt = 0.003652931508404744
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (2.0%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 270.75 us (93.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.8%)
Info: cfl dt = 0.0036529315084122102 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6813e+05 | 65536 | 2 | 1.400e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.93480778862845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27031693162059284, dt = 0.0036529315084122102
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.6%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 303.24 us (94.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.3%)
Info: cfl dt = 0.00365293150842226 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5552e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.40451776268448 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27396986312900506, dt = 0.00365293150842226
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 279.36 us (93.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (67.3%)
Info: cfl dt = 0.0036529315084356797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5231e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.76052079853126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27762279463742734, dt = 0.0036529315084356797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.4%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 337.56 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.2%)
Info: cfl dt = 0.003652931508453463 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3466e+05 | 65536 | 2 | 1.958e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.15408967264553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.281275726145863, dt = 0.003652931508453463
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 295.56 us (93.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.1%)
Info: cfl dt = 0.003652931508476852 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6337e+05 | 65536 | 2 | 1.804e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.91537454795113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28492865765431646, dt = 0.003652931508476852
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 328.79 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.3%)
Info: cfl dt = 0.0036529315085073997 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7857e+05 | 65536 | 2 | 1.731e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.96449010286833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2885815891627933, dt = 0.0036529315085073997
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 279.47 us (93.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.0%)
Info: cfl dt = 0.003652931508547024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3154e+05 | 65536 | 2 | 1.977e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.52720300532586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2922345206713007, dt = 0.003652931508547024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 307.22 us (94.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.7%)
Info: cfl dt = 0.003652931508598084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1782e+05 | 65536 | 2 | 2.062e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.77422878376488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2958874521798477, dt = 0.003652931508598084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.5%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 366.95 us (94.4%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.4%)
Info: cfl dt = 0.003652931508663467 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1560e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.39587928656503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29954038368844577, dt = 0.003652931508663467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 313.74 us (94.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.2%)
Info: cfl dt = 0.0036529315087466823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5410e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.12065247061435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30319331519710924, dt = 0.0036529315087466823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 284.55 us (93.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (66.8%)
Info: cfl dt = 0.0036529315088519743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9092e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.4416566116731 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3068462467058559, dt = 0.0036529315088519743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 298.08 us (93.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (62.9%)
Info: cfl dt = 0.0036529315089844448 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2108e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.49355024821463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3104991782147079, dt = 0.0036529315089844448
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (2.0%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 275.68 us (93.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (61.3%)
Info: cfl dt = 0.0036529315091502054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4503e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.30132222559463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31415210972369234, dt = 0.0036529315091502054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 289.31 us (93.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.7%)
Info: cfl dt = 0.00365293150935653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4204e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.70067726788332 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31780504123284253, dt = 0.00365293150935653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.4%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 344.38 us (94.8%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.8%)
Info: cfl dt = 0.003652931509612043 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4392e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.07713357975508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32145797274219906, dt = 0.003652931509612043
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (1.6%)
patch tree reduce : 2.58 us (0.7%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 360.71 us (94.1%)
LB move op cnt : 0
LB apply : 4.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.1%)
Info: cfl dt = 0.0036529315099269218 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3631e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.55074498656002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3251109042518111, dt = 0.0036529315099269218
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.8%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 312.14 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.2%)
Info: cfl dt = 0.0036529315103131193 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5659e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.62062147879004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.328763835761738, dt = 0.0036529315103131193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 304.50 us (93.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.3%)
Info: cfl dt = 0.003652931510784622 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4499e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.29142601434869 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3324167672720511, dt = 0.003652931510784622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 329.53 us (94.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.4%)
Info: cfl dt = 0.0036529315113577225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4151e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.59506428918044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3360696987828357, dt = 0.0036529315113577225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.6%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 308.60 us (93.9%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (66.2%)
Info: cfl dt = 0.003652931512051328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5473e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.24769983692606 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3397226302941934, dt = 0.003652931512051328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 289.38 us (93.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (64.0%)
Info: cfl dt = 0.0036529315128872946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5129e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.55647444164352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34337556180624473, dt = 0.0036529315128872946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 339.69 us (94.3%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.2%)
Info: cfl dt = 0.003652931513890794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5349e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.99750537824009 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34702849331913205, dt = 0.003652931513890794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 973.00 ns (0.3%)
LB compute : 292.74 us (93.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.1%)
Info: cfl dt = 0.003652931515090714 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4812e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.91994781065429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35068142483302284, dt = 0.003652931515090714
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 328.47 us (94.4%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.5%)
Info: cfl dt = 0.0036529315165200918 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5417e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.13426528503719 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35433435634811355, dt = 0.0036529315165200918
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.6%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 312.56 us (94.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.8%)
Info: cfl dt = 0.0036529315182165837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5845e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.9923231647923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35798728786463363, dt = 0.0036529315182165837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 301.85 us (93.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (60.7%)
Info: cfl dt = 0.0036529315202229696 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0123e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.51121000751588 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36164021938285024, dt = 0.0036529315202229696
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 317.91 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.1%)
Info: cfl dt = 0.0036529315225876987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5870e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.0432000597079 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3652931509030732, dt = 0.0036529315225876987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 279.15 us (93.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (63.1%)
Info: cfl dt = 0.003652931525365475 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5570e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.44088612429753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3689460824256609, dt = 0.003652931525365475
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (2.0%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 281.89 us (93.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.5%)
Info: cfl dt = 0.0036529315286178824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5861e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.0251383014234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3725990139510264, dt = 0.0036529315286178824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 275.50 us (93.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.3%)
Info: cfl dt = 0.003652931532414045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3749e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.78713523084622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3762519454796443, dt = 0.003652931532414045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 2.42 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 317.33 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.1%)
Info: cfl dt = 0.0036529315368313436 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3778e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.84567566359947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37990487701205833, dt = 0.0036529315368313436
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.4%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 344.77 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.8%)
Info: cfl dt = 0.0036529315419561643 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3908e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.1063611977268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38355780854888966, dt = 0.0036529315419561643
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 2.37 us (0.8%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 282.78 us (93.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (65.9%)
Info: cfl dt = 0.0036529315478846915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3688e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.66568208834111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38721074009084583, dt = 0.0036529315478846915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 313.49 us (93.6%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.0%)
Info: cfl dt = 0.003652931554723754 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4133e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.55694858224163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39086367163873054, dt = 0.003652931554723754
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 278.05 us (93.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (61.2%)
Info: cfl dt = 0.0036529315625917023 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4180e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.65166923564016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3945166031934543, dt = 0.0036529315625917023
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.9%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 278.22 us (93.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.9%)
Info: cfl dt = 0.003652931571619341 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6054e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.41345659900492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.398169534756046, dt = 0.003652931571619341
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (2.0%)
patch tree reduce : 2.24 us (0.8%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 275.95 us (93.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (63.7%)
Info: cfl dt = 0.0036529315819509045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5632e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.56656703387698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40182246632766533, dt = 0.0036529315819509045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 310.61 us (94.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.6%)
Info: cfl dt = 0.003652931593745071 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5681e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.66454966502239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40547539790961623, dt = 0.003652931593745071
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 337.63 us (94.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.2%)
Info: cfl dt = 0.003652931607176027 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5694e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.68998995023985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4091283295033613, dt = 0.003652931607176027
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 287.39 us (93.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.0%)
Info: cfl dt = 0.0036529316224345756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5009e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.31534273097834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4127812611105373, dt = 0.0036529316224345756
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 284.43 us (93.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (62.8%)
Info: cfl dt = 0.0036529316397292864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4624e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.54333569729907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4164341927329719, dt = 0.0036529316397292864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 2.36 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 311.84 us (94.1%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.7%)
Info: cfl dt = 0.0036529316592876816 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6065e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.43463517962556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4200871243727012, dt = 0.0036529316592876816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.7%)
patch tree reduce : 2.25 us (0.8%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 278.12 us (93.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.1%)
Info: cfl dt = 0.003652931681357479 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6465e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.23831518014185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4237400560319889, dt = 0.003652931681357479
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 326.48 us (94.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.6%)
Info: cfl dt = 0.0036529317062078603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6057e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.41781222892318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4273929877133464, dt = 0.0036529317062078603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 302.68 us (94.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (63.7%)
Info: cfl dt = 0.0036529317341307873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4560e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.41443297927341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4310459194195542, dt = 0.0036529317341307873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 309.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.8%)
Info: cfl dt = 0.003652931765442353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5725e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.75322155092587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.434698851153685, dt = 0.003652931765442353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 280.23 us (93.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.9%)
Info: cfl dt = 0.0036529318004841723 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2791e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.8657342549823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43835178291912735, dt = 0.0036529318004841723
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (2.0%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 283.56 us (93.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.7%)
Info: cfl dt = 0.0036529318396248023 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5758e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.8191906944135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4420047147196115, dt = 0.0036529318396248023
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.8%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 272.93 us (93.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (61.9%)
Info: cfl dt = 0.003652931883261201 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5428e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.15747168708927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4456576465592363, dt = 0.003652931883261201
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 277.90 us (93.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.5%)
Info: cfl dt = 0.0036529319318202164 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5947e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.1978080166063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4493105784424975, dt = 0.0036529319318202164
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 348.14 us (94.7%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (61.6%)
Info: cfl dt = 0.0036529319857601028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5713e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.72875211998017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4529635103743177, dt = 0.0036529319857601028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (2.0%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 271.48 us (93.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (60.9%)
Info: cfl dt = 0.0036529320455720633 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6048e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.40150976102655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4566164423600778, dt = 0.0036529320455720633
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 300.68 us (93.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.2%)
Info: cfl dt = 0.003652932111781826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5765e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.83282216077407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46026937440564986, dt = 0.003652932111781826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 267.43 us (93.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.4%)
Info: cfl dt = 0.003652932184951231 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5305e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.90923836032304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46392230651743166, dt = 0.003652932184951231
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 297.01 us (93.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (59.7%)
Info: cfl dt = 0.0036529322656798473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5320e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.93922721828125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4675752387023829, dt = 0.0036529322656798473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.1%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 275.50 us (93.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.4%)
Info: cfl dt = 0.0036529323546066013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4019e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.3282739813981 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47122817096806274, dt = 0.0036529323546066013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.9%)
patch tree reduce : 2.52 us (0.9%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 267.10 us (93.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.0%)
Info: cfl dt = 0.003652932452411429 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5720e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.74271322709137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47488110332266936, dt = 0.003652932452411429
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.9%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 298.12 us (93.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.1%)
Info: cfl dt = 0.0036529325598169318 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3211e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.7080878742149 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4785340357750808, dt = 0.0036529325598169318
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 273.03 us (93.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.3%)
Info: cfl dt = 0.003652932677590051 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6222e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.750205049255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4821869683348977, dt = 0.003652932677590051
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 2.25 us (0.8%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 279.47 us (93.6%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.8%)
Info: cfl dt = 0.0036529328065437443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4743e+05 | 65536 | 2 | 1.886e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.71683256876746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48583990101248775, dt = 0.0036529328065437443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.6%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 359.43 us (94.3%)
LB move op cnt : 0
LB apply : 4.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.3%)
Info: cfl dt = 0.00365293294753867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4180e+05 | 65536 | 2 | 1.917e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.58589983164717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48949283381903147, dt = 0.00365293294753867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 295.52 us (93.9%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (60.1%)
Info: cfl dt = 0.003652933101484878 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4332e+05 | 65536 | 2 | 1.909e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.89077040319229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4931457667665701, dt = 0.003652933101484878
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 324.10 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.4%)
Info: cfl dt = 0.0036529332693434856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4868e+05 | 65536 | 2 | 1.880e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.96733715268286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.496798699868055, dt = 0.0036529332693434856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 307.28 us (93.9%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.3%)
Info: cfl dt = 0.0036529334521283752 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4318e+05 | 65536 | 2 | 1.910e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.86207978913531 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5004516331373985, dt = 0.0036529334521283752
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.6%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 300.81 us (93.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.5%)
Info: cfl dt = 0.0036529336509078633 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.6355e+05 | 65536 | 2 | 2.487e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.88399919692997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5041045665895268, dt = 0.0036529336509078633
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.6%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 353.74 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (64.6%)
Info: cfl dt = 0.003652933866806373 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3909e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.10900189797657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5077575002404348, dt = 0.003652933866806373
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.3%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 397.77 us (95.3%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.3%)
Info: cfl dt = 0.003652934101006093 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0100e+05 | 65536 | 2 | 2.177e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.39929068865229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5114104341072411, dt = 0.003652934101006093
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 339.38 us (94.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.9%)
Info: cfl dt = 0.003652934354748622 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6043e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.39119650058998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150633682082472, dt = 0.003652934354748622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.9%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 314.43 us (93.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (61.4%)
Info: cfl dt = 0.0036529346293366015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3820e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.93086106931071 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5187163025629958, dt = 0.0036529346293366015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 338.43 us (94.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.7%)
Info: cfl dt = 0.0036529349261353217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5587e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.47584962224575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5223692371923324, dt = 0.0036529349261353217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 309.91 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.4%)
Info: cfl dt = 0.0036529352465743143 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2893e+05 | 65536 | 2 | 1.992e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.00326022046207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5260221721184677, dt = 0.0036529352465743143
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.3%)
patch tree reduce : 1.83 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 403.56 us (95.3%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.2%)
Info: cfl dt = 0.0036529355921489154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1846e+05 | 65536 | 2 | 2.058e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.902161075823486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.529675107365042, dt = 0.0036529355921489154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 346.48 us (94.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.9%)
Info: cfl dt = 0.003652935964421809 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6189e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.68320561483513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5333280429571909, dt = 0.003652935964421809
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 288.46 us (93.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.7%)
Info: cfl dt = 0.0036529363650245283 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5678e+05 | 65536 | 2 | 1.837e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.59267784151398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5369809789216128, dt = 0.0036529363650245283
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.6%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 350.12 us (94.6%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (75.2%)
Info: cfl dt = 0.0036529367956589487 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3779e+05 | 65536 | 2 | 1.940e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.78172739778057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5406339152866373, dt = 0.0036529367956589487
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 316.35 us (94.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (63.3%)
Info: cfl dt = 0.003652937258098725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3718e+05 | 65536 | 2 | 1.944e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.6597453419256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5442868520822962, dt = 0.003652937258098725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 340.03 us (94.6%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.8%)
Info: cfl dt = 0.003652937754190703 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5492e+05 | 65536 | 2 | 1.846e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.21942208008437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5479397893403949, dt = 0.003652937754190703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 303.93 us (93.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: cfl dt = 0.003652938285856297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5026e+05 | 65536 | 2 | 1.871e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.28392615586759 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5515927270945856, dt = 0.003652938285856297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.7%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 334.79 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.6%)
Info: cfl dt = 0.003652938855092826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5723e+05 | 65536 | 2 | 1.835e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.68158290728863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.555245665380442, dt = 0.003652938855092826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 340.36 us (94.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.0%)
Info: cfl dt = 0.0036529394639747987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4616e+05 | 65536 | 2 | 1.893e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.4612581431107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5588986042355348, dt = 0.0036529394639747987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 304.97 us (94.1%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.1%)
Info: cfl dt = 0.003652940114655173 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4121e+05 | 65536 | 2 | 1.921e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.46851438906937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5625515436995097, dt = 0.003652940114655173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 335.60 us (94.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.0%)
Info: cfl dt = 0.0036529408093665546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3415e+05 | 65536 | 2 | 1.961e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.05215307901722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5662044838141649, dt = 0.0036529408093665546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 282.84 us (93.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (61.8%)
Info: cfl dt = 0.0036529415504223586 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6208e+05 | 65536 | 2 | 1.810e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.6548567980861 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5698574246235314, dt = 0.0036529415504223586
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.99 us (1.5%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 298.73 us (92.0%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.2%)
Info: cfl dt = 0.003652942340217921 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4900e+05 | 65536 | 2 | 1.878e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.0308536863496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5735103661739538, dt = 0.003652942340217921
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 346.39 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.7%)
Info: cfl dt = 0.003652943181231555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4279e+05 | 65536 | 2 | 1.912e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.78559376315962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5771633085141717, dt = 0.003652943181231555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 309.38 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.3%)
Info: cfl dt = 0.00365294407602557 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4767e+05 | 65536 | 2 | 1.885e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.76394986741073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5808162516954033, dt = 0.00365294407602557
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 301.87 us (93.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.0%)
Info: cfl dt = 0.0036529450272472196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5190e+05 | 65536 | 2 | 1.862e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.61306123379893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5844691957714289, dt = 0.0036529450272472196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 356.62 us (94.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.8%)
Info: cfl dt = 0.003652946037629613 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4625e+05 | 65536 | 2 | 1.893e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.47844689744431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5881221407986761, dt = 0.003652946037629613
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 300.60 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.6%)
Info: cfl dt = 0.003652947109992565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5284e+05 | 65536 | 2 | 1.857e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.80214639104652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5917750868363058, dt = 0.003652947109992565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 2.37 us (0.7%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 315.56 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.9%)
Info: cfl dt = 0.0036529482472433864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5205e+05 | 65536 | 2 | 1.862e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.64316912662748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5954280339462983, dt = 0.0036529482472433864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 306.62 us (93.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.4%)
Info: cfl dt = 0.003652949452377628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4917e+05 | 65536 | 2 | 1.877e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.06471509156881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5990809821935417, dt = 0.003652949452377628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 311.04 us (94.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (64.7%)
Info: cfl dt = 0.003652950728479759 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4648e+05 | 65536 | 2 | 1.892e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.52458730153737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6027339316459193, dt = 0.003652950728479759
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.4%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 333.02 us (94.6%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.3%)
Info: cfl dt = 0.003652952078723793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2643e+05 | 65536 | 2 | 2.008e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.50272925756228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.606386882374399, dt = 0.003652952078723793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.5%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 365.79 us (94.7%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.4%)
Info: cfl dt = 0.0036529535063738513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5119e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 1.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.5361544003408 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6100398344531228, dt = 0.0036529535063738513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 290.19 us (93.5%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (61.6%)
Info: cfl dt = 0.0036529550147846746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5099e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.49650354122184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6136927879594967, dt = 0.0036529550147846746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 287.49 us (93.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.6%)
Info: cfl dt = 0.003652956607402064 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5173e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.64513467286805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173457429742814, dt = 0.003652956607402064
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 286.36 us (93.5%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.0%)
Info: cfl dt = 0.003652958287763276 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5463e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.22738394237058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6209986995816834, dt = 0.003652958287763276
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.8%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 303.92 us (93.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.3%)
Info: cfl dt = 0.0036529600594973465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4768e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.83350027043869 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6246516578694467, dt = 0.0036529600594973465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 298.08 us (93.3%)
LB move op cnt : 0
LB apply : 4.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.5%)
Info: cfl dt = 0.0036529619263253603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4787e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.8702632299217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.628304617928944, dt = 0.0036529619263253603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 327.17 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.6%)
Info: cfl dt = 0.0036529638920606636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4985e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.26871969056218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6319575798552693, dt = 0.0036529638920606636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 336.10 us (94.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.3%)
Info: cfl dt = 0.0036529659606090083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5137e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.57278098775963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6356105437473301, dt = 0.0036529659606090083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 297.14 us (94.0%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (61.8%)
Info: cfl dt = 0.0036529681359686425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5982e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.2681605849477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6392635097079391, dt = 0.0036529681359686425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.3%)
LB compute : 279.30 us (93.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.5%)
Info: cfl dt = 0.003652970422230343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3173e+05 | 65536 | 2 | 1.976e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.56599252574793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6429164778439077, dt = 0.003652970422230343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 347.85 us (94.3%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.0%)
Info: cfl dt = 0.003652972823577382 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1671e+05 | 65536 | 2 | 2.069e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.55195756517538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.646569448266138, dt = 0.003652972823577382
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.5%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 354.76 us (94.7%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.1%)
Info: cfl dt = 0.003652975344285441 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3748e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.78593357447279 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6502224210897154, dt = 0.003652975344285441
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 311.88 us (94.0%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.5%)
Info: cfl dt = 0.003652977988722462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6696e+05 | 65536 | 2 | 1.403e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.70217988452958 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6538753964340008, dt = 0.003652977988722462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 306.39 us (94.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.3%)
Info: cfl dt = 0.003652980761348444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7011e+05 | 65536 | 2 | 1.394e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.33411750267061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6575283744227233, dt = 0.003652980761348444
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 2.29 us (0.8%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 275.02 us (92.9%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.7%)
Info: cfl dt = 0.003652983666715181 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4863e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.02481699693485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6611813551840717, dt = 0.003652983666715181
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 286.50 us (93.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (60.9%)
Info: cfl dt = 0.003652986709465942 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4625e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.54647782908654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6648343388507869, dt = 0.003652986709465942
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.6%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 335.92 us (94.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.2%)
Info: cfl dt = 0.0036529898943350922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4800e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.89686824113262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6684873255602528, dt = 0.0036529898943350922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 279.89 us (93.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.8%)
Info: cfl dt = 0.0036529932261476663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5514e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.32978191260524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6721403154545879, dt = 0.0036529932261476663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.6%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 301.43 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.1%)
Info: cfl dt = 0.003652996709818882 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5534e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.37024102896747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6757933086807355, dt = 0.003652996709818882
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.9%)
patch tree reduce : 2.35 us (0.8%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 280.77 us (93.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.9%)
Info: cfl dt = 0.003653000350353597 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5357e+05 | 65536 | 2 | 1.854e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.94984673214786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6794463053905544, dt = 0.003653000350353597
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.5%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 335.25 us (94.7%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (61.4%)
Info: cfl dt = 0.0036530041528457214 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3501e+05 | 65536 | 2 | 1.956e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.22396003687037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.683099305740908, dt = 0.0036530041528457214
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.4%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 333.84 us (94.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.5%)
Info: cfl dt = 0.003653008122477567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2912e+05 | 65536 | 2 | 1.991e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.04271111802876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6867523098937538, dt = 0.003653008122477567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.5%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 350.53 us (94.5%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.2%)
Info: cfl dt = 0.003653012264519157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4643e+05 | 65536 | 2 | 1.892e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.51615620067764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6904053180162314, dt = 0.003653012264519157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.4%)
patch tree reduce : 2.19 us (0.5%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 392.43 us (95.0%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (65.8%)
Info: cfl dt = 0.0036530165843274794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4982e+05 | 65536 | 2 | 1.873e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.19742654214228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6940583302807506, dt = 0.0036530165843274794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 358.72 us (94.9%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.4%)
Info: cfl dt = 0.0036530210873456878 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2247e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.77503432844654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6977113468650781, dt = 0.0036530210873456878
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 325.37 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.6%)
Info: cfl dt = 0.0036530257791022626 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6082e+05 | 65536 | 2 | 1.422e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.4706620288568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7013643679524237, dt = 0.0036530257791022626
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 331.63 us (94.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (62.9%)
Info: cfl dt = 0.0036530306652101207 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1974e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.22799684815348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.705017393731526, dt = 0.0036530306652101207
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.1%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 286.92 us (93.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.6%)
Info: cfl dt = 0.0036530357513656795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5738e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.7819381598974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7086704243967362, dt = 0.0036530357513656795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 322.01 us (94.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.1%)
Info: cfl dt = 0.0036530410433478788 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5368e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.03784120367234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7123234601481019, dt = 0.0036530410433478788
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 301.61 us (94.3%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.7%)
Info: cfl dt = 0.0036530465470171534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4000e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.29460555181552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7159765011914497, dt = 0.0036530465470171534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 331.21 us (94.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.3%)
Info: cfl dt = 0.003653052268314374 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3588e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.46664278833457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7196295477384669, dt = 0.003653052268314374
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 297.26 us (93.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (63.2%)
Info: cfl dt = 0.003653058213259738 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4667e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.63165592784097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7232826000067812, dt = 0.003653058213259738
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 290.19 us (93.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.3%)
Info: cfl dt = 0.0036530643879516206 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4756e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.81166681136769 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.726935658220041, dt = 0.0036530643879516206
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 289.37 us (93.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.1%)
Info: cfl dt = 0.0036530707985654018 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5025e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.35074510450283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7305887226079927, dt = 0.0036530707985654018
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.6%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 352.56 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.5%)
Info: cfl dt = 0.0036530774513522314 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5166e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.6333530618077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.734241793406558, dt = 0.0036530774513522314
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 326.29 us (94.3%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.6%)
Info: cfl dt = 0.003653084352637785 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4398e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.09251699334584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7378948708579103, dt = 0.003653084352637785
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 324.28 us (94.1%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.1%)
Info: cfl dt = 0.003653091508820965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2842e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.97142740133673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7415479552105481, dt = 0.003653091508820965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 291.62 us (93.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.2%)
Info: cfl dt = 0.003653098926372581 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2587e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.45974950886942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.745201046719369, dt = 0.003653098926372581
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 323.44 us (94.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 0.0036531066118339925 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4796e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.89297480108768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7488541456457416, dt = 0.0036531066118339925
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 278.29 us (93.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.4%)
Info: cfl dt = 0.003653114571815723 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6611e+05 | 65536 | 2 | 1.406e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.53475489192252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7525072522575756, dt = 0.003653114571815723
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.9%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 274.76 us (93.4%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.9%)
Info: cfl dt = 0.0036531228129960468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8345e+05 | 65536 | 2 | 1.709e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.94826112896261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7561603668293914, dt = 0.0036531228129960468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.5%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 374.83 us (95.0%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.2%)
Info: cfl dt = 0.003653131342119541 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7544e+05 | 65536 | 2 | 1.746e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.34064088071965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7598134896423874, dt = 0.003653131342119541
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 316.92 us (94.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.0%)
Info: cfl dt = 0.0036531401659956235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8636e+05 | 65536 | 2 | 1.696e-01 | 0.0% | 1.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.53088371772056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7634666209845069, dt = 0.0036531401659956235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (0.3%)
patch tree reduce : 2.14 us (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1.00 us (0.0%)
LB compute : 1.99 ms (98.9%)
LB move op cnt : 0
LB apply : 4.02 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (64.6%)
Info: cfl dt = 0.0036531492914970536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5743e+05 | 65536 | 2 | 1.834e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.72701674172792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7671197611505025, dt = 0.0036531492914970536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 301.24 us (93.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.4%)
Info: cfl dt = 0.003653158725558412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0733e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.74061847780096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7707729104419996, dt = 0.003653158725558412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.6%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 302.31 us (93.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.8%)
Info: cfl dt = 0.003653168475174567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2280e+05 | 65536 | 2 | 2.030e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.77804875935848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.774426069167558, dt = 0.003653168475174567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.3%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 363.36 us (95.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.0%)
Info: cfl dt = 0.0036531785473991074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2404e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.09374989407084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7780792376427326, dt = 0.0036531785473991074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 2.35 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 326.00 us (94.2%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.5%)
Info: cfl dt = 0.0036531889493427593 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0785e+05 | 65536 | 2 | 1.607e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.84564554556137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7817324161901317, dt = 0.0036531889493427593
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 308.21 us (94.1%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.9%)
Info: cfl dt = 0.0036531996881717945 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5421e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.14890645740557 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7853856051394744, dt = 0.0036531996881717945
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 292.04 us (93.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.2%)
Info: cfl dt = 0.0036532107711063997 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4970e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.24331913002436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7890388048276462, dt = 0.0036532107711063997
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 298.28 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (59.5%)
Info: cfl dt = 0.0036532222054190535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3743e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.78193978299338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7926920155987526, dt = 0.0036532222054190535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 312.30 us (93.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.1%)
Info: cfl dt = 0.0036532339984328742 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3735e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.76633267225802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7963452378041717, dt = 0.0036532339984328742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 326.24 us (94.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.1%)
Info: cfl dt = 0.0036532461575199556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3735e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.76611697431609 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7999984718026045, dt = 0.0036532461575199556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 289.39 us (93.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.7%)
Info: cfl dt = 0.0036532586900996935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2999e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.28932840258082 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8036517179601245, dt = 0.0036532586900996935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 318.62 us (94.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.8%)
Info: cfl dt = 0.003653271603637104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6128e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.5685175652027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8073049766502242, dt = 0.003653271603637104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 271.64 us (93.3%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.7%)
Info: cfl dt = 0.0036532849056411195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3674e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.64515256201116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8109582482538613, dt = 0.0036532849056411195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (0.9%)
patch tree reduce : 2.25 us (0.3%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 638.52 us (96.8%)
LB move op cnt : 0
LB apply : 4.15 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (68.1%)
Info: cfl dt = 0.003653298603662891 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9346e+05 | 65536 | 2 | 1.666e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.95944090156036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8146115331595024, dt = 0.003653298603662891
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 338.93 us (94.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.3%)
Info: cfl dt = 0.003653312705294072 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3345e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.9862623376401 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8182648317631653, dt = 0.003653312705294072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 330.23 us (94.2%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.6%)
Info: cfl dt = 0.0036533272181651024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7806e+05 | 65536 | 2 | 1.733e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.87042720280913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8219181444684595, dt = 0.0036533272181651024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 292.13 us (93.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.3%)
Info: cfl dt = 0.00365334214994348 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4691e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.6873998504837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8255714716866246, dt = 0.00365334214994348
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 290.75 us (93.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.8%)
Info: cfl dt = 0.003653357508332034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1811e+05 | 65536 | 2 | 2.060e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.840273244042145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8292248138365681, dt = 0.003653357508332034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 341.92 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.1%)
Info: cfl dt = 0.0036533733010671913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1632e+05 | 65536 | 2 | 2.072e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.47995245461853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8328781713449002, dt = 0.0036533733010671913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.6%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 368.10 us (94.8%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.6%)
Info: cfl dt = 0.0036533895359172467 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3191e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.67811538901755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8365315446459674, dt = 0.0036533895359172467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 318.79 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.0%)
Info: cfl dt = 0.0036534062206806193 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4282e+05 | 65536 | 2 | 1.912e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.8000642526956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8401849341818846, dt = 0.0036534062206806193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.3%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 368.92 us (95.1%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.6%)
Info: cfl dt = 0.00365342336318412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4174e+05 | 65536 | 2 | 1.918e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.58375501671779 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8438383404025652, dt = 0.00365342336318412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.5%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 374.49 us (94.9%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.8%)
Info: cfl dt = 0.0036534409712812178 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4241e+05 | 65536 | 2 | 1.914e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.71715930233965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8474917637657493, dt = 0.0036534409712812178
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.4%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 378.59 us (95.0%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.9%)
Info: cfl dt = 0.0036534590528503035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9753e+05 | 65536 | 2 | 1.649e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.77973953369354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8511452047370305, dt = 0.0036534590528503035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 333.44 us (94.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.2%)
Info: cfl dt = 0.003653477615792957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5423e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.1587092416772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8547986637898808, dt = 0.003653477615792957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.9%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 268.27 us (93.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.9%)
Info: cfl dt = 0.0036534966680322224 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5140e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.59140895819735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8584521414056737, dt = 0.0036534966680322224
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 305.59 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.8%)
Info: cfl dt = 0.0036535162175108807 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5707e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.73000583745556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.862105638073706, dt = 0.0036535162175108807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 2.39 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 305.92 us (93.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.5%)
Info: cfl dt = 0.0036535362721897362 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5569e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.45377546600044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8657591542912169, dt = 0.0036535362721897362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.0%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 285.38 us (93.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.3%)
Info: cfl dt = 0.003653556840045897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5439e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.19391321570842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8694126905634066, dt = 0.003653556840045897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.0%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 276.44 us (93.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.1%)
Info: cfl dt = 0.0036535779290710764 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4121e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.5485579361646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8730662474034525, dt = 0.0036535779290710764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.8%)
patch tree reduce : 2.37 us (0.8%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 273.83 us (93.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.4%)
Info: cfl dt = 0.0036535995472698896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4542e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.39521831798453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8767198253325236, dt = 0.0036535995472698896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 345.66 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.9%)
Info: cfl dt = 0.0036536217026581644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2840e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.97901386479623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8803734248797934, dt = 0.0036536217026581644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 314.05 us (94.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.1%)
Info: cfl dt = 0.0036536444032612627 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4064e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.4358362052668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8840270465824516, dt = 0.0036536444032612627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 323.04 us (94.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.3%)
Info: cfl dt = 0.003653667657112408 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1115e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.51788572357877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8876806909857128, dt = 0.003653667657112408
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 315.57 us (94.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.7%)
Info: cfl dt = 0.003653691472251024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4476e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.26468689214046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913343586428252, dt = 0.003653691472251024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 315.32 us (94.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (61.2%)
Info: cfl dt = 0.0036537158567210874 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6579e+05 | 65536 | 2 | 1.792e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.41457749644754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8949880501150762, dt = 0.0036537158567210874
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 282.48 us (93.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.6%)
Info: cfl dt = 0.0036537408185694856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4430e+05 | 65536 | 2 | 1.903e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.10200852127855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8986417659717973, dt = 0.0036537408185694856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 293.15 us (94.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.8%)
Info: cfl dt = 0.003653766365844397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8371e+05 | 65536 | 2 | 1.708e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.0129352831406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9022955067903669, dt = 0.003653766365844397
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.3%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 273.80 us (92.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.9%)
Info: cfl dt = 0.0036537925065936745 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3852e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.01329124915824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9059492731562112, dt = 0.0036537925065936745
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.5%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 333.38 us (94.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (63.4%)
Info: cfl dt = 0.003653819248863248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0071e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.42546611918613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9096030656628049, dt = 0.003653819248863248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 286.19 us (93.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.9%)
Info: cfl dt = 0.00365384660069554 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2362e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.02553223001408 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9132568849116681, dt = 0.00365384660069554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 295.62 us (93.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.4%)
Info: cfl dt = 0.003653874570127893 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4025e+05 | 65536 | 2 | 1.926e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.29154148333147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9169107315123637, dt = 0.003653874570127893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.0%)
patch tree reduce : 2.10 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 540.43 us (96.5%)
LB move op cnt : 0
LB apply : 3.28 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.2%)
Info: cfl dt = 0.0036539031651910176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3571e+05 | 65536 | 2 | 1.952e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.38195181568338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9205646060824916, dt = 0.0036539031651910176
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.4%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 355.09 us (94.4%)
LB move op cnt : 0
LB apply : 4.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.8%)
Info: cfl dt = 0.0036539323939074526 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5525e+05 | 65536 | 2 | 1.845e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.30392615309684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9242185092476826, dt = 0.0036539323939074526
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 298.62 us (94.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.5%)
Info: cfl dt = 0.0036539622642900384 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5373e+05 | 65536 | 2 | 1.853e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.00020675887811 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.92787244164159, dt = 0.0036539622642900384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 296.35 us (93.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.0%)
Info: cfl dt = 0.0036539927843404142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3329e+05 | 65536 | 2 | 1.966e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.89812297087742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.93152640390588, dt = 0.0036539927843404142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 303.91 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (62.4%)
Info: cfl dt = 0.003654023962047524 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5345e+05 | 65536 | 2 | 1.854e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.94503331781794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9351803966902205, dt = 0.003654023962047524
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 294.78 us (93.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (60.6%)
Info: cfl dt = 0.0036540558053861456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3941e+05 | 65536 | 2 | 1.931e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.12656592150859 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.938834420652268, dt = 0.0036540558053861456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 300.72 us (94.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.0%)
Info: cfl dt = 0.0036540883223154345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3147e+05 | 65536 | 2 | 1.977e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.53325740804483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9424884764576541, dt = 0.0036540883223154345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 305.24 us (93.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.9%)
Info: cfl dt = 0.0036541215207774908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3353e+05 | 65536 | 2 | 1.965e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.94765620434592 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9461425647799695, dt = 0.0036541215207774908
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 299.73 us (94.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.7%)
Info: cfl dt = 0.0036541554086959335 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5469e+05 | 65536 | 2 | 1.848e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.19523036178684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.949796686300747, dt = 0.0036541554086959335
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 301.93 us (93.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.1%)
Info: cfl dt = 0.0036541899939745064 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5466e+05 | 65536 | 2 | 1.848e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.19065143730072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9534508417094429, dt = 0.0036541899939745064
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.4%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 348.19 us (94.7%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.9%)
Info: cfl dt = 0.003654225284495694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4286e+05 | 65536 | 2 | 1.911e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.82326074663634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9571050317034174, dt = 0.003654225284495694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 309.45 us (94.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.1%)
Info: cfl dt = 0.00365426128811936 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4031e+05 | 65536 | 2 | 1.926e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.31141874052193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9607592569879131, dt = 0.00365426128811936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 302.39 us (93.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.0%)
Info: cfl dt = 0.003654298012681406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3408e+05 | 65536 | 2 | 1.962e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.06062922819417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9644135182760325, dt = 0.003654298012681406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 336.43 us (94.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.8%)
Info: cfl dt = 0.003654335465992446 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5735e+05 | 65536 | 2 | 1.834e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.73414151541436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9680678162887139, dt = 0.003654335465992446
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 301.05 us (93.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (60.0%)
Info: cfl dt = 0.00365437365583651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5772e+05 | 65536 | 2 | 1.832e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.80743787298022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9717221517547063, dt = 0.00365437365583651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 310.71 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.3%)
Info: cfl dt = 0.0036544125899697494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5528e+05 | 65536 | 2 | 1.845e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.31918369141451 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9753765254105429, dt = 0.0036544125899697494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 322.46 us (89.2%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.5%)
Info: cfl dt = 0.0036544522761191916 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5063e+05 | 65536 | 2 | 1.869e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.38607222273764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9790309380005127, dt = 0.0036544522761191916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 290.92 us (93.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.8%)
Info: cfl dt = 0.003654492721981483 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4616e+05 | 65536 | 2 | 1.893e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.48935964434733 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9826853902766318, dt = 0.003654492721981483
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 336.89 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.6%)
Info: cfl dt = 0.0036545339352216785 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4536e+05 | 65536 | 2 | 1.898e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.32926815926494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9863398829986133, dt = 0.0036545339352216785
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 343.33 us (94.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.3%)
Info: cfl dt = 0.003654575923472035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4074e+05 | 65536 | 2 | 1.923e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.4037068722644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9899944169338349, dt = 0.003654575923472035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.6%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.74 us (0.5%)
LB compute : 332.75 us (94.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.9%)
Info: cfl dt = 0.0036546186943308364 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2894e+05 | 65536 | 2 | 1.992e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.03442232371101 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.993648992857307, dt = 0.0036546186943308364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 286.19 us (93.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.2%)
Info: cfl dt = 0.003654662255361233 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2765e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.85276362890062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9973036115516378, dt = 0.003654662255361233
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 2.47 us (0.8%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 278.70 us (93.4%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (63.9%)
Info: cfl dt = 0.003654706614090106 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9319e+05 | 65536 | 2 | 1.667e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.93519740707954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.000958273806999, dt = 0.003654706614090106
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 275.67 us (93.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.2%)
Info: cfl dt = 0.003654751778006954 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5237e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.81718643678964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0046129804210893, dt = 0.003654751778006954
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 280.83 us (93.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.1%)
Info: cfl dt = 0.0036547977545627916 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5659e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.66540396387649 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0082677321990963, dt = 0.0036547977545627916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.9%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 273.92 us (93.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.7%)
Info: cfl dt = 0.003654844551169086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5635e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.61834473747777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0119225299536592, dt = 0.003654844551169086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 2.43 us (0.8%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 274.50 us (93.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.5%)
Info: cfl dt = 0.0036548921751966973 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5175e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.69544280758208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0155773745048282, dt = 0.0036548921751966973
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 286.26 us (93.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.5%)
Info: cfl dt = 0.003654940633974854 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5064e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.47484481148767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0192322666800249, dt = 0.003654940633974854
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.6%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 303.38 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.0%)
Info: cfl dt = 0.003654989934790144 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5278e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.90481567004414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0228872073139996, dt = 0.003654989934790144
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.7%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 275.05 us (93.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.3%)
Info: cfl dt = 0.0036550400848855235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4196e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.73411358095277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0265421972487898, dt = 0.0036550400848855235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.5%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 356.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.0%)
Info: cfl dt = 0.0036550910914593567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3711e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.76116425644959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0301972373336754, dt = 0.0036550910914593567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.7%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 278.74 us (93.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.6%)
Info: cfl dt = 0.0036551429616644665 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2490e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.31113429246871 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0338523284251349, dt = 0.0036551429616644665
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.8%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 286.25 us (93.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.3%)
Info: cfl dt = 0.0036551957026072185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6000e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.36067265386328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0375074713867993, dt = 0.0036551957026072185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 324.84 us (92.7%)
LB move op cnt : 0
LB apply : 9.46 us (2.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.2%)
Info: cfl dt = 0.0036552493213466114 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6024e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.41035400530794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0411626670894065, dt = 0.0036552493213466114
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 275.53 us (93.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.5%)
Info: cfl dt = 0.003655303824893406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5793e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.94654850867533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0448179164107532, dt = 0.003655303824893406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 342.49 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.3%)
Info: cfl dt = 0.003655359220209261 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5198e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.75326271045257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0484732202356466, dt = 0.003655359220209261
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 2.38 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 333.93 us (94.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (64.9%)
Info: cfl dt = 0.0036554155142058944 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5783e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.929916528974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.052128579455856, dt = 0.0036554155142058944
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 323.30 us (94.0%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.8%)
Info: cfl dt = 0.003655472713744274 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3185e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.71510100018446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0557839949700618, dt = 0.003655472713744274
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 320.61 us (94.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.7%)
Info: cfl dt = 0.003655530825633816 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4099e+05 | 65536 | 2 | 1.922e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.47093740861288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0594394676838061, dt = 0.003655530825633816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 358.54 us (94.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (66.5%)
Info: cfl dt = 0.0036555898566316097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2052e+05 | 65536 | 2 | 2.045e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.3614985457638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.06309499850944, dt = 0.0036555898566316097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.75 us (1.2%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 621.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 391.99 us (95.5%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (63.5%)
Info: cfl dt = 0.0036556498134416755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2583e+05 | 65536 | 2 | 2.011e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.43007187343319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0667505883660715, dt = 0.0036556498134416755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.3%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 742.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 393.08 us (95.5%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.6%)
Info: cfl dt = 0.0036557107027142184 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1617e+05 | 65536 | 2 | 2.073e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.48970138876199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0704062381795132, dt = 0.0036557107027142184
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.2%)
patch tree reduce : 2.19 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 424.32 us (95.7%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (64.3%)
Info: cfl dt = 0.0036557725310449223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3544e+05 | 65536 | 2 | 1.954e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.36193309083514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0740619488822274, dt = 0.0036557725310449223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 354.06 us (94.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.6%)
Info: cfl dt = 0.0036558353049742603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3736e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.74736577229778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0777177214132723, dt = 0.0036558353049742603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.3%)
patch tree reduce : 2.11 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 393.49 us (95.2%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.8%)
Info: cfl dt = 0.003655899030986823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4368e+05 | 65536 | 2 | 1.907e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.01729792441083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0813735567182465, dt = 0.003655899030986823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 360.15 us (94.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.7%)
Info: cfl dt = 0.003655963715510664 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8278e+05 | 65536 | 2 | 1.712e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.8719685388187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0850294557492333, dt = 0.003655963715510664
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 322.42 us (94.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.1%)
Info: cfl dt = 0.0036560293649166736 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5538e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.45282078488869 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.088685419464744, dt = 0.0036560293649166736
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.5%)
patch tree reduce : 2.27 us (0.6%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 352.88 us (94.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.7%)
Info: cfl dt = 0.00365609598551797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4800e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.97169310285125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0923414488296606, dt = 0.00365609598551797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.7%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 284.97 us (93.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (60.6%)
Info: cfl dt = 0.003656163583569299 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4336e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.04153928024826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0959975448151784, dt = 0.003656163583569299
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.5%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 307.46 us (88.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.1%)
Info: cfl dt = 0.003656232165266472 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4386e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.14362274679536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0996537083987477, dt = 0.003656232165266472
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 302.49 us (94.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.1%)
Info: cfl dt = 0.003656301736745815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4346e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.06641113595141 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.103309940564014, dt = 0.003656301736745815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 2.36 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 317.99 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.9%)
Info: cfl dt = 0.003656372304083628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3762e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.89480260685873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.10696624230076, dt = 0.003656372304083628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 329.68 us (94.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.1%)
Info: cfl dt = 0.0036564438732956794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6066e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.52311759728975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1106226146048437, dt = 0.0036564438732956794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 293.31 us (93.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (62.2%)
Info: cfl dt = 0.003656516450336708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6007e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.40617010836586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1142790584781395, dt = 0.003656516450336708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.0%)
patch tree reduce : 2.71 us (0.9%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 293.15 us (93.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.6%)
Info: cfl dt = 0.0036565900410999498 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5867e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.1277316075122 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.117935574928476, dt = 0.0036565900410999498
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 303.21 us (93.7%)
LB move op cnt : 0
LB apply : 4.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.5%)
Info: cfl dt = 0.0036566646514166815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5786e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.96651177879157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.121592164969576, dt = 0.0036566646514166815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 295.08 us (93.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.5%)
Info: cfl dt = 0.0036567402870557758 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5805e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.00695655937835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1252488296209926, dt = 0.0036567402870557758
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 289.90 us (93.8%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (60.4%)
Info: cfl dt = 0.0036568169537232924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2893e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.15848556197872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1289055699080484, dt = 0.0036568169537232924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 331.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.4%)
Info: cfl dt = 0.0036568946570620657 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5237e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.86916981064145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1325623868617716, dt = 0.0036568946570620657
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 314.36 us (93.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.4%)
Info: cfl dt = 0.003656973402651325 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4118e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.62347462163041 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1362192815188337, dt = 0.003656973402651325
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 348.63 us (94.4%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.5%)
Info: cfl dt = 0.0036570531960063287 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3562e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.50883954948114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.139876254921485, dt = 0.0036570531960063287
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.4%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 354.27 us (94.9%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.5%)
Info: cfl dt = 0.0036571340425780112 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3973e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.33651017017743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1435333081174912, dt = 0.0036571340425780112
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 323.37 us (94.2%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.0%)
Info: cfl dt = 0.0036572159477526547 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5614e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.6347015944554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1471904421600692, dt = 0.0036572159477526547
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 2.37 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 308.72 us (94.0%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.8%)
Info: cfl dt = 0.0036572989168515723 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7977e+05 | 65536 | 2 | 1.726e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.29507629703001 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1508476581078217, dt = 0.0036572989168515723
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 327.94 us (94.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.4%)
Info: cfl dt = 0.003657382955130808 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3971e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.33868055847488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1545049570246733, dt = 0.003657382955130808
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.5%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 310.62 us (94.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (63.9%)
Info: cfl dt = 0.0036574680677808583 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3944e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.28586346264514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.158162339979804, dt = 0.0036574680677808583
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 8.89 us (2.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 320.97 us (92.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.6%)
Info: cfl dt = 0.0036575542599264045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7331e+05 | 65536 | 2 | 1.756e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.00271981370983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1618198080475848, dt = 0.0036575542599264045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (0.5%)
patch tree reduce : 2.43 us (0.2%)
gen split merge : 771.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 1.05 ms (98.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.4%)
Info: cfl dt = 0.0036576415366260623 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4993e+05 | 65536 | 2 | 1.873e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.3061563467027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1654773623075112, dt = 0.0036576415366260623
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 335.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.4%)
Info: cfl dt = 0.003657729902872153 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4351e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.10964784741175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1691350038441373, dt = 0.003657729902872153
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 344.88 us (94.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.1%)
Info: cfl dt = 0.003657819363590478 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3281e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.96297604103485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1727927337470094, dt = 0.003657819363590478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 313.12 us (93.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (59.4%)
Info: cfl dt = 0.0036579099236401266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4024e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.45789605128873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1764505531106, dt = 0.0036579099236401266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.5%)
patch tree reduce : 2.44 us (0.6%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.48 us (0.4%)
LB compute : 358.33 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.8%)
Info: cfl dt = 0.003658001587813278 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8604e+05 | 65536 | 2 | 1.698e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.56885172414052 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1801084630342402, dt = 0.003658001587813278
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 343.08 us (94.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.0%)
Info: cfl dt = 0.0036580943608350387 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2799e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.00062389823128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1837664646220536, dt = 0.0036580943608350387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 294.27 us (93.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.9%)
Info: cfl dt = 0.00365818824736328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4857e+05 | 65536 | 2 | 1.880e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.0441083799312 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1874245589828887, dt = 0.00365818824736328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 365.98 us (95.0%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.3%)
Info: cfl dt = 0.003658283251988494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3654e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.72301599125986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1910827472302519, dt = 0.003658283251988494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 341.82 us (94.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.8%)
Info: cfl dt = 0.003658379379233672 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0342e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.06984124644855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1947410304822403, dt = 0.003658379379233672
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 338.45 us (94.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.3%)
Info: cfl dt = 0.003658476633554183 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3071e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.55636741103494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.198399409861474, dt = 0.003658476633554183
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 314.73 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.2%)
Info: cfl dt = 0.003658575019337678 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3733e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.88768247854549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2020578864950282, dt = 0.003658575019337678
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.3%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 379.31 us (95.0%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.5%)
Info: cfl dt = 0.0036586745409040006 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4632e+05 | 65536 | 2 | 1.892e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.60005698275202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2057164615143658, dt = 0.0036586745409040006
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 290.27 us (93.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.5%)
Info: cfl dt = 0.003658775202505116 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7069e+05 | 65536 | 2 | 1.392e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.59844791463131 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2093751360552698, dt = 0.003658775202505116
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 317.07 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.9%)
Info: cfl dt = 0.0036588770083250508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5958e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.3680597048496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2130339112577748, dt = 0.0036588770083250508
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 298.90 us (93.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.8%)
Info: cfl dt = 0.003658979962479843 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5301e+05 | 65536 | 2 | 1.856e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.95165814902953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2166927882660998, dt = 0.003658979962479843
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.9%)
patch tree reduce : 2.37 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 299.34 us (93.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.8%)
Info: cfl dt = 0.003659084069017512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4728e+05 | 65536 | 2 | 1.887e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.80101823716285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2203517682285796, dt = 0.003659084069017512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 296.01 us (93.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (60.4%)
Info: cfl dt = 0.0036591893319180345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4619e+05 | 65536 | 2 | 1.893e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.58313614741559 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2240108522975972, dt = 0.0036591893319180345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 337.19 us (94.6%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.6%)
Info: cfl dt = 0.0036592957550933346 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4969e+05 | 65536 | 2 | 1.874e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.28976789283671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2276700416295152, dt = 0.0036592957550933346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 301.38 us (94.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.9%)
Info: cfl dt = 0.003659403342387289 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2551e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.53276225765649 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2313293373846086, dt = 0.003659403342387289
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 334.86 us (94.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (63.2%)
Info: cfl dt = 0.0036595120975757406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5831e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.12741122531364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.234988740726996, dt = 0.0036595120975757406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 349.82 us (94.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.9%)
Info: cfl dt = 0.003659622024366522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3542e+05 | 65536 | 2 | 1.954e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.42769092840126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2386482528245717, dt = 0.003659622024366522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 341.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.9%)
Info: cfl dt = 0.003659733126399501 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2867e+05 | 65536 | 2 | 1.994e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.07194878918914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2423078748489382, dt = 0.003659733126399501
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 317.93 us (94.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.8%)
Info: cfl dt = 0.003659845407246617 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5528e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.52731148801541 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2459676079753377, dt = 0.003659845407246617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 349.73 us (94.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (66.0%)
Info: cfl dt = 0.003659958870411957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5907e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.29193585733594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2496274533825842, dt = 0.003659958870411957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 342.49 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.8%)
Info: cfl dt = 0.003660073519331811 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4189e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.84109543355578 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2532874122529962, dt = 0.003660073519331811
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 365.03 us (94.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.3%)
Info: cfl dt = 0.0036601893573747642 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3882e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.22607312126293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.256947485772328, dt = 0.0036601893573747642
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 332.08 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (64.2%)
Info: cfl dt = 0.003660306387841783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4482e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.43623590115301 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2606076751297026, dt = 0.003660306387841783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 326.35 us (94.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.2%)
Info: cfl dt = 0.0036604246139663203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5907e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.30403648785288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2642679815175444, dt = 0.0036604246139663203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 312.92 us (93.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.6%)
Info: cfl dt = 0.0036605440389144255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5531e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.55000155850905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2679284061315108, dt = 0.0036605440389144255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 326.31 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (61.3%)
Info: cfl dt = 0.003660664665784865 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5688e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.86874704760176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2715889501704252, dt = 0.003660664665784865
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.9%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 319.82 us (94.0%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (61.2%)
Info: cfl dt = 0.0036607864976092586 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5871e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.23953438709565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.27524961483621, dt = 0.0036607864976092586
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 325.84 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.0%)
Info: cfl dt = 0.003660909537352213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4325e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.1353518215679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2789104013338193, dt = 0.003660909537352213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 325.15 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (61.3%)
Info: cfl dt = 0.0036610337879114762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5550e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.60066579188054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2825713108711716, dt = 0.0036610337879114762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 296.19 us (93.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.2%)
Info: cfl dt = 0.003661159252118095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5457e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.41799305079088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.286232344659083, dt = 0.003661159252118095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 313.50 us (94.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.0%)
Info: cfl dt = 0.00366128593273658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5558e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.6235074940658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2898935039112012, dt = 0.00366128593273658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 2.39 us (0.7%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 338.18 us (94.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.1%)
Info: cfl dt = 0.003661413832465087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5184e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.87485804309364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2935547898439377, dt = 0.003661413832465087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 362.69 us (94.9%)
LB move op cnt : 0
LB apply : 3.32 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.4%)
Info: cfl dt = 0.0036615429539355927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5865e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.24770371985062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2972162036764028, dt = 0.0036615429539355927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 294.54 us (93.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (59.9%)
Info: cfl dt = 0.0036616732997140954 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7266e+05 | 65536 | 2 | 1.759e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.95508462001412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3008777466303383, dt = 0.0036616732997140954
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 296.84 us (93.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (63.5%)
Info: cfl dt = 0.0036618048723008104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6465e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.46121893564784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3045394199300524, dt = 0.0036618048723008104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.9%)
patch tree reduce : 2.31 us (0.7%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 303.04 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.3%)
Info: cfl dt = 0.003661937674130379 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6675e+05 | 65536 | 2 | 1.404e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.88547747458477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3082012248023531, dt = 0.003661937674130379
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 302.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.2%)
Info: cfl dt = 0.0036620717075720828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2450e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.39012003503265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3118631624764836, dt = 0.0036620717075720828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 282.67 us (93.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.2%)
Info: cfl dt = 0.0036622069749300715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6298e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.13436874876876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3155252341840558, dt = 0.0036622069749300715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 301.05 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.6%)
Info: cfl dt = 0.003662343478443584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7577e+05 | 65536 | 2 | 1.377e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.71028971240743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.319187441158986, dt = 0.003662343478443584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.6%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 300.24 us (94.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.3%)
Info: cfl dt = 0.003662481220287196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6863e+05 | 65536 | 2 | 1.398e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.27903739253485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3228497846374294, dt = 0.003662481220287196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 289.12 us (93.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.0%)
Info: cfl dt = 0.0036626202025710555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7274e+05 | 65536 | 2 | 1.386e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.10785681582576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3265122658577166, dt = 0.0036626202025710555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 305.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (61.9%)
Info: cfl dt = 0.003662760427341138 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1680e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.85800516370155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3301748860602878, dt = 0.003662760427341138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.9%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 286.33 us (93.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (59.6%)
Info: cfl dt = 0.003662901896579501 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9320e+05 | 65536 | 2 | 1.667e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.1118566581648 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.333837646487629, dt = 0.003662901896579501
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 352.86 us (94.4%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.6%)
Info: cfl dt = 0.00366304461220455 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6720e+05 | 65536 | 2 | 1.403e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.00536312640749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3375005483842084, dt = 0.00366304461220455
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 319.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.0%)
Info: cfl dt = 0.0036631885760713048 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6501e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.56800264134297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.341163592996413, dt = 0.0036631885760713048
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 282.24 us (93.6%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.8%)
Info: cfl dt = 0.003663333789971679 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6140e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.84581669737827 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3448267815724844, dt = 0.003663333789971679
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 280.11 us (93.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.7%)
Info: cfl dt = 0.0036634802556347553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6783e+05 | 65536 | 2 | 1.401e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.14272320526639 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.348490115362456, dt = 0.0036634802556347553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 312.58 us (94.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.9%)
Info: cfl dt = 0.0036636279747270777 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6225e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.02324458966378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3521535956180908, dt = 0.0036636279747270777
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 291.12 us (93.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.6%)
Info: cfl dt = 0.003663776948852943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6242e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.06143518091652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3558172235928179, dt = 0.003663776948852943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 293.67 us (93.7%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.4%)
Info: cfl dt = 0.0036639271795546944 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6438e+05 | 65536 | 2 | 1.799e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.33464344035428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3594810005416709, dt = 0.0036639271795546944
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 279.69 us (93.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.2%)
Info: cfl dt = 0.0036640786683130285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5380e+05 | 65536 | 2 | 1.852e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.2081888410036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3631449277212255, dt = 0.0036640786683130285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 306.65 us (94.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.7%)
Info: cfl dt = 0.0036642314165473014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8321e+05 | 65536 | 2 | 1.710e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.12952238848754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3668090063895386, dt = 0.0036642314165473014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 331.11 us (94.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.0%)
Info: cfl dt = 0.003664385425615841 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3399e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.35460038387191 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.370473237806086, dt = 0.003664385425615841
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 310.51 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.6%)
Info: cfl dt = 0.0036645406968162635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5671e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.93114310744998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3741376232317017, dt = 0.0036645406968162635
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 313.81 us (93.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.9%)
Info: cfl dt = 0.0036646972313857983 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7377e+05 | 65536 | 2 | 1.753e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.2399396858593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.377802163928518, dt = 0.0036646972313857983
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 364.89 us (94.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.1%)
Info: cfl dt = 0.0036648550305016093 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7863e+05 | 65536 | 2 | 1.731e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.22087712316353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.381466861159904, dt = 0.0036648550305016093
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 293.00 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (60.2%)
Info: cfl dt = 0.0036650140952811296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9286e+05 | 65536 | 2 | 1.668e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.0893724988108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3851317161904055, dt = 0.0036650140952811296
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 328.43 us (94.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.5%)
Info: cfl dt = 0.003665174426782391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8159e+05 | 65536 | 2 | 1.717e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.82409293397062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3887967302856867, dt = 0.003665174426782391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 276.00 us (93.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.7%)
Info: cfl dt = 0.0036653360260043683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5398e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.40080280649737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3924619047124691, dt = 0.0036653360260043683
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 310.04 us (94.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (63.4%)
Info: cfl dt = 0.003665498893887315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5302e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.21199616051452 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3961272407384735, dt = 0.003665498893887315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 277.67 us (93.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.6%)
Info: cfl dt = 0.0036656630313131166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2533e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.64041431543015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3997927396323608, dt = 0.0036656630313131166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 297.90 us (93.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.1%)
Info: cfl dt = 0.0036658284391056298 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0525e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.60195620748317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.403458402663674, dt = 0.0036658284391056298
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 320.64 us (94.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (62.0%)
Info: cfl dt = 0.003665995118031045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3434e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.46314850788755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4071242311027796, dt = 0.003665995118031045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 356.49 us (94.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.6%)
Info: cfl dt = 0.0036661630687982363 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8830e+05 | 65536 | 2 | 1.688e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.19533594270243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4107902262208107, dt = 0.0036661630687982363
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 2.19 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.5%)
LB compute : 339.27 us (94.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.9%)
Info: cfl dt = 0.0036663322920591234 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8435e+05 | 65536 | 2 | 1.705e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.40437614654061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.414456389289609, dt = 0.0036663322920591234
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.3%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 418.38 us (95.4%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (65.9%)
Info: cfl dt = 0.00366650278840903 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6119e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.8821195283244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.418122721581668, dt = 0.00366650278840903
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.9%)
patch tree reduce : 2.34 us (0.8%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 292.14 us (93.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (60.2%)
Info: cfl dt = 0.003666674558387054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6274e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.1988761652949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4217892243700772, dt = 0.003666674558387054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 301.58 us (93.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (61.5%)
Info: cfl dt = 0.0036668476024764307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9090e+05 | 65536 | 2 | 1.677e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.73316516438679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4254558989284642, dt = 0.0036668476024764307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.8%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 304.77 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.7%)
Info: cfl dt = 0.0036670219211049036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3996e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.62031925730889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4291227465309406, dt = 0.0036670219211049036
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 358.19 us (95.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.8%)
Info: cfl dt = 0.0036671975146451014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6678e+05 | 65536 | 2 | 1.404e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.0254865292526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4327897684520454, dt = 0.0036671975146451014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.5%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 1.46 us (0.4%)
LB compute : 385.48 us (94.9%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.5%)
Info: cfl dt = 0.0036673743834149067 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5592e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.84317252249123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4364569659666906, dt = 0.0036673743834149067
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.3%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 388.04 us (95.2%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.1%)
Info: cfl dt = 0.0036675525276778373 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7804e+05 | 65536 | 2 | 1.734e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.1574412778279 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4401243403501054, dt = 0.0036675525276778373
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 342.04 us (94.6%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (59.9%)
Info: cfl dt = 0.003667731947643427 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8345e+05 | 65536 | 2 | 1.709e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.25146229277613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4437918928777833, dt = 0.003667731947643427
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 322.36 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.4%)
Info: cfl dt = 0.0036679126434676036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1668e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.95036794974175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4474596248254268, dt = 0.0036679126434676036
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 304.82 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.8%)
Info: cfl dt = 0.0036680946152530757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5765e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.20848782336768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4511275374688943, dt = 0.0036680946152530757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.9%)
patch tree reduce : 2.27 us (0.8%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 283.10 us (93.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.8%)
Info: cfl dt = 0.0036682778630497148 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5680e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.04333672628019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4547956320841473, dt = 0.0036682778630497148
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 277.17 us (93.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.6%)
Info: cfl dt = 0.003668462386854947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9513e+05 | 65536 | 2 | 1.659e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.62046490191084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.458463909947197, dt = 0.003668462386854947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.8%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 283.45 us (93.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.1%)
Info: cfl dt = 0.0036686481866141383 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5618e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.92792800965412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.462132372334052, dt = 0.0036686481866141383
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (2.0%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 268.80 us (93.1%)
LB move op cnt : 0
LB apply : 3.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.4%)
Info: cfl dt = 0.003668835262220985 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5667e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.02972693759811 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4658010205206662, dt = 0.003668835262220985
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.9%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 272.18 us (93.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.5%)
Info: cfl dt = 0.003669023613517908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5789e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.2817566144712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4694698557828871, dt = 0.003669023613517908
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 278.71 us (87.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.6%)
Info: cfl dt = 0.003669213240296441 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5600e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.90489423368389 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.473138879396405, dt = 0.003669213240296441
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 315.53 us (94.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.4%)
Info: cfl dt = 0.0036694041422976327 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5816e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.34398435841243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4768080926367015, dt = 0.0036694041422976327
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 288.02 us (93.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.6%)
Info: cfl dt = 0.0036695963192124336 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1207e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.05935023755849 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.480477496778999, dt = 0.0036695963192124336
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.8%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 275.20 us (93.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.5%)
Info: cfl dt = 0.0036697897706820977 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9482e+05 | 65536 | 2 | 1.660e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.58562216114676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4841470930982115, dt = 0.0036697897706820977
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.4%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 357.45 us (94.9%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.6%)
Info: cfl dt = 0.00366998449629858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6599e+05 | 65536 | 2 | 1.406e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.93691215020095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4878168828688936, dt = 0.00366998449629858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 325.96 us (94.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.8%)
Info: cfl dt = 0.003670180495604932 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9261e+05 | 65536 | 2 | 1.669e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.14958448434233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4914868673651922, dt = 0.003670180495604932
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 292.15 us (93.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.4%)
Info: cfl dt = 0.003670377768095703 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9932e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.50593814620672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4951570478607972, dt = 0.003670377768095703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 275.55 us (93.4%)
LB move op cnt : 0
LB apply : 3.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (62.7%)
Info: cfl dt = 0.0036705763132173384 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8866e+05 | 65536 | 2 | 1.686e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.36141281680202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.498827425628893, dt = 0.0036705763132173384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 289.92 us (93.9%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (58.9%)
Info: cfl dt = 0.0036707761303685815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5969e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.68723151582618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5024980019421104, dt = 0.0036707761303685815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.9%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 272.06 us (93.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.4%)
Info: cfl dt = 0.003670977218900875 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6182e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.12247344505504 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5061687780724788, dt = 0.003670977218900875
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 270.72 us (93.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.0%)
Info: cfl dt = 0.003671179578118759 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5240e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.22685269259118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5098397552913798, dt = 0.003671179578118759
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.5%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 312.99 us (94.2%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.6%)
Info: cfl dt = 0.0036713832072802753 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5798e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.35788519864491 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5135109348694986, dt = 0.0036713832072802753
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 299.06 us (93.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.2%)
Info: cfl dt = 0.0036715881055973715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5733e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.23308276216346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.517182318076779, dt = 0.0036715881055973715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 317.96 us (94.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.2%)
Info: cfl dt = 0.0036717942722362994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5936e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.64687993706646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5208539061823763, dt = 0.0036717942722362994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.6%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 313.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.3%)
Info: cfl dt = 0.003672001706318019 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6398e+05 | 65536 | 2 | 1.412e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.58435010303356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5245257004546127, dt = 0.003672001706318019
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.8%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 281.18 us (93.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.7%)
Info: cfl dt = 0.0036722104069186 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6156e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.1004555980635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5281977021609308, dt = 0.0036722104069186
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 301.87 us (94.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.7%)
Info: cfl dt = 0.0036724203730696277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6211e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.21799112810751 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5318699125678494, dt = 0.0036724203730696277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.8%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 313.60 us (93.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.7%)
Info: cfl dt = 0.003672631603758601 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8251e+05 | 65536 | 2 | 1.713e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.16510324157461 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.535542332940919, dt = 0.003672631603758601
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.9%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 276.05 us (93.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (59.5%)
Info: cfl dt = 0.003672844097929337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6711e+05 | 65536 | 2 | 1.403e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.23725228481841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5392149645446775, dt = 0.003672844097929337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 298.36 us (94.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (58.8%)
Info: cfl dt = 0.003673057854482374 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4996e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.7827713487525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5428878086426068, dt = 0.003673057854482374
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 301.75 us (94.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.6%)
Info: cfl dt = 0.0036732728722753713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2217e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.18098826811574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5465608664970891, dt = 0.0036732728722753713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 330.02 us (94.5%)
LB move op cnt : 0
LB apply : 3.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.6%)
Info: cfl dt = 0.003673489150123513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6698e+05 | 65536 | 2 | 1.403e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.22671146208242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5502341393693646, dt = 0.003673489150123513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 276.66 us (93.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.3%)
Info: cfl dt = 0.0036737066867999057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0536e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.79827626997971 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5539076285194882, dt = 0.0036737066867999057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.8%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 282.55 us (93.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.7%)
Info: cfl dt = 0.0036739254810359834 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5736e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.29674472078734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5575813352062882, dt = 0.0036739254810359834
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.1%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 276.44 us (93.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.3%)
Info: cfl dt = 0.003674145531521905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6131e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.10013274083828 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5612552606873242, dt = 0.003674145531521905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 281.56 us (93.8%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (60.1%)
Info: cfl dt = 0.0036743668369069557 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6047e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.93478739261397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5649294062188461, dt = 0.0036743668369069557
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (2.0%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 268.67 us (93.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.1%)
Info: cfl dt = 0.0036745893957999434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7326e+05 | 65536 | 2 | 1.756e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.33800821318414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5686037730557532, dt = 0.0036745893957999434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 297.96 us (93.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.9%)
Info: cfl dt = 0.003674813206769599 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2246e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.27385251036496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.572278362451553, dt = 0.003674813206769599
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.6%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 304.42 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (59.7%)
Info: cfl dt = 0.0036750382683449745 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0328e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.40784232665813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5759531756583227, dt = 0.0036750382683449745
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 278.22 us (93.4%)
LB move op cnt : 0
LB apply : 3.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.7%)
Info: cfl dt = 0.00367526457901584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7478e+05 | 65536 | 2 | 1.380e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.84697613685017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5796282139266677, dt = 0.00367526457901584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.9%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 274.99 us (93.4%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (60.2%)
Info: cfl dt = 0.0036754921372330793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6584e+05 | 65536 | 2 | 1.407e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.04688998489519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5833034785056836, dt = 0.0036754921372330793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.8%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 279.82 us (93.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.3%)
Info: cfl dt = 0.003675720941409082 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5970e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.81429197279854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5869789706429167, dt = 0.003675720941409082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 284.28 us (93.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.3%)
Info: cfl dt = 0.0036759509899181426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5519e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.90926658331927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5906546915843258, dt = 0.0036759509899181426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 314.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (65.9%)
Info: cfl dt = 0.0036761822810968525 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5836e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.55443810032612 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.594330642574244, dt = 0.0036761822810968525
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 274.93 us (93.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.0%)
Info: cfl dt = 0.003676414813244491 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5771e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.42951172299527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.598006824855341, dt = 0.003676414813244491
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 334.74 us (94.4%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.0%)
Info: cfl dt = 0.003676648584623416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0927e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.6524039641585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6016832396685854, dt = 0.003676648584623416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 310.83 us (93.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.8%)
Info: cfl dt = 0.003676883593459459 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9468e+05 | 65536 | 2 | 1.660e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.71118551835215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6053598882532087, dt = 0.003676883593459459
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 297.84 us (94.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (60.5%)
Info: cfl dt = 0.0036771198379423084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0034e+05 | 65536 | 2 | 1.637e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.8586307116183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6090367718466683, dt = 0.0036771198379423084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.8%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 283.70 us (93.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (64.8%)
Info: cfl dt = 0.0036773573162258975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5935e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.78501179777179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6127138916846107, dt = 0.0036773573162258975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 284.92 us (93.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (60.5%)
Info: cfl dt = 0.003677596026428797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5484e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.87998786777057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6163912490008365, dt = 0.003677596026428797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.42 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 311.47 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (61.0%)
Info: cfl dt = 0.003677835966634595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0080e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.96769503989323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6200688450272653, dt = 0.003677835966634595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 335.95 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.8%)
Info: cfl dt = 0.0036780771348922828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5461e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.84526927926765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6237466809938998, dt = 0.0036780771348922828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 301.50 us (94.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.9%)
Info: cfl dt = 0.003678319529216638 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5395e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.71717253687565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6274247581287922, dt = 0.003678319529216638
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 321.21 us (94.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.0%)
Info: cfl dt = 0.0036785631475886055 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5045e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.01594663641133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6311030776580089, dt = 0.0036785631475886055
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 308.44 us (94.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.1%)
Info: cfl dt = 0.0036788079879556783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5630e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.20488390996819 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6347816408055975, dt = 0.0036788079879556783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 302.16 us (93.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.0%)
Info: cfl dt = 0.0036790540482322734 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5327e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.5972335743504 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6384604487935532, dt = 0.0036790540482322734
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.5%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 340.31 us (94.5%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.0%)
Info: cfl dt = 0.003679301326300112 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3021e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.94440397616762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6421395028417856, dt = 0.003679301326300112
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.0%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 273.51 us (93.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.8%)
Info: cfl dt = 0.003679549820008597 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6116e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.20416336295675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6458188041680857, dt = 0.003679549820008597
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.4%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 359.65 us (94.9%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.4%)
Info: cfl dt = 0.0036797995271751795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8162e+05 | 65536 | 2 | 1.717e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.13451846840127 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6494983539880943, dt = 0.0036797995271751795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 2.38 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 330.05 us (94.1%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.4%)
Info: cfl dt = 0.003680050445585738 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4619e+05 | 65536 | 2 | 1.893e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.97695836551758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6531781535152694, dt = 0.003680050445585738
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 294.95 us (94.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (62.2%)
Info: cfl dt = 0.0036803025729949495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5161e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.29380452686787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6568582039608553, dt = 0.0036803025729949495
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 313.89 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.0%)
Info: cfl dt = 0.0036805559071266566 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5772e+05 | 65536 | 2 | 1.832e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.31844524666145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6605385065338503, dt = 0.0036805559071266566
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 310.48 us (94.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.1%)
Info: cfl dt = 0.003680810445674232 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8674e+05 | 65536 | 2 | 1.695e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.190531681378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.664219062440977, dt = 0.003680810445674232
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 285.35 us (93.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.7%)
Info: cfl dt = 0.0036810661863009514 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4996e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.977740266454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6678998728866512, dt = 0.0036810661863009514
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.9%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 279.55 us (93.5%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.2%)
Info: cfl dt = 0.003681323126640354 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4501e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.98341622259339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6715809390729521, dt = 0.003681323126640354
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 304.05 us (93.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.3%)
Info: cfl dt = 0.0036815812642966073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5630e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.27449772864263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6752622621995925, dt = 0.0036815812642966073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.5%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 320.11 us (94.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.7%)
Info: cfl dt = 0.0036818405968448657 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0169e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.23674486991777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.678943843463889, dt = 0.0036818405968448657
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (2.0%)
patch tree reduce : 2.27 us (0.8%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 272.13 us (93.2%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (59.8%)
Info: cfl dt = 0.0036821011218316304 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5620e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.2657528596352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6826256840607339, dt = 0.0036821011218316304
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (2.0%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 276.50 us (93.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.3%)
Info: cfl dt = 0.0036823628367751078 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3338e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.65770317727348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6863077851825654, dt = 0.0036823628367751078
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 322.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (63.9%)
Info: cfl dt = 0.003682625739165565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9322e+05 | 65536 | 2 | 1.667e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.53919412563314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6899901480193404, dt = 0.003682625739165565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 313.99 us (94.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.1%)
Info: cfl dt = 0.003682889826465683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5180e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.39614450628986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.693672773758506, dt = 0.003682889826465683
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.8%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 269.19 us (93.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.4%)
Info: cfl dt = 0.00368315509611091 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5829e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.71611011287341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6973556635849716, dt = 0.00368315509611091
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 293.13 us (93.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (62.6%)
Info: cfl dt = 0.0036834215455098123 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6572e+05 | 65536 | 2 | 1.407e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.22596521122202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7010388186810825, dt = 0.0036834215455098123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 280.60 us (93.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (60.1%)
Info: cfl dt = 0.0036836891720444177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6509e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.10381518342126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7047222402265922, dt = 0.0036836891720444177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.1%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 275.10 us (93.1%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.3%)
Info: cfl dt = 0.003683957973070569 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7810e+05 | 65536 | 2 | 1.733e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.50849986955524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7084059293986367, dt = 0.003683957973070569
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.9%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 272.60 us (93.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.9%)
Info: cfl dt = 0.0036842279459182617 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9279e+05 | 65536 | 2 | 1.668e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.48718852645855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7120898873717072, dt = 0.0036842279459182617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.8%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 277.33 us (93.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.8%)
Info: cfl dt = 0.003684499087891993 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4263e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.57999020212436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7157741153176254, dt = 0.003684499087891993
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 328.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.7%)
Info: cfl dt = 0.0036847713962710987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5087e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.25345456459691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7194586144055173, dt = 0.0036847713962710987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 273.97 us (93.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.7%)
Info: cfl dt = 0.0036850448683100933 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5380e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.85342473694146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7231433858017884, dt = 0.0036850448683100933
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.9%)
patch tree reduce : 2.40 us (0.8%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 271.96 us (93.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.5%)
Info: cfl dt = 0.003685319501239005 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4759e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.60397183495387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7268284306700985, dt = 0.003685319501239005
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 281.06 us (93.6%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (63.2%)
Info: cfl dt = 0.003685595292263715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5789e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.69468967071538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7305137501713375, dt = 0.003685595292263715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 293.64 us (93.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (61.1%)
Info: cfl dt = 0.0036858722385662854 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4366e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.82110738029006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.734199345463601, dt = 0.0036858722385662854
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.8%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 275.16 us (93.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (60.6%)
Info: cfl dt = 0.0036861503373052922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6788e+05 | 65536 | 2 | 1.401e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.73271907597919 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7378852177021673, dt = 0.0036861503373052922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (2.0%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 273.28 us (93.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.7%)
Info: cfl dt = 0.0036864295856161564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5457e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.04385870453257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7415713680394727, dt = 0.0036864295856161564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 2.30 us (0.8%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 287.28 us (93.7%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.2%)
Info: cfl dt = 0.0036867099806114673 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5843e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.83278063697429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7452577976250887, dt = 0.0036867099806114673
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 302.99 us (93.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.5%)
Info: cfl dt = 0.00368699151938131 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5885e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.9249380479775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7489445076057002, dt = 0.00368699151938131
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 320.22 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.0%)
Info: cfl dt = 0.0036872741989935867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4988e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.11469132958584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7526314991250815, dt = 0.0036872741989935867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 312.28 us (93.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.6%)
Info: cfl dt = 0.003687558016494338 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4384e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.89947219159411 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.756318773324075, dt = 0.003687558016494338
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 330.33 us (94.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.3%)
Info: cfl dt = 0.003687842968908063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8608e+05 | 65536 | 2 | 1.697e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.20491042750558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7600063313405694, dt = 0.003687842968908063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 310.05 us (94.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.0%)
Info: cfl dt = 0.003688129053238035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1430e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.92956782529667 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7636941743094774, dt = 0.003688129053238035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.9%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 274.28 us (93.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (61.2%)
Info: cfl dt = 0.003688416266466617 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6571e+05 | 65536 | 2 | 1.407e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.3504727353881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7673823033627154, dt = 0.003688416266466617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 291.72 us (93.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.2%)
Info: cfl dt = 0.003688704605555571 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6769e+05 | 65536 | 2 | 1.401e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.75846981143403 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.771070719629182, dt = 0.003688704605555571
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 302.19 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.8%)
Info: cfl dt = 0.0036889940674463754 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6551e+05 | 65536 | 2 | 1.408e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.32469520307441 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7747594242347375, dt = 0.0036889940674463754
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.7%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 330.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.6%)
Info: cfl dt = 0.0036892846490605255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6138e+05 | 65536 | 2 | 1.420e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.49432937723465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7784484183021838, dt = 0.0036892846490605255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 297.07 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (62.9%)
Info: cfl dt = 0.0036895763472998464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1371e+05 | 65536 | 2 | 1.584e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.84226580916945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7821377029512444, dt = 0.0036895763472998464
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.9%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 278.46 us (93.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.7%)
Info: cfl dt = 0.0036898691590467945 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8974e+05 | 65536 | 2 | 1.682e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.98984044681796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7858272792985443, dt = 0.0036898691590467945
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 309.54 us (94.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.0%)
Info: cfl dt = 0.0036901630811647618 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4632e+05 | 65536 | 2 | 1.892e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.19631717936831 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7895171484575911, dt = 0.0036901630811647618
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (2.0%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 280.64 us (93.4%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (63.1%)
Info: cfl dt = 0.0036904581104983693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4209e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.61547023985935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.793207311538756, dt = 0.0036904581104983693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 309.24 us (94.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (63.1%)
Info: cfl dt = 0.0036907542438737767 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5803e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.85294601776829 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7968977696492543, dt = 0.0036907542438737767
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (0.8%)
patch tree reduce : 2.11 us (0.3%)
gen split merge : 972.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.27 us (0.2%)
LB compute : 755.93 us (97.2%)
LB move op cnt : 0
LB apply : 4.17 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.6%)
Info: cfl dt = 0.003691051478098968 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4027e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.2591689490692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.800588523893128, dt = 0.003691051478098968
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.96 us (7.9%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 285.97 us (87.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (60.1%)
Info: cfl dt = 0.003691349809964053 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5458e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.16815578415354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.804279575371227, dt = 0.003691349809964053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.8%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 276.70 us (93.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.1%)
Info: cfl dt = 0.003691649236241552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3775e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.76391454296807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.807970925181191, dt = 0.003691649236241552
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 323.82 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.6%)
Info: cfl dt = 0.0036919497536866937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5247e+05 | 65536 | 2 | 1.859e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.4758051910879 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8116625744174326, dt = 0.0036919497536866937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.4%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 365.05 us (94.9%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.1%)
Info: cfl dt = 0.0036922513590376942 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5236e+05 | 65536 | 2 | 1.860e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.46057820730512 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8153545241711193, dt = 0.0036922513590376942
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 331.56 us (94.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.2%)
Info: cfl dt = 0.003692554049016049 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5492e+05 | 65536 | 2 | 1.847e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.98484520047485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.819046775530157, dt = 0.003692554049016049
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 311.06 us (94.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.8%)
Info: cfl dt = 0.0036928578203268138 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7123e+05 | 65536 | 2 | 1.765e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.30031971866367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.822739329579173, dt = 0.0036928578203268138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.4%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 358.97 us (94.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.9%)
Info: cfl dt = 0.0036931626696588868 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6370e+05 | 65536 | 2 | 1.413e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.06466960236695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8264321873994998, dt = 0.0036931626696588868
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 312.78 us (92.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (61.9%)
Info: cfl dt = 0.003693468593685288 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1977e+05 | 65536 | 2 | 2.049e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.87203636536466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8301253500691586, dt = 0.003693468593685288
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.4%)
patch tree reduce : 2.21 us (0.5%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 389.88 us (95.1%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.1%)
Info: cfl dt = 0.0036937755890634355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0471e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.11154034982926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.833818818662844, dt = 0.0036937755890634355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.23 us (1.9%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 313.13 us (93.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.6%)
Info: cfl dt = 0.00369408365243542 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9146e+05 | 65536 | 2 | 1.674e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.42864265969543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8375125942519073, dt = 0.00369408365243542
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 313.81 us (94.1%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.3%)
Info: cfl dt = 0.003694392780428279 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4353e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.00187363468889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8412066779043428, dt = 0.003694392780428279
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 291.36 us (93.9%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (64.6%)
Info: cfl dt = 0.0036947029696542703 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0350e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.88556758904826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.844901070684771, dt = 0.0036947029696542703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.7%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 332.98 us (94.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.3%)
Info: cfl dt = 0.003695014216711135 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6514e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.4024357896877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8485957736544254, dt = 0.003695014216711135
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.15 us (7.6%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 303.20 us (88.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.4%)
Info: cfl dt = 0.0036953265181823673 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0127e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.44779642591695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8522907878711365, dt = 0.0036953265181823673
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.5%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 319.00 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.7%)
Info: cfl dt = 0.003695639870637481 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7182e+05 | 65536 | 2 | 1.763e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.47588835010687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8559861143893188, dt = 0.003695639870637481
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (2.0%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 274.68 us (93.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.9%)
Info: cfl dt = 0.003695954270632268 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5527e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.42391123132428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8596817542599564, dt = 0.003695954270632268
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 287.28 us (93.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.5%)
Info: cfl dt = 0.0036962697147090644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5794e+05 | 65536 | 2 | 1.431e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.97325522127784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8633777085305887, dt = 0.0036962697147090644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 311.58 us (94.1%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.1%)
Info: cfl dt = 0.003696586199397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3980e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.29720400381275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8670739782452979, dt = 0.003696586199397
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 298.51 us (93.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.4%)
Info: cfl dt = 0.0036969037212122658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0360e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.95482145098985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8707705644446948, dt = 0.0036969037212122658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 315.36 us (94.0%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (61.4%)
Info: cfl dt = 0.0036972222766583577 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4046e+05 | 65536 | 2 | 1.925e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.13911931794381 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.874467468165907, dt = 0.0036972222766583577
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 359.78 us (94.8%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.1%)
Info: cfl dt = 0.0036975418622263376 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4511e+05 | 65536 | 2 | 1.899e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.08897964854651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8781646904425653, dt = 0.0036975418622263376
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.4%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 367.57 us (94.7%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.9%)
Info: cfl dt = 0.003697862474395077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5199e+05 | 65536 | 2 | 1.862e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.49279961105486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8818622323047915, dt = 0.003697862474395077
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 315.82 us (94.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (60.3%)
Info: cfl dt = 0.0036981841096315094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4664e+05 | 65536 | 2 | 1.891e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.41356032037032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8855600947791866, dt = 0.0036981841096315094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.4%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 343.12 us (94.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.1%)
Info: cfl dt = 0.003698506764390874 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3109e+05 | 65536 | 2 | 1.979e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.25916630760287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8892582788888181, dt = 0.003698506764390874
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.9%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 307.52 us (93.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (58.2%)
Info: cfl dt = 0.003698830435116958 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3122e+05 | 65536 | 2 | 1.979e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.29256507773721 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.892956785653209, dt = 0.003698830435116958
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (1.7%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 350.34 us (94.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.2%)
Info: cfl dt = 0.0036991551182423434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3401e+05 | 65536 | 2 | 1.962e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.86513914696651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.896655616088326, dt = 0.0036991551182423434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 341.21 us (94.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (65.3%)
Info: cfl dt = 0.003699480810188647 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3025e+05 | 65536 | 2 | 1.984e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.10602035840066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9003547712065683, dt = 0.003699480810188647
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (1.8%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 336.77 us (93.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.9%)
Info: cfl dt = 0.003699807507366751 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2006e+05 | 65536 | 2 | 2.048e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.04183578722773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.904054252016757, dt = 0.003699807507366751
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.3%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 384.07 us (95.1%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (65.8%)
Info: cfl dt = 0.003700135206177046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1690e+05 | 65536 | 2 | 2.068e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.40568401280619 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9077540595241236, dt = 0.003700135206177046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.4%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 376.36 us (95.1%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.4%)
Info: cfl dt = 0.0037004639030096633 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1134e+05 | 65536 | 2 | 2.105e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.281025015939115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9114541947303005, dt = 0.0037004639030096633
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.5%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.3%)
LB compute : 398.00 us (95.2%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.9%)
Info: cfl dt = 0.0037007935942447046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2777e+05 | 65536 | 2 | 1.999e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.6271171142515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9151546586333101, dt = 0.0037007935942447046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 314.86 us (94.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.6%)
Info: cfl dt = 0.0037011242762524754 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6629e+05 | 65536 | 2 | 1.405e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.79310018126671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.918855452227555, dt = 0.0037011242762524754
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 342.79 us (94.7%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.7%)
Info: cfl dt = 0.003701455945393709 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3750e+05 | 65536 | 2 | 1.942e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.61575324394656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9225565765038075, dt = 0.003701455945393709
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 313.69 us (94.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.0%)
Info: cfl dt = 0.003701788598019797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2968e+05 | 65536 | 2 | 1.988e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.03320178304055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9262580324492011, dt = 0.003701788598019797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 295.59 us (93.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (60.4%)
Info: cfl dt = 0.0037021222304730083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3239e+05 | 65536 | 2 | 1.972e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.5896679731743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9299598210472209, dt = 0.0037021222304730083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 2.32 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 300.86 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.6%)
Info: cfl dt = 0.0037024568390867157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4924e+05 | 65536 | 2 | 1.877e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.02325586689936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9336619432776938, dt = 0.0037024568390867157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 303.76 us (94.0%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.4%)
Info: cfl dt = 0.0037027924201856123 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4756e+05 | 65536 | 2 | 1.886e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.6864949981744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9373644001167805, dt = 0.0037027924201856123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 330.31 us (94.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.0%)
Info: cfl dt = 0.003703128970085931 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4632e+05 | 65536 | 2 | 1.892e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.44178786420679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.941067192536966, dt = 0.003703128970085931
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 301.19 us (93.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.1%)
Info: cfl dt = 0.003703466485095662 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5268e+05 | 65536 | 2 | 1.858e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.74102855787038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.944770321507052, dt = 0.003703466485095662
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.9%)
patch tree reduce : 2.47 us (0.8%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 293.74 us (93.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (61.4%)
Info: cfl dt = 0.0037038049615147647 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4120e+05 | 65536 | 2 | 1.921e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.41194404757326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9484737879921477, dt = 0.0037038049615147647
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 20.32 us (5.4%)
LB compute : 336.09 us (89.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.4%)
Info: cfl dt = 0.003704144395635381 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4165e+05 | 65536 | 2 | 1.918e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.51092773116613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9521775929536624, dt = 0.003704144395635381
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 316.28 us (94.1%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.7%)
Info: cfl dt = 0.0037044847837420475 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4464e+05 | 65536 | 2 | 1.902e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.12531178954079 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9558817373492978, dt = 0.0037044847837420475
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 309.98 us (94.4%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.3%)
Info: cfl dt = 0.0037048261221118988 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4327e+05 | 65536 | 2 | 1.909e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.85247189456672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9595862221330398, dt = 0.0037048261221118988
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.5%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 328.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.9%)
Info: cfl dt = 0.00370516840701488 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4973e+05 | 65536 | 2 | 1.874e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.1742591979882 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9632910482551518, dt = 0.00370516840701488
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 306.14 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (60.9%)
Info: cfl dt = 0.0037055116347139484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3351e+05 | 65536 | 2 | 1.965e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.88024493106937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9669962166621666, dt = 0.0037055116347139484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 306.53 us (94.0%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (62.7%)
Info: cfl dt = 0.0037058558014652744 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4755e+05 | 65536 | 2 | 1.886e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.74383878411373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9707017282968806, dt = 0.0037058558014652744
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 352.30 us (94.6%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.0%)
Info: cfl dt = 0.0037062009035184473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2834e+05 | 65536 | 2 | 1.996e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.83957451207387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.974407584098346, dt = 0.0037062009035184473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 310.75 us (93.9%)
LB move op cnt : 0
LB apply : 4.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (64.2%)
Info: cfl dt = 0.0037065469371166692 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2801e+05 | 65536 | 2 | 1.998e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.77870014213384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9781137850018644, dt = 0.0037065469371166692
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 364.26 us (94.9%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.8%)
Info: cfl dt = 0.0037068938984969567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2734e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.00934344921794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.981820331938981, dt = 0.0037068938984969567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.0%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 293.50 us (93.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (61.3%)
Info: cfl dt = 0.0037072417838903324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3087e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.73614269491055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.985527225837478, dt = 0.0037072417838903324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.9%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 295.86 us (93.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.7%)
Info: cfl dt = 0.003707590589522021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3579e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.74560709238965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9892344676213685, dt = 0.003707590589522021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 287.92 us (93.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.6%)
Info: cfl dt = 0.003707940311611637 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3331e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.24896060100704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9929420582108905, dt = 0.003707940311611637
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 326.52 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (61.6%)
Info: cfl dt = 0.003708290946373381 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2774e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.12328944611833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9966499985225021, dt = 0.003350001477497866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 328.51 us (94.2%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.2%)
Info: cfl dt = 0.0037086085262296423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4138e+05 | 65536 | 2 | 1.920e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.821951977474605 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1161.1175809800002 (s) [Godunov][rank=0]
running minmod rusanov
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.42 ms [DataInserterUtility][rank=0]
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 : 3.99 us (53.6%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (0.5%)
patch tree reduce : 1.25 us (0.4%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 331.95 us (96.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.94 us (2.1%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 692.00 ns (0.2%)
LB compute : 411.72 us (94.9%)
LB move op cnt : 0
LB apply : 2.98 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2580e+05 | 65536 | 2 | 2.012e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.3%)
patch tree reduce : 1.94 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 423.77 us (95.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2211e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.70196183186154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003652931508385532, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.2%)
patch tree reduce : 1.94 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 437.27 us (95.6%)
LB move op cnt : 0
LB apply : 3.84 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (65.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1675e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.62639769242517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007305863016771064, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.5%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 368.80 us (94.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (63.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2560e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.4020459766816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010958794525156596, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.7%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 344.18 us (94.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2895e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.07310730396524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014611726033542128, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 346.91 us (94.3%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (68.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8175e+05 | 65536 | 2 | 1.717e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.6030614828272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01826465754192766, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 319.36 us (94.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4895e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.08712839947225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021917589050313192, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 327.95 us (94.3%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4459e+05 | 65536 | 2 | 1.902e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.14632895472116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025570520558698726, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.4%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 375.20 us (95.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3711e+05 | 65536 | 2 | 1.944e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.64469873053638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02922345206708426, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 312.85 us (93.8%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4678e+05 | 65536 | 2 | 1.890e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.58577279949316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03287638357546979, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 325.71 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4222e+05 | 65536 | 2 | 1.915e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.67114882680052 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036529315083855325, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 293.03 us (93.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (62.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3537e+05 | 65536 | 2 | 1.954e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.29621871341325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04018224659224086, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.7%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 293.96 us (93.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (59.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4477e+05 | 65536 | 2 | 1.901e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.1811304260096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04383517810062639, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 332.54 us (94.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3682e+05 | 65536 | 2 | 1.946e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.58751958561699 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047488109609011925, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 334.73 us (94.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4139e+05 | 65536 | 2 | 1.920e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.50417678532573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05114104111739746, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 348.99 us (94.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4546e+05 | 65536 | 2 | 1.897e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.31987722383917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05479397262578299, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 343.92 us (94.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4311e+05 | 65536 | 2 | 1.910e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.84799611701034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.058446904134168524, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 336.87 us (94.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3395e+05 | 65536 | 2 | 1.962e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.0118313412841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06209983564255406, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.5%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 352.28 us (94.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4587e+05 | 65536 | 2 | 1.895e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.4023336293438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06575276715093958, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 323.84 us (94.4%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3368e+05 | 65536 | 2 | 1.964e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.95728791661382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06940569865932511, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 318.12 us (94.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3231e+05 | 65536 | 2 | 1.972e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.68111733656175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07305863016771064, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.2%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 300.26 us (93.2%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3046e+05 | 65536 | 2 | 1.983e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.31021558252176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07671156167609616, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.5%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 328.53 us (94.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3272e+05 | 65536 | 2 | 1.970e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.76418310188467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08036449318448169, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 305.41 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3806e+05 | 65536 | 2 | 1.939e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.83525591776272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08401742469286722, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.9%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 290.44 us (93.7%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3610e+05 | 65536 | 2 | 1.950e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.44184166855354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08767035620125274, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 335.01 us (94.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4923e+05 | 65536 | 2 | 1.877e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.0771499375645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09132328770963827, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 304.64 us (94.2%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1201e+05 | 65536 | 2 | 2.100e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.60906161035096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0949762192180238, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.3%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 379.09 us (95.0%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2164e+05 | 65536 | 2 | 2.038e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.5412659521095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09862915072640932, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.35 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 398.10 us (95.2%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.4664e+05 | 65536 | 2 | 2.657e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.49154667903969 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10228208223479485, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 364.18 us (94.6%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (62.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6234e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.77440765443083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10593501374318037, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 301.01 us (94.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5004e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.30472193742237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1095879452515659, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 359.34 us (94.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5675e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.6513633116293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11324087675995143, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 295.92 us (93.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (63.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5753e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.80920962877308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11689380826833695, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.9%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 287.76 us (93.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5709e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.71961389374904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12054673977672248, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 325.65 us (94.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5658e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.61805352718642 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.124199671285108, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 290.07 us (93.7%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5436e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.17334428089322 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12785260279349353, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.5%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 323.42 us (94.3%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3247e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.78051115402634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13150553430187906, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 303.20 us (94.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3531e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.35038185281594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13515846581026458, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.8%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 284.91 us (93.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.16 us (94.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6408e+05 | 65536 | 2 | 1.412e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.12275562492945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1388113973186501, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 291.40 us (94.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5358e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.01630992211764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14246432882703564, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (0.9%)
patch tree reduce : 1.71 us (0.3%)
gen split merge : 851.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 572.32 us (96.7%)
LB move op cnt : 0
LB apply : 3.90 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5572e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.44623908321566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14611726033542116, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 293.65 us (93.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (61.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8906e+05 | 65536 | 2 | 1.684e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.06930880947239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1497701918438067, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.4%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 357.67 us (94.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (64.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3524e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.33651354272254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15342312335219221, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 329.20 us (94.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (69.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3170e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.62561490276713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15707605486057774, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 317.54 us (94.1%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3810e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.91012226872849 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16072898636896327, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 304.32 us (94.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4728e+05 | 65536 | 2 | 1.887e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.68615661673881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1643819178773488, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 304.52 us (94.1%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5353e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.00512935355779 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16803484938573432, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 278.31 us (84.2%)
LB move op cnt : 0
LB apply : 6.17 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0007e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.2787781504715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17168778089411985, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 318.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0188e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.64242775976923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17534071240250537, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 305.23 us (93.9%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (63.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5472e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.24436576873833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1789936439108909, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 277.58 us (93.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (62.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4146e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.58391503024649 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18264657541927642, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (2.0%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 278.04 us (93.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4154e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.5999880316756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18629950692766195, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 271.04 us (93.6%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4235e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.76236885431284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18995243843604748, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (2.0%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 272.26 us (93.2%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6311e+05 | 65536 | 2 | 1.805e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.86293408974423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.193605369944433, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 357.51 us (94.9%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (65.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3464e+05 | 65536 | 2 | 1.958e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.14897497133633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19725830145281853, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.90 us (1.3%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 355.40 us (95.0%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (63.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4104e+05 | 65536 | 2 | 1.922e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.4342193508555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20091123296120406, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 326.23 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3867e+05 | 65536 | 2 | 1.935e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.95875242793957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20456416446958958, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.5%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 327.32 us (94.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4349e+05 | 65536 | 2 | 1.908e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.92524126940357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2082170959779751, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.9%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 303.51 us (93.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4359e+05 | 65536 | 2 | 1.907e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.94551538199323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21187002748636063, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 301.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4625e+05 | 65536 | 2 | 1.893e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.47807707943275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21552295899474616, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.4%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 338.28 us (94.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (67.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3815e+05 | 65536 | 2 | 1.938e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.85302383324058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2191758905031317, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 1.37 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 335.05 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3577e+05 | 65536 | 2 | 1.952e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.37639820476618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2228288220115172, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 306.42 us (93.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4263e+05 | 65536 | 2 | 1.913e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.75275547846302 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22648175351990274, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 319.59 us (94.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3028e+05 | 65536 | 2 | 1.984e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.27478713932115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23013468502828827, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 336.23 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5919e+05 | 65536 | 2 | 1.825e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.07488249897817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2337876165366738, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 361.53 us (94.8%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (61.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5105e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.50907062444166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23744054804505932, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 321.34 us (94.1%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5115e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.52937214896825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24109347955344484, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 352.27 us (94.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5323e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.94647184544648 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24474641106183037, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 294.72 us (93.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (66.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2735e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.75172201896204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2483993425702159, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 302.99 us (94.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (60.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4939e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.17581857863308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2520522740786014, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 292.62 us (93.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5277e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.85326214349155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25570520558698695, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.3%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 394.58 us (95.0%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (66.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5357e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.01428788184278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2593581370953725, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 324.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5286e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.87165934899294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.263011068603758, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.7%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 288.70 us (93.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5659e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.62073697725542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26666400011214353, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (2.0%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 273.31 us (93.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5434e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.16796977779289 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27031693162052906, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 307.60 us (93.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (64.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8055e+05 | 65536 | 2 | 1.722e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.36223081508679 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2739698631289146, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.8%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 270.24 us (93.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5477e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.2553873642596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2776227946373001, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 311.28 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5233e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.76612990633382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28127572614568563, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 283.84 us (93.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2921e+05 | 65536 | 2 | 1.991e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.05930909917994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28492865765407116, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 303.72 us (94.2%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (64.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2447e+05 | 65536 | 2 | 2.020e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.10878849460921 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2885815891624567, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.3%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 390.13 us (95.2%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2420e+05 | 65536 | 2 | 2.021e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.05350603872671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2922345206708422, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.4%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 380.00 us (95.0%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3138e+05 | 65536 | 2 | 1.978e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.49605506727748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29588745217922774, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.8%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 290.44 us (94.0%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2497e+05 | 65536 | 2 | 2.017e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.20836048157801 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29954038368761327, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 345.97 us (94.6%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1971e+05 | 65536 | 2 | 2.050e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.15415186166813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3031933151959988, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 328.29 us (94.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (63.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4719e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.73333453555871 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3068462467043843, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 294.32 us (94.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2138e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.55416107263964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31049917821276984, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.9%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 276.34 us (93.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0390e+05 | 65536 | 2 | 1.623e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.04651977494024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31415210972115537, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 328.03 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9179e+05 | 65536 | 2 | 1.673e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.61781699124673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3178050412295409, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 300.25 us (93.9%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5346e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.9922364690857 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3214579727379264, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.9%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 265.69 us (93.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6114e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.53305653712597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32511090424631195, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 299.35 us (94.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.1%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5698e+05 | 65536 | 2 | 1.836e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.63170121054722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3287638357546975, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 292.68 us (93.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.1%)
Info: cfl dt = 0.003652931508385533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9637e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.5370030193632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.332416767263083, dt = 0.003652931508385533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 275.99 us (93.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.6%)
Info: cfl dt = 0.003652931508385534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5987e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.27755101158793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33606969877146853, dt = 0.003652931508385534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 276.08 us (93.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 0.003652931508385534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1917e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.11170061493505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33972263027985405, dt = 0.003652931508385534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (0.8%)
patch tree reduce : 1.81 us (0.3%)
gen split merge : 1.18 us (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.1%)
LB compute : 641.58 us (97.0%)
LB move op cnt : 0
LB apply : 4.06 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (68.4%)
Info: cfl dt = 0.003652931508385534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2178e+05 | 65536 | 2 | 1.554e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.63477919549926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3433755617882396, dt = 0.003652931508385534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.55 us (0.5%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 286.28 us (93.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.9%)
Info: cfl dt = 0.0036529315083855345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5284e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.86679690074706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3470284932966251, dt = 0.0036529315083855345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 266.71 us (93.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.9%)
Info: cfl dt = 0.003652931508385536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5201e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.70014933987673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35068142480501063, dt = 0.003652931508385536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.5%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 339.56 us (94.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.6%)
Info: cfl dt = 0.0036529315083855367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3402e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.09088480646915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35433435631339616, dt = 0.0036529315083855367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 2.36 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 344.45 us (94.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (64.7%)
Info: cfl dt = 0.003652931508385538 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2431e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.14246285625656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3579872878217817, dt = 0.003652931508385538
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 317.29 us (94.2%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.1%)
Info: cfl dt = 0.0036529315083855397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3921e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.13159289265663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3616402193301672, dt = 0.0036529315083855397
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.8%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 290.83 us (93.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.5%)
Info: cfl dt = 0.0036529315083855415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3528e+05 | 65536 | 2 | 1.955e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.2778923845201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36529315083855274, dt = 0.0036529315083855415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 312.77 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.2%)
Info: cfl dt = 0.003652931508385544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0711e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.69104142046001 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36894608234693826, dt = 0.003652931508385544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 299.01 us (94.1%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.7%)
Info: cfl dt = 0.003652931508385548 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6320e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.94574607123172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3725990138553238, dt = 0.003652931508385548
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.5%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 370.42 us (94.8%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.1%)
Info: cfl dt = 0.003652931508385552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5350e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.00073497257884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3762519453637093, dt = 0.003652931508385552
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 292.26 us (93.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.7%)
Info: cfl dt = 0.003652931508385556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6216e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.73697008156213 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37990487687209484, dt = 0.003652931508385556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 300.67 us (93.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.3%)
Info: cfl dt = 0.003652931508385562 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6607e+05 | 65536 | 2 | 1.406e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.52189590893488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835578083804804, dt = 0.003652931508385562
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.9%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 277.78 us (93.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (60.9%)
Info: cfl dt = 0.003652931508385568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6588e+05 | 65536 | 2 | 1.407e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.48466949841985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.387210739888866, dt = 0.003652931508385568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 281.01 us (93.5%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.1%)
Info: cfl dt = 0.003652931508385577 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6355e+05 | 65536 | 2 | 1.803e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.95090154498594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3908636713972516, dt = 0.003652931508385577
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 359.96 us (94.8%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.0%)
Info: cfl dt = 0.0036529315083855866 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6409e+05 | 65536 | 2 | 1.412e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.12432970698431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39451660290563717, dt = 0.0036529315083855866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 329.56 us (94.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.1%)
Info: cfl dt = 0.0036529315083855983 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9908e+05 | 65536 | 2 | 1.642e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.08061647488263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39816953441402275, dt = 0.0036529315083855983
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 310.61 us (88.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.1%)
Info: cfl dt = 0.003652931508385613 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6420e+05 | 65536 | 2 | 1.412e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.1468514348651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40182246592240833, dt = 0.003652931508385613
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 341.12 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (63.1%)
Info: cfl dt = 0.00365293150838563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6520e+05 | 65536 | 2 | 1.409e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.34779325760873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40547539743079397, dt = 0.00365293150838563
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.4%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 367.46 us (94.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (64.9%)
Info: cfl dt = 0.0036529315083856503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6117e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.53958560890749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4091283289391796, dt = 0.0036529315083856503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 314.97 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.8%)
Info: cfl dt = 0.003652931508385675 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4385e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.06395112595726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41278126044756525, dt = 0.003652931508385675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.9%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 309.89 us (93.7%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (63.8%)
Info: cfl dt = 0.003652931508385704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2625e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.53221115277894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41643419195595094, dt = 0.003652931508385704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 329.18 us (94.6%)
LB move op cnt : 0
LB apply : 3.28 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.7%)
Info: cfl dt = 0.0036529315083857388 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4802e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.90033029829284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42008712346433663, dt = 0.0036529315083857388
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 342.12 us (94.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.9%)
Info: cfl dt = 0.00365293150838578 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9977e+05 | 65536 | 2 | 1.639e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.21908557426944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4237400549727224, dt = 0.00365293150838578
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 353.98 us (94.7%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (63.7%)
Info: cfl dt = 0.003652931508385828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0549e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.36678611688113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4273929864811082, dt = 0.003652931508385828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 352.84 us (94.8%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (66.6%)
Info: cfl dt = 0.003652931508385885 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4994e+05 | 65536 | 2 | 1.873e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.2196081097478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.431045917989494, dt = 0.003652931508385885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 320.54 us (94.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.9%)
Info: cfl dt = 0.0036529315083859513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9959e+05 | 65536 | 2 | 1.640e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.18308185728752 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43469884949787985, dt = 0.0036529315083859513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.8%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 334.15 us (94.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.3%)
Info: cfl dt = 0.0036529315083860293 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3280e+05 | 65536 | 2 | 1.969e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.78035961771688 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4383517810062658, dt = 0.0036529315083860293
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 313.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.0%)
Info: cfl dt = 0.0036529315083861213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4304e+05 | 65536 | 2 | 1.910e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.83558356034924 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44200471251465184, dt = 0.0036529315083861213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.4%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 369.92 us (94.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (66.0%)
Info: cfl dt = 0.003652931508386228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4336e+05 | 65536 | 2 | 1.909e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.89850404427696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.445657644023038, dt = 0.003652931508386228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 354.50 us (94.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.2%)
Info: cfl dt = 0.0036529315083863533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4175e+05 | 65536 | 2 | 1.918e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.57677127892075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44931057553142423, dt = 0.0036529315083863533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 323.98 us (94.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.8%)
Info: cfl dt = 0.003652931508386497 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4224e+05 | 65536 | 2 | 1.915e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.6745667687525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4529635070398106, dt = 0.003652931508386497
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 348.52 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.0%)
Info: cfl dt = 0.0036529315083866642 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4120e+05 | 65536 | 2 | 1.921e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.4651984471965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45661643854819706, dt = 0.0036529315083866642
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.4%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 367.55 us (95.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.3%)
Info: cfl dt = 0.003652931508386858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3664e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.55100392230335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46026937005658375, dt = 0.003652931508386858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.48 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 304.14 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (60.7%)
Info: cfl dt = 0.003652931508387082 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4448e+05 | 65536 | 2 | 1.902e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.12341604348934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4639223015649706, dt = 0.003652931508387082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.2%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 393.53 us (95.5%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.7%)
Info: cfl dt = 0.003652931508387339 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3998e+05 | 65536 | 2 | 1.928e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.21999830683271 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4675752330733577, dt = 0.003652931508387339
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 373.25 us (95.1%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (66.0%)
Info: cfl dt = 0.0036529315083876357 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2767e+05 | 65536 | 2 | 2.000e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.75043202437875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47122816458174505, dt = 0.0036529315083876357
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 344.33 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.2%)
Info: cfl dt = 0.003652931508387978 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1251e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.77548943902526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4748810960901327, dt = 0.003652931508387978
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 306.47 us (93.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.6%)
Info: cfl dt = 0.0036529315083883677 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4565e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.42577522642874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47853402759852065, dt = 0.0036529315083883677
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.4%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 370.16 us (95.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.2%)
Info: cfl dt = 0.0036529315083888153 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0529e+05 | 65536 | 2 | 1.617e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.32539698186463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.482186959106909, dt = 0.0036529315083888153
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.4%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 350.06 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.2%)
Info: cfl dt = 0.0036529315083893266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3458e+05 | 65536 | 2 | 1.959e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.13781970003214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4858398906152978, dt = 0.0036529315083893266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (2.0%)
patch tree reduce : 2.33 us (0.8%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 278.66 us (93.4%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.8%)
Info: cfl dt = 0.00365293150838991 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3322e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.93141138650688 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4894928221236871, dt = 0.00365293150838991
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.9%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 279.13 us (93.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.6%)
Info: cfl dt = 0.003652931508390573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6010e+05 | 65536 | 2 | 1.424e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.32439964358298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.493145753632077, dt = 0.003652931508390573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 315.81 us (94.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.6%)
Info: cfl dt = 0.0036529315083913285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4584e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.46383227924585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4967986851404676, dt = 0.0036529315083913285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 269.62 us (93.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (63.1%)
Info: cfl dt = 0.0036529315083921854 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5581e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.46450891154264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.500451616648859, dt = 0.0036529315083921854
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 311.90 us (94.2%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.9%)
Info: cfl dt = 0.0036529315083931578 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4759e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.81498904697233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5041045481572511, dt = 0.0036529315083931578
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (2.0%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 275.94 us (93.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (60.8%)
Info: cfl dt = 0.003652931508394258 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6444e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.19522776476256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5077574796656443, dt = 0.003652931508394258
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 328.58 us (94.5%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.6%)
Info: cfl dt = 0.0036529315083955014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9505e+05 | 65536 | 2 | 1.659e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.27216381269949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5114104111740386, dt = 0.0036529315083955014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 275.29 us (93.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.4%)
Info: cfl dt = 0.003652931508396904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6469e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.24531188133669 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150633426824341, dt = 0.003652931508396904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 2.51 us (0.8%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 299.00 us (93.7%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.4%)
Info: cfl dt = 0.0036529315083984855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6240e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.78615356264292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.518716274190831, dt = 0.0036529315083984855
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.8%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 279.43 us (93.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (63.7%)
Info: cfl dt = 0.0036529315084002658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9559e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.38031243352283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5223692056992295, dt = 0.0036529315084002658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.4%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 343.37 us (94.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.0%)
Info: cfl dt = 0.003652931508402267 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6458e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.22292755822123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5260221372076298, dt = 0.003652931508402267
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 342.03 us (94.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (66.1%)
Info: cfl dt = 0.003652931508404512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0562e+05 | 65536 | 2 | 1.616e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.39139732136252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5296750687160321, dt = 0.003652931508404512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 300.86 us (93.9%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.4%)
Info: cfl dt = 0.003652931508407029 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6641e+05 | 65536 | 2 | 1.405e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.5895768618686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5333280002244366, dt = 0.003652931508407029
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (0.8%)
patch tree reduce : 1.68 us (0.3%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 632.93 us (97.1%)
LB move op cnt : 0
LB apply : 3.83 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.5%)
Info: cfl dt = 0.003652931508409848 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4308e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.90907657662798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5369809317328437, dt = 0.003652931508409848
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 335.77 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.9%)
Info: cfl dt = 0.003652931508412999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5269e+05 | 65536 | 2 | 1.858e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.77140338826977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5406338632412535, dt = 0.003652931508412999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 294.96 us (93.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.8%)
Info: cfl dt = 0.003652931508416519 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4537e+05 | 65536 | 2 | 1.898e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.30154361815423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5442867947496665, dt = 0.003652931508416519
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 293.91 us (93.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (60.5%)
Info: cfl dt = 0.0036529315084204445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3657e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.60257867089598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.547939726258083, dt = 0.0036529315084204445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.9%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 288.06 us (93.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (64.8%)
Info: cfl dt = 0.003652931508424818 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3558e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.40368697045257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5515926577665035, dt = 0.003652931508424818
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 284.37 us (93.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (65.6%)
Info: cfl dt = 0.0036529315084296845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4747e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.78953897114631 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5552455892749283, dt = 0.0036529315084296845
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 283.87 us (93.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.7%)
Info: cfl dt = 0.0036529315084350947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4744e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.78299190045979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.558898520783358, dt = 0.0036529315084350947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 284.30 us (93.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.2%)
Info: cfl dt = 0.0036529315084411003 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4867e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.0298531931368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.562551452291793, dt = 0.0036529315084411003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 285.36 us (93.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (61.8%)
Info: cfl dt = 0.0036529315084477603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5480e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.26015342988386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5662043838002342, dt = 0.0036529315084477603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.4%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 316.74 us (88.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.3%)
Info: cfl dt = 0.0036529315084551403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3879e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.04774350603704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.569857315308682, dt = 0.0036529315084551403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 327.77 us (94.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.6%)
Info: cfl dt = 0.003652931508463306 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2727e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.73656847260098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5735102468171371, dt = 0.003652931508463306
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 301.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.9%)
Info: cfl dt = 0.003652931508472334 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3139e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.56383379935124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5771631783256005, dt = 0.003652931508472334
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.6%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 363.28 us (94.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.8%)
Info: cfl dt = 0.003652931508482302 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7711e+05 | 65536 | 2 | 1.738e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.67176758558959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5808161098340728, dt = 0.003652931508482302
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 332.43 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.3%)
Info: cfl dt = 0.003652931508493299 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5523e+05 | 65536 | 2 | 1.845e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.28119013295354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5844690413425552, dt = 0.003652931508493299
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 324.96 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.1%)
Info: cfl dt = 0.0036529315085054204 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6913e+05 | 65536 | 2 | 1.775e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.07082528051681 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5881219728510485, dt = 0.0036529315085054204
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.9%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 285.10 us (93.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.3%)
Info: cfl dt = 0.0036529315085187656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4475e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.24482652288809 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5917749043595539, dt = 0.0036529315085187656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.7%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 342.61 us (94.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.9%)
Info: cfl dt = 0.003652931508533444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3967e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.22457948378431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5954278358680727, dt = 0.003652931508533444
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 346.00 us (94.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.6%)
Info: cfl dt = 0.0036529315085495747 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3168e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.6206507780015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5990807673766061, dt = 0.0036529315085495747
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 301.22 us (93.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.6%)
Info: cfl dt = 0.003652931508567284 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4545e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.38501767718907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6027336988851557, dt = 0.003652931508567284
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 312.29 us (94.2%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.5%)
Info: cfl dt = 0.0036529315085867087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4342e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.97660935076814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.606386630393723, dt = 0.0036529315085867087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 278.99 us (93.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.5%)
Info: cfl dt = 0.003652931508607996 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4650e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.59588465820039 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6100395619023097, dt = 0.003652931508607996
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 280.21 us (93.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (60.7%)
Info: cfl dt = 0.0036529315086313036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4406e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.10658928159913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6136924934109177, dt = 0.0036529315086313036
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.8%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 272.66 us (93.5%)
LB move op cnt : 0
LB apply : 3.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (59.9%)
Info: cfl dt = 0.003652931508656801 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3834e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.95832649058185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.617345424919549, dt = 0.003652931508656801
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 277.44 us (93.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.8%)
Info: cfl dt = 0.0036529315086846694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5754e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.81053707542326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6209983564282058, dt = 0.0036529315086846694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 319.54 us (94.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.8%)
Info: cfl dt = 0.0036529315087151038 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4122e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.53650052970747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6246512879368904, dt = 0.0036529315087151038
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 324.46 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.7%)
Info: cfl dt = 0.003652931508748312 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3576e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.4403275224846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6283042194456055, dt = 0.003652931508748312
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 279.95 us (93.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.5%)
Info: cfl dt = 0.0036529315087845196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2959e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.20126031226145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6319571509543539, dt = 0.0036529315087845196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 275.98 us (93.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.0%)
Info: cfl dt = 0.0036529315088239625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4576e+05 | 65536 | 2 | 1.895e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.37999858093153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6356100824631384, dt = 0.0036529315088239625
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 320.83 us (94.4%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.6%)
Info: cfl dt = 0.003652931508866897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4220e+05 | 65536 | 2 | 1.915e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.6662920052019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6392630139719624, dt = 0.003652931508866897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 292.24 us (94.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (64.0%)
Info: cfl dt = 0.003652931508913595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2591e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.46387051517368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6429159454808293, dt = 0.003652931508913595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 286.71 us (93.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (65.4%)
Info: cfl dt = 0.003652931508964348 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3631e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.55126431480453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6465688769897429, dt = 0.003652931508964348
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.9%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 280.85 us (93.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (65.0%)
Info: cfl dt = 0.0036529315090194654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3137e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.5600607037052 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6502218084987073, dt = 0.0036529315090194654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 290.80 us (93.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (61.3%)
Info: cfl dt = 0.0036529315090792778 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3910e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.10963089306732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6538747400077267, dt = 0.0036529315090792778
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 304.70 us (93.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.2%)
Info: cfl dt = 0.0036529315091441378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4122e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.53492394981853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.657527671516806, dt = 0.0036529315091441378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (1.0%)
patch tree reduce : 2.03 us (0.3%)
gen split merge : 862.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.20 us (0.2%)
LB compute : 636.24 us (96.8%)
LB move op cnt : 0
LB apply : 3.96 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (66.2%)
Info: cfl dt = 0.0036529315092144196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4033e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.35646775328833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6611806030259502, dt = 0.0036529315092144196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 287.49 us (93.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.8%)
Info: cfl dt = 0.003652931509290522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3723e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.734903959788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6648335345351646, dt = 0.003652931509290522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 329.23 us (94.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.6%)
Info: cfl dt = 0.00365293150937287 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2064e+05 | 65536 | 2 | 2.044e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.34052702129394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.668486466044455, dt = 0.00365293150937287
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 345.66 us (94.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.3%)
Info: cfl dt = 0.0036529315094619126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3366e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.0189705001319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6721393975538279, dt = 0.0036529315094619126
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 318.28 us (94.3%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (61.0%)
Info: cfl dt = 0.0036529315095581295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4714e+05 | 65536 | 2 | 1.888e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.65844587552476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6757923290632898, dt = 0.0036529315095581295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (0.8%)
patch tree reduce : 1.57 us (0.2%)
gen split merge : 1.00 us (0.1%)
split / merge op : 0/0
apply split merge : 1.00 us (0.1%)
LB compute : 734.01 us (97.3%)
LB move op cnt : 0
LB apply : 4.18 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (65.5%)
Info: cfl dt = 0.0036529315096620273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4074e+05 | 65536 | 2 | 1.923e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.37261893034434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6794452605728479, dt = 0.0036529315096620273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 296.05 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.5%)
Info: cfl dt = 0.0036529315097741455 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3662e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.54638926624511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.68309819208251, dt = 0.0036529315097741455
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 312.84 us (94.0%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.5%)
Info: cfl dt = 0.0036529315098950545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3535e+05 | 65536 | 2 | 1.954e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.29239462193222 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6867511235922842, dt = 0.0036529315098950545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 298.98 us (94.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.1%)
Info: cfl dt = 0.0036529315100253595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4575e+05 | 65536 | 2 | 1.895e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.378535218461 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6904040551021793, dt = 0.0036529315100253595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 296.97 us (93.9%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.7%)
Info: cfl dt = 0.0036529315101657025 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4817e+05 | 65536 | 2 | 1.882e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.86476629089483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6940569866122046, dt = 0.0036529315101657025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 365.51 us (94.8%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (63.4%)
Info: cfl dt = 0.0036529315103167597 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4610e+05 | 65536 | 2 | 1.894e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.44973931934118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6977099181223703, dt = 0.0036529315103167597
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 310.82 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.0%)
Info: cfl dt = 0.0036529315104792495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3704e+05 | 65536 | 2 | 1.944e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.63133331146422 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.701362849632687, dt = 0.0036529315104792495
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.8%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 300.70 us (93.8%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.5%)
Info: cfl dt = 0.003652931510653931 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3864e+05 | 65536 | 2 | 1.935e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.95261836837767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7050157811431663, dt = 0.003652931510653931
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 301.30 us (93.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.0%)
Info: cfl dt = 0.003652931510841604 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3864e+05 | 65536 | 2 | 1.935e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.95250214768228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7086687126538203, dt = 0.003652931510841604
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 300.46 us (94.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.0%)
Info: cfl dt = 0.003652931511043117 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4453e+05 | 65536 | 2 | 1.902e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.13455117191025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7123216441646618, dt = 0.003652931511043117
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 295.61 us (93.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (61.6%)
Info: cfl dt = 0.0036529315112593624 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3933e+05 | 65536 | 2 | 1.931e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.09078904684341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7159745756757049, dt = 0.0036529315112593624
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.9%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 300.44 us (93.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.6%)
Info: cfl dt = 0.0036529315114912837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4384e+05 | 65536 | 2 | 1.906e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.99461330324432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7196275071869642, dt = 0.0036529315114912837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 299.90 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.1%)
Info: cfl dt = 0.0036529315117398756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3961e+05 | 65536 | 2 | 1.930e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.14604400604757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7232804386984555, dt = 0.0036529315117398756
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 306.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (63.3%)
Info: cfl dt = 0.0036529315120061865 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3940e+05 | 65536 | 2 | 1.931e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.10359784847027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7269333702101953, dt = 0.0036529315120061865
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 331.18 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.7%)
Info: cfl dt = 0.0036529315122913212 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9948e+05 | 65536 | 2 | 2.188e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.093490126030446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7305863017222015, dt = 0.0036529315122913212
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 310.79 us (94.2%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.6%)
Info: cfl dt = 0.003652931512596443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7032e+05 | 65536 | 2 | 1.393e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.374739690069 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7342392332344928, dt = 0.003652931512596443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 333.52 us (94.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.7%)
Info: cfl dt = 0.0036529315129227766 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6646e+05 | 65536 | 2 | 1.405e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.60019644357708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7378921647470893, dt = 0.0036529315129227766
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 332.97 us (94.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.9%)
Info: cfl dt = 0.0036529315132716113 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5977e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.25749037398144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7415450962600121, dt = 0.0036529315132716113
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 291.85 us (93.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.7%)
Info: cfl dt = 0.003652931513644301 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4961e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.22011758484996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7451980277732837, dt = 0.003652931513644301
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 320.55 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.3%)
Info: cfl dt = 0.0036529315140422713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4615e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.52567568732628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.748850959286928, dt = 0.0036529315140422713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 317.67 us (94.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.0%)
Info: cfl dt = 0.00365293151446702 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4595e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.48442334361981 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7525038908009702, dt = 0.00365293151446702
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 333.30 us (94.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.9%)
Info: cfl dt = 0.0036529315149201195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5045e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.38812230518138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7561568223154372, dt = 0.0036529315149201195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 295.75 us (93.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (64.4%)
Info: cfl dt = 0.0036529315154032196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4199e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.69015418328239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7598097538303573, dt = 0.0036529315154032196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 348.89 us (94.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.3%)
Info: cfl dt = 0.0036529315159180547 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5222e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.74399899102157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7634626853457606, dt = 0.0036529315159180547
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 305.61 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.2%)
Info: cfl dt = 0.0036529315164664415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9096e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.45019071634816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7671156168616786, dt = 0.0036529315164664415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 337.42 us (94.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.9%)
Info: cfl dt = 0.003652931517050287 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5454e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.20908463674951 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.770768548378145, dt = 0.003652931517050287
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 325.08 us (94.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (65.1%)
Info: cfl dt = 0.0036529315176715873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5268e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.835727160722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7744214798951953, dt = 0.0036529315176715873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.3%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 390.62 us (95.2%)
LB move op cnt : 0
LB apply : 3.49 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.1%)
Info: cfl dt = 0.0036529315183324376 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4544e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.3825889624524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7780744114128668, dt = 0.0036529315183324376
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 320.89 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.0%)
Info: cfl dt = 0.0036529315190350306 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4619e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.53285713478195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7817273429311993, dt = 0.0036529315190350306
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 333.25 us (94.0%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (65.7%)
Info: cfl dt = 0.0036529315197816603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4222e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.7364599497328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7853802744502343, dt = 0.0036529315197816603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 316.47 us (93.5%)
LB move op cnt : 0
LB apply : 4.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (66.2%)
Info: cfl dt = 0.003652931520574731 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4551e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.39662679332946 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7890332059700159, dt = 0.003652931520574731
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 333.91 us (94.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (62.8%)
Info: cfl dt = 0.0036529315214167547 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5238e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.77547065665959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7926861374905907, dt = 0.0036529315214167547
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.5%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 351.77 us (94.6%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.8%)
Info: cfl dt = 0.003652931522310362 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4826e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.94856907425789 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7963390690120075, dt = 0.003652931522310362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 321.79 us (94.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.1%)
Info: cfl dt = 0.0036529315232582977 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5210e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.71884915557173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7999920005343178, dt = 0.0036529315232582977
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 318.85 us (94.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.1%)
Info: cfl dt = 0.0036529315242634355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5092e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.48314267637987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8036449320575761, dt = 0.0036529315242634355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (0.8%)
patch tree reduce : 1.73 us (0.2%)
gen split merge : 1.07 us (0.1%)
split / merge op : 0/0
apply split merge : 1.21 us (0.2%)
LB compute : 757.37 us (97.3%)
LB move op cnt : 0
LB apply : 4.00 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.5%)
Info: cfl dt = 0.0036529315253287743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5113e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.52395404867326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8072978635818395, dt = 0.0036529315253287743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 341.91 us (94.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.4%)
Info: cfl dt = 0.003652931526457448 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2115e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.50959683802938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8109507951071683, dt = 0.003652931526457448
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.3%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 389.26 us (95.1%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.4%)
Info: cfl dt = 0.003652931527652725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3176e+05 | 65536 | 2 | 1.975e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.57105354067171 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8146037266336257, dt = 0.003652931527652725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 326.92 us (94.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (63.2%)
Info: cfl dt = 0.003652931528918019 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3973e+05 | 65536 | 2 | 1.929e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.17017495390327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8182566581612783, dt = 0.003652931528918019
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 316.69 us (94.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.4%)
Info: cfl dt = 0.0036529315302568904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5033e+05 | 65536 | 2 | 1.871e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.29812213022264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8219095896901963, dt = 0.0036529315302568904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 314.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.9%)
Info: cfl dt = 0.0036529315316730514 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3941e+05 | 65536 | 2 | 1.931e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.10723429361823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8255625212204533, dt = 0.0036529315316730514
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 2.42 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 340.50 us (94.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.2%)
Info: cfl dt = 0.0036529315331703736 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4970e+05 | 65536 | 2 | 1.874e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.1717957049955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8292154527521263, dt = 0.0036529315331703736
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 289.79 us (94.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (62.3%)
Info: cfl dt = 0.00365293153475289 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9603e+05 | 65536 | 2 | 2.214e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.40191814503353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8328683842852966, dt = 0.00365293153475289
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 343.12 us (94.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.7%)
Info: cfl dt = 0.0036529315364248038 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3603e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.49348408966294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8365213158200495, dt = 0.0036529315364248038
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 297.00 us (93.7%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.6%)
Info: cfl dt = 0.0036529315381904908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9411e+05 | 65536 | 2 | 1.663e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.0819210626143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8401742473564743, dt = 0.0036529315381904908
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 298.17 us (93.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.7%)
Info: cfl dt = 0.0036529315400545097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6924e+05 | 65536 | 2 | 1.775e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.09143156709179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8438271788946647, dt = 0.0036529315400545097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 287.37 us (93.9%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (61.6%)
Info: cfl dt = 0.003652931542021604 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6132e+05 | 65536 | 2 | 1.421e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.5688825278685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8474801104347193, dt = 0.003652931542021604
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 283.53 us (93.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.8%)
Info: cfl dt = 0.0036529315440967094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6760e+05 | 65536 | 2 | 1.402e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.82865570399613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8511330419767409, dt = 0.0036529315440967094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 272.46 us (93.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.3%)
Info: cfl dt = 0.00365293154628496 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5654e+05 | 65536 | 2 | 1.838e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.54312725287117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8547859735208376, dt = 0.00365293154628496
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 327.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.1%)
Info: cfl dt = 0.0036529315485916945 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5524e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.34946345025887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8584389050671226, dt = 0.0036529315485916945
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 299.92 us (94.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (60.8%)
Info: cfl dt = 0.0036529315510224637 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6206e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.71691995801882 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8620918366157143, dt = 0.0036529315510224637
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 301.42 us (94.0%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (59.5%)
Info: cfl dt = 0.0036529315535830374 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3172e+05 | 65536 | 2 | 1.976e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.56389389615741 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8657447681667367, dt = 0.0036529315535830374
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 331.56 us (94.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.4%)
Info: cfl dt = 0.0036529315562794087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1915e+05 | 65536 | 2 | 2.053e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.04170395956271 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8693976997203198, dt = 0.0036529315562794087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 21.32 us (5.7%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 334.97 us (89.5%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.5%)
Info: cfl dt = 0.003652931559117803 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5842e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.98742984605296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8730506312765992, dt = 0.003652931559117803
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 325.97 us (94.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.9%)
Info: cfl dt = 0.0036529315621046847 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5093e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.48450391034231 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.876703562835717, dt = 0.0036529315621046847
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 309.99 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.8%)
Info: cfl dt = 0.003652931565246766 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5255e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.80890704360787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8803564943978217, dt = 0.003652931565246766
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 294.48 us (93.7%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.1%)
Info: cfl dt = 0.0036529315685510095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5965e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.23349861480135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8840094259630685, dt = 0.0036529315685510095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 302.88 us (94.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.3%)
Info: cfl dt = 0.003652931572024645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0135e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.53631946157188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8876623575316195, dt = 0.003652931572024645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 310.68 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.6%)
Info: cfl dt = 0.0036529315756751654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4884e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.06454533861888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913152891036441, dt = 0.0036529315756751654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.9%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 269.79 us (93.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.9%)
Info: cfl dt = 0.0036529315795103432 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3850e+05 | 65536 | 2 | 1.936e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.92433902796446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8949682206793192, dt = 0.0036529315795103432
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 282.48 us (93.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (62.1%)
Info: cfl dt = 0.003652931583538238 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6281e+05 | 65536 | 2 | 1.416e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.86718974965964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8986211522588295, dt = 0.003652931583538238
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 331.57 us (94.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.8%)
Info: cfl dt = 0.003652931587767201 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6233e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.77108545598036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9022740838423677, dt = 0.003652931587767201
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 310.67 us (93.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.0%)
Info: cfl dt = 0.0036529315922058858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5957e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.21735164756349 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.905927015430135, dt = 0.0036529315922058858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 305.07 us (94.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.3%)
Info: cfl dt = 0.003652931596863258 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5439e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.17871645242884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9095799470223409, dt = 0.003652931596863258
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 315.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.7%)
Info: cfl dt = 0.0036529316017486 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6446e+05 | 65536 | 2 | 1.411e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.1993243631714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9132328786192042, dt = 0.0036529316017486
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 296.45 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (60.9%)
Info: cfl dt = 0.003652931606871526 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5618e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.53719849174043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9168858102209528, dt = 0.003652931606871526
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 291.05 us (93.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.5%)
Info: cfl dt = 0.0036529316122419857 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5850e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.0036855385832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9205387418278244, dt = 0.0036529316122419857
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 299.48 us (93.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.0%)
Info: cfl dt = 0.003652931617870276 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4651e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.59651227983052 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9241916734400664, dt = 0.003652931617870276
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.38 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 359.04 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.9%)
Info: cfl dt = 0.003652931623767052 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9530e+05 | 65536 | 2 | 1.658e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.32169443554781 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9278446050579366, dt = 0.003652931623767052
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 302.73 us (93.8%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.6%)
Info: cfl dt = 0.003652931629943332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1248e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.76809258101392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9314975366817037, dt = 0.003652931629943332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 295.92 us (93.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.0%)
Info: cfl dt = 0.0036529316364105145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6621e+05 | 65536 | 2 | 1.406e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.55090741515791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9351504683116469, dt = 0.0036529316364105145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 280.68 us (93.6%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.2%)
Info: cfl dt = 0.0036529316431803812 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4606e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.50653085704572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9388033999480575, dt = 0.0036529316431803812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 288.76 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.3%)
Info: cfl dt = 0.003652931650265111 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4041e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.3741333278553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9424563315912379, dt = 0.003652931650265111
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 323.59 us (94.1%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.3%)
Info: cfl dt = 0.0036529316576772906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3636e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.56133407060022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.946109263241503, dt = 0.0036529316576772906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 284.98 us (93.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 0.0036529316654299233 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0852e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.9740635366621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9497621948991803, dt = 0.0036529316654299233
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 290.18 us (93.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.3%)
Info: cfl dt = 0.003652931673536443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8601e+05 | 65536 | 2 | 1.698e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.45635468542332 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9534151265646102, dt = 0.003652931673536443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 281.95 us (93.8%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.2%)
Info: cfl dt = 0.0036529316820107195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5402e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.10381515571636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9570680582381467, dt = 0.0036529316820107195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 310.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.7%)
Info: cfl dt = 0.003652931690867078 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5482e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.26425231815203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9607209899201574, dt = 0.003652931690867078
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.08 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 286.79 us (93.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.8%)
Info: cfl dt = 0.003652931700120302 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3299e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.88352886283984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9643739216110245, dt = 0.003652931700120302
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.9%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.4%)
LB compute : 268.97 us (93.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (64.6%)
Info: cfl dt = 0.003652931709785652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5520e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.34021200866809 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9680268533111448, dt = 0.003652931709785652
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 300.46 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.0%)
Info: cfl dt = 0.0036529317198788717 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3606e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.50059878979428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9716797850209304, dt = 0.0036529317198788717
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.0%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 275.02 us (93.3%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (60.3%)
Info: cfl dt = 0.003652931730416204 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5229e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.7568799395253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9753327167408093, dt = 0.003652931730416204
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.9%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 277.23 us (93.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.2%)
Info: cfl dt = 0.003652931741414401 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2016e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.30958584016092 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9789856484712256, dt = 0.003652931741414401
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.9%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 280.35 us (93.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.8%)
Info: cfl dt = 0.003652931752890739 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8975e+05 | 65536 | 2 | 1.682e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.20687943238116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9826385802126401, dt = 0.003652931752890739
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.39 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 318.45 us (93.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.3%)
Info: cfl dt = 0.0036529317648630283 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5666e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.63493085869145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9862915119655308, dt = 0.0036529317648630283
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 294.73 us (94.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.2%)
Info: cfl dt = 0.0036529317773496264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5769e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.83997113027031 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9899444437303938, dt = 0.0036529317773496264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 329.52 us (94.2%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.8%)
Info: cfl dt = 0.003652931790369454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4919e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.13495209562609 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9935973755077434, dt = 0.003652931790369454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.4%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 359.36 us (94.8%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.2%)
Info: cfl dt = 0.003652931803942004 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4453e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.19928630915855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9972503072981128, dt = 0.003652931803942004
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 317.46 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.8%)
Info: cfl dt = 0.0036529318180873608 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5551e+05 | 65536 | 2 | 1.843e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.33756539577226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.000903239102055, dt = 0.0036529318180873608
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 337.26 us (94.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.1%)
Info: cfl dt = 0.003652931832826206 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8072e+05 | 65536 | 2 | 1.721e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.3965146830204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0045561709201423, dt = 0.003652931832826206
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.1%)
patch tree reduce : 2.00 us (0.4%)
gen split merge : 1.05 us (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 473.11 us (96.0%)
LB move op cnt : 0
LB apply : 3.37 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.8%)
Info: cfl dt = 0.003652931848179839 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8030e+05 | 65536 | 2 | 1.723e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.3110119874283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0082091027529685, dt = 0.003652931848179839
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 283.46 us (93.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.8%)
Info: cfl dt = 0.003652931864170192 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5915e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.13421550223894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0118620346011484, dt = 0.003652931864170192
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 762.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 346.16 us (94.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.4%)
Info: cfl dt = 0.0036529318808198354 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2315e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.91007024990272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0155149664653187, dt = 0.0036529318808198354
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.4%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 347.58 us (89.8%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.7%)
Info: cfl dt = 0.0036529318981520027 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5033e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.36469888176862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0191678983461385, dt = 0.0036529318981520027
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 346.90 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.5%)
Info: cfl dt = 0.0036529319161905994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4320e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.93389084537063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0228208302442905, dt = 0.0036529319161905994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 328.16 us (94.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.1%)
Info: cfl dt = 0.00365293193496022 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4249e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 1.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.79155171061629 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0264737621604811, dt = 0.00365293193496022
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.8%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 273.23 us (93.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (64.2%)
Info: cfl dt = 0.0036529319544861636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4476e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.24649827201158 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0301266940954414, dt = 0.0036529319544861636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (2.0%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 267.92 us (93.3%)
LB move op cnt : 0
LB apply : 3.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.7%)
Info: cfl dt = 0.003652931974794448 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5395e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.0904230328088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0337796260499277, dt = 0.003652931974794448
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 307.22 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.9%)
Info: cfl dt = 0.0036529319959118273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4390e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 1.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.07342828448982 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0374325580247221, dt = 0.0036529319959118273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.9%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 305.41 us (93.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.3%)
Info: cfl dt = 0.0036529320178658045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4895e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.08798529099022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0410854900206339, dt = 0.0036529320178658045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 306.96 us (94.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.9%)
Info: cfl dt = 0.0036529320406846525 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5522e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.34543395276648 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0447384220384996, dt = 0.0036529320406846525
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 320.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.1%)
Info: cfl dt = 0.0036529320643974243 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7589e+05 | 65536 | 2 | 1.743e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.42620701578036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0483913540791843, dt = 0.0036529320643974243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (2.0%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 270.55 us (93.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.9%)
Info: cfl dt = 0.003652932089033979 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2079e+05 | 65536 | 2 | 2.043e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.36957981142129 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0520442861435817, dt = 0.003652932089033979
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.3%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 371.82 us (95.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (66.6%)
Info: cfl dt = 0.003652932114624987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4553e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.40065423913417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0556972182326156, dt = 0.003652932114624987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 292.18 us (93.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.9%)
Info: cfl dt = 0.0036529321412019553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5562e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.42549498243984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0593501503472407, dt = 0.0036529321412019553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.7%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 292.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.8%)
Info: cfl dt = 0.0036529321687972446 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2332e+05 | 65536 | 2 | 2.027e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.87821437284988 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0630030824884427, dt = 0.0036529321687972446
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 354.05 us (94.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.6%)
Info: cfl dt = 0.003652932197444081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2176e+05 | 65536 | 2 | 2.037e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.56483862793979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.06665601465724, dt = 0.003652932197444081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.4%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 379.57 us (95.2%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (66.3%)
Info: cfl dt = 0.0036529322271765794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3627e+05 | 65536 | 2 | 1.949e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.47546598689995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.070308946854684, dt = 0.0036529322271765794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 331.50 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.0%)
Info: cfl dt = 0.003652932258029761 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2129e+05 | 65536 | 2 | 2.040e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.47116742265851 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0739618790818606, dt = 0.003652932258029761
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 347.40 us (94.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.8%)
Info: cfl dt = 0.0036529322900395677 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3106e+05 | 65536 | 2 | 1.980e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.43163522802745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0776148113398902, dt = 0.0036529322900395677
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 298.60 us (94.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (64.1%)
Info: cfl dt = 0.0036529323232428875 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3006e+05 | 65536 | 2 | 1.986e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.2298303840294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0812677436299298, dt = 0.0036529323232428875
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.6%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 294.32 us (94.0%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.2%)
Info: cfl dt = 0.003652932357677564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2308e+05 | 65536 | 2 | 2.028e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.82898786583524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0849206759531727, dt = 0.003652932357677564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.5%)
patch tree reduce : 2.36 us (0.6%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 362.74 us (94.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.4%)
Info: cfl dt = 0.0036529323933824237 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2683e+05 | 65536 | 2 | 2.005e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.58278693574967 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0885736083108501, dt = 0.0036529323933824237
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 311.94 us (94.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (63.8%)
Info: cfl dt = 0.00365293243039729 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6798e+05 | 65536 | 2 | 1.400e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.9059001177339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0922265407042326, dt = 0.00365293243039729
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 325.22 us (94.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.2%)
Info: cfl dt = 0.003652932468763007 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5638e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.57814794324322 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.09587947313463, dt = 0.003652932468763007
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 334.41 us (94.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.7%)
Info: cfl dt = 0.0036529325085214548 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6242e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.78902651292046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.099532405603393, dt = 0.0036529325085214548
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 291.28 us (93.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.0%)
Info: cfl dt = 0.003652932549715571 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6985e+05 | 65536 | 2 | 1.395e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.28026391360196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1031853381119145, dt = 0.003652932549715571
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 317.32 us (93.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.1%)
Info: cfl dt = 0.003652932592389374 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6703e+05 | 65536 | 2 | 1.403e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.71504535207004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1068382706616302, dt = 0.003652932592389374
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.0%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 278.11 us (93.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (64.7%)
Info: cfl dt = 0.0036529326365879783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5416e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.1324694955944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1104912032540195, dt = 0.0036529326365879783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 280.17 us (93.7%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.9%)
Info: cfl dt = 0.0036529326823576203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7760e+05 | 65536 | 2 | 1.736e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.7696224730705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1141441358906075, dt = 0.0036529326823576203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 301.22 us (94.0%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.6%)
Info: cfl dt = 0.003652932729745673 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4729e+05 | 65536 | 2 | 1.887e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.68685774519558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.117797068572965, dt = 0.003652932729745673
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 294.68 us (93.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.8%)
Info: cfl dt = 0.003652932778800675 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1726e+05 | 65536 | 2 | 1.571e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.72873422278948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1214500013027107, dt = 0.003652932778800675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 306.72 us (93.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.5%)
Info: cfl dt = 0.0036529328295723464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6804e+05 | 65536 | 2 | 1.400e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.91707695153355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1251029340815113, dt = 0.0036529328295723464
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 291.80 us (93.8%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.2%)
Info: cfl dt = 0.0036529328821116092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6985e+05 | 65536 | 2 | 1.395e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.28138951434309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1287558669110835, dt = 0.0036529328821116092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 299.04 us (94.1%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.8%)
Info: cfl dt = 0.0036529329364706166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6322e+05 | 65536 | 2 | 1.415e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.95131068330564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.132408799793195, dt = 0.0036529329364706166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.47 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 325.81 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.9%)
Info: cfl dt = 0.003652932992702766 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6643e+05 | 65536 | 2 | 1.405e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.59478033543614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1360617327296656, dt = 0.003652932992702766
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 306.07 us (94.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.6%)
Info: cfl dt = 0.0036529330508627295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6797e+05 | 65536 | 2 | 1.400e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.90346332769248 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1397146657223685, dt = 0.0036529330508627295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 295.55 us (93.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.2%)
Info: cfl dt = 0.003652933111006472 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6069e+05 | 65536 | 2 | 1.423e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.44348906535137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1433675987732312, dt = 0.003652933111006472
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 305.72 us (94.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.6%)
Info: cfl dt = 0.0036529331731912735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5693e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.68830005750806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1470205318842377, dt = 0.0036529331731912735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 294.57 us (93.9%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (63.6%)
Info: cfl dt = 0.003652933237475756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1077e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.42540549232449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.150673465057429, dt = 0.003652933237475756
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 313.68 us (94.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.9%)
Info: cfl dt = 0.0036529333039199024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4806e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.90799183706221 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1543263982949048, dt = 0.0036529333039199024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 313.88 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.6%)
Info: cfl dt = 0.0036529333725850857 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.7130e+05 | 65536 | 2 | 1.391e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.5714304070754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1579793315988247, dt = 0.0036529333725850857
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 293.43 us (93.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.6%)
Info: cfl dt = 0.0036529334435340876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6187e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.67910083892725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1616322649714097, dt = 0.0036529334435340876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 348.24 us (94.7%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.2%)
Info: cfl dt = 0.003652933516831126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7282e+05 | 65536 | 2 | 1.758e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.80982132434315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1652851984149437, dt = 0.003652933516831126
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 319.15 us (94.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.7%)
Info: cfl dt = 0.0036529335925418785 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6233e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.77226416198572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1689381319317749, dt = 0.0036529335925418785
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.5%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 360.81 us (94.6%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.5%)
Info: cfl dt = 0.003652933670733503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6720e+05 | 65536 | 2 | 1.403e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.75004541622226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1725910655243168, dt = 0.003652933670733503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 301.43 us (94.0%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (65.4%)
Info: cfl dt = 0.0036529337514746743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5231e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.76078687252118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1762439991950504, dt = 0.0036529337514746743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.7%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 318.89 us (91.6%)
LB move op cnt : 0
LB apply : 9.09 us (2.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.1%)
Info: cfl dt = 0.0036529338348355936 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6756e+05 | 65536 | 2 | 1.402e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.82160998049241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.179896932946525, dt = 0.0036529338348355936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.8%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 272.92 us (93.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.8%)
Info: cfl dt = 0.0036529339208880257 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6485e+05 | 65536 | 2 | 1.410e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.2781064854549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1835498667813606, dt = 0.0036529339208880257
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 337.68 us (94.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.3%)
Info: cfl dt = 0.003652934009705321 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6597e+05 | 65536 | 2 | 1.406e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.50297110728746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1872028007022486, dt = 0.003652934009705321
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 321.44 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.9%)
Info: cfl dt = 0.0036529341013624406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3072e+05 | 65536 | 2 | 1.982e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.36366415321541 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.190855734711954, dt = 0.0036529341013624406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 324.50 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.1%)
Info: cfl dt = 0.0036529341959359828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1768e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.81218324551935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1945086688133164, dt = 0.0036529341959359828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 312.46 us (94.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (61.3%)
Info: cfl dt = 0.00365293429350421 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3104e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.49376073467916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1981616030092523, dt = 0.00365293429350421
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 20.00 us (5.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 328.74 us (89.8%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.2%)
Info: cfl dt = 0.0036529343941470753 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4645e+05 | 65536 | 2 | 1.892e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.51909636096474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2018145373027564, dt = 0.0036529343941470753
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 308.86 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (62.5%)
Info: cfl dt = 0.0036529344979462502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2955e+05 | 65536 | 2 | 1.989e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.12903677356249 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2054674716969036, dt = 0.0036529344979462502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 345.51 us (94.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.1%)
Info: cfl dt = 0.003652934604985149 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2120e+05 | 65536 | 2 | 2.040e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.45324976573964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.20912040619485, dt = 0.003652934604985149
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.4%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 388.81 us (95.2%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (71.8%)
Info: cfl dt = 0.00365293471534896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3858e+05 | 65536 | 2 | 1.936e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.94040016596655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2127733407998351, dt = 0.00365293471534896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.4%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 369.08 us (95.2%)
LB move op cnt : 0
LB apply : 3.16 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.2%)
Info: cfl dt = 0.0036529348291246704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1199e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.67078932008852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.216426275515184, dt = 0.0036529348291246704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 341.57 us (94.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.9%)
Info: cfl dt = 0.0036529349464010977 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8835e+05 | 65536 | 2 | 1.688e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.92765961548147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2200792103443088, dt = 0.0036529349464010977
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 365.20 us (94.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (67.7%)
Info: cfl dt = 0.0036529350672689104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9563e+05 | 65536 | 2 | 1.657e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.3871923002201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.22373214529071, dt = 0.0036529350672689104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 350.99 us (94.7%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.0%)
Info: cfl dt = 0.003652935191820665 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4578e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.4516475462179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2273850803579789, dt = 0.003652935191820665
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 317.48 us (94.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.1%)
Info: cfl dt = 0.003652935320150833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5727e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.7568896812199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2310380155497995, dt = 0.003652935320150833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 312.52 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (65.3%)
Info: cfl dt = 0.0036529354523558238 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5918e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.14081730300911 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2346909508699504, dt = 0.0036529354523558238
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (0.6%)
patch tree reduce : 1.66 us (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.1%)
LB compute : 924.46 us (97.9%)
LB move op cnt : 0
LB apply : 4.19 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.4%)
Info: cfl dt = 0.003652935588534021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3393e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.07320010385143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2383438863223062, dt = 0.003652935588534021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 297.19 us (93.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.5%)
Info: cfl dt = 0.0036529357287858073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3417e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.12220627781907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2419968219108402, dt = 0.0036529357287858073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 353.72 us (94.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.0%)
Info: cfl dt = 0.0036529358732135964 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4096e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.48471924295252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.245649757639626, dt = 0.0036529358732135964
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 337.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.5%)
Info: cfl dt = 0.003652936021921864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5579e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.46056099583672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2493026935128395, dt = 0.003652936021921864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 350.00 us (94.6%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.8%)
Info: cfl dt = 0.0036529361750171725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9627e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.51648332150349 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2529556295347615, dt = 0.0036529361750171725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.5%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 345.69 us (94.7%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (64.5%)
Info: cfl dt = 0.0036529363326082104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5398e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.09550366869549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2566085657097787, dt = 0.0036529363326082104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 320.98 us (94.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.8%)
Info: cfl dt = 0.0036529364948058142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3937e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.16400467661624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2602615020423868, dt = 0.0036529364948058142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.4%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 356.00 us (94.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.1%)
Info: cfl dt = 0.003652936661723004 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4991e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.28066876506162 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2639144385371928, dt = 0.003652936661723004
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 337.21 us (94.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.6%)
Info: cfl dt = 0.0036529368334750137 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5321e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.94281895112259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2675673751989158, dt = 0.0036529368334750137
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 334.32 us (94.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.4%)
Info: cfl dt = 0.003652937010179323 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5496e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.29240424253393 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2712203120323908, dt = 0.003652937010179323
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.4%)
LB compute : 325.74 us (94.0%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.2%)
Info: cfl dt = 0.0036529371919556877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5086e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.47126509960178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.27487324904257, dt = 0.0036529371919556877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 292.65 us (93.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (62.0%)
Info: cfl dt = 0.003652937378926174 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4987e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.27131387438153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2785261862345256, dt = 0.003652937378926174
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 297.95 us (93.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.8%)
Info: cfl dt = 0.003652937571215187 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5462e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.22496156169524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2821791236134519, dt = 0.003652937571215187
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.9%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 282.25 us (93.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (60.1%)
Info: cfl dt = 0.0036529377689495063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4309e+05 | 65536 | 2 | 1.910e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.8459304813351 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.285832061184667, dt = 0.0036529377689495063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 308.67 us (93.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.4%)
Info: cfl dt = 0.0036529379722583166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1648e+05 | 65536 | 2 | 2.071e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.505427523926414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2894849989536166, dt = 0.0036529379722583166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.63 us (1.3%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 592.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 343.98 us (95.2%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.6%)
Info: cfl dt = 0.003652938181273243 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5130e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.55899804003072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2931379369258749, dt = 0.003652938181273243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (2.0%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 277.86 us (93.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.4%)
Info: cfl dt = 0.003652938396128383 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2256e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.79191834119004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2967908751071482, dt = 0.003652938396128383
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 312.10 us (93.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (64.9%)
Info: cfl dt = 0.0036529386169603362 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3101e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.48655118000829 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3004438135032765, dt = 0.0036529386169603362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 301.73 us (94.0%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.4%)
Info: cfl dt = 0.0036529388439082446 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4507e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.30948809157077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.304096752120237, dt = 0.0036529388439082446
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 323.52 us (94.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.3%)
Info: cfl dt = 0.003652939077113822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7193e+05 | 65536 | 2 | 1.762e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.63209482530898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.307749690964145, dt = 0.003652939077113822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 281.13 us (93.8%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.0%)
Info: cfl dt = 0.003652939316721389 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3952e+05 | 65536 | 2 | 1.930e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.12833683355792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.311402630041259, dt = 0.003652939316721389
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.6%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 293.02 us (94.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (64.6%)
Info: cfl dt = 0.003652939562877907 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4066e+05 | 65536 | 2 | 1.924e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.35806784561532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3150555693579802, dt = 0.003652939562877907
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 303.74 us (94.0%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.2%)
Info: cfl dt = 0.003652939815733013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4198e+05 | 65536 | 2 | 1.916e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.6218668048989 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3187085089208581, dt = 0.003652939815733013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 278.18 us (93.2%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.4%)
Info: cfl dt = 0.0036529400754390564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4366e+05 | 65536 | 2 | 1.907e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.95931954317986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3223614487365911, dt = 0.0036529400754390564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 293.58 us (93.7%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.8%)
Info: cfl dt = 0.003652940342151131 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4210e+05 | 65536 | 2 | 1.916e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.64661328177887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3260143888120302, dt = 0.003652940342151131
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.4%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 341.54 us (94.4%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.3%)
Info: cfl dt = 0.0036529406160271103 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4263e+05 | 65536 | 2 | 1.913e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.752448349991 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3296673291541812, dt = 0.0036529406160271103
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 310.24 us (94.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (60.4%)
Info: cfl dt = 0.0036529408972276857 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6163e+05 | 65536 | 2 | 1.812e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.56470593430609 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3333202697702082, dt = 0.0036529408972276857
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 314.97 us (94.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.4%)
Info: cfl dt = 0.0036529411859164 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2480e+05 | 65536 | 2 | 2.018e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.17518615020678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.336973210667436, dt = 0.0036529411859164
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.3%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 381.33 us (95.1%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.4%)
Info: cfl dt = 0.003652941482259686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4524e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.34241920240898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3406261518533522, dt = 0.003652941482259686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 307.83 us (94.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.9%)
Info: cfl dt = 0.0036529417864268987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5733e+05 | 65536 | 2 | 1.433e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.76887419630287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.344279093335612, dt = 0.0036529417864268987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.4%)
LB compute : 305.16 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.3%)
Info: cfl dt = 0.0036529420985903518 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5392e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.08521513498205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3479320351220387, dt = 0.0036529420985903518
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 323.38 us (94.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (65.2%)
Info: cfl dt = 0.0036529424189253585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5286e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.87119753657169 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3515849772206292, dt = 0.0036529424189253585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 339.24 us (94.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.0%)
Info: cfl dt = 0.003652942747610269 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5364e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.02758491292559 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3552379196395545, dt = 0.003652942747610269
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 296.60 us (94.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (65.0%)
Info: cfl dt = 0.003652943084826499 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7545e+05 | 65536 | 2 | 1.746e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.3384991596325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3588908623871647, dt = 0.003652943084826499
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 318.65 us (94.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (70.0%)
Info: cfl dt = 0.0036529434307585765 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4151e+05 | 65536 | 2 | 1.919e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.52860824953201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3625438054719912, dt = 0.0036529434307585765
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 334.22 us (94.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.7%)
Info: cfl dt = 0.003652943785594175 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4260e+05 | 65536 | 2 | 1.913e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.74710050416247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3661967489027498, dt = 0.003652943785594175
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 297.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.2%)
Info: cfl dt = 0.0036529441495241496 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5925e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.1538192769911 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.369849692688344, dt = 0.0036529441495241496
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 274.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (61.9%)
Info: cfl dt = 0.0036529445227425797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8133e+05 | 65536 | 2 | 1.719e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.5176748900953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.373502636837868, dt = 0.0036529445227425797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.4%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 367.99 us (95.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (63.2%)
Info: cfl dt = 0.003652944905446804 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4534e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.3625615837819 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3771555813606107, dt = 0.003652944905446804
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 332.85 us (94.7%)
LB move op cnt : 0
LB apply : 3.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.6%)
Info: cfl dt = 0.0036529452978374577 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0226e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.71823333246886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3808085262660574, dt = 0.0036529452978374577
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 331.87 us (94.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (63.7%)
Info: cfl dt = 0.0036529457001185147 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2646e+05 | 65536 | 2 | 2.007e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.50897706164069 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.384461471563895, dt = 0.0036529457001185147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.2%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 435.48 us (95.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.0%)
Info: cfl dt = 0.0036529461124973246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2671e+05 | 65536 | 2 | 2.006e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.55819315800568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3881144172640134, dt = 0.0036529461124973246
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.3%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 375.35 us (95.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (66.1%)
Info: cfl dt = 0.0036529465351846525 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2319e+05 | 65536 | 2 | 2.028e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.85193764364902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3917673633765106, dt = 0.0036529465351846525
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.4%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 378.45 us (95.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.3%)
Info: cfl dt = 0.003652946968394715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1878e+05 | 65536 | 2 | 2.056e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.96759615817737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3954203099116953, dt = 0.003652946968394715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.4%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 392.98 us (95.1%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (64.8%)
Info: cfl dt = 0.0036529474123452245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2038e+05 | 65536 | 2 | 2.046e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.28768825830555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.39907325688009, dt = 0.0036529474123452245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.3%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.2%)
LB compute : 434.38 us (95.6%)
LB move op cnt : 0
LB apply : 3.84 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.7%)
Info: cfl dt = 0.003652947867257426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2550e+05 | 65536 | 2 | 2.013e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.31618027200848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4027262042924353, dt = 0.003652947867257426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.7%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 351.88 us (92.7%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (64.5%)
Info: cfl dt = 0.003652948333356138 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1804e+05 | 65536 | 2 | 2.061e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.81922579006881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4063791521596927, dt = 0.003652948333356138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.2%)
patch tree reduce : 1.97 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 422.43 us (95.4%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.3%)
Info: cfl dt = 0.0036529488108697906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2336e+05 | 65536 | 2 | 2.027e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.88591676513411 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4100321004930487, dt = 0.0036529488108697906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.3%)
patch tree reduce : 2.28 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 397.55 us (95.2%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.1%)
Info: cfl dt = 0.003652949300030469 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2408e+05 | 65536 | 2 | 2.022e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.0312354587817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4136850493039186, dt = 0.003652949300030469
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.4%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 366.45 us (95.0%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.2%)
Info: cfl dt = 0.003652949801073952 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2007e+05 | 65536 | 2 | 2.048e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.22636755549615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4173379986039492, dt = 0.003652949801073952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 343.62 us (94.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (64.6%)
Info: cfl dt = 0.0036529503142397543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1876e+05 | 65536 | 2 | 2.056e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.96399688149695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4209909484050232, dt = 0.0036529503142397543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.4%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 381.92 us (94.9%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (61.8%)
Info: cfl dt = 0.003652950839771162 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3354e+05 | 65536 | 2 | 1.965e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.92971941487396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.424643898719263, dt = 0.003652950839771162
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 305.33 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.1%)
Info: cfl dt = 0.0036529513779152826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2564e+05 | 65536 | 2 | 2.013e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.3438401805747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.428296849559034, dt = 0.0036529513779152826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 591.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 346.63 us (94.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (72.0%)
Info: cfl dt = 0.0036529519289230793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2306e+05 | 65536 | 2 | 2.029e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.82621558632208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4319498009369493, dt = 0.0036529519289230793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.6%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 353.81 us (94.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.5%)
Info: cfl dt = 0.0036529524930494156 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4281e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.85609117826745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4356027528658724, dt = 0.0036529524930494156
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 350.86 us (94.5%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.9%)
Info: cfl dt = 0.0036529530705530933 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9681e+05 | 65536 | 2 | 1.652e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.62448789509489 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4392557053589217, dt = 0.0036529530705530933
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 320.09 us (94.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.8%)
Info: cfl dt = 0.003652953661696903 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2985e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.25392412904267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4429086584294748, dt = 0.003652953661696903
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (0.8%)
patch tree reduce : 1.88 us (0.2%)
gen split merge : 1.01 us (0.1%)
split / merge op : 0/0
apply split merge : 1.39 us (0.2%)
LB compute : 766.08 us (97.3%)
LB move op cnt : 0
LB apply : 3.44 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.0%)
Info: cfl dt = 0.003652954266747654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.9249e+05 | 65536 | 2 | 2.241e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.69181904985024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4465616120911717, dt = 0.003652954266747654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 358.34 us (94.8%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.0%)
Info: cfl dt = 0.003652954885976227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5570e+05 | 65536 | 2 | 1.438e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.4423939519846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4502145663579193, dt = 0.003652954885976227
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 307.33 us (94.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (63.9%)
Info: cfl dt = 0.00365295551965761 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5105e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.50903751219785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4538675212438956, dt = 0.00365295551965761
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 291.77 us (94.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.0%)
Info: cfl dt = 0.0036529561680709454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5265e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.83075144186557 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4575204767635532, dt = 0.0036529561680709454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 292.74 us (93.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.8%)
Info: cfl dt = 0.00365295683149957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4943e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.18439864736182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4611734329316242, dt = 0.00365295683149957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 292.85 us (93.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (63.0%)
Info: cfl dt = 0.003652957510231057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5440e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.18174691502513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4648263897631237, dt = 0.003652957510231057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 322.93 us (94.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.2%)
Info: cfl dt = 0.003652958204557264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5215e+05 | 65536 | 2 | 1.449e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.72951264257557 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4684793472733548, dt = 0.003652958204557264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 316.35 us (94.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.9%)
Info: cfl dt = 0.0036529589147743713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5896e+05 | 65536 | 2 | 1.428e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.0959448951288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.472132305477912, dt = 0.0036529589147743713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 339.81 us (94.6%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (65.7%)
Info: cfl dt = 0.0036529596411829265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5321e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.9420975287011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4757852643926865, dt = 0.0036529596411829265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 315.63 us (94.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (65.9%)
Info: cfl dt = 0.0036529603840878906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5341e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.983127166435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4794382240338695, dt = 0.0036529603840878906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.8%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 328.03 us (94.2%)
LB move op cnt : 0
LB apply : 3.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (63.6%)
Info: cfl dt = 0.003652961143798679 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5959e+05 | 65536 | 2 | 1.426e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.22204093876366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4830911844179573, dt = 0.003652961143798679
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.0%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.43 us (0.5%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 290.64 us (93.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.8%)
Info: cfl dt = 0.003652961920629208 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5076e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.45163078184827 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.486744145561756, dt = 0.003652961920629208
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 320.06 us (94.4%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.5%)
Info: cfl dt = 0.003652962714897937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5917e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.13817646402721 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4903971074823852, dt = 0.003652962714897937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 289.45 us (93.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.9%)
Info: cfl dt = 0.003652963526927915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5837e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.97854890203996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4940500701972832, dt = 0.003652963526927915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 310.45 us (94.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.0%)
Info: cfl dt = 0.0036529643570468195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5178e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.65618315073263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4977030337242112, dt = 0.0036529643570468195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (1.8%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 334.25 us (94.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (65.0%)
Info: cfl dt = 0.0036529652055870116 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5465e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.23065072705484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.501355998081258, dt = 0.0036529652055870116
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 315.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (62.9%)
Info: cfl dt = 0.0036529660728855692 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5610e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.52273001478578 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.505008963286845, dt = 0.0036529660728855692
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (1.9%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 326.74 us (94.3%)
LB move op cnt : 0
LB apply : 3.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (65.4%)
Info: cfl dt = 0.0036529669592843396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4973e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.24381305478931 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5086619293597308, dt = 0.0036529669592843396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.4%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 366.94 us (95.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.0%)
Info: cfl dt = 0.0036529678651299846 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4879e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.05571361497861 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5123148963190152, dt = 0.0036529678651299846
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 337.60 us (94.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.9%)
Info: cfl dt = 0.0036529687907740204 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5917e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.1382489350227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5159678641841452, dt = 0.0036529687907740204
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 320.61 us (94.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.0%)
Info: cfl dt = 0.003652969736572867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4511e+05 | 65536 | 2 | 1.899e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.25193264420787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5196208329749192, dt = 0.003652969736572867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 310.70 us (94.2%)
LB move op cnt : 0
LB apply : 3.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.4%)
Info: cfl dt = 0.0036529707028878948 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1737e+05 | 65536 | 2 | 2.065e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.68444723384394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.523273802711492, dt = 0.0036529707028878948
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.4%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.3%)
LB compute : 389.57 us (95.0%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.9%)
Info: cfl dt = 0.003652971690085467 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1980e+05 | 65536 | 2 | 2.049e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.17223790727272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5269267734143799, dt = 0.003652971690085467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.3%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 402.98 us (95.5%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.3%)
Info: cfl dt = 0.0036529726985369882 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2568e+05 | 65536 | 2 | 2.012e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.35194974376677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5305797451044654, dt = 0.0036529726985369882
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.7%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 333.58 us (94.4%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.4%)
Info: cfl dt = 0.00365297372861895 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2203e+05 | 65536 | 2 | 2.035e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.6191316717083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5342327178030024, dt = 0.00365297372861895
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 364.80 us (94.9%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.2%)
Info: cfl dt = 0.0036529747807129737 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1564e+05 | 65536 | 2 | 2.076e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.33810931498148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5378856915316215, dt = 0.0036529747807129737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.5%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 375.43 us (94.9%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (66.7%)
Info: cfl dt = 0.0036529758552058633 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5063e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.42482648371526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5415386663123345, dt = 0.0036529758552058633
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (0.7%)
patch tree reduce : 1.84 us (0.2%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.03 us (0.1%)
LB compute : 762.90 us (97.4%)
LB move op cnt : 0
LB apply : 4.17 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.4%)
Info: cfl dt = 0.003652976952489647 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4977e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.25228881456634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5451916421675405, dt = 0.003652976952489647
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.5%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 332.30 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (63.7%)
Info: cfl dt = 0.0036529780729616227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4839e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.97511204446634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.54884461912003, dt = 0.0036529780729616227
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 330.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.4%)
Info: cfl dt = 0.0036529792170244095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5161e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.62171940771846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5524975971929917, dt = 0.0036529792170244095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.5%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 354.82 us (94.7%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.1%)
Info: cfl dt = 0.0036529803850859923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4600e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.49682109364633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.556150576410016, dt = 0.0036529803850859923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 320.35 us (94.1%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.2%)
Info: cfl dt = 0.0036529815775597687 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5466e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.23364408547553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.559803556795102, dt = 0.0036529815775597687
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 345.00 us (94.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.4%)
Info: cfl dt = 0.003652982794864593 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9222e+05 | 65536 | 2 | 1.671e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.703733370022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5634565383726617, dt = 0.003652982794864593
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 296.47 us (93.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (63.3%)
Info: cfl dt = 0.0036529840374248277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5991e+05 | 65536 | 2 | 1.425e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.28849759328288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5671095211675263, dt = 0.0036529840374248277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.9%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 303.82 us (93.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.9%)
Info: cfl dt = 0.003652985305670394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8259e+05 | 65536 | 2 | 1.713e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.77268682407073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5707625052049512, dt = 0.003652985305670394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.9%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.63 us (0.6%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 276.27 us (93.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (61.3%)
Info: cfl dt = 0.003652986600036807 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5357e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.01582794656998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5744154905106216, dt = 0.003652986600036807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 300.79 us (93.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (64.2%)
Info: cfl dt = 0.003652987920965237 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5460e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.22209525710515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5780684771106583, dt = 0.003652987920965237
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 314.29 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (59.9%)
Info: cfl dt = 0.003652989268902551 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8446e+05 | 65536 | 2 | 1.705e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.1467923233775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5817214650316236, dt = 0.003652989268902551
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.3%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 2.01 us (0.5%)
LB compute : 405.79 us (94.6%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.0%)
Info: cfl dt = 0.0036529906443013567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5772e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.84729306951222 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5853744543005261, dt = 0.0036529906443013567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (2.0%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 291.61 us (93.6%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.1%)
Info: cfl dt = 0.003652992047620056 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5169e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.63755655969067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5890274449448274, dt = 0.003652992047620056
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 334.83 us (94.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.1%)
Info: cfl dt = 0.003652993479322896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4394e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.08251148031589 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5926804369924474, dt = 0.003652993479322896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 335.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (70.6%)
Info: cfl dt = 0.0036529949398800055 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3301e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.89071049815615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5963334304717702, dt = 0.0036529949398800055
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 296.12 us (93.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.9%)
Info: cfl dt = 0.0036529964297674555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5914e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.13291240904582 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5999864254116503, dt = 0.0036529964297674555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.5%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 312.63 us (94.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.5%)
Info: cfl dt = 0.0036529979494673015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3310e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.90811022060966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6036394218414176, dt = 0.0036529979494673015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.9%)
patch tree reduce : 2.22 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 267.35 us (93.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (61.7%)
Info: cfl dt = 0.003652999499467632 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3918e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.12858611856906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6072924197908849, dt = 0.003652999499467632
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 320.46 us (94.2%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (66.4%)
Info: cfl dt = 0.003653001080262617 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3331e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.95032981288831 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6109454192903525, dt = 0.003653001080262617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (2.0%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 274.28 us (93.3%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.7%)
Info: cfl dt = 0.003653002692352561 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2895e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.075428863723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6145984203706152, dt = 0.003653002692352561
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 310.64 us (94.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (63.6%)
Info: cfl dt = 0.0036530043362439425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6205e+05 | 65536 | 2 | 1.810e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.65099323686431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6182514230629677, dt = 0.0036530043362439425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 307.69 us (93.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.3%)
Info: cfl dt = 0.0036530060124494714 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5489e+05 | 65536 | 2 | 1.847e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.21367324339039 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6219044273992116, dt = 0.0036530060124494714
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 322.01 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.1%)
Info: cfl dt = 0.003653007721488137 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4649e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.59588990546798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6255574334116611, dt = 0.003653007721488137
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 308.90 us (94.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 0.003653009463885251 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3037e+05 | 65536 | 2 | 1.984e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.29352398035064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6292104411331494, dt = 0.003653009463885251
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 344.52 us (94.7%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.0%)
Info: cfl dt = 0.003653011240172504 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2960e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.20541216078735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6328634505970347, dt = 0.003653011240172504
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.4%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 334.01 us (94.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.9%)
Info: cfl dt = 0.003653013050888007 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5072e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.44383423829167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6365164618372072, dt = 0.003653013050888007
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 316.51 us (94.4%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (63.2%)
Info: cfl dt = 0.003653014896576348 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4958e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.21465543323123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401694748880953, dt = 0.003653014896576348
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 298.22 us (94.0%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.5%)
Info: cfl dt = 0.003653016777788636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5520e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.34282206504889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6438224897846716, dt = 0.003653016777788636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.5%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 324.97 us (94.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.0%)
Info: cfl dt = 0.0036530186950825515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5277e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.85612735666818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6474755065624602, dt = 0.0036530186950825515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 310.87 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.6%)
Info: cfl dt = 0.003653020649022398 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9639e+05 | 65536 | 2 | 1.653e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.54258218378052 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6511285252575427, dt = 0.003653020649022398
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 337.45 us (94.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.0%)
Info: cfl dt = 0.00365302264017915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5078e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.45595931962211 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6547815459065651, dt = 0.00365302264017915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 282.44 us (93.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (61.4%)
Info: cfl dt = 0.003653024669130501 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4884e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.06723170657114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6584345685467443, dt = 0.003653024669130501
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 322.43 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.8%)
Info: cfl dt = 0.003653026736460917 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4739e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.7757647094445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6620875932158747, dt = 0.003653026736460917
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 318.71 us (94.3%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.0%)
Info: cfl dt = 0.0036530288427616808 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5359e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.02124532815498 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6657406199523357, dt = 0.0036530288427616808
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 291.92 us (93.7%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.2%)
Info: cfl dt = 0.0036530309886309456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2571e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.42502485091354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6693936487950973, dt = 0.0036530309886309456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 349.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.4%)
Info: cfl dt = 0.0036530331746737837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3109e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.50618930964836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6730466797837282, dt = 0.0036530331746737837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 311.12 us (94.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.0%)
Info: cfl dt = 0.0036530354015022375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3429e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.14718075304532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.676699712958402, dt = 0.0036530354015022375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.0%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 284.52 us (93.5%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.0%)
Info: cfl dt = 0.0036530376697353657 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2959e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.20368031248796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6803527483599043, dt = 0.0036530376697353657
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 284.77 us (93.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (60.7%)
Info: cfl dt = 0.0036530399799992973 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3317e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.92379595905756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6840057860296398, dt = 0.0036530399799992973
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.9%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 296.79 us (93.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.5%)
Info: cfl dt = 0.0036530423329272795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3204e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.69563843199738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.687658826009639, dt = 0.0036530423329272795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 290.55 us (93.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.3%)
Info: cfl dt = 0.003653044729159728 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3624e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.5398101627225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6913118683425663, dt = 0.003653044729159728
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 319.05 us (94.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.0%)
Info: cfl dt = 0.0036530471693442756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2360e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.00226878052369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6949649130717261, dt = 0.0036530471693442756
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.0%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 287.98 us (93.5%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.4%)
Info: cfl dt = 0.003653049654135824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2841e+05 | 65536 | 2 | 1.996e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.90040954329413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6986179602410705, dt = 0.003653049654135824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.3%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 361.47 us (94.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.0%)
Info: cfl dt = 0.0036530521841965946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3002e+05 | 65536 | 2 | 1.986e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.2241718320016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7022710098952063, dt = 0.0036530521841965946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 326.20 us (94.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.5%)
Info: cfl dt = 0.003653054760196177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2068e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.41777599997359 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.705924062079403, dt = 0.003653054760196177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.0%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 295.84 us (93.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.6%)
Info: cfl dt = 0.0036530573828115792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2733e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.75146666570753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7095771168395992, dt = 0.0036530573828115792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 320.18 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.9%)
Info: cfl dt = 0.0036530600527272757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2559e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.40187630069886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7132301742224108, dt = 0.0036530600527272757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 288.47 us (93.6%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.7%)
Info: cfl dt = 0.003653062770635263 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3193e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.67514525627364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7168832342751381, dt = 0.003653062770635263
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 294.34 us (93.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (59.8%)
Info: cfl dt = 0.003653065537235105 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2697e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.67999351337045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7205362970457734, dt = 0.003653065537235105
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 299.00 us (93.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.0%)
Info: cfl dt = 0.0036530683532339857 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4441e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.17910585470166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7241893625830085, dt = 0.0036530683532339857
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 323.78 us (94.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.6%)
Info: cfl dt = 0.0036530712193467573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3111e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.50986137685186 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7278424309362426, dt = 0.0036530712193467573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.7%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 291.99 us (93.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (64.0%)
Info: cfl dt = 0.0036530741362959924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4161e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.61655872878947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7314955021555893, dt = 0.0036530741362959924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 320.80 us (94.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.4%)
Info: cfl dt = 0.0036530771048120347 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3766e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.82417934922843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7351485762918852, dt = 0.0036530771048120347
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 330.38 us (94.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.7%)
Info: cfl dt = 0.003653080125633043 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4078e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.45122474275969 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7388016533966972, dt = 0.003653080125633043
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 292.57 us (93.8%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.8%)
Info: cfl dt = 0.003653083199505051 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2461e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.20622298812252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7424547335223304, dt = 0.003653083199505051
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.5%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 372.38 us (95.0%)
LB move op cnt : 0
LB apply : 3.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.1%)
Info: cfl dt = 0.0036530863271820122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2389e+05 | 65536 | 2 | 2.023e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.99490414954201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7461078167218353, dt = 0.0036530863271820122
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.3%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 410.35 us (95.4%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.8%)
Info: cfl dt = 0.0036530895094258483 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5649e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.60477344305635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7497609030490173, dt = 0.0036530895094258483
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.6%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 351.58 us (94.3%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (65.9%)
Info: cfl dt = 0.003653092747006503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4073e+05 | 65536 | 2 | 1.923e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.37531210891581 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.753413992558443, dt = 0.003653092747006503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 335.48 us (94.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.8%)
Info: cfl dt = 0.0036530960407019897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8909e+05 | 65536 | 2 | 1.684e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.0792514990052 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7570670853054495, dt = 0.0036530960407019897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 312.37 us (93.9%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.4%)
Info: cfl dt = 0.003653099391298444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5498e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.30202856423685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7607201813461515, dt = 0.003653099391298444
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 320.74 us (94.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (62.4%)
Info: cfl dt = 0.0036531027995901732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4901e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.10324634294659 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.76437328073745, dt = 0.0036531027995901732
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.4%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 345.08 us (94.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.5%)
Info: cfl dt = 0.0036531062663797036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4821e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.94192223737853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.76802638353704, dt = 0.0036531062663797036
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 313.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (62.8%)
Info: cfl dt = 0.003653109792477836 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0072e+05 | 65536 | 2 | 1.635e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.41223467589572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7716794898034196, dt = 0.003653109792477836
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 296.27 us (93.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (63.4%)
Info: cfl dt = 0.0036531133787036873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0458e+05 | 65536 | 2 | 1.620e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.1875861357973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7753325995958975, dt = 0.0036531133787036873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 332.75 us (94.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.8%)
Info: cfl dt = 0.0036531170258847522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5057e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.41697449443093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7789857129746012, dt = 0.0036531170258847522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.9%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 792.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 274.29 us (93.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (63.7%)
Info: cfl dt = 0.003653120734856941 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4554e+05 | 65536 | 2 | 1.897e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.34033581356115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7826388300004858, dt = 0.003653120734856941
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 313.32 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (62.3%)
Info: cfl dt = 0.0036531245064646387 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2612e+05 | 65536 | 2 | 2.010e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.4425639534268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7862919507353427, dt = 0.0036531245064646387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (1.2%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 821.00 ns (0.2%)
LB compute : 407.22 us (95.8%)
LB move op cnt : 0
LB apply : 4.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.3%)
Info: cfl dt = 0.0036531283415607504 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3118e+05 | 65536 | 2 | 1.979e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.45853571122363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7899450752418073, dt = 0.0036531283415607504
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 302.06 us (93.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.7%)
Info: cfl dt = 0.0036531322410067535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2631e+05 | 65536 | 2 | 2.008e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.4814074131199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7935982035833682, dt = 0.0036531322410067535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 791.00 ns (0.2%)
LB compute : 344.19 us (95.1%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (66.5%)
Info: cfl dt = 0.003653136205672745 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2618e+05 | 65536 | 2 | 2.009e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.45564633470613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.797251335824375, dt = 0.003653136205672745
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.4%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 342.13 us (95.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (65.6%)
Info: cfl dt = 0.003653140236437493 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2926e+05 | 65536 | 2 | 1.990e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.07344500111229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8009044720300476, dt = 0.003653140236437493
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.0%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 305.66 us (93.5%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (59.9%)
Info: cfl dt = 0.003653144334188487 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2730e+05 | 65536 | 2 | 2.002e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.67933068173132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.804557612266485, dt = 0.003653144334188487
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 592.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 339.95 us (94.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (66.5%)
Info: cfl dt = 0.003653148499821986 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2898e+05 | 65536 | 2 | 1.992e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.01748094528125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8082107566006735, dt = 0.003653148499821986
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 298.89 us (94.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.8%)
Info: cfl dt = 0.0036531527342430693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2540e+05 | 65536 | 2 | 2.014e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.29867981036818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8118639051004954, dt = 0.0036531527342430693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (1.2%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 672.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 832.00 ns (0.2%)
LB compute : 400.78 us (95.7%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (67.7%)
Info: cfl dt = 0.0036531570383656845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6413e+05 | 65536 | 2 | 1.800e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.07041693531437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8155170578347386, dt = 0.0036531570383656845
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 325.17 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.5%)
Info: cfl dt = 0.0036531614131127014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5685e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.67841809534656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8191702148731044, dt = 0.0036531614131127014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 317.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (60.8%)
Info: cfl dt = 0.003653165859415954 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3339e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.96983654724481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8228233762862172, dt = 0.003653165859415954
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 311.37 us (88.0%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (67.3%)
Info: cfl dt = 0.0036531703782162993 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8195e+05 | 65536 | 2 | 1.716e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.64846347665542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.826476542145633, dt = 0.0036531703782162993
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 307.69 us (93.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (62.9%)
Info: cfl dt = 0.0036531749704636555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4280e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.85883032076285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8301297125238494, dt = 0.0036531749704636555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.39 us (7.4%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 314.75 us (88.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.4%)
Info: cfl dt = 0.003653179637117063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5673e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.65457551585348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.833782887494313, dt = 0.003653179637117063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 337.73 us (94.4%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.4%)
Info: cfl dt = 0.0036531843791447246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4984e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.27139669255921 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.83743606713143, dt = 0.0036531843791447246
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 353.33 us (94.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.8%)
Info: cfl dt = 0.00365318919752406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7718e+05 | 65536 | 2 | 1.738e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.69160507612217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8410892515105748, dt = 0.00365318919752406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 318.76 us (94.0%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.4%)
Info: cfl dt = 0.0036531940932417522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4791e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.88388153902241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8447424407080988, dt = 0.0036531940932417522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.5%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 381.03 us (95.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (64.4%)
Info: cfl dt = 0.0036531990672937953 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3468e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.2291957248524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8483956348013406, dt = 0.0036531990672937953
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 365.14 us (94.7%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.2%)
Info: cfl dt = 0.003653204120685548 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4953e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.20926439198396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8520488338686345, dt = 0.003653204120685548
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 350.66 us (94.6%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (63.7%)
Info: cfl dt = 0.003653209254431778 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6178e+05 | 65536 | 2 | 1.419e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.66743438349175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.85570203798932, dt = 0.003653209254431778
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 296.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.4%)
Info: cfl dt = 0.003653214469556713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1322e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.92372213041025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8593552472437518, dt = 0.003653214469556713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 282.45 us (93.7%)
LB move op cnt : 0
LB apply : 3.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.3%)
Info: cfl dt = 0.0036532197670940876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6897e+05 | 65536 | 2 | 1.776e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.04463459413346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8630084617133085, dt = 0.0036532197670940876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 300.26 us (94.1%)
LB move op cnt : 0
LB apply : 3.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.7%)
Info: cfl dt = 0.003653225148087194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4475e+05 | 65536 | 2 | 1.901e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.18381373288112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8666616814804025, dt = 0.003653225148087194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 329.41 us (89.3%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.6%)
Info: cfl dt = 0.0036532306135889266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3263e+05 | 65536 | 2 | 1.970e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.7522540623487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8703149066284896, dt = 0.0036532306135889266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.6%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 322.89 us (94.2%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.6%)
Info: cfl dt = 0.0036532361646618365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6893e+05 | 65536 | 2 | 1.776e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.03673225281064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8739681372420787, dt = 0.0036532361646618365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 310.04 us (94.3%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.3%)
Info: cfl dt = 0.0036532418023781754 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4817e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.93805469879962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8776213734067404, dt = 0.0036532418023781754
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 345.38 us (94.9%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.4%)
Info: cfl dt = 0.0036532475278199415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4003e+05 | 65536 | 2 | 1.927e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.23680391598494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8812746152091187, dt = 0.0036532475278199415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.5%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 349.00 us (94.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (62.1%)
Info: cfl dt = 0.003653253342078934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2742e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.77342468681833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8849278627369386, dt = 0.003653253342078934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 314.62 us (94.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (64.0%)
Info: cfl dt = 0.003653259246256794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5261e+05 | 65536 | 2 | 1.448e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.83026398533819 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8885811160790176, dt = 0.003653259246256794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.6%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 350.04 us (94.4%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (64.7%)
Info: cfl dt = 0.0036532652414650586 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9514e+05 | 65536 | 2 | 1.659e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.29657977199008 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8922343753252744, dt = 0.0036532652414650586
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 346.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (67.4%)
Info: cfl dt = 0.0036532713288252036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3163e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.61907171665406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8958876405667395, dt = 0.0036532713288252036
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 317.78 us (94.4%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (63.5%)
Info: cfl dt = 0.003653277509468693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5307e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.921379896738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8995409118955648, dt = 0.003653277509468693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.0%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 316.55 us (93.5%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.8%)
Info: cfl dt = 0.003653283784537028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3877e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.05303236987454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9031941894050335, dt = 0.003653283784537028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.4%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 371.95 us (95.0%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (64.7%)
Info: cfl dt = 0.003653290155181791 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8583e+05 | 65536 | 2 | 1.699e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.42876099328494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9068474731895706, dt = 0.003653290155181791
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 308.81 us (94.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.4%)
Info: cfl dt = 0.0036532966225646954 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5379e+05 | 65536 | 2 | 1.444e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.06715360094769 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9105007633447524, dt = 0.0036532966225646954
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 335.80 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.8%)
Info: cfl dt = 0.0036533031878576306 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9927e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.12614976031824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.914154059967317, dt = 0.0036533031878576306
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 340.14 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.9%)
Info: cfl dt = 0.00365330985224271 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8142e+05 | 65536 | 2 | 1.718e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.54352452669539 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9178073631551746, dt = 0.00365330985224271
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 309.82 us (93.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (64.9%)
Info: cfl dt = 0.003653316616912318 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7150e+05 | 65536 | 2 | 1.764e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.55274185525903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9214606730074173, dt = 0.003653316616912318
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (2.1%)
patch tree reduce : 2.43 us (0.8%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 268.36 us (92.9%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.3%)
Info: cfl dt = 0.0036533234830691537 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5332e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.97412547546315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9251139896243297, dt = 0.0036533234830691537
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 327.80 us (94.5%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.5%)
Info: cfl dt = 0.0036533304519262857 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8391e+05 | 65536 | 2 | 1.707e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.04407235121582 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9287673131073988, dt = 0.0036533304519262857
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.1%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 319.91 us (93.0%)
LB move op cnt : 0
LB apply : 4.87 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (67.7%)
Info: cfl dt = 0.003653337524707185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8836e+05 | 65536 | 2 | 1.688e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.93742072287624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9324206435593252, dt = 0.003653337524707185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (2.0%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 268.71 us (93.1%)
LB move op cnt : 0
LB apply : 3.62 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.2%)
Info: cfl dt = 0.0036533447026457825 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2727e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.74519230411094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9360739810840324, dt = 0.0036533447026457825
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.9%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 274.83 us (93.7%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.7%)
Info: cfl dt = 0.003653351986986513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4810e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.92673994828611 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9397273257866783, dt = 0.003653351986986513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.3%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 375.66 us (95.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (66.1%)
Info: cfl dt = 0.0036533593789843557 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3428e+05 | 65536 | 2 | 1.960e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.0854946611652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9433806777736649, dt = 0.0036533593789843557
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 310.55 us (93.9%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.1%)
Info: cfl dt = 0.0036533668799048845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2402e+05 | 65536 | 2 | 2.023e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.02495947547382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.947034037152649, dt = 0.0036533668799048845
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 346.24 us (94.3%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.2%)
Info: cfl dt = 0.003653374491024311 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2942e+05 | 65536 | 2 | 1.989e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.11052320151475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.950687404032554, dt = 0.003653374491024311
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 331.11 us (94.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.0%)
Info: cfl dt = 0.0036533822136295352 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2799e+05 | 65536 | 2 | 1.998e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.8227432296502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9543407785235782, dt = 0.0036533822136295352
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 335.58 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.0%)
Info: cfl dt = 0.003653390049018181 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1900e+05 | 65536 | 2 | 2.054e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.01908475801835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9579941607372078, dt = 0.003653390049018181
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 370.73 us (94.9%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.7%)
Info: cfl dt = 0.003653397998498651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9570e+05 | 65536 | 2 | 1.656e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.41222016187518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9616475507862259, dt = 0.003653397998498651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 357.00 us (94.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.4%)
Info: cfl dt = 0.003653406063390166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6247e+05 | 65536 | 2 | 1.417e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.81181670675956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9653009487847246, dt = 0.003653406063390166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 307.73 us (94.2%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.2%)
Info: cfl dt = 0.0036534142450228113 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0108e+05 | 65536 | 2 | 1.634e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.49161175438714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9689543548481148, dt = 0.0036534142450228113
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.5%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 325.28 us (94.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.5%)
Info: cfl dt = 0.0036534225447375805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7417e+05 | 65536 | 2 | 1.752e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.09091715815788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9726077690931376, dt = 0.0036534225447375805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 293.28 us (93.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.0%)
Info: cfl dt = 0.0036534309638864212 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9053e+05 | 65536 | 2 | 1.678e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.37537839125406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9762611916378752, dt = 0.0036534309638864212
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.4%)
LB compute : 277.91 us (93.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.4%)
Info: cfl dt = 0.0036534395038322755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4750e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.80822659467987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9799146226017617, dt = 0.0036534395038322755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 278.62 us (93.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.1%)
Info: cfl dt = 0.00365344816594913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5068e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.44752221321428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.983568062105594, dt = 0.00365344816594913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 287.57 us (93.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (60.6%)
Info: cfl dt = 0.0036534569516220522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4922e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.15485376170798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9872215102715431, dt = 0.0036534569516220522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 288.26 us (93.8%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: cfl dt = 0.0036534658622472426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5331e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.97435218651233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9908749672231651, dt = 0.0036534658622472426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 307.89 us (93.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.8%)
Info: cfl dt = 0.00365347489923207 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3936e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.17634925177198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9945284330854125, dt = 0.00365347489923207
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 345.82 us (94.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.0%)
Info: cfl dt = 0.0036534840639951185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3252e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.80313738175776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9981819079846446, dt = 0.0018180920153554325
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 309.87 us (94.1%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.6%)
Info: cfl dt = 0.003653488635893796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0852e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.799361306627766 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1251.436355218 (s) [Godunov][rank=0]
running minmod hll
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.04 ms [DataInserterUtility][rank=0]
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 : 3.92 us (60.3%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (0.3%)
patch tree reduce : 1.04 us (0.3%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 384.03 us (97.2%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.15 us (2.6%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 399.39 us (94.0%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1102e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.42 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 319.62 us (93.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (65.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2924e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.13095543515765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003652931508385532, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 315.22 us (94.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3241e+05 | 65536 | 2 | 1.972e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.70153275440724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007305863016771064, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 315.87 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5486e+05 | 65536 | 2 | 1.847e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.20746936644379 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010958794525156596, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.5%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 333.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2716e+05 | 65536 | 2 | 2.003e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.64886207098534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014611726033542128, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.7%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 367.19 us (94.4%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (67.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2932e+05 | 65536 | 2 | 1.990e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.0810379230298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01826465754192766, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 303.20 us (93.8%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2466e+05 | 65536 | 2 | 2.019e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.1470587887628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021917589050313192, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 338.57 us (94.5%)
LB move op cnt : 0
LB apply : 3.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2097e+05 | 65536 | 2 | 2.042e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.4059356646647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025570520558698726, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 372.00 us (95.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (63.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.5814e+05 | 65536 | 2 | 2.539e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.79843829195018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02922345206708426, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.4%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 413.94 us (95.2%)
LB move op cnt : 0
LB apply : 4.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (63.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0023e+05 | 65536 | 2 | 2.183e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.24414301971496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03287638357546979, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (1.8%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 357.70 us (94.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (66.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2534e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.34893182770598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036529315083855325, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 284.10 us (93.7%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (64.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4348e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.98926250121272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04018224659224086, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 291.35 us (93.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3340e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.96651417055355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04383517810062639, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.5%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 378.39 us (95.1%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3731e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.68593010990391 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047488109609011925, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 372.06 us (94.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4165e+05 | 65536 | 2 | 1.918e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.55577382580495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05114104111739746, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 342.78 us (94.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4110e+05 | 65536 | 2 | 1.921e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.44617157240286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05479397262578299, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.6%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 296.15 us (94.1%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (62.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3070e+05 | 65536 | 2 | 1.982e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.35806618685689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.058446904134168524, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 327.39 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4033e+05 | 65536 | 2 | 1.926e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.29097291097274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06209983564255406, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 2.43 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 340.37 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3737e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.69731776902749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06575276715093958, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 304.11 us (94.1%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (59.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3622e+05 | 65536 | 2 | 1.949e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.46714058955476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06940569865932511, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 352.14 us (94.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3145e+05 | 65536 | 2 | 1.977e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.51005361434491 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07305863016771064, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 333.72 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2811e+05 | 65536 | 2 | 1.997e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.83826439188756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07671156167609616, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 320.87 us (88.8%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3228e+05 | 65536 | 2 | 1.972e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.67522353582333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08036449318448169, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 315.54 us (94.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (61.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3244e+05 | 65536 | 2 | 1.971e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.7072072008486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08401742469286722, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 305.00 us (94.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (57.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2226e+05 | 65536 | 2 | 2.034e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.66490810853159 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08767035620125274, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.4%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 376.34 us (95.0%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3396e+05 | 65536 | 2 | 1.962e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.01324029685378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09132328770963827, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 310.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2991e+05 | 65536 | 2 | 1.986e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.20095523096305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0949762192180238, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 337.68 us (94.2%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (66.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3441e+05 | 65536 | 2 | 1.960e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.10240794734572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09862915072640932, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.0%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 319.40 us (93.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3160e+05 | 65536 | 2 | 1.976e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.53889054053629 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10228208223479485, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 334.83 us (94.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3245e+05 | 65536 | 2 | 1.971e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.70896038079056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10593501374318037, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (0.9%)
patch tree reduce : 2.01 us (0.3%)
gen split merge : 982.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.43 us (0.2%)
LB compute : 656.65 us (96.8%)
LB move op cnt : 0
LB apply : 4.11 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (68.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2834e+05 | 65536 | 2 | 1.996e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.88506204955792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1095879452515659, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.4%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 331.14 us (94.3%)
LB move op cnt : 0
LB apply : 4.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3461e+05 | 65536 | 2 | 1.959e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.14283191434545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11324087675995143, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.5%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 329.75 us (94.6%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2754e+05 | 65536 | 2 | 2.001e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.72495399353336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11689380826833695, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 344.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3725e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.7383282539955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12054673977672248, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.6%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 335.57 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2944e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.17183149836937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.124199671285108, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 295.64 us (93.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3089e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.46365274720655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12785260279349353, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.4%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 357.21 us (94.9%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (63.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0541e+05 | 65536 | 2 | 2.146e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.284390479630204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13150553430187906, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 415.89 us (95.5%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1088e+05 | 65536 | 2 | 2.108e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.382095650819906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13515846581026458, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.4%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.52 us (0.4%)
LB compute : 381.25 us (94.9%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3293e+05 | 65536 | 2 | 1.968e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.80649293676504 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1388113973186501, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 322.52 us (94.3%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3136e+05 | 65536 | 2 | 1.978e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.49209004041535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14246432882703564, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 295.86 us (93.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2417e+05 | 65536 | 2 | 2.022e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.04826484570013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14611726033542116, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.3%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 385.28 us (95.3%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8710e+05 | 65536 | 2 | 1.693e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.67540050815361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1497701918438067, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 315.53 us (94.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4209e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.71004263210328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15342312335219221, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 327.57 us (94.1%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0659e+05 | 65536 | 2 | 2.138e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.521662492318775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15707605486057774, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 345.11 us (94.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2071e+05 | 65536 | 2 | 1.558e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.42004489819792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16072898636896327, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 316.03 us (93.9%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (63.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7399e+05 | 65536 | 2 | 1.752e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.04602142078221 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1643819178773488, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.3%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 381.86 us (95.3%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2210e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.69939013780754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16803484938573432, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.5%)
patch tree reduce : 2.54 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 366.77 us (94.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (62.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1230e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.7326379587346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17168778089411985, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.6%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 371.95 us (94.8%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (58.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5051e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.400771690298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17534071240250537, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.4%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 327.31 us (88.9%)
LB move op cnt : 0
LB apply : 25.54 us (6.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8841e+05 | 65536 | 2 | 1.687e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.93814888594335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1789936439108909, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.4%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 369.41 us (94.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4771e+05 | 65536 | 2 | 1.885e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.77196885805333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18264657541927642, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.7%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 334.36 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4199e+05 | 65536 | 2 | 1.916e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.62394568800309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18629950692766195, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.4%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 355.90 us (94.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (65.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6796e+05 | 65536 | 2 | 1.781e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.83503592486424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18995243843604748, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.4%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 376.55 us (94.8%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5349e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.99743474279717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.193605369944433, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 324.05 us (94.2%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1665e+05 | 65536 | 2 | 2.070e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.54016025336795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19725830145281853, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 336.13 us (94.4%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3945e+05 | 65536 | 2 | 1.931e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.1150929125505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20091123296120406, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 297.88 us (94.0%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2856e+05 | 65536 | 2 | 1.995e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.92924556653338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20456416446958958, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 300.87 us (93.9%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4290e+05 | 65536 | 2 | 1.911e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.80740191964945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2082170959779751, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 331.09 us (94.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3468e+05 | 65536 | 2 | 1.958e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.15680404377821 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21187002748636063, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 327.29 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3396e+05 | 65536 | 2 | 1.962e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.01357973901972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21552295899474616, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 305.78 us (88.1%)
LB move op cnt : 0
LB apply : 24.76 us (7.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3842e+05 | 65536 | 2 | 1.937e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.90871644293432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2191758905031317, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.5%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 300.31 us (87.9%)
LB move op cnt : 0
LB apply : 25.65 us (7.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2201e+05 | 65536 | 2 | 2.035e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.61488798892367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2228288220115172, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.4%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 377.81 us (95.1%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (63.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7764e+05 | 65536 | 2 | 1.735e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.7773680527966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22648175351990274, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (0.9%)
patch tree reduce : 1.92 us (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.2%)
LB compute : 614.94 us (96.8%)
LB move op cnt : 0
LB apply : 3.82 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7224e+05 | 65536 | 2 | 1.761e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.69428224046648 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23013468502828827, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 311.26 us (94.0%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6667e+05 | 65536 | 2 | 1.787e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.57593932707758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2337876165366738, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 315.22 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5645e+05 | 65536 | 2 | 1.436e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.59135844241956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23744054804505932, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 329.72 us (94.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4222e+05 | 65536 | 2 | 1.915e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.66979085324563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24109347955344484, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 358.78 us (94.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3088e+05 | 65536 | 2 | 1.981e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.39553032885777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24474641106183037, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 301.75 us (93.7%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (60.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3076e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.43622610360212 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2483993425702159, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 353.28 us (94.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (66.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5046e+05 | 65536 | 2 | 1.870e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.32360341176039 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2520522740786014, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.1%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 291.84 us (93.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (67.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4997e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.2912449849644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25570520558698695, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 278.26 us (93.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4712e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.71907513246917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2593581370953725, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 293.17 us (93.7%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4544e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.38214403152955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.263011068603758, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 288.17 us (93.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5938e+05 | 65536 | 2 | 1.427e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.180758243977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26666400011214353, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.2%)
patch tree reduce : 2.40 us (0.8%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 273.27 us (92.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (64.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9185e+05 | 65536 | 2 | 1.672e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.63021378779705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27031693162052906, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.5%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 336.31 us (94.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3925e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.140905828716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2739698631289146, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.9%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 277.56 us (93.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (65.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6836e+05 | 65536 | 2 | 1.779e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.91544403313667 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2776227946373001, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 307.92 us (93.8%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (61.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1404e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.08243082510184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28127572614568563, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 280.89 us (93.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (66.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4084e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.46060843140167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28492865765407116, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 305.07 us (93.9%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4237e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.76614586681188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2885815891624567, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 382.81 us (94.8%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (67.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3436e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.15923411524632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2922345206708422, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.7%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 342.77 us (94.2%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0946e+05 | 65536 | 2 | 1.601e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.16258973698683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29588745217922774, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 348.35 us (94.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (64.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0426e+05 | 65536 | 2 | 1.621e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.11917037905673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29954038368761327, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.5%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 357.80 us (94.6%)
LB move op cnt : 0
LB apply : 4.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3552e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.39217641665738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3031933151959988, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 344.92 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4396e+05 | 65536 | 2 | 1.905e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.01920779448984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3068462467043843, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 341.91 us (94.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4677e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.6498139325717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31049917821276984, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 337.10 us (94.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3756e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.80159734621401 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31415210972115537, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 343.86 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3559e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.4064510689596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3178050412295409, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 328.86 us (94.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2952e+05 | 65536 | 2 | 1.989e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.12297115198763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3214579727379264, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 347.19 us (94.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3520e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.32704564018657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32511090424631195, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.6%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 354.06 us (94.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7037e+05 | 65536 | 2 | 1.769e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.31804229189974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3287638357546975, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 312.35 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (59.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2349e+05 | 65536 | 2 | 2.026e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.91245080849232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.332416767263083, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 351.81 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0991e+05 | 65536 | 2 | 1.599e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.25241228628143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33606969877146853, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 342.70 us (94.6%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9398e+05 | 65536 | 2 | 1.663e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.05674632494728 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33972263027985405, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.9%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 286.48 us (93.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3975e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.24151292401879 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3433755617882396, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.9%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 314.24 us (94.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (60.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4083e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.4569668555733 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3470284932966251, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.5%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 349.11 us (94.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.6%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4689e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.67303179192457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35068142480501063, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.6%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 341.27 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.5%)
Info: cfl dt = 0.003652931508385533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0855e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.9799824291433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35433435631339616, dt = 0.003652931508385533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 322.98 us (94.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.6%)
Info: cfl dt = 0.003652931508385534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4269e+05 | 65536 | 2 | 1.912e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.76473149915786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3579872878217817, dt = 0.003652931508385534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.4%)
patch tree reduce : 1.77 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.3%)
LB compute : 389.26 us (95.2%)
LB move op cnt : 0
LB apply : 3.41 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.4%)
Info: cfl dt = 0.0036529315083855345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3794e+05 | 65536 | 2 | 1.939e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.81089704331933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3616402193301672, dt = 0.0036529315083855345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 302.31 us (94.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.1%)
Info: cfl dt = 0.0036529315083855354 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4160e+05 | 65536 | 2 | 1.919e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.54542354805311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36529315083855274, dt = 0.0036529315083855354
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 325.65 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.1%)
Info: cfl dt = 0.003652931508385536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4470e+05 | 65536 | 2 | 1.901e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.16740346673858 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36894608234693826, dt = 0.003652931508385536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 309.16 us (94.2%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.5%)
Info: cfl dt = 0.003652931508385537 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3508e+05 | 65536 | 2 | 1.956e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.23752122302884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3725990138553238, dt = 0.003652931508385537
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 21.29 us (6.3%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 299.93 us (88.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (60.3%)
Info: cfl dt = 0.003652931508385537 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4167e+05 | 65536 | 2 | 1.918e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.55926107064482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3762519453637093, dt = 0.003652931508385537
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 293.26 us (93.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (60.6%)
Info: cfl dt = 0.0036529315083855384 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3963e+05 | 65536 | 2 | 1.930e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.15014935675332 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37990487687209484, dt = 0.0036529315083855384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 297.99 us (93.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (63.4%)
Info: cfl dt = 0.00365293150838554 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3410e+05 | 65536 | 2 | 1.962e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.04142262757394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38355780838048037, dt = 0.00365293150838554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 339.23 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (68.2%)
Info: cfl dt = 0.0036529315083855423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3570e+05 | 65536 | 2 | 1.952e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.36198088028796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3872107398888659, dt = 0.0036529315083855423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.0%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 292.64 us (93.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (67.9%)
Info: cfl dt = 0.003652931508385544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3665e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.55191305381595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3908636713972514, dt = 0.003652931508385544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.5%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 385.85 us (94.9%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.3%)
Info: cfl dt = 0.0036529315083855467 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4214e+05 | 65536 | 2 | 1.915e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.65400042104253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39451660290563695, dt = 0.0036529315083855467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 314.14 us (94.1%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.0%)
Info: cfl dt = 0.0036529315083855506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3642e+05 | 65536 | 2 | 1.948e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.50741862571094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3981695344140225, dt = 0.0036529315083855506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 324.03 us (94.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.1%)
Info: cfl dt = 0.003652931508385554 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5631e+05 | 65536 | 2 | 1.839e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.49870207147153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.401822465922408, dt = 0.003652931508385554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 313.14 us (94.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (63.6%)
Info: cfl dt = 0.003652931508385559 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2842e+05 | 65536 | 2 | 1.995e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.90138597955948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4054753974307935, dt = 0.003652931508385559
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 305.08 us (93.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.2%)
Info: cfl dt = 0.0036529315083855644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1769e+05 | 65536 | 2 | 2.063e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.74912420842862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4091283289391791, dt = 0.0036529315083855644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 362.91 us (94.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.5%)
Info: cfl dt = 0.0036529315083855705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1073e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.41846067614107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4127812604475647, dt = 0.0036529315083855705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 315.00 us (94.2%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.6%)
Info: cfl dt = 0.0036529315083855796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8871e+05 | 65536 | 2 | 1.686e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.99822111153507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4164341919559503, dt = 0.0036529315083855796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.4%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.36 us (0.3%)
LB compute : 376.83 us (95.1%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.9%)
Info: cfl dt = 0.003652931508385589 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0726e+05 | 65536 | 2 | 1.609e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.72044124016908 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42008712346433585, dt = 0.003652931508385589
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 325.43 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.3%)
Info: cfl dt = 0.0036529315083856004 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4804e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.90381694682436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42374005497272144, dt = 0.0036529315083856004
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 337.90 us (94.4%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.6%)
Info: cfl dt = 0.0036529315083856143 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3732e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.68669794735298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.427392986481107, dt = 0.0036529315083856143
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 346.78 us (94.8%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.0%)
Info: cfl dt = 0.003652931508385631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3061e+05 | 65536 | 2 | 1.982e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.34151124369006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43104591798949266, dt = 0.003652931508385631
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.4%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 1.30 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 372.43 us (94.9%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.7%)
Info: cfl dt = 0.00365293150838565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3659e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.54009798668807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4346988494978783, dt = 0.00365293150838565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.5%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 367.60 us (95.0%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.6%)
Info: cfl dt = 0.003652931508385673 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2525e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.33142801694906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43835178100626393, dt = 0.003652931508385673
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.8%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 315.99 us (94.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.5%)
Info: cfl dt = 0.0036529315083857 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4311e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.9156368862039 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4420047125146496, dt = 0.0036529315083857
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 311.22 us (94.0%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (61.3%)
Info: cfl dt = 0.0036529315083857323 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4568e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.4316979917092 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4456576440230353, dt = 0.0036529315083857323
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.7%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 349.67 us (94.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.0%)
Info: cfl dt = 0.0036529315083857704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7980e+05 | 65536 | 2 | 1.726e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.21060599166466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44931057553142106, dt = 0.0036529315083857704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 308.53 us (94.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.7%)
Info: cfl dt = 0.0036529315083858134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4741e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.77893233685397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4529635070398068, dt = 0.0036529315083858134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 314.51 us (93.9%)
LB move op cnt : 0
LB apply : 4.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.2%)
Info: cfl dt = 0.0036529315083858645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7736e+05 | 65536 | 2 | 1.737e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.72195429499409 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4566164385481926, dt = 0.0036529315083858645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 350.53 us (94.8%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.5%)
Info: cfl dt = 0.003652931508385924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6350e+05 | 65536 | 2 | 1.803e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.94045690214156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4602693700565785, dt = 0.003652931508385924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 292.35 us (93.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.0%)
Info: cfl dt = 0.003652931508385992 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1637e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.5498433556513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4639223015649644, dt = 0.003652931508385992
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 306.56 us (94.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.8%)
Info: cfl dt = 0.003652931508386073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4381e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.0547882848729 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46757523307335036, dt = 0.003652931508386073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.9%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 273.08 us (93.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.6%)
Info: cfl dt = 0.0036529315083861673 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3681e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.6509724808715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47122816458173644, dt = 0.0036529315083861673
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.4%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 349.44 us (94.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.3%)
Info: cfl dt = 0.0036529315083862735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3032e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.34903293737632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47488109609012263, dt = 0.0036529315083862735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 311.59 us (94.0%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.6%)
Info: cfl dt = 0.003652931508386398 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4737e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.76938219741355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4785340275985089, dt = 0.003652931508386398
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 304.30 us (94.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.0%)
Info: cfl dt = 0.0036529315083865424 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4830e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.95696879273738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4821869591068953, dt = 0.0036529315083865424
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (1.8%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 351.83 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.7%)
Info: cfl dt = 0.003652931508386707 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4810e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.91682742771165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4858398906152818, dt = 0.003652931508386707
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 311.98 us (93.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.9%)
Info: cfl dt = 0.0036529315083868963 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4280e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.85301350517175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4894928221236685, dt = 0.0036529315083868963
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.5%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 383.55 us (95.1%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.8%)
Info: cfl dt = 0.003652931508387113 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4954e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.20614660074793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49314575363205543, dt = 0.003652931508387113
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 343.66 us (94.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.1%)
Info: cfl dt = 0.0036529315083873607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4453e+05 | 65536 | 2 | 1.902e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.1341208017587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49679868514044256, dt = 0.0036529315083873607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 2.34 us (0.7%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 324.81 us (93.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (66.5%)
Info: cfl dt = 0.003652931508387644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2644e+05 | 65536 | 2 | 2.008e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.50381074769237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.50045161664883, dt = 0.003652931508387644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.4%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 372.98 us (94.9%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (65.3%)
Info: cfl dt = 0.0036529315083879675 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8318e+05 | 65536 | 2 | 1.710e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.88974231271322 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5041045481572176, dt = 0.0036529315083879675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 340.19 us (94.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.3%)
Info: cfl dt = 0.0036529315083883365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0411e+05 | 65536 | 2 | 2.155e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.02273139455746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5077574796656056, dt = 0.0036529315083883365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.48 us (0.4%)
LB compute : 379.96 us (94.9%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.9%)
Info: cfl dt = 0.003652931508388755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4409e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.11161961533773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5114104111739939, dt = 0.003652931508388755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 370.50 us (95.1%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.9%)
Info: cfl dt = 0.0036529315083892303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5717e+05 | 65536 | 2 | 1.835e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.67056249377075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150633426823826, dt = 0.0036529315083892303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (1.9%)
patch tree reduce : 1.47 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 281.15 us (87.1%)
LB move op cnt : 0
LB apply : 25.06 us (7.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.1%)
Info: cfl dt = 0.00365293150838977 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6907e+05 | 65536 | 2 | 1.776e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.05832873572237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5187162741907718, dt = 0.00365293150838977
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.01 us (1.6%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 293.45 us (94.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.7%)
Info: cfl dt = 0.0036529315083903805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3032e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.34884469913074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5223692056991616, dt = 0.0036529315083903805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 297.76 us (93.8%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.8%)
Info: cfl dt = 0.00365293150839107 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5593e+05 | 65536 | 2 | 1.437e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.48758034414502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.526022137207552, dt = 0.00365293150839107
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 294.60 us (93.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.7%)
Info: cfl dt = 0.0036529315083918493 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6453e+05 | 65536 | 2 | 1.798e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.14732617729979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.529675068715943, dt = 0.0036529315083918493
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 307.56 us (93.9%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (63.8%)
Info: cfl dt = 0.003652931508392727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2263e+05 | 65536 | 2 | 2.031e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.74012095373011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5333280002243349, dt = 0.003652931508392727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 331.66 us (94.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.3%)
Info: cfl dt = 0.003652931508393717 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6950e+05 | 65536 | 2 | 1.774e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.14481504781311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5369809317327277, dt = 0.003652931508393717
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 331.14 us (94.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.4%)
Info: cfl dt = 0.0036529315083948287 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2409e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.09774196928959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5406338632411214, dt = 0.0036529315083948287
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 321.30 us (94.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.3%)
Info: cfl dt = 0.0036529315083960786 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3687e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.66276752790021 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5442867947495162, dt = 0.0036529315083960786
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 283.00 us (93.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.7%)
Info: cfl dt = 0.0036529315083974794 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8662e+05 | 65536 | 2 | 1.695e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.57921498675495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5479397262579123, dt = 0.0036529315083974794
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 290.84 us (93.3%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.7%)
Info: cfl dt = 0.003652931508399049 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4607e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.50813362071467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5515926577663098, dt = 0.003652931508399049
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 315.46 us (94.4%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.9%)
Info: cfl dt = 0.003652931508400804 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3547e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.38228999672816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5552455892747089, dt = 0.003652931508400804
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 302.20 us (94.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.8%)
Info: cfl dt = 0.0036529315084027655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3668e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.62519125720561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5588985207831098, dt = 0.0036529315084027655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 306.80 us (93.9%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (62.2%)
Info: cfl dt = 0.003652931508404955 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1467e+05 | 65536 | 2 | 2.083e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.141997414657475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5625514522915125, dt = 0.003652931508404955
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 366.44 us (95.1%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.8%)
Info: cfl dt = 0.0036529315084073964 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1036e+05 | 65536 | 2 | 2.112e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.27707045938098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5662043837999174, dt = 0.0036529315084073964
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 361.38 us (94.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.8%)
Info: cfl dt = 0.0036529315084101147 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3948e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.18622740695453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5698573153083248, dt = 0.0036529315084101147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.8%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 302.74 us (93.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (61.5%)
Info: cfl dt = 0.0036529315084131387 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6333e+05 | 65536 | 2 | 1.804e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.9067100011628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5735102468167349, dt = 0.0036529315084131387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 318.08 us (93.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.7%)
Info: cfl dt = 0.003652931508416499 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3138e+05 | 65536 | 2 | 1.978e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.49484093190726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5771631783251481, dt = 0.003652931508416499
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 310.30 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.7%)
Info: cfl dt = 0.0036529315084202277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3514e+05 | 65536 | 2 | 1.955e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.25040199626486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5808161098335646, dt = 0.0036529315084202277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 307.86 us (94.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.4%)
Info: cfl dt = 0.003652931508424363 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2777e+05 | 65536 | 2 | 1.999e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.77065512549184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5844690413419849, dt = 0.003652931508424363
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 341.65 us (94.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (8.7%)
Info: cfl dt = 0.003652931508428943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4227e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.74617699973456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5881219728504092, dt = 0.003652931508428943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.41 us (6.3%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 380.76 us (90.2%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (67.6%)
Info: cfl dt = 0.0036529315084340105 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6743e+05 | 65536 | 2 | 1.784e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.72978337522557 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5917749043588382, dt = 0.0036529315084340105
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 345.62 us (94.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.9%)
Info: cfl dt = 0.0036529315084396136 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3721e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.73126802180377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5954278358672722, dt = 0.0036529315084396136
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 27.49 us (8.2%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 294.96 us (87.5%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.6%)
Info: cfl dt = 0.0036529315084457997 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4602e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.49953456335824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5990807673757118, dt = 0.0036529315084457997
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (2.0%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 288.34 us (93.6%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.4%)
Info: cfl dt = 0.003652931508452624 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4531e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.35677469732516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6027336988841576, dt = 0.003652931508452624
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 332.23 us (94.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.4%)
Info: cfl dt = 0.003652931508460145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4539e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.37163767673182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6063866303926102, dt = 0.003652931508460145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 294.62 us (93.9%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.9%)
Info: cfl dt = 0.003652931508468426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2798e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.87828311483817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6100395619010703, dt = 0.003652931508468426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 323.43 us (94.3%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.2%)
Info: cfl dt = 0.0036529315084775364 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4220e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.73168894873913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6136924934095388, dt = 0.0036529315084775364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.9%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 303.00 us (93.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.4%)
Info: cfl dt = 0.0036529315084875497 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9363e+05 | 65536 | 2 | 1.665e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.98613312046814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173454249180164, dt = 0.0036529315084875497
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.0%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 289.46 us (93.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (59.2%)
Info: cfl dt = 0.0036529315084985444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4355e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.00377395689685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6209983564265039, dt = 0.0036529315084985444
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 294.44 us (93.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.3%)
Info: cfl dt = 0.003652931508510606 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1759e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.79363422015759 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6246512879350025, dt = 0.003652931508510606
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 293.08 us (93.9%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (66.9%)
Info: cfl dt = 0.0036529315085238267 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2959e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.20309278723572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6283042194435131, dt = 0.0036529315085238267
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 330.98 us (94.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (53.4%)
Info: cfl dt = 0.0036529315085383073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4312e+05 | 65536 | 2 | 1.910e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.85063143128882 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.631957150952037, dt = 0.0036529315085383073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 337.02 us (94.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.9%)
Info: cfl dt = 0.0036529315085541522 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3716e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.72047910187499 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6356100824605753, dt = 0.0036529315085541522
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 315.27 us (94.3%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (60.8%)
Info: cfl dt = 0.003652931508571476 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3938e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.16669295439824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6392630139691294, dt = 0.003652931508571476
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 299.21 us (93.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.4%)
Info: cfl dt = 0.0036529315085904023 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3257e+05 | 65536 | 2 | 1.971e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.73419729721897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6429159454777009, dt = 0.0036529315085904023
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 312.42 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (63.4%)
Info: cfl dt = 0.0036529315086110607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2901e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.08623912902047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6465688769862913, dt = 0.0036529315086110607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 328.84 us (94.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.6%)
Info: cfl dt = 0.0036529315086335943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3614e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.51624418474749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6502218084949023, dt = 0.0036529315086335943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 335.97 us (94.6%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.0%)
Info: cfl dt = 0.003652931508658151 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3355e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.99644693070226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6538747400035358, dt = 0.003652931508658151
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 334.45 us (94.4%)
LB move op cnt : 0
LB apply : 3.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.8%)
Info: cfl dt = 0.0036529315086848944 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2114e+05 | 65536 | 2 | 2.041e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.44107771843349 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.657527671512194, dt = 0.0036529315086848944
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.3%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 409.32 us (95.1%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (72.0%)
Info: cfl dt = 0.0036529315087139957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3871e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.03190441362294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6611806030208789, dt = 0.0036529315087139957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 357.86 us (94.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (63.9%)
Info: cfl dt = 0.00365293150874564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3531e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.34975465762093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6648335345295929, dt = 0.00365293150874564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 337.63 us (94.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.1%)
Info: cfl dt = 0.0036529315087800228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3642e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.57197610050453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6684864660383386, dt = 0.0036529315087800228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.9%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 293.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.4%)
Info: cfl dt = 0.0036529315088173545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4181e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.65417045312861 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6721393975471186, dt = 0.0036529315088173545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.4%)
patch tree reduce : 1.77 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 378.95 us (95.0%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.2%)
Info: cfl dt = 0.00365293150885786 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4065e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.42169480514872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.675792329055936, dt = 0.00365293150885786
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.9%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 313.02 us (93.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.2%)
Info: cfl dt = 0.003652931508901777 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4689e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.67383345620264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6794452605647938, dt = 0.003652931508901777
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.5%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 338.73 us (94.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.3%)
Info: cfl dt = 0.0036529315089493595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4983e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.26317370101262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6830981920736956, dt = 0.0036529315089493595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 334.08 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.2%)
Info: cfl dt = 0.0036529315090008787 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5077e+05 | 65536 | 2 | 1.868e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.38697597625915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.686751123582645, dt = 0.0036529315090008787
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (1.8%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 314.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.9%)
Info: cfl dt = 0.003652931509056622 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5561e+05 | 65536 | 2 | 1.843e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.35791342182154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6904040550916459, dt = 0.003652931509056622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 303.39 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.2%)
Info: cfl dt = 0.0036529315091168957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3109e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.50405776157021 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6940569866007026, dt = 0.0036529315091168957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.9%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 271.40 us (93.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.5%)
Info: cfl dt = 0.003652931509182024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0192e+05 | 65536 | 2 | 1.631e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.64912807868967 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6977099181098195, dt = 0.003652931509182024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 298.59 us (93.9%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (61.8%)
Info: cfl dt = 0.003652931509252355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2831e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.9443934097089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7013628496190015, dt = 0.003652931509252355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 310.81 us (94.0%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.1%)
Info: cfl dt = 0.003652931509328253 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3505e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.29753406135713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7050157811282539, dt = 0.003652931509328253
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 300.03 us (93.9%)
LB move op cnt : 0
LB apply : 3.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.2%)
Info: cfl dt = 0.003652931509410108 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8219e+05 | 65536 | 2 | 1.715e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.69060745730891 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7086687126375821, dt = 0.003652931509410108
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 326.13 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.3%)
Info: cfl dt = 0.0036529315094983327 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4279e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.85161354953183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7123216441469923, dt = 0.0036529315094983327
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 305.71 us (94.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.7%)
Info: cfl dt = 0.0036529315095933644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4437e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.16851871736259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7159745756564906, dt = 0.0036529315095933644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (0.8%)
patch tree reduce : 1.71 us (0.2%)
gen split merge : 881.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.31 us (0.2%)
LB compute : 720.83 us (97.2%)
LB move op cnt : 0
LB apply : 3.91 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.1%)
Info: cfl dt = 0.003652931509695666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4959e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.21577631583682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7196275071660839, dt = 0.003652931509695666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 294.32 us (93.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.5%)
Info: cfl dt = 0.0036529315098057283 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3839e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.96798064743327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7232804386757796, dt = 0.0036529315098057283
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.6%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.4%)
LB compute : 364.06 us (94.5%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.2%)
Info: cfl dt = 0.0036529315099240686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4793e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.88253930043038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7269333701855853, dt = 0.0036529315099240686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.6%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 323.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.9%)
Info: cfl dt = 0.003652931510051237 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4203e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.69847803679778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7305863016955094, dt = 0.003652931510051237
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 293.29 us (93.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.8%)
Info: cfl dt = 0.0036529315101878138 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8789e+05 | 65536 | 2 | 1.690e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.83555473080308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7342392332055606, dt = 0.0036529315101878138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.5%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 325.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.1%)
Info: cfl dt = 0.003652931510334411 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8185e+05 | 65536 | 2 | 2.325e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.55683871103284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7378921647157485, dt = 0.003652931510334411
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.3%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 1.26 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 415.57 us (95.4%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.6%)
Info: cfl dt = 0.0036529315104916766 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5407e+05 | 65536 | 2 | 1.851e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.04731620848413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7415450962260829, dt = 0.0036529315104916766
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.6%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 356.17 us (94.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.7%)
Info: cfl dt = 0.0036529315106602935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3790e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.86986595404711 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7451980277365746, dt = 0.0036529315106602935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 292.09 us (93.9%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (58.5%)
Info: cfl dt = 0.0036529315108409835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4491e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.27585878015056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7488509592472349, dt = 0.0036529315108409835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.5%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 348.65 us (94.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.5%)
Info: cfl dt = 0.0036529315110345054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2655e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.59182386735112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7525038907580759, dt = 0.0036529315110345054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 314.57 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.1%)
Info: cfl dt = 0.0036529315112416617 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3287e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.85962302016176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7561568222691104, dt = 0.0036529315112416617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.8%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 275.74 us (93.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (60.2%)
Info: cfl dt = 0.003652931511463296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3689e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.66775721302436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7598097537803521, dt = 0.003652931511463296
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.4%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 363.39 us (94.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.9%)
Info: cfl dt = 0.0036529315117002988 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4794e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.88385035538691 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7634626852918154, dt = 0.0036529315117002988
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 308.78 us (93.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (64.0%)
Info: cfl dt = 0.003652931511953606 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3931e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.15358366655825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7671156168035157, dt = 0.003652931511953606
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 330.77 us (94.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.5%)
Info: cfl dt = 0.003652931512224202 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4033e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.35732328348804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7707685483154693, dt = 0.003652931512224202
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 321.26 us (94.2%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.7%)
Info: cfl dt = 0.003652931512513124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4366e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.02605093204407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7744214798276935, dt = 0.003652931512513124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 294.54 us (93.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (64.9%)
Info: cfl dt = 0.0036529315128214592 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3978e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.24720119203225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7780744113402066, dt = 0.0036529315128214592
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.4%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 356.62 us (94.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.8%)
Info: cfl dt = 0.003652931513150356 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3250e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.78555615560477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.781727342853028, dt = 0.003652931513150356
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 323.80 us (94.0%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.4%)
Info: cfl dt = 0.003652931513501014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5142e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.58201307000927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7853802743661784, dt = 0.003652931513501014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 292.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.4%)
Info: cfl dt = 0.0036529315138746983 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4272e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.83618856884749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7890332058796794, dt = 0.0036529315138746983
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.5%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 336.16 us (94.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.8%)
Info: cfl dt = 0.0036529315142727332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4069e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.42861639091802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7926861373935541, dt = 0.0036529315142727332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (1.9%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 321.10 us (93.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.4%)
Info: cfl dt = 0.00365293151469651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7978e+05 | 65536 | 2 | 1.726e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.20651083333595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7963390689078268, dt = 0.00365293151469651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 358.12 us (94.6%)
LB move op cnt : 0
LB apply : 4.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.1%)
Info: cfl dt = 0.003652931515147489 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4912e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.121086344082 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7999920004225233, dt = 0.003652931515147489
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 274.59 us (93.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.4%)
Info: cfl dt = 0.003652931515627198 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4482e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.25806514001364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8036449319376707, dt = 0.003652931515627198
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.9%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 311.23 us (93.9%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.9%)
Info: cfl dt = 0.0036529315161372405 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5335e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.96948356326646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8072978634532979, dt = 0.0036529315161372405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (1.9%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 306.90 us (93.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.0%)
Info: cfl dt = 0.003652931516679297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5075e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.44877512748005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8109507949694351, dt = 0.003652931516679297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (2.0%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 271.67 us (93.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (66.5%)
Info: cfl dt = 0.0036529315172551258 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5163e+05 | 65536 | 2 | 1.451e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.62442195368001 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8146037264861145, dt = 0.0036529315172551258
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 277.27 us (93.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.2%)
Info: cfl dt = 0.0036529315178665677 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5092e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.48211964936174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8182566580033696, dt = 0.0036529315178665677
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 334.60 us (94.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.3%)
Info: cfl dt = 0.00365293151851555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5074e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.44556523973718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8219095895212362, dt = 0.00365293151851555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.8%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 276.92 us (93.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (61.9%)
Info: cfl dt = 0.0036529315192040885 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5203e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.70427725266872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8255625210397517, dt = 0.0036529315192040885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 308.09 us (93.9%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (63.5%)
Info: cfl dt = 0.003652931519934291 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7501e+05 | 65536 | 2 | 1.748e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.24964460421853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8292154525589558, dt = 0.003652931519934291
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 293.19 us (93.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.6%)
Info: cfl dt = 0.003652931520708361 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2845e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.97417372449586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8328683840788901, dt = 0.003652931520708361
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 284.25 us (93.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.4%)
Info: cfl dt = 0.003652931521528602 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3922e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.13466164583916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8365213155995984, dt = 0.003652931521528602
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 327.73 us (94.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.5%)
Info: cfl dt = 0.0036529315223974208 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2610e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.50144311911278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.840174247121127, dt = 0.0036529315223974208
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.8%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 278.49 us (93.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (60.6%)
Info: cfl dt = 0.0036529315233173295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0617e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.5023676533997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8438271786435244, dt = 0.0036529315233173295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 331.47 us (94.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (65.4%)
Info: cfl dt = 0.0036529315242909504 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5865e+05 | 65536 | 2 | 1.429e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.0337509318542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8474801101668418, dt = 0.0036529315242909504
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 293.13 us (93.8%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (61.7%)
Info: cfl dt = 0.003652931525321021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4137e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.56607668482087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8511330416911327, dt = 0.003652931525321021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.79 us (7.3%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 314.59 us (88.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (62.2%)
Info: cfl dt = 0.0036529315264103974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5517e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.33413152408478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8547859732164537, dt = 0.0036529315264103974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 298.23 us (93.7%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (63.7%)
Info: cfl dt = 0.0036529315275620603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8750e+05 | 65536 | 2 | 1.691e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.75685431570652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8584389047428641, dt = 0.0036529315275620603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 2.40 us (0.7%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 346.26 us (94.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.4%)
Info: cfl dt = 0.003652931528779114 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4103e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.4982072412472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8620918362704262, dt = 0.003652931528779114
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.3%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 437.20 us (95.6%)
LB move op cnt : 0
LB apply : 3.86 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.5%)
Info: cfl dt = 0.003652931530064796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4713e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.72219686260627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8657447677992053, dt = 0.003652931530064796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.47 us (0.5%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 305.87 us (93.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.9%)
Info: cfl dt = 0.003652931531422479 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4137e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.56664467073568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8693976993292701, dt = 0.003652931531422479
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 279.59 us (87.0%)
LB move op cnt : 0
LB apply : 25.16 us (7.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (63.6%)
Info: cfl dt = 0.0036529315328556783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3481e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.24900166046055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8730506308606926, dt = 0.0036529315328556783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 306.52 us (94.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.4%)
Info: cfl dt = 0.003652931534368053 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4580e+05 | 65536 | 2 | 1.895e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.38924232822716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8767035623935483, dt = 0.003652931534368053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 333.54 us (94.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.7%)
Info: cfl dt = 0.003652931535963412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8979e+05 | 65536 | 2 | 1.681e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.21564031610772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8803564939279164, dt = 0.003652931535963412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.9%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 276.62 us (93.5%)
LB move op cnt : 0
LB apply : 3.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.4%)
Info: cfl dt = 0.0036529315376457195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6888e+05 | 65536 | 2 | 1.777e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.019285909259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8840094254638798, dt = 0.0036529315376457195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.9%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 273.99 us (93.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (59.7%)
Info: cfl dt = 0.0036529315394191017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5254e+05 | 65536 | 2 | 1.859e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.74129069634101 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8876623570015255, dt = 0.0036529315394191017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 282.20 us (93.4%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.8%)
Info: cfl dt = 0.0036529315412878486 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7128e+05 | 65536 | 2 | 1.765e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.50120929299939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913152885409447, dt = 0.0036529315412878486
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.0%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 292.97 us (93.5%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.9%)
Info: cfl dt = 0.0036529315432564224 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7508e+05 | 65536 | 2 | 1.747e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.26318871989449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8949682200822325, dt = 0.0036529315432564224
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 271.24 us (93.5%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (61.9%)
Info: cfl dt = 0.0036529315453294616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4347e+05 | 65536 | 2 | 1.908e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.92039387957698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.898621151625489, dt = 0.0036529315453294616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 305.78 us (93.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.0%)
Info: cfl dt = 0.0036529315475117862 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5530e+05 | 65536 | 2 | 1.439e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.3615570709994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9022740831708184, dt = 0.0036529315475117862
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (2.0%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 268.84 us (93.0%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (61.6%)
Info: cfl dt = 0.003652931549808403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9188e+05 | 65536 | 2 | 1.672e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.636036437499 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9059270147183301, dt = 0.003652931549808403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 283.15 us (87.4%)
LB move op cnt : 0
LB apply : 25.04 us (7.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.9%)
Info: cfl dt = 0.0036529315522245156 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4299e+05 | 65536 | 2 | 1.911e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.82419955924249 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9095799462681385, dt = 0.0036529315522245156
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (2.0%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 276.76 us (93.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.0%)
Info: cfl dt = 0.003652931554765526 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3082e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.44956547779802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9132328778203631, dt = 0.003652931554765526
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 283.73 us (93.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.7%)
Info: cfl dt = 0.0036529315574370417 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2561e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.40397162247385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9168858093751286, dt = 0.0036529315574370417
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.2%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 280.03 us (93.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.6%)
Info: cfl dt = 0.0036529315602448834 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3490e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.26817964544152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9205387409325657, dt = 0.0036529315602448834
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.9%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 273.09 us (93.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.7%)
Info: cfl dt = 0.0036529315631950894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3162e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.6095469700753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9241916724928106, dt = 0.0036529315631950894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 283.57 us (93.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.3%)
Info: cfl dt = 0.0036529315662939257 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2546e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.37301520966484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9278446040560058, dt = 0.0036529315662939257
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 330.12 us (94.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.1%)
Info: cfl dt = 0.0036529315695478888 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7875e+05 | 65536 | 2 | 1.730e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.00074427116425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9314975356222996, dt = 0.0036529315695478888
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.7%)
patch tree reduce : 2.58 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 330.36 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.3%)
Info: cfl dt = 0.0036529315729637146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3896e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.08311396675602 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9351504671918476, dt = 0.0036529315729637146
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 302.15 us (93.7%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.7%)
Info: cfl dt = 0.0036529315765483844 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2876e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.0347983786399 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9388033987648113, dt = 0.0036529315765483844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.08 us (2.0%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 290.88 us (93.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.7%)
Info: cfl dt = 0.0036529315803091357 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3952e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.19551627490985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9424563303413597, dt = 0.0036529315803091357
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.9%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 284.58 us (93.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (61.3%)
Info: cfl dt = 0.0036529315842534636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4610e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.51525540596889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9461092619216688, dt = 0.0036529315842534636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 344.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.7%)
Info: cfl dt = 0.003652931588389134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4597e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.48856764867445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9497621935059223, dt = 0.003652931588389134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 298.57 us (93.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.9%)
Info: cfl dt = 0.003652931592724187 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4500e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.2941665877938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9534151250943114, dt = 0.003652931592724187
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 356.04 us (94.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.1%)
Info: cfl dt = 0.0036529315972669463 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3457e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.2007548376764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9570680566870355, dt = 0.0036529315972669463
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 324.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.3%)
Info: cfl dt = 0.0036529316020260296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5016e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.32976538797209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9607209882843025, dt = 0.0036529316020260296
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 364.82 us (94.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (65.1%)
Info: cfl dt = 0.0036529316070103533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4485e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.26413264108987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9643739198863286, dt = 0.0036529316070103533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 324.13 us (94.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.1%)
Info: cfl dt = 0.0036529316122291414 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3670e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.62799802562958 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9680268514933389, dt = 0.0036529316122291414
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.9%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 295.81 us (93.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.8%)
Info: cfl dt = 0.003652931617691937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3513e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.31439536646937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.971679783105568, dt = 0.003652931617691937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (2.0%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 278.65 us (93.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.4%)
Info: cfl dt = 0.003652931623408606 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5661e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.62426214529455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.97533271472326, dt = 0.003652931623408606
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 332.88 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.5%)
Info: cfl dt = 0.00365293162938935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5019e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.3348826837726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9789856463466686, dt = 0.00365293162938935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 309.23 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.1%)
Info: cfl dt = 0.0036529316356447143 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4990e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.27804587718978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.982638577976058, dt = 0.0036529316356447143
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 319.28 us (94.0%)
LB move op cnt : 0
LB apply : 4.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (62.8%)
Info: cfl dt = 0.003652931642185595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4745e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.78616300376378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9862915096117028, dt = 0.003652931642185595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 304.22 us (93.9%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.8%)
Info: cfl dt = 0.003652931649023252 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4380e+05 | 65536 | 2 | 1.477e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.05458831133026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9899444412538884, dt = 0.003652931649023252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 340.28 us (94.2%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.8%)
Info: cfl dt = 0.003652931656169317 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1935e+05 | 65536 | 2 | 1.563e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.14831556011508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9935973729029116, dt = 0.003652931656169317
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (2.0%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 282.36 us (93.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.8%)
Info: cfl dt = 0.003652931663635801 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4684e+05 | 65536 | 2 | 1.467e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.66322168632153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9972503045590809, dt = 0.003652931663635801
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.2%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 275.41 us (92.5%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.0%)
Info: cfl dt = 0.0036529316714351084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4793e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.88215605488284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0009032362227168, dt = 0.0036529316714351084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 1.44 us (0.5%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 290.50 us (93.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.0%)
Info: cfl dt = 0.0036529316795800423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4211e+05 | 65536 | 2 | 1.482e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.71410521944408 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.004556167894152, dt = 0.0036529316795800423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 309.12 us (93.8%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.6%)
Info: cfl dt = 0.0036529316880838177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5120e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.53898108975211 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.008209099573732, dt = 0.0036529316880838177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.0%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 271.93 us (93.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.6%)
Info: cfl dt = 0.0036529316969600724 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3716e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.72045123087649 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0118620312618158, dt = 0.0036529316969600724
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 286.63 us (93.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.0%)
Info: cfl dt = 0.003652931706222877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4580e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.45518732280803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0155149629587759, dt = 0.003652931706222877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (2.0%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 270.48 us (93.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (59.4%)
Info: cfl dt = 0.003652931715886745 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4548e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.39047747398374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0191678946649987, dt = 0.003652931715886745
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (2.0%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 280.87 us (93.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (58.4%)
Info: cfl dt = 0.0036529317259666435 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4450e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.19453826318207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0228208263808853, dt = 0.0036529317259666435
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (2.0%)
patch tree reduce : 1.46 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 276.51 us (93.2%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.8%)
Info: cfl dt = 0.0036529317364780056 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9846e+05 | 65536 | 2 | 1.645e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.95624865055905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.026473758106852, dt = 0.0036529317364780056
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 296.70 us (94.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (62.8%)
Info: cfl dt = 0.003652931747436743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5349e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.99766773687743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.03012668984333, dt = 0.003652931747436743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.9%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 278.69 us (93.5%)
LB move op cnt : 0
LB apply : 3.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.4%)
Info: cfl dt = 0.003652931758859253 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3728e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.74620215095025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0337796215907666, dt = 0.003652931758859253
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (2.0%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 264.41 us (92.9%)
LB move op cnt : 0
LB apply : 3.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (61.5%)
Info: cfl dt = 0.0036529317707624364 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2772e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.82673191659872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0374325533496258, dt = 0.0036529317707624364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.9%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 283.02 us (93.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (61.2%)
Info: cfl dt = 0.0036529317831637048 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3608e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.50384385016952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0410854851203883, dt = 0.0036529317831637048
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 313.85 us (93.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.5%)
Info: cfl dt = 0.0036529317960809944 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5095e+05 | 65536 | 2 | 1.453e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.48922647241568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.044738416903552, dt = 0.0036529317960809944
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (2.0%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 279.68 us (93.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.8%)
Info: cfl dt = 0.0036529318095327797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4763e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.82139816467023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.048391348699633, dt = 0.0036529318095327797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 322.57 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.1%)
Info: cfl dt = 0.003652931823538084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4781e+05 | 65536 | 2 | 1.463e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.85815735857297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0520442805091659, dt = 0.003652931823538084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.6%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 318.05 us (94.3%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.1%)
Info: cfl dt = 0.003652931838116492 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0593e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.4548675551833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.055697212332704, dt = 0.003652931838116492
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.5%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 332.58 us (94.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.9%)
Info: cfl dt = 0.003652931853288167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5003e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.30333731690015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0593501441708204, dt = 0.003652931853288167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.7%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 297.75 us (94.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.2%)
Info: cfl dt = 0.0036529318690738575 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3330e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.94761877401571 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0630030760241085, dt = 0.0036529318690738575
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 304.87 us (94.0%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.9%)
Info: cfl dt = 0.003652931885494918 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1538e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.35007328549261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0666560078931824, dt = 0.003652931885494918
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 298.46 us (93.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.4%)
Info: cfl dt = 0.003652931902573315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4129e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.54989594837487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0703089397786774, dt = 0.003652931902573315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 305.06 us (94.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (62.3%)
Info: cfl dt = 0.0036529319203316467 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4484e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.26144617929502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0739618716812507, dt = 0.0036529319203316467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (2.0%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 277.56 us (93.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.8%)
Info: cfl dt = 0.0036529319387931555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2259e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.79734607496243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0776148036015822, dt = 0.0036529319387931555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (2.0%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 272.10 us (93.1%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (64.2%)
Info: cfl dt = 0.0036529319579817433 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4158e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.60873540184083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0812677355403755, dt = 0.0036529319579817433
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 288.79 us (93.6%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (62.5%)
Info: cfl dt = 0.0036529319779219816 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5138e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.57452563600832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0849206674983571, dt = 0.0036529319779219816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.7%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 323.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (62.9%)
Info: cfl dt = 0.0036529319986391318 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5338e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.97575374722915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.088573599476279, dt = 0.0036529319986391318
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 311.62 us (93.9%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.2%)
Info: cfl dt = 0.0036529320201591554 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2690e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.663198140415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0922265314749182, dt = 0.0036529320201591554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 339.04 us (94.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.4%)
Info: cfl dt = 0.003652932042508734 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3655e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.5992186464507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0958794634950775, dt = 0.003652932042508734
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.4%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 274.47 us (92.9%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.3%)
Info: cfl dt = 0.003652932065715281 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4152e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.59521506086475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0995323955375862, dt = 0.003652932065715281
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 281.59 us (93.8%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.4%)
Info: cfl dt = 0.003652932089806959 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4437e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.16865563638227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1031853276033015, dt = 0.003652932089806959
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 271.94 us (93.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.6%)
Info: cfl dt = 0.003652932114812694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5036e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.37073880404219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1068382596931083, dt = 0.003652932114812694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.9%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 307.31 us (93.7%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.7%)
Info: cfl dt = 0.003652932140762194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4767e+05 | 65536 | 2 | 1.464e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.82947120263763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.110491191807921, dt = 0.003652932140762194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 310.76 us (94.0%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.9%)
Info: cfl dt = 0.003652932167685963 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4591e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.47719937820327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1141441239486831, dt = 0.003652932167685963
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.1%)
patch tree reduce : 2.30 us (0.8%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 282.39 us (93.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (62.7%)
Info: cfl dt = 0.0036529321956153197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4952e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.20085354022197 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.117797056116369, dt = 0.0036529321956153197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.1%)
patch tree reduce : 2.37 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 278.92 us (92.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.4%)
Info: cfl dt = 0.0036529322245824115 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5065e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.42861111970575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1214499883119844, dt = 0.0036529322245824115
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.9%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 271.27 us (93.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.9%)
Info: cfl dt = 0.003652932254620234 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4155e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.60145059368668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1251029205365668, dt = 0.003652932254620234
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.0%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 275.31 us (93.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (64.2%)
Info: cfl dt = 0.0036529322857626473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4493e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.28107130034373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.128755852791187, dt = 0.0036529322857626473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 301.33 us (94.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.5%)
Info: cfl dt = 0.0036529323180443936 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2779e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.84066281767015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1324087850769495, dt = 0.0036529323180443936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.0%)
patch tree reduce : 2.37 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 297.41 us (93.6%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.5%)
Info: cfl dt = 0.0036529323515011145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4349e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.99107135851382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1360617173949938, dt = 0.0036529323515011145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 292.90 us (94.0%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.1%)
Info: cfl dt = 0.0036529323861693693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3862e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.01500917950347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.139714649746495, dt = 0.0036529323861693693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.48 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 304.13 us (93.9%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (62.6%)
Info: cfl dt = 0.0036529324220866545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3915e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.12128625264148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1433675821326643, dt = 0.0036529324220866545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.4%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 401.42 us (95.2%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (66.6%)
Info: cfl dt = 0.003652932459291418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4048e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.38644860360066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.147020514554751, dt = 0.003652932459291418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (0.5%)
patch tree reduce : 1.59 us (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.04 us (0.1%)
LB compute : 1.16 ms (98.3%)
LB move op cnt : 0
LB apply : 3.76 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.0%)
Info: cfl dt = 0.0036529324978230833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2877e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.03684505302648 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1506734470140423, dt = 0.0036529324978230833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 287.48 us (93.5%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.9%)
Info: cfl dt = 0.003652932537722065 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2366e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.01205854453688 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1543263795118655, dt = 0.003652932537722065
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 336.77 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.7%)
Info: cfl dt = 0.00365293257902979 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4147e+05 | 65536 | 2 | 1.919e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.520747749462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1579793120495876, dt = 0.00365293257902979
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 299.44 us (87.8%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.4%)
Info: cfl dt = 0.0036529326217887123 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2990e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.26343278416932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1616322446286174, dt = 0.0036529326217887123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.5%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 326.97 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (62.0%)
Info: cfl dt = 0.0036529326660423396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3421e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.12975268224108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.165285177250406, dt = 0.0036529326660423396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 322.88 us (94.0%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.7%)
Info: cfl dt = 0.003652932711835247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3172e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.63027263256714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1689381099164484, dt = 0.003652932711835247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.3%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 368.30 us (95.0%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.1%)
Info: cfl dt = 0.0036529327592131015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2258e+05 | 65536 | 2 | 2.032e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.72862786605906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1725910426282837, dt = 0.0036529327592131015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 336.03 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (65.4%)
Info: cfl dt = 0.0036529328082226804 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0498e+05 | 65536 | 2 | 2.149e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.19815208021268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.176243975387497, dt = 0.0036529328082226804
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.4%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 372.27 us (95.0%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.2%)
Info: cfl dt = 0.0036529328589118898 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5487e+05 | 65536 | 2 | 1.847e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.20864488894216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1798969081957196, dt = 0.0036529328589118898
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 320.98 us (94.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.0%)
Info: cfl dt = 0.0036529329113297927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5213e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.72470913139237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1835498410546315, dt = 0.0036529329113297927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 290.20 us (93.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (63.2%)
Info: cfl dt = 0.003652932965526619 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5827e+05 | 65536 | 2 | 1.430e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.95739584852754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1872027739659612, dt = 0.003652932965526619
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 295.85 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.7%)
Info: cfl dt = 0.0036529330215537984 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9117e+05 | 65536 | 2 | 1.675e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.4936063250996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1908557069314878, dt = 0.0036529330215537984
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 305.87 us (94.2%)
LB move op cnt : 0
LB apply : 3.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.0%)
Info: cfl dt = 0.0036529330794639724 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2404e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.08950529287077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1945086399530416, dt = 0.0036529330794639724
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 284.30 us (93.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.3%)
Info: cfl dt = 0.0036529331393110255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3108e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.50141778393605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1981615730325055, dt = 0.0036529331393110255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 292.62 us (93.6%)
LB move op cnt : 0
LB apply : 3.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.4%)
Info: cfl dt = 0.0036529332011500976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3241e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.76727412163015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2018145061718164, dt = 0.0036529332011500976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.9%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 283.07 us (93.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.3%)
Info: cfl dt = 0.003652933265037614 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5150e+05 | 65536 | 2 | 1.452e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.59808293753714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2054674393729665, dt = 0.003652933265037614
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 359.65 us (94.7%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (64.6%)
Info: cfl dt = 0.003652933331031303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2301e+05 | 65536 | 2 | 1.549e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.8818403364083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2091203726380042, dt = 0.003652933331031303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (1.7%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 270.81 us (93.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.9%)
Info: cfl dt = 0.003652933399190225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2800e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.88409381469629 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2127733059690355, dt = 0.003652933399190225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.7%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 341.60 us (94.1%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.4%)
Info: cfl dt = 0.0036529334695747854 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2589e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.4605279257758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2164262393682257, dt = 0.0036529334695747854
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 284.29 us (93.7%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.9%)
Info: cfl dt = 0.003652933542246769 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1866e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.0086767520389 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2200791728378004, dt = 0.003652933542246769
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (1.9%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 327.38 us (93.8%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (64.8%)
Info: cfl dt = 0.0036529336172693577 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2516e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.31406633369369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2237321063800473, dt = 0.0036529336172693577
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (0.7%)
patch tree reduce : 1.53 us (0.2%)
gen split merge : 882.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.1%)
LB compute : 765.13 us (97.5%)
LB move op cnt : 0
LB apply : 3.82 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.6%)
Info: cfl dt = 0.0036529336947071552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2882e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.04677642266115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2273850399973165, dt = 0.0036529336947071552
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (0.7%)
patch tree reduce : 1.64 us (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.1%)
LB compute : 755.25 us (97.4%)
LB move op cnt : 0
LB apply : 3.69 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.9%)
Info: cfl dt = 0.0036529337746262123 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3829e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.94738312559682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2310379736920236, dt = 0.0036529337746262123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.8%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 314.62 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.4%)
Info: cfl dt = 0.003652933857094048 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5201e+05 | 65536 | 2 | 1.862e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.63474873284585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.23469090746665, dt = 0.003652933857094048
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.0%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 298.22 us (93.3%)
LB move op cnt : 0
LB apply : 4.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (60.4%)
Info: cfl dt = 0.003652933942179682 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5321e+05 | 65536 | 2 | 1.855e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.87553275663868 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.238343841323744, dt = 0.003652933942179682
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 301.16 us (93.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.6%)
Info: cfl dt = 0.0036529340299536477 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9986e+05 | 65536 | 2 | 1.639e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.23743427254396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2419967752659236, dt = 0.0036529340299536477
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 278.69 us (93.6%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (62.6%)
Info: cfl dt = 0.00365293412048803 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3343e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.97256394106883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2456497092958771, dt = 0.00365293412048803
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.1%)
patch tree reduce : 1.80 us (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 504.65 us (96.3%)
LB move op cnt : 0
LB apply : 3.25 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (60.6%)
Info: cfl dt = 0.003652934213856481 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3271e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.82848819252368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2493026434163652, dt = 0.003652934213856481
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 276.98 us (93.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.1%)
Info: cfl dt = 0.0036529343101342525 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3693e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.6743828456684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2529555776302217, dt = 0.0036529343101342525
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 273.71 us (93.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (59.7%)
Info: cfl dt = 0.003652934409398217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3581e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.45121414878005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.256608511940356, dt = 0.003652934409398217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.8%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 288.40 us (93.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.7%)
Info: cfl dt = 0.003652934511726896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4917e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.13077176968378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2602614463497543, dt = 0.003652934511726896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 281.93 us (93.8%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (61.4%)
Info: cfl dt = 0.003652934617200489 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3627e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.54196511654177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2639143808614812, dt = 0.003652934617200489
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (2.0%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 274.59 us (93.3%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.3%)
Info: cfl dt = 0.0036529347259008946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4193e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.67769054934698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2675673154786817, dt = 0.0036529347259008946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.5%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 314.40 us (94.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.1%)
Info: cfl dt = 0.0036529348379117444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5085e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.46762732171729 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2712202502045826, dt = 0.0036529348379117444
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 320.65 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (61.7%)
Info: cfl dt = 0.0036529349533184216 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4408e+05 | 65536 | 2 | 1.905e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.0427322614194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2748731850424944, dt = 0.0036529349533184216
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.66 us (0.5%)
LB compute : 300.09 us (93.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.0%)
Info: cfl dt = 0.0036529350722080993 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2691e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.66450288927955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.278526119995813, dt = 0.0036529350722080993
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 331.20 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.9%)
Info: cfl dt = 0.003652935194669759 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3998e+05 | 65536 | 2 | 1.928e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.22106181177915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.282179055068021, dt = 0.003652935194669759
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 305.35 us (93.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (62.5%)
Info: cfl dt = 0.0036529353207942223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6920e+05 | 65536 | 2 | 1.775e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.08395295304491 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2858319902626907, dt = 0.0036529353207942223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 302.60 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (60.7%)
Info: cfl dt = 0.003652935450674182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4403e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.10036782405628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2894849255834848, dt = 0.003652935450674182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 310.19 us (94.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (63.6%)
Info: cfl dt = 0.003652935584404224 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3113e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.51123487337114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.293137861034159, dt = 0.003652935584404224
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 286.49 us (93.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (64.9%)
Info: cfl dt = 0.0036529357220808647 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4541e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.37590964165919 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2967907966185632, dt = 0.0036529357220808647
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (2.0%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 289.29 us (93.2%)
LB move op cnt : 0
LB apply : 4.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.1%)
Info: cfl dt = 0.003652935863802572 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4478e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.25084464630687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3004437323406441, dt = 0.003652935863802572
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 328.22 us (94.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.1%)
Info: cfl dt = 0.0036529360096698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4327e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.94762348484709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3040966682044468, dt = 0.0036529360096698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 296.28 us (93.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (60.7%)
Info: cfl dt = 0.0036529361597850154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4857e+05 | 65536 | 2 | 1.461e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.0107004384822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3077496042141166, dt = 0.0036529361597850154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (2.0%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 272.44 us (93.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.2%)
Info: cfl dt = 0.003652936314252729 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4318e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.92975285725538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3114025403739016, dt = 0.003652936314252729
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 327.31 us (94.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.6%)
Info: cfl dt = 0.0036529364731795267 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4697e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.68963332963443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3150554766881544, dt = 0.0036529364731795267
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 326.93 us (94.3%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.0%)
Info: cfl dt = 0.0036529366366741018 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4739e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.77499638250674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3187084131613338, dt = 0.0036529366366741018
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 295.88 us (93.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (60.2%)
Info: cfl dt = 0.0036529368048472764 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4637e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.56888950472742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.322361349798008, dt = 0.0036529368048472764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 347.11 us (94.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.2%)
Info: cfl dt = 0.0036529369778120443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4467e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.22745844736158 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3260142866028553, dt = 0.0036529369778120443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 288.71 us (93.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (60.2%)
Info: cfl dt = 0.0036529371556835943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4702e+05 | 65536 | 2 | 1.466e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.70001427650516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3296672235806672, dt = 0.0036529371556835943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 308.45 us (94.3%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (64.8%)
Info: cfl dt = 0.003652937338579345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4815e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.92701718944514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3333201607363507, dt = 0.003652937338579345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 292.98 us (93.8%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.2%)
Info: cfl dt = 0.0036529375266189743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4634e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.56357697164286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3369730980749301, dt = 0.0036529375266189743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.4%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 350.82 us (95.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (61.7%)
Info: cfl dt = 0.0036529377199244558 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4103e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.49863308787492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3406260356015491, dt = 0.0036529377199244558
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.9%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 273.40 us (93.2%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (62.1%)
Info: cfl dt = 0.003652937918620086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3320e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.9276448063769 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3442789733214735, dt = 0.003652937918620086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.9%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 267.84 us (93.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.2%)
Info: cfl dt = 0.0036529381228325186 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5886e+05 | 65536 | 2 | 1.826e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.01018644313254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3479319112400936, dt = 0.0036529381228325186
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.9%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 298.12 us (93.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.6%)
Info: cfl dt = 0.003652938332690799 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3708e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.70574225170832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.351584849362926, dt = 0.003652938332690799
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 301.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.9%)
Info: cfl dt = 0.0036529385483263952 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3165e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.61609833406874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.355237787695617, dt = 0.0036529385483263952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 325.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (63.5%)
Info: cfl dt = 0.0036529387698732317 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2554e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.39064170648771 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3588907262439434, dt = 0.0036529387698732317
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 294.09 us (94.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.3%)
Info: cfl dt = 0.0036529389974677222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2365e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.01064707578223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3625436650138165, dt = 0.0036529389974677222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 299.72 us (93.7%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.6%)
Info: cfl dt = 0.0036529392312488083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1786e+05 | 65536 | 2 | 2.062e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.78183500507101 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3661966040112843, dt = 0.0036529392312488083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.4%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 388.78 us (94.8%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.1%)
Info: cfl dt = 0.0036529394713579848 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2925e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.134418605866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.369849543242533, dt = 0.0036529394713579848
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 321.16 us (94.0%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.1%)
Info: cfl dt = 0.003652939717939343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3974e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.2393866363811 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.373502482713891, dt = 0.003652939717939343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 305.21 us (94.2%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (62.9%)
Info: cfl dt = 0.003652939971139598 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4745e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.78703844104734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3771554224318305, dt = 0.003652939971139598
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 300.31 us (93.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (62.5%)
Info: cfl dt = 0.0036529402311081304 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4205e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.70251610076514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3808083624029701, dt = 0.0036529402311081304
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (1.8%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 325.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.5%)
Info: cfl dt = 0.0036529404979970146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6186e+05 | 65536 | 2 | 1.811e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.61245625695365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3844613026340782, dt = 0.0036529404979970146
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 298.28 us (93.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (62.9%)
Info: cfl dt = 0.0036529407719610597 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1247e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.76735546130419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3881142431320752, dt = 0.0036529407719610597
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.7%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 285.42 us (93.8%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.2%)
Info: cfl dt = 0.003652941053157839 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3980e+05 | 65536 | 2 | 1.929e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.18474592710277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3917671839040362, dt = 0.003652941053157839
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 329.26 us (94.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.1%)
Info: cfl dt = 0.003652941341747736 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3100e+05 | 65536 | 2 | 1.980e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.4186779407521 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.395420124957194, dt = 0.003652941341747736
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 332.46 us (94.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (64.4%)
Info: cfl dt = 0.0036529416378939675 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3377e+05 | 65536 | 2 | 1.964e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.97523106752851 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3990730662989417, dt = 0.0036529416378939675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 297.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (61.7%)
Info: cfl dt = 0.003652941941762631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3477e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.24215946209523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4027260079368356, dt = 0.003652941941762631
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.5%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 332.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.1%)
Info: cfl dt = 0.0036529422535227355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4372e+05 | 65536 | 2 | 1.907e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.97231030080479 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4063789498785981, dt = 0.0036529422535227355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 320.75 us (94.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.6%)
Info: cfl dt = 0.00365294257334624 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5290e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.88080211033721 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4100318921321209, dt = 0.00365294257334624
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.5%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 329.55 us (94.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.7%)
Info: cfl dt = 0.0036529429014080903 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5003e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.30417568028639 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4136848347054671, dt = 0.0036529429014080903
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 337.78 us (94.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.0%)
Info: cfl dt = 0.003652943237886257 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3879e+05 | 65536 | 2 | 1.934e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.9833277730954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4173377776068752, dt = 0.003652943237886257
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.12 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 281.43 us (93.9%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (60.6%)
Info: cfl dt = 0.0036529435829617727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4647e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.58927627461065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4209907208447614, dt = 0.0036529435829617727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 312.88 us (94.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.1%)
Info: cfl dt = 0.003652943936818769 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3832e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.95373976146142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4246436644277232, dt = 0.003652943936818769
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.9%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 279.85 us (93.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.1%)
Info: cfl dt = 0.0036529442996445158 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4326e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.94651996944253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4282966083645419, dt = 0.0036529442996445158
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.5%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 321.57 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.0%)
Info: cfl dt = 0.0036529446716294595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3372e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.03139957510001 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4319495526641863, dt = 0.0036529446716294595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.9%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 276.00 us (93.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.5%)
Info: cfl dt = 0.003652945052967262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4515e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.32493356322497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4356024973358157, dt = 0.003652945052967262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 313.40 us (93.9%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.9%)
Info: cfl dt = 0.003652945443854837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4008e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.30651526176366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.439255442388783, dt = 0.003652945443854837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 310.99 us (94.0%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.4%)
Info: cfl dt = 0.0036529458444923947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4130e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.55133664718353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4429083878326376, dt = 0.0036529458444923947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.9%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 278.81 us (93.6%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (63.4%)
Info: cfl dt = 0.003652946255083473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4428e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.14943200000383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4465613336771301, dt = 0.003652946255083473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.53 us (7.9%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 293.89 us (87.9%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.5%)
Info: cfl dt = 0.0036529466758349833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4002e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.29580438965075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4502142799322135, dt = 0.0036529466758349833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 311.87 us (94.1%)
LB move op cnt : 0
LB apply : 3.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.7%)
Info: cfl dt = 0.003652947106957252 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4419e+05 | 65536 | 2 | 1.475e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.13297399249856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4538672266080486, dt = 0.003652947106957252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 300.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.8%)
Info: cfl dt = 0.0036529475486640514 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4106e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.50481707401082 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4575201737150059, dt = 0.0036529475486640514
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (2.0%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 279.16 us (93.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.9%)
Info: cfl dt = 0.0036529480011726484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4475e+05 | 65536 | 2 | 1.474e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.24461820202373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4611731212636698, dt = 0.0036529480011726484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 320.70 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (64.1%)
Info: cfl dt = 0.0036529484647038436 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4007e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.30485150583667 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4648260692648425, dt = 0.0036529484647038436
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.9%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 272.94 us (93.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (63.5%)
Info: cfl dt = 0.0036529489394820083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4202e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.69771954137744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4684790177295464, dt = 0.0036529489394820083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 306.19 us (94.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.7%)
Info: cfl dt = 0.00365294942573513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3033e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.35055118411842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4721319666690285, dt = 0.00365294942573513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.5%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 318.32 us (94.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.4%)
Info: cfl dt = 0.00365294992369485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3634e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.55663687901121 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4757849160947636, dt = 0.00365294992369485
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 273.61 us (93.5%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.5%)
Info: cfl dt = 0.0036529504335965075 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4349e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.9910913579245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4794378660184584, dt = 0.0036529504335965075
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.1%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 270.51 us (93.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (65.9%)
Info: cfl dt = 0.0036529509556791806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3510e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.30879032780794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4830908164520549, dt = 0.0036529509556791806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.8%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 277.37 us (93.8%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.6%)
Info: cfl dt = 0.0036529514901857247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3050e+05 | 65536 | 2 | 1.983e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.31878828077524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.486743767407734, dt = 0.0036529514901857247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 297.56 us (87.7%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.3%)
Info: cfl dt = 0.0036529520373628226 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3658e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.5392388023565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4903967188979197, dt = 0.0036529520373628226
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 301.48 us (94.1%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.0%)
Info: cfl dt = 0.0036529525974610174 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3275e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.8371296671726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4940496709352826, dt = 0.0036529525974610174
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 327.45 us (94.2%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.5%)
Info: cfl dt = 0.0036529531707347636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3949e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.18992885854144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4977026235327437, dt = 0.0036529531707347636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.1%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 282.77 us (93.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (60.8%)
Info: cfl dt = 0.003652953757442463 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5596e+05 | 65536 | 2 | 1.841e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.42691243488133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5013555767034785, dt = 0.003652953757442463
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 321.56 us (93.9%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.1%)
Info: cfl dt = 0.003652954357846513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3072e+05 | 65536 | 2 | 1.982e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.36248507688292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.505008530460921, dt = 0.003652954357846513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.7%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 294.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (65.4%)
Info: cfl dt = 0.0036529549722133453 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4330e+05 | 65536 | 2 | 1.909e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.88653988367426 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5086614848187676, dt = 0.0036529549722133453
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.4%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 381.59 us (95.0%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.7%)
Info: cfl dt = 0.0036529556008134743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7245e+05 | 65536 | 2 | 1.760e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.73783749838394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.512314439790981, dt = 0.0036529556008134743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 298.94 us (93.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (64.5%)
Info: cfl dt = 0.003652956243921535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5320e+05 | 65536 | 2 | 1.446e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.94040758369917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5159673953917945, dt = 0.003652956243921535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 277.71 us (93.6%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.8%)
Info: cfl dt = 0.003652956901816333 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4634e+05 | 65536 | 2 | 1.468e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.5647151476707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.519620351635716, dt = 0.003652956901816333
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 314.78 us (94.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.8%)
Info: cfl dt = 0.003652957574780884 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8568e+05 | 65536 | 2 | 1.699e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.39111288947572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5232733085375325, dt = 0.003652957574780884
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.9%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 278.95 us (93.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (64.5%)
Info: cfl dt = 0.003652958263102461 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2173e+05 | 65536 | 2 | 2.037e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.56009889870548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5269262661123133, dt = 0.003652958263102461
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.6%)
patch tree reduce : 2.25 us (0.5%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 391.05 us (94.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (67.2%)
Info: cfl dt = 0.003652958967072636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3570e+05 | 65536 | 2 | 1.952e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.36352668682414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5305792243754157, dt = 0.003652958967072636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.6%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 298.02 us (94.0%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.6%)
Info: cfl dt = 0.003652959686987328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3629e+05 | 65536 | 2 | 1.949e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.48094396212126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5342321833424883, dt = 0.003652959686987328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 335.64 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.3%)
Info: cfl dt = 0.003652960423146844 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6917e+05 | 65536 | 2 | 1.775e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.07926146617268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5378851430294758, dt = 0.003652960423146844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 306.35 us (94.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.7%)
Info: cfl dt = 0.0036529611758559294 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.6213e+05 | 65536 | 2 | 1.418e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.73268249148201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5415381034526225, dt = 0.0036529611758559294
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.8%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 272.53 us (93.5%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (61.4%)
Info: cfl dt = 0.0036529619454238093 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4840e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.97800468500738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5451910646284785, dt = 0.0036529619454238093
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (2.0%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 277.02 us (93.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (62.9%)
Info: cfl dt = 0.0036529627321642342 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5077e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.4536334219829 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5488440265739023, dt = 0.0036529627321642342
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 319.05 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.1%)
Info: cfl dt = 0.0036529635363955278 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5000e+05 | 65536 | 2 | 1.456e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.29794627130346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5524969893060665, dt = 0.0036529635363955278
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 318.46 us (94.1%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (63.4%)
Info: cfl dt = 0.003652964358440631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5047e+05 | 65536 | 2 | 1.455e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.39338742155431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.556149952842462, dt = 0.003652964358440631
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.6%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 368.63 us (94.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (63.8%)
Info: cfl dt = 0.003652965198627152 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3827e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.9440690538894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5598029172009027, dt = 0.003652965198627152
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 328.10 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (59.4%)
Info: cfl dt = 0.003652966057287404 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5213e+05 | 65536 | 2 | 1.450e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.72510047881111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.56345588239953, dt = 0.003652966057287404
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.6%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 342.68 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.8%)
Info: cfl dt = 0.0036529669347584648 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5768e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.83980066185815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5671088484568174, dt = 0.0036529669347584648
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.6%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 308.21 us (94.1%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.5%)
Info: cfl dt = 0.0036529678313822075 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4078e+05 | 65536 | 2 | 1.487e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.44826512956837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5707618153915759, dt = 0.0036529678313822075
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.2%)
patch tree reduce : 1.99 us (0.4%)
gen split merge : 1.09 us (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 433.71 us (91.2%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.6%)
Info: cfl dt = 0.0036529687475053635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5447e+05 | 65536 | 2 | 1.442e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.19560681243553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.574414783222958, dt = 0.0036529687475053635
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.9%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 271.71 us (93.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.5%)
Info: cfl dt = 0.0036529696834795592 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5299e+05 | 65536 | 2 | 1.447e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.89826814065104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5780677519704633, dt = 0.0036529696834795592
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.4%)
LB compute : 277.48 us (93.6%)
LB move op cnt : 0
LB apply : 3.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.3%)
Info: cfl dt = 0.003652970639661367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5504e+05 | 65536 | 2 | 1.440e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.30990072570624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5817207216539428, dt = 0.003652970639661367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.9%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 273.98 us (93.6%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.5%)
Info: cfl dt = 0.0036529716164123496 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5467e+05 | 65536 | 2 | 1.441e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.23547739895268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5853736922936041, dt = 0.0036529716164123496
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.8%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 300.34 us (93.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.4%)
Info: cfl dt = 0.003652972614099115 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9168e+05 | 65536 | 2 | 1.673e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.59605501064028 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5890266639100166, dt = 0.003652972614099115
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 308.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.4%)
Info: cfl dt = 0.0036529736330933532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2939e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.1632305855476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5926796365241156, dt = 0.0036529736330933532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 339.39 us (94.6%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.8%)
Info: cfl dt = 0.0036529746737718975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3537e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.3620293142956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5963326101572088, dt = 0.0036529746737718975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 302.44 us (93.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.7%)
Info: cfl dt = 0.00365297573651676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2363e+05 | 65536 | 2 | 1.547e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.0073507717009 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5999855848309807, dt = 0.00365297573651676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.4%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 338.88 us (94.8%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.3%)
Info: cfl dt = 0.003652976821715189 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5368e+05 | 65536 | 2 | 1.445e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.03749002750689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6036385605674974, dt = 0.003652976821715189
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (2.0%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 281.11 us (93.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (64.1%)
Info: cfl dt = 0.003652977929759713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2823e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.93076877164437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6072915373892127, dt = 0.003652977929759713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.2%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 274.52 us (92.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.9%)
Info: cfl dt = 0.0036529790610481915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4330e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.95393882006859 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6109445153189723, dt = 0.0036529790610481915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (2.1%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 275.64 us (93.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.6%)
Info: cfl dt = 0.003652980215983861 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4933e+05 | 65536 | 2 | 1.459e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.1650448407438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6145974943800205, dt = 0.003652980215983861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.0%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 283.52 us (93.3%)
LB move op cnt : 0
LB apply : 3.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (64.7%)
Info: cfl dt = 0.0036529813949753892 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4950e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.19761337406752 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6182504745960045, dt = 0.0036529813949753892
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 335.57 us (94.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.8%)
Info: cfl dt = 0.0036529825984369197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5058e+05 | 65536 | 2 | 1.454e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.41476393898213 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.62190345599098, dt = 0.0036529825984369197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 312.92 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (59.2%)
Info: cfl dt = 0.003652983826788123 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4976e+05 | 65536 | 2 | 1.457e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.25112435528047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6255564385894168, dt = 0.003652983826788123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 278.49 us (93.5%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (61.1%)
Info: cfl dt = 0.003652985080454245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6698e+05 | 65536 | 2 | 1.786e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.63979777108344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6292094224162048, dt = 0.003652985080454245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1.43 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 297.78 us (93.9%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (61.1%)
Info: cfl dt = 0.00365298635986616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2902e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.08899842768042 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6328624074966591, dt = 0.00365298635986616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.8%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 295.44 us (93.7%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.1%)
Info: cfl dt = 0.003652987665460414 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2828e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.94088958156964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6365153938565253, dt = 0.003652987665460414
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 288.01 us (93.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.2%)
Info: cfl dt = 0.0036529889976792823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2686e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.655394821147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401683815219859, dt = 0.0036529889976792823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (1.9%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 304.12 us (93.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.9%)
Info: cfl dt = 0.003652990356970816 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1820e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.91728768236544 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6438213705196651, dt = 0.003652990356970816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 303.01 us (93.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.4%)
Info: cfl dt = 0.003652991743788891 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2021e+05 | 65536 | 2 | 2.047e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.25385801977916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.647474360876636, dt = 0.003652991743788891
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.5%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 352.04 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.3%)
Info: cfl dt = 0.0036529931585932616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3956e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.20406812397326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6511273526204249, dt = 0.0036529931585932616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 322.91 us (94.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.1%)
Info: cfl dt = 0.003652994601849607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4023e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.3392797004438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6547803457790182, dt = 0.003652994601849607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 293.37 us (93.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.1%)
Info: cfl dt = 0.003652996074029587 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3076e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.43752472752638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6584333403808678, dt = 0.003652996074029587
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.9%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 291.46 us (93.5%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (63.2%)
Info: cfl dt = 0.0036529975756108887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3625e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.53996495792573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6620863364548975, dt = 0.0036529975756108887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 291.96 us (93.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (58.6%)
Info: cfl dt = 0.003652999107077279 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4294e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.8816489058533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6657393340305084, dt = 0.003652999107077279
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.9%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 281.94 us (93.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.6%)
Info: cfl dt = 0.0036530006689186587 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3733e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.75650036561683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6693923331375857, dt = 0.0036530006689186587
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 337.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.0%)
Info: cfl dt = 0.0036530022616311063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4818e+05 | 65536 | 2 | 1.462e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.93489677086654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6730453338065043, dt = 0.0036530022616311063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 283.61 us (93.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (62.3%)
Info: cfl dt = 0.003653003885716939 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4936e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.17200952157893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6766983360681353, dt = 0.003653003885716939
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 277.89 us (93.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (60.9%)
Info: cfl dt = 0.0036530055416847565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4326e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.9474219866337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6803513399538523, dt = 0.0036530055416847565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.2%)
patch tree reduce : 1.38 us (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 438.01 us (95.8%)
LB move op cnt : 0
LB apply : 3.79 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (67.6%)
Info: cfl dt = 0.0036530072300494953 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4130e+05 | 65536 | 2 | 1.485e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.55383579659227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6840043454955371, dt = 0.0036530072300494953
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 296.47 us (93.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.6%)
Info: cfl dt = 0.003653008951332481 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8887e+05 | 65536 | 2 | 1.685e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.03276707637872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6876573527255867, dt = 0.003653008951332481
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.9%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 264.75 us (93.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (60.8%)
Info: cfl dt = 0.00365301070606148 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4396e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.08827111966112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6913103616769192, dt = 0.00365301070606148
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 274.79 us (93.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (63.2%)
Info: cfl dt = 0.0036530124947707523 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4286e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.86720748107761 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6949633723829807, dt = 0.0036530124947707523
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 276.18 us (93.4%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.3%)
Info: cfl dt = 0.0036530143180011 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3826e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.94451688279247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6986163848777514, dt = 0.0036530143180011
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 306.88 us (93.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.5%)
Info: cfl dt = 0.0036530161762999263 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4562e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.42124736877311 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7022693991957525, dt = 0.0036530161762999263
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.9%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 278.30 us (93.5%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (63.2%)
Info: cfl dt = 0.00365301807022128 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2898e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.08132979630712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7059224153720525, dt = 0.00365301807022128
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (2.1%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 273.27 us (93.0%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (62.2%)
Info: cfl dt = 0.0036530200003259124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3702e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.69434967255187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7095754334422737, dt = 0.0036530200003259124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 328.82 us (94.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.1%)
Info: cfl dt = 0.003653021967181332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1142e+05 | 65536 | 2 | 2.104e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.49144631354107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7132284534425997, dt = 0.003653021967181332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 363.87 us (95.0%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (65.1%)
Info: cfl dt = 0.003653023971361851 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3813e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.91842096885449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.716881475409781, dt = 0.003653023971361851
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.7%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 299.06 us (93.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.4%)
Info: cfl dt = 0.003653026013448643 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4301e+05 | 65536 | 2 | 1.479e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.89717118253574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.720534499381143, dt = 0.003653026013448643
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (1.8%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 325.10 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.3%)
Info: cfl dt = 0.0036530280940297944 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3623e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.5361810937221 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7241875253945915, dt = 0.0036530280940297944
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 294.22 us (93.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (59.7%)
Info: cfl dt = 0.0036530302137003567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4116e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.5268259268491 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7278405534886214, dt = 0.0036530302137003567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.0%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 291.97 us (93.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (62.8%)
Info: cfl dt = 0.0036530323730623987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4260e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.81563371658054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7314935837023218, dt = 0.0036530323730623987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 342.53 us (94.6%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.2%)
Info: cfl dt = 0.003653034572725065 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4885e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.06855117734017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7351466160753841, dt = 0.003653034572725065
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.9%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 333.17 us (94.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (66.1%)
Info: cfl dt = 0.0036530368133046217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4955e+05 | 65536 | 2 | 1.458e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.21021702332365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7387996506481092, dt = 0.0036530368133046217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.3%)
patch tree reduce : 1.78 us (0.4%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 377.22 us (95.1%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.6%)
Info: cfl dt = 0.003653039095424514 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7429e+05 | 65536 | 2 | 1.751e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.1083093700843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7424526874614137, dt = 0.003653039095424514
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 298.58 us (93.9%)
LB move op cnt : 0
LB apply : 3.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.2%)
Info: cfl dt = 0.0036530414197154188 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9678e+05 | 65536 | 2 | 1.652e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.62059536789887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7461057265568383, dt = 0.0036530414197154188
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 335.56 us (94.6%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.9%)
Info: cfl dt = 0.0036530437868153 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5686e+05 | 65536 | 2 | 1.434e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.67704077953955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7497587679765536, dt = 0.0036530437868153
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 295.85 us (93.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.5%)
Info: cfl dt = 0.003653046197369458 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2254e+05 | 65536 | 2 | 1.551e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.78916123291587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7534118117633688, dt = 0.003653046197369458
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.6%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 761.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 346.42 us (94.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.2%)
Info: cfl dt = 0.003653048652030586 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6112e+05 | 65536 | 2 | 1.815e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.46465257945314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7570648579607382, dt = 0.003653048652030586
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 314.61 us (94.0%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.6%)
Info: cfl dt = 0.0036530511514588234 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1111e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.49663937257138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7607179066127687, dt = 0.0036530511514588234
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 288.36 us (93.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (62.7%)
Info: cfl dt = 0.00365305369632181 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8185e+05 | 65536 | 2 | 1.716e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.62527002633658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7643709577642275, dt = 0.00365305369632181
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 281.09 us (93.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (62.0%)
Info: cfl dt = 0.0036530562872947392 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4398e+05 | 65536 | 2 | 1.476e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.09264260753449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7680240114605492, dt = 0.0036530562872947392
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 294.00 us (94.0%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (60.7%)
Info: cfl dt = 0.0036530589250604105 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5682e+05 | 65536 | 2 | 1.435e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.66962590087687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.771677067747844, dt = 0.0036530589250604105
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.1%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 273.98 us (93.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (62.8%)
Info: cfl dt = 0.003653061610309286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4292e+05 | 65536 | 2 | 1.480e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.87973800065323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7753301266729045, dt = 0.003653061610309286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.9%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 298.28 us (93.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.2%)
Info: cfl dt = 0.003653064343739543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4034e+05 | 65536 | 2 | 1.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.36272736063584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7789831882832137, dt = 0.003653064343739543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 350.18 us (94.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.2%)
Info: cfl dt = 0.0036530671260571277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2044e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.36881062558142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7826362526269532, dt = 0.0036530671260571277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.2%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 451.68 us (95.8%)
LB move op cnt : 0
LB apply : 4.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.6%)
Info: cfl dt = 0.003653069957975811 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2738e+05 | 65536 | 2 | 2.002e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.69429618913024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7862893197530103, dt = 0.003653069957975811
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (0.8%)
patch tree reduce : 1.27 us (0.2%)
gen split merge : 752.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.1%)
LB compute : 629.19 us (97.1%)
LB move op cnt : 0
LB apply : 3.84 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (69.4%)
Info: cfl dt = 0.0036530728402172402 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0432e+05 | 65536 | 2 | 2.154e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.06671077317762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.789942389710986, dt = 0.0036530728402172402
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 357.23 us (94.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (61.8%)
Info: cfl dt = 0.0036530757735109957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2329e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.94031612918073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7935954625512034, dt = 0.0036530757735109957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 320.65 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (63.0%)
Info: cfl dt = 0.003653078758594642 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2731e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.74855988493172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7972485383247143, dt = 0.003653078758594642
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (1.7%)
patch tree reduce : 2.51 us (0.7%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 345.51 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.7%)
Info: cfl dt = 0.003653081796213786 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3423e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.13684838232149 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.800901617083309, dt = 0.003653081796213786
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 314.47 us (93.7%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.4%)
Info: cfl dt = 0.003653084887122127 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3651e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.59348163424877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8045546988795227, dt = 0.003653084887122127
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (2.0%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 270.82 us (93.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (60.7%)
Info: cfl dt = 0.003653088032081518 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3105e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.49846434157331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8082077837666448, dt = 0.003653088032081518
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 309.65 us (93.9%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.2%)
Info: cfl dt = 0.0036530912318620103 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4524e+05 | 65536 | 2 | 1.898e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.28016043297372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8118608717987263, dt = 0.0036530912318620103
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 335.64 us (94.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.3%)
Info: cfl dt = 0.0036530944872419147 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4060e+05 | 65536 | 2 | 1.924e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.34824559600781 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8155139630305883, dt = 0.0036530944872419147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 312.01 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.7%)
Info: cfl dt = 0.0036530977990078544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3803e+05 | 65536 | 2 | 1.939e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.8329110360757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8191670575178303, dt = 0.0036530977990078544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.4%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 360.17 us (94.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.3%)
Info: cfl dt = 0.0036531011679548195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3707e+05 | 65536 | 2 | 1.944e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.63979100399163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8228201553168382, dt = 0.0036531011679548195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.7%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 289.06 us (93.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (64.7%)
Info: cfl dt = 0.0036531045948862196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4354e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.0059932929759 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.826473256484793, dt = 0.0036531045948862196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 318.30 us (94.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.2%)
Info: cfl dt = 0.0036531080806139434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4739e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.77791954844771 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8301263610796792, dt = 0.0036531080806139434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 298.88 us (94.1%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (63.5%)
Info: cfl dt = 0.003653111625958406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4611e+05 | 65536 | 2 | 1.469e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.52233005249386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.833779469160293, dt = 0.003653111625958406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 341.27 us (94.7%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.8%)
Info: cfl dt = 0.0036531152317486088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6973e+05 | 65536 | 2 | 1.773e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.19349201810931 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8374325807862515, dt = 0.0036531152317486088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 310.10 us (94.1%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (63.6%)
Info: cfl dt = 0.003653118898822192 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5773e+05 | 65536 | 2 | 1.432e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.85266889801466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8410856960180002, dt = 0.003653118898822192
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 278.77 us (93.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.4%)
Info: cfl dt = 0.0036531226280254892 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.5415e+05 | 65536 | 2 | 1.443e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.13534083981344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8447388149168225, dt = 0.0036531226280254892
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (2.0%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 270.25 us (93.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.8%)
Info: cfl dt = 0.0036531264202135827 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6449e+05 | 65536 | 2 | 1.798e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.14390357976112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8483919375448479, dt = 0.0036531264202135827
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 320.19 us (94.2%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.0%)
Info: cfl dt = 0.0036531302762503565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4530e+05 | 65536 | 2 | 1.472e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.35863901128916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8520450639650614, dt = 0.0036531302762503565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 2.26 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 317.57 us (94.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (65.9%)
Info: cfl dt = 0.0036531341970085516 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4478e+05 | 65536 | 2 | 1.473e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.25572048173133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8556981942413118, dt = 0.0036531341970085516
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.9%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 273.51 us (93.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.4%)
Info: cfl dt = 0.0036531381833698226 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1110e+05 | 65536 | 2 | 1.594e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.49630146342996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8593513284383203, dt = 0.0036531381833698226
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 336.37 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.4%)
Info: cfl dt = 0.0036531422362247896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1188e+05 | 65536 | 2 | 2.101e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.58575882505559 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.86300446662169, dt = 0.0036531422362247896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 353.57 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.0%)
Info: cfl dt = 0.00365314635647309 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4339e+05 | 65536 | 2 | 1.909e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.90833769273102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8666576088579148, dt = 0.00365314635647309
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 304.56 us (94.1%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.3%)
Info: cfl dt = 0.003653150545023441 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5194e+05 | 65536 | 2 | 1.862e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.62427635975861 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8703107552143878, dt = 0.003653150545023441
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 303.01 us (93.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.4%)
Info: cfl dt = 0.003653154802793686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4691e+05 | 65536 | 2 | 1.889e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.6147774862569 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8739639057594113, dt = 0.003653154802793686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.50 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 311.32 us (94.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.5%)
Info: cfl dt = 0.003653159130710854 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3691e+05 | 65536 | 2 | 1.945e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.60895194318698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.877617060562205, dt = 0.003653159130710854
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 309.53 us (94.3%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (62.5%)
Info: cfl dt = 0.0036531635297112116 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4460e+05 | 65536 | 2 | 1.902e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.15296253970746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8812702196929159, dt = 0.0036531635297112116
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 335.54 us (94.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.4%)
Info: cfl dt = 0.0036531680007403184 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4552e+05 | 65536 | 2 | 1.897e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.33749831932506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.884923383222627, dt = 0.0036531680007403184
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 335.88 us (94.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.9%)
Info: cfl dt = 0.003653172544753079 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3726e+05 | 65536 | 2 | 1.943e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.67863256434045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8885765512233674, dt = 0.003653172544753079
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (1.6%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 307.26 us (94.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.2%)
Info: cfl dt = 0.003653177162713804 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4011e+05 | 65536 | 2 | 1.927e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.2514807277016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8922297237681205, dt = 0.003653177162713804
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 301.84 us (94.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.2%)
Info: cfl dt = 0.003653181855596254 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3899e+05 | 65536 | 2 | 1.933e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.02701434375996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8958829009308342, dt = 0.003653181855596254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (0.9%)
patch tree reduce : 1.85 us (0.3%)
gen split merge : 1.48 us (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.2%)
LB compute : 612.28 us (96.7%)
LB move op cnt : 0
LB apply : 3.88 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (63.2%)
Info: cfl dt = 0.003653186624383702 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4777e+05 | 65536 | 2 | 1.884e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.78828782532007 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8995360827864305, dt = 0.003653186624383702
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 300.18 us (94.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (62.7%)
Info: cfl dt = 0.003653191470068986 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4565e+05 | 65536 | 2 | 1.896e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.36310450554306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9031892694108141, dt = 0.003653191470068986
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 341.16 us (94.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (62.7%)
Info: cfl dt = 0.003653196393654559 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4586e+05 | 65536 | 2 | 1.895e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.4048943678356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9068424608808832, dt = 0.003653196393654559
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 308.37 us (93.9%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.0%)
Info: cfl dt = 0.0036532013961525496 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4256e+05 | 65536 | 2 | 1.913e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.74357699335535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9104956572745377, dt = 0.0036532013961525496
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.5%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 359.62 us (94.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (64.3%)
Info: cfl dt = 0.00365320647858481 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4590e+05 | 65536 | 2 | 1.895e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.41460701993326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9141488586706903, dt = 0.00365320647858481
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 331.13 us (94.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.9%)
Info: cfl dt = 0.0036532116419829724 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4265e+05 | 65536 | 2 | 1.913e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.76185429839705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.917802065149275, dt = 0.0036532116419829724
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 305.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.4%)
Info: cfl dt = 0.0036532168873885046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3573e+05 | 65536 | 2 | 1.952e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.37394233430742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.921455276791258, dt = 0.0036532168873885046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.3%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 381.97 us (95.1%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.1%)
Info: cfl dt = 0.0036532222158527595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4512e+05 | 65536 | 2 | 1.899e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.25808390802489 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9251084936786464, dt = 0.0036532222158527595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 339.40 us (94.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (64.9%)
Info: cfl dt = 0.0036532276284370353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4570e+05 | 65536 | 2 | 1.896e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.37429271988987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9287617158944992, dt = 0.0036532276284370353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 308.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.4%)
Info: cfl dt = 0.003653233126212623 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4729e+05 | 65536 | 2 | 1.887e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.69291245481409 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9324149435229363, dt = 0.003653233126212623
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.9%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 311.39 us (93.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.5%)
Info: cfl dt = 0.003653238710260862 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4242e+05 | 65536 | 2 | 1.914e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.71521682307005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.936068176649149, dt = 0.003653238710260862
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 338.09 us (94.7%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.0%)
Info: cfl dt = 0.0036532443816731956 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4526e+05 | 65536 | 2 | 1.898e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.28537552528864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9397214153594098, dt = 0.0036532443816731956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 298.87 us (94.0%)
LB move op cnt : 0
LB apply : 3.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 0.003653250141551222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4803e+05 | 65536 | 2 | 1.883e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.84316261631606 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.943374659741083, dt = 0.003653250141551222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 330.95 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.9%)
Info: cfl dt = 0.003653255991006749 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4541e+05 | 65536 | 2 | 1.897e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.31584874448492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9470279098826342, dt = 0.003653255991006749
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 322.48 us (94.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (63.2%)
Info: cfl dt = 0.0036532619311618482 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4794e+05 | 65536 | 2 | 1.884e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.82456449721877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.950681165873641, dt = 0.0036532619311618482
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.9%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 293.10 us (93.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (60.7%)
Info: cfl dt = 0.0036532679631489057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4488e+05 | 65536 | 2 | 1.900e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.20999577839535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9543344278048027, dt = 0.0036532679631489057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.5%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 333.36 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.2%)
Info: cfl dt = 0.0036532740881106743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2991e+05 | 65536 | 2 | 1.986e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.2062048140598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9579876957679516, dt = 0.0036532740881106743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.4%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 367.05 us (94.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (64.1%)
Info: cfl dt = 0.0036532803072003347 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3269e+05 | 65536 | 2 | 1.970e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.76448789250607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9616409698560624, dt = 0.0036532803072003347
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.48 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 300.43 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.5%)
Info: cfl dt = 0.003653286621581537 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3784e+05 | 65536 | 2 | 1.940e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.79716981123067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9652942501632626, dt = 0.003653286621581537
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 1.45 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 292.25 us (94.0%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.9%)
Info: cfl dt = 0.003653293032428462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3361e+05 | 65536 | 2 | 1.964e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.94955542393517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9689475367848441, dt = 0.003653293032428462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 336.03 us (94.4%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.1%)
Info: cfl dt = 0.0036532995409258705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3910e+05 | 65536 | 2 | 1.933e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.05118049942968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9726008298172726, dt = 0.0036532995409258705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 333.71 us (94.5%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.5%)
Info: cfl dt = 0.0036533061482691555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3058e+05 | 65536 | 2 | 1.982e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.34183490053732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9762541293581986, dt = 0.0036533061482691555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 295.84 us (94.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (62.2%)
Info: cfl dt = 0.003653312855664396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3072e+05 | 65536 | 2 | 1.982e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.3700494171335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9799074355064676, dt = 0.003653312855664396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 324.95 us (94.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.7%)
Info: cfl dt = 0.0036533196643284095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3169e+05 | 65536 | 2 | 1.976e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.56478034689668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.983560748362132, dt = 0.0036533196643284095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (0.8%)
patch tree reduce : 1.60 us (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 648.70 us (97.0%)
LB move op cnt : 0
LB apply : 3.83 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (68.4%)
Info: cfl dt = 0.0036533265754888048 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3283e+05 | 65536 | 2 | 1.969e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.79405013917929 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9872140680264605, dt = 0.0036533265754888048
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 298.44 us (93.8%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.7%)
Info: cfl dt = 0.0036533335903840315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4245e+05 | 65536 | 2 | 1.914e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.72311208757543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9908673946019493, dt = 0.0036533335903840315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 335.87 us (94.1%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.0%)
Info: cfl dt = 0.0036533407102634337 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4443e+05 | 65536 | 2 | 1.903e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.12155883705567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9945207281923334, dt = 0.0036533407102634337
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 313.23 us (94.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.9%)
Info: cfl dt = 0.0036533479363873044 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4067e+05 | 65536 | 2 | 1.924e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.36640757095492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9981740689025969, dt = 0.001825931097403144
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 299.46 us (93.9%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.5%)
Info: cfl dt = 0.003653351559829881 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4367e+05 | 65536 | 2 | 1.907e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.47104512333546 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1342.468406914 (s) [Godunov][rank=0]
running minmod hllc
Info: pushing data in scheduler, N = 8192 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 2.29 ms [DataInserterUtility][rank=0]
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 : 4.13 us (59.3%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (0.3%)
patch tree reduce : 932.00 ns (0.2%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 396.79 us (97.3%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: patch count stable after 1 runs npatch = 2 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=False
Info: time since start : 1342.644352511 (s) [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.0%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 361.52 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (65.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9380e+05 | 65536 | 2 | 1.664e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 752.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 289.24 us (93.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2286e+05 | 65536 | 2 | 1.550e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.85248274779926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003652931508385532, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (2.1%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 269.18 us (93.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (61.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6014e+05 | 65536 | 2 | 1.820e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.2659160269671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007305863016771064, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 346.17 us (94.4%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (66.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1812e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.90027925423738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010958794525156596, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (2.0%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 280.75 us (93.6%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3067e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.41852339688255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014611726033542128, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 279.13 us (93.7%)
LB move op cnt : 0
LB apply : 3.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (61.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3328e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.94345788649305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01826465754192766, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.8%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 271.63 us (93.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (59.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2533e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.3464591714038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021917589050313192, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 315.98 us (94.1%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (62.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5670e+05 | 65536 | 2 | 1.837e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.57582910638472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025570520558698726, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 310.28 us (94.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0698e+05 | 65536 | 2 | 2.135e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.59931477364558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02922345206708426, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.3%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 1.01 us (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 365.38 us (90.3%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (66.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3147e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.57884059646949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03287638357546979, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 339.31 us (94.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (64.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8092e+05 | 65536 | 2 | 1.720e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.4353467539624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036529315083855325, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.9%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 761.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 274.04 us (93.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (63.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4383e+05 | 65536 | 2 | 1.906e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.9936431522665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04018224659224086, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 273.73 us (93.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5174e+05 | 65536 | 2 | 1.863e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.58117599385606 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04383517810062639, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 324.40 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1839e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.95559857738287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047488109609011925, dt = 0.002511890390988078
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.7%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 339.12 us (94.1%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (65.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1856e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.75392587171093 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1345.250851164 (s) [Godunov][rank=0]
amr::Godunov: t = 0.05, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.0%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 352.66 us (94.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (65.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1019e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.30925740444616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.053652931508385536, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.9%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 288.04 us (93.3%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2980e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.24496383522384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05730586301677107, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.6%)
patch tree reduce : 21.76 us (6.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 295.20 us (88.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3079e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.44357605552656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0609587945251566, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 309.12 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3259e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.80402769968218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06461172603354214, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.8%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 311.77 us (94.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1093e+05 | 65536 | 2 | 2.108e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.39224443516229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06826465754192766, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.4%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 356.03 us (94.7%)
LB move op cnt : 0
LB apply : 3.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1553e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.38090133096514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07191758905031319, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 309.94 us (94.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (61.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1248e+05 | 65536 | 2 | 1.589e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.76800870123857 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07557052055869871, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.6%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 350.24 us (94.4%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (63.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2005e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.2885252481639 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07922345206708424, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 289.83 us (93.7%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.8558e+05 | 65536 | 2 | 2.295e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.30586165351355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08287638357546977, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.05 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 336.05 us (94.5%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1130e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.53125645768397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0865293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.3%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 364.01 us (95.1%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0707e+05 | 65536 | 2 | 2.134e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.616987793260286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09018224659224082, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.3%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 397.85 us (95.2%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7223e+05 | 65536 | 2 | 1.761e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.69166762604738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09383517810062635, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 275.25 us (93.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (65.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1478e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.23105266716522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09748810960901187, dt = 0.0025118903909881335
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.5%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 331.90 us (94.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (64.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4323e+05 | 65536 | 2 | 1.909e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.36014936463591 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1347.763755867 (s) [Godunov][rank=0]
amr::Godunov: t = 0.1, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (1.8%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 366.84 us (94.5%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (64.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1220e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.7127752272085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10365293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.7%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 331.67 us (94.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0716e+05 | 65536 | 2 | 1.610e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.701163527123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10730586301677106, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 318.60 us (94.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (64.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2034e+05 | 65536 | 2 | 2.046e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.28007527240732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11095879452515658, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 371.86 us (95.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (65.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0909e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.08805796666071 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11461172603354211, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.8%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 279.96 us (93.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6280e+05 | 65536 | 2 | 1.806e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.79915497072672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11826465754192764, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 301.06 us (94.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1097e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.46571615010046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12191758905031316, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 299.05 us (93.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (62.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1470e+05 | 65536 | 2 | 2.083e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.14728582605164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1255705205586987, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.3%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 400.02 us (95.4%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (70.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2841e+05 | 65536 | 2 | 1.996e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.89964295716965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12922345206708422, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 331.82 us (94.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (62.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1397e+05 | 65536 | 2 | 2.087e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.00100847285225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13287638357546974, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.3%)
patch tree reduce : 2.24 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 419.82 us (95.4%)
LB move op cnt : 0
LB apply : 4.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.6%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1762e+05 | 65536 | 2 | 2.063e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.733975936313456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13652931508385527, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 333.42 us (94.7%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1639e+05 | 65536 | 2 | 2.071e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.487350253887364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1401822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.3%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 1.39 us (0.3%)
LB compute : 388.41 us (94.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (65.5%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2198e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.67415338094698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14383517810062632, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 283.14 us (93.7%)
LB move op cnt : 0
LB apply : 3.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (62.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2602e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.48653651635424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14748810960901185, dt = 0.002511890390988175
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 305.78 us (93.8%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.1%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2465e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.593954496207786 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1350.3574178370002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.15000000000000002, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.32 us (2.1%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 369.00 us (94.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (69.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2194e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.66655067207228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15365293150838555, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.0%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 280.00 us (93.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3808e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.90550577334328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15730586301677107, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 303.70 us (94.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (64.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2886e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.05613135314171 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1609587945251566, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (2.0%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 274.42 us (93.2%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0319e+05 | 65536 | 2 | 1.625e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.9051963656769 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16461172603354213, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.9%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 268.01 us (93.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2186e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.65203702973534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16826465754192765, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.5%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 345.50 us (94.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3589e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.46620250420374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17191758905031318, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.9%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 275.38 us (93.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4003e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.29778614193155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1755705205586987, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 324.66 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3852e+05 | 65536 | 2 | 1.494e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.99367134788629 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17922345206708423, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 302.98 us (94.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (64.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3548e+05 | 65536 | 2 | 1.505e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.38410683943242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18287638357546976, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (2.0%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 271.27 us (93.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (61.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4354e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.00177950850056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18652931508385528, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 318.97 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3934e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.1577297452492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1901822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.4%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 349.87 us (94.9%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5974e+05 | 65536 | 2 | 1.822e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.18513945075884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19383517810062634, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.7%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 306.38 us (94.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2721e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.72524133141717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19748810960901186, dt = 0.0025118903909881474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 275.83 us (93.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (61.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8697e+05 | 65536 | 2 | 1.694e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.395093516272716 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1352.614378301 (s) [Godunov][rank=0]
amr::Godunov: t = 0.2, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (1.9%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 370.73 us (94.4%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (66.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1497e+05 | 65536 | 2 | 2.081e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.20171432644139 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20365293150838554, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (1.1%)
patch tree reduce : 1.45 us (0.3%)
gen split merge : 681.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 407.03 us (95.8%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1261e+05 | 65536 | 2 | 2.096e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.729443223002924 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20730586301677106, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.4%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 373.21 us (94.9%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3386e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.05941789695314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2109587945251566, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 295.73 us (93.9%)
LB move op cnt : 0
LB apply : 3.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (62.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2767e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.81610362178778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21461172603354212, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 327.33 us (94.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (58.2%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0841e+05 | 65536 | 2 | 1.605e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.95156561059379 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21826465754192764, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 304.35 us (94.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4995e+05 | 65536 | 2 | 1.873e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.22077534692123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22191758905031317, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (2.0%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 276.31 us (93.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0509e+05 | 65536 | 2 | 1.618e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.28672691262456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2255705205586987, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.9%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 270.60 us (93.5%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (60.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5129e+05 | 65536 | 2 | 1.866e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.49120913889936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22922345206708422, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 307.96 us (94.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0677e+05 | 65536 | 2 | 1.611e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.62395862026851 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23287638357546975, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 329.79 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2032e+05 | 65536 | 2 | 1.559e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.34302174429314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23652931508385527, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (2.0%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 274.24 us (93.6%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (63.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3085e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.45426571613346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2401822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.9%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 271.98 us (93.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (62.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2446e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.17217400459641 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24383517810062633, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.9%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 270.16 us (93.4%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1580e+05 | 65536 | 2 | 2.075e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.36947509527543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24748810960901185, dt = 0.0025118903909881474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.4%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.01 us (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 386.65 us (95.1%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8844e+05 | 65536 | 2 | 1.687e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.597292040090494 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1355.1154071810001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.25, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.8%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 363.09 us (94.4%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (63.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1324e+05 | 65536 | 2 | 1.586e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.92067173326535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2536529315083855, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 296.73 us (94.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (63.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1671e+05 | 65536 | 2 | 1.573e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.61755331224734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25730586301677105, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.8%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 289.66 us (93.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2000e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.27809273685058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2609587945251566, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 318.60 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8639e+05 | 65536 | 2 | 1.696e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.53403783900325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2646117260335421, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.9%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 290.11 us (93.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1970e+05 | 65536 | 2 | 2.050e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.15226375707357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26826465754192763, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (0.5%)
patch tree reduce : 1.99 us (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.1%)
LB compute : 1.22 ms (98.4%)
LB move op cnt : 0
LB apply : 3.94 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (67.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1277e+05 | 65536 | 2 | 2.095e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.7604954693359 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27191758905031316, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.3%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 361.54 us (95.1%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (64.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8034e+05 | 65536 | 2 | 1.723e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.31947647128307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2755705205586987, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 344.86 us (94.7%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0868e+05 | 65536 | 2 | 1.604e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.00576685299848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2792234520670842, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 6.99 us (1.8%)
LB compute : 353.16 us (93.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1831e+05 | 65536 | 2 | 1.567e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.93803095033196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28287638357546974, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.0%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 305.14 us (93.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2500e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.28023436245134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28652931508385526, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 313.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3167e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.62033240499291 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2901822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 304.13 us (93.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4875e+05 | 65536 | 2 | 1.879e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.98088745509213 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2938351781006263, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.0%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 307.03 us (93.5%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (57.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5805e+05 | 65536 | 2 | 1.830e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.84720839961732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29748810960901184, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.3%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 383.66 us (95.1%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7837e+05 | 65536 | 2 | 1.732e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.20796831842575 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1357.589274526 (s) [Godunov][rank=0]
amr::Godunov: t = 0.30000000000000004, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (1.9%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 368.10 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (63.7%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5060e+05 | 65536 | 2 | 1.869e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.35173950830438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30365293150838557, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 298.40 us (88.6%)
LB move op cnt : 0
LB apply : 22.71 us (6.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.6%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5367e+05 | 65536 | 2 | 1.853e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.96747303740987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3073058630167711, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 295.31 us (93.9%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.9%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2905e+05 | 65536 | 2 | 1.992e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.02721123525524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3109587945251566, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.5%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 337.27 us (94.3%)
LB move op cnt : 0
LB apply : 4.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.2%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1887e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.05069186331706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31461172603354215, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 367.97 us (94.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (63.9%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2472e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.22407912072666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3182646575419277, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 302.98 us (94.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (66.5%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3353e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.99240870160756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3219175890503132, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 334.83 us (94.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.3%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3511e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.30902315245508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32557052055869873, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.7%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 338.58 us (94.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.3%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3327e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.94039536810001 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32922345206708425, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.7%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 298.24 us (93.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (60.4%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3259e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.80488373287322 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3328763835754698, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 296.40 us (93.8%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.7%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0745e+05 | 65536 | 2 | 2.132e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.693716378429464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3365293150838553, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 377.84 us (95.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.1%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8871e+05 | 65536 | 2 | 1.686e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.99867633327884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34018224659224083, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.8%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 315.53 us (93.9%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.0%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4174e+05 | 65536 | 2 | 1.484e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.63992989198748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34383517810062636, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.9%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 272.67 us (93.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.71 us (94.5%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1197e+05 | 65536 | 2 | 2.101e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.5993725845057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3474881096090119, dt = 0.0025118903909881474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.05 us (1.4%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 339.11 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (65.1%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7960e+05 | 65536 | 2 | 1.726e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.37804152392815 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1360.066920574 (s) [Godunov][rank=0]
amr::Godunov: t = 0.35000000000000003, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.00 us (2.1%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 362.46 us (94.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (67.3%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8026e+05 | 65536 | 2 | 1.723e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.30340313645031 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35365293150838556, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 267.74 us (85.7%)
LB move op cnt : 0
LB apply : 28.82 us (9.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.2%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3306e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.89870611876287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3573058630167711, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 338.69 us (94.6%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.5%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7636e+05 | 65536 | 2 | 1.741e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.52191938172763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3609587945251566, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.8%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 306.74 us (93.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.1%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6607e+05 | 65536 | 2 | 1.790e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.45660089146705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36461172603354214, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.9%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 297.90 us (93.8%)
LB move op cnt : 0
LB apply : 3.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (60.6%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5757e+05 | 65536 | 2 | 1.833e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.7505318710629 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36826465754192766, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.5%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 327.03 us (94.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.5%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1416e+05 | 65536 | 2 | 1.582e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.10665612434897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3719175890503132, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 295.31 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (64.0%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2390e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.05967296305928 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3755705205586987, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.4%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 347.31 us (94.8%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (64.8%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3583e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.45336225464719 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37922345206708424, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 305.27 us (93.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3646e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.58051144165529 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38287638357546977, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 272.57 us (93.5%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3453e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.19431419255508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3865293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.10 us (1.5%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 309.60 us (94.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4012e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.31432720109993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3901822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 276.37 us (93.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (64.8%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3821e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.93267872708498 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39383517810062635, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 289.82 us (93.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.8%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3264e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.81407024943124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3974881096090119, dt = 0.0025118903909881474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.98 us (1.6%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 348.87 us (94.7%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.2%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3304e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.75215548865212 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1362.372597279 (s) [Godunov][rank=0]
amr::Godunov: t = 0.4, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (1.7%)
patch tree reduce : 2.38 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 424.47 us (95.0%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (68.7%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0996e+05 | 65536 | 2 | 2.114e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.197347520989766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40365293150838555, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.5%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 371.34 us (95.1%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (66.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7765e+05 | 65536 | 2 | 1.735e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.77886186718871 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4073058630167711, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 283.88 us (93.6%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0310e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.88624908037536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4109587945251566, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.8%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 279.05 us (93.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3079e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.44335615246307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4146117260335421, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 973.00 ns (0.3%)
LB compute : 313.93 us (94.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3392e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.07012782666432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41826465754192765, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 282.33 us (93.5%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (57.0%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4267e+05 | 65536 | 2 | 1.912e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.76142358364926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4219175890503132, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 300.13 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.8%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3794e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.87822335076665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4255705205586987, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 280.85 us (93.7%)
LB move op cnt : 0
LB apply : 3.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (61.8%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2884e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.05258988508653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42922345206708423, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 2.39 us (0.8%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 275.99 us (93.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.8%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3308e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.90222281897069 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43287638357546976, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (2.0%)
patch tree reduce : 2.23 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 275.43 us (93.3%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (59.1%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7368e+05 | 65536 | 2 | 1.754e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.98315362055898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4365293150838553, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 344.33 us (94.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (63.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3453e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.19304693018248 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4401822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (2.0%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 283.42 us (93.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (65.6%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7693e+05 | 65536 | 2 | 1.739e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.63579856638357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44383517810062634, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 298.63 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (61.1%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2978e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.24128294837709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44748810960901186, dt = 0.0025118903909881474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.7%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 298.75 us (93.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (62.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3170e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.56669600508031 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1364.7523508400002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.45, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (1.8%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1.35 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 387.94 us (94.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (65.2%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3019e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.32211468667298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45365293150838554, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.5%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 362.75 us (94.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.8%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2219e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.71664595536795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45730586301677106, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.4%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 369.66 us (94.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2754e+05 | 65536 | 2 | 2.001e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.72527492569091 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4609587945251566, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.4%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 376.11 us (95.0%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (65.5%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2995e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.27494806704793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4646117260335421, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 349.78 us (94.6%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (65.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2814e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.91047833436377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46826465754192764, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 346.61 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (60.3%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2741e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.76491256467472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47191758905031317, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 342.96 us (94.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7423e+05 | 65536 | 2 | 1.751e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.09351635996397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4755705205586987, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.7%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 326.77 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (65.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2630e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.54148692693194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4792234520670842, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 311.70 us (94.0%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (62.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6399e+05 | 65536 | 2 | 1.801e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.03816203433564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48287638357546975, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.7%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 320.48 us (94.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3506e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.3004936916491 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4865293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 313.68 us (94.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5207e+05 | 65536 | 2 | 1.861e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.64609430561171 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4901822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 322.77 us (94.6%)
LB move op cnt : 0
LB apply : 3.19 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (62.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1770e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.81720229970902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4938351781006263, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.4%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 362.86 us (95.0%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.9%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3077e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.43815949252848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49748810960901185, dt = 0.0025118903909881474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 318.35 us (94.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (56.7%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8879e+05 | 65536 | 2 | 1.686e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.6461599667481 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1367.1243026210002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.5, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (1.5%)
patch tree reduce : 1.93 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.38 us (0.3%)
LB compute : 425.49 us (95.1%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (65.4%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2937e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.15883217533799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5036529315083855, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 329.25 us (94.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.7%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2664e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.6106863666593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.507305863016771, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 338.25 us (94.3%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.6%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2205e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.6896334139565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5109587945251566, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 282.31 us (93.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.8%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3777e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.84356027716993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5146117260335421, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.8%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 282.80 us (93.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.6%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2470e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.22013527843883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5182646575419276, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.9%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 273.00 us (93.6%)
LB move op cnt : 0
LB apply : 3.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.8%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1838e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.951958302823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5219175890503132, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.0%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.4%)
LB compute : 280.01 us (93.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.3%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1614e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.50366897259536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5255705205586987, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.9%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 301.92 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (60.2%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3288e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.86159885676658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5292234520670842, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 304.27 us (94.0%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.5%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8111e+05 | 65536 | 2 | 1.720e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.47358842333682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5328763835754697, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.8%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 307.54 us (94.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (59.8%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3825e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.9404094733575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5365293150838553, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.8%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 274.21 us (93.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.2%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1172e+05 | 65536 | 2 | 1.592e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.61544691551066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5401822465922408, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.20 us (1.8%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 273.27 us (93.6%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (59.6%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3349e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.98485178033242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5438351781006263, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.8%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 277.14 us (93.7%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.3%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3511e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.30976222673566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5474881096090118, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.09 us (2.0%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 280.09 us (93.3%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.9%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8121e+05 | 65536 | 2 | 1.719e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.600462501729446 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1369.401744625 (s) [Godunov][rank=0]
amr::Godunov: t = 0.55, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.0%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 335.83 us (94.0%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (61.0%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6178e+05 | 65536 | 2 | 1.811e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.59525505798248 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5536529315083856, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 342.71 us (94.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.8%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3202e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.69018495602892 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5573058630167711, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 332.52 us (94.6%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.7%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4017e+05 | 65536 | 2 | 1.927e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.25863303626927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5609587945251566, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.8%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 310.09 us (93.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.2%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3138e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.56046351136611 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5646117260335421, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 317.58 us (94.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (62.7%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3100e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.48480860729455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5682646575419277, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.4%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.52 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 380.61 us (94.8%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (63.5%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8748e+05 | 65536 | 2 | 1.691e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.75161805209171 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5719175890503132, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 322.78 us (94.3%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (64.1%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9816e+05 | 65536 | 2 | 1.646e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.89483918427673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5755705205586987, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 324.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (61.5%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8318e+05 | 65536 | 2 | 1.710e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.88935344065267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5792234520670843, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.4%)
patch tree reduce : 1.87 us (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 398.76 us (95.2%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (66.2%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2772e+05 | 65536 | 2 | 2.000e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.76126153309178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5828763835754698, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (1.3%)
patch tree reduce : 2.32 us (0.6%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 377.95 us (95.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (65.2%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5818e+05 | 65536 | 2 | 1.830e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.87214994273621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5865293150838553, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.6%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 309.76 us (94.0%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (66.8%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9633e+05 | 65536 | 2 | 1.654e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.52882208346556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5901822465922408, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 330.44 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.5%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3176e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.63711731945467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5938351781006264, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 315.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.3%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2476e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.23237944742417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5974881096090119, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 314.55 us (93.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (61.4%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2647e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.84497158446772 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1371.822174584 (s) [Godunov][rank=0]
amr::Godunov: t = 0.6000000000000001, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.4%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 398.01 us (95.2%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (65.2%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2464e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.20813920666728 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6036529315083856, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.9%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 269.48 us (93.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.3%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0603e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.47534166245943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6073058630167711, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 287.86 us (93.7%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (63.5%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3488e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.26460024420525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6109587945251567, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (0.9%)
patch tree reduce : 1.67 us (0.3%)
gen split merge : 1.26 us (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 583.41 us (96.7%)
LB move op cnt : 0
LB apply : 3.87 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (61.3%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3213e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.711097344658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6146117260335422, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 308.24 us (94.1%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.6%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4958e+05 | 65536 | 2 | 1.875e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.1473573940125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6182646575419277, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 297.37 us (93.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (62.3%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4595e+05 | 65536 | 2 | 1.470e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.48536275817524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6219175890503132, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 292.45 us (94.1%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.2%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2491e+05 | 65536 | 2 | 2.017e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.19655124950606 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6255705205586988, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.4%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 367.53 us (94.9%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (63.8%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4332e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.95651198721357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6292234520670843, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 318.90 us (94.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.0%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4024e+05 | 65536 | 2 | 1.489e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.33991385499772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6328763835754698, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 340.64 us (94.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.5%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8395e+05 | 65536 | 2 | 1.707e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.04465886557534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6365293150838554, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 349.00 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.7%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1464e+05 | 65536 | 2 | 1.581e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.2020205319514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6401822465922409, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.6%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 302.06 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.5%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3353e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.99183669346546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6438351781006264, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 313.28 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.5%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3463e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.21299092713298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6474881096090119, dt = 0.002511890390988092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 318.91 us (94.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (60.7%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3147e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.53567081492643 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1374.134387029 (s) [Godunov][rank=0]
amr::Godunov: t = 0.65, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.0%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 339.34 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.3%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4336e+05 | 65536 | 2 | 1.478e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.96548368516729 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6536529315083855, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.96 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 305.62 us (94.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.3%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0050e+05 | 65536 | 2 | 1.636e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.36465900356143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6573058630167711, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 284.52 us (93.8%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (59.3%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7457e+05 | 65536 | 2 | 1.750e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.16123481195635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6609587945251566, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 295.78 us (93.8%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (61.8%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6430e+05 | 65536 | 2 | 1.799e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.10186911104681 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6646117260335421, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.6%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 308.99 us (94.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.0%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3749e+05 | 65536 | 2 | 1.498e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.78785146164901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6682646575419277, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 333.94 us (94.6%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.3%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4876e+05 | 65536 | 2 | 1.460e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.0495129604036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6719175890503132, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 292.73 us (93.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (61.0%)
Info: cfl dt = 0.003652931508385531 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3223e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.73148326918474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6755705205586987, dt = 0.003652931508385531
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 329.08 us (94.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (64.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2550e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.38200075388751 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6792234520670842, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.6%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 318.92 us (94.3%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.5%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3366e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.01981923791524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828763835754698, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 299.01 us (94.0%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.4%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2965e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.21478226132614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6865293150838553, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.12 us (1.9%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 294.43 us (93.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.7%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2958e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.20039522815951 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6901822465922408, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 292.31 us (93.8%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (59.6%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3118e+05 | 65536 | 2 | 1.979e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.45425762993865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6938351781006263, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 301.66 us (93.8%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (64.2%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2457e+05 | 65536 | 2 | 2.019e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.12831072056132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6974881096090119, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.4%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 1.34 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.3%)
LB compute : 407.98 us (95.2%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.6%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3431e+05 | 65536 | 2 | 1.960e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.129454530583445 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1376.5340363960001 (s) [Godunov][rank=0]
amr::Godunov: t = 0.7000000000000001, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (1.6%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 390.10 us (95.0%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (65.0%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2455e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.19118922936855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7036529315083856, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 307.51 us (94.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (63.4%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2524e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.32851122858702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7073058630167711, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 307.41 us (94.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (60.2%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2726e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.73420633065324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109587945251566, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 335.80 us (94.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.0%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1215e+05 | 65536 | 2 | 2.100e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.63655500693866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7146117260335422, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 343.73 us (94.7%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.9%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4376e+05 | 65536 | 2 | 1.906e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.97878164117196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7182646575419277, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 330.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.4%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2620e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.52104194522565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7219175890503132, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.7%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 310.72 us (94.1%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (63.5%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2391e+05 | 65536 | 2 | 1.546e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.0618385196313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7255705205586988, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 306.86 us (94.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (61.2%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3010e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.30376881746044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7292234520670843, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 330.41 us (94.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.8%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2485e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.25071306100844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7328763835754698, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 328.50 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.8%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3031e+05 | 65536 | 2 | 1.984e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.28081613959726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7365293150838553, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.66 us (1.7%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 318.17 us (94.3%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.0%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6260e+05 | 65536 | 2 | 1.807e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.75898401432839 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7401822465922409, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 301.61 us (93.6%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (62.7%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5922e+05 | 65536 | 2 | 1.824e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.08132276118539 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7438351781006264, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 278.23 us (93.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.5%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3680e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.64927538186643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7474881096090119, dt = 0.002511890390988092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 330.90 us (94.4%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (64.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0439e+05 | 65536 | 2 | 1.621e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.7985007161196 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1378.968267249 (s) [Godunov][rank=0]
amr::Godunov: t = 0.75, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (1.7%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 395.19 us (94.8%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (67.9%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2814e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.91125509688172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7536529315083855, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.6%)
patch tree reduce : 2.04 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.4%)
LB compute : 339.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.3%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3103e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.49173391974004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.757305863016771, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.6%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 342.46 us (94.4%)
LB move op cnt : 0
LB apply : 3.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.4%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2688e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.65882878282792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7609587945251566, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.2%)
patch tree reduce : 2.25 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 479.86 us (95.7%)
LB move op cnt : 0
LB apply : 4.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (64.1%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0483e+05 | 65536 | 2 | 1.619e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.23333870987638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7646117260335421, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 304.09 us (94.2%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (62.4%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3400e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.08702697427282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7682646575419276, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 2.56 us (0.8%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 305.28 us (93.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3415e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.11733016234241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7719175890503132, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 286.49 us (93.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (63.5%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2927e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.13769272972802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7755705205586987, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 303.55 us (94.1%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (62.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2219e+05 | 65536 | 2 | 1.552e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.71731232094787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7792234520670842, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 315.60 us (94.2%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1701e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.67822857799547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7828763835754697, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.9%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 270.14 us (93.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (61.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2319e+05 | 65536 | 2 | 2.028e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.85080752840285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7865293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.4%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 354.79 us (95.0%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5401e+05 | 65536 | 2 | 1.851e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.03678321703146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7901822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 318.24 us (94.2%)
LB move op cnt : 0
LB apply : 4.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2669e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.62124181416702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7938351781006263, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 325.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3005e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.29413729959876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7974881096090118, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 297.82 us (93.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (61.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2656e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.85785145849764 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1381.282639766 (s) [Godunov][rank=0]
amr::Godunov: t = 0.8, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.87 us (1.9%)
patch tree reduce : 2.45 us (0.5%)
gen split merge : 1.05 us (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 433.22 us (94.3%)
LB move op cnt : 0
LB apply : 4.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (65.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2603e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.48686272177399 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8036529315083856, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 330.75 us (94.3%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2884e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.05141190053187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8073058630167711, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 333.08 us (94.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2414e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.10867198533947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8109587945251566, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 341.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3104e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.4932266333857 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8146117260335421, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.9%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 292.15 us (93.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2438e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.15639521630487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8182646575419277, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 310.04 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (65.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2344e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.96898759362139 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8219175890503132, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.9%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 305.13 us (93.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3267e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.82099164920805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8255705205586987, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 301.07 us (93.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1553e+05 | 65536 | 2 | 1.577e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.38016172057603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8292234520670843, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.8%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 292.75 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2457e+05 | 65536 | 2 | 1.544e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.19504649933232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8328763835754698, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 300.22 us (93.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2771e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.82542707325788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8365293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 317.94 us (94.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2839e+05 | 65536 | 2 | 1.530e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.96050153840214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8401822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 297.42 us (93.7%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (61.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3594e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.47702090463089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8438351781006264, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.6%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 333.84 us (94.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (61.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2789e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.8618576251057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8474881096090119, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 309.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1470e+05 | 65536 | 2 | 1.580e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.221378569287374 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1383.5168096260002 (s) [Godunov][rank=0]
amr::Godunov: t = 0.8500000000000001, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.80 us (2.3%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 352.58 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (69.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1974e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.22586478077613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8536529315083856, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 311.45 us (94.1%)
LB move op cnt : 0
LB apply : 3.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (61.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7483e+05 | 65536 | 2 | 1.748e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.21358546917246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8573058630167711, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.6%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 316.86 us (94.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3307e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.9004971654873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8609587945251567, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 279.78 us (93.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (62.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2550e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.38085380706823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8646117260335422, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.5%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 359.86 us (94.8%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2989e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.26185707184932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8682646575419277, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 320.91 us (94.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (65.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2948e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.1804033170648 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8719175890503132, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.9%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 291.83 us (93.8%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (63.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3519e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.3256840549727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8755705205586988, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 287.23 us (93.7%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (62.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2732e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.74684468110883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792234520670843, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.8%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 277.58 us (93.7%)
LB move op cnt : 0
LB apply : 3.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (58.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3672e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.63231092557213 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8828763835754698, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 307.20 us (94.2%)
LB move op cnt : 0
LB apply : 3.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2771e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.82410238905263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8865293150838554, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 316.64 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (60.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2417e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.1136670440522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8901822465922409, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.9%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 297.89 us (93.9%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (59.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3098e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.48112883090126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8938351781006264, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 298.11 us (93.9%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (62.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2917e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.11795772574622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8974881096090119, dt = 0.002511890390988092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.77 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 324.69 us (94.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3006e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.34103202435384 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1385.766467228 (s) [Godunov][rank=0]
amr::Godunov: t = 0.9, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.51 us (1.9%)
patch tree reduce : 2.36 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.2%)
LB compute : 413.73 us (94.4%)
LB move op cnt : 0
LB apply : 4.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (63.3%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1969e+05 | 65536 | 2 | 2.050e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.15011321207696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9036529315083855, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.4%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 373.80 us (94.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (70.2%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6270e+05 | 65536 | 2 | 1.807e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.77960448538549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073058630167711, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 323.23 us (94.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (65.6%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1652e+05 | 65536 | 2 | 2.071e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.51285393270239 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9109587945251566, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 352.45 us (94.7%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (55.2%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2155e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.58802822815862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9146117260335421, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (1.9%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 291.11 us (93.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (60.9%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1903e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.08230042374812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9182646575419277, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 316.98 us (94.0%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.4%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0199e+05 | 65536 | 2 | 2.170e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.59835695777788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9219175890503132, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 366.63 us (95.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.1%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1128e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.52776713551961 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9255705205586987, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.85 us (1.7%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 328.57 us (94.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.1%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1996e+05 | 65536 | 2 | 1.561e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.26918341950568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9292234520670842, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 283.52 us (93.8%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.4%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1914e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.10548898048877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9328763835754698, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.90 us (1.8%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 309.86 us (93.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (61.6%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2656e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.59436864428623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9365293150838553, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 323.11 us (93.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (64.4%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2635e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.5519640940696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9401822465922408, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (1.7%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 334.36 us (94.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.8%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2668e+05 | 65536 | 2 | 1.536e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.61751029398454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9438351781006263, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 286.34 us (93.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (63.9%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1071e+05 | 65536 | 2 | 1.596e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.41270422653983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9474881096090119, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 292.77 us (93.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (60.7%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2116e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.112316640433605 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1388.217161793 (s) [Godunov][rank=0]
amr::Godunov: t = 0.9500000000000001, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (1.7%)
patch tree reduce : 2.42 us (0.6%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 404.83 us (94.9%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.7%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6340e+05 | 65536 | 2 | 1.803e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.92017096752576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9536529315083856, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.7%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 309.21 us (94.2%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.8%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0585e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.43788197558895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9573058630167711, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 308.36 us (93.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (62.7%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2569e+05 | 65536 | 2 | 1.540e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.41977019533391 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9609587945251566, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 285.79 us (93.8%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.9%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3267e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.81964178645832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9646117260335422, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.5%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 333.45 us (94.5%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.3%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3652e+05 | 65536 | 2 | 1.947e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.52574575254319 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9682646575419277, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.8%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 304.37 us (94.0%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.4%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2652e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.5861825939825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9719175890503132, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 322.69 us (94.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.3%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0298e+05 | 65536 | 2 | 1.626e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.86333659217057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9755705205586988, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 311.30 us (93.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.0%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1130e+05 | 65536 | 2 | 1.593e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.53165891147266 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9792234520670843, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.8%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 318.79 us (94.0%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (64.3%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1011e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.29396423636003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9828763835754698, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.59 us (8.0%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 290.66 us (87.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (64.8%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1096e+05 | 65536 | 2 | 1.595e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.46367248836896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9865293150838553, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.6%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 314.21 us (94.1%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.5%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0619e+05 | 65536 | 2 | 1.613e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.50758710227097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9901822465922409, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.9%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 283.57 us (93.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (61.9%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1259e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.79004165087979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9938351781006264, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.8%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 302.03 us (94.0%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.7%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2769e+05 | 65536 | 2 | 1.532e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.8200008883655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9974881096090119, dt = 0.002511890390988092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.8%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 304.95 us (93.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (54.7%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7277e+05 | 65536 | 2 | 1.758e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.43596431643275 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1390.5825642070001 (s) [Godunov][rank=0]
amr::Godunov: t = 1, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (1.7%)
patch tree reduce : 1.91 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 405.94 us (94.9%)
LB move op cnt : 0
LB apply : 4.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (66.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2406e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.09345521292803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0036529315083855, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.7%)
patch tree reduce : 2.39 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 319.94 us (93.9%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (64.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2811e+05 | 65536 | 2 | 1.531e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.90494655263531 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.007305863016771, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 322.82 us (94.4%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (63.4%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2477e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.23436873904426 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0109587945251566, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 325.80 us (94.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.9%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2111e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.50142814697055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.014611726033542, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (1.6%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 357.69 us (94.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.0%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3688e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.664331908364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0182646575419276, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.0%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 296.79 us (93.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (65.0%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3258e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.80218791573843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0219175890503132, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.8%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 286.74 us (93.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (63.8%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2609e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.49889571730202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0255705205586987, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.70 us (0.5%)
split / merge op : 0/0
apply split merge : 1.70 us (0.5%)
LB compute : 338.89 us (93.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (7.4%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2428e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.1363174166556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0292234520670842, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 323.50 us (94.2%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.4%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1924e+05 | 65536 | 2 | 2.053e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.05970626888264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0328763835754697, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.5%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 367.50 us (94.8%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.1%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2957e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.19806057142972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0365293150838553, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.4%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 359.93 us (94.9%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (61.6%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2849e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.98128481433761 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0401822465922408, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 333.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.6%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3608e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.50391675127848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0438351781006263, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.4%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 367.83 us (95.0%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.5%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7863e+05 | 65536 | 2 | 1.731e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.97606286349571 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0474881096090118, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 325.95 us (94.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (63.9%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1895e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.80737346299049 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1392.8882005280002 (s) [Godunov][rank=0]
amr::Godunov: t = 1.05, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.92 us (1.9%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 383.72 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (65.6%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9985e+05 | 65536 | 2 | 1.639e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.23443717354523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0536529315083856, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (1.6%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 349.81 us (94.4%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (64.0%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9054e+05 | 65536 | 2 | 1.678e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.36698975542764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.057305863016771, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.4%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 347.88 us (94.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (67.2%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8039e+05 | 65536 | 2 | 1.723e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.32900623072074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0609587945251566, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.6%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 314.20 us (88.7%)
LB move op cnt : 0
LB apply : 23.38 us (6.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.9%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1765e+05 | 65536 | 2 | 1.569e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.807014309754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0646117260335421, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 359.22 us (94.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.5%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1626e+05 | 65536 | 2 | 2.072e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.46165573442684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0682646575419277, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.28 us (1.4%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 358.82 us (94.9%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (60.3%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6702e+05 | 65536 | 2 | 1.786e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.6477672991348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0719175890503132, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 325.27 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (62.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2607e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.4952676764846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0755705205586987, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.8%)
patch tree reduce : 2.45 us (0.8%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 288.81 us (93.5%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (59.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2941e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.16577312821296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0792234520670843, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 286.69 us (93.9%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3703e+05 | 65536 | 2 | 1.500e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.6949224722013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0828763835754698, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.5%)
patch tree reduce : 2.14 us (0.6%)
gen split merge : 20.53 us (5.5%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 333.50 us (89.4%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (62.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8766e+05 | 65536 | 2 | 1.691e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.78823111102132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0865293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.51 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 321.37 us (94.6%)
LB move op cnt : 0
LB apply : 3.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (60.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3932e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.15375377468484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0901822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.4%)
patch tree reduce : 2.10 us (0.5%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 392.13 us (95.2%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.0%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3455e+05 | 65536 | 2 | 1.959e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.13032437042837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0938351781006264, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.95 us (1.7%)
patch tree reduce : 2.27 us (0.7%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 327.77 us (94.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (64.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4534e+05 | 65536 | 2 | 1.898e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.29553096879768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0974881096090119, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 309.54 us (94.5%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (59.9%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2723e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.95017887919726 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1395.332190332 (s) [Godunov][rank=0]
amr::Godunov: t = 1.1, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (1.7%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 390.76 us (94.9%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (61.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4205e+05 | 65536 | 2 | 1.483e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.70161716874773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1036529315083856, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.7%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 296.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.10 us (94.1%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1385e+05 | 65536 | 2 | 2.088e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.97706678724638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1073058630167711, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 313.30 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (61.5%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3795e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.87985944270126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1109587945251567, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 311.60 us (94.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (62.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6960e+05 | 65536 | 2 | 1.773e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.1646266435609 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1146117260335422, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 343.07 us (94.6%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (58.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3216e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.71839633366037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1182646575419277, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 347.53 us (94.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6903e+05 | 65536 | 2 | 1.776e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.04923783391204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1219175890503132, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 2.19 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 316.56 us (94.3%)
LB move op cnt : 0
LB apply : 3.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.0%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3765e+05 | 65536 | 2 | 1.497e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.82050467450486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1255705205586988, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 353.53 us (94.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3664e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.6167855462341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1292234520670843, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 344.48 us (94.4%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (65.6%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3706e+05 | 65536 | 2 | 1.499e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.70068017310061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1328763835754698, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (1.9%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 311.75 us (93.8%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9221e+05 | 65536 | 2 | 1.671e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.70123359972222 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1365293150838554, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.00 us (1.3%)
patch tree reduce : 2.26 us (0.6%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 375.07 us (95.0%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3807e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.9043940319821 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1401822465922409, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.3%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 383.56 us (95.2%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.5%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4963e+05 | 65536 | 2 | 1.874e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.15675202412605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1438351781006264, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 343.67 us (94.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (63.3%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1600e+05 | 65536 | 2 | 2.074e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.408249350493804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.147488109609012, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.3%)
patch tree reduce : 2.17 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 387.66 us (95.2%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.7%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2934e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.24198027473796 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1397.742307211 (s) [Godunov][rank=0]
amr::Godunov: t = 1.1500000000000001, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (1.7%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.2%)
LB compute : 408.50 us (94.9%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (70.4%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3464e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.21552491308373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1536529315083857, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 316.67 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.0%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2132e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.54243055641363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1573058630167712, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.9%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 276.53 us (93.3%)
LB move op cnt : 0
LB apply : 3.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (62.2%)
Info: cfl dt = 0.003652931508385533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3012e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.3092467217611 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1609587945251567, dt = 0.003652931508385533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 319.10 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.5%)
Info: cfl dt = 0.003652931508385533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2563e+05 | 65536 | 2 | 2.013e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.34215638678347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1646117260335422, dt = 0.003652931508385533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.7%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 321.52 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.0%)
Info: cfl dt = 0.003652931508385533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6673e+05 | 65536 | 2 | 1.787e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.58900575592851 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1682646575419278, dt = 0.003652931508385533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.7%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 297.36 us (93.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (60.3%)
Info: cfl dt = 0.003652931508385533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3417e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.12219208089898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1719175890503133, dt = 0.003652931508385533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.7%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 297.80 us (93.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.3%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3577e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.44264331608764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1755705205586988, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.6%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.50 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 340.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.9%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2427e+05 | 65536 | 2 | 1.545e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.13448316190689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1792234520670843, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 320.22 us (94.4%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (63.4%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2121e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.51973054616464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1828763835754699, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.9%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 274.87 us (93.4%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (64.2%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9108e+05 | 65536 | 2 | 1.676e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.47517977601487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1865293150838554, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.9%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 285.64 us (93.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.4%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3591e+05 | 65536 | 2 | 1.503e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.47119595089872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.190182246592241, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.9%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 275.62 us (93.5%)
LB move op cnt : 0
LB apply : 3.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.8%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3075e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.43471490477715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1938351781006264, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 283.54 us (93.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (61.8%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3263e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 1.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.81252002091651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.197488109609012, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.9%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 278.26 us (93.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (60.7%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3141e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.52746529868424 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1400.045752539 (s) [Godunov][rank=0]
amr::Godunov: t = 1.2000000000000002, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.09 us (2.0%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 376.98 us (94.4%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (66.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3520e+05 | 65536 | 2 | 1.506e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.32807207618872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2036529315083857, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 294.49 us (88.3%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (63.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3272e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.83114992458727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2073058630167712, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 341.75 us (94.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.0%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3241e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.7689402897245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2109587945251568, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 353.43 us (94.8%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1708e+05 | 65536 | 2 | 2.067e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.62663171462374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2146117260335423, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.4%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 349.28 us (95.0%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3119e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.52383691386524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2182646575419278, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.6%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 325.16 us (94.6%)
LB move op cnt : 0
LB apply : 3.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (61.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2705e+05 | 65536 | 2 | 2.004e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.62667501077425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2219175890503133, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.5%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 359.22 us (93.3%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (64.2%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6881e+05 | 65536 | 2 | 1.777e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.00667749730617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2255705205586989, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 306.48 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3152e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.59017893241038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2292234520670844, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.7%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 303.78 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (61.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8238e+05 | 65536 | 2 | 1.714e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.72941929749638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.23287638357547, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 329.93 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (62.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2369e+05 | 65536 | 2 | 2.025e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.95297261976445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2365293150838554, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.4%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 358.75 us (94.7%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (66.9%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8460e+05 | 65536 | 2 | 1.704e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.1739349659551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.240182246592241, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.7%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 297.90 us (93.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (61.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6479e+05 | 65536 | 2 | 1.797e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.19974382051734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2438351781006265, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.9%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 277.17 us (93.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (59.5%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2858e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.00033518569114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.247488109609012, dt = 0.002511890390987981
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.04 us (1.5%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 312.20 us (94.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3472e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.98428028828052 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1402.5078701910002 (s) [Godunov][rank=0]
amr::Godunov: t = 1.25, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (1.7%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 380.74 us (94.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (66.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7474e+05 | 65536 | 2 | 1.749e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.19521746858524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2536529315083855, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 308.10 us (94.0%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1411e+05 | 65536 | 2 | 1.583e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.09596120697772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.257305863016771, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.8%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 285.60 us (93.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (62.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3025e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.33413006329374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2609587945251566, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.02 us (1.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 292.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (59.3%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0918e+05 | 65536 | 2 | 1.602e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.10690302304091 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.264611726033542, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.7%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.4%)
LB compute : 337.69 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.8%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1274e+05 | 65536 | 2 | 1.588e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.82050659649173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2682646575419276, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (2.0%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 267.24 us (93.1%)
LB move op cnt : 0
LB apply : 3.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.1%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1199e+05 | 65536 | 2 | 1.591e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.66978179816331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2719175890503132, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 299.05 us (94.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (61.5%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3183e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.65258062624272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2755705205586987, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 320.58 us (94.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (62.3%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0962e+05 | 65536 | 2 | 1.600e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.19498392429352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2792234520670842, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 311.97 us (94.3%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.1%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3478e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.2433372890468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2828763835754697, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.9%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 278.98 us (93.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (60.5%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3025e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.33368456985782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2865293150838553, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.5%)
patch tree reduce : 2.39 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 311.31 us (94.3%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (64.1%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2704e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.69062344816767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2901822465922408, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.40 us (1.8%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 276.02 us (93.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (62.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3002e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.28746949612336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2938351781006263, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.8%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 278.93 us (93.6%)
LB move op cnt : 0
LB apply : 3.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3289e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.86433967700741 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2974881096090118, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.79 us (2.0%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 275.45 us (93.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (59.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3280e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.718555097370874 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1404.772963892 (s) [Godunov][rank=0]
amr::Godunov: t = 1.3, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.8%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 368.44 us (94.6%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4739e+05 | 65536 | 2 | 1.465e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.77322333630332 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3036529315083856, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 306.57 us (93.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.6%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3923e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.1374742382184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.307305863016771, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.8%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 280.88 us (93.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (60.6%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9900e+05 | 65536 | 2 | 1.643e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.0640119246882 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3109587945251566, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 324.93 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.9%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0134e+05 | 65536 | 2 | 1.633e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.5344015329425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3146117260335421, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.3%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 376.87 us (95.1%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (62.1%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4497e+05 | 65536 | 2 | 1.900e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.22286871829515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3182646575419277, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 334.41 us (94.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1909e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.09532974202712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3219175890503132, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.4%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 346.87 us (94.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (65.8%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2575e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.43250415355297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3255705205586987, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.6%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 318.57 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (62.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7039e+05 | 65536 | 2 | 1.769e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.32342240190867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3292234520670843, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.6%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 340.66 us (94.4%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (60.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3490e+05 | 65536 | 2 | 1.957e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.20116391701765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3328763835754698, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.91 us (1.9%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 276.86 us (86.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (71.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4205e+05 | 65536 | 2 | 1.916e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.63625731137402 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3365293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.8%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 271.28 us (93.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (59.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 2.7744e+05 | 65536 | 2 | 2.362e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.67209884745534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3401822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.5%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 381.78 us (95.1%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.8%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2463e+05 | 65536 | 2 | 2.019e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.13977225541969 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3438351781006264, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.52 us (1.4%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 375.02 us (95.2%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.2%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1677e+05 | 65536 | 2 | 1.572e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.63069692935957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3474881096090119, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 326.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (65.2%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9130e+05 | 65536 | 2 | 1.675e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.992486742045756 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1407.302020321 (s) [Godunov][rank=0]
amr::Godunov: t = 1.35, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (1.9%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 359.40 us (94.3%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (71.5%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2634e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.55025436037423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3536529315083856, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.6%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 306.45 us (94.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (62.7%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0006e+05 | 65536 | 2 | 1.638e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.2772707256792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3573058630167711, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.4%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 327.69 us (94.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.9%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8010e+05 | 65536 | 2 | 1.724e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.27183901556418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3609587945251567, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 270.91 us (93.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.8%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4014e+05 | 65536 | 2 | 1.927e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.25225764912079 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3646117260335422, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.11 us (1.7%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 278.76 us (93.9%)
LB move op cnt : 0
LB apply : 3.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.2%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5868e+05 | 65536 | 2 | 1.827e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.97399761797392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3682646575419277, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 326.10 us (94.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (65.5%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3410e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.10793914639729 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3719175890503132, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 339.83 us (94.7%)
LB move op cnt : 0
LB apply : 3.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (61.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3114e+05 | 65536 | 2 | 1.979e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.4461916332815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3755705205586988, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.97 us (1.9%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 301.25 us (93.8%)
LB move op cnt : 0
LB apply : 3.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.7%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2619e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.52015153785369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3792234520670843, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.7%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 287.63 us (93.9%)
LB move op cnt : 0
LB apply : 3.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (63.0%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4437e+05 | 65536 | 2 | 1.903e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.10180986044121 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3828763835754698, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 287.89 us (93.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.4%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3022e+05 | 65536 | 2 | 1.985e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.2618626741232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3865293150838554, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.22 us (1.5%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 327.30 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (61.3%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1283e+05 | 65536 | 2 | 2.095e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.773925014150215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3901822465922409, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.98 us (1.2%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 408.43 us (95.7%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.1%)
Info: cfl dt = 0.003652931508385532 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3759e+05 | 65536 | 2 | 1.941e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.7408472119881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3938351781006264, dt = 0.003652931508385532
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 326.94 us (94.4%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (63.2%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4244e+05 | 65536 | 2 | 1.481e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.77972455658345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.397488109609012, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (1.9%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 301.54 us (93.9%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.6%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3655e+05 | 65536 | 2 | 1.501e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.235978692201606 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1409.838292356 (s) [Godunov][rank=0]
amr::Godunov: t = 1.4000000000000001, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (1.5%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 490.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 379.72 us (95.0%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (69.6%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3270e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.82651420001027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4036529315083857, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.8%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 274.28 us (93.5%)
LB move op cnt : 0
LB apply : 3.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (58.4%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2921e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.12589554104602 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4073058630167712, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 278.42 us (86.9%)
LB move op cnt : 0
LB apply : 25.92 us (8.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (60.6%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3243e+05 | 65536 | 2 | 1.516e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.77282266696793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4109587945251567, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.15 us (1.8%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 274.80 us (93.6%)
LB move op cnt : 0
LB apply : 3.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (62.7%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2975e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.23476354995333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4146117260335422, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 274.99 us (93.4%)
LB move op cnt : 0
LB apply : 3.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (59.1%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3394e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.07455667416839 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4182646575419278, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 318.06 us (94.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (63.9%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2950e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.18375593297209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4219175890503133, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 335.23 us (94.5%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.6%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3183e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.65242874650183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4255705205586988, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 306.47 us (93.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.1%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5954e+05 | 65536 | 2 | 1.823e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.14592727259193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4292234520670843, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 301.87 us (94.0%)
LB move op cnt : 0
LB apply : 3.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (61.2%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4103e+05 | 65536 | 2 | 1.922e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.43227140191489 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4328763835754699, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.9%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 272.26 us (93.2%)
LB move op cnt : 0
LB apply : 3.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (61.1%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8340e+05 | 65536 | 2 | 1.709e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.93334608786508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4365293150838554, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.7%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 283.78 us (93.7%)
LB move op cnt : 0
LB apply : 3.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (60.9%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9238e+05 | 65536 | 2 | 1.670e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.7364281709378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.440182246592241, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (1.8%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 322.03 us (93.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (67.2%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6349e+05 | 65536 | 2 | 1.803e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.93814283913086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4438351781006264, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.33 us (1.7%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 288.60 us (93.9%)
LB move op cnt : 0
LB apply : 3.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (59.8%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7436e+05 | 65536 | 2 | 1.751e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.12038680805748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.447488109609012, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.0%)
patch tree reduce : 2.23 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 576.76 us (96.5%)
LB move op cnt : 0
LB apply : 3.78 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.6%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5976e+05 | 65536 | 2 | 1.822e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.64109973819989 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1412.2304388930002 (s) [Godunov][rank=0]
amr::Godunov: t = 1.4500000000000002, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (1.6%)
patch tree reduce : 2.16 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 411.99 us (94.7%)
LB move op cnt : 0
LB apply : 4.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.3%)
Info: cfl dt = 0.0036529315083855315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3387e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.06174065578958 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4536529315083857, dt = 0.0036529315083855315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 308.72 us (93.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (62.0%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1011e+05 | 65536 | 2 | 1.598e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.29257380881357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4573058630167712, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 2.38 us (0.7%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 310.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.60 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (62.2%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8219e+05 | 65536 | 2 | 1.715e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.69085163115841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4609587945251568, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 313.24 us (93.8%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (63.1%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8071e+05 | 65536 | 2 | 1.721e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.39303150941048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4646117260335423, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.6%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 342.98 us (94.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (66.9%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3294e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.87515948724723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4682646575419278, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.0%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 312.94 us (93.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (63.1%)
Info: cfl dt = 0.0036529315083855328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3626e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.54090771020354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4719175890503133, dt = 0.0036529315083855328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.88 us (1.8%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 308.52 us (94.0%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (60.9%)
Info: cfl dt = 0.003652931508385533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4625e+05 | 65536 | 2 | 1.893e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.47903368287874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4755705205586989, dt = 0.003652931508385533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 327.38 us (94.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (61.5%)
Info: cfl dt = 0.0036529315083855345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2707e+05 | 65536 | 2 | 2.004e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.62996659229891 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4792234520670844, dt = 0.0036529315083855345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.7%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 345.75 us (94.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (61.3%)
Info: cfl dt = 0.0036529315083855345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8580e+05 | 65536 | 2 | 1.699e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.4146451606408 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.48287638357547, dt = 0.0036529315083855345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.0%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 20.69 us (5.7%)
LB compute : 320.05 us (88.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (68.1%)
Info: cfl dt = 0.0036529315083855354 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2494e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.26989220029516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4865293150838554, dt = 0.0036529315083855354
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 300.41 us (94.2%)
LB move op cnt : 0
LB apply : 3.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (62.6%)
Info: cfl dt = 0.0036529315083855345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0588e+05 | 65536 | 2 | 1.615e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.44369471483462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.490182246592241, dt = 0.0036529315083855345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.70 us (1.8%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 298.29 us (93.9%)
LB move op cnt : 0
LB apply : 3.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (61.0%)
Info: cfl dt = 0.0036529315083855345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1726e+05 | 65536 | 2 | 2.066e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.66206206096562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4938351781006265, dt = 0.0036529315083855345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.5%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 348.27 us (94.7%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.4%)
Info: cfl dt = 0.0036529315083855354 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4643e+05 | 65536 | 2 | 1.892e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.5156712927157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.497488109609012, dt = 0.002511890390987981
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (1.4%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 326.46 us (94.7%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (60.7%)
Info: cfl dt = 0.0036529315083855354 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2699e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.91757279315407 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1414.6928025250002 (s) [Godunov][rank=0]
amr::Godunov: t = 1.5, dt = 0.0036529315083855354
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 343.18 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (65.8%)
Info: cfl dt = 0.0036529315083855354 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4550e+05 | 65536 | 2 | 1.471e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.39486296730303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5036529315083855, dt = 0.0036529315083855354
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 333.30 us (94.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.7%)
Info: cfl dt = 0.003652931508385536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7343e+05 | 65536 | 2 | 1.755e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.93282073950583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.507305863016771, dt = 0.003652931508385536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 336.02 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.8%)
Info: cfl dt = 0.003652931508385538 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2568e+05 | 65536 | 2 | 2.012e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.35089541389117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5109587945251566, dt = 0.003652931508385538
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 328.19 us (89.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.7%)
Info: cfl dt = 0.003652931508385539 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5163e+05 | 65536 | 2 | 1.864e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.55769692086258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.514611726033542, dt = 0.003652931508385539
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.76 us (1.5%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 361.18 us (94.8%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (62.0%)
Info: cfl dt = 0.003652931508385539 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7412e+05 | 65536 | 2 | 1.752e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.07173847525016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5182646575419276, dt = 0.003652931508385539
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.1%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 283.48 us (93.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (66.9%)
Info: cfl dt = 0.00365293150838554 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2743e+05 | 65536 | 2 | 1.533e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.768990341422 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5219175890503132, dt = 0.00365293150838554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 340.99 us (94.3%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (64.7%)
Info: cfl dt = 0.0036529315083855415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2620e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.52278054548233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5255705205586987, dt = 0.0036529315083855415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 317.29 us (94.0%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.7%)
Info: cfl dt = 0.0036529315083855423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0219e+05 | 65536 | 2 | 1.629e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.70412713287473 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5292234520670842, dt = 0.0036529315083855423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.35 us (1.5%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 342.34 us (94.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (63.6%)
Info: cfl dt = 0.0036529315083855428 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2643e+05 | 65536 | 2 | 1.537e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.56794383488837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5328763835754697, dt = 0.0036529315083855428
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.62 us (1.5%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 351.94 us (94.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (64.2%)
Info: cfl dt = 0.003652931508385544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3206e+05 | 65536 | 2 | 1.517e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.69873903862023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5365293150838553, dt = 0.003652931508385544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.4%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 383.21 us (95.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.0%)
Info: cfl dt = 0.0036529315083855454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3851e+05 | 65536 | 2 | 1.495e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.99240782728486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5401822465922408, dt = 0.0036529315083855454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (1.7%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 280.77 us (93.7%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (61.9%)
Info: cfl dt = 0.003652931508385547 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1897e+05 | 65536 | 2 | 2.055e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.00513042651639 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5438351781006263, dt = 0.003652931508385547
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.5%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 338.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (63.5%)
Info: cfl dt = 0.0036529315083855493 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9909e+05 | 65536 | 2 | 1.642e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.08292509012524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5474881096090118, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.89 us (1.7%)
patch tree reduce : 2.16 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 322.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (62.2%)
Info: cfl dt = 0.0036529315083855506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2584e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.75884743237823 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1417.1063742860001 (s) [Godunov][rank=0]
amr::Godunov: t = 1.55, dt = 0.0036529315083855506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.94 us (1.8%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 420.38 us (94.8%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (65.4%)
Info: cfl dt = 0.003652931508385552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2728e+05 | 65536 | 2 | 1.534e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.73873732775613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5536529315083856, dt = 0.003652931508385552
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 274.86 us (93.5%)
LB move op cnt : 0
LB apply : 3.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (60.6%)
Info: cfl dt = 0.0036529315083855536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6677e+05 | 65536 | 2 | 1.787e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.59597853008549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.557305863016771, dt = 0.0036529315083855536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 2.17 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 319.74 us (94.3%)
LB move op cnt : 0
LB apply : 3.40 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (62.7%)
Info: cfl dt = 0.0036529315083855553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9607e+05 | 65536 | 2 | 1.655e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.4760880577819 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5609587945251566, dt = 0.0036529315083855553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.5%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 341.29 us (94.6%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.5%)
Info: cfl dt = 0.0036529315083855575 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3072e+05 | 65536 | 2 | 1.522e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.4296766315386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5646117260335421, dt = 0.0036529315083855575
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.4%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 383.59 us (95.1%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (63.5%)
Info: cfl dt = 0.00365293150838556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6243e+05 | 65536 | 2 | 1.808e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.72659970501455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5682646575419277, dt = 0.00365293150838556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.39 us (1.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 303.45 us (94.2%)
LB move op cnt : 0
LB apply : 3.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (59.3%)
Info: cfl dt = 0.003652931508385562 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8150e+05 | 65536 | 2 | 1.718e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.55142547155987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5719175890503132, dt = 0.003652931508385562
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (2.0%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 272.23 us (93.4%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (60.7%)
Info: cfl dt = 0.003652931508385565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2037e+05 | 65536 | 2 | 2.046e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.28622541918219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5755705205586987, dt = 0.003652931508385565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.63 us (1.5%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 361.46 us (95.1%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.2%)
Info: cfl dt = 0.003652931508385568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9750e+05 | 65536 | 2 | 1.649e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.76255456439254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5792234520670843, dt = 0.003652931508385568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.36 us (1.6%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 308.16 us (94.1%)
LB move op cnt : 0
LB apply : 3.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (63.7%)
Info: cfl dt = 0.0036529315083855705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9930e+05 | 65536 | 2 | 1.641e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.123617375514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5828763835754698, dt = 0.0036529315083855705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.8%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.35 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 305.36 us (93.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.5%)
Info: cfl dt = 0.0036529315083855744 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2874e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.03233664511215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5865293150838553, dt = 0.0036529315083855744
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.8%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 294.66 us (93.9%)
LB move op cnt : 0
LB apply : 3.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (62.2%)
Info: cfl dt = 0.0036529315083855774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8044e+05 | 65536 | 2 | 1.723e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.33959262152212 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5901822465922408, dt = 0.0036529315083855774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (1.8%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 313.86 us (94.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.71 us (57.7%)
Info: cfl dt = 0.003652931508385581 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3302e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.89030256485862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5938351781006264, dt = 0.003652931508385581
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 305.27 us (94.0%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (62.2%)
Info: cfl dt = 0.0036529315083855853 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3373e+05 | 65536 | 2 | 1.511e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.032353926482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5974881096090119, dt = 0.002511890390988203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 312.65 us (94.3%)
LB move op cnt : 0
LB apply : 3.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (62.3%)
Info: cfl dt = 0.003652931508385588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3295e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.73895113675755 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1419.501634525 (s) [Godunov][rank=0]
amr::Godunov: t = 1.6, dt = 0.003652931508385588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (1.7%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 410.56 us (94.8%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (71.6%)
Info: cfl dt = 0.003652931508385592 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8525e+05 | 65536 | 2 | 1.701e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.3049039349351 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6036529315083856, dt = 0.003652931508385592
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.53 us (1.8%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 285.62 us (93.7%)
LB move op cnt : 0
LB apply : 3.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (60.8%)
Info: cfl dt = 0.0036529315083855965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2213e+05 | 65536 | 2 | 1.553e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.70525769100796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6073058630167711, dt = 0.0036529315083855965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.32 us (1.4%)
patch tree reduce : 2.21 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 348.95 us (94.6%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.6%)
Info: cfl dt = 0.0036529315083856017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3705e+05 | 65536 | 2 | 1.944e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.63328737285893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6109587945251567, dt = 0.0036529315083856017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.03 us (1.9%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 301.11 us (93.7%)
LB move op cnt : 0
LB apply : 3.72 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (58.5%)
Info: cfl dt = 0.0036529315083856065 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2885e+05 | 65536 | 2 | 1.993e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.98754357234142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6146117260335422, dt = 0.0036529315083856065
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 311.59 us (94.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.2%)
Info: cfl dt = 0.0036529315083856126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1970e+05 | 65536 | 2 | 2.050e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.15054756548372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6182646575419277, dt = 0.0036529315083856126
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.5%)
patch tree reduce : 1.98 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 376.44 us (94.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (61.9%)
Info: cfl dt = 0.0036529315083856186 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5989e+05 | 65536 | 2 | 1.821e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.21605060092678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6219175890503132, dt = 0.0036529315083856186
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 294.53 us (94.0%)
LB move op cnt : 0
LB apply : 3.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (61.7%)
Info: cfl dt = 0.0036529315083856256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.4619e+05 | 65536 | 2 | 1.893e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.46678520311892 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6255705205586988, dt = 0.0036529315083856256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 311.94 us (94.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.2%)
Info: cfl dt = 0.003652931508385632 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3470e+05 | 65536 | 2 | 1.508e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.22781287087963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6292234520670843, dt = 0.003652931508385632
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 315.16 us (94.3%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (64.6%)
Info: cfl dt = 0.0036529315083856395 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3478e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 1.0% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.24308435884882 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6328763835754698, dt = 0.0036529315083856395
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.9%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 282.02 us (93.4%)
LB move op cnt : 0
LB apply : 3.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (62.3%)
Info: cfl dt = 0.0036529315083856477 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2982e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.24760705058814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6365293150838556, dt = 0.0036529315083856477
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 2.12 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 333.18 us (94.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (62.7%)
Info: cfl dt = 0.003652931508385656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2634e+05 | 65536 | 2 | 2.008e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.48328085847713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401822465922413, dt = 0.003652931508385656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.5%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 332.67 us (94.6%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.3%)
Info: cfl dt = 0.0036529315083856646 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2612e+05 | 65536 | 2 | 2.010e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.43917216764689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.643835178100627, dt = 0.0036529315083856646
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 317.27 us (93.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.2%)
Info: cfl dt = 0.003652931508385675 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2530e+05 | 65536 | 2 | 2.015e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.27420896156916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6474881096090128, dt = 0.0025118903909873147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.6%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 372.59 us (94.8%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (60.3%)
Info: cfl dt = 0.003652931508385681 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2335e+05 | 65536 | 2 | 2.027e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.61664892514849 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1422.148277062 (s) [Godunov][rank=0]
amr::Godunov: t = 1.6500000000000001, dt = 0.003652931508385681
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.55 us (1.6%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 1.32 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 464.77 us (95.4%)
LB move op cnt : 0
LB apply : 4.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (72.6%)
Info: cfl dt = 0.003652931508385693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2480e+05 | 65536 | 2 | 1.543e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.24170246449351 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6536529315083859, dt = 0.003652931508385693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.57 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 308.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.4%)
Info: cfl dt = 0.0036529315083857054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6211e+05 | 65536 | 2 | 1.810e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.66193997628477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6573058630167716, dt = 0.0036529315083857054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 312.43 us (94.0%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (65.9%)
Info: cfl dt = 0.003652931508385718 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3882e+05 | 65536 | 2 | 1.493e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.05384832146656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6609587945251574, dt = 0.003652931508385718
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 308.78 us (93.8%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (71.8%)
Info: cfl dt = 0.0036529315083857305 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3426e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.13990827574484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6646117260335431, dt = 0.0036529315083857305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 284.01 us (93.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (58.0%)
Info: cfl dt = 0.0036529315083857453 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3629e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.54638002158137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6682646575419289, dt = 0.0036529315083857453
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.9%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 274.19 us (93.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (62.4%)
Info: cfl dt = 0.0036529315083857605 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0611e+05 | 65536 | 2 | 1.614e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.49069967931432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6719175890503146, dt = 0.0036529315083857605
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.06 us (2.0%)
patch tree reduce : 2.14 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 289.81 us (93.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.4%)
Info: cfl dt = 0.0036529315083857765 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3947e+05 | 65536 | 2 | 1.491e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.18526762732706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6755705205587004, dt = 0.0036529315083857765
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.45 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 312.78 us (94.2%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.2%)
Info: cfl dt = 0.0036529315083857943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1857e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.9904689084348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6792234520670861, dt = 0.0036529315083857943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.34 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 342.28 us (94.8%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (61.5%)
Info: cfl dt = 0.003652931508385813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3645e+05 | 65536 | 2 | 1.502e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.57966978865078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6828763835754719, dt = 0.003652931508385813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.84 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 333.06 us (94.4%)
LB move op cnt : 0
LB apply : 3.35 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (62.2%)
Info: cfl dt = 0.0036529315083858316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0888e+05 | 65536 | 2 | 1.603e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.04675458840065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6865293150838576, dt = 0.0036529315083858316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.4%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 360.52 us (95.0%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.5%)
Info: cfl dt = 0.0036529315083858533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1883e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.04321466063163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6901822465922434, dt = 0.0036529315083858533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.5%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 328.95 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (65.0%)
Info: cfl dt = 0.0036529315083858754 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3101e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.486848828469 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6938351781006291, dt = 0.0036529315083858754
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.58 us (1.9%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 276.35 us (93.7%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (61.8%)
Info: cfl dt = 0.0036529315083858992 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8707e+05 | 65536 | 2 | 1.693e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.66928977907808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.697488109609015, dt = 0.0025118903909850943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (1.4%)
patch tree reduce : 1.77 us (0.4%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 401.22 us (95.3%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.1%)
Info: cfl dt = 0.0036529315083859166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0169e+05 | 65536 | 2 | 1.632e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.4254477487663 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1424.4274373530002 (s) [Godunov][rank=0]
amr::Godunov: t = 1.7000000000000002, dt = 0.0036529315083859166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.5%)
patch tree reduce : 1.77 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 419.68 us (95.1%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (65.7%)
Info: cfl dt = 0.0036529315083859443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1541e+05 | 65536 | 2 | 2.078e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.291016238979374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7036529315083861, dt = 0.0036529315083859443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.4%)
patch tree reduce : 2.27 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 406.96 us (95.2%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (66.0%)
Info: cfl dt = 0.0036529315083859725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5311e+05 | 65536 | 2 | 1.856e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.85509344563442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7073058630167721, dt = 0.0036529315083859725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.3%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 402.37 us (95.4%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (67.5%)
Info: cfl dt = 0.003652931508386005 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1905e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.08720637640853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.710958794525158, dt = 0.003652931508386005
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.37 us (1.6%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 324.24 us (94.5%)
LB move op cnt : 0
LB apply : 3.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (63.3%)
Info: cfl dt = 0.0036529315083860376 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1402e+05 | 65536 | 2 | 2.087e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.01180740397069 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.714611726033544, dt = 0.0036529315083860376
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.2%)
patch tree reduce : 1.89 us (0.4%)
gen split merge : 772.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 432.69 us (95.6%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.4%)
Info: cfl dt = 0.0036529315083860727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7725e+05 | 65536 | 2 | 1.737e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.69885787658474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.71826465754193, dt = 0.0036529315083860727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 347.21 us (94.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (63.9%)
Info: cfl dt = 0.0036529315083861104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.6557e+05 | 65536 | 2 | 1.793e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.355412309905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.721917589050316, dt = 0.0036529315083861104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 320.44 us (94.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (63.4%)
Info: cfl dt = 0.0036529315083861495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3002e+05 | 65536 | 2 | 1.524e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.28838954190408 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7255705205587022, dt = 0.0036529315083861495
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (1.9%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 280.72 us (93.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (62.2%)
Info: cfl dt = 0.003652931508386193 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0903e+05 | 65536 | 2 | 2.121e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.01109430432894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7292234520670884, dt = 0.003652931508386193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.09 us (1.3%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 383.16 us (95.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (64.4%)
Info: cfl dt = 0.003652931508386238 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3214e+05 | 65536 | 2 | 1.973e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.64818248344838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7328763835754746, dt = 0.003652931508386238
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.0%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 294.47 us (93.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (58.4%)
Info: cfl dt = 0.003652931508386286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3432e+05 | 65536 | 2 | 1.960e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.0859138609574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7365293150838608, dt = 0.003652931508386286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.68 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 329.13 us (94.6%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (63.7%)
Info: cfl dt = 0.003652931508386338 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1887e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.05065318472501 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.740182246592247, dt = 0.003652931508386338
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.38 us (1.8%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.4%)
LB compute : 275.58 us (93.5%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.4%)
Info: cfl dt = 0.0036529315083863923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1796e+05 | 65536 | 2 | 1.568e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.86756914188807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7438351781006334, dt = 0.0036529315083863923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.8%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 320.19 us (94.1%)
LB move op cnt : 0
LB apply : 3.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (66.0%)
Info: cfl dt = 0.0036529315083864504 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2068e+05 | 65536 | 2 | 2.044e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.34749507550022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7474881096090198, dt = 0.0025118903909802093
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.16 us (1.4%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 354.87 us (95.0%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (62.4%)
Info: cfl dt = 0.003652931508386493 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1467e+05 | 65536 | 2 | 2.083e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.41840338989819 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1427.102125699 (s) [Godunov][rank=0]
amr::Godunov: t = 1.75, dt = 0.003652931508386493
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.55 us (1.9%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 370.08 us (94.3%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (68.8%)
Info: cfl dt = 0.0036529315083865576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2596e+05 | 65536 | 2 | 1.539e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.47303312999672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7536529315083864, dt = 0.0036529315083865576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.13 us (1.6%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 297.31 us (94.0%)
LB move op cnt : 0
LB apply : 3.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (60.8%)
Info: cfl dt = 0.003652931508386626 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1592e+05 | 65536 | 2 | 2.074e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.39254082538776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.757305863016773, dt = 0.003652931508386626
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 330.03 us (94.6%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (64.7%)
Info: cfl dt = 0.0036529315083866994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5717e+05 | 65536 | 2 | 1.835e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.6702296999694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7609587945251597, dt = 0.0036529315083866994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (2.0%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 273.26 us (93.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (64.3%)
Info: cfl dt = 0.0036529315083867774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3396e+05 | 65536 | 2 | 1.510e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.07827098087715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7646117260335463, dt = 0.0036529315083867774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.47 us (1.3%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 389.28 us (95.3%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.6%)
Info: cfl dt = 0.0036529315083868603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.0359e+05 | 65536 | 2 | 1.624e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.98457375423331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7682646575419332, dt = 0.0036529315083868603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.29 us (0.4%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 298.72 us (93.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (61.5%)
Info: cfl dt = 0.0036529315083869487 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7979e+05 | 65536 | 2 | 1.726e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.20881599097972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.77191758905032, dt = 0.0036529315083869487
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 292.18 us (94.0%)
LB move op cnt : 0
LB apply : 3.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (59.8%)
Info: cfl dt = 0.003652931508387042 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3924e+05 | 65536 | 2 | 1.492e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.13925704878632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.775570520558707, dt = 0.003652931508387042
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.48 us (0.8%)
patch tree reduce : 1.70 us (0.3%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.1%)
LB compute : 648.37 us (97.1%)
LB move op cnt : 0
LB apply : 4.23 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (66.8%)
Info: cfl dt = 0.003652931508387142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2974e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.23296987038864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.779223452067094, dt = 0.003652931508387142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 347.73 us (94.5%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (66.1%)
Info: cfl dt = 0.0036529315083872484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3132e+05 | 65536 | 2 | 1.519e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.54907599418104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.782876383575481, dt = 0.0036529315083872484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (1.8%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 313.51 us (93.8%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (63.4%)
Info: cfl dt = 0.0036529315083873607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3425e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.13670257009849 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7865293150838684, dt = 0.0036529315083873607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.03 us (1.7%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 271.48 us (93.7%)
LB move op cnt : 0
LB apply : 3.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (61.6%)
Info: cfl dt = 0.00365293150838748 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3327e+05 | 65536 | 2 | 1.513e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.9407528807515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7901822465922557, dt = 0.00365293150838748
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.9%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 284.35 us (93.7%)
LB move op cnt : 0
LB apply : 3.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (61.6%)
Info: cfl dt = 0.003652931508387607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3045e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.37407765280085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7938351781006432, dt = 0.003652931508387607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.07 us (1.8%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.4%)
LB compute : 263.96 us (93.7%)
LB move op cnt : 0
LB apply : 3.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (61.9%)
Info: cfl dt = 0.0036529315083877424 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3111e+05 | 65536 | 2 | 1.520e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.50747030427387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7974881096090307, dt = 0.002511890390969329
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.02 us (2.0%)
patch tree reduce : 2.32 us (0.8%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 274.93 us (93.3%)
LB move op cnt : 0
LB apply : 3.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (62.3%)
Info: cfl dt = 0.0036529315083878404 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3340e+05 | 65536 | 2 | 1.512e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.80119815194373 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1429.420570938 (s) [Godunov][rank=0]
amr::Godunov: t = 1.8, dt = 0.0036529315083878404
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (1.9%)
patch tree reduce : 2.20 us (0.6%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 348.45 us (94.1%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (65.4%)
Info: cfl dt = 0.0036529315083879904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3434e+05 | 65536 | 2 | 1.509e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.15444777184136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8036529315083878, dt = 0.0036529315083879904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (1.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 297.10 us (93.9%)
LB move op cnt : 0
LB apply : 4.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.7%)
Info: cfl dt = 0.0036529315083881496 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3286e+05 | 65536 | 2 | 1.514e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.85917833484268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8073058630167758, dt = 0.0036529315083881496
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.61 us (1.9%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 268.98 us (93.4%)
LB move op cnt : 0
LB apply : 3.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (61.4%)
Info: cfl dt = 0.003652931508388317 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2001e+05 | 65536 | 2 | 1.560e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.28000208286112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.810958794525164, dt = 0.003652931508388317
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.06 us (1.7%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 273.53 us (93.7%)
LB move op cnt : 0
LB apply : 3.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (60.2%)
Info: cfl dt = 0.0036529315083884966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1896e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.06897471401125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8146117260335524, dt = 0.0036529315083884966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 302.67 us (93.8%)
LB move op cnt : 0
LB apply : 3.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (64.4%)
Info: cfl dt = 0.0036529315083886874 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1733e+05 | 65536 | 2 | 1.570e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.7412310395454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8182646575419408, dt = 0.0036529315083886874
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.65 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 315.58 us (94.2%)
LB move op cnt : 0
LB apply : 3.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (61.8%)
Info: cfl dt = 0.003652931508388889 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1837e+05 | 65536 | 2 | 1.566e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.9498456734771 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8219175890503294, dt = 0.003652931508388889
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 337.56 us (94.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.0%)
Info: cfl dt = 0.003652931508389104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3096e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.47760006600693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8255705205587183, dt = 0.003652931508389104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.1%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 282.10 us (93.2%)
LB move op cnt : 0
LB apply : 3.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (63.5%)
Info: cfl dt = 0.003652931508389332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1958e+05 | 65536 | 2 | 1.562e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.1933288794959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8292234520671073, dt = 0.003652931508389332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (1.7%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 320.57 us (94.1%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.9%)
Info: cfl dt = 0.0036529315083895725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1650e+05 | 65536 | 2 | 1.574e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.57491832104046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8328763835754966, dt = 0.0036529315083895725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.46 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 307.92 us (94.1%)
LB move op cnt : 0
LB apply : 3.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (62.0%)
Info: cfl dt = 0.003652931508389828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1891e+05 | 65536 | 2 | 1.564e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.05978447315091 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8365293150838862, dt = 0.003652931508389828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.17 us (1.6%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 294.72 us (93.9%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (58.4%)
Info: cfl dt = 0.0036529315083900994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2342e+05 | 65536 | 2 | 2.026e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.8971424577681 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.840182246592276, dt = 0.0036529315083900994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 342.68 us (94.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (64.8%)
Info: cfl dt = 0.0036529315083903874 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2393e+05 | 65536 | 2 | 2.023e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.00002300955559 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.843835178100666, dt = 0.0036529315083903874
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.44 us (1.4%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 369.04 us (94.9%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.9%)
Info: cfl dt = 0.003652931508390693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1873e+05 | 65536 | 2 | 1.565e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.0234038217347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8474881096090565, dt = 0.002511890390943572
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.82 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 334.05 us (94.6%)
LB move op cnt : 0
LB apply : 3.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (61.3%)
Info: cfl dt = 0.003652931508390914 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5798e+05 | 65536 | 2 | 1.831e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.395396229230954 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1431.794441389 (s) [Godunov][rank=0]
amr::Godunov: t = 1.85, dt = 0.003652931508390914
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (1.6%)
patch tree reduce : 1.45 us (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.2%)
LB compute : 420.96 us (95.3%)
LB move op cnt : 0
LB apply : 3.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (62.5%)
Info: cfl dt = 0.003652931508391251 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.5684e+05 | 65536 | 2 | 1.837e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.60469484987232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.853652931508391, dt = 0.003652931508391251
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.54 us (1.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 344.77 us (94.5%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (64.3%)
Info: cfl dt = 0.003652931508391608 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7830e+05 | 65536 | 2 | 1.732e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.9093203498753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8573058630167822, dt = 0.003652931508391608
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 315.42 us (93.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (61.6%)
Info: cfl dt = 0.0036529315083919872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3475e+05 | 65536 | 2 | 1.958e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.1721732763072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8609587945251738, dt = 0.0036529315083919872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 292.68 us (94.0%)
LB move op cnt : 0
LB apply : 3.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (63.7%)
Info: cfl dt = 0.003652931508392388 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.2795e+05 | 65536 | 2 | 1.998e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.80598642645843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8646117260335657, dt = 0.003652931508392388
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.30 us (1.4%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 363.02 us (94.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (65.4%)
Info: cfl dt = 0.003652931508392813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.7258e+05 | 65536 | 2 | 1.759e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.76153894916861 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8682646575419581, dt = 0.003652931508392813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.73 us (1.8%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 306.81 us (94.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (62.7%)
Info: cfl dt = 0.003652931508393264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3171e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.62715846337692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.871917589050351, dt = 0.003652931508393264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.55 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 287.01 us (93.8%)
LB move op cnt : 0
LB apply : 3.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (63.5%)
Info: cfl dt = 0.003652931508393742 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2542e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.36444292681851 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8755705205587443, dt = 0.003652931508393742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.56 us (1.4%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 378.69 us (95.1%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (63.0%)
Info: cfl dt = 0.003652931508394248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2344e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.96721379341096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.879223452067138, dt = 0.003652931508394248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.18 us (1.5%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 318.00 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (63.9%)
Info: cfl dt = 0.0036529315083947828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2507e+05 | 65536 | 2 | 1.542e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.29545328739938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8828763835755322, dt = 0.0036529315083947828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.0%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 330.98 us (93.8%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.0%)
Info: cfl dt = 0.0036529315083953496 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9379e+05 | 65536 | 2 | 1.664e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.01843305423205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.886529315083927, dt = 0.0036529315083953496
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.60 us (1.5%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 348.40 us (94.8%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (63.8%)
Info: cfl dt = 0.00365293150839595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2851e+05 | 65536 | 2 | 1.529e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.98488169693024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8901822465923224, dt = 0.00365293150839595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.49 us (1.4%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 360.75 us (94.9%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (64.6%)
Info: cfl dt = 0.0036529315083965847 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2930e+05 | 65536 | 2 | 1.527e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.1432082569475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8938351781007183, dt = 0.0036529315083965847
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.24 us (1.6%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 315.14 us (94.4%)
LB move op cnt : 0
LB apply : 3.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (62.6%)
Info: cfl dt = 0.0036529315083972573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3034e+05 | 65536 | 2 | 1.523e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.35188779725168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.897488109609115, dt = 0.002511890390885174
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (1.9%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 332.07 us (94.3%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.16 us (63.0%)
Info: cfl dt = 0.003652931508397743 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2527e+05 | 65536 | 2 | 1.541e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.67977989415535 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1434.191803854 (s) [Godunov][rank=0]
amr::Godunov: t = 1.9000000000000001, dt = 0.003652931508397743
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (1.5%)
patch tree reduce : 1.66 us (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 463.31 us (95.5%)
LB move op cnt : 0
LB apply : 3.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (69.4%)
Info: cfl dt = 0.003652931508398483 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1218e+05 | 65536 | 2 | 1.590e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.70901460590342 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9036529315083979, dt = 0.003652931508398483
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 323.33 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (61.9%)
Info: cfl dt = 0.003652931508399266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3817e+05 | 65536 | 2 | 1.496e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.92351496435724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9073058630167963, dt = 0.003652931508399266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.87 us (1.9%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 295.54 us (93.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (63.7%)
Info: cfl dt = 0.003652931508400095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3167e+05 | 65536 | 2 | 1.518e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.61990449300903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9109587945251956, dt = 0.003652931508400095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 331.57 us (94.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (63.3%)
Info: cfl dt = 0.003652931508400971 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3578e+05 | 65536 | 2 | 1.504e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.44330732231835 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9146117260335958, dt = 0.003652931508400971
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.83 us (1.8%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 304.31 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.6%)
Info: cfl dt = 0.003652931508401898 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3271e+05 | 65536 | 2 | 1.515e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.82838769357382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9182646575419968, dt = 0.003652931508401898
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.72 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 329.59 us (94.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (64.1%)
Info: cfl dt = 0.003652931508402878 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2974e+05 | 65536 | 2 | 1.525e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.23158847164596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9219175890503988, dt = 0.003652931508402878
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.42 us (1.5%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 345.12 us (94.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (63.2%)
Info: cfl dt = 0.0036529315084039148 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2892e+05 | 65536 | 2 | 1.528e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.06720362957127 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9255705205588016, dt = 0.0036529315084039148
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 26.48 us (7.6%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 307.65 us (88.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (62.5%)
Info: cfl dt = 0.0036529315084050107 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3970e+05 | 65536 | 2 | 1.490e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.23086275634921 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9292234520672056, dt = 0.0036529315084050107
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.0%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 284.26 us (93.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (62.9%)
Info: cfl dt = 0.0036529315084061695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3475e+05 | 65536 | 2 | 1.507e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.23813139022214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9328763835756106, dt = 0.0036529315084061695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 328.14 us (94.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (63.6%)
Info: cfl dt = 0.003652931508407394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.8506e+05 | 65536 | 2 | 1.702e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.26756938297362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9365293150840168, dt = 0.003652931508407394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.81 us (1.8%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 307.23 us (94.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (61.8%)
Info: cfl dt = 0.0036529315084086874 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1176e+05 | 65536 | 2 | 2.102e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.55754185992147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.940182246592424, dt = 0.0036529315084086874
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.92 us (1.5%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 364.68 us (94.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (63.9%)
Info: cfl dt = 0.003652931508410056 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2323e+05 | 65536 | 2 | 1.548e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.92591797886986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9438351781008327, dt = 0.003652931508410056
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 329.06 us (94.7%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.0%)
Info: cfl dt = 0.003652931508411501 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2154e+05 | 65536 | 2 | 1.555e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.58618433505094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9474881096092427, dt = 0.0025118903907574985
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.25 us (1.4%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 348.49 us (94.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (64.6%)
Info: cfl dt = 0.0036529315084125433 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2937e+05 | 65536 | 2 | 1.526e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.24583368591026 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1436.4797875900001 (s) [Godunov][rank=0]
amr::Godunov: t = 1.9500000000000002, dt = 0.0036529315084125433
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (1.8%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 390.83 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (67.9%)
Info: cfl dt = 0.0036529315084141293 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2122e+05 | 65536 | 2 | 1.556e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.52338219934427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9536529315084128, dt = 0.0036529315084141293
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.43 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 342.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (64.5%)
Info: cfl dt = 0.0036529315084158046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1530e+05 | 65536 | 2 | 1.578e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.33565647496228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.957305863016827, dt = 0.0036529315084158046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.29 us (1.5%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 323.72 us (94.6%)
LB move op cnt : 0
LB apply : 3.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.0%)
Info: cfl dt = 0.0036529315084175723 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9043e+05 | 65536 | 2 | 1.679e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.34349753427581 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9609587945252427, dt = 0.0036529315084175723
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.15 us (1.7%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 338.30 us (94.1%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.3%)
Info: cfl dt = 0.00365293150841944 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.3084e+05 | 65536 | 2 | 1.521e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.45283572927619 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9646117260336602, dt = 0.00365293150841944
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.75 us (1.7%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 318.65 us (94.2%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (60.3%)
Info: cfl dt = 0.0036529315084214116 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.3179e+05 | 65536 | 2 | 1.975e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.57798395236365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9682646575420797, dt = 0.0036529315084214116
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 333.22 us (94.0%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (57.2%)
Info: cfl dt = 0.0036529315084234937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0719e+05 | 65536 | 2 | 2.133e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.64149112393359 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9719175890505012, dt = 0.0036529315084234937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.4%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 392.91 us (95.3%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.8%)
Info: cfl dt = 0.0036529315084256916 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2611e+05 | 65536 | 2 | 1.538e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.50329458173651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9755705205589247, dt = 0.0036529315084256916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.94 us (1.4%)
patch tree reduce : 1.85 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 409.35 us (95.3%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.8%)
Info: cfl dt = 0.0036529315084280114 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.1621e+05 | 65536 | 2 | 1.575e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.51641932186625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9792234520673504, dt = 0.0036529315084280114
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.04 us (1.7%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 338.08 us (94.5%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (64.2%)
Info: cfl dt = 0.003652931508430461 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.0811e+05 | 65536 | 2 | 2.127e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.82599277889085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9828763835757783, dt = 0.003652931508430461
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.26 us (1.3%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 371.38 us (95.0%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (66.3%)
Info: cfl dt = 0.0036529315084330447 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.9129e+05 | 65536 | 2 | 1.675e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.51688778430058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9865293150842087, dt = 0.0036529315084330447
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.67 us (1.7%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 308.83 us (93.9%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (64.1%)
Info: cfl dt = 0.0036529315084357704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2686e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.6552429485202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9901822465926418, dt = 0.0036529315084357704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.78 us (1.5%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 370.67 us (94.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (61.9%)
Info: cfl dt = 0.0036529315084386465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.2706e+05 | 65536 | 2 | 1.535e-01 | 0.0% | 0.7% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.69382414940728 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9938351781010775, dt = 0.0036529315084386465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.59 us (1.8%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 299.91 us (94.1%)
LB move op cnt : 0
LB apply : 3.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (63.4%)
Info: cfl dt = 0.0036529315084416793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 4.4114e+05 | 65536 | 2 | 1.486e-01 | 0.0% | 0.9% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.5205732936641 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.997488109609516, dt = 0.0025118903904839396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 8192.0 min = 8192.0 factor = 1
- strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 2
min = 8192
max = 8192
avg = 8192
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.41 us (1.6%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 319.30 us (94.4%)
LB move op cnt : 0
LB apply : 3.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (62.2%)
Info: cfl dt = 0.0036529315084438637 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0 | 3.1351e+05 | 65536 | 2 | 2.090e-01 | 0.0% | 0.6% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.258386326637215 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 1438.9607997540002 (s) [Godunov][rank=0]
none_hll
{'none_hll': [{'rho': array([1.39995168, 1.39995168, 1.39995168, 1.39995168, 1.39994836,
1.39994836, 1.39994836, 1.39994836, 1.3999409 , 1.3999409 ,
1.3999409 , 1.3999409 , 1.39992812, 1.39992812, 1.39992812,
1.39992812, 1.39990848, 1.39990848, 1.39990848, 1.39990848,
1.39987989, 1.39987989, 1.39987989, 1.39987989, 1.39983964,
1.39983964, 1.39983964, 1.39983964, 1.39978421, 1.39978421,
1.39978421, 1.39978421, 1.39970908, 1.39970908, 1.39970908,
1.39970908, 1.39960853, 1.39960853, 1.39960853, 1.39960853,
1.3994754 , 1.3994754 , 1.3994754 , 1.3994754 , 1.39930081,
1.39930081, 1.39930081, 1.39930081, 1.39907388, 1.39907388,
1.39907388, 1.39907388, 1.39878143, 1.39878143, 1.39878143,
1.39878143, 1.39840763, 1.39840763, 1.39840763, 1.39840763,
1.39793372, 1.39793372, 1.39793372, 1.39793372, 1.39733771,
1.39733771, 1.39733771, 1.39733771, 1.39659414, 1.39659414,
1.39659414, 1.39659414, 1.39567386, 1.39567386, 1.39567386,
1.39567386, 1.39454395, 1.39454395, 1.39454395, 1.39454395,
1.39316777, 1.39316777, 1.39316777, 1.39316777, 1.39150506,
1.39150506, 1.39150506, 1.39150506, 1.38951228, 1.38951228,
1.38951228, 1.38951228, 1.38714319, 1.38714319, 1.38714319,
1.38714319, 1.3843495 , 1.3843495 , 1.3843495 , 1.3843495 ,
1.38108186, 1.38108186, 1.38108186, 1.38108186, 1.37729101,
1.37729101, 1.37729101, 1.37729101, 1.37292914, 1.37292914,
1.37292914, 1.37292914, 1.36795138, 1.36795138, 1.36795138,
1.36795138, 1.36231746, 1.36231746, 1.36231746, 1.36231746,
1.35599341, 1.35599341, 1.35599341, 1.35599341, 1.34895317,
1.34895317, 1.34895317, 1.34895317, 1.34118023, 1.34118023,
1.34118023, 1.34118023, 1.33266896, 1.33266896, 1.33266896,
1.33266896, 1.32342575, 1.32342575, 1.32342575, 1.32342575,
1.31346974, 1.31346974, 1.31346974, 1.31346974, 1.30283319,
1.30283319, 1.30283319, 1.30283319, 1.2915614 , 1.2915614 ,
1.2915614 , 1.2915614 , 1.27971213, 1.27971213, 1.27971213,
1.27971213, 1.26735463, 1.26735463, 1.26735463, 1.26735463,
1.25456823, 1.25456823, 1.25456823, 1.25456823, 1.24144055,
1.24144055, 1.24144055, 1.24144055, 1.22806553, 1.22806553,
1.22806553, 1.22806553, 1.21454119, 1.21454119, 1.21454119,
1.21454119, 1.20096739, 1.20096739, 1.20096739, 1.20096739,
1.18744361, 1.18744361, 1.18744361, 1.18744361, 1.17406679,
1.17406679, 1.17406679, 1.17406679, 1.16092952, 1.16092952,
1.16092952, 1.16092952, 1.14811836, 1.14811836, 1.14811836,
1.14811836, 1.13571261, 1.13571261, 1.13571261, 1.13571261,
1.12378348, 1.12378348, 1.12378348, 1.12378348, 1.11239358,
1.11239358, 1.11239358, 1.11239358, 1.101597 , 1.101597 ,
1.101597 , 1.101597 , 1.09143978, 1.09143978, 1.09143978,
1.09143978, 1.08196095, 1.08196095, 1.08196095, 1.08196095,
1.07319409, 1.07319409, 1.07319409, 1.07319409, 1.06516949,
1.06516949, 1.06516949, 1.06516949, 1.05791705, 1.05791705,
1.05791705, 1.05791705, 1.05146988, 1.05146988, 1.05146988,
1.05146988, 1.04586889, 1.04586889, 1.04586889, 1.04586889,
1.04116846, 1.04116846, 1.04116846, 1.04116846, 1.03744347,
1.03744347, 1.03744347, 1.03744347, 1.03479804, 1.03479804,
1.03479804, 1.03479804, 1.03337638, 1.03337638, 1.03337638]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_rusanov': [{'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.39999999, 1.39999999, 1.39999999, 1.39999999,
1.39999999, 1.39999999, 1.39999999, 1.39999999, 1.39999998,
1.39999998, 1.39999998, 1.39999998, 1.39999996, 1.39999996,
1.39999996, 1.39999996, 1.39999992, 1.39999992, 1.39999992,
1.39999992, 1.39999984, 1.39999984, 1.39999984, 1.39999984,
1.39999968, 1.39999968, 1.39999968, 1.39999968, 1.39999939,
1.39999939, 1.39999939, 1.39999939, 1.39999885, 1.39999885,
1.39999885, 1.39999885, 1.39999786, 1.39999786, 1.39999786,
1.39999786, 1.39999607, 1.39999607, 1.39999607, 1.39999607,
1.39999285, 1.39999285, 1.39999285, 1.39999285, 1.39998716,
1.39998716, 1.39998716, 1.39998716, 1.39997722, 1.39997722,
1.39997722, 1.39997722, 1.39996011, 1.39996011, 1.39996011,
1.39996011, 1.39993104, 1.39993104, 1.39993104, 1.39993104,
1.39988233, 1.39988233, 1.39988233, 1.39988233, 1.39980185,
1.39980185, 1.39980185, 1.39980185, 1.39967076, 1.39967076,
1.39967076, 1.39967076, 1.3994603 , 1.3994603 , 1.3994603 ,
1.3994603 , 1.39912737, 1.39912737, 1.39912737, 1.39912737,
1.39860857, 1.39860857, 1.39860857, 1.39860857, 1.39781248,
1.39781248, 1.39781248, 1.39781248, 1.39660996, 1.39660996,
1.39660996, 1.39660996, 1.39482258, 1.39482258, 1.39482258,
1.39482258, 1.39220953, 1.39220953, 1.39220953, 1.39220953,
1.38845397, 1.38845397, 1.38845397, 1.38845397, 1.3831505 ,
1.3831505 , 1.3831505 , 1.3831505 , 1.37579626, 1.37579626,
1.37579626, 1.37579626, 1.36578903, 1.36578903, 1.36578903,
1.36578903, 1.35243652, 1.35243652, 1.35243652, 1.35243652,
1.33498164, 1.33498164, 1.33498164, 1.33498164, 1.31265121,
1.31265121, 1.31265121, 1.31265121, 1.2847384 , 1.2847384 ,
1.2847384 , 1.2847384 , 1.2507064 , 1.2507064 , 1.2507064 ,
1.2507064 , 1.21017042, 1.21017042, 1.21017042, 1.21017042,
1.16826394, 1.16826394, 1.16826394, 1.16826394, 1.13190268,
1.13190268, 1.13190268, 1.13190268, 1.10181888, 1.10181888,
1.10181888, 1.10181888, 1.07740915, 1.07740915, 1.07740915,
1.07740915, 1.05798425, 1.05798425, 1.05798425, 1.05798425,
1.04280816, 1.04280816, 1.04280816, 1.04280816, 1.03115759,
1.03115759, 1.03115759, 1.03115759, 1.02236355, 1.02236355,
1.02236355, 1.02236355, 1.01583385, 1.01583385, 1.01583385,
1.01583385, 1.01106189, 1.01106189, 1.01106189, 1.01106189,
1.00762663, 1.00762663, 1.00762663, 1.00762663, 1.00518713,
1.00518713, 1.00518713, 1.00518713, 1.00347488, 1.00347488,
1.00347488, 1.00347488, 1.00228528, 1.00228528, 1.00228528,
1.00228528, 1.00146924, 1.00146924, 1.00146924, 1.00146924,
1.00092404, 1.00092404, 1.00092404, 1.00092404, 1.00058227,
1.00058227, 1.00058227, 1.00058227, 1.00039803, 1.00039803,
1.00039803, 1.00039803, 1.00033084, 1.00033084, 1.00033084]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hll': [{'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.39999999,
1.39999999, 1.39999999, 1.39999999, 1.39999998, 1.39999998,
1.39999998, 1.39999998, 1.39999996, 1.39999996, 1.39999996,
1.39999996, 1.39999992, 1.39999992, 1.39999992, 1.39999992,
1.39999984, 1.39999984, 1.39999984, 1.39999984, 1.39999968,
1.39999968, 1.39999968, 1.39999968, 1.39999937, 1.39999937,
1.39999937, 1.39999937, 1.39999878, 1.39999878, 1.39999878,
1.39999878, 1.39999768, 1.39999768, 1.39999768, 1.39999768,
1.39999564, 1.39999564, 1.39999564, 1.39999564, 1.39999192,
1.39999192, 1.39999192, 1.39999192, 1.39998523, 1.39998523,
1.39998523, 1.39998523, 1.39997335, 1.39997335, 1.39997335,
1.39997335, 1.39995258, 1.39995258, 1.39995258, 1.39995258,
1.39991678, 1.39991678, 1.39991678, 1.39991678, 1.39985601,
1.39985601, 1.39985601, 1.39985601, 1.39975438, 1.39975438,
1.39975438, 1.39975438, 1.39958702, 1.39958702, 1.39958702,
1.39958702, 1.39931575, 1.39931575, 1.39931575, 1.39931575,
1.39888301, 1.39888301, 1.39888301, 1.39888301, 1.39820389,
1.39820389, 1.39820389, 1.39820389, 1.39715582, 1.39715582,
1.39715582, 1.39715582, 1.39556586, 1.39556586, 1.39556586,
1.39556586, 1.39319593, 1.39319593, 1.39319593, 1.39319593,
1.3897269 , 1.3897269 , 1.3897269 , 1.3897269 , 1.38474325,
1.38474325, 1.38474325, 1.38474325, 1.37772106, 1.37772106,
1.37772106, 1.37772106, 1.36802356, 1.36802356, 1.36802356,
1.36802356, 1.35490885, 1.35490885, 1.35490885, 1.35490885,
1.33755595, 1.33755595, 1.33755595, 1.33755595, 1.31511724,
1.31511724, 1.31511724, 1.31511724, 1.28681068, 1.28681068,
1.28681068, 1.28681068, 1.25204433, 1.25204433, 1.25204433,
1.25204433, 1.21040786, 1.21040786, 1.21040786, 1.21040786,
1.16730937, 1.16730937, 1.16730937, 1.16730937, 1.13010572,
1.13010572, 1.13010572, 1.13010572, 1.09954214, 1.09954214,
1.09954214, 1.09954214, 1.07494493, 1.07494493, 1.07494493,
1.07494493, 1.05554943, 1.05554943, 1.05554943, 1.05554943,
1.04054789, 1.04054789, 1.04054789, 1.04054789, 1.02915605,
1.02915605, 1.02915605, 1.02915605, 1.02065733, 1.02065733,
1.02065733, 1.02065733, 1.01442545, 1.01442545, 1.01442545,
1.01442545, 1.00993187, 1.00993187, 1.00993187, 1.00993187,
1.00674352, 1.00674352, 1.00674352, 1.00674352, 1.00451476,
1.00451476, 1.00451476, 1.00451476, 1.0029769 , 1.0029769 ,
1.0029769 , 1.0029769 , 1.00192734, 1.00192734, 1.00192734,
1.00192734, 1.00121949, 1.00121949, 1.00121949, 1.00121949,
1.00075296, 1.00075296, 1.00075296, 1.00075296, 1.00046281,
1.00046281, 1.00046281, 1.00046281, 1.0003066 , 1.0003066 ,
1.0003066 , 1.0003066 , 1.00024944, 1.00024944, 1.00024944]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hllc': [{'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.11831494, 1.11831494,
1.11831494, 1.11831494, 1.00923298, 1.00923298, 1.00923298,
1.00923298, 1.00043756, 1.00043756, 1.00043756, 1.00043756,
1.00001417, 1.00001417, 1.00001417, 1.00001417, 1.00000033,
1.00000033, 1.00000033, 1.00000033, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.21607423, 1.21607423,
1.21607423, 1.21607423, 1.0358938 , 1.0358938 , 1.0358938 ,
1.0358938 , 1.0037377 , 1.0037377 , 1.0037377 , 1.0037377 ,
1.00027776, 1.00027776, 1.00027776, 1.00027776, 1.00001576,
1.00001576, 1.00001576, 1.00001576, 1.00000071, 1.00000071,
1.00000071, 1.00000071, 1.00000003, 1.00000003, 1.00000003,
1.00000003, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.28669245, 1.28669245,
1.28669245, 1.28669245, 1.08302128, 1.08302128, 1.08302128,
1.08302128, 1.01268954, 1.01268954, 1.01268954, 1.01268954,
1.00145562, 1.00145562, 1.00145562, 1.00145562, 1.00013095,
1.00013095, 1.00013095, 1.00013095, 1.00000955, 1.00000955,
1.00000955, 1.00000955, 1.00000058, 1.00000058, 1.00000058,
1.00000058, 1.00000003, 1.00000003, 1.00000003, 1.00000003,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.33021365, 1.33021365,
1.33021365, 1.33021365, 1.14608853, 1.14608853, 1.14608853,
1.14608853, 1.03038575, 1.03038575, 1.03038575, 1.03038575,
1.00467925, 1.00467925, 1.00467925, 1.00467925, 1.00057051,
1.00057051, 1.00057051, 1.00057051, 1.00005712, 1.00005712,
1.00005712, 1.00005712, 1.00000481, 1.00000481, 1.00000481,
1.00000481, 1.00000035, 1.00000035, 1.00000035, 1.00000035,
1.00000002, 1.00000002, 1.00000002, 1.00000002, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.35701844, 1.35701844,
1.35701844, 1.35701844, 1.21170242, 1.21170242, 1.21170242,
1.21170242, 1.05787438, 1.05787438, 1.05787438, 1.05787438,
1.01139116, 1.01139116, 1.01139116, 1.01139116, 1.00176274,
1.00176274, 1.00176274, 1.00176274, 1.00022429, 1.00022429,
1.00022429, 1.00022429, 1.00002413, 1.00002413, 1.00002413,
1.00002413, 1.00000224, 1.00000224, 1.00000224, 1.00000224,
1.00000018, 1.00000018, 1.00000018, 1.00000018, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.37352757, 1.37352757,
1.37352757, 1.37352757, 1.26668567, 1.26668567, 1.26668567,
1.26668567, 1.09940265, 1.09940265, 1.09940265, 1.09940265,
1.02324968, 1.02324968, 1.02324968, 1.02324968, 1.0043598 ,
1.0043598 , 1.0043598 , 1.0043598 , 1.00067499, 1.00067499,
1.00067499, 1.00067499, 1.00008852, 1.00008852, 1.00008852,
1.00008852, 1.00001003, 1.00001003, 1.00001003, 1.00001003,
1.000001 , 1.000001 , 1.000001 , 1.000001 , 1.00000009,
1.00000009, 1.00000009, 1.00000009, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.38369557, 1.38369557,
1.38369557, 1.38369557, 1.30721079, 1.30721079, 1.30721079,
1.30721079, 1.1516511 , 1.1516511 , 1.1516511 , 1.1516511 ,
1.04216789, 1.04216789, 1.04216789, 1.04216789, 1.00928188,
1.00928188, 1.00928188, 1.00928188, 1.00169128, 1.00169128,
1.00169128, 1.00169128, 1.00026179, 1.00026179, 1.00026179,
1.00026179, 1.00003509, 1.00003509, 1.00003509, 1.00003509,
1.00000414, 1.00000414, 1.00000414, 1.00000414, 1.00000043,
1.00000043, 1.00000043, 1.00000043, 1.00000004, 1.00000004,
1.00000004, 1.00000004, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.38995807, 1.38995807,
1.38995807, 1.38995807, 1.3362727 , 1.3362727 , 1.3362727 ,
1.3362727 , 1.20681471, 1.20681471, 1.20681471, 1.20681471,
1.06885447, 1.06885447, 1.06885447, 1.06885447, 1.01761457,
1.01761457, 1.01761457, 1.01761457, 1.00370537, 1.00370537,
1.00370537, 1.00370537, 1.00066177, 1.00066177, 1.00066177,
1.00066177, 1.00010247, 1.00010247, 1.00010247, 1.00010247,
1.00001397, 1.00001397, 1.00001397, 1.00001397, 1.0000017 ,
1.0000017 , 1.0000017 , 1.0000017 , 1.00000019, 1.00000019,
1.00000019, 1.00000019, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39381515, 1.39381515,
1.39381515, 1.39381515, 1.35669868, 1.35669868, 1.35669868,
1.35669868, 1.25507469, 1.25507469, 1.25507469, 1.25507469,
1.10670175, 1.10670175, 1.10670175, 1.10670175, 1.03061304,
1.03061304, 1.03061304, 1.03061304, 1.00730695, 1.00730695,
1.00730695, 1.00730695, 1.00148229, 1.00148229, 1.00148229,
1.00148229, 1.00026069, 1.00026069, 1.00026069, 1.00026069,
1.00004039, 1.00004039, 1.00004039, 1.00004039, 1.00000558,
1.00000558, 1.00000558, 1.00000558, 1.00000069, 1.00000069,
1.00000069, 1.00000069, 1.00000008, 1.00000008, 1.00000008,
1.00000008, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39619074, 1.39619074,
1.39619074, 1.39619074, 1.37083527, 1.37083527, 1.37083527,
1.37083527, 1.29312777, 1.29312777, 1.29312777, 1.29312777,
1.15313429, 1.15313429, 1.15313429, 1.15313429, 1.04970419,
1.04970419, 1.04970419, 1.04970419, 1.01327541, 1.01327541,
1.01327541, 1.01327541, 1.00301597, 1.00301597, 1.00301597,
1.00301597, 1.00059451, 1.00059451, 1.00059451, 1.00059451,
1.00010327, 1.00010327, 1.00010327, 1.00010327, 1.00001601,
1.00001601, 1.00001601, 1.00001601, 1.00000224, 1.00000224,
1.00000224, 1.00000224, 1.00000028, 1.00000028, 1.00000028,
1.00000028, 1.00000003, 1.00000003, 1.00000003, 1.00000003,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39765387, 1.39765387,
1.39765387, 1.39765387, 1.38050049, 1.38050049, 1.38050049,
1.38050049, 1.32232286, 1.32232286, 1.32232286, 1.32232286,
1.20239962, 1.20239962, 1.20239962, 1.20239962, 1.07542212,
1.07542212, 1.07542212, 1.07542212, 1.02249875, 1.02249875,
1.02249875, 1.02249875, 1.00567434, 1.00567434, 1.00567434,
1.00567434, 1.00124046, 1.00124046, 1.00124046, 1.00124046,
1.00023899, 1.00023899, 1.00023899, 1.00023899, 1.00004109,
1.00004109, 1.00004109, 1.00004109, 1.00000637, 1.00000637,
1.00000637, 1.00000637, 1.0000009 , 1.0000009 , 1.0000009 ,
1.0000009 , 1.00000012, 1.00000012, 1.00000012, 1.00000012,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39855501, 1.39855501,
1.39855501, 1.39855501, 1.38704363, 1.38704363, 1.38704363,
1.38704363, 1.34423731, 1.34423731, 1.34423731, 1.34423731,
1.24659851, 1.24659851, 1.24659851, 1.24659851, 1.11055425,
1.11055425, 1.11055425, 1.11055425, 1.0359939 , 1.0359939 ,
1.0359939 , 1.0359939 , 1.00998968, 1.00998968, 1.00998968,
1.00998968, 1.00240293, 1.00240293, 1.00240293, 1.00240293,
1.00050912, 1.00050912, 1.00050912, 1.00050912, 1.00009627,
1.00009627, 1.00009627, 1.00009627, 1.00001642, 1.00001642,
1.00001642, 1.00001642, 1.00000255, 1.00000255, 1.00000255,
1.00000255, 1.00000036, 1.00000036, 1.00000036, 1.00000036,
1.00000005, 1.00000005, 1.00000005, 1.00000005, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39911003, 1.39911003,
1.39911003, 1.39911003, 1.39143715, 1.39143715, 1.39143715,
1.39143715, 1.36039506, 1.36039506, 1.36039506, 1.36039506,
1.28277859, 1.28277859, 1.28277859, 1.28277859, 1.15308494,
1.15308494, 1.15308494, 1.15308494, 1.05491762, 1.05491762,
1.05491762, 1.05491762, 1.01663984, 1.01663984, 1.01663984,
1.01663984, 1.00437036, 1.00437036, 1.00437036, 1.00437036,
1.00101107, 1.00101107, 1.00101107, 1.00101107, 1.00020871,
1.00020871, 1.00020871, 1.00020871, 1.00003885, 1.00003885,
1.00003885, 1.00003885, 1.00000658, 1.00000658, 1.00000658,
1.00000658, 1.00000102, 1.00000102, 1.00000102, 1.00000102,
1.00000015, 1.00000015, 1.00000015, 1.00000015, 1.00000002,
1.00000002, 1.00000002, 1.00000002, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39945187, 1.39945187,
1.39945187, 1.39945187, 1.39436705, 1.39436705, 1.39436705,
1.39436705, 1.37213202, 1.37213202, 1.37213202, 1.37213202,
1.31166097, 1.31166097, 1.31166097, 1.31166097, 1.19836302,
1.19836302, 1.19836302, 1.19836302, 1.07969516, 1.07969516,
1.07969516, 1.07969516, 1.02638253, 1.02638253, 1.02638253,
1.02638253, 1.00752915, 1.00752915, 1.00752915, 1.00752915,
1.00189049, 1.00189049, 1.00189049, 1.00189049, 1.00042342,
1.00042342, 1.00042342, 1.00042342, 1.00008551, 1.00008551,
1.00008551, 1.00008551, 1.00001571, 1.00001571, 1.00001571,
1.00001571, 1.00000264, 1.00000264, 1.00000264, 1.00000264,
1.00000041, 1.00000041, 1.00000041, 1.00000041, 1.00000006,
1.00000006, 1.00000006, 1.00000006, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.3996624 , 1.3996624 ,
1.3996624 , 1.3996624 , 1.3963095 , 1.3963095 , 1.3963095 ,
1.3963095 , 1.38055079, 1.38055079, 1.38055079, 1.38055079,
1.33423947, 1.33423947, 1.33423947, 1.33423947, 1.23974605,
1.23974605, 1.23974605, 1.23974605, 1.11267337, 1.11267337,
1.11267337, 1.11267337, 1.04007189, 1.04007189, 1.04007189,
1.04007189, 1.01236277, 1.01236277, 1.01236277, 1.01236277,
1.00335357, 1.00335357, 1.00335357, 1.00335357, 1.00081084,
1.00081084, 1.00081084, 1.00081084, 1.0001767 , 1.0001767 ,
1.0001767 , 1.0001767 , 1.00003502, 1.00003502, 1.00003502,
1.00003502, 1.00000636, 1.00000636, 1.00000636, 1.00000636,
1.00000106, 1.00000106, 1.00000106, 1.00000106, 1.00000017,
1.00000017, 1.00000017, 1.00000017, 1.00000002, 1.00000002,
1.00000002, 1.00000002, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39979207, 1.39979207,
1.39979207, 1.39979207, 1.39759081, 1.39759081, 1.39759081,
1.39759081, 1.38652446, 1.38652446, 1.38652446, 1.38652446,
1.35157893, 1.35157893, 1.35157893, 1.35157893, 1.27446219,
1.27446219, 1.27446219, 1.27446219, 1.15229645, 1.15229645,
1.15229645, 1.15229645, 1.05869191, 1.05869191, 1.05869191,
1.05869191, 1.0194717 , 1.0194717 , 1.0194717 , 1.0194717 ,
1.00567916, 1.00567916, 1.00567916, 1.00567916, 1.00147584,
1.00147584, 1.00147584, 1.00147584, 1.00034552, 1.00034552,
1.00034552, 1.00034552, 1.00007354, 1.00007354, 1.00007354,
1.00007354, 1.00001434, 1.00001434, 1.00001434, 1.00001434,
1.00000258, 1.00000258, 1.00000258, 1.00000258, 1.00000043,
1.00000043, 1.00000043, 1.00000043, 1.00000007, 1.00000007,
1.00000007, 1.00000007, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39987194, 1.39987194,
1.39987194, 1.39987194, 1.39843228, 1.39843228, 1.39843228,
1.39843228, 1.3907236 , 1.3907236 , 1.3907236 , 1.3907236 ,
1.36469302, 1.36469302, 1.36469302, 1.36469302, 1.30292774,
1.30292774, 1.30292774, 1.30292774, 1.19460985, 1.19460985,
1.19460985, 1.19460985, 1.08259733, 1.08259733, 1.08259733,
1.08259733, 1.02951992, 1.02951992, 1.02951992, 1.02951992,
1.009229 , 1.009229 , 1.009229 , 1.009229 , 1.00256783,
1.00256783, 1.00256783, 1.00256783, 1.00064332, 1.00064332,
1.00064332, 1.00064332, 1.00014648, 1.00014648, 1.00014648,
1.00014648, 1.00003055, 1.00003055, 1.00003055, 1.00003055,
1.00000587, 1.00000587, 1.00000587, 1.00000587, 1.00000105,
1.00000105, 1.00000105, 1.00000105, 1.00000017, 1.00000017,
1.00000017, 1.00000017, 1.00000003, 1.00000003, 1.00000003,
1.00000003, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39992113, 1.39992113,
1.39992113, 1.39992113, 1.39898277, 1.39898277, 1.39898277,
1.39898277, 1.39365119, 1.39365119, 1.39365119, 1.39365119,
1.37448052, 1.37448052, 1.37448052, 1.37448052, 1.32581494,
1.32581494, 1.32581494, 1.32581494, 1.23388396, 1.23388396,
1.23388396, 1.23388396, 1.1137857 , 1.1137857 , 1.1137857 ,
1.1137857 , 1.04324167, 1.04324167, 1.04324167, 1.04324167,
1.01444538, 1.01444538, 1.01444538, 1.01444538, 1.00429054,
1.00429054, 1.00429054, 1.00429054, 1.00114649, 1.00114649,
1.00114649, 1.00114649, 1.00027829, 1.00027829, 1.00027829,
1.00027829, 1.00006185, 1.00006185, 1.00006185, 1.00006185,
1.00001267, 1.00001267, 1.00001267, 1.00001267, 1.00000241,
1.00000241, 1.00000241, 1.00000241, 1.00000043, 1.00000043,
1.00000043, 1.00000043, 1.00000007, 1.00000007, 1.00000007,
1.00000007, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39995142, 1.39995142,
1.39995142, 1.39995142, 1.39934166, 1.39934166, 1.39934166,
1.39934166, 1.39567753, 1.39567753, 1.39567753, 1.39567753,
1.38170061, 1.38170061, 1.38170061, 1.38170061, 1.34390623,
1.34390623, 1.34390623, 1.34390623, 1.2674179 , 1.2674179 ,
1.2674179 , 1.2674179 , 1.15110288, 1.15110288, 1.15110288,
1.15110288, 1.06150021, 1.06150021, 1.06150021, 1.06150021,
1.02186743, 1.02186743, 1.02186743, 1.02186743, 1.00691128,
1.00691128, 1.00691128, 1.00691128, 1.00196402, 1.00196402,
1.00196402, 1.00196402, 1.0005067 , 1.0005067 , 1.0005067 ,
1.0005067 , 1.00011965, 1.00011965, 1.00011965, 1.00011965,
1.00002603, 1.00002603, 1.00002603, 1.00002603, 1.00000525,
1.00000525, 1.00000525, 1.00000525, 1.00000099, 1.00000099,
1.00000099, 1.00000099, 1.00000017, 1.00000017, 1.00000017,
1.00000017, 1.00000003, 1.00000003, 1.00000003, 1.00000003,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39997008, 1.39997008,
1.39997008, 1.39997008, 1.39957493, 1.39957493, 1.39957493,
1.39957493, 1.39707105, 1.39707105, 1.39707105, 1.39707105,
1.38697213, 1.38697213, 1.38697213, 1.38697213, 1.35799452,
1.35799452, 1.35799452, 1.35799452, 1.29545775, 1.29545775,
1.29545775, 1.29545775, 1.19107179, 1.19107179, 1.19107179,
1.19107179, 1.08461016, 1.08461016, 1.08461016, 1.08461016,
1.03208805, 1.03208805, 1.03208805, 1.03208805, 1.010769 ,
1.010769 , 1.010769 , 1.010769 , 1.00324598, 1.00324598,
1.00324598, 1.00324598, 1.00088771, 1.00088771, 1.00088771,
1.00088771, 1.00022208, 1.00022208, 1.00022208, 1.00022208,
1.00005118, 1.00005118, 1.00005118, 1.00005118, 1.00001093,
1.00001093, 1.00001093, 1.00001093, 1.00000217, 1.00000217,
1.00000217, 1.00000217, 1.0000004 , 1.0000004 , 1.0000004 ,
1.0000004 , 1.00000007, 1.00000007, 1.00000007, 1.00000007,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39998157, 1.39998157,
1.39998157, 1.39998157, 1.39972613, 1.39972613, 1.39972613,
1.39972613, 1.39802387, 1.39802387, 1.39802387, 1.39802387,
1.39078576, 1.39078576, 1.39078576, 1.39078576, 1.36882146,
1.36882146, 1.36882146, 1.36882146, 1.31847864, 1.31847864,
1.31847864, 1.31847864, 1.22868706, 1.22868706, 1.22868706,
1.22868706, 1.11426113, 1.11426113, 1.11426113, 1.11426113,
1.04574926, 1.04574926, 1.04574926, 1.04574926, 1.01627097,
1.01627097, 1.01627097, 1.01627097, 1.00519147, 1.00519147,
1.00519147, 1.00519147, 1.0015015 , 1.0015015 , 1.0015015 ,
1.0015015 , 1.00039704, 1.00039704, 1.00039704, 1.00039704,
1.00009667, 1.00009667, 1.00009667, 1.00009667, 1.0000218 ,
1.0000218 , 1.0000218 , 1.0000218 , 1.00000458, 1.00000458,
1.00000458, 1.00000458, 1.0000009 , 1.0000009 , 1.0000009 ,
1.0000009 , 1.00000017, 1.00000017, 1.00000017, 1.00000017,
1.00000003, 1.00000003, 1.00000003, 1.00000003, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39998865, 1.39998865,
1.39998865, 1.39998865, 1.39982389, 1.39982389, 1.39982389,
1.39982389, 1.39867198, 1.39867198, 1.39867198, 1.39867198,
1.39352204, 1.39352204, 1.39352204, 1.39352204, 1.37704455,
1.37704455, 1.37704455, 1.37704455, 1.33707618, 1.33707618,
1.33707618, 1.33707618, 1.26124125, 1.26124125, 1.26124125,
1.26124125, 1.14967105, 1.14967105, 1.14967105, 1.14967105,
1.06362378, 1.06362378, 1.06362378, 1.06362378, 1.02390638,
1.02390638, 1.02390638, 1.02390638, 1.00805587, 1.00805587,
1.00805587, 1.00805587, 1.00245907, 1.00245907, 1.00245907,
1.00245907, 1.00068583, 1.00068583, 1.00068583, 1.00068583,
1.00017603, 1.00017603, 1.00017603, 1.00017603, 1.00004183,
1.00004183, 1.00004183, 1.00004183, 1.00000925, 1.00000925,
1.00000925, 1.00000925, 1.00000191, 1.00000191, 1.00000191,
1.00000191, 1.00000037, 1.00000037, 1.00000037, 1.00000037,
1.00000007, 1.00000007, 1.00000007, 1.00000007, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999301, 1.39999301,
1.39999301, 1.39999301, 1.39988695, 1.39988695, 1.39988695,
1.39988695, 1.39911075, 1.39911075, 1.39911075, 1.39911075,
1.39547079, 1.39547079, 1.39547079, 1.39547079, 1.38322431,
1.38322431, 1.38322431, 1.38322431, 1.35188591, 1.35188591,
1.35188591, 1.35188591, 1.28887641, 1.28887641, 1.28887641,
1.28887641, 1.18770935, 1.18770935, 1.18770935, 1.18770935,
1.08600586, 1.08600586, 1.08600586, 1.08600586, 1.03421193,
1.03421193, 1.03421193, 1.03421193, 1.01215736, 1.01215736,
1.01215736, 1.01215736, 1.00390928, 1.00390928, 1.00390928,
1.00390928, 1.00114775, 1.00114775, 1.00114775, 1.00114775,
1.00030995, 1.00030995, 1.00030995, 1.00030995, 1.00007747,
1.00007747, 1.00007747, 1.00007747, 1.00001802, 1.00001802,
1.00001802, 1.00001802, 1.00000392, 1.00000392, 1.00000392,
1.00000392, 1.0000008 , 1.0000008 , 1.0000008 , 1.0000008 ,
1.00000015, 1.00000015, 1.00000015, 1.00000015, 1.00000003,
1.00000003, 1.00000003, 1.00000003, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999569, 1.39999569,
1.39999569, 1.39999569, 1.39992755, 1.39992755, 1.39992755,
1.39992755, 1.39940654, 1.39940654, 1.39940654, 1.39940654,
1.39684934, 1.39684934, 1.39684934, 1.39684934, 1.38782434,
1.38782434, 1.38782434, 1.38782434, 1.36352834, 1.36352834,
1.36352834, 1.36352834, 1.31193777, 1.31193777, 1.31193777,
1.31193777, 1.22397155, 1.22397155, 1.22397155, 1.22397155,
1.11430695, 1.11430695, 1.11430695, 1.11430695, 1.04775624,
1.04775624, 1.04775624, 1.04775624, 1.01787325, 1.01787325,
1.01787325, 1.01787325, 1.00604553, 1.00604553, 1.00604553,
1.00604553, 1.00186535, 1.00186535, 1.00186535, 1.00186535,
1.00052907, 1.00052907, 1.00052907, 1.00052907, 1.00013882,
1.00013882, 1.00013882, 1.00013882, 1.00003388, 1.00003388,
1.00003388, 1.00003388, 1.00000773, 1.00000773, 1.00000773,
1.00000773, 1.00000165, 1.00000165, 1.00000165, 1.00000165,
1.00000033, 1.00000033, 1.00000033, 1.00000033, 1.00000006,
1.00000006, 1.00000006, 1.00000006, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999735, 1.39999735,
1.39999735, 1.39999735, 1.39995364, 1.39995364, 1.39995364,
1.39995364, 1.39960516, 1.39960516, 1.39960516, 1.39960516,
1.39781856, 1.39781856, 1.39781856, 1.39781856, 1.39121895,
1.39121895, 1.39121895, 1.39121895, 1.37257512, 1.37257512,
1.37257512, 1.37257512, 1.33089036, 1.33089036, 1.33089036,
1.33089036, 1.25569524, 1.25569524, 1.25569524, 1.25569524,
1.14809255, 1.14809255, 1.14809255, 1.14809255, 1.06524107,
1.06524107, 1.06524107, 1.06524107, 1.02565101, 1.02565101,
1.02565101, 1.02565101, 1.00911151, 1.00911151, 1.00911151,
1.00911151, 1.00295014, 1.00295014, 1.00295014, 1.00295014,
1.00087744, 1.00087744, 1.00087744, 1.00087744, 1.0002413 ,
1.0002413 , 1.0002413 , 1.0002413 , 1.0000617 , 1.0000617 ,
1.0000617 , 1.0000617 , 1.00001474, 1.00001474, 1.00001474,
1.00001474, 1.0000033 , 1.0000033 , 1.0000033 , 1.0000033 ,
1.0000007 , 1.0000007 , 1.0000007 , 1.0000007 , 1.00000014,
1.00000014, 1.00000014, 1.00000014, 1.00000003, 1.00000003,
1.00000003, 1.00000003, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999837, 1.39999837,
1.39999837, 1.39999837, 1.39997038, 1.39997038, 1.39997038,
1.39997038, 1.39973805, 1.39973805, 1.39973805, 1.39973805,
1.39849618, 1.39849618, 1.39849618, 1.39849618, 1.3937043 ,
1.3937043 , 1.3937043 , 1.3937043 , 1.37953124, 1.37953124,
1.37953124, 1.37953124, 1.34625348, 1.34625348, 1.34625348,
1.34625348, 1.2829543 , 1.2829543 , 1.2829543 , 1.2829543 ,
1.18449482, 1.18449482, 1.18449482, 1.18449482, 1.08695305,
1.08695305, 1.08695305, 1.08695305, 1.0359817 , 1.0359817 ,
1.0359817 , 1.0359817 , 1.01340663, 1.01340663, 1.01340663,
1.01340663, 1.00454869, 1.00454869, 1.00454869, 1.00454869,
1.00141667, 1.00141667, 1.00141667, 1.00141667, 1.00040772,
1.00040772, 1.00040772, 1.00040772, 1.00010905, 1.00010905,
1.00010905, 1.00010905, 1.00002724, 1.00002724, 1.00002724,
1.00002724, 1.00000638, 1.00000638, 1.00000638, 1.00000638,
1.00000141, 1.00000141, 1.00000141, 1.00000141, 1.00000029,
1.00000029, 1.00000029, 1.00000029, 1.00000006, 1.00000006,
1.00000006, 1.00000006, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999899, 1.39999899,
1.39999899, 1.39999899, 1.3999811 , 1.3999811 , 1.3999811 ,
1.3999811 , 1.39982668, 1.39982668, 1.39982668, 1.39982668,
1.39896749, 1.39896749, 1.39896749, 1.39896749, 1.39551085,
1.39551085, 1.39551085, 1.39551085, 1.38482871, 1.38482871,
1.38482871, 1.38482871, 1.35855285, 1.35855285, 1.35855285,
1.35855285, 1.30600344, 1.30600344, 1.30600344, 1.30600344,
1.21961612, 1.21961612, 1.21961612, 1.21961612, 1.11405494,
1.11405494, 1.11405494, 1.11405494, 1.04937502, 1.04937502,
1.04937502, 1.04937502, 1.01928228, 1.01928228, 1.01928228,
1.01928228, 1.0068482 , 1.0068482 , 1.0068482 , 1.0068482 ,
1.00223057, 1.00223057, 1.00223057, 1.00223057, 1.00067095,
1.00067095, 1.00067095, 1.00067095, 1.00018746, 1.00018746,
1.00018746, 1.00018746, 1.00004889, 1.00004889, 1.00004889,
1.00004889, 1.00001196, 1.00001196, 1.00001196, 1.00001196,
1.00000275, 1.00000275, 1.00000275, 1.00000275, 1.0000006 ,
1.0000006 , 1.0000006 , 1.0000006 , 1.00000012, 1.00000012,
1.00000012, 1.00000012, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999938, 1.39999938,
1.39999938, 1.39999938, 1.39998795, 1.39998795, 1.39998795,
1.39998795, 1.3998856 , 1.3998856 , 1.3998856 , 1.3998856 ,
1.39929375, 1.39929375, 1.39929375, 1.39929375, 1.39681528,
1.39681528, 1.39681528, 1.39681528, 1.38882772, 1.38882772,
1.38882772, 1.38882772, 1.36828854, 1.36828854, 1.36828854,
1.36828854, 1.32521236, 1.32521236, 1.32521236, 1.32521236,
1.25062517, 1.25062517, 1.25062517, 1.25062517, 1.14642363,
1.14642363, 1.14642363, 1.14642363, 1.06647357, 1.06647357,
1.06647357, 1.06647357, 1.0271506 , 1.0271506 , 1.0271506 ,
1.0271506 , 1.01008121, 1.01008121, 1.01008121, 1.01008121,
1.00343023, 1.00343023, 1.00343023, 1.00343023, 1.00107711,
1.00107711, 1.00107711, 1.00107711, 1.00031399, 1.00031399,
1.00031399, 1.00031399, 1.00008541, 1.00008541, 1.00008541,
1.00008541, 1.00002177, 1.00002177, 1.00002177, 1.00002177,
1.00000522, 1.00000522, 1.00000522, 1.00000522, 1.00000118,
1.00000118, 1.00000118, 1.00000118, 1.00000025, 1.00000025,
1.00000025, 1.00000025, 1.00000005, 1.00000005, 1.00000005,
1.00000005, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999962, 1.39999962,
1.39999962, 1.39999962, 1.39999233, 1.39999233, 1.39999233,
1.39999233, 1.39992467, 1.39992467, 1.39992467, 1.39992467,
1.39951861, 1.39951861, 1.39951861, 1.39951861, 1.39775141,
1.39775141, 1.39775141, 1.39775141, 1.39182223, 1.39182223,
1.39182223, 1.39182223, 1.37591549, 1.37591549, 1.37591549,
1.37591549, 1.34101176, 1.34101176, 1.34101176, 1.34101176,
1.27753855, 1.27753855, 1.27753855, 1.27753855, 1.18141045,
1.18141045, 1.18141045, 1.18141045, 1.08756174, 1.08756174,
1.08756174, 1.08756174, 1.03746461, 1.03746461, 1.03746461,
1.03746461, 1.0145302 , 1.0145302 , 1.0145302 , 1.0145302 ,
1.00515922, 1.00515922, 1.00515922, 1.00515922, 1.00168932,
1.00168932, 1.00168932, 1.00168932, 1.00051321, 1.00051321,
1.00051321, 1.00051321, 1.00014541, 1.00014541, 1.00014541,
1.00014541, 1.0000386 , 1.0000386 , 1.0000386 , 1.0000386 ,
1.00000964, 1.00000964, 1.00000964, 1.00000964, 1.00000227,
1.00000227, 1.00000227, 1.00000227, 1.00000051, 1.00000051,
1.00000051, 1.00000051, 1.00000011, 1.00000011, 1.00000011,
1.00000011, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999976, 1.39999976,
1.39999976, 1.39999976, 1.39999512, 1.39999512, 1.39999512,
1.39999512, 1.3999505 , 1.3999505 , 1.3999505 , 1.3999505 ,
1.39967295, 1.39967295, 1.39967295, 1.39967295, 1.39841943,
1.39841943, 1.39841943, 1.39841943, 1.39404791, 1.39404791,
1.39404791, 1.39404791, 1.38183389, 1.38183389, 1.38183389,
1.38183389, 1.35385188, 1.35385188, 1.35385188, 1.35385188,
1.30054548, 1.30054548, 1.30054548, 1.30054548, 1.21554401,
1.21554401, 1.21554401, 1.21554401, 1.113588 , 1.113588 ,
1.113588 , 1.113588 , 1.05068574, 1.05068574, 1.05068574,
1.05068574, 1.02052392, 1.02052392, 1.02052392, 1.02052392,
1.00759846, 1.00759846, 1.00759846, 1.00759846, 1.00259191,
1.00259191, 1.00259191, 1.00259191, 1.00081978, 1.00081978,
1.00081978, 1.00081978, 1.0002417 , 1.0002417 , 1.0002417 ,
1.0002417 , 1.00006673, 1.00006673, 1.00006673, 1.00006673,
1.00001732, 1.00001732, 1.00001732, 1.00001732, 1.00000424,
1.00000424, 1.00000424, 1.00000424, 1.00000098, 1.00000098,
1.00000098, 1.00000098, 1.00000022, 1.00000022, 1.00000022,
1.00000022, 1.00000005, 1.00000005, 1.00000005, 1.00000005,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999986, 1.39999986,
1.39999986, 1.39999986, 1.3999969 , 1.3999969 , 1.3999969 ,
1.3999969 , 1.39996754, 1.39996754, 1.39996754, 1.39996754,
1.3997785 , 1.3997785 , 1.3997785 , 1.3997785 , 1.39889362,
1.39889362, 1.39889362, 1.39889362, 1.39569079, 1.39569079,
1.39569079, 1.39569079, 1.38638637, 1.38638637, 1.38638637,
1.38638637, 1.36417293, 1.36417293, 1.36417293, 1.36417293,
1.31994385, 1.31994385, 1.31994385, 1.31994385, 1.24592869,
1.24592869, 1.24592869, 1.24592869, 1.14469896, 1.14469896,
1.14469896, 1.14469896, 1.06740585, 1.06740585, 1.06740585,
1.06740585, 1.02844412, 1.02844412, 1.02844412, 1.02844412,
1.01096997, 1.01096997, 1.01096997, 1.01096997, 1.00389488,
1.00389488, 1.00389488, 1.00389488, 1.00128131, 1.00128131,
1.00128131, 1.00128131, 1.00039271, 1.00039271, 1.00039271,
1.00039271, 1.00011266, 1.00011266, 1.00011266, 1.00011266,
1.00003038, 1.00003038, 1.00003038, 1.00003038, 1.00000773,
1.00000773, 1.00000773, 1.00000773, 1.00000186, 1.00000186,
1.00000186, 1.00000186, 1.00000042, 1.00000042, 1.00000042,
1.00000042, 1.00000009, 1.00000009, 1.00000009, 1.00000009,
1.00000002, 1.00000002, 1.00000002, 1.00000002, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999991, 1.39999991,
1.39999991, 1.39999991, 1.39999803, 1.39999803, 1.39999803,
1.39999803, 1.39997875, 1.39997875, 1.39997875, 1.39997875,
1.39985041, 1.39985041, 1.39985041, 1.39985041, 1.39922858,
1.39922858, 1.39922858, 1.39922858, 1.39689572, 1.39689572,
1.39689572, 1.39689572, 1.38985989, 1.38985989, 1.38985989,
1.38985989, 1.37238562, 1.37238562, 1.37238562, 1.37238562,
1.33609516, 1.33609516, 1.33609516, 1.33609516, 1.27252457,
1.27252457, 1.27252457, 1.27252457, 1.17843926, 1.17843926,
1.17843926, 1.17843926, 1.08791064, 1.08791064, 1.08791064,
1.08791064, 1.0387115 , 1.0387115 , 1.0387115 , 1.0387115 ,
1.01554087, 1.01554087, 1.01554087, 1.01554087, 1.00573844,
1.00573844, 1.00573844, 1.00573844, 1.00196188, 1.00196188,
1.00196188, 1.00196188, 1.00062452, 1.00062452, 1.00062452,
1.00062452, 1.00018599, 1.00018599, 1.00018599, 1.00018599,
1.00005204, 1.00005204, 1.00005204, 1.00005204, 1.00001373,
1.00001373, 1.00001373, 1.00001373, 1.00000343, 1.00000343,
1.00000343, 1.00000343, 1.00000081, 1.00000081, 1.00000081,
1.00000081, 1.00000018, 1.00000018, 1.00000018, 1.00000018,
1.00000004, 1.00000004, 1.00000004, 1.00000004, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999995, 1.39999995,
1.39999995, 1.39999995, 1.39999875, 1.39999875, 1.39999875,
1.39999875, 1.39998612, 1.39998612, 1.39998612, 1.39998612,
1.39989925, 1.39989925, 1.39989925, 1.39989925, 1.39946412,
1.39946412, 1.39946412, 1.39946412, 1.39777421, 1.39777421,
1.39777421, 1.39777421, 1.39249029, 1.39249029, 1.39249029,
1.39249029, 1.37885985, 1.37885985, 1.37885985, 1.37885985,
1.34938855, 1.34938855, 1.34938855, 1.34938855, 1.29547175,
1.29547175, 1.29547175, 1.29547175, 1.21169969, 1.21169969,
1.21169969, 1.21169969, 1.11296387, 1.11296387, 1.11296387,
1.11296387, 1.05174766, 1.05174766, 1.05174766, 1.05174766,
1.02162002, 1.02162002, 1.02162002, 1.02162002, 1.00829724,
1.00829724, 1.00829724, 1.00829724, 1.00294575, 1.00294575,
1.00294575, 1.00294575, 1.00097314, 1.00097314, 1.00097314,
1.00097314, 1.00030061, 1.00030061, 1.00030061, 1.00030061,
1.00008721, 1.00008721, 1.00008721, 1.00008721, 1.00002385,
1.00002385, 1.00002385, 1.00002385, 1.00000617, 1.00000617,
1.00000617, 1.00000617, 1.00000151, 1.00000151, 1.00000151,
1.00000151, 1.00000035, 1.00000035, 1.00000035, 1.00000035,
1.00000008, 1.00000008, 1.00000008, 1.00000008, 1.00000002,
1.00000002, 1.00000002, 1.00000002, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999997, 1.39999997,
1.39999997, 1.39999997, 1.39999921, 1.39999921, 1.39999921,
1.39999921, 1.39999095, 1.39999095, 1.39999095, 1.39999095,
1.39993232, 1.39993232, 1.39993232, 1.39993232, 1.39962903,
1.39962903, 1.39962903, 1.39962903, 1.39841114, 1.39841114,
1.39841114, 1.39841114, 1.39446832, 1.39446832, 1.39446832,
1.39446832, 1.38391959, 1.38391959, 1.38391959, 1.38391959,
1.36021389, 1.36021389, 1.36021389, 1.36021389, 1.31501246,
1.31501246, 1.31501246, 1.31501246, 1.24153265, 1.24153265,
1.24153265, 1.24153265, 1.14294179, 1.14294179, 1.14294179,
1.14294179, 1.06809956, 1.06809956, 1.06809956, 1.06809956,
1.0295627 , 1.0295627 , 1.0295627 , 1.0295627 , 1.01178347,
1.01178347, 1.01178347, 1.01178347, 1.0043414 , 1.0043414 ,
1.0043414 , 1.0043414 , 1.00148729, 1.00148729, 1.00148729,
1.00148729, 1.00047618, 1.00047618, 1.00047618, 1.00047618,
1.00014311, 1.00014311, 1.00014311, 1.00014311, 1.00004052,
1.00004052, 1.00004052, 1.00004052, 1.00001085, 1.00001085,
1.00001085, 1.00001085, 1.00000275, 1.00000275, 1.00000275,
1.00000275, 1.00000066, 1.00000066, 1.00000066, 1.00000066,
1.00000015, 1.00000015, 1.00000015, 1.00000015, 1.00000003,
1.00000003, 1.00000003, 1.00000003, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999998, 1.39999998,
1.39999998, 1.39999998, 1.3999995 , 1.3999995 , 1.3999995 ,
1.3999995 , 1.3999941 , 1.3999941 , 1.3999941 , 1.3999941 ,
1.39995465, 1.39995465, 1.39995465, 1.39995465, 1.39974404,
1.39974404, 1.39974404, 1.39974404, 1.39887054, 1.39887054,
1.39887054, 1.39887054, 1.39594607, 1.39594607, 1.39594607,
1.39594607, 1.38784215, 1.38784215, 1.38784215, 1.38784215,
1.36894303, 1.36894303, 1.36894303, 1.36894303, 1.33145294,
1.33145294, 1.33145294, 1.33145294, 1.26783669, 1.26783669,
1.26783669, 1.26783669, 1.17556797, 1.17556797, 1.17556797,
1.17556797, 1.08805645, 1.08805645, 1.08805645, 1.08805645,
1.03976177, 1.03976177, 1.03976177, 1.03976177, 1.01645032,
1.01645032, 1.01645032, 1.01645032, 1.00628547, 1.00628547,
1.00628547, 1.00628547, 1.00223151, 1.00223151, 1.00223151,
1.00223151, 1.00073997, 1.00073997, 1.00073997, 1.00073997,
1.00023021, 1.00023021, 1.00023021, 1.00023021, 1.00006746,
1.00006746, 1.00006746, 1.00006746, 1.00001868, 1.00001868,
1.00001868, 1.00001868, 1.0000049 , 1.0000049 , 1.0000049 ,
1.0000049 , 1.00000122, 1.00000122, 1.00000122, 1.00000122,
1.00000029, 1.00000029, 1.00000029, 1.00000029, 1.00000007,
1.00000007, 1.00000007, 1.00000007, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999999, 1.39999999,
1.39999999, 1.39999999, 1.39999968, 1.39999968, 1.39999968,
1.39999968, 1.39999617, 1.39999617, 1.39999617, 1.39999617,
1.39996968, 1.39996968, 1.39996968, 1.39996968, 1.39982394,
1.39982394, 1.39982394, 1.39982394, 1.39920028, 1.39920028,
1.39920028, 1.39920028, 1.39704335, 1.39704335, 1.39704335,
1.39704335, 1.39086036, 1.39086036, 1.39086036, 1.39086036,
1.37591782, 1.37591782, 1.37591782, 1.37591782, 1.34513208,
1.34513208, 1.34513208, 1.34513208, 1.29071415, 1.29071415,
1.29071415, 1.29071415, 1.20804266, 1.20804266, 1.20804266,
1.20804266, 1.11222351, 1.11222351, 1.11222351, 1.11222351,
1.05260571, 1.05260571, 1.05260571, 1.05260571, 1.022589 ,
1.022589 , 1.022589 , 1.022589 , 1.0089465 , 1.0089465 ,
1.0089465 , 1.0089465 , 1.00328962, 1.00328962, 1.00328962,
1.00328962, 1.00112906, 1.00112906, 1.00112906, 1.00112906,
1.00036338, 1.00036338, 1.00036338, 1.00036338, 1.0001101 ,
1.0001101 , 1.0001101 , 1.0001101 , 1.00003152, 1.00003152,
1.00003152, 1.00003152, 1.00000855, 1.00000855, 1.00000855,
1.00000855, 1.0000022 , 1.0000022 , 1.0000022 , 1.0000022 ,
1.00000054, 1.00000054, 1.00000054, 1.00000054, 1.00000013,
1.00000013, 1.00000013, 1.00000013, 1.00000003, 1.00000003,
1.00000003, 1.00000003, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999999, 1.39999999,
1.39999999, 1.39999999, 1.3999998 , 1.3999998 , 1.3999998 ,
1.3999998 , 1.39999751, 1.39999751, 1.39999751, 1.39999751,
1.39997977, 1.39997977, 1.39997977, 1.39997977, 1.39987925,
1.39987925, 1.39987925, 1.39987925, 1.39943586, 1.39943586,
1.39943586, 1.39943586, 1.39785346, 1.39785346, 1.39785346,
1.39785346, 1.39316645, 1.39316645, 1.39316645, 1.39316645,
1.38144361, 1.38144361, 1.38144361, 1.38144361, 1.35639706,
1.35639706, 1.35639706, 1.35639706, 1.31036316, 1.31036316,
1.31036316, 1.31036316, 1.23738337, 1.23738337, 1.23738337,
1.23738337, 1.14116812, 1.14116812, 1.14116812, 1.14116812,
1.06860077, 1.06860077, 1.06860077, 1.06860077, 1.03053157,
1.03053157, 1.03053157, 1.03053157, 1.01252751, 1.01252751,
1.01252751, 1.01252751, 1.00476825, 1.00476825, 1.00476825,
1.00476825, 1.00169289, 1.00169289, 1.00169289, 1.00169289,
1.00056328, 1.00056328, 1.00056328, 1.00056328, 1.00017637,
1.00017637, 1.00017637, 1.00017637, 1.00005215, 1.00005215,
1.00005215, 1.00005215, 1.00001461, 1.00001461, 1.00001461,
1.00001461, 1.00000389, 1.00000389, 1.00000389, 1.00000389,
1.00000099, 1.00000099, 1.00000099, 1.00000099, 1.00000024,
1.00000024, 1.00000024, 1.00000024, 1.00000006, 1.00000006,
1.00000006, 1.00000006, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.39999987, 1.39999987, 1.39999987,
1.39999987, 1.39999839, 1.39999839, 1.39999839, 1.39999839,
1.39998653, 1.39998653, 1.39998653, 1.39998653, 1.39991742,
1.39991742, 1.39991742, 1.39991742, 1.39960346, 1.39960346,
1.39960346, 1.39960346, 1.39844834, 1.39844834, 1.39844834,
1.39844834, 1.39491688, 1.39491688, 1.39491688, 1.39491688,
1.38578674, 1.38578674, 1.38578674, 1.38578674, 1.36558558,
1.36558558, 1.36558558, 1.36558558, 1.32704504, 1.32704504,
1.32704504, 1.32704504, 1.2634186 , 1.2634186 , 1.2634186 ,
1.2634186 , 1.17278602, 1.17278602, 1.17278602, 1.17278602,
1.08804113, 1.08804113, 1.08804113, 1.08804113, 1.04064649,
1.04064649, 1.04064649, 1.04064649, 1.01726903, 1.01726903,
1.01726903, 1.01726903, 1.0068004 , 1.0068004 , 1.0068004 ,
1.0068004 , 1.00249615, 1.00249615, 1.00249615, 1.00249615,
1.00085817, 1.00085817, 1.00085817, 1.00085817, 1.0002775 ,
1.0002775 , 1.0002775 , 1.0002775 , 1.00008471, 1.00008471,
1.00008471, 1.00008471, 1.00002449, 1.00002449, 1.00002449,
1.00002449, 1.00000672, 1.00000672, 1.00000672, 1.00000672,
1.00000176, 1.00000176, 1.00000176, 1.00000176, 1.00000044,
1.00000044, 1.00000044, 1.00000044, 1.0000001 , 1.0000001 ,
1.0000001 , 1.0000001 , 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.39999992, 1.39999992, 1.39999992,
1.39999992, 1.39999895, 1.39999895, 1.39999895, 1.39999895,
1.39999105, 1.39999105, 1.39999105, 1.39999105, 1.39994367,
1.39994367, 1.39994367, 1.39994367, 1.39972221, 1.39972221,
1.39972221, 1.39972221, 1.39888296, 1.39888296, 1.39888296,
1.39888296, 1.39623736, 1.39623736, 1.39623736, 1.39623736,
1.38917502, 1.38917502, 1.38917502, 1.38917502, 1.37301383,
1.37301383, 1.37301383, 1.37301383, 1.34105677, 1.34105677,
1.34105677, 1.34105677, 1.28622103, 1.28622103, 1.28622103,
1.28622103, 1.20454253, 1.20454253, 1.20454253, 1.20454253,
1.11139686, 1.11139686, 1.11139686, 1.11139686, 1.05329462,
1.05329462, 1.05329462, 1.05329462, 1.02344644, 1.02344644,
1.02344644, 1.02344644, 1.00954873, 1.00954873, 1.00954873,
1.00954873, 1.00362188, 1.00362188, 1.00362188, 1.00362188,
1.00128594, 1.00128594, 1.00128594, 1.00128594, 1.00042921,
1.00042921, 1.00042921, 1.00042921, 1.00013517, 1.00013517,
1.00013517, 1.00013517, 1.0000403 , 1.0000403 , 1.0000403 ,
1.0000403 , 1.00001141, 1.00001141, 1.00001141, 1.00001141,
1.00000307, 1.00000307, 1.00000307, 1.00000307, 1.00000079,
1.00000079, 1.00000079, 1.00000079, 1.00000019, 1.00000019,
1.00000019, 1.00000019, 1.00000005, 1.00000005, 1.00000005,
1.00000005, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.39999995, 1.39999995, 1.39999995,
1.39999995, 1.39999932, 1.39999932, 1.39999932, 1.39999932,
1.39999406, 1.39999406, 1.39999406, 1.39999406, 1.39996168,
1.39996168, 1.39996168, 1.39996168, 1.39980601, 1.39980601,
1.39980601, 1.39980601, 1.39919899, 1.39919899, 1.39919899,
1.39919899, 1.3972277 , 1.3972277 , 1.3972277 , 1.3972277 ,
1.39179997, 1.39179997, 1.39179997, 1.39179997, 1.37896914,
1.37896914, 1.37896914, 1.37896914, 1.35270901, 1.35270901,
1.35270901, 1.35270901, 1.30595321, 1.30595321, 1.30595321,
1.30595321, 1.23344038, 1.23344038, 1.23344038, 1.23344038,
1.13938926, 1.13938926, 1.13938926, 1.13938926, 1.06894468,
1.06894468, 1.06894468, 1.06894468, 1.03137135, 1.03137135,
1.03137135, 1.03137135, 1.01320771, 1.01320771, 1.01320771,
1.01320771, 1.0051747 , 1.0051747 , 1.0051747 , 1.0051747 ,
1.00189646, 1.00189646, 1.00189646, 1.00189646, 1.00065301,
1.00065301, 1.00065301, 1.00065301, 1.00021207, 1.00021207,
1.00021207, 1.00021207, 1.00006518, 1.00006518, 1.00006518,
1.00006518, 1.00001901, 1.00001901, 1.00001901, 1.00001901,
1.00000528, 1.00000528, 1.00000528, 1.00000528, 1.0000014 ,
1.0000014 , 1.0000014 , 1.0000014 , 1.00000035, 1.00000035,
1.00000035, 1.00000035, 1.00000009, 1.00000009, 1.00000009,
1.00000009, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}]}
minmod_rusanov
{'none_hll': [{'rho': array([1.39995168, 1.39995168, 1.39995168, 1.39995168, 1.39994836,
1.39994836, 1.39994836, 1.39994836, 1.3999409 , 1.3999409 ,
1.3999409 , 1.3999409 , 1.39992812, 1.39992812, 1.39992812,
1.39992812, 1.39990848, 1.39990848, 1.39990848, 1.39990848,
1.39987989, 1.39987989, 1.39987989, 1.39987989, 1.39983964,
1.39983964, 1.39983964, 1.39983964, 1.39978421, 1.39978421,
1.39978421, 1.39978421, 1.39970908, 1.39970908, 1.39970908,
1.39970908, 1.39960853, 1.39960853, 1.39960853, 1.39960853,
1.3994754 , 1.3994754 , 1.3994754 , 1.3994754 , 1.39930081,
1.39930081, 1.39930081, 1.39930081, 1.39907388, 1.39907388,
1.39907388, 1.39907388, 1.39878143, 1.39878143, 1.39878143,
1.39878143, 1.39840763, 1.39840763, 1.39840763, 1.39840763,
1.39793372, 1.39793372, 1.39793372, 1.39793372, 1.39733771,
1.39733771, 1.39733771, 1.39733771, 1.39659414, 1.39659414,
1.39659414, 1.39659414, 1.39567386, 1.39567386, 1.39567386,
1.39567386, 1.39454395, 1.39454395, 1.39454395, 1.39454395,
1.39316777, 1.39316777, 1.39316777, 1.39316777, 1.39150506,
1.39150506, 1.39150506, 1.39150506, 1.38951228, 1.38951228,
1.38951228, 1.38951228, 1.38714319, 1.38714319, 1.38714319,
1.38714319, 1.3843495 , 1.3843495 , 1.3843495 , 1.3843495 ,
1.38108186, 1.38108186, 1.38108186, 1.38108186, 1.37729101,
1.37729101, 1.37729101, 1.37729101, 1.37292914, 1.37292914,
1.37292914, 1.37292914, 1.36795138, 1.36795138, 1.36795138,
1.36795138, 1.36231746, 1.36231746, 1.36231746, 1.36231746,
1.35599341, 1.35599341, 1.35599341, 1.35599341, 1.34895317,
1.34895317, 1.34895317, 1.34895317, 1.34118023, 1.34118023,
1.34118023, 1.34118023, 1.33266896, 1.33266896, 1.33266896,
1.33266896, 1.32342575, 1.32342575, 1.32342575, 1.32342575,
1.31346974, 1.31346974, 1.31346974, 1.31346974, 1.30283319,
1.30283319, 1.30283319, 1.30283319, 1.2915614 , 1.2915614 ,
1.2915614 , 1.2915614 , 1.27971213, 1.27971213, 1.27971213,
1.27971213, 1.26735463, 1.26735463, 1.26735463, 1.26735463,
1.25456823, 1.25456823, 1.25456823, 1.25456823, 1.24144055,
1.24144055, 1.24144055, 1.24144055, 1.22806553, 1.22806553,
1.22806553, 1.22806553, 1.21454119, 1.21454119, 1.21454119,
1.21454119, 1.20096739, 1.20096739, 1.20096739, 1.20096739,
1.18744361, 1.18744361, 1.18744361, 1.18744361, 1.17406679,
1.17406679, 1.17406679, 1.17406679, 1.16092952, 1.16092952,
1.16092952, 1.16092952, 1.14811836, 1.14811836, 1.14811836,
1.14811836, 1.13571261, 1.13571261, 1.13571261, 1.13571261,
1.12378348, 1.12378348, 1.12378348, 1.12378348, 1.11239358,
1.11239358, 1.11239358, 1.11239358, 1.101597 , 1.101597 ,
1.101597 , 1.101597 , 1.09143978, 1.09143978, 1.09143978,
1.09143978, 1.08196095, 1.08196095, 1.08196095, 1.08196095,
1.07319409, 1.07319409, 1.07319409, 1.07319409, 1.06516949,
1.06516949, 1.06516949, 1.06516949, 1.05791705, 1.05791705,
1.05791705, 1.05791705, 1.05146988, 1.05146988, 1.05146988,
1.05146988, 1.04586889, 1.04586889, 1.04586889, 1.04586889,
1.04116846, 1.04116846, 1.04116846, 1.04116846, 1.03744347,
1.03744347, 1.03744347, 1.03744347, 1.03479804, 1.03479804,
1.03479804, 1.03479804, 1.03337638, 1.03337638, 1.03337638]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_rusanov': [{'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.39999999, 1.39999999, 1.39999999, 1.39999999,
1.39999999, 1.39999999, 1.39999999, 1.39999999, 1.39999998,
1.39999998, 1.39999998, 1.39999998, 1.39999996, 1.39999996,
1.39999996, 1.39999996, 1.39999992, 1.39999992, 1.39999992,
1.39999992, 1.39999984, 1.39999984, 1.39999984, 1.39999984,
1.39999968, 1.39999968, 1.39999968, 1.39999968, 1.39999939,
1.39999939, 1.39999939, 1.39999939, 1.39999885, 1.39999885,
1.39999885, 1.39999885, 1.39999786, 1.39999786, 1.39999786,
1.39999786, 1.39999607, 1.39999607, 1.39999607, 1.39999607,
1.39999285, 1.39999285, 1.39999285, 1.39999285, 1.39998716,
1.39998716, 1.39998716, 1.39998716, 1.39997722, 1.39997722,
1.39997722, 1.39997722, 1.39996011, 1.39996011, 1.39996011,
1.39996011, 1.39993104, 1.39993104, 1.39993104, 1.39993104,
1.39988233, 1.39988233, 1.39988233, 1.39988233, 1.39980185,
1.39980185, 1.39980185, 1.39980185, 1.39967076, 1.39967076,
1.39967076, 1.39967076, 1.3994603 , 1.3994603 , 1.3994603 ,
1.3994603 , 1.39912737, 1.39912737, 1.39912737, 1.39912737,
1.39860857, 1.39860857, 1.39860857, 1.39860857, 1.39781248,
1.39781248, 1.39781248, 1.39781248, 1.39660996, 1.39660996,
1.39660996, 1.39660996, 1.39482258, 1.39482258, 1.39482258,
1.39482258, 1.39220953, 1.39220953, 1.39220953, 1.39220953,
1.38845397, 1.38845397, 1.38845397, 1.38845397, 1.3831505 ,
1.3831505 , 1.3831505 , 1.3831505 , 1.37579626, 1.37579626,
1.37579626, 1.37579626, 1.36578903, 1.36578903, 1.36578903,
1.36578903, 1.35243652, 1.35243652, 1.35243652, 1.35243652,
1.33498164, 1.33498164, 1.33498164, 1.33498164, 1.31265121,
1.31265121, 1.31265121, 1.31265121, 1.2847384 , 1.2847384 ,
1.2847384 , 1.2847384 , 1.2507064 , 1.2507064 , 1.2507064 ,
1.2507064 , 1.21017042, 1.21017042, 1.21017042, 1.21017042,
1.16826394, 1.16826394, 1.16826394, 1.16826394, 1.13190268,
1.13190268, 1.13190268, 1.13190268, 1.10181888, 1.10181888,
1.10181888, 1.10181888, 1.07740915, 1.07740915, 1.07740915,
1.07740915, 1.05798425, 1.05798425, 1.05798425, 1.05798425,
1.04280816, 1.04280816, 1.04280816, 1.04280816, 1.03115759,
1.03115759, 1.03115759, 1.03115759, 1.02236355, 1.02236355,
1.02236355, 1.02236355, 1.01583385, 1.01583385, 1.01583385,
1.01583385, 1.01106189, 1.01106189, 1.01106189, 1.01106189,
1.00762663, 1.00762663, 1.00762663, 1.00762663, 1.00518713,
1.00518713, 1.00518713, 1.00518713, 1.00347488, 1.00347488,
1.00347488, 1.00347488, 1.00228528, 1.00228528, 1.00228528,
1.00228528, 1.00146924, 1.00146924, 1.00146924, 1.00146924,
1.00092404, 1.00092404, 1.00092404, 1.00092404, 1.00058227,
1.00058227, 1.00058227, 1.00058227, 1.00039803, 1.00039803,
1.00039803, 1.00039803, 1.00033084, 1.00033084, 1.00033084]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hll': [{'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.39999999,
1.39999999, 1.39999999, 1.39999999, 1.39999998, 1.39999998,
1.39999998, 1.39999998, 1.39999996, 1.39999996, 1.39999996,
1.39999996, 1.39999992, 1.39999992, 1.39999992, 1.39999992,
1.39999984, 1.39999984, 1.39999984, 1.39999984, 1.39999968,
1.39999968, 1.39999968, 1.39999968, 1.39999937, 1.39999937,
1.39999937, 1.39999937, 1.39999878, 1.39999878, 1.39999878,
1.39999878, 1.39999768, 1.39999768, 1.39999768, 1.39999768,
1.39999564, 1.39999564, 1.39999564, 1.39999564, 1.39999192,
1.39999192, 1.39999192, 1.39999192, 1.39998523, 1.39998523,
1.39998523, 1.39998523, 1.39997335, 1.39997335, 1.39997335,
1.39997335, 1.39995258, 1.39995258, 1.39995258, 1.39995258,
1.39991678, 1.39991678, 1.39991678, 1.39991678, 1.39985601,
1.39985601, 1.39985601, 1.39985601, 1.39975438, 1.39975438,
1.39975438, 1.39975438, 1.39958702, 1.39958702, 1.39958702,
1.39958702, 1.39931575, 1.39931575, 1.39931575, 1.39931575,
1.39888301, 1.39888301, 1.39888301, 1.39888301, 1.39820389,
1.39820389, 1.39820389, 1.39820389, 1.39715582, 1.39715582,
1.39715582, 1.39715582, 1.39556586, 1.39556586, 1.39556586,
1.39556586, 1.39319593, 1.39319593, 1.39319593, 1.39319593,
1.3897269 , 1.3897269 , 1.3897269 , 1.3897269 , 1.38474325,
1.38474325, 1.38474325, 1.38474325, 1.37772106, 1.37772106,
1.37772106, 1.37772106, 1.36802356, 1.36802356, 1.36802356,
1.36802356, 1.35490885, 1.35490885, 1.35490885, 1.35490885,
1.33755595, 1.33755595, 1.33755595, 1.33755595, 1.31511724,
1.31511724, 1.31511724, 1.31511724, 1.28681068, 1.28681068,
1.28681068, 1.28681068, 1.25204433, 1.25204433, 1.25204433,
1.25204433, 1.21040786, 1.21040786, 1.21040786, 1.21040786,
1.16730937, 1.16730937, 1.16730937, 1.16730937, 1.13010572,
1.13010572, 1.13010572, 1.13010572, 1.09954214, 1.09954214,
1.09954214, 1.09954214, 1.07494493, 1.07494493, 1.07494493,
1.07494493, 1.05554943, 1.05554943, 1.05554943, 1.05554943,
1.04054789, 1.04054789, 1.04054789, 1.04054789, 1.02915605,
1.02915605, 1.02915605, 1.02915605, 1.02065733, 1.02065733,
1.02065733, 1.02065733, 1.01442545, 1.01442545, 1.01442545,
1.01442545, 1.00993187, 1.00993187, 1.00993187, 1.00993187,
1.00674352, 1.00674352, 1.00674352, 1.00674352, 1.00451476,
1.00451476, 1.00451476, 1.00451476, 1.0029769 , 1.0029769 ,
1.0029769 , 1.0029769 , 1.00192734, 1.00192734, 1.00192734,
1.00192734, 1.00121949, 1.00121949, 1.00121949, 1.00121949,
1.00075296, 1.00075296, 1.00075296, 1.00075296, 1.00046281,
1.00046281, 1.00046281, 1.00046281, 1.0003066 , 1.0003066 ,
1.0003066 , 1.0003066 , 1.00024944, 1.00024944, 1.00024944]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hllc': [{'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.11831494, 1.11831494,
1.11831494, 1.11831494, 1.00923298, 1.00923298, 1.00923298,
1.00923298, 1.00043756, 1.00043756, 1.00043756, 1.00043756,
1.00001417, 1.00001417, 1.00001417, 1.00001417, 1.00000033,
1.00000033, 1.00000033, 1.00000033, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.21607423, 1.21607423,
1.21607423, 1.21607423, 1.0358938 , 1.0358938 , 1.0358938 ,
1.0358938 , 1.0037377 , 1.0037377 , 1.0037377 , 1.0037377 ,
1.00027776, 1.00027776, 1.00027776, 1.00027776, 1.00001576,
1.00001576, 1.00001576, 1.00001576, 1.00000071, 1.00000071,
1.00000071, 1.00000071, 1.00000003, 1.00000003, 1.00000003,
1.00000003, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.28669245, 1.28669245,
1.28669245, 1.28669245, 1.08302128, 1.08302128, 1.08302128,
1.08302128, 1.01268954, 1.01268954, 1.01268954, 1.01268954,
1.00145562, 1.00145562, 1.00145562, 1.00145562, 1.00013095,
1.00013095, 1.00013095, 1.00013095, 1.00000955, 1.00000955,
1.00000955, 1.00000955, 1.00000058, 1.00000058, 1.00000058,
1.00000058, 1.00000003, 1.00000003, 1.00000003, 1.00000003,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.33021365, 1.33021365,
1.33021365, 1.33021365, 1.14608853, 1.14608853, 1.14608853,
1.14608853, 1.03038575, 1.03038575, 1.03038575, 1.03038575,
1.00467925, 1.00467925, 1.00467925, 1.00467925, 1.00057051,
1.00057051, 1.00057051, 1.00057051, 1.00005712, 1.00005712,
1.00005712, 1.00005712, 1.00000481, 1.00000481, 1.00000481,
1.00000481, 1.00000035, 1.00000035, 1.00000035, 1.00000035,
1.00000002, 1.00000002, 1.00000002, 1.00000002, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.35701844, 1.35701844,
1.35701844, 1.35701844, 1.21170242, 1.21170242, 1.21170242,
1.21170242, 1.05787438, 1.05787438, 1.05787438, 1.05787438,
1.01139116, 1.01139116, 1.01139116, 1.01139116, 1.00176274,
1.00176274, 1.00176274, 1.00176274, 1.00022429, 1.00022429,
1.00022429, 1.00022429, 1.00002413, 1.00002413, 1.00002413,
1.00002413, 1.00000224, 1.00000224, 1.00000224, 1.00000224,
1.00000018, 1.00000018, 1.00000018, 1.00000018, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.37352757, 1.37352757,
1.37352757, 1.37352757, 1.26668567, 1.26668567, 1.26668567,
1.26668567, 1.09940265, 1.09940265, 1.09940265, 1.09940265,
1.02324968, 1.02324968, 1.02324968, 1.02324968, 1.0043598 ,
1.0043598 , 1.0043598 , 1.0043598 , 1.00067499, 1.00067499,
1.00067499, 1.00067499, 1.00008852, 1.00008852, 1.00008852,
1.00008852, 1.00001003, 1.00001003, 1.00001003, 1.00001003,
1.000001 , 1.000001 , 1.000001 , 1.000001 , 1.00000009,
1.00000009, 1.00000009, 1.00000009, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.38369557, 1.38369557,
1.38369557, 1.38369557, 1.30721079, 1.30721079, 1.30721079,
1.30721079, 1.1516511 , 1.1516511 , 1.1516511 , 1.1516511 ,
1.04216789, 1.04216789, 1.04216789, 1.04216789, 1.00928188,
1.00928188, 1.00928188, 1.00928188, 1.00169128, 1.00169128,
1.00169128, 1.00169128, 1.00026179, 1.00026179, 1.00026179,
1.00026179, 1.00003509, 1.00003509, 1.00003509, 1.00003509,
1.00000414, 1.00000414, 1.00000414, 1.00000414, 1.00000043,
1.00000043, 1.00000043, 1.00000043, 1.00000004, 1.00000004,
1.00000004, 1.00000004, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.38995807, 1.38995807,
1.38995807, 1.38995807, 1.3362727 , 1.3362727 , 1.3362727 ,
1.3362727 , 1.20681471, 1.20681471, 1.20681471, 1.20681471,
1.06885447, 1.06885447, 1.06885447, 1.06885447, 1.01761457,
1.01761457, 1.01761457, 1.01761457, 1.00370537, 1.00370537,
1.00370537, 1.00370537, 1.00066177, 1.00066177, 1.00066177,
1.00066177, 1.00010247, 1.00010247, 1.00010247, 1.00010247,
1.00001397, 1.00001397, 1.00001397, 1.00001397, 1.0000017 ,
1.0000017 , 1.0000017 , 1.0000017 , 1.00000019, 1.00000019,
1.00000019, 1.00000019, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39381515, 1.39381515,
1.39381515, 1.39381515, 1.35669868, 1.35669868, 1.35669868,
1.35669868, 1.25507469, 1.25507469, 1.25507469, 1.25507469,
1.10670175, 1.10670175, 1.10670175, 1.10670175, 1.03061304,
1.03061304, 1.03061304, 1.03061304, 1.00730695, 1.00730695,
1.00730695, 1.00730695, 1.00148229, 1.00148229, 1.00148229,
1.00148229, 1.00026069, 1.00026069, 1.00026069, 1.00026069,
1.00004039, 1.00004039, 1.00004039, 1.00004039, 1.00000558,
1.00000558, 1.00000558, 1.00000558, 1.00000069, 1.00000069,
1.00000069, 1.00000069, 1.00000008, 1.00000008, 1.00000008,
1.00000008, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39619074, 1.39619074,
1.39619074, 1.39619074, 1.37083527, 1.37083527, 1.37083527,
1.37083527, 1.29312777, 1.29312777, 1.29312777, 1.29312777,
1.15313429, 1.15313429, 1.15313429, 1.15313429, 1.04970419,
1.04970419, 1.04970419, 1.04970419, 1.01327541, 1.01327541,
1.01327541, 1.01327541, 1.00301597, 1.00301597, 1.00301597,
1.00301597, 1.00059451, 1.00059451, 1.00059451, 1.00059451,
1.00010327, 1.00010327, 1.00010327, 1.00010327, 1.00001601,
1.00001601, 1.00001601, 1.00001601, 1.00000224, 1.00000224,
1.00000224, 1.00000224, 1.00000028, 1.00000028, 1.00000028,
1.00000028, 1.00000003, 1.00000003, 1.00000003, 1.00000003,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39765387, 1.39765387,
1.39765387, 1.39765387, 1.38050049, 1.38050049, 1.38050049,
1.38050049, 1.32232286, 1.32232286, 1.32232286, 1.32232286,
1.20239962, 1.20239962, 1.20239962, 1.20239962, 1.07542212,
1.07542212, 1.07542212, 1.07542212, 1.02249875, 1.02249875,
1.02249875, 1.02249875, 1.00567434, 1.00567434, 1.00567434,
1.00567434, 1.00124046, 1.00124046, 1.00124046, 1.00124046,
1.00023899, 1.00023899, 1.00023899, 1.00023899, 1.00004109,
1.00004109, 1.00004109, 1.00004109, 1.00000637, 1.00000637,
1.00000637, 1.00000637, 1.0000009 , 1.0000009 , 1.0000009 ,
1.0000009 , 1.00000012, 1.00000012, 1.00000012, 1.00000012,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39855501, 1.39855501,
1.39855501, 1.39855501, 1.38704363, 1.38704363, 1.38704363,
1.38704363, 1.34423731, 1.34423731, 1.34423731, 1.34423731,
1.24659851, 1.24659851, 1.24659851, 1.24659851, 1.11055425,
1.11055425, 1.11055425, 1.11055425, 1.0359939 , 1.0359939 ,
1.0359939 , 1.0359939 , 1.00998968, 1.00998968, 1.00998968,
1.00998968, 1.00240293, 1.00240293, 1.00240293, 1.00240293,
1.00050912, 1.00050912, 1.00050912, 1.00050912, 1.00009627,
1.00009627, 1.00009627, 1.00009627, 1.00001642, 1.00001642,
1.00001642, 1.00001642, 1.00000255, 1.00000255, 1.00000255,
1.00000255, 1.00000036, 1.00000036, 1.00000036, 1.00000036,
1.00000005, 1.00000005, 1.00000005, 1.00000005, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39911003, 1.39911003,
1.39911003, 1.39911003, 1.39143715, 1.39143715, 1.39143715,
1.39143715, 1.36039506, 1.36039506, 1.36039506, 1.36039506,
1.28277859, 1.28277859, 1.28277859, 1.28277859, 1.15308494,
1.15308494, 1.15308494, 1.15308494, 1.05491762, 1.05491762,
1.05491762, 1.05491762, 1.01663984, 1.01663984, 1.01663984,
1.01663984, 1.00437036, 1.00437036, 1.00437036, 1.00437036,
1.00101107, 1.00101107, 1.00101107, 1.00101107, 1.00020871,
1.00020871, 1.00020871, 1.00020871, 1.00003885, 1.00003885,
1.00003885, 1.00003885, 1.00000658, 1.00000658, 1.00000658,
1.00000658, 1.00000102, 1.00000102, 1.00000102, 1.00000102,
1.00000015, 1.00000015, 1.00000015, 1.00000015, 1.00000002,
1.00000002, 1.00000002, 1.00000002, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39945187, 1.39945187,
1.39945187, 1.39945187, 1.39436705, 1.39436705, 1.39436705,
1.39436705, 1.37213202, 1.37213202, 1.37213202, 1.37213202,
1.31166097, 1.31166097, 1.31166097, 1.31166097, 1.19836302,
1.19836302, 1.19836302, 1.19836302, 1.07969516, 1.07969516,
1.07969516, 1.07969516, 1.02638253, 1.02638253, 1.02638253,
1.02638253, 1.00752915, 1.00752915, 1.00752915, 1.00752915,
1.00189049, 1.00189049, 1.00189049, 1.00189049, 1.00042342,
1.00042342, 1.00042342, 1.00042342, 1.00008551, 1.00008551,
1.00008551, 1.00008551, 1.00001571, 1.00001571, 1.00001571,
1.00001571, 1.00000264, 1.00000264, 1.00000264, 1.00000264,
1.00000041, 1.00000041, 1.00000041, 1.00000041, 1.00000006,
1.00000006, 1.00000006, 1.00000006, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.3996624 , 1.3996624 ,
1.3996624 , 1.3996624 , 1.3963095 , 1.3963095 , 1.3963095 ,
1.3963095 , 1.38055079, 1.38055079, 1.38055079, 1.38055079,
1.33423947, 1.33423947, 1.33423947, 1.33423947, 1.23974605,
1.23974605, 1.23974605, 1.23974605, 1.11267337, 1.11267337,
1.11267337, 1.11267337, 1.04007189, 1.04007189, 1.04007189,
1.04007189, 1.01236277, 1.01236277, 1.01236277, 1.01236277,
1.00335357, 1.00335357, 1.00335357, 1.00335357, 1.00081084,
1.00081084, 1.00081084, 1.00081084, 1.0001767 , 1.0001767 ,
1.0001767 , 1.0001767 , 1.00003502, 1.00003502, 1.00003502,
1.00003502, 1.00000636, 1.00000636, 1.00000636, 1.00000636,
1.00000106, 1.00000106, 1.00000106, 1.00000106, 1.00000017,
1.00000017, 1.00000017, 1.00000017, 1.00000002, 1.00000002,
1.00000002, 1.00000002, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39979207, 1.39979207,
1.39979207, 1.39979207, 1.39759081, 1.39759081, 1.39759081,
1.39759081, 1.38652446, 1.38652446, 1.38652446, 1.38652446,
1.35157893, 1.35157893, 1.35157893, 1.35157893, 1.27446219,
1.27446219, 1.27446219, 1.27446219, 1.15229645, 1.15229645,
1.15229645, 1.15229645, 1.05869191, 1.05869191, 1.05869191,
1.05869191, 1.0194717 , 1.0194717 , 1.0194717 , 1.0194717 ,
1.00567916, 1.00567916, 1.00567916, 1.00567916, 1.00147584,
1.00147584, 1.00147584, 1.00147584, 1.00034552, 1.00034552,
1.00034552, 1.00034552, 1.00007354, 1.00007354, 1.00007354,
1.00007354, 1.00001434, 1.00001434, 1.00001434, 1.00001434,
1.00000258, 1.00000258, 1.00000258, 1.00000258, 1.00000043,
1.00000043, 1.00000043, 1.00000043, 1.00000007, 1.00000007,
1.00000007, 1.00000007, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39987194, 1.39987194,
1.39987194, 1.39987194, 1.39843228, 1.39843228, 1.39843228,
1.39843228, 1.3907236 , 1.3907236 , 1.3907236 , 1.3907236 ,
1.36469302, 1.36469302, 1.36469302, 1.36469302, 1.30292774,
1.30292774, 1.30292774, 1.30292774, 1.19460985, 1.19460985,
1.19460985, 1.19460985, 1.08259733, 1.08259733, 1.08259733,
1.08259733, 1.02951992, 1.02951992, 1.02951992, 1.02951992,
1.009229 , 1.009229 , 1.009229 , 1.009229 , 1.00256783,
1.00256783, 1.00256783, 1.00256783, 1.00064332, 1.00064332,
1.00064332, 1.00064332, 1.00014648, 1.00014648, 1.00014648,
1.00014648, 1.00003055, 1.00003055, 1.00003055, 1.00003055,
1.00000587, 1.00000587, 1.00000587, 1.00000587, 1.00000105,
1.00000105, 1.00000105, 1.00000105, 1.00000017, 1.00000017,
1.00000017, 1.00000017, 1.00000003, 1.00000003, 1.00000003,
1.00000003, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39992113, 1.39992113,
1.39992113, 1.39992113, 1.39898277, 1.39898277, 1.39898277,
1.39898277, 1.39365119, 1.39365119, 1.39365119, 1.39365119,
1.37448052, 1.37448052, 1.37448052, 1.37448052, 1.32581494,
1.32581494, 1.32581494, 1.32581494, 1.23388396, 1.23388396,
1.23388396, 1.23388396, 1.1137857 , 1.1137857 , 1.1137857 ,
1.1137857 , 1.04324167, 1.04324167, 1.04324167, 1.04324167,
1.01444538, 1.01444538, 1.01444538, 1.01444538, 1.00429054,
1.00429054, 1.00429054, 1.00429054, 1.00114649, 1.00114649,
1.00114649, 1.00114649, 1.00027829, 1.00027829, 1.00027829,
1.00027829, 1.00006185, 1.00006185, 1.00006185, 1.00006185,
1.00001267, 1.00001267, 1.00001267, 1.00001267, 1.00000241,
1.00000241, 1.00000241, 1.00000241, 1.00000043, 1.00000043,
1.00000043, 1.00000043, 1.00000007, 1.00000007, 1.00000007,
1.00000007, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39995142, 1.39995142,
1.39995142, 1.39995142, 1.39934166, 1.39934166, 1.39934166,
1.39934166, 1.39567753, 1.39567753, 1.39567753, 1.39567753,
1.38170061, 1.38170061, 1.38170061, 1.38170061, 1.34390623,
1.34390623, 1.34390623, 1.34390623, 1.2674179 , 1.2674179 ,
1.2674179 , 1.2674179 , 1.15110288, 1.15110288, 1.15110288,
1.15110288, 1.06150021, 1.06150021, 1.06150021, 1.06150021,
1.02186743, 1.02186743, 1.02186743, 1.02186743, 1.00691128,
1.00691128, 1.00691128, 1.00691128, 1.00196402, 1.00196402,
1.00196402, 1.00196402, 1.0005067 , 1.0005067 , 1.0005067 ,
1.0005067 , 1.00011965, 1.00011965, 1.00011965, 1.00011965,
1.00002603, 1.00002603, 1.00002603, 1.00002603, 1.00000525,
1.00000525, 1.00000525, 1.00000525, 1.00000099, 1.00000099,
1.00000099, 1.00000099, 1.00000017, 1.00000017, 1.00000017,
1.00000017, 1.00000003, 1.00000003, 1.00000003, 1.00000003,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39997008, 1.39997008,
1.39997008, 1.39997008, 1.39957493, 1.39957493, 1.39957493,
1.39957493, 1.39707105, 1.39707105, 1.39707105, 1.39707105,
1.38697213, 1.38697213, 1.38697213, 1.38697213, 1.35799452,
1.35799452, 1.35799452, 1.35799452, 1.29545775, 1.29545775,
1.29545775, 1.29545775, 1.19107179, 1.19107179, 1.19107179,
1.19107179, 1.08461016, 1.08461016, 1.08461016, 1.08461016,
1.03208805, 1.03208805, 1.03208805, 1.03208805, 1.010769 ,
1.010769 , 1.010769 , 1.010769 , 1.00324598, 1.00324598,
1.00324598, 1.00324598, 1.00088771, 1.00088771, 1.00088771,
1.00088771, 1.00022208, 1.00022208, 1.00022208, 1.00022208,
1.00005118, 1.00005118, 1.00005118, 1.00005118, 1.00001093,
1.00001093, 1.00001093, 1.00001093, 1.00000217, 1.00000217,
1.00000217, 1.00000217, 1.0000004 , 1.0000004 , 1.0000004 ,
1.0000004 , 1.00000007, 1.00000007, 1.00000007, 1.00000007,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39998157, 1.39998157,
1.39998157, 1.39998157, 1.39972613, 1.39972613, 1.39972613,
1.39972613, 1.39802387, 1.39802387, 1.39802387, 1.39802387,
1.39078576, 1.39078576, 1.39078576, 1.39078576, 1.36882146,
1.36882146, 1.36882146, 1.36882146, 1.31847864, 1.31847864,
1.31847864, 1.31847864, 1.22868706, 1.22868706, 1.22868706,
1.22868706, 1.11426113, 1.11426113, 1.11426113, 1.11426113,
1.04574926, 1.04574926, 1.04574926, 1.04574926, 1.01627097,
1.01627097, 1.01627097, 1.01627097, 1.00519147, 1.00519147,
1.00519147, 1.00519147, 1.0015015 , 1.0015015 , 1.0015015 ,
1.0015015 , 1.00039704, 1.00039704, 1.00039704, 1.00039704,
1.00009667, 1.00009667, 1.00009667, 1.00009667, 1.0000218 ,
1.0000218 , 1.0000218 , 1.0000218 , 1.00000458, 1.00000458,
1.00000458, 1.00000458, 1.0000009 , 1.0000009 , 1.0000009 ,
1.0000009 , 1.00000017, 1.00000017, 1.00000017, 1.00000017,
1.00000003, 1.00000003, 1.00000003, 1.00000003, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39998865, 1.39998865,
1.39998865, 1.39998865, 1.39982389, 1.39982389, 1.39982389,
1.39982389, 1.39867198, 1.39867198, 1.39867198, 1.39867198,
1.39352204, 1.39352204, 1.39352204, 1.39352204, 1.37704455,
1.37704455, 1.37704455, 1.37704455, 1.33707618, 1.33707618,
1.33707618, 1.33707618, 1.26124125, 1.26124125, 1.26124125,
1.26124125, 1.14967105, 1.14967105, 1.14967105, 1.14967105,
1.06362378, 1.06362378, 1.06362378, 1.06362378, 1.02390638,
1.02390638, 1.02390638, 1.02390638, 1.00805587, 1.00805587,
1.00805587, 1.00805587, 1.00245907, 1.00245907, 1.00245907,
1.00245907, 1.00068583, 1.00068583, 1.00068583, 1.00068583,
1.00017603, 1.00017603, 1.00017603, 1.00017603, 1.00004183,
1.00004183, 1.00004183, 1.00004183, 1.00000925, 1.00000925,
1.00000925, 1.00000925, 1.00000191, 1.00000191, 1.00000191,
1.00000191, 1.00000037, 1.00000037, 1.00000037, 1.00000037,
1.00000007, 1.00000007, 1.00000007, 1.00000007, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999301, 1.39999301,
1.39999301, 1.39999301, 1.39988695, 1.39988695, 1.39988695,
1.39988695, 1.39911075, 1.39911075, 1.39911075, 1.39911075,
1.39547079, 1.39547079, 1.39547079, 1.39547079, 1.38322431,
1.38322431, 1.38322431, 1.38322431, 1.35188591, 1.35188591,
1.35188591, 1.35188591, 1.28887641, 1.28887641, 1.28887641,
1.28887641, 1.18770935, 1.18770935, 1.18770935, 1.18770935,
1.08600586, 1.08600586, 1.08600586, 1.08600586, 1.03421193,
1.03421193, 1.03421193, 1.03421193, 1.01215736, 1.01215736,
1.01215736, 1.01215736, 1.00390928, 1.00390928, 1.00390928,
1.00390928, 1.00114775, 1.00114775, 1.00114775, 1.00114775,
1.00030995, 1.00030995, 1.00030995, 1.00030995, 1.00007747,
1.00007747, 1.00007747, 1.00007747, 1.00001802, 1.00001802,
1.00001802, 1.00001802, 1.00000392, 1.00000392, 1.00000392,
1.00000392, 1.0000008 , 1.0000008 , 1.0000008 , 1.0000008 ,
1.00000015, 1.00000015, 1.00000015, 1.00000015, 1.00000003,
1.00000003, 1.00000003, 1.00000003, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999569, 1.39999569,
1.39999569, 1.39999569, 1.39992755, 1.39992755, 1.39992755,
1.39992755, 1.39940654, 1.39940654, 1.39940654, 1.39940654,
1.39684934, 1.39684934, 1.39684934, 1.39684934, 1.38782434,
1.38782434, 1.38782434, 1.38782434, 1.36352834, 1.36352834,
1.36352834, 1.36352834, 1.31193777, 1.31193777, 1.31193777,
1.31193777, 1.22397155, 1.22397155, 1.22397155, 1.22397155,
1.11430695, 1.11430695, 1.11430695, 1.11430695, 1.04775624,
1.04775624, 1.04775624, 1.04775624, 1.01787325, 1.01787325,
1.01787325, 1.01787325, 1.00604553, 1.00604553, 1.00604553,
1.00604553, 1.00186535, 1.00186535, 1.00186535, 1.00186535,
1.00052907, 1.00052907, 1.00052907, 1.00052907, 1.00013882,
1.00013882, 1.00013882, 1.00013882, 1.00003388, 1.00003388,
1.00003388, 1.00003388, 1.00000773, 1.00000773, 1.00000773,
1.00000773, 1.00000165, 1.00000165, 1.00000165, 1.00000165,
1.00000033, 1.00000033, 1.00000033, 1.00000033, 1.00000006,
1.00000006, 1.00000006, 1.00000006, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999735, 1.39999735,
1.39999735, 1.39999735, 1.39995364, 1.39995364, 1.39995364,
1.39995364, 1.39960516, 1.39960516, 1.39960516, 1.39960516,
1.39781856, 1.39781856, 1.39781856, 1.39781856, 1.39121895,
1.39121895, 1.39121895, 1.39121895, 1.37257512, 1.37257512,
1.37257512, 1.37257512, 1.33089036, 1.33089036, 1.33089036,
1.33089036, 1.25569524, 1.25569524, 1.25569524, 1.25569524,
1.14809255, 1.14809255, 1.14809255, 1.14809255, 1.06524107,
1.06524107, 1.06524107, 1.06524107, 1.02565101, 1.02565101,
1.02565101, 1.02565101, 1.00911151, 1.00911151, 1.00911151,
1.00911151, 1.00295014, 1.00295014, 1.00295014, 1.00295014,
1.00087744, 1.00087744, 1.00087744, 1.00087744, 1.0002413 ,
1.0002413 , 1.0002413 , 1.0002413 , 1.0000617 , 1.0000617 ,
1.0000617 , 1.0000617 , 1.00001474, 1.00001474, 1.00001474,
1.00001474, 1.0000033 , 1.0000033 , 1.0000033 , 1.0000033 ,
1.0000007 , 1.0000007 , 1.0000007 , 1.0000007 , 1.00000014,
1.00000014, 1.00000014, 1.00000014, 1.00000003, 1.00000003,
1.00000003, 1.00000003, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999837, 1.39999837,
1.39999837, 1.39999837, 1.39997038, 1.39997038, 1.39997038,
1.39997038, 1.39973805, 1.39973805, 1.39973805, 1.39973805,
1.39849618, 1.39849618, 1.39849618, 1.39849618, 1.3937043 ,
1.3937043 , 1.3937043 , 1.3937043 , 1.37953124, 1.37953124,
1.37953124, 1.37953124, 1.34625348, 1.34625348, 1.34625348,
1.34625348, 1.2829543 , 1.2829543 , 1.2829543 , 1.2829543 ,
1.18449482, 1.18449482, 1.18449482, 1.18449482, 1.08695305,
1.08695305, 1.08695305, 1.08695305, 1.0359817 , 1.0359817 ,
1.0359817 , 1.0359817 , 1.01340663, 1.01340663, 1.01340663,
1.01340663, 1.00454869, 1.00454869, 1.00454869, 1.00454869,
1.00141667, 1.00141667, 1.00141667, 1.00141667, 1.00040772,
1.00040772, 1.00040772, 1.00040772, 1.00010905, 1.00010905,
1.00010905, 1.00010905, 1.00002724, 1.00002724, 1.00002724,
1.00002724, 1.00000638, 1.00000638, 1.00000638, 1.00000638,
1.00000141, 1.00000141, 1.00000141, 1.00000141, 1.00000029,
1.00000029, 1.00000029, 1.00000029, 1.00000006, 1.00000006,
1.00000006, 1.00000006, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999899, 1.39999899,
1.39999899, 1.39999899, 1.3999811 , 1.3999811 , 1.3999811 ,
1.3999811 , 1.39982668, 1.39982668, 1.39982668, 1.39982668,
1.39896749, 1.39896749, 1.39896749, 1.39896749, 1.39551085,
1.39551085, 1.39551085, 1.39551085, 1.38482871, 1.38482871,
1.38482871, 1.38482871, 1.35855285, 1.35855285, 1.35855285,
1.35855285, 1.30600344, 1.30600344, 1.30600344, 1.30600344,
1.21961612, 1.21961612, 1.21961612, 1.21961612, 1.11405494,
1.11405494, 1.11405494, 1.11405494, 1.04937502, 1.04937502,
1.04937502, 1.04937502, 1.01928228, 1.01928228, 1.01928228,
1.01928228, 1.0068482 , 1.0068482 , 1.0068482 , 1.0068482 ,
1.00223057, 1.00223057, 1.00223057, 1.00223057, 1.00067095,
1.00067095, 1.00067095, 1.00067095, 1.00018746, 1.00018746,
1.00018746, 1.00018746, 1.00004889, 1.00004889, 1.00004889,
1.00004889, 1.00001196, 1.00001196, 1.00001196, 1.00001196,
1.00000275, 1.00000275, 1.00000275, 1.00000275, 1.0000006 ,
1.0000006 , 1.0000006 , 1.0000006 , 1.00000012, 1.00000012,
1.00000012, 1.00000012, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999938, 1.39999938,
1.39999938, 1.39999938, 1.39998795, 1.39998795, 1.39998795,
1.39998795, 1.3998856 , 1.3998856 , 1.3998856 , 1.3998856 ,
1.39929375, 1.39929375, 1.39929375, 1.39929375, 1.39681528,
1.39681528, 1.39681528, 1.39681528, 1.38882772, 1.38882772,
1.38882772, 1.38882772, 1.36828854, 1.36828854, 1.36828854,
1.36828854, 1.32521236, 1.32521236, 1.32521236, 1.32521236,
1.25062517, 1.25062517, 1.25062517, 1.25062517, 1.14642363,
1.14642363, 1.14642363, 1.14642363, 1.06647357, 1.06647357,
1.06647357, 1.06647357, 1.0271506 , 1.0271506 , 1.0271506 ,
1.0271506 , 1.01008121, 1.01008121, 1.01008121, 1.01008121,
1.00343023, 1.00343023, 1.00343023, 1.00343023, 1.00107711,
1.00107711, 1.00107711, 1.00107711, 1.00031399, 1.00031399,
1.00031399, 1.00031399, 1.00008541, 1.00008541, 1.00008541,
1.00008541, 1.00002177, 1.00002177, 1.00002177, 1.00002177,
1.00000522, 1.00000522, 1.00000522, 1.00000522, 1.00000118,
1.00000118, 1.00000118, 1.00000118, 1.00000025, 1.00000025,
1.00000025, 1.00000025, 1.00000005, 1.00000005, 1.00000005,
1.00000005, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999962, 1.39999962,
1.39999962, 1.39999962, 1.39999233, 1.39999233, 1.39999233,
1.39999233, 1.39992467, 1.39992467, 1.39992467, 1.39992467,
1.39951861, 1.39951861, 1.39951861, 1.39951861, 1.39775141,
1.39775141, 1.39775141, 1.39775141, 1.39182223, 1.39182223,
1.39182223, 1.39182223, 1.37591549, 1.37591549, 1.37591549,
1.37591549, 1.34101176, 1.34101176, 1.34101176, 1.34101176,
1.27753855, 1.27753855, 1.27753855, 1.27753855, 1.18141045,
1.18141045, 1.18141045, 1.18141045, 1.08756174, 1.08756174,
1.08756174, 1.08756174, 1.03746461, 1.03746461, 1.03746461,
1.03746461, 1.0145302 , 1.0145302 , 1.0145302 , 1.0145302 ,
1.00515922, 1.00515922, 1.00515922, 1.00515922, 1.00168932,
1.00168932, 1.00168932, 1.00168932, 1.00051321, 1.00051321,
1.00051321, 1.00051321, 1.00014541, 1.00014541, 1.00014541,
1.00014541, 1.0000386 , 1.0000386 , 1.0000386 , 1.0000386 ,
1.00000964, 1.00000964, 1.00000964, 1.00000964, 1.00000227,
1.00000227, 1.00000227, 1.00000227, 1.00000051, 1.00000051,
1.00000051, 1.00000051, 1.00000011, 1.00000011, 1.00000011,
1.00000011, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999976, 1.39999976,
1.39999976, 1.39999976, 1.39999512, 1.39999512, 1.39999512,
1.39999512, 1.3999505 , 1.3999505 , 1.3999505 , 1.3999505 ,
1.39967295, 1.39967295, 1.39967295, 1.39967295, 1.39841943,
1.39841943, 1.39841943, 1.39841943, 1.39404791, 1.39404791,
1.39404791, 1.39404791, 1.38183389, 1.38183389, 1.38183389,
1.38183389, 1.35385188, 1.35385188, 1.35385188, 1.35385188,
1.30054548, 1.30054548, 1.30054548, 1.30054548, 1.21554401,
1.21554401, 1.21554401, 1.21554401, 1.113588 , 1.113588 ,
1.113588 , 1.113588 , 1.05068574, 1.05068574, 1.05068574,
1.05068574, 1.02052392, 1.02052392, 1.02052392, 1.02052392,
1.00759846, 1.00759846, 1.00759846, 1.00759846, 1.00259191,
1.00259191, 1.00259191, 1.00259191, 1.00081978, 1.00081978,
1.00081978, 1.00081978, 1.0002417 , 1.0002417 , 1.0002417 ,
1.0002417 , 1.00006673, 1.00006673, 1.00006673, 1.00006673,
1.00001732, 1.00001732, 1.00001732, 1.00001732, 1.00000424,
1.00000424, 1.00000424, 1.00000424, 1.00000098, 1.00000098,
1.00000098, 1.00000098, 1.00000022, 1.00000022, 1.00000022,
1.00000022, 1.00000005, 1.00000005, 1.00000005, 1.00000005,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999986, 1.39999986,
1.39999986, 1.39999986, 1.3999969 , 1.3999969 , 1.3999969 ,
1.3999969 , 1.39996754, 1.39996754, 1.39996754, 1.39996754,
1.3997785 , 1.3997785 , 1.3997785 , 1.3997785 , 1.39889362,
1.39889362, 1.39889362, 1.39889362, 1.39569079, 1.39569079,
1.39569079, 1.39569079, 1.38638637, 1.38638637, 1.38638637,
1.38638637, 1.36417293, 1.36417293, 1.36417293, 1.36417293,
1.31994385, 1.31994385, 1.31994385, 1.31994385, 1.24592869,
1.24592869, 1.24592869, 1.24592869, 1.14469896, 1.14469896,
1.14469896, 1.14469896, 1.06740585, 1.06740585, 1.06740585,
1.06740585, 1.02844412, 1.02844412, 1.02844412, 1.02844412,
1.01096997, 1.01096997, 1.01096997, 1.01096997, 1.00389488,
1.00389488, 1.00389488, 1.00389488, 1.00128131, 1.00128131,
1.00128131, 1.00128131, 1.00039271, 1.00039271, 1.00039271,
1.00039271, 1.00011266, 1.00011266, 1.00011266, 1.00011266,
1.00003038, 1.00003038, 1.00003038, 1.00003038, 1.00000773,
1.00000773, 1.00000773, 1.00000773, 1.00000186, 1.00000186,
1.00000186, 1.00000186, 1.00000042, 1.00000042, 1.00000042,
1.00000042, 1.00000009, 1.00000009, 1.00000009, 1.00000009,
1.00000002, 1.00000002, 1.00000002, 1.00000002, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999991, 1.39999991,
1.39999991, 1.39999991, 1.39999803, 1.39999803, 1.39999803,
1.39999803, 1.39997875, 1.39997875, 1.39997875, 1.39997875,
1.39985041, 1.39985041, 1.39985041, 1.39985041, 1.39922858,
1.39922858, 1.39922858, 1.39922858, 1.39689572, 1.39689572,
1.39689572, 1.39689572, 1.38985989, 1.38985989, 1.38985989,
1.38985989, 1.37238562, 1.37238562, 1.37238562, 1.37238562,
1.33609516, 1.33609516, 1.33609516, 1.33609516, 1.27252457,
1.27252457, 1.27252457, 1.27252457, 1.17843926, 1.17843926,
1.17843926, 1.17843926, 1.08791064, 1.08791064, 1.08791064,
1.08791064, 1.0387115 , 1.0387115 , 1.0387115 , 1.0387115 ,
1.01554087, 1.01554087, 1.01554087, 1.01554087, 1.00573844,
1.00573844, 1.00573844, 1.00573844, 1.00196188, 1.00196188,
1.00196188, 1.00196188, 1.00062452, 1.00062452, 1.00062452,
1.00062452, 1.00018599, 1.00018599, 1.00018599, 1.00018599,
1.00005204, 1.00005204, 1.00005204, 1.00005204, 1.00001373,
1.00001373, 1.00001373, 1.00001373, 1.00000343, 1.00000343,
1.00000343, 1.00000343, 1.00000081, 1.00000081, 1.00000081,
1.00000081, 1.00000018, 1.00000018, 1.00000018, 1.00000018,
1.00000004, 1.00000004, 1.00000004, 1.00000004, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999995, 1.39999995,
1.39999995, 1.39999995, 1.39999875, 1.39999875, 1.39999875,
1.39999875, 1.39998612, 1.39998612, 1.39998612, 1.39998612,
1.39989925, 1.39989925, 1.39989925, 1.39989925, 1.39946412,
1.39946412, 1.39946412, 1.39946412, 1.39777421, 1.39777421,
1.39777421, 1.39777421, 1.39249029, 1.39249029, 1.39249029,
1.39249029, 1.37885985, 1.37885985, 1.37885985, 1.37885985,
1.34938855, 1.34938855, 1.34938855, 1.34938855, 1.29547175,
1.29547175, 1.29547175, 1.29547175, 1.21169969, 1.21169969,
1.21169969, 1.21169969, 1.11296387, 1.11296387, 1.11296387,
1.11296387, 1.05174766, 1.05174766, 1.05174766, 1.05174766,
1.02162002, 1.02162002, 1.02162002, 1.02162002, 1.00829724,
1.00829724, 1.00829724, 1.00829724, 1.00294575, 1.00294575,
1.00294575, 1.00294575, 1.00097314, 1.00097314, 1.00097314,
1.00097314, 1.00030061, 1.00030061, 1.00030061, 1.00030061,
1.00008721, 1.00008721, 1.00008721, 1.00008721, 1.00002385,
1.00002385, 1.00002385, 1.00002385, 1.00000617, 1.00000617,
1.00000617, 1.00000617, 1.00000151, 1.00000151, 1.00000151,
1.00000151, 1.00000035, 1.00000035, 1.00000035, 1.00000035,
1.00000008, 1.00000008, 1.00000008, 1.00000008, 1.00000002,
1.00000002, 1.00000002, 1.00000002, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999997, 1.39999997,
1.39999997, 1.39999997, 1.39999921, 1.39999921, 1.39999921,
1.39999921, 1.39999095, 1.39999095, 1.39999095, 1.39999095,
1.39993232, 1.39993232, 1.39993232, 1.39993232, 1.39962903,
1.39962903, 1.39962903, 1.39962903, 1.39841114, 1.39841114,
1.39841114, 1.39841114, 1.39446832, 1.39446832, 1.39446832,
1.39446832, 1.38391959, 1.38391959, 1.38391959, 1.38391959,
1.36021389, 1.36021389, 1.36021389, 1.36021389, 1.31501246,
1.31501246, 1.31501246, 1.31501246, 1.24153265, 1.24153265,
1.24153265, 1.24153265, 1.14294179, 1.14294179, 1.14294179,
1.14294179, 1.06809956, 1.06809956, 1.06809956, 1.06809956,
1.0295627 , 1.0295627 , 1.0295627 , 1.0295627 , 1.01178347,
1.01178347, 1.01178347, 1.01178347, 1.0043414 , 1.0043414 ,
1.0043414 , 1.0043414 , 1.00148729, 1.00148729, 1.00148729,
1.00148729, 1.00047618, 1.00047618, 1.00047618, 1.00047618,
1.00014311, 1.00014311, 1.00014311, 1.00014311, 1.00004052,
1.00004052, 1.00004052, 1.00004052, 1.00001085, 1.00001085,
1.00001085, 1.00001085, 1.00000275, 1.00000275, 1.00000275,
1.00000275, 1.00000066, 1.00000066, 1.00000066, 1.00000066,
1.00000015, 1.00000015, 1.00000015, 1.00000015, 1.00000003,
1.00000003, 1.00000003, 1.00000003, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999998, 1.39999998,
1.39999998, 1.39999998, 1.3999995 , 1.3999995 , 1.3999995 ,
1.3999995 , 1.3999941 , 1.3999941 , 1.3999941 , 1.3999941 ,
1.39995465, 1.39995465, 1.39995465, 1.39995465, 1.39974404,
1.39974404, 1.39974404, 1.39974404, 1.39887054, 1.39887054,
1.39887054, 1.39887054, 1.39594607, 1.39594607, 1.39594607,
1.39594607, 1.38784215, 1.38784215, 1.38784215, 1.38784215,
1.36894303, 1.36894303, 1.36894303, 1.36894303, 1.33145294,
1.33145294, 1.33145294, 1.33145294, 1.26783669, 1.26783669,
1.26783669, 1.26783669, 1.17556797, 1.17556797, 1.17556797,
1.17556797, 1.08805645, 1.08805645, 1.08805645, 1.08805645,
1.03976177, 1.03976177, 1.03976177, 1.03976177, 1.01645032,
1.01645032, 1.01645032, 1.01645032, 1.00628547, 1.00628547,
1.00628547, 1.00628547, 1.00223151, 1.00223151, 1.00223151,
1.00223151, 1.00073997, 1.00073997, 1.00073997, 1.00073997,
1.00023021, 1.00023021, 1.00023021, 1.00023021, 1.00006746,
1.00006746, 1.00006746, 1.00006746, 1.00001868, 1.00001868,
1.00001868, 1.00001868, 1.0000049 , 1.0000049 , 1.0000049 ,
1.0000049 , 1.00000122, 1.00000122, 1.00000122, 1.00000122,
1.00000029, 1.00000029, 1.00000029, 1.00000029, 1.00000007,
1.00000007, 1.00000007, 1.00000007, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999999, 1.39999999,
1.39999999, 1.39999999, 1.39999968, 1.39999968, 1.39999968,
1.39999968, 1.39999617, 1.39999617, 1.39999617, 1.39999617,
1.39996968, 1.39996968, 1.39996968, 1.39996968, 1.39982394,
1.39982394, 1.39982394, 1.39982394, 1.39920028, 1.39920028,
1.39920028, 1.39920028, 1.39704335, 1.39704335, 1.39704335,
1.39704335, 1.39086036, 1.39086036, 1.39086036, 1.39086036,
1.37591782, 1.37591782, 1.37591782, 1.37591782, 1.34513208,
1.34513208, 1.34513208, 1.34513208, 1.29071415, 1.29071415,
1.29071415, 1.29071415, 1.20804266, 1.20804266, 1.20804266,
1.20804266, 1.11222351, 1.11222351, 1.11222351, 1.11222351,
1.05260571, 1.05260571, 1.05260571, 1.05260571, 1.022589 ,
1.022589 , 1.022589 , 1.022589 , 1.0089465 , 1.0089465 ,
1.0089465 , 1.0089465 , 1.00328962, 1.00328962, 1.00328962,
1.00328962, 1.00112906, 1.00112906, 1.00112906, 1.00112906,
1.00036338, 1.00036338, 1.00036338, 1.00036338, 1.0001101 ,
1.0001101 , 1.0001101 , 1.0001101 , 1.00003152, 1.00003152,
1.00003152, 1.00003152, 1.00000855, 1.00000855, 1.00000855,
1.00000855, 1.0000022 , 1.0000022 , 1.0000022 , 1.0000022 ,
1.00000054, 1.00000054, 1.00000054, 1.00000054, 1.00000013,
1.00000013, 1.00000013, 1.00000013, 1.00000003, 1.00000003,
1.00000003, 1.00000003, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999999, 1.39999999,
1.39999999, 1.39999999, 1.3999998 , 1.3999998 , 1.3999998 ,
1.3999998 , 1.39999751, 1.39999751, 1.39999751, 1.39999751,
1.39997977, 1.39997977, 1.39997977, 1.39997977, 1.39987925,
1.39987925, 1.39987925, 1.39987925, 1.39943586, 1.39943586,
1.39943586, 1.39943586, 1.39785346, 1.39785346, 1.39785346,
1.39785346, 1.39316645, 1.39316645, 1.39316645, 1.39316645,
1.38144361, 1.38144361, 1.38144361, 1.38144361, 1.35639706,
1.35639706, 1.35639706, 1.35639706, 1.31036316, 1.31036316,
1.31036316, 1.31036316, 1.23738337, 1.23738337, 1.23738337,
1.23738337, 1.14116812, 1.14116812, 1.14116812, 1.14116812,
1.06860077, 1.06860077, 1.06860077, 1.06860077, 1.03053157,
1.03053157, 1.03053157, 1.03053157, 1.01252751, 1.01252751,
1.01252751, 1.01252751, 1.00476825, 1.00476825, 1.00476825,
1.00476825, 1.00169289, 1.00169289, 1.00169289, 1.00169289,
1.00056328, 1.00056328, 1.00056328, 1.00056328, 1.00017637,
1.00017637, 1.00017637, 1.00017637, 1.00005215, 1.00005215,
1.00005215, 1.00005215, 1.00001461, 1.00001461, 1.00001461,
1.00001461, 1.00000389, 1.00000389, 1.00000389, 1.00000389,
1.00000099, 1.00000099, 1.00000099, 1.00000099, 1.00000024,
1.00000024, 1.00000024, 1.00000024, 1.00000006, 1.00000006,
1.00000006, 1.00000006, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.39999987, 1.39999987, 1.39999987,
1.39999987, 1.39999839, 1.39999839, 1.39999839, 1.39999839,
1.39998653, 1.39998653, 1.39998653, 1.39998653, 1.39991742,
1.39991742, 1.39991742, 1.39991742, 1.39960346, 1.39960346,
1.39960346, 1.39960346, 1.39844834, 1.39844834, 1.39844834,
1.39844834, 1.39491688, 1.39491688, 1.39491688, 1.39491688,
1.38578674, 1.38578674, 1.38578674, 1.38578674, 1.36558558,
1.36558558, 1.36558558, 1.36558558, 1.32704504, 1.32704504,
1.32704504, 1.32704504, 1.2634186 , 1.2634186 , 1.2634186 ,
1.2634186 , 1.17278602, 1.17278602, 1.17278602, 1.17278602,
1.08804113, 1.08804113, 1.08804113, 1.08804113, 1.04064649,
1.04064649, 1.04064649, 1.04064649, 1.01726903, 1.01726903,
1.01726903, 1.01726903, 1.0068004 , 1.0068004 , 1.0068004 ,
1.0068004 , 1.00249615, 1.00249615, 1.00249615, 1.00249615,
1.00085817, 1.00085817, 1.00085817, 1.00085817, 1.0002775 ,
1.0002775 , 1.0002775 , 1.0002775 , 1.00008471, 1.00008471,
1.00008471, 1.00008471, 1.00002449, 1.00002449, 1.00002449,
1.00002449, 1.00000672, 1.00000672, 1.00000672, 1.00000672,
1.00000176, 1.00000176, 1.00000176, 1.00000176, 1.00000044,
1.00000044, 1.00000044, 1.00000044, 1.0000001 , 1.0000001 ,
1.0000001 , 1.0000001 , 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.39999992, 1.39999992, 1.39999992,
1.39999992, 1.39999895, 1.39999895, 1.39999895, 1.39999895,
1.39999105, 1.39999105, 1.39999105, 1.39999105, 1.39994367,
1.39994367, 1.39994367, 1.39994367, 1.39972221, 1.39972221,
1.39972221, 1.39972221, 1.39888296, 1.39888296, 1.39888296,
1.39888296, 1.39623736, 1.39623736, 1.39623736, 1.39623736,
1.38917502, 1.38917502, 1.38917502, 1.38917502, 1.37301383,
1.37301383, 1.37301383, 1.37301383, 1.34105677, 1.34105677,
1.34105677, 1.34105677, 1.28622103, 1.28622103, 1.28622103,
1.28622103, 1.20454253, 1.20454253, 1.20454253, 1.20454253,
1.11139686, 1.11139686, 1.11139686, 1.11139686, 1.05329462,
1.05329462, 1.05329462, 1.05329462, 1.02344644, 1.02344644,
1.02344644, 1.02344644, 1.00954873, 1.00954873, 1.00954873,
1.00954873, 1.00362188, 1.00362188, 1.00362188, 1.00362188,
1.00128594, 1.00128594, 1.00128594, 1.00128594, 1.00042921,
1.00042921, 1.00042921, 1.00042921, 1.00013517, 1.00013517,
1.00013517, 1.00013517, 1.0000403 , 1.0000403 , 1.0000403 ,
1.0000403 , 1.00001141, 1.00001141, 1.00001141, 1.00001141,
1.00000307, 1.00000307, 1.00000307, 1.00000307, 1.00000079,
1.00000079, 1.00000079, 1.00000079, 1.00000019, 1.00000019,
1.00000019, 1.00000019, 1.00000005, 1.00000005, 1.00000005,
1.00000005, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.39999995, 1.39999995, 1.39999995,
1.39999995, 1.39999932, 1.39999932, 1.39999932, 1.39999932,
1.39999406, 1.39999406, 1.39999406, 1.39999406, 1.39996168,
1.39996168, 1.39996168, 1.39996168, 1.39980601, 1.39980601,
1.39980601, 1.39980601, 1.39919899, 1.39919899, 1.39919899,
1.39919899, 1.3972277 , 1.3972277 , 1.3972277 , 1.3972277 ,
1.39179997, 1.39179997, 1.39179997, 1.39179997, 1.37896914,
1.37896914, 1.37896914, 1.37896914, 1.35270901, 1.35270901,
1.35270901, 1.35270901, 1.30595321, 1.30595321, 1.30595321,
1.30595321, 1.23344038, 1.23344038, 1.23344038, 1.23344038,
1.13938926, 1.13938926, 1.13938926, 1.13938926, 1.06894468,
1.06894468, 1.06894468, 1.06894468, 1.03137135, 1.03137135,
1.03137135, 1.03137135, 1.01320771, 1.01320771, 1.01320771,
1.01320771, 1.0051747 , 1.0051747 , 1.0051747 , 1.0051747 ,
1.00189646, 1.00189646, 1.00189646, 1.00189646, 1.00065301,
1.00065301, 1.00065301, 1.00065301, 1.00021207, 1.00021207,
1.00021207, 1.00021207, 1.00006518, 1.00006518, 1.00006518,
1.00006518, 1.00001901, 1.00001901, 1.00001901, 1.00001901,
1.00000528, 1.00000528, 1.00000528, 1.00000528, 1.0000014 ,
1.0000014 , 1.0000014 , 1.0000014 , 1.00000035, 1.00000035,
1.00000035, 1.00000035, 1.00000009, 1.00000009, 1.00000009,
1.00000009, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}]}
minmod_hll
{'none_hll': [{'rho': array([1.39995168, 1.39995168, 1.39995168, 1.39995168, 1.39994836,
1.39994836, 1.39994836, 1.39994836, 1.3999409 , 1.3999409 ,
1.3999409 , 1.3999409 , 1.39992812, 1.39992812, 1.39992812,
1.39992812, 1.39990848, 1.39990848, 1.39990848, 1.39990848,
1.39987989, 1.39987989, 1.39987989, 1.39987989, 1.39983964,
1.39983964, 1.39983964, 1.39983964, 1.39978421, 1.39978421,
1.39978421, 1.39978421, 1.39970908, 1.39970908, 1.39970908,
1.39970908, 1.39960853, 1.39960853, 1.39960853, 1.39960853,
1.3994754 , 1.3994754 , 1.3994754 , 1.3994754 , 1.39930081,
1.39930081, 1.39930081, 1.39930081, 1.39907388, 1.39907388,
1.39907388, 1.39907388, 1.39878143, 1.39878143, 1.39878143,
1.39878143, 1.39840763, 1.39840763, 1.39840763, 1.39840763,
1.39793372, 1.39793372, 1.39793372, 1.39793372, 1.39733771,
1.39733771, 1.39733771, 1.39733771, 1.39659414, 1.39659414,
1.39659414, 1.39659414, 1.39567386, 1.39567386, 1.39567386,
1.39567386, 1.39454395, 1.39454395, 1.39454395, 1.39454395,
1.39316777, 1.39316777, 1.39316777, 1.39316777, 1.39150506,
1.39150506, 1.39150506, 1.39150506, 1.38951228, 1.38951228,
1.38951228, 1.38951228, 1.38714319, 1.38714319, 1.38714319,
1.38714319, 1.3843495 , 1.3843495 , 1.3843495 , 1.3843495 ,
1.38108186, 1.38108186, 1.38108186, 1.38108186, 1.37729101,
1.37729101, 1.37729101, 1.37729101, 1.37292914, 1.37292914,
1.37292914, 1.37292914, 1.36795138, 1.36795138, 1.36795138,
1.36795138, 1.36231746, 1.36231746, 1.36231746, 1.36231746,
1.35599341, 1.35599341, 1.35599341, 1.35599341, 1.34895317,
1.34895317, 1.34895317, 1.34895317, 1.34118023, 1.34118023,
1.34118023, 1.34118023, 1.33266896, 1.33266896, 1.33266896,
1.33266896, 1.32342575, 1.32342575, 1.32342575, 1.32342575,
1.31346974, 1.31346974, 1.31346974, 1.31346974, 1.30283319,
1.30283319, 1.30283319, 1.30283319, 1.2915614 , 1.2915614 ,
1.2915614 , 1.2915614 , 1.27971213, 1.27971213, 1.27971213,
1.27971213, 1.26735463, 1.26735463, 1.26735463, 1.26735463,
1.25456823, 1.25456823, 1.25456823, 1.25456823, 1.24144055,
1.24144055, 1.24144055, 1.24144055, 1.22806553, 1.22806553,
1.22806553, 1.22806553, 1.21454119, 1.21454119, 1.21454119,
1.21454119, 1.20096739, 1.20096739, 1.20096739, 1.20096739,
1.18744361, 1.18744361, 1.18744361, 1.18744361, 1.17406679,
1.17406679, 1.17406679, 1.17406679, 1.16092952, 1.16092952,
1.16092952, 1.16092952, 1.14811836, 1.14811836, 1.14811836,
1.14811836, 1.13571261, 1.13571261, 1.13571261, 1.13571261,
1.12378348, 1.12378348, 1.12378348, 1.12378348, 1.11239358,
1.11239358, 1.11239358, 1.11239358, 1.101597 , 1.101597 ,
1.101597 , 1.101597 , 1.09143978, 1.09143978, 1.09143978,
1.09143978, 1.08196095, 1.08196095, 1.08196095, 1.08196095,
1.07319409, 1.07319409, 1.07319409, 1.07319409, 1.06516949,
1.06516949, 1.06516949, 1.06516949, 1.05791705, 1.05791705,
1.05791705, 1.05791705, 1.05146988, 1.05146988, 1.05146988,
1.05146988, 1.04586889, 1.04586889, 1.04586889, 1.04586889,
1.04116846, 1.04116846, 1.04116846, 1.04116846, 1.03744347,
1.03744347, 1.03744347, 1.03744347, 1.03479804, 1.03479804,
1.03479804, 1.03479804, 1.03337638, 1.03337638, 1.03337638]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_rusanov': [{'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.39999999, 1.39999999, 1.39999999, 1.39999999,
1.39999999, 1.39999999, 1.39999999, 1.39999999, 1.39999998,
1.39999998, 1.39999998, 1.39999998, 1.39999996, 1.39999996,
1.39999996, 1.39999996, 1.39999992, 1.39999992, 1.39999992,
1.39999992, 1.39999984, 1.39999984, 1.39999984, 1.39999984,
1.39999968, 1.39999968, 1.39999968, 1.39999968, 1.39999939,
1.39999939, 1.39999939, 1.39999939, 1.39999885, 1.39999885,
1.39999885, 1.39999885, 1.39999786, 1.39999786, 1.39999786,
1.39999786, 1.39999607, 1.39999607, 1.39999607, 1.39999607,
1.39999285, 1.39999285, 1.39999285, 1.39999285, 1.39998716,
1.39998716, 1.39998716, 1.39998716, 1.39997722, 1.39997722,
1.39997722, 1.39997722, 1.39996011, 1.39996011, 1.39996011,
1.39996011, 1.39993104, 1.39993104, 1.39993104, 1.39993104,
1.39988233, 1.39988233, 1.39988233, 1.39988233, 1.39980185,
1.39980185, 1.39980185, 1.39980185, 1.39967076, 1.39967076,
1.39967076, 1.39967076, 1.3994603 , 1.3994603 , 1.3994603 ,
1.3994603 , 1.39912737, 1.39912737, 1.39912737, 1.39912737,
1.39860857, 1.39860857, 1.39860857, 1.39860857, 1.39781248,
1.39781248, 1.39781248, 1.39781248, 1.39660996, 1.39660996,
1.39660996, 1.39660996, 1.39482258, 1.39482258, 1.39482258,
1.39482258, 1.39220953, 1.39220953, 1.39220953, 1.39220953,
1.38845397, 1.38845397, 1.38845397, 1.38845397, 1.3831505 ,
1.3831505 , 1.3831505 , 1.3831505 , 1.37579626, 1.37579626,
1.37579626, 1.37579626, 1.36578903, 1.36578903, 1.36578903,
1.36578903, 1.35243652, 1.35243652, 1.35243652, 1.35243652,
1.33498164, 1.33498164, 1.33498164, 1.33498164, 1.31265121,
1.31265121, 1.31265121, 1.31265121, 1.2847384 , 1.2847384 ,
1.2847384 , 1.2847384 , 1.2507064 , 1.2507064 , 1.2507064 ,
1.2507064 , 1.21017042, 1.21017042, 1.21017042, 1.21017042,
1.16826394, 1.16826394, 1.16826394, 1.16826394, 1.13190268,
1.13190268, 1.13190268, 1.13190268, 1.10181888, 1.10181888,
1.10181888, 1.10181888, 1.07740915, 1.07740915, 1.07740915,
1.07740915, 1.05798425, 1.05798425, 1.05798425, 1.05798425,
1.04280816, 1.04280816, 1.04280816, 1.04280816, 1.03115759,
1.03115759, 1.03115759, 1.03115759, 1.02236355, 1.02236355,
1.02236355, 1.02236355, 1.01583385, 1.01583385, 1.01583385,
1.01583385, 1.01106189, 1.01106189, 1.01106189, 1.01106189,
1.00762663, 1.00762663, 1.00762663, 1.00762663, 1.00518713,
1.00518713, 1.00518713, 1.00518713, 1.00347488, 1.00347488,
1.00347488, 1.00347488, 1.00228528, 1.00228528, 1.00228528,
1.00228528, 1.00146924, 1.00146924, 1.00146924, 1.00146924,
1.00092404, 1.00092404, 1.00092404, 1.00092404, 1.00058227,
1.00058227, 1.00058227, 1.00058227, 1.00039803, 1.00039803,
1.00039803, 1.00039803, 1.00033084, 1.00033084, 1.00033084]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hll': [{'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.39999999,
1.39999999, 1.39999999, 1.39999999, 1.39999998, 1.39999998,
1.39999998, 1.39999998, 1.39999996, 1.39999996, 1.39999996,
1.39999996, 1.39999992, 1.39999992, 1.39999992, 1.39999992,
1.39999984, 1.39999984, 1.39999984, 1.39999984, 1.39999968,
1.39999968, 1.39999968, 1.39999968, 1.39999937, 1.39999937,
1.39999937, 1.39999937, 1.39999878, 1.39999878, 1.39999878,
1.39999878, 1.39999768, 1.39999768, 1.39999768, 1.39999768,
1.39999564, 1.39999564, 1.39999564, 1.39999564, 1.39999192,
1.39999192, 1.39999192, 1.39999192, 1.39998523, 1.39998523,
1.39998523, 1.39998523, 1.39997335, 1.39997335, 1.39997335,
1.39997335, 1.39995258, 1.39995258, 1.39995258, 1.39995258,
1.39991678, 1.39991678, 1.39991678, 1.39991678, 1.39985601,
1.39985601, 1.39985601, 1.39985601, 1.39975438, 1.39975438,
1.39975438, 1.39975438, 1.39958702, 1.39958702, 1.39958702,
1.39958702, 1.39931575, 1.39931575, 1.39931575, 1.39931575,
1.39888301, 1.39888301, 1.39888301, 1.39888301, 1.39820389,
1.39820389, 1.39820389, 1.39820389, 1.39715582, 1.39715582,
1.39715582, 1.39715582, 1.39556586, 1.39556586, 1.39556586,
1.39556586, 1.39319593, 1.39319593, 1.39319593, 1.39319593,
1.3897269 , 1.3897269 , 1.3897269 , 1.3897269 , 1.38474325,
1.38474325, 1.38474325, 1.38474325, 1.37772106, 1.37772106,
1.37772106, 1.37772106, 1.36802356, 1.36802356, 1.36802356,
1.36802356, 1.35490885, 1.35490885, 1.35490885, 1.35490885,
1.33755595, 1.33755595, 1.33755595, 1.33755595, 1.31511724,
1.31511724, 1.31511724, 1.31511724, 1.28681068, 1.28681068,
1.28681068, 1.28681068, 1.25204433, 1.25204433, 1.25204433,
1.25204433, 1.21040786, 1.21040786, 1.21040786, 1.21040786,
1.16730937, 1.16730937, 1.16730937, 1.16730937, 1.13010572,
1.13010572, 1.13010572, 1.13010572, 1.09954214, 1.09954214,
1.09954214, 1.09954214, 1.07494493, 1.07494493, 1.07494493,
1.07494493, 1.05554943, 1.05554943, 1.05554943, 1.05554943,
1.04054789, 1.04054789, 1.04054789, 1.04054789, 1.02915605,
1.02915605, 1.02915605, 1.02915605, 1.02065733, 1.02065733,
1.02065733, 1.02065733, 1.01442545, 1.01442545, 1.01442545,
1.01442545, 1.00993187, 1.00993187, 1.00993187, 1.00993187,
1.00674352, 1.00674352, 1.00674352, 1.00674352, 1.00451476,
1.00451476, 1.00451476, 1.00451476, 1.0029769 , 1.0029769 ,
1.0029769 , 1.0029769 , 1.00192734, 1.00192734, 1.00192734,
1.00192734, 1.00121949, 1.00121949, 1.00121949, 1.00121949,
1.00075296, 1.00075296, 1.00075296, 1.00075296, 1.00046281,
1.00046281, 1.00046281, 1.00046281, 1.0003066 , 1.0003066 ,
1.0003066 , 1.0003066 , 1.00024944, 1.00024944, 1.00024944]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hllc': [{'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.11831494, 1.11831494,
1.11831494, 1.11831494, 1.00923298, 1.00923298, 1.00923298,
1.00923298, 1.00043756, 1.00043756, 1.00043756, 1.00043756,
1.00001417, 1.00001417, 1.00001417, 1.00001417, 1.00000033,
1.00000033, 1.00000033, 1.00000033, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.21607423, 1.21607423,
1.21607423, 1.21607423, 1.0358938 , 1.0358938 , 1.0358938 ,
1.0358938 , 1.0037377 , 1.0037377 , 1.0037377 , 1.0037377 ,
1.00027776, 1.00027776, 1.00027776, 1.00027776, 1.00001576,
1.00001576, 1.00001576, 1.00001576, 1.00000071, 1.00000071,
1.00000071, 1.00000071, 1.00000003, 1.00000003, 1.00000003,
1.00000003, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.28669245, 1.28669245,
1.28669245, 1.28669245, 1.08302128, 1.08302128, 1.08302128,
1.08302128, 1.01268954, 1.01268954, 1.01268954, 1.01268954,
1.00145562, 1.00145562, 1.00145562, 1.00145562, 1.00013095,
1.00013095, 1.00013095, 1.00013095, 1.00000955, 1.00000955,
1.00000955, 1.00000955, 1.00000058, 1.00000058, 1.00000058,
1.00000058, 1.00000003, 1.00000003, 1.00000003, 1.00000003,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.33021365, 1.33021365,
1.33021365, 1.33021365, 1.14608853, 1.14608853, 1.14608853,
1.14608853, 1.03038575, 1.03038575, 1.03038575, 1.03038575,
1.00467925, 1.00467925, 1.00467925, 1.00467925, 1.00057051,
1.00057051, 1.00057051, 1.00057051, 1.00005712, 1.00005712,
1.00005712, 1.00005712, 1.00000481, 1.00000481, 1.00000481,
1.00000481, 1.00000035, 1.00000035, 1.00000035, 1.00000035,
1.00000002, 1.00000002, 1.00000002, 1.00000002, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.35701844, 1.35701844,
1.35701844, 1.35701844, 1.21170242, 1.21170242, 1.21170242,
1.21170242, 1.05787438, 1.05787438, 1.05787438, 1.05787438,
1.01139116, 1.01139116, 1.01139116, 1.01139116, 1.00176274,
1.00176274, 1.00176274, 1.00176274, 1.00022429, 1.00022429,
1.00022429, 1.00022429, 1.00002413, 1.00002413, 1.00002413,
1.00002413, 1.00000224, 1.00000224, 1.00000224, 1.00000224,
1.00000018, 1.00000018, 1.00000018, 1.00000018, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.37352757, 1.37352757,
1.37352757, 1.37352757, 1.26668567, 1.26668567, 1.26668567,
1.26668567, 1.09940265, 1.09940265, 1.09940265, 1.09940265,
1.02324968, 1.02324968, 1.02324968, 1.02324968, 1.0043598 ,
1.0043598 , 1.0043598 , 1.0043598 , 1.00067499, 1.00067499,
1.00067499, 1.00067499, 1.00008852, 1.00008852, 1.00008852,
1.00008852, 1.00001003, 1.00001003, 1.00001003, 1.00001003,
1.000001 , 1.000001 , 1.000001 , 1.000001 , 1.00000009,
1.00000009, 1.00000009, 1.00000009, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.38369557, 1.38369557,
1.38369557, 1.38369557, 1.30721079, 1.30721079, 1.30721079,
1.30721079, 1.1516511 , 1.1516511 , 1.1516511 , 1.1516511 ,
1.04216789, 1.04216789, 1.04216789, 1.04216789, 1.00928188,
1.00928188, 1.00928188, 1.00928188, 1.00169128, 1.00169128,
1.00169128, 1.00169128, 1.00026179, 1.00026179, 1.00026179,
1.00026179, 1.00003509, 1.00003509, 1.00003509, 1.00003509,
1.00000414, 1.00000414, 1.00000414, 1.00000414, 1.00000043,
1.00000043, 1.00000043, 1.00000043, 1.00000004, 1.00000004,
1.00000004, 1.00000004, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.38995807, 1.38995807,
1.38995807, 1.38995807, 1.3362727 , 1.3362727 , 1.3362727 ,
1.3362727 , 1.20681471, 1.20681471, 1.20681471, 1.20681471,
1.06885447, 1.06885447, 1.06885447, 1.06885447, 1.01761457,
1.01761457, 1.01761457, 1.01761457, 1.00370537, 1.00370537,
1.00370537, 1.00370537, 1.00066177, 1.00066177, 1.00066177,
1.00066177, 1.00010247, 1.00010247, 1.00010247, 1.00010247,
1.00001397, 1.00001397, 1.00001397, 1.00001397, 1.0000017 ,
1.0000017 , 1.0000017 , 1.0000017 , 1.00000019, 1.00000019,
1.00000019, 1.00000019, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39381515, 1.39381515,
1.39381515, 1.39381515, 1.35669868, 1.35669868, 1.35669868,
1.35669868, 1.25507469, 1.25507469, 1.25507469, 1.25507469,
1.10670175, 1.10670175, 1.10670175, 1.10670175, 1.03061304,
1.03061304, 1.03061304, 1.03061304, 1.00730695, 1.00730695,
1.00730695, 1.00730695, 1.00148229, 1.00148229, 1.00148229,
1.00148229, 1.00026069, 1.00026069, 1.00026069, 1.00026069,
1.00004039, 1.00004039, 1.00004039, 1.00004039, 1.00000558,
1.00000558, 1.00000558, 1.00000558, 1.00000069, 1.00000069,
1.00000069, 1.00000069, 1.00000008, 1.00000008, 1.00000008,
1.00000008, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39619074, 1.39619074,
1.39619074, 1.39619074, 1.37083527, 1.37083527, 1.37083527,
1.37083527, 1.29312777, 1.29312777, 1.29312777, 1.29312777,
1.15313429, 1.15313429, 1.15313429, 1.15313429, 1.04970419,
1.04970419, 1.04970419, 1.04970419, 1.01327541, 1.01327541,
1.01327541, 1.01327541, 1.00301597, 1.00301597, 1.00301597,
1.00301597, 1.00059451, 1.00059451, 1.00059451, 1.00059451,
1.00010327, 1.00010327, 1.00010327, 1.00010327, 1.00001601,
1.00001601, 1.00001601, 1.00001601, 1.00000224, 1.00000224,
1.00000224, 1.00000224, 1.00000028, 1.00000028, 1.00000028,
1.00000028, 1.00000003, 1.00000003, 1.00000003, 1.00000003,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39765387, 1.39765387,
1.39765387, 1.39765387, 1.38050049, 1.38050049, 1.38050049,
1.38050049, 1.32232286, 1.32232286, 1.32232286, 1.32232286,
1.20239962, 1.20239962, 1.20239962, 1.20239962, 1.07542212,
1.07542212, 1.07542212, 1.07542212, 1.02249875, 1.02249875,
1.02249875, 1.02249875, 1.00567434, 1.00567434, 1.00567434,
1.00567434, 1.00124046, 1.00124046, 1.00124046, 1.00124046,
1.00023899, 1.00023899, 1.00023899, 1.00023899, 1.00004109,
1.00004109, 1.00004109, 1.00004109, 1.00000637, 1.00000637,
1.00000637, 1.00000637, 1.0000009 , 1.0000009 , 1.0000009 ,
1.0000009 , 1.00000012, 1.00000012, 1.00000012, 1.00000012,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39855501, 1.39855501,
1.39855501, 1.39855501, 1.38704363, 1.38704363, 1.38704363,
1.38704363, 1.34423731, 1.34423731, 1.34423731, 1.34423731,
1.24659851, 1.24659851, 1.24659851, 1.24659851, 1.11055425,
1.11055425, 1.11055425, 1.11055425, 1.0359939 , 1.0359939 ,
1.0359939 , 1.0359939 , 1.00998968, 1.00998968, 1.00998968,
1.00998968, 1.00240293, 1.00240293, 1.00240293, 1.00240293,
1.00050912, 1.00050912, 1.00050912, 1.00050912, 1.00009627,
1.00009627, 1.00009627, 1.00009627, 1.00001642, 1.00001642,
1.00001642, 1.00001642, 1.00000255, 1.00000255, 1.00000255,
1.00000255, 1.00000036, 1.00000036, 1.00000036, 1.00000036,
1.00000005, 1.00000005, 1.00000005, 1.00000005, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39911003, 1.39911003,
1.39911003, 1.39911003, 1.39143715, 1.39143715, 1.39143715,
1.39143715, 1.36039506, 1.36039506, 1.36039506, 1.36039506,
1.28277859, 1.28277859, 1.28277859, 1.28277859, 1.15308494,
1.15308494, 1.15308494, 1.15308494, 1.05491762, 1.05491762,
1.05491762, 1.05491762, 1.01663984, 1.01663984, 1.01663984,
1.01663984, 1.00437036, 1.00437036, 1.00437036, 1.00437036,
1.00101107, 1.00101107, 1.00101107, 1.00101107, 1.00020871,
1.00020871, 1.00020871, 1.00020871, 1.00003885, 1.00003885,
1.00003885, 1.00003885, 1.00000658, 1.00000658, 1.00000658,
1.00000658, 1.00000102, 1.00000102, 1.00000102, 1.00000102,
1.00000015, 1.00000015, 1.00000015, 1.00000015, 1.00000002,
1.00000002, 1.00000002, 1.00000002, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39945187, 1.39945187,
1.39945187, 1.39945187, 1.39436705, 1.39436705, 1.39436705,
1.39436705, 1.37213202, 1.37213202, 1.37213202, 1.37213202,
1.31166097, 1.31166097, 1.31166097, 1.31166097, 1.19836302,
1.19836302, 1.19836302, 1.19836302, 1.07969516, 1.07969516,
1.07969516, 1.07969516, 1.02638253, 1.02638253, 1.02638253,
1.02638253, 1.00752915, 1.00752915, 1.00752915, 1.00752915,
1.00189049, 1.00189049, 1.00189049, 1.00189049, 1.00042342,
1.00042342, 1.00042342, 1.00042342, 1.00008551, 1.00008551,
1.00008551, 1.00008551, 1.00001571, 1.00001571, 1.00001571,
1.00001571, 1.00000264, 1.00000264, 1.00000264, 1.00000264,
1.00000041, 1.00000041, 1.00000041, 1.00000041, 1.00000006,
1.00000006, 1.00000006, 1.00000006, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.3996624 , 1.3996624 ,
1.3996624 , 1.3996624 , 1.3963095 , 1.3963095 , 1.3963095 ,
1.3963095 , 1.38055079, 1.38055079, 1.38055079, 1.38055079,
1.33423947, 1.33423947, 1.33423947, 1.33423947, 1.23974605,
1.23974605, 1.23974605, 1.23974605, 1.11267337, 1.11267337,
1.11267337, 1.11267337, 1.04007189, 1.04007189, 1.04007189,
1.04007189, 1.01236277, 1.01236277, 1.01236277, 1.01236277,
1.00335357, 1.00335357, 1.00335357, 1.00335357, 1.00081084,
1.00081084, 1.00081084, 1.00081084, 1.0001767 , 1.0001767 ,
1.0001767 , 1.0001767 , 1.00003502, 1.00003502, 1.00003502,
1.00003502, 1.00000636, 1.00000636, 1.00000636, 1.00000636,
1.00000106, 1.00000106, 1.00000106, 1.00000106, 1.00000017,
1.00000017, 1.00000017, 1.00000017, 1.00000002, 1.00000002,
1.00000002, 1.00000002, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39979207, 1.39979207,
1.39979207, 1.39979207, 1.39759081, 1.39759081, 1.39759081,
1.39759081, 1.38652446, 1.38652446, 1.38652446, 1.38652446,
1.35157893, 1.35157893, 1.35157893, 1.35157893, 1.27446219,
1.27446219, 1.27446219, 1.27446219, 1.15229645, 1.15229645,
1.15229645, 1.15229645, 1.05869191, 1.05869191, 1.05869191,
1.05869191, 1.0194717 , 1.0194717 , 1.0194717 , 1.0194717 ,
1.00567916, 1.00567916, 1.00567916, 1.00567916, 1.00147584,
1.00147584, 1.00147584, 1.00147584, 1.00034552, 1.00034552,
1.00034552, 1.00034552, 1.00007354, 1.00007354, 1.00007354,
1.00007354, 1.00001434, 1.00001434, 1.00001434, 1.00001434,
1.00000258, 1.00000258, 1.00000258, 1.00000258, 1.00000043,
1.00000043, 1.00000043, 1.00000043, 1.00000007, 1.00000007,
1.00000007, 1.00000007, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39987194, 1.39987194,
1.39987194, 1.39987194, 1.39843228, 1.39843228, 1.39843228,
1.39843228, 1.3907236 , 1.3907236 , 1.3907236 , 1.3907236 ,
1.36469302, 1.36469302, 1.36469302, 1.36469302, 1.30292774,
1.30292774, 1.30292774, 1.30292774, 1.19460985, 1.19460985,
1.19460985, 1.19460985, 1.08259733, 1.08259733, 1.08259733,
1.08259733, 1.02951992, 1.02951992, 1.02951992, 1.02951992,
1.009229 , 1.009229 , 1.009229 , 1.009229 , 1.00256783,
1.00256783, 1.00256783, 1.00256783, 1.00064332, 1.00064332,
1.00064332, 1.00064332, 1.00014648, 1.00014648, 1.00014648,
1.00014648, 1.00003055, 1.00003055, 1.00003055, 1.00003055,
1.00000587, 1.00000587, 1.00000587, 1.00000587, 1.00000105,
1.00000105, 1.00000105, 1.00000105, 1.00000017, 1.00000017,
1.00000017, 1.00000017, 1.00000003, 1.00000003, 1.00000003,
1.00000003, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39992113, 1.39992113,
1.39992113, 1.39992113, 1.39898277, 1.39898277, 1.39898277,
1.39898277, 1.39365119, 1.39365119, 1.39365119, 1.39365119,
1.37448052, 1.37448052, 1.37448052, 1.37448052, 1.32581494,
1.32581494, 1.32581494, 1.32581494, 1.23388396, 1.23388396,
1.23388396, 1.23388396, 1.1137857 , 1.1137857 , 1.1137857 ,
1.1137857 , 1.04324167, 1.04324167, 1.04324167, 1.04324167,
1.01444538, 1.01444538, 1.01444538, 1.01444538, 1.00429054,
1.00429054, 1.00429054, 1.00429054, 1.00114649, 1.00114649,
1.00114649, 1.00114649, 1.00027829, 1.00027829, 1.00027829,
1.00027829, 1.00006185, 1.00006185, 1.00006185, 1.00006185,
1.00001267, 1.00001267, 1.00001267, 1.00001267, 1.00000241,
1.00000241, 1.00000241, 1.00000241, 1.00000043, 1.00000043,
1.00000043, 1.00000043, 1.00000007, 1.00000007, 1.00000007,
1.00000007, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39995142, 1.39995142,
1.39995142, 1.39995142, 1.39934166, 1.39934166, 1.39934166,
1.39934166, 1.39567753, 1.39567753, 1.39567753, 1.39567753,
1.38170061, 1.38170061, 1.38170061, 1.38170061, 1.34390623,
1.34390623, 1.34390623, 1.34390623, 1.2674179 , 1.2674179 ,
1.2674179 , 1.2674179 , 1.15110288, 1.15110288, 1.15110288,
1.15110288, 1.06150021, 1.06150021, 1.06150021, 1.06150021,
1.02186743, 1.02186743, 1.02186743, 1.02186743, 1.00691128,
1.00691128, 1.00691128, 1.00691128, 1.00196402, 1.00196402,
1.00196402, 1.00196402, 1.0005067 , 1.0005067 , 1.0005067 ,
1.0005067 , 1.00011965, 1.00011965, 1.00011965, 1.00011965,
1.00002603, 1.00002603, 1.00002603, 1.00002603, 1.00000525,
1.00000525, 1.00000525, 1.00000525, 1.00000099, 1.00000099,
1.00000099, 1.00000099, 1.00000017, 1.00000017, 1.00000017,
1.00000017, 1.00000003, 1.00000003, 1.00000003, 1.00000003,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39997008, 1.39997008,
1.39997008, 1.39997008, 1.39957493, 1.39957493, 1.39957493,
1.39957493, 1.39707105, 1.39707105, 1.39707105, 1.39707105,
1.38697213, 1.38697213, 1.38697213, 1.38697213, 1.35799452,
1.35799452, 1.35799452, 1.35799452, 1.29545775, 1.29545775,
1.29545775, 1.29545775, 1.19107179, 1.19107179, 1.19107179,
1.19107179, 1.08461016, 1.08461016, 1.08461016, 1.08461016,
1.03208805, 1.03208805, 1.03208805, 1.03208805, 1.010769 ,
1.010769 , 1.010769 , 1.010769 , 1.00324598, 1.00324598,
1.00324598, 1.00324598, 1.00088771, 1.00088771, 1.00088771,
1.00088771, 1.00022208, 1.00022208, 1.00022208, 1.00022208,
1.00005118, 1.00005118, 1.00005118, 1.00005118, 1.00001093,
1.00001093, 1.00001093, 1.00001093, 1.00000217, 1.00000217,
1.00000217, 1.00000217, 1.0000004 , 1.0000004 , 1.0000004 ,
1.0000004 , 1.00000007, 1.00000007, 1.00000007, 1.00000007,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39998157, 1.39998157,
1.39998157, 1.39998157, 1.39972613, 1.39972613, 1.39972613,
1.39972613, 1.39802387, 1.39802387, 1.39802387, 1.39802387,
1.39078576, 1.39078576, 1.39078576, 1.39078576, 1.36882146,
1.36882146, 1.36882146, 1.36882146, 1.31847864, 1.31847864,
1.31847864, 1.31847864, 1.22868706, 1.22868706, 1.22868706,
1.22868706, 1.11426113, 1.11426113, 1.11426113, 1.11426113,
1.04574926, 1.04574926, 1.04574926, 1.04574926, 1.01627097,
1.01627097, 1.01627097, 1.01627097, 1.00519147, 1.00519147,
1.00519147, 1.00519147, 1.0015015 , 1.0015015 , 1.0015015 ,
1.0015015 , 1.00039704, 1.00039704, 1.00039704, 1.00039704,
1.00009667, 1.00009667, 1.00009667, 1.00009667, 1.0000218 ,
1.0000218 , 1.0000218 , 1.0000218 , 1.00000458, 1.00000458,
1.00000458, 1.00000458, 1.0000009 , 1.0000009 , 1.0000009 ,
1.0000009 , 1.00000017, 1.00000017, 1.00000017, 1.00000017,
1.00000003, 1.00000003, 1.00000003, 1.00000003, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39998865, 1.39998865,
1.39998865, 1.39998865, 1.39982389, 1.39982389, 1.39982389,
1.39982389, 1.39867198, 1.39867198, 1.39867198, 1.39867198,
1.39352204, 1.39352204, 1.39352204, 1.39352204, 1.37704455,
1.37704455, 1.37704455, 1.37704455, 1.33707618, 1.33707618,
1.33707618, 1.33707618, 1.26124125, 1.26124125, 1.26124125,
1.26124125, 1.14967105, 1.14967105, 1.14967105, 1.14967105,
1.06362378, 1.06362378, 1.06362378, 1.06362378, 1.02390638,
1.02390638, 1.02390638, 1.02390638, 1.00805587, 1.00805587,
1.00805587, 1.00805587, 1.00245907, 1.00245907, 1.00245907,
1.00245907, 1.00068583, 1.00068583, 1.00068583, 1.00068583,
1.00017603, 1.00017603, 1.00017603, 1.00017603, 1.00004183,
1.00004183, 1.00004183, 1.00004183, 1.00000925, 1.00000925,
1.00000925, 1.00000925, 1.00000191, 1.00000191, 1.00000191,
1.00000191, 1.00000037, 1.00000037, 1.00000037, 1.00000037,
1.00000007, 1.00000007, 1.00000007, 1.00000007, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999301, 1.39999301,
1.39999301, 1.39999301, 1.39988695, 1.39988695, 1.39988695,
1.39988695, 1.39911075, 1.39911075, 1.39911075, 1.39911075,
1.39547079, 1.39547079, 1.39547079, 1.39547079, 1.38322431,
1.38322431, 1.38322431, 1.38322431, 1.35188591, 1.35188591,
1.35188591, 1.35188591, 1.28887641, 1.28887641, 1.28887641,
1.28887641, 1.18770935, 1.18770935, 1.18770935, 1.18770935,
1.08600586, 1.08600586, 1.08600586, 1.08600586, 1.03421193,
1.03421193, 1.03421193, 1.03421193, 1.01215736, 1.01215736,
1.01215736, 1.01215736, 1.00390928, 1.00390928, 1.00390928,
1.00390928, 1.00114775, 1.00114775, 1.00114775, 1.00114775,
1.00030995, 1.00030995, 1.00030995, 1.00030995, 1.00007747,
1.00007747, 1.00007747, 1.00007747, 1.00001802, 1.00001802,
1.00001802, 1.00001802, 1.00000392, 1.00000392, 1.00000392,
1.00000392, 1.0000008 , 1.0000008 , 1.0000008 , 1.0000008 ,
1.00000015, 1.00000015, 1.00000015, 1.00000015, 1.00000003,
1.00000003, 1.00000003, 1.00000003, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999569, 1.39999569,
1.39999569, 1.39999569, 1.39992755, 1.39992755, 1.39992755,
1.39992755, 1.39940654, 1.39940654, 1.39940654, 1.39940654,
1.39684934, 1.39684934, 1.39684934, 1.39684934, 1.38782434,
1.38782434, 1.38782434, 1.38782434, 1.36352834, 1.36352834,
1.36352834, 1.36352834, 1.31193777, 1.31193777, 1.31193777,
1.31193777, 1.22397155, 1.22397155, 1.22397155, 1.22397155,
1.11430695, 1.11430695, 1.11430695, 1.11430695, 1.04775624,
1.04775624, 1.04775624, 1.04775624, 1.01787325, 1.01787325,
1.01787325, 1.01787325, 1.00604553, 1.00604553, 1.00604553,
1.00604553, 1.00186535, 1.00186535, 1.00186535, 1.00186535,
1.00052907, 1.00052907, 1.00052907, 1.00052907, 1.00013882,
1.00013882, 1.00013882, 1.00013882, 1.00003388, 1.00003388,
1.00003388, 1.00003388, 1.00000773, 1.00000773, 1.00000773,
1.00000773, 1.00000165, 1.00000165, 1.00000165, 1.00000165,
1.00000033, 1.00000033, 1.00000033, 1.00000033, 1.00000006,
1.00000006, 1.00000006, 1.00000006, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999735, 1.39999735,
1.39999735, 1.39999735, 1.39995364, 1.39995364, 1.39995364,
1.39995364, 1.39960516, 1.39960516, 1.39960516, 1.39960516,
1.39781856, 1.39781856, 1.39781856, 1.39781856, 1.39121895,
1.39121895, 1.39121895, 1.39121895, 1.37257512, 1.37257512,
1.37257512, 1.37257512, 1.33089036, 1.33089036, 1.33089036,
1.33089036, 1.25569524, 1.25569524, 1.25569524, 1.25569524,
1.14809255, 1.14809255, 1.14809255, 1.14809255, 1.06524107,
1.06524107, 1.06524107, 1.06524107, 1.02565101, 1.02565101,
1.02565101, 1.02565101, 1.00911151, 1.00911151, 1.00911151,
1.00911151, 1.00295014, 1.00295014, 1.00295014, 1.00295014,
1.00087744, 1.00087744, 1.00087744, 1.00087744, 1.0002413 ,
1.0002413 , 1.0002413 , 1.0002413 , 1.0000617 , 1.0000617 ,
1.0000617 , 1.0000617 , 1.00001474, 1.00001474, 1.00001474,
1.00001474, 1.0000033 , 1.0000033 , 1.0000033 , 1.0000033 ,
1.0000007 , 1.0000007 , 1.0000007 , 1.0000007 , 1.00000014,
1.00000014, 1.00000014, 1.00000014, 1.00000003, 1.00000003,
1.00000003, 1.00000003, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999837, 1.39999837,
1.39999837, 1.39999837, 1.39997038, 1.39997038, 1.39997038,
1.39997038, 1.39973805, 1.39973805, 1.39973805, 1.39973805,
1.39849618, 1.39849618, 1.39849618, 1.39849618, 1.3937043 ,
1.3937043 , 1.3937043 , 1.3937043 , 1.37953124, 1.37953124,
1.37953124, 1.37953124, 1.34625348, 1.34625348, 1.34625348,
1.34625348, 1.2829543 , 1.2829543 , 1.2829543 , 1.2829543 ,
1.18449482, 1.18449482, 1.18449482, 1.18449482, 1.08695305,
1.08695305, 1.08695305, 1.08695305, 1.0359817 , 1.0359817 ,
1.0359817 , 1.0359817 , 1.01340663, 1.01340663, 1.01340663,
1.01340663, 1.00454869, 1.00454869, 1.00454869, 1.00454869,
1.00141667, 1.00141667, 1.00141667, 1.00141667, 1.00040772,
1.00040772, 1.00040772, 1.00040772, 1.00010905, 1.00010905,
1.00010905, 1.00010905, 1.00002724, 1.00002724, 1.00002724,
1.00002724, 1.00000638, 1.00000638, 1.00000638, 1.00000638,
1.00000141, 1.00000141, 1.00000141, 1.00000141, 1.00000029,
1.00000029, 1.00000029, 1.00000029, 1.00000006, 1.00000006,
1.00000006, 1.00000006, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999899, 1.39999899,
1.39999899, 1.39999899, 1.3999811 , 1.3999811 , 1.3999811 ,
1.3999811 , 1.39982668, 1.39982668, 1.39982668, 1.39982668,
1.39896749, 1.39896749, 1.39896749, 1.39896749, 1.39551085,
1.39551085, 1.39551085, 1.39551085, 1.38482871, 1.38482871,
1.38482871, 1.38482871, 1.35855285, 1.35855285, 1.35855285,
1.35855285, 1.30600344, 1.30600344, 1.30600344, 1.30600344,
1.21961612, 1.21961612, 1.21961612, 1.21961612, 1.11405494,
1.11405494, 1.11405494, 1.11405494, 1.04937502, 1.04937502,
1.04937502, 1.04937502, 1.01928228, 1.01928228, 1.01928228,
1.01928228, 1.0068482 , 1.0068482 , 1.0068482 , 1.0068482 ,
1.00223057, 1.00223057, 1.00223057, 1.00223057, 1.00067095,
1.00067095, 1.00067095, 1.00067095, 1.00018746, 1.00018746,
1.00018746, 1.00018746, 1.00004889, 1.00004889, 1.00004889,
1.00004889, 1.00001196, 1.00001196, 1.00001196, 1.00001196,
1.00000275, 1.00000275, 1.00000275, 1.00000275, 1.0000006 ,
1.0000006 , 1.0000006 , 1.0000006 , 1.00000012, 1.00000012,
1.00000012, 1.00000012, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999938, 1.39999938,
1.39999938, 1.39999938, 1.39998795, 1.39998795, 1.39998795,
1.39998795, 1.3998856 , 1.3998856 , 1.3998856 , 1.3998856 ,
1.39929375, 1.39929375, 1.39929375, 1.39929375, 1.39681528,
1.39681528, 1.39681528, 1.39681528, 1.38882772, 1.38882772,
1.38882772, 1.38882772, 1.36828854, 1.36828854, 1.36828854,
1.36828854, 1.32521236, 1.32521236, 1.32521236, 1.32521236,
1.25062517, 1.25062517, 1.25062517, 1.25062517, 1.14642363,
1.14642363, 1.14642363, 1.14642363, 1.06647357, 1.06647357,
1.06647357, 1.06647357, 1.0271506 , 1.0271506 , 1.0271506 ,
1.0271506 , 1.01008121, 1.01008121, 1.01008121, 1.01008121,
1.00343023, 1.00343023, 1.00343023, 1.00343023, 1.00107711,
1.00107711, 1.00107711, 1.00107711, 1.00031399, 1.00031399,
1.00031399, 1.00031399, 1.00008541, 1.00008541, 1.00008541,
1.00008541, 1.00002177, 1.00002177, 1.00002177, 1.00002177,
1.00000522, 1.00000522, 1.00000522, 1.00000522, 1.00000118,
1.00000118, 1.00000118, 1.00000118, 1.00000025, 1.00000025,
1.00000025, 1.00000025, 1.00000005, 1.00000005, 1.00000005,
1.00000005, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999962, 1.39999962,
1.39999962, 1.39999962, 1.39999233, 1.39999233, 1.39999233,
1.39999233, 1.39992467, 1.39992467, 1.39992467, 1.39992467,
1.39951861, 1.39951861, 1.39951861, 1.39951861, 1.39775141,
1.39775141, 1.39775141, 1.39775141, 1.39182223, 1.39182223,
1.39182223, 1.39182223, 1.37591549, 1.37591549, 1.37591549,
1.37591549, 1.34101176, 1.34101176, 1.34101176, 1.34101176,
1.27753855, 1.27753855, 1.27753855, 1.27753855, 1.18141045,
1.18141045, 1.18141045, 1.18141045, 1.08756174, 1.08756174,
1.08756174, 1.08756174, 1.03746461, 1.03746461, 1.03746461,
1.03746461, 1.0145302 , 1.0145302 , 1.0145302 , 1.0145302 ,
1.00515922, 1.00515922, 1.00515922, 1.00515922, 1.00168932,
1.00168932, 1.00168932, 1.00168932, 1.00051321, 1.00051321,
1.00051321, 1.00051321, 1.00014541, 1.00014541, 1.00014541,
1.00014541, 1.0000386 , 1.0000386 , 1.0000386 , 1.0000386 ,
1.00000964, 1.00000964, 1.00000964, 1.00000964, 1.00000227,
1.00000227, 1.00000227, 1.00000227, 1.00000051, 1.00000051,
1.00000051, 1.00000051, 1.00000011, 1.00000011, 1.00000011,
1.00000011, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999976, 1.39999976,
1.39999976, 1.39999976, 1.39999512, 1.39999512, 1.39999512,
1.39999512, 1.3999505 , 1.3999505 , 1.3999505 , 1.3999505 ,
1.39967295, 1.39967295, 1.39967295, 1.39967295, 1.39841943,
1.39841943, 1.39841943, 1.39841943, 1.39404791, 1.39404791,
1.39404791, 1.39404791, 1.38183389, 1.38183389, 1.38183389,
1.38183389, 1.35385188, 1.35385188, 1.35385188, 1.35385188,
1.30054548, 1.30054548, 1.30054548, 1.30054548, 1.21554401,
1.21554401, 1.21554401, 1.21554401, 1.113588 , 1.113588 ,
1.113588 , 1.113588 , 1.05068574, 1.05068574, 1.05068574,
1.05068574, 1.02052392, 1.02052392, 1.02052392, 1.02052392,
1.00759846, 1.00759846, 1.00759846, 1.00759846, 1.00259191,
1.00259191, 1.00259191, 1.00259191, 1.00081978, 1.00081978,
1.00081978, 1.00081978, 1.0002417 , 1.0002417 , 1.0002417 ,
1.0002417 , 1.00006673, 1.00006673, 1.00006673, 1.00006673,
1.00001732, 1.00001732, 1.00001732, 1.00001732, 1.00000424,
1.00000424, 1.00000424, 1.00000424, 1.00000098, 1.00000098,
1.00000098, 1.00000098, 1.00000022, 1.00000022, 1.00000022,
1.00000022, 1.00000005, 1.00000005, 1.00000005, 1.00000005,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999986, 1.39999986,
1.39999986, 1.39999986, 1.3999969 , 1.3999969 , 1.3999969 ,
1.3999969 , 1.39996754, 1.39996754, 1.39996754, 1.39996754,
1.3997785 , 1.3997785 , 1.3997785 , 1.3997785 , 1.39889362,
1.39889362, 1.39889362, 1.39889362, 1.39569079, 1.39569079,
1.39569079, 1.39569079, 1.38638637, 1.38638637, 1.38638637,
1.38638637, 1.36417293, 1.36417293, 1.36417293, 1.36417293,
1.31994385, 1.31994385, 1.31994385, 1.31994385, 1.24592869,
1.24592869, 1.24592869, 1.24592869, 1.14469896, 1.14469896,
1.14469896, 1.14469896, 1.06740585, 1.06740585, 1.06740585,
1.06740585, 1.02844412, 1.02844412, 1.02844412, 1.02844412,
1.01096997, 1.01096997, 1.01096997, 1.01096997, 1.00389488,
1.00389488, 1.00389488, 1.00389488, 1.00128131, 1.00128131,
1.00128131, 1.00128131, 1.00039271, 1.00039271, 1.00039271,
1.00039271, 1.00011266, 1.00011266, 1.00011266, 1.00011266,
1.00003038, 1.00003038, 1.00003038, 1.00003038, 1.00000773,
1.00000773, 1.00000773, 1.00000773, 1.00000186, 1.00000186,
1.00000186, 1.00000186, 1.00000042, 1.00000042, 1.00000042,
1.00000042, 1.00000009, 1.00000009, 1.00000009, 1.00000009,
1.00000002, 1.00000002, 1.00000002, 1.00000002, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999991, 1.39999991,
1.39999991, 1.39999991, 1.39999803, 1.39999803, 1.39999803,
1.39999803, 1.39997875, 1.39997875, 1.39997875, 1.39997875,
1.39985041, 1.39985041, 1.39985041, 1.39985041, 1.39922858,
1.39922858, 1.39922858, 1.39922858, 1.39689572, 1.39689572,
1.39689572, 1.39689572, 1.38985989, 1.38985989, 1.38985989,
1.38985989, 1.37238562, 1.37238562, 1.37238562, 1.37238562,
1.33609516, 1.33609516, 1.33609516, 1.33609516, 1.27252457,
1.27252457, 1.27252457, 1.27252457, 1.17843926, 1.17843926,
1.17843926, 1.17843926, 1.08791064, 1.08791064, 1.08791064,
1.08791064, 1.0387115 , 1.0387115 , 1.0387115 , 1.0387115 ,
1.01554087, 1.01554087, 1.01554087, 1.01554087, 1.00573844,
1.00573844, 1.00573844, 1.00573844, 1.00196188, 1.00196188,
1.00196188, 1.00196188, 1.00062452, 1.00062452, 1.00062452,
1.00062452, 1.00018599, 1.00018599, 1.00018599, 1.00018599,
1.00005204, 1.00005204, 1.00005204, 1.00005204, 1.00001373,
1.00001373, 1.00001373, 1.00001373, 1.00000343, 1.00000343,
1.00000343, 1.00000343, 1.00000081, 1.00000081, 1.00000081,
1.00000081, 1.00000018, 1.00000018, 1.00000018, 1.00000018,
1.00000004, 1.00000004, 1.00000004, 1.00000004, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999995, 1.39999995,
1.39999995, 1.39999995, 1.39999875, 1.39999875, 1.39999875,
1.39999875, 1.39998612, 1.39998612, 1.39998612, 1.39998612,
1.39989925, 1.39989925, 1.39989925, 1.39989925, 1.39946412,
1.39946412, 1.39946412, 1.39946412, 1.39777421, 1.39777421,
1.39777421, 1.39777421, 1.39249029, 1.39249029, 1.39249029,
1.39249029, 1.37885985, 1.37885985, 1.37885985, 1.37885985,
1.34938855, 1.34938855, 1.34938855, 1.34938855, 1.29547175,
1.29547175, 1.29547175, 1.29547175, 1.21169969, 1.21169969,
1.21169969, 1.21169969, 1.11296387, 1.11296387, 1.11296387,
1.11296387, 1.05174766, 1.05174766, 1.05174766, 1.05174766,
1.02162002, 1.02162002, 1.02162002, 1.02162002, 1.00829724,
1.00829724, 1.00829724, 1.00829724, 1.00294575, 1.00294575,
1.00294575, 1.00294575, 1.00097314, 1.00097314, 1.00097314,
1.00097314, 1.00030061, 1.00030061, 1.00030061, 1.00030061,
1.00008721, 1.00008721, 1.00008721, 1.00008721, 1.00002385,
1.00002385, 1.00002385, 1.00002385, 1.00000617, 1.00000617,
1.00000617, 1.00000617, 1.00000151, 1.00000151, 1.00000151,
1.00000151, 1.00000035, 1.00000035, 1.00000035, 1.00000035,
1.00000008, 1.00000008, 1.00000008, 1.00000008, 1.00000002,
1.00000002, 1.00000002, 1.00000002, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999997, 1.39999997,
1.39999997, 1.39999997, 1.39999921, 1.39999921, 1.39999921,
1.39999921, 1.39999095, 1.39999095, 1.39999095, 1.39999095,
1.39993232, 1.39993232, 1.39993232, 1.39993232, 1.39962903,
1.39962903, 1.39962903, 1.39962903, 1.39841114, 1.39841114,
1.39841114, 1.39841114, 1.39446832, 1.39446832, 1.39446832,
1.39446832, 1.38391959, 1.38391959, 1.38391959, 1.38391959,
1.36021389, 1.36021389, 1.36021389, 1.36021389, 1.31501246,
1.31501246, 1.31501246, 1.31501246, 1.24153265, 1.24153265,
1.24153265, 1.24153265, 1.14294179, 1.14294179, 1.14294179,
1.14294179, 1.06809956, 1.06809956, 1.06809956, 1.06809956,
1.0295627 , 1.0295627 , 1.0295627 , 1.0295627 , 1.01178347,
1.01178347, 1.01178347, 1.01178347, 1.0043414 , 1.0043414 ,
1.0043414 , 1.0043414 , 1.00148729, 1.00148729, 1.00148729,
1.00148729, 1.00047618, 1.00047618, 1.00047618, 1.00047618,
1.00014311, 1.00014311, 1.00014311, 1.00014311, 1.00004052,
1.00004052, 1.00004052, 1.00004052, 1.00001085, 1.00001085,
1.00001085, 1.00001085, 1.00000275, 1.00000275, 1.00000275,
1.00000275, 1.00000066, 1.00000066, 1.00000066, 1.00000066,
1.00000015, 1.00000015, 1.00000015, 1.00000015, 1.00000003,
1.00000003, 1.00000003, 1.00000003, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999998, 1.39999998,
1.39999998, 1.39999998, 1.3999995 , 1.3999995 , 1.3999995 ,
1.3999995 , 1.3999941 , 1.3999941 , 1.3999941 , 1.3999941 ,
1.39995465, 1.39995465, 1.39995465, 1.39995465, 1.39974404,
1.39974404, 1.39974404, 1.39974404, 1.39887054, 1.39887054,
1.39887054, 1.39887054, 1.39594607, 1.39594607, 1.39594607,
1.39594607, 1.38784215, 1.38784215, 1.38784215, 1.38784215,
1.36894303, 1.36894303, 1.36894303, 1.36894303, 1.33145294,
1.33145294, 1.33145294, 1.33145294, 1.26783669, 1.26783669,
1.26783669, 1.26783669, 1.17556797, 1.17556797, 1.17556797,
1.17556797, 1.08805645, 1.08805645, 1.08805645, 1.08805645,
1.03976177, 1.03976177, 1.03976177, 1.03976177, 1.01645032,
1.01645032, 1.01645032, 1.01645032, 1.00628547, 1.00628547,
1.00628547, 1.00628547, 1.00223151, 1.00223151, 1.00223151,
1.00223151, 1.00073997, 1.00073997, 1.00073997, 1.00073997,
1.00023021, 1.00023021, 1.00023021, 1.00023021, 1.00006746,
1.00006746, 1.00006746, 1.00006746, 1.00001868, 1.00001868,
1.00001868, 1.00001868, 1.0000049 , 1.0000049 , 1.0000049 ,
1.0000049 , 1.00000122, 1.00000122, 1.00000122, 1.00000122,
1.00000029, 1.00000029, 1.00000029, 1.00000029, 1.00000007,
1.00000007, 1.00000007, 1.00000007, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999999, 1.39999999,
1.39999999, 1.39999999, 1.39999968, 1.39999968, 1.39999968,
1.39999968, 1.39999617, 1.39999617, 1.39999617, 1.39999617,
1.39996968, 1.39996968, 1.39996968, 1.39996968, 1.39982394,
1.39982394, 1.39982394, 1.39982394, 1.39920028, 1.39920028,
1.39920028, 1.39920028, 1.39704335, 1.39704335, 1.39704335,
1.39704335, 1.39086036, 1.39086036, 1.39086036, 1.39086036,
1.37591782, 1.37591782, 1.37591782, 1.37591782, 1.34513208,
1.34513208, 1.34513208, 1.34513208, 1.29071415, 1.29071415,
1.29071415, 1.29071415, 1.20804266, 1.20804266, 1.20804266,
1.20804266, 1.11222351, 1.11222351, 1.11222351, 1.11222351,
1.05260571, 1.05260571, 1.05260571, 1.05260571, 1.022589 ,
1.022589 , 1.022589 , 1.022589 , 1.0089465 , 1.0089465 ,
1.0089465 , 1.0089465 , 1.00328962, 1.00328962, 1.00328962,
1.00328962, 1.00112906, 1.00112906, 1.00112906, 1.00112906,
1.00036338, 1.00036338, 1.00036338, 1.00036338, 1.0001101 ,
1.0001101 , 1.0001101 , 1.0001101 , 1.00003152, 1.00003152,
1.00003152, 1.00003152, 1.00000855, 1.00000855, 1.00000855,
1.00000855, 1.0000022 , 1.0000022 , 1.0000022 , 1.0000022 ,
1.00000054, 1.00000054, 1.00000054, 1.00000054, 1.00000013,
1.00000013, 1.00000013, 1.00000013, 1.00000003, 1.00000003,
1.00000003, 1.00000003, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999999, 1.39999999,
1.39999999, 1.39999999, 1.3999998 , 1.3999998 , 1.3999998 ,
1.3999998 , 1.39999751, 1.39999751, 1.39999751, 1.39999751,
1.39997977, 1.39997977, 1.39997977, 1.39997977, 1.39987925,
1.39987925, 1.39987925, 1.39987925, 1.39943586, 1.39943586,
1.39943586, 1.39943586, 1.39785346, 1.39785346, 1.39785346,
1.39785346, 1.39316645, 1.39316645, 1.39316645, 1.39316645,
1.38144361, 1.38144361, 1.38144361, 1.38144361, 1.35639706,
1.35639706, 1.35639706, 1.35639706, 1.31036316, 1.31036316,
1.31036316, 1.31036316, 1.23738337, 1.23738337, 1.23738337,
1.23738337, 1.14116812, 1.14116812, 1.14116812, 1.14116812,
1.06860077, 1.06860077, 1.06860077, 1.06860077, 1.03053157,
1.03053157, 1.03053157, 1.03053157, 1.01252751, 1.01252751,
1.01252751, 1.01252751, 1.00476825, 1.00476825, 1.00476825,
1.00476825, 1.00169289, 1.00169289, 1.00169289, 1.00169289,
1.00056328, 1.00056328, 1.00056328, 1.00056328, 1.00017637,
1.00017637, 1.00017637, 1.00017637, 1.00005215, 1.00005215,
1.00005215, 1.00005215, 1.00001461, 1.00001461, 1.00001461,
1.00001461, 1.00000389, 1.00000389, 1.00000389, 1.00000389,
1.00000099, 1.00000099, 1.00000099, 1.00000099, 1.00000024,
1.00000024, 1.00000024, 1.00000024, 1.00000006, 1.00000006,
1.00000006, 1.00000006, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.39999987, 1.39999987, 1.39999987,
1.39999987, 1.39999839, 1.39999839, 1.39999839, 1.39999839,
1.39998653, 1.39998653, 1.39998653, 1.39998653, 1.39991742,
1.39991742, 1.39991742, 1.39991742, 1.39960346, 1.39960346,
1.39960346, 1.39960346, 1.39844834, 1.39844834, 1.39844834,
1.39844834, 1.39491688, 1.39491688, 1.39491688, 1.39491688,
1.38578674, 1.38578674, 1.38578674, 1.38578674, 1.36558558,
1.36558558, 1.36558558, 1.36558558, 1.32704504, 1.32704504,
1.32704504, 1.32704504, 1.2634186 , 1.2634186 , 1.2634186 ,
1.2634186 , 1.17278602, 1.17278602, 1.17278602, 1.17278602,
1.08804113, 1.08804113, 1.08804113, 1.08804113, 1.04064649,
1.04064649, 1.04064649, 1.04064649, 1.01726903, 1.01726903,
1.01726903, 1.01726903, 1.0068004 , 1.0068004 , 1.0068004 ,
1.0068004 , 1.00249615, 1.00249615, 1.00249615, 1.00249615,
1.00085817, 1.00085817, 1.00085817, 1.00085817, 1.0002775 ,
1.0002775 , 1.0002775 , 1.0002775 , 1.00008471, 1.00008471,
1.00008471, 1.00008471, 1.00002449, 1.00002449, 1.00002449,
1.00002449, 1.00000672, 1.00000672, 1.00000672, 1.00000672,
1.00000176, 1.00000176, 1.00000176, 1.00000176, 1.00000044,
1.00000044, 1.00000044, 1.00000044, 1.0000001 , 1.0000001 ,
1.0000001 , 1.0000001 , 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.39999992, 1.39999992, 1.39999992,
1.39999992, 1.39999895, 1.39999895, 1.39999895, 1.39999895,
1.39999105, 1.39999105, 1.39999105, 1.39999105, 1.39994367,
1.39994367, 1.39994367, 1.39994367, 1.39972221, 1.39972221,
1.39972221, 1.39972221, 1.39888296, 1.39888296, 1.39888296,
1.39888296, 1.39623736, 1.39623736, 1.39623736, 1.39623736,
1.38917502, 1.38917502, 1.38917502, 1.38917502, 1.37301383,
1.37301383, 1.37301383, 1.37301383, 1.34105677, 1.34105677,
1.34105677, 1.34105677, 1.28622103, 1.28622103, 1.28622103,
1.28622103, 1.20454253, 1.20454253, 1.20454253, 1.20454253,
1.11139686, 1.11139686, 1.11139686, 1.11139686, 1.05329462,
1.05329462, 1.05329462, 1.05329462, 1.02344644, 1.02344644,
1.02344644, 1.02344644, 1.00954873, 1.00954873, 1.00954873,
1.00954873, 1.00362188, 1.00362188, 1.00362188, 1.00362188,
1.00128594, 1.00128594, 1.00128594, 1.00128594, 1.00042921,
1.00042921, 1.00042921, 1.00042921, 1.00013517, 1.00013517,
1.00013517, 1.00013517, 1.0000403 , 1.0000403 , 1.0000403 ,
1.0000403 , 1.00001141, 1.00001141, 1.00001141, 1.00001141,
1.00000307, 1.00000307, 1.00000307, 1.00000307, 1.00000079,
1.00000079, 1.00000079, 1.00000079, 1.00000019, 1.00000019,
1.00000019, 1.00000019, 1.00000005, 1.00000005, 1.00000005,
1.00000005, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.39999995, 1.39999995, 1.39999995,
1.39999995, 1.39999932, 1.39999932, 1.39999932, 1.39999932,
1.39999406, 1.39999406, 1.39999406, 1.39999406, 1.39996168,
1.39996168, 1.39996168, 1.39996168, 1.39980601, 1.39980601,
1.39980601, 1.39980601, 1.39919899, 1.39919899, 1.39919899,
1.39919899, 1.3972277 , 1.3972277 , 1.3972277 , 1.3972277 ,
1.39179997, 1.39179997, 1.39179997, 1.39179997, 1.37896914,
1.37896914, 1.37896914, 1.37896914, 1.35270901, 1.35270901,
1.35270901, 1.35270901, 1.30595321, 1.30595321, 1.30595321,
1.30595321, 1.23344038, 1.23344038, 1.23344038, 1.23344038,
1.13938926, 1.13938926, 1.13938926, 1.13938926, 1.06894468,
1.06894468, 1.06894468, 1.06894468, 1.03137135, 1.03137135,
1.03137135, 1.03137135, 1.01320771, 1.01320771, 1.01320771,
1.01320771, 1.0051747 , 1.0051747 , 1.0051747 , 1.0051747 ,
1.00189646, 1.00189646, 1.00189646, 1.00189646, 1.00065301,
1.00065301, 1.00065301, 1.00065301, 1.00021207, 1.00021207,
1.00021207, 1.00021207, 1.00006518, 1.00006518, 1.00006518,
1.00006518, 1.00001901, 1.00001901, 1.00001901, 1.00001901,
1.00000528, 1.00000528, 1.00000528, 1.00000528, 1.0000014 ,
1.0000014 , 1.0000014 , 1.0000014 , 1.00000035, 1.00000035,
1.00000035, 1.00000035, 1.00000009, 1.00000009, 1.00000009,
1.00000009, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}]}
minmod_hllc
{'none_hll': [{'rho': array([1.39995168, 1.39995168, 1.39995168, 1.39995168, 1.39994836,
1.39994836, 1.39994836, 1.39994836, 1.3999409 , 1.3999409 ,
1.3999409 , 1.3999409 , 1.39992812, 1.39992812, 1.39992812,
1.39992812, 1.39990848, 1.39990848, 1.39990848, 1.39990848,
1.39987989, 1.39987989, 1.39987989, 1.39987989, 1.39983964,
1.39983964, 1.39983964, 1.39983964, 1.39978421, 1.39978421,
1.39978421, 1.39978421, 1.39970908, 1.39970908, 1.39970908,
1.39970908, 1.39960853, 1.39960853, 1.39960853, 1.39960853,
1.3994754 , 1.3994754 , 1.3994754 , 1.3994754 , 1.39930081,
1.39930081, 1.39930081, 1.39930081, 1.39907388, 1.39907388,
1.39907388, 1.39907388, 1.39878143, 1.39878143, 1.39878143,
1.39878143, 1.39840763, 1.39840763, 1.39840763, 1.39840763,
1.39793372, 1.39793372, 1.39793372, 1.39793372, 1.39733771,
1.39733771, 1.39733771, 1.39733771, 1.39659414, 1.39659414,
1.39659414, 1.39659414, 1.39567386, 1.39567386, 1.39567386,
1.39567386, 1.39454395, 1.39454395, 1.39454395, 1.39454395,
1.39316777, 1.39316777, 1.39316777, 1.39316777, 1.39150506,
1.39150506, 1.39150506, 1.39150506, 1.38951228, 1.38951228,
1.38951228, 1.38951228, 1.38714319, 1.38714319, 1.38714319,
1.38714319, 1.3843495 , 1.3843495 , 1.3843495 , 1.3843495 ,
1.38108186, 1.38108186, 1.38108186, 1.38108186, 1.37729101,
1.37729101, 1.37729101, 1.37729101, 1.37292914, 1.37292914,
1.37292914, 1.37292914, 1.36795138, 1.36795138, 1.36795138,
1.36795138, 1.36231746, 1.36231746, 1.36231746, 1.36231746,
1.35599341, 1.35599341, 1.35599341, 1.35599341, 1.34895317,
1.34895317, 1.34895317, 1.34895317, 1.34118023, 1.34118023,
1.34118023, 1.34118023, 1.33266896, 1.33266896, 1.33266896,
1.33266896, 1.32342575, 1.32342575, 1.32342575, 1.32342575,
1.31346974, 1.31346974, 1.31346974, 1.31346974, 1.30283319,
1.30283319, 1.30283319, 1.30283319, 1.2915614 , 1.2915614 ,
1.2915614 , 1.2915614 , 1.27971213, 1.27971213, 1.27971213,
1.27971213, 1.26735463, 1.26735463, 1.26735463, 1.26735463,
1.25456823, 1.25456823, 1.25456823, 1.25456823, 1.24144055,
1.24144055, 1.24144055, 1.24144055, 1.22806553, 1.22806553,
1.22806553, 1.22806553, 1.21454119, 1.21454119, 1.21454119,
1.21454119, 1.20096739, 1.20096739, 1.20096739, 1.20096739,
1.18744361, 1.18744361, 1.18744361, 1.18744361, 1.17406679,
1.17406679, 1.17406679, 1.17406679, 1.16092952, 1.16092952,
1.16092952, 1.16092952, 1.14811836, 1.14811836, 1.14811836,
1.14811836, 1.13571261, 1.13571261, 1.13571261, 1.13571261,
1.12378348, 1.12378348, 1.12378348, 1.12378348, 1.11239358,
1.11239358, 1.11239358, 1.11239358, 1.101597 , 1.101597 ,
1.101597 , 1.101597 , 1.09143978, 1.09143978, 1.09143978,
1.09143978, 1.08196095, 1.08196095, 1.08196095, 1.08196095,
1.07319409, 1.07319409, 1.07319409, 1.07319409, 1.06516949,
1.06516949, 1.06516949, 1.06516949, 1.05791705, 1.05791705,
1.05791705, 1.05791705, 1.05146988, 1.05146988, 1.05146988,
1.05146988, 1.04586889, 1.04586889, 1.04586889, 1.04586889,
1.04116846, 1.04116846, 1.04116846, 1.04116846, 1.03744347,
1.03744347, 1.03744347, 1.03744347, 1.03479804, 1.03479804,
1.03479804, 1.03479804, 1.03337638, 1.03337638, 1.03337638]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_rusanov': [{'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.39999999, 1.39999999, 1.39999999, 1.39999999,
1.39999999, 1.39999999, 1.39999999, 1.39999999, 1.39999998,
1.39999998, 1.39999998, 1.39999998, 1.39999996, 1.39999996,
1.39999996, 1.39999996, 1.39999992, 1.39999992, 1.39999992,
1.39999992, 1.39999984, 1.39999984, 1.39999984, 1.39999984,
1.39999968, 1.39999968, 1.39999968, 1.39999968, 1.39999939,
1.39999939, 1.39999939, 1.39999939, 1.39999885, 1.39999885,
1.39999885, 1.39999885, 1.39999786, 1.39999786, 1.39999786,
1.39999786, 1.39999607, 1.39999607, 1.39999607, 1.39999607,
1.39999285, 1.39999285, 1.39999285, 1.39999285, 1.39998716,
1.39998716, 1.39998716, 1.39998716, 1.39997722, 1.39997722,
1.39997722, 1.39997722, 1.39996011, 1.39996011, 1.39996011,
1.39996011, 1.39993104, 1.39993104, 1.39993104, 1.39993104,
1.39988233, 1.39988233, 1.39988233, 1.39988233, 1.39980185,
1.39980185, 1.39980185, 1.39980185, 1.39967076, 1.39967076,
1.39967076, 1.39967076, 1.3994603 , 1.3994603 , 1.3994603 ,
1.3994603 , 1.39912737, 1.39912737, 1.39912737, 1.39912737,
1.39860857, 1.39860857, 1.39860857, 1.39860857, 1.39781248,
1.39781248, 1.39781248, 1.39781248, 1.39660996, 1.39660996,
1.39660996, 1.39660996, 1.39482258, 1.39482258, 1.39482258,
1.39482258, 1.39220953, 1.39220953, 1.39220953, 1.39220953,
1.38845397, 1.38845397, 1.38845397, 1.38845397, 1.3831505 ,
1.3831505 , 1.3831505 , 1.3831505 , 1.37579626, 1.37579626,
1.37579626, 1.37579626, 1.36578903, 1.36578903, 1.36578903,
1.36578903, 1.35243652, 1.35243652, 1.35243652, 1.35243652,
1.33498164, 1.33498164, 1.33498164, 1.33498164, 1.31265121,
1.31265121, 1.31265121, 1.31265121, 1.2847384 , 1.2847384 ,
1.2847384 , 1.2847384 , 1.2507064 , 1.2507064 , 1.2507064 ,
1.2507064 , 1.21017042, 1.21017042, 1.21017042, 1.21017042,
1.16826394, 1.16826394, 1.16826394, 1.16826394, 1.13190268,
1.13190268, 1.13190268, 1.13190268, 1.10181888, 1.10181888,
1.10181888, 1.10181888, 1.07740915, 1.07740915, 1.07740915,
1.07740915, 1.05798425, 1.05798425, 1.05798425, 1.05798425,
1.04280816, 1.04280816, 1.04280816, 1.04280816, 1.03115759,
1.03115759, 1.03115759, 1.03115759, 1.02236355, 1.02236355,
1.02236355, 1.02236355, 1.01583385, 1.01583385, 1.01583385,
1.01583385, 1.01106189, 1.01106189, 1.01106189, 1.01106189,
1.00762663, 1.00762663, 1.00762663, 1.00762663, 1.00518713,
1.00518713, 1.00518713, 1.00518713, 1.00347488, 1.00347488,
1.00347488, 1.00347488, 1.00228528, 1.00228528, 1.00228528,
1.00228528, 1.00146924, 1.00146924, 1.00146924, 1.00146924,
1.00092404, 1.00092404, 1.00092404, 1.00092404, 1.00058227,
1.00058227, 1.00058227, 1.00058227, 1.00039803, 1.00039803,
1.00039803, 1.00039803, 1.00033084, 1.00033084, 1.00033084]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hll': [{'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.39999999,
1.39999999, 1.39999999, 1.39999999, 1.39999998, 1.39999998,
1.39999998, 1.39999998, 1.39999996, 1.39999996, 1.39999996,
1.39999996, 1.39999992, 1.39999992, 1.39999992, 1.39999992,
1.39999984, 1.39999984, 1.39999984, 1.39999984, 1.39999968,
1.39999968, 1.39999968, 1.39999968, 1.39999937, 1.39999937,
1.39999937, 1.39999937, 1.39999878, 1.39999878, 1.39999878,
1.39999878, 1.39999768, 1.39999768, 1.39999768, 1.39999768,
1.39999564, 1.39999564, 1.39999564, 1.39999564, 1.39999192,
1.39999192, 1.39999192, 1.39999192, 1.39998523, 1.39998523,
1.39998523, 1.39998523, 1.39997335, 1.39997335, 1.39997335,
1.39997335, 1.39995258, 1.39995258, 1.39995258, 1.39995258,
1.39991678, 1.39991678, 1.39991678, 1.39991678, 1.39985601,
1.39985601, 1.39985601, 1.39985601, 1.39975438, 1.39975438,
1.39975438, 1.39975438, 1.39958702, 1.39958702, 1.39958702,
1.39958702, 1.39931575, 1.39931575, 1.39931575, 1.39931575,
1.39888301, 1.39888301, 1.39888301, 1.39888301, 1.39820389,
1.39820389, 1.39820389, 1.39820389, 1.39715582, 1.39715582,
1.39715582, 1.39715582, 1.39556586, 1.39556586, 1.39556586,
1.39556586, 1.39319593, 1.39319593, 1.39319593, 1.39319593,
1.3897269 , 1.3897269 , 1.3897269 , 1.3897269 , 1.38474325,
1.38474325, 1.38474325, 1.38474325, 1.37772106, 1.37772106,
1.37772106, 1.37772106, 1.36802356, 1.36802356, 1.36802356,
1.36802356, 1.35490885, 1.35490885, 1.35490885, 1.35490885,
1.33755595, 1.33755595, 1.33755595, 1.33755595, 1.31511724,
1.31511724, 1.31511724, 1.31511724, 1.28681068, 1.28681068,
1.28681068, 1.28681068, 1.25204433, 1.25204433, 1.25204433,
1.25204433, 1.21040786, 1.21040786, 1.21040786, 1.21040786,
1.16730937, 1.16730937, 1.16730937, 1.16730937, 1.13010572,
1.13010572, 1.13010572, 1.13010572, 1.09954214, 1.09954214,
1.09954214, 1.09954214, 1.07494493, 1.07494493, 1.07494493,
1.07494493, 1.05554943, 1.05554943, 1.05554943, 1.05554943,
1.04054789, 1.04054789, 1.04054789, 1.04054789, 1.02915605,
1.02915605, 1.02915605, 1.02915605, 1.02065733, 1.02065733,
1.02065733, 1.02065733, 1.01442545, 1.01442545, 1.01442545,
1.01442545, 1.00993187, 1.00993187, 1.00993187, 1.00993187,
1.00674352, 1.00674352, 1.00674352, 1.00674352, 1.00451476,
1.00451476, 1.00451476, 1.00451476, 1.0029769 , 1.0029769 ,
1.0029769 , 1.0029769 , 1.00192734, 1.00192734, 1.00192734,
1.00192734, 1.00121949, 1.00121949, 1.00121949, 1.00121949,
1.00075296, 1.00075296, 1.00075296, 1.00075296, 1.00046281,
1.00046281, 1.00046281, 1.00046281, 1.0003066 , 1.0003066 ,
1.0003066 , 1.0003066 , 1.00024944, 1.00024944, 1.00024944]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}], 'minmod_hllc': [{'rho': array([1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4,
1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1.4, 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.11831494, 1.11831494,
1.11831494, 1.11831494, 1.00923298, 1.00923298, 1.00923298,
1.00923298, 1.00043756, 1.00043756, 1.00043756, 1.00043756,
1.00001417, 1.00001417, 1.00001417, 1.00001417, 1.00000033,
1.00000033, 1.00000033, 1.00000033, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.21607423, 1.21607423,
1.21607423, 1.21607423, 1.0358938 , 1.0358938 , 1.0358938 ,
1.0358938 , 1.0037377 , 1.0037377 , 1.0037377 , 1.0037377 ,
1.00027776, 1.00027776, 1.00027776, 1.00027776, 1.00001576,
1.00001576, 1.00001576, 1.00001576, 1.00000071, 1.00000071,
1.00000071, 1.00000071, 1.00000003, 1.00000003, 1.00000003,
1.00000003, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.28669245, 1.28669245,
1.28669245, 1.28669245, 1.08302128, 1.08302128, 1.08302128,
1.08302128, 1.01268954, 1.01268954, 1.01268954, 1.01268954,
1.00145562, 1.00145562, 1.00145562, 1.00145562, 1.00013095,
1.00013095, 1.00013095, 1.00013095, 1.00000955, 1.00000955,
1.00000955, 1.00000955, 1.00000058, 1.00000058, 1.00000058,
1.00000058, 1.00000003, 1.00000003, 1.00000003, 1.00000003,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.33021365, 1.33021365,
1.33021365, 1.33021365, 1.14608853, 1.14608853, 1.14608853,
1.14608853, 1.03038575, 1.03038575, 1.03038575, 1.03038575,
1.00467925, 1.00467925, 1.00467925, 1.00467925, 1.00057051,
1.00057051, 1.00057051, 1.00057051, 1.00005712, 1.00005712,
1.00005712, 1.00005712, 1.00000481, 1.00000481, 1.00000481,
1.00000481, 1.00000035, 1.00000035, 1.00000035, 1.00000035,
1.00000002, 1.00000002, 1.00000002, 1.00000002, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.35701844, 1.35701844,
1.35701844, 1.35701844, 1.21170242, 1.21170242, 1.21170242,
1.21170242, 1.05787438, 1.05787438, 1.05787438, 1.05787438,
1.01139116, 1.01139116, 1.01139116, 1.01139116, 1.00176274,
1.00176274, 1.00176274, 1.00176274, 1.00022429, 1.00022429,
1.00022429, 1.00022429, 1.00002413, 1.00002413, 1.00002413,
1.00002413, 1.00000224, 1.00000224, 1.00000224, 1.00000224,
1.00000018, 1.00000018, 1.00000018, 1.00000018, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.37352757, 1.37352757,
1.37352757, 1.37352757, 1.26668567, 1.26668567, 1.26668567,
1.26668567, 1.09940265, 1.09940265, 1.09940265, 1.09940265,
1.02324968, 1.02324968, 1.02324968, 1.02324968, 1.0043598 ,
1.0043598 , 1.0043598 , 1.0043598 , 1.00067499, 1.00067499,
1.00067499, 1.00067499, 1.00008852, 1.00008852, 1.00008852,
1.00008852, 1.00001003, 1.00001003, 1.00001003, 1.00001003,
1.000001 , 1.000001 , 1.000001 , 1.000001 , 1.00000009,
1.00000009, 1.00000009, 1.00000009, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.38369557, 1.38369557,
1.38369557, 1.38369557, 1.30721079, 1.30721079, 1.30721079,
1.30721079, 1.1516511 , 1.1516511 , 1.1516511 , 1.1516511 ,
1.04216789, 1.04216789, 1.04216789, 1.04216789, 1.00928188,
1.00928188, 1.00928188, 1.00928188, 1.00169128, 1.00169128,
1.00169128, 1.00169128, 1.00026179, 1.00026179, 1.00026179,
1.00026179, 1.00003509, 1.00003509, 1.00003509, 1.00003509,
1.00000414, 1.00000414, 1.00000414, 1.00000414, 1.00000043,
1.00000043, 1.00000043, 1.00000043, 1.00000004, 1.00000004,
1.00000004, 1.00000004, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.38995807, 1.38995807,
1.38995807, 1.38995807, 1.3362727 , 1.3362727 , 1.3362727 ,
1.3362727 , 1.20681471, 1.20681471, 1.20681471, 1.20681471,
1.06885447, 1.06885447, 1.06885447, 1.06885447, 1.01761457,
1.01761457, 1.01761457, 1.01761457, 1.00370537, 1.00370537,
1.00370537, 1.00370537, 1.00066177, 1.00066177, 1.00066177,
1.00066177, 1.00010247, 1.00010247, 1.00010247, 1.00010247,
1.00001397, 1.00001397, 1.00001397, 1.00001397, 1.0000017 ,
1.0000017 , 1.0000017 , 1.0000017 , 1.00000019, 1.00000019,
1.00000019, 1.00000019, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39381515, 1.39381515,
1.39381515, 1.39381515, 1.35669868, 1.35669868, 1.35669868,
1.35669868, 1.25507469, 1.25507469, 1.25507469, 1.25507469,
1.10670175, 1.10670175, 1.10670175, 1.10670175, 1.03061304,
1.03061304, 1.03061304, 1.03061304, 1.00730695, 1.00730695,
1.00730695, 1.00730695, 1.00148229, 1.00148229, 1.00148229,
1.00148229, 1.00026069, 1.00026069, 1.00026069, 1.00026069,
1.00004039, 1.00004039, 1.00004039, 1.00004039, 1.00000558,
1.00000558, 1.00000558, 1.00000558, 1.00000069, 1.00000069,
1.00000069, 1.00000069, 1.00000008, 1.00000008, 1.00000008,
1.00000008, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39619074, 1.39619074,
1.39619074, 1.39619074, 1.37083527, 1.37083527, 1.37083527,
1.37083527, 1.29312777, 1.29312777, 1.29312777, 1.29312777,
1.15313429, 1.15313429, 1.15313429, 1.15313429, 1.04970419,
1.04970419, 1.04970419, 1.04970419, 1.01327541, 1.01327541,
1.01327541, 1.01327541, 1.00301597, 1.00301597, 1.00301597,
1.00301597, 1.00059451, 1.00059451, 1.00059451, 1.00059451,
1.00010327, 1.00010327, 1.00010327, 1.00010327, 1.00001601,
1.00001601, 1.00001601, 1.00001601, 1.00000224, 1.00000224,
1.00000224, 1.00000224, 1.00000028, 1.00000028, 1.00000028,
1.00000028, 1.00000003, 1.00000003, 1.00000003, 1.00000003,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39765387, 1.39765387,
1.39765387, 1.39765387, 1.38050049, 1.38050049, 1.38050049,
1.38050049, 1.32232286, 1.32232286, 1.32232286, 1.32232286,
1.20239962, 1.20239962, 1.20239962, 1.20239962, 1.07542212,
1.07542212, 1.07542212, 1.07542212, 1.02249875, 1.02249875,
1.02249875, 1.02249875, 1.00567434, 1.00567434, 1.00567434,
1.00567434, 1.00124046, 1.00124046, 1.00124046, 1.00124046,
1.00023899, 1.00023899, 1.00023899, 1.00023899, 1.00004109,
1.00004109, 1.00004109, 1.00004109, 1.00000637, 1.00000637,
1.00000637, 1.00000637, 1.0000009 , 1.0000009 , 1.0000009 ,
1.0000009 , 1.00000012, 1.00000012, 1.00000012, 1.00000012,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39855501, 1.39855501,
1.39855501, 1.39855501, 1.38704363, 1.38704363, 1.38704363,
1.38704363, 1.34423731, 1.34423731, 1.34423731, 1.34423731,
1.24659851, 1.24659851, 1.24659851, 1.24659851, 1.11055425,
1.11055425, 1.11055425, 1.11055425, 1.0359939 , 1.0359939 ,
1.0359939 , 1.0359939 , 1.00998968, 1.00998968, 1.00998968,
1.00998968, 1.00240293, 1.00240293, 1.00240293, 1.00240293,
1.00050912, 1.00050912, 1.00050912, 1.00050912, 1.00009627,
1.00009627, 1.00009627, 1.00009627, 1.00001642, 1.00001642,
1.00001642, 1.00001642, 1.00000255, 1.00000255, 1.00000255,
1.00000255, 1.00000036, 1.00000036, 1.00000036, 1.00000036,
1.00000005, 1.00000005, 1.00000005, 1.00000005, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39911003, 1.39911003,
1.39911003, 1.39911003, 1.39143715, 1.39143715, 1.39143715,
1.39143715, 1.36039506, 1.36039506, 1.36039506, 1.36039506,
1.28277859, 1.28277859, 1.28277859, 1.28277859, 1.15308494,
1.15308494, 1.15308494, 1.15308494, 1.05491762, 1.05491762,
1.05491762, 1.05491762, 1.01663984, 1.01663984, 1.01663984,
1.01663984, 1.00437036, 1.00437036, 1.00437036, 1.00437036,
1.00101107, 1.00101107, 1.00101107, 1.00101107, 1.00020871,
1.00020871, 1.00020871, 1.00020871, 1.00003885, 1.00003885,
1.00003885, 1.00003885, 1.00000658, 1.00000658, 1.00000658,
1.00000658, 1.00000102, 1.00000102, 1.00000102, 1.00000102,
1.00000015, 1.00000015, 1.00000015, 1.00000015, 1.00000002,
1.00000002, 1.00000002, 1.00000002, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39945187, 1.39945187,
1.39945187, 1.39945187, 1.39436705, 1.39436705, 1.39436705,
1.39436705, 1.37213202, 1.37213202, 1.37213202, 1.37213202,
1.31166097, 1.31166097, 1.31166097, 1.31166097, 1.19836302,
1.19836302, 1.19836302, 1.19836302, 1.07969516, 1.07969516,
1.07969516, 1.07969516, 1.02638253, 1.02638253, 1.02638253,
1.02638253, 1.00752915, 1.00752915, 1.00752915, 1.00752915,
1.00189049, 1.00189049, 1.00189049, 1.00189049, 1.00042342,
1.00042342, 1.00042342, 1.00042342, 1.00008551, 1.00008551,
1.00008551, 1.00008551, 1.00001571, 1.00001571, 1.00001571,
1.00001571, 1.00000264, 1.00000264, 1.00000264, 1.00000264,
1.00000041, 1.00000041, 1.00000041, 1.00000041, 1.00000006,
1.00000006, 1.00000006, 1.00000006, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.3996624 , 1.3996624 ,
1.3996624 , 1.3996624 , 1.3963095 , 1.3963095 , 1.3963095 ,
1.3963095 , 1.38055079, 1.38055079, 1.38055079, 1.38055079,
1.33423947, 1.33423947, 1.33423947, 1.33423947, 1.23974605,
1.23974605, 1.23974605, 1.23974605, 1.11267337, 1.11267337,
1.11267337, 1.11267337, 1.04007189, 1.04007189, 1.04007189,
1.04007189, 1.01236277, 1.01236277, 1.01236277, 1.01236277,
1.00335357, 1.00335357, 1.00335357, 1.00335357, 1.00081084,
1.00081084, 1.00081084, 1.00081084, 1.0001767 , 1.0001767 ,
1.0001767 , 1.0001767 , 1.00003502, 1.00003502, 1.00003502,
1.00003502, 1.00000636, 1.00000636, 1.00000636, 1.00000636,
1.00000106, 1.00000106, 1.00000106, 1.00000106, 1.00000017,
1.00000017, 1.00000017, 1.00000017, 1.00000002, 1.00000002,
1.00000002, 1.00000002, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39979207, 1.39979207,
1.39979207, 1.39979207, 1.39759081, 1.39759081, 1.39759081,
1.39759081, 1.38652446, 1.38652446, 1.38652446, 1.38652446,
1.35157893, 1.35157893, 1.35157893, 1.35157893, 1.27446219,
1.27446219, 1.27446219, 1.27446219, 1.15229645, 1.15229645,
1.15229645, 1.15229645, 1.05869191, 1.05869191, 1.05869191,
1.05869191, 1.0194717 , 1.0194717 , 1.0194717 , 1.0194717 ,
1.00567916, 1.00567916, 1.00567916, 1.00567916, 1.00147584,
1.00147584, 1.00147584, 1.00147584, 1.00034552, 1.00034552,
1.00034552, 1.00034552, 1.00007354, 1.00007354, 1.00007354,
1.00007354, 1.00001434, 1.00001434, 1.00001434, 1.00001434,
1.00000258, 1.00000258, 1.00000258, 1.00000258, 1.00000043,
1.00000043, 1.00000043, 1.00000043, 1.00000007, 1.00000007,
1.00000007, 1.00000007, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39987194, 1.39987194,
1.39987194, 1.39987194, 1.39843228, 1.39843228, 1.39843228,
1.39843228, 1.3907236 , 1.3907236 , 1.3907236 , 1.3907236 ,
1.36469302, 1.36469302, 1.36469302, 1.36469302, 1.30292774,
1.30292774, 1.30292774, 1.30292774, 1.19460985, 1.19460985,
1.19460985, 1.19460985, 1.08259733, 1.08259733, 1.08259733,
1.08259733, 1.02951992, 1.02951992, 1.02951992, 1.02951992,
1.009229 , 1.009229 , 1.009229 , 1.009229 , 1.00256783,
1.00256783, 1.00256783, 1.00256783, 1.00064332, 1.00064332,
1.00064332, 1.00064332, 1.00014648, 1.00014648, 1.00014648,
1.00014648, 1.00003055, 1.00003055, 1.00003055, 1.00003055,
1.00000587, 1.00000587, 1.00000587, 1.00000587, 1.00000105,
1.00000105, 1.00000105, 1.00000105, 1.00000017, 1.00000017,
1.00000017, 1.00000017, 1.00000003, 1.00000003, 1.00000003,
1.00000003, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39992113, 1.39992113,
1.39992113, 1.39992113, 1.39898277, 1.39898277, 1.39898277,
1.39898277, 1.39365119, 1.39365119, 1.39365119, 1.39365119,
1.37448052, 1.37448052, 1.37448052, 1.37448052, 1.32581494,
1.32581494, 1.32581494, 1.32581494, 1.23388396, 1.23388396,
1.23388396, 1.23388396, 1.1137857 , 1.1137857 , 1.1137857 ,
1.1137857 , 1.04324167, 1.04324167, 1.04324167, 1.04324167,
1.01444538, 1.01444538, 1.01444538, 1.01444538, 1.00429054,
1.00429054, 1.00429054, 1.00429054, 1.00114649, 1.00114649,
1.00114649, 1.00114649, 1.00027829, 1.00027829, 1.00027829,
1.00027829, 1.00006185, 1.00006185, 1.00006185, 1.00006185,
1.00001267, 1.00001267, 1.00001267, 1.00001267, 1.00000241,
1.00000241, 1.00000241, 1.00000241, 1.00000043, 1.00000043,
1.00000043, 1.00000043, 1.00000007, 1.00000007, 1.00000007,
1.00000007, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39995142, 1.39995142,
1.39995142, 1.39995142, 1.39934166, 1.39934166, 1.39934166,
1.39934166, 1.39567753, 1.39567753, 1.39567753, 1.39567753,
1.38170061, 1.38170061, 1.38170061, 1.38170061, 1.34390623,
1.34390623, 1.34390623, 1.34390623, 1.2674179 , 1.2674179 ,
1.2674179 , 1.2674179 , 1.15110288, 1.15110288, 1.15110288,
1.15110288, 1.06150021, 1.06150021, 1.06150021, 1.06150021,
1.02186743, 1.02186743, 1.02186743, 1.02186743, 1.00691128,
1.00691128, 1.00691128, 1.00691128, 1.00196402, 1.00196402,
1.00196402, 1.00196402, 1.0005067 , 1.0005067 , 1.0005067 ,
1.0005067 , 1.00011965, 1.00011965, 1.00011965, 1.00011965,
1.00002603, 1.00002603, 1.00002603, 1.00002603, 1.00000525,
1.00000525, 1.00000525, 1.00000525, 1.00000099, 1.00000099,
1.00000099, 1.00000099, 1.00000017, 1.00000017, 1.00000017,
1.00000017, 1.00000003, 1.00000003, 1.00000003, 1.00000003,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39997008, 1.39997008,
1.39997008, 1.39997008, 1.39957493, 1.39957493, 1.39957493,
1.39957493, 1.39707105, 1.39707105, 1.39707105, 1.39707105,
1.38697213, 1.38697213, 1.38697213, 1.38697213, 1.35799452,
1.35799452, 1.35799452, 1.35799452, 1.29545775, 1.29545775,
1.29545775, 1.29545775, 1.19107179, 1.19107179, 1.19107179,
1.19107179, 1.08461016, 1.08461016, 1.08461016, 1.08461016,
1.03208805, 1.03208805, 1.03208805, 1.03208805, 1.010769 ,
1.010769 , 1.010769 , 1.010769 , 1.00324598, 1.00324598,
1.00324598, 1.00324598, 1.00088771, 1.00088771, 1.00088771,
1.00088771, 1.00022208, 1.00022208, 1.00022208, 1.00022208,
1.00005118, 1.00005118, 1.00005118, 1.00005118, 1.00001093,
1.00001093, 1.00001093, 1.00001093, 1.00000217, 1.00000217,
1.00000217, 1.00000217, 1.0000004 , 1.0000004 , 1.0000004 ,
1.0000004 , 1.00000007, 1.00000007, 1.00000007, 1.00000007,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39998157, 1.39998157,
1.39998157, 1.39998157, 1.39972613, 1.39972613, 1.39972613,
1.39972613, 1.39802387, 1.39802387, 1.39802387, 1.39802387,
1.39078576, 1.39078576, 1.39078576, 1.39078576, 1.36882146,
1.36882146, 1.36882146, 1.36882146, 1.31847864, 1.31847864,
1.31847864, 1.31847864, 1.22868706, 1.22868706, 1.22868706,
1.22868706, 1.11426113, 1.11426113, 1.11426113, 1.11426113,
1.04574926, 1.04574926, 1.04574926, 1.04574926, 1.01627097,
1.01627097, 1.01627097, 1.01627097, 1.00519147, 1.00519147,
1.00519147, 1.00519147, 1.0015015 , 1.0015015 , 1.0015015 ,
1.0015015 , 1.00039704, 1.00039704, 1.00039704, 1.00039704,
1.00009667, 1.00009667, 1.00009667, 1.00009667, 1.0000218 ,
1.0000218 , 1.0000218 , 1.0000218 , 1.00000458, 1.00000458,
1.00000458, 1.00000458, 1.0000009 , 1.0000009 , 1.0000009 ,
1.0000009 , 1.00000017, 1.00000017, 1.00000017, 1.00000017,
1.00000003, 1.00000003, 1.00000003, 1.00000003, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39998865, 1.39998865,
1.39998865, 1.39998865, 1.39982389, 1.39982389, 1.39982389,
1.39982389, 1.39867198, 1.39867198, 1.39867198, 1.39867198,
1.39352204, 1.39352204, 1.39352204, 1.39352204, 1.37704455,
1.37704455, 1.37704455, 1.37704455, 1.33707618, 1.33707618,
1.33707618, 1.33707618, 1.26124125, 1.26124125, 1.26124125,
1.26124125, 1.14967105, 1.14967105, 1.14967105, 1.14967105,
1.06362378, 1.06362378, 1.06362378, 1.06362378, 1.02390638,
1.02390638, 1.02390638, 1.02390638, 1.00805587, 1.00805587,
1.00805587, 1.00805587, 1.00245907, 1.00245907, 1.00245907,
1.00245907, 1.00068583, 1.00068583, 1.00068583, 1.00068583,
1.00017603, 1.00017603, 1.00017603, 1.00017603, 1.00004183,
1.00004183, 1.00004183, 1.00004183, 1.00000925, 1.00000925,
1.00000925, 1.00000925, 1.00000191, 1.00000191, 1.00000191,
1.00000191, 1.00000037, 1.00000037, 1.00000037, 1.00000037,
1.00000007, 1.00000007, 1.00000007, 1.00000007, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999301, 1.39999301,
1.39999301, 1.39999301, 1.39988695, 1.39988695, 1.39988695,
1.39988695, 1.39911075, 1.39911075, 1.39911075, 1.39911075,
1.39547079, 1.39547079, 1.39547079, 1.39547079, 1.38322431,
1.38322431, 1.38322431, 1.38322431, 1.35188591, 1.35188591,
1.35188591, 1.35188591, 1.28887641, 1.28887641, 1.28887641,
1.28887641, 1.18770935, 1.18770935, 1.18770935, 1.18770935,
1.08600586, 1.08600586, 1.08600586, 1.08600586, 1.03421193,
1.03421193, 1.03421193, 1.03421193, 1.01215736, 1.01215736,
1.01215736, 1.01215736, 1.00390928, 1.00390928, 1.00390928,
1.00390928, 1.00114775, 1.00114775, 1.00114775, 1.00114775,
1.00030995, 1.00030995, 1.00030995, 1.00030995, 1.00007747,
1.00007747, 1.00007747, 1.00007747, 1.00001802, 1.00001802,
1.00001802, 1.00001802, 1.00000392, 1.00000392, 1.00000392,
1.00000392, 1.0000008 , 1.0000008 , 1.0000008 , 1.0000008 ,
1.00000015, 1.00000015, 1.00000015, 1.00000015, 1.00000003,
1.00000003, 1.00000003, 1.00000003, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999569, 1.39999569,
1.39999569, 1.39999569, 1.39992755, 1.39992755, 1.39992755,
1.39992755, 1.39940654, 1.39940654, 1.39940654, 1.39940654,
1.39684934, 1.39684934, 1.39684934, 1.39684934, 1.38782434,
1.38782434, 1.38782434, 1.38782434, 1.36352834, 1.36352834,
1.36352834, 1.36352834, 1.31193777, 1.31193777, 1.31193777,
1.31193777, 1.22397155, 1.22397155, 1.22397155, 1.22397155,
1.11430695, 1.11430695, 1.11430695, 1.11430695, 1.04775624,
1.04775624, 1.04775624, 1.04775624, 1.01787325, 1.01787325,
1.01787325, 1.01787325, 1.00604553, 1.00604553, 1.00604553,
1.00604553, 1.00186535, 1.00186535, 1.00186535, 1.00186535,
1.00052907, 1.00052907, 1.00052907, 1.00052907, 1.00013882,
1.00013882, 1.00013882, 1.00013882, 1.00003388, 1.00003388,
1.00003388, 1.00003388, 1.00000773, 1.00000773, 1.00000773,
1.00000773, 1.00000165, 1.00000165, 1.00000165, 1.00000165,
1.00000033, 1.00000033, 1.00000033, 1.00000033, 1.00000006,
1.00000006, 1.00000006, 1.00000006, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999735, 1.39999735,
1.39999735, 1.39999735, 1.39995364, 1.39995364, 1.39995364,
1.39995364, 1.39960516, 1.39960516, 1.39960516, 1.39960516,
1.39781856, 1.39781856, 1.39781856, 1.39781856, 1.39121895,
1.39121895, 1.39121895, 1.39121895, 1.37257512, 1.37257512,
1.37257512, 1.37257512, 1.33089036, 1.33089036, 1.33089036,
1.33089036, 1.25569524, 1.25569524, 1.25569524, 1.25569524,
1.14809255, 1.14809255, 1.14809255, 1.14809255, 1.06524107,
1.06524107, 1.06524107, 1.06524107, 1.02565101, 1.02565101,
1.02565101, 1.02565101, 1.00911151, 1.00911151, 1.00911151,
1.00911151, 1.00295014, 1.00295014, 1.00295014, 1.00295014,
1.00087744, 1.00087744, 1.00087744, 1.00087744, 1.0002413 ,
1.0002413 , 1.0002413 , 1.0002413 , 1.0000617 , 1.0000617 ,
1.0000617 , 1.0000617 , 1.00001474, 1.00001474, 1.00001474,
1.00001474, 1.0000033 , 1.0000033 , 1.0000033 , 1.0000033 ,
1.0000007 , 1.0000007 , 1.0000007 , 1.0000007 , 1.00000014,
1.00000014, 1.00000014, 1.00000014, 1.00000003, 1.00000003,
1.00000003, 1.00000003, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999837, 1.39999837,
1.39999837, 1.39999837, 1.39997038, 1.39997038, 1.39997038,
1.39997038, 1.39973805, 1.39973805, 1.39973805, 1.39973805,
1.39849618, 1.39849618, 1.39849618, 1.39849618, 1.3937043 ,
1.3937043 , 1.3937043 , 1.3937043 , 1.37953124, 1.37953124,
1.37953124, 1.37953124, 1.34625348, 1.34625348, 1.34625348,
1.34625348, 1.2829543 , 1.2829543 , 1.2829543 , 1.2829543 ,
1.18449482, 1.18449482, 1.18449482, 1.18449482, 1.08695305,
1.08695305, 1.08695305, 1.08695305, 1.0359817 , 1.0359817 ,
1.0359817 , 1.0359817 , 1.01340663, 1.01340663, 1.01340663,
1.01340663, 1.00454869, 1.00454869, 1.00454869, 1.00454869,
1.00141667, 1.00141667, 1.00141667, 1.00141667, 1.00040772,
1.00040772, 1.00040772, 1.00040772, 1.00010905, 1.00010905,
1.00010905, 1.00010905, 1.00002724, 1.00002724, 1.00002724,
1.00002724, 1.00000638, 1.00000638, 1.00000638, 1.00000638,
1.00000141, 1.00000141, 1.00000141, 1.00000141, 1.00000029,
1.00000029, 1.00000029, 1.00000029, 1.00000006, 1.00000006,
1.00000006, 1.00000006, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999899, 1.39999899,
1.39999899, 1.39999899, 1.3999811 , 1.3999811 , 1.3999811 ,
1.3999811 , 1.39982668, 1.39982668, 1.39982668, 1.39982668,
1.39896749, 1.39896749, 1.39896749, 1.39896749, 1.39551085,
1.39551085, 1.39551085, 1.39551085, 1.38482871, 1.38482871,
1.38482871, 1.38482871, 1.35855285, 1.35855285, 1.35855285,
1.35855285, 1.30600344, 1.30600344, 1.30600344, 1.30600344,
1.21961612, 1.21961612, 1.21961612, 1.21961612, 1.11405494,
1.11405494, 1.11405494, 1.11405494, 1.04937502, 1.04937502,
1.04937502, 1.04937502, 1.01928228, 1.01928228, 1.01928228,
1.01928228, 1.0068482 , 1.0068482 , 1.0068482 , 1.0068482 ,
1.00223057, 1.00223057, 1.00223057, 1.00223057, 1.00067095,
1.00067095, 1.00067095, 1.00067095, 1.00018746, 1.00018746,
1.00018746, 1.00018746, 1.00004889, 1.00004889, 1.00004889,
1.00004889, 1.00001196, 1.00001196, 1.00001196, 1.00001196,
1.00000275, 1.00000275, 1.00000275, 1.00000275, 1.0000006 ,
1.0000006 , 1.0000006 , 1.0000006 , 1.00000012, 1.00000012,
1.00000012, 1.00000012, 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999938, 1.39999938,
1.39999938, 1.39999938, 1.39998795, 1.39998795, 1.39998795,
1.39998795, 1.3998856 , 1.3998856 , 1.3998856 , 1.3998856 ,
1.39929375, 1.39929375, 1.39929375, 1.39929375, 1.39681528,
1.39681528, 1.39681528, 1.39681528, 1.38882772, 1.38882772,
1.38882772, 1.38882772, 1.36828854, 1.36828854, 1.36828854,
1.36828854, 1.32521236, 1.32521236, 1.32521236, 1.32521236,
1.25062517, 1.25062517, 1.25062517, 1.25062517, 1.14642363,
1.14642363, 1.14642363, 1.14642363, 1.06647357, 1.06647357,
1.06647357, 1.06647357, 1.0271506 , 1.0271506 , 1.0271506 ,
1.0271506 , 1.01008121, 1.01008121, 1.01008121, 1.01008121,
1.00343023, 1.00343023, 1.00343023, 1.00343023, 1.00107711,
1.00107711, 1.00107711, 1.00107711, 1.00031399, 1.00031399,
1.00031399, 1.00031399, 1.00008541, 1.00008541, 1.00008541,
1.00008541, 1.00002177, 1.00002177, 1.00002177, 1.00002177,
1.00000522, 1.00000522, 1.00000522, 1.00000522, 1.00000118,
1.00000118, 1.00000118, 1.00000118, 1.00000025, 1.00000025,
1.00000025, 1.00000025, 1.00000005, 1.00000005, 1.00000005,
1.00000005, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999962, 1.39999962,
1.39999962, 1.39999962, 1.39999233, 1.39999233, 1.39999233,
1.39999233, 1.39992467, 1.39992467, 1.39992467, 1.39992467,
1.39951861, 1.39951861, 1.39951861, 1.39951861, 1.39775141,
1.39775141, 1.39775141, 1.39775141, 1.39182223, 1.39182223,
1.39182223, 1.39182223, 1.37591549, 1.37591549, 1.37591549,
1.37591549, 1.34101176, 1.34101176, 1.34101176, 1.34101176,
1.27753855, 1.27753855, 1.27753855, 1.27753855, 1.18141045,
1.18141045, 1.18141045, 1.18141045, 1.08756174, 1.08756174,
1.08756174, 1.08756174, 1.03746461, 1.03746461, 1.03746461,
1.03746461, 1.0145302 , 1.0145302 , 1.0145302 , 1.0145302 ,
1.00515922, 1.00515922, 1.00515922, 1.00515922, 1.00168932,
1.00168932, 1.00168932, 1.00168932, 1.00051321, 1.00051321,
1.00051321, 1.00051321, 1.00014541, 1.00014541, 1.00014541,
1.00014541, 1.0000386 , 1.0000386 , 1.0000386 , 1.0000386 ,
1.00000964, 1.00000964, 1.00000964, 1.00000964, 1.00000227,
1.00000227, 1.00000227, 1.00000227, 1.00000051, 1.00000051,
1.00000051, 1.00000051, 1.00000011, 1.00000011, 1.00000011,
1.00000011, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999976, 1.39999976,
1.39999976, 1.39999976, 1.39999512, 1.39999512, 1.39999512,
1.39999512, 1.3999505 , 1.3999505 , 1.3999505 , 1.3999505 ,
1.39967295, 1.39967295, 1.39967295, 1.39967295, 1.39841943,
1.39841943, 1.39841943, 1.39841943, 1.39404791, 1.39404791,
1.39404791, 1.39404791, 1.38183389, 1.38183389, 1.38183389,
1.38183389, 1.35385188, 1.35385188, 1.35385188, 1.35385188,
1.30054548, 1.30054548, 1.30054548, 1.30054548, 1.21554401,
1.21554401, 1.21554401, 1.21554401, 1.113588 , 1.113588 ,
1.113588 , 1.113588 , 1.05068574, 1.05068574, 1.05068574,
1.05068574, 1.02052392, 1.02052392, 1.02052392, 1.02052392,
1.00759846, 1.00759846, 1.00759846, 1.00759846, 1.00259191,
1.00259191, 1.00259191, 1.00259191, 1.00081978, 1.00081978,
1.00081978, 1.00081978, 1.0002417 , 1.0002417 , 1.0002417 ,
1.0002417 , 1.00006673, 1.00006673, 1.00006673, 1.00006673,
1.00001732, 1.00001732, 1.00001732, 1.00001732, 1.00000424,
1.00000424, 1.00000424, 1.00000424, 1.00000098, 1.00000098,
1.00000098, 1.00000098, 1.00000022, 1.00000022, 1.00000022,
1.00000022, 1.00000005, 1.00000005, 1.00000005, 1.00000005,
1.00000001, 1.00000001, 1.00000001, 1.00000001, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999986, 1.39999986,
1.39999986, 1.39999986, 1.3999969 , 1.3999969 , 1.3999969 ,
1.3999969 , 1.39996754, 1.39996754, 1.39996754, 1.39996754,
1.3997785 , 1.3997785 , 1.3997785 , 1.3997785 , 1.39889362,
1.39889362, 1.39889362, 1.39889362, 1.39569079, 1.39569079,
1.39569079, 1.39569079, 1.38638637, 1.38638637, 1.38638637,
1.38638637, 1.36417293, 1.36417293, 1.36417293, 1.36417293,
1.31994385, 1.31994385, 1.31994385, 1.31994385, 1.24592869,
1.24592869, 1.24592869, 1.24592869, 1.14469896, 1.14469896,
1.14469896, 1.14469896, 1.06740585, 1.06740585, 1.06740585,
1.06740585, 1.02844412, 1.02844412, 1.02844412, 1.02844412,
1.01096997, 1.01096997, 1.01096997, 1.01096997, 1.00389488,
1.00389488, 1.00389488, 1.00389488, 1.00128131, 1.00128131,
1.00128131, 1.00128131, 1.00039271, 1.00039271, 1.00039271,
1.00039271, 1.00011266, 1.00011266, 1.00011266, 1.00011266,
1.00003038, 1.00003038, 1.00003038, 1.00003038, 1.00000773,
1.00000773, 1.00000773, 1.00000773, 1.00000186, 1.00000186,
1.00000186, 1.00000186, 1.00000042, 1.00000042, 1.00000042,
1.00000042, 1.00000009, 1.00000009, 1.00000009, 1.00000009,
1.00000002, 1.00000002, 1.00000002, 1.00000002, 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999991, 1.39999991,
1.39999991, 1.39999991, 1.39999803, 1.39999803, 1.39999803,
1.39999803, 1.39997875, 1.39997875, 1.39997875, 1.39997875,
1.39985041, 1.39985041, 1.39985041, 1.39985041, 1.39922858,
1.39922858, 1.39922858, 1.39922858, 1.39689572, 1.39689572,
1.39689572, 1.39689572, 1.38985989, 1.38985989, 1.38985989,
1.38985989, 1.37238562, 1.37238562, 1.37238562, 1.37238562,
1.33609516, 1.33609516, 1.33609516, 1.33609516, 1.27252457,
1.27252457, 1.27252457, 1.27252457, 1.17843926, 1.17843926,
1.17843926, 1.17843926, 1.08791064, 1.08791064, 1.08791064,
1.08791064, 1.0387115 , 1.0387115 , 1.0387115 , 1.0387115 ,
1.01554087, 1.01554087, 1.01554087, 1.01554087, 1.00573844,
1.00573844, 1.00573844, 1.00573844, 1.00196188, 1.00196188,
1.00196188, 1.00196188, 1.00062452, 1.00062452, 1.00062452,
1.00062452, 1.00018599, 1.00018599, 1.00018599, 1.00018599,
1.00005204, 1.00005204, 1.00005204, 1.00005204, 1.00001373,
1.00001373, 1.00001373, 1.00001373, 1.00000343, 1.00000343,
1.00000343, 1.00000343, 1.00000081, 1.00000081, 1.00000081,
1.00000081, 1.00000018, 1.00000018, 1.00000018, 1.00000018,
1.00000004, 1.00000004, 1.00000004, 1.00000004, 1.00000001,
1.00000001, 1.00000001, 1.00000001, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999995, 1.39999995,
1.39999995, 1.39999995, 1.39999875, 1.39999875, 1.39999875,
1.39999875, 1.39998612, 1.39998612, 1.39998612, 1.39998612,
1.39989925, 1.39989925, 1.39989925, 1.39989925, 1.39946412,
1.39946412, 1.39946412, 1.39946412, 1.39777421, 1.39777421,
1.39777421, 1.39777421, 1.39249029, 1.39249029, 1.39249029,
1.39249029, 1.37885985, 1.37885985, 1.37885985, 1.37885985,
1.34938855, 1.34938855, 1.34938855, 1.34938855, 1.29547175,
1.29547175, 1.29547175, 1.29547175, 1.21169969, 1.21169969,
1.21169969, 1.21169969, 1.11296387, 1.11296387, 1.11296387,
1.11296387, 1.05174766, 1.05174766, 1.05174766, 1.05174766,
1.02162002, 1.02162002, 1.02162002, 1.02162002, 1.00829724,
1.00829724, 1.00829724, 1.00829724, 1.00294575, 1.00294575,
1.00294575, 1.00294575, 1.00097314, 1.00097314, 1.00097314,
1.00097314, 1.00030061, 1.00030061, 1.00030061, 1.00030061,
1.00008721, 1.00008721, 1.00008721, 1.00008721, 1.00002385,
1.00002385, 1.00002385, 1.00002385, 1.00000617, 1.00000617,
1.00000617, 1.00000617, 1.00000151, 1.00000151, 1.00000151,
1.00000151, 1.00000035, 1.00000035, 1.00000035, 1.00000035,
1.00000008, 1.00000008, 1.00000008, 1.00000008, 1.00000002,
1.00000002, 1.00000002, 1.00000002, 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999997, 1.39999997,
1.39999997, 1.39999997, 1.39999921, 1.39999921, 1.39999921,
1.39999921, 1.39999095, 1.39999095, 1.39999095, 1.39999095,
1.39993232, 1.39993232, 1.39993232, 1.39993232, 1.39962903,
1.39962903, 1.39962903, 1.39962903, 1.39841114, 1.39841114,
1.39841114, 1.39841114, 1.39446832, 1.39446832, 1.39446832,
1.39446832, 1.38391959, 1.38391959, 1.38391959, 1.38391959,
1.36021389, 1.36021389, 1.36021389, 1.36021389, 1.31501246,
1.31501246, 1.31501246, 1.31501246, 1.24153265, 1.24153265,
1.24153265, 1.24153265, 1.14294179, 1.14294179, 1.14294179,
1.14294179, 1.06809956, 1.06809956, 1.06809956, 1.06809956,
1.0295627 , 1.0295627 , 1.0295627 , 1.0295627 , 1.01178347,
1.01178347, 1.01178347, 1.01178347, 1.0043414 , 1.0043414 ,
1.0043414 , 1.0043414 , 1.00148729, 1.00148729, 1.00148729,
1.00148729, 1.00047618, 1.00047618, 1.00047618, 1.00047618,
1.00014311, 1.00014311, 1.00014311, 1.00014311, 1.00004052,
1.00004052, 1.00004052, 1.00004052, 1.00001085, 1.00001085,
1.00001085, 1.00001085, 1.00000275, 1.00000275, 1.00000275,
1.00000275, 1.00000066, 1.00000066, 1.00000066, 1.00000066,
1.00000015, 1.00000015, 1.00000015, 1.00000015, 1.00000003,
1.00000003, 1.00000003, 1.00000003, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999998, 1.39999998,
1.39999998, 1.39999998, 1.3999995 , 1.3999995 , 1.3999995 ,
1.3999995 , 1.3999941 , 1.3999941 , 1.3999941 , 1.3999941 ,
1.39995465, 1.39995465, 1.39995465, 1.39995465, 1.39974404,
1.39974404, 1.39974404, 1.39974404, 1.39887054, 1.39887054,
1.39887054, 1.39887054, 1.39594607, 1.39594607, 1.39594607,
1.39594607, 1.38784215, 1.38784215, 1.38784215, 1.38784215,
1.36894303, 1.36894303, 1.36894303, 1.36894303, 1.33145294,
1.33145294, 1.33145294, 1.33145294, 1.26783669, 1.26783669,
1.26783669, 1.26783669, 1.17556797, 1.17556797, 1.17556797,
1.17556797, 1.08805645, 1.08805645, 1.08805645, 1.08805645,
1.03976177, 1.03976177, 1.03976177, 1.03976177, 1.01645032,
1.01645032, 1.01645032, 1.01645032, 1.00628547, 1.00628547,
1.00628547, 1.00628547, 1.00223151, 1.00223151, 1.00223151,
1.00223151, 1.00073997, 1.00073997, 1.00073997, 1.00073997,
1.00023021, 1.00023021, 1.00023021, 1.00023021, 1.00006746,
1.00006746, 1.00006746, 1.00006746, 1.00001868, 1.00001868,
1.00001868, 1.00001868, 1.0000049 , 1.0000049 , 1.0000049 ,
1.0000049 , 1.00000122, 1.00000122, 1.00000122, 1.00000122,
1.00000029, 1.00000029, 1.00000029, 1.00000029, 1.00000007,
1.00000007, 1.00000007, 1.00000007, 1.00000001, 1.00000001,
1.00000001, 1.00000001, 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999999, 1.39999999,
1.39999999, 1.39999999, 1.39999968, 1.39999968, 1.39999968,
1.39999968, 1.39999617, 1.39999617, 1.39999617, 1.39999617,
1.39996968, 1.39996968, 1.39996968, 1.39996968, 1.39982394,
1.39982394, 1.39982394, 1.39982394, 1.39920028, 1.39920028,
1.39920028, 1.39920028, 1.39704335, 1.39704335, 1.39704335,
1.39704335, 1.39086036, 1.39086036, 1.39086036, 1.39086036,
1.37591782, 1.37591782, 1.37591782, 1.37591782, 1.34513208,
1.34513208, 1.34513208, 1.34513208, 1.29071415, 1.29071415,
1.29071415, 1.29071415, 1.20804266, 1.20804266, 1.20804266,
1.20804266, 1.11222351, 1.11222351, 1.11222351, 1.11222351,
1.05260571, 1.05260571, 1.05260571, 1.05260571, 1.022589 ,
1.022589 , 1.022589 , 1.022589 , 1.0089465 , 1.0089465 ,
1.0089465 , 1.0089465 , 1.00328962, 1.00328962, 1.00328962,
1.00328962, 1.00112906, 1.00112906, 1.00112906, 1.00112906,
1.00036338, 1.00036338, 1.00036338, 1.00036338, 1.0001101 ,
1.0001101 , 1.0001101 , 1.0001101 , 1.00003152, 1.00003152,
1.00003152, 1.00003152, 1.00000855, 1.00000855, 1.00000855,
1.00000855, 1.0000022 , 1.0000022 , 1.0000022 , 1.0000022 ,
1.00000054, 1.00000054, 1.00000054, 1.00000054, 1.00000013,
1.00000013, 1.00000013, 1.00000013, 1.00000003, 1.00000003,
1.00000003, 1.00000003, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.39999999, 1.39999999,
1.39999999, 1.39999999, 1.3999998 , 1.3999998 , 1.3999998 ,
1.3999998 , 1.39999751, 1.39999751, 1.39999751, 1.39999751,
1.39997977, 1.39997977, 1.39997977, 1.39997977, 1.39987925,
1.39987925, 1.39987925, 1.39987925, 1.39943586, 1.39943586,
1.39943586, 1.39943586, 1.39785346, 1.39785346, 1.39785346,
1.39785346, 1.39316645, 1.39316645, 1.39316645, 1.39316645,
1.38144361, 1.38144361, 1.38144361, 1.38144361, 1.35639706,
1.35639706, 1.35639706, 1.35639706, 1.31036316, 1.31036316,
1.31036316, 1.31036316, 1.23738337, 1.23738337, 1.23738337,
1.23738337, 1.14116812, 1.14116812, 1.14116812, 1.14116812,
1.06860077, 1.06860077, 1.06860077, 1.06860077, 1.03053157,
1.03053157, 1.03053157, 1.03053157, 1.01252751, 1.01252751,
1.01252751, 1.01252751, 1.00476825, 1.00476825, 1.00476825,
1.00476825, 1.00169289, 1.00169289, 1.00169289, 1.00169289,
1.00056328, 1.00056328, 1.00056328, 1.00056328, 1.00017637,
1.00017637, 1.00017637, 1.00017637, 1.00005215, 1.00005215,
1.00005215, 1.00005215, 1.00001461, 1.00001461, 1.00001461,
1.00001461, 1.00000389, 1.00000389, 1.00000389, 1.00000389,
1.00000099, 1.00000099, 1.00000099, 1.00000099, 1.00000024,
1.00000024, 1.00000024, 1.00000024, 1.00000006, 1.00000006,
1.00000006, 1.00000006, 1.00000001, 1.00000001, 1.00000001,
1.00000001, 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.39999987, 1.39999987, 1.39999987,
1.39999987, 1.39999839, 1.39999839, 1.39999839, 1.39999839,
1.39998653, 1.39998653, 1.39998653, 1.39998653, 1.39991742,
1.39991742, 1.39991742, 1.39991742, 1.39960346, 1.39960346,
1.39960346, 1.39960346, 1.39844834, 1.39844834, 1.39844834,
1.39844834, 1.39491688, 1.39491688, 1.39491688, 1.39491688,
1.38578674, 1.38578674, 1.38578674, 1.38578674, 1.36558558,
1.36558558, 1.36558558, 1.36558558, 1.32704504, 1.32704504,
1.32704504, 1.32704504, 1.2634186 , 1.2634186 , 1.2634186 ,
1.2634186 , 1.17278602, 1.17278602, 1.17278602, 1.17278602,
1.08804113, 1.08804113, 1.08804113, 1.08804113, 1.04064649,
1.04064649, 1.04064649, 1.04064649, 1.01726903, 1.01726903,
1.01726903, 1.01726903, 1.0068004 , 1.0068004 , 1.0068004 ,
1.0068004 , 1.00249615, 1.00249615, 1.00249615, 1.00249615,
1.00085817, 1.00085817, 1.00085817, 1.00085817, 1.0002775 ,
1.0002775 , 1.0002775 , 1.0002775 , 1.00008471, 1.00008471,
1.00008471, 1.00008471, 1.00002449, 1.00002449, 1.00002449,
1.00002449, 1.00000672, 1.00000672, 1.00000672, 1.00000672,
1.00000176, 1.00000176, 1.00000176, 1.00000176, 1.00000044,
1.00000044, 1.00000044, 1.00000044, 1.0000001 , 1.0000001 ,
1.0000001 , 1.0000001 , 1.00000002, 1.00000002, 1.00000002,
1.00000002, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.39999992, 1.39999992, 1.39999992,
1.39999992, 1.39999895, 1.39999895, 1.39999895, 1.39999895,
1.39999105, 1.39999105, 1.39999105, 1.39999105, 1.39994367,
1.39994367, 1.39994367, 1.39994367, 1.39972221, 1.39972221,
1.39972221, 1.39972221, 1.39888296, 1.39888296, 1.39888296,
1.39888296, 1.39623736, 1.39623736, 1.39623736, 1.39623736,
1.38917502, 1.38917502, 1.38917502, 1.38917502, 1.37301383,
1.37301383, 1.37301383, 1.37301383, 1.34105677, 1.34105677,
1.34105677, 1.34105677, 1.28622103, 1.28622103, 1.28622103,
1.28622103, 1.20454253, 1.20454253, 1.20454253, 1.20454253,
1.11139686, 1.11139686, 1.11139686, 1.11139686, 1.05329462,
1.05329462, 1.05329462, 1.05329462, 1.02344644, 1.02344644,
1.02344644, 1.02344644, 1.00954873, 1.00954873, 1.00954873,
1.00954873, 1.00362188, 1.00362188, 1.00362188, 1.00362188,
1.00128594, 1.00128594, 1.00128594, 1.00128594, 1.00042921,
1.00042921, 1.00042921, 1.00042921, 1.00013517, 1.00013517,
1.00013517, 1.00013517, 1.0000403 , 1.0000403 , 1.0000403 ,
1.0000403 , 1.00001141, 1.00001141, 1.00001141, 1.00001141,
1.00000307, 1.00000307, 1.00000307, 1.00000307, 1.00000079,
1.00000079, 1.00000079, 1.00000079, 1.00000019, 1.00000019,
1.00000019, 1.00000019, 1.00000005, 1.00000005, 1.00000005,
1.00000005, 1.00000001, 1.00000001, 1.00000001, 1.00000001,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}, {'rho': array([1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.4 , 1.4 , 1.4 ,
1.4 , 1.4 , 1.39999995, 1.39999995, 1.39999995,
1.39999995, 1.39999932, 1.39999932, 1.39999932, 1.39999932,
1.39999406, 1.39999406, 1.39999406, 1.39999406, 1.39996168,
1.39996168, 1.39996168, 1.39996168, 1.39980601, 1.39980601,
1.39980601, 1.39980601, 1.39919899, 1.39919899, 1.39919899,
1.39919899, 1.3972277 , 1.3972277 , 1.3972277 , 1.3972277 ,
1.39179997, 1.39179997, 1.39179997, 1.39179997, 1.37896914,
1.37896914, 1.37896914, 1.37896914, 1.35270901, 1.35270901,
1.35270901, 1.35270901, 1.30595321, 1.30595321, 1.30595321,
1.30595321, 1.23344038, 1.23344038, 1.23344038, 1.23344038,
1.13938926, 1.13938926, 1.13938926, 1.13938926, 1.06894468,
1.06894468, 1.06894468, 1.06894468, 1.03137135, 1.03137135,
1.03137135, 1.03137135, 1.01320771, 1.01320771, 1.01320771,
1.01320771, 1.0051747 , 1.0051747 , 1.0051747 , 1.0051747 ,
1.00189646, 1.00189646, 1.00189646, 1.00189646, 1.00065301,
1.00065301, 1.00065301, 1.00065301, 1.00021207, 1.00021207,
1.00021207, 1.00021207, 1.00006518, 1.00006518, 1.00006518,
1.00006518, 1.00001901, 1.00001901, 1.00001901, 1.00001901,
1.00000528, 1.00000528, 1.00000528, 1.00000528, 1.0000014 ,
1.0000014 , 1.0000014 , 1.0000014 , 1.00000035, 1.00000035,
1.00000035, 1.00000035, 1.00000009, 1.00000009, 1.00000009,
1.00000009, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ,
1. , 1. , 1. , 1. , 1. ]), 'vx': array([0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]), 'P': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])}]}
369 plt.show()
Total running time of the script: (24 minutes 23.251 seconds)
Estimated memory usage: 515 MB






